composer.lock 384 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556155715581559156015611562156315641565156615671568156915701571157215731574157515761577157815791580158115821583158415851586158715881589159015911592159315941595159615971598159916001601160216031604160516061607160816091610161116121613161416151616161716181619162016211622162316241625162616271628162916301631163216331634163516361637163816391640164116421643164416451646164716481649165016511652165316541655165616571658165916601661166216631664166516661667166816691670167116721673167416751676167716781679168016811682168316841685168616871688168916901691169216931694169516961697169816991700170117021703170417051706170717081709171017111712171317141715171617171718171917201721172217231724172517261727172817291730173117321733173417351736173717381739174017411742174317441745174617471748174917501751175217531754175517561757175817591760176117621763176417651766176717681769177017711772177317741775177617771778177917801781178217831784178517861787178817891790179117921793179417951796179717981799180018011802180318041805180618071808180918101811181218131814181518161817181818191820182118221823182418251826182718281829183018311832183318341835183618371838183918401841184218431844184518461847184818491850185118521853185418551856185718581859186018611862186318641865186618671868186918701871187218731874187518761877187818791880188118821883188418851886188718881889189018911892189318941895189618971898189919001901190219031904190519061907190819091910191119121913191419151916191719181919192019211922192319241925192619271928192919301931193219331934193519361937193819391940194119421943194419451946194719481949195019511952195319541955195619571958195919601961196219631964196519661967196819691970197119721973197419751976197719781979198019811982198319841985198619871988198919901991199219931994199519961997199819992000200120022003200420052006200720082009201020112012201320142015201620172018201920202021202220232024202520262027202820292030203120322033203420352036203720382039204020412042204320442045204620472048204920502051205220532054205520562057205820592060206120622063206420652066206720682069207020712072207320742075207620772078207920802081208220832084208520862087208820892090209120922093209420952096209720982099210021012102210321042105210621072108210921102111211221132114211521162117211821192120212121222123212421252126212721282129213021312132213321342135213621372138213921402141214221432144214521462147214821492150215121522153215421552156215721582159216021612162216321642165216621672168216921702171217221732174217521762177217821792180218121822183218421852186218721882189219021912192219321942195219621972198219922002201220222032204220522062207220822092210221122122213221422152216221722182219222022212222222322242225222622272228222922302231223222332234223522362237223822392240224122422243224422452246224722482249225022512252225322542255225622572258225922602261226222632264226522662267226822692270227122722273227422752276227722782279228022812282228322842285228622872288228922902291229222932294229522962297229822992300230123022303230423052306230723082309231023112312231323142315231623172318231923202321232223232324232523262327232823292330233123322333233423352336233723382339234023412342234323442345234623472348234923502351235223532354235523562357235823592360236123622363236423652366236723682369237023712372237323742375237623772378237923802381238223832384238523862387238823892390239123922393239423952396239723982399240024012402240324042405240624072408240924102411241224132414241524162417241824192420242124222423242424252426242724282429243024312432243324342435243624372438243924402441244224432444244524462447244824492450245124522453245424552456245724582459246024612462246324642465246624672468246924702471247224732474247524762477247824792480248124822483248424852486248724882489249024912492249324942495249624972498249925002501250225032504250525062507250825092510251125122513251425152516251725182519252025212522252325242525252625272528252925302531253225332534253525362537253825392540254125422543254425452546254725482549255025512552255325542555255625572558255925602561256225632564256525662567256825692570257125722573257425752576257725782579258025812582258325842585258625872588258925902591259225932594259525962597259825992600260126022603260426052606260726082609261026112612261326142615261626172618261926202621262226232624262526262627262826292630263126322633263426352636263726382639264026412642264326442645264626472648264926502651265226532654265526562657265826592660266126622663266426652666266726682669267026712672267326742675267626772678267926802681268226832684268526862687268826892690269126922693269426952696269726982699270027012702270327042705270627072708270927102711271227132714271527162717271827192720272127222723272427252726272727282729273027312732273327342735273627372738273927402741274227432744274527462747274827492750275127522753275427552756275727582759276027612762276327642765276627672768276927702771277227732774277527762777277827792780278127822783278427852786278727882789279027912792279327942795279627972798279928002801280228032804280528062807280828092810281128122813281428152816281728182819282028212822282328242825282628272828282928302831283228332834283528362837283828392840284128422843284428452846284728482849285028512852285328542855285628572858285928602861286228632864286528662867286828692870287128722873287428752876287728782879288028812882288328842885288628872888288928902891289228932894289528962897289828992900290129022903290429052906290729082909291029112912291329142915291629172918291929202921292229232924292529262927292829292930293129322933293429352936293729382939294029412942294329442945294629472948294929502951295229532954295529562957295829592960296129622963296429652966296729682969297029712972297329742975297629772978297929802981298229832984298529862987298829892990299129922993299429952996299729982999300030013002300330043005300630073008300930103011301230133014301530163017301830193020302130223023302430253026302730283029303030313032303330343035303630373038303930403041304230433044304530463047304830493050305130523053305430553056305730583059306030613062306330643065306630673068306930703071307230733074307530763077307830793080308130823083308430853086308730883089309030913092309330943095309630973098309931003101310231033104310531063107310831093110311131123113311431153116311731183119312031213122312331243125312631273128312931303131313231333134313531363137313831393140314131423143314431453146314731483149315031513152315331543155315631573158315931603161316231633164316531663167316831693170317131723173317431753176317731783179318031813182318331843185318631873188318931903191319231933194319531963197319831993200320132023203320432053206320732083209321032113212321332143215321632173218321932203221322232233224322532263227322832293230323132323233323432353236323732383239324032413242324332443245324632473248324932503251325232533254325532563257325832593260326132623263326432653266326732683269327032713272327332743275327632773278327932803281328232833284328532863287328832893290329132923293329432953296329732983299330033013302330333043305330633073308330933103311331233133314331533163317331833193320332133223323332433253326332733283329333033313332333333343335333633373338333933403341334233433344334533463347334833493350335133523353335433553356335733583359336033613362336333643365336633673368336933703371337233733374337533763377337833793380338133823383338433853386338733883389339033913392339333943395339633973398339934003401340234033404340534063407340834093410341134123413341434153416341734183419342034213422342334243425342634273428342934303431343234333434343534363437343834393440344134423443344434453446344734483449345034513452345334543455345634573458345934603461346234633464346534663467346834693470347134723473347434753476347734783479348034813482348334843485348634873488348934903491349234933494349534963497349834993500350135023503350435053506350735083509351035113512351335143515351635173518351935203521352235233524352535263527352835293530353135323533353435353536353735383539354035413542354335443545354635473548354935503551355235533554355535563557355835593560356135623563356435653566356735683569357035713572357335743575357635773578357935803581358235833584358535863587358835893590359135923593359435953596359735983599360036013602360336043605360636073608360936103611361236133614361536163617361836193620362136223623362436253626362736283629363036313632363336343635363636373638363936403641364236433644364536463647364836493650365136523653365436553656365736583659366036613662366336643665366636673668366936703671367236733674367536763677367836793680368136823683368436853686368736883689369036913692369336943695369636973698369937003701370237033704370537063707370837093710371137123713371437153716371737183719372037213722372337243725372637273728372937303731373237333734373537363737373837393740374137423743374437453746374737483749375037513752375337543755375637573758375937603761376237633764376537663767376837693770377137723773377437753776377737783779378037813782378337843785378637873788378937903791379237933794379537963797379837993800380138023803380438053806380738083809381038113812381338143815381638173818381938203821382238233824382538263827382838293830383138323833383438353836383738383839384038413842384338443845384638473848384938503851385238533854385538563857385838593860386138623863386438653866386738683869387038713872387338743875387638773878387938803881388238833884388538863887388838893890389138923893389438953896389738983899390039013902390339043905390639073908390939103911391239133914391539163917391839193920392139223923392439253926392739283929393039313932393339343935393639373938393939403941394239433944394539463947394839493950395139523953395439553956395739583959396039613962396339643965396639673968396939703971397239733974397539763977397839793980398139823983398439853986398739883989399039913992399339943995399639973998399940004001400240034004400540064007400840094010401140124013401440154016401740184019402040214022402340244025402640274028402940304031403240334034403540364037403840394040404140424043404440454046404740484049405040514052405340544055405640574058405940604061406240634064406540664067406840694070407140724073407440754076407740784079408040814082408340844085408640874088408940904091409240934094409540964097409840994100410141024103410441054106410741084109411041114112411341144115411641174118411941204121412241234124412541264127412841294130413141324133413441354136413741384139414041414142414341444145414641474148414941504151415241534154415541564157415841594160416141624163416441654166416741684169417041714172417341744175417641774178417941804181418241834184418541864187418841894190419141924193419441954196419741984199420042014202420342044205420642074208420942104211421242134214421542164217421842194220422142224223422442254226422742284229423042314232423342344235423642374238423942404241424242434244424542464247424842494250425142524253425442554256425742584259426042614262426342644265426642674268426942704271427242734274427542764277427842794280428142824283428442854286428742884289429042914292429342944295429642974298429943004301430243034304430543064307430843094310431143124313431443154316431743184319432043214322432343244325432643274328432943304331433243334334433543364337433843394340434143424343434443454346434743484349435043514352435343544355435643574358435943604361436243634364436543664367436843694370437143724373437443754376437743784379438043814382438343844385438643874388438943904391439243934394439543964397439843994400440144024403440444054406440744084409441044114412441344144415441644174418441944204421442244234424442544264427442844294430443144324433443444354436443744384439444044414442444344444445444644474448444944504451445244534454445544564457445844594460446144624463446444654466446744684469447044714472447344744475447644774478447944804481448244834484448544864487448844894490449144924493449444954496449744984499450045014502450345044505450645074508450945104511451245134514451545164517451845194520452145224523452445254526452745284529453045314532453345344535453645374538453945404541454245434544454545464547454845494550455145524553455445554556455745584559456045614562456345644565456645674568456945704571457245734574457545764577457845794580458145824583458445854586458745884589459045914592459345944595459645974598459946004601460246034604460546064607460846094610461146124613461446154616461746184619462046214622462346244625462646274628462946304631463246334634463546364637463846394640464146424643464446454646464746484649465046514652465346544655465646574658465946604661466246634664466546664667466846694670467146724673467446754676467746784679468046814682468346844685468646874688468946904691469246934694469546964697469846994700470147024703470447054706470747084709471047114712471347144715471647174718471947204721472247234724472547264727472847294730473147324733473447354736473747384739474047414742474347444745474647474748474947504751475247534754475547564757475847594760476147624763476447654766476747684769477047714772477347744775477647774778477947804781478247834784478547864787478847894790479147924793479447954796479747984799480048014802480348044805480648074808480948104811481248134814481548164817481848194820482148224823482448254826482748284829483048314832483348344835483648374838483948404841484248434844484548464847484848494850485148524853485448554856485748584859486048614862486348644865486648674868486948704871487248734874487548764877487848794880488148824883488448854886488748884889489048914892489348944895489648974898489949004901490249034904490549064907490849094910491149124913491449154916491749184919492049214922492349244925492649274928492949304931493249334934493549364937493849394940494149424943494449454946494749484949495049514952495349544955495649574958495949604961496249634964496549664967496849694970497149724973497449754976497749784979498049814982498349844985498649874988498949904991499249934994499549964997499849995000500150025003500450055006500750085009501050115012501350145015501650175018501950205021502250235024502550265027502850295030503150325033503450355036503750385039504050415042504350445045504650475048504950505051505250535054505550565057505850595060506150625063506450655066506750685069507050715072507350745075507650775078507950805081508250835084508550865087508850895090509150925093509450955096509750985099510051015102510351045105510651075108510951105111511251135114511551165117511851195120512151225123512451255126512751285129513051315132513351345135513651375138513951405141514251435144514551465147514851495150515151525153515451555156515751585159516051615162516351645165516651675168516951705171517251735174517551765177517851795180518151825183518451855186518751885189519051915192519351945195519651975198519952005201520252035204520552065207520852095210521152125213521452155216521752185219522052215222522352245225522652275228522952305231523252335234523552365237523852395240524152425243524452455246524752485249525052515252525352545255525652575258525952605261526252635264526552665267526852695270527152725273527452755276527752785279528052815282528352845285528652875288528952905291529252935294529552965297529852995300530153025303530453055306530753085309531053115312531353145315531653175318531953205321532253235324532553265327532853295330533153325333533453355336533753385339534053415342534353445345534653475348534953505351535253535354535553565357535853595360536153625363536453655366536753685369537053715372537353745375537653775378537953805381538253835384538553865387538853895390539153925393539453955396539753985399540054015402540354045405540654075408540954105411541254135414541554165417541854195420542154225423542454255426542754285429543054315432543354345435543654375438543954405441544254435444544554465447544854495450545154525453545454555456545754585459546054615462546354645465546654675468546954705471547254735474547554765477547854795480548154825483548454855486548754885489549054915492549354945495549654975498549955005501550255035504550555065507550855095510551155125513551455155516551755185519552055215522552355245525552655275528552955305531553255335534553555365537553855395540554155425543554455455546554755485549555055515552555355545555555655575558555955605561556255635564556555665567556855695570557155725573557455755576557755785579558055815582558355845585558655875588558955905591559255935594559555965597559855995600560156025603560456055606560756085609561056115612561356145615561656175618561956205621562256235624562556265627562856295630563156325633563456355636563756385639564056415642564356445645564656475648564956505651565256535654565556565657565856595660566156625663566456655666566756685669567056715672567356745675567656775678567956805681568256835684568556865687568856895690569156925693569456955696569756985699570057015702570357045705570657075708570957105711571257135714571557165717571857195720572157225723572457255726572757285729573057315732573357345735573657375738573957405741574257435744574557465747574857495750575157525753575457555756575757585759576057615762576357645765576657675768576957705771577257735774577557765777577857795780578157825783578457855786578757885789579057915792579357945795579657975798579958005801580258035804580558065807580858095810581158125813581458155816581758185819582058215822582358245825582658275828582958305831583258335834583558365837583858395840584158425843584458455846584758485849585058515852585358545855585658575858585958605861586258635864586558665867586858695870587158725873587458755876587758785879588058815882588358845885588658875888588958905891589258935894589558965897589858995900590159025903590459055906590759085909591059115912591359145915591659175918591959205921592259235924592559265927592859295930593159325933593459355936593759385939594059415942594359445945594659475948594959505951595259535954595559565957595859595960596159625963596459655966596759685969597059715972597359745975597659775978597959805981598259835984598559865987598859895990599159925993599459955996599759985999600060016002600360046005600660076008600960106011601260136014601560166017601860196020602160226023602460256026602760286029603060316032603360346035603660376038603960406041604260436044604560466047604860496050605160526053605460556056605760586059606060616062606360646065606660676068606960706071607260736074607560766077607860796080608160826083608460856086608760886089609060916092609360946095609660976098609961006101610261036104610561066107610861096110611161126113611461156116611761186119612061216122612361246125612661276128612961306131613261336134613561366137613861396140614161426143614461456146614761486149615061516152615361546155615661576158615961606161616261636164616561666167616861696170617161726173617461756176617761786179618061816182618361846185618661876188618961906191619261936194619561966197619861996200620162026203620462056206620762086209621062116212621362146215621662176218621962206221622262236224622562266227622862296230623162326233623462356236623762386239624062416242624362446245624662476248624962506251625262536254625562566257625862596260626162626263626462656266626762686269627062716272627362746275627662776278627962806281628262836284628562866287628862896290629162926293629462956296629762986299630063016302630363046305630663076308630963106311631263136314631563166317631863196320632163226323632463256326632763286329633063316332633363346335633663376338633963406341634263436344634563466347634863496350635163526353635463556356635763586359636063616362636363646365636663676368636963706371637263736374637563766377637863796380638163826383638463856386638763886389639063916392639363946395639663976398639964006401640264036404640564066407640864096410641164126413641464156416641764186419642064216422642364246425642664276428642964306431643264336434643564366437643864396440644164426443644464456446644764486449645064516452645364546455645664576458645964606461646264636464646564666467646864696470647164726473647464756476647764786479648064816482648364846485648664876488648964906491649264936494649564966497649864996500650165026503650465056506650765086509651065116512651365146515651665176518651965206521652265236524652565266527652865296530653165326533653465356536653765386539654065416542654365446545654665476548654965506551655265536554655565566557655865596560656165626563656465656566656765686569657065716572657365746575657665776578657965806581658265836584658565866587658865896590659165926593659465956596659765986599660066016602660366046605660666076608660966106611661266136614661566166617661866196620662166226623662466256626662766286629663066316632663366346635663666376638663966406641664266436644664566466647664866496650665166526653665466556656665766586659666066616662666366646665666666676668666966706671667266736674667566766677667866796680668166826683668466856686668766886689669066916692669366946695669666976698669967006701670267036704670567066707670867096710671167126713671467156716671767186719672067216722672367246725672667276728672967306731673267336734673567366737673867396740674167426743674467456746674767486749675067516752675367546755675667576758675967606761676267636764676567666767676867696770677167726773677467756776677767786779678067816782678367846785678667876788678967906791679267936794679567966797679867996800680168026803680468056806680768086809681068116812681368146815681668176818681968206821682268236824682568266827682868296830683168326833683468356836683768386839684068416842684368446845684668476848684968506851685268536854685568566857685868596860686168626863686468656866686768686869687068716872687368746875687668776878687968806881688268836884688568866887688868896890689168926893689468956896689768986899690069016902690369046905690669076908690969106911691269136914691569166917691869196920692169226923692469256926692769286929693069316932693369346935693669376938693969406941694269436944694569466947694869496950695169526953695469556956695769586959696069616962696369646965696669676968696969706971697269736974697569766977697869796980698169826983698469856986698769886989699069916992699369946995699669976998699970007001700270037004700570067007700870097010701170127013701470157016701770187019702070217022702370247025702670277028702970307031703270337034703570367037703870397040704170427043704470457046704770487049705070517052705370547055705670577058705970607061706270637064706570667067706870697070707170727073707470757076707770787079708070817082708370847085708670877088708970907091709270937094709570967097709870997100710171027103710471057106710771087109711071117112711371147115711671177118711971207121712271237124712571267127712871297130713171327133713471357136713771387139714071417142714371447145714671477148714971507151715271537154715571567157715871597160716171627163716471657166716771687169717071717172717371747175717671777178717971807181718271837184718571867187718871897190719171927193719471957196719771987199720072017202720372047205720672077208720972107211721272137214721572167217721872197220722172227223722472257226722772287229723072317232723372347235723672377238723972407241724272437244724572467247724872497250725172527253725472557256725772587259726072617262726372647265726672677268726972707271727272737274727572767277727872797280728172827283728472857286728772887289729072917292729372947295729672977298729973007301730273037304730573067307730873097310731173127313731473157316731773187319732073217322732373247325732673277328732973307331733273337334733573367337733873397340734173427343734473457346734773487349735073517352735373547355735673577358735973607361736273637364736573667367736873697370737173727373737473757376737773787379738073817382738373847385738673877388738973907391739273937394739573967397739873997400740174027403740474057406740774087409741074117412741374147415741674177418741974207421742274237424742574267427742874297430743174327433743474357436743774387439744074417442744374447445744674477448744974507451745274537454745574567457745874597460746174627463746474657466746774687469747074717472747374747475747674777478747974807481748274837484748574867487748874897490749174927493749474957496749774987499750075017502750375047505750675077508750975107511751275137514751575167517751875197520752175227523752475257526752775287529753075317532753375347535753675377538753975407541754275437544754575467547754875497550755175527553755475557556755775587559756075617562756375647565756675677568756975707571757275737574757575767577757875797580758175827583758475857586758775887589759075917592759375947595759675977598759976007601760276037604760576067607760876097610761176127613761476157616761776187619762076217622762376247625762676277628762976307631763276337634763576367637763876397640764176427643764476457646764776487649765076517652765376547655765676577658765976607661766276637664766576667667766876697670767176727673767476757676767776787679768076817682768376847685768676877688768976907691769276937694769576967697769876997700770177027703770477057706770777087709771077117712771377147715771677177718771977207721772277237724772577267727772877297730773177327733773477357736773777387739774077417742774377447745774677477748774977507751775277537754775577567757775877597760776177627763776477657766776777687769777077717772777377747775777677777778777977807781778277837784778577867787778877897790779177927793779477957796779777987799780078017802780378047805780678077808780978107811781278137814781578167817781878197820782178227823782478257826782778287829783078317832783378347835783678377838783978407841784278437844784578467847784878497850785178527853785478557856785778587859786078617862786378647865786678677868786978707871787278737874787578767877787878797880788178827883788478857886788778887889789078917892789378947895789678977898789979007901790279037904790579067907790879097910791179127913791479157916791779187919792079217922792379247925792679277928792979307931793279337934793579367937793879397940794179427943794479457946794779487949795079517952795379547955795679577958795979607961796279637964796579667967796879697970797179727973797479757976797779787979798079817982798379847985798679877988798979907991799279937994799579967997799879998000800180028003800480058006800780088009801080118012801380148015801680178018801980208021802280238024802580268027802880298030803180328033803480358036803780388039804080418042804380448045804680478048804980508051805280538054805580568057805880598060806180628063806480658066806780688069807080718072807380748075807680778078807980808081808280838084808580868087808880898090809180928093809480958096809780988099810081018102810381048105810681078108810981108111811281138114811581168117811881198120812181228123812481258126812781288129813081318132813381348135813681378138813981408141814281438144814581468147814881498150815181528153815481558156815781588159816081618162816381648165816681678168816981708171817281738174817581768177817881798180818181828183818481858186818781888189819081918192819381948195819681978198819982008201820282038204820582068207820882098210821182128213821482158216821782188219822082218222822382248225822682278228822982308231823282338234823582368237823882398240824182428243824482458246824782488249825082518252825382548255825682578258825982608261826282638264826582668267826882698270827182728273827482758276827782788279828082818282828382848285828682878288828982908291829282938294829582968297829882998300830183028303830483058306830783088309831083118312831383148315831683178318831983208321832283238324832583268327832883298330833183328333833483358336833783388339834083418342834383448345834683478348834983508351835283538354835583568357835883598360836183628363836483658366836783688369837083718372837383748375837683778378837983808381838283838384838583868387838883898390839183928393839483958396839783988399840084018402840384048405840684078408840984108411841284138414841584168417841884198420842184228423842484258426842784288429843084318432843384348435843684378438843984408441844284438444844584468447844884498450845184528453845484558456845784588459846084618462846384648465846684678468846984708471847284738474847584768477847884798480848184828483848484858486848784888489849084918492849384948495849684978498849985008501850285038504850585068507850885098510851185128513851485158516851785188519852085218522852385248525852685278528852985308531853285338534853585368537853885398540854185428543854485458546854785488549855085518552855385548555855685578558855985608561856285638564856585668567856885698570857185728573857485758576857785788579858085818582858385848585858685878588858985908591859285938594859585968597859885998600860186028603860486058606860786088609861086118612861386148615861686178618861986208621862286238624862586268627862886298630863186328633863486358636863786388639864086418642864386448645864686478648864986508651865286538654865586568657865886598660866186628663866486658666866786688669867086718672867386748675867686778678867986808681868286838684868586868687868886898690869186928693869486958696869786988699870087018702870387048705870687078708870987108711871287138714871587168717871887198720872187228723872487258726872787288729873087318732873387348735873687378738873987408741874287438744874587468747874887498750875187528753875487558756875787588759876087618762876387648765876687678768876987708771877287738774877587768777877887798780878187828783878487858786878787888789879087918792879387948795879687978798879988008801880288038804880588068807880888098810881188128813881488158816881788188819882088218822882388248825882688278828882988308831883288338834883588368837883888398840884188428843884488458846884788488849885088518852885388548855885688578858885988608861886288638864886588668867886888698870887188728873887488758876887788788879888088818882888388848885888688878888888988908891889288938894889588968897889888998900890189028903890489058906890789088909891089118912891389148915891689178918891989208921892289238924892589268927892889298930893189328933893489358936893789388939894089418942894389448945894689478948894989508951895289538954895589568957895889598960896189628963896489658966896789688969897089718972897389748975897689778978897989808981898289838984898589868987898889898990899189928993899489958996899789988999900090019002900390049005900690079008900990109011901290139014901590169017901890199020902190229023902490259026902790289029903090319032903390349035903690379038903990409041904290439044904590469047904890499050905190529053905490559056905790589059906090619062906390649065906690679068906990709071907290739074907590769077907890799080908190829083908490859086908790889089909090919092909390949095909690979098909991009101910291039104910591069107910891099110911191129113911491159116911791189119912091219122912391249125912691279128912991309131913291339134913591369137913891399140914191429143914491459146914791489149915091519152915391549155915691579158915991609161916291639164916591669167916891699170917191729173917491759176917791789179918091819182918391849185918691879188918991909191919291939194919591969197919891999200920192029203920492059206920792089209921092119212921392149215921692179218921992209221922292239224922592269227922892299230923192329233923492359236923792389239924092419242924392449245924692479248924992509251925292539254925592569257925892599260926192629263926492659266926792689269927092719272927392749275927692779278927992809281928292839284928592869287928892899290929192929293929492959296929792989299930093019302930393049305930693079308930993109311931293139314931593169317931893199320932193229323932493259326932793289329933093319332933393349335933693379338933993409341934293439344934593469347934893499350935193529353935493559356935793589359936093619362936393649365936693679368936993709371937293739374937593769377937893799380938193829383938493859386938793889389939093919392939393949395939693979398939994009401940294039404940594069407940894099410941194129413941494159416941794189419942094219422942394249425942694279428942994309431943294339434943594369437943894399440944194429443944494459446944794489449945094519452945394549455945694579458945994609461946294639464946594669467946894699470947194729473947494759476947794789479948094819482948394849485948694879488948994909491949294939494949594969497949894999500950195029503950495059506950795089509951095119512951395149515951695179518951995209521952295239524952595269527952895299530953195329533953495359536953795389539954095419542954395449545954695479548954995509551955295539554955595569557955895599560956195629563956495659566956795689569957095719572957395749575957695779578957995809581958295839584958595869587958895899590959195929593959495959596959795989599960096019602960396049605960696079608960996109611961296139614961596169617961896199620962196229623962496259626962796289629963096319632963396349635963696379638963996409641964296439644964596469647964896499650965196529653965496559656965796589659966096619662966396649665966696679668966996709671967296739674967596769677967896799680968196829683968496859686968796889689969096919692969396949695969696979698969997009701970297039704970597069707970897099710971197129713971497159716971797189719972097219722972397249725972697279728972997309731973297339734973597369737973897399740974197429743974497459746974797489749975097519752975397549755975697579758975997609761976297639764976597669767976897699770977197729773977497759776977797789779978097819782978397849785978697879788978997909791979297939794979597969797979897999800980198029803980498059806980798089809981098119812981398149815981698179818981998209821982298239824982598269827982898299830983198329833983498359836983798389839984098419842984398449845984698479848984998509851985298539854985598569857985898599860986198629863986498659866986798689869987098719872987398749875987698779878987998809881988298839884988598869887988898899890989198929893989498959896989798989899990099019902990399049905990699079908990999109911991299139914991599169917991899199920992199229923992499259926992799289929993099319932993399349935993699379938993999409941994299439944994599469947994899499950995199529953995499559956995799589959996099619962996399649965996699679968996999709971997299739974997599769977997899799980998199829983998499859986998799889989999099919992999399949995999699979998999910000100011000210003100041000510006100071000810009100101001110012100131001410015100161001710018100191002010021100221002310024100251002610027100281002910030100311003210033100341003510036100371003810039100401004110042100431004410045100461004710048100491005010051100521005310054100551005610057100581005910060100611006210063100641006510066100671006810069100701007110072100731007410075100761007710078100791008010081100821008310084100851008610087100881008910090100911009210093100941009510096100971009810099101001010110102101031010410105101061010710108101091011010111101121011310114101151011610117101181011910120101211012210123101241012510126101271012810129101301013110132101331013410135101361013710138101391014010141101421014310144101451014610147101481014910150101511015210153101541015510156101571015810159101601016110162101631016410165101661016710168101691017010171101721017310174101751017610177101781017910180101811018210183101841018510186101871018810189101901019110192101931019410195101961019710198101991020010201102021020310204102051020610207102081020910210102111021210213102141021510216102171021810219102201022110222102231022410225102261022710228102291023010231102321023310234102351023610237102381023910240102411024210243102441024510246102471024810249102501025110252102531025410255102561025710258102591026010261102621026310264102651026610267102681026910270102711027210273102741027510276102771027810279102801028110282102831028410285102861028710288102891029010291102921029310294102951029610297102981029910300103011030210303103041030510306103071030810309103101031110312103131031410315103161031710318103191032010321103221032310324103251032610327103281032910330103311033210333103341033510336103371033810339103401034110342103431034410345103461034710348103491035010351103521035310354103551035610357103581035910360103611036210363103641036510366103671036810369103701037110372103731037410375103761037710378103791038010381103821038310384103851038610387103881038910390103911039210393103941039510396103971039810399104001040110402104031040410405104061040710408104091041010411104121041310414104151041610417104181041910420104211042210423104241042510426104271042810429104301043110432104331043410435104361043710438104391044010441104421044310444104451044610447104481044910450104511045210453104541045510456104571045810459104601046110462104631046410465104661046710468104691047010471104721047310474104751047610477104781047910480104811048210483104841048510486104871048810489104901049110492104931049410495104961049710498104991050010501105021050310504105051050610507105081050910510105111051210513105141051510516105171051810519105201052110522105231052410525105261052710528105291053010531105321053310534105351053610537105381053910540105411054210543105441054510546105471054810549105501055110552105531055410555105561055710558105591056010561105621056310564105651056610567105681056910570105711057210573105741057510576105771057810579105801058110582105831058410585105861058710588105891059010591105921059310594105951059610597105981059910600106011060210603106041060510606106071060810609106101061110612106131061410615106161061710618106191062010621106221062310624106251062610627106281062910630106311063210633106341063510636106371063810639106401064110642106431064410645
  1. {
  2. "_readme": [
  3. "This file locks the dependencies of your project to a known state",
  4. "Read more about it at https://getcomposer.org/doc/01-basic-usage.md#installing-dependencies",
  5. "This file is @generated automatically"
  6. ],
  7. "content-hash": "13c7a148fab0426e376ece2525cd13ac",
  8. "packages": [
  9. {
  10. "name": "composer/package-versions-deprecated",
  11. "version": "1.11.99.5",
  12. "source": {
  13. "type": "git",
  14. "url": "https://github.com/composer/package-versions-deprecated.git",
  15. "reference": "b4f54f74ef3453349c24a845d22392cd31e65f1d"
  16. },
  17. "dist": {
  18. "type": "zip",
  19. "url": "https://api.github.com/repos/composer/package-versions-deprecated/zipball/b4f54f74ef3453349c24a845d22392cd31e65f1d",
  20. "reference": "b4f54f74ef3453349c24a845d22392cd31e65f1d",
  21. "shasum": ""
  22. },
  23. "require": {
  24. "composer-plugin-api": "^1.1.0 || ^2.0",
  25. "php": "^7 || ^8"
  26. },
  27. "replace": {
  28. "ocramius/package-versions": "1.11.99"
  29. },
  30. "require-dev": {
  31. "composer/composer": "^1.9.3 || ^2.0@dev",
  32. "ext-zip": "^1.13",
  33. "phpunit/phpunit": "^6.5 || ^7"
  34. },
  35. "type": "composer-plugin",
  36. "extra": {
  37. "class": "PackageVersions\\Installer",
  38. "branch-alias": {
  39. "dev-master": "1.x-dev"
  40. }
  41. },
  42. "autoload": {
  43. "psr-4": {
  44. "PackageVersions\\": "src/PackageVersions"
  45. }
  46. },
  47. "notification-url": "https://packagist.org/downloads/",
  48. "license": [
  49. "MIT"
  50. ],
  51. "authors": [
  52. {
  53. "name": "Marco Pivetta",
  54. "email": "ocramius@gmail.com"
  55. },
  56. {
  57. "name": "Jordi Boggiano",
  58. "email": "j.boggiano@seld.be"
  59. }
  60. ],
  61. "description": "Composer plugin that provides efficient querying for installed package versions (no runtime IO)",
  62. "support": {
  63. "issues": "https://github.com/composer/package-versions-deprecated/issues",
  64. "source": "https://github.com/composer/package-versions-deprecated/tree/1.11.99.5"
  65. },
  66. "funding": [
  67. {
  68. "url": "https://packagist.com",
  69. "type": "custom"
  70. },
  71. {
  72. "url": "https://github.com/composer",
  73. "type": "github"
  74. },
  75. {
  76. "url": "https://tidelift.com/funding/github/packagist/composer/composer",
  77. "type": "tidelift"
  78. }
  79. ],
  80. "time": "2022-01-17T14:14:24+00:00"
  81. },
  82. {
  83. "name": "dflydev/dot-access-data",
  84. "version": "v3.0.2",
  85. "source": {
  86. "type": "git",
  87. "url": "https://github.com/dflydev/dflydev-dot-access-data.git",
  88. "reference": "f41715465d65213d644d3141a6a93081be5d3549"
  89. },
  90. "dist": {
  91. "type": "zip",
  92. "url": "https://api.github.com/repos/dflydev/dflydev-dot-access-data/zipball/f41715465d65213d644d3141a6a93081be5d3549",
  93. "reference": "f41715465d65213d644d3141a6a93081be5d3549",
  94. "shasum": ""
  95. },
  96. "require": {
  97. "php": "^7.1 || ^8.0"
  98. },
  99. "require-dev": {
  100. "phpstan/phpstan": "^0.12.42",
  101. "phpunit/phpunit": "^7.5 || ^8.5 || ^9.3",
  102. "scrutinizer/ocular": "1.6.0",
  103. "squizlabs/php_codesniffer": "^3.5",
  104. "vimeo/psalm": "^4.0.0"
  105. },
  106. "type": "library",
  107. "extra": {
  108. "branch-alias": {
  109. "dev-main": "3.x-dev"
  110. }
  111. },
  112. "autoload": {
  113. "psr-4": {
  114. "Dflydev\\DotAccessData\\": "src/"
  115. }
  116. },
  117. "notification-url": "https://packagist.org/downloads/",
  118. "license": [
  119. "MIT"
  120. ],
  121. "authors": [
  122. {
  123. "name": "Dragonfly Development Inc.",
  124. "email": "info@dflydev.com",
  125. "homepage": "http://dflydev.com"
  126. },
  127. {
  128. "name": "Beau Simensen",
  129. "email": "beau@dflydev.com",
  130. "homepage": "http://beausimensen.com"
  131. },
  132. {
  133. "name": "Carlos Frutos",
  134. "email": "carlos@kiwing.it",
  135. "homepage": "https://github.com/cfrutos"
  136. },
  137. {
  138. "name": "Colin O'Dell",
  139. "email": "colinodell@gmail.com",
  140. "homepage": "https://www.colinodell.com"
  141. }
  142. ],
  143. "description": "Given a deep data structure, access data by dot notation.",
  144. "homepage": "https://github.com/dflydev/dflydev-dot-access-data",
  145. "keywords": [
  146. "access",
  147. "data",
  148. "dot",
  149. "notation"
  150. ],
  151. "support": {
  152. "issues": "https://github.com/dflydev/dflydev-dot-access-data/issues",
  153. "source": "https://github.com/dflydev/dflydev-dot-access-data/tree/v3.0.2"
  154. },
  155. "time": "2022-10-27T11:44:00+00:00"
  156. },
  157. {
  158. "name": "doctrine/annotations",
  159. "version": "2.0.1",
  160. "source": {
  161. "type": "git",
  162. "url": "https://github.com/doctrine/annotations.git",
  163. "reference": "e157ef3f3124bbf6fe7ce0ffd109e8a8ef284e7f"
  164. },
  165. "dist": {
  166. "type": "zip",
  167. "url": "https://api.github.com/repos/doctrine/annotations/zipball/e157ef3f3124bbf6fe7ce0ffd109e8a8ef284e7f",
  168. "reference": "e157ef3f3124bbf6fe7ce0ffd109e8a8ef284e7f",
  169. "shasum": ""
  170. },
  171. "require": {
  172. "doctrine/lexer": "^2 || ^3",
  173. "ext-tokenizer": "*",
  174. "php": "^7.2 || ^8.0",
  175. "psr/cache": "^1 || ^2 || ^3"
  176. },
  177. "require-dev": {
  178. "doctrine/cache": "^2.0",
  179. "doctrine/coding-standard": "^10",
  180. "phpstan/phpstan": "^1.8.0",
  181. "phpunit/phpunit": "^7.5 || ^8.5 || ^9.5",
  182. "symfony/cache": "^5.4 || ^6",
  183. "vimeo/psalm": "^4.10"
  184. },
  185. "suggest": {
  186. "php": "PHP 8.0 or higher comes with attributes, a native replacement for annotations"
  187. },
  188. "type": "library",
  189. "autoload": {
  190. "psr-4": {
  191. "Doctrine\\Common\\Annotations\\": "lib/Doctrine/Common/Annotations"
  192. }
  193. },
  194. "notification-url": "https://packagist.org/downloads/",
  195. "license": [
  196. "MIT"
  197. ],
  198. "authors": [
  199. {
  200. "name": "Guilherme Blanco",
  201. "email": "guilhermeblanco@gmail.com"
  202. },
  203. {
  204. "name": "Roman Borschel",
  205. "email": "roman@code-factory.org"
  206. },
  207. {
  208. "name": "Benjamin Eberlei",
  209. "email": "kontakt@beberlei.de"
  210. },
  211. {
  212. "name": "Jonathan Wage",
  213. "email": "jonwage@gmail.com"
  214. },
  215. {
  216. "name": "Johannes Schmitt",
  217. "email": "schmittjoh@gmail.com"
  218. }
  219. ],
  220. "description": "Docblock Annotations Parser",
  221. "homepage": "https://www.doctrine-project.org/projects/annotations.html",
  222. "keywords": [
  223. "annotations",
  224. "docblock",
  225. "parser"
  226. ],
  227. "support": {
  228. "issues": "https://github.com/doctrine/annotations/issues",
  229. "source": "https://github.com/doctrine/annotations/tree/2.0.1"
  230. },
  231. "time": "2023-02-02T22:02:53+00:00"
  232. },
  233. {
  234. "name": "doctrine/cache",
  235. "version": "2.2.0",
  236. "source": {
  237. "type": "git",
  238. "url": "https://github.com/doctrine/cache.git",
  239. "reference": "1ca8f21980e770095a31456042471a57bc4c68fb"
  240. },
  241. "dist": {
  242. "type": "zip",
  243. "url": "https://api.github.com/repos/doctrine/cache/zipball/1ca8f21980e770095a31456042471a57bc4c68fb",
  244. "reference": "1ca8f21980e770095a31456042471a57bc4c68fb",
  245. "shasum": ""
  246. },
  247. "require": {
  248. "php": "~7.1 || ^8.0"
  249. },
  250. "conflict": {
  251. "doctrine/common": ">2.2,<2.4"
  252. },
  253. "require-dev": {
  254. "cache/integration-tests": "dev-master",
  255. "doctrine/coding-standard": "^9",
  256. "phpunit/phpunit": "^7.5 || ^8.5 || ^9.5",
  257. "psr/cache": "^1.0 || ^2.0 || ^3.0",
  258. "symfony/cache": "^4.4 || ^5.4 || ^6",
  259. "symfony/var-exporter": "^4.4 || ^5.4 || ^6"
  260. },
  261. "type": "library",
  262. "autoload": {
  263. "psr-4": {
  264. "Doctrine\\Common\\Cache\\": "lib/Doctrine/Common/Cache"
  265. }
  266. },
  267. "notification-url": "https://packagist.org/downloads/",
  268. "license": [
  269. "MIT"
  270. ],
  271. "authors": [
  272. {
  273. "name": "Guilherme Blanco",
  274. "email": "guilhermeblanco@gmail.com"
  275. },
  276. {
  277. "name": "Roman Borschel",
  278. "email": "roman@code-factory.org"
  279. },
  280. {
  281. "name": "Benjamin Eberlei",
  282. "email": "kontakt@beberlei.de"
  283. },
  284. {
  285. "name": "Jonathan Wage",
  286. "email": "jonwage@gmail.com"
  287. },
  288. {
  289. "name": "Johannes Schmitt",
  290. "email": "schmittjoh@gmail.com"
  291. }
  292. ],
  293. "description": "PHP Doctrine Cache library is a popular cache implementation that supports many different drivers such as redis, memcache, apc, mongodb and others.",
  294. "homepage": "https://www.doctrine-project.org/projects/cache.html",
  295. "keywords": [
  296. "abstraction",
  297. "apcu",
  298. "cache",
  299. "caching",
  300. "couchdb",
  301. "memcached",
  302. "php",
  303. "redis",
  304. "xcache"
  305. ],
  306. "support": {
  307. "issues": "https://github.com/doctrine/cache/issues",
  308. "source": "https://github.com/doctrine/cache/tree/2.2.0"
  309. },
  310. "funding": [
  311. {
  312. "url": "https://www.doctrine-project.org/sponsorship.html",
  313. "type": "custom"
  314. },
  315. {
  316. "url": "https://www.patreon.com/phpdoctrine",
  317. "type": "patreon"
  318. },
  319. {
  320. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fcache",
  321. "type": "tidelift"
  322. }
  323. ],
  324. "time": "2022-05-20T20:07:39+00:00"
  325. },
  326. {
  327. "name": "doctrine/collections",
  328. "version": "2.1.4",
  329. "source": {
  330. "type": "git",
  331. "url": "https://github.com/doctrine/collections.git",
  332. "reference": "72328a11443a0de79967104ad36ba7b30bded134"
  333. },
  334. "dist": {
  335. "type": "zip",
  336. "url": "https://api.github.com/repos/doctrine/collections/zipball/72328a11443a0de79967104ad36ba7b30bded134",
  337. "reference": "72328a11443a0de79967104ad36ba7b30bded134",
  338. "shasum": ""
  339. },
  340. "require": {
  341. "doctrine/deprecations": "^1",
  342. "php": "^8.1"
  343. },
  344. "require-dev": {
  345. "doctrine/coding-standard": "^12",
  346. "ext-json": "*",
  347. "phpstan/phpstan": "^1.8",
  348. "phpstan/phpstan-phpunit": "^1.0",
  349. "phpunit/phpunit": "^9.5",
  350. "vimeo/psalm": "^5.11"
  351. },
  352. "type": "library",
  353. "autoload": {
  354. "psr-4": {
  355. "Doctrine\\Common\\Collections\\": "src"
  356. }
  357. },
  358. "notification-url": "https://packagist.org/downloads/",
  359. "license": [
  360. "MIT"
  361. ],
  362. "authors": [
  363. {
  364. "name": "Guilherme Blanco",
  365. "email": "guilhermeblanco@gmail.com"
  366. },
  367. {
  368. "name": "Roman Borschel",
  369. "email": "roman@code-factory.org"
  370. },
  371. {
  372. "name": "Benjamin Eberlei",
  373. "email": "kontakt@beberlei.de"
  374. },
  375. {
  376. "name": "Jonathan Wage",
  377. "email": "jonwage@gmail.com"
  378. },
  379. {
  380. "name": "Johannes Schmitt",
  381. "email": "schmittjoh@gmail.com"
  382. }
  383. ],
  384. "description": "PHP Doctrine Collections library that adds additional functionality on top of PHP arrays.",
  385. "homepage": "https://www.doctrine-project.org/projects/collections.html",
  386. "keywords": [
  387. "array",
  388. "collections",
  389. "iterators",
  390. "php"
  391. ],
  392. "support": {
  393. "issues": "https://github.com/doctrine/collections/issues",
  394. "source": "https://github.com/doctrine/collections/tree/2.1.4"
  395. },
  396. "funding": [
  397. {
  398. "url": "https://www.doctrine-project.org/sponsorship.html",
  399. "type": "custom"
  400. },
  401. {
  402. "url": "https://www.patreon.com/phpdoctrine",
  403. "type": "patreon"
  404. },
  405. {
  406. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fcollections",
  407. "type": "tidelift"
  408. }
  409. ],
  410. "time": "2023-10-03T09:22:33+00:00"
  411. },
  412. {
  413. "name": "doctrine/common",
  414. "version": "3.4.3",
  415. "source": {
  416. "type": "git",
  417. "url": "https://github.com/doctrine/common.git",
  418. "reference": "8b5e5650391f851ed58910b3e3d48a71062eeced"
  419. },
  420. "dist": {
  421. "type": "zip",
  422. "url": "https://api.github.com/repos/doctrine/common/zipball/8b5e5650391f851ed58910b3e3d48a71062eeced",
  423. "reference": "8b5e5650391f851ed58910b3e3d48a71062eeced",
  424. "shasum": ""
  425. },
  426. "require": {
  427. "doctrine/persistence": "^2.0 || ^3.0",
  428. "php": "^7.1 || ^8.0"
  429. },
  430. "require-dev": {
  431. "doctrine/coding-standard": "^9.0 || ^10.0",
  432. "doctrine/collections": "^1",
  433. "phpstan/phpstan": "^1.4.1",
  434. "phpstan/phpstan-phpunit": "^1",
  435. "phpunit/phpunit": "^7.5.20 || ^8.5 || ^9.0",
  436. "squizlabs/php_codesniffer": "^3.0",
  437. "symfony/phpunit-bridge": "^6.1",
  438. "vimeo/psalm": "^4.4"
  439. },
  440. "type": "library",
  441. "autoload": {
  442. "psr-4": {
  443. "Doctrine\\Common\\": "src"
  444. }
  445. },
  446. "notification-url": "https://packagist.org/downloads/",
  447. "license": [
  448. "MIT"
  449. ],
  450. "authors": [
  451. {
  452. "name": "Guilherme Blanco",
  453. "email": "guilhermeblanco@gmail.com"
  454. },
  455. {
  456. "name": "Roman Borschel",
  457. "email": "roman@code-factory.org"
  458. },
  459. {
  460. "name": "Benjamin Eberlei",
  461. "email": "kontakt@beberlei.de"
  462. },
  463. {
  464. "name": "Jonathan Wage",
  465. "email": "jonwage@gmail.com"
  466. },
  467. {
  468. "name": "Johannes Schmitt",
  469. "email": "schmittjoh@gmail.com"
  470. },
  471. {
  472. "name": "Marco Pivetta",
  473. "email": "ocramius@gmail.com"
  474. }
  475. ],
  476. "description": "PHP Doctrine Common project is a library that provides additional functionality that other Doctrine projects depend on such as better reflection support, proxies and much more.",
  477. "homepage": "https://www.doctrine-project.org/projects/common.html",
  478. "keywords": [
  479. "common",
  480. "doctrine",
  481. "php"
  482. ],
  483. "support": {
  484. "issues": "https://github.com/doctrine/common/issues",
  485. "source": "https://github.com/doctrine/common/tree/3.4.3"
  486. },
  487. "funding": [
  488. {
  489. "url": "https://www.doctrine-project.org/sponsorship.html",
  490. "type": "custom"
  491. },
  492. {
  493. "url": "https://www.patreon.com/phpdoctrine",
  494. "type": "patreon"
  495. },
  496. {
  497. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fcommon",
  498. "type": "tidelift"
  499. }
  500. ],
  501. "time": "2022-10-09T11:47:59+00:00"
  502. },
  503. {
  504. "name": "doctrine/dbal",
  505. "version": "3.7.2",
  506. "source": {
  507. "type": "git",
  508. "url": "https://github.com/doctrine/dbal.git",
  509. "reference": "0ac3c270590e54910715e9a1a044cc368df282b2"
  510. },
  511. "dist": {
  512. "type": "zip",
  513. "url": "https://api.github.com/repos/doctrine/dbal/zipball/0ac3c270590e54910715e9a1a044cc368df282b2",
  514. "reference": "0ac3c270590e54910715e9a1a044cc368df282b2",
  515. "shasum": ""
  516. },
  517. "require": {
  518. "composer-runtime-api": "^2",
  519. "doctrine/cache": "^1.11|^2.0",
  520. "doctrine/deprecations": "^0.5.3|^1",
  521. "doctrine/event-manager": "^1|^2",
  522. "php": "^7.4 || ^8.0",
  523. "psr/cache": "^1|^2|^3",
  524. "psr/log": "^1|^2|^3"
  525. },
  526. "require-dev": {
  527. "doctrine/coding-standard": "12.0.0",
  528. "fig/log-test": "^1",
  529. "jetbrains/phpstorm-stubs": "2023.1",
  530. "phpstan/phpstan": "1.10.42",
  531. "phpstan/phpstan-strict-rules": "^1.5",
  532. "phpunit/phpunit": "9.6.13",
  533. "psalm/plugin-phpunit": "0.18.4",
  534. "slevomat/coding-standard": "8.13.1",
  535. "squizlabs/php_codesniffer": "3.7.2",
  536. "symfony/cache": "^5.4|^6.0",
  537. "symfony/console": "^4.4|^5.4|^6.0",
  538. "vimeo/psalm": "4.30.0"
  539. },
  540. "suggest": {
  541. "symfony/console": "For helpful console commands such as SQL execution and import of files."
  542. },
  543. "bin": [
  544. "bin/doctrine-dbal"
  545. ],
  546. "type": "library",
  547. "autoload": {
  548. "psr-4": {
  549. "Doctrine\\DBAL\\": "src"
  550. }
  551. },
  552. "notification-url": "https://packagist.org/downloads/",
  553. "license": [
  554. "MIT"
  555. ],
  556. "authors": [
  557. {
  558. "name": "Guilherme Blanco",
  559. "email": "guilhermeblanco@gmail.com"
  560. },
  561. {
  562. "name": "Roman Borschel",
  563. "email": "roman@code-factory.org"
  564. },
  565. {
  566. "name": "Benjamin Eberlei",
  567. "email": "kontakt@beberlei.de"
  568. },
  569. {
  570. "name": "Jonathan Wage",
  571. "email": "jonwage@gmail.com"
  572. }
  573. ],
  574. "description": "Powerful PHP database abstraction layer (DBAL) with many features for database schema introspection and management.",
  575. "homepage": "https://www.doctrine-project.org/projects/dbal.html",
  576. "keywords": [
  577. "abstraction",
  578. "database",
  579. "db2",
  580. "dbal",
  581. "mariadb",
  582. "mssql",
  583. "mysql",
  584. "oci8",
  585. "oracle",
  586. "pdo",
  587. "pgsql",
  588. "postgresql",
  589. "queryobject",
  590. "sasql",
  591. "sql",
  592. "sqlite",
  593. "sqlserver",
  594. "sqlsrv"
  595. ],
  596. "support": {
  597. "issues": "https://github.com/doctrine/dbal/issues",
  598. "source": "https://github.com/doctrine/dbal/tree/3.7.2"
  599. },
  600. "funding": [
  601. {
  602. "url": "https://www.doctrine-project.org/sponsorship.html",
  603. "type": "custom"
  604. },
  605. {
  606. "url": "https://www.patreon.com/phpdoctrine",
  607. "type": "patreon"
  608. },
  609. {
  610. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fdbal",
  611. "type": "tidelift"
  612. }
  613. ],
  614. "time": "2023-11-19T08:06:58+00:00"
  615. },
  616. {
  617. "name": "doctrine/deprecations",
  618. "version": "1.1.2",
  619. "source": {
  620. "type": "git",
  621. "url": "https://github.com/doctrine/deprecations.git",
  622. "reference": "4f2d4f2836e7ec4e7a8625e75c6aa916004db931"
  623. },
  624. "dist": {
  625. "type": "zip",
  626. "url": "https://api.github.com/repos/doctrine/deprecations/zipball/4f2d4f2836e7ec4e7a8625e75c6aa916004db931",
  627. "reference": "4f2d4f2836e7ec4e7a8625e75c6aa916004db931",
  628. "shasum": ""
  629. },
  630. "require": {
  631. "php": "^7.1 || ^8.0"
  632. },
  633. "require-dev": {
  634. "doctrine/coding-standard": "^9",
  635. "phpstan/phpstan": "1.4.10 || 1.10.15",
  636. "phpstan/phpstan-phpunit": "^1.0",
  637. "phpunit/phpunit": "^7.5 || ^8.5 || ^9.5",
  638. "psalm/plugin-phpunit": "0.18.4",
  639. "psr/log": "^1 || ^2 || ^3",
  640. "vimeo/psalm": "4.30.0 || 5.12.0"
  641. },
  642. "suggest": {
  643. "psr/log": "Allows logging deprecations via PSR-3 logger implementation"
  644. },
  645. "type": "library",
  646. "autoload": {
  647. "psr-4": {
  648. "Doctrine\\Deprecations\\": "lib/Doctrine/Deprecations"
  649. }
  650. },
  651. "notification-url": "https://packagist.org/downloads/",
  652. "license": [
  653. "MIT"
  654. ],
  655. "description": "A small layer on top of trigger_error(E_USER_DEPRECATED) or PSR-3 logging with options to disable all deprecations or selectively for packages.",
  656. "homepage": "https://www.doctrine-project.org/",
  657. "support": {
  658. "issues": "https://github.com/doctrine/deprecations/issues",
  659. "source": "https://github.com/doctrine/deprecations/tree/1.1.2"
  660. },
  661. "time": "2023-09-27T20:04:15+00:00"
  662. },
  663. {
  664. "name": "doctrine/doctrine-bundle",
  665. "version": "2.11.1",
  666. "source": {
  667. "type": "git",
  668. "url": "https://github.com/doctrine/DoctrineBundle.git",
  669. "reference": "4089f1424b724786c062aea50aae5f773449b94b"
  670. },
  671. "dist": {
  672. "type": "zip",
  673. "url": "https://api.github.com/repos/doctrine/DoctrineBundle/zipball/4089f1424b724786c062aea50aae5f773449b94b",
  674. "reference": "4089f1424b724786c062aea50aae5f773449b94b",
  675. "shasum": ""
  676. },
  677. "require": {
  678. "doctrine/cache": "^1.11 || ^2.0",
  679. "doctrine/dbal": "^3.7.0 || ^4.0",
  680. "doctrine/persistence": "^2.2 || ^3",
  681. "doctrine/sql-formatter": "^1.0.1",
  682. "php": "^7.4 || ^8.0",
  683. "symfony/cache": "^5.4 || ^6.0 || ^7.0",
  684. "symfony/config": "^5.4 || ^6.0 || ^7.0",
  685. "symfony/console": "^5.4 || ^6.0 || ^7.0",
  686. "symfony/dependency-injection": "^5.4 || ^6.0 || ^7.0",
  687. "symfony/deprecation-contracts": "^2.1 || ^3",
  688. "symfony/doctrine-bridge": "^5.4.19 || ^6.0.7 || ^7.0",
  689. "symfony/framework-bundle": "^5.4 || ^6.0 || ^7.0",
  690. "symfony/polyfill-php80": "^1.15",
  691. "symfony/service-contracts": "^1.1.1 || ^2.0 || ^3"
  692. },
  693. "conflict": {
  694. "doctrine/annotations": ">=3.0",
  695. "doctrine/orm": "<2.14 || >=4.0",
  696. "twig/twig": "<1.34 || >=2.0 <2.4"
  697. },
  698. "require-dev": {
  699. "doctrine/annotations": "^1 || ^2",
  700. "doctrine/coding-standard": "^12",
  701. "doctrine/deprecations": "^1.0",
  702. "doctrine/orm": "^2.14 || ^3.0",
  703. "friendsofphp/proxy-manager-lts": "^1.0",
  704. "phpunit/phpunit": "^9.5.26 || ^10.0",
  705. "psalm/plugin-phpunit": "^0.18.4",
  706. "psalm/plugin-symfony": "^4",
  707. "psr/log": "^1.1.4 || ^2.0 || ^3.0",
  708. "symfony/phpunit-bridge": "^6.1 || ^7.0",
  709. "symfony/property-info": "^5.4 || ^6.0 || ^7.0",
  710. "symfony/proxy-manager-bridge": "^5.4 || ^6.0 || ^7.0",
  711. "symfony/security-bundle": "^5.4 || ^6.0 || ^7.0",
  712. "symfony/string": "^5.4 || ^6.0 || ^7.0",
  713. "symfony/twig-bridge": "^5.4 || ^6.0 || ^7.0",
  714. "symfony/validator": "^5.4 || ^6.0 || ^7.0",
  715. "symfony/var-exporter": "^5.4 || ^6.2 || ^7.0",
  716. "symfony/web-profiler-bundle": "^5.4 || ^6.0 || ^7.0",
  717. "symfony/yaml": "^5.4 || ^6.0 || ^7.0",
  718. "twig/twig": "^1.34 || ^2.12 || ^3.0",
  719. "vimeo/psalm": "^4.30"
  720. },
  721. "suggest": {
  722. "doctrine/orm": "The Doctrine ORM integration is optional in the bundle.",
  723. "ext-pdo": "*",
  724. "symfony/web-profiler-bundle": "To use the data collector."
  725. },
  726. "type": "symfony-bundle",
  727. "autoload": {
  728. "psr-4": {
  729. "Doctrine\\Bundle\\DoctrineBundle\\": ""
  730. }
  731. },
  732. "notification-url": "https://packagist.org/downloads/",
  733. "license": [
  734. "MIT"
  735. ],
  736. "authors": [
  737. {
  738. "name": "Fabien Potencier",
  739. "email": "fabien@symfony.com"
  740. },
  741. {
  742. "name": "Benjamin Eberlei",
  743. "email": "kontakt@beberlei.de"
  744. },
  745. {
  746. "name": "Symfony Community",
  747. "homepage": "https://symfony.com/contributors"
  748. },
  749. {
  750. "name": "Doctrine Project",
  751. "homepage": "https://www.doctrine-project.org/"
  752. }
  753. ],
  754. "description": "Symfony DoctrineBundle",
  755. "homepage": "https://www.doctrine-project.org",
  756. "keywords": [
  757. "database",
  758. "dbal",
  759. "orm",
  760. "persistence"
  761. ],
  762. "support": {
  763. "issues": "https://github.com/doctrine/DoctrineBundle/issues",
  764. "source": "https://github.com/doctrine/DoctrineBundle/tree/2.11.1"
  765. },
  766. "funding": [
  767. {
  768. "url": "https://www.doctrine-project.org/sponsorship.html",
  769. "type": "custom"
  770. },
  771. {
  772. "url": "https://www.patreon.com/phpdoctrine",
  773. "type": "patreon"
  774. },
  775. {
  776. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fdoctrine-bundle",
  777. "type": "tidelift"
  778. }
  779. ],
  780. "time": "2023-11-15T20:01:50+00:00"
  781. },
  782. {
  783. "name": "doctrine/doctrine-migrations-bundle",
  784. "version": "3.3.0",
  785. "source": {
  786. "type": "git",
  787. "url": "https://github.com/doctrine/DoctrineMigrationsBundle.git",
  788. "reference": "1dd42906a5fb9c5960723e2ebb45c68006493835"
  789. },
  790. "dist": {
  791. "type": "zip",
  792. "url": "https://api.github.com/repos/doctrine/DoctrineMigrationsBundle/zipball/1dd42906a5fb9c5960723e2ebb45c68006493835",
  793. "reference": "1dd42906a5fb9c5960723e2ebb45c68006493835",
  794. "shasum": ""
  795. },
  796. "require": {
  797. "doctrine/doctrine-bundle": "^2.4",
  798. "doctrine/migrations": "^3.2",
  799. "php": "^7.2|^8.0",
  800. "symfony/deprecation-contracts": "^2.1 || ^3",
  801. "symfony/framework-bundle": "^5.4 || ^6.0 || ^7.0"
  802. },
  803. "require-dev": {
  804. "doctrine/coding-standard": "^12",
  805. "doctrine/orm": "^2.6 || ^3",
  806. "doctrine/persistence": "^2.0 || ^3 ",
  807. "phpstan/phpstan": "^1.4",
  808. "phpstan/phpstan-deprecation-rules": "^1",
  809. "phpstan/phpstan-phpunit": "^1",
  810. "phpstan/phpstan-strict-rules": "^1.1",
  811. "phpstan/phpstan-symfony": "^1.3",
  812. "phpunit/phpunit": "^8.5|^9.5",
  813. "psalm/plugin-phpunit": "^0.18.4",
  814. "psalm/plugin-symfony": "^3 || ^5",
  815. "symfony/phpunit-bridge": "^6.3 || ^7",
  816. "symfony/var-exporter": "^5.4 || ^6 || ^7",
  817. "vimeo/psalm": "^4.30 || ^5.15"
  818. },
  819. "type": "symfony-bundle",
  820. "autoload": {
  821. "psr-4": {
  822. "Doctrine\\Bundle\\MigrationsBundle\\": ""
  823. },
  824. "exclude-from-classmap": [
  825. "/Tests/"
  826. ]
  827. },
  828. "notification-url": "https://packagist.org/downloads/",
  829. "license": [
  830. "MIT"
  831. ],
  832. "authors": [
  833. {
  834. "name": "Fabien Potencier",
  835. "email": "fabien@symfony.com"
  836. },
  837. {
  838. "name": "Doctrine Project",
  839. "homepage": "https://www.doctrine-project.org"
  840. },
  841. {
  842. "name": "Symfony Community",
  843. "homepage": "https://symfony.com/contributors"
  844. }
  845. ],
  846. "description": "Symfony DoctrineMigrationsBundle",
  847. "homepage": "https://www.doctrine-project.org",
  848. "keywords": [
  849. "dbal",
  850. "migrations",
  851. "schema"
  852. ],
  853. "support": {
  854. "issues": "https://github.com/doctrine/DoctrineMigrationsBundle/issues",
  855. "source": "https://github.com/doctrine/DoctrineMigrationsBundle/tree/3.3.0"
  856. },
  857. "funding": [
  858. {
  859. "url": "https://www.doctrine-project.org/sponsorship.html",
  860. "type": "custom"
  861. },
  862. {
  863. "url": "https://www.patreon.com/phpdoctrine",
  864. "type": "patreon"
  865. },
  866. {
  867. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fdoctrine-migrations-bundle",
  868. "type": "tidelift"
  869. }
  870. ],
  871. "time": "2023-11-13T19:44:41+00:00"
  872. },
  873. {
  874. "name": "doctrine/event-manager",
  875. "version": "2.0.0",
  876. "source": {
  877. "type": "git",
  878. "url": "https://github.com/doctrine/event-manager.git",
  879. "reference": "750671534e0241a7c50ea5b43f67e23eb5c96f32"
  880. },
  881. "dist": {
  882. "type": "zip",
  883. "url": "https://api.github.com/repos/doctrine/event-manager/zipball/750671534e0241a7c50ea5b43f67e23eb5c96f32",
  884. "reference": "750671534e0241a7c50ea5b43f67e23eb5c96f32",
  885. "shasum": ""
  886. },
  887. "require": {
  888. "php": "^8.1"
  889. },
  890. "conflict": {
  891. "doctrine/common": "<2.9"
  892. },
  893. "require-dev": {
  894. "doctrine/coding-standard": "^10",
  895. "phpstan/phpstan": "^1.8.8",
  896. "phpunit/phpunit": "^9.5",
  897. "vimeo/psalm": "^4.28"
  898. },
  899. "type": "library",
  900. "autoload": {
  901. "psr-4": {
  902. "Doctrine\\Common\\": "src"
  903. }
  904. },
  905. "notification-url": "https://packagist.org/downloads/",
  906. "license": [
  907. "MIT"
  908. ],
  909. "authors": [
  910. {
  911. "name": "Guilherme Blanco",
  912. "email": "guilhermeblanco@gmail.com"
  913. },
  914. {
  915. "name": "Roman Borschel",
  916. "email": "roman@code-factory.org"
  917. },
  918. {
  919. "name": "Benjamin Eberlei",
  920. "email": "kontakt@beberlei.de"
  921. },
  922. {
  923. "name": "Jonathan Wage",
  924. "email": "jonwage@gmail.com"
  925. },
  926. {
  927. "name": "Johannes Schmitt",
  928. "email": "schmittjoh@gmail.com"
  929. },
  930. {
  931. "name": "Marco Pivetta",
  932. "email": "ocramius@gmail.com"
  933. }
  934. ],
  935. "description": "The Doctrine Event Manager is a simple PHP event system that was built to be used with the various Doctrine projects.",
  936. "homepage": "https://www.doctrine-project.org/projects/event-manager.html",
  937. "keywords": [
  938. "event",
  939. "event dispatcher",
  940. "event manager",
  941. "event system",
  942. "events"
  943. ],
  944. "support": {
  945. "issues": "https://github.com/doctrine/event-manager/issues",
  946. "source": "https://github.com/doctrine/event-manager/tree/2.0.0"
  947. },
  948. "funding": [
  949. {
  950. "url": "https://www.doctrine-project.org/sponsorship.html",
  951. "type": "custom"
  952. },
  953. {
  954. "url": "https://www.patreon.com/phpdoctrine",
  955. "type": "patreon"
  956. },
  957. {
  958. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fevent-manager",
  959. "type": "tidelift"
  960. }
  961. ],
  962. "time": "2022-10-12T20:59:15+00:00"
  963. },
  964. {
  965. "name": "doctrine/inflector",
  966. "version": "2.0.8",
  967. "source": {
  968. "type": "git",
  969. "url": "https://github.com/doctrine/inflector.git",
  970. "reference": "f9301a5b2fb1216b2b08f02ba04dc45423db6bff"
  971. },
  972. "dist": {
  973. "type": "zip",
  974. "url": "https://api.github.com/repos/doctrine/inflector/zipball/f9301a5b2fb1216b2b08f02ba04dc45423db6bff",
  975. "reference": "f9301a5b2fb1216b2b08f02ba04dc45423db6bff",
  976. "shasum": ""
  977. },
  978. "require": {
  979. "php": "^7.2 || ^8.0"
  980. },
  981. "require-dev": {
  982. "doctrine/coding-standard": "^11.0",
  983. "phpstan/phpstan": "^1.8",
  984. "phpstan/phpstan-phpunit": "^1.1",
  985. "phpstan/phpstan-strict-rules": "^1.3",
  986. "phpunit/phpunit": "^8.5 || ^9.5",
  987. "vimeo/psalm": "^4.25 || ^5.4"
  988. },
  989. "type": "library",
  990. "autoload": {
  991. "psr-4": {
  992. "Doctrine\\Inflector\\": "lib/Doctrine/Inflector"
  993. }
  994. },
  995. "notification-url": "https://packagist.org/downloads/",
  996. "license": [
  997. "MIT"
  998. ],
  999. "authors": [
  1000. {
  1001. "name": "Guilherme Blanco",
  1002. "email": "guilhermeblanco@gmail.com"
  1003. },
  1004. {
  1005. "name": "Roman Borschel",
  1006. "email": "roman@code-factory.org"
  1007. },
  1008. {
  1009. "name": "Benjamin Eberlei",
  1010. "email": "kontakt@beberlei.de"
  1011. },
  1012. {
  1013. "name": "Jonathan Wage",
  1014. "email": "jonwage@gmail.com"
  1015. },
  1016. {
  1017. "name": "Johannes Schmitt",
  1018. "email": "schmittjoh@gmail.com"
  1019. }
  1020. ],
  1021. "description": "PHP Doctrine Inflector is a small library that can perform string manipulations with regard to upper/lowercase and singular/plural forms of words.",
  1022. "homepage": "https://www.doctrine-project.org/projects/inflector.html",
  1023. "keywords": [
  1024. "inflection",
  1025. "inflector",
  1026. "lowercase",
  1027. "manipulation",
  1028. "php",
  1029. "plural",
  1030. "singular",
  1031. "strings",
  1032. "uppercase",
  1033. "words"
  1034. ],
  1035. "support": {
  1036. "issues": "https://github.com/doctrine/inflector/issues",
  1037. "source": "https://github.com/doctrine/inflector/tree/2.0.8"
  1038. },
  1039. "funding": [
  1040. {
  1041. "url": "https://www.doctrine-project.org/sponsorship.html",
  1042. "type": "custom"
  1043. },
  1044. {
  1045. "url": "https://www.patreon.com/phpdoctrine",
  1046. "type": "patreon"
  1047. },
  1048. {
  1049. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Finflector",
  1050. "type": "tidelift"
  1051. }
  1052. ],
  1053. "time": "2023-06-16T13:40:37+00:00"
  1054. },
  1055. {
  1056. "name": "doctrine/instantiator",
  1057. "version": "2.0.0",
  1058. "source": {
  1059. "type": "git",
  1060. "url": "https://github.com/doctrine/instantiator.git",
  1061. "reference": "c6222283fa3f4ac679f8b9ced9a4e23f163e80d0"
  1062. },
  1063. "dist": {
  1064. "type": "zip",
  1065. "url": "https://api.github.com/repos/doctrine/instantiator/zipball/c6222283fa3f4ac679f8b9ced9a4e23f163e80d0",
  1066. "reference": "c6222283fa3f4ac679f8b9ced9a4e23f163e80d0",
  1067. "shasum": ""
  1068. },
  1069. "require": {
  1070. "php": "^8.1"
  1071. },
  1072. "require-dev": {
  1073. "doctrine/coding-standard": "^11",
  1074. "ext-pdo": "*",
  1075. "ext-phar": "*",
  1076. "phpbench/phpbench": "^1.2",
  1077. "phpstan/phpstan": "^1.9.4",
  1078. "phpstan/phpstan-phpunit": "^1.3",
  1079. "phpunit/phpunit": "^9.5.27",
  1080. "vimeo/psalm": "^5.4"
  1081. },
  1082. "type": "library",
  1083. "autoload": {
  1084. "psr-4": {
  1085. "Doctrine\\Instantiator\\": "src/Doctrine/Instantiator/"
  1086. }
  1087. },
  1088. "notification-url": "https://packagist.org/downloads/",
  1089. "license": [
  1090. "MIT"
  1091. ],
  1092. "authors": [
  1093. {
  1094. "name": "Marco Pivetta",
  1095. "email": "ocramius@gmail.com",
  1096. "homepage": "https://ocramius.github.io/"
  1097. }
  1098. ],
  1099. "description": "A small, lightweight utility to instantiate objects in PHP without invoking their constructors",
  1100. "homepage": "https://www.doctrine-project.org/projects/instantiator.html",
  1101. "keywords": [
  1102. "constructor",
  1103. "instantiate"
  1104. ],
  1105. "support": {
  1106. "issues": "https://github.com/doctrine/instantiator/issues",
  1107. "source": "https://github.com/doctrine/instantiator/tree/2.0.0"
  1108. },
  1109. "funding": [
  1110. {
  1111. "url": "https://www.doctrine-project.org/sponsorship.html",
  1112. "type": "custom"
  1113. },
  1114. {
  1115. "url": "https://www.patreon.com/phpdoctrine",
  1116. "type": "patreon"
  1117. },
  1118. {
  1119. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Finstantiator",
  1120. "type": "tidelift"
  1121. }
  1122. ],
  1123. "time": "2022-12-30T00:23:10+00:00"
  1124. },
  1125. {
  1126. "name": "doctrine/lexer",
  1127. "version": "2.1.0",
  1128. "source": {
  1129. "type": "git",
  1130. "url": "https://github.com/doctrine/lexer.git",
  1131. "reference": "39ab8fcf5a51ce4b85ca97c7a7d033eb12831124"
  1132. },
  1133. "dist": {
  1134. "type": "zip",
  1135. "url": "https://api.github.com/repos/doctrine/lexer/zipball/39ab8fcf5a51ce4b85ca97c7a7d033eb12831124",
  1136. "reference": "39ab8fcf5a51ce4b85ca97c7a7d033eb12831124",
  1137. "shasum": ""
  1138. },
  1139. "require": {
  1140. "doctrine/deprecations": "^1.0",
  1141. "php": "^7.1 || ^8.0"
  1142. },
  1143. "require-dev": {
  1144. "doctrine/coding-standard": "^9 || ^10",
  1145. "phpstan/phpstan": "^1.3",
  1146. "phpunit/phpunit": "^7.5 || ^8.5 || ^9.5",
  1147. "psalm/plugin-phpunit": "^0.18.3",
  1148. "vimeo/psalm": "^4.11 || ^5.0"
  1149. },
  1150. "type": "library",
  1151. "autoload": {
  1152. "psr-4": {
  1153. "Doctrine\\Common\\Lexer\\": "src"
  1154. }
  1155. },
  1156. "notification-url": "https://packagist.org/downloads/",
  1157. "license": [
  1158. "MIT"
  1159. ],
  1160. "authors": [
  1161. {
  1162. "name": "Guilherme Blanco",
  1163. "email": "guilhermeblanco@gmail.com"
  1164. },
  1165. {
  1166. "name": "Roman Borschel",
  1167. "email": "roman@code-factory.org"
  1168. },
  1169. {
  1170. "name": "Johannes Schmitt",
  1171. "email": "schmittjoh@gmail.com"
  1172. }
  1173. ],
  1174. "description": "PHP Doctrine Lexer parser library that can be used in Top-Down, Recursive Descent Parsers.",
  1175. "homepage": "https://www.doctrine-project.org/projects/lexer.html",
  1176. "keywords": [
  1177. "annotations",
  1178. "docblock",
  1179. "lexer",
  1180. "parser",
  1181. "php"
  1182. ],
  1183. "support": {
  1184. "issues": "https://github.com/doctrine/lexer/issues",
  1185. "source": "https://github.com/doctrine/lexer/tree/2.1.0"
  1186. },
  1187. "funding": [
  1188. {
  1189. "url": "https://www.doctrine-project.org/sponsorship.html",
  1190. "type": "custom"
  1191. },
  1192. {
  1193. "url": "https://www.patreon.com/phpdoctrine",
  1194. "type": "patreon"
  1195. },
  1196. {
  1197. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Flexer",
  1198. "type": "tidelift"
  1199. }
  1200. ],
  1201. "time": "2022-12-14T08:49:07+00:00"
  1202. },
  1203. {
  1204. "name": "doctrine/migrations",
  1205. "version": "3.7.2",
  1206. "source": {
  1207. "type": "git",
  1208. "url": "https://github.com/doctrine/migrations.git",
  1209. "reference": "47af29eef49f29ebee545947e8b2a4b3be318c8a"
  1210. },
  1211. "dist": {
  1212. "type": "zip",
  1213. "url": "https://api.github.com/repos/doctrine/migrations/zipball/47af29eef49f29ebee545947e8b2a4b3be318c8a",
  1214. "reference": "47af29eef49f29ebee545947e8b2a4b3be318c8a",
  1215. "shasum": ""
  1216. },
  1217. "require": {
  1218. "composer-runtime-api": "^2",
  1219. "doctrine/dbal": "^3.5.1 || ^4",
  1220. "doctrine/deprecations": "^0.5.3 || ^1",
  1221. "doctrine/event-manager": "^1.2 || ^2.0",
  1222. "php": "^8.1",
  1223. "psr/log": "^1.1.3 || ^2 || ^3",
  1224. "symfony/console": "^5.4 || ^6.0 || ^7.0",
  1225. "symfony/stopwatch": "^5.4 || ^6.0 || ^7.0",
  1226. "symfony/var-exporter": "^6.2 || ^7.0"
  1227. },
  1228. "conflict": {
  1229. "doctrine/orm": "<2.12 || >=4"
  1230. },
  1231. "require-dev": {
  1232. "doctrine/coding-standard": "^12",
  1233. "doctrine/orm": "^2.13 || ^3",
  1234. "doctrine/persistence": "^2 || ^3",
  1235. "doctrine/sql-formatter": "^1.0",
  1236. "ext-pdo_sqlite": "*",
  1237. "phpstan/phpstan": "^1.10",
  1238. "phpstan/phpstan-deprecation-rules": "^1.1",
  1239. "phpstan/phpstan-phpunit": "^1.3",
  1240. "phpstan/phpstan-strict-rules": "^1.4",
  1241. "phpstan/phpstan-symfony": "^1.3",
  1242. "phpunit/phpunit": "^10.3",
  1243. "symfony/cache": "^5.4 || ^6.0 || ^7.0",
  1244. "symfony/process": "^5.4 || ^6.0 || ^7.0",
  1245. "symfony/yaml": "^5.4 || ^6.0 || ^7.0"
  1246. },
  1247. "suggest": {
  1248. "doctrine/sql-formatter": "Allows to generate formatted SQL with the diff command.",
  1249. "symfony/yaml": "Allows the use of yaml for migration configuration files."
  1250. },
  1251. "bin": [
  1252. "bin/doctrine-migrations"
  1253. ],
  1254. "type": "library",
  1255. "autoload": {
  1256. "psr-4": {
  1257. "Doctrine\\Migrations\\": "lib/Doctrine/Migrations"
  1258. }
  1259. },
  1260. "notification-url": "https://packagist.org/downloads/",
  1261. "license": [
  1262. "MIT"
  1263. ],
  1264. "authors": [
  1265. {
  1266. "name": "Benjamin Eberlei",
  1267. "email": "kontakt@beberlei.de"
  1268. },
  1269. {
  1270. "name": "Jonathan Wage",
  1271. "email": "jonwage@gmail.com"
  1272. },
  1273. {
  1274. "name": "Michael Simonson",
  1275. "email": "contact@mikesimonson.com"
  1276. }
  1277. ],
  1278. "description": "PHP Doctrine Migrations project offer additional functionality on top of the database abstraction layer (DBAL) for versioning your database schema and easily deploying changes to it. It is a very easy to use and a powerful tool.",
  1279. "homepage": "https://www.doctrine-project.org/projects/migrations.html",
  1280. "keywords": [
  1281. "database",
  1282. "dbal",
  1283. "migrations"
  1284. ],
  1285. "support": {
  1286. "issues": "https://github.com/doctrine/migrations/issues",
  1287. "source": "https://github.com/doctrine/migrations/tree/3.7.2"
  1288. },
  1289. "funding": [
  1290. {
  1291. "url": "https://www.doctrine-project.org/sponsorship.html",
  1292. "type": "custom"
  1293. },
  1294. {
  1295. "url": "https://www.patreon.com/phpdoctrine",
  1296. "type": "patreon"
  1297. },
  1298. {
  1299. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fmigrations",
  1300. "type": "tidelift"
  1301. }
  1302. ],
  1303. "time": "2023-12-05T11:35:05+00:00"
  1304. },
  1305. {
  1306. "name": "doctrine/orm",
  1307. "version": "2.17.2",
  1308. "source": {
  1309. "type": "git",
  1310. "url": "https://github.com/doctrine/orm.git",
  1311. "reference": "393679a4795e49b0b3ac317dce84d0f8888f2b77"
  1312. },
  1313. "dist": {
  1314. "type": "zip",
  1315. "url": "https://api.github.com/repos/doctrine/orm/zipball/393679a4795e49b0b3ac317dce84d0f8888f2b77",
  1316. "reference": "393679a4795e49b0b3ac317dce84d0f8888f2b77",
  1317. "shasum": ""
  1318. },
  1319. "require": {
  1320. "composer-runtime-api": "^2",
  1321. "doctrine/cache": "^1.12.1 || ^2.1.1",
  1322. "doctrine/collections": "^1.5 || ^2.1",
  1323. "doctrine/common": "^3.0.3",
  1324. "doctrine/dbal": "^2.13.1 || ^3.2",
  1325. "doctrine/deprecations": "^0.5.3 || ^1",
  1326. "doctrine/event-manager": "^1.2 || ^2",
  1327. "doctrine/inflector": "^1.4 || ^2.0",
  1328. "doctrine/instantiator": "^1.3 || ^2",
  1329. "doctrine/lexer": "^2",
  1330. "doctrine/persistence": "^2.4 || ^3",
  1331. "ext-ctype": "*",
  1332. "php": "^7.1 || ^8.0",
  1333. "psr/cache": "^1 || ^2 || ^3",
  1334. "symfony/console": "^4.2 || ^5.0 || ^6.0 || ^7.0",
  1335. "symfony/polyfill-php72": "^1.23",
  1336. "symfony/polyfill-php80": "^1.16"
  1337. },
  1338. "conflict": {
  1339. "doctrine/annotations": "<1.13 || >= 3.0"
  1340. },
  1341. "require-dev": {
  1342. "doctrine/annotations": "^1.13 || ^2",
  1343. "doctrine/coding-standard": "^9.0.2 || ^12.0",
  1344. "phpbench/phpbench": "^0.16.10 || ^1.0",
  1345. "phpstan/phpstan": "~1.4.10 || 1.10.35",
  1346. "phpunit/phpunit": "^7.5 || ^8.5 || ^9.6",
  1347. "psr/log": "^1 || ^2 || ^3",
  1348. "squizlabs/php_codesniffer": "3.7.2",
  1349. "symfony/cache": "^4.4 || ^5.4 || ^6.4 || ^7.0",
  1350. "symfony/var-exporter": "^4.4 || ^5.4 || ^6.2 || ^7.0",
  1351. "symfony/yaml": "^3.4 || ^4.0 || ^5.0 || ^6.0 || ^7.0",
  1352. "vimeo/psalm": "4.30.0 || 5.16.0"
  1353. },
  1354. "suggest": {
  1355. "ext-dom": "Provides support for XSD validation for XML mapping files",
  1356. "symfony/cache": "Provides cache support for Setup Tool with doctrine/cache 2.0",
  1357. "symfony/yaml": "If you want to use YAML Metadata Mapping Driver"
  1358. },
  1359. "bin": [
  1360. "bin/doctrine"
  1361. ],
  1362. "type": "library",
  1363. "autoload": {
  1364. "psr-4": {
  1365. "Doctrine\\ORM\\": "lib/Doctrine/ORM"
  1366. }
  1367. },
  1368. "notification-url": "https://packagist.org/downloads/",
  1369. "license": [
  1370. "MIT"
  1371. ],
  1372. "authors": [
  1373. {
  1374. "name": "Guilherme Blanco",
  1375. "email": "guilhermeblanco@gmail.com"
  1376. },
  1377. {
  1378. "name": "Roman Borschel",
  1379. "email": "roman@code-factory.org"
  1380. },
  1381. {
  1382. "name": "Benjamin Eberlei",
  1383. "email": "kontakt@beberlei.de"
  1384. },
  1385. {
  1386. "name": "Jonathan Wage",
  1387. "email": "jonwage@gmail.com"
  1388. },
  1389. {
  1390. "name": "Marco Pivetta",
  1391. "email": "ocramius@gmail.com"
  1392. }
  1393. ],
  1394. "description": "Object-Relational-Mapper for PHP",
  1395. "homepage": "https://www.doctrine-project.org/projects/orm.html",
  1396. "keywords": [
  1397. "database",
  1398. "orm"
  1399. ],
  1400. "support": {
  1401. "issues": "https://github.com/doctrine/orm/issues",
  1402. "source": "https://github.com/doctrine/orm/tree/2.17.2"
  1403. },
  1404. "time": "2023-12-20T21:47:52+00:00"
  1405. },
  1406. {
  1407. "name": "doctrine/persistence",
  1408. "version": "3.2.0",
  1409. "source": {
  1410. "type": "git",
  1411. "url": "https://github.com/doctrine/persistence.git",
  1412. "reference": "63fee8c33bef740db6730eb2a750cd3da6495603"
  1413. },
  1414. "dist": {
  1415. "type": "zip",
  1416. "url": "https://api.github.com/repos/doctrine/persistence/zipball/63fee8c33bef740db6730eb2a750cd3da6495603",
  1417. "reference": "63fee8c33bef740db6730eb2a750cd3da6495603",
  1418. "shasum": ""
  1419. },
  1420. "require": {
  1421. "doctrine/event-manager": "^1 || ^2",
  1422. "php": "^7.2 || ^8.0",
  1423. "psr/cache": "^1.0 || ^2.0 || ^3.0"
  1424. },
  1425. "conflict": {
  1426. "doctrine/common": "<2.10"
  1427. },
  1428. "require-dev": {
  1429. "composer/package-versions-deprecated": "^1.11",
  1430. "doctrine/coding-standard": "^11",
  1431. "doctrine/common": "^3.0",
  1432. "phpstan/phpstan": "1.9.4",
  1433. "phpstan/phpstan-phpunit": "^1",
  1434. "phpstan/phpstan-strict-rules": "^1.1",
  1435. "phpunit/phpunit": "^8.5 || ^9.5",
  1436. "symfony/cache": "^4.4 || ^5.4 || ^6.0",
  1437. "vimeo/psalm": "4.30.0 || 5.3.0"
  1438. },
  1439. "type": "library",
  1440. "autoload": {
  1441. "psr-4": {
  1442. "Doctrine\\Persistence\\": "src/Persistence"
  1443. }
  1444. },
  1445. "notification-url": "https://packagist.org/downloads/",
  1446. "license": [
  1447. "MIT"
  1448. ],
  1449. "authors": [
  1450. {
  1451. "name": "Guilherme Blanco",
  1452. "email": "guilhermeblanco@gmail.com"
  1453. },
  1454. {
  1455. "name": "Roman Borschel",
  1456. "email": "roman@code-factory.org"
  1457. },
  1458. {
  1459. "name": "Benjamin Eberlei",
  1460. "email": "kontakt@beberlei.de"
  1461. },
  1462. {
  1463. "name": "Jonathan Wage",
  1464. "email": "jonwage@gmail.com"
  1465. },
  1466. {
  1467. "name": "Johannes Schmitt",
  1468. "email": "schmittjoh@gmail.com"
  1469. },
  1470. {
  1471. "name": "Marco Pivetta",
  1472. "email": "ocramius@gmail.com"
  1473. }
  1474. ],
  1475. "description": "The Doctrine Persistence project is a set of shared interfaces and functionality that the different Doctrine object mappers share.",
  1476. "homepage": "https://www.doctrine-project.org/projects/persistence.html",
  1477. "keywords": [
  1478. "mapper",
  1479. "object",
  1480. "odm",
  1481. "orm",
  1482. "persistence"
  1483. ],
  1484. "support": {
  1485. "issues": "https://github.com/doctrine/persistence/issues",
  1486. "source": "https://github.com/doctrine/persistence/tree/3.2.0"
  1487. },
  1488. "funding": [
  1489. {
  1490. "url": "https://www.doctrine-project.org/sponsorship.html",
  1491. "type": "custom"
  1492. },
  1493. {
  1494. "url": "https://www.patreon.com/phpdoctrine",
  1495. "type": "patreon"
  1496. },
  1497. {
  1498. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fpersistence",
  1499. "type": "tidelift"
  1500. }
  1501. ],
  1502. "time": "2023-05-17T18:32:04+00:00"
  1503. },
  1504. {
  1505. "name": "doctrine/sql-formatter",
  1506. "version": "1.1.3",
  1507. "source": {
  1508. "type": "git",
  1509. "url": "https://github.com/doctrine/sql-formatter.git",
  1510. "reference": "25a06c7bf4c6b8218f47928654252863ffc890a5"
  1511. },
  1512. "dist": {
  1513. "type": "zip",
  1514. "url": "https://api.github.com/repos/doctrine/sql-formatter/zipball/25a06c7bf4c6b8218f47928654252863ffc890a5",
  1515. "reference": "25a06c7bf4c6b8218f47928654252863ffc890a5",
  1516. "shasum": ""
  1517. },
  1518. "require": {
  1519. "php": "^7.1 || ^8.0"
  1520. },
  1521. "require-dev": {
  1522. "bamarni/composer-bin-plugin": "^1.4"
  1523. },
  1524. "bin": [
  1525. "bin/sql-formatter"
  1526. ],
  1527. "type": "library",
  1528. "autoload": {
  1529. "psr-4": {
  1530. "Doctrine\\SqlFormatter\\": "src"
  1531. }
  1532. },
  1533. "notification-url": "https://packagist.org/downloads/",
  1534. "license": [
  1535. "MIT"
  1536. ],
  1537. "authors": [
  1538. {
  1539. "name": "Jeremy Dorn",
  1540. "email": "jeremy@jeremydorn.com",
  1541. "homepage": "https://jeremydorn.com/"
  1542. }
  1543. ],
  1544. "description": "a PHP SQL highlighting library",
  1545. "homepage": "https://github.com/doctrine/sql-formatter/",
  1546. "keywords": [
  1547. "highlight",
  1548. "sql"
  1549. ],
  1550. "support": {
  1551. "issues": "https://github.com/doctrine/sql-formatter/issues",
  1552. "source": "https://github.com/doctrine/sql-formatter/tree/1.1.3"
  1553. },
  1554. "time": "2022-05-23T21:33:49+00:00"
  1555. },
  1556. {
  1557. "name": "egulias/email-validator",
  1558. "version": "4.0.2",
  1559. "source": {
  1560. "type": "git",
  1561. "url": "https://github.com/egulias/EmailValidator.git",
  1562. "reference": "ebaaf5be6c0286928352e054f2d5125608e5405e"
  1563. },
  1564. "dist": {
  1565. "type": "zip",
  1566. "url": "https://api.github.com/repos/egulias/EmailValidator/zipball/ebaaf5be6c0286928352e054f2d5125608e5405e",
  1567. "reference": "ebaaf5be6c0286928352e054f2d5125608e5405e",
  1568. "shasum": ""
  1569. },
  1570. "require": {
  1571. "doctrine/lexer": "^2.0 || ^3.0",
  1572. "php": ">=8.1",
  1573. "symfony/polyfill-intl-idn": "^1.26"
  1574. },
  1575. "require-dev": {
  1576. "phpunit/phpunit": "^10.2",
  1577. "vimeo/psalm": "^5.12"
  1578. },
  1579. "suggest": {
  1580. "ext-intl": "PHP Internationalization Libraries are required to use the SpoofChecking validation"
  1581. },
  1582. "type": "library",
  1583. "extra": {
  1584. "branch-alias": {
  1585. "dev-master": "4.0.x-dev"
  1586. }
  1587. },
  1588. "autoload": {
  1589. "psr-4": {
  1590. "Egulias\\EmailValidator\\": "src"
  1591. }
  1592. },
  1593. "notification-url": "https://packagist.org/downloads/",
  1594. "license": [
  1595. "MIT"
  1596. ],
  1597. "authors": [
  1598. {
  1599. "name": "Eduardo Gulias Davis"
  1600. }
  1601. ],
  1602. "description": "A library for validating emails against several RFCs",
  1603. "homepage": "https://github.com/egulias/EmailValidator",
  1604. "keywords": [
  1605. "email",
  1606. "emailvalidation",
  1607. "emailvalidator",
  1608. "validation",
  1609. "validator"
  1610. ],
  1611. "support": {
  1612. "issues": "https://github.com/egulias/EmailValidator/issues",
  1613. "source": "https://github.com/egulias/EmailValidator/tree/4.0.2"
  1614. },
  1615. "funding": [
  1616. {
  1617. "url": "https://github.com/egulias",
  1618. "type": "github"
  1619. }
  1620. ],
  1621. "time": "2023-10-06T06:47:41+00:00"
  1622. },
  1623. {
  1624. "name": "friendsofphp/proxy-manager-lts",
  1625. "version": "v1.0.16",
  1626. "source": {
  1627. "type": "git",
  1628. "url": "https://github.com/FriendsOfPHP/proxy-manager-lts.git",
  1629. "reference": "ecadbdc9052e4ad08c60c8a02268712e50427f7c"
  1630. },
  1631. "dist": {
  1632. "type": "zip",
  1633. "url": "https://api.github.com/repos/FriendsOfPHP/proxy-manager-lts/zipball/ecadbdc9052e4ad08c60c8a02268712e50427f7c",
  1634. "reference": "ecadbdc9052e4ad08c60c8a02268712e50427f7c",
  1635. "shasum": ""
  1636. },
  1637. "require": {
  1638. "laminas/laminas-code": "~3.4.1|^4.0",
  1639. "php": ">=7.1",
  1640. "symfony/filesystem": "^4.4.17|^5.0|^6.0|^7.0"
  1641. },
  1642. "conflict": {
  1643. "laminas/laminas-stdlib": "<3.2.1",
  1644. "zendframework/zend-stdlib": "<3.2.1"
  1645. },
  1646. "replace": {
  1647. "ocramius/proxy-manager": "^2.1"
  1648. },
  1649. "require-dev": {
  1650. "ext-phar": "*",
  1651. "symfony/phpunit-bridge": "^5.4|^6.0|^7.0"
  1652. },
  1653. "type": "library",
  1654. "extra": {
  1655. "thanks": {
  1656. "name": "ocramius/proxy-manager",
  1657. "url": "https://github.com/Ocramius/ProxyManager"
  1658. }
  1659. },
  1660. "autoload": {
  1661. "psr-4": {
  1662. "ProxyManager\\": "src/ProxyManager"
  1663. }
  1664. },
  1665. "notification-url": "https://packagist.org/downloads/",
  1666. "license": [
  1667. "MIT"
  1668. ],
  1669. "authors": [
  1670. {
  1671. "name": "Marco Pivetta",
  1672. "email": "ocramius@gmail.com",
  1673. "homepage": "https://ocramius.github.io/"
  1674. },
  1675. {
  1676. "name": "Nicolas Grekas",
  1677. "email": "p@tchwork.com"
  1678. }
  1679. ],
  1680. "description": "Adding support for a wider range of PHP versions to ocramius/proxy-manager",
  1681. "homepage": "https://github.com/FriendsOfPHP/proxy-manager-lts",
  1682. "keywords": [
  1683. "aop",
  1684. "lazy loading",
  1685. "proxy",
  1686. "proxy pattern",
  1687. "service proxies"
  1688. ],
  1689. "support": {
  1690. "issues": "https://github.com/FriendsOfPHP/proxy-manager-lts/issues",
  1691. "source": "https://github.com/FriendsOfPHP/proxy-manager-lts/tree/v1.0.16"
  1692. },
  1693. "funding": [
  1694. {
  1695. "url": "https://github.com/Ocramius",
  1696. "type": "github"
  1697. },
  1698. {
  1699. "url": "https://tidelift.com/funding/github/packagist/ocramius/proxy-manager",
  1700. "type": "tidelift"
  1701. }
  1702. ],
  1703. "time": "2023-05-24T07:17:17+00:00"
  1704. },
  1705. {
  1706. "name": "laminas/laminas-code",
  1707. "version": "4.13.0",
  1708. "source": {
  1709. "type": "git",
  1710. "url": "https://github.com/laminas/laminas-code.git",
  1711. "reference": "7353d4099ad5388e84737dd16994316a04f48dbf"
  1712. },
  1713. "dist": {
  1714. "type": "zip",
  1715. "url": "https://api.github.com/repos/laminas/laminas-code/zipball/7353d4099ad5388e84737dd16994316a04f48dbf",
  1716. "reference": "7353d4099ad5388e84737dd16994316a04f48dbf",
  1717. "shasum": ""
  1718. },
  1719. "require": {
  1720. "php": "~8.1.0 || ~8.2.0 || ~8.3.0"
  1721. },
  1722. "require-dev": {
  1723. "doctrine/annotations": "^2.0.1",
  1724. "ext-phar": "*",
  1725. "laminas/laminas-coding-standard": "^2.5.0",
  1726. "laminas/laminas-stdlib": "^3.17.0",
  1727. "phpunit/phpunit": "^10.3.3",
  1728. "psalm/plugin-phpunit": "^0.18.4",
  1729. "vimeo/psalm": "^5.15.0"
  1730. },
  1731. "suggest": {
  1732. "doctrine/annotations": "Doctrine\\Common\\Annotations >=1.0 for annotation features",
  1733. "laminas/laminas-stdlib": "Laminas\\Stdlib component"
  1734. },
  1735. "type": "library",
  1736. "autoload": {
  1737. "psr-4": {
  1738. "Laminas\\Code\\": "src/"
  1739. }
  1740. },
  1741. "notification-url": "https://packagist.org/downloads/",
  1742. "license": [
  1743. "BSD-3-Clause"
  1744. ],
  1745. "description": "Extensions to the PHP Reflection API, static code scanning, and code generation",
  1746. "homepage": "https://laminas.dev",
  1747. "keywords": [
  1748. "code",
  1749. "laminas",
  1750. "laminasframework"
  1751. ],
  1752. "support": {
  1753. "chat": "https://laminas.dev/chat",
  1754. "docs": "https://docs.laminas.dev/laminas-code/",
  1755. "forum": "https://discourse.laminas.dev",
  1756. "issues": "https://github.com/laminas/laminas-code/issues",
  1757. "rss": "https://github.com/laminas/laminas-code/releases.atom",
  1758. "source": "https://github.com/laminas/laminas-code"
  1759. },
  1760. "funding": [
  1761. {
  1762. "url": "https://funding.communitybridge.org/projects/laminas-project",
  1763. "type": "community_bridge"
  1764. }
  1765. ],
  1766. "time": "2023-10-18T10:00:55+00:00"
  1767. },
  1768. {
  1769. "name": "league/commonmark",
  1770. "version": "2.4.1",
  1771. "source": {
  1772. "type": "git",
  1773. "url": "https://github.com/thephpleague/commonmark.git",
  1774. "reference": "3669d6d5f7a47a93c08ddff335e6d945481a1dd5"
  1775. },
  1776. "dist": {
  1777. "type": "zip",
  1778. "url": "https://api.github.com/repos/thephpleague/commonmark/zipball/3669d6d5f7a47a93c08ddff335e6d945481a1dd5",
  1779. "reference": "3669d6d5f7a47a93c08ddff335e6d945481a1dd5",
  1780. "shasum": ""
  1781. },
  1782. "require": {
  1783. "ext-mbstring": "*",
  1784. "league/config": "^1.1.1",
  1785. "php": "^7.4 || ^8.0",
  1786. "psr/event-dispatcher": "^1.0",
  1787. "symfony/deprecation-contracts": "^2.1 || ^3.0",
  1788. "symfony/polyfill-php80": "^1.16"
  1789. },
  1790. "require-dev": {
  1791. "cebe/markdown": "^1.0",
  1792. "commonmark/cmark": "0.30.0",
  1793. "commonmark/commonmark.js": "0.30.0",
  1794. "composer/package-versions-deprecated": "^1.8",
  1795. "embed/embed": "^4.4",
  1796. "erusev/parsedown": "^1.0",
  1797. "ext-json": "*",
  1798. "github/gfm": "0.29.0",
  1799. "michelf/php-markdown": "^1.4 || ^2.0",
  1800. "nyholm/psr7": "^1.5",
  1801. "phpstan/phpstan": "^1.8.2",
  1802. "phpunit/phpunit": "^9.5.21",
  1803. "scrutinizer/ocular": "^1.8.1",
  1804. "symfony/finder": "^5.3 | ^6.0",
  1805. "symfony/yaml": "^2.3 | ^3.0 | ^4.0 | ^5.0 | ^6.0",
  1806. "unleashedtech/php-coding-standard": "^3.1.1",
  1807. "vimeo/psalm": "^4.24.0 || ^5.0.0"
  1808. },
  1809. "suggest": {
  1810. "symfony/yaml": "v2.3+ required if using the Front Matter extension"
  1811. },
  1812. "type": "library",
  1813. "extra": {
  1814. "branch-alias": {
  1815. "dev-main": "2.5-dev"
  1816. }
  1817. },
  1818. "autoload": {
  1819. "psr-4": {
  1820. "League\\CommonMark\\": "src"
  1821. }
  1822. },
  1823. "notification-url": "https://packagist.org/downloads/",
  1824. "license": [
  1825. "BSD-3-Clause"
  1826. ],
  1827. "authors": [
  1828. {
  1829. "name": "Colin O'Dell",
  1830. "email": "colinodell@gmail.com",
  1831. "homepage": "https://www.colinodell.com",
  1832. "role": "Lead Developer"
  1833. }
  1834. ],
  1835. "description": "Highly-extensible PHP Markdown parser which fully supports the CommonMark spec and GitHub-Flavored Markdown (GFM)",
  1836. "homepage": "https://commonmark.thephpleague.com",
  1837. "keywords": [
  1838. "commonmark",
  1839. "flavored",
  1840. "gfm",
  1841. "github",
  1842. "github-flavored",
  1843. "markdown",
  1844. "md",
  1845. "parser"
  1846. ],
  1847. "support": {
  1848. "docs": "https://commonmark.thephpleague.com/",
  1849. "forum": "https://github.com/thephpleague/commonmark/discussions",
  1850. "issues": "https://github.com/thephpleague/commonmark/issues",
  1851. "rss": "https://github.com/thephpleague/commonmark/releases.atom",
  1852. "source": "https://github.com/thephpleague/commonmark"
  1853. },
  1854. "funding": [
  1855. {
  1856. "url": "https://www.colinodell.com/sponsor",
  1857. "type": "custom"
  1858. },
  1859. {
  1860. "url": "https://www.paypal.me/colinpodell/10.00",
  1861. "type": "custom"
  1862. },
  1863. {
  1864. "url": "https://github.com/colinodell",
  1865. "type": "github"
  1866. },
  1867. {
  1868. "url": "https://tidelift.com/funding/github/packagist/league/commonmark",
  1869. "type": "tidelift"
  1870. }
  1871. ],
  1872. "time": "2023-08-30T16:55:00+00:00"
  1873. },
  1874. {
  1875. "name": "league/config",
  1876. "version": "v1.2.0",
  1877. "source": {
  1878. "type": "git",
  1879. "url": "https://github.com/thephpleague/config.git",
  1880. "reference": "754b3604fb2984c71f4af4a9cbe7b57f346ec1f3"
  1881. },
  1882. "dist": {
  1883. "type": "zip",
  1884. "url": "https://api.github.com/repos/thephpleague/config/zipball/754b3604fb2984c71f4af4a9cbe7b57f346ec1f3",
  1885. "reference": "754b3604fb2984c71f4af4a9cbe7b57f346ec1f3",
  1886. "shasum": ""
  1887. },
  1888. "require": {
  1889. "dflydev/dot-access-data": "^3.0.1",
  1890. "nette/schema": "^1.2",
  1891. "php": "^7.4 || ^8.0"
  1892. },
  1893. "require-dev": {
  1894. "phpstan/phpstan": "^1.8.2",
  1895. "phpunit/phpunit": "^9.5.5",
  1896. "scrutinizer/ocular": "^1.8.1",
  1897. "unleashedtech/php-coding-standard": "^3.1",
  1898. "vimeo/psalm": "^4.7.3"
  1899. },
  1900. "type": "library",
  1901. "extra": {
  1902. "branch-alias": {
  1903. "dev-main": "1.2-dev"
  1904. }
  1905. },
  1906. "autoload": {
  1907. "psr-4": {
  1908. "League\\Config\\": "src"
  1909. }
  1910. },
  1911. "notification-url": "https://packagist.org/downloads/",
  1912. "license": [
  1913. "BSD-3-Clause"
  1914. ],
  1915. "authors": [
  1916. {
  1917. "name": "Colin O'Dell",
  1918. "email": "colinodell@gmail.com",
  1919. "homepage": "https://www.colinodell.com",
  1920. "role": "Lead Developer"
  1921. }
  1922. ],
  1923. "description": "Define configuration arrays with strict schemas and access values with dot notation",
  1924. "homepage": "https://config.thephpleague.com",
  1925. "keywords": [
  1926. "array",
  1927. "config",
  1928. "configuration",
  1929. "dot",
  1930. "dot-access",
  1931. "nested",
  1932. "schema"
  1933. ],
  1934. "support": {
  1935. "docs": "https://config.thephpleague.com/",
  1936. "issues": "https://github.com/thephpleague/config/issues",
  1937. "rss": "https://github.com/thephpleague/config/releases.atom",
  1938. "source": "https://github.com/thephpleague/config"
  1939. },
  1940. "funding": [
  1941. {
  1942. "url": "https://www.colinodell.com/sponsor",
  1943. "type": "custom"
  1944. },
  1945. {
  1946. "url": "https://www.paypal.me/colinpodell/10.00",
  1947. "type": "custom"
  1948. },
  1949. {
  1950. "url": "https://github.com/colinodell",
  1951. "type": "github"
  1952. }
  1953. ],
  1954. "time": "2022-12-11T20:36:23+00:00"
  1955. },
  1956. {
  1957. "name": "league/uri",
  1958. "version": "7.4.0",
  1959. "source": {
  1960. "type": "git",
  1961. "url": "https://github.com/thephpleague/uri.git",
  1962. "reference": "bf414ba956d902f5d98bf9385fcf63954f09dce5"
  1963. },
  1964. "dist": {
  1965. "type": "zip",
  1966. "url": "https://api.github.com/repos/thephpleague/uri/zipball/bf414ba956d902f5d98bf9385fcf63954f09dce5",
  1967. "reference": "bf414ba956d902f5d98bf9385fcf63954f09dce5",
  1968. "shasum": ""
  1969. },
  1970. "require": {
  1971. "league/uri-interfaces": "^7.3",
  1972. "php": "^8.1"
  1973. },
  1974. "conflict": {
  1975. "league/uri-schemes": "^1.0"
  1976. },
  1977. "suggest": {
  1978. "ext-bcmath": "to improve IPV4 host parsing",
  1979. "ext-fileinfo": "to create Data URI from file contennts",
  1980. "ext-gmp": "to improve IPV4 host parsing",
  1981. "ext-intl": "to handle IDN host with the best performance",
  1982. "jeremykendall/php-domain-parser": "to resolve Public Suffix and Top Level Domain",
  1983. "league/uri-components": "Needed to easily manipulate URI objects components",
  1984. "php-64bit": "to improve IPV4 host parsing",
  1985. "symfony/polyfill-intl-idn": "to handle IDN host via the Symfony polyfill if ext-intl is not present"
  1986. },
  1987. "type": "library",
  1988. "extra": {
  1989. "branch-alias": {
  1990. "dev-master": "7.x-dev"
  1991. }
  1992. },
  1993. "autoload": {
  1994. "psr-4": {
  1995. "League\\Uri\\": ""
  1996. }
  1997. },
  1998. "notification-url": "https://packagist.org/downloads/",
  1999. "license": [
  2000. "MIT"
  2001. ],
  2002. "authors": [
  2003. {
  2004. "name": "Ignace Nyamagana Butera",
  2005. "email": "nyamsprod@gmail.com",
  2006. "homepage": "https://nyamsprod.com"
  2007. }
  2008. ],
  2009. "description": "URI manipulation library",
  2010. "homepage": "https://uri.thephpleague.com",
  2011. "keywords": [
  2012. "data-uri",
  2013. "file-uri",
  2014. "ftp",
  2015. "hostname",
  2016. "http",
  2017. "https",
  2018. "middleware",
  2019. "parse_str",
  2020. "parse_url",
  2021. "psr-7",
  2022. "query-string",
  2023. "querystring",
  2024. "rfc3986",
  2025. "rfc3987",
  2026. "rfc6570",
  2027. "uri",
  2028. "uri-template",
  2029. "url",
  2030. "ws"
  2031. ],
  2032. "support": {
  2033. "docs": "https://uri.thephpleague.com",
  2034. "forum": "https://thephpleague.slack.com",
  2035. "issues": "https://github.com/thephpleague/uri-src/issues",
  2036. "source": "https://github.com/thephpleague/uri/tree/7.4.0"
  2037. },
  2038. "funding": [
  2039. {
  2040. "url": "https://github.com/sponsors/nyamsprod",
  2041. "type": "github"
  2042. }
  2043. ],
  2044. "time": "2023-12-01T06:24:25+00:00"
  2045. },
  2046. {
  2047. "name": "league/uri-interfaces",
  2048. "version": "7.4.0",
  2049. "source": {
  2050. "type": "git",
  2051. "url": "https://github.com/thephpleague/uri-interfaces.git",
  2052. "reference": "bd8c487ec236930f7bbc42b8d374fa882fbba0f3"
  2053. },
  2054. "dist": {
  2055. "type": "zip",
  2056. "url": "https://api.github.com/repos/thephpleague/uri-interfaces/zipball/bd8c487ec236930f7bbc42b8d374fa882fbba0f3",
  2057. "reference": "bd8c487ec236930f7bbc42b8d374fa882fbba0f3",
  2058. "shasum": ""
  2059. },
  2060. "require": {
  2061. "ext-filter": "*",
  2062. "php": "^8.1",
  2063. "psr/http-factory": "^1",
  2064. "psr/http-message": "^1.1 || ^2.0"
  2065. },
  2066. "suggest": {
  2067. "ext-bcmath": "to improve IPV4 host parsing",
  2068. "ext-gmp": "to improve IPV4 host parsing",
  2069. "ext-intl": "to handle IDN host with the best performance",
  2070. "php-64bit": "to improve IPV4 host parsing",
  2071. "symfony/polyfill-intl-idn": "to handle IDN host via the Symfony polyfill if ext-intl is not present"
  2072. },
  2073. "type": "library",
  2074. "extra": {
  2075. "branch-alias": {
  2076. "dev-master": "7.x-dev"
  2077. }
  2078. },
  2079. "autoload": {
  2080. "psr-4": {
  2081. "League\\Uri\\": ""
  2082. }
  2083. },
  2084. "notification-url": "https://packagist.org/downloads/",
  2085. "license": [
  2086. "MIT"
  2087. ],
  2088. "authors": [
  2089. {
  2090. "name": "Ignace Nyamagana Butera",
  2091. "email": "nyamsprod@gmail.com",
  2092. "homepage": "https://nyamsprod.com"
  2093. }
  2094. ],
  2095. "description": "Common interfaces and classes for URI representation and interaction",
  2096. "homepage": "https://uri.thephpleague.com",
  2097. "keywords": [
  2098. "data-uri",
  2099. "file-uri",
  2100. "ftp",
  2101. "hostname",
  2102. "http",
  2103. "https",
  2104. "parse_str",
  2105. "parse_url",
  2106. "psr-7",
  2107. "query-string",
  2108. "querystring",
  2109. "rfc3986",
  2110. "rfc3987",
  2111. "rfc6570",
  2112. "uri",
  2113. "url",
  2114. "ws"
  2115. ],
  2116. "support": {
  2117. "docs": "https://uri.thephpleague.com",
  2118. "forum": "https://thephpleague.slack.com",
  2119. "issues": "https://github.com/thephpleague/uri-src/issues",
  2120. "source": "https://github.com/thephpleague/uri-interfaces/tree/7.4.0"
  2121. },
  2122. "funding": [
  2123. {
  2124. "url": "https://github.com/sponsors/nyamsprod",
  2125. "type": "github"
  2126. }
  2127. ],
  2128. "time": "2023-11-24T15:40:42+00:00"
  2129. },
  2130. {
  2131. "name": "masterminds/html5",
  2132. "version": "2.8.1",
  2133. "source": {
  2134. "type": "git",
  2135. "url": "https://github.com/Masterminds/html5-php.git",
  2136. "reference": "f47dcf3c70c584de14f21143c55d9939631bc6cf"
  2137. },
  2138. "dist": {
  2139. "type": "zip",
  2140. "url": "https://api.github.com/repos/Masterminds/html5-php/zipball/f47dcf3c70c584de14f21143c55d9939631bc6cf",
  2141. "reference": "f47dcf3c70c584de14f21143c55d9939631bc6cf",
  2142. "shasum": ""
  2143. },
  2144. "require": {
  2145. "ext-dom": "*",
  2146. "php": ">=5.3.0"
  2147. },
  2148. "require-dev": {
  2149. "phpunit/phpunit": "^4.8.35 || ^5.7.21 || ^6 || ^7 || ^8"
  2150. },
  2151. "type": "library",
  2152. "extra": {
  2153. "branch-alias": {
  2154. "dev-master": "2.7-dev"
  2155. }
  2156. },
  2157. "autoload": {
  2158. "psr-4": {
  2159. "Masterminds\\": "src"
  2160. }
  2161. },
  2162. "notification-url": "https://packagist.org/downloads/",
  2163. "license": [
  2164. "MIT"
  2165. ],
  2166. "authors": [
  2167. {
  2168. "name": "Matt Butcher",
  2169. "email": "technosophos@gmail.com"
  2170. },
  2171. {
  2172. "name": "Matt Farina",
  2173. "email": "matt@mattfarina.com"
  2174. },
  2175. {
  2176. "name": "Asmir Mustafic",
  2177. "email": "goetas@gmail.com"
  2178. }
  2179. ],
  2180. "description": "An HTML5 parser and serializer.",
  2181. "homepage": "http://masterminds.github.io/html5-php",
  2182. "keywords": [
  2183. "HTML5",
  2184. "dom",
  2185. "html",
  2186. "parser",
  2187. "querypath",
  2188. "serializer",
  2189. "xml"
  2190. ],
  2191. "support": {
  2192. "issues": "https://github.com/Masterminds/html5-php/issues",
  2193. "source": "https://github.com/Masterminds/html5-php/tree/2.8.1"
  2194. },
  2195. "time": "2023-05-10T11:58:31+00:00"
  2196. },
  2197. {
  2198. "name": "monolog/monolog",
  2199. "version": "3.5.0",
  2200. "source": {
  2201. "type": "git",
  2202. "url": "https://github.com/Seldaek/monolog.git",
  2203. "reference": "c915e2634718dbc8a4a15c61b0e62e7a44e14448"
  2204. },
  2205. "dist": {
  2206. "type": "zip",
  2207. "url": "https://api.github.com/repos/Seldaek/monolog/zipball/c915e2634718dbc8a4a15c61b0e62e7a44e14448",
  2208. "reference": "c915e2634718dbc8a4a15c61b0e62e7a44e14448",
  2209. "shasum": ""
  2210. },
  2211. "require": {
  2212. "php": ">=8.1",
  2213. "psr/log": "^2.0 || ^3.0"
  2214. },
  2215. "provide": {
  2216. "psr/log-implementation": "3.0.0"
  2217. },
  2218. "require-dev": {
  2219. "aws/aws-sdk-php": "^3.0",
  2220. "doctrine/couchdb": "~1.0@dev",
  2221. "elasticsearch/elasticsearch": "^7 || ^8",
  2222. "ext-json": "*",
  2223. "graylog2/gelf-php": "^1.4.2 || ^2.0",
  2224. "guzzlehttp/guzzle": "^7.4.5",
  2225. "guzzlehttp/psr7": "^2.2",
  2226. "mongodb/mongodb": "^1.8",
  2227. "php-amqplib/php-amqplib": "~2.4 || ^3",
  2228. "phpstan/phpstan": "^1.9",
  2229. "phpstan/phpstan-deprecation-rules": "^1.0",
  2230. "phpstan/phpstan-strict-rules": "^1.4",
  2231. "phpunit/phpunit": "^10.1",
  2232. "predis/predis": "^1.1 || ^2",
  2233. "ruflin/elastica": "^7",
  2234. "symfony/mailer": "^5.4 || ^6",
  2235. "symfony/mime": "^5.4 || ^6"
  2236. },
  2237. "suggest": {
  2238. "aws/aws-sdk-php": "Allow sending log messages to AWS services like DynamoDB",
  2239. "doctrine/couchdb": "Allow sending log messages to a CouchDB server",
  2240. "elasticsearch/elasticsearch": "Allow sending log messages to an Elasticsearch server via official client",
  2241. "ext-amqp": "Allow sending log messages to an AMQP server (1.0+ required)",
  2242. "ext-curl": "Required to send log messages using the IFTTTHandler, the LogglyHandler, the SendGridHandler, the SlackWebhookHandler or the TelegramBotHandler",
  2243. "ext-mbstring": "Allow to work properly with unicode symbols",
  2244. "ext-mongodb": "Allow sending log messages to a MongoDB server (via driver)",
  2245. "ext-openssl": "Required to send log messages using SSL",
  2246. "ext-sockets": "Allow sending log messages to a Syslog server (via UDP driver)",
  2247. "graylog2/gelf-php": "Allow sending log messages to a GrayLog2 server",
  2248. "mongodb/mongodb": "Allow sending log messages to a MongoDB server (via library)",
  2249. "php-amqplib/php-amqplib": "Allow sending log messages to an AMQP server using php-amqplib",
  2250. "rollbar/rollbar": "Allow sending log messages to Rollbar",
  2251. "ruflin/elastica": "Allow sending log messages to an Elastic Search server"
  2252. },
  2253. "type": "library",
  2254. "extra": {
  2255. "branch-alias": {
  2256. "dev-main": "3.x-dev"
  2257. }
  2258. },
  2259. "autoload": {
  2260. "psr-4": {
  2261. "Monolog\\": "src/Monolog"
  2262. }
  2263. },
  2264. "notification-url": "https://packagist.org/downloads/",
  2265. "license": [
  2266. "MIT"
  2267. ],
  2268. "authors": [
  2269. {
  2270. "name": "Jordi Boggiano",
  2271. "email": "j.boggiano@seld.be",
  2272. "homepage": "https://seld.be"
  2273. }
  2274. ],
  2275. "description": "Sends your logs to files, sockets, inboxes, databases and various web services",
  2276. "homepage": "https://github.com/Seldaek/monolog",
  2277. "keywords": [
  2278. "log",
  2279. "logging",
  2280. "psr-3"
  2281. ],
  2282. "support": {
  2283. "issues": "https://github.com/Seldaek/monolog/issues",
  2284. "source": "https://github.com/Seldaek/monolog/tree/3.5.0"
  2285. },
  2286. "funding": [
  2287. {
  2288. "url": "https://github.com/Seldaek",
  2289. "type": "github"
  2290. },
  2291. {
  2292. "url": "https://tidelift.com/funding/github/packagist/monolog/monolog",
  2293. "type": "tidelift"
  2294. }
  2295. ],
  2296. "time": "2023-10-27T15:32:31+00:00"
  2297. },
  2298. {
  2299. "name": "nette/schema",
  2300. "version": "v1.2.5",
  2301. "source": {
  2302. "type": "git",
  2303. "url": "https://github.com/nette/schema.git",
  2304. "reference": "0462f0166e823aad657c9224d0f849ecac1ba10a"
  2305. },
  2306. "dist": {
  2307. "type": "zip",
  2308. "url": "https://api.github.com/repos/nette/schema/zipball/0462f0166e823aad657c9224d0f849ecac1ba10a",
  2309. "reference": "0462f0166e823aad657c9224d0f849ecac1ba10a",
  2310. "shasum": ""
  2311. },
  2312. "require": {
  2313. "nette/utils": "^2.5.7 || ^3.1.5 || ^4.0",
  2314. "php": "7.1 - 8.3"
  2315. },
  2316. "require-dev": {
  2317. "nette/tester": "^2.3 || ^2.4",
  2318. "phpstan/phpstan-nette": "^1.0",
  2319. "tracy/tracy": "^2.7"
  2320. },
  2321. "type": "library",
  2322. "extra": {
  2323. "branch-alias": {
  2324. "dev-master": "1.2-dev"
  2325. }
  2326. },
  2327. "autoload": {
  2328. "classmap": [
  2329. "src/"
  2330. ]
  2331. },
  2332. "notification-url": "https://packagist.org/downloads/",
  2333. "license": [
  2334. "BSD-3-Clause",
  2335. "GPL-2.0-only",
  2336. "GPL-3.0-only"
  2337. ],
  2338. "authors": [
  2339. {
  2340. "name": "David Grudl",
  2341. "homepage": "https://davidgrudl.com"
  2342. },
  2343. {
  2344. "name": "Nette Community",
  2345. "homepage": "https://nette.org/contributors"
  2346. }
  2347. ],
  2348. "description": "📐 Nette Schema: validating data structures against a given Schema.",
  2349. "homepage": "https://nette.org",
  2350. "keywords": [
  2351. "config",
  2352. "nette"
  2353. ],
  2354. "support": {
  2355. "issues": "https://github.com/nette/schema/issues",
  2356. "source": "https://github.com/nette/schema/tree/v1.2.5"
  2357. },
  2358. "time": "2023-10-05T20:37:59+00:00"
  2359. },
  2360. {
  2361. "name": "nette/utils",
  2362. "version": "v4.0.3",
  2363. "source": {
  2364. "type": "git",
  2365. "url": "https://github.com/nette/utils.git",
  2366. "reference": "a9d127dd6a203ce6d255b2e2db49759f7506e015"
  2367. },
  2368. "dist": {
  2369. "type": "zip",
  2370. "url": "https://api.github.com/repos/nette/utils/zipball/a9d127dd6a203ce6d255b2e2db49759f7506e015",
  2371. "reference": "a9d127dd6a203ce6d255b2e2db49759f7506e015",
  2372. "shasum": ""
  2373. },
  2374. "require": {
  2375. "php": ">=8.0 <8.4"
  2376. },
  2377. "conflict": {
  2378. "nette/finder": "<3",
  2379. "nette/schema": "<1.2.2"
  2380. },
  2381. "require-dev": {
  2382. "jetbrains/phpstorm-attributes": "dev-master",
  2383. "nette/tester": "^2.5",
  2384. "phpstan/phpstan": "^1.0",
  2385. "tracy/tracy": "^2.9"
  2386. },
  2387. "suggest": {
  2388. "ext-gd": "to use Image",
  2389. "ext-iconv": "to use Strings::webalize(), toAscii(), chr() and reverse()",
  2390. "ext-intl": "to use Strings::webalize(), toAscii(), normalize() and compare()",
  2391. "ext-json": "to use Nette\\Utils\\Json",
  2392. "ext-mbstring": "to use Strings::lower() etc...",
  2393. "ext-tokenizer": "to use Nette\\Utils\\Reflection::getUseStatements()"
  2394. },
  2395. "type": "library",
  2396. "extra": {
  2397. "branch-alias": {
  2398. "dev-master": "4.0-dev"
  2399. }
  2400. },
  2401. "autoload": {
  2402. "classmap": [
  2403. "src/"
  2404. ]
  2405. },
  2406. "notification-url": "https://packagist.org/downloads/",
  2407. "license": [
  2408. "BSD-3-Clause",
  2409. "GPL-2.0-only",
  2410. "GPL-3.0-only"
  2411. ],
  2412. "authors": [
  2413. {
  2414. "name": "David Grudl",
  2415. "homepage": "https://davidgrudl.com"
  2416. },
  2417. {
  2418. "name": "Nette Community",
  2419. "homepage": "https://nette.org/contributors"
  2420. }
  2421. ],
  2422. "description": "🛠 Nette Utils: lightweight utilities for string & array manipulation, image handling, safe JSON encoding/decoding, validation, slug or strong password generating etc.",
  2423. "homepage": "https://nette.org",
  2424. "keywords": [
  2425. "array",
  2426. "core",
  2427. "datetime",
  2428. "images",
  2429. "json",
  2430. "nette",
  2431. "paginator",
  2432. "password",
  2433. "slugify",
  2434. "string",
  2435. "unicode",
  2436. "utf-8",
  2437. "utility",
  2438. "validation"
  2439. ],
  2440. "support": {
  2441. "issues": "https://github.com/nette/utils/issues",
  2442. "source": "https://github.com/nette/utils/tree/v4.0.3"
  2443. },
  2444. "time": "2023-10-29T21:02:13+00:00"
  2445. },
  2446. {
  2447. "name": "phpdocumentor/reflection-common",
  2448. "version": "2.2.0",
  2449. "source": {
  2450. "type": "git",
  2451. "url": "https://github.com/phpDocumentor/ReflectionCommon.git",
  2452. "reference": "1d01c49d4ed62f25aa84a747ad35d5a16924662b"
  2453. },
  2454. "dist": {
  2455. "type": "zip",
  2456. "url": "https://api.github.com/repos/phpDocumentor/ReflectionCommon/zipball/1d01c49d4ed62f25aa84a747ad35d5a16924662b",
  2457. "reference": "1d01c49d4ed62f25aa84a747ad35d5a16924662b",
  2458. "shasum": ""
  2459. },
  2460. "require": {
  2461. "php": "^7.2 || ^8.0"
  2462. },
  2463. "type": "library",
  2464. "extra": {
  2465. "branch-alias": {
  2466. "dev-2.x": "2.x-dev"
  2467. }
  2468. },
  2469. "autoload": {
  2470. "psr-4": {
  2471. "phpDocumentor\\Reflection\\": "src/"
  2472. }
  2473. },
  2474. "notification-url": "https://packagist.org/downloads/",
  2475. "license": [
  2476. "MIT"
  2477. ],
  2478. "authors": [
  2479. {
  2480. "name": "Jaap van Otterdijk",
  2481. "email": "opensource@ijaap.nl"
  2482. }
  2483. ],
  2484. "description": "Common reflection classes used by phpdocumentor to reflect the code structure",
  2485. "homepage": "http://www.phpdoc.org",
  2486. "keywords": [
  2487. "FQSEN",
  2488. "phpDocumentor",
  2489. "phpdoc",
  2490. "reflection",
  2491. "static analysis"
  2492. ],
  2493. "support": {
  2494. "issues": "https://github.com/phpDocumentor/ReflectionCommon/issues",
  2495. "source": "https://github.com/phpDocumentor/ReflectionCommon/tree/2.x"
  2496. },
  2497. "time": "2020-06-27T09:03:43+00:00"
  2498. },
  2499. {
  2500. "name": "phpdocumentor/reflection-docblock",
  2501. "version": "5.3.0",
  2502. "source": {
  2503. "type": "git",
  2504. "url": "https://github.com/phpDocumentor/ReflectionDocBlock.git",
  2505. "reference": "622548b623e81ca6d78b721c5e029f4ce664f170"
  2506. },
  2507. "dist": {
  2508. "type": "zip",
  2509. "url": "https://api.github.com/repos/phpDocumentor/ReflectionDocBlock/zipball/622548b623e81ca6d78b721c5e029f4ce664f170",
  2510. "reference": "622548b623e81ca6d78b721c5e029f4ce664f170",
  2511. "shasum": ""
  2512. },
  2513. "require": {
  2514. "ext-filter": "*",
  2515. "php": "^7.2 || ^8.0",
  2516. "phpdocumentor/reflection-common": "^2.2",
  2517. "phpdocumentor/type-resolver": "^1.3",
  2518. "webmozart/assert": "^1.9.1"
  2519. },
  2520. "require-dev": {
  2521. "mockery/mockery": "~1.3.2",
  2522. "psalm/phar": "^4.8"
  2523. },
  2524. "type": "library",
  2525. "extra": {
  2526. "branch-alias": {
  2527. "dev-master": "5.x-dev"
  2528. }
  2529. },
  2530. "autoload": {
  2531. "psr-4": {
  2532. "phpDocumentor\\Reflection\\": "src"
  2533. }
  2534. },
  2535. "notification-url": "https://packagist.org/downloads/",
  2536. "license": [
  2537. "MIT"
  2538. ],
  2539. "authors": [
  2540. {
  2541. "name": "Mike van Riel",
  2542. "email": "me@mikevanriel.com"
  2543. },
  2544. {
  2545. "name": "Jaap van Otterdijk",
  2546. "email": "account@ijaap.nl"
  2547. }
  2548. ],
  2549. "description": "With this component, a library can provide support for annotations via DocBlocks or otherwise retrieve information that is embedded in a DocBlock.",
  2550. "support": {
  2551. "issues": "https://github.com/phpDocumentor/ReflectionDocBlock/issues",
  2552. "source": "https://github.com/phpDocumentor/ReflectionDocBlock/tree/5.3.0"
  2553. },
  2554. "time": "2021-10-19T17:43:47+00:00"
  2555. },
  2556. {
  2557. "name": "phpdocumentor/type-resolver",
  2558. "version": "1.7.3",
  2559. "source": {
  2560. "type": "git",
  2561. "url": "https://github.com/phpDocumentor/TypeResolver.git",
  2562. "reference": "3219c6ee25c9ea71e3d9bbaf39c67c9ebd499419"
  2563. },
  2564. "dist": {
  2565. "type": "zip",
  2566. "url": "https://api.github.com/repos/phpDocumentor/TypeResolver/zipball/3219c6ee25c9ea71e3d9bbaf39c67c9ebd499419",
  2567. "reference": "3219c6ee25c9ea71e3d9bbaf39c67c9ebd499419",
  2568. "shasum": ""
  2569. },
  2570. "require": {
  2571. "doctrine/deprecations": "^1.0",
  2572. "php": "^7.4 || ^8.0",
  2573. "phpdocumentor/reflection-common": "^2.0",
  2574. "phpstan/phpdoc-parser": "^1.13"
  2575. },
  2576. "require-dev": {
  2577. "ext-tokenizer": "*",
  2578. "phpbench/phpbench": "^1.2",
  2579. "phpstan/extension-installer": "^1.1",
  2580. "phpstan/phpstan": "^1.8",
  2581. "phpstan/phpstan-phpunit": "^1.1",
  2582. "phpunit/phpunit": "^9.5",
  2583. "rector/rector": "^0.13.9",
  2584. "vimeo/psalm": "^4.25"
  2585. },
  2586. "type": "library",
  2587. "extra": {
  2588. "branch-alias": {
  2589. "dev-1.x": "1.x-dev"
  2590. }
  2591. },
  2592. "autoload": {
  2593. "psr-4": {
  2594. "phpDocumentor\\Reflection\\": "src"
  2595. }
  2596. },
  2597. "notification-url": "https://packagist.org/downloads/",
  2598. "license": [
  2599. "MIT"
  2600. ],
  2601. "authors": [
  2602. {
  2603. "name": "Mike van Riel",
  2604. "email": "me@mikevanriel.com"
  2605. }
  2606. ],
  2607. "description": "A PSR-5 based resolver of Class names, Types and Structural Element Names",
  2608. "support": {
  2609. "issues": "https://github.com/phpDocumentor/TypeResolver/issues",
  2610. "source": "https://github.com/phpDocumentor/TypeResolver/tree/1.7.3"
  2611. },
  2612. "time": "2023-08-12T11:01:26+00:00"
  2613. },
  2614. {
  2615. "name": "phpstan/phpdoc-parser",
  2616. "version": "1.24.5",
  2617. "source": {
  2618. "type": "git",
  2619. "url": "https://github.com/phpstan/phpdoc-parser.git",
  2620. "reference": "fedf211ff14ec8381c9bf5714e33a7a552dd1acc"
  2621. },
  2622. "dist": {
  2623. "type": "zip",
  2624. "url": "https://api.github.com/repos/phpstan/phpdoc-parser/zipball/fedf211ff14ec8381c9bf5714e33a7a552dd1acc",
  2625. "reference": "fedf211ff14ec8381c9bf5714e33a7a552dd1acc",
  2626. "shasum": ""
  2627. },
  2628. "require": {
  2629. "php": "^7.2 || ^8.0"
  2630. },
  2631. "require-dev": {
  2632. "doctrine/annotations": "^2.0",
  2633. "nikic/php-parser": "^4.15",
  2634. "php-parallel-lint/php-parallel-lint": "^1.2",
  2635. "phpstan/extension-installer": "^1.0",
  2636. "phpstan/phpstan": "^1.5",
  2637. "phpstan/phpstan-phpunit": "^1.1",
  2638. "phpstan/phpstan-strict-rules": "^1.0",
  2639. "phpunit/phpunit": "^9.5",
  2640. "symfony/process": "^5.2"
  2641. },
  2642. "type": "library",
  2643. "autoload": {
  2644. "psr-4": {
  2645. "PHPStan\\PhpDocParser\\": [
  2646. "src/"
  2647. ]
  2648. }
  2649. },
  2650. "notification-url": "https://packagist.org/downloads/",
  2651. "license": [
  2652. "MIT"
  2653. ],
  2654. "description": "PHPDoc parser with support for nullable, intersection and generic types",
  2655. "support": {
  2656. "issues": "https://github.com/phpstan/phpdoc-parser/issues",
  2657. "source": "https://github.com/phpstan/phpdoc-parser/tree/1.24.5"
  2658. },
  2659. "time": "2023-12-16T09:33:33+00:00"
  2660. },
  2661. {
  2662. "name": "psr/cache",
  2663. "version": "3.0.0",
  2664. "source": {
  2665. "type": "git",
  2666. "url": "https://github.com/php-fig/cache.git",
  2667. "reference": "aa5030cfa5405eccfdcb1083ce040c2cb8d253bf"
  2668. },
  2669. "dist": {
  2670. "type": "zip",
  2671. "url": "https://api.github.com/repos/php-fig/cache/zipball/aa5030cfa5405eccfdcb1083ce040c2cb8d253bf",
  2672. "reference": "aa5030cfa5405eccfdcb1083ce040c2cb8d253bf",
  2673. "shasum": ""
  2674. },
  2675. "require": {
  2676. "php": ">=8.0.0"
  2677. },
  2678. "type": "library",
  2679. "extra": {
  2680. "branch-alias": {
  2681. "dev-master": "1.0.x-dev"
  2682. }
  2683. },
  2684. "autoload": {
  2685. "psr-4": {
  2686. "Psr\\Cache\\": "src/"
  2687. }
  2688. },
  2689. "notification-url": "https://packagist.org/downloads/",
  2690. "license": [
  2691. "MIT"
  2692. ],
  2693. "authors": [
  2694. {
  2695. "name": "PHP-FIG",
  2696. "homepage": "https://www.php-fig.org/"
  2697. }
  2698. ],
  2699. "description": "Common interface for caching libraries",
  2700. "keywords": [
  2701. "cache",
  2702. "psr",
  2703. "psr-6"
  2704. ],
  2705. "support": {
  2706. "source": "https://github.com/php-fig/cache/tree/3.0.0"
  2707. },
  2708. "time": "2021-02-03T23:26:27+00:00"
  2709. },
  2710. {
  2711. "name": "psr/clock",
  2712. "version": "1.0.0",
  2713. "source": {
  2714. "type": "git",
  2715. "url": "https://github.com/php-fig/clock.git",
  2716. "reference": "e41a24703d4560fd0acb709162f73b8adfc3aa0d"
  2717. },
  2718. "dist": {
  2719. "type": "zip",
  2720. "url": "https://api.github.com/repos/php-fig/clock/zipball/e41a24703d4560fd0acb709162f73b8adfc3aa0d",
  2721. "reference": "e41a24703d4560fd0acb709162f73b8adfc3aa0d",
  2722. "shasum": ""
  2723. },
  2724. "require": {
  2725. "php": "^7.0 || ^8.0"
  2726. },
  2727. "type": "library",
  2728. "autoload": {
  2729. "psr-4": {
  2730. "Psr\\Clock\\": "src/"
  2731. }
  2732. },
  2733. "notification-url": "https://packagist.org/downloads/",
  2734. "license": [
  2735. "MIT"
  2736. ],
  2737. "authors": [
  2738. {
  2739. "name": "PHP-FIG",
  2740. "homepage": "https://www.php-fig.org/"
  2741. }
  2742. ],
  2743. "description": "Common interface for reading the clock.",
  2744. "homepage": "https://github.com/php-fig/clock",
  2745. "keywords": [
  2746. "clock",
  2747. "now",
  2748. "psr",
  2749. "psr-20",
  2750. "time"
  2751. ],
  2752. "support": {
  2753. "issues": "https://github.com/php-fig/clock/issues",
  2754. "source": "https://github.com/php-fig/clock/tree/1.0.0"
  2755. },
  2756. "time": "2022-11-25T14:36:26+00:00"
  2757. },
  2758. {
  2759. "name": "psr/container",
  2760. "version": "2.0.2",
  2761. "source": {
  2762. "type": "git",
  2763. "url": "https://github.com/php-fig/container.git",
  2764. "reference": "c71ecc56dfe541dbd90c5360474fbc405f8d5963"
  2765. },
  2766. "dist": {
  2767. "type": "zip",
  2768. "url": "https://api.github.com/repos/php-fig/container/zipball/c71ecc56dfe541dbd90c5360474fbc405f8d5963",
  2769. "reference": "c71ecc56dfe541dbd90c5360474fbc405f8d5963",
  2770. "shasum": ""
  2771. },
  2772. "require": {
  2773. "php": ">=7.4.0"
  2774. },
  2775. "type": "library",
  2776. "extra": {
  2777. "branch-alias": {
  2778. "dev-master": "2.0.x-dev"
  2779. }
  2780. },
  2781. "autoload": {
  2782. "psr-4": {
  2783. "Psr\\Container\\": "src/"
  2784. }
  2785. },
  2786. "notification-url": "https://packagist.org/downloads/",
  2787. "license": [
  2788. "MIT"
  2789. ],
  2790. "authors": [
  2791. {
  2792. "name": "PHP-FIG",
  2793. "homepage": "https://www.php-fig.org/"
  2794. }
  2795. ],
  2796. "description": "Common Container Interface (PHP FIG PSR-11)",
  2797. "homepage": "https://github.com/php-fig/container",
  2798. "keywords": [
  2799. "PSR-11",
  2800. "container",
  2801. "container-interface",
  2802. "container-interop",
  2803. "psr"
  2804. ],
  2805. "support": {
  2806. "issues": "https://github.com/php-fig/container/issues",
  2807. "source": "https://github.com/php-fig/container/tree/2.0.2"
  2808. },
  2809. "time": "2021-11-05T16:47:00+00:00"
  2810. },
  2811. {
  2812. "name": "psr/event-dispatcher",
  2813. "version": "1.0.0",
  2814. "source": {
  2815. "type": "git",
  2816. "url": "https://github.com/php-fig/event-dispatcher.git",
  2817. "reference": "dbefd12671e8a14ec7f180cab83036ed26714bb0"
  2818. },
  2819. "dist": {
  2820. "type": "zip",
  2821. "url": "https://api.github.com/repos/php-fig/event-dispatcher/zipball/dbefd12671e8a14ec7f180cab83036ed26714bb0",
  2822. "reference": "dbefd12671e8a14ec7f180cab83036ed26714bb0",
  2823. "shasum": ""
  2824. },
  2825. "require": {
  2826. "php": ">=7.2.0"
  2827. },
  2828. "type": "library",
  2829. "extra": {
  2830. "branch-alias": {
  2831. "dev-master": "1.0.x-dev"
  2832. }
  2833. },
  2834. "autoload": {
  2835. "psr-4": {
  2836. "Psr\\EventDispatcher\\": "src/"
  2837. }
  2838. },
  2839. "notification-url": "https://packagist.org/downloads/",
  2840. "license": [
  2841. "MIT"
  2842. ],
  2843. "authors": [
  2844. {
  2845. "name": "PHP-FIG",
  2846. "homepage": "http://www.php-fig.org/"
  2847. }
  2848. ],
  2849. "description": "Standard interfaces for event handling.",
  2850. "keywords": [
  2851. "events",
  2852. "psr",
  2853. "psr-14"
  2854. ],
  2855. "support": {
  2856. "issues": "https://github.com/php-fig/event-dispatcher/issues",
  2857. "source": "https://github.com/php-fig/event-dispatcher/tree/1.0.0"
  2858. },
  2859. "time": "2019-01-08T18:20:26+00:00"
  2860. },
  2861. {
  2862. "name": "psr/http-factory",
  2863. "version": "1.0.2",
  2864. "source": {
  2865. "type": "git",
  2866. "url": "https://github.com/php-fig/http-factory.git",
  2867. "reference": "e616d01114759c4c489f93b099585439f795fe35"
  2868. },
  2869. "dist": {
  2870. "type": "zip",
  2871. "url": "https://api.github.com/repos/php-fig/http-factory/zipball/e616d01114759c4c489f93b099585439f795fe35",
  2872. "reference": "e616d01114759c4c489f93b099585439f795fe35",
  2873. "shasum": ""
  2874. },
  2875. "require": {
  2876. "php": ">=7.0.0",
  2877. "psr/http-message": "^1.0 || ^2.0"
  2878. },
  2879. "type": "library",
  2880. "extra": {
  2881. "branch-alias": {
  2882. "dev-master": "1.0.x-dev"
  2883. }
  2884. },
  2885. "autoload": {
  2886. "psr-4": {
  2887. "Psr\\Http\\Message\\": "src/"
  2888. }
  2889. },
  2890. "notification-url": "https://packagist.org/downloads/",
  2891. "license": [
  2892. "MIT"
  2893. ],
  2894. "authors": [
  2895. {
  2896. "name": "PHP-FIG",
  2897. "homepage": "https://www.php-fig.org/"
  2898. }
  2899. ],
  2900. "description": "Common interfaces for PSR-7 HTTP message factories",
  2901. "keywords": [
  2902. "factory",
  2903. "http",
  2904. "message",
  2905. "psr",
  2906. "psr-17",
  2907. "psr-7",
  2908. "request",
  2909. "response"
  2910. ],
  2911. "support": {
  2912. "source": "https://github.com/php-fig/http-factory/tree/1.0.2"
  2913. },
  2914. "time": "2023-04-10T20:10:41+00:00"
  2915. },
  2916. {
  2917. "name": "psr/http-message",
  2918. "version": "2.0",
  2919. "source": {
  2920. "type": "git",
  2921. "url": "https://github.com/php-fig/http-message.git",
  2922. "reference": "402d35bcb92c70c026d1a6a9883f06b2ead23d71"
  2923. },
  2924. "dist": {
  2925. "type": "zip",
  2926. "url": "https://api.github.com/repos/php-fig/http-message/zipball/402d35bcb92c70c026d1a6a9883f06b2ead23d71",
  2927. "reference": "402d35bcb92c70c026d1a6a9883f06b2ead23d71",
  2928. "shasum": ""
  2929. },
  2930. "require": {
  2931. "php": "^7.2 || ^8.0"
  2932. },
  2933. "type": "library",
  2934. "extra": {
  2935. "branch-alias": {
  2936. "dev-master": "2.0.x-dev"
  2937. }
  2938. },
  2939. "autoload": {
  2940. "psr-4": {
  2941. "Psr\\Http\\Message\\": "src/"
  2942. }
  2943. },
  2944. "notification-url": "https://packagist.org/downloads/",
  2945. "license": [
  2946. "MIT"
  2947. ],
  2948. "authors": [
  2949. {
  2950. "name": "PHP-FIG",
  2951. "homepage": "https://www.php-fig.org/"
  2952. }
  2953. ],
  2954. "description": "Common interface for HTTP messages",
  2955. "homepage": "https://github.com/php-fig/http-message",
  2956. "keywords": [
  2957. "http",
  2958. "http-message",
  2959. "psr",
  2960. "psr-7",
  2961. "request",
  2962. "response"
  2963. ],
  2964. "support": {
  2965. "source": "https://github.com/php-fig/http-message/tree/2.0"
  2966. },
  2967. "time": "2023-04-04T09:54:51+00:00"
  2968. },
  2969. {
  2970. "name": "psr/link",
  2971. "version": "2.0.1",
  2972. "source": {
  2973. "type": "git",
  2974. "url": "https://github.com/php-fig/link.git",
  2975. "reference": "84b159194ecfd7eaa472280213976e96415433f7"
  2976. },
  2977. "dist": {
  2978. "type": "zip",
  2979. "url": "https://api.github.com/repos/php-fig/link/zipball/84b159194ecfd7eaa472280213976e96415433f7",
  2980. "reference": "84b159194ecfd7eaa472280213976e96415433f7",
  2981. "shasum": ""
  2982. },
  2983. "require": {
  2984. "php": ">=8.0.0"
  2985. },
  2986. "suggest": {
  2987. "fig/link-util": "Provides some useful PSR-13 utilities"
  2988. },
  2989. "type": "library",
  2990. "extra": {
  2991. "branch-alias": {
  2992. "dev-master": "2.0.x-dev"
  2993. }
  2994. },
  2995. "autoload": {
  2996. "psr-4": {
  2997. "Psr\\Link\\": "src/"
  2998. }
  2999. },
  3000. "notification-url": "https://packagist.org/downloads/",
  3001. "license": [
  3002. "MIT"
  3003. ],
  3004. "authors": [
  3005. {
  3006. "name": "PHP-FIG",
  3007. "homepage": "http://www.php-fig.org/"
  3008. }
  3009. ],
  3010. "description": "Common interfaces for HTTP links",
  3011. "homepage": "https://github.com/php-fig/link",
  3012. "keywords": [
  3013. "http",
  3014. "http-link",
  3015. "link",
  3016. "psr",
  3017. "psr-13",
  3018. "rest"
  3019. ],
  3020. "support": {
  3021. "source": "https://github.com/php-fig/link/tree/2.0.1"
  3022. },
  3023. "time": "2021-03-11T23:00:27+00:00"
  3024. },
  3025. {
  3026. "name": "psr/log",
  3027. "version": "3.0.0",
  3028. "source": {
  3029. "type": "git",
  3030. "url": "https://github.com/php-fig/log.git",
  3031. "reference": "fe5ea303b0887d5caefd3d431c3e61ad47037001"
  3032. },
  3033. "dist": {
  3034. "type": "zip",
  3035. "url": "https://api.github.com/repos/php-fig/log/zipball/fe5ea303b0887d5caefd3d431c3e61ad47037001",
  3036. "reference": "fe5ea303b0887d5caefd3d431c3e61ad47037001",
  3037. "shasum": ""
  3038. },
  3039. "require": {
  3040. "php": ">=8.0.0"
  3041. },
  3042. "type": "library",
  3043. "extra": {
  3044. "branch-alias": {
  3045. "dev-master": "3.x-dev"
  3046. }
  3047. },
  3048. "autoload": {
  3049. "psr-4": {
  3050. "Psr\\Log\\": "src"
  3051. }
  3052. },
  3053. "notification-url": "https://packagist.org/downloads/",
  3054. "license": [
  3055. "MIT"
  3056. ],
  3057. "authors": [
  3058. {
  3059. "name": "PHP-FIG",
  3060. "homepage": "https://www.php-fig.org/"
  3061. }
  3062. ],
  3063. "description": "Common interface for logging libraries",
  3064. "homepage": "https://github.com/php-fig/log",
  3065. "keywords": [
  3066. "log",
  3067. "psr",
  3068. "psr-3"
  3069. ],
  3070. "support": {
  3071. "source": "https://github.com/php-fig/log/tree/3.0.0"
  3072. },
  3073. "time": "2021-07-14T16:46:02+00:00"
  3074. },
  3075. {
  3076. "name": "symfony/apache-pack",
  3077. "version": "v1.0.1",
  3078. "source": {
  3079. "type": "git",
  3080. "url": "https://github.com/symfony/apache-pack.git",
  3081. "reference": "3aa5818d73ad2551281fc58a75afd9ca82622e6c"
  3082. },
  3083. "dist": {
  3084. "type": "zip",
  3085. "url": "https://api.github.com/repos/symfony/apache-pack/zipball/3aa5818d73ad2551281fc58a75afd9ca82622e6c",
  3086. "reference": "3aa5818d73ad2551281fc58a75afd9ca82622e6c",
  3087. "shasum": ""
  3088. },
  3089. "type": "symfony-pack",
  3090. "notification-url": "https://packagist.org/downloads/",
  3091. "license": [
  3092. "MIT"
  3093. ],
  3094. "description": "A pack for Apache support in Symfony",
  3095. "support": {
  3096. "issues": "https://github.com/symfony/apache-pack/issues",
  3097. "source": "https://github.com/symfony/apache-pack/tree/master"
  3098. },
  3099. "time": "2017-12-12T01:46:35+00:00"
  3100. },
  3101. {
  3102. "name": "symfony/asset",
  3103. "version": "v6.3.8",
  3104. "source": {
  3105. "type": "git",
  3106. "url": "https://github.com/symfony/asset.git",
  3107. "reference": "b2382a403f2111836301623d89e9af3d84989525"
  3108. },
  3109. "dist": {
  3110. "type": "zip",
  3111. "url": "https://api.github.com/repos/symfony/asset/zipball/b2382a403f2111836301623d89e9af3d84989525",
  3112. "reference": "b2382a403f2111836301623d89e9af3d84989525",
  3113. "shasum": ""
  3114. },
  3115. "require": {
  3116. "php": ">=8.1"
  3117. },
  3118. "conflict": {
  3119. "symfony/http-foundation": "<5.4"
  3120. },
  3121. "require-dev": {
  3122. "symfony/http-client": "^5.4|^6.0",
  3123. "symfony/http-foundation": "^5.4|^6.0",
  3124. "symfony/http-kernel": "^5.4|^6.0"
  3125. },
  3126. "type": "library",
  3127. "autoload": {
  3128. "psr-4": {
  3129. "Symfony\\Component\\Asset\\": ""
  3130. },
  3131. "exclude-from-classmap": [
  3132. "/Tests/"
  3133. ]
  3134. },
  3135. "notification-url": "https://packagist.org/downloads/",
  3136. "license": [
  3137. "MIT"
  3138. ],
  3139. "authors": [
  3140. {
  3141. "name": "Fabien Potencier",
  3142. "email": "fabien@symfony.com"
  3143. },
  3144. {
  3145. "name": "Symfony Community",
  3146. "homepage": "https://symfony.com/contributors"
  3147. }
  3148. ],
  3149. "description": "Manages URL generation and versioning of web assets such as CSS stylesheets, JavaScript files and image files",
  3150. "homepage": "https://symfony.com",
  3151. "support": {
  3152. "source": "https://github.com/symfony/asset/tree/v6.3.8"
  3153. },
  3154. "funding": [
  3155. {
  3156. "url": "https://symfony.com/sponsor",
  3157. "type": "custom"
  3158. },
  3159. {
  3160. "url": "https://github.com/fabpot",
  3161. "type": "github"
  3162. },
  3163. {
  3164. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3165. "type": "tidelift"
  3166. }
  3167. ],
  3168. "time": "2023-10-31T08:07:48+00:00"
  3169. },
  3170. {
  3171. "name": "symfony/cache",
  3172. "version": "v6.3.9",
  3173. "source": {
  3174. "type": "git",
  3175. "url": "https://github.com/symfony/cache.git",
  3176. "reference": "8c6e84272e4febbb1fed3c5b9f3c722537c2bd55"
  3177. },
  3178. "dist": {
  3179. "type": "zip",
  3180. "url": "https://api.github.com/repos/symfony/cache/zipball/8c6e84272e4febbb1fed3c5b9f3c722537c2bd55",
  3181. "reference": "8c6e84272e4febbb1fed3c5b9f3c722537c2bd55",
  3182. "shasum": ""
  3183. },
  3184. "require": {
  3185. "php": ">=8.1",
  3186. "psr/cache": "^2.0|^3.0",
  3187. "psr/log": "^1.1|^2|^3",
  3188. "symfony/cache-contracts": "^2.5|^3",
  3189. "symfony/service-contracts": "^2.5|^3",
  3190. "symfony/var-exporter": "^6.3.6"
  3191. },
  3192. "conflict": {
  3193. "doctrine/dbal": "<2.13.1",
  3194. "symfony/dependency-injection": "<5.4",
  3195. "symfony/http-kernel": "<5.4",
  3196. "symfony/var-dumper": "<5.4"
  3197. },
  3198. "provide": {
  3199. "psr/cache-implementation": "2.0|3.0",
  3200. "psr/simple-cache-implementation": "1.0|2.0|3.0",
  3201. "symfony/cache-implementation": "1.1|2.0|3.0"
  3202. },
  3203. "require-dev": {
  3204. "cache/integration-tests": "dev-master",
  3205. "doctrine/dbal": "^2.13.1|^3|^4",
  3206. "predis/predis": "^1.1|^2.0",
  3207. "psr/simple-cache": "^1.0|^2.0|^3.0",
  3208. "symfony/config": "^5.4|^6.0",
  3209. "symfony/dependency-injection": "^5.4|^6.0",
  3210. "symfony/filesystem": "^5.4|^6.0",
  3211. "symfony/http-kernel": "^5.4|^6.0",
  3212. "symfony/messenger": "^5.4|^6.0",
  3213. "symfony/var-dumper": "^5.4|^6.0"
  3214. },
  3215. "type": "library",
  3216. "autoload": {
  3217. "psr-4": {
  3218. "Symfony\\Component\\Cache\\": ""
  3219. },
  3220. "classmap": [
  3221. "Traits/ValueWrapper.php"
  3222. ],
  3223. "exclude-from-classmap": [
  3224. "/Tests/"
  3225. ]
  3226. },
  3227. "notification-url": "https://packagist.org/downloads/",
  3228. "license": [
  3229. "MIT"
  3230. ],
  3231. "authors": [
  3232. {
  3233. "name": "Nicolas Grekas",
  3234. "email": "p@tchwork.com"
  3235. },
  3236. {
  3237. "name": "Symfony Community",
  3238. "homepage": "https://symfony.com/contributors"
  3239. }
  3240. ],
  3241. "description": "Provides extended PSR-6, PSR-16 (and tags) implementations",
  3242. "homepage": "https://symfony.com",
  3243. "keywords": [
  3244. "caching",
  3245. "psr6"
  3246. ],
  3247. "support": {
  3248. "source": "https://github.com/symfony/cache/tree/v6.3.9"
  3249. },
  3250. "funding": [
  3251. {
  3252. "url": "https://symfony.com/sponsor",
  3253. "type": "custom"
  3254. },
  3255. {
  3256. "url": "https://github.com/fabpot",
  3257. "type": "github"
  3258. },
  3259. {
  3260. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3261. "type": "tidelift"
  3262. }
  3263. ],
  3264. "time": "2023-11-24T13:24:35+00:00"
  3265. },
  3266. {
  3267. "name": "symfony/cache-contracts",
  3268. "version": "v3.4.0",
  3269. "source": {
  3270. "type": "git",
  3271. "url": "https://github.com/symfony/cache-contracts.git",
  3272. "reference": "1d74b127da04ffa87aa940abe15446fa89653778"
  3273. },
  3274. "dist": {
  3275. "type": "zip",
  3276. "url": "https://api.github.com/repos/symfony/cache-contracts/zipball/1d74b127da04ffa87aa940abe15446fa89653778",
  3277. "reference": "1d74b127da04ffa87aa940abe15446fa89653778",
  3278. "shasum": ""
  3279. },
  3280. "require": {
  3281. "php": ">=8.1",
  3282. "psr/cache": "^3.0"
  3283. },
  3284. "type": "library",
  3285. "extra": {
  3286. "branch-alias": {
  3287. "dev-main": "3.4-dev"
  3288. },
  3289. "thanks": {
  3290. "name": "symfony/contracts",
  3291. "url": "https://github.com/symfony/contracts"
  3292. }
  3293. },
  3294. "autoload": {
  3295. "psr-4": {
  3296. "Symfony\\Contracts\\Cache\\": ""
  3297. }
  3298. },
  3299. "notification-url": "https://packagist.org/downloads/",
  3300. "license": [
  3301. "MIT"
  3302. ],
  3303. "authors": [
  3304. {
  3305. "name": "Nicolas Grekas",
  3306. "email": "p@tchwork.com"
  3307. },
  3308. {
  3309. "name": "Symfony Community",
  3310. "homepage": "https://symfony.com/contributors"
  3311. }
  3312. ],
  3313. "description": "Generic abstractions related to caching",
  3314. "homepage": "https://symfony.com",
  3315. "keywords": [
  3316. "abstractions",
  3317. "contracts",
  3318. "decoupling",
  3319. "interfaces",
  3320. "interoperability",
  3321. "standards"
  3322. ],
  3323. "support": {
  3324. "source": "https://github.com/symfony/cache-contracts/tree/v3.4.0"
  3325. },
  3326. "funding": [
  3327. {
  3328. "url": "https://symfony.com/sponsor",
  3329. "type": "custom"
  3330. },
  3331. {
  3332. "url": "https://github.com/fabpot",
  3333. "type": "github"
  3334. },
  3335. {
  3336. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3337. "type": "tidelift"
  3338. }
  3339. ],
  3340. "time": "2023-09-25T12:52:38+00:00"
  3341. },
  3342. {
  3343. "name": "symfony/clock",
  3344. "version": "v6.3.4",
  3345. "source": {
  3346. "type": "git",
  3347. "url": "https://github.com/symfony/clock.git",
  3348. "reference": "a74086d3db70d0f06ffd84480daa556248706e98"
  3349. },
  3350. "dist": {
  3351. "type": "zip",
  3352. "url": "https://api.github.com/repos/symfony/clock/zipball/a74086d3db70d0f06ffd84480daa556248706e98",
  3353. "reference": "a74086d3db70d0f06ffd84480daa556248706e98",
  3354. "shasum": ""
  3355. },
  3356. "require": {
  3357. "php": ">=8.1",
  3358. "psr/clock": "^1.0"
  3359. },
  3360. "provide": {
  3361. "psr/clock-implementation": "1.0"
  3362. },
  3363. "type": "library",
  3364. "autoload": {
  3365. "files": [
  3366. "Resources/now.php"
  3367. ],
  3368. "psr-4": {
  3369. "Symfony\\Component\\Clock\\": ""
  3370. },
  3371. "exclude-from-classmap": [
  3372. "/Tests/"
  3373. ]
  3374. },
  3375. "notification-url": "https://packagist.org/downloads/",
  3376. "license": [
  3377. "MIT"
  3378. ],
  3379. "authors": [
  3380. {
  3381. "name": "Nicolas Grekas",
  3382. "email": "p@tchwork.com"
  3383. },
  3384. {
  3385. "name": "Symfony Community",
  3386. "homepage": "https://symfony.com/contributors"
  3387. }
  3388. ],
  3389. "description": "Decouples applications from the system clock",
  3390. "homepage": "https://symfony.com",
  3391. "keywords": [
  3392. "clock",
  3393. "psr20",
  3394. "time"
  3395. ],
  3396. "support": {
  3397. "source": "https://github.com/symfony/clock/tree/v6.3.4"
  3398. },
  3399. "funding": [
  3400. {
  3401. "url": "https://symfony.com/sponsor",
  3402. "type": "custom"
  3403. },
  3404. {
  3405. "url": "https://github.com/fabpot",
  3406. "type": "github"
  3407. },
  3408. {
  3409. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3410. "type": "tidelift"
  3411. }
  3412. ],
  3413. "time": "2023-07-31T11:35:03+00:00"
  3414. },
  3415. {
  3416. "name": "symfony/config",
  3417. "version": "v6.3.8",
  3418. "source": {
  3419. "type": "git",
  3420. "url": "https://github.com/symfony/config.git",
  3421. "reference": "b7a63887960359e5b59b15826fa9f9be10acbe88"
  3422. },
  3423. "dist": {
  3424. "type": "zip",
  3425. "url": "https://api.github.com/repos/symfony/config/zipball/b7a63887960359e5b59b15826fa9f9be10acbe88",
  3426. "reference": "b7a63887960359e5b59b15826fa9f9be10acbe88",
  3427. "shasum": ""
  3428. },
  3429. "require": {
  3430. "php": ">=8.1",
  3431. "symfony/deprecation-contracts": "^2.5|^3",
  3432. "symfony/filesystem": "^5.4|^6.0",
  3433. "symfony/polyfill-ctype": "~1.8"
  3434. },
  3435. "conflict": {
  3436. "symfony/finder": "<5.4",
  3437. "symfony/service-contracts": "<2.5"
  3438. },
  3439. "require-dev": {
  3440. "symfony/event-dispatcher": "^5.4|^6.0",
  3441. "symfony/finder": "^5.4|^6.0",
  3442. "symfony/messenger": "^5.4|^6.0",
  3443. "symfony/service-contracts": "^2.5|^3",
  3444. "symfony/yaml": "^5.4|^6.0"
  3445. },
  3446. "type": "library",
  3447. "autoload": {
  3448. "psr-4": {
  3449. "Symfony\\Component\\Config\\": ""
  3450. },
  3451. "exclude-from-classmap": [
  3452. "/Tests/"
  3453. ]
  3454. },
  3455. "notification-url": "https://packagist.org/downloads/",
  3456. "license": [
  3457. "MIT"
  3458. ],
  3459. "authors": [
  3460. {
  3461. "name": "Fabien Potencier",
  3462. "email": "fabien@symfony.com"
  3463. },
  3464. {
  3465. "name": "Symfony Community",
  3466. "homepage": "https://symfony.com/contributors"
  3467. }
  3468. ],
  3469. "description": "Helps you find, load, combine, autofill and validate configuration values of any kind",
  3470. "homepage": "https://symfony.com",
  3471. "support": {
  3472. "source": "https://github.com/symfony/config/tree/v6.3.8"
  3473. },
  3474. "funding": [
  3475. {
  3476. "url": "https://symfony.com/sponsor",
  3477. "type": "custom"
  3478. },
  3479. {
  3480. "url": "https://github.com/fabpot",
  3481. "type": "github"
  3482. },
  3483. {
  3484. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3485. "type": "tidelift"
  3486. }
  3487. ],
  3488. "time": "2023-11-09T08:28:21+00:00"
  3489. },
  3490. {
  3491. "name": "symfony/console",
  3492. "version": "v6.3.9",
  3493. "source": {
  3494. "type": "git",
  3495. "url": "https://github.com/symfony/console.git",
  3496. "reference": "0566dbd051f8648d980592c7849f5d90d2c7c60c"
  3497. },
  3498. "dist": {
  3499. "type": "zip",
  3500. "url": "https://api.github.com/repos/symfony/console/zipball/0566dbd051f8648d980592c7849f5d90d2c7c60c",
  3501. "reference": "0566dbd051f8648d980592c7849f5d90d2c7c60c",
  3502. "shasum": ""
  3503. },
  3504. "require": {
  3505. "php": ">=8.1",
  3506. "symfony/deprecation-contracts": "^2.5|^3",
  3507. "symfony/polyfill-mbstring": "~1.0",
  3508. "symfony/service-contracts": "^2.5|^3",
  3509. "symfony/string": "^5.4|^6.0"
  3510. },
  3511. "conflict": {
  3512. "symfony/dependency-injection": "<5.4",
  3513. "symfony/dotenv": "<5.4",
  3514. "symfony/event-dispatcher": "<5.4",
  3515. "symfony/lock": "<5.4",
  3516. "symfony/process": "<5.4"
  3517. },
  3518. "provide": {
  3519. "psr/log-implementation": "1.0|2.0|3.0"
  3520. },
  3521. "require-dev": {
  3522. "psr/log": "^1|^2|^3",
  3523. "symfony/config": "^5.4|^6.0",
  3524. "symfony/dependency-injection": "^5.4|^6.0",
  3525. "symfony/event-dispatcher": "^5.4|^6.0",
  3526. "symfony/lock": "^5.4|^6.0",
  3527. "symfony/process": "^5.4|^6.0",
  3528. "symfony/var-dumper": "^5.4|^6.0"
  3529. },
  3530. "type": "library",
  3531. "autoload": {
  3532. "psr-4": {
  3533. "Symfony\\Component\\Console\\": ""
  3534. },
  3535. "exclude-from-classmap": [
  3536. "/Tests/"
  3537. ]
  3538. },
  3539. "notification-url": "https://packagist.org/downloads/",
  3540. "license": [
  3541. "MIT"
  3542. ],
  3543. "authors": [
  3544. {
  3545. "name": "Fabien Potencier",
  3546. "email": "fabien@symfony.com"
  3547. },
  3548. {
  3549. "name": "Symfony Community",
  3550. "homepage": "https://symfony.com/contributors"
  3551. }
  3552. ],
  3553. "description": "Eases the creation of beautiful and testable command line interfaces",
  3554. "homepage": "https://symfony.com",
  3555. "keywords": [
  3556. "cli",
  3557. "command-line",
  3558. "console",
  3559. "terminal"
  3560. ],
  3561. "support": {
  3562. "source": "https://github.com/symfony/console/tree/v6.3.9"
  3563. },
  3564. "funding": [
  3565. {
  3566. "url": "https://symfony.com/sponsor",
  3567. "type": "custom"
  3568. },
  3569. {
  3570. "url": "https://github.com/fabpot",
  3571. "type": "github"
  3572. },
  3573. {
  3574. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3575. "type": "tidelift"
  3576. }
  3577. ],
  3578. "time": "2023-11-20T16:36:29+00:00"
  3579. },
  3580. {
  3581. "name": "symfony/dependency-injection",
  3582. "version": "v6.3.10",
  3583. "source": {
  3584. "type": "git",
  3585. "url": "https://github.com/symfony/dependency-injection.git",
  3586. "reference": "51383a1d9d7e93d5c3c76ddc32672de1b3e82c77"
  3587. },
  3588. "dist": {
  3589. "type": "zip",
  3590. "url": "https://api.github.com/repos/symfony/dependency-injection/zipball/51383a1d9d7e93d5c3c76ddc32672de1b3e82c77",
  3591. "reference": "51383a1d9d7e93d5c3c76ddc32672de1b3e82c77",
  3592. "shasum": ""
  3593. },
  3594. "require": {
  3595. "php": ">=8.1",
  3596. "psr/container": "^1.1|^2.0",
  3597. "symfony/deprecation-contracts": "^2.5|^3",
  3598. "symfony/service-contracts": "^2.5|^3.0",
  3599. "symfony/var-exporter": "^6.2.10"
  3600. },
  3601. "conflict": {
  3602. "ext-psr": "<1.1|>=2",
  3603. "symfony/config": "<6.1",
  3604. "symfony/finder": "<5.4",
  3605. "symfony/proxy-manager-bridge": "<6.3",
  3606. "symfony/yaml": "<5.4"
  3607. },
  3608. "provide": {
  3609. "psr/container-implementation": "1.1|2.0",
  3610. "symfony/service-implementation": "1.1|2.0|3.0"
  3611. },
  3612. "require-dev": {
  3613. "symfony/config": "^6.1",
  3614. "symfony/expression-language": "^5.4|^6.0",
  3615. "symfony/yaml": "^5.4|^6.0"
  3616. },
  3617. "type": "library",
  3618. "autoload": {
  3619. "psr-4": {
  3620. "Symfony\\Component\\DependencyInjection\\": ""
  3621. },
  3622. "exclude-from-classmap": [
  3623. "/Tests/"
  3624. ]
  3625. },
  3626. "notification-url": "https://packagist.org/downloads/",
  3627. "license": [
  3628. "MIT"
  3629. ],
  3630. "authors": [
  3631. {
  3632. "name": "Fabien Potencier",
  3633. "email": "fabien@symfony.com"
  3634. },
  3635. {
  3636. "name": "Symfony Community",
  3637. "homepage": "https://symfony.com/contributors"
  3638. }
  3639. ],
  3640. "description": "Allows you to standardize and centralize the way objects are constructed in your application",
  3641. "homepage": "https://symfony.com",
  3642. "support": {
  3643. "source": "https://github.com/symfony/dependency-injection/tree/v6.3.10"
  3644. },
  3645. "funding": [
  3646. {
  3647. "url": "https://symfony.com/sponsor",
  3648. "type": "custom"
  3649. },
  3650. {
  3651. "url": "https://github.com/fabpot",
  3652. "type": "github"
  3653. },
  3654. {
  3655. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3656. "type": "tidelift"
  3657. }
  3658. ],
  3659. "time": "2023-12-01T14:25:58+00:00"
  3660. },
  3661. {
  3662. "name": "symfony/deprecation-contracts",
  3663. "version": "v3.4.0",
  3664. "source": {
  3665. "type": "git",
  3666. "url": "https://github.com/symfony/deprecation-contracts.git",
  3667. "reference": "7c3aff79d10325257a001fcf92d991f24fc967cf"
  3668. },
  3669. "dist": {
  3670. "type": "zip",
  3671. "url": "https://api.github.com/repos/symfony/deprecation-contracts/zipball/7c3aff79d10325257a001fcf92d991f24fc967cf",
  3672. "reference": "7c3aff79d10325257a001fcf92d991f24fc967cf",
  3673. "shasum": ""
  3674. },
  3675. "require": {
  3676. "php": ">=8.1"
  3677. },
  3678. "type": "library",
  3679. "extra": {
  3680. "branch-alias": {
  3681. "dev-main": "3.4-dev"
  3682. },
  3683. "thanks": {
  3684. "name": "symfony/contracts",
  3685. "url": "https://github.com/symfony/contracts"
  3686. }
  3687. },
  3688. "autoload": {
  3689. "files": [
  3690. "function.php"
  3691. ]
  3692. },
  3693. "notification-url": "https://packagist.org/downloads/",
  3694. "license": [
  3695. "MIT"
  3696. ],
  3697. "authors": [
  3698. {
  3699. "name": "Nicolas Grekas",
  3700. "email": "p@tchwork.com"
  3701. },
  3702. {
  3703. "name": "Symfony Community",
  3704. "homepage": "https://symfony.com/contributors"
  3705. }
  3706. ],
  3707. "description": "A generic function and convention to trigger deprecation notices",
  3708. "homepage": "https://symfony.com",
  3709. "support": {
  3710. "source": "https://github.com/symfony/deprecation-contracts/tree/v3.4.0"
  3711. },
  3712. "funding": [
  3713. {
  3714. "url": "https://symfony.com/sponsor",
  3715. "type": "custom"
  3716. },
  3717. {
  3718. "url": "https://github.com/fabpot",
  3719. "type": "github"
  3720. },
  3721. {
  3722. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3723. "type": "tidelift"
  3724. }
  3725. ],
  3726. "time": "2023-05-23T14:45:45+00:00"
  3727. },
  3728. {
  3729. "name": "symfony/doctrine-bridge",
  3730. "version": "v6.3.8",
  3731. "source": {
  3732. "type": "git",
  3733. "url": "https://github.com/symfony/doctrine-bridge.git",
  3734. "reference": "8842d289d41320a0f725e996b4e58d84af398a9e"
  3735. },
  3736. "dist": {
  3737. "type": "zip",
  3738. "url": "https://api.github.com/repos/symfony/doctrine-bridge/zipball/8842d289d41320a0f725e996b4e58d84af398a9e",
  3739. "reference": "8842d289d41320a0f725e996b4e58d84af398a9e",
  3740. "shasum": ""
  3741. },
  3742. "require": {
  3743. "doctrine/event-manager": "^1.2|^2",
  3744. "doctrine/persistence": "^2|^3",
  3745. "php": ">=8.1",
  3746. "symfony/deprecation-contracts": "^2.5|^3",
  3747. "symfony/polyfill-ctype": "~1.8",
  3748. "symfony/polyfill-mbstring": "~1.0",
  3749. "symfony/service-contracts": "^2.5|^3"
  3750. },
  3751. "conflict": {
  3752. "doctrine/annotations": "<1.13.1",
  3753. "doctrine/dbal": "<2.13.1",
  3754. "doctrine/lexer": "<1.1",
  3755. "doctrine/orm": "<2.12",
  3756. "symfony/cache": "<5.4",
  3757. "symfony/dependency-injection": "<6.2",
  3758. "symfony/form": "<5.4.21|>=6,<6.2.7",
  3759. "symfony/http-foundation": "<6.3",
  3760. "symfony/http-kernel": "<6.2",
  3761. "symfony/lock": "<6.3",
  3762. "symfony/messenger": "<5.4",
  3763. "symfony/property-info": "<5.4",
  3764. "symfony/security-bundle": "<5.4",
  3765. "symfony/security-core": "<6.0",
  3766. "symfony/validator": "<5.4.25|>=6,<6.2.12|>=6.3,<6.3.1"
  3767. },
  3768. "require-dev": {
  3769. "doctrine/annotations": "^1.13.1|^2",
  3770. "doctrine/collections": "^1.0|^2.0",
  3771. "doctrine/data-fixtures": "^1.1",
  3772. "doctrine/dbal": "^2.13.1|^3|^4",
  3773. "doctrine/orm": "^2.12|^3",
  3774. "psr/log": "^1|^2|^3",
  3775. "symfony/cache": "^5.4|^6.0",
  3776. "symfony/config": "^5.4|^6.0",
  3777. "symfony/dependency-injection": "^6.2",
  3778. "symfony/doctrine-messenger": "^5.4|^6.0",
  3779. "symfony/expression-language": "^5.4|^6.0",
  3780. "symfony/form": "^5.4.21|^6.2.7",
  3781. "symfony/http-kernel": "^6.3",
  3782. "symfony/lock": "^6.3",
  3783. "symfony/messenger": "^5.4|^6.0",
  3784. "symfony/property-access": "^5.4|^6.0",
  3785. "symfony/property-info": "^5.4|^6.0",
  3786. "symfony/proxy-manager-bridge": "^5.4|^6.0",
  3787. "symfony/security-core": "^6.0",
  3788. "symfony/stopwatch": "^5.4|^6.0",
  3789. "symfony/translation": "^5.4|^6.0",
  3790. "symfony/uid": "^5.4|^6.0",
  3791. "symfony/validator": "^5.4.25|~6.2.12|^6.3.1",
  3792. "symfony/var-dumper": "^5.4|^6.0"
  3793. },
  3794. "type": "symfony-bridge",
  3795. "autoload": {
  3796. "psr-4": {
  3797. "Symfony\\Bridge\\Doctrine\\": ""
  3798. },
  3799. "exclude-from-classmap": [
  3800. "/Tests/"
  3801. ]
  3802. },
  3803. "notification-url": "https://packagist.org/downloads/",
  3804. "license": [
  3805. "MIT"
  3806. ],
  3807. "authors": [
  3808. {
  3809. "name": "Fabien Potencier",
  3810. "email": "fabien@symfony.com"
  3811. },
  3812. {
  3813. "name": "Symfony Community",
  3814. "homepage": "https://symfony.com/contributors"
  3815. }
  3816. ],
  3817. "description": "Provides integration for Doctrine with various Symfony components",
  3818. "homepage": "https://symfony.com",
  3819. "support": {
  3820. "source": "https://github.com/symfony/doctrine-bridge/tree/v6.3.8"
  3821. },
  3822. "funding": [
  3823. {
  3824. "url": "https://symfony.com/sponsor",
  3825. "type": "custom"
  3826. },
  3827. {
  3828. "url": "https://github.com/fabpot",
  3829. "type": "github"
  3830. },
  3831. {
  3832. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3833. "type": "tidelift"
  3834. }
  3835. ],
  3836. "time": "2023-10-31T08:07:48+00:00"
  3837. },
  3838. {
  3839. "name": "symfony/dotenv",
  3840. "version": "v6.3.7",
  3841. "source": {
  3842. "type": "git",
  3843. "url": "https://github.com/symfony/dotenv.git",
  3844. "reference": "7dfbe2976f3c1b7cfa8fac2212a050bfa9bd7d9e"
  3845. },
  3846. "dist": {
  3847. "type": "zip",
  3848. "url": "https://api.github.com/repos/symfony/dotenv/zipball/7dfbe2976f3c1b7cfa8fac2212a050bfa9bd7d9e",
  3849. "reference": "7dfbe2976f3c1b7cfa8fac2212a050bfa9bd7d9e",
  3850. "shasum": ""
  3851. },
  3852. "require": {
  3853. "php": ">=8.1"
  3854. },
  3855. "conflict": {
  3856. "symfony/console": "<5.4",
  3857. "symfony/process": "<5.4"
  3858. },
  3859. "require-dev": {
  3860. "symfony/console": "^5.4|^6.0",
  3861. "symfony/process": "^5.4|^6.0"
  3862. },
  3863. "type": "library",
  3864. "autoload": {
  3865. "psr-4": {
  3866. "Symfony\\Component\\Dotenv\\": ""
  3867. },
  3868. "exclude-from-classmap": [
  3869. "/Tests/"
  3870. ]
  3871. },
  3872. "notification-url": "https://packagist.org/downloads/",
  3873. "license": [
  3874. "MIT"
  3875. ],
  3876. "authors": [
  3877. {
  3878. "name": "Fabien Potencier",
  3879. "email": "fabien@symfony.com"
  3880. },
  3881. {
  3882. "name": "Symfony Community",
  3883. "homepage": "https://symfony.com/contributors"
  3884. }
  3885. ],
  3886. "description": "Registers environment variables from a .env file",
  3887. "homepage": "https://symfony.com",
  3888. "keywords": [
  3889. "dotenv",
  3890. "env",
  3891. "environment"
  3892. ],
  3893. "support": {
  3894. "source": "https://github.com/symfony/dotenv/tree/v6.3.7"
  3895. },
  3896. "funding": [
  3897. {
  3898. "url": "https://symfony.com/sponsor",
  3899. "type": "custom"
  3900. },
  3901. {
  3902. "url": "https://github.com/fabpot",
  3903. "type": "github"
  3904. },
  3905. {
  3906. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3907. "type": "tidelift"
  3908. }
  3909. ],
  3910. "time": "2023-10-26T18:15:14+00:00"
  3911. },
  3912. {
  3913. "name": "symfony/error-handler",
  3914. "version": "v6.3.5",
  3915. "source": {
  3916. "type": "git",
  3917. "url": "https://github.com/symfony/error-handler.git",
  3918. "reference": "1f69476b64fb47105c06beef757766c376b548c4"
  3919. },
  3920. "dist": {
  3921. "type": "zip",
  3922. "url": "https://api.github.com/repos/symfony/error-handler/zipball/1f69476b64fb47105c06beef757766c376b548c4",
  3923. "reference": "1f69476b64fb47105c06beef757766c376b548c4",
  3924. "shasum": ""
  3925. },
  3926. "require": {
  3927. "php": ">=8.1",
  3928. "psr/log": "^1|^2|^3",
  3929. "symfony/var-dumper": "^5.4|^6.0"
  3930. },
  3931. "conflict": {
  3932. "symfony/deprecation-contracts": "<2.5"
  3933. },
  3934. "require-dev": {
  3935. "symfony/deprecation-contracts": "^2.5|^3",
  3936. "symfony/http-kernel": "^5.4|^6.0",
  3937. "symfony/serializer": "^5.4|^6.0"
  3938. },
  3939. "bin": [
  3940. "Resources/bin/patch-type-declarations"
  3941. ],
  3942. "type": "library",
  3943. "autoload": {
  3944. "psr-4": {
  3945. "Symfony\\Component\\ErrorHandler\\": ""
  3946. },
  3947. "exclude-from-classmap": [
  3948. "/Tests/"
  3949. ]
  3950. },
  3951. "notification-url": "https://packagist.org/downloads/",
  3952. "license": [
  3953. "MIT"
  3954. ],
  3955. "authors": [
  3956. {
  3957. "name": "Fabien Potencier",
  3958. "email": "fabien@symfony.com"
  3959. },
  3960. {
  3961. "name": "Symfony Community",
  3962. "homepage": "https://symfony.com/contributors"
  3963. }
  3964. ],
  3965. "description": "Provides tools to manage errors and ease debugging PHP code",
  3966. "homepage": "https://symfony.com",
  3967. "support": {
  3968. "source": "https://github.com/symfony/error-handler/tree/v6.3.5"
  3969. },
  3970. "funding": [
  3971. {
  3972. "url": "https://symfony.com/sponsor",
  3973. "type": "custom"
  3974. },
  3975. {
  3976. "url": "https://github.com/fabpot",
  3977. "type": "github"
  3978. },
  3979. {
  3980. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3981. "type": "tidelift"
  3982. }
  3983. ],
  3984. "time": "2023-09-12T06:57:20+00:00"
  3985. },
  3986. {
  3987. "name": "symfony/event-dispatcher",
  3988. "version": "v6.3.2",
  3989. "source": {
  3990. "type": "git",
  3991. "url": "https://github.com/symfony/event-dispatcher.git",
  3992. "reference": "adb01fe097a4ee930db9258a3cc906b5beb5cf2e"
  3993. },
  3994. "dist": {
  3995. "type": "zip",
  3996. "url": "https://api.github.com/repos/symfony/event-dispatcher/zipball/adb01fe097a4ee930db9258a3cc906b5beb5cf2e",
  3997. "reference": "adb01fe097a4ee930db9258a3cc906b5beb5cf2e",
  3998. "shasum": ""
  3999. },
  4000. "require": {
  4001. "php": ">=8.1",
  4002. "symfony/event-dispatcher-contracts": "^2.5|^3"
  4003. },
  4004. "conflict": {
  4005. "symfony/dependency-injection": "<5.4",
  4006. "symfony/service-contracts": "<2.5"
  4007. },
  4008. "provide": {
  4009. "psr/event-dispatcher-implementation": "1.0",
  4010. "symfony/event-dispatcher-implementation": "2.0|3.0"
  4011. },
  4012. "require-dev": {
  4013. "psr/log": "^1|^2|^3",
  4014. "symfony/config": "^5.4|^6.0",
  4015. "symfony/dependency-injection": "^5.4|^6.0",
  4016. "symfony/error-handler": "^5.4|^6.0",
  4017. "symfony/expression-language": "^5.4|^6.0",
  4018. "symfony/http-foundation": "^5.4|^6.0",
  4019. "symfony/service-contracts": "^2.5|^3",
  4020. "symfony/stopwatch": "^5.4|^6.0"
  4021. },
  4022. "type": "library",
  4023. "autoload": {
  4024. "psr-4": {
  4025. "Symfony\\Component\\EventDispatcher\\": ""
  4026. },
  4027. "exclude-from-classmap": [
  4028. "/Tests/"
  4029. ]
  4030. },
  4031. "notification-url": "https://packagist.org/downloads/",
  4032. "license": [
  4033. "MIT"
  4034. ],
  4035. "authors": [
  4036. {
  4037. "name": "Fabien Potencier",
  4038. "email": "fabien@symfony.com"
  4039. },
  4040. {
  4041. "name": "Symfony Community",
  4042. "homepage": "https://symfony.com/contributors"
  4043. }
  4044. ],
  4045. "description": "Provides tools that allow your application components to communicate with each other by dispatching events and listening to them",
  4046. "homepage": "https://symfony.com",
  4047. "support": {
  4048. "source": "https://github.com/symfony/event-dispatcher/tree/v6.3.2"
  4049. },
  4050. "funding": [
  4051. {
  4052. "url": "https://symfony.com/sponsor",
  4053. "type": "custom"
  4054. },
  4055. {
  4056. "url": "https://github.com/fabpot",
  4057. "type": "github"
  4058. },
  4059. {
  4060. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4061. "type": "tidelift"
  4062. }
  4063. ],
  4064. "time": "2023-07-06T06:56:43+00:00"
  4065. },
  4066. {
  4067. "name": "symfony/event-dispatcher-contracts",
  4068. "version": "v3.4.0",
  4069. "source": {
  4070. "type": "git",
  4071. "url": "https://github.com/symfony/event-dispatcher-contracts.git",
  4072. "reference": "a76aed96a42d2b521153fb382d418e30d18b59df"
  4073. },
  4074. "dist": {
  4075. "type": "zip",
  4076. "url": "https://api.github.com/repos/symfony/event-dispatcher-contracts/zipball/a76aed96a42d2b521153fb382d418e30d18b59df",
  4077. "reference": "a76aed96a42d2b521153fb382d418e30d18b59df",
  4078. "shasum": ""
  4079. },
  4080. "require": {
  4081. "php": ">=8.1",
  4082. "psr/event-dispatcher": "^1"
  4083. },
  4084. "type": "library",
  4085. "extra": {
  4086. "branch-alias": {
  4087. "dev-main": "3.4-dev"
  4088. },
  4089. "thanks": {
  4090. "name": "symfony/contracts",
  4091. "url": "https://github.com/symfony/contracts"
  4092. }
  4093. },
  4094. "autoload": {
  4095. "psr-4": {
  4096. "Symfony\\Contracts\\EventDispatcher\\": ""
  4097. }
  4098. },
  4099. "notification-url": "https://packagist.org/downloads/",
  4100. "license": [
  4101. "MIT"
  4102. ],
  4103. "authors": [
  4104. {
  4105. "name": "Nicolas Grekas",
  4106. "email": "p@tchwork.com"
  4107. },
  4108. {
  4109. "name": "Symfony Community",
  4110. "homepage": "https://symfony.com/contributors"
  4111. }
  4112. ],
  4113. "description": "Generic abstractions related to dispatching event",
  4114. "homepage": "https://symfony.com",
  4115. "keywords": [
  4116. "abstractions",
  4117. "contracts",
  4118. "decoupling",
  4119. "interfaces",
  4120. "interoperability",
  4121. "standards"
  4122. ],
  4123. "support": {
  4124. "source": "https://github.com/symfony/event-dispatcher-contracts/tree/v3.4.0"
  4125. },
  4126. "funding": [
  4127. {
  4128. "url": "https://symfony.com/sponsor",
  4129. "type": "custom"
  4130. },
  4131. {
  4132. "url": "https://github.com/fabpot",
  4133. "type": "github"
  4134. },
  4135. {
  4136. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4137. "type": "tidelift"
  4138. }
  4139. ],
  4140. "time": "2023-05-23T14:45:45+00:00"
  4141. },
  4142. {
  4143. "name": "symfony/expression-language",
  4144. "version": "v6.3.0",
  4145. "source": {
  4146. "type": "git",
  4147. "url": "https://github.com/symfony/expression-language.git",
  4148. "reference": "6d560c4c80e7e328708efd923f93ad67e6a0c1c0"
  4149. },
  4150. "dist": {
  4151. "type": "zip",
  4152. "url": "https://api.github.com/repos/symfony/expression-language/zipball/6d560c4c80e7e328708efd923f93ad67e6a0c1c0",
  4153. "reference": "6d560c4c80e7e328708efd923f93ad67e6a0c1c0",
  4154. "shasum": ""
  4155. },
  4156. "require": {
  4157. "php": ">=8.1",
  4158. "symfony/cache": "^5.4|^6.0",
  4159. "symfony/deprecation-contracts": "^2.5|^3",
  4160. "symfony/service-contracts": "^2.5|^3"
  4161. },
  4162. "type": "library",
  4163. "autoload": {
  4164. "psr-4": {
  4165. "Symfony\\Component\\ExpressionLanguage\\": ""
  4166. },
  4167. "exclude-from-classmap": [
  4168. "/Tests/"
  4169. ]
  4170. },
  4171. "notification-url": "https://packagist.org/downloads/",
  4172. "license": [
  4173. "MIT"
  4174. ],
  4175. "authors": [
  4176. {
  4177. "name": "Fabien Potencier",
  4178. "email": "fabien@symfony.com"
  4179. },
  4180. {
  4181. "name": "Symfony Community",
  4182. "homepage": "https://symfony.com/contributors"
  4183. }
  4184. ],
  4185. "description": "Provides an engine that can compile and evaluate expressions",
  4186. "homepage": "https://symfony.com",
  4187. "support": {
  4188. "source": "https://github.com/symfony/expression-language/tree/v6.3.0"
  4189. },
  4190. "funding": [
  4191. {
  4192. "url": "https://symfony.com/sponsor",
  4193. "type": "custom"
  4194. },
  4195. {
  4196. "url": "https://github.com/fabpot",
  4197. "type": "github"
  4198. },
  4199. {
  4200. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4201. "type": "tidelift"
  4202. }
  4203. ],
  4204. "time": "2023-04-28T16:05:33+00:00"
  4205. },
  4206. {
  4207. "name": "symfony/filesystem",
  4208. "version": "v6.3.1",
  4209. "source": {
  4210. "type": "git",
  4211. "url": "https://github.com/symfony/filesystem.git",
  4212. "reference": "edd36776956f2a6fcf577edb5b05eb0e3bdc52ae"
  4213. },
  4214. "dist": {
  4215. "type": "zip",
  4216. "url": "https://api.github.com/repos/symfony/filesystem/zipball/edd36776956f2a6fcf577edb5b05eb0e3bdc52ae",
  4217. "reference": "edd36776956f2a6fcf577edb5b05eb0e3bdc52ae",
  4218. "shasum": ""
  4219. },
  4220. "require": {
  4221. "php": ">=8.1",
  4222. "symfony/polyfill-ctype": "~1.8",
  4223. "symfony/polyfill-mbstring": "~1.8"
  4224. },
  4225. "type": "library",
  4226. "autoload": {
  4227. "psr-4": {
  4228. "Symfony\\Component\\Filesystem\\": ""
  4229. },
  4230. "exclude-from-classmap": [
  4231. "/Tests/"
  4232. ]
  4233. },
  4234. "notification-url": "https://packagist.org/downloads/",
  4235. "license": [
  4236. "MIT"
  4237. ],
  4238. "authors": [
  4239. {
  4240. "name": "Fabien Potencier",
  4241. "email": "fabien@symfony.com"
  4242. },
  4243. {
  4244. "name": "Symfony Community",
  4245. "homepage": "https://symfony.com/contributors"
  4246. }
  4247. ],
  4248. "description": "Provides basic utilities for the filesystem",
  4249. "homepage": "https://symfony.com",
  4250. "support": {
  4251. "source": "https://github.com/symfony/filesystem/tree/v6.3.1"
  4252. },
  4253. "funding": [
  4254. {
  4255. "url": "https://symfony.com/sponsor",
  4256. "type": "custom"
  4257. },
  4258. {
  4259. "url": "https://github.com/fabpot",
  4260. "type": "github"
  4261. },
  4262. {
  4263. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4264. "type": "tidelift"
  4265. }
  4266. ],
  4267. "time": "2023-06-01T08:30:39+00:00"
  4268. },
  4269. {
  4270. "name": "symfony/finder",
  4271. "version": "v6.3.5",
  4272. "source": {
  4273. "type": "git",
  4274. "url": "https://github.com/symfony/finder.git",
  4275. "reference": "a1b31d88c0e998168ca7792f222cbecee47428c4"
  4276. },
  4277. "dist": {
  4278. "type": "zip",
  4279. "url": "https://api.github.com/repos/symfony/finder/zipball/a1b31d88c0e998168ca7792f222cbecee47428c4",
  4280. "reference": "a1b31d88c0e998168ca7792f222cbecee47428c4",
  4281. "shasum": ""
  4282. },
  4283. "require": {
  4284. "php": ">=8.1"
  4285. },
  4286. "require-dev": {
  4287. "symfony/filesystem": "^6.0"
  4288. },
  4289. "type": "library",
  4290. "autoload": {
  4291. "psr-4": {
  4292. "Symfony\\Component\\Finder\\": ""
  4293. },
  4294. "exclude-from-classmap": [
  4295. "/Tests/"
  4296. ]
  4297. },
  4298. "notification-url": "https://packagist.org/downloads/",
  4299. "license": [
  4300. "MIT"
  4301. ],
  4302. "authors": [
  4303. {
  4304. "name": "Fabien Potencier",
  4305. "email": "fabien@symfony.com"
  4306. },
  4307. {
  4308. "name": "Symfony Community",
  4309. "homepage": "https://symfony.com/contributors"
  4310. }
  4311. ],
  4312. "description": "Finds files and directories via an intuitive fluent interface",
  4313. "homepage": "https://symfony.com",
  4314. "support": {
  4315. "source": "https://github.com/symfony/finder/tree/v6.3.5"
  4316. },
  4317. "funding": [
  4318. {
  4319. "url": "https://symfony.com/sponsor",
  4320. "type": "custom"
  4321. },
  4322. {
  4323. "url": "https://github.com/fabpot",
  4324. "type": "github"
  4325. },
  4326. {
  4327. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4328. "type": "tidelift"
  4329. }
  4330. ],
  4331. "time": "2023-09-26T12:56:25+00:00"
  4332. },
  4333. {
  4334. "name": "symfony/flex",
  4335. "version": "v2.4.2",
  4336. "source": {
  4337. "type": "git",
  4338. "url": "https://github.com/symfony/flex.git",
  4339. "reference": "67ee785f1aedada76461de7a7ec10cd7f8ff8d36"
  4340. },
  4341. "dist": {
  4342. "type": "zip",
  4343. "url": "https://api.github.com/repos/symfony/flex/zipball/67ee785f1aedada76461de7a7ec10cd7f8ff8d36",
  4344. "reference": "67ee785f1aedada76461de7a7ec10cd7f8ff8d36",
  4345. "shasum": ""
  4346. },
  4347. "require": {
  4348. "composer-plugin-api": "^2.1",
  4349. "php": ">=8.0"
  4350. },
  4351. "require-dev": {
  4352. "composer/composer": "^2.1",
  4353. "symfony/dotenv": "^5.4|^6.0",
  4354. "symfony/filesystem": "^5.4|^6.0",
  4355. "symfony/phpunit-bridge": "^5.4|^6.0",
  4356. "symfony/process": "^5.4|^6.0"
  4357. },
  4358. "type": "composer-plugin",
  4359. "extra": {
  4360. "class": "Symfony\\Flex\\Flex"
  4361. },
  4362. "autoload": {
  4363. "psr-4": {
  4364. "Symfony\\Flex\\": "src"
  4365. }
  4366. },
  4367. "notification-url": "https://packagist.org/downloads/",
  4368. "license": [
  4369. "MIT"
  4370. ],
  4371. "authors": [
  4372. {
  4373. "name": "Fabien Potencier",
  4374. "email": "fabien.potencier@gmail.com"
  4375. }
  4376. ],
  4377. "description": "Composer plugin for Symfony",
  4378. "support": {
  4379. "issues": "https://github.com/symfony/flex/issues",
  4380. "source": "https://github.com/symfony/flex/tree/v2.4.2"
  4381. },
  4382. "funding": [
  4383. {
  4384. "url": "https://symfony.com/sponsor",
  4385. "type": "custom"
  4386. },
  4387. {
  4388. "url": "https://github.com/fabpot",
  4389. "type": "github"
  4390. },
  4391. {
  4392. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4393. "type": "tidelift"
  4394. }
  4395. ],
  4396. "time": "2023-12-05T14:09:35+00:00"
  4397. },
  4398. {
  4399. "name": "symfony/form",
  4400. "version": "v6.3.10",
  4401. "source": {
  4402. "type": "git",
  4403. "url": "https://github.com/symfony/form.git",
  4404. "reference": "5afc7334b9d60dd0799612faf3d103b25bc60ae4"
  4405. },
  4406. "dist": {
  4407. "type": "zip",
  4408. "url": "https://api.github.com/repos/symfony/form/zipball/5afc7334b9d60dd0799612faf3d103b25bc60ae4",
  4409. "reference": "5afc7334b9d60dd0799612faf3d103b25bc60ae4",
  4410. "shasum": ""
  4411. },
  4412. "require": {
  4413. "php": ">=8.1",
  4414. "symfony/deprecation-contracts": "^2.5|^3",
  4415. "symfony/event-dispatcher": "^5.4|^6.0",
  4416. "symfony/options-resolver": "^5.4|^6.0",
  4417. "symfony/polyfill-ctype": "~1.8",
  4418. "symfony/polyfill-intl-icu": "^1.21",
  4419. "symfony/polyfill-mbstring": "~1.0",
  4420. "symfony/property-access": "^5.4|^6.0",
  4421. "symfony/service-contracts": "^2.5|^3"
  4422. },
  4423. "conflict": {
  4424. "symfony/console": "<5.4",
  4425. "symfony/dependency-injection": "<5.4",
  4426. "symfony/doctrine-bridge": "<5.4.21|>=6,<6.2.7",
  4427. "symfony/error-handler": "<5.4",
  4428. "symfony/framework-bundle": "<5.4",
  4429. "symfony/http-kernel": "<5.4",
  4430. "symfony/translation": "<5.4",
  4431. "symfony/translation-contracts": "<2.5",
  4432. "symfony/twig-bridge": "<6.3"
  4433. },
  4434. "require-dev": {
  4435. "doctrine/collections": "^1.0|^2.0",
  4436. "symfony/config": "^5.4|^6.0",
  4437. "symfony/console": "^5.4|^6.0",
  4438. "symfony/dependency-injection": "^5.4|^6.0",
  4439. "symfony/expression-language": "^5.4|^6.0",
  4440. "symfony/html-sanitizer": "^6.1",
  4441. "symfony/http-foundation": "^5.4|^6.0",
  4442. "symfony/http-kernel": "^5.4|^6.0",
  4443. "symfony/intl": "^5.4|^6.0",
  4444. "symfony/security-core": "^6.2",
  4445. "symfony/security-csrf": "^5.4|^6.0",
  4446. "symfony/translation": "^5.4|^6.0",
  4447. "symfony/uid": "^5.4|^6.0",
  4448. "symfony/validator": "^5.4|^6.0",
  4449. "symfony/var-dumper": "^5.4|^6.0"
  4450. },
  4451. "type": "library",
  4452. "autoload": {
  4453. "psr-4": {
  4454. "Symfony\\Component\\Form\\": ""
  4455. },
  4456. "exclude-from-classmap": [
  4457. "/Tests/"
  4458. ]
  4459. },
  4460. "notification-url": "https://packagist.org/downloads/",
  4461. "license": [
  4462. "MIT"
  4463. ],
  4464. "authors": [
  4465. {
  4466. "name": "Fabien Potencier",
  4467. "email": "fabien@symfony.com"
  4468. },
  4469. {
  4470. "name": "Symfony Community",
  4471. "homepage": "https://symfony.com/contributors"
  4472. }
  4473. ],
  4474. "description": "Allows to easily create, process and reuse HTML forms",
  4475. "homepage": "https://symfony.com",
  4476. "support": {
  4477. "source": "https://github.com/symfony/form/tree/v6.3.10"
  4478. },
  4479. "funding": [
  4480. {
  4481. "url": "https://symfony.com/sponsor",
  4482. "type": "custom"
  4483. },
  4484. {
  4485. "url": "https://github.com/fabpot",
  4486. "type": "github"
  4487. },
  4488. {
  4489. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4490. "type": "tidelift"
  4491. }
  4492. ],
  4493. "time": "2023-11-30T11:08:22+00:00"
  4494. },
  4495. {
  4496. "name": "symfony/framework-bundle",
  4497. "version": "v6.3.9",
  4498. "source": {
  4499. "type": "git",
  4500. "url": "https://github.com/symfony/framework-bundle.git",
  4501. "reference": "f83d20092e98c3ae8b5874b8f0787546c5c61cda"
  4502. },
  4503. "dist": {
  4504. "type": "zip",
  4505. "url": "https://api.github.com/repos/symfony/framework-bundle/zipball/f83d20092e98c3ae8b5874b8f0787546c5c61cda",
  4506. "reference": "f83d20092e98c3ae8b5874b8f0787546c5c61cda",
  4507. "shasum": ""
  4508. },
  4509. "require": {
  4510. "composer-runtime-api": ">=2.1",
  4511. "ext-xml": "*",
  4512. "php": ">=8.1",
  4513. "symfony/cache": "^5.4|^6.0",
  4514. "symfony/config": "^6.1",
  4515. "symfony/dependency-injection": "^6.3.1",
  4516. "symfony/deprecation-contracts": "^2.5|^3",
  4517. "symfony/error-handler": "^6.1",
  4518. "symfony/event-dispatcher": "^5.4|^6.0",
  4519. "symfony/filesystem": "^5.4|^6.0",
  4520. "symfony/finder": "^5.4|^6.0",
  4521. "symfony/http-foundation": "^6.3",
  4522. "symfony/http-kernel": "^6.3",
  4523. "symfony/polyfill-mbstring": "~1.0",
  4524. "symfony/routing": "^5.4|^6.0"
  4525. },
  4526. "conflict": {
  4527. "doctrine/annotations": "<1.13.1",
  4528. "doctrine/persistence": "<1.3",
  4529. "phpdocumentor/reflection-docblock": "<3.2.2",
  4530. "phpdocumentor/type-resolver": "<1.4.0",
  4531. "symfony/asset": "<5.4",
  4532. "symfony/clock": "<6.3",
  4533. "symfony/console": "<5.4",
  4534. "symfony/dom-crawler": "<6.3",
  4535. "symfony/dotenv": "<5.4",
  4536. "symfony/form": "<5.4",
  4537. "symfony/http-client": "<6.3",
  4538. "symfony/lock": "<5.4",
  4539. "symfony/mailer": "<5.4",
  4540. "symfony/messenger": "<6.3",
  4541. "symfony/mime": "<6.2",
  4542. "symfony/property-access": "<5.4",
  4543. "symfony/property-info": "<5.4",
  4544. "symfony/security-core": "<5.4",
  4545. "symfony/security-csrf": "<5.4",
  4546. "symfony/serializer": "<6.3",
  4547. "symfony/stopwatch": "<5.4",
  4548. "symfony/translation": "<6.2.8",
  4549. "symfony/twig-bridge": "<5.4",
  4550. "symfony/twig-bundle": "<5.4",
  4551. "symfony/validator": "<6.3",
  4552. "symfony/web-profiler-bundle": "<5.4",
  4553. "symfony/workflow": "<5.4"
  4554. },
  4555. "require-dev": {
  4556. "doctrine/annotations": "^1.13.1|^2",
  4557. "doctrine/persistence": "^1.3|^2|^3",
  4558. "phpdocumentor/reflection-docblock": "^3.0|^4.0|^5.0",
  4559. "symfony/asset": "^5.4|^6.0",
  4560. "symfony/asset-mapper": "^6.3",
  4561. "symfony/browser-kit": "^5.4|^6.0",
  4562. "symfony/clock": "^6.2",
  4563. "symfony/console": "^5.4.9|^6.0.9",
  4564. "symfony/css-selector": "^5.4|^6.0",
  4565. "symfony/dom-crawler": "^6.3",
  4566. "symfony/dotenv": "^5.4|^6.0",
  4567. "symfony/expression-language": "^5.4|^6.0",
  4568. "symfony/form": "^5.4|^6.0",
  4569. "symfony/html-sanitizer": "^6.1",
  4570. "symfony/http-client": "^6.3",
  4571. "symfony/lock": "^5.4|^6.0",
  4572. "symfony/mailer": "^5.4|^6.0",
  4573. "symfony/messenger": "^6.3",
  4574. "symfony/mime": "^6.2",
  4575. "symfony/notifier": "^5.4|^6.0",
  4576. "symfony/polyfill-intl-icu": "~1.0",
  4577. "symfony/process": "^5.4|^6.0",
  4578. "symfony/property-info": "^5.4|^6.0",
  4579. "symfony/rate-limiter": "^5.4|^6.0",
  4580. "symfony/scheduler": "^6.3",
  4581. "symfony/security-bundle": "^5.4|^6.0",
  4582. "symfony/semaphore": "^5.4|^6.0",
  4583. "symfony/serializer": "^6.3",
  4584. "symfony/stopwatch": "^5.4|^6.0",
  4585. "symfony/string": "^5.4|^6.0",
  4586. "symfony/translation": "^6.2.8",
  4587. "symfony/twig-bundle": "^5.4|^6.0",
  4588. "symfony/uid": "^5.4|^6.0",
  4589. "symfony/validator": "^6.3",
  4590. "symfony/web-link": "^5.4|^6.0",
  4591. "symfony/workflow": "^5.4|^6.0",
  4592. "symfony/yaml": "^5.4|^6.0",
  4593. "twig/twig": "^2.10|^3.0"
  4594. },
  4595. "type": "symfony-bundle",
  4596. "autoload": {
  4597. "psr-4": {
  4598. "Symfony\\Bundle\\FrameworkBundle\\": ""
  4599. },
  4600. "exclude-from-classmap": [
  4601. "/Tests/"
  4602. ]
  4603. },
  4604. "notification-url": "https://packagist.org/downloads/",
  4605. "license": [
  4606. "MIT"
  4607. ],
  4608. "authors": [
  4609. {
  4610. "name": "Fabien Potencier",
  4611. "email": "fabien@symfony.com"
  4612. },
  4613. {
  4614. "name": "Symfony Community",
  4615. "homepage": "https://symfony.com/contributors"
  4616. }
  4617. ],
  4618. "description": "Provides a tight integration between Symfony components and the Symfony full-stack framework",
  4619. "homepage": "https://symfony.com",
  4620. "support": {
  4621. "source": "https://github.com/symfony/framework-bundle/tree/v6.3.9"
  4622. },
  4623. "funding": [
  4624. {
  4625. "url": "https://symfony.com/sponsor",
  4626. "type": "custom"
  4627. },
  4628. {
  4629. "url": "https://github.com/fabpot",
  4630. "type": "github"
  4631. },
  4632. {
  4633. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4634. "type": "tidelift"
  4635. }
  4636. ],
  4637. "time": "2023-11-24T10:25:33+00:00"
  4638. },
  4639. {
  4640. "name": "symfony/html-sanitizer",
  4641. "version": "v6.3.7",
  4642. "source": {
  4643. "type": "git",
  4644. "url": "https://github.com/symfony/html-sanitizer.git",
  4645. "reference": "45e5a24b63d394fa6472c595df448aecfd1e1ea5"
  4646. },
  4647. "dist": {
  4648. "type": "zip",
  4649. "url": "https://api.github.com/repos/symfony/html-sanitizer/zipball/45e5a24b63d394fa6472c595df448aecfd1e1ea5",
  4650. "reference": "45e5a24b63d394fa6472c595df448aecfd1e1ea5",
  4651. "shasum": ""
  4652. },
  4653. "require": {
  4654. "ext-dom": "*",
  4655. "league/uri": "^6.5|^7.0",
  4656. "masterminds/html5": "^2.7.2",
  4657. "php": ">=8.1"
  4658. },
  4659. "type": "library",
  4660. "autoload": {
  4661. "psr-4": {
  4662. "Symfony\\Component\\HtmlSanitizer\\": ""
  4663. },
  4664. "exclude-from-classmap": [
  4665. "/Tests/"
  4666. ]
  4667. },
  4668. "notification-url": "https://packagist.org/downloads/",
  4669. "license": [
  4670. "MIT"
  4671. ],
  4672. "authors": [
  4673. {
  4674. "name": "Titouan Galopin",
  4675. "email": "galopintitouan@gmail.com"
  4676. },
  4677. {
  4678. "name": "Symfony Community",
  4679. "homepage": "https://symfony.com/contributors"
  4680. }
  4681. ],
  4682. "description": "Provides an object-oriented API to sanitize untrusted HTML input for safe insertion into a document's DOM.",
  4683. "homepage": "https://symfony.com",
  4684. "keywords": [
  4685. "Purifier",
  4686. "html",
  4687. "sanitizer"
  4688. ],
  4689. "support": {
  4690. "source": "https://github.com/symfony/html-sanitizer/tree/v6.3.7"
  4691. },
  4692. "funding": [
  4693. {
  4694. "url": "https://symfony.com/sponsor",
  4695. "type": "custom"
  4696. },
  4697. {
  4698. "url": "https://github.com/fabpot",
  4699. "type": "github"
  4700. },
  4701. {
  4702. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4703. "type": "tidelift"
  4704. }
  4705. ],
  4706. "time": "2023-10-27T13:27:27+00:00"
  4707. },
  4708. {
  4709. "name": "symfony/http-client",
  4710. "version": "v6.3.8",
  4711. "source": {
  4712. "type": "git",
  4713. "url": "https://github.com/symfony/http-client.git",
  4714. "reference": "0314e2d49939a9831929d6fc81c01c6df137fd0a"
  4715. },
  4716. "dist": {
  4717. "type": "zip",
  4718. "url": "https://api.github.com/repos/symfony/http-client/zipball/0314e2d49939a9831929d6fc81c01c6df137fd0a",
  4719. "reference": "0314e2d49939a9831929d6fc81c01c6df137fd0a",
  4720. "shasum": ""
  4721. },
  4722. "require": {
  4723. "php": ">=8.1",
  4724. "psr/log": "^1|^2|^3",
  4725. "symfony/deprecation-contracts": "^2.5|^3",
  4726. "symfony/http-client-contracts": "^3",
  4727. "symfony/service-contracts": "^2.5|^3"
  4728. },
  4729. "conflict": {
  4730. "php-http/discovery": "<1.15",
  4731. "symfony/http-foundation": "<6.3"
  4732. },
  4733. "provide": {
  4734. "php-http/async-client-implementation": "*",
  4735. "php-http/client-implementation": "*",
  4736. "psr/http-client-implementation": "1.0",
  4737. "symfony/http-client-implementation": "3.0"
  4738. },
  4739. "require-dev": {
  4740. "amphp/amp": "^2.5",
  4741. "amphp/http-client": "^4.2.1",
  4742. "amphp/http-tunnel": "^1.0",
  4743. "amphp/socket": "^1.1",
  4744. "guzzlehttp/promises": "^1.4",
  4745. "nyholm/psr7": "^1.0",
  4746. "php-http/httplug": "^1.0|^2.0",
  4747. "psr/http-client": "^1.0",
  4748. "symfony/dependency-injection": "^5.4|^6.0",
  4749. "symfony/http-kernel": "^5.4|^6.0",
  4750. "symfony/process": "^5.4|^6.0",
  4751. "symfony/stopwatch": "^5.4|^6.0"
  4752. },
  4753. "type": "library",
  4754. "autoload": {
  4755. "psr-4": {
  4756. "Symfony\\Component\\HttpClient\\": ""
  4757. },
  4758. "exclude-from-classmap": [
  4759. "/Tests/"
  4760. ]
  4761. },
  4762. "notification-url": "https://packagist.org/downloads/",
  4763. "license": [
  4764. "MIT"
  4765. ],
  4766. "authors": [
  4767. {
  4768. "name": "Nicolas Grekas",
  4769. "email": "p@tchwork.com"
  4770. },
  4771. {
  4772. "name": "Symfony Community",
  4773. "homepage": "https://symfony.com/contributors"
  4774. }
  4775. ],
  4776. "description": "Provides powerful methods to fetch HTTP resources synchronously or asynchronously",
  4777. "homepage": "https://symfony.com",
  4778. "keywords": [
  4779. "http"
  4780. ],
  4781. "support": {
  4782. "source": "https://github.com/symfony/http-client/tree/v6.3.8"
  4783. },
  4784. "funding": [
  4785. {
  4786. "url": "https://symfony.com/sponsor",
  4787. "type": "custom"
  4788. },
  4789. {
  4790. "url": "https://github.com/fabpot",
  4791. "type": "github"
  4792. },
  4793. {
  4794. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4795. "type": "tidelift"
  4796. }
  4797. ],
  4798. "time": "2023-11-06T18:31:59+00:00"
  4799. },
  4800. {
  4801. "name": "symfony/http-client-contracts",
  4802. "version": "v3.4.0",
  4803. "source": {
  4804. "type": "git",
  4805. "url": "https://github.com/symfony/http-client-contracts.git",
  4806. "reference": "1ee70e699b41909c209a0c930f11034b93578654"
  4807. },
  4808. "dist": {
  4809. "type": "zip",
  4810. "url": "https://api.github.com/repos/symfony/http-client-contracts/zipball/1ee70e699b41909c209a0c930f11034b93578654",
  4811. "reference": "1ee70e699b41909c209a0c930f11034b93578654",
  4812. "shasum": ""
  4813. },
  4814. "require": {
  4815. "php": ">=8.1"
  4816. },
  4817. "type": "library",
  4818. "extra": {
  4819. "branch-alias": {
  4820. "dev-main": "3.4-dev"
  4821. },
  4822. "thanks": {
  4823. "name": "symfony/contracts",
  4824. "url": "https://github.com/symfony/contracts"
  4825. }
  4826. },
  4827. "autoload": {
  4828. "psr-4": {
  4829. "Symfony\\Contracts\\HttpClient\\": ""
  4830. },
  4831. "exclude-from-classmap": [
  4832. "/Test/"
  4833. ]
  4834. },
  4835. "notification-url": "https://packagist.org/downloads/",
  4836. "license": [
  4837. "MIT"
  4838. ],
  4839. "authors": [
  4840. {
  4841. "name": "Nicolas Grekas",
  4842. "email": "p@tchwork.com"
  4843. },
  4844. {
  4845. "name": "Symfony Community",
  4846. "homepage": "https://symfony.com/contributors"
  4847. }
  4848. ],
  4849. "description": "Generic abstractions related to HTTP clients",
  4850. "homepage": "https://symfony.com",
  4851. "keywords": [
  4852. "abstractions",
  4853. "contracts",
  4854. "decoupling",
  4855. "interfaces",
  4856. "interoperability",
  4857. "standards"
  4858. ],
  4859. "support": {
  4860. "source": "https://github.com/symfony/http-client-contracts/tree/v3.4.0"
  4861. },
  4862. "funding": [
  4863. {
  4864. "url": "https://symfony.com/sponsor",
  4865. "type": "custom"
  4866. },
  4867. {
  4868. "url": "https://github.com/fabpot",
  4869. "type": "github"
  4870. },
  4871. {
  4872. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4873. "type": "tidelift"
  4874. }
  4875. ],
  4876. "time": "2023-07-30T20:28:31+00:00"
  4877. },
  4878. {
  4879. "name": "symfony/http-foundation",
  4880. "version": "v6.3.9",
  4881. "source": {
  4882. "type": "git",
  4883. "url": "https://github.com/symfony/http-foundation.git",
  4884. "reference": "49a04fd3a21edc9ce503ab78e9f342805fefe780"
  4885. },
  4886. "dist": {
  4887. "type": "zip",
  4888. "url": "https://api.github.com/repos/symfony/http-foundation/zipball/49a04fd3a21edc9ce503ab78e9f342805fefe780",
  4889. "reference": "49a04fd3a21edc9ce503ab78e9f342805fefe780",
  4890. "shasum": ""
  4891. },
  4892. "require": {
  4893. "php": ">=8.1",
  4894. "symfony/deprecation-contracts": "^2.5|^3",
  4895. "symfony/polyfill-mbstring": "~1.1",
  4896. "symfony/polyfill-php83": "^1.27"
  4897. },
  4898. "conflict": {
  4899. "symfony/cache": "<6.3"
  4900. },
  4901. "require-dev": {
  4902. "doctrine/dbal": "^2.13.1|^3|^4",
  4903. "predis/predis": "^1.1|^2.0",
  4904. "symfony/cache": "^6.3",
  4905. "symfony/dependency-injection": "^5.4|^6.0",
  4906. "symfony/expression-language": "^5.4|^6.0",
  4907. "symfony/http-kernel": "^5.4.12|^6.0.12|^6.1.4",
  4908. "symfony/mime": "^5.4|^6.0",
  4909. "symfony/rate-limiter": "^5.2|^6.0"
  4910. },
  4911. "type": "library",
  4912. "autoload": {
  4913. "psr-4": {
  4914. "Symfony\\Component\\HttpFoundation\\": ""
  4915. },
  4916. "exclude-from-classmap": [
  4917. "/Tests/"
  4918. ]
  4919. },
  4920. "notification-url": "https://packagist.org/downloads/",
  4921. "license": [
  4922. "MIT"
  4923. ],
  4924. "authors": [
  4925. {
  4926. "name": "Fabien Potencier",
  4927. "email": "fabien@symfony.com"
  4928. },
  4929. {
  4930. "name": "Symfony Community",
  4931. "homepage": "https://symfony.com/contributors"
  4932. }
  4933. ],
  4934. "description": "Defines an object-oriented layer for the HTTP specification",
  4935. "homepage": "https://symfony.com",
  4936. "support": {
  4937. "source": "https://github.com/symfony/http-foundation/tree/v6.3.9"
  4938. },
  4939. "funding": [
  4940. {
  4941. "url": "https://symfony.com/sponsor",
  4942. "type": "custom"
  4943. },
  4944. {
  4945. "url": "https://github.com/fabpot",
  4946. "type": "github"
  4947. },
  4948. {
  4949. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4950. "type": "tidelift"
  4951. }
  4952. ],
  4953. "time": "2023-11-20T16:36:29+00:00"
  4954. },
  4955. {
  4956. "name": "symfony/http-kernel",
  4957. "version": "v6.3.10",
  4958. "source": {
  4959. "type": "git",
  4960. "url": "https://github.com/symfony/http-kernel.git",
  4961. "reference": "8d8e7aa60593fd0a2e3c1cea08cc687314841b61"
  4962. },
  4963. "dist": {
  4964. "type": "zip",
  4965. "url": "https://api.github.com/repos/symfony/http-kernel/zipball/8d8e7aa60593fd0a2e3c1cea08cc687314841b61",
  4966. "reference": "8d8e7aa60593fd0a2e3c1cea08cc687314841b61",
  4967. "shasum": ""
  4968. },
  4969. "require": {
  4970. "php": ">=8.1",
  4971. "psr/log": "^1|^2|^3",
  4972. "symfony/deprecation-contracts": "^2.5|^3",
  4973. "symfony/error-handler": "^6.3",
  4974. "symfony/event-dispatcher": "^5.4|^6.0",
  4975. "symfony/http-foundation": "^6.3.4",
  4976. "symfony/polyfill-ctype": "^1.8"
  4977. },
  4978. "conflict": {
  4979. "symfony/browser-kit": "<5.4",
  4980. "symfony/cache": "<5.4",
  4981. "symfony/config": "<6.1",
  4982. "symfony/console": "<5.4",
  4983. "symfony/dependency-injection": "<6.3.4",
  4984. "symfony/doctrine-bridge": "<5.4",
  4985. "symfony/form": "<5.4",
  4986. "symfony/http-client": "<5.4",
  4987. "symfony/http-client-contracts": "<2.5",
  4988. "symfony/mailer": "<5.4",
  4989. "symfony/messenger": "<5.4",
  4990. "symfony/translation": "<5.4",
  4991. "symfony/translation-contracts": "<2.5",
  4992. "symfony/twig-bridge": "<5.4",
  4993. "symfony/validator": "<5.4",
  4994. "symfony/var-dumper": "<6.3",
  4995. "twig/twig": "<2.13"
  4996. },
  4997. "provide": {
  4998. "psr/log-implementation": "1.0|2.0|3.0"
  4999. },
  5000. "require-dev": {
  5001. "psr/cache": "^1.0|^2.0|^3.0",
  5002. "symfony/browser-kit": "^5.4|^6.0",
  5003. "symfony/clock": "^6.2",
  5004. "symfony/config": "^6.1",
  5005. "symfony/console": "^5.4|^6.0",
  5006. "symfony/css-selector": "^5.4|^6.0",
  5007. "symfony/dependency-injection": "^6.3.4",
  5008. "symfony/dom-crawler": "^5.4|^6.0",
  5009. "symfony/expression-language": "^5.4|^6.0",
  5010. "symfony/finder": "^5.4|^6.0",
  5011. "symfony/http-client-contracts": "^2.5|^3",
  5012. "symfony/process": "^5.4|^6.0",
  5013. "symfony/property-access": "^5.4.5|^6.0.5",
  5014. "symfony/routing": "^5.4|^6.0",
  5015. "symfony/serializer": "^6.3",
  5016. "symfony/stopwatch": "^5.4|^6.0",
  5017. "symfony/translation": "^5.4|^6.0",
  5018. "symfony/translation-contracts": "^2.5|^3",
  5019. "symfony/uid": "^5.4|^6.0",
  5020. "symfony/validator": "^6.3",
  5021. "symfony/var-exporter": "^6.2",
  5022. "twig/twig": "^2.13|^3.0.4"
  5023. },
  5024. "type": "library",
  5025. "autoload": {
  5026. "psr-4": {
  5027. "Symfony\\Component\\HttpKernel\\": ""
  5028. },
  5029. "exclude-from-classmap": [
  5030. "/Tests/"
  5031. ]
  5032. },
  5033. "notification-url": "https://packagist.org/downloads/",
  5034. "license": [
  5035. "MIT"
  5036. ],
  5037. "authors": [
  5038. {
  5039. "name": "Fabien Potencier",
  5040. "email": "fabien@symfony.com"
  5041. },
  5042. {
  5043. "name": "Symfony Community",
  5044. "homepage": "https://symfony.com/contributors"
  5045. }
  5046. ],
  5047. "description": "Provides a structured process for converting a Request into a Response",
  5048. "homepage": "https://symfony.com",
  5049. "support": {
  5050. "source": "https://github.com/symfony/http-kernel/tree/v6.3.10"
  5051. },
  5052. "funding": [
  5053. {
  5054. "url": "https://symfony.com/sponsor",
  5055. "type": "custom"
  5056. },
  5057. {
  5058. "url": "https://github.com/fabpot",
  5059. "type": "github"
  5060. },
  5061. {
  5062. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5063. "type": "tidelift"
  5064. }
  5065. ],
  5066. "time": "2023-12-01T16:57:27+00:00"
  5067. },
  5068. {
  5069. "name": "symfony/mailer",
  5070. "version": "v6.3.5",
  5071. "source": {
  5072. "type": "git",
  5073. "url": "https://github.com/symfony/mailer.git",
  5074. "reference": "d89611a7830d51b5e118bca38e390dea92f9ea06"
  5075. },
  5076. "dist": {
  5077. "type": "zip",
  5078. "url": "https://api.github.com/repos/symfony/mailer/zipball/d89611a7830d51b5e118bca38e390dea92f9ea06",
  5079. "reference": "d89611a7830d51b5e118bca38e390dea92f9ea06",
  5080. "shasum": ""
  5081. },
  5082. "require": {
  5083. "egulias/email-validator": "^2.1.10|^3|^4",
  5084. "php": ">=8.1",
  5085. "psr/event-dispatcher": "^1",
  5086. "psr/log": "^1|^2|^3",
  5087. "symfony/event-dispatcher": "^5.4|^6.0",
  5088. "symfony/mime": "^6.2",
  5089. "symfony/service-contracts": "^2.5|^3"
  5090. },
  5091. "conflict": {
  5092. "symfony/http-client-contracts": "<2.5",
  5093. "symfony/http-kernel": "<5.4",
  5094. "symfony/messenger": "<6.2",
  5095. "symfony/mime": "<6.2",
  5096. "symfony/twig-bridge": "<6.2.1"
  5097. },
  5098. "require-dev": {
  5099. "symfony/console": "^5.4|^6.0",
  5100. "symfony/http-client": "^5.4|^6.0",
  5101. "symfony/messenger": "^6.2",
  5102. "symfony/twig-bridge": "^6.2"
  5103. },
  5104. "type": "library",
  5105. "autoload": {
  5106. "psr-4": {
  5107. "Symfony\\Component\\Mailer\\": ""
  5108. },
  5109. "exclude-from-classmap": [
  5110. "/Tests/"
  5111. ]
  5112. },
  5113. "notification-url": "https://packagist.org/downloads/",
  5114. "license": [
  5115. "MIT"
  5116. ],
  5117. "authors": [
  5118. {
  5119. "name": "Fabien Potencier",
  5120. "email": "fabien@symfony.com"
  5121. },
  5122. {
  5123. "name": "Symfony Community",
  5124. "homepage": "https://symfony.com/contributors"
  5125. }
  5126. ],
  5127. "description": "Helps sending emails",
  5128. "homepage": "https://symfony.com",
  5129. "support": {
  5130. "source": "https://github.com/symfony/mailer/tree/v6.3.5"
  5131. },
  5132. "funding": [
  5133. {
  5134. "url": "https://symfony.com/sponsor",
  5135. "type": "custom"
  5136. },
  5137. {
  5138. "url": "https://github.com/fabpot",
  5139. "type": "github"
  5140. },
  5141. {
  5142. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5143. "type": "tidelift"
  5144. }
  5145. ],
  5146. "time": "2023-09-06T09:47:15+00:00"
  5147. },
  5148. {
  5149. "name": "symfony/mime",
  5150. "version": "v6.3.5",
  5151. "source": {
  5152. "type": "git",
  5153. "url": "https://github.com/symfony/mime.git",
  5154. "reference": "d5179eedf1cb2946dbd760475ebf05c251ef6a6e"
  5155. },
  5156. "dist": {
  5157. "type": "zip",
  5158. "url": "https://api.github.com/repos/symfony/mime/zipball/d5179eedf1cb2946dbd760475ebf05c251ef6a6e",
  5159. "reference": "d5179eedf1cb2946dbd760475ebf05c251ef6a6e",
  5160. "shasum": ""
  5161. },
  5162. "require": {
  5163. "php": ">=8.1",
  5164. "symfony/deprecation-contracts": "^2.5|^3",
  5165. "symfony/polyfill-intl-idn": "^1.10",
  5166. "symfony/polyfill-mbstring": "^1.0"
  5167. },
  5168. "conflict": {
  5169. "egulias/email-validator": "~3.0.0",
  5170. "phpdocumentor/reflection-docblock": "<3.2.2",
  5171. "phpdocumentor/type-resolver": "<1.4.0",
  5172. "symfony/mailer": "<5.4",
  5173. "symfony/serializer": "<6.2.13|>=6.3,<6.3.2"
  5174. },
  5175. "require-dev": {
  5176. "egulias/email-validator": "^2.1.10|^3.1|^4",
  5177. "league/html-to-markdown": "^5.0",
  5178. "phpdocumentor/reflection-docblock": "^3.0|^4.0|^5.0",
  5179. "symfony/dependency-injection": "^5.4|^6.0",
  5180. "symfony/property-access": "^5.4|^6.0",
  5181. "symfony/property-info": "^5.4|^6.0",
  5182. "symfony/serializer": "~6.2.13|^6.3.2"
  5183. },
  5184. "type": "library",
  5185. "autoload": {
  5186. "psr-4": {
  5187. "Symfony\\Component\\Mime\\": ""
  5188. },
  5189. "exclude-from-classmap": [
  5190. "/Tests/"
  5191. ]
  5192. },
  5193. "notification-url": "https://packagist.org/downloads/",
  5194. "license": [
  5195. "MIT"
  5196. ],
  5197. "authors": [
  5198. {
  5199. "name": "Fabien Potencier",
  5200. "email": "fabien@symfony.com"
  5201. },
  5202. {
  5203. "name": "Symfony Community",
  5204. "homepage": "https://symfony.com/contributors"
  5205. }
  5206. ],
  5207. "description": "Allows manipulating MIME messages",
  5208. "homepage": "https://symfony.com",
  5209. "keywords": [
  5210. "mime",
  5211. "mime-type"
  5212. ],
  5213. "support": {
  5214. "source": "https://github.com/symfony/mime/tree/v6.3.5"
  5215. },
  5216. "funding": [
  5217. {
  5218. "url": "https://symfony.com/sponsor",
  5219. "type": "custom"
  5220. },
  5221. {
  5222. "url": "https://github.com/fabpot",
  5223. "type": "github"
  5224. },
  5225. {
  5226. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5227. "type": "tidelift"
  5228. }
  5229. ],
  5230. "time": "2023-09-29T06:59:36+00:00"
  5231. },
  5232. {
  5233. "name": "symfony/monolog-bridge",
  5234. "version": "v6.3.8",
  5235. "source": {
  5236. "type": "git",
  5237. "url": "https://github.com/symfony/monolog-bridge.git",
  5238. "reference": "2bbfc8bd9d6f966b69eda20c66762580a0410c78"
  5239. },
  5240. "dist": {
  5241. "type": "zip",
  5242. "url": "https://api.github.com/repos/symfony/monolog-bridge/zipball/2bbfc8bd9d6f966b69eda20c66762580a0410c78",
  5243. "reference": "2bbfc8bd9d6f966b69eda20c66762580a0410c78",
  5244. "shasum": ""
  5245. },
  5246. "require": {
  5247. "monolog/monolog": "^1.25.1|^2|^3",
  5248. "php": ">=8.1",
  5249. "symfony/http-kernel": "^5.4|^6.0",
  5250. "symfony/service-contracts": "^2.5|^3"
  5251. },
  5252. "conflict": {
  5253. "symfony/console": "<5.4",
  5254. "symfony/http-foundation": "<5.4",
  5255. "symfony/security-core": "<6.0"
  5256. },
  5257. "require-dev": {
  5258. "symfony/console": "^5.4|^6.0",
  5259. "symfony/http-client": "^5.4|^6.0",
  5260. "symfony/mailer": "^5.4|^6.0",
  5261. "symfony/messenger": "^5.4|^6.0",
  5262. "symfony/mime": "^5.4|^6.0",
  5263. "symfony/security-core": "^6.0",
  5264. "symfony/var-dumper": "^5.4|^6.0"
  5265. },
  5266. "type": "symfony-bridge",
  5267. "autoload": {
  5268. "psr-4": {
  5269. "Symfony\\Bridge\\Monolog\\": ""
  5270. },
  5271. "exclude-from-classmap": [
  5272. "/Tests/"
  5273. ]
  5274. },
  5275. "notification-url": "https://packagist.org/downloads/",
  5276. "license": [
  5277. "MIT"
  5278. ],
  5279. "authors": [
  5280. {
  5281. "name": "Fabien Potencier",
  5282. "email": "fabien@symfony.com"
  5283. },
  5284. {
  5285. "name": "Symfony Community",
  5286. "homepage": "https://symfony.com/contributors"
  5287. }
  5288. ],
  5289. "description": "Provides integration for Monolog with various Symfony components",
  5290. "homepage": "https://symfony.com",
  5291. "support": {
  5292. "source": "https://github.com/symfony/monolog-bridge/tree/v6.3.8"
  5293. },
  5294. "funding": [
  5295. {
  5296. "url": "https://symfony.com/sponsor",
  5297. "type": "custom"
  5298. },
  5299. {
  5300. "url": "https://github.com/fabpot",
  5301. "type": "github"
  5302. },
  5303. {
  5304. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5305. "type": "tidelift"
  5306. }
  5307. ],
  5308. "time": "2023-10-31T08:07:48+00:00"
  5309. },
  5310. {
  5311. "name": "symfony/monolog-bundle",
  5312. "version": "v3.10.0",
  5313. "source": {
  5314. "type": "git",
  5315. "url": "https://github.com/symfony/monolog-bundle.git",
  5316. "reference": "414f951743f4aa1fd0f5bf6a0e9c16af3fe7f181"
  5317. },
  5318. "dist": {
  5319. "type": "zip",
  5320. "url": "https://api.github.com/repos/symfony/monolog-bundle/zipball/414f951743f4aa1fd0f5bf6a0e9c16af3fe7f181",
  5321. "reference": "414f951743f4aa1fd0f5bf6a0e9c16af3fe7f181",
  5322. "shasum": ""
  5323. },
  5324. "require": {
  5325. "monolog/monolog": "^1.25.1 || ^2.0 || ^3.0",
  5326. "php": ">=7.2.5",
  5327. "symfony/config": "^5.4 || ^6.0 || ^7.0",
  5328. "symfony/dependency-injection": "^5.4 || ^6.0 || ^7.0",
  5329. "symfony/http-kernel": "^5.4 || ^6.0 || ^7.0",
  5330. "symfony/monolog-bridge": "^5.4 || ^6.0 || ^7.0"
  5331. },
  5332. "require-dev": {
  5333. "symfony/console": "^5.4 || ^6.0 || ^7.0",
  5334. "symfony/phpunit-bridge": "^6.3 || ^7.0",
  5335. "symfony/yaml": "^5.4 || ^6.0 || ^7.0"
  5336. },
  5337. "type": "symfony-bundle",
  5338. "extra": {
  5339. "branch-alias": {
  5340. "dev-master": "3.x-dev"
  5341. }
  5342. },
  5343. "autoload": {
  5344. "psr-4": {
  5345. "Symfony\\Bundle\\MonologBundle\\": ""
  5346. },
  5347. "exclude-from-classmap": [
  5348. "/Tests/"
  5349. ]
  5350. },
  5351. "notification-url": "https://packagist.org/downloads/",
  5352. "license": [
  5353. "MIT"
  5354. ],
  5355. "authors": [
  5356. {
  5357. "name": "Fabien Potencier",
  5358. "email": "fabien@symfony.com"
  5359. },
  5360. {
  5361. "name": "Symfony Community",
  5362. "homepage": "https://symfony.com/contributors"
  5363. }
  5364. ],
  5365. "description": "Symfony MonologBundle",
  5366. "homepage": "https://symfony.com",
  5367. "keywords": [
  5368. "log",
  5369. "logging"
  5370. ],
  5371. "support": {
  5372. "issues": "https://github.com/symfony/monolog-bundle/issues",
  5373. "source": "https://github.com/symfony/monolog-bundle/tree/v3.10.0"
  5374. },
  5375. "funding": [
  5376. {
  5377. "url": "https://symfony.com/sponsor",
  5378. "type": "custom"
  5379. },
  5380. {
  5381. "url": "https://github.com/fabpot",
  5382. "type": "github"
  5383. },
  5384. {
  5385. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5386. "type": "tidelift"
  5387. }
  5388. ],
  5389. "time": "2023-11-06T17:08:13+00:00"
  5390. },
  5391. {
  5392. "name": "symfony/options-resolver",
  5393. "version": "v6.3.0",
  5394. "source": {
  5395. "type": "git",
  5396. "url": "https://github.com/symfony/options-resolver.git",
  5397. "reference": "a10f19f5198d589d5c33333cffe98dc9820332dd"
  5398. },
  5399. "dist": {
  5400. "type": "zip",
  5401. "url": "https://api.github.com/repos/symfony/options-resolver/zipball/a10f19f5198d589d5c33333cffe98dc9820332dd",
  5402. "reference": "a10f19f5198d589d5c33333cffe98dc9820332dd",
  5403. "shasum": ""
  5404. },
  5405. "require": {
  5406. "php": ">=8.1",
  5407. "symfony/deprecation-contracts": "^2.5|^3"
  5408. },
  5409. "type": "library",
  5410. "autoload": {
  5411. "psr-4": {
  5412. "Symfony\\Component\\OptionsResolver\\": ""
  5413. },
  5414. "exclude-from-classmap": [
  5415. "/Tests/"
  5416. ]
  5417. },
  5418. "notification-url": "https://packagist.org/downloads/",
  5419. "license": [
  5420. "MIT"
  5421. ],
  5422. "authors": [
  5423. {
  5424. "name": "Fabien Potencier",
  5425. "email": "fabien@symfony.com"
  5426. },
  5427. {
  5428. "name": "Symfony Community",
  5429. "homepage": "https://symfony.com/contributors"
  5430. }
  5431. ],
  5432. "description": "Provides an improved replacement for the array_replace PHP function",
  5433. "homepage": "https://symfony.com",
  5434. "keywords": [
  5435. "config",
  5436. "configuration",
  5437. "options"
  5438. ],
  5439. "support": {
  5440. "source": "https://github.com/symfony/options-resolver/tree/v6.3.0"
  5441. },
  5442. "funding": [
  5443. {
  5444. "url": "https://symfony.com/sponsor",
  5445. "type": "custom"
  5446. },
  5447. {
  5448. "url": "https://github.com/fabpot",
  5449. "type": "github"
  5450. },
  5451. {
  5452. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5453. "type": "tidelift"
  5454. }
  5455. ],
  5456. "time": "2023-05-12T14:21:09+00:00"
  5457. },
  5458. {
  5459. "name": "symfony/password-hasher",
  5460. "version": "v6.3.8",
  5461. "source": {
  5462. "type": "git",
  5463. "url": "https://github.com/symfony/password-hasher.git",
  5464. "reference": "82161c4bebf77900372083ec6e484b5f055b0cba"
  5465. },
  5466. "dist": {
  5467. "type": "zip",
  5468. "url": "https://api.github.com/repos/symfony/password-hasher/zipball/82161c4bebf77900372083ec6e484b5f055b0cba",
  5469. "reference": "82161c4bebf77900372083ec6e484b5f055b0cba",
  5470. "shasum": ""
  5471. },
  5472. "require": {
  5473. "php": ">=8.1"
  5474. },
  5475. "conflict": {
  5476. "symfony/security-core": "<5.4"
  5477. },
  5478. "require-dev": {
  5479. "symfony/console": "^5.4|^6.0",
  5480. "symfony/security-core": "^5.4|^6.0"
  5481. },
  5482. "type": "library",
  5483. "autoload": {
  5484. "psr-4": {
  5485. "Symfony\\Component\\PasswordHasher\\": ""
  5486. },
  5487. "exclude-from-classmap": [
  5488. "/Tests/"
  5489. ]
  5490. },
  5491. "notification-url": "https://packagist.org/downloads/",
  5492. "license": [
  5493. "MIT"
  5494. ],
  5495. "authors": [
  5496. {
  5497. "name": "Robin Chalas",
  5498. "email": "robin.chalas@gmail.com"
  5499. },
  5500. {
  5501. "name": "Symfony Community",
  5502. "homepage": "https://symfony.com/contributors"
  5503. }
  5504. ],
  5505. "description": "Provides password hashing utilities",
  5506. "homepage": "https://symfony.com",
  5507. "keywords": [
  5508. "hashing",
  5509. "password"
  5510. ],
  5511. "support": {
  5512. "source": "https://github.com/symfony/password-hasher/tree/v6.3.8"
  5513. },
  5514. "funding": [
  5515. {
  5516. "url": "https://symfony.com/sponsor",
  5517. "type": "custom"
  5518. },
  5519. {
  5520. "url": "https://github.com/fabpot",
  5521. "type": "github"
  5522. },
  5523. {
  5524. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5525. "type": "tidelift"
  5526. }
  5527. ],
  5528. "time": "2023-11-06T10:58:05+00:00"
  5529. },
  5530. {
  5531. "name": "symfony/polyfill-intl-grapheme",
  5532. "version": "v1.28.0",
  5533. "source": {
  5534. "type": "git",
  5535. "url": "https://github.com/symfony/polyfill-intl-grapheme.git",
  5536. "reference": "875e90aeea2777b6f135677f618529449334a612"
  5537. },
  5538. "dist": {
  5539. "type": "zip",
  5540. "url": "https://api.github.com/repos/symfony/polyfill-intl-grapheme/zipball/875e90aeea2777b6f135677f618529449334a612",
  5541. "reference": "875e90aeea2777b6f135677f618529449334a612",
  5542. "shasum": ""
  5543. },
  5544. "require": {
  5545. "php": ">=7.1"
  5546. },
  5547. "suggest": {
  5548. "ext-intl": "For best performance"
  5549. },
  5550. "type": "library",
  5551. "extra": {
  5552. "branch-alias": {
  5553. "dev-main": "1.28-dev"
  5554. },
  5555. "thanks": {
  5556. "name": "symfony/polyfill",
  5557. "url": "https://github.com/symfony/polyfill"
  5558. }
  5559. },
  5560. "autoload": {
  5561. "files": [
  5562. "bootstrap.php"
  5563. ],
  5564. "psr-4": {
  5565. "Symfony\\Polyfill\\Intl\\Grapheme\\": ""
  5566. }
  5567. },
  5568. "notification-url": "https://packagist.org/downloads/",
  5569. "license": [
  5570. "MIT"
  5571. ],
  5572. "authors": [
  5573. {
  5574. "name": "Nicolas Grekas",
  5575. "email": "p@tchwork.com"
  5576. },
  5577. {
  5578. "name": "Symfony Community",
  5579. "homepage": "https://symfony.com/contributors"
  5580. }
  5581. ],
  5582. "description": "Symfony polyfill for intl's grapheme_* functions",
  5583. "homepage": "https://symfony.com",
  5584. "keywords": [
  5585. "compatibility",
  5586. "grapheme",
  5587. "intl",
  5588. "polyfill",
  5589. "portable",
  5590. "shim"
  5591. ],
  5592. "support": {
  5593. "source": "https://github.com/symfony/polyfill-intl-grapheme/tree/v1.28.0"
  5594. },
  5595. "funding": [
  5596. {
  5597. "url": "https://symfony.com/sponsor",
  5598. "type": "custom"
  5599. },
  5600. {
  5601. "url": "https://github.com/fabpot",
  5602. "type": "github"
  5603. },
  5604. {
  5605. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5606. "type": "tidelift"
  5607. }
  5608. ],
  5609. "time": "2023-01-26T09:26:14+00:00"
  5610. },
  5611. {
  5612. "name": "symfony/polyfill-intl-icu",
  5613. "version": "v1.28.0",
  5614. "source": {
  5615. "type": "git",
  5616. "url": "https://github.com/symfony/polyfill-intl-icu.git",
  5617. "reference": "e46b4da57951a16053cd751f63f4a24292788157"
  5618. },
  5619. "dist": {
  5620. "type": "zip",
  5621. "url": "https://api.github.com/repos/symfony/polyfill-intl-icu/zipball/e46b4da57951a16053cd751f63f4a24292788157",
  5622. "reference": "e46b4da57951a16053cd751f63f4a24292788157",
  5623. "shasum": ""
  5624. },
  5625. "require": {
  5626. "php": ">=7.1"
  5627. },
  5628. "suggest": {
  5629. "ext-intl": "For best performance and support of other locales than \"en\""
  5630. },
  5631. "type": "library",
  5632. "extra": {
  5633. "branch-alias": {
  5634. "dev-main": "1.28-dev"
  5635. },
  5636. "thanks": {
  5637. "name": "symfony/polyfill",
  5638. "url": "https://github.com/symfony/polyfill"
  5639. }
  5640. },
  5641. "autoload": {
  5642. "files": [
  5643. "bootstrap.php"
  5644. ],
  5645. "psr-4": {
  5646. "Symfony\\Polyfill\\Intl\\Icu\\": ""
  5647. },
  5648. "classmap": [
  5649. "Resources/stubs"
  5650. ],
  5651. "exclude-from-classmap": [
  5652. "/Tests/"
  5653. ]
  5654. },
  5655. "notification-url": "https://packagist.org/downloads/",
  5656. "license": [
  5657. "MIT"
  5658. ],
  5659. "authors": [
  5660. {
  5661. "name": "Nicolas Grekas",
  5662. "email": "p@tchwork.com"
  5663. },
  5664. {
  5665. "name": "Symfony Community",
  5666. "homepage": "https://symfony.com/contributors"
  5667. }
  5668. ],
  5669. "description": "Symfony polyfill for intl's ICU-related data and classes",
  5670. "homepage": "https://symfony.com",
  5671. "keywords": [
  5672. "compatibility",
  5673. "icu",
  5674. "intl",
  5675. "polyfill",
  5676. "portable",
  5677. "shim"
  5678. ],
  5679. "support": {
  5680. "source": "https://github.com/symfony/polyfill-intl-icu/tree/v1.28.0"
  5681. },
  5682. "funding": [
  5683. {
  5684. "url": "https://symfony.com/sponsor",
  5685. "type": "custom"
  5686. },
  5687. {
  5688. "url": "https://github.com/fabpot",
  5689. "type": "github"
  5690. },
  5691. {
  5692. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5693. "type": "tidelift"
  5694. }
  5695. ],
  5696. "time": "2023-03-21T17:27:24+00:00"
  5697. },
  5698. {
  5699. "name": "symfony/polyfill-intl-idn",
  5700. "version": "v1.28.0",
  5701. "source": {
  5702. "type": "git",
  5703. "url": "https://github.com/symfony/polyfill-intl-idn.git",
  5704. "reference": "ecaafce9f77234a6a449d29e49267ba10499116d"
  5705. },
  5706. "dist": {
  5707. "type": "zip",
  5708. "url": "https://api.github.com/repos/symfony/polyfill-intl-idn/zipball/ecaafce9f77234a6a449d29e49267ba10499116d",
  5709. "reference": "ecaafce9f77234a6a449d29e49267ba10499116d",
  5710. "shasum": ""
  5711. },
  5712. "require": {
  5713. "php": ">=7.1",
  5714. "symfony/polyfill-intl-normalizer": "^1.10",
  5715. "symfony/polyfill-php72": "^1.10"
  5716. },
  5717. "suggest": {
  5718. "ext-intl": "For best performance"
  5719. },
  5720. "type": "library",
  5721. "extra": {
  5722. "branch-alias": {
  5723. "dev-main": "1.28-dev"
  5724. },
  5725. "thanks": {
  5726. "name": "symfony/polyfill",
  5727. "url": "https://github.com/symfony/polyfill"
  5728. }
  5729. },
  5730. "autoload": {
  5731. "files": [
  5732. "bootstrap.php"
  5733. ],
  5734. "psr-4": {
  5735. "Symfony\\Polyfill\\Intl\\Idn\\": ""
  5736. }
  5737. },
  5738. "notification-url": "https://packagist.org/downloads/",
  5739. "license": [
  5740. "MIT"
  5741. ],
  5742. "authors": [
  5743. {
  5744. "name": "Laurent Bassin",
  5745. "email": "laurent@bassin.info"
  5746. },
  5747. {
  5748. "name": "Trevor Rowbotham",
  5749. "email": "trevor.rowbotham@pm.me"
  5750. },
  5751. {
  5752. "name": "Symfony Community",
  5753. "homepage": "https://symfony.com/contributors"
  5754. }
  5755. ],
  5756. "description": "Symfony polyfill for intl's idn_to_ascii and idn_to_utf8 functions",
  5757. "homepage": "https://symfony.com",
  5758. "keywords": [
  5759. "compatibility",
  5760. "idn",
  5761. "intl",
  5762. "polyfill",
  5763. "portable",
  5764. "shim"
  5765. ],
  5766. "support": {
  5767. "source": "https://github.com/symfony/polyfill-intl-idn/tree/v1.28.0"
  5768. },
  5769. "funding": [
  5770. {
  5771. "url": "https://symfony.com/sponsor",
  5772. "type": "custom"
  5773. },
  5774. {
  5775. "url": "https://github.com/fabpot",
  5776. "type": "github"
  5777. },
  5778. {
  5779. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5780. "type": "tidelift"
  5781. }
  5782. ],
  5783. "time": "2023-01-26T09:30:37+00:00"
  5784. },
  5785. {
  5786. "name": "symfony/polyfill-intl-normalizer",
  5787. "version": "v1.28.0",
  5788. "source": {
  5789. "type": "git",
  5790. "url": "https://github.com/symfony/polyfill-intl-normalizer.git",
  5791. "reference": "8c4ad05dd0120b6a53c1ca374dca2ad0a1c4ed92"
  5792. },
  5793. "dist": {
  5794. "type": "zip",
  5795. "url": "https://api.github.com/repos/symfony/polyfill-intl-normalizer/zipball/8c4ad05dd0120b6a53c1ca374dca2ad0a1c4ed92",
  5796. "reference": "8c4ad05dd0120b6a53c1ca374dca2ad0a1c4ed92",
  5797. "shasum": ""
  5798. },
  5799. "require": {
  5800. "php": ">=7.1"
  5801. },
  5802. "suggest": {
  5803. "ext-intl": "For best performance"
  5804. },
  5805. "type": "library",
  5806. "extra": {
  5807. "branch-alias": {
  5808. "dev-main": "1.28-dev"
  5809. },
  5810. "thanks": {
  5811. "name": "symfony/polyfill",
  5812. "url": "https://github.com/symfony/polyfill"
  5813. }
  5814. },
  5815. "autoload": {
  5816. "files": [
  5817. "bootstrap.php"
  5818. ],
  5819. "psr-4": {
  5820. "Symfony\\Polyfill\\Intl\\Normalizer\\": ""
  5821. },
  5822. "classmap": [
  5823. "Resources/stubs"
  5824. ]
  5825. },
  5826. "notification-url": "https://packagist.org/downloads/",
  5827. "license": [
  5828. "MIT"
  5829. ],
  5830. "authors": [
  5831. {
  5832. "name": "Nicolas Grekas",
  5833. "email": "p@tchwork.com"
  5834. },
  5835. {
  5836. "name": "Symfony Community",
  5837. "homepage": "https://symfony.com/contributors"
  5838. }
  5839. ],
  5840. "description": "Symfony polyfill for intl's Normalizer class and related functions",
  5841. "homepage": "https://symfony.com",
  5842. "keywords": [
  5843. "compatibility",
  5844. "intl",
  5845. "normalizer",
  5846. "polyfill",
  5847. "portable",
  5848. "shim"
  5849. ],
  5850. "support": {
  5851. "source": "https://github.com/symfony/polyfill-intl-normalizer/tree/v1.28.0"
  5852. },
  5853. "funding": [
  5854. {
  5855. "url": "https://symfony.com/sponsor",
  5856. "type": "custom"
  5857. },
  5858. {
  5859. "url": "https://github.com/fabpot",
  5860. "type": "github"
  5861. },
  5862. {
  5863. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5864. "type": "tidelift"
  5865. }
  5866. ],
  5867. "time": "2023-01-26T09:26:14+00:00"
  5868. },
  5869. {
  5870. "name": "symfony/polyfill-mbstring",
  5871. "version": "v1.28.0",
  5872. "source": {
  5873. "type": "git",
  5874. "url": "https://github.com/symfony/polyfill-mbstring.git",
  5875. "reference": "42292d99c55abe617799667f454222c54c60e229"
  5876. },
  5877. "dist": {
  5878. "type": "zip",
  5879. "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/42292d99c55abe617799667f454222c54c60e229",
  5880. "reference": "42292d99c55abe617799667f454222c54c60e229",
  5881. "shasum": ""
  5882. },
  5883. "require": {
  5884. "php": ">=7.1"
  5885. },
  5886. "provide": {
  5887. "ext-mbstring": "*"
  5888. },
  5889. "suggest": {
  5890. "ext-mbstring": "For best performance"
  5891. },
  5892. "type": "library",
  5893. "extra": {
  5894. "branch-alias": {
  5895. "dev-main": "1.28-dev"
  5896. },
  5897. "thanks": {
  5898. "name": "symfony/polyfill",
  5899. "url": "https://github.com/symfony/polyfill"
  5900. }
  5901. },
  5902. "autoload": {
  5903. "files": [
  5904. "bootstrap.php"
  5905. ],
  5906. "psr-4": {
  5907. "Symfony\\Polyfill\\Mbstring\\": ""
  5908. }
  5909. },
  5910. "notification-url": "https://packagist.org/downloads/",
  5911. "license": [
  5912. "MIT"
  5913. ],
  5914. "authors": [
  5915. {
  5916. "name": "Nicolas Grekas",
  5917. "email": "p@tchwork.com"
  5918. },
  5919. {
  5920. "name": "Symfony Community",
  5921. "homepage": "https://symfony.com/contributors"
  5922. }
  5923. ],
  5924. "description": "Symfony polyfill for the Mbstring extension",
  5925. "homepage": "https://symfony.com",
  5926. "keywords": [
  5927. "compatibility",
  5928. "mbstring",
  5929. "polyfill",
  5930. "portable",
  5931. "shim"
  5932. ],
  5933. "support": {
  5934. "source": "https://github.com/symfony/polyfill-mbstring/tree/v1.28.0"
  5935. },
  5936. "funding": [
  5937. {
  5938. "url": "https://symfony.com/sponsor",
  5939. "type": "custom"
  5940. },
  5941. {
  5942. "url": "https://github.com/fabpot",
  5943. "type": "github"
  5944. },
  5945. {
  5946. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5947. "type": "tidelift"
  5948. }
  5949. ],
  5950. "time": "2023-07-28T09:04:16+00:00"
  5951. },
  5952. {
  5953. "name": "symfony/polyfill-php72",
  5954. "version": "v1.28.0",
  5955. "source": {
  5956. "type": "git",
  5957. "url": "https://github.com/symfony/polyfill-php72.git",
  5958. "reference": "70f4aebd92afca2f865444d30a4d2151c13c3179"
  5959. },
  5960. "dist": {
  5961. "type": "zip",
  5962. "url": "https://api.github.com/repos/symfony/polyfill-php72/zipball/70f4aebd92afca2f865444d30a4d2151c13c3179",
  5963. "reference": "70f4aebd92afca2f865444d30a4d2151c13c3179",
  5964. "shasum": ""
  5965. },
  5966. "require": {
  5967. "php": ">=7.1"
  5968. },
  5969. "type": "library",
  5970. "extra": {
  5971. "branch-alias": {
  5972. "dev-main": "1.28-dev"
  5973. },
  5974. "thanks": {
  5975. "name": "symfony/polyfill",
  5976. "url": "https://github.com/symfony/polyfill"
  5977. }
  5978. },
  5979. "autoload": {
  5980. "files": [
  5981. "bootstrap.php"
  5982. ],
  5983. "psr-4": {
  5984. "Symfony\\Polyfill\\Php72\\": ""
  5985. }
  5986. },
  5987. "notification-url": "https://packagist.org/downloads/",
  5988. "license": [
  5989. "MIT"
  5990. ],
  5991. "authors": [
  5992. {
  5993. "name": "Nicolas Grekas",
  5994. "email": "p@tchwork.com"
  5995. },
  5996. {
  5997. "name": "Symfony Community",
  5998. "homepage": "https://symfony.com/contributors"
  5999. }
  6000. ],
  6001. "description": "Symfony polyfill backporting some PHP 7.2+ features to lower PHP versions",
  6002. "homepage": "https://symfony.com",
  6003. "keywords": [
  6004. "compatibility",
  6005. "polyfill",
  6006. "portable",
  6007. "shim"
  6008. ],
  6009. "support": {
  6010. "source": "https://github.com/symfony/polyfill-php72/tree/v1.28.0"
  6011. },
  6012. "funding": [
  6013. {
  6014. "url": "https://symfony.com/sponsor",
  6015. "type": "custom"
  6016. },
  6017. {
  6018. "url": "https://github.com/fabpot",
  6019. "type": "github"
  6020. },
  6021. {
  6022. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6023. "type": "tidelift"
  6024. }
  6025. ],
  6026. "time": "2023-01-26T09:26:14+00:00"
  6027. },
  6028. {
  6029. "name": "symfony/polyfill-php80",
  6030. "version": "v1.28.0",
  6031. "source": {
  6032. "type": "git",
  6033. "url": "https://github.com/symfony/polyfill-php80.git",
  6034. "reference": "6caa57379c4aec19c0a12a38b59b26487dcfe4b5"
  6035. },
  6036. "dist": {
  6037. "type": "zip",
  6038. "url": "https://api.github.com/repos/symfony/polyfill-php80/zipball/6caa57379c4aec19c0a12a38b59b26487dcfe4b5",
  6039. "reference": "6caa57379c4aec19c0a12a38b59b26487dcfe4b5",
  6040. "shasum": ""
  6041. },
  6042. "require": {
  6043. "php": ">=7.1"
  6044. },
  6045. "type": "library",
  6046. "extra": {
  6047. "branch-alias": {
  6048. "dev-main": "1.28-dev"
  6049. },
  6050. "thanks": {
  6051. "name": "symfony/polyfill",
  6052. "url": "https://github.com/symfony/polyfill"
  6053. }
  6054. },
  6055. "autoload": {
  6056. "files": [
  6057. "bootstrap.php"
  6058. ],
  6059. "psr-4": {
  6060. "Symfony\\Polyfill\\Php80\\": ""
  6061. },
  6062. "classmap": [
  6063. "Resources/stubs"
  6064. ]
  6065. },
  6066. "notification-url": "https://packagist.org/downloads/",
  6067. "license": [
  6068. "MIT"
  6069. ],
  6070. "authors": [
  6071. {
  6072. "name": "Ion Bazan",
  6073. "email": "ion.bazan@gmail.com"
  6074. },
  6075. {
  6076. "name": "Nicolas Grekas",
  6077. "email": "p@tchwork.com"
  6078. },
  6079. {
  6080. "name": "Symfony Community",
  6081. "homepage": "https://symfony.com/contributors"
  6082. }
  6083. ],
  6084. "description": "Symfony polyfill backporting some PHP 8.0+ features to lower PHP versions",
  6085. "homepage": "https://symfony.com",
  6086. "keywords": [
  6087. "compatibility",
  6088. "polyfill",
  6089. "portable",
  6090. "shim"
  6091. ],
  6092. "support": {
  6093. "source": "https://github.com/symfony/polyfill-php80/tree/v1.28.0"
  6094. },
  6095. "funding": [
  6096. {
  6097. "url": "https://symfony.com/sponsor",
  6098. "type": "custom"
  6099. },
  6100. {
  6101. "url": "https://github.com/fabpot",
  6102. "type": "github"
  6103. },
  6104. {
  6105. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6106. "type": "tidelift"
  6107. }
  6108. ],
  6109. "time": "2023-01-26T09:26:14+00:00"
  6110. },
  6111. {
  6112. "name": "symfony/polyfill-php83",
  6113. "version": "v1.28.0",
  6114. "source": {
  6115. "type": "git",
  6116. "url": "https://github.com/symfony/polyfill-php83.git",
  6117. "reference": "b0f46ebbeeeda3e9d2faebdfbf4b4eae9b59fa11"
  6118. },
  6119. "dist": {
  6120. "type": "zip",
  6121. "url": "https://api.github.com/repos/symfony/polyfill-php83/zipball/b0f46ebbeeeda3e9d2faebdfbf4b4eae9b59fa11",
  6122. "reference": "b0f46ebbeeeda3e9d2faebdfbf4b4eae9b59fa11",
  6123. "shasum": ""
  6124. },
  6125. "require": {
  6126. "php": ">=7.1",
  6127. "symfony/polyfill-php80": "^1.14"
  6128. },
  6129. "type": "library",
  6130. "extra": {
  6131. "branch-alias": {
  6132. "dev-main": "1.28-dev"
  6133. },
  6134. "thanks": {
  6135. "name": "symfony/polyfill",
  6136. "url": "https://github.com/symfony/polyfill"
  6137. }
  6138. },
  6139. "autoload": {
  6140. "files": [
  6141. "bootstrap.php"
  6142. ],
  6143. "psr-4": {
  6144. "Symfony\\Polyfill\\Php83\\": ""
  6145. },
  6146. "classmap": [
  6147. "Resources/stubs"
  6148. ]
  6149. },
  6150. "notification-url": "https://packagist.org/downloads/",
  6151. "license": [
  6152. "MIT"
  6153. ],
  6154. "authors": [
  6155. {
  6156. "name": "Nicolas Grekas",
  6157. "email": "p@tchwork.com"
  6158. },
  6159. {
  6160. "name": "Symfony Community",
  6161. "homepage": "https://symfony.com/contributors"
  6162. }
  6163. ],
  6164. "description": "Symfony polyfill backporting some PHP 8.3+ features to lower PHP versions",
  6165. "homepage": "https://symfony.com",
  6166. "keywords": [
  6167. "compatibility",
  6168. "polyfill",
  6169. "portable",
  6170. "shim"
  6171. ],
  6172. "support": {
  6173. "source": "https://github.com/symfony/polyfill-php83/tree/v1.28.0"
  6174. },
  6175. "funding": [
  6176. {
  6177. "url": "https://symfony.com/sponsor",
  6178. "type": "custom"
  6179. },
  6180. {
  6181. "url": "https://github.com/fabpot",
  6182. "type": "github"
  6183. },
  6184. {
  6185. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6186. "type": "tidelift"
  6187. }
  6188. ],
  6189. "time": "2023-08-16T06:22:46+00:00"
  6190. },
  6191. {
  6192. "name": "symfony/process",
  6193. "version": "v6.3.4",
  6194. "source": {
  6195. "type": "git",
  6196. "url": "https://github.com/symfony/process.git",
  6197. "reference": "0b5c29118f2e980d455d2e34a5659f4579847c54"
  6198. },
  6199. "dist": {
  6200. "type": "zip",
  6201. "url": "https://api.github.com/repos/symfony/process/zipball/0b5c29118f2e980d455d2e34a5659f4579847c54",
  6202. "reference": "0b5c29118f2e980d455d2e34a5659f4579847c54",
  6203. "shasum": ""
  6204. },
  6205. "require": {
  6206. "php": ">=8.1"
  6207. },
  6208. "type": "library",
  6209. "autoload": {
  6210. "psr-4": {
  6211. "Symfony\\Component\\Process\\": ""
  6212. },
  6213. "exclude-from-classmap": [
  6214. "/Tests/"
  6215. ]
  6216. },
  6217. "notification-url": "https://packagist.org/downloads/",
  6218. "license": [
  6219. "MIT"
  6220. ],
  6221. "authors": [
  6222. {
  6223. "name": "Fabien Potencier",
  6224. "email": "fabien@symfony.com"
  6225. },
  6226. {
  6227. "name": "Symfony Community",
  6228. "homepage": "https://symfony.com/contributors"
  6229. }
  6230. ],
  6231. "description": "Executes commands in sub-processes",
  6232. "homepage": "https://symfony.com",
  6233. "support": {
  6234. "source": "https://github.com/symfony/process/tree/v6.3.4"
  6235. },
  6236. "funding": [
  6237. {
  6238. "url": "https://symfony.com/sponsor",
  6239. "type": "custom"
  6240. },
  6241. {
  6242. "url": "https://github.com/fabpot",
  6243. "type": "github"
  6244. },
  6245. {
  6246. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6247. "type": "tidelift"
  6248. }
  6249. ],
  6250. "time": "2023-08-07T10:39:22+00:00"
  6251. },
  6252. {
  6253. "name": "symfony/property-access",
  6254. "version": "v6.3.2",
  6255. "source": {
  6256. "type": "git",
  6257. "url": "https://github.com/symfony/property-access.git",
  6258. "reference": "2dc4f9da444b8f8ff592e95d570caad67924f1d0"
  6259. },
  6260. "dist": {
  6261. "type": "zip",
  6262. "url": "https://api.github.com/repos/symfony/property-access/zipball/2dc4f9da444b8f8ff592e95d570caad67924f1d0",
  6263. "reference": "2dc4f9da444b8f8ff592e95d570caad67924f1d0",
  6264. "shasum": ""
  6265. },
  6266. "require": {
  6267. "php": ">=8.1",
  6268. "symfony/deprecation-contracts": "^2.5|^3",
  6269. "symfony/property-info": "^5.4|^6.0"
  6270. },
  6271. "require-dev": {
  6272. "symfony/cache": "^5.4|^6.0"
  6273. },
  6274. "type": "library",
  6275. "autoload": {
  6276. "psr-4": {
  6277. "Symfony\\Component\\PropertyAccess\\": ""
  6278. },
  6279. "exclude-from-classmap": [
  6280. "/Tests/"
  6281. ]
  6282. },
  6283. "notification-url": "https://packagist.org/downloads/",
  6284. "license": [
  6285. "MIT"
  6286. ],
  6287. "authors": [
  6288. {
  6289. "name": "Fabien Potencier",
  6290. "email": "fabien@symfony.com"
  6291. },
  6292. {
  6293. "name": "Symfony Community",
  6294. "homepage": "https://symfony.com/contributors"
  6295. }
  6296. ],
  6297. "description": "Provides functions to read and write from/to an object or array using a simple string notation",
  6298. "homepage": "https://symfony.com",
  6299. "keywords": [
  6300. "access",
  6301. "array",
  6302. "extraction",
  6303. "index",
  6304. "injection",
  6305. "object",
  6306. "property",
  6307. "property-path",
  6308. "reflection"
  6309. ],
  6310. "support": {
  6311. "source": "https://github.com/symfony/property-access/tree/v6.3.2"
  6312. },
  6313. "funding": [
  6314. {
  6315. "url": "https://symfony.com/sponsor",
  6316. "type": "custom"
  6317. },
  6318. {
  6319. "url": "https://github.com/fabpot",
  6320. "type": "github"
  6321. },
  6322. {
  6323. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6324. "type": "tidelift"
  6325. }
  6326. ],
  6327. "time": "2023-07-13T15:26:11+00:00"
  6328. },
  6329. {
  6330. "name": "symfony/property-info",
  6331. "version": "v6.3.9",
  6332. "source": {
  6333. "type": "git",
  6334. "url": "https://github.com/symfony/property-info.git",
  6335. "reference": "664ae7ad443d7cc591ff3e15496b954e4cefe729"
  6336. },
  6337. "dist": {
  6338. "type": "zip",
  6339. "url": "https://api.github.com/repos/symfony/property-info/zipball/664ae7ad443d7cc591ff3e15496b954e4cefe729",
  6340. "reference": "664ae7ad443d7cc591ff3e15496b954e4cefe729",
  6341. "shasum": ""
  6342. },
  6343. "require": {
  6344. "php": ">=8.1",
  6345. "symfony/string": "^5.4|^6.0"
  6346. },
  6347. "conflict": {
  6348. "phpdocumentor/reflection-docblock": "<5.2",
  6349. "phpdocumentor/type-resolver": "<1.5.1",
  6350. "symfony/dependency-injection": "<5.4"
  6351. },
  6352. "require-dev": {
  6353. "doctrine/annotations": "^1.10.4|^2",
  6354. "phpdocumentor/reflection-docblock": "^5.2",
  6355. "phpstan/phpdoc-parser": "^1.0",
  6356. "symfony/cache": "^5.4|^6.0",
  6357. "symfony/dependency-injection": "^5.4|^6.0",
  6358. "symfony/serializer": "^5.4|^6.0"
  6359. },
  6360. "type": "library",
  6361. "autoload": {
  6362. "psr-4": {
  6363. "Symfony\\Component\\PropertyInfo\\": ""
  6364. },
  6365. "exclude-from-classmap": [
  6366. "/Tests/"
  6367. ]
  6368. },
  6369. "notification-url": "https://packagist.org/downloads/",
  6370. "license": [
  6371. "MIT"
  6372. ],
  6373. "authors": [
  6374. {
  6375. "name": "Kévin Dunglas",
  6376. "email": "dunglas@gmail.com"
  6377. },
  6378. {
  6379. "name": "Symfony Community",
  6380. "homepage": "https://symfony.com/contributors"
  6381. }
  6382. ],
  6383. "description": "Extracts information about PHP class' properties using metadata of popular sources",
  6384. "homepage": "https://symfony.com",
  6385. "keywords": [
  6386. "doctrine",
  6387. "phpdoc",
  6388. "property",
  6389. "symfony",
  6390. "type",
  6391. "validator"
  6392. ],
  6393. "support": {
  6394. "source": "https://github.com/symfony/property-info/tree/v6.3.9"
  6395. },
  6396. "funding": [
  6397. {
  6398. "url": "https://symfony.com/sponsor",
  6399. "type": "custom"
  6400. },
  6401. {
  6402. "url": "https://github.com/fabpot",
  6403. "type": "github"
  6404. },
  6405. {
  6406. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6407. "type": "tidelift"
  6408. }
  6409. ],
  6410. "time": "2023-11-24T11:57:32+00:00"
  6411. },
  6412. {
  6413. "name": "symfony/proxy-manager-bridge",
  6414. "version": "v6.3.0",
  6415. "source": {
  6416. "type": "git",
  6417. "url": "https://github.com/symfony/proxy-manager-bridge.git",
  6418. "reference": "7ba2ac62c88d7c3460d41f04ceba5fc3b9071a39"
  6419. },
  6420. "dist": {
  6421. "type": "zip",
  6422. "url": "https://api.github.com/repos/symfony/proxy-manager-bridge/zipball/7ba2ac62c88d7c3460d41f04ceba5fc3b9071a39",
  6423. "reference": "7ba2ac62c88d7c3460d41f04ceba5fc3b9071a39",
  6424. "shasum": ""
  6425. },
  6426. "require": {
  6427. "friendsofphp/proxy-manager-lts": "^1.0.2",
  6428. "php": ">=8.1",
  6429. "symfony/dependency-injection": "^6.3",
  6430. "symfony/deprecation-contracts": "^2.5|^3"
  6431. },
  6432. "require-dev": {
  6433. "symfony/config": "^6.1"
  6434. },
  6435. "type": "symfony-bridge",
  6436. "autoload": {
  6437. "psr-4": {
  6438. "Symfony\\Bridge\\ProxyManager\\": ""
  6439. },
  6440. "exclude-from-classmap": [
  6441. "/Tests/"
  6442. ]
  6443. },
  6444. "notification-url": "https://packagist.org/downloads/",
  6445. "license": [
  6446. "MIT"
  6447. ],
  6448. "authors": [
  6449. {
  6450. "name": "Fabien Potencier",
  6451. "email": "fabien@symfony.com"
  6452. },
  6453. {
  6454. "name": "Symfony Community",
  6455. "homepage": "https://symfony.com/contributors"
  6456. }
  6457. ],
  6458. "description": "Provides integration for ProxyManager with various Symfony components",
  6459. "homepage": "https://symfony.com",
  6460. "support": {
  6461. "source": "https://github.com/symfony/proxy-manager-bridge/tree/v6.3.0"
  6462. },
  6463. "funding": [
  6464. {
  6465. "url": "https://symfony.com/sponsor",
  6466. "type": "custom"
  6467. },
  6468. {
  6469. "url": "https://github.com/fabpot",
  6470. "type": "github"
  6471. },
  6472. {
  6473. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6474. "type": "tidelift"
  6475. }
  6476. ],
  6477. "time": "2023-05-26T07:49:33+00:00"
  6478. },
  6479. {
  6480. "name": "symfony/routing",
  6481. "version": "v6.3.10",
  6482. "source": {
  6483. "type": "git",
  6484. "url": "https://github.com/symfony/routing.git",
  6485. "reference": "cb7404232d49dd11cc971b832fcbd49e7c22b049"
  6486. },
  6487. "dist": {
  6488. "type": "zip",
  6489. "url": "https://api.github.com/repos/symfony/routing/zipball/cb7404232d49dd11cc971b832fcbd49e7c22b049",
  6490. "reference": "cb7404232d49dd11cc971b832fcbd49e7c22b049",
  6491. "shasum": ""
  6492. },
  6493. "require": {
  6494. "php": ">=8.1",
  6495. "symfony/deprecation-contracts": "^2.5|^3"
  6496. },
  6497. "conflict": {
  6498. "doctrine/annotations": "<1.12",
  6499. "symfony/config": "<6.2",
  6500. "symfony/dependency-injection": "<5.4",
  6501. "symfony/yaml": "<5.4"
  6502. },
  6503. "require-dev": {
  6504. "doctrine/annotations": "^1.12|^2",
  6505. "psr/log": "^1|^2|^3",
  6506. "symfony/config": "^6.2",
  6507. "symfony/dependency-injection": "^5.4|^6.0",
  6508. "symfony/expression-language": "^5.4|^6.0",
  6509. "symfony/http-foundation": "^5.4|^6.0",
  6510. "symfony/yaml": "^5.4|^6.0"
  6511. },
  6512. "type": "library",
  6513. "autoload": {
  6514. "psr-4": {
  6515. "Symfony\\Component\\Routing\\": ""
  6516. },
  6517. "exclude-from-classmap": [
  6518. "/Tests/"
  6519. ]
  6520. },
  6521. "notification-url": "https://packagist.org/downloads/",
  6522. "license": [
  6523. "MIT"
  6524. ],
  6525. "authors": [
  6526. {
  6527. "name": "Fabien Potencier",
  6528. "email": "fabien@symfony.com"
  6529. },
  6530. {
  6531. "name": "Symfony Community",
  6532. "homepage": "https://symfony.com/contributors"
  6533. }
  6534. ],
  6535. "description": "Maps an HTTP request to a set of configuration variables",
  6536. "homepage": "https://symfony.com",
  6537. "keywords": [
  6538. "router",
  6539. "routing",
  6540. "uri",
  6541. "url"
  6542. ],
  6543. "support": {
  6544. "source": "https://github.com/symfony/routing/tree/v6.3.10"
  6545. },
  6546. "funding": [
  6547. {
  6548. "url": "https://symfony.com/sponsor",
  6549. "type": "custom"
  6550. },
  6551. {
  6552. "url": "https://github.com/fabpot",
  6553. "type": "github"
  6554. },
  6555. {
  6556. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6557. "type": "tidelift"
  6558. }
  6559. ],
  6560. "time": "2023-12-01T14:25:58+00:00"
  6561. },
  6562. {
  6563. "name": "symfony/runtime",
  6564. "version": "v6.3.2",
  6565. "source": {
  6566. "type": "git",
  6567. "url": "https://github.com/symfony/runtime.git",
  6568. "reference": "d5c09493647a0c1a16e6c8da308098e840d1164f"
  6569. },
  6570. "dist": {
  6571. "type": "zip",
  6572. "url": "https://api.github.com/repos/symfony/runtime/zipball/d5c09493647a0c1a16e6c8da308098e840d1164f",
  6573. "reference": "d5c09493647a0c1a16e6c8da308098e840d1164f",
  6574. "shasum": ""
  6575. },
  6576. "require": {
  6577. "composer-plugin-api": "^1.0|^2.0",
  6578. "php": ">=8.1"
  6579. },
  6580. "conflict": {
  6581. "symfony/dotenv": "<5.4"
  6582. },
  6583. "require-dev": {
  6584. "composer/composer": "^1.0.2|^2.0",
  6585. "symfony/console": "^5.4.9|^6.0.9",
  6586. "symfony/dotenv": "^5.4|^6.0",
  6587. "symfony/http-foundation": "^5.4|^6.0",
  6588. "symfony/http-kernel": "^5.4|^6.0"
  6589. },
  6590. "type": "composer-plugin",
  6591. "extra": {
  6592. "class": "Symfony\\Component\\Runtime\\Internal\\ComposerPlugin"
  6593. },
  6594. "autoload": {
  6595. "psr-4": {
  6596. "Symfony\\Component\\Runtime\\": "",
  6597. "Symfony\\Runtime\\Symfony\\Component\\": "Internal/"
  6598. },
  6599. "exclude-from-classmap": [
  6600. "/Tests/"
  6601. ]
  6602. },
  6603. "notification-url": "https://packagist.org/downloads/",
  6604. "license": [
  6605. "MIT"
  6606. ],
  6607. "authors": [
  6608. {
  6609. "name": "Nicolas Grekas",
  6610. "email": "p@tchwork.com"
  6611. },
  6612. {
  6613. "name": "Symfony Community",
  6614. "homepage": "https://symfony.com/contributors"
  6615. }
  6616. ],
  6617. "description": "Enables decoupling PHP applications from global state",
  6618. "homepage": "https://symfony.com",
  6619. "keywords": [
  6620. "runtime"
  6621. ],
  6622. "support": {
  6623. "source": "https://github.com/symfony/runtime/tree/v6.3.2"
  6624. },
  6625. "funding": [
  6626. {
  6627. "url": "https://symfony.com/sponsor",
  6628. "type": "custom"
  6629. },
  6630. {
  6631. "url": "https://github.com/fabpot",
  6632. "type": "github"
  6633. },
  6634. {
  6635. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6636. "type": "tidelift"
  6637. }
  6638. ],
  6639. "time": "2023-07-16T17:05:46+00:00"
  6640. },
  6641. {
  6642. "name": "symfony/security-bundle",
  6643. "version": "v6.3.8",
  6644. "source": {
  6645. "type": "git",
  6646. "url": "https://github.com/symfony/security-bundle.git",
  6647. "reference": "57889ebb1ac3403d550c787c4fde127261abacb6"
  6648. },
  6649. "dist": {
  6650. "type": "zip",
  6651. "url": "https://api.github.com/repos/symfony/security-bundle/zipball/57889ebb1ac3403d550c787c4fde127261abacb6",
  6652. "reference": "57889ebb1ac3403d550c787c4fde127261abacb6",
  6653. "shasum": ""
  6654. },
  6655. "require": {
  6656. "composer-runtime-api": ">=2.1",
  6657. "ext-xml": "*",
  6658. "php": ">=8.1",
  6659. "symfony/clock": "^6.3",
  6660. "symfony/config": "^6.1",
  6661. "symfony/dependency-injection": "^6.2",
  6662. "symfony/deprecation-contracts": "^2.5|^3",
  6663. "symfony/event-dispatcher": "^5.4|^6.0",
  6664. "symfony/http-foundation": "^6.2",
  6665. "symfony/http-kernel": "^6.2",
  6666. "symfony/password-hasher": "^5.4|^6.0",
  6667. "symfony/security-core": "^6.2",
  6668. "symfony/security-csrf": "^5.4|^6.0",
  6669. "symfony/security-http": "^6.3.6",
  6670. "symfony/service-contracts": "^2.5|^3"
  6671. },
  6672. "conflict": {
  6673. "symfony/browser-kit": "<5.4",
  6674. "symfony/console": "<5.4",
  6675. "symfony/framework-bundle": "<6.3",
  6676. "symfony/http-client": "<5.4",
  6677. "symfony/ldap": "<5.4",
  6678. "symfony/twig-bundle": "<5.4"
  6679. },
  6680. "require-dev": {
  6681. "doctrine/annotations": "^1.10.4|^2",
  6682. "symfony/asset": "^5.4|^6.0",
  6683. "symfony/browser-kit": "^5.4|^6.0",
  6684. "symfony/console": "^5.4|^6.0",
  6685. "symfony/css-selector": "^5.4|^6.0",
  6686. "symfony/dom-crawler": "^5.4|^6.0",
  6687. "symfony/expression-language": "^5.4|^6.0",
  6688. "symfony/form": "^5.4|^6.0",
  6689. "symfony/framework-bundle": "^6.3",
  6690. "symfony/http-client": "^5.4|^6.0",
  6691. "symfony/ldap": "^5.4|^6.0",
  6692. "symfony/process": "^5.4|^6.0",
  6693. "symfony/rate-limiter": "^5.4|^6.0",
  6694. "symfony/serializer": "^5.4|^6.0",
  6695. "symfony/translation": "^5.4|^6.0",
  6696. "symfony/twig-bridge": "^5.4|^6.0",
  6697. "symfony/twig-bundle": "^5.4|^6.0",
  6698. "symfony/validator": "^5.4|^6.0",
  6699. "symfony/yaml": "^5.4|^6.0",
  6700. "twig/twig": "^2.13|^3.0.4",
  6701. "web-token/jwt-checker": "^3.1",
  6702. "web-token/jwt-signature-algorithm-ecdsa": "^3.1",
  6703. "web-token/jwt-signature-algorithm-eddsa": "^3.1",
  6704. "web-token/jwt-signature-algorithm-hmac": "^3.1",
  6705. "web-token/jwt-signature-algorithm-none": "^3.1",
  6706. "web-token/jwt-signature-algorithm-rsa": "^3.1"
  6707. },
  6708. "type": "symfony-bundle",
  6709. "autoload": {
  6710. "psr-4": {
  6711. "Symfony\\Bundle\\SecurityBundle\\": ""
  6712. },
  6713. "exclude-from-classmap": [
  6714. "/Tests/"
  6715. ]
  6716. },
  6717. "notification-url": "https://packagist.org/downloads/",
  6718. "license": [
  6719. "MIT"
  6720. ],
  6721. "authors": [
  6722. {
  6723. "name": "Fabien Potencier",
  6724. "email": "fabien@symfony.com"
  6725. },
  6726. {
  6727. "name": "Symfony Community",
  6728. "homepage": "https://symfony.com/contributors"
  6729. }
  6730. ],
  6731. "description": "Provides a tight integration of the Security component into the Symfony full-stack framework",
  6732. "homepage": "https://symfony.com",
  6733. "support": {
  6734. "source": "https://github.com/symfony/security-bundle/tree/v6.3.8"
  6735. },
  6736. "funding": [
  6737. {
  6738. "url": "https://symfony.com/sponsor",
  6739. "type": "custom"
  6740. },
  6741. {
  6742. "url": "https://github.com/fabpot",
  6743. "type": "github"
  6744. },
  6745. {
  6746. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6747. "type": "tidelift"
  6748. }
  6749. ],
  6750. "time": "2023-11-09T09:33:10+00:00"
  6751. },
  6752. {
  6753. "name": "symfony/security-core",
  6754. "version": "v6.3.7",
  6755. "source": {
  6756. "type": "git",
  6757. "url": "https://github.com/symfony/security-core.git",
  6758. "reference": "7ceb30fed93f5ea40ccde3173d1f7712527c0d62"
  6759. },
  6760. "dist": {
  6761. "type": "zip",
  6762. "url": "https://api.github.com/repos/symfony/security-core/zipball/7ceb30fed93f5ea40ccde3173d1f7712527c0d62",
  6763. "reference": "7ceb30fed93f5ea40ccde3173d1f7712527c0d62",
  6764. "shasum": ""
  6765. },
  6766. "require": {
  6767. "php": ">=8.1",
  6768. "symfony/deprecation-contracts": "^2.5|^3",
  6769. "symfony/event-dispatcher-contracts": "^2.5|^3",
  6770. "symfony/password-hasher": "^5.4|^6.0",
  6771. "symfony/service-contracts": "^2.5|^3"
  6772. },
  6773. "conflict": {
  6774. "symfony/event-dispatcher": "<5.4",
  6775. "symfony/http-foundation": "<5.4",
  6776. "symfony/ldap": "<5.4",
  6777. "symfony/security-guard": "<5.4",
  6778. "symfony/validator": "<5.4"
  6779. },
  6780. "require-dev": {
  6781. "psr/cache": "^1.0|^2.0|^3.0",
  6782. "psr/container": "^1.1|^2.0",
  6783. "psr/log": "^1|^2|^3",
  6784. "symfony/cache": "^5.4|^6.0",
  6785. "symfony/event-dispatcher": "^5.4|^6.0",
  6786. "symfony/expression-language": "^5.4|^6.0",
  6787. "symfony/http-foundation": "^5.4|^6.0",
  6788. "symfony/ldap": "^5.4|^6.0",
  6789. "symfony/string": "^5.4|^6.0",
  6790. "symfony/translation": "^5.4|^6.0",
  6791. "symfony/validator": "^5.4|^6.0"
  6792. },
  6793. "type": "library",
  6794. "autoload": {
  6795. "psr-4": {
  6796. "Symfony\\Component\\Security\\Core\\": ""
  6797. },
  6798. "exclude-from-classmap": [
  6799. "/Tests/"
  6800. ]
  6801. },
  6802. "notification-url": "https://packagist.org/downloads/",
  6803. "license": [
  6804. "MIT"
  6805. ],
  6806. "authors": [
  6807. {
  6808. "name": "Fabien Potencier",
  6809. "email": "fabien@symfony.com"
  6810. },
  6811. {
  6812. "name": "Symfony Community",
  6813. "homepage": "https://symfony.com/contributors"
  6814. }
  6815. ],
  6816. "description": "Symfony Security Component - Core Library",
  6817. "homepage": "https://symfony.com",
  6818. "support": {
  6819. "source": "https://github.com/symfony/security-core/tree/v6.3.7"
  6820. },
  6821. "funding": [
  6822. {
  6823. "url": "https://symfony.com/sponsor",
  6824. "type": "custom"
  6825. },
  6826. {
  6827. "url": "https://github.com/fabpot",
  6828. "type": "github"
  6829. },
  6830. {
  6831. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6832. "type": "tidelift"
  6833. }
  6834. ],
  6835. "time": "2023-10-28T23:11:45+00:00"
  6836. },
  6837. {
  6838. "name": "symfony/security-csrf",
  6839. "version": "v6.3.2",
  6840. "source": {
  6841. "type": "git",
  6842. "url": "https://github.com/symfony/security-csrf.git",
  6843. "reference": "63d7b098c448cbddb46ea5eda33b68c1ece6eb5b"
  6844. },
  6845. "dist": {
  6846. "type": "zip",
  6847. "url": "https://api.github.com/repos/symfony/security-csrf/zipball/63d7b098c448cbddb46ea5eda33b68c1ece6eb5b",
  6848. "reference": "63d7b098c448cbddb46ea5eda33b68c1ece6eb5b",
  6849. "shasum": ""
  6850. },
  6851. "require": {
  6852. "php": ">=8.1",
  6853. "symfony/security-core": "^5.4|^6.0"
  6854. },
  6855. "conflict": {
  6856. "symfony/http-foundation": "<5.4"
  6857. },
  6858. "require-dev": {
  6859. "symfony/http-foundation": "^5.4|^6.0"
  6860. },
  6861. "type": "library",
  6862. "autoload": {
  6863. "psr-4": {
  6864. "Symfony\\Component\\Security\\Csrf\\": ""
  6865. },
  6866. "exclude-from-classmap": [
  6867. "/Tests/"
  6868. ]
  6869. },
  6870. "notification-url": "https://packagist.org/downloads/",
  6871. "license": [
  6872. "MIT"
  6873. ],
  6874. "authors": [
  6875. {
  6876. "name": "Fabien Potencier",
  6877. "email": "fabien@symfony.com"
  6878. },
  6879. {
  6880. "name": "Symfony Community",
  6881. "homepage": "https://symfony.com/contributors"
  6882. }
  6883. ],
  6884. "description": "Symfony Security Component - CSRF Library",
  6885. "homepage": "https://symfony.com",
  6886. "support": {
  6887. "source": "https://github.com/symfony/security-csrf/tree/v6.3.2"
  6888. },
  6889. "funding": [
  6890. {
  6891. "url": "https://symfony.com/sponsor",
  6892. "type": "custom"
  6893. },
  6894. {
  6895. "url": "https://github.com/fabpot",
  6896. "type": "github"
  6897. },
  6898. {
  6899. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6900. "type": "tidelift"
  6901. }
  6902. ],
  6903. "time": "2023-07-05T08:41:27+00:00"
  6904. },
  6905. {
  6906. "name": "symfony/security-http",
  6907. "version": "v6.3.8",
  6908. "source": {
  6909. "type": "git",
  6910. "url": "https://github.com/symfony/security-http.git",
  6911. "reference": "19f7b5f5d20879a976d6d376e359bc975dfc6002"
  6912. },
  6913. "dist": {
  6914. "type": "zip",
  6915. "url": "https://api.github.com/repos/symfony/security-http/zipball/19f7b5f5d20879a976d6d376e359bc975dfc6002",
  6916. "reference": "19f7b5f5d20879a976d6d376e359bc975dfc6002",
  6917. "shasum": ""
  6918. },
  6919. "require": {
  6920. "php": ">=8.1",
  6921. "symfony/deprecation-contracts": "^2.5|^3",
  6922. "symfony/http-foundation": "^5.4|^6.0",
  6923. "symfony/http-kernel": "^6.3",
  6924. "symfony/polyfill-mbstring": "~1.0",
  6925. "symfony/property-access": "^5.4|^6.0",
  6926. "symfony/security-core": "^6.3",
  6927. "symfony/service-contracts": "^2.5|^3"
  6928. },
  6929. "conflict": {
  6930. "symfony/clock": "<6.3",
  6931. "symfony/event-dispatcher": "<5.4.9|>=6,<6.0.9",
  6932. "symfony/http-client-contracts": "<3.0",
  6933. "symfony/security-bundle": "<5.4",
  6934. "symfony/security-csrf": "<5.4"
  6935. },
  6936. "require-dev": {
  6937. "psr/log": "^1|^2|^3",
  6938. "symfony/cache": "^5.4|^6.0",
  6939. "symfony/clock": "^6.3",
  6940. "symfony/expression-language": "^5.4|^6.0",
  6941. "symfony/http-client-contracts": "^3.0",
  6942. "symfony/rate-limiter": "^5.4|^6.0",
  6943. "symfony/routing": "^5.4|^6.0",
  6944. "symfony/security-csrf": "^5.4|^6.0",
  6945. "symfony/translation": "^5.4|^6.0",
  6946. "web-token/jwt-checker": "^3.1",
  6947. "web-token/jwt-signature-algorithm-ecdsa": "^3.1"
  6948. },
  6949. "type": "library",
  6950. "autoload": {
  6951. "psr-4": {
  6952. "Symfony\\Component\\Security\\Http\\": ""
  6953. },
  6954. "exclude-from-classmap": [
  6955. "/Tests/"
  6956. ]
  6957. },
  6958. "notification-url": "https://packagist.org/downloads/",
  6959. "license": [
  6960. "MIT"
  6961. ],
  6962. "authors": [
  6963. {
  6964. "name": "Fabien Potencier",
  6965. "email": "fabien@symfony.com"
  6966. },
  6967. {
  6968. "name": "Symfony Community",
  6969. "homepage": "https://symfony.com/contributors"
  6970. }
  6971. ],
  6972. "description": "Symfony Security Component - HTTP Integration",
  6973. "homepage": "https://symfony.com",
  6974. "support": {
  6975. "source": "https://github.com/symfony/security-http/tree/v6.3.8"
  6976. },
  6977. "funding": [
  6978. {
  6979. "url": "https://symfony.com/sponsor",
  6980. "type": "custom"
  6981. },
  6982. {
  6983. "url": "https://github.com/fabpot",
  6984. "type": "github"
  6985. },
  6986. {
  6987. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6988. "type": "tidelift"
  6989. }
  6990. ],
  6991. "time": "2023-11-09T21:20:12+00:00"
  6992. },
  6993. {
  6994. "name": "symfony/serializer",
  6995. "version": "v6.3.10",
  6996. "source": {
  6997. "type": "git",
  6998. "url": "https://github.com/symfony/serializer.git",
  6999. "reference": "6eee0fd95f5caa1e77cab29552620ebf8e5b1a5f"
  7000. },
  7001. "dist": {
  7002. "type": "zip",
  7003. "url": "https://api.github.com/repos/symfony/serializer/zipball/6eee0fd95f5caa1e77cab29552620ebf8e5b1a5f",
  7004. "reference": "6eee0fd95f5caa1e77cab29552620ebf8e5b1a5f",
  7005. "shasum": ""
  7006. },
  7007. "require": {
  7008. "php": ">=8.1",
  7009. "symfony/deprecation-contracts": "^2.5|^3",
  7010. "symfony/polyfill-ctype": "~1.8"
  7011. },
  7012. "conflict": {
  7013. "doctrine/annotations": "<1.12",
  7014. "phpdocumentor/reflection-docblock": "<3.2.2",
  7015. "phpdocumentor/type-resolver": "<1.4.0",
  7016. "symfony/dependency-injection": "<5.4",
  7017. "symfony/property-access": "<5.4",
  7018. "symfony/property-info": "<5.4.24|>=6,<6.2.11",
  7019. "symfony/uid": "<5.4",
  7020. "symfony/yaml": "<5.4"
  7021. },
  7022. "require-dev": {
  7023. "doctrine/annotations": "^1.12|^2",
  7024. "phpdocumentor/reflection-docblock": "^3.2|^4.0|^5.0",
  7025. "symfony/cache": "^5.4|^6.0",
  7026. "symfony/config": "^5.4|^6.0",
  7027. "symfony/console": "^5.4|^6.0",
  7028. "symfony/dependency-injection": "^5.4|^6.0",
  7029. "symfony/error-handler": "^5.4|^6.0",
  7030. "symfony/filesystem": "^5.4|^6.0",
  7031. "symfony/form": "^5.4|^6.0",
  7032. "symfony/http-foundation": "^5.4|^6.0",
  7033. "symfony/http-kernel": "^5.4|^6.0",
  7034. "symfony/mime": "^5.4|^6.0",
  7035. "symfony/property-access": "^5.4|^6.0",
  7036. "symfony/property-info": "^5.4.24|^6.2.11",
  7037. "symfony/uid": "^5.4|^6.0",
  7038. "symfony/validator": "^5.4|^6.0",
  7039. "symfony/var-dumper": "^5.4|^6.0",
  7040. "symfony/var-exporter": "^5.4|^6.0",
  7041. "symfony/yaml": "^5.4|^6.0"
  7042. },
  7043. "type": "library",
  7044. "autoload": {
  7045. "psr-4": {
  7046. "Symfony\\Component\\Serializer\\": ""
  7047. },
  7048. "exclude-from-classmap": [
  7049. "/Tests/"
  7050. ]
  7051. },
  7052. "notification-url": "https://packagist.org/downloads/",
  7053. "license": [
  7054. "MIT"
  7055. ],
  7056. "authors": [
  7057. {
  7058. "name": "Fabien Potencier",
  7059. "email": "fabien@symfony.com"
  7060. },
  7061. {
  7062. "name": "Symfony Community",
  7063. "homepage": "https://symfony.com/contributors"
  7064. }
  7065. ],
  7066. "description": "Handles serializing and deserializing data structures, including object graphs, into array structures or other formats like XML and JSON.",
  7067. "homepage": "https://symfony.com",
  7068. "support": {
  7069. "source": "https://github.com/symfony/serializer/tree/v6.3.10"
  7070. },
  7071. "funding": [
  7072. {
  7073. "url": "https://symfony.com/sponsor",
  7074. "type": "custom"
  7075. },
  7076. {
  7077. "url": "https://github.com/fabpot",
  7078. "type": "github"
  7079. },
  7080. {
  7081. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7082. "type": "tidelift"
  7083. }
  7084. ],
  7085. "time": "2023-12-01T14:25:58+00:00"
  7086. },
  7087. {
  7088. "name": "symfony/service-contracts",
  7089. "version": "v3.4.0",
  7090. "source": {
  7091. "type": "git",
  7092. "url": "https://github.com/symfony/service-contracts.git",
  7093. "reference": "b3313c2dbffaf71c8de2934e2ea56ed2291a3838"
  7094. },
  7095. "dist": {
  7096. "type": "zip",
  7097. "url": "https://api.github.com/repos/symfony/service-contracts/zipball/b3313c2dbffaf71c8de2934e2ea56ed2291a3838",
  7098. "reference": "b3313c2dbffaf71c8de2934e2ea56ed2291a3838",
  7099. "shasum": ""
  7100. },
  7101. "require": {
  7102. "php": ">=8.1",
  7103. "psr/container": "^2.0"
  7104. },
  7105. "conflict": {
  7106. "ext-psr": "<1.1|>=2"
  7107. },
  7108. "type": "library",
  7109. "extra": {
  7110. "branch-alias": {
  7111. "dev-main": "3.4-dev"
  7112. },
  7113. "thanks": {
  7114. "name": "symfony/contracts",
  7115. "url": "https://github.com/symfony/contracts"
  7116. }
  7117. },
  7118. "autoload": {
  7119. "psr-4": {
  7120. "Symfony\\Contracts\\Service\\": ""
  7121. },
  7122. "exclude-from-classmap": [
  7123. "/Test/"
  7124. ]
  7125. },
  7126. "notification-url": "https://packagist.org/downloads/",
  7127. "license": [
  7128. "MIT"
  7129. ],
  7130. "authors": [
  7131. {
  7132. "name": "Nicolas Grekas",
  7133. "email": "p@tchwork.com"
  7134. },
  7135. {
  7136. "name": "Symfony Community",
  7137. "homepage": "https://symfony.com/contributors"
  7138. }
  7139. ],
  7140. "description": "Generic abstractions related to writing services",
  7141. "homepage": "https://symfony.com",
  7142. "keywords": [
  7143. "abstractions",
  7144. "contracts",
  7145. "decoupling",
  7146. "interfaces",
  7147. "interoperability",
  7148. "standards"
  7149. ],
  7150. "support": {
  7151. "source": "https://github.com/symfony/service-contracts/tree/v3.4.0"
  7152. },
  7153. "funding": [
  7154. {
  7155. "url": "https://symfony.com/sponsor",
  7156. "type": "custom"
  7157. },
  7158. {
  7159. "url": "https://github.com/fabpot",
  7160. "type": "github"
  7161. },
  7162. {
  7163. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7164. "type": "tidelift"
  7165. }
  7166. ],
  7167. "time": "2023-07-30T20:28:31+00:00"
  7168. },
  7169. {
  7170. "name": "symfony/stopwatch",
  7171. "version": "v6.3.0",
  7172. "source": {
  7173. "type": "git",
  7174. "url": "https://github.com/symfony/stopwatch.git",
  7175. "reference": "fc47f1015ec80927ff64ba9094dfe8b9d48fe9f2"
  7176. },
  7177. "dist": {
  7178. "type": "zip",
  7179. "url": "https://api.github.com/repos/symfony/stopwatch/zipball/fc47f1015ec80927ff64ba9094dfe8b9d48fe9f2",
  7180. "reference": "fc47f1015ec80927ff64ba9094dfe8b9d48fe9f2",
  7181. "shasum": ""
  7182. },
  7183. "require": {
  7184. "php": ">=8.1",
  7185. "symfony/service-contracts": "^2.5|^3"
  7186. },
  7187. "type": "library",
  7188. "autoload": {
  7189. "psr-4": {
  7190. "Symfony\\Component\\Stopwatch\\": ""
  7191. },
  7192. "exclude-from-classmap": [
  7193. "/Tests/"
  7194. ]
  7195. },
  7196. "notification-url": "https://packagist.org/downloads/",
  7197. "license": [
  7198. "MIT"
  7199. ],
  7200. "authors": [
  7201. {
  7202. "name": "Fabien Potencier",
  7203. "email": "fabien@symfony.com"
  7204. },
  7205. {
  7206. "name": "Symfony Community",
  7207. "homepage": "https://symfony.com/contributors"
  7208. }
  7209. ],
  7210. "description": "Provides a way to profile code",
  7211. "homepage": "https://symfony.com",
  7212. "support": {
  7213. "source": "https://github.com/symfony/stopwatch/tree/v6.3.0"
  7214. },
  7215. "funding": [
  7216. {
  7217. "url": "https://symfony.com/sponsor",
  7218. "type": "custom"
  7219. },
  7220. {
  7221. "url": "https://github.com/fabpot",
  7222. "type": "github"
  7223. },
  7224. {
  7225. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7226. "type": "tidelift"
  7227. }
  7228. ],
  7229. "time": "2023-02-16T10:14:28+00:00"
  7230. },
  7231. {
  7232. "name": "symfony/string",
  7233. "version": "v6.3.9",
  7234. "source": {
  7235. "type": "git",
  7236. "url": "https://github.com/symfony/string.git",
  7237. "reference": "56427887aeaf540e9bbd121ad6c43f14ad3ce136"
  7238. },
  7239. "dist": {
  7240. "type": "zip",
  7241. "url": "https://api.github.com/repos/symfony/string/zipball/56427887aeaf540e9bbd121ad6c43f14ad3ce136",
  7242. "reference": "56427887aeaf540e9bbd121ad6c43f14ad3ce136",
  7243. "shasum": ""
  7244. },
  7245. "require": {
  7246. "php": ">=8.1",
  7247. "symfony/polyfill-ctype": "~1.8",
  7248. "symfony/polyfill-intl-grapheme": "~1.0",
  7249. "symfony/polyfill-intl-normalizer": "~1.0",
  7250. "symfony/polyfill-mbstring": "~1.0"
  7251. },
  7252. "conflict": {
  7253. "symfony/translation-contracts": "<2.5"
  7254. },
  7255. "require-dev": {
  7256. "symfony/error-handler": "^5.4|^6.0",
  7257. "symfony/http-client": "^5.4|^6.0",
  7258. "symfony/intl": "^6.2",
  7259. "symfony/translation-contracts": "^2.5|^3.0",
  7260. "symfony/var-exporter": "^5.4|^6.0"
  7261. },
  7262. "type": "library",
  7263. "autoload": {
  7264. "files": [
  7265. "Resources/functions.php"
  7266. ],
  7267. "psr-4": {
  7268. "Symfony\\Component\\String\\": ""
  7269. },
  7270. "exclude-from-classmap": [
  7271. "/Tests/"
  7272. ]
  7273. },
  7274. "notification-url": "https://packagist.org/downloads/",
  7275. "license": [
  7276. "MIT"
  7277. ],
  7278. "authors": [
  7279. {
  7280. "name": "Nicolas Grekas",
  7281. "email": "p@tchwork.com"
  7282. },
  7283. {
  7284. "name": "Symfony Community",
  7285. "homepage": "https://symfony.com/contributors"
  7286. }
  7287. ],
  7288. "description": "Provides an object-oriented API to strings and deals with bytes, UTF-8 code points and grapheme clusters in a unified way",
  7289. "homepage": "https://symfony.com",
  7290. "keywords": [
  7291. "grapheme",
  7292. "i18n",
  7293. "string",
  7294. "unicode",
  7295. "utf-8",
  7296. "utf8"
  7297. ],
  7298. "support": {
  7299. "source": "https://github.com/symfony/string/tree/v6.3.9"
  7300. },
  7301. "funding": [
  7302. {
  7303. "url": "https://symfony.com/sponsor",
  7304. "type": "custom"
  7305. },
  7306. {
  7307. "url": "https://github.com/fabpot",
  7308. "type": "github"
  7309. },
  7310. {
  7311. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7312. "type": "tidelift"
  7313. }
  7314. ],
  7315. "time": "2023-11-28T20:40:29+00:00"
  7316. },
  7317. {
  7318. "name": "symfony/translation",
  7319. "version": "v6.3.7",
  7320. "source": {
  7321. "type": "git",
  7322. "url": "https://github.com/symfony/translation.git",
  7323. "reference": "30212e7c87dcb79c83f6362b00bde0e0b1213499"
  7324. },
  7325. "dist": {
  7326. "type": "zip",
  7327. "url": "https://api.github.com/repos/symfony/translation/zipball/30212e7c87dcb79c83f6362b00bde0e0b1213499",
  7328. "reference": "30212e7c87dcb79c83f6362b00bde0e0b1213499",
  7329. "shasum": ""
  7330. },
  7331. "require": {
  7332. "php": ">=8.1",
  7333. "symfony/deprecation-contracts": "^2.5|^3",
  7334. "symfony/polyfill-mbstring": "~1.0",
  7335. "symfony/translation-contracts": "^2.5|^3.0"
  7336. },
  7337. "conflict": {
  7338. "symfony/config": "<5.4",
  7339. "symfony/console": "<5.4",
  7340. "symfony/dependency-injection": "<5.4",
  7341. "symfony/http-client-contracts": "<2.5",
  7342. "symfony/http-kernel": "<5.4",
  7343. "symfony/service-contracts": "<2.5",
  7344. "symfony/twig-bundle": "<5.4",
  7345. "symfony/yaml": "<5.4"
  7346. },
  7347. "provide": {
  7348. "symfony/translation-implementation": "2.3|3.0"
  7349. },
  7350. "require-dev": {
  7351. "nikic/php-parser": "^4.13",
  7352. "psr/log": "^1|^2|^3",
  7353. "symfony/config": "^5.4|^6.0",
  7354. "symfony/console": "^5.4|^6.0",
  7355. "symfony/dependency-injection": "^5.4|^6.0",
  7356. "symfony/finder": "^5.4|^6.0",
  7357. "symfony/http-client-contracts": "^2.5|^3.0",
  7358. "symfony/http-kernel": "^5.4|^6.0",
  7359. "symfony/intl": "^5.4|^6.0",
  7360. "symfony/polyfill-intl-icu": "^1.21",
  7361. "symfony/routing": "^5.4|^6.0",
  7362. "symfony/service-contracts": "^2.5|^3",
  7363. "symfony/yaml": "^5.4|^6.0"
  7364. },
  7365. "type": "library",
  7366. "autoload": {
  7367. "files": [
  7368. "Resources/functions.php"
  7369. ],
  7370. "psr-4": {
  7371. "Symfony\\Component\\Translation\\": ""
  7372. },
  7373. "exclude-from-classmap": [
  7374. "/Tests/"
  7375. ]
  7376. },
  7377. "notification-url": "https://packagist.org/downloads/",
  7378. "license": [
  7379. "MIT"
  7380. ],
  7381. "authors": [
  7382. {
  7383. "name": "Fabien Potencier",
  7384. "email": "fabien@symfony.com"
  7385. },
  7386. {
  7387. "name": "Symfony Community",
  7388. "homepage": "https://symfony.com/contributors"
  7389. }
  7390. ],
  7391. "description": "Provides tools to internationalize your application",
  7392. "homepage": "https://symfony.com",
  7393. "support": {
  7394. "source": "https://github.com/symfony/translation/tree/v6.3.7"
  7395. },
  7396. "funding": [
  7397. {
  7398. "url": "https://symfony.com/sponsor",
  7399. "type": "custom"
  7400. },
  7401. {
  7402. "url": "https://github.com/fabpot",
  7403. "type": "github"
  7404. },
  7405. {
  7406. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7407. "type": "tidelift"
  7408. }
  7409. ],
  7410. "time": "2023-10-28T23:11:45+00:00"
  7411. },
  7412. {
  7413. "name": "symfony/translation-contracts",
  7414. "version": "v3.4.0",
  7415. "source": {
  7416. "type": "git",
  7417. "url": "https://github.com/symfony/translation-contracts.git",
  7418. "reference": "dee0c6e5b4c07ce851b462530088e64b255ac9c5"
  7419. },
  7420. "dist": {
  7421. "type": "zip",
  7422. "url": "https://api.github.com/repos/symfony/translation-contracts/zipball/dee0c6e5b4c07ce851b462530088e64b255ac9c5",
  7423. "reference": "dee0c6e5b4c07ce851b462530088e64b255ac9c5",
  7424. "shasum": ""
  7425. },
  7426. "require": {
  7427. "php": ">=8.1"
  7428. },
  7429. "type": "library",
  7430. "extra": {
  7431. "branch-alias": {
  7432. "dev-main": "3.4-dev"
  7433. },
  7434. "thanks": {
  7435. "name": "symfony/contracts",
  7436. "url": "https://github.com/symfony/contracts"
  7437. }
  7438. },
  7439. "autoload": {
  7440. "psr-4": {
  7441. "Symfony\\Contracts\\Translation\\": ""
  7442. },
  7443. "exclude-from-classmap": [
  7444. "/Test/"
  7445. ]
  7446. },
  7447. "notification-url": "https://packagist.org/downloads/",
  7448. "license": [
  7449. "MIT"
  7450. ],
  7451. "authors": [
  7452. {
  7453. "name": "Nicolas Grekas",
  7454. "email": "p@tchwork.com"
  7455. },
  7456. {
  7457. "name": "Symfony Community",
  7458. "homepage": "https://symfony.com/contributors"
  7459. }
  7460. ],
  7461. "description": "Generic abstractions related to translation",
  7462. "homepage": "https://symfony.com",
  7463. "keywords": [
  7464. "abstractions",
  7465. "contracts",
  7466. "decoupling",
  7467. "interfaces",
  7468. "interoperability",
  7469. "standards"
  7470. ],
  7471. "support": {
  7472. "source": "https://github.com/symfony/translation-contracts/tree/v3.4.0"
  7473. },
  7474. "funding": [
  7475. {
  7476. "url": "https://symfony.com/sponsor",
  7477. "type": "custom"
  7478. },
  7479. {
  7480. "url": "https://github.com/fabpot",
  7481. "type": "github"
  7482. },
  7483. {
  7484. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7485. "type": "tidelift"
  7486. }
  7487. ],
  7488. "time": "2023-07-25T15:08:44+00:00"
  7489. },
  7490. {
  7491. "name": "symfony/twig-bridge",
  7492. "version": "v6.3.8",
  7493. "source": {
  7494. "type": "git",
  7495. "url": "https://github.com/symfony/twig-bridge.git",
  7496. "reference": "c51407623959a626784ff302419026f56dc4e1ba"
  7497. },
  7498. "dist": {
  7499. "type": "zip",
  7500. "url": "https://api.github.com/repos/symfony/twig-bridge/zipball/c51407623959a626784ff302419026f56dc4e1ba",
  7501. "reference": "c51407623959a626784ff302419026f56dc4e1ba",
  7502. "shasum": ""
  7503. },
  7504. "require": {
  7505. "php": ">=8.1",
  7506. "symfony/translation-contracts": "^2.5|^3",
  7507. "twig/twig": "^2.13|^3.0.4"
  7508. },
  7509. "conflict": {
  7510. "phpdocumentor/reflection-docblock": "<3.2.2",
  7511. "phpdocumentor/type-resolver": "<1.4.0",
  7512. "symfony/console": "<5.4",
  7513. "symfony/form": "<6.3",
  7514. "symfony/http-foundation": "<5.4",
  7515. "symfony/http-kernel": "<6.2",
  7516. "symfony/mime": "<6.2",
  7517. "symfony/translation": "<5.4",
  7518. "symfony/workflow": "<5.4"
  7519. },
  7520. "require-dev": {
  7521. "doctrine/annotations": "^1.12|^2",
  7522. "egulias/email-validator": "^2.1.10|^3|^4",
  7523. "league/html-to-markdown": "^5.0",
  7524. "phpdocumentor/reflection-docblock": "^3.0|^4.0|^5.0",
  7525. "symfony/asset": "^5.4|^6.0",
  7526. "symfony/asset-mapper": "^6.3",
  7527. "symfony/console": "^5.4|^6.0",
  7528. "symfony/dependency-injection": "^5.4|^6.0",
  7529. "symfony/expression-language": "^5.4|^6.0",
  7530. "symfony/finder": "^5.4|^6.0",
  7531. "symfony/form": "^6.3",
  7532. "symfony/html-sanitizer": "^6.1",
  7533. "symfony/http-foundation": "^5.4|^6.0",
  7534. "symfony/http-kernel": "^6.2",
  7535. "symfony/intl": "^5.4|^6.0",
  7536. "symfony/mime": "^6.2",
  7537. "symfony/polyfill-intl-icu": "~1.0",
  7538. "symfony/property-info": "^5.4|^6.0",
  7539. "symfony/routing": "^5.4|^6.0",
  7540. "symfony/security-acl": "^2.8|^3.0",
  7541. "symfony/security-core": "^5.4|^6.0",
  7542. "symfony/security-csrf": "^5.4|^6.0",
  7543. "symfony/security-http": "^5.4|^6.0",
  7544. "symfony/serializer": "^6.2",
  7545. "symfony/stopwatch": "^5.4|^6.0",
  7546. "symfony/translation": "^6.1",
  7547. "symfony/web-link": "^5.4|^6.0",
  7548. "symfony/workflow": "^5.4|^6.0",
  7549. "symfony/yaml": "^5.4|^6.0",
  7550. "twig/cssinliner-extra": "^2.12|^3",
  7551. "twig/inky-extra": "^2.12|^3",
  7552. "twig/markdown-extra": "^2.12|^3"
  7553. },
  7554. "type": "symfony-bridge",
  7555. "autoload": {
  7556. "psr-4": {
  7557. "Symfony\\Bridge\\Twig\\": ""
  7558. },
  7559. "exclude-from-classmap": [
  7560. "/Tests/"
  7561. ]
  7562. },
  7563. "notification-url": "https://packagist.org/downloads/",
  7564. "license": [
  7565. "MIT"
  7566. ],
  7567. "authors": [
  7568. {
  7569. "name": "Fabien Potencier",
  7570. "email": "fabien@symfony.com"
  7571. },
  7572. {
  7573. "name": "Symfony Community",
  7574. "homepage": "https://symfony.com/contributors"
  7575. }
  7576. ],
  7577. "description": "Provides integration for Twig with various Symfony components",
  7578. "homepage": "https://symfony.com",
  7579. "support": {
  7580. "source": "https://github.com/symfony/twig-bridge/tree/v6.3.8"
  7581. },
  7582. "funding": [
  7583. {
  7584. "url": "https://symfony.com/sponsor",
  7585. "type": "custom"
  7586. },
  7587. {
  7588. "url": "https://github.com/fabpot",
  7589. "type": "github"
  7590. },
  7591. {
  7592. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7593. "type": "tidelift"
  7594. }
  7595. ],
  7596. "time": "2023-11-09T21:20:12+00:00"
  7597. },
  7598. {
  7599. "name": "symfony/twig-bundle",
  7600. "version": "v6.3.8",
  7601. "source": {
  7602. "type": "git",
  7603. "url": "https://github.com/symfony/twig-bundle.git",
  7604. "reference": "82429320fe931dd50825ec08140c54b3a315bf79"
  7605. },
  7606. "dist": {
  7607. "type": "zip",
  7608. "url": "https://api.github.com/repos/symfony/twig-bundle/zipball/82429320fe931dd50825ec08140c54b3a315bf79",
  7609. "reference": "82429320fe931dd50825ec08140c54b3a315bf79",
  7610. "shasum": ""
  7611. },
  7612. "require": {
  7613. "composer-runtime-api": ">=2.1",
  7614. "php": ">=8.1",
  7615. "symfony/config": "^6.1",
  7616. "symfony/dependency-injection": "^6.1",
  7617. "symfony/http-foundation": "^5.4|^6.0",
  7618. "symfony/http-kernel": "^6.2",
  7619. "symfony/twig-bridge": "^6.3",
  7620. "twig/twig": "^2.13|^3.0.4"
  7621. },
  7622. "conflict": {
  7623. "symfony/framework-bundle": "<5.4",
  7624. "symfony/translation": "<5.4"
  7625. },
  7626. "require-dev": {
  7627. "doctrine/annotations": "^1.10.4|^2",
  7628. "symfony/asset": "^5.4|^6.0",
  7629. "symfony/expression-language": "^5.4|^6.0",
  7630. "symfony/finder": "^5.4|^6.0",
  7631. "symfony/form": "^5.4|^6.0",
  7632. "symfony/framework-bundle": "^5.4|^6.0",
  7633. "symfony/routing": "^5.4|^6.0",
  7634. "symfony/stopwatch": "^5.4|^6.0",
  7635. "symfony/translation": "^5.4|^6.0",
  7636. "symfony/web-link": "^5.4|^6.0",
  7637. "symfony/yaml": "^5.4|^6.0"
  7638. },
  7639. "type": "symfony-bundle",
  7640. "autoload": {
  7641. "psr-4": {
  7642. "Symfony\\Bundle\\TwigBundle\\": ""
  7643. },
  7644. "exclude-from-classmap": [
  7645. "/Tests/"
  7646. ]
  7647. },
  7648. "notification-url": "https://packagist.org/downloads/",
  7649. "license": [
  7650. "MIT"
  7651. ],
  7652. "authors": [
  7653. {
  7654. "name": "Fabien Potencier",
  7655. "email": "fabien@symfony.com"
  7656. },
  7657. {
  7658. "name": "Symfony Community",
  7659. "homepage": "https://symfony.com/contributors"
  7660. }
  7661. ],
  7662. "description": "Provides a tight integration of Twig into the Symfony full-stack framework",
  7663. "homepage": "https://symfony.com",
  7664. "support": {
  7665. "source": "https://github.com/symfony/twig-bundle/tree/v6.3.8"
  7666. },
  7667. "funding": [
  7668. {
  7669. "url": "https://symfony.com/sponsor",
  7670. "type": "custom"
  7671. },
  7672. {
  7673. "url": "https://github.com/fabpot",
  7674. "type": "github"
  7675. },
  7676. {
  7677. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7678. "type": "tidelift"
  7679. }
  7680. ],
  7681. "time": "2023-10-31T08:07:48+00:00"
  7682. },
  7683. {
  7684. "name": "symfony/validator",
  7685. "version": "v6.3.9",
  7686. "source": {
  7687. "type": "git",
  7688. "url": "https://github.com/symfony/validator.git",
  7689. "reference": "c118889931856af47b0732b609f3ac2ddccd1da6"
  7690. },
  7691. "dist": {
  7692. "type": "zip",
  7693. "url": "https://api.github.com/repos/symfony/validator/zipball/c118889931856af47b0732b609f3ac2ddccd1da6",
  7694. "reference": "c118889931856af47b0732b609f3ac2ddccd1da6",
  7695. "shasum": ""
  7696. },
  7697. "require": {
  7698. "php": ">=8.1",
  7699. "symfony/deprecation-contracts": "^2.5|^3",
  7700. "symfony/polyfill-ctype": "~1.8",
  7701. "symfony/polyfill-mbstring": "~1.0",
  7702. "symfony/polyfill-php83": "^1.27",
  7703. "symfony/translation-contracts": "^2.5|^3"
  7704. },
  7705. "conflict": {
  7706. "doctrine/annotations": "<1.13",
  7707. "doctrine/lexer": "<1.1",
  7708. "symfony/dependency-injection": "<5.4",
  7709. "symfony/expression-language": "<5.4",
  7710. "symfony/http-kernel": "<5.4",
  7711. "symfony/intl": "<5.4",
  7712. "symfony/property-info": "<5.4",
  7713. "symfony/translation": "<5.4",
  7714. "symfony/yaml": "<5.4"
  7715. },
  7716. "require-dev": {
  7717. "doctrine/annotations": "^1.13|^2",
  7718. "egulias/email-validator": "^2.1.10|^3|^4",
  7719. "symfony/cache": "^5.4|^6.0",
  7720. "symfony/config": "^5.4|^6.0",
  7721. "symfony/console": "^5.4|^6.0",
  7722. "symfony/dependency-injection": "^5.4|^6.0",
  7723. "symfony/expression-language": "^5.4|^6.0",
  7724. "symfony/finder": "^5.4|^6.0",
  7725. "symfony/http-client": "^5.4|^6.0",
  7726. "symfony/http-foundation": "^5.4|^6.0",
  7727. "symfony/http-kernel": "^5.4|^6.0",
  7728. "symfony/intl": "^5.4|^6.0",
  7729. "symfony/mime": "^5.4|^6.0",
  7730. "symfony/property-access": "^5.4|^6.0",
  7731. "symfony/property-info": "^5.4|^6.0",
  7732. "symfony/translation": "^5.4|^6.0",
  7733. "symfony/yaml": "^5.4|^6.0"
  7734. },
  7735. "type": "library",
  7736. "autoload": {
  7737. "psr-4": {
  7738. "Symfony\\Component\\Validator\\": ""
  7739. },
  7740. "exclude-from-classmap": [
  7741. "/Tests/"
  7742. ]
  7743. },
  7744. "notification-url": "https://packagist.org/downloads/",
  7745. "license": [
  7746. "MIT"
  7747. ],
  7748. "authors": [
  7749. {
  7750. "name": "Fabien Potencier",
  7751. "email": "fabien@symfony.com"
  7752. },
  7753. {
  7754. "name": "Symfony Community",
  7755. "homepage": "https://symfony.com/contributors"
  7756. }
  7757. ],
  7758. "description": "Provides tools to validate values",
  7759. "homepage": "https://symfony.com",
  7760. "support": {
  7761. "source": "https://github.com/symfony/validator/tree/v6.3.9"
  7762. },
  7763. "funding": [
  7764. {
  7765. "url": "https://symfony.com/sponsor",
  7766. "type": "custom"
  7767. },
  7768. {
  7769. "url": "https://github.com/fabpot",
  7770. "type": "github"
  7771. },
  7772. {
  7773. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7774. "type": "tidelift"
  7775. }
  7776. ],
  7777. "time": "2023-11-29T07:44:47+00:00"
  7778. },
  7779. {
  7780. "name": "symfony/var-dumper",
  7781. "version": "v6.3.8",
  7782. "source": {
  7783. "type": "git",
  7784. "url": "https://github.com/symfony/var-dumper.git",
  7785. "reference": "81acabba9046550e89634876ca64bfcd3c06aa0a"
  7786. },
  7787. "dist": {
  7788. "type": "zip",
  7789. "url": "https://api.github.com/repos/symfony/var-dumper/zipball/81acabba9046550e89634876ca64bfcd3c06aa0a",
  7790. "reference": "81acabba9046550e89634876ca64bfcd3c06aa0a",
  7791. "shasum": ""
  7792. },
  7793. "require": {
  7794. "php": ">=8.1",
  7795. "symfony/deprecation-contracts": "^2.5|^3",
  7796. "symfony/polyfill-mbstring": "~1.0"
  7797. },
  7798. "conflict": {
  7799. "symfony/console": "<5.4"
  7800. },
  7801. "require-dev": {
  7802. "ext-iconv": "*",
  7803. "symfony/console": "^5.4|^6.0",
  7804. "symfony/http-kernel": "^5.4|^6.0",
  7805. "symfony/process": "^5.4|^6.0",
  7806. "symfony/uid": "^5.4|^6.0",
  7807. "twig/twig": "^2.13|^3.0.4"
  7808. },
  7809. "bin": [
  7810. "Resources/bin/var-dump-server"
  7811. ],
  7812. "type": "library",
  7813. "autoload": {
  7814. "files": [
  7815. "Resources/functions/dump.php"
  7816. ],
  7817. "psr-4": {
  7818. "Symfony\\Component\\VarDumper\\": ""
  7819. },
  7820. "exclude-from-classmap": [
  7821. "/Tests/"
  7822. ]
  7823. },
  7824. "notification-url": "https://packagist.org/downloads/",
  7825. "license": [
  7826. "MIT"
  7827. ],
  7828. "authors": [
  7829. {
  7830. "name": "Nicolas Grekas",
  7831. "email": "p@tchwork.com"
  7832. },
  7833. {
  7834. "name": "Symfony Community",
  7835. "homepage": "https://symfony.com/contributors"
  7836. }
  7837. ],
  7838. "description": "Provides mechanisms for walking through any arbitrary PHP variable",
  7839. "homepage": "https://symfony.com",
  7840. "keywords": [
  7841. "debug",
  7842. "dump"
  7843. ],
  7844. "support": {
  7845. "source": "https://github.com/symfony/var-dumper/tree/v6.3.8"
  7846. },
  7847. "funding": [
  7848. {
  7849. "url": "https://symfony.com/sponsor",
  7850. "type": "custom"
  7851. },
  7852. {
  7853. "url": "https://github.com/fabpot",
  7854. "type": "github"
  7855. },
  7856. {
  7857. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7858. "type": "tidelift"
  7859. }
  7860. ],
  7861. "time": "2023-11-08T10:42:36+00:00"
  7862. },
  7863. {
  7864. "name": "symfony/var-exporter",
  7865. "version": "v6.3.10",
  7866. "source": {
  7867. "type": "git",
  7868. "url": "https://github.com/symfony/var-exporter.git",
  7869. "reference": "7bfcf232a9c7e4acad00e96774e340eb86d10bf0"
  7870. },
  7871. "dist": {
  7872. "type": "zip",
  7873. "url": "https://api.github.com/repos/symfony/var-exporter/zipball/7bfcf232a9c7e4acad00e96774e340eb86d10bf0",
  7874. "reference": "7bfcf232a9c7e4acad00e96774e340eb86d10bf0",
  7875. "shasum": ""
  7876. },
  7877. "require": {
  7878. "php": ">=8.1"
  7879. },
  7880. "require-dev": {
  7881. "symfony/var-dumper": "^5.4|^6.0"
  7882. },
  7883. "type": "library",
  7884. "autoload": {
  7885. "psr-4": {
  7886. "Symfony\\Component\\VarExporter\\": ""
  7887. },
  7888. "exclude-from-classmap": [
  7889. "/Tests/"
  7890. ]
  7891. },
  7892. "notification-url": "https://packagist.org/downloads/",
  7893. "license": [
  7894. "MIT"
  7895. ],
  7896. "authors": [
  7897. {
  7898. "name": "Nicolas Grekas",
  7899. "email": "p@tchwork.com"
  7900. },
  7901. {
  7902. "name": "Symfony Community",
  7903. "homepage": "https://symfony.com/contributors"
  7904. }
  7905. ],
  7906. "description": "Allows exporting any serializable PHP data structure to plain PHP code",
  7907. "homepage": "https://symfony.com",
  7908. "keywords": [
  7909. "clone",
  7910. "construct",
  7911. "export",
  7912. "hydrate",
  7913. "instantiate",
  7914. "lazy-loading",
  7915. "proxy",
  7916. "serialize"
  7917. ],
  7918. "support": {
  7919. "source": "https://github.com/symfony/var-exporter/tree/v6.3.10"
  7920. },
  7921. "funding": [
  7922. {
  7923. "url": "https://symfony.com/sponsor",
  7924. "type": "custom"
  7925. },
  7926. {
  7927. "url": "https://github.com/fabpot",
  7928. "type": "github"
  7929. },
  7930. {
  7931. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7932. "type": "tidelift"
  7933. }
  7934. ],
  7935. "time": "2023-11-29T16:00:50+00:00"
  7936. },
  7937. {
  7938. "name": "symfony/web-link",
  7939. "version": "v6.3.0",
  7940. "source": {
  7941. "type": "git",
  7942. "url": "https://github.com/symfony/web-link.git",
  7943. "reference": "0989ca617d0703cdca501a245f10e194ff22315b"
  7944. },
  7945. "dist": {
  7946. "type": "zip",
  7947. "url": "https://api.github.com/repos/symfony/web-link/zipball/0989ca617d0703cdca501a245f10e194ff22315b",
  7948. "reference": "0989ca617d0703cdca501a245f10e194ff22315b",
  7949. "shasum": ""
  7950. },
  7951. "require": {
  7952. "php": ">=8.1",
  7953. "psr/link": "^1.1|^2.0"
  7954. },
  7955. "conflict": {
  7956. "symfony/http-kernel": "<5.4"
  7957. },
  7958. "provide": {
  7959. "psr/link-implementation": "1.0|2.0"
  7960. },
  7961. "require-dev": {
  7962. "symfony/http-kernel": "^5.4|^6.0"
  7963. },
  7964. "type": "library",
  7965. "autoload": {
  7966. "psr-4": {
  7967. "Symfony\\Component\\WebLink\\": ""
  7968. },
  7969. "exclude-from-classmap": [
  7970. "/Tests/"
  7971. ]
  7972. },
  7973. "notification-url": "https://packagist.org/downloads/",
  7974. "license": [
  7975. "MIT"
  7976. ],
  7977. "authors": [
  7978. {
  7979. "name": "Kévin Dunglas",
  7980. "email": "dunglas@gmail.com"
  7981. },
  7982. {
  7983. "name": "Symfony Community",
  7984. "homepage": "https://symfony.com/contributors"
  7985. }
  7986. ],
  7987. "description": "Manages links between resources",
  7988. "homepage": "https://symfony.com",
  7989. "keywords": [
  7990. "dns-prefetch",
  7991. "http",
  7992. "http2",
  7993. "link",
  7994. "performance",
  7995. "prefetch",
  7996. "preload",
  7997. "prerender",
  7998. "psr13",
  7999. "push"
  8000. ],
  8001. "support": {
  8002. "source": "https://github.com/symfony/web-link/tree/v6.3.0"
  8003. },
  8004. "funding": [
  8005. {
  8006. "url": "https://symfony.com/sponsor",
  8007. "type": "custom"
  8008. },
  8009. {
  8010. "url": "https://github.com/fabpot",
  8011. "type": "github"
  8012. },
  8013. {
  8014. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8015. "type": "tidelift"
  8016. }
  8017. ],
  8018. "time": "2023-04-21T14:41:17+00:00"
  8019. },
  8020. {
  8021. "name": "symfony/webpack-encore-bundle",
  8022. "version": "v1.17.2",
  8023. "source": {
  8024. "type": "git",
  8025. "url": "https://github.com/symfony/webpack-encore-bundle.git",
  8026. "reference": "471ebbc03072dad6e31840dc317bc634a32785f5"
  8027. },
  8028. "dist": {
  8029. "type": "zip",
  8030. "url": "https://api.github.com/repos/symfony/webpack-encore-bundle/zipball/471ebbc03072dad6e31840dc317bc634a32785f5",
  8031. "reference": "471ebbc03072dad6e31840dc317bc634a32785f5",
  8032. "shasum": ""
  8033. },
  8034. "require": {
  8035. "php": ">=7.1.3",
  8036. "symfony/asset": "^4.4 || ^5.0 || ^6.0",
  8037. "symfony/config": "^4.4 || ^5.0 || ^6.0",
  8038. "symfony/dependency-injection": "^4.4 || ^5.0 || ^6.0",
  8039. "symfony/deprecation-contracts": "^2.1 || ^3.0",
  8040. "symfony/http-kernel": "^4.4 || ^5.0 || ^6.0",
  8041. "symfony/polyfill-php80": "^1.25.0",
  8042. "symfony/service-contracts": "^1.0 || ^2.0 || ^3.0"
  8043. },
  8044. "require-dev": {
  8045. "symfony/framework-bundle": "^4.4 || ^5.0 || ^6.0",
  8046. "symfony/phpunit-bridge": "^5.3 || ^6.0",
  8047. "symfony/twig-bundle": "^4.4 || ^5.0 || ^6.0",
  8048. "symfony/web-link": "^4.4 || ^5.0 || ^6.0"
  8049. },
  8050. "type": "symfony-bundle",
  8051. "extra": {
  8052. "thanks": {
  8053. "name": "symfony/webpack-encore",
  8054. "url": "https://github.com/symfony/webpack-encore"
  8055. }
  8056. },
  8057. "autoload": {
  8058. "psr-4": {
  8059. "Symfony\\WebpackEncoreBundle\\": "src"
  8060. }
  8061. },
  8062. "notification-url": "https://packagist.org/downloads/",
  8063. "license": [
  8064. "MIT"
  8065. ],
  8066. "authors": [
  8067. {
  8068. "name": "Symfony Community",
  8069. "homepage": "https://symfony.com/contributors"
  8070. }
  8071. ],
  8072. "description": "Integration with your Symfony app & Webpack Encore!",
  8073. "support": {
  8074. "issues": "https://github.com/symfony/webpack-encore-bundle/issues",
  8075. "source": "https://github.com/symfony/webpack-encore-bundle/tree/v1.17.2"
  8076. },
  8077. "funding": [
  8078. {
  8079. "url": "https://symfony.com/sponsor",
  8080. "type": "custom"
  8081. },
  8082. {
  8083. "url": "https://github.com/fabpot",
  8084. "type": "github"
  8085. },
  8086. {
  8087. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8088. "type": "tidelift"
  8089. }
  8090. ],
  8091. "time": "2023-09-26T14:36:28+00:00"
  8092. },
  8093. {
  8094. "name": "symfony/yaml",
  8095. "version": "v6.3.8",
  8096. "source": {
  8097. "type": "git",
  8098. "url": "https://github.com/symfony/yaml.git",
  8099. "reference": "3493af8a8dad7fa91c77fa473ba23ecd95334a92"
  8100. },
  8101. "dist": {
  8102. "type": "zip",
  8103. "url": "https://api.github.com/repos/symfony/yaml/zipball/3493af8a8dad7fa91c77fa473ba23ecd95334a92",
  8104. "reference": "3493af8a8dad7fa91c77fa473ba23ecd95334a92",
  8105. "shasum": ""
  8106. },
  8107. "require": {
  8108. "php": ">=8.1",
  8109. "symfony/deprecation-contracts": "^2.5|^3",
  8110. "symfony/polyfill-ctype": "^1.8"
  8111. },
  8112. "conflict": {
  8113. "symfony/console": "<5.4"
  8114. },
  8115. "require-dev": {
  8116. "symfony/console": "^5.4|^6.0"
  8117. },
  8118. "bin": [
  8119. "Resources/bin/yaml-lint"
  8120. ],
  8121. "type": "library",
  8122. "autoload": {
  8123. "psr-4": {
  8124. "Symfony\\Component\\Yaml\\": ""
  8125. },
  8126. "exclude-from-classmap": [
  8127. "/Tests/"
  8128. ]
  8129. },
  8130. "notification-url": "https://packagist.org/downloads/",
  8131. "license": [
  8132. "MIT"
  8133. ],
  8134. "authors": [
  8135. {
  8136. "name": "Fabien Potencier",
  8137. "email": "fabien@symfony.com"
  8138. },
  8139. {
  8140. "name": "Symfony Community",
  8141. "homepage": "https://symfony.com/contributors"
  8142. }
  8143. ],
  8144. "description": "Loads and dumps YAML files",
  8145. "homepage": "https://symfony.com",
  8146. "support": {
  8147. "source": "https://github.com/symfony/yaml/tree/v6.3.8"
  8148. },
  8149. "funding": [
  8150. {
  8151. "url": "https://symfony.com/sponsor",
  8152. "type": "custom"
  8153. },
  8154. {
  8155. "url": "https://github.com/fabpot",
  8156. "type": "github"
  8157. },
  8158. {
  8159. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8160. "type": "tidelift"
  8161. }
  8162. ],
  8163. "time": "2023-11-06T10:58:05+00:00"
  8164. },
  8165. {
  8166. "name": "twig/extra-bundle",
  8167. "version": "v3.8.0",
  8168. "source": {
  8169. "type": "git",
  8170. "url": "https://github.com/twigphp/twig-extra-bundle.git",
  8171. "reference": "32807183753de0388c8e59f7ac2d13bb47311140"
  8172. },
  8173. "dist": {
  8174. "type": "zip",
  8175. "url": "https://api.github.com/repos/twigphp/twig-extra-bundle/zipball/32807183753de0388c8e59f7ac2d13bb47311140",
  8176. "reference": "32807183753de0388c8e59f7ac2d13bb47311140",
  8177. "shasum": ""
  8178. },
  8179. "require": {
  8180. "php": ">=7.2.5",
  8181. "symfony/framework-bundle": "^5.4|^6.0|^7.0",
  8182. "symfony/twig-bundle": "^5.4|^6.0|^7.0",
  8183. "twig/twig": "^3.0"
  8184. },
  8185. "require-dev": {
  8186. "league/commonmark": "^1.0|^2.0",
  8187. "symfony/phpunit-bridge": "^6.4|^7.0",
  8188. "twig/cache-extra": "^3.0",
  8189. "twig/cssinliner-extra": "^2.12|^3.0",
  8190. "twig/html-extra": "^2.12|^3.0",
  8191. "twig/inky-extra": "^2.12|^3.0",
  8192. "twig/intl-extra": "^2.12|^3.0",
  8193. "twig/markdown-extra": "^2.12|^3.0",
  8194. "twig/string-extra": "^2.12|^3.0"
  8195. },
  8196. "type": "symfony-bundle",
  8197. "autoload": {
  8198. "psr-4": {
  8199. "Twig\\Extra\\TwigExtraBundle\\": ""
  8200. },
  8201. "exclude-from-classmap": [
  8202. "/Tests/"
  8203. ]
  8204. },
  8205. "notification-url": "https://packagist.org/downloads/",
  8206. "license": [
  8207. "MIT"
  8208. ],
  8209. "authors": [
  8210. {
  8211. "name": "Fabien Potencier",
  8212. "email": "fabien@symfony.com",
  8213. "homepage": "http://fabien.potencier.org",
  8214. "role": "Lead Developer"
  8215. }
  8216. ],
  8217. "description": "A Symfony bundle for extra Twig extensions",
  8218. "homepage": "https://twig.symfony.com",
  8219. "keywords": [
  8220. "bundle",
  8221. "extra",
  8222. "twig"
  8223. ],
  8224. "support": {
  8225. "source": "https://github.com/twigphp/twig-extra-bundle/tree/v3.8.0"
  8226. },
  8227. "funding": [
  8228. {
  8229. "url": "https://github.com/fabpot",
  8230. "type": "github"
  8231. },
  8232. {
  8233. "url": "https://tidelift.com/funding/github/packagist/twig/twig",
  8234. "type": "tidelift"
  8235. }
  8236. ],
  8237. "time": "2023-11-21T14:02:01+00:00"
  8238. },
  8239. {
  8240. "name": "twig/markdown-extra",
  8241. "version": "v3.8.0",
  8242. "source": {
  8243. "type": "git",
  8244. "url": "https://github.com/twigphp/markdown-extra.git",
  8245. "reference": "b6e4954ab60030233df5d293886b5404558daac8"
  8246. },
  8247. "dist": {
  8248. "type": "zip",
  8249. "url": "https://api.github.com/repos/twigphp/markdown-extra/zipball/b6e4954ab60030233df5d293886b5404558daac8",
  8250. "reference": "b6e4954ab60030233df5d293886b5404558daac8",
  8251. "shasum": ""
  8252. },
  8253. "require": {
  8254. "php": ">=7.2.5",
  8255. "twig/twig": "^3.0"
  8256. },
  8257. "require-dev": {
  8258. "erusev/parsedown": "^1.7",
  8259. "league/commonmark": "^1.0|^2.0",
  8260. "league/html-to-markdown": "^4.8|^5.0",
  8261. "michelf/php-markdown": "^1.8|^2.0",
  8262. "symfony/phpunit-bridge": "^6.4|^7.0"
  8263. },
  8264. "type": "library",
  8265. "autoload": {
  8266. "psr-4": {
  8267. "Twig\\Extra\\Markdown\\": ""
  8268. },
  8269. "exclude-from-classmap": [
  8270. "/Tests/"
  8271. ]
  8272. },
  8273. "notification-url": "https://packagist.org/downloads/",
  8274. "license": [
  8275. "MIT"
  8276. ],
  8277. "authors": [
  8278. {
  8279. "name": "Fabien Potencier",
  8280. "email": "fabien@symfony.com",
  8281. "homepage": "http://fabien.potencier.org",
  8282. "role": "Lead Developer"
  8283. }
  8284. ],
  8285. "description": "A Twig extension for Markdown",
  8286. "homepage": "https://twig.symfony.com",
  8287. "keywords": [
  8288. "html",
  8289. "markdown",
  8290. "twig"
  8291. ],
  8292. "support": {
  8293. "source": "https://github.com/twigphp/markdown-extra/tree/v3.8.0"
  8294. },
  8295. "funding": [
  8296. {
  8297. "url": "https://github.com/fabpot",
  8298. "type": "github"
  8299. },
  8300. {
  8301. "url": "https://tidelift.com/funding/github/packagist/twig/twig",
  8302. "type": "tidelift"
  8303. }
  8304. ],
  8305. "time": "2023-11-21T14:02:01+00:00"
  8306. },
  8307. {
  8308. "name": "twig/twig",
  8309. "version": "v3.8.0",
  8310. "source": {
  8311. "type": "git",
  8312. "url": "https://github.com/twigphp/Twig.git",
  8313. "reference": "9d15f0ac07f44dc4217883ec6ae02fd555c6f71d"
  8314. },
  8315. "dist": {
  8316. "type": "zip",
  8317. "url": "https://api.github.com/repos/twigphp/Twig/zipball/9d15f0ac07f44dc4217883ec6ae02fd555c6f71d",
  8318. "reference": "9d15f0ac07f44dc4217883ec6ae02fd555c6f71d",
  8319. "shasum": ""
  8320. },
  8321. "require": {
  8322. "php": ">=7.2.5",
  8323. "symfony/polyfill-ctype": "^1.8",
  8324. "symfony/polyfill-mbstring": "^1.3",
  8325. "symfony/polyfill-php80": "^1.22"
  8326. },
  8327. "require-dev": {
  8328. "psr/container": "^1.0|^2.0",
  8329. "symfony/phpunit-bridge": "^5.4.9|^6.3|^7.0"
  8330. },
  8331. "type": "library",
  8332. "autoload": {
  8333. "psr-4": {
  8334. "Twig\\": "src/"
  8335. }
  8336. },
  8337. "notification-url": "https://packagist.org/downloads/",
  8338. "license": [
  8339. "BSD-3-Clause"
  8340. ],
  8341. "authors": [
  8342. {
  8343. "name": "Fabien Potencier",
  8344. "email": "fabien@symfony.com",
  8345. "homepage": "http://fabien.potencier.org",
  8346. "role": "Lead Developer"
  8347. },
  8348. {
  8349. "name": "Twig Team",
  8350. "role": "Contributors"
  8351. },
  8352. {
  8353. "name": "Armin Ronacher",
  8354. "email": "armin.ronacher@active-4.com",
  8355. "role": "Project Founder"
  8356. }
  8357. ],
  8358. "description": "Twig, the flexible, fast, and secure template language for PHP",
  8359. "homepage": "https://twig.symfony.com",
  8360. "keywords": [
  8361. "templating"
  8362. ],
  8363. "support": {
  8364. "issues": "https://github.com/twigphp/Twig/issues",
  8365. "source": "https://github.com/twigphp/Twig/tree/v3.8.0"
  8366. },
  8367. "funding": [
  8368. {
  8369. "url": "https://github.com/fabpot",
  8370. "type": "github"
  8371. },
  8372. {
  8373. "url": "https://tidelift.com/funding/github/packagist/twig/twig",
  8374. "type": "tidelift"
  8375. }
  8376. ],
  8377. "time": "2023-11-21T18:54:41+00:00"
  8378. },
  8379. {
  8380. "name": "webmozart/assert",
  8381. "version": "1.11.0",
  8382. "source": {
  8383. "type": "git",
  8384. "url": "https://github.com/webmozarts/assert.git",
  8385. "reference": "11cb2199493b2f8a3b53e7f19068fc6aac760991"
  8386. },
  8387. "dist": {
  8388. "type": "zip",
  8389. "url": "https://api.github.com/repos/webmozarts/assert/zipball/11cb2199493b2f8a3b53e7f19068fc6aac760991",
  8390. "reference": "11cb2199493b2f8a3b53e7f19068fc6aac760991",
  8391. "shasum": ""
  8392. },
  8393. "require": {
  8394. "ext-ctype": "*",
  8395. "php": "^7.2 || ^8.0"
  8396. },
  8397. "conflict": {
  8398. "phpstan/phpstan": "<0.12.20",
  8399. "vimeo/psalm": "<4.6.1 || 4.6.2"
  8400. },
  8401. "require-dev": {
  8402. "phpunit/phpunit": "^8.5.13"
  8403. },
  8404. "type": "library",
  8405. "extra": {
  8406. "branch-alias": {
  8407. "dev-master": "1.10-dev"
  8408. }
  8409. },
  8410. "autoload": {
  8411. "psr-4": {
  8412. "Webmozart\\Assert\\": "src/"
  8413. }
  8414. },
  8415. "notification-url": "https://packagist.org/downloads/",
  8416. "license": [
  8417. "MIT"
  8418. ],
  8419. "authors": [
  8420. {
  8421. "name": "Bernhard Schussek",
  8422. "email": "bschussek@gmail.com"
  8423. }
  8424. ],
  8425. "description": "Assertions to validate method input/output with nice error messages.",
  8426. "keywords": [
  8427. "assert",
  8428. "check",
  8429. "validate"
  8430. ],
  8431. "support": {
  8432. "issues": "https://github.com/webmozarts/assert/issues",
  8433. "source": "https://github.com/webmozarts/assert/tree/1.11.0"
  8434. },
  8435. "time": "2022-06-03T18:03:27+00:00"
  8436. }
  8437. ],
  8438. "packages-dev": [
  8439. {
  8440. "name": "myclabs/deep-copy",
  8441. "version": "1.11.1",
  8442. "source": {
  8443. "type": "git",
  8444. "url": "https://github.com/myclabs/DeepCopy.git",
  8445. "reference": "7284c22080590fb39f2ffa3e9057f10a4ddd0e0c"
  8446. },
  8447. "dist": {
  8448. "type": "zip",
  8449. "url": "https://api.github.com/repos/myclabs/DeepCopy/zipball/7284c22080590fb39f2ffa3e9057f10a4ddd0e0c",
  8450. "reference": "7284c22080590fb39f2ffa3e9057f10a4ddd0e0c",
  8451. "shasum": ""
  8452. },
  8453. "require": {
  8454. "php": "^7.1 || ^8.0"
  8455. },
  8456. "conflict": {
  8457. "doctrine/collections": "<1.6.8",
  8458. "doctrine/common": "<2.13.3 || >=3,<3.2.2"
  8459. },
  8460. "require-dev": {
  8461. "doctrine/collections": "^1.6.8",
  8462. "doctrine/common": "^2.13.3 || ^3.2.2",
  8463. "phpunit/phpunit": "^7.5.20 || ^8.5.23 || ^9.5.13"
  8464. },
  8465. "type": "library",
  8466. "autoload": {
  8467. "files": [
  8468. "src/DeepCopy/deep_copy.php"
  8469. ],
  8470. "psr-4": {
  8471. "DeepCopy\\": "src/DeepCopy/"
  8472. }
  8473. },
  8474. "notification-url": "https://packagist.org/downloads/",
  8475. "license": [
  8476. "MIT"
  8477. ],
  8478. "description": "Create deep copies (clones) of your objects",
  8479. "keywords": [
  8480. "clone",
  8481. "copy",
  8482. "duplicate",
  8483. "object",
  8484. "object graph"
  8485. ],
  8486. "support": {
  8487. "issues": "https://github.com/myclabs/DeepCopy/issues",
  8488. "source": "https://github.com/myclabs/DeepCopy/tree/1.11.1"
  8489. },
  8490. "funding": [
  8491. {
  8492. "url": "https://tidelift.com/funding/github/packagist/myclabs/deep-copy",
  8493. "type": "tidelift"
  8494. }
  8495. ],
  8496. "time": "2023-03-08T13:26:56+00:00"
  8497. },
  8498. {
  8499. "name": "nikic/php-parser",
  8500. "version": "v4.18.0",
  8501. "source": {
  8502. "type": "git",
  8503. "url": "https://github.com/nikic/PHP-Parser.git",
  8504. "reference": "1bcbb2179f97633e98bbbc87044ee2611c7d7999"
  8505. },
  8506. "dist": {
  8507. "type": "zip",
  8508. "url": "https://api.github.com/repos/nikic/PHP-Parser/zipball/1bcbb2179f97633e98bbbc87044ee2611c7d7999",
  8509. "reference": "1bcbb2179f97633e98bbbc87044ee2611c7d7999",
  8510. "shasum": ""
  8511. },
  8512. "require": {
  8513. "ext-tokenizer": "*",
  8514. "php": ">=7.0"
  8515. },
  8516. "require-dev": {
  8517. "ircmaxell/php-yacc": "^0.0.7",
  8518. "phpunit/phpunit": "^6.5 || ^7.0 || ^8.0 || ^9.0"
  8519. },
  8520. "bin": [
  8521. "bin/php-parse"
  8522. ],
  8523. "type": "library",
  8524. "extra": {
  8525. "branch-alias": {
  8526. "dev-master": "4.9-dev"
  8527. }
  8528. },
  8529. "autoload": {
  8530. "psr-4": {
  8531. "PhpParser\\": "lib/PhpParser"
  8532. }
  8533. },
  8534. "notification-url": "https://packagist.org/downloads/",
  8535. "license": [
  8536. "BSD-3-Clause"
  8537. ],
  8538. "authors": [
  8539. {
  8540. "name": "Nikita Popov"
  8541. }
  8542. ],
  8543. "description": "A PHP parser written in PHP",
  8544. "keywords": [
  8545. "parser",
  8546. "php"
  8547. ],
  8548. "support": {
  8549. "issues": "https://github.com/nikic/PHP-Parser/issues",
  8550. "source": "https://github.com/nikic/PHP-Parser/tree/v4.18.0"
  8551. },
  8552. "time": "2023-12-10T21:03:43+00:00"
  8553. },
  8554. {
  8555. "name": "phar-io/manifest",
  8556. "version": "2.0.3",
  8557. "source": {
  8558. "type": "git",
  8559. "url": "https://github.com/phar-io/manifest.git",
  8560. "reference": "97803eca37d319dfa7826cc2437fc020857acb53"
  8561. },
  8562. "dist": {
  8563. "type": "zip",
  8564. "url": "https://api.github.com/repos/phar-io/manifest/zipball/97803eca37d319dfa7826cc2437fc020857acb53",
  8565. "reference": "97803eca37d319dfa7826cc2437fc020857acb53",
  8566. "shasum": ""
  8567. },
  8568. "require": {
  8569. "ext-dom": "*",
  8570. "ext-phar": "*",
  8571. "ext-xmlwriter": "*",
  8572. "phar-io/version": "^3.0.1",
  8573. "php": "^7.2 || ^8.0"
  8574. },
  8575. "type": "library",
  8576. "extra": {
  8577. "branch-alias": {
  8578. "dev-master": "2.0.x-dev"
  8579. }
  8580. },
  8581. "autoload": {
  8582. "classmap": [
  8583. "src/"
  8584. ]
  8585. },
  8586. "notification-url": "https://packagist.org/downloads/",
  8587. "license": [
  8588. "BSD-3-Clause"
  8589. ],
  8590. "authors": [
  8591. {
  8592. "name": "Arne Blankerts",
  8593. "email": "arne@blankerts.de",
  8594. "role": "Developer"
  8595. },
  8596. {
  8597. "name": "Sebastian Heuer",
  8598. "email": "sebastian@phpeople.de",
  8599. "role": "Developer"
  8600. },
  8601. {
  8602. "name": "Sebastian Bergmann",
  8603. "email": "sebastian@phpunit.de",
  8604. "role": "Developer"
  8605. }
  8606. ],
  8607. "description": "Component for reading phar.io manifest information from a PHP Archive (PHAR)",
  8608. "support": {
  8609. "issues": "https://github.com/phar-io/manifest/issues",
  8610. "source": "https://github.com/phar-io/manifest/tree/2.0.3"
  8611. },
  8612. "time": "2021-07-20T11:28:43+00:00"
  8613. },
  8614. {
  8615. "name": "phar-io/version",
  8616. "version": "3.2.1",
  8617. "source": {
  8618. "type": "git",
  8619. "url": "https://github.com/phar-io/version.git",
  8620. "reference": "4f7fd7836c6f332bb2933569e566a0d6c4cbed74"
  8621. },
  8622. "dist": {
  8623. "type": "zip",
  8624. "url": "https://api.github.com/repos/phar-io/version/zipball/4f7fd7836c6f332bb2933569e566a0d6c4cbed74",
  8625. "reference": "4f7fd7836c6f332bb2933569e566a0d6c4cbed74",
  8626. "shasum": ""
  8627. },
  8628. "require": {
  8629. "php": "^7.2 || ^8.0"
  8630. },
  8631. "type": "library",
  8632. "autoload": {
  8633. "classmap": [
  8634. "src/"
  8635. ]
  8636. },
  8637. "notification-url": "https://packagist.org/downloads/",
  8638. "license": [
  8639. "BSD-3-Clause"
  8640. ],
  8641. "authors": [
  8642. {
  8643. "name": "Arne Blankerts",
  8644. "email": "arne@blankerts.de",
  8645. "role": "Developer"
  8646. },
  8647. {
  8648. "name": "Sebastian Heuer",
  8649. "email": "sebastian@phpeople.de",
  8650. "role": "Developer"
  8651. },
  8652. {
  8653. "name": "Sebastian Bergmann",
  8654. "email": "sebastian@phpunit.de",
  8655. "role": "Developer"
  8656. }
  8657. ],
  8658. "description": "Library for handling version information and constraints",
  8659. "support": {
  8660. "issues": "https://github.com/phar-io/version/issues",
  8661. "source": "https://github.com/phar-io/version/tree/3.2.1"
  8662. },
  8663. "time": "2022-02-21T01:04:05+00:00"
  8664. },
  8665. {
  8666. "name": "phpunit/php-code-coverage",
  8667. "version": "9.2.30",
  8668. "source": {
  8669. "type": "git",
  8670. "url": "https://github.com/sebastianbergmann/php-code-coverage.git",
  8671. "reference": "ca2bd87d2f9215904682a9cb9bb37dda98e76089"
  8672. },
  8673. "dist": {
  8674. "type": "zip",
  8675. "url": "https://api.github.com/repos/sebastianbergmann/php-code-coverage/zipball/ca2bd87d2f9215904682a9cb9bb37dda98e76089",
  8676. "reference": "ca2bd87d2f9215904682a9cb9bb37dda98e76089",
  8677. "shasum": ""
  8678. },
  8679. "require": {
  8680. "ext-dom": "*",
  8681. "ext-libxml": "*",
  8682. "ext-xmlwriter": "*",
  8683. "nikic/php-parser": "^4.18 || ^5.0",
  8684. "php": ">=7.3",
  8685. "phpunit/php-file-iterator": "^3.0.3",
  8686. "phpunit/php-text-template": "^2.0.2",
  8687. "sebastian/code-unit-reverse-lookup": "^2.0.2",
  8688. "sebastian/complexity": "^2.0",
  8689. "sebastian/environment": "^5.1.2",
  8690. "sebastian/lines-of-code": "^1.0.3",
  8691. "sebastian/version": "^3.0.1",
  8692. "theseer/tokenizer": "^1.2.0"
  8693. },
  8694. "require-dev": {
  8695. "phpunit/phpunit": "^9.3"
  8696. },
  8697. "suggest": {
  8698. "ext-pcov": "PHP extension that provides line coverage",
  8699. "ext-xdebug": "PHP extension that provides line coverage as well as branch and path coverage"
  8700. },
  8701. "type": "library",
  8702. "extra": {
  8703. "branch-alias": {
  8704. "dev-master": "9.2-dev"
  8705. }
  8706. },
  8707. "autoload": {
  8708. "classmap": [
  8709. "src/"
  8710. ]
  8711. },
  8712. "notification-url": "https://packagist.org/downloads/",
  8713. "license": [
  8714. "BSD-3-Clause"
  8715. ],
  8716. "authors": [
  8717. {
  8718. "name": "Sebastian Bergmann",
  8719. "email": "sebastian@phpunit.de",
  8720. "role": "lead"
  8721. }
  8722. ],
  8723. "description": "Library that provides collection, processing, and rendering functionality for PHP code coverage information.",
  8724. "homepage": "https://github.com/sebastianbergmann/php-code-coverage",
  8725. "keywords": [
  8726. "coverage",
  8727. "testing",
  8728. "xunit"
  8729. ],
  8730. "support": {
  8731. "issues": "https://github.com/sebastianbergmann/php-code-coverage/issues",
  8732. "security": "https://github.com/sebastianbergmann/php-code-coverage/security/policy",
  8733. "source": "https://github.com/sebastianbergmann/php-code-coverage/tree/9.2.30"
  8734. },
  8735. "funding": [
  8736. {
  8737. "url": "https://github.com/sebastianbergmann",
  8738. "type": "github"
  8739. }
  8740. ],
  8741. "time": "2023-12-22T06:47:57+00:00"
  8742. },
  8743. {
  8744. "name": "phpunit/php-file-iterator",
  8745. "version": "3.0.6",
  8746. "source": {
  8747. "type": "git",
  8748. "url": "https://github.com/sebastianbergmann/php-file-iterator.git",
  8749. "reference": "cf1c2e7c203ac650e352f4cc675a7021e7d1b3cf"
  8750. },
  8751. "dist": {
  8752. "type": "zip",
  8753. "url": "https://api.github.com/repos/sebastianbergmann/php-file-iterator/zipball/cf1c2e7c203ac650e352f4cc675a7021e7d1b3cf",
  8754. "reference": "cf1c2e7c203ac650e352f4cc675a7021e7d1b3cf",
  8755. "shasum": ""
  8756. },
  8757. "require": {
  8758. "php": ">=7.3"
  8759. },
  8760. "require-dev": {
  8761. "phpunit/phpunit": "^9.3"
  8762. },
  8763. "type": "library",
  8764. "extra": {
  8765. "branch-alias": {
  8766. "dev-master": "3.0-dev"
  8767. }
  8768. },
  8769. "autoload": {
  8770. "classmap": [
  8771. "src/"
  8772. ]
  8773. },
  8774. "notification-url": "https://packagist.org/downloads/",
  8775. "license": [
  8776. "BSD-3-Clause"
  8777. ],
  8778. "authors": [
  8779. {
  8780. "name": "Sebastian Bergmann",
  8781. "email": "sebastian@phpunit.de",
  8782. "role": "lead"
  8783. }
  8784. ],
  8785. "description": "FilterIterator implementation that filters files based on a list of suffixes.",
  8786. "homepage": "https://github.com/sebastianbergmann/php-file-iterator/",
  8787. "keywords": [
  8788. "filesystem",
  8789. "iterator"
  8790. ],
  8791. "support": {
  8792. "issues": "https://github.com/sebastianbergmann/php-file-iterator/issues",
  8793. "source": "https://github.com/sebastianbergmann/php-file-iterator/tree/3.0.6"
  8794. },
  8795. "funding": [
  8796. {
  8797. "url": "https://github.com/sebastianbergmann",
  8798. "type": "github"
  8799. }
  8800. ],
  8801. "time": "2021-12-02T12:48:52+00:00"
  8802. },
  8803. {
  8804. "name": "phpunit/php-invoker",
  8805. "version": "3.1.1",
  8806. "source": {
  8807. "type": "git",
  8808. "url": "https://github.com/sebastianbergmann/php-invoker.git",
  8809. "reference": "5a10147d0aaf65b58940a0b72f71c9ac0423cc67"
  8810. },
  8811. "dist": {
  8812. "type": "zip",
  8813. "url": "https://api.github.com/repos/sebastianbergmann/php-invoker/zipball/5a10147d0aaf65b58940a0b72f71c9ac0423cc67",
  8814. "reference": "5a10147d0aaf65b58940a0b72f71c9ac0423cc67",
  8815. "shasum": ""
  8816. },
  8817. "require": {
  8818. "php": ">=7.3"
  8819. },
  8820. "require-dev": {
  8821. "ext-pcntl": "*",
  8822. "phpunit/phpunit": "^9.3"
  8823. },
  8824. "suggest": {
  8825. "ext-pcntl": "*"
  8826. },
  8827. "type": "library",
  8828. "extra": {
  8829. "branch-alias": {
  8830. "dev-master": "3.1-dev"
  8831. }
  8832. },
  8833. "autoload": {
  8834. "classmap": [
  8835. "src/"
  8836. ]
  8837. },
  8838. "notification-url": "https://packagist.org/downloads/",
  8839. "license": [
  8840. "BSD-3-Clause"
  8841. ],
  8842. "authors": [
  8843. {
  8844. "name": "Sebastian Bergmann",
  8845. "email": "sebastian@phpunit.de",
  8846. "role": "lead"
  8847. }
  8848. ],
  8849. "description": "Invoke callables with a timeout",
  8850. "homepage": "https://github.com/sebastianbergmann/php-invoker/",
  8851. "keywords": [
  8852. "process"
  8853. ],
  8854. "support": {
  8855. "issues": "https://github.com/sebastianbergmann/php-invoker/issues",
  8856. "source": "https://github.com/sebastianbergmann/php-invoker/tree/3.1.1"
  8857. },
  8858. "funding": [
  8859. {
  8860. "url": "https://github.com/sebastianbergmann",
  8861. "type": "github"
  8862. }
  8863. ],
  8864. "time": "2020-09-28T05:58:55+00:00"
  8865. },
  8866. {
  8867. "name": "phpunit/php-text-template",
  8868. "version": "2.0.4",
  8869. "source": {
  8870. "type": "git",
  8871. "url": "https://github.com/sebastianbergmann/php-text-template.git",
  8872. "reference": "5da5f67fc95621df9ff4c4e5a84d6a8a2acf7c28"
  8873. },
  8874. "dist": {
  8875. "type": "zip",
  8876. "url": "https://api.github.com/repos/sebastianbergmann/php-text-template/zipball/5da5f67fc95621df9ff4c4e5a84d6a8a2acf7c28",
  8877. "reference": "5da5f67fc95621df9ff4c4e5a84d6a8a2acf7c28",
  8878. "shasum": ""
  8879. },
  8880. "require": {
  8881. "php": ">=7.3"
  8882. },
  8883. "require-dev": {
  8884. "phpunit/phpunit": "^9.3"
  8885. },
  8886. "type": "library",
  8887. "extra": {
  8888. "branch-alias": {
  8889. "dev-master": "2.0-dev"
  8890. }
  8891. },
  8892. "autoload": {
  8893. "classmap": [
  8894. "src/"
  8895. ]
  8896. },
  8897. "notification-url": "https://packagist.org/downloads/",
  8898. "license": [
  8899. "BSD-3-Clause"
  8900. ],
  8901. "authors": [
  8902. {
  8903. "name": "Sebastian Bergmann",
  8904. "email": "sebastian@phpunit.de",
  8905. "role": "lead"
  8906. }
  8907. ],
  8908. "description": "Simple template engine.",
  8909. "homepage": "https://github.com/sebastianbergmann/php-text-template/",
  8910. "keywords": [
  8911. "template"
  8912. ],
  8913. "support": {
  8914. "issues": "https://github.com/sebastianbergmann/php-text-template/issues",
  8915. "source": "https://github.com/sebastianbergmann/php-text-template/tree/2.0.4"
  8916. },
  8917. "funding": [
  8918. {
  8919. "url": "https://github.com/sebastianbergmann",
  8920. "type": "github"
  8921. }
  8922. ],
  8923. "time": "2020-10-26T05:33:50+00:00"
  8924. },
  8925. {
  8926. "name": "phpunit/php-timer",
  8927. "version": "5.0.3",
  8928. "source": {
  8929. "type": "git",
  8930. "url": "https://github.com/sebastianbergmann/php-timer.git",
  8931. "reference": "5a63ce20ed1b5bf577850e2c4e87f4aa902afbd2"
  8932. },
  8933. "dist": {
  8934. "type": "zip",
  8935. "url": "https://api.github.com/repos/sebastianbergmann/php-timer/zipball/5a63ce20ed1b5bf577850e2c4e87f4aa902afbd2",
  8936. "reference": "5a63ce20ed1b5bf577850e2c4e87f4aa902afbd2",
  8937. "shasum": ""
  8938. },
  8939. "require": {
  8940. "php": ">=7.3"
  8941. },
  8942. "require-dev": {
  8943. "phpunit/phpunit": "^9.3"
  8944. },
  8945. "type": "library",
  8946. "extra": {
  8947. "branch-alias": {
  8948. "dev-master": "5.0-dev"
  8949. }
  8950. },
  8951. "autoload": {
  8952. "classmap": [
  8953. "src/"
  8954. ]
  8955. },
  8956. "notification-url": "https://packagist.org/downloads/",
  8957. "license": [
  8958. "BSD-3-Clause"
  8959. ],
  8960. "authors": [
  8961. {
  8962. "name": "Sebastian Bergmann",
  8963. "email": "sebastian@phpunit.de",
  8964. "role": "lead"
  8965. }
  8966. ],
  8967. "description": "Utility class for timing",
  8968. "homepage": "https://github.com/sebastianbergmann/php-timer/",
  8969. "keywords": [
  8970. "timer"
  8971. ],
  8972. "support": {
  8973. "issues": "https://github.com/sebastianbergmann/php-timer/issues",
  8974. "source": "https://github.com/sebastianbergmann/php-timer/tree/5.0.3"
  8975. },
  8976. "funding": [
  8977. {
  8978. "url": "https://github.com/sebastianbergmann",
  8979. "type": "github"
  8980. }
  8981. ],
  8982. "time": "2020-10-26T13:16:10+00:00"
  8983. },
  8984. {
  8985. "name": "phpunit/phpunit",
  8986. "version": "9.6.15",
  8987. "source": {
  8988. "type": "git",
  8989. "url": "https://github.com/sebastianbergmann/phpunit.git",
  8990. "reference": "05017b80304e0eb3f31d90194a563fd53a6021f1"
  8991. },
  8992. "dist": {
  8993. "type": "zip",
  8994. "url": "https://api.github.com/repos/sebastianbergmann/phpunit/zipball/05017b80304e0eb3f31d90194a563fd53a6021f1",
  8995. "reference": "05017b80304e0eb3f31d90194a563fd53a6021f1",
  8996. "shasum": ""
  8997. },
  8998. "require": {
  8999. "doctrine/instantiator": "^1.3.1 || ^2",
  9000. "ext-dom": "*",
  9001. "ext-json": "*",
  9002. "ext-libxml": "*",
  9003. "ext-mbstring": "*",
  9004. "ext-xml": "*",
  9005. "ext-xmlwriter": "*",
  9006. "myclabs/deep-copy": "^1.10.1",
  9007. "phar-io/manifest": "^2.0.3",
  9008. "phar-io/version": "^3.0.2",
  9009. "php": ">=7.3",
  9010. "phpunit/php-code-coverage": "^9.2.28",
  9011. "phpunit/php-file-iterator": "^3.0.5",
  9012. "phpunit/php-invoker": "^3.1.1",
  9013. "phpunit/php-text-template": "^2.0.3",
  9014. "phpunit/php-timer": "^5.0.2",
  9015. "sebastian/cli-parser": "^1.0.1",
  9016. "sebastian/code-unit": "^1.0.6",
  9017. "sebastian/comparator": "^4.0.8",
  9018. "sebastian/diff": "^4.0.3",
  9019. "sebastian/environment": "^5.1.3",
  9020. "sebastian/exporter": "^4.0.5",
  9021. "sebastian/global-state": "^5.0.1",
  9022. "sebastian/object-enumerator": "^4.0.3",
  9023. "sebastian/resource-operations": "^3.0.3",
  9024. "sebastian/type": "^3.2",
  9025. "sebastian/version": "^3.0.2"
  9026. },
  9027. "suggest": {
  9028. "ext-soap": "To be able to generate mocks based on WSDL files",
  9029. "ext-xdebug": "PHP extension that provides line coverage as well as branch and path coverage"
  9030. },
  9031. "bin": [
  9032. "phpunit"
  9033. ],
  9034. "type": "library",
  9035. "extra": {
  9036. "branch-alias": {
  9037. "dev-master": "9.6-dev"
  9038. }
  9039. },
  9040. "autoload": {
  9041. "files": [
  9042. "src/Framework/Assert/Functions.php"
  9043. ],
  9044. "classmap": [
  9045. "src/"
  9046. ]
  9047. },
  9048. "notification-url": "https://packagist.org/downloads/",
  9049. "license": [
  9050. "BSD-3-Clause"
  9051. ],
  9052. "authors": [
  9053. {
  9054. "name": "Sebastian Bergmann",
  9055. "email": "sebastian@phpunit.de",
  9056. "role": "lead"
  9057. }
  9058. ],
  9059. "description": "The PHP Unit Testing framework.",
  9060. "homepage": "https://phpunit.de/",
  9061. "keywords": [
  9062. "phpunit",
  9063. "testing",
  9064. "xunit"
  9065. ],
  9066. "support": {
  9067. "issues": "https://github.com/sebastianbergmann/phpunit/issues",
  9068. "security": "https://github.com/sebastianbergmann/phpunit/security/policy",
  9069. "source": "https://github.com/sebastianbergmann/phpunit/tree/9.6.15"
  9070. },
  9071. "funding": [
  9072. {
  9073. "url": "https://phpunit.de/sponsors.html",
  9074. "type": "custom"
  9075. },
  9076. {
  9077. "url": "https://github.com/sebastianbergmann",
  9078. "type": "github"
  9079. },
  9080. {
  9081. "url": "https://tidelift.com/funding/github/packagist/phpunit/phpunit",
  9082. "type": "tidelift"
  9083. }
  9084. ],
  9085. "time": "2023-12-01T16:55:19+00:00"
  9086. },
  9087. {
  9088. "name": "sebastian/cli-parser",
  9089. "version": "1.0.1",
  9090. "source": {
  9091. "type": "git",
  9092. "url": "https://github.com/sebastianbergmann/cli-parser.git",
  9093. "reference": "442e7c7e687e42adc03470c7b668bc4b2402c0b2"
  9094. },
  9095. "dist": {
  9096. "type": "zip",
  9097. "url": "https://api.github.com/repos/sebastianbergmann/cli-parser/zipball/442e7c7e687e42adc03470c7b668bc4b2402c0b2",
  9098. "reference": "442e7c7e687e42adc03470c7b668bc4b2402c0b2",
  9099. "shasum": ""
  9100. },
  9101. "require": {
  9102. "php": ">=7.3"
  9103. },
  9104. "require-dev": {
  9105. "phpunit/phpunit": "^9.3"
  9106. },
  9107. "type": "library",
  9108. "extra": {
  9109. "branch-alias": {
  9110. "dev-master": "1.0-dev"
  9111. }
  9112. },
  9113. "autoload": {
  9114. "classmap": [
  9115. "src/"
  9116. ]
  9117. },
  9118. "notification-url": "https://packagist.org/downloads/",
  9119. "license": [
  9120. "BSD-3-Clause"
  9121. ],
  9122. "authors": [
  9123. {
  9124. "name": "Sebastian Bergmann",
  9125. "email": "sebastian@phpunit.de",
  9126. "role": "lead"
  9127. }
  9128. ],
  9129. "description": "Library for parsing CLI options",
  9130. "homepage": "https://github.com/sebastianbergmann/cli-parser",
  9131. "support": {
  9132. "issues": "https://github.com/sebastianbergmann/cli-parser/issues",
  9133. "source": "https://github.com/sebastianbergmann/cli-parser/tree/1.0.1"
  9134. },
  9135. "funding": [
  9136. {
  9137. "url": "https://github.com/sebastianbergmann",
  9138. "type": "github"
  9139. }
  9140. ],
  9141. "time": "2020-09-28T06:08:49+00:00"
  9142. },
  9143. {
  9144. "name": "sebastian/code-unit",
  9145. "version": "1.0.8",
  9146. "source": {
  9147. "type": "git",
  9148. "url": "https://github.com/sebastianbergmann/code-unit.git",
  9149. "reference": "1fc9f64c0927627ef78ba436c9b17d967e68e120"
  9150. },
  9151. "dist": {
  9152. "type": "zip",
  9153. "url": "https://api.github.com/repos/sebastianbergmann/code-unit/zipball/1fc9f64c0927627ef78ba436c9b17d967e68e120",
  9154. "reference": "1fc9f64c0927627ef78ba436c9b17d967e68e120",
  9155. "shasum": ""
  9156. },
  9157. "require": {
  9158. "php": ">=7.3"
  9159. },
  9160. "require-dev": {
  9161. "phpunit/phpunit": "^9.3"
  9162. },
  9163. "type": "library",
  9164. "extra": {
  9165. "branch-alias": {
  9166. "dev-master": "1.0-dev"
  9167. }
  9168. },
  9169. "autoload": {
  9170. "classmap": [
  9171. "src/"
  9172. ]
  9173. },
  9174. "notification-url": "https://packagist.org/downloads/",
  9175. "license": [
  9176. "BSD-3-Clause"
  9177. ],
  9178. "authors": [
  9179. {
  9180. "name": "Sebastian Bergmann",
  9181. "email": "sebastian@phpunit.de",
  9182. "role": "lead"
  9183. }
  9184. ],
  9185. "description": "Collection of value objects that represent the PHP code units",
  9186. "homepage": "https://github.com/sebastianbergmann/code-unit",
  9187. "support": {
  9188. "issues": "https://github.com/sebastianbergmann/code-unit/issues",
  9189. "source": "https://github.com/sebastianbergmann/code-unit/tree/1.0.8"
  9190. },
  9191. "funding": [
  9192. {
  9193. "url": "https://github.com/sebastianbergmann",
  9194. "type": "github"
  9195. }
  9196. ],
  9197. "time": "2020-10-26T13:08:54+00:00"
  9198. },
  9199. {
  9200. "name": "sebastian/code-unit-reverse-lookup",
  9201. "version": "2.0.3",
  9202. "source": {
  9203. "type": "git",
  9204. "url": "https://github.com/sebastianbergmann/code-unit-reverse-lookup.git",
  9205. "reference": "ac91f01ccec49fb77bdc6fd1e548bc70f7faa3e5"
  9206. },
  9207. "dist": {
  9208. "type": "zip",
  9209. "url": "https://api.github.com/repos/sebastianbergmann/code-unit-reverse-lookup/zipball/ac91f01ccec49fb77bdc6fd1e548bc70f7faa3e5",
  9210. "reference": "ac91f01ccec49fb77bdc6fd1e548bc70f7faa3e5",
  9211. "shasum": ""
  9212. },
  9213. "require": {
  9214. "php": ">=7.3"
  9215. },
  9216. "require-dev": {
  9217. "phpunit/phpunit": "^9.3"
  9218. },
  9219. "type": "library",
  9220. "extra": {
  9221. "branch-alias": {
  9222. "dev-master": "2.0-dev"
  9223. }
  9224. },
  9225. "autoload": {
  9226. "classmap": [
  9227. "src/"
  9228. ]
  9229. },
  9230. "notification-url": "https://packagist.org/downloads/",
  9231. "license": [
  9232. "BSD-3-Clause"
  9233. ],
  9234. "authors": [
  9235. {
  9236. "name": "Sebastian Bergmann",
  9237. "email": "sebastian@phpunit.de"
  9238. }
  9239. ],
  9240. "description": "Looks up which function or method a line of code belongs to",
  9241. "homepage": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/",
  9242. "support": {
  9243. "issues": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/issues",
  9244. "source": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/tree/2.0.3"
  9245. },
  9246. "funding": [
  9247. {
  9248. "url": "https://github.com/sebastianbergmann",
  9249. "type": "github"
  9250. }
  9251. ],
  9252. "time": "2020-09-28T05:30:19+00:00"
  9253. },
  9254. {
  9255. "name": "sebastian/comparator",
  9256. "version": "4.0.8",
  9257. "source": {
  9258. "type": "git",
  9259. "url": "https://github.com/sebastianbergmann/comparator.git",
  9260. "reference": "fa0f136dd2334583309d32b62544682ee972b51a"
  9261. },
  9262. "dist": {
  9263. "type": "zip",
  9264. "url": "https://api.github.com/repos/sebastianbergmann/comparator/zipball/fa0f136dd2334583309d32b62544682ee972b51a",
  9265. "reference": "fa0f136dd2334583309d32b62544682ee972b51a",
  9266. "shasum": ""
  9267. },
  9268. "require": {
  9269. "php": ">=7.3",
  9270. "sebastian/diff": "^4.0",
  9271. "sebastian/exporter": "^4.0"
  9272. },
  9273. "require-dev": {
  9274. "phpunit/phpunit": "^9.3"
  9275. },
  9276. "type": "library",
  9277. "extra": {
  9278. "branch-alias": {
  9279. "dev-master": "4.0-dev"
  9280. }
  9281. },
  9282. "autoload": {
  9283. "classmap": [
  9284. "src/"
  9285. ]
  9286. },
  9287. "notification-url": "https://packagist.org/downloads/",
  9288. "license": [
  9289. "BSD-3-Clause"
  9290. ],
  9291. "authors": [
  9292. {
  9293. "name": "Sebastian Bergmann",
  9294. "email": "sebastian@phpunit.de"
  9295. },
  9296. {
  9297. "name": "Jeff Welch",
  9298. "email": "whatthejeff@gmail.com"
  9299. },
  9300. {
  9301. "name": "Volker Dusch",
  9302. "email": "github@wallbash.com"
  9303. },
  9304. {
  9305. "name": "Bernhard Schussek",
  9306. "email": "bschussek@2bepublished.at"
  9307. }
  9308. ],
  9309. "description": "Provides the functionality to compare PHP values for equality",
  9310. "homepage": "https://github.com/sebastianbergmann/comparator",
  9311. "keywords": [
  9312. "comparator",
  9313. "compare",
  9314. "equality"
  9315. ],
  9316. "support": {
  9317. "issues": "https://github.com/sebastianbergmann/comparator/issues",
  9318. "source": "https://github.com/sebastianbergmann/comparator/tree/4.0.8"
  9319. },
  9320. "funding": [
  9321. {
  9322. "url": "https://github.com/sebastianbergmann",
  9323. "type": "github"
  9324. }
  9325. ],
  9326. "time": "2022-09-14T12:41:17+00:00"
  9327. },
  9328. {
  9329. "name": "sebastian/complexity",
  9330. "version": "2.0.3",
  9331. "source": {
  9332. "type": "git",
  9333. "url": "https://github.com/sebastianbergmann/complexity.git",
  9334. "reference": "25f207c40d62b8b7aa32f5ab026c53561964053a"
  9335. },
  9336. "dist": {
  9337. "type": "zip",
  9338. "url": "https://api.github.com/repos/sebastianbergmann/complexity/zipball/25f207c40d62b8b7aa32f5ab026c53561964053a",
  9339. "reference": "25f207c40d62b8b7aa32f5ab026c53561964053a",
  9340. "shasum": ""
  9341. },
  9342. "require": {
  9343. "nikic/php-parser": "^4.18 || ^5.0",
  9344. "php": ">=7.3"
  9345. },
  9346. "require-dev": {
  9347. "phpunit/phpunit": "^9.3"
  9348. },
  9349. "type": "library",
  9350. "extra": {
  9351. "branch-alias": {
  9352. "dev-master": "2.0-dev"
  9353. }
  9354. },
  9355. "autoload": {
  9356. "classmap": [
  9357. "src/"
  9358. ]
  9359. },
  9360. "notification-url": "https://packagist.org/downloads/",
  9361. "license": [
  9362. "BSD-3-Clause"
  9363. ],
  9364. "authors": [
  9365. {
  9366. "name": "Sebastian Bergmann",
  9367. "email": "sebastian@phpunit.de",
  9368. "role": "lead"
  9369. }
  9370. ],
  9371. "description": "Library for calculating the complexity of PHP code units",
  9372. "homepage": "https://github.com/sebastianbergmann/complexity",
  9373. "support": {
  9374. "issues": "https://github.com/sebastianbergmann/complexity/issues",
  9375. "source": "https://github.com/sebastianbergmann/complexity/tree/2.0.3"
  9376. },
  9377. "funding": [
  9378. {
  9379. "url": "https://github.com/sebastianbergmann",
  9380. "type": "github"
  9381. }
  9382. ],
  9383. "time": "2023-12-22T06:19:30+00:00"
  9384. },
  9385. {
  9386. "name": "sebastian/diff",
  9387. "version": "4.0.5",
  9388. "source": {
  9389. "type": "git",
  9390. "url": "https://github.com/sebastianbergmann/diff.git",
  9391. "reference": "74be17022044ebaaecfdf0c5cd504fc9cd5a7131"
  9392. },
  9393. "dist": {
  9394. "type": "zip",
  9395. "url": "https://api.github.com/repos/sebastianbergmann/diff/zipball/74be17022044ebaaecfdf0c5cd504fc9cd5a7131",
  9396. "reference": "74be17022044ebaaecfdf0c5cd504fc9cd5a7131",
  9397. "shasum": ""
  9398. },
  9399. "require": {
  9400. "php": ">=7.3"
  9401. },
  9402. "require-dev": {
  9403. "phpunit/phpunit": "^9.3",
  9404. "symfony/process": "^4.2 || ^5"
  9405. },
  9406. "type": "library",
  9407. "extra": {
  9408. "branch-alias": {
  9409. "dev-master": "4.0-dev"
  9410. }
  9411. },
  9412. "autoload": {
  9413. "classmap": [
  9414. "src/"
  9415. ]
  9416. },
  9417. "notification-url": "https://packagist.org/downloads/",
  9418. "license": [
  9419. "BSD-3-Clause"
  9420. ],
  9421. "authors": [
  9422. {
  9423. "name": "Sebastian Bergmann",
  9424. "email": "sebastian@phpunit.de"
  9425. },
  9426. {
  9427. "name": "Kore Nordmann",
  9428. "email": "mail@kore-nordmann.de"
  9429. }
  9430. ],
  9431. "description": "Diff implementation",
  9432. "homepage": "https://github.com/sebastianbergmann/diff",
  9433. "keywords": [
  9434. "diff",
  9435. "udiff",
  9436. "unidiff",
  9437. "unified diff"
  9438. ],
  9439. "support": {
  9440. "issues": "https://github.com/sebastianbergmann/diff/issues",
  9441. "source": "https://github.com/sebastianbergmann/diff/tree/4.0.5"
  9442. },
  9443. "funding": [
  9444. {
  9445. "url": "https://github.com/sebastianbergmann",
  9446. "type": "github"
  9447. }
  9448. ],
  9449. "time": "2023-05-07T05:35:17+00:00"
  9450. },
  9451. {
  9452. "name": "sebastian/environment",
  9453. "version": "5.1.5",
  9454. "source": {
  9455. "type": "git",
  9456. "url": "https://github.com/sebastianbergmann/environment.git",
  9457. "reference": "830c43a844f1f8d5b7a1f6d6076b784454d8b7ed"
  9458. },
  9459. "dist": {
  9460. "type": "zip",
  9461. "url": "https://api.github.com/repos/sebastianbergmann/environment/zipball/830c43a844f1f8d5b7a1f6d6076b784454d8b7ed",
  9462. "reference": "830c43a844f1f8d5b7a1f6d6076b784454d8b7ed",
  9463. "shasum": ""
  9464. },
  9465. "require": {
  9466. "php": ">=7.3"
  9467. },
  9468. "require-dev": {
  9469. "phpunit/phpunit": "^9.3"
  9470. },
  9471. "suggest": {
  9472. "ext-posix": "*"
  9473. },
  9474. "type": "library",
  9475. "extra": {
  9476. "branch-alias": {
  9477. "dev-master": "5.1-dev"
  9478. }
  9479. },
  9480. "autoload": {
  9481. "classmap": [
  9482. "src/"
  9483. ]
  9484. },
  9485. "notification-url": "https://packagist.org/downloads/",
  9486. "license": [
  9487. "BSD-3-Clause"
  9488. ],
  9489. "authors": [
  9490. {
  9491. "name": "Sebastian Bergmann",
  9492. "email": "sebastian@phpunit.de"
  9493. }
  9494. ],
  9495. "description": "Provides functionality to handle HHVM/PHP environments",
  9496. "homepage": "http://www.github.com/sebastianbergmann/environment",
  9497. "keywords": [
  9498. "Xdebug",
  9499. "environment",
  9500. "hhvm"
  9501. ],
  9502. "support": {
  9503. "issues": "https://github.com/sebastianbergmann/environment/issues",
  9504. "source": "https://github.com/sebastianbergmann/environment/tree/5.1.5"
  9505. },
  9506. "funding": [
  9507. {
  9508. "url": "https://github.com/sebastianbergmann",
  9509. "type": "github"
  9510. }
  9511. ],
  9512. "time": "2023-02-03T06:03:51+00:00"
  9513. },
  9514. {
  9515. "name": "sebastian/exporter",
  9516. "version": "4.0.5",
  9517. "source": {
  9518. "type": "git",
  9519. "url": "https://github.com/sebastianbergmann/exporter.git",
  9520. "reference": "ac230ed27f0f98f597c8a2b6eb7ac563af5e5b9d"
  9521. },
  9522. "dist": {
  9523. "type": "zip",
  9524. "url": "https://api.github.com/repos/sebastianbergmann/exporter/zipball/ac230ed27f0f98f597c8a2b6eb7ac563af5e5b9d",
  9525. "reference": "ac230ed27f0f98f597c8a2b6eb7ac563af5e5b9d",
  9526. "shasum": ""
  9527. },
  9528. "require": {
  9529. "php": ">=7.3",
  9530. "sebastian/recursion-context": "^4.0"
  9531. },
  9532. "require-dev": {
  9533. "ext-mbstring": "*",
  9534. "phpunit/phpunit": "^9.3"
  9535. },
  9536. "type": "library",
  9537. "extra": {
  9538. "branch-alias": {
  9539. "dev-master": "4.0-dev"
  9540. }
  9541. },
  9542. "autoload": {
  9543. "classmap": [
  9544. "src/"
  9545. ]
  9546. },
  9547. "notification-url": "https://packagist.org/downloads/",
  9548. "license": [
  9549. "BSD-3-Clause"
  9550. ],
  9551. "authors": [
  9552. {
  9553. "name": "Sebastian Bergmann",
  9554. "email": "sebastian@phpunit.de"
  9555. },
  9556. {
  9557. "name": "Jeff Welch",
  9558. "email": "whatthejeff@gmail.com"
  9559. },
  9560. {
  9561. "name": "Volker Dusch",
  9562. "email": "github@wallbash.com"
  9563. },
  9564. {
  9565. "name": "Adam Harvey",
  9566. "email": "aharvey@php.net"
  9567. },
  9568. {
  9569. "name": "Bernhard Schussek",
  9570. "email": "bschussek@gmail.com"
  9571. }
  9572. ],
  9573. "description": "Provides the functionality to export PHP variables for visualization",
  9574. "homepage": "https://www.github.com/sebastianbergmann/exporter",
  9575. "keywords": [
  9576. "export",
  9577. "exporter"
  9578. ],
  9579. "support": {
  9580. "issues": "https://github.com/sebastianbergmann/exporter/issues",
  9581. "source": "https://github.com/sebastianbergmann/exporter/tree/4.0.5"
  9582. },
  9583. "funding": [
  9584. {
  9585. "url": "https://github.com/sebastianbergmann",
  9586. "type": "github"
  9587. }
  9588. ],
  9589. "time": "2022-09-14T06:03:37+00:00"
  9590. },
  9591. {
  9592. "name": "sebastian/global-state",
  9593. "version": "5.0.6",
  9594. "source": {
  9595. "type": "git",
  9596. "url": "https://github.com/sebastianbergmann/global-state.git",
  9597. "reference": "bde739e7565280bda77be70044ac1047bc007e34"
  9598. },
  9599. "dist": {
  9600. "type": "zip",
  9601. "url": "https://api.github.com/repos/sebastianbergmann/global-state/zipball/bde739e7565280bda77be70044ac1047bc007e34",
  9602. "reference": "bde739e7565280bda77be70044ac1047bc007e34",
  9603. "shasum": ""
  9604. },
  9605. "require": {
  9606. "php": ">=7.3",
  9607. "sebastian/object-reflector": "^2.0",
  9608. "sebastian/recursion-context": "^4.0"
  9609. },
  9610. "require-dev": {
  9611. "ext-dom": "*",
  9612. "phpunit/phpunit": "^9.3"
  9613. },
  9614. "suggest": {
  9615. "ext-uopz": "*"
  9616. },
  9617. "type": "library",
  9618. "extra": {
  9619. "branch-alias": {
  9620. "dev-master": "5.0-dev"
  9621. }
  9622. },
  9623. "autoload": {
  9624. "classmap": [
  9625. "src/"
  9626. ]
  9627. },
  9628. "notification-url": "https://packagist.org/downloads/",
  9629. "license": [
  9630. "BSD-3-Clause"
  9631. ],
  9632. "authors": [
  9633. {
  9634. "name": "Sebastian Bergmann",
  9635. "email": "sebastian@phpunit.de"
  9636. }
  9637. ],
  9638. "description": "Snapshotting of global state",
  9639. "homepage": "http://www.github.com/sebastianbergmann/global-state",
  9640. "keywords": [
  9641. "global state"
  9642. ],
  9643. "support": {
  9644. "issues": "https://github.com/sebastianbergmann/global-state/issues",
  9645. "source": "https://github.com/sebastianbergmann/global-state/tree/5.0.6"
  9646. },
  9647. "funding": [
  9648. {
  9649. "url": "https://github.com/sebastianbergmann",
  9650. "type": "github"
  9651. }
  9652. ],
  9653. "time": "2023-08-02T09:26:13+00:00"
  9654. },
  9655. {
  9656. "name": "sebastian/lines-of-code",
  9657. "version": "1.0.4",
  9658. "source": {
  9659. "type": "git",
  9660. "url": "https://github.com/sebastianbergmann/lines-of-code.git",
  9661. "reference": "e1e4a170560925c26d424b6a03aed157e7dcc5c5"
  9662. },
  9663. "dist": {
  9664. "type": "zip",
  9665. "url": "https://api.github.com/repos/sebastianbergmann/lines-of-code/zipball/e1e4a170560925c26d424b6a03aed157e7dcc5c5",
  9666. "reference": "e1e4a170560925c26d424b6a03aed157e7dcc5c5",
  9667. "shasum": ""
  9668. },
  9669. "require": {
  9670. "nikic/php-parser": "^4.18 || ^5.0",
  9671. "php": ">=7.3"
  9672. },
  9673. "require-dev": {
  9674. "phpunit/phpunit": "^9.3"
  9675. },
  9676. "type": "library",
  9677. "extra": {
  9678. "branch-alias": {
  9679. "dev-master": "1.0-dev"
  9680. }
  9681. },
  9682. "autoload": {
  9683. "classmap": [
  9684. "src/"
  9685. ]
  9686. },
  9687. "notification-url": "https://packagist.org/downloads/",
  9688. "license": [
  9689. "BSD-3-Clause"
  9690. ],
  9691. "authors": [
  9692. {
  9693. "name": "Sebastian Bergmann",
  9694. "email": "sebastian@phpunit.de",
  9695. "role": "lead"
  9696. }
  9697. ],
  9698. "description": "Library for counting the lines of code in PHP source code",
  9699. "homepage": "https://github.com/sebastianbergmann/lines-of-code",
  9700. "support": {
  9701. "issues": "https://github.com/sebastianbergmann/lines-of-code/issues",
  9702. "source": "https://github.com/sebastianbergmann/lines-of-code/tree/1.0.4"
  9703. },
  9704. "funding": [
  9705. {
  9706. "url": "https://github.com/sebastianbergmann",
  9707. "type": "github"
  9708. }
  9709. ],
  9710. "time": "2023-12-22T06:20:34+00:00"
  9711. },
  9712. {
  9713. "name": "sebastian/object-enumerator",
  9714. "version": "4.0.4",
  9715. "source": {
  9716. "type": "git",
  9717. "url": "https://github.com/sebastianbergmann/object-enumerator.git",
  9718. "reference": "5c9eeac41b290a3712d88851518825ad78f45c71"
  9719. },
  9720. "dist": {
  9721. "type": "zip",
  9722. "url": "https://api.github.com/repos/sebastianbergmann/object-enumerator/zipball/5c9eeac41b290a3712d88851518825ad78f45c71",
  9723. "reference": "5c9eeac41b290a3712d88851518825ad78f45c71",
  9724. "shasum": ""
  9725. },
  9726. "require": {
  9727. "php": ">=7.3",
  9728. "sebastian/object-reflector": "^2.0",
  9729. "sebastian/recursion-context": "^4.0"
  9730. },
  9731. "require-dev": {
  9732. "phpunit/phpunit": "^9.3"
  9733. },
  9734. "type": "library",
  9735. "extra": {
  9736. "branch-alias": {
  9737. "dev-master": "4.0-dev"
  9738. }
  9739. },
  9740. "autoload": {
  9741. "classmap": [
  9742. "src/"
  9743. ]
  9744. },
  9745. "notification-url": "https://packagist.org/downloads/",
  9746. "license": [
  9747. "BSD-3-Clause"
  9748. ],
  9749. "authors": [
  9750. {
  9751. "name": "Sebastian Bergmann",
  9752. "email": "sebastian@phpunit.de"
  9753. }
  9754. ],
  9755. "description": "Traverses array structures and object graphs to enumerate all referenced objects",
  9756. "homepage": "https://github.com/sebastianbergmann/object-enumerator/",
  9757. "support": {
  9758. "issues": "https://github.com/sebastianbergmann/object-enumerator/issues",
  9759. "source": "https://github.com/sebastianbergmann/object-enumerator/tree/4.0.4"
  9760. },
  9761. "funding": [
  9762. {
  9763. "url": "https://github.com/sebastianbergmann",
  9764. "type": "github"
  9765. }
  9766. ],
  9767. "time": "2020-10-26T13:12:34+00:00"
  9768. },
  9769. {
  9770. "name": "sebastian/object-reflector",
  9771. "version": "2.0.4",
  9772. "source": {
  9773. "type": "git",
  9774. "url": "https://github.com/sebastianbergmann/object-reflector.git",
  9775. "reference": "b4f479ebdbf63ac605d183ece17d8d7fe49c15c7"
  9776. },
  9777. "dist": {
  9778. "type": "zip",
  9779. "url": "https://api.github.com/repos/sebastianbergmann/object-reflector/zipball/b4f479ebdbf63ac605d183ece17d8d7fe49c15c7",
  9780. "reference": "b4f479ebdbf63ac605d183ece17d8d7fe49c15c7",
  9781. "shasum": ""
  9782. },
  9783. "require": {
  9784. "php": ">=7.3"
  9785. },
  9786. "require-dev": {
  9787. "phpunit/phpunit": "^9.3"
  9788. },
  9789. "type": "library",
  9790. "extra": {
  9791. "branch-alias": {
  9792. "dev-master": "2.0-dev"
  9793. }
  9794. },
  9795. "autoload": {
  9796. "classmap": [
  9797. "src/"
  9798. ]
  9799. },
  9800. "notification-url": "https://packagist.org/downloads/",
  9801. "license": [
  9802. "BSD-3-Clause"
  9803. ],
  9804. "authors": [
  9805. {
  9806. "name": "Sebastian Bergmann",
  9807. "email": "sebastian@phpunit.de"
  9808. }
  9809. ],
  9810. "description": "Allows reflection of object attributes, including inherited and non-public ones",
  9811. "homepage": "https://github.com/sebastianbergmann/object-reflector/",
  9812. "support": {
  9813. "issues": "https://github.com/sebastianbergmann/object-reflector/issues",
  9814. "source": "https://github.com/sebastianbergmann/object-reflector/tree/2.0.4"
  9815. },
  9816. "funding": [
  9817. {
  9818. "url": "https://github.com/sebastianbergmann",
  9819. "type": "github"
  9820. }
  9821. ],
  9822. "time": "2020-10-26T13:14:26+00:00"
  9823. },
  9824. {
  9825. "name": "sebastian/recursion-context",
  9826. "version": "4.0.5",
  9827. "source": {
  9828. "type": "git",
  9829. "url": "https://github.com/sebastianbergmann/recursion-context.git",
  9830. "reference": "e75bd0f07204fec2a0af9b0f3cfe97d05f92efc1"
  9831. },
  9832. "dist": {
  9833. "type": "zip",
  9834. "url": "https://api.github.com/repos/sebastianbergmann/recursion-context/zipball/e75bd0f07204fec2a0af9b0f3cfe97d05f92efc1",
  9835. "reference": "e75bd0f07204fec2a0af9b0f3cfe97d05f92efc1",
  9836. "shasum": ""
  9837. },
  9838. "require": {
  9839. "php": ">=7.3"
  9840. },
  9841. "require-dev": {
  9842. "phpunit/phpunit": "^9.3"
  9843. },
  9844. "type": "library",
  9845. "extra": {
  9846. "branch-alias": {
  9847. "dev-master": "4.0-dev"
  9848. }
  9849. },
  9850. "autoload": {
  9851. "classmap": [
  9852. "src/"
  9853. ]
  9854. },
  9855. "notification-url": "https://packagist.org/downloads/",
  9856. "license": [
  9857. "BSD-3-Clause"
  9858. ],
  9859. "authors": [
  9860. {
  9861. "name": "Sebastian Bergmann",
  9862. "email": "sebastian@phpunit.de"
  9863. },
  9864. {
  9865. "name": "Jeff Welch",
  9866. "email": "whatthejeff@gmail.com"
  9867. },
  9868. {
  9869. "name": "Adam Harvey",
  9870. "email": "aharvey@php.net"
  9871. }
  9872. ],
  9873. "description": "Provides functionality to recursively process PHP variables",
  9874. "homepage": "https://github.com/sebastianbergmann/recursion-context",
  9875. "support": {
  9876. "issues": "https://github.com/sebastianbergmann/recursion-context/issues",
  9877. "source": "https://github.com/sebastianbergmann/recursion-context/tree/4.0.5"
  9878. },
  9879. "funding": [
  9880. {
  9881. "url": "https://github.com/sebastianbergmann",
  9882. "type": "github"
  9883. }
  9884. ],
  9885. "time": "2023-02-03T06:07:39+00:00"
  9886. },
  9887. {
  9888. "name": "sebastian/resource-operations",
  9889. "version": "3.0.3",
  9890. "source": {
  9891. "type": "git",
  9892. "url": "https://github.com/sebastianbergmann/resource-operations.git",
  9893. "reference": "0f4443cb3a1d92ce809899753bc0d5d5a8dd19a8"
  9894. },
  9895. "dist": {
  9896. "type": "zip",
  9897. "url": "https://api.github.com/repos/sebastianbergmann/resource-operations/zipball/0f4443cb3a1d92ce809899753bc0d5d5a8dd19a8",
  9898. "reference": "0f4443cb3a1d92ce809899753bc0d5d5a8dd19a8",
  9899. "shasum": ""
  9900. },
  9901. "require": {
  9902. "php": ">=7.3"
  9903. },
  9904. "require-dev": {
  9905. "phpunit/phpunit": "^9.0"
  9906. },
  9907. "type": "library",
  9908. "extra": {
  9909. "branch-alias": {
  9910. "dev-master": "3.0-dev"
  9911. }
  9912. },
  9913. "autoload": {
  9914. "classmap": [
  9915. "src/"
  9916. ]
  9917. },
  9918. "notification-url": "https://packagist.org/downloads/",
  9919. "license": [
  9920. "BSD-3-Clause"
  9921. ],
  9922. "authors": [
  9923. {
  9924. "name": "Sebastian Bergmann",
  9925. "email": "sebastian@phpunit.de"
  9926. }
  9927. ],
  9928. "description": "Provides a list of PHP built-in functions that operate on resources",
  9929. "homepage": "https://www.github.com/sebastianbergmann/resource-operations",
  9930. "support": {
  9931. "issues": "https://github.com/sebastianbergmann/resource-operations/issues",
  9932. "source": "https://github.com/sebastianbergmann/resource-operations/tree/3.0.3"
  9933. },
  9934. "funding": [
  9935. {
  9936. "url": "https://github.com/sebastianbergmann",
  9937. "type": "github"
  9938. }
  9939. ],
  9940. "time": "2020-09-28T06:45:17+00:00"
  9941. },
  9942. {
  9943. "name": "sebastian/type",
  9944. "version": "3.2.1",
  9945. "source": {
  9946. "type": "git",
  9947. "url": "https://github.com/sebastianbergmann/type.git",
  9948. "reference": "75e2c2a32f5e0b3aef905b9ed0b179b953b3d7c7"
  9949. },
  9950. "dist": {
  9951. "type": "zip",
  9952. "url": "https://api.github.com/repos/sebastianbergmann/type/zipball/75e2c2a32f5e0b3aef905b9ed0b179b953b3d7c7",
  9953. "reference": "75e2c2a32f5e0b3aef905b9ed0b179b953b3d7c7",
  9954. "shasum": ""
  9955. },
  9956. "require": {
  9957. "php": ">=7.3"
  9958. },
  9959. "require-dev": {
  9960. "phpunit/phpunit": "^9.5"
  9961. },
  9962. "type": "library",
  9963. "extra": {
  9964. "branch-alias": {
  9965. "dev-master": "3.2-dev"
  9966. }
  9967. },
  9968. "autoload": {
  9969. "classmap": [
  9970. "src/"
  9971. ]
  9972. },
  9973. "notification-url": "https://packagist.org/downloads/",
  9974. "license": [
  9975. "BSD-3-Clause"
  9976. ],
  9977. "authors": [
  9978. {
  9979. "name": "Sebastian Bergmann",
  9980. "email": "sebastian@phpunit.de",
  9981. "role": "lead"
  9982. }
  9983. ],
  9984. "description": "Collection of value objects that represent the types of the PHP type system",
  9985. "homepage": "https://github.com/sebastianbergmann/type",
  9986. "support": {
  9987. "issues": "https://github.com/sebastianbergmann/type/issues",
  9988. "source": "https://github.com/sebastianbergmann/type/tree/3.2.1"
  9989. },
  9990. "funding": [
  9991. {
  9992. "url": "https://github.com/sebastianbergmann",
  9993. "type": "github"
  9994. }
  9995. ],
  9996. "time": "2023-02-03T06:13:03+00:00"
  9997. },
  9998. {
  9999. "name": "sebastian/version",
  10000. "version": "3.0.2",
  10001. "source": {
  10002. "type": "git",
  10003. "url": "https://github.com/sebastianbergmann/version.git",
  10004. "reference": "c6c1022351a901512170118436c764e473f6de8c"
  10005. },
  10006. "dist": {
  10007. "type": "zip",
  10008. "url": "https://api.github.com/repos/sebastianbergmann/version/zipball/c6c1022351a901512170118436c764e473f6de8c",
  10009. "reference": "c6c1022351a901512170118436c764e473f6de8c",
  10010. "shasum": ""
  10011. },
  10012. "require": {
  10013. "php": ">=7.3"
  10014. },
  10015. "type": "library",
  10016. "extra": {
  10017. "branch-alias": {
  10018. "dev-master": "3.0-dev"
  10019. }
  10020. },
  10021. "autoload": {
  10022. "classmap": [
  10023. "src/"
  10024. ]
  10025. },
  10026. "notification-url": "https://packagist.org/downloads/",
  10027. "license": [
  10028. "BSD-3-Clause"
  10029. ],
  10030. "authors": [
  10031. {
  10032. "name": "Sebastian Bergmann",
  10033. "email": "sebastian@phpunit.de",
  10034. "role": "lead"
  10035. }
  10036. ],
  10037. "description": "Library that helps with managing the version number of Git-hosted PHP projects",
  10038. "homepage": "https://github.com/sebastianbergmann/version",
  10039. "support": {
  10040. "issues": "https://github.com/sebastianbergmann/version/issues",
  10041. "source": "https://github.com/sebastianbergmann/version/tree/3.0.2"
  10042. },
  10043. "funding": [
  10044. {
  10045. "url": "https://github.com/sebastianbergmann",
  10046. "type": "github"
  10047. }
  10048. ],
  10049. "time": "2020-09-28T06:39:44+00:00"
  10050. },
  10051. {
  10052. "name": "symfony/browser-kit",
  10053. "version": "v6.3.8",
  10054. "source": {
  10055. "type": "git",
  10056. "url": "https://github.com/symfony/browser-kit.git",
  10057. "reference": "e270297dbee59168274c2b535ab1bccd593e6ffe"
  10058. },
  10059. "dist": {
  10060. "type": "zip",
  10061. "url": "https://api.github.com/repos/symfony/browser-kit/zipball/e270297dbee59168274c2b535ab1bccd593e6ffe",
  10062. "reference": "e270297dbee59168274c2b535ab1bccd593e6ffe",
  10063. "shasum": ""
  10064. },
  10065. "require": {
  10066. "php": ">=8.1",
  10067. "symfony/dom-crawler": "^5.4|^6.0"
  10068. },
  10069. "require-dev": {
  10070. "symfony/css-selector": "^5.4|^6.0",
  10071. "symfony/http-client": "^5.4|^6.0",
  10072. "symfony/mime": "^5.4|^6.0",
  10073. "symfony/process": "^5.4|^6.0"
  10074. },
  10075. "type": "library",
  10076. "autoload": {
  10077. "psr-4": {
  10078. "Symfony\\Component\\BrowserKit\\": ""
  10079. },
  10080. "exclude-from-classmap": [
  10081. "/Tests/"
  10082. ]
  10083. },
  10084. "notification-url": "https://packagist.org/downloads/",
  10085. "license": [
  10086. "MIT"
  10087. ],
  10088. "authors": [
  10089. {
  10090. "name": "Fabien Potencier",
  10091. "email": "fabien@symfony.com"
  10092. },
  10093. {
  10094. "name": "Symfony Community",
  10095. "homepage": "https://symfony.com/contributors"
  10096. }
  10097. ],
  10098. "description": "Simulates the behavior of a web browser, allowing you to make requests, click on links and submit forms programmatically",
  10099. "homepage": "https://symfony.com",
  10100. "support": {
  10101. "source": "https://github.com/symfony/browser-kit/tree/v6.3.8"
  10102. },
  10103. "funding": [
  10104. {
  10105. "url": "https://symfony.com/sponsor",
  10106. "type": "custom"
  10107. },
  10108. {
  10109. "url": "https://github.com/fabpot",
  10110. "type": "github"
  10111. },
  10112. {
  10113. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  10114. "type": "tidelift"
  10115. }
  10116. ],
  10117. "time": "2023-10-31T08:07:48+00:00"
  10118. },
  10119. {
  10120. "name": "symfony/css-selector",
  10121. "version": "v6.3.2",
  10122. "source": {
  10123. "type": "git",
  10124. "url": "https://github.com/symfony/css-selector.git",
  10125. "reference": "883d961421ab1709877c10ac99451632a3d6fa57"
  10126. },
  10127. "dist": {
  10128. "type": "zip",
  10129. "url": "https://api.github.com/repos/symfony/css-selector/zipball/883d961421ab1709877c10ac99451632a3d6fa57",
  10130. "reference": "883d961421ab1709877c10ac99451632a3d6fa57",
  10131. "shasum": ""
  10132. },
  10133. "require": {
  10134. "php": ">=8.1"
  10135. },
  10136. "type": "library",
  10137. "autoload": {
  10138. "psr-4": {
  10139. "Symfony\\Component\\CssSelector\\": ""
  10140. },
  10141. "exclude-from-classmap": [
  10142. "/Tests/"
  10143. ]
  10144. },
  10145. "notification-url": "https://packagist.org/downloads/",
  10146. "license": [
  10147. "MIT"
  10148. ],
  10149. "authors": [
  10150. {
  10151. "name": "Fabien Potencier",
  10152. "email": "fabien@symfony.com"
  10153. },
  10154. {
  10155. "name": "Jean-François Simon",
  10156. "email": "jeanfrancois.simon@sensiolabs.com"
  10157. },
  10158. {
  10159. "name": "Symfony Community",
  10160. "homepage": "https://symfony.com/contributors"
  10161. }
  10162. ],
  10163. "description": "Converts CSS selectors to XPath expressions",
  10164. "homepage": "https://symfony.com",
  10165. "support": {
  10166. "source": "https://github.com/symfony/css-selector/tree/v6.3.2"
  10167. },
  10168. "funding": [
  10169. {
  10170. "url": "https://symfony.com/sponsor",
  10171. "type": "custom"
  10172. },
  10173. {
  10174. "url": "https://github.com/fabpot",
  10175. "type": "github"
  10176. },
  10177. {
  10178. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  10179. "type": "tidelift"
  10180. }
  10181. ],
  10182. "time": "2023-07-12T16:00:22+00:00"
  10183. },
  10184. {
  10185. "name": "symfony/debug-bundle",
  10186. "version": "v6.3.2",
  10187. "source": {
  10188. "type": "git",
  10189. "url": "https://github.com/symfony/debug-bundle.git",
  10190. "reference": "3f04a578e1a9f1d7da84a87b690c03123e5d8c31"
  10191. },
  10192. "dist": {
  10193. "type": "zip",
  10194. "url": "https://api.github.com/repos/symfony/debug-bundle/zipball/3f04a578e1a9f1d7da84a87b690c03123e5d8c31",
  10195. "reference": "3f04a578e1a9f1d7da84a87b690c03123e5d8c31",
  10196. "shasum": ""
  10197. },
  10198. "require": {
  10199. "ext-xml": "*",
  10200. "php": ">=8.1",
  10201. "symfony/dependency-injection": "^5.4|^6.0",
  10202. "symfony/http-kernel": "^5.4|^6.0",
  10203. "symfony/twig-bridge": "^5.4|^6.0",
  10204. "symfony/var-dumper": "^5.4|^6.0"
  10205. },
  10206. "conflict": {
  10207. "symfony/config": "<5.4",
  10208. "symfony/dependency-injection": "<5.4"
  10209. },
  10210. "require-dev": {
  10211. "symfony/config": "^5.4|^6.0",
  10212. "symfony/web-profiler-bundle": "^5.4|^6.0"
  10213. },
  10214. "type": "symfony-bundle",
  10215. "autoload": {
  10216. "psr-4": {
  10217. "Symfony\\Bundle\\DebugBundle\\": ""
  10218. },
  10219. "exclude-from-classmap": [
  10220. "/Tests/"
  10221. ]
  10222. },
  10223. "notification-url": "https://packagist.org/downloads/",
  10224. "license": [
  10225. "MIT"
  10226. ],
  10227. "authors": [
  10228. {
  10229. "name": "Fabien Potencier",
  10230. "email": "fabien@symfony.com"
  10231. },
  10232. {
  10233. "name": "Symfony Community",
  10234. "homepage": "https://symfony.com/contributors"
  10235. }
  10236. ],
  10237. "description": "Provides a tight integration of the Symfony VarDumper component and the ServerLogCommand from MonologBridge into the Symfony full-stack framework",
  10238. "homepage": "https://symfony.com",
  10239. "support": {
  10240. "source": "https://github.com/symfony/debug-bundle/tree/v6.3.2"
  10241. },
  10242. "funding": [
  10243. {
  10244. "url": "https://symfony.com/sponsor",
  10245. "type": "custom"
  10246. },
  10247. {
  10248. "url": "https://github.com/fabpot",
  10249. "type": "github"
  10250. },
  10251. {
  10252. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  10253. "type": "tidelift"
  10254. }
  10255. ],
  10256. "time": "2023-07-13T14:29:38+00:00"
  10257. },
  10258. {
  10259. "name": "symfony/dom-crawler",
  10260. "version": "v6.3.9",
  10261. "source": {
  10262. "type": "git",
  10263. "url": "https://github.com/symfony/dom-crawler.git",
  10264. "reference": "b7065c123ae977a008568a3d016a17a110df7a8e"
  10265. },
  10266. "dist": {
  10267. "type": "zip",
  10268. "url": "https://api.github.com/repos/symfony/dom-crawler/zipball/b7065c123ae977a008568a3d016a17a110df7a8e",
  10269. "reference": "b7065c123ae977a008568a3d016a17a110df7a8e",
  10270. "shasum": ""
  10271. },
  10272. "require": {
  10273. "masterminds/html5": "^2.6",
  10274. "php": ">=8.1",
  10275. "symfony/polyfill-ctype": "~1.8",
  10276. "symfony/polyfill-mbstring": "~1.0"
  10277. },
  10278. "require-dev": {
  10279. "symfony/css-selector": "^5.4|^6.0"
  10280. },
  10281. "type": "library",
  10282. "autoload": {
  10283. "psr-4": {
  10284. "Symfony\\Component\\DomCrawler\\": ""
  10285. },
  10286. "exclude-from-classmap": [
  10287. "/Tests/"
  10288. ]
  10289. },
  10290. "notification-url": "https://packagist.org/downloads/",
  10291. "license": [
  10292. "MIT"
  10293. ],
  10294. "authors": [
  10295. {
  10296. "name": "Fabien Potencier",
  10297. "email": "fabien@symfony.com"
  10298. },
  10299. {
  10300. "name": "Symfony Community",
  10301. "homepage": "https://symfony.com/contributors"
  10302. }
  10303. ],
  10304. "description": "Eases DOM navigation for HTML and XML documents",
  10305. "homepage": "https://symfony.com",
  10306. "support": {
  10307. "source": "https://github.com/symfony/dom-crawler/tree/v6.3.9"
  10308. },
  10309. "funding": [
  10310. {
  10311. "url": "https://symfony.com/sponsor",
  10312. "type": "custom"
  10313. },
  10314. {
  10315. "url": "https://github.com/fabpot",
  10316. "type": "github"
  10317. },
  10318. {
  10319. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  10320. "type": "tidelift"
  10321. }
  10322. ],
  10323. "time": "2023-11-20T16:36:29+00:00"
  10324. },
  10325. {
  10326. "name": "symfony/maker-bundle",
  10327. "version": "v1.52.0",
  10328. "source": {
  10329. "type": "git",
  10330. "url": "https://github.com/symfony/maker-bundle.git",
  10331. "reference": "112f9466c94a46ca33dc441eee59a12cd1790757"
  10332. },
  10333. "dist": {
  10334. "type": "zip",
  10335. "url": "https://api.github.com/repos/symfony/maker-bundle/zipball/112f9466c94a46ca33dc441eee59a12cd1790757",
  10336. "reference": "112f9466c94a46ca33dc441eee59a12cd1790757",
  10337. "shasum": ""
  10338. },
  10339. "require": {
  10340. "doctrine/inflector": "^2.0",
  10341. "nikic/php-parser": "^4.11",
  10342. "php": ">=8.1",
  10343. "symfony/config": "^6.3|^7.0",
  10344. "symfony/console": "^6.3|^7.0",
  10345. "symfony/dependency-injection": "^6.3|^7.0",
  10346. "symfony/deprecation-contracts": "^2.2|^3",
  10347. "symfony/filesystem": "^6.3|^7.0",
  10348. "symfony/finder": "^6.3|^7.0",
  10349. "symfony/framework-bundle": "^6.3|^7.0",
  10350. "symfony/http-kernel": "^6.3|^7.0",
  10351. "symfony/process": "^6.3|^7.0"
  10352. },
  10353. "conflict": {
  10354. "doctrine/doctrine-bundle": "<2.4",
  10355. "doctrine/orm": "<2.10"
  10356. },
  10357. "require-dev": {
  10358. "composer/semver": "^3.0",
  10359. "doctrine/doctrine-bundle": "^2.5.0",
  10360. "doctrine/orm": "^2.10.0",
  10361. "symfony/http-client": "^6.3|^7.0",
  10362. "symfony/phpunit-bridge": "^6.3|^7.0",
  10363. "symfony/security-core": "^6.3|^7.0",
  10364. "symfony/yaml": "^6.3|^7.0",
  10365. "twig/twig": "^2.0|^3.0"
  10366. },
  10367. "type": "symfony-bundle",
  10368. "extra": {
  10369. "branch-alias": {
  10370. "dev-main": "1.x-dev"
  10371. }
  10372. },
  10373. "autoload": {
  10374. "psr-4": {
  10375. "Symfony\\Bundle\\MakerBundle\\": "src/"
  10376. }
  10377. },
  10378. "notification-url": "https://packagist.org/downloads/",
  10379. "license": [
  10380. "MIT"
  10381. ],
  10382. "authors": [
  10383. {
  10384. "name": "Symfony Community",
  10385. "homepage": "https://symfony.com/contributors"
  10386. }
  10387. ],
  10388. "description": "Symfony Maker helps you create empty commands, controllers, form classes, tests and more so you can forget about writing boilerplate code.",
  10389. "homepage": "https://symfony.com/doc/current/bundles/SymfonyMakerBundle/index.html",
  10390. "keywords": [
  10391. "code generator",
  10392. "dev",
  10393. "generator",
  10394. "scaffold",
  10395. "scaffolding"
  10396. ],
  10397. "support": {
  10398. "issues": "https://github.com/symfony/maker-bundle/issues",
  10399. "source": "https://github.com/symfony/maker-bundle/tree/v1.52.0"
  10400. },
  10401. "funding": [
  10402. {
  10403. "url": "https://symfony.com/sponsor",
  10404. "type": "custom"
  10405. },
  10406. {
  10407. "url": "https://github.com/fabpot",
  10408. "type": "github"
  10409. },
  10410. {
  10411. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  10412. "type": "tidelift"
  10413. }
  10414. ],
  10415. "time": "2023-10-31T18:23:49+00:00"
  10416. },
  10417. {
  10418. "name": "symfony/phpunit-bridge",
  10419. "version": "v6.3.10",
  10420. "source": {
  10421. "type": "git",
  10422. "url": "https://github.com/symfony/phpunit-bridge.git",
  10423. "reference": "1b7f8aafc989630ecfe140660cafec8588821bae"
  10424. },
  10425. "dist": {
  10426. "type": "zip",
  10427. "url": "https://api.github.com/repos/symfony/phpunit-bridge/zipball/1b7f8aafc989630ecfe140660cafec8588821bae",
  10428. "reference": "1b7f8aafc989630ecfe140660cafec8588821bae",
  10429. "shasum": ""
  10430. },
  10431. "require": {
  10432. "php": ">=7.1.3"
  10433. },
  10434. "conflict": {
  10435. "phpunit/phpunit": "<7.5|9.1.2"
  10436. },
  10437. "require-dev": {
  10438. "symfony/deprecation-contracts": "^2.5|^3.0",
  10439. "symfony/error-handler": "^5.4|^6.0",
  10440. "symfony/polyfill-php81": "^1.27"
  10441. },
  10442. "bin": [
  10443. "bin/simple-phpunit"
  10444. ],
  10445. "type": "symfony-bridge",
  10446. "extra": {
  10447. "thanks": {
  10448. "name": "phpunit/phpunit",
  10449. "url": "https://github.com/sebastianbergmann/phpunit"
  10450. }
  10451. },
  10452. "autoload": {
  10453. "files": [
  10454. "bootstrap.php"
  10455. ],
  10456. "psr-4": {
  10457. "Symfony\\Bridge\\PhpUnit\\": ""
  10458. },
  10459. "exclude-from-classmap": [
  10460. "/Tests/"
  10461. ]
  10462. },
  10463. "notification-url": "https://packagist.org/downloads/",
  10464. "license": [
  10465. "MIT"
  10466. ],
  10467. "authors": [
  10468. {
  10469. "name": "Nicolas Grekas",
  10470. "email": "p@tchwork.com"
  10471. },
  10472. {
  10473. "name": "Symfony Community",
  10474. "homepage": "https://symfony.com/contributors"
  10475. }
  10476. ],
  10477. "description": "Provides utilities for PHPUnit, especially user deprecation notices management",
  10478. "homepage": "https://symfony.com",
  10479. "support": {
  10480. "source": "https://github.com/symfony/phpunit-bridge/tree/v6.3.10"
  10481. },
  10482. "funding": [
  10483. {
  10484. "url": "https://symfony.com/sponsor",
  10485. "type": "custom"
  10486. },
  10487. {
  10488. "url": "https://github.com/fabpot",
  10489. "type": "github"
  10490. },
  10491. {
  10492. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  10493. "type": "tidelift"
  10494. }
  10495. ],
  10496. "time": "2023-12-01T09:24:52+00:00"
  10497. },
  10498. {
  10499. "name": "symfony/web-profiler-bundle",
  10500. "version": "v6.3.8",
  10501. "source": {
  10502. "type": "git",
  10503. "url": "https://github.com/symfony/web-profiler-bundle.git",
  10504. "reference": "4167c20cbdbb1152007fa731718c8c0362f28617"
  10505. },
  10506. "dist": {
  10507. "type": "zip",
  10508. "url": "https://api.github.com/repos/symfony/web-profiler-bundle/zipball/4167c20cbdbb1152007fa731718c8c0362f28617",
  10509. "reference": "4167c20cbdbb1152007fa731718c8c0362f28617",
  10510. "shasum": ""
  10511. },
  10512. "require": {
  10513. "php": ">=8.1",
  10514. "symfony/config": "^5.4|^6.0",
  10515. "symfony/framework-bundle": "^5.4|^6.0,<6.4",
  10516. "symfony/http-kernel": "^6.3",
  10517. "symfony/routing": "^5.4|^6.0",
  10518. "symfony/twig-bundle": "^5.4|^6.0",
  10519. "twig/twig": "^2.13|^3.0.4"
  10520. },
  10521. "conflict": {
  10522. "symfony/form": "<5.4",
  10523. "symfony/mailer": "<5.4",
  10524. "symfony/messenger": "<5.4"
  10525. },
  10526. "require-dev": {
  10527. "symfony/browser-kit": "^5.4|^6.0",
  10528. "symfony/console": "^5.4|^6.0",
  10529. "symfony/css-selector": "^5.4|^6.0",
  10530. "symfony/stopwatch": "^5.4|^6.0"
  10531. },
  10532. "type": "symfony-bundle",
  10533. "autoload": {
  10534. "psr-4": {
  10535. "Symfony\\Bundle\\WebProfilerBundle\\": ""
  10536. },
  10537. "exclude-from-classmap": [
  10538. "/Tests/"
  10539. ]
  10540. },
  10541. "notification-url": "https://packagist.org/downloads/",
  10542. "license": [
  10543. "MIT"
  10544. ],
  10545. "authors": [
  10546. {
  10547. "name": "Fabien Potencier",
  10548. "email": "fabien@symfony.com"
  10549. },
  10550. {
  10551. "name": "Symfony Community",
  10552. "homepage": "https://symfony.com/contributors"
  10553. }
  10554. ],
  10555. "description": "Provides a development tool that gives detailed information about the execution of any request",
  10556. "homepage": "https://symfony.com",
  10557. "keywords": [
  10558. "dev"
  10559. ],
  10560. "support": {
  10561. "source": "https://github.com/symfony/web-profiler-bundle/tree/v6.3.8"
  10562. },
  10563. "funding": [
  10564. {
  10565. "url": "https://symfony.com/sponsor",
  10566. "type": "custom"
  10567. },
  10568. {
  10569. "url": "https://github.com/fabpot",
  10570. "type": "github"
  10571. },
  10572. {
  10573. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  10574. "type": "tidelift"
  10575. }
  10576. ],
  10577. "time": "2023-10-31T14:41:59+00:00"
  10578. },
  10579. {
  10580. "name": "theseer/tokenizer",
  10581. "version": "1.2.2",
  10582. "source": {
  10583. "type": "git",
  10584. "url": "https://github.com/theseer/tokenizer.git",
  10585. "reference": "b2ad5003ca10d4ee50a12da31de12a5774ba6b96"
  10586. },
  10587. "dist": {
  10588. "type": "zip",
  10589. "url": "https://api.github.com/repos/theseer/tokenizer/zipball/b2ad5003ca10d4ee50a12da31de12a5774ba6b96",
  10590. "reference": "b2ad5003ca10d4ee50a12da31de12a5774ba6b96",
  10591. "shasum": ""
  10592. },
  10593. "require": {
  10594. "ext-dom": "*",
  10595. "ext-tokenizer": "*",
  10596. "ext-xmlwriter": "*",
  10597. "php": "^7.2 || ^8.0"
  10598. },
  10599. "type": "library",
  10600. "autoload": {
  10601. "classmap": [
  10602. "src/"
  10603. ]
  10604. },
  10605. "notification-url": "https://packagist.org/downloads/",
  10606. "license": [
  10607. "BSD-3-Clause"
  10608. ],
  10609. "authors": [
  10610. {
  10611. "name": "Arne Blankerts",
  10612. "email": "arne@blankerts.de",
  10613. "role": "Developer"
  10614. }
  10615. ],
  10616. "description": "A small library for converting tokenized PHP source code into XML and potentially other formats",
  10617. "support": {
  10618. "issues": "https://github.com/theseer/tokenizer/issues",
  10619. "source": "https://github.com/theseer/tokenizer/tree/1.2.2"
  10620. },
  10621. "funding": [
  10622. {
  10623. "url": "https://github.com/theseer",
  10624. "type": "github"
  10625. }
  10626. ],
  10627. "time": "2023-11-20T00:12:19+00:00"
  10628. }
  10629. ],
  10630. "aliases": [],
  10631. "minimum-stability": "stable",
  10632. "stability-flags": [],
  10633. "prefer-stable": false,
  10634. "prefer-lowest": false,
  10635. "platform": {
  10636. "php": "^8.1",
  10637. "ext-ctype": "*",
  10638. "ext-iconv": "*"
  10639. },
  10640. "platform-dev": [],
  10641. "platform-overrides": {
  10642. "php": "8.1"
  10643. },
  10644. "plugin-api-version": "2.6.0"
  10645. }