composer.lock 355 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298529953005301530253035304530553065307530853095310531153125313531453155316531753185319532053215322532353245325532653275328532953305331533253335334533553365337533853395340534153425343534453455346534753485349535053515352535353545355535653575358535953605361536253635364536553665367536853695370537153725373537453755376537753785379538053815382538353845385538653875388538953905391539253935394539553965397539853995400540154025403540454055406540754085409541054115412541354145415541654175418541954205421542254235424542554265427542854295430543154325433543454355436543754385439544054415442544354445445544654475448544954505451545254535454545554565457545854595460546154625463546454655466546754685469547054715472547354745475547654775478547954805481548254835484548554865487548854895490549154925493549454955496549754985499550055015502550355045505550655075508550955105511551255135514551555165517551855195520552155225523552455255526552755285529553055315532553355345535553655375538553955405541554255435544554555465547554855495550555155525553555455555556555755585559556055615562556355645565556655675568556955705571557255735574557555765577557855795580558155825583558455855586558755885589559055915592559355945595559655975598559956005601560256035604560556065607560856095610561156125613561456155616561756185619562056215622562356245625562656275628562956305631563256335634563556365637563856395640564156425643564456455646564756485649565056515652565356545655565656575658565956605661566256635664566556665667566856695670567156725673567456755676567756785679568056815682568356845685568656875688568956905691569256935694569556965697569856995700570157025703570457055706570757085709571057115712571357145715571657175718571957205721572257235724572557265727572857295730573157325733573457355736573757385739574057415742574357445745574657475748574957505751575257535754575557565757575857595760576157625763576457655766576757685769577057715772577357745775577657775778577957805781578257835784578557865787578857895790579157925793579457955796579757985799580058015802580358045805580658075808580958105811581258135814581558165817581858195820582158225823582458255826582758285829583058315832583358345835583658375838583958405841584258435844584558465847584858495850585158525853585458555856585758585859586058615862586358645865586658675868586958705871587258735874587558765877587858795880588158825883588458855886588758885889589058915892589358945895589658975898589959005901590259035904590559065907590859095910591159125913591459155916591759185919592059215922592359245925592659275928592959305931593259335934593559365937593859395940594159425943594459455946594759485949595059515952595359545955595659575958595959605961596259635964596559665967596859695970597159725973597459755976597759785979598059815982598359845985598659875988598959905991599259935994599559965997599859996000600160026003600460056006600760086009601060116012601360146015601660176018601960206021602260236024602560266027602860296030603160326033603460356036603760386039604060416042604360446045604660476048604960506051605260536054605560566057605860596060606160626063606460656066606760686069607060716072607360746075607660776078607960806081608260836084608560866087608860896090609160926093609460956096609760986099610061016102610361046105610661076108610961106111611261136114611561166117611861196120612161226123612461256126612761286129613061316132613361346135613661376138613961406141614261436144614561466147614861496150615161526153615461556156615761586159616061616162616361646165616661676168616961706171617261736174617561766177617861796180618161826183618461856186618761886189619061916192619361946195619661976198619962006201620262036204620562066207620862096210621162126213621462156216621762186219622062216222622362246225622662276228622962306231623262336234623562366237623862396240624162426243624462456246624762486249625062516252625362546255625662576258625962606261626262636264626562666267626862696270627162726273627462756276627762786279628062816282628362846285628662876288628962906291629262936294629562966297629862996300630163026303630463056306630763086309631063116312631363146315631663176318631963206321632263236324632563266327632863296330633163326333633463356336633763386339634063416342634363446345634663476348634963506351635263536354635563566357635863596360636163626363636463656366636763686369637063716372637363746375637663776378637963806381638263836384638563866387638863896390639163926393639463956396639763986399640064016402640364046405640664076408640964106411641264136414641564166417641864196420642164226423642464256426642764286429643064316432643364346435643664376438643964406441644264436444644564466447644864496450645164526453645464556456645764586459646064616462646364646465646664676468646964706471647264736474647564766477647864796480648164826483648464856486648764886489649064916492649364946495649664976498649965006501650265036504650565066507650865096510651165126513651465156516651765186519652065216522652365246525652665276528652965306531653265336534653565366537653865396540654165426543654465456546654765486549655065516552655365546555655665576558655965606561656265636564656565666567656865696570657165726573657465756576657765786579658065816582658365846585658665876588658965906591659265936594659565966597659865996600660166026603660466056606660766086609661066116612661366146615661666176618661966206621662266236624662566266627662866296630663166326633663466356636663766386639664066416642664366446645664666476648664966506651665266536654665566566657665866596660666166626663666466656666666766686669667066716672667366746675667666776678667966806681668266836684668566866687668866896690669166926693669466956696669766986699670067016702670367046705670667076708670967106711671267136714671567166717671867196720672167226723672467256726672767286729673067316732673367346735673667376738673967406741674267436744674567466747674867496750675167526753675467556756675767586759676067616762676367646765676667676768676967706771677267736774677567766777677867796780678167826783678467856786678767886789679067916792679367946795679667976798679968006801680268036804680568066807680868096810681168126813681468156816681768186819682068216822682368246825682668276828682968306831683268336834683568366837683868396840684168426843684468456846684768486849685068516852685368546855685668576858685968606861686268636864686568666867686868696870687168726873687468756876687768786879688068816882688368846885688668876888688968906891689268936894689568966897689868996900690169026903690469056906690769086909691069116912691369146915691669176918691969206921692269236924692569266927692869296930693169326933693469356936693769386939694069416942694369446945694669476948694969506951695269536954695569566957695869596960696169626963696469656966696769686969697069716972697369746975697669776978697969806981698269836984698569866987698869896990699169926993699469956996699769986999700070017002700370047005700670077008700970107011701270137014701570167017701870197020702170227023702470257026702770287029703070317032703370347035703670377038703970407041704270437044704570467047704870497050705170527053705470557056705770587059706070617062706370647065706670677068706970707071707270737074707570767077707870797080708170827083708470857086708770887089709070917092709370947095709670977098709971007101710271037104710571067107710871097110711171127113711471157116711771187119712071217122712371247125712671277128712971307131713271337134713571367137713871397140714171427143714471457146714771487149715071517152715371547155715671577158715971607161716271637164716571667167716871697170717171727173717471757176717771787179718071817182718371847185718671877188718971907191719271937194719571967197719871997200720172027203720472057206720772087209721072117212721372147215721672177218721972207221722272237224722572267227722872297230723172327233723472357236723772387239724072417242724372447245724672477248724972507251725272537254725572567257725872597260726172627263726472657266726772687269727072717272727372747275727672777278727972807281728272837284728572867287728872897290729172927293729472957296729772987299730073017302730373047305730673077308730973107311731273137314731573167317731873197320732173227323732473257326732773287329733073317332733373347335733673377338733973407341734273437344734573467347734873497350735173527353735473557356735773587359736073617362736373647365736673677368736973707371737273737374737573767377737873797380738173827383738473857386738773887389739073917392739373947395739673977398739974007401740274037404740574067407740874097410741174127413741474157416741774187419742074217422742374247425742674277428742974307431743274337434743574367437743874397440744174427443744474457446744774487449745074517452745374547455745674577458745974607461746274637464746574667467746874697470747174727473747474757476747774787479748074817482748374847485748674877488748974907491749274937494749574967497749874997500750175027503750475057506750775087509751075117512751375147515751675177518751975207521752275237524752575267527752875297530753175327533753475357536753775387539754075417542754375447545754675477548754975507551755275537554755575567557755875597560756175627563756475657566756775687569757075717572757375747575757675777578757975807581758275837584758575867587758875897590759175927593759475957596759775987599760076017602760376047605760676077608760976107611761276137614761576167617761876197620762176227623762476257626762776287629763076317632763376347635763676377638763976407641764276437644764576467647764876497650765176527653765476557656765776587659766076617662766376647665766676677668766976707671767276737674767576767677767876797680768176827683768476857686768776887689769076917692769376947695769676977698769977007701770277037704770577067707770877097710771177127713771477157716771777187719772077217722772377247725772677277728772977307731773277337734773577367737773877397740774177427743774477457746774777487749775077517752775377547755775677577758775977607761776277637764776577667767776877697770777177727773777477757776777777787779778077817782778377847785778677877788778977907791779277937794779577967797779877997800780178027803780478057806780778087809781078117812781378147815781678177818781978207821782278237824782578267827782878297830783178327833783478357836783778387839784078417842784378447845784678477848784978507851785278537854785578567857785878597860786178627863786478657866786778687869787078717872787378747875787678777878787978807881788278837884788578867887788878897890789178927893789478957896789778987899790079017902790379047905790679077908790979107911791279137914791579167917791879197920792179227923792479257926792779287929793079317932793379347935793679377938793979407941794279437944794579467947794879497950795179527953795479557956795779587959796079617962796379647965796679677968796979707971797279737974797579767977797879797980798179827983798479857986798779887989799079917992799379947995799679977998799980008001800280038004800580068007800880098010801180128013801480158016801780188019802080218022802380248025802680278028802980308031803280338034803580368037803880398040804180428043804480458046804780488049805080518052805380548055805680578058805980608061806280638064806580668067806880698070807180728073807480758076807780788079808080818082808380848085808680878088808980908091809280938094809580968097809880998100810181028103810481058106810781088109811081118112811381148115811681178118811981208121812281238124812581268127812881298130813181328133813481358136813781388139814081418142814381448145814681478148814981508151815281538154815581568157815881598160816181628163816481658166816781688169817081718172817381748175817681778178817981808181818281838184818581868187818881898190819181928193819481958196819781988199820082018202820382048205820682078208820982108211821282138214821582168217821882198220822182228223822482258226822782288229823082318232823382348235823682378238823982408241824282438244824582468247824882498250825182528253825482558256825782588259826082618262826382648265826682678268826982708271827282738274827582768277827882798280828182828283828482858286828782888289829082918292829382948295829682978298829983008301830283038304830583068307830883098310831183128313831483158316831783188319832083218322832383248325832683278328832983308331833283338334833583368337833883398340834183428343834483458346834783488349835083518352835383548355835683578358835983608361836283638364836583668367836883698370837183728373837483758376837783788379838083818382838383848385838683878388838983908391839283938394839583968397839883998400840184028403840484058406840784088409841084118412841384148415841684178418841984208421842284238424842584268427842884298430843184328433843484358436843784388439844084418442844384448445844684478448844984508451845284538454845584568457845884598460846184628463846484658466846784688469847084718472847384748475847684778478847984808481848284838484848584868487848884898490849184928493849484958496849784988499850085018502850385048505850685078508850985108511851285138514851585168517851885198520852185228523852485258526852785288529853085318532853385348535853685378538853985408541854285438544854585468547854885498550855185528553855485558556855785588559856085618562856385648565856685678568856985708571857285738574857585768577857885798580858185828583858485858586858785888589859085918592859385948595859685978598859986008601860286038604860586068607860886098610861186128613861486158616861786188619862086218622862386248625862686278628862986308631863286338634863586368637863886398640864186428643864486458646864786488649865086518652865386548655865686578658865986608661866286638664866586668667866886698670867186728673867486758676867786788679868086818682868386848685868686878688868986908691869286938694869586968697869886998700870187028703870487058706870787088709871087118712871387148715871687178718871987208721872287238724872587268727872887298730873187328733873487358736873787388739874087418742874387448745874687478748874987508751875287538754875587568757875887598760876187628763876487658766876787688769877087718772877387748775877687778778877987808781878287838784878587868787878887898790879187928793879487958796879787988799880088018802880388048805880688078808880988108811881288138814881588168817881888198820882188228823882488258826882788288829883088318832883388348835883688378838883988408841884288438844884588468847884888498850885188528853885488558856885788588859886088618862886388648865886688678868886988708871887288738874887588768877887888798880888188828883888488858886888788888889889088918892889388948895889688978898889989008901890289038904890589068907890889098910891189128913891489158916891789188919892089218922892389248925892689278928892989308931893289338934893589368937893889398940894189428943894489458946894789488949895089518952895389548955895689578958895989608961896289638964896589668967896889698970897189728973897489758976897789788979898089818982898389848985898689878988898989908991899289938994899589968997899889999000900190029003900490059006900790089009901090119012901390149015901690179018901990209021902290239024902590269027902890299030903190329033903490359036903790389039904090419042904390449045904690479048904990509051905290539054905590569057905890599060906190629063906490659066906790689069907090719072907390749075907690779078907990809081908290839084908590869087908890899090909190929093909490959096909790989099910091019102910391049105910691079108910991109111911291139114911591169117911891199120912191229123912491259126912791289129913091319132913391349135913691379138913991409141914291439144914591469147914891499150915191529153915491559156915791589159916091619162916391649165916691679168916991709171917291739174917591769177917891799180918191829183918491859186918791889189919091919192919391949195919691979198919992009201920292039204920592069207920892099210921192129213921492159216921792189219922092219222922392249225922692279228922992309231923292339234923592369237923892399240924192429243924492459246924792489249925092519252925392549255925692579258925992609261926292639264926592669267926892699270927192729273927492759276927792789279928092819282928392849285928692879288928992909291929292939294929592969297929892999300930193029303930493059306930793089309931093119312931393149315931693179318931993209321932293239324932593269327932893299330933193329333933493359336933793389339934093419342934393449345934693479348934993509351935293539354935593569357935893599360936193629363936493659366936793689369937093719372937393749375937693779378937993809381938293839384938593869387938893899390939193929393939493959396939793989399940094019402940394049405940694079408940994109411941294139414941594169417941894199420942194229423942494259426942794289429943094319432943394349435943694379438943994409441944294439444944594469447944894499450945194529453945494559456945794589459946094619462946394649465946694679468946994709471947294739474947594769477947894799480948194829483948494859486948794889489949094919492949394949495949694979498949995009501950295039504950595069507950895099510951195129513951495159516951795189519952095219522952395249525952695279528952995309531953295339534953595369537953895399540954195429543954495459546954795489549955095519552955395549555955695579558955995609561956295639564956595669567956895699570957195729573957495759576957795789579958095819582958395849585958695879588958995909591959295939594959595969597959895999600960196029603960496059606960796089609961096119612961396149615961696179618961996209621962296239624962596269627962896299630963196329633963496359636963796389639964096419642964396449645964696479648964996509651965296539654965596569657965896599660966196629663966496659666966796689669967096719672967396749675967696779678967996809681968296839684968596869687968896899690969196929693969496959696969796989699970097019702970397049705970697079708970997109711971297139714971597169717971897199720972197229723972497259726972797289729973097319732973397349735973697379738973997409741974297439744974597469747974897499750975197529753975497559756975797589759976097619762976397649765976697679768
  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": "f19d9635a2b085202087311bdd90bb6e",
  8. "packages": [
  9. {
  10. "name": "doctrine/cache",
  11. "version": "2.2.0",
  12. "source": {
  13. "type": "git",
  14. "url": "https://github.com/doctrine/cache.git",
  15. "reference": "1ca8f21980e770095a31456042471a57bc4c68fb"
  16. },
  17. "dist": {
  18. "type": "zip",
  19. "url": "https://api.github.com/repos/doctrine/cache/zipball/1ca8f21980e770095a31456042471a57bc4c68fb",
  20. "reference": "1ca8f21980e770095a31456042471a57bc4c68fb",
  21. "shasum": ""
  22. },
  23. "require": {
  24. "php": "~7.1 || ^8.0"
  25. },
  26. "conflict": {
  27. "doctrine/common": ">2.2,<2.4"
  28. },
  29. "require-dev": {
  30. "cache/integration-tests": "dev-master",
  31. "doctrine/coding-standard": "^9",
  32. "phpunit/phpunit": "^7.5 || ^8.5 || ^9.5",
  33. "psr/cache": "^1.0 || ^2.0 || ^3.0",
  34. "symfony/cache": "^4.4 || ^5.4 || ^6",
  35. "symfony/var-exporter": "^4.4 || ^5.4 || ^6"
  36. },
  37. "type": "library",
  38. "autoload": {
  39. "psr-4": {
  40. "Doctrine\\Common\\Cache\\": "lib/Doctrine/Common/Cache"
  41. }
  42. },
  43. "notification-url": "https://packagist.org/downloads/",
  44. "license": [
  45. "MIT"
  46. ],
  47. "authors": [
  48. {
  49. "name": "Guilherme Blanco",
  50. "email": "guilhermeblanco@gmail.com"
  51. },
  52. {
  53. "name": "Roman Borschel",
  54. "email": "roman@code-factory.org"
  55. },
  56. {
  57. "name": "Benjamin Eberlei",
  58. "email": "kontakt@beberlei.de"
  59. },
  60. {
  61. "name": "Jonathan Wage",
  62. "email": "jonwage@gmail.com"
  63. },
  64. {
  65. "name": "Johannes Schmitt",
  66. "email": "schmittjoh@gmail.com"
  67. }
  68. ],
  69. "description": "PHP Doctrine Cache library is a popular cache implementation that supports many different drivers such as redis, memcache, apc, mongodb and others.",
  70. "homepage": "https://www.doctrine-project.org/projects/cache.html",
  71. "keywords": [
  72. "abstraction",
  73. "apcu",
  74. "cache",
  75. "caching",
  76. "couchdb",
  77. "memcached",
  78. "php",
  79. "redis",
  80. "xcache"
  81. ],
  82. "support": {
  83. "issues": "https://github.com/doctrine/cache/issues",
  84. "source": "https://github.com/doctrine/cache/tree/2.2.0"
  85. },
  86. "funding": [
  87. {
  88. "url": "https://www.doctrine-project.org/sponsorship.html",
  89. "type": "custom"
  90. },
  91. {
  92. "url": "https://www.patreon.com/phpdoctrine",
  93. "type": "patreon"
  94. },
  95. {
  96. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fcache",
  97. "type": "tidelift"
  98. }
  99. ],
  100. "time": "2022-05-20T20:07:39+00:00"
  101. },
  102. {
  103. "name": "doctrine/collections",
  104. "version": "2.2.2",
  105. "source": {
  106. "type": "git",
  107. "url": "https://github.com/doctrine/collections.git",
  108. "reference": "d8af7f248c74f195f7347424600fd9e17b57af59"
  109. },
  110. "dist": {
  111. "type": "zip",
  112. "url": "https://api.github.com/repos/doctrine/collections/zipball/d8af7f248c74f195f7347424600fd9e17b57af59",
  113. "reference": "d8af7f248c74f195f7347424600fd9e17b57af59",
  114. "shasum": ""
  115. },
  116. "require": {
  117. "doctrine/deprecations": "^1",
  118. "php": "^8.1"
  119. },
  120. "require-dev": {
  121. "doctrine/coding-standard": "^12",
  122. "ext-json": "*",
  123. "phpstan/phpstan": "^1.8",
  124. "phpstan/phpstan-phpunit": "^1.0",
  125. "phpunit/phpunit": "^10.5",
  126. "vimeo/psalm": "^5.11"
  127. },
  128. "type": "library",
  129. "autoload": {
  130. "psr-4": {
  131. "Doctrine\\Common\\Collections\\": "src"
  132. }
  133. },
  134. "notification-url": "https://packagist.org/downloads/",
  135. "license": [
  136. "MIT"
  137. ],
  138. "authors": [
  139. {
  140. "name": "Guilherme Blanco",
  141. "email": "guilhermeblanco@gmail.com"
  142. },
  143. {
  144. "name": "Roman Borschel",
  145. "email": "roman@code-factory.org"
  146. },
  147. {
  148. "name": "Benjamin Eberlei",
  149. "email": "kontakt@beberlei.de"
  150. },
  151. {
  152. "name": "Jonathan Wage",
  153. "email": "jonwage@gmail.com"
  154. },
  155. {
  156. "name": "Johannes Schmitt",
  157. "email": "schmittjoh@gmail.com"
  158. }
  159. ],
  160. "description": "PHP Doctrine Collections library that adds additional functionality on top of PHP arrays.",
  161. "homepage": "https://www.doctrine-project.org/projects/collections.html",
  162. "keywords": [
  163. "array",
  164. "collections",
  165. "iterators",
  166. "php"
  167. ],
  168. "support": {
  169. "issues": "https://github.com/doctrine/collections/issues",
  170. "source": "https://github.com/doctrine/collections/tree/2.2.2"
  171. },
  172. "funding": [
  173. {
  174. "url": "https://www.doctrine-project.org/sponsorship.html",
  175. "type": "custom"
  176. },
  177. {
  178. "url": "https://www.patreon.com/phpdoctrine",
  179. "type": "patreon"
  180. },
  181. {
  182. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fcollections",
  183. "type": "tidelift"
  184. }
  185. ],
  186. "time": "2024-04-18T06:56:21+00:00"
  187. },
  188. {
  189. "name": "doctrine/dbal",
  190. "version": "3.9.3",
  191. "source": {
  192. "type": "git",
  193. "url": "https://github.com/doctrine/dbal.git",
  194. "reference": "61446f07fcb522414d6cfd8b1c3e5f9e18c579ba"
  195. },
  196. "dist": {
  197. "type": "zip",
  198. "url": "https://api.github.com/repos/doctrine/dbal/zipball/61446f07fcb522414d6cfd8b1c3e5f9e18c579ba",
  199. "reference": "61446f07fcb522414d6cfd8b1c3e5f9e18c579ba",
  200. "shasum": ""
  201. },
  202. "require": {
  203. "composer-runtime-api": "^2",
  204. "doctrine/cache": "^1.11|^2.0",
  205. "doctrine/deprecations": "^0.5.3|^1",
  206. "doctrine/event-manager": "^1|^2",
  207. "php": "^7.4 || ^8.0",
  208. "psr/cache": "^1|^2|^3",
  209. "psr/log": "^1|^2|^3"
  210. },
  211. "require-dev": {
  212. "doctrine/coding-standard": "12.0.0",
  213. "fig/log-test": "^1",
  214. "jetbrains/phpstorm-stubs": "2023.1",
  215. "phpstan/phpstan": "1.12.6",
  216. "phpstan/phpstan-strict-rules": "^1.6",
  217. "phpunit/phpunit": "9.6.20",
  218. "psalm/plugin-phpunit": "0.18.4",
  219. "slevomat/coding-standard": "8.13.1",
  220. "squizlabs/php_codesniffer": "3.10.2",
  221. "symfony/cache": "^5.4|^6.0|^7.0",
  222. "symfony/console": "^4.4|^5.4|^6.0|^7.0",
  223. "vimeo/psalm": "4.30.0"
  224. },
  225. "suggest": {
  226. "symfony/console": "For helpful console commands such as SQL execution and import of files."
  227. },
  228. "bin": [
  229. "bin/doctrine-dbal"
  230. ],
  231. "type": "library",
  232. "autoload": {
  233. "psr-4": {
  234. "Doctrine\\DBAL\\": "src"
  235. }
  236. },
  237. "notification-url": "https://packagist.org/downloads/",
  238. "license": [
  239. "MIT"
  240. ],
  241. "authors": [
  242. {
  243. "name": "Guilherme Blanco",
  244. "email": "guilhermeblanco@gmail.com"
  245. },
  246. {
  247. "name": "Roman Borschel",
  248. "email": "roman@code-factory.org"
  249. },
  250. {
  251. "name": "Benjamin Eberlei",
  252. "email": "kontakt@beberlei.de"
  253. },
  254. {
  255. "name": "Jonathan Wage",
  256. "email": "jonwage@gmail.com"
  257. }
  258. ],
  259. "description": "Powerful PHP database abstraction layer (DBAL) with many features for database schema introspection and management.",
  260. "homepage": "https://www.doctrine-project.org/projects/dbal.html",
  261. "keywords": [
  262. "abstraction",
  263. "database",
  264. "db2",
  265. "dbal",
  266. "mariadb",
  267. "mssql",
  268. "mysql",
  269. "oci8",
  270. "oracle",
  271. "pdo",
  272. "pgsql",
  273. "postgresql",
  274. "queryobject",
  275. "sasql",
  276. "sql",
  277. "sqlite",
  278. "sqlserver",
  279. "sqlsrv"
  280. ],
  281. "support": {
  282. "issues": "https://github.com/doctrine/dbal/issues",
  283. "source": "https://github.com/doctrine/dbal/tree/3.9.3"
  284. },
  285. "funding": [
  286. {
  287. "url": "https://www.doctrine-project.org/sponsorship.html",
  288. "type": "custom"
  289. },
  290. {
  291. "url": "https://www.patreon.com/phpdoctrine",
  292. "type": "patreon"
  293. },
  294. {
  295. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fdbal",
  296. "type": "tidelift"
  297. }
  298. ],
  299. "time": "2024-10-10T17:56:43+00:00"
  300. },
  301. {
  302. "name": "doctrine/deprecations",
  303. "version": "1.1.4",
  304. "source": {
  305. "type": "git",
  306. "url": "https://github.com/doctrine/deprecations.git",
  307. "reference": "31610dbb31faa98e6b5447b62340826f54fbc4e9"
  308. },
  309. "dist": {
  310. "type": "zip",
  311. "url": "https://api.github.com/repos/doctrine/deprecations/zipball/31610dbb31faa98e6b5447b62340826f54fbc4e9",
  312. "reference": "31610dbb31faa98e6b5447b62340826f54fbc4e9",
  313. "shasum": ""
  314. },
  315. "require": {
  316. "php": "^7.1 || ^8.0"
  317. },
  318. "require-dev": {
  319. "doctrine/coding-standard": "^9 || ^12",
  320. "phpstan/phpstan": "1.4.10 || 2.0.3",
  321. "phpstan/phpstan-phpunit": "^1.0 || ^2",
  322. "phpunit/phpunit": "^7.5 || ^8.5 || ^9.5",
  323. "psr/log": "^1 || ^2 || ^3"
  324. },
  325. "suggest": {
  326. "psr/log": "Allows logging deprecations via PSR-3 logger implementation"
  327. },
  328. "type": "library",
  329. "autoload": {
  330. "psr-4": {
  331. "Doctrine\\Deprecations\\": "src"
  332. }
  333. },
  334. "notification-url": "https://packagist.org/downloads/",
  335. "license": [
  336. "MIT"
  337. ],
  338. "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.",
  339. "homepage": "https://www.doctrine-project.org/",
  340. "support": {
  341. "issues": "https://github.com/doctrine/deprecations/issues",
  342. "source": "https://github.com/doctrine/deprecations/tree/1.1.4"
  343. },
  344. "time": "2024-12-07T21:18:45+00:00"
  345. },
  346. {
  347. "name": "doctrine/doctrine-bundle",
  348. "version": "2.13.1",
  349. "source": {
  350. "type": "git",
  351. "url": "https://github.com/doctrine/DoctrineBundle.git",
  352. "reference": "2740ad8b8739b39ab37d409c972b092f632b025a"
  353. },
  354. "dist": {
  355. "type": "zip",
  356. "url": "https://api.github.com/repos/doctrine/DoctrineBundle/zipball/2740ad8b8739b39ab37d409c972b092f632b025a",
  357. "reference": "2740ad8b8739b39ab37d409c972b092f632b025a",
  358. "shasum": ""
  359. },
  360. "require": {
  361. "doctrine/cache": "^1.11 || ^2.0",
  362. "doctrine/dbal": "^3.7.0 || ^4.0",
  363. "doctrine/persistence": "^2.2 || ^3",
  364. "doctrine/sql-formatter": "^1.0.1",
  365. "php": "^7.4 || ^8.0",
  366. "symfony/cache": "^5.4 || ^6.0 || ^7.0",
  367. "symfony/config": "^5.4 || ^6.0 || ^7.0",
  368. "symfony/console": "^5.4 || ^6.0 || ^7.0",
  369. "symfony/dependency-injection": "^5.4 || ^6.0 || ^7.0",
  370. "symfony/deprecation-contracts": "^2.1 || ^3",
  371. "symfony/doctrine-bridge": "^5.4.46 || ^6.4.3 || ^7.0.3",
  372. "symfony/framework-bundle": "^5.4 || ^6.0 || ^7.0",
  373. "symfony/polyfill-php80": "^1.15",
  374. "symfony/service-contracts": "^1.1.1 || ^2.0 || ^3"
  375. },
  376. "conflict": {
  377. "doctrine/annotations": ">=3.0",
  378. "doctrine/orm": "<2.17 || >=4.0",
  379. "twig/twig": "<1.34 || >=2.0 <2.4"
  380. },
  381. "require-dev": {
  382. "doctrine/annotations": "^1 || ^2",
  383. "doctrine/coding-standard": "^12",
  384. "doctrine/deprecations": "^1.0",
  385. "doctrine/orm": "^2.17 || ^3.0",
  386. "friendsofphp/proxy-manager-lts": "^1.0",
  387. "phpunit/phpunit": "^9.5.26",
  388. "psalm/plugin-phpunit": "^0.18.4",
  389. "psalm/plugin-symfony": "^5",
  390. "psr/log": "^1.1.4 || ^2.0 || ^3.0",
  391. "symfony/phpunit-bridge": "^6.1 || ^7.0",
  392. "symfony/property-info": "^5.4 || ^6.0 || ^7.0",
  393. "symfony/proxy-manager-bridge": "^5.4 || ^6.0 || ^7.0",
  394. "symfony/security-bundle": "^5.4 || ^6.0 || ^7.0",
  395. "symfony/stopwatch": "^5.4 || ^6.0 || ^7.0",
  396. "symfony/string": "^5.4 || ^6.0 || ^7.0",
  397. "symfony/twig-bridge": "^5.4 || ^6.0 || ^7.0",
  398. "symfony/validator": "^5.4 || ^6.0 || ^7.0",
  399. "symfony/var-exporter": "^5.4 || ^6.2 || ^7.0",
  400. "symfony/web-profiler-bundle": "^5.4 || ^6.0 || ^7.0",
  401. "symfony/yaml": "^5.4 || ^6.0 || ^7.0",
  402. "twig/twig": "^1.34 || ^2.12 || ^3.0",
  403. "vimeo/psalm": "^5.15"
  404. },
  405. "suggest": {
  406. "doctrine/orm": "The Doctrine ORM integration is optional in the bundle.",
  407. "ext-pdo": "*",
  408. "symfony/web-profiler-bundle": "To use the data collector."
  409. },
  410. "type": "symfony-bundle",
  411. "autoload": {
  412. "psr-4": {
  413. "Doctrine\\Bundle\\DoctrineBundle\\": "src"
  414. }
  415. },
  416. "notification-url": "https://packagist.org/downloads/",
  417. "license": [
  418. "MIT"
  419. ],
  420. "authors": [
  421. {
  422. "name": "Fabien Potencier",
  423. "email": "fabien@symfony.com"
  424. },
  425. {
  426. "name": "Benjamin Eberlei",
  427. "email": "kontakt@beberlei.de"
  428. },
  429. {
  430. "name": "Symfony Community",
  431. "homepage": "https://symfony.com/contributors"
  432. },
  433. {
  434. "name": "Doctrine Project",
  435. "homepage": "https://www.doctrine-project.org/"
  436. }
  437. ],
  438. "description": "Symfony DoctrineBundle",
  439. "homepage": "https://www.doctrine-project.org",
  440. "keywords": [
  441. "database",
  442. "dbal",
  443. "orm",
  444. "persistence"
  445. ],
  446. "support": {
  447. "issues": "https://github.com/doctrine/DoctrineBundle/issues",
  448. "source": "https://github.com/doctrine/DoctrineBundle/tree/2.13.1"
  449. },
  450. "funding": [
  451. {
  452. "url": "https://www.doctrine-project.org/sponsorship.html",
  453. "type": "custom"
  454. },
  455. {
  456. "url": "https://www.patreon.com/phpdoctrine",
  457. "type": "patreon"
  458. },
  459. {
  460. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fdoctrine-bundle",
  461. "type": "tidelift"
  462. }
  463. ],
  464. "time": "2024-11-08T23:27:54+00:00"
  465. },
  466. {
  467. "name": "doctrine/doctrine-migrations-bundle",
  468. "version": "3.3.1",
  469. "source": {
  470. "type": "git",
  471. "url": "https://github.com/doctrine/DoctrineMigrationsBundle.git",
  472. "reference": "715b62c31a5894afcb2b2cdbbc6607d7dd0580c0"
  473. },
  474. "dist": {
  475. "type": "zip",
  476. "url": "https://api.github.com/repos/doctrine/DoctrineMigrationsBundle/zipball/715b62c31a5894afcb2b2cdbbc6607d7dd0580c0",
  477. "reference": "715b62c31a5894afcb2b2cdbbc6607d7dd0580c0",
  478. "shasum": ""
  479. },
  480. "require": {
  481. "doctrine/doctrine-bundle": "^2.4",
  482. "doctrine/migrations": "^3.2",
  483. "php": "^7.2|^8.0",
  484. "symfony/deprecation-contracts": "^2.1 || ^3",
  485. "symfony/framework-bundle": "^5.4 || ^6.0 || ^7.0"
  486. },
  487. "require-dev": {
  488. "composer/semver": "^3.0",
  489. "doctrine/coding-standard": "^12",
  490. "doctrine/orm": "^2.6 || ^3",
  491. "doctrine/persistence": "^2.0 || ^3 ",
  492. "phpstan/phpstan": "^1.4",
  493. "phpstan/phpstan-deprecation-rules": "^1",
  494. "phpstan/phpstan-phpunit": "^1",
  495. "phpstan/phpstan-strict-rules": "^1.1",
  496. "phpstan/phpstan-symfony": "^1.3",
  497. "phpunit/phpunit": "^8.5|^9.5",
  498. "psalm/plugin-phpunit": "^0.18.4",
  499. "psalm/plugin-symfony": "^3 || ^5",
  500. "symfony/phpunit-bridge": "^6.3 || ^7",
  501. "symfony/var-exporter": "^5.4 || ^6 || ^7",
  502. "vimeo/psalm": "^4.30 || ^5.15"
  503. },
  504. "type": "symfony-bundle",
  505. "autoload": {
  506. "psr-4": {
  507. "Doctrine\\Bundle\\MigrationsBundle\\": ""
  508. },
  509. "exclude-from-classmap": [
  510. "/Tests/"
  511. ]
  512. },
  513. "notification-url": "https://packagist.org/downloads/",
  514. "license": [
  515. "MIT"
  516. ],
  517. "authors": [
  518. {
  519. "name": "Fabien Potencier",
  520. "email": "fabien@symfony.com"
  521. },
  522. {
  523. "name": "Doctrine Project",
  524. "homepage": "https://www.doctrine-project.org"
  525. },
  526. {
  527. "name": "Symfony Community",
  528. "homepage": "https://symfony.com/contributors"
  529. }
  530. ],
  531. "description": "Symfony DoctrineMigrationsBundle",
  532. "homepage": "https://www.doctrine-project.org",
  533. "keywords": [
  534. "dbal",
  535. "migrations",
  536. "schema"
  537. ],
  538. "support": {
  539. "issues": "https://github.com/doctrine/DoctrineMigrationsBundle/issues",
  540. "source": "https://github.com/doctrine/DoctrineMigrationsBundle/tree/3.3.1"
  541. },
  542. "funding": [
  543. {
  544. "url": "https://www.doctrine-project.org/sponsorship.html",
  545. "type": "custom"
  546. },
  547. {
  548. "url": "https://www.patreon.com/phpdoctrine",
  549. "type": "patreon"
  550. },
  551. {
  552. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fdoctrine-migrations-bundle",
  553. "type": "tidelift"
  554. }
  555. ],
  556. "time": "2024-05-14T20:32:18+00:00"
  557. },
  558. {
  559. "name": "doctrine/event-manager",
  560. "version": "2.0.1",
  561. "source": {
  562. "type": "git",
  563. "url": "https://github.com/doctrine/event-manager.git",
  564. "reference": "b680156fa328f1dfd874fd48c7026c41570b9c6e"
  565. },
  566. "dist": {
  567. "type": "zip",
  568. "url": "https://api.github.com/repos/doctrine/event-manager/zipball/b680156fa328f1dfd874fd48c7026c41570b9c6e",
  569. "reference": "b680156fa328f1dfd874fd48c7026c41570b9c6e",
  570. "shasum": ""
  571. },
  572. "require": {
  573. "php": "^8.1"
  574. },
  575. "conflict": {
  576. "doctrine/common": "<2.9"
  577. },
  578. "require-dev": {
  579. "doctrine/coding-standard": "^12",
  580. "phpstan/phpstan": "^1.8.8",
  581. "phpunit/phpunit": "^10.5",
  582. "vimeo/psalm": "^5.24"
  583. },
  584. "type": "library",
  585. "autoload": {
  586. "psr-4": {
  587. "Doctrine\\Common\\": "src"
  588. }
  589. },
  590. "notification-url": "https://packagist.org/downloads/",
  591. "license": [
  592. "MIT"
  593. ],
  594. "authors": [
  595. {
  596. "name": "Guilherme Blanco",
  597. "email": "guilhermeblanco@gmail.com"
  598. },
  599. {
  600. "name": "Roman Borschel",
  601. "email": "roman@code-factory.org"
  602. },
  603. {
  604. "name": "Benjamin Eberlei",
  605. "email": "kontakt@beberlei.de"
  606. },
  607. {
  608. "name": "Jonathan Wage",
  609. "email": "jonwage@gmail.com"
  610. },
  611. {
  612. "name": "Johannes Schmitt",
  613. "email": "schmittjoh@gmail.com"
  614. },
  615. {
  616. "name": "Marco Pivetta",
  617. "email": "ocramius@gmail.com"
  618. }
  619. ],
  620. "description": "The Doctrine Event Manager is a simple PHP event system that was built to be used with the various Doctrine projects.",
  621. "homepage": "https://www.doctrine-project.org/projects/event-manager.html",
  622. "keywords": [
  623. "event",
  624. "event dispatcher",
  625. "event manager",
  626. "event system",
  627. "events"
  628. ],
  629. "support": {
  630. "issues": "https://github.com/doctrine/event-manager/issues",
  631. "source": "https://github.com/doctrine/event-manager/tree/2.0.1"
  632. },
  633. "funding": [
  634. {
  635. "url": "https://www.doctrine-project.org/sponsorship.html",
  636. "type": "custom"
  637. },
  638. {
  639. "url": "https://www.patreon.com/phpdoctrine",
  640. "type": "patreon"
  641. },
  642. {
  643. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fevent-manager",
  644. "type": "tidelift"
  645. }
  646. ],
  647. "time": "2024-05-22T20:47:39+00:00"
  648. },
  649. {
  650. "name": "doctrine/inflector",
  651. "version": "2.0.10",
  652. "source": {
  653. "type": "git",
  654. "url": "https://github.com/doctrine/inflector.git",
  655. "reference": "5817d0659c5b50c9b950feb9af7b9668e2c436bc"
  656. },
  657. "dist": {
  658. "type": "zip",
  659. "url": "https://api.github.com/repos/doctrine/inflector/zipball/5817d0659c5b50c9b950feb9af7b9668e2c436bc",
  660. "reference": "5817d0659c5b50c9b950feb9af7b9668e2c436bc",
  661. "shasum": ""
  662. },
  663. "require": {
  664. "php": "^7.2 || ^8.0"
  665. },
  666. "require-dev": {
  667. "doctrine/coding-standard": "^11.0",
  668. "phpstan/phpstan": "^1.8",
  669. "phpstan/phpstan-phpunit": "^1.1",
  670. "phpstan/phpstan-strict-rules": "^1.3",
  671. "phpunit/phpunit": "^8.5 || ^9.5",
  672. "vimeo/psalm": "^4.25 || ^5.4"
  673. },
  674. "type": "library",
  675. "autoload": {
  676. "psr-4": {
  677. "Doctrine\\Inflector\\": "lib/Doctrine/Inflector"
  678. }
  679. },
  680. "notification-url": "https://packagist.org/downloads/",
  681. "license": [
  682. "MIT"
  683. ],
  684. "authors": [
  685. {
  686. "name": "Guilherme Blanco",
  687. "email": "guilhermeblanco@gmail.com"
  688. },
  689. {
  690. "name": "Roman Borschel",
  691. "email": "roman@code-factory.org"
  692. },
  693. {
  694. "name": "Benjamin Eberlei",
  695. "email": "kontakt@beberlei.de"
  696. },
  697. {
  698. "name": "Jonathan Wage",
  699. "email": "jonwage@gmail.com"
  700. },
  701. {
  702. "name": "Johannes Schmitt",
  703. "email": "schmittjoh@gmail.com"
  704. }
  705. ],
  706. "description": "PHP Doctrine Inflector is a small library that can perform string manipulations with regard to upper/lowercase and singular/plural forms of words.",
  707. "homepage": "https://www.doctrine-project.org/projects/inflector.html",
  708. "keywords": [
  709. "inflection",
  710. "inflector",
  711. "lowercase",
  712. "manipulation",
  713. "php",
  714. "plural",
  715. "singular",
  716. "strings",
  717. "uppercase",
  718. "words"
  719. ],
  720. "support": {
  721. "issues": "https://github.com/doctrine/inflector/issues",
  722. "source": "https://github.com/doctrine/inflector/tree/2.0.10"
  723. },
  724. "funding": [
  725. {
  726. "url": "https://www.doctrine-project.org/sponsorship.html",
  727. "type": "custom"
  728. },
  729. {
  730. "url": "https://www.patreon.com/phpdoctrine",
  731. "type": "patreon"
  732. },
  733. {
  734. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Finflector",
  735. "type": "tidelift"
  736. }
  737. ],
  738. "time": "2024-02-18T20:23:39+00:00"
  739. },
  740. {
  741. "name": "doctrine/instantiator",
  742. "version": "2.0.0",
  743. "source": {
  744. "type": "git",
  745. "url": "https://github.com/doctrine/instantiator.git",
  746. "reference": "c6222283fa3f4ac679f8b9ced9a4e23f163e80d0"
  747. },
  748. "dist": {
  749. "type": "zip",
  750. "url": "https://api.github.com/repos/doctrine/instantiator/zipball/c6222283fa3f4ac679f8b9ced9a4e23f163e80d0",
  751. "reference": "c6222283fa3f4ac679f8b9ced9a4e23f163e80d0",
  752. "shasum": ""
  753. },
  754. "require": {
  755. "php": "^8.1"
  756. },
  757. "require-dev": {
  758. "doctrine/coding-standard": "^11",
  759. "ext-pdo": "*",
  760. "ext-phar": "*",
  761. "phpbench/phpbench": "^1.2",
  762. "phpstan/phpstan": "^1.9.4",
  763. "phpstan/phpstan-phpunit": "^1.3",
  764. "phpunit/phpunit": "^9.5.27",
  765. "vimeo/psalm": "^5.4"
  766. },
  767. "type": "library",
  768. "autoload": {
  769. "psr-4": {
  770. "Doctrine\\Instantiator\\": "src/Doctrine/Instantiator/"
  771. }
  772. },
  773. "notification-url": "https://packagist.org/downloads/",
  774. "license": [
  775. "MIT"
  776. ],
  777. "authors": [
  778. {
  779. "name": "Marco Pivetta",
  780. "email": "ocramius@gmail.com",
  781. "homepage": "https://ocramius.github.io/"
  782. }
  783. ],
  784. "description": "A small, lightweight utility to instantiate objects in PHP without invoking their constructors",
  785. "homepage": "https://www.doctrine-project.org/projects/instantiator.html",
  786. "keywords": [
  787. "constructor",
  788. "instantiate"
  789. ],
  790. "support": {
  791. "issues": "https://github.com/doctrine/instantiator/issues",
  792. "source": "https://github.com/doctrine/instantiator/tree/2.0.0"
  793. },
  794. "funding": [
  795. {
  796. "url": "https://www.doctrine-project.org/sponsorship.html",
  797. "type": "custom"
  798. },
  799. {
  800. "url": "https://www.patreon.com/phpdoctrine",
  801. "type": "patreon"
  802. },
  803. {
  804. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Finstantiator",
  805. "type": "tidelift"
  806. }
  807. ],
  808. "time": "2022-12-30T00:23:10+00:00"
  809. },
  810. {
  811. "name": "doctrine/lexer",
  812. "version": "3.0.1",
  813. "source": {
  814. "type": "git",
  815. "url": "https://github.com/doctrine/lexer.git",
  816. "reference": "31ad66abc0fc9e1a1f2d9bc6a42668d2fbbcd6dd"
  817. },
  818. "dist": {
  819. "type": "zip",
  820. "url": "https://api.github.com/repos/doctrine/lexer/zipball/31ad66abc0fc9e1a1f2d9bc6a42668d2fbbcd6dd",
  821. "reference": "31ad66abc0fc9e1a1f2d9bc6a42668d2fbbcd6dd",
  822. "shasum": ""
  823. },
  824. "require": {
  825. "php": "^8.1"
  826. },
  827. "require-dev": {
  828. "doctrine/coding-standard": "^12",
  829. "phpstan/phpstan": "^1.10",
  830. "phpunit/phpunit": "^10.5",
  831. "psalm/plugin-phpunit": "^0.18.3",
  832. "vimeo/psalm": "^5.21"
  833. },
  834. "type": "library",
  835. "autoload": {
  836. "psr-4": {
  837. "Doctrine\\Common\\Lexer\\": "src"
  838. }
  839. },
  840. "notification-url": "https://packagist.org/downloads/",
  841. "license": [
  842. "MIT"
  843. ],
  844. "authors": [
  845. {
  846. "name": "Guilherme Blanco",
  847. "email": "guilhermeblanco@gmail.com"
  848. },
  849. {
  850. "name": "Roman Borschel",
  851. "email": "roman@code-factory.org"
  852. },
  853. {
  854. "name": "Johannes Schmitt",
  855. "email": "schmittjoh@gmail.com"
  856. }
  857. ],
  858. "description": "PHP Doctrine Lexer parser library that can be used in Top-Down, Recursive Descent Parsers.",
  859. "homepage": "https://www.doctrine-project.org/projects/lexer.html",
  860. "keywords": [
  861. "annotations",
  862. "docblock",
  863. "lexer",
  864. "parser",
  865. "php"
  866. ],
  867. "support": {
  868. "issues": "https://github.com/doctrine/lexer/issues",
  869. "source": "https://github.com/doctrine/lexer/tree/3.0.1"
  870. },
  871. "funding": [
  872. {
  873. "url": "https://www.doctrine-project.org/sponsorship.html",
  874. "type": "custom"
  875. },
  876. {
  877. "url": "https://www.patreon.com/phpdoctrine",
  878. "type": "patreon"
  879. },
  880. {
  881. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Flexer",
  882. "type": "tidelift"
  883. }
  884. ],
  885. "time": "2024-02-05T11:56:58+00:00"
  886. },
  887. {
  888. "name": "doctrine/migrations",
  889. "version": "3.8.2",
  890. "source": {
  891. "type": "git",
  892. "url": "https://github.com/doctrine/migrations.git",
  893. "reference": "5007eb1168691225ac305fe16856755c20860842"
  894. },
  895. "dist": {
  896. "type": "zip",
  897. "url": "https://api.github.com/repos/doctrine/migrations/zipball/5007eb1168691225ac305fe16856755c20860842",
  898. "reference": "5007eb1168691225ac305fe16856755c20860842",
  899. "shasum": ""
  900. },
  901. "require": {
  902. "composer-runtime-api": "^2",
  903. "doctrine/dbal": "^3.6 || ^4",
  904. "doctrine/deprecations": "^0.5.3 || ^1",
  905. "doctrine/event-manager": "^1.2 || ^2.0",
  906. "php": "^8.1",
  907. "psr/log": "^1.1.3 || ^2 || ^3",
  908. "symfony/console": "^5.4 || ^6.0 || ^7.0",
  909. "symfony/stopwatch": "^5.4 || ^6.0 || ^7.0",
  910. "symfony/var-exporter": "^6.2 || ^7.0"
  911. },
  912. "conflict": {
  913. "doctrine/orm": "<2.12 || >=4"
  914. },
  915. "require-dev": {
  916. "doctrine/coding-standard": "^12",
  917. "doctrine/orm": "^2.13 || ^3",
  918. "doctrine/persistence": "^2 || ^3",
  919. "doctrine/sql-formatter": "^1.0",
  920. "ext-pdo_sqlite": "*",
  921. "fig/log-test": "^1",
  922. "phpstan/phpstan": "^1.10",
  923. "phpstan/phpstan-deprecation-rules": "^1.1",
  924. "phpstan/phpstan-phpunit": "^1.3",
  925. "phpstan/phpstan-strict-rules": "^1.4",
  926. "phpstan/phpstan-symfony": "^1.3",
  927. "phpunit/phpunit": "^10.3",
  928. "symfony/cache": "^5.4 || ^6.0 || ^7.0",
  929. "symfony/process": "^5.4 || ^6.0 || ^7.0",
  930. "symfony/yaml": "^5.4 || ^6.0 || ^7.0"
  931. },
  932. "suggest": {
  933. "doctrine/sql-formatter": "Allows to generate formatted SQL with the diff command.",
  934. "symfony/yaml": "Allows the use of yaml for migration configuration files."
  935. },
  936. "bin": [
  937. "bin/doctrine-migrations"
  938. ],
  939. "type": "library",
  940. "autoload": {
  941. "psr-4": {
  942. "Doctrine\\Migrations\\": "src"
  943. }
  944. },
  945. "notification-url": "https://packagist.org/downloads/",
  946. "license": [
  947. "MIT"
  948. ],
  949. "authors": [
  950. {
  951. "name": "Benjamin Eberlei",
  952. "email": "kontakt@beberlei.de"
  953. },
  954. {
  955. "name": "Jonathan Wage",
  956. "email": "jonwage@gmail.com"
  957. },
  958. {
  959. "name": "Michael Simonson",
  960. "email": "contact@mikesimonson.com"
  961. }
  962. ],
  963. "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.",
  964. "homepage": "https://www.doctrine-project.org/projects/migrations.html",
  965. "keywords": [
  966. "database",
  967. "dbal",
  968. "migrations"
  969. ],
  970. "support": {
  971. "issues": "https://github.com/doctrine/migrations/issues",
  972. "source": "https://github.com/doctrine/migrations/tree/3.8.2"
  973. },
  974. "funding": [
  975. {
  976. "url": "https://www.doctrine-project.org/sponsorship.html",
  977. "type": "custom"
  978. },
  979. {
  980. "url": "https://www.patreon.com/phpdoctrine",
  981. "type": "patreon"
  982. },
  983. {
  984. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fmigrations",
  985. "type": "tidelift"
  986. }
  987. ],
  988. "time": "2024-10-10T21:35:27+00:00"
  989. },
  990. {
  991. "name": "doctrine/orm",
  992. "version": "3.3.1",
  993. "source": {
  994. "type": "git",
  995. "url": "https://github.com/doctrine/orm.git",
  996. "reference": "b1f8253105aa5382c495e5f9f8ef34e297775428"
  997. },
  998. "dist": {
  999. "type": "zip",
  1000. "url": "https://api.github.com/repos/doctrine/orm/zipball/b1f8253105aa5382c495e5f9f8ef34e297775428",
  1001. "reference": "b1f8253105aa5382c495e5f9f8ef34e297775428",
  1002. "shasum": ""
  1003. },
  1004. "require": {
  1005. "composer-runtime-api": "^2",
  1006. "doctrine/collections": "^2.2",
  1007. "doctrine/dbal": "^3.8.2 || ^4",
  1008. "doctrine/deprecations": "^0.5.3 || ^1",
  1009. "doctrine/event-manager": "^1.2 || ^2",
  1010. "doctrine/inflector": "^1.4 || ^2.0",
  1011. "doctrine/instantiator": "^1.3 || ^2",
  1012. "doctrine/lexer": "^3",
  1013. "doctrine/persistence": "^3.3.1 || ^4",
  1014. "ext-ctype": "*",
  1015. "php": "^8.1",
  1016. "psr/cache": "^1 || ^2 || ^3",
  1017. "symfony/console": "^5.4 || ^6.0 || ^7.0",
  1018. "symfony/var-exporter": "^6.3.9 || ^7.0"
  1019. },
  1020. "require-dev": {
  1021. "doctrine/coding-standard": "^12.0",
  1022. "phpbench/phpbench": "^1.0",
  1023. "phpdocumentor/guides-cli": "^1.4",
  1024. "phpstan/extension-installer": "^1.4",
  1025. "phpstan/phpstan": "2.0.3",
  1026. "phpstan/phpstan-deprecation-rules": "^2",
  1027. "phpunit/phpunit": "^10.4.0",
  1028. "psr/log": "^1 || ^2 || ^3",
  1029. "squizlabs/php_codesniffer": "3.7.2",
  1030. "symfony/cache": "^5.4 || ^6.2 || ^7.0"
  1031. },
  1032. "suggest": {
  1033. "ext-dom": "Provides support for XSD validation for XML mapping files",
  1034. "symfony/cache": "Provides cache support for Setup Tool with doctrine/cache 2.0"
  1035. },
  1036. "type": "library",
  1037. "autoload": {
  1038. "psr-4": {
  1039. "Doctrine\\ORM\\": "src"
  1040. }
  1041. },
  1042. "notification-url": "https://packagist.org/downloads/",
  1043. "license": [
  1044. "MIT"
  1045. ],
  1046. "authors": [
  1047. {
  1048. "name": "Guilherme Blanco",
  1049. "email": "guilhermeblanco@gmail.com"
  1050. },
  1051. {
  1052. "name": "Roman Borschel",
  1053. "email": "roman@code-factory.org"
  1054. },
  1055. {
  1056. "name": "Benjamin Eberlei",
  1057. "email": "kontakt@beberlei.de"
  1058. },
  1059. {
  1060. "name": "Jonathan Wage",
  1061. "email": "jonwage@gmail.com"
  1062. },
  1063. {
  1064. "name": "Marco Pivetta",
  1065. "email": "ocramius@gmail.com"
  1066. }
  1067. ],
  1068. "description": "Object-Relational-Mapper for PHP",
  1069. "homepage": "https://www.doctrine-project.org/projects/orm.html",
  1070. "keywords": [
  1071. "database",
  1072. "orm"
  1073. ],
  1074. "support": {
  1075. "issues": "https://github.com/doctrine/orm/issues",
  1076. "source": "https://github.com/doctrine/orm/tree/3.3.1"
  1077. },
  1078. "time": "2024-12-19T07:08:14+00:00"
  1079. },
  1080. {
  1081. "name": "doctrine/persistence",
  1082. "version": "3.4.0",
  1083. "source": {
  1084. "type": "git",
  1085. "url": "https://github.com/doctrine/persistence.git",
  1086. "reference": "0ea965320cec355dba75031c1b23d4c78362e3ff"
  1087. },
  1088. "dist": {
  1089. "type": "zip",
  1090. "url": "https://api.github.com/repos/doctrine/persistence/zipball/0ea965320cec355dba75031c1b23d4c78362e3ff",
  1091. "reference": "0ea965320cec355dba75031c1b23d4c78362e3ff",
  1092. "shasum": ""
  1093. },
  1094. "require": {
  1095. "doctrine/event-manager": "^1 || ^2",
  1096. "php": "^7.2 || ^8.0",
  1097. "psr/cache": "^1.0 || ^2.0 || ^3.0"
  1098. },
  1099. "conflict": {
  1100. "doctrine/common": "<2.10"
  1101. },
  1102. "require-dev": {
  1103. "doctrine/coding-standard": "^12",
  1104. "doctrine/common": "^3.0",
  1105. "phpstan/phpstan": "1.12.7",
  1106. "phpstan/phpstan-phpunit": "^1",
  1107. "phpstan/phpstan-strict-rules": "^1.1",
  1108. "phpunit/phpunit": "^8.5.38 || ^9.5",
  1109. "symfony/cache": "^4.4 || ^5.4 || ^6.0 || ^7.0"
  1110. },
  1111. "type": "library",
  1112. "autoload": {
  1113. "psr-4": {
  1114. "Doctrine\\Persistence\\": "src/Persistence"
  1115. }
  1116. },
  1117. "notification-url": "https://packagist.org/downloads/",
  1118. "license": [
  1119. "MIT"
  1120. ],
  1121. "authors": [
  1122. {
  1123. "name": "Guilherme Blanco",
  1124. "email": "guilhermeblanco@gmail.com"
  1125. },
  1126. {
  1127. "name": "Roman Borschel",
  1128. "email": "roman@code-factory.org"
  1129. },
  1130. {
  1131. "name": "Benjamin Eberlei",
  1132. "email": "kontakt@beberlei.de"
  1133. },
  1134. {
  1135. "name": "Jonathan Wage",
  1136. "email": "jonwage@gmail.com"
  1137. },
  1138. {
  1139. "name": "Johannes Schmitt",
  1140. "email": "schmittjoh@gmail.com"
  1141. },
  1142. {
  1143. "name": "Marco Pivetta",
  1144. "email": "ocramius@gmail.com"
  1145. }
  1146. ],
  1147. "description": "The Doctrine Persistence project is a set of shared interfaces and functionality that the different Doctrine object mappers share.",
  1148. "homepage": "https://www.doctrine-project.org/projects/persistence.html",
  1149. "keywords": [
  1150. "mapper",
  1151. "object",
  1152. "odm",
  1153. "orm",
  1154. "persistence"
  1155. ],
  1156. "support": {
  1157. "issues": "https://github.com/doctrine/persistence/issues",
  1158. "source": "https://github.com/doctrine/persistence/tree/3.4.0"
  1159. },
  1160. "funding": [
  1161. {
  1162. "url": "https://www.doctrine-project.org/sponsorship.html",
  1163. "type": "custom"
  1164. },
  1165. {
  1166. "url": "https://www.patreon.com/phpdoctrine",
  1167. "type": "patreon"
  1168. },
  1169. {
  1170. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fpersistence",
  1171. "type": "tidelift"
  1172. }
  1173. ],
  1174. "time": "2024-10-30T19:48:12+00:00"
  1175. },
  1176. {
  1177. "name": "doctrine/sql-formatter",
  1178. "version": "1.5.1",
  1179. "source": {
  1180. "type": "git",
  1181. "url": "https://github.com/doctrine/sql-formatter.git",
  1182. "reference": "b784cbde727cf806721451dde40eff4fec3bbe86"
  1183. },
  1184. "dist": {
  1185. "type": "zip",
  1186. "url": "https://api.github.com/repos/doctrine/sql-formatter/zipball/b784cbde727cf806721451dde40eff4fec3bbe86",
  1187. "reference": "b784cbde727cf806721451dde40eff4fec3bbe86",
  1188. "shasum": ""
  1189. },
  1190. "require": {
  1191. "php": "^8.1"
  1192. },
  1193. "require-dev": {
  1194. "doctrine/coding-standard": "^12",
  1195. "ergebnis/phpunit-slow-test-detector": "^2.14",
  1196. "phpstan/phpstan": "^1.10",
  1197. "phpunit/phpunit": "^10.5",
  1198. "vimeo/psalm": "^5.24"
  1199. },
  1200. "bin": [
  1201. "bin/sql-formatter"
  1202. ],
  1203. "type": "library",
  1204. "autoload": {
  1205. "psr-4": {
  1206. "Doctrine\\SqlFormatter\\": "src"
  1207. }
  1208. },
  1209. "notification-url": "https://packagist.org/downloads/",
  1210. "license": [
  1211. "MIT"
  1212. ],
  1213. "authors": [
  1214. {
  1215. "name": "Jeremy Dorn",
  1216. "email": "jeremy@jeremydorn.com",
  1217. "homepage": "https://jeremydorn.com/"
  1218. }
  1219. ],
  1220. "description": "a PHP SQL highlighting library",
  1221. "homepage": "https://github.com/doctrine/sql-formatter/",
  1222. "keywords": [
  1223. "highlight",
  1224. "sql"
  1225. ],
  1226. "support": {
  1227. "issues": "https://github.com/doctrine/sql-formatter/issues",
  1228. "source": "https://github.com/doctrine/sql-formatter/tree/1.5.1"
  1229. },
  1230. "time": "2024-10-21T18:21:57+00:00"
  1231. },
  1232. {
  1233. "name": "egulias/email-validator",
  1234. "version": "4.0.3",
  1235. "source": {
  1236. "type": "git",
  1237. "url": "https://github.com/egulias/EmailValidator.git",
  1238. "reference": "b115554301161fa21467629f1e1391c1936de517"
  1239. },
  1240. "dist": {
  1241. "type": "zip",
  1242. "url": "https://api.github.com/repos/egulias/EmailValidator/zipball/b115554301161fa21467629f1e1391c1936de517",
  1243. "reference": "b115554301161fa21467629f1e1391c1936de517",
  1244. "shasum": ""
  1245. },
  1246. "require": {
  1247. "doctrine/lexer": "^2.0 || ^3.0",
  1248. "php": ">=8.1",
  1249. "symfony/polyfill-intl-idn": "^1.26"
  1250. },
  1251. "require-dev": {
  1252. "phpunit/phpunit": "^10.2",
  1253. "vimeo/psalm": "^5.12"
  1254. },
  1255. "suggest": {
  1256. "ext-intl": "PHP Internationalization Libraries are required to use the SpoofChecking validation"
  1257. },
  1258. "type": "library",
  1259. "extra": {
  1260. "branch-alias": {
  1261. "dev-master": "4.0.x-dev"
  1262. }
  1263. },
  1264. "autoload": {
  1265. "psr-4": {
  1266. "Egulias\\EmailValidator\\": "src"
  1267. }
  1268. },
  1269. "notification-url": "https://packagist.org/downloads/",
  1270. "license": [
  1271. "MIT"
  1272. ],
  1273. "authors": [
  1274. {
  1275. "name": "Eduardo Gulias Davis"
  1276. }
  1277. ],
  1278. "description": "A library for validating emails against several RFCs",
  1279. "homepage": "https://github.com/egulias/EmailValidator",
  1280. "keywords": [
  1281. "email",
  1282. "emailvalidation",
  1283. "emailvalidator",
  1284. "validation",
  1285. "validator"
  1286. ],
  1287. "support": {
  1288. "issues": "https://github.com/egulias/EmailValidator/issues",
  1289. "source": "https://github.com/egulias/EmailValidator/tree/4.0.3"
  1290. },
  1291. "funding": [
  1292. {
  1293. "url": "https://github.com/egulias",
  1294. "type": "github"
  1295. }
  1296. ],
  1297. "time": "2024-12-27T00:36:43+00:00"
  1298. },
  1299. {
  1300. "name": "monolog/monolog",
  1301. "version": "3.8.1",
  1302. "source": {
  1303. "type": "git",
  1304. "url": "https://github.com/Seldaek/monolog.git",
  1305. "reference": "aef6ee73a77a66e404dd6540934a9ef1b3c855b4"
  1306. },
  1307. "dist": {
  1308. "type": "zip",
  1309. "url": "https://api.github.com/repos/Seldaek/monolog/zipball/aef6ee73a77a66e404dd6540934a9ef1b3c855b4",
  1310. "reference": "aef6ee73a77a66e404dd6540934a9ef1b3c855b4",
  1311. "shasum": ""
  1312. },
  1313. "require": {
  1314. "php": ">=8.1",
  1315. "psr/log": "^2.0 || ^3.0"
  1316. },
  1317. "provide": {
  1318. "psr/log-implementation": "3.0.0"
  1319. },
  1320. "require-dev": {
  1321. "aws/aws-sdk-php": "^3.0",
  1322. "doctrine/couchdb": "~1.0@dev",
  1323. "elasticsearch/elasticsearch": "^7 || ^8",
  1324. "ext-json": "*",
  1325. "graylog2/gelf-php": "^1.4.2 || ^2.0",
  1326. "guzzlehttp/guzzle": "^7.4.5",
  1327. "guzzlehttp/psr7": "^2.2",
  1328. "mongodb/mongodb": "^1.8",
  1329. "php-amqplib/php-amqplib": "~2.4 || ^3",
  1330. "php-console/php-console": "^3.1.8",
  1331. "phpstan/phpstan": "^2",
  1332. "phpstan/phpstan-deprecation-rules": "^2",
  1333. "phpstan/phpstan-strict-rules": "^2",
  1334. "phpunit/phpunit": "^10.5.17 || ^11.0.7",
  1335. "predis/predis": "^1.1 || ^2",
  1336. "rollbar/rollbar": "^4.0",
  1337. "ruflin/elastica": "^7 || ^8",
  1338. "symfony/mailer": "^5.4 || ^6",
  1339. "symfony/mime": "^5.4 || ^6"
  1340. },
  1341. "suggest": {
  1342. "aws/aws-sdk-php": "Allow sending log messages to AWS services like DynamoDB",
  1343. "doctrine/couchdb": "Allow sending log messages to a CouchDB server",
  1344. "elasticsearch/elasticsearch": "Allow sending log messages to an Elasticsearch server via official client",
  1345. "ext-amqp": "Allow sending log messages to an AMQP server (1.0+ required)",
  1346. "ext-curl": "Required to send log messages using the IFTTTHandler, the LogglyHandler, the SendGridHandler, the SlackWebhookHandler or the TelegramBotHandler",
  1347. "ext-mbstring": "Allow to work properly with unicode symbols",
  1348. "ext-mongodb": "Allow sending log messages to a MongoDB server (via driver)",
  1349. "ext-openssl": "Required to send log messages using SSL",
  1350. "ext-sockets": "Allow sending log messages to a Syslog server (via UDP driver)",
  1351. "graylog2/gelf-php": "Allow sending log messages to a GrayLog2 server",
  1352. "mongodb/mongodb": "Allow sending log messages to a MongoDB server (via library)",
  1353. "php-amqplib/php-amqplib": "Allow sending log messages to an AMQP server using php-amqplib",
  1354. "rollbar/rollbar": "Allow sending log messages to Rollbar",
  1355. "ruflin/elastica": "Allow sending log messages to an Elastic Search server"
  1356. },
  1357. "type": "library",
  1358. "extra": {
  1359. "branch-alias": {
  1360. "dev-main": "3.x-dev"
  1361. }
  1362. },
  1363. "autoload": {
  1364. "psr-4": {
  1365. "Monolog\\": "src/Monolog"
  1366. }
  1367. },
  1368. "notification-url": "https://packagist.org/downloads/",
  1369. "license": [
  1370. "MIT"
  1371. ],
  1372. "authors": [
  1373. {
  1374. "name": "Jordi Boggiano",
  1375. "email": "j.boggiano@seld.be",
  1376. "homepage": "https://seld.be"
  1377. }
  1378. ],
  1379. "description": "Sends your logs to files, sockets, inboxes, databases and various web services",
  1380. "homepage": "https://github.com/Seldaek/monolog",
  1381. "keywords": [
  1382. "log",
  1383. "logging",
  1384. "psr-3"
  1385. ],
  1386. "support": {
  1387. "issues": "https://github.com/Seldaek/monolog/issues",
  1388. "source": "https://github.com/Seldaek/monolog/tree/3.8.1"
  1389. },
  1390. "funding": [
  1391. {
  1392. "url": "https://github.com/Seldaek",
  1393. "type": "github"
  1394. },
  1395. {
  1396. "url": "https://tidelift.com/funding/github/packagist/monolog/monolog",
  1397. "type": "tidelift"
  1398. }
  1399. ],
  1400. "time": "2024-12-05T17:15:07+00:00"
  1401. },
  1402. {
  1403. "name": "phpdocumentor/reflection-common",
  1404. "version": "2.2.0",
  1405. "source": {
  1406. "type": "git",
  1407. "url": "https://github.com/phpDocumentor/ReflectionCommon.git",
  1408. "reference": "1d01c49d4ed62f25aa84a747ad35d5a16924662b"
  1409. },
  1410. "dist": {
  1411. "type": "zip",
  1412. "url": "https://api.github.com/repos/phpDocumentor/ReflectionCommon/zipball/1d01c49d4ed62f25aa84a747ad35d5a16924662b",
  1413. "reference": "1d01c49d4ed62f25aa84a747ad35d5a16924662b",
  1414. "shasum": ""
  1415. },
  1416. "require": {
  1417. "php": "^7.2 || ^8.0"
  1418. },
  1419. "type": "library",
  1420. "extra": {
  1421. "branch-alias": {
  1422. "dev-2.x": "2.x-dev"
  1423. }
  1424. },
  1425. "autoload": {
  1426. "psr-4": {
  1427. "phpDocumentor\\Reflection\\": "src/"
  1428. }
  1429. },
  1430. "notification-url": "https://packagist.org/downloads/",
  1431. "license": [
  1432. "MIT"
  1433. ],
  1434. "authors": [
  1435. {
  1436. "name": "Jaap van Otterdijk",
  1437. "email": "opensource@ijaap.nl"
  1438. }
  1439. ],
  1440. "description": "Common reflection classes used by phpdocumentor to reflect the code structure",
  1441. "homepage": "http://www.phpdoc.org",
  1442. "keywords": [
  1443. "FQSEN",
  1444. "phpDocumentor",
  1445. "phpdoc",
  1446. "reflection",
  1447. "static analysis"
  1448. ],
  1449. "support": {
  1450. "issues": "https://github.com/phpDocumentor/ReflectionCommon/issues",
  1451. "source": "https://github.com/phpDocumentor/ReflectionCommon/tree/2.x"
  1452. },
  1453. "time": "2020-06-27T09:03:43+00:00"
  1454. },
  1455. {
  1456. "name": "phpdocumentor/reflection-docblock",
  1457. "version": "5.6.1",
  1458. "source": {
  1459. "type": "git",
  1460. "url": "https://github.com/phpDocumentor/ReflectionDocBlock.git",
  1461. "reference": "e5e784149a09bd69d9a5e3b01c5cbd2e2bd653d8"
  1462. },
  1463. "dist": {
  1464. "type": "zip",
  1465. "url": "https://api.github.com/repos/phpDocumentor/ReflectionDocBlock/zipball/e5e784149a09bd69d9a5e3b01c5cbd2e2bd653d8",
  1466. "reference": "e5e784149a09bd69d9a5e3b01c5cbd2e2bd653d8",
  1467. "shasum": ""
  1468. },
  1469. "require": {
  1470. "doctrine/deprecations": "^1.1",
  1471. "ext-filter": "*",
  1472. "php": "^7.4 || ^8.0",
  1473. "phpdocumentor/reflection-common": "^2.2",
  1474. "phpdocumentor/type-resolver": "^1.7",
  1475. "phpstan/phpdoc-parser": "^1.7|^2.0",
  1476. "webmozart/assert": "^1.9.1"
  1477. },
  1478. "require-dev": {
  1479. "mockery/mockery": "~1.3.5 || ~1.6.0",
  1480. "phpstan/extension-installer": "^1.1",
  1481. "phpstan/phpstan": "^1.8",
  1482. "phpstan/phpstan-mockery": "^1.1",
  1483. "phpstan/phpstan-webmozart-assert": "^1.2",
  1484. "phpunit/phpunit": "^9.5",
  1485. "psalm/phar": "^5.26"
  1486. },
  1487. "type": "library",
  1488. "extra": {
  1489. "branch-alias": {
  1490. "dev-master": "5.x-dev"
  1491. }
  1492. },
  1493. "autoload": {
  1494. "psr-4": {
  1495. "phpDocumentor\\Reflection\\": "src"
  1496. }
  1497. },
  1498. "notification-url": "https://packagist.org/downloads/",
  1499. "license": [
  1500. "MIT"
  1501. ],
  1502. "authors": [
  1503. {
  1504. "name": "Mike van Riel",
  1505. "email": "me@mikevanriel.com"
  1506. },
  1507. {
  1508. "name": "Jaap van Otterdijk",
  1509. "email": "opensource@ijaap.nl"
  1510. }
  1511. ],
  1512. "description": "With this component, a library can provide support for annotations via DocBlocks or otherwise retrieve information that is embedded in a DocBlock.",
  1513. "support": {
  1514. "issues": "https://github.com/phpDocumentor/ReflectionDocBlock/issues",
  1515. "source": "https://github.com/phpDocumentor/ReflectionDocBlock/tree/5.6.1"
  1516. },
  1517. "time": "2024-12-07T09:39:29+00:00"
  1518. },
  1519. {
  1520. "name": "phpdocumentor/type-resolver",
  1521. "version": "1.10.0",
  1522. "source": {
  1523. "type": "git",
  1524. "url": "https://github.com/phpDocumentor/TypeResolver.git",
  1525. "reference": "679e3ce485b99e84c775d28e2e96fade9a7fb50a"
  1526. },
  1527. "dist": {
  1528. "type": "zip",
  1529. "url": "https://api.github.com/repos/phpDocumentor/TypeResolver/zipball/679e3ce485b99e84c775d28e2e96fade9a7fb50a",
  1530. "reference": "679e3ce485b99e84c775d28e2e96fade9a7fb50a",
  1531. "shasum": ""
  1532. },
  1533. "require": {
  1534. "doctrine/deprecations": "^1.0",
  1535. "php": "^7.3 || ^8.0",
  1536. "phpdocumentor/reflection-common": "^2.0",
  1537. "phpstan/phpdoc-parser": "^1.18|^2.0"
  1538. },
  1539. "require-dev": {
  1540. "ext-tokenizer": "*",
  1541. "phpbench/phpbench": "^1.2",
  1542. "phpstan/extension-installer": "^1.1",
  1543. "phpstan/phpstan": "^1.8",
  1544. "phpstan/phpstan-phpunit": "^1.1",
  1545. "phpunit/phpunit": "^9.5",
  1546. "rector/rector": "^0.13.9",
  1547. "vimeo/psalm": "^4.25"
  1548. },
  1549. "type": "library",
  1550. "extra": {
  1551. "branch-alias": {
  1552. "dev-1.x": "1.x-dev"
  1553. }
  1554. },
  1555. "autoload": {
  1556. "psr-4": {
  1557. "phpDocumentor\\Reflection\\": "src"
  1558. }
  1559. },
  1560. "notification-url": "https://packagist.org/downloads/",
  1561. "license": [
  1562. "MIT"
  1563. ],
  1564. "authors": [
  1565. {
  1566. "name": "Mike van Riel",
  1567. "email": "me@mikevanriel.com"
  1568. }
  1569. ],
  1570. "description": "A PSR-5 based resolver of Class names, Types and Structural Element Names",
  1571. "support": {
  1572. "issues": "https://github.com/phpDocumentor/TypeResolver/issues",
  1573. "source": "https://github.com/phpDocumentor/TypeResolver/tree/1.10.0"
  1574. },
  1575. "time": "2024-11-09T15:12:26+00:00"
  1576. },
  1577. {
  1578. "name": "phpstan/phpdoc-parser",
  1579. "version": "2.0.0",
  1580. "source": {
  1581. "type": "git",
  1582. "url": "https://github.com/phpstan/phpdoc-parser.git",
  1583. "reference": "c00d78fb6b29658347f9d37ebe104bffadf36299"
  1584. },
  1585. "dist": {
  1586. "type": "zip",
  1587. "url": "https://api.github.com/repos/phpstan/phpdoc-parser/zipball/c00d78fb6b29658347f9d37ebe104bffadf36299",
  1588. "reference": "c00d78fb6b29658347f9d37ebe104bffadf36299",
  1589. "shasum": ""
  1590. },
  1591. "require": {
  1592. "php": "^7.4 || ^8.0"
  1593. },
  1594. "require-dev": {
  1595. "doctrine/annotations": "^2.0",
  1596. "nikic/php-parser": "^5.3.0",
  1597. "php-parallel-lint/php-parallel-lint": "^1.2",
  1598. "phpstan/extension-installer": "^1.0",
  1599. "phpstan/phpstan": "^2.0",
  1600. "phpstan/phpstan-phpunit": "^2.0",
  1601. "phpstan/phpstan-strict-rules": "^2.0",
  1602. "phpunit/phpunit": "^9.6",
  1603. "symfony/process": "^5.2"
  1604. },
  1605. "type": "library",
  1606. "autoload": {
  1607. "psr-4": {
  1608. "PHPStan\\PhpDocParser\\": [
  1609. "src/"
  1610. ]
  1611. }
  1612. },
  1613. "notification-url": "https://packagist.org/downloads/",
  1614. "license": [
  1615. "MIT"
  1616. ],
  1617. "description": "PHPDoc parser with support for nullable, intersection and generic types",
  1618. "support": {
  1619. "issues": "https://github.com/phpstan/phpdoc-parser/issues",
  1620. "source": "https://github.com/phpstan/phpdoc-parser/tree/2.0.0"
  1621. },
  1622. "time": "2024-10-13T11:29:49+00:00"
  1623. },
  1624. {
  1625. "name": "psr/cache",
  1626. "version": "3.0.0",
  1627. "source": {
  1628. "type": "git",
  1629. "url": "https://github.com/php-fig/cache.git",
  1630. "reference": "aa5030cfa5405eccfdcb1083ce040c2cb8d253bf"
  1631. },
  1632. "dist": {
  1633. "type": "zip",
  1634. "url": "https://api.github.com/repos/php-fig/cache/zipball/aa5030cfa5405eccfdcb1083ce040c2cb8d253bf",
  1635. "reference": "aa5030cfa5405eccfdcb1083ce040c2cb8d253bf",
  1636. "shasum": ""
  1637. },
  1638. "require": {
  1639. "php": ">=8.0.0"
  1640. },
  1641. "type": "library",
  1642. "extra": {
  1643. "branch-alias": {
  1644. "dev-master": "1.0.x-dev"
  1645. }
  1646. },
  1647. "autoload": {
  1648. "psr-4": {
  1649. "Psr\\Cache\\": "src/"
  1650. }
  1651. },
  1652. "notification-url": "https://packagist.org/downloads/",
  1653. "license": [
  1654. "MIT"
  1655. ],
  1656. "authors": [
  1657. {
  1658. "name": "PHP-FIG",
  1659. "homepage": "https://www.php-fig.org/"
  1660. }
  1661. ],
  1662. "description": "Common interface for caching libraries",
  1663. "keywords": [
  1664. "cache",
  1665. "psr",
  1666. "psr-6"
  1667. ],
  1668. "support": {
  1669. "source": "https://github.com/php-fig/cache/tree/3.0.0"
  1670. },
  1671. "time": "2021-02-03T23:26:27+00:00"
  1672. },
  1673. {
  1674. "name": "psr/clock",
  1675. "version": "1.0.0",
  1676. "source": {
  1677. "type": "git",
  1678. "url": "https://github.com/php-fig/clock.git",
  1679. "reference": "e41a24703d4560fd0acb709162f73b8adfc3aa0d"
  1680. },
  1681. "dist": {
  1682. "type": "zip",
  1683. "url": "https://api.github.com/repos/php-fig/clock/zipball/e41a24703d4560fd0acb709162f73b8adfc3aa0d",
  1684. "reference": "e41a24703d4560fd0acb709162f73b8adfc3aa0d",
  1685. "shasum": ""
  1686. },
  1687. "require": {
  1688. "php": "^7.0 || ^8.0"
  1689. },
  1690. "type": "library",
  1691. "autoload": {
  1692. "psr-4": {
  1693. "Psr\\Clock\\": "src/"
  1694. }
  1695. },
  1696. "notification-url": "https://packagist.org/downloads/",
  1697. "license": [
  1698. "MIT"
  1699. ],
  1700. "authors": [
  1701. {
  1702. "name": "PHP-FIG",
  1703. "homepage": "https://www.php-fig.org/"
  1704. }
  1705. ],
  1706. "description": "Common interface for reading the clock.",
  1707. "homepage": "https://github.com/php-fig/clock",
  1708. "keywords": [
  1709. "clock",
  1710. "now",
  1711. "psr",
  1712. "psr-20",
  1713. "time"
  1714. ],
  1715. "support": {
  1716. "issues": "https://github.com/php-fig/clock/issues",
  1717. "source": "https://github.com/php-fig/clock/tree/1.0.0"
  1718. },
  1719. "time": "2022-11-25T14:36:26+00:00"
  1720. },
  1721. {
  1722. "name": "psr/container",
  1723. "version": "2.0.2",
  1724. "source": {
  1725. "type": "git",
  1726. "url": "https://github.com/php-fig/container.git",
  1727. "reference": "c71ecc56dfe541dbd90c5360474fbc405f8d5963"
  1728. },
  1729. "dist": {
  1730. "type": "zip",
  1731. "url": "https://api.github.com/repos/php-fig/container/zipball/c71ecc56dfe541dbd90c5360474fbc405f8d5963",
  1732. "reference": "c71ecc56dfe541dbd90c5360474fbc405f8d5963",
  1733. "shasum": ""
  1734. },
  1735. "require": {
  1736. "php": ">=7.4.0"
  1737. },
  1738. "type": "library",
  1739. "extra": {
  1740. "branch-alias": {
  1741. "dev-master": "2.0.x-dev"
  1742. }
  1743. },
  1744. "autoload": {
  1745. "psr-4": {
  1746. "Psr\\Container\\": "src/"
  1747. }
  1748. },
  1749. "notification-url": "https://packagist.org/downloads/",
  1750. "license": [
  1751. "MIT"
  1752. ],
  1753. "authors": [
  1754. {
  1755. "name": "PHP-FIG",
  1756. "homepage": "https://www.php-fig.org/"
  1757. }
  1758. ],
  1759. "description": "Common Container Interface (PHP FIG PSR-11)",
  1760. "homepage": "https://github.com/php-fig/container",
  1761. "keywords": [
  1762. "PSR-11",
  1763. "container",
  1764. "container-interface",
  1765. "container-interop",
  1766. "psr"
  1767. ],
  1768. "support": {
  1769. "issues": "https://github.com/php-fig/container/issues",
  1770. "source": "https://github.com/php-fig/container/tree/2.0.2"
  1771. },
  1772. "time": "2021-11-05T16:47:00+00:00"
  1773. },
  1774. {
  1775. "name": "psr/event-dispatcher",
  1776. "version": "1.0.0",
  1777. "source": {
  1778. "type": "git",
  1779. "url": "https://github.com/php-fig/event-dispatcher.git",
  1780. "reference": "dbefd12671e8a14ec7f180cab83036ed26714bb0"
  1781. },
  1782. "dist": {
  1783. "type": "zip",
  1784. "url": "https://api.github.com/repos/php-fig/event-dispatcher/zipball/dbefd12671e8a14ec7f180cab83036ed26714bb0",
  1785. "reference": "dbefd12671e8a14ec7f180cab83036ed26714bb0",
  1786. "shasum": ""
  1787. },
  1788. "require": {
  1789. "php": ">=7.2.0"
  1790. },
  1791. "type": "library",
  1792. "extra": {
  1793. "branch-alias": {
  1794. "dev-master": "1.0.x-dev"
  1795. }
  1796. },
  1797. "autoload": {
  1798. "psr-4": {
  1799. "Psr\\EventDispatcher\\": "src/"
  1800. }
  1801. },
  1802. "notification-url": "https://packagist.org/downloads/",
  1803. "license": [
  1804. "MIT"
  1805. ],
  1806. "authors": [
  1807. {
  1808. "name": "PHP-FIG",
  1809. "homepage": "http://www.php-fig.org/"
  1810. }
  1811. ],
  1812. "description": "Standard interfaces for event handling.",
  1813. "keywords": [
  1814. "events",
  1815. "psr",
  1816. "psr-14"
  1817. ],
  1818. "support": {
  1819. "issues": "https://github.com/php-fig/event-dispatcher/issues",
  1820. "source": "https://github.com/php-fig/event-dispatcher/tree/1.0.0"
  1821. },
  1822. "time": "2019-01-08T18:20:26+00:00"
  1823. },
  1824. {
  1825. "name": "psr/link",
  1826. "version": "2.0.1",
  1827. "source": {
  1828. "type": "git",
  1829. "url": "https://github.com/php-fig/link.git",
  1830. "reference": "84b159194ecfd7eaa472280213976e96415433f7"
  1831. },
  1832. "dist": {
  1833. "type": "zip",
  1834. "url": "https://api.github.com/repos/php-fig/link/zipball/84b159194ecfd7eaa472280213976e96415433f7",
  1835. "reference": "84b159194ecfd7eaa472280213976e96415433f7",
  1836. "shasum": ""
  1837. },
  1838. "require": {
  1839. "php": ">=8.0.0"
  1840. },
  1841. "suggest": {
  1842. "fig/link-util": "Provides some useful PSR-13 utilities"
  1843. },
  1844. "type": "library",
  1845. "extra": {
  1846. "branch-alias": {
  1847. "dev-master": "2.0.x-dev"
  1848. }
  1849. },
  1850. "autoload": {
  1851. "psr-4": {
  1852. "Psr\\Link\\": "src/"
  1853. }
  1854. },
  1855. "notification-url": "https://packagist.org/downloads/",
  1856. "license": [
  1857. "MIT"
  1858. ],
  1859. "authors": [
  1860. {
  1861. "name": "PHP-FIG",
  1862. "homepage": "http://www.php-fig.org/"
  1863. }
  1864. ],
  1865. "description": "Common interfaces for HTTP links",
  1866. "homepage": "https://github.com/php-fig/link",
  1867. "keywords": [
  1868. "http",
  1869. "http-link",
  1870. "link",
  1871. "psr",
  1872. "psr-13",
  1873. "rest"
  1874. ],
  1875. "support": {
  1876. "source": "https://github.com/php-fig/link/tree/2.0.1"
  1877. },
  1878. "time": "2021-03-11T23:00:27+00:00"
  1879. },
  1880. {
  1881. "name": "psr/log",
  1882. "version": "3.0.2",
  1883. "source": {
  1884. "type": "git",
  1885. "url": "https://github.com/php-fig/log.git",
  1886. "reference": "f16e1d5863e37f8d8c2a01719f5b34baa2b714d3"
  1887. },
  1888. "dist": {
  1889. "type": "zip",
  1890. "url": "https://api.github.com/repos/php-fig/log/zipball/f16e1d5863e37f8d8c2a01719f5b34baa2b714d3",
  1891. "reference": "f16e1d5863e37f8d8c2a01719f5b34baa2b714d3",
  1892. "shasum": ""
  1893. },
  1894. "require": {
  1895. "php": ">=8.0.0"
  1896. },
  1897. "type": "library",
  1898. "extra": {
  1899. "branch-alias": {
  1900. "dev-master": "3.x-dev"
  1901. }
  1902. },
  1903. "autoload": {
  1904. "psr-4": {
  1905. "Psr\\Log\\": "src"
  1906. }
  1907. },
  1908. "notification-url": "https://packagist.org/downloads/",
  1909. "license": [
  1910. "MIT"
  1911. ],
  1912. "authors": [
  1913. {
  1914. "name": "PHP-FIG",
  1915. "homepage": "https://www.php-fig.org/"
  1916. }
  1917. ],
  1918. "description": "Common interface for logging libraries",
  1919. "homepage": "https://github.com/php-fig/log",
  1920. "keywords": [
  1921. "log",
  1922. "psr",
  1923. "psr-3"
  1924. ],
  1925. "support": {
  1926. "source": "https://github.com/php-fig/log/tree/3.0.2"
  1927. },
  1928. "time": "2024-09-11T13:17:53+00:00"
  1929. },
  1930. {
  1931. "name": "symfony/asset",
  1932. "version": "v6.4.13",
  1933. "source": {
  1934. "type": "git",
  1935. "url": "https://github.com/symfony/asset.git",
  1936. "reference": "2466c17d61d14539cddf77e57ebb9cc971185302"
  1937. },
  1938. "dist": {
  1939. "type": "zip",
  1940. "url": "https://api.github.com/repos/symfony/asset/zipball/2466c17d61d14539cddf77e57ebb9cc971185302",
  1941. "reference": "2466c17d61d14539cddf77e57ebb9cc971185302",
  1942. "shasum": ""
  1943. },
  1944. "require": {
  1945. "php": ">=8.1"
  1946. },
  1947. "conflict": {
  1948. "symfony/http-foundation": "<5.4"
  1949. },
  1950. "require-dev": {
  1951. "symfony/http-client": "^5.4|^6.0|^7.0",
  1952. "symfony/http-foundation": "^5.4|^6.0|^7.0",
  1953. "symfony/http-kernel": "^5.4|^6.0|^7.0"
  1954. },
  1955. "type": "library",
  1956. "autoload": {
  1957. "psr-4": {
  1958. "Symfony\\Component\\Asset\\": ""
  1959. },
  1960. "exclude-from-classmap": [
  1961. "/Tests/"
  1962. ]
  1963. },
  1964. "notification-url": "https://packagist.org/downloads/",
  1965. "license": [
  1966. "MIT"
  1967. ],
  1968. "authors": [
  1969. {
  1970. "name": "Fabien Potencier",
  1971. "email": "fabien@symfony.com"
  1972. },
  1973. {
  1974. "name": "Symfony Community",
  1975. "homepage": "https://symfony.com/contributors"
  1976. }
  1977. ],
  1978. "description": "Manages URL generation and versioning of web assets such as CSS stylesheets, JavaScript files and image files",
  1979. "homepage": "https://symfony.com",
  1980. "support": {
  1981. "source": "https://github.com/symfony/asset/tree/v6.4.13"
  1982. },
  1983. "funding": [
  1984. {
  1985. "url": "https://symfony.com/sponsor",
  1986. "type": "custom"
  1987. },
  1988. {
  1989. "url": "https://github.com/fabpot",
  1990. "type": "github"
  1991. },
  1992. {
  1993. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  1994. "type": "tidelift"
  1995. }
  1996. ],
  1997. "time": "2024-10-25T15:07:50+00:00"
  1998. },
  1999. {
  2000. "name": "symfony/cache",
  2001. "version": "v6.4.16",
  2002. "source": {
  2003. "type": "git",
  2004. "url": "https://github.com/symfony/cache.git",
  2005. "reference": "70d60e9a3603108563010f8592dff15a6f15dfae"
  2006. },
  2007. "dist": {
  2008. "type": "zip",
  2009. "url": "https://api.github.com/repos/symfony/cache/zipball/70d60e9a3603108563010f8592dff15a6f15dfae",
  2010. "reference": "70d60e9a3603108563010f8592dff15a6f15dfae",
  2011. "shasum": ""
  2012. },
  2013. "require": {
  2014. "php": ">=8.1",
  2015. "psr/cache": "^2.0|^3.0",
  2016. "psr/log": "^1.1|^2|^3",
  2017. "symfony/cache-contracts": "^2.5|^3",
  2018. "symfony/service-contracts": "^2.5|^3",
  2019. "symfony/var-exporter": "^6.3.6|^7.0"
  2020. },
  2021. "conflict": {
  2022. "doctrine/dbal": "<2.13.1",
  2023. "symfony/dependency-injection": "<5.4",
  2024. "symfony/http-kernel": "<5.4",
  2025. "symfony/var-dumper": "<5.4"
  2026. },
  2027. "provide": {
  2028. "psr/cache-implementation": "2.0|3.0",
  2029. "psr/simple-cache-implementation": "1.0|2.0|3.0",
  2030. "symfony/cache-implementation": "1.1|2.0|3.0"
  2031. },
  2032. "require-dev": {
  2033. "cache/integration-tests": "dev-master",
  2034. "doctrine/dbal": "^2.13.1|^3|^4",
  2035. "predis/predis": "^1.1|^2.0",
  2036. "psr/simple-cache": "^1.0|^2.0|^3.0",
  2037. "symfony/config": "^5.4|^6.0|^7.0",
  2038. "symfony/dependency-injection": "^5.4|^6.0|^7.0",
  2039. "symfony/filesystem": "^5.4|^6.0|^7.0",
  2040. "symfony/http-kernel": "^5.4|^6.0|^7.0",
  2041. "symfony/messenger": "^5.4|^6.0|^7.0",
  2042. "symfony/var-dumper": "^5.4|^6.0|^7.0"
  2043. },
  2044. "type": "library",
  2045. "autoload": {
  2046. "psr-4": {
  2047. "Symfony\\Component\\Cache\\": ""
  2048. },
  2049. "classmap": [
  2050. "Traits/ValueWrapper.php"
  2051. ],
  2052. "exclude-from-classmap": [
  2053. "/Tests/"
  2054. ]
  2055. },
  2056. "notification-url": "https://packagist.org/downloads/",
  2057. "license": [
  2058. "MIT"
  2059. ],
  2060. "authors": [
  2061. {
  2062. "name": "Nicolas Grekas",
  2063. "email": "p@tchwork.com"
  2064. },
  2065. {
  2066. "name": "Symfony Community",
  2067. "homepage": "https://symfony.com/contributors"
  2068. }
  2069. ],
  2070. "description": "Provides extended PSR-6, PSR-16 (and tags) implementations",
  2071. "homepage": "https://symfony.com",
  2072. "keywords": [
  2073. "caching",
  2074. "psr6"
  2075. ],
  2076. "support": {
  2077. "source": "https://github.com/symfony/cache/tree/v6.4.16"
  2078. },
  2079. "funding": [
  2080. {
  2081. "url": "https://symfony.com/sponsor",
  2082. "type": "custom"
  2083. },
  2084. {
  2085. "url": "https://github.com/fabpot",
  2086. "type": "github"
  2087. },
  2088. {
  2089. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  2090. "type": "tidelift"
  2091. }
  2092. ],
  2093. "time": "2024-11-20T10:10:54+00:00"
  2094. },
  2095. {
  2096. "name": "symfony/cache-contracts",
  2097. "version": "v3.5.1",
  2098. "source": {
  2099. "type": "git",
  2100. "url": "https://github.com/symfony/cache-contracts.git",
  2101. "reference": "15a4f8e5cd3bce9aeafc882b1acab39ec8de2c1b"
  2102. },
  2103. "dist": {
  2104. "type": "zip",
  2105. "url": "https://api.github.com/repos/symfony/cache-contracts/zipball/15a4f8e5cd3bce9aeafc882b1acab39ec8de2c1b",
  2106. "reference": "15a4f8e5cd3bce9aeafc882b1acab39ec8de2c1b",
  2107. "shasum": ""
  2108. },
  2109. "require": {
  2110. "php": ">=8.1",
  2111. "psr/cache": "^3.0"
  2112. },
  2113. "type": "library",
  2114. "extra": {
  2115. "thanks": {
  2116. "url": "https://github.com/symfony/contracts",
  2117. "name": "symfony/contracts"
  2118. },
  2119. "branch-alias": {
  2120. "dev-main": "3.5-dev"
  2121. }
  2122. },
  2123. "autoload": {
  2124. "psr-4": {
  2125. "Symfony\\Contracts\\Cache\\": ""
  2126. }
  2127. },
  2128. "notification-url": "https://packagist.org/downloads/",
  2129. "license": [
  2130. "MIT"
  2131. ],
  2132. "authors": [
  2133. {
  2134. "name": "Nicolas Grekas",
  2135. "email": "p@tchwork.com"
  2136. },
  2137. {
  2138. "name": "Symfony Community",
  2139. "homepage": "https://symfony.com/contributors"
  2140. }
  2141. ],
  2142. "description": "Generic abstractions related to caching",
  2143. "homepage": "https://symfony.com",
  2144. "keywords": [
  2145. "abstractions",
  2146. "contracts",
  2147. "decoupling",
  2148. "interfaces",
  2149. "interoperability",
  2150. "standards"
  2151. ],
  2152. "support": {
  2153. "source": "https://github.com/symfony/cache-contracts/tree/v3.5.1"
  2154. },
  2155. "funding": [
  2156. {
  2157. "url": "https://symfony.com/sponsor",
  2158. "type": "custom"
  2159. },
  2160. {
  2161. "url": "https://github.com/fabpot",
  2162. "type": "github"
  2163. },
  2164. {
  2165. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  2166. "type": "tidelift"
  2167. }
  2168. ],
  2169. "time": "2024-09-25T14:20:29+00:00"
  2170. },
  2171. {
  2172. "name": "symfony/clock",
  2173. "version": "v6.4.13",
  2174. "source": {
  2175. "type": "git",
  2176. "url": "https://github.com/symfony/clock.git",
  2177. "reference": "b2bf55c4dd115003309eafa87ee7df9ed3dde81b"
  2178. },
  2179. "dist": {
  2180. "type": "zip",
  2181. "url": "https://api.github.com/repos/symfony/clock/zipball/b2bf55c4dd115003309eafa87ee7df9ed3dde81b",
  2182. "reference": "b2bf55c4dd115003309eafa87ee7df9ed3dde81b",
  2183. "shasum": ""
  2184. },
  2185. "require": {
  2186. "php": ">=8.1",
  2187. "psr/clock": "^1.0",
  2188. "symfony/polyfill-php83": "^1.28"
  2189. },
  2190. "provide": {
  2191. "psr/clock-implementation": "1.0"
  2192. },
  2193. "type": "library",
  2194. "autoload": {
  2195. "files": [
  2196. "Resources/now.php"
  2197. ],
  2198. "psr-4": {
  2199. "Symfony\\Component\\Clock\\": ""
  2200. },
  2201. "exclude-from-classmap": [
  2202. "/Tests/"
  2203. ]
  2204. },
  2205. "notification-url": "https://packagist.org/downloads/",
  2206. "license": [
  2207. "MIT"
  2208. ],
  2209. "authors": [
  2210. {
  2211. "name": "Nicolas Grekas",
  2212. "email": "p@tchwork.com"
  2213. },
  2214. {
  2215. "name": "Symfony Community",
  2216. "homepage": "https://symfony.com/contributors"
  2217. }
  2218. ],
  2219. "description": "Decouples applications from the system clock",
  2220. "homepage": "https://symfony.com",
  2221. "keywords": [
  2222. "clock",
  2223. "psr20",
  2224. "time"
  2225. ],
  2226. "support": {
  2227. "source": "https://github.com/symfony/clock/tree/v6.4.13"
  2228. },
  2229. "funding": [
  2230. {
  2231. "url": "https://symfony.com/sponsor",
  2232. "type": "custom"
  2233. },
  2234. {
  2235. "url": "https://github.com/fabpot",
  2236. "type": "github"
  2237. },
  2238. {
  2239. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  2240. "type": "tidelift"
  2241. }
  2242. ],
  2243. "time": "2024-09-25T14:18:03+00:00"
  2244. },
  2245. {
  2246. "name": "symfony/config",
  2247. "version": "v6.4.14",
  2248. "source": {
  2249. "type": "git",
  2250. "url": "https://github.com/symfony/config.git",
  2251. "reference": "4e55e7e4ffddd343671ea972216d4509f46c22ef"
  2252. },
  2253. "dist": {
  2254. "type": "zip",
  2255. "url": "https://api.github.com/repos/symfony/config/zipball/4e55e7e4ffddd343671ea972216d4509f46c22ef",
  2256. "reference": "4e55e7e4ffddd343671ea972216d4509f46c22ef",
  2257. "shasum": ""
  2258. },
  2259. "require": {
  2260. "php": ">=8.1",
  2261. "symfony/deprecation-contracts": "^2.5|^3",
  2262. "symfony/filesystem": "^5.4|^6.0|^7.0",
  2263. "symfony/polyfill-ctype": "~1.8"
  2264. },
  2265. "conflict": {
  2266. "symfony/finder": "<5.4",
  2267. "symfony/service-contracts": "<2.5"
  2268. },
  2269. "require-dev": {
  2270. "symfony/event-dispatcher": "^5.4|^6.0|^7.0",
  2271. "symfony/finder": "^5.4|^6.0|^7.0",
  2272. "symfony/messenger": "^5.4|^6.0|^7.0",
  2273. "symfony/service-contracts": "^2.5|^3",
  2274. "symfony/yaml": "^5.4|^6.0|^7.0"
  2275. },
  2276. "type": "library",
  2277. "autoload": {
  2278. "psr-4": {
  2279. "Symfony\\Component\\Config\\": ""
  2280. },
  2281. "exclude-from-classmap": [
  2282. "/Tests/"
  2283. ]
  2284. },
  2285. "notification-url": "https://packagist.org/downloads/",
  2286. "license": [
  2287. "MIT"
  2288. ],
  2289. "authors": [
  2290. {
  2291. "name": "Fabien Potencier",
  2292. "email": "fabien@symfony.com"
  2293. },
  2294. {
  2295. "name": "Symfony Community",
  2296. "homepage": "https://symfony.com/contributors"
  2297. }
  2298. ],
  2299. "description": "Helps you find, load, combine, autofill and validate configuration values of any kind",
  2300. "homepage": "https://symfony.com",
  2301. "support": {
  2302. "source": "https://github.com/symfony/config/tree/v6.4.14"
  2303. },
  2304. "funding": [
  2305. {
  2306. "url": "https://symfony.com/sponsor",
  2307. "type": "custom"
  2308. },
  2309. {
  2310. "url": "https://github.com/fabpot",
  2311. "type": "github"
  2312. },
  2313. {
  2314. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  2315. "type": "tidelift"
  2316. }
  2317. ],
  2318. "time": "2024-11-04T11:33:53+00:00"
  2319. },
  2320. {
  2321. "name": "symfony/console",
  2322. "version": "v6.4.17",
  2323. "source": {
  2324. "type": "git",
  2325. "url": "https://github.com/symfony/console.git",
  2326. "reference": "799445db3f15768ecc382ac5699e6da0520a0a04"
  2327. },
  2328. "dist": {
  2329. "type": "zip",
  2330. "url": "https://api.github.com/repos/symfony/console/zipball/799445db3f15768ecc382ac5699e6da0520a0a04",
  2331. "reference": "799445db3f15768ecc382ac5699e6da0520a0a04",
  2332. "shasum": ""
  2333. },
  2334. "require": {
  2335. "php": ">=8.1",
  2336. "symfony/deprecation-contracts": "^2.5|^3",
  2337. "symfony/polyfill-mbstring": "~1.0",
  2338. "symfony/service-contracts": "^2.5|^3",
  2339. "symfony/string": "^5.4|^6.0|^7.0"
  2340. },
  2341. "conflict": {
  2342. "symfony/dependency-injection": "<5.4",
  2343. "symfony/dotenv": "<5.4",
  2344. "symfony/event-dispatcher": "<5.4",
  2345. "symfony/lock": "<5.4",
  2346. "symfony/process": "<5.4"
  2347. },
  2348. "provide": {
  2349. "psr/log-implementation": "1.0|2.0|3.0"
  2350. },
  2351. "require-dev": {
  2352. "psr/log": "^1|^2|^3",
  2353. "symfony/config": "^5.4|^6.0|^7.0",
  2354. "symfony/dependency-injection": "^5.4|^6.0|^7.0",
  2355. "symfony/event-dispatcher": "^5.4|^6.0|^7.0",
  2356. "symfony/http-foundation": "^6.4|^7.0",
  2357. "symfony/http-kernel": "^6.4|^7.0",
  2358. "symfony/lock": "^5.4|^6.0|^7.0",
  2359. "symfony/messenger": "^5.4|^6.0|^7.0",
  2360. "symfony/process": "^5.4|^6.0|^7.0",
  2361. "symfony/stopwatch": "^5.4|^6.0|^7.0",
  2362. "symfony/var-dumper": "^5.4|^6.0|^7.0"
  2363. },
  2364. "type": "library",
  2365. "autoload": {
  2366. "psr-4": {
  2367. "Symfony\\Component\\Console\\": ""
  2368. },
  2369. "exclude-from-classmap": [
  2370. "/Tests/"
  2371. ]
  2372. },
  2373. "notification-url": "https://packagist.org/downloads/",
  2374. "license": [
  2375. "MIT"
  2376. ],
  2377. "authors": [
  2378. {
  2379. "name": "Fabien Potencier",
  2380. "email": "fabien@symfony.com"
  2381. },
  2382. {
  2383. "name": "Symfony Community",
  2384. "homepage": "https://symfony.com/contributors"
  2385. }
  2386. ],
  2387. "description": "Eases the creation of beautiful and testable command line interfaces",
  2388. "homepage": "https://symfony.com",
  2389. "keywords": [
  2390. "cli",
  2391. "command-line",
  2392. "console",
  2393. "terminal"
  2394. ],
  2395. "support": {
  2396. "source": "https://github.com/symfony/console/tree/v6.4.17"
  2397. },
  2398. "funding": [
  2399. {
  2400. "url": "https://symfony.com/sponsor",
  2401. "type": "custom"
  2402. },
  2403. {
  2404. "url": "https://github.com/fabpot",
  2405. "type": "github"
  2406. },
  2407. {
  2408. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  2409. "type": "tidelift"
  2410. }
  2411. ],
  2412. "time": "2024-12-07T12:07:30+00:00"
  2413. },
  2414. {
  2415. "name": "symfony/dependency-injection",
  2416. "version": "v6.4.16",
  2417. "source": {
  2418. "type": "git",
  2419. "url": "https://github.com/symfony/dependency-injection.git",
  2420. "reference": "7a379d8871f6a36f01559c14e11141cc02eb8dc8"
  2421. },
  2422. "dist": {
  2423. "type": "zip",
  2424. "url": "https://api.github.com/repos/symfony/dependency-injection/zipball/7a379d8871f6a36f01559c14e11141cc02eb8dc8",
  2425. "reference": "7a379d8871f6a36f01559c14e11141cc02eb8dc8",
  2426. "shasum": ""
  2427. },
  2428. "require": {
  2429. "php": ">=8.1",
  2430. "psr/container": "^1.1|^2.0",
  2431. "symfony/deprecation-contracts": "^2.5|^3",
  2432. "symfony/service-contracts": "^2.5|^3.0",
  2433. "symfony/var-exporter": "^6.2.10|^7.0"
  2434. },
  2435. "conflict": {
  2436. "ext-psr": "<1.1|>=2",
  2437. "symfony/config": "<6.1",
  2438. "symfony/finder": "<5.4",
  2439. "symfony/proxy-manager-bridge": "<6.3",
  2440. "symfony/yaml": "<5.4"
  2441. },
  2442. "provide": {
  2443. "psr/container-implementation": "1.1|2.0",
  2444. "symfony/service-implementation": "1.1|2.0|3.0"
  2445. },
  2446. "require-dev": {
  2447. "symfony/config": "^6.1|^7.0",
  2448. "symfony/expression-language": "^5.4|^6.0|^7.0",
  2449. "symfony/yaml": "^5.4|^6.0|^7.0"
  2450. },
  2451. "type": "library",
  2452. "autoload": {
  2453. "psr-4": {
  2454. "Symfony\\Component\\DependencyInjection\\": ""
  2455. },
  2456. "exclude-from-classmap": [
  2457. "/Tests/"
  2458. ]
  2459. },
  2460. "notification-url": "https://packagist.org/downloads/",
  2461. "license": [
  2462. "MIT"
  2463. ],
  2464. "authors": [
  2465. {
  2466. "name": "Fabien Potencier",
  2467. "email": "fabien@symfony.com"
  2468. },
  2469. {
  2470. "name": "Symfony Community",
  2471. "homepage": "https://symfony.com/contributors"
  2472. }
  2473. ],
  2474. "description": "Allows you to standardize and centralize the way objects are constructed in your application",
  2475. "homepage": "https://symfony.com",
  2476. "support": {
  2477. "source": "https://github.com/symfony/dependency-injection/tree/v6.4.16"
  2478. },
  2479. "funding": [
  2480. {
  2481. "url": "https://symfony.com/sponsor",
  2482. "type": "custom"
  2483. },
  2484. {
  2485. "url": "https://github.com/fabpot",
  2486. "type": "github"
  2487. },
  2488. {
  2489. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  2490. "type": "tidelift"
  2491. }
  2492. ],
  2493. "time": "2024-11-25T14:52:46+00:00"
  2494. },
  2495. {
  2496. "name": "symfony/deprecation-contracts",
  2497. "version": "v3.5.1",
  2498. "source": {
  2499. "type": "git",
  2500. "url": "https://github.com/symfony/deprecation-contracts.git",
  2501. "reference": "74c71c939a79f7d5bf3c1ce9f5ea37ba0114c6f6"
  2502. },
  2503. "dist": {
  2504. "type": "zip",
  2505. "url": "https://api.github.com/repos/symfony/deprecation-contracts/zipball/74c71c939a79f7d5bf3c1ce9f5ea37ba0114c6f6",
  2506. "reference": "74c71c939a79f7d5bf3c1ce9f5ea37ba0114c6f6",
  2507. "shasum": ""
  2508. },
  2509. "require": {
  2510. "php": ">=8.1"
  2511. },
  2512. "type": "library",
  2513. "extra": {
  2514. "thanks": {
  2515. "url": "https://github.com/symfony/contracts",
  2516. "name": "symfony/contracts"
  2517. },
  2518. "branch-alias": {
  2519. "dev-main": "3.5-dev"
  2520. }
  2521. },
  2522. "autoload": {
  2523. "files": [
  2524. "function.php"
  2525. ]
  2526. },
  2527. "notification-url": "https://packagist.org/downloads/",
  2528. "license": [
  2529. "MIT"
  2530. ],
  2531. "authors": [
  2532. {
  2533. "name": "Nicolas Grekas",
  2534. "email": "p@tchwork.com"
  2535. },
  2536. {
  2537. "name": "Symfony Community",
  2538. "homepage": "https://symfony.com/contributors"
  2539. }
  2540. ],
  2541. "description": "A generic function and convention to trigger deprecation notices",
  2542. "homepage": "https://symfony.com",
  2543. "support": {
  2544. "source": "https://github.com/symfony/deprecation-contracts/tree/v3.5.1"
  2545. },
  2546. "funding": [
  2547. {
  2548. "url": "https://symfony.com/sponsor",
  2549. "type": "custom"
  2550. },
  2551. {
  2552. "url": "https://github.com/fabpot",
  2553. "type": "github"
  2554. },
  2555. {
  2556. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  2557. "type": "tidelift"
  2558. }
  2559. ],
  2560. "time": "2024-09-25T14:20:29+00:00"
  2561. },
  2562. {
  2563. "name": "symfony/doctrine-bridge",
  2564. "version": "v6.4.17",
  2565. "source": {
  2566. "type": "git",
  2567. "url": "https://github.com/symfony/doctrine-bridge.git",
  2568. "reference": "2ba7e747a944b69f9f583c35173560afebbff995"
  2569. },
  2570. "dist": {
  2571. "type": "zip",
  2572. "url": "https://api.github.com/repos/symfony/doctrine-bridge/zipball/2ba7e747a944b69f9f583c35173560afebbff995",
  2573. "reference": "2ba7e747a944b69f9f583c35173560afebbff995",
  2574. "shasum": ""
  2575. },
  2576. "require": {
  2577. "doctrine/event-manager": "^1.2|^2",
  2578. "doctrine/persistence": "^3.1",
  2579. "php": ">=8.1",
  2580. "symfony/deprecation-contracts": "^2.5|^3",
  2581. "symfony/polyfill-ctype": "~1.8",
  2582. "symfony/polyfill-mbstring": "~1.0",
  2583. "symfony/service-contracts": "^2.5|^3"
  2584. },
  2585. "conflict": {
  2586. "doctrine/dbal": "<2.13.1",
  2587. "doctrine/lexer": "<1.1",
  2588. "doctrine/orm": "<2.15",
  2589. "symfony/cache": "<5.4",
  2590. "symfony/dependency-injection": "<6.2",
  2591. "symfony/form": "<5.4.38|>=6,<6.4.6|>=7,<7.0.6",
  2592. "symfony/http-foundation": "<6.3",
  2593. "symfony/http-kernel": "<6.2",
  2594. "symfony/lock": "<6.3",
  2595. "symfony/messenger": "<5.4",
  2596. "symfony/property-info": "<5.4",
  2597. "symfony/security-bundle": "<5.4",
  2598. "symfony/security-core": "<6.4",
  2599. "symfony/validator": "<6.4"
  2600. },
  2601. "require-dev": {
  2602. "doctrine/collections": "^1.0|^2.0",
  2603. "doctrine/data-fixtures": "^1.1|^2",
  2604. "doctrine/dbal": "^2.13.1|^3|^4",
  2605. "doctrine/orm": "^2.15|^3",
  2606. "psr/log": "^1|^2|^3",
  2607. "symfony/cache": "^5.4|^6.0|^7.0",
  2608. "symfony/config": "^5.4|^6.0|^7.0",
  2609. "symfony/dependency-injection": "^6.2|^7.0",
  2610. "symfony/doctrine-messenger": "^5.4|^6.0|^7.0",
  2611. "symfony/expression-language": "^5.4|^6.0|^7.0",
  2612. "symfony/form": "^5.4.38|^6.4.6|^7.0.6",
  2613. "symfony/http-kernel": "^6.3|^7.0",
  2614. "symfony/lock": "^6.3|^7.0",
  2615. "symfony/messenger": "^5.4|^6.0|^7.0",
  2616. "symfony/property-access": "^5.4|^6.0|^7.0",
  2617. "symfony/property-info": "^5.4|^6.0|^7.0",
  2618. "symfony/proxy-manager-bridge": "^6.4",
  2619. "symfony/security-core": "^6.4|^7.0",
  2620. "symfony/stopwatch": "^5.4|^6.0|^7.0",
  2621. "symfony/translation": "^5.4|^6.0|^7.0",
  2622. "symfony/uid": "^5.4|^6.0|^7.0",
  2623. "symfony/validator": "^6.4|^7.0",
  2624. "symfony/var-dumper": "^5.4|^6.0|^7.0"
  2625. },
  2626. "type": "symfony-bridge",
  2627. "autoload": {
  2628. "psr-4": {
  2629. "Symfony\\Bridge\\Doctrine\\": ""
  2630. },
  2631. "exclude-from-classmap": [
  2632. "/Tests/"
  2633. ]
  2634. },
  2635. "notification-url": "https://packagist.org/downloads/",
  2636. "license": [
  2637. "MIT"
  2638. ],
  2639. "authors": [
  2640. {
  2641. "name": "Fabien Potencier",
  2642. "email": "fabien@symfony.com"
  2643. },
  2644. {
  2645. "name": "Symfony Community",
  2646. "homepage": "https://symfony.com/contributors"
  2647. }
  2648. ],
  2649. "description": "Provides integration for Doctrine with various Symfony components",
  2650. "homepage": "https://symfony.com",
  2651. "support": {
  2652. "source": "https://github.com/symfony/doctrine-bridge/tree/v6.4.17"
  2653. },
  2654. "funding": [
  2655. {
  2656. "url": "https://symfony.com/sponsor",
  2657. "type": "custom"
  2658. },
  2659. {
  2660. "url": "https://github.com/fabpot",
  2661. "type": "github"
  2662. },
  2663. {
  2664. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  2665. "type": "tidelift"
  2666. }
  2667. ],
  2668. "time": "2024-12-18T10:42:42+00:00"
  2669. },
  2670. {
  2671. "name": "symfony/doctrine-messenger",
  2672. "version": "v6.4.13",
  2673. "source": {
  2674. "type": "git",
  2675. "url": "https://github.com/symfony/doctrine-messenger.git",
  2676. "reference": "c4afe708134a4506316955d1c009bc6091b16b2d"
  2677. },
  2678. "dist": {
  2679. "type": "zip",
  2680. "url": "https://api.github.com/repos/symfony/doctrine-messenger/zipball/c4afe708134a4506316955d1c009bc6091b16b2d",
  2681. "reference": "c4afe708134a4506316955d1c009bc6091b16b2d",
  2682. "shasum": ""
  2683. },
  2684. "require": {
  2685. "doctrine/dbal": "^2.13|^3|^4",
  2686. "php": ">=8.1",
  2687. "symfony/messenger": "^5.4|^6.0|^7.0",
  2688. "symfony/service-contracts": "^2.5|^3"
  2689. },
  2690. "conflict": {
  2691. "doctrine/persistence": "<1.3"
  2692. },
  2693. "require-dev": {
  2694. "doctrine/persistence": "^1.3|^2|^3",
  2695. "symfony/property-access": "^5.4|^6.0|^7.0",
  2696. "symfony/serializer": "^5.4|^6.0|^7.0"
  2697. },
  2698. "type": "symfony-messenger-bridge",
  2699. "autoload": {
  2700. "psr-4": {
  2701. "Symfony\\Component\\Messenger\\Bridge\\Doctrine\\": ""
  2702. },
  2703. "exclude-from-classmap": [
  2704. "/Tests/"
  2705. ]
  2706. },
  2707. "notification-url": "https://packagist.org/downloads/",
  2708. "license": [
  2709. "MIT"
  2710. ],
  2711. "authors": [
  2712. {
  2713. "name": "Fabien Potencier",
  2714. "email": "fabien@symfony.com"
  2715. },
  2716. {
  2717. "name": "Symfony Community",
  2718. "homepage": "https://symfony.com/contributors"
  2719. }
  2720. ],
  2721. "description": "Symfony Doctrine Messenger Bridge",
  2722. "homepage": "https://symfony.com",
  2723. "support": {
  2724. "source": "https://github.com/symfony/doctrine-messenger/tree/v6.4.13"
  2725. },
  2726. "funding": [
  2727. {
  2728. "url": "https://symfony.com/sponsor",
  2729. "type": "custom"
  2730. },
  2731. {
  2732. "url": "https://github.com/fabpot",
  2733. "type": "github"
  2734. },
  2735. {
  2736. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  2737. "type": "tidelift"
  2738. }
  2739. ],
  2740. "time": "2024-10-18T09:45:38+00:00"
  2741. },
  2742. {
  2743. "name": "symfony/dotenv",
  2744. "version": "v6.4.16",
  2745. "source": {
  2746. "type": "git",
  2747. "url": "https://github.com/symfony/dotenv.git",
  2748. "reference": "1ac5e7e7e862d4d574258daf08bd569ba926e4a5"
  2749. },
  2750. "dist": {
  2751. "type": "zip",
  2752. "url": "https://api.github.com/repos/symfony/dotenv/zipball/1ac5e7e7e862d4d574258daf08bd569ba926e4a5",
  2753. "reference": "1ac5e7e7e862d4d574258daf08bd569ba926e4a5",
  2754. "shasum": ""
  2755. },
  2756. "require": {
  2757. "php": ">=8.1"
  2758. },
  2759. "conflict": {
  2760. "symfony/console": "<5.4",
  2761. "symfony/process": "<5.4"
  2762. },
  2763. "require-dev": {
  2764. "symfony/console": "^5.4|^6.0|^7.0",
  2765. "symfony/process": "^5.4|^6.0|^7.0"
  2766. },
  2767. "type": "library",
  2768. "autoload": {
  2769. "psr-4": {
  2770. "Symfony\\Component\\Dotenv\\": ""
  2771. },
  2772. "exclude-from-classmap": [
  2773. "/Tests/"
  2774. ]
  2775. },
  2776. "notification-url": "https://packagist.org/downloads/",
  2777. "license": [
  2778. "MIT"
  2779. ],
  2780. "authors": [
  2781. {
  2782. "name": "Fabien Potencier",
  2783. "email": "fabien@symfony.com"
  2784. },
  2785. {
  2786. "name": "Symfony Community",
  2787. "homepage": "https://symfony.com/contributors"
  2788. }
  2789. ],
  2790. "description": "Registers environment variables from a .env file",
  2791. "homepage": "https://symfony.com",
  2792. "keywords": [
  2793. "dotenv",
  2794. "env",
  2795. "environment"
  2796. ],
  2797. "support": {
  2798. "source": "https://github.com/symfony/dotenv/tree/v6.4.16"
  2799. },
  2800. "funding": [
  2801. {
  2802. "url": "https://symfony.com/sponsor",
  2803. "type": "custom"
  2804. },
  2805. {
  2806. "url": "https://github.com/fabpot",
  2807. "type": "github"
  2808. },
  2809. {
  2810. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  2811. "type": "tidelift"
  2812. }
  2813. ],
  2814. "time": "2024-11-27T11:08:19+00:00"
  2815. },
  2816. {
  2817. "name": "symfony/error-handler",
  2818. "version": "v6.4.17",
  2819. "source": {
  2820. "type": "git",
  2821. "url": "https://github.com/symfony/error-handler.git",
  2822. "reference": "37ad2380e8c1a8cf62a1200a5c10080b679b446c"
  2823. },
  2824. "dist": {
  2825. "type": "zip",
  2826. "url": "https://api.github.com/repos/symfony/error-handler/zipball/37ad2380e8c1a8cf62a1200a5c10080b679b446c",
  2827. "reference": "37ad2380e8c1a8cf62a1200a5c10080b679b446c",
  2828. "shasum": ""
  2829. },
  2830. "require": {
  2831. "php": ">=8.1",
  2832. "psr/log": "^1|^2|^3",
  2833. "symfony/var-dumper": "^5.4|^6.0|^7.0"
  2834. },
  2835. "conflict": {
  2836. "symfony/deprecation-contracts": "<2.5",
  2837. "symfony/http-kernel": "<6.4"
  2838. },
  2839. "require-dev": {
  2840. "symfony/deprecation-contracts": "^2.5|^3",
  2841. "symfony/http-kernel": "^6.4|^7.0",
  2842. "symfony/serializer": "^5.4|^6.0|^7.0"
  2843. },
  2844. "bin": [
  2845. "Resources/bin/patch-type-declarations"
  2846. ],
  2847. "type": "library",
  2848. "autoload": {
  2849. "psr-4": {
  2850. "Symfony\\Component\\ErrorHandler\\": ""
  2851. },
  2852. "exclude-from-classmap": [
  2853. "/Tests/"
  2854. ]
  2855. },
  2856. "notification-url": "https://packagist.org/downloads/",
  2857. "license": [
  2858. "MIT"
  2859. ],
  2860. "authors": [
  2861. {
  2862. "name": "Fabien Potencier",
  2863. "email": "fabien@symfony.com"
  2864. },
  2865. {
  2866. "name": "Symfony Community",
  2867. "homepage": "https://symfony.com/contributors"
  2868. }
  2869. ],
  2870. "description": "Provides tools to manage errors and ease debugging PHP code",
  2871. "homepage": "https://symfony.com",
  2872. "support": {
  2873. "source": "https://github.com/symfony/error-handler/tree/v6.4.17"
  2874. },
  2875. "funding": [
  2876. {
  2877. "url": "https://symfony.com/sponsor",
  2878. "type": "custom"
  2879. },
  2880. {
  2881. "url": "https://github.com/fabpot",
  2882. "type": "github"
  2883. },
  2884. {
  2885. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  2886. "type": "tidelift"
  2887. }
  2888. ],
  2889. "time": "2024-12-06T13:30:51+00:00"
  2890. },
  2891. {
  2892. "name": "symfony/event-dispatcher",
  2893. "version": "v6.4.13",
  2894. "source": {
  2895. "type": "git",
  2896. "url": "https://github.com/symfony/event-dispatcher.git",
  2897. "reference": "0ffc48080ab3e9132ea74ef4e09d8dcf26bf897e"
  2898. },
  2899. "dist": {
  2900. "type": "zip",
  2901. "url": "https://api.github.com/repos/symfony/event-dispatcher/zipball/0ffc48080ab3e9132ea74ef4e09d8dcf26bf897e",
  2902. "reference": "0ffc48080ab3e9132ea74ef4e09d8dcf26bf897e",
  2903. "shasum": ""
  2904. },
  2905. "require": {
  2906. "php": ">=8.1",
  2907. "symfony/event-dispatcher-contracts": "^2.5|^3"
  2908. },
  2909. "conflict": {
  2910. "symfony/dependency-injection": "<5.4",
  2911. "symfony/service-contracts": "<2.5"
  2912. },
  2913. "provide": {
  2914. "psr/event-dispatcher-implementation": "1.0",
  2915. "symfony/event-dispatcher-implementation": "2.0|3.0"
  2916. },
  2917. "require-dev": {
  2918. "psr/log": "^1|^2|^3",
  2919. "symfony/config": "^5.4|^6.0|^7.0",
  2920. "symfony/dependency-injection": "^5.4|^6.0|^7.0",
  2921. "symfony/error-handler": "^5.4|^6.0|^7.0",
  2922. "symfony/expression-language": "^5.4|^6.0|^7.0",
  2923. "symfony/http-foundation": "^5.4|^6.0|^7.0",
  2924. "symfony/service-contracts": "^2.5|^3",
  2925. "symfony/stopwatch": "^5.4|^6.0|^7.0"
  2926. },
  2927. "type": "library",
  2928. "autoload": {
  2929. "psr-4": {
  2930. "Symfony\\Component\\EventDispatcher\\": ""
  2931. },
  2932. "exclude-from-classmap": [
  2933. "/Tests/"
  2934. ]
  2935. },
  2936. "notification-url": "https://packagist.org/downloads/",
  2937. "license": [
  2938. "MIT"
  2939. ],
  2940. "authors": [
  2941. {
  2942. "name": "Fabien Potencier",
  2943. "email": "fabien@symfony.com"
  2944. },
  2945. {
  2946. "name": "Symfony Community",
  2947. "homepage": "https://symfony.com/contributors"
  2948. }
  2949. ],
  2950. "description": "Provides tools that allow your application components to communicate with each other by dispatching events and listening to them",
  2951. "homepage": "https://symfony.com",
  2952. "support": {
  2953. "source": "https://github.com/symfony/event-dispatcher/tree/v6.4.13"
  2954. },
  2955. "funding": [
  2956. {
  2957. "url": "https://symfony.com/sponsor",
  2958. "type": "custom"
  2959. },
  2960. {
  2961. "url": "https://github.com/fabpot",
  2962. "type": "github"
  2963. },
  2964. {
  2965. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  2966. "type": "tidelift"
  2967. }
  2968. ],
  2969. "time": "2024-09-25T14:18:03+00:00"
  2970. },
  2971. {
  2972. "name": "symfony/event-dispatcher-contracts",
  2973. "version": "v3.5.1",
  2974. "source": {
  2975. "type": "git",
  2976. "url": "https://github.com/symfony/event-dispatcher-contracts.git",
  2977. "reference": "7642f5e970b672283b7823222ae8ef8bbc160b9f"
  2978. },
  2979. "dist": {
  2980. "type": "zip",
  2981. "url": "https://api.github.com/repos/symfony/event-dispatcher-contracts/zipball/7642f5e970b672283b7823222ae8ef8bbc160b9f",
  2982. "reference": "7642f5e970b672283b7823222ae8ef8bbc160b9f",
  2983. "shasum": ""
  2984. },
  2985. "require": {
  2986. "php": ">=8.1",
  2987. "psr/event-dispatcher": "^1"
  2988. },
  2989. "type": "library",
  2990. "extra": {
  2991. "thanks": {
  2992. "url": "https://github.com/symfony/contracts",
  2993. "name": "symfony/contracts"
  2994. },
  2995. "branch-alias": {
  2996. "dev-main": "3.5-dev"
  2997. }
  2998. },
  2999. "autoload": {
  3000. "psr-4": {
  3001. "Symfony\\Contracts\\EventDispatcher\\": ""
  3002. }
  3003. },
  3004. "notification-url": "https://packagist.org/downloads/",
  3005. "license": [
  3006. "MIT"
  3007. ],
  3008. "authors": [
  3009. {
  3010. "name": "Nicolas Grekas",
  3011. "email": "p@tchwork.com"
  3012. },
  3013. {
  3014. "name": "Symfony Community",
  3015. "homepage": "https://symfony.com/contributors"
  3016. }
  3017. ],
  3018. "description": "Generic abstractions related to dispatching event",
  3019. "homepage": "https://symfony.com",
  3020. "keywords": [
  3021. "abstractions",
  3022. "contracts",
  3023. "decoupling",
  3024. "interfaces",
  3025. "interoperability",
  3026. "standards"
  3027. ],
  3028. "support": {
  3029. "source": "https://github.com/symfony/event-dispatcher-contracts/tree/v3.5.1"
  3030. },
  3031. "funding": [
  3032. {
  3033. "url": "https://symfony.com/sponsor",
  3034. "type": "custom"
  3035. },
  3036. {
  3037. "url": "https://github.com/fabpot",
  3038. "type": "github"
  3039. },
  3040. {
  3041. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3042. "type": "tidelift"
  3043. }
  3044. ],
  3045. "time": "2024-09-25T14:20:29+00:00"
  3046. },
  3047. {
  3048. "name": "symfony/expression-language",
  3049. "version": "v6.4.13",
  3050. "source": {
  3051. "type": "git",
  3052. "url": "https://github.com/symfony/expression-language.git",
  3053. "reference": "3524904fb026356a5230cd197f9a4e6a61e0e7df"
  3054. },
  3055. "dist": {
  3056. "type": "zip",
  3057. "url": "https://api.github.com/repos/symfony/expression-language/zipball/3524904fb026356a5230cd197f9a4e6a61e0e7df",
  3058. "reference": "3524904fb026356a5230cd197f9a4e6a61e0e7df",
  3059. "shasum": ""
  3060. },
  3061. "require": {
  3062. "php": ">=8.1",
  3063. "symfony/cache": "^5.4|^6.0|^7.0",
  3064. "symfony/deprecation-contracts": "^2.5|^3",
  3065. "symfony/service-contracts": "^2.5|^3"
  3066. },
  3067. "type": "library",
  3068. "autoload": {
  3069. "psr-4": {
  3070. "Symfony\\Component\\ExpressionLanguage\\": ""
  3071. },
  3072. "exclude-from-classmap": [
  3073. "/Tests/"
  3074. ]
  3075. },
  3076. "notification-url": "https://packagist.org/downloads/",
  3077. "license": [
  3078. "MIT"
  3079. ],
  3080. "authors": [
  3081. {
  3082. "name": "Fabien Potencier",
  3083. "email": "fabien@symfony.com"
  3084. },
  3085. {
  3086. "name": "Symfony Community",
  3087. "homepage": "https://symfony.com/contributors"
  3088. }
  3089. ],
  3090. "description": "Provides an engine that can compile and evaluate expressions",
  3091. "homepage": "https://symfony.com",
  3092. "support": {
  3093. "source": "https://github.com/symfony/expression-language/tree/v6.4.13"
  3094. },
  3095. "funding": [
  3096. {
  3097. "url": "https://symfony.com/sponsor",
  3098. "type": "custom"
  3099. },
  3100. {
  3101. "url": "https://github.com/fabpot",
  3102. "type": "github"
  3103. },
  3104. {
  3105. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3106. "type": "tidelift"
  3107. }
  3108. ],
  3109. "time": "2024-10-09T08:40:40+00:00"
  3110. },
  3111. {
  3112. "name": "symfony/filesystem",
  3113. "version": "v6.4.13",
  3114. "source": {
  3115. "type": "git",
  3116. "url": "https://github.com/symfony/filesystem.git",
  3117. "reference": "4856c9cf585d5a0313d8d35afd681a526f038dd3"
  3118. },
  3119. "dist": {
  3120. "type": "zip",
  3121. "url": "https://api.github.com/repos/symfony/filesystem/zipball/4856c9cf585d5a0313d8d35afd681a526f038dd3",
  3122. "reference": "4856c9cf585d5a0313d8d35afd681a526f038dd3",
  3123. "shasum": ""
  3124. },
  3125. "require": {
  3126. "php": ">=8.1",
  3127. "symfony/polyfill-ctype": "~1.8",
  3128. "symfony/polyfill-mbstring": "~1.8"
  3129. },
  3130. "require-dev": {
  3131. "symfony/process": "^5.4|^6.4|^7.0"
  3132. },
  3133. "type": "library",
  3134. "autoload": {
  3135. "psr-4": {
  3136. "Symfony\\Component\\Filesystem\\": ""
  3137. },
  3138. "exclude-from-classmap": [
  3139. "/Tests/"
  3140. ]
  3141. },
  3142. "notification-url": "https://packagist.org/downloads/",
  3143. "license": [
  3144. "MIT"
  3145. ],
  3146. "authors": [
  3147. {
  3148. "name": "Fabien Potencier",
  3149. "email": "fabien@symfony.com"
  3150. },
  3151. {
  3152. "name": "Symfony Community",
  3153. "homepage": "https://symfony.com/contributors"
  3154. }
  3155. ],
  3156. "description": "Provides basic utilities for the filesystem",
  3157. "homepage": "https://symfony.com",
  3158. "support": {
  3159. "source": "https://github.com/symfony/filesystem/tree/v6.4.13"
  3160. },
  3161. "funding": [
  3162. {
  3163. "url": "https://symfony.com/sponsor",
  3164. "type": "custom"
  3165. },
  3166. {
  3167. "url": "https://github.com/fabpot",
  3168. "type": "github"
  3169. },
  3170. {
  3171. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3172. "type": "tidelift"
  3173. }
  3174. ],
  3175. "time": "2024-10-25T15:07:50+00:00"
  3176. },
  3177. {
  3178. "name": "symfony/finder",
  3179. "version": "v6.4.17",
  3180. "source": {
  3181. "type": "git",
  3182. "url": "https://github.com/symfony/finder.git",
  3183. "reference": "1d0e8266248c5d9ab6a87e3789e6dc482af3c9c7"
  3184. },
  3185. "dist": {
  3186. "type": "zip",
  3187. "url": "https://api.github.com/repos/symfony/finder/zipball/1d0e8266248c5d9ab6a87e3789e6dc482af3c9c7",
  3188. "reference": "1d0e8266248c5d9ab6a87e3789e6dc482af3c9c7",
  3189. "shasum": ""
  3190. },
  3191. "require": {
  3192. "php": ">=8.1"
  3193. },
  3194. "require-dev": {
  3195. "symfony/filesystem": "^6.0|^7.0"
  3196. },
  3197. "type": "library",
  3198. "autoload": {
  3199. "psr-4": {
  3200. "Symfony\\Component\\Finder\\": ""
  3201. },
  3202. "exclude-from-classmap": [
  3203. "/Tests/"
  3204. ]
  3205. },
  3206. "notification-url": "https://packagist.org/downloads/",
  3207. "license": [
  3208. "MIT"
  3209. ],
  3210. "authors": [
  3211. {
  3212. "name": "Fabien Potencier",
  3213. "email": "fabien@symfony.com"
  3214. },
  3215. {
  3216. "name": "Symfony Community",
  3217. "homepage": "https://symfony.com/contributors"
  3218. }
  3219. ],
  3220. "description": "Finds files and directories via an intuitive fluent interface",
  3221. "homepage": "https://symfony.com",
  3222. "support": {
  3223. "source": "https://github.com/symfony/finder/tree/v6.4.17"
  3224. },
  3225. "funding": [
  3226. {
  3227. "url": "https://symfony.com/sponsor",
  3228. "type": "custom"
  3229. },
  3230. {
  3231. "url": "https://github.com/fabpot",
  3232. "type": "github"
  3233. },
  3234. {
  3235. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3236. "type": "tidelift"
  3237. }
  3238. ],
  3239. "time": "2024-12-29T13:51:37+00:00"
  3240. },
  3241. {
  3242. "name": "symfony/flex",
  3243. "version": "v2.4.7",
  3244. "source": {
  3245. "type": "git",
  3246. "url": "https://github.com/symfony/flex.git",
  3247. "reference": "92f4fba342161ff36072bd3b8e0b3c6c23160402"
  3248. },
  3249. "dist": {
  3250. "type": "zip",
  3251. "url": "https://api.github.com/repos/symfony/flex/zipball/92f4fba342161ff36072bd3b8e0b3c6c23160402",
  3252. "reference": "92f4fba342161ff36072bd3b8e0b3c6c23160402",
  3253. "shasum": ""
  3254. },
  3255. "require": {
  3256. "composer-plugin-api": "^2.1",
  3257. "php": ">=8.0"
  3258. },
  3259. "conflict": {
  3260. "composer/semver": "<1.7.2"
  3261. },
  3262. "require-dev": {
  3263. "composer/composer": "^2.1",
  3264. "symfony/dotenv": "^5.4|^6.0",
  3265. "symfony/filesystem": "^5.4|^6.0",
  3266. "symfony/phpunit-bridge": "^5.4|^6.0",
  3267. "symfony/process": "^5.4|^6.0"
  3268. },
  3269. "type": "composer-plugin",
  3270. "extra": {
  3271. "class": "Symfony\\Flex\\Flex"
  3272. },
  3273. "autoload": {
  3274. "psr-4": {
  3275. "Symfony\\Flex\\": "src"
  3276. }
  3277. },
  3278. "notification-url": "https://packagist.org/downloads/",
  3279. "license": [
  3280. "MIT"
  3281. ],
  3282. "authors": [
  3283. {
  3284. "name": "Fabien Potencier",
  3285. "email": "fabien.potencier@gmail.com"
  3286. }
  3287. ],
  3288. "description": "Composer plugin for Symfony",
  3289. "support": {
  3290. "issues": "https://github.com/symfony/flex/issues",
  3291. "source": "https://github.com/symfony/flex/tree/v2.4.7"
  3292. },
  3293. "funding": [
  3294. {
  3295. "url": "https://symfony.com/sponsor",
  3296. "type": "custom"
  3297. },
  3298. {
  3299. "url": "https://github.com/fabpot",
  3300. "type": "github"
  3301. },
  3302. {
  3303. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3304. "type": "tidelift"
  3305. }
  3306. ],
  3307. "time": "2024-10-07T08:51:54+00:00"
  3308. },
  3309. {
  3310. "name": "symfony/form",
  3311. "version": "v6.4.13",
  3312. "source": {
  3313. "type": "git",
  3314. "url": "https://github.com/symfony/form.git",
  3315. "reference": "0fe17f90af23908ddc11dc23507db98e66572046"
  3316. },
  3317. "dist": {
  3318. "type": "zip",
  3319. "url": "https://api.github.com/repos/symfony/form/zipball/0fe17f90af23908ddc11dc23507db98e66572046",
  3320. "reference": "0fe17f90af23908ddc11dc23507db98e66572046",
  3321. "shasum": ""
  3322. },
  3323. "require": {
  3324. "php": ">=8.1",
  3325. "symfony/deprecation-contracts": "^2.5|^3",
  3326. "symfony/event-dispatcher": "^5.4|^6.0|^7.0",
  3327. "symfony/options-resolver": "^5.4|^6.0|^7.0",
  3328. "symfony/polyfill-ctype": "~1.8",
  3329. "symfony/polyfill-intl-icu": "^1.21",
  3330. "symfony/polyfill-mbstring": "~1.0",
  3331. "symfony/property-access": "^5.4|^6.0|^7.0",
  3332. "symfony/service-contracts": "^2.5|^3"
  3333. },
  3334. "conflict": {
  3335. "symfony/console": "<5.4",
  3336. "symfony/dependency-injection": "<5.4",
  3337. "symfony/doctrine-bridge": "<5.4.21|>=6,<6.2.7",
  3338. "symfony/error-handler": "<5.4",
  3339. "symfony/framework-bundle": "<5.4",
  3340. "symfony/http-kernel": "<5.4",
  3341. "symfony/translation": "<5.4.35|>=6.0,<6.3.12|>=6.4,<6.4.3|>=7.0,<7.0.3",
  3342. "symfony/translation-contracts": "<2.5",
  3343. "symfony/twig-bridge": "<6.3"
  3344. },
  3345. "require-dev": {
  3346. "doctrine/collections": "^1.0|^2.0",
  3347. "symfony/config": "^5.4|^6.0|^7.0",
  3348. "symfony/console": "^5.4|^6.0|^7.0",
  3349. "symfony/dependency-injection": "^5.4|^6.0|^7.0",
  3350. "symfony/expression-language": "^5.4|^6.0|^7.0",
  3351. "symfony/html-sanitizer": "^6.1|^7.0",
  3352. "symfony/http-foundation": "^5.4|^6.0|^7.0",
  3353. "symfony/http-kernel": "^5.4|^6.0|^7.0",
  3354. "symfony/intl": "^5.4|^6.0|^7.0",
  3355. "symfony/security-core": "^6.2|^7.0",
  3356. "symfony/security-csrf": "^5.4|^6.0|^7.0",
  3357. "symfony/translation": "^5.4.35|~6.3.12|^6.4.3|^7.0.3",
  3358. "symfony/uid": "^5.4|^6.0|^7.0",
  3359. "symfony/validator": "^5.4|^6.0|^7.0",
  3360. "symfony/var-dumper": "^5.4|^6.0|^7.0"
  3361. },
  3362. "type": "library",
  3363. "autoload": {
  3364. "psr-4": {
  3365. "Symfony\\Component\\Form\\": ""
  3366. },
  3367. "exclude-from-classmap": [
  3368. "/Tests/"
  3369. ]
  3370. },
  3371. "notification-url": "https://packagist.org/downloads/",
  3372. "license": [
  3373. "MIT"
  3374. ],
  3375. "authors": [
  3376. {
  3377. "name": "Fabien Potencier",
  3378. "email": "fabien@symfony.com"
  3379. },
  3380. {
  3381. "name": "Symfony Community",
  3382. "homepage": "https://symfony.com/contributors"
  3383. }
  3384. ],
  3385. "description": "Allows to easily create, process and reuse HTML forms",
  3386. "homepage": "https://symfony.com",
  3387. "support": {
  3388. "source": "https://github.com/symfony/form/tree/v6.4.13"
  3389. },
  3390. "funding": [
  3391. {
  3392. "url": "https://symfony.com/sponsor",
  3393. "type": "custom"
  3394. },
  3395. {
  3396. "url": "https://github.com/fabpot",
  3397. "type": "github"
  3398. },
  3399. {
  3400. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3401. "type": "tidelift"
  3402. }
  3403. ],
  3404. "time": "2024-10-09T08:40:40+00:00"
  3405. },
  3406. {
  3407. "name": "symfony/framework-bundle",
  3408. "version": "v6.4.17",
  3409. "source": {
  3410. "type": "git",
  3411. "url": "https://github.com/symfony/framework-bundle.git",
  3412. "reference": "17d8ae2e7aa77154f942e8ac48849ac718b0963f"
  3413. },
  3414. "dist": {
  3415. "type": "zip",
  3416. "url": "https://api.github.com/repos/symfony/framework-bundle/zipball/17d8ae2e7aa77154f942e8ac48849ac718b0963f",
  3417. "reference": "17d8ae2e7aa77154f942e8ac48849ac718b0963f",
  3418. "shasum": ""
  3419. },
  3420. "require": {
  3421. "composer-runtime-api": ">=2.1",
  3422. "ext-xml": "*",
  3423. "php": ">=8.1",
  3424. "symfony/cache": "^5.4|^6.0|^7.0",
  3425. "symfony/config": "^6.1|^7.0",
  3426. "symfony/dependency-injection": "^6.4.12|^7.0",
  3427. "symfony/deprecation-contracts": "^2.5|^3",
  3428. "symfony/error-handler": "^6.1|^7.0",
  3429. "symfony/event-dispatcher": "^5.4|^6.0|^7.0",
  3430. "symfony/filesystem": "^5.4|^6.0|^7.0",
  3431. "symfony/finder": "^5.4|^6.0|^7.0",
  3432. "symfony/http-foundation": "^6.4|^7.0",
  3433. "symfony/http-kernel": "^6.4",
  3434. "symfony/polyfill-mbstring": "~1.0",
  3435. "symfony/routing": "^6.4|^7.0"
  3436. },
  3437. "conflict": {
  3438. "doctrine/annotations": "<1.13.1",
  3439. "doctrine/persistence": "<1.3",
  3440. "phpdocumentor/reflection-docblock": "<3.2.2",
  3441. "phpdocumentor/type-resolver": "<1.4.0",
  3442. "symfony/asset": "<5.4",
  3443. "symfony/asset-mapper": "<6.4",
  3444. "symfony/clock": "<6.3",
  3445. "symfony/console": "<5.4|>=7.0",
  3446. "symfony/dom-crawler": "<6.4",
  3447. "symfony/dotenv": "<5.4",
  3448. "symfony/form": "<5.4",
  3449. "symfony/http-client": "<6.3",
  3450. "symfony/lock": "<5.4",
  3451. "symfony/mailer": "<5.4",
  3452. "symfony/messenger": "<6.3",
  3453. "symfony/mime": "<6.4",
  3454. "symfony/property-access": "<5.4",
  3455. "symfony/property-info": "<5.4",
  3456. "symfony/runtime": "<5.4.45|>=6.0,<6.4.13|>=7.0,<7.1.6",
  3457. "symfony/scheduler": "<6.4.4|>=7.0.0,<7.0.4",
  3458. "symfony/security-core": "<5.4",
  3459. "symfony/security-csrf": "<5.4",
  3460. "symfony/serializer": "<6.4",
  3461. "symfony/stopwatch": "<5.4",
  3462. "symfony/translation": "<6.4",
  3463. "symfony/twig-bridge": "<5.4",
  3464. "symfony/twig-bundle": "<5.4",
  3465. "symfony/validator": "<6.4",
  3466. "symfony/web-profiler-bundle": "<6.4",
  3467. "symfony/workflow": "<6.4"
  3468. },
  3469. "require-dev": {
  3470. "doctrine/annotations": "^1.13.1|^2",
  3471. "doctrine/persistence": "^1.3|^2|^3",
  3472. "dragonmantank/cron-expression": "^3.1",
  3473. "phpdocumentor/reflection-docblock": "^3.0|^4.0|^5.0",
  3474. "seld/jsonlint": "^1.10",
  3475. "symfony/asset": "^5.4|^6.0|^7.0",
  3476. "symfony/asset-mapper": "^6.4|^7.0",
  3477. "symfony/browser-kit": "^5.4|^6.0|^7.0",
  3478. "symfony/clock": "^6.2|^7.0",
  3479. "symfony/console": "^5.4.9|^6.0.9|^7.0",
  3480. "symfony/css-selector": "^5.4|^6.0|^7.0",
  3481. "symfony/dom-crawler": "^6.4|^7.0",
  3482. "symfony/dotenv": "^5.4|^6.0|^7.0",
  3483. "symfony/expression-language": "^5.4|^6.0|^7.0",
  3484. "symfony/form": "^5.4|^6.0|^7.0",
  3485. "symfony/html-sanitizer": "^6.1|^7.0",
  3486. "symfony/http-client": "^6.3|^7.0",
  3487. "symfony/lock": "^5.4|^6.0|^7.0",
  3488. "symfony/mailer": "^5.4|^6.0|^7.0",
  3489. "symfony/messenger": "^6.3|^7.0",
  3490. "symfony/mime": "^6.4|^7.0",
  3491. "symfony/notifier": "^5.4|^6.0|^7.0",
  3492. "symfony/polyfill-intl-icu": "~1.0",
  3493. "symfony/process": "^5.4|^6.0|^7.0",
  3494. "symfony/property-info": "^5.4|^6.0|^7.0",
  3495. "symfony/rate-limiter": "^5.4|^6.0|^7.0",
  3496. "symfony/scheduler": "^6.4.4|^7.0.4",
  3497. "symfony/security-bundle": "^5.4|^6.0|^7.0",
  3498. "symfony/semaphore": "^5.4|^6.0|^7.0",
  3499. "symfony/serializer": "^6.4|^7.0",
  3500. "symfony/stopwatch": "^5.4|^6.0|^7.0",
  3501. "symfony/string": "^5.4|^6.0|^7.0",
  3502. "symfony/translation": "^6.4|^7.0",
  3503. "symfony/twig-bundle": "^5.4|^6.0|^7.0",
  3504. "symfony/uid": "^5.4|^6.0|^7.0",
  3505. "symfony/validator": "^6.4|^7.0",
  3506. "symfony/web-link": "^5.4|^6.0|^7.0",
  3507. "symfony/workflow": "^6.4|^7.0",
  3508. "symfony/yaml": "^5.4|^6.0|^7.0",
  3509. "twig/twig": "^2.10|^3.0.4"
  3510. },
  3511. "type": "symfony-bundle",
  3512. "autoload": {
  3513. "psr-4": {
  3514. "Symfony\\Bundle\\FrameworkBundle\\": ""
  3515. },
  3516. "exclude-from-classmap": [
  3517. "/Tests/"
  3518. ]
  3519. },
  3520. "notification-url": "https://packagist.org/downloads/",
  3521. "license": [
  3522. "MIT"
  3523. ],
  3524. "authors": [
  3525. {
  3526. "name": "Fabien Potencier",
  3527. "email": "fabien@symfony.com"
  3528. },
  3529. {
  3530. "name": "Symfony Community",
  3531. "homepage": "https://symfony.com/contributors"
  3532. }
  3533. ],
  3534. "description": "Provides a tight integration between Symfony components and the Symfony full-stack framework",
  3535. "homepage": "https://symfony.com",
  3536. "support": {
  3537. "source": "https://github.com/symfony/framework-bundle/tree/v6.4.17"
  3538. },
  3539. "funding": [
  3540. {
  3541. "url": "https://symfony.com/sponsor",
  3542. "type": "custom"
  3543. },
  3544. {
  3545. "url": "https://github.com/fabpot",
  3546. "type": "github"
  3547. },
  3548. {
  3549. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3550. "type": "tidelift"
  3551. }
  3552. ],
  3553. "time": "2024-12-19T14:08:41+00:00"
  3554. },
  3555. {
  3556. "name": "symfony/http-client",
  3557. "version": "v6.4.17",
  3558. "source": {
  3559. "type": "git",
  3560. "url": "https://github.com/symfony/http-client.git",
  3561. "reference": "88898d842eb29d7e1a903724c94e90a6ca9c0509"
  3562. },
  3563. "dist": {
  3564. "type": "zip",
  3565. "url": "https://api.github.com/repos/symfony/http-client/zipball/88898d842eb29d7e1a903724c94e90a6ca9c0509",
  3566. "reference": "88898d842eb29d7e1a903724c94e90a6ca9c0509",
  3567. "shasum": ""
  3568. },
  3569. "require": {
  3570. "php": ">=8.1",
  3571. "psr/log": "^1|^2|^3",
  3572. "symfony/deprecation-contracts": "^2.5|^3",
  3573. "symfony/http-client-contracts": "~3.4.4|^3.5.2",
  3574. "symfony/service-contracts": "^2.5|^3"
  3575. },
  3576. "conflict": {
  3577. "php-http/discovery": "<1.15",
  3578. "symfony/http-foundation": "<6.3"
  3579. },
  3580. "provide": {
  3581. "php-http/async-client-implementation": "*",
  3582. "php-http/client-implementation": "*",
  3583. "psr/http-client-implementation": "1.0",
  3584. "symfony/http-client-implementation": "3.0"
  3585. },
  3586. "require-dev": {
  3587. "amphp/amp": "^2.5",
  3588. "amphp/http-client": "^4.2.1",
  3589. "amphp/http-tunnel": "^1.0",
  3590. "amphp/socket": "^1.1",
  3591. "guzzlehttp/promises": "^1.4|^2.0",
  3592. "nyholm/psr7": "^1.0",
  3593. "php-http/httplug": "^1.0|^2.0",
  3594. "psr/http-client": "^1.0",
  3595. "symfony/dependency-injection": "^5.4|^6.0|^7.0",
  3596. "symfony/http-kernel": "^5.4|^6.0|^7.0",
  3597. "symfony/messenger": "^5.4|^6.0|^7.0",
  3598. "symfony/process": "^5.4|^6.0|^7.0",
  3599. "symfony/stopwatch": "^5.4|^6.0|^7.0"
  3600. },
  3601. "type": "library",
  3602. "autoload": {
  3603. "psr-4": {
  3604. "Symfony\\Component\\HttpClient\\": ""
  3605. },
  3606. "exclude-from-classmap": [
  3607. "/Tests/"
  3608. ]
  3609. },
  3610. "notification-url": "https://packagist.org/downloads/",
  3611. "license": [
  3612. "MIT"
  3613. ],
  3614. "authors": [
  3615. {
  3616. "name": "Nicolas Grekas",
  3617. "email": "p@tchwork.com"
  3618. },
  3619. {
  3620. "name": "Symfony Community",
  3621. "homepage": "https://symfony.com/contributors"
  3622. }
  3623. ],
  3624. "description": "Provides powerful methods to fetch HTTP resources synchronously or asynchronously",
  3625. "homepage": "https://symfony.com",
  3626. "keywords": [
  3627. "http"
  3628. ],
  3629. "support": {
  3630. "source": "https://github.com/symfony/http-client/tree/v6.4.17"
  3631. },
  3632. "funding": [
  3633. {
  3634. "url": "https://symfony.com/sponsor",
  3635. "type": "custom"
  3636. },
  3637. {
  3638. "url": "https://github.com/fabpot",
  3639. "type": "github"
  3640. },
  3641. {
  3642. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3643. "type": "tidelift"
  3644. }
  3645. ],
  3646. "time": "2024-12-18T12:18:31+00:00"
  3647. },
  3648. {
  3649. "name": "symfony/http-client-contracts",
  3650. "version": "v3.5.2",
  3651. "source": {
  3652. "type": "git",
  3653. "url": "https://github.com/symfony/http-client-contracts.git",
  3654. "reference": "ee8d807ab20fcb51267fdace50fbe3494c31e645"
  3655. },
  3656. "dist": {
  3657. "type": "zip",
  3658. "url": "https://api.github.com/repos/symfony/http-client-contracts/zipball/ee8d807ab20fcb51267fdace50fbe3494c31e645",
  3659. "reference": "ee8d807ab20fcb51267fdace50fbe3494c31e645",
  3660. "shasum": ""
  3661. },
  3662. "require": {
  3663. "php": ">=8.1"
  3664. },
  3665. "type": "library",
  3666. "extra": {
  3667. "thanks": {
  3668. "url": "https://github.com/symfony/contracts",
  3669. "name": "symfony/contracts"
  3670. },
  3671. "branch-alias": {
  3672. "dev-main": "3.5-dev"
  3673. }
  3674. },
  3675. "autoload": {
  3676. "psr-4": {
  3677. "Symfony\\Contracts\\HttpClient\\": ""
  3678. },
  3679. "exclude-from-classmap": [
  3680. "/Test/"
  3681. ]
  3682. },
  3683. "notification-url": "https://packagist.org/downloads/",
  3684. "license": [
  3685. "MIT"
  3686. ],
  3687. "authors": [
  3688. {
  3689. "name": "Nicolas Grekas",
  3690. "email": "p@tchwork.com"
  3691. },
  3692. {
  3693. "name": "Symfony Community",
  3694. "homepage": "https://symfony.com/contributors"
  3695. }
  3696. ],
  3697. "description": "Generic abstractions related to HTTP clients",
  3698. "homepage": "https://symfony.com",
  3699. "keywords": [
  3700. "abstractions",
  3701. "contracts",
  3702. "decoupling",
  3703. "interfaces",
  3704. "interoperability",
  3705. "standards"
  3706. ],
  3707. "support": {
  3708. "source": "https://github.com/symfony/http-client-contracts/tree/v3.5.2"
  3709. },
  3710. "funding": [
  3711. {
  3712. "url": "https://symfony.com/sponsor",
  3713. "type": "custom"
  3714. },
  3715. {
  3716. "url": "https://github.com/fabpot",
  3717. "type": "github"
  3718. },
  3719. {
  3720. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3721. "type": "tidelift"
  3722. }
  3723. ],
  3724. "time": "2024-12-07T08:49:48+00:00"
  3725. },
  3726. {
  3727. "name": "symfony/http-foundation",
  3728. "version": "v6.4.16",
  3729. "source": {
  3730. "type": "git",
  3731. "url": "https://github.com/symfony/http-foundation.git",
  3732. "reference": "431771b7a6f662f1575b3cfc8fd7617aa9864d57"
  3733. },
  3734. "dist": {
  3735. "type": "zip",
  3736. "url": "https://api.github.com/repos/symfony/http-foundation/zipball/431771b7a6f662f1575b3cfc8fd7617aa9864d57",
  3737. "reference": "431771b7a6f662f1575b3cfc8fd7617aa9864d57",
  3738. "shasum": ""
  3739. },
  3740. "require": {
  3741. "php": ">=8.1",
  3742. "symfony/deprecation-contracts": "^2.5|^3",
  3743. "symfony/polyfill-mbstring": "~1.1",
  3744. "symfony/polyfill-php83": "^1.27"
  3745. },
  3746. "conflict": {
  3747. "symfony/cache": "<6.4.12|>=7.0,<7.1.5"
  3748. },
  3749. "require-dev": {
  3750. "doctrine/dbal": "^2.13.1|^3|^4",
  3751. "predis/predis": "^1.1|^2.0",
  3752. "symfony/cache": "^6.4.12|^7.1.5",
  3753. "symfony/dependency-injection": "^5.4|^6.0|^7.0",
  3754. "symfony/expression-language": "^5.4|^6.0|^7.0",
  3755. "symfony/http-kernel": "^5.4.12|^6.0.12|^6.1.4|^7.0",
  3756. "symfony/mime": "^5.4|^6.0|^7.0",
  3757. "symfony/rate-limiter": "^5.4|^6.0|^7.0"
  3758. },
  3759. "type": "library",
  3760. "autoload": {
  3761. "psr-4": {
  3762. "Symfony\\Component\\HttpFoundation\\": ""
  3763. },
  3764. "exclude-from-classmap": [
  3765. "/Tests/"
  3766. ]
  3767. },
  3768. "notification-url": "https://packagist.org/downloads/",
  3769. "license": [
  3770. "MIT"
  3771. ],
  3772. "authors": [
  3773. {
  3774. "name": "Fabien Potencier",
  3775. "email": "fabien@symfony.com"
  3776. },
  3777. {
  3778. "name": "Symfony Community",
  3779. "homepage": "https://symfony.com/contributors"
  3780. }
  3781. ],
  3782. "description": "Defines an object-oriented layer for the HTTP specification",
  3783. "homepage": "https://symfony.com",
  3784. "support": {
  3785. "source": "https://github.com/symfony/http-foundation/tree/v6.4.16"
  3786. },
  3787. "funding": [
  3788. {
  3789. "url": "https://symfony.com/sponsor",
  3790. "type": "custom"
  3791. },
  3792. {
  3793. "url": "https://github.com/fabpot",
  3794. "type": "github"
  3795. },
  3796. {
  3797. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3798. "type": "tidelift"
  3799. }
  3800. ],
  3801. "time": "2024-11-13T18:58:10+00:00"
  3802. },
  3803. {
  3804. "name": "symfony/http-kernel",
  3805. "version": "v6.4.17",
  3806. "source": {
  3807. "type": "git",
  3808. "url": "https://github.com/symfony/http-kernel.git",
  3809. "reference": "c5647393c5ce11833d13e4b70fff4b571d4ac710"
  3810. },
  3811. "dist": {
  3812. "type": "zip",
  3813. "url": "https://api.github.com/repos/symfony/http-kernel/zipball/c5647393c5ce11833d13e4b70fff4b571d4ac710",
  3814. "reference": "c5647393c5ce11833d13e4b70fff4b571d4ac710",
  3815. "shasum": ""
  3816. },
  3817. "require": {
  3818. "php": ">=8.1",
  3819. "psr/log": "^1|^2|^3",
  3820. "symfony/deprecation-contracts": "^2.5|^3",
  3821. "symfony/error-handler": "^6.4|^7.0",
  3822. "symfony/event-dispatcher": "^5.4|^6.0|^7.0",
  3823. "symfony/http-foundation": "^6.4|^7.0",
  3824. "symfony/polyfill-ctype": "^1.8"
  3825. },
  3826. "conflict": {
  3827. "symfony/browser-kit": "<5.4",
  3828. "symfony/cache": "<5.4",
  3829. "symfony/config": "<6.1",
  3830. "symfony/console": "<5.4",
  3831. "symfony/dependency-injection": "<6.4",
  3832. "symfony/doctrine-bridge": "<5.4",
  3833. "symfony/form": "<5.4",
  3834. "symfony/http-client": "<5.4",
  3835. "symfony/http-client-contracts": "<2.5",
  3836. "symfony/mailer": "<5.4",
  3837. "symfony/messenger": "<5.4",
  3838. "symfony/translation": "<5.4",
  3839. "symfony/translation-contracts": "<2.5",
  3840. "symfony/twig-bridge": "<5.4",
  3841. "symfony/validator": "<6.4",
  3842. "symfony/var-dumper": "<6.3",
  3843. "twig/twig": "<2.13"
  3844. },
  3845. "provide": {
  3846. "psr/log-implementation": "1.0|2.0|3.0"
  3847. },
  3848. "require-dev": {
  3849. "psr/cache": "^1.0|^2.0|^3.0",
  3850. "symfony/browser-kit": "^5.4|^6.0|^7.0",
  3851. "symfony/clock": "^6.2|^7.0",
  3852. "symfony/config": "^6.1|^7.0",
  3853. "symfony/console": "^5.4|^6.0|^7.0",
  3854. "symfony/css-selector": "^5.4|^6.0|^7.0",
  3855. "symfony/dependency-injection": "^6.4|^7.0",
  3856. "symfony/dom-crawler": "^5.4|^6.0|^7.0",
  3857. "symfony/expression-language": "^5.4|^6.0|^7.0",
  3858. "symfony/finder": "^5.4|^6.0|^7.0",
  3859. "symfony/http-client-contracts": "^2.5|^3",
  3860. "symfony/process": "^5.4|^6.0|^7.0",
  3861. "symfony/property-access": "^5.4.5|^6.0.5|^7.0",
  3862. "symfony/routing": "^5.4|^6.0|^7.0",
  3863. "symfony/serializer": "^6.4.4|^7.0.4",
  3864. "symfony/stopwatch": "^5.4|^6.0|^7.0",
  3865. "symfony/translation": "^5.4|^6.0|^7.0",
  3866. "symfony/translation-contracts": "^2.5|^3",
  3867. "symfony/uid": "^5.4|^6.0|^7.0",
  3868. "symfony/validator": "^6.4|^7.0",
  3869. "symfony/var-dumper": "^5.4|^6.4|^7.0",
  3870. "symfony/var-exporter": "^6.2|^7.0",
  3871. "twig/twig": "^2.13|^3.0.4"
  3872. },
  3873. "type": "library",
  3874. "autoload": {
  3875. "psr-4": {
  3876. "Symfony\\Component\\HttpKernel\\": ""
  3877. },
  3878. "exclude-from-classmap": [
  3879. "/Tests/"
  3880. ]
  3881. },
  3882. "notification-url": "https://packagist.org/downloads/",
  3883. "license": [
  3884. "MIT"
  3885. ],
  3886. "authors": [
  3887. {
  3888. "name": "Fabien Potencier",
  3889. "email": "fabien@symfony.com"
  3890. },
  3891. {
  3892. "name": "Symfony Community",
  3893. "homepage": "https://symfony.com/contributors"
  3894. }
  3895. ],
  3896. "description": "Provides a structured process for converting a Request into a Response",
  3897. "homepage": "https://symfony.com",
  3898. "support": {
  3899. "source": "https://github.com/symfony/http-kernel/tree/v6.4.17"
  3900. },
  3901. "funding": [
  3902. {
  3903. "url": "https://symfony.com/sponsor",
  3904. "type": "custom"
  3905. },
  3906. {
  3907. "url": "https://github.com/fabpot",
  3908. "type": "github"
  3909. },
  3910. {
  3911. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3912. "type": "tidelift"
  3913. }
  3914. ],
  3915. "time": "2024-12-31T14:49:31+00:00"
  3916. },
  3917. {
  3918. "name": "symfony/intl",
  3919. "version": "v6.4.15",
  3920. "source": {
  3921. "type": "git",
  3922. "url": "https://github.com/symfony/intl.git",
  3923. "reference": "b1d5e8d82615b60f229216edfee0b59e2ef66da6"
  3924. },
  3925. "dist": {
  3926. "type": "zip",
  3927. "url": "https://api.github.com/repos/symfony/intl/zipball/b1d5e8d82615b60f229216edfee0b59e2ef66da6",
  3928. "reference": "b1d5e8d82615b60f229216edfee0b59e2ef66da6",
  3929. "shasum": ""
  3930. },
  3931. "require": {
  3932. "php": ">=8.1"
  3933. },
  3934. "require-dev": {
  3935. "symfony/filesystem": "^5.4|^6.0|^7.0",
  3936. "symfony/finder": "^5.4|^6.0|^7.0",
  3937. "symfony/var-exporter": "^5.4|^6.0|^7.0"
  3938. },
  3939. "type": "library",
  3940. "autoload": {
  3941. "psr-4": {
  3942. "Symfony\\Component\\Intl\\": ""
  3943. },
  3944. "exclude-from-classmap": [
  3945. "/Tests/",
  3946. "/Resources/data/"
  3947. ]
  3948. },
  3949. "notification-url": "https://packagist.org/downloads/",
  3950. "license": [
  3951. "MIT"
  3952. ],
  3953. "authors": [
  3954. {
  3955. "name": "Bernhard Schussek",
  3956. "email": "bschussek@gmail.com"
  3957. },
  3958. {
  3959. "name": "Eriksen Costa",
  3960. "email": "eriksen.costa@infranology.com.br"
  3961. },
  3962. {
  3963. "name": "Igor Wiedler",
  3964. "email": "igor@wiedler.ch"
  3965. },
  3966. {
  3967. "name": "Symfony Community",
  3968. "homepage": "https://symfony.com/contributors"
  3969. }
  3970. ],
  3971. "description": "Provides access to the localization data of the ICU library",
  3972. "homepage": "https://symfony.com",
  3973. "keywords": [
  3974. "i18n",
  3975. "icu",
  3976. "internationalization",
  3977. "intl",
  3978. "l10n",
  3979. "localization"
  3980. ],
  3981. "support": {
  3982. "source": "https://github.com/symfony/intl/tree/v6.4.15"
  3983. },
  3984. "funding": [
  3985. {
  3986. "url": "https://symfony.com/sponsor",
  3987. "type": "custom"
  3988. },
  3989. {
  3990. "url": "https://github.com/fabpot",
  3991. "type": "github"
  3992. },
  3993. {
  3994. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3995. "type": "tidelift"
  3996. }
  3997. ],
  3998. "time": "2024-11-08T15:28:48+00:00"
  3999. },
  4000. {
  4001. "name": "symfony/mailer",
  4002. "version": "v6.4.13",
  4003. "source": {
  4004. "type": "git",
  4005. "url": "https://github.com/symfony/mailer.git",
  4006. "reference": "c2f7e0d8d7ac8fe25faccf5d8cac462805db2663"
  4007. },
  4008. "dist": {
  4009. "type": "zip",
  4010. "url": "https://api.github.com/repos/symfony/mailer/zipball/c2f7e0d8d7ac8fe25faccf5d8cac462805db2663",
  4011. "reference": "c2f7e0d8d7ac8fe25faccf5d8cac462805db2663",
  4012. "shasum": ""
  4013. },
  4014. "require": {
  4015. "egulias/email-validator": "^2.1.10|^3|^4",
  4016. "php": ">=8.1",
  4017. "psr/event-dispatcher": "^1",
  4018. "psr/log": "^1|^2|^3",
  4019. "symfony/event-dispatcher": "^5.4|^6.0|^7.0",
  4020. "symfony/mime": "^6.2|^7.0",
  4021. "symfony/service-contracts": "^2.5|^3"
  4022. },
  4023. "conflict": {
  4024. "symfony/http-client-contracts": "<2.5",
  4025. "symfony/http-kernel": "<5.4",
  4026. "symfony/messenger": "<6.2",
  4027. "symfony/mime": "<6.2",
  4028. "symfony/twig-bridge": "<6.2.1"
  4029. },
  4030. "require-dev": {
  4031. "symfony/console": "^5.4|^6.0|^7.0",
  4032. "symfony/http-client": "^5.4|^6.0|^7.0",
  4033. "symfony/messenger": "^6.2|^7.0",
  4034. "symfony/twig-bridge": "^6.2|^7.0"
  4035. },
  4036. "type": "library",
  4037. "autoload": {
  4038. "psr-4": {
  4039. "Symfony\\Component\\Mailer\\": ""
  4040. },
  4041. "exclude-from-classmap": [
  4042. "/Tests/"
  4043. ]
  4044. },
  4045. "notification-url": "https://packagist.org/downloads/",
  4046. "license": [
  4047. "MIT"
  4048. ],
  4049. "authors": [
  4050. {
  4051. "name": "Fabien Potencier",
  4052. "email": "fabien@symfony.com"
  4053. },
  4054. {
  4055. "name": "Symfony Community",
  4056. "homepage": "https://symfony.com/contributors"
  4057. }
  4058. ],
  4059. "description": "Helps sending emails",
  4060. "homepage": "https://symfony.com",
  4061. "support": {
  4062. "source": "https://github.com/symfony/mailer/tree/v6.4.13"
  4063. },
  4064. "funding": [
  4065. {
  4066. "url": "https://symfony.com/sponsor",
  4067. "type": "custom"
  4068. },
  4069. {
  4070. "url": "https://github.com/fabpot",
  4071. "type": "github"
  4072. },
  4073. {
  4074. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4075. "type": "tidelift"
  4076. }
  4077. ],
  4078. "time": "2024-09-25T14:18:03+00:00"
  4079. },
  4080. {
  4081. "name": "symfony/messenger",
  4082. "version": "v6.4.16",
  4083. "source": {
  4084. "type": "git",
  4085. "url": "https://github.com/symfony/messenger.git",
  4086. "reference": "b20092876c3d23c172a6469f9c0d7ef1de445257"
  4087. },
  4088. "dist": {
  4089. "type": "zip",
  4090. "url": "https://api.github.com/repos/symfony/messenger/zipball/b20092876c3d23c172a6469f9c0d7ef1de445257",
  4091. "reference": "b20092876c3d23c172a6469f9c0d7ef1de445257",
  4092. "shasum": ""
  4093. },
  4094. "require": {
  4095. "php": ">=8.1",
  4096. "psr/log": "^1|^2|^3",
  4097. "symfony/clock": "^6.3|^7.0",
  4098. "symfony/deprecation-contracts": "^2.5|^3"
  4099. },
  4100. "conflict": {
  4101. "symfony/console": "<6.3",
  4102. "symfony/event-dispatcher": "<5.4",
  4103. "symfony/event-dispatcher-contracts": "<2.5",
  4104. "symfony/framework-bundle": "<5.4",
  4105. "symfony/http-kernel": "<5.4",
  4106. "symfony/serializer": "<5.4"
  4107. },
  4108. "require-dev": {
  4109. "psr/cache": "^1.0|^2.0|^3.0",
  4110. "symfony/console": "^6.3|^7.0",
  4111. "symfony/dependency-injection": "^5.4|^6.0|^7.0",
  4112. "symfony/event-dispatcher": "^5.4|^6.0|^7.0",
  4113. "symfony/http-kernel": "^5.4|^6.0|^7.0",
  4114. "symfony/process": "^5.4|^6.0|^7.0",
  4115. "symfony/property-access": "^5.4|^6.0|^7.0",
  4116. "symfony/rate-limiter": "^5.4|^6.0|^7.0",
  4117. "symfony/routing": "^5.4|^6.0|^7.0",
  4118. "symfony/serializer": "^5.4|^6.0|^7.0",
  4119. "symfony/service-contracts": "^2.5|^3",
  4120. "symfony/stopwatch": "^5.4|^6.0|^7.0",
  4121. "symfony/validator": "^5.4|^6.0|^7.0"
  4122. },
  4123. "type": "library",
  4124. "autoload": {
  4125. "psr-4": {
  4126. "Symfony\\Component\\Messenger\\": ""
  4127. },
  4128. "exclude-from-classmap": [
  4129. "/Tests/"
  4130. ]
  4131. },
  4132. "notification-url": "https://packagist.org/downloads/",
  4133. "license": [
  4134. "MIT"
  4135. ],
  4136. "authors": [
  4137. {
  4138. "name": "Samuel Roze",
  4139. "email": "samuel.roze@gmail.com"
  4140. },
  4141. {
  4142. "name": "Symfony Community",
  4143. "homepage": "https://symfony.com/contributors"
  4144. }
  4145. ],
  4146. "description": "Helps applications send and receive messages to/from other applications or via message queues",
  4147. "homepage": "https://symfony.com",
  4148. "support": {
  4149. "source": "https://github.com/symfony/messenger/tree/v6.4.16"
  4150. },
  4151. "funding": [
  4152. {
  4153. "url": "https://symfony.com/sponsor",
  4154. "type": "custom"
  4155. },
  4156. {
  4157. "url": "https://github.com/fabpot",
  4158. "type": "github"
  4159. },
  4160. {
  4161. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4162. "type": "tidelift"
  4163. }
  4164. ],
  4165. "time": "2024-11-25T02:02:03+00:00"
  4166. },
  4167. {
  4168. "name": "symfony/mime",
  4169. "version": "v6.4.17",
  4170. "source": {
  4171. "type": "git",
  4172. "url": "https://github.com/symfony/mime.git",
  4173. "reference": "ea87c8850a54ff039d3e0ab4ae5586dd4e6c0232"
  4174. },
  4175. "dist": {
  4176. "type": "zip",
  4177. "url": "https://api.github.com/repos/symfony/mime/zipball/ea87c8850a54ff039d3e0ab4ae5586dd4e6c0232",
  4178. "reference": "ea87c8850a54ff039d3e0ab4ae5586dd4e6c0232",
  4179. "shasum": ""
  4180. },
  4181. "require": {
  4182. "php": ">=8.1",
  4183. "symfony/deprecation-contracts": "^2.5|^3",
  4184. "symfony/polyfill-intl-idn": "^1.10",
  4185. "symfony/polyfill-mbstring": "^1.0"
  4186. },
  4187. "conflict": {
  4188. "egulias/email-validator": "~3.0.0",
  4189. "phpdocumentor/reflection-docblock": "<3.2.2",
  4190. "phpdocumentor/type-resolver": "<1.4.0",
  4191. "symfony/mailer": "<5.4",
  4192. "symfony/serializer": "<6.4.3|>7.0,<7.0.3"
  4193. },
  4194. "require-dev": {
  4195. "egulias/email-validator": "^2.1.10|^3.1|^4",
  4196. "league/html-to-markdown": "^5.0",
  4197. "phpdocumentor/reflection-docblock": "^3.0|^4.0|^5.0",
  4198. "symfony/dependency-injection": "^5.4|^6.0|^7.0",
  4199. "symfony/process": "^5.4|^6.4|^7.0",
  4200. "symfony/property-access": "^5.4|^6.0|^7.0",
  4201. "symfony/property-info": "^5.4|^6.0|^7.0",
  4202. "symfony/serializer": "^6.4.3|^7.0.3"
  4203. },
  4204. "type": "library",
  4205. "autoload": {
  4206. "psr-4": {
  4207. "Symfony\\Component\\Mime\\": ""
  4208. },
  4209. "exclude-from-classmap": [
  4210. "/Tests/"
  4211. ]
  4212. },
  4213. "notification-url": "https://packagist.org/downloads/",
  4214. "license": [
  4215. "MIT"
  4216. ],
  4217. "authors": [
  4218. {
  4219. "name": "Fabien Potencier",
  4220. "email": "fabien@symfony.com"
  4221. },
  4222. {
  4223. "name": "Symfony Community",
  4224. "homepage": "https://symfony.com/contributors"
  4225. }
  4226. ],
  4227. "description": "Allows manipulating MIME messages",
  4228. "homepage": "https://symfony.com",
  4229. "keywords": [
  4230. "mime",
  4231. "mime-type"
  4232. ],
  4233. "support": {
  4234. "source": "https://github.com/symfony/mime/tree/v6.4.17"
  4235. },
  4236. "funding": [
  4237. {
  4238. "url": "https://symfony.com/sponsor",
  4239. "type": "custom"
  4240. },
  4241. {
  4242. "url": "https://github.com/fabpot",
  4243. "type": "github"
  4244. },
  4245. {
  4246. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4247. "type": "tidelift"
  4248. }
  4249. ],
  4250. "time": "2024-12-02T11:09:41+00:00"
  4251. },
  4252. {
  4253. "name": "symfony/monolog-bridge",
  4254. "version": "v6.4.13",
  4255. "source": {
  4256. "type": "git",
  4257. "url": "https://github.com/symfony/monolog-bridge.git",
  4258. "reference": "9d14621e59f22c2b6d030d92d37ffe5ae1e60452"
  4259. },
  4260. "dist": {
  4261. "type": "zip",
  4262. "url": "https://api.github.com/repos/symfony/monolog-bridge/zipball/9d14621e59f22c2b6d030d92d37ffe5ae1e60452",
  4263. "reference": "9d14621e59f22c2b6d030d92d37ffe5ae1e60452",
  4264. "shasum": ""
  4265. },
  4266. "require": {
  4267. "monolog/monolog": "^1.25.1|^2|^3",
  4268. "php": ">=8.1",
  4269. "symfony/deprecation-contracts": "^2.5|^3",
  4270. "symfony/http-kernel": "^5.4|^6.0|^7.0",
  4271. "symfony/service-contracts": "^2.5|^3"
  4272. },
  4273. "conflict": {
  4274. "symfony/console": "<5.4",
  4275. "symfony/http-foundation": "<5.4",
  4276. "symfony/security-core": "<5.4"
  4277. },
  4278. "require-dev": {
  4279. "symfony/console": "^5.4|^6.0|^7.0",
  4280. "symfony/http-client": "^5.4|^6.0|^7.0",
  4281. "symfony/mailer": "^5.4|^6.0|^7.0",
  4282. "symfony/messenger": "^5.4|^6.0|^7.0",
  4283. "symfony/mime": "^5.4|^6.0|^7.0",
  4284. "symfony/security-core": "^5.4|^6.0|^7.0",
  4285. "symfony/var-dumper": "^5.4|^6.0|^7.0"
  4286. },
  4287. "type": "symfony-bridge",
  4288. "autoload": {
  4289. "psr-4": {
  4290. "Symfony\\Bridge\\Monolog\\": ""
  4291. },
  4292. "exclude-from-classmap": [
  4293. "/Tests/"
  4294. ]
  4295. },
  4296. "notification-url": "https://packagist.org/downloads/",
  4297. "license": [
  4298. "MIT"
  4299. ],
  4300. "authors": [
  4301. {
  4302. "name": "Fabien Potencier",
  4303. "email": "fabien@symfony.com"
  4304. },
  4305. {
  4306. "name": "Symfony Community",
  4307. "homepage": "https://symfony.com/contributors"
  4308. }
  4309. ],
  4310. "description": "Provides integration for Monolog with various Symfony components",
  4311. "homepage": "https://symfony.com",
  4312. "support": {
  4313. "source": "https://github.com/symfony/monolog-bridge/tree/v6.4.13"
  4314. },
  4315. "funding": [
  4316. {
  4317. "url": "https://symfony.com/sponsor",
  4318. "type": "custom"
  4319. },
  4320. {
  4321. "url": "https://github.com/fabpot",
  4322. "type": "github"
  4323. },
  4324. {
  4325. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4326. "type": "tidelift"
  4327. }
  4328. ],
  4329. "time": "2024-10-14T08:49:08+00:00"
  4330. },
  4331. {
  4332. "name": "symfony/monolog-bundle",
  4333. "version": "v3.10.0",
  4334. "source": {
  4335. "type": "git",
  4336. "url": "https://github.com/symfony/monolog-bundle.git",
  4337. "reference": "414f951743f4aa1fd0f5bf6a0e9c16af3fe7f181"
  4338. },
  4339. "dist": {
  4340. "type": "zip",
  4341. "url": "https://api.github.com/repos/symfony/monolog-bundle/zipball/414f951743f4aa1fd0f5bf6a0e9c16af3fe7f181",
  4342. "reference": "414f951743f4aa1fd0f5bf6a0e9c16af3fe7f181",
  4343. "shasum": ""
  4344. },
  4345. "require": {
  4346. "monolog/monolog": "^1.25.1 || ^2.0 || ^3.0",
  4347. "php": ">=7.2.5",
  4348. "symfony/config": "^5.4 || ^6.0 || ^7.0",
  4349. "symfony/dependency-injection": "^5.4 || ^6.0 || ^7.0",
  4350. "symfony/http-kernel": "^5.4 || ^6.0 || ^7.0",
  4351. "symfony/monolog-bridge": "^5.4 || ^6.0 || ^7.0"
  4352. },
  4353. "require-dev": {
  4354. "symfony/console": "^5.4 || ^6.0 || ^7.0",
  4355. "symfony/phpunit-bridge": "^6.3 || ^7.0",
  4356. "symfony/yaml": "^5.4 || ^6.0 || ^7.0"
  4357. },
  4358. "type": "symfony-bundle",
  4359. "extra": {
  4360. "branch-alias": {
  4361. "dev-master": "3.x-dev"
  4362. }
  4363. },
  4364. "autoload": {
  4365. "psr-4": {
  4366. "Symfony\\Bundle\\MonologBundle\\": ""
  4367. },
  4368. "exclude-from-classmap": [
  4369. "/Tests/"
  4370. ]
  4371. },
  4372. "notification-url": "https://packagist.org/downloads/",
  4373. "license": [
  4374. "MIT"
  4375. ],
  4376. "authors": [
  4377. {
  4378. "name": "Fabien Potencier",
  4379. "email": "fabien@symfony.com"
  4380. },
  4381. {
  4382. "name": "Symfony Community",
  4383. "homepage": "https://symfony.com/contributors"
  4384. }
  4385. ],
  4386. "description": "Symfony MonologBundle",
  4387. "homepage": "https://symfony.com",
  4388. "keywords": [
  4389. "log",
  4390. "logging"
  4391. ],
  4392. "support": {
  4393. "issues": "https://github.com/symfony/monolog-bundle/issues",
  4394. "source": "https://github.com/symfony/monolog-bundle/tree/v3.10.0"
  4395. },
  4396. "funding": [
  4397. {
  4398. "url": "https://symfony.com/sponsor",
  4399. "type": "custom"
  4400. },
  4401. {
  4402. "url": "https://github.com/fabpot",
  4403. "type": "github"
  4404. },
  4405. {
  4406. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4407. "type": "tidelift"
  4408. }
  4409. ],
  4410. "time": "2023-11-06T17:08:13+00:00"
  4411. },
  4412. {
  4413. "name": "symfony/notifier",
  4414. "version": "v6.4.13",
  4415. "source": {
  4416. "type": "git",
  4417. "url": "https://github.com/symfony/notifier.git",
  4418. "reference": "c46321b53391088861bf627cd9e24873d216cf00"
  4419. },
  4420. "dist": {
  4421. "type": "zip",
  4422. "url": "https://api.github.com/repos/symfony/notifier/zipball/c46321b53391088861bf627cd9e24873d216cf00",
  4423. "reference": "c46321b53391088861bf627cd9e24873d216cf00",
  4424. "shasum": ""
  4425. },
  4426. "require": {
  4427. "php": ">=8.1",
  4428. "psr/log": "^1|^2|^3"
  4429. },
  4430. "conflict": {
  4431. "symfony/event-dispatcher": "<5.4",
  4432. "symfony/event-dispatcher-contracts": "<2.5",
  4433. "symfony/http-client-contracts": "<2.5",
  4434. "symfony/http-kernel": "<5.4"
  4435. },
  4436. "require-dev": {
  4437. "symfony/event-dispatcher-contracts": "^2.5|^3",
  4438. "symfony/http-client-contracts": "^2.5|^3",
  4439. "symfony/http-foundation": "^5.4|^6.0|^7.0",
  4440. "symfony/messenger": "^5.4|^6.0|^7.0"
  4441. },
  4442. "type": "library",
  4443. "autoload": {
  4444. "psr-4": {
  4445. "Symfony\\Component\\Notifier\\": ""
  4446. },
  4447. "exclude-from-classmap": [
  4448. "/Tests/"
  4449. ]
  4450. },
  4451. "notification-url": "https://packagist.org/downloads/",
  4452. "license": [
  4453. "MIT"
  4454. ],
  4455. "authors": [
  4456. {
  4457. "name": "Fabien Potencier",
  4458. "email": "fabien@symfony.com"
  4459. },
  4460. {
  4461. "name": "Symfony Community",
  4462. "homepage": "https://symfony.com/contributors"
  4463. }
  4464. ],
  4465. "description": "Sends notifications via one or more channels (email, SMS, ...)",
  4466. "homepage": "https://symfony.com",
  4467. "keywords": [
  4468. "notification",
  4469. "notifier"
  4470. ],
  4471. "support": {
  4472. "source": "https://github.com/symfony/notifier/tree/v6.4.13"
  4473. },
  4474. "funding": [
  4475. {
  4476. "url": "https://symfony.com/sponsor",
  4477. "type": "custom"
  4478. },
  4479. {
  4480. "url": "https://github.com/fabpot",
  4481. "type": "github"
  4482. },
  4483. {
  4484. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4485. "type": "tidelift"
  4486. }
  4487. ],
  4488. "time": "2024-09-25T14:18:03+00:00"
  4489. },
  4490. {
  4491. "name": "symfony/options-resolver",
  4492. "version": "v6.4.16",
  4493. "source": {
  4494. "type": "git",
  4495. "url": "https://github.com/symfony/options-resolver.git",
  4496. "reference": "368128ad168f20e22c32159b9f761e456cec0c78"
  4497. },
  4498. "dist": {
  4499. "type": "zip",
  4500. "url": "https://api.github.com/repos/symfony/options-resolver/zipball/368128ad168f20e22c32159b9f761e456cec0c78",
  4501. "reference": "368128ad168f20e22c32159b9f761e456cec0c78",
  4502. "shasum": ""
  4503. },
  4504. "require": {
  4505. "php": ">=8.1",
  4506. "symfony/deprecation-contracts": "^2.5|^3"
  4507. },
  4508. "type": "library",
  4509. "autoload": {
  4510. "psr-4": {
  4511. "Symfony\\Component\\OptionsResolver\\": ""
  4512. },
  4513. "exclude-from-classmap": [
  4514. "/Tests/"
  4515. ]
  4516. },
  4517. "notification-url": "https://packagist.org/downloads/",
  4518. "license": [
  4519. "MIT"
  4520. ],
  4521. "authors": [
  4522. {
  4523. "name": "Fabien Potencier",
  4524. "email": "fabien@symfony.com"
  4525. },
  4526. {
  4527. "name": "Symfony Community",
  4528. "homepage": "https://symfony.com/contributors"
  4529. }
  4530. ],
  4531. "description": "Provides an improved replacement for the array_replace PHP function",
  4532. "homepage": "https://symfony.com",
  4533. "keywords": [
  4534. "config",
  4535. "configuration",
  4536. "options"
  4537. ],
  4538. "support": {
  4539. "source": "https://github.com/symfony/options-resolver/tree/v6.4.16"
  4540. },
  4541. "funding": [
  4542. {
  4543. "url": "https://symfony.com/sponsor",
  4544. "type": "custom"
  4545. },
  4546. {
  4547. "url": "https://github.com/fabpot",
  4548. "type": "github"
  4549. },
  4550. {
  4551. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4552. "type": "tidelift"
  4553. }
  4554. ],
  4555. "time": "2024-11-20T10:57:02+00:00"
  4556. },
  4557. {
  4558. "name": "symfony/password-hasher",
  4559. "version": "v6.4.13",
  4560. "source": {
  4561. "type": "git",
  4562. "url": "https://github.com/symfony/password-hasher.git",
  4563. "reference": "e97a1b31f60b8bdfc1fdedab4398538da9441d47"
  4564. },
  4565. "dist": {
  4566. "type": "zip",
  4567. "url": "https://api.github.com/repos/symfony/password-hasher/zipball/e97a1b31f60b8bdfc1fdedab4398538da9441d47",
  4568. "reference": "e97a1b31f60b8bdfc1fdedab4398538da9441d47",
  4569. "shasum": ""
  4570. },
  4571. "require": {
  4572. "php": ">=8.1"
  4573. },
  4574. "conflict": {
  4575. "symfony/security-core": "<5.4"
  4576. },
  4577. "require-dev": {
  4578. "symfony/console": "^5.4|^6.0|^7.0",
  4579. "symfony/security-core": "^5.4|^6.0|^7.0"
  4580. },
  4581. "type": "library",
  4582. "autoload": {
  4583. "psr-4": {
  4584. "Symfony\\Component\\PasswordHasher\\": ""
  4585. },
  4586. "exclude-from-classmap": [
  4587. "/Tests/"
  4588. ]
  4589. },
  4590. "notification-url": "https://packagist.org/downloads/",
  4591. "license": [
  4592. "MIT"
  4593. ],
  4594. "authors": [
  4595. {
  4596. "name": "Robin Chalas",
  4597. "email": "robin.chalas@gmail.com"
  4598. },
  4599. {
  4600. "name": "Symfony Community",
  4601. "homepage": "https://symfony.com/contributors"
  4602. }
  4603. ],
  4604. "description": "Provides password hashing utilities",
  4605. "homepage": "https://symfony.com",
  4606. "keywords": [
  4607. "hashing",
  4608. "password"
  4609. ],
  4610. "support": {
  4611. "source": "https://github.com/symfony/password-hasher/tree/v6.4.13"
  4612. },
  4613. "funding": [
  4614. {
  4615. "url": "https://symfony.com/sponsor",
  4616. "type": "custom"
  4617. },
  4618. {
  4619. "url": "https://github.com/fabpot",
  4620. "type": "github"
  4621. },
  4622. {
  4623. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4624. "type": "tidelift"
  4625. }
  4626. ],
  4627. "time": "2024-09-25T14:18:03+00:00"
  4628. },
  4629. {
  4630. "name": "symfony/polyfill-intl-grapheme",
  4631. "version": "v1.31.0",
  4632. "source": {
  4633. "type": "git",
  4634. "url": "https://github.com/symfony/polyfill-intl-grapheme.git",
  4635. "reference": "b9123926e3b7bc2f98c02ad54f6a4b02b91a8abe"
  4636. },
  4637. "dist": {
  4638. "type": "zip",
  4639. "url": "https://api.github.com/repos/symfony/polyfill-intl-grapheme/zipball/b9123926e3b7bc2f98c02ad54f6a4b02b91a8abe",
  4640. "reference": "b9123926e3b7bc2f98c02ad54f6a4b02b91a8abe",
  4641. "shasum": ""
  4642. },
  4643. "require": {
  4644. "php": ">=7.2"
  4645. },
  4646. "suggest": {
  4647. "ext-intl": "For best performance"
  4648. },
  4649. "type": "library",
  4650. "extra": {
  4651. "thanks": {
  4652. "url": "https://github.com/symfony/polyfill",
  4653. "name": "symfony/polyfill"
  4654. }
  4655. },
  4656. "autoload": {
  4657. "files": [
  4658. "bootstrap.php"
  4659. ],
  4660. "psr-4": {
  4661. "Symfony\\Polyfill\\Intl\\Grapheme\\": ""
  4662. }
  4663. },
  4664. "notification-url": "https://packagist.org/downloads/",
  4665. "license": [
  4666. "MIT"
  4667. ],
  4668. "authors": [
  4669. {
  4670. "name": "Nicolas Grekas",
  4671. "email": "p@tchwork.com"
  4672. },
  4673. {
  4674. "name": "Symfony Community",
  4675. "homepage": "https://symfony.com/contributors"
  4676. }
  4677. ],
  4678. "description": "Symfony polyfill for intl's grapheme_* functions",
  4679. "homepage": "https://symfony.com",
  4680. "keywords": [
  4681. "compatibility",
  4682. "grapheme",
  4683. "intl",
  4684. "polyfill",
  4685. "portable",
  4686. "shim"
  4687. ],
  4688. "support": {
  4689. "source": "https://github.com/symfony/polyfill-intl-grapheme/tree/v1.31.0"
  4690. },
  4691. "funding": [
  4692. {
  4693. "url": "https://symfony.com/sponsor",
  4694. "type": "custom"
  4695. },
  4696. {
  4697. "url": "https://github.com/fabpot",
  4698. "type": "github"
  4699. },
  4700. {
  4701. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4702. "type": "tidelift"
  4703. }
  4704. ],
  4705. "time": "2024-09-09T11:45:10+00:00"
  4706. },
  4707. {
  4708. "name": "symfony/polyfill-intl-icu",
  4709. "version": "v1.31.0",
  4710. "source": {
  4711. "type": "git",
  4712. "url": "https://github.com/symfony/polyfill-intl-icu.git",
  4713. "reference": "d80a05e9904d2c2b9b95929f3e4b5d3a8f418d78"
  4714. },
  4715. "dist": {
  4716. "type": "zip",
  4717. "url": "https://api.github.com/repos/symfony/polyfill-intl-icu/zipball/d80a05e9904d2c2b9b95929f3e4b5d3a8f418d78",
  4718. "reference": "d80a05e9904d2c2b9b95929f3e4b5d3a8f418d78",
  4719. "shasum": ""
  4720. },
  4721. "require": {
  4722. "php": ">=7.2"
  4723. },
  4724. "suggest": {
  4725. "ext-intl": "For best performance and support of other locales than \"en\""
  4726. },
  4727. "type": "library",
  4728. "extra": {
  4729. "thanks": {
  4730. "url": "https://github.com/symfony/polyfill",
  4731. "name": "symfony/polyfill"
  4732. }
  4733. },
  4734. "autoload": {
  4735. "files": [
  4736. "bootstrap.php"
  4737. ],
  4738. "psr-4": {
  4739. "Symfony\\Polyfill\\Intl\\Icu\\": ""
  4740. },
  4741. "classmap": [
  4742. "Resources/stubs"
  4743. ],
  4744. "exclude-from-classmap": [
  4745. "/Tests/"
  4746. ]
  4747. },
  4748. "notification-url": "https://packagist.org/downloads/",
  4749. "license": [
  4750. "MIT"
  4751. ],
  4752. "authors": [
  4753. {
  4754. "name": "Nicolas Grekas",
  4755. "email": "p@tchwork.com"
  4756. },
  4757. {
  4758. "name": "Symfony Community",
  4759. "homepage": "https://symfony.com/contributors"
  4760. }
  4761. ],
  4762. "description": "Symfony polyfill for intl's ICU-related data and classes",
  4763. "homepage": "https://symfony.com",
  4764. "keywords": [
  4765. "compatibility",
  4766. "icu",
  4767. "intl",
  4768. "polyfill",
  4769. "portable",
  4770. "shim"
  4771. ],
  4772. "support": {
  4773. "source": "https://github.com/symfony/polyfill-intl-icu/tree/v1.31.0"
  4774. },
  4775. "funding": [
  4776. {
  4777. "url": "https://symfony.com/sponsor",
  4778. "type": "custom"
  4779. },
  4780. {
  4781. "url": "https://github.com/fabpot",
  4782. "type": "github"
  4783. },
  4784. {
  4785. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4786. "type": "tidelift"
  4787. }
  4788. ],
  4789. "time": "2024-09-09T11:45:10+00:00"
  4790. },
  4791. {
  4792. "name": "symfony/polyfill-intl-idn",
  4793. "version": "v1.31.0",
  4794. "source": {
  4795. "type": "git",
  4796. "url": "https://github.com/symfony/polyfill-intl-idn.git",
  4797. "reference": "c36586dcf89a12315939e00ec9b4474adcb1d773"
  4798. },
  4799. "dist": {
  4800. "type": "zip",
  4801. "url": "https://api.github.com/repos/symfony/polyfill-intl-idn/zipball/c36586dcf89a12315939e00ec9b4474adcb1d773",
  4802. "reference": "c36586dcf89a12315939e00ec9b4474adcb1d773",
  4803. "shasum": ""
  4804. },
  4805. "require": {
  4806. "php": ">=7.2",
  4807. "symfony/polyfill-intl-normalizer": "^1.10"
  4808. },
  4809. "suggest": {
  4810. "ext-intl": "For best performance"
  4811. },
  4812. "type": "library",
  4813. "extra": {
  4814. "thanks": {
  4815. "url": "https://github.com/symfony/polyfill",
  4816. "name": "symfony/polyfill"
  4817. }
  4818. },
  4819. "autoload": {
  4820. "files": [
  4821. "bootstrap.php"
  4822. ],
  4823. "psr-4": {
  4824. "Symfony\\Polyfill\\Intl\\Idn\\": ""
  4825. }
  4826. },
  4827. "notification-url": "https://packagist.org/downloads/",
  4828. "license": [
  4829. "MIT"
  4830. ],
  4831. "authors": [
  4832. {
  4833. "name": "Laurent Bassin",
  4834. "email": "laurent@bassin.info"
  4835. },
  4836. {
  4837. "name": "Trevor Rowbotham",
  4838. "email": "trevor.rowbotham@pm.me"
  4839. },
  4840. {
  4841. "name": "Symfony Community",
  4842. "homepage": "https://symfony.com/contributors"
  4843. }
  4844. ],
  4845. "description": "Symfony polyfill for intl's idn_to_ascii and idn_to_utf8 functions",
  4846. "homepage": "https://symfony.com",
  4847. "keywords": [
  4848. "compatibility",
  4849. "idn",
  4850. "intl",
  4851. "polyfill",
  4852. "portable",
  4853. "shim"
  4854. ],
  4855. "support": {
  4856. "source": "https://github.com/symfony/polyfill-intl-idn/tree/v1.31.0"
  4857. },
  4858. "funding": [
  4859. {
  4860. "url": "https://symfony.com/sponsor",
  4861. "type": "custom"
  4862. },
  4863. {
  4864. "url": "https://github.com/fabpot",
  4865. "type": "github"
  4866. },
  4867. {
  4868. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4869. "type": "tidelift"
  4870. }
  4871. ],
  4872. "time": "2024-09-09T11:45:10+00:00"
  4873. },
  4874. {
  4875. "name": "symfony/polyfill-intl-normalizer",
  4876. "version": "v1.31.0",
  4877. "source": {
  4878. "type": "git",
  4879. "url": "https://github.com/symfony/polyfill-intl-normalizer.git",
  4880. "reference": "3833d7255cc303546435cb650316bff708a1c75c"
  4881. },
  4882. "dist": {
  4883. "type": "zip",
  4884. "url": "https://api.github.com/repos/symfony/polyfill-intl-normalizer/zipball/3833d7255cc303546435cb650316bff708a1c75c",
  4885. "reference": "3833d7255cc303546435cb650316bff708a1c75c",
  4886. "shasum": ""
  4887. },
  4888. "require": {
  4889. "php": ">=7.2"
  4890. },
  4891. "suggest": {
  4892. "ext-intl": "For best performance"
  4893. },
  4894. "type": "library",
  4895. "extra": {
  4896. "thanks": {
  4897. "url": "https://github.com/symfony/polyfill",
  4898. "name": "symfony/polyfill"
  4899. }
  4900. },
  4901. "autoload": {
  4902. "files": [
  4903. "bootstrap.php"
  4904. ],
  4905. "psr-4": {
  4906. "Symfony\\Polyfill\\Intl\\Normalizer\\": ""
  4907. },
  4908. "classmap": [
  4909. "Resources/stubs"
  4910. ]
  4911. },
  4912. "notification-url": "https://packagist.org/downloads/",
  4913. "license": [
  4914. "MIT"
  4915. ],
  4916. "authors": [
  4917. {
  4918. "name": "Nicolas Grekas",
  4919. "email": "p@tchwork.com"
  4920. },
  4921. {
  4922. "name": "Symfony Community",
  4923. "homepage": "https://symfony.com/contributors"
  4924. }
  4925. ],
  4926. "description": "Symfony polyfill for intl's Normalizer class and related functions",
  4927. "homepage": "https://symfony.com",
  4928. "keywords": [
  4929. "compatibility",
  4930. "intl",
  4931. "normalizer",
  4932. "polyfill",
  4933. "portable",
  4934. "shim"
  4935. ],
  4936. "support": {
  4937. "source": "https://github.com/symfony/polyfill-intl-normalizer/tree/v1.31.0"
  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": "2024-09-09T11:45:10+00:00"
  4954. },
  4955. {
  4956. "name": "symfony/polyfill-mbstring",
  4957. "version": "v1.31.0",
  4958. "source": {
  4959. "type": "git",
  4960. "url": "https://github.com/symfony/polyfill-mbstring.git",
  4961. "reference": "85181ba99b2345b0ef10ce42ecac37612d9fd341"
  4962. },
  4963. "dist": {
  4964. "type": "zip",
  4965. "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/85181ba99b2345b0ef10ce42ecac37612d9fd341",
  4966. "reference": "85181ba99b2345b0ef10ce42ecac37612d9fd341",
  4967. "shasum": ""
  4968. },
  4969. "require": {
  4970. "php": ">=7.2"
  4971. },
  4972. "provide": {
  4973. "ext-mbstring": "*"
  4974. },
  4975. "suggest": {
  4976. "ext-mbstring": "For best performance"
  4977. },
  4978. "type": "library",
  4979. "extra": {
  4980. "thanks": {
  4981. "url": "https://github.com/symfony/polyfill",
  4982. "name": "symfony/polyfill"
  4983. }
  4984. },
  4985. "autoload": {
  4986. "files": [
  4987. "bootstrap.php"
  4988. ],
  4989. "psr-4": {
  4990. "Symfony\\Polyfill\\Mbstring\\": ""
  4991. }
  4992. },
  4993. "notification-url": "https://packagist.org/downloads/",
  4994. "license": [
  4995. "MIT"
  4996. ],
  4997. "authors": [
  4998. {
  4999. "name": "Nicolas Grekas",
  5000. "email": "p@tchwork.com"
  5001. },
  5002. {
  5003. "name": "Symfony Community",
  5004. "homepage": "https://symfony.com/contributors"
  5005. }
  5006. ],
  5007. "description": "Symfony polyfill for the Mbstring extension",
  5008. "homepage": "https://symfony.com",
  5009. "keywords": [
  5010. "compatibility",
  5011. "mbstring",
  5012. "polyfill",
  5013. "portable",
  5014. "shim"
  5015. ],
  5016. "support": {
  5017. "source": "https://github.com/symfony/polyfill-mbstring/tree/v1.31.0"
  5018. },
  5019. "funding": [
  5020. {
  5021. "url": "https://symfony.com/sponsor",
  5022. "type": "custom"
  5023. },
  5024. {
  5025. "url": "https://github.com/fabpot",
  5026. "type": "github"
  5027. },
  5028. {
  5029. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5030. "type": "tidelift"
  5031. }
  5032. ],
  5033. "time": "2024-09-09T11:45:10+00:00"
  5034. },
  5035. {
  5036. "name": "symfony/polyfill-php81",
  5037. "version": "v1.31.0",
  5038. "source": {
  5039. "type": "git",
  5040. "url": "https://github.com/symfony/polyfill-php81.git",
  5041. "reference": "4a4cfc2d253c21a5ad0e53071df248ed48c6ce5c"
  5042. },
  5043. "dist": {
  5044. "type": "zip",
  5045. "url": "https://api.github.com/repos/symfony/polyfill-php81/zipball/4a4cfc2d253c21a5ad0e53071df248ed48c6ce5c",
  5046. "reference": "4a4cfc2d253c21a5ad0e53071df248ed48c6ce5c",
  5047. "shasum": ""
  5048. },
  5049. "require": {
  5050. "php": ">=7.2"
  5051. },
  5052. "type": "library",
  5053. "extra": {
  5054. "thanks": {
  5055. "url": "https://github.com/symfony/polyfill",
  5056. "name": "symfony/polyfill"
  5057. }
  5058. },
  5059. "autoload": {
  5060. "files": [
  5061. "bootstrap.php"
  5062. ],
  5063. "psr-4": {
  5064. "Symfony\\Polyfill\\Php81\\": ""
  5065. },
  5066. "classmap": [
  5067. "Resources/stubs"
  5068. ]
  5069. },
  5070. "notification-url": "https://packagist.org/downloads/",
  5071. "license": [
  5072. "MIT"
  5073. ],
  5074. "authors": [
  5075. {
  5076. "name": "Nicolas Grekas",
  5077. "email": "p@tchwork.com"
  5078. },
  5079. {
  5080. "name": "Symfony Community",
  5081. "homepage": "https://symfony.com/contributors"
  5082. }
  5083. ],
  5084. "description": "Symfony polyfill backporting some PHP 8.1+ features to lower PHP versions",
  5085. "homepage": "https://symfony.com",
  5086. "keywords": [
  5087. "compatibility",
  5088. "polyfill",
  5089. "portable",
  5090. "shim"
  5091. ],
  5092. "support": {
  5093. "source": "https://github.com/symfony/polyfill-php81/tree/v1.31.0"
  5094. },
  5095. "funding": [
  5096. {
  5097. "url": "https://symfony.com/sponsor",
  5098. "type": "custom"
  5099. },
  5100. {
  5101. "url": "https://github.com/fabpot",
  5102. "type": "github"
  5103. },
  5104. {
  5105. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5106. "type": "tidelift"
  5107. }
  5108. ],
  5109. "time": "2024-09-09T11:45:10+00:00"
  5110. },
  5111. {
  5112. "name": "symfony/polyfill-php83",
  5113. "version": "v1.31.0",
  5114. "source": {
  5115. "type": "git",
  5116. "url": "https://github.com/symfony/polyfill-php83.git",
  5117. "reference": "2fb86d65e2d424369ad2905e83b236a8805ba491"
  5118. },
  5119. "dist": {
  5120. "type": "zip",
  5121. "url": "https://api.github.com/repos/symfony/polyfill-php83/zipball/2fb86d65e2d424369ad2905e83b236a8805ba491",
  5122. "reference": "2fb86d65e2d424369ad2905e83b236a8805ba491",
  5123. "shasum": ""
  5124. },
  5125. "require": {
  5126. "php": ">=7.2"
  5127. },
  5128. "type": "library",
  5129. "extra": {
  5130. "thanks": {
  5131. "url": "https://github.com/symfony/polyfill",
  5132. "name": "symfony/polyfill"
  5133. }
  5134. },
  5135. "autoload": {
  5136. "files": [
  5137. "bootstrap.php"
  5138. ],
  5139. "psr-4": {
  5140. "Symfony\\Polyfill\\Php83\\": ""
  5141. },
  5142. "classmap": [
  5143. "Resources/stubs"
  5144. ]
  5145. },
  5146. "notification-url": "https://packagist.org/downloads/",
  5147. "license": [
  5148. "MIT"
  5149. ],
  5150. "authors": [
  5151. {
  5152. "name": "Nicolas Grekas",
  5153. "email": "p@tchwork.com"
  5154. },
  5155. {
  5156. "name": "Symfony Community",
  5157. "homepage": "https://symfony.com/contributors"
  5158. }
  5159. ],
  5160. "description": "Symfony polyfill backporting some PHP 8.3+ features to lower PHP versions",
  5161. "homepage": "https://symfony.com",
  5162. "keywords": [
  5163. "compatibility",
  5164. "polyfill",
  5165. "portable",
  5166. "shim"
  5167. ],
  5168. "support": {
  5169. "source": "https://github.com/symfony/polyfill-php83/tree/v1.31.0"
  5170. },
  5171. "funding": [
  5172. {
  5173. "url": "https://symfony.com/sponsor",
  5174. "type": "custom"
  5175. },
  5176. {
  5177. "url": "https://github.com/fabpot",
  5178. "type": "github"
  5179. },
  5180. {
  5181. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5182. "type": "tidelift"
  5183. }
  5184. ],
  5185. "time": "2024-09-09T11:45:10+00:00"
  5186. },
  5187. {
  5188. "name": "symfony/process",
  5189. "version": "v6.4.15",
  5190. "source": {
  5191. "type": "git",
  5192. "url": "https://github.com/symfony/process.git",
  5193. "reference": "3cb242f059c14ae08591c5c4087d1fe443564392"
  5194. },
  5195. "dist": {
  5196. "type": "zip",
  5197. "url": "https://api.github.com/repos/symfony/process/zipball/3cb242f059c14ae08591c5c4087d1fe443564392",
  5198. "reference": "3cb242f059c14ae08591c5c4087d1fe443564392",
  5199. "shasum": ""
  5200. },
  5201. "require": {
  5202. "php": ">=8.1"
  5203. },
  5204. "type": "library",
  5205. "autoload": {
  5206. "psr-4": {
  5207. "Symfony\\Component\\Process\\": ""
  5208. },
  5209. "exclude-from-classmap": [
  5210. "/Tests/"
  5211. ]
  5212. },
  5213. "notification-url": "https://packagist.org/downloads/",
  5214. "license": [
  5215. "MIT"
  5216. ],
  5217. "authors": [
  5218. {
  5219. "name": "Fabien Potencier",
  5220. "email": "fabien@symfony.com"
  5221. },
  5222. {
  5223. "name": "Symfony Community",
  5224. "homepage": "https://symfony.com/contributors"
  5225. }
  5226. ],
  5227. "description": "Executes commands in sub-processes",
  5228. "homepage": "https://symfony.com",
  5229. "support": {
  5230. "source": "https://github.com/symfony/process/tree/v6.4.15"
  5231. },
  5232. "funding": [
  5233. {
  5234. "url": "https://symfony.com/sponsor",
  5235. "type": "custom"
  5236. },
  5237. {
  5238. "url": "https://github.com/fabpot",
  5239. "type": "github"
  5240. },
  5241. {
  5242. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5243. "type": "tidelift"
  5244. }
  5245. ],
  5246. "time": "2024-11-06T14:19:14+00:00"
  5247. },
  5248. {
  5249. "name": "symfony/property-access",
  5250. "version": "v6.4.13",
  5251. "source": {
  5252. "type": "git",
  5253. "url": "https://github.com/symfony/property-access.git",
  5254. "reference": "8cc779d88d12e440adaa26387bcfc25744064afe"
  5255. },
  5256. "dist": {
  5257. "type": "zip",
  5258. "url": "https://api.github.com/repos/symfony/property-access/zipball/8cc779d88d12e440adaa26387bcfc25744064afe",
  5259. "reference": "8cc779d88d12e440adaa26387bcfc25744064afe",
  5260. "shasum": ""
  5261. },
  5262. "require": {
  5263. "php": ">=8.1",
  5264. "symfony/deprecation-contracts": "^2.5|^3",
  5265. "symfony/property-info": "^5.4|^6.0|^7.0"
  5266. },
  5267. "require-dev": {
  5268. "symfony/cache": "^5.4|^6.0|^7.0"
  5269. },
  5270. "type": "library",
  5271. "autoload": {
  5272. "psr-4": {
  5273. "Symfony\\Component\\PropertyAccess\\": ""
  5274. },
  5275. "exclude-from-classmap": [
  5276. "/Tests/"
  5277. ]
  5278. },
  5279. "notification-url": "https://packagist.org/downloads/",
  5280. "license": [
  5281. "MIT"
  5282. ],
  5283. "authors": [
  5284. {
  5285. "name": "Fabien Potencier",
  5286. "email": "fabien@symfony.com"
  5287. },
  5288. {
  5289. "name": "Symfony Community",
  5290. "homepage": "https://symfony.com/contributors"
  5291. }
  5292. ],
  5293. "description": "Provides functions to read and write from/to an object or array using a simple string notation",
  5294. "homepage": "https://symfony.com",
  5295. "keywords": [
  5296. "access",
  5297. "array",
  5298. "extraction",
  5299. "index",
  5300. "injection",
  5301. "object",
  5302. "property",
  5303. "property-path",
  5304. "reflection"
  5305. ],
  5306. "support": {
  5307. "source": "https://github.com/symfony/property-access/tree/v6.4.13"
  5308. },
  5309. "funding": [
  5310. {
  5311. "url": "https://symfony.com/sponsor",
  5312. "type": "custom"
  5313. },
  5314. {
  5315. "url": "https://github.com/fabpot",
  5316. "type": "github"
  5317. },
  5318. {
  5319. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5320. "type": "tidelift"
  5321. }
  5322. ],
  5323. "time": "2024-09-25T14:18:03+00:00"
  5324. },
  5325. {
  5326. "name": "symfony/property-info",
  5327. "version": "v6.4.17",
  5328. "source": {
  5329. "type": "git",
  5330. "url": "https://github.com/symfony/property-info.git",
  5331. "reference": "38b125d78e67668159f75383a293ec0c5d3f2963"
  5332. },
  5333. "dist": {
  5334. "type": "zip",
  5335. "url": "https://api.github.com/repos/symfony/property-info/zipball/38b125d78e67668159f75383a293ec0c5d3f2963",
  5336. "reference": "38b125d78e67668159f75383a293ec0c5d3f2963",
  5337. "shasum": ""
  5338. },
  5339. "require": {
  5340. "php": ">=8.1",
  5341. "symfony/string": "^5.4|^6.0|^7.0"
  5342. },
  5343. "conflict": {
  5344. "doctrine/annotations": "<1.12",
  5345. "phpdocumentor/reflection-docblock": "<5.2",
  5346. "phpdocumentor/type-resolver": "<1.5.1",
  5347. "symfony/dependency-injection": "<5.4|>=6.0,<6.4"
  5348. },
  5349. "require-dev": {
  5350. "doctrine/annotations": "^1.12|^2",
  5351. "phpdocumentor/reflection-docblock": "^5.2",
  5352. "phpstan/phpdoc-parser": "^1.0|^2.0",
  5353. "symfony/cache": "^5.4|^6.0|^7.0",
  5354. "symfony/dependency-injection": "^5.4|^6.0|^7.0",
  5355. "symfony/serializer": "^5.4|^6.4|^7.0"
  5356. },
  5357. "type": "library",
  5358. "autoload": {
  5359. "psr-4": {
  5360. "Symfony\\Component\\PropertyInfo\\": ""
  5361. },
  5362. "exclude-from-classmap": [
  5363. "/Tests/"
  5364. ]
  5365. },
  5366. "notification-url": "https://packagist.org/downloads/",
  5367. "license": [
  5368. "MIT"
  5369. ],
  5370. "authors": [
  5371. {
  5372. "name": "Kévin Dunglas",
  5373. "email": "dunglas@gmail.com"
  5374. },
  5375. {
  5376. "name": "Symfony Community",
  5377. "homepage": "https://symfony.com/contributors"
  5378. }
  5379. ],
  5380. "description": "Extracts information about PHP class' properties using metadata of popular sources",
  5381. "homepage": "https://symfony.com",
  5382. "keywords": [
  5383. "doctrine",
  5384. "phpdoc",
  5385. "property",
  5386. "symfony",
  5387. "type",
  5388. "validator"
  5389. ],
  5390. "support": {
  5391. "source": "https://github.com/symfony/property-info/tree/v6.4.17"
  5392. },
  5393. "funding": [
  5394. {
  5395. "url": "https://symfony.com/sponsor",
  5396. "type": "custom"
  5397. },
  5398. {
  5399. "url": "https://github.com/fabpot",
  5400. "type": "github"
  5401. },
  5402. {
  5403. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5404. "type": "tidelift"
  5405. }
  5406. ],
  5407. "time": "2024-12-26T19:01:29+00:00"
  5408. },
  5409. {
  5410. "name": "symfony/routing",
  5411. "version": "v6.4.16",
  5412. "source": {
  5413. "type": "git",
  5414. "url": "https://github.com/symfony/routing.git",
  5415. "reference": "91e02e606b4b705c2f4fb42f7e7708b7923a3220"
  5416. },
  5417. "dist": {
  5418. "type": "zip",
  5419. "url": "https://api.github.com/repos/symfony/routing/zipball/91e02e606b4b705c2f4fb42f7e7708b7923a3220",
  5420. "reference": "91e02e606b4b705c2f4fb42f7e7708b7923a3220",
  5421. "shasum": ""
  5422. },
  5423. "require": {
  5424. "php": ">=8.1",
  5425. "symfony/deprecation-contracts": "^2.5|^3"
  5426. },
  5427. "conflict": {
  5428. "doctrine/annotations": "<1.12",
  5429. "symfony/config": "<6.2",
  5430. "symfony/dependency-injection": "<5.4",
  5431. "symfony/yaml": "<5.4"
  5432. },
  5433. "require-dev": {
  5434. "doctrine/annotations": "^1.12|^2",
  5435. "psr/log": "^1|^2|^3",
  5436. "symfony/config": "^6.2|^7.0",
  5437. "symfony/dependency-injection": "^5.4|^6.0|^7.0",
  5438. "symfony/expression-language": "^5.4|^6.0|^7.0",
  5439. "symfony/http-foundation": "^5.4|^6.0|^7.0",
  5440. "symfony/yaml": "^5.4|^6.0|^7.0"
  5441. },
  5442. "type": "library",
  5443. "autoload": {
  5444. "psr-4": {
  5445. "Symfony\\Component\\Routing\\": ""
  5446. },
  5447. "exclude-from-classmap": [
  5448. "/Tests/"
  5449. ]
  5450. },
  5451. "notification-url": "https://packagist.org/downloads/",
  5452. "license": [
  5453. "MIT"
  5454. ],
  5455. "authors": [
  5456. {
  5457. "name": "Fabien Potencier",
  5458. "email": "fabien@symfony.com"
  5459. },
  5460. {
  5461. "name": "Symfony Community",
  5462. "homepage": "https://symfony.com/contributors"
  5463. }
  5464. ],
  5465. "description": "Maps an HTTP request to a set of configuration variables",
  5466. "homepage": "https://symfony.com",
  5467. "keywords": [
  5468. "router",
  5469. "routing",
  5470. "uri",
  5471. "url"
  5472. ],
  5473. "support": {
  5474. "source": "https://github.com/symfony/routing/tree/v6.4.16"
  5475. },
  5476. "funding": [
  5477. {
  5478. "url": "https://symfony.com/sponsor",
  5479. "type": "custom"
  5480. },
  5481. {
  5482. "url": "https://github.com/fabpot",
  5483. "type": "github"
  5484. },
  5485. {
  5486. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5487. "type": "tidelift"
  5488. }
  5489. ],
  5490. "time": "2024-11-13T15:31:34+00:00"
  5491. },
  5492. {
  5493. "name": "symfony/runtime",
  5494. "version": "v6.4.14",
  5495. "source": {
  5496. "type": "git",
  5497. "url": "https://github.com/symfony/runtime.git",
  5498. "reference": "4facd4174f45cd37c65860403412b67c7381136a"
  5499. },
  5500. "dist": {
  5501. "type": "zip",
  5502. "url": "https://api.github.com/repos/symfony/runtime/zipball/4facd4174f45cd37c65860403412b67c7381136a",
  5503. "reference": "4facd4174f45cd37c65860403412b67c7381136a",
  5504. "shasum": ""
  5505. },
  5506. "require": {
  5507. "composer-plugin-api": "^1.0|^2.0",
  5508. "php": ">=8.1"
  5509. },
  5510. "conflict": {
  5511. "symfony/dotenv": "<5.4"
  5512. },
  5513. "require-dev": {
  5514. "composer/composer": "^1.0.2|^2.0",
  5515. "symfony/console": "^5.4.9|^6.0.9|^7.0",
  5516. "symfony/dotenv": "^5.4|^6.0|^7.0",
  5517. "symfony/http-foundation": "^5.4|^6.0|^7.0",
  5518. "symfony/http-kernel": "^5.4|^6.0|^7.0"
  5519. },
  5520. "type": "composer-plugin",
  5521. "extra": {
  5522. "class": "Symfony\\Component\\Runtime\\Internal\\ComposerPlugin"
  5523. },
  5524. "autoload": {
  5525. "psr-4": {
  5526. "Symfony\\Component\\Runtime\\": "",
  5527. "Symfony\\Runtime\\Symfony\\Component\\": "Internal/"
  5528. },
  5529. "exclude-from-classmap": [
  5530. "/Tests/"
  5531. ]
  5532. },
  5533. "notification-url": "https://packagist.org/downloads/",
  5534. "license": [
  5535. "MIT"
  5536. ],
  5537. "authors": [
  5538. {
  5539. "name": "Nicolas Grekas",
  5540. "email": "p@tchwork.com"
  5541. },
  5542. {
  5543. "name": "Symfony Community",
  5544. "homepage": "https://symfony.com/contributors"
  5545. }
  5546. ],
  5547. "description": "Enables decoupling PHP applications from global state",
  5548. "homepage": "https://symfony.com",
  5549. "keywords": [
  5550. "runtime"
  5551. ],
  5552. "support": {
  5553. "source": "https://github.com/symfony/runtime/tree/v6.4.14"
  5554. },
  5555. "funding": [
  5556. {
  5557. "url": "https://symfony.com/sponsor",
  5558. "type": "custom"
  5559. },
  5560. {
  5561. "url": "https://github.com/fabpot",
  5562. "type": "github"
  5563. },
  5564. {
  5565. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5566. "type": "tidelift"
  5567. }
  5568. ],
  5569. "time": "2024-11-05T16:39:55+00:00"
  5570. },
  5571. {
  5572. "name": "symfony/security-bundle",
  5573. "version": "v6.4.13",
  5574. "source": {
  5575. "type": "git",
  5576. "url": "https://github.com/symfony/security-bundle.git",
  5577. "reference": "181d1fcf5f88ef8212ed7f6434e5ff51c9d7dff3"
  5578. },
  5579. "dist": {
  5580. "type": "zip",
  5581. "url": "https://api.github.com/repos/symfony/security-bundle/zipball/181d1fcf5f88ef8212ed7f6434e5ff51c9d7dff3",
  5582. "reference": "181d1fcf5f88ef8212ed7f6434e5ff51c9d7dff3",
  5583. "shasum": ""
  5584. },
  5585. "require": {
  5586. "composer-runtime-api": ">=2.1",
  5587. "ext-xml": "*",
  5588. "php": ">=8.1",
  5589. "symfony/clock": "^6.3|^7.0",
  5590. "symfony/config": "^6.1|^7.0",
  5591. "symfony/dependency-injection": "^6.4.11|^7.1.4",
  5592. "symfony/deprecation-contracts": "^2.5|^3",
  5593. "symfony/event-dispatcher": "^5.4|^6.0|^7.0",
  5594. "symfony/http-foundation": "^6.2|^7.0",
  5595. "symfony/http-kernel": "^6.2",
  5596. "symfony/password-hasher": "^5.4|^6.0|^7.0",
  5597. "symfony/security-core": "^6.2|^7.0",
  5598. "symfony/security-csrf": "^5.4|^6.0|^7.0",
  5599. "symfony/security-http": "^6.3.6|^7.0",
  5600. "symfony/service-contracts": "^2.5|^3"
  5601. },
  5602. "conflict": {
  5603. "symfony/browser-kit": "<5.4",
  5604. "symfony/console": "<5.4",
  5605. "symfony/framework-bundle": "<6.4",
  5606. "symfony/http-client": "<5.4",
  5607. "symfony/ldap": "<5.4",
  5608. "symfony/serializer": "<6.4",
  5609. "symfony/twig-bundle": "<5.4",
  5610. "symfony/validator": "<6.4"
  5611. },
  5612. "require-dev": {
  5613. "symfony/asset": "^5.4|^6.0|^7.0",
  5614. "symfony/browser-kit": "^5.4|^6.0|^7.0",
  5615. "symfony/console": "^5.4|^6.0|^7.0",
  5616. "symfony/css-selector": "^5.4|^6.0|^7.0",
  5617. "symfony/dom-crawler": "^5.4|^6.0|^7.0",
  5618. "symfony/expression-language": "^5.4|^6.0|^7.0",
  5619. "symfony/form": "^5.4|^6.0|^7.0",
  5620. "symfony/framework-bundle": "^6.4|^7.0",
  5621. "symfony/http-client": "^5.4|^6.0|^7.0",
  5622. "symfony/ldap": "^5.4|^6.0|^7.0",
  5623. "symfony/process": "^5.4|^6.0|^7.0",
  5624. "symfony/rate-limiter": "^5.4|^6.0|^7.0",
  5625. "symfony/serializer": "^6.4|^7.0",
  5626. "symfony/translation": "^5.4|^6.0|^7.0",
  5627. "symfony/twig-bridge": "^5.4|^6.0|^7.0",
  5628. "symfony/twig-bundle": "^5.4|^6.0|^7.0",
  5629. "symfony/validator": "^6.4|^7.0",
  5630. "symfony/yaml": "^5.4|^6.0|^7.0",
  5631. "twig/twig": "^2.13|^3.0.4",
  5632. "web-token/jwt-checker": "^3.1",
  5633. "web-token/jwt-signature-algorithm-ecdsa": "^3.1",
  5634. "web-token/jwt-signature-algorithm-eddsa": "^3.1",
  5635. "web-token/jwt-signature-algorithm-hmac": "^3.1",
  5636. "web-token/jwt-signature-algorithm-none": "^3.1",
  5637. "web-token/jwt-signature-algorithm-rsa": "^3.1"
  5638. },
  5639. "type": "symfony-bundle",
  5640. "autoload": {
  5641. "psr-4": {
  5642. "Symfony\\Bundle\\SecurityBundle\\": ""
  5643. },
  5644. "exclude-from-classmap": [
  5645. "/Tests/"
  5646. ]
  5647. },
  5648. "notification-url": "https://packagist.org/downloads/",
  5649. "license": [
  5650. "MIT"
  5651. ],
  5652. "authors": [
  5653. {
  5654. "name": "Fabien Potencier",
  5655. "email": "fabien@symfony.com"
  5656. },
  5657. {
  5658. "name": "Symfony Community",
  5659. "homepage": "https://symfony.com/contributors"
  5660. }
  5661. ],
  5662. "description": "Provides a tight integration of the Security component into the Symfony full-stack framework",
  5663. "homepage": "https://symfony.com",
  5664. "support": {
  5665. "source": "https://github.com/symfony/security-bundle/tree/v6.4.13"
  5666. },
  5667. "funding": [
  5668. {
  5669. "url": "https://symfony.com/sponsor",
  5670. "type": "custom"
  5671. },
  5672. {
  5673. "url": "https://github.com/fabpot",
  5674. "type": "github"
  5675. },
  5676. {
  5677. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5678. "type": "tidelift"
  5679. }
  5680. ],
  5681. "time": "2024-09-25T14:18:03+00:00"
  5682. },
  5683. {
  5684. "name": "symfony/security-core",
  5685. "version": "v6.4.16",
  5686. "source": {
  5687. "type": "git",
  5688. "url": "https://github.com/symfony/security-core.git",
  5689. "reference": "19cdb7de86e556202ab16e0cffd1a97348231bc0"
  5690. },
  5691. "dist": {
  5692. "type": "zip",
  5693. "url": "https://api.github.com/repos/symfony/security-core/zipball/19cdb7de86e556202ab16e0cffd1a97348231bc0",
  5694. "reference": "19cdb7de86e556202ab16e0cffd1a97348231bc0",
  5695. "shasum": ""
  5696. },
  5697. "require": {
  5698. "php": ">=8.1",
  5699. "symfony/deprecation-contracts": "^2.5|^3",
  5700. "symfony/event-dispatcher-contracts": "^2.5|^3",
  5701. "symfony/password-hasher": "^5.4|^6.0|^7.0",
  5702. "symfony/service-contracts": "^2.5|^3"
  5703. },
  5704. "conflict": {
  5705. "symfony/event-dispatcher": "<5.4",
  5706. "symfony/http-foundation": "<5.4",
  5707. "symfony/ldap": "<5.4",
  5708. "symfony/security-guard": "<5.4",
  5709. "symfony/translation": "<5.4.35|>=6.0,<6.3.12|>=6.4,<6.4.3|>=7.0,<7.0.3",
  5710. "symfony/validator": "<5.4"
  5711. },
  5712. "require-dev": {
  5713. "psr/cache": "^1.0|^2.0|^3.0",
  5714. "psr/container": "^1.1|^2.0",
  5715. "psr/log": "^1|^2|^3",
  5716. "symfony/cache": "^5.4|^6.0|^7.0",
  5717. "symfony/event-dispatcher": "^5.4|^6.0|^7.0",
  5718. "symfony/expression-language": "^5.4|^6.0|^7.0",
  5719. "symfony/http-foundation": "^5.4|^6.0|^7.0",
  5720. "symfony/ldap": "^5.4|^6.0|^7.0",
  5721. "symfony/string": "^5.4|^6.0|^7.0",
  5722. "symfony/translation": "^5.4.35|~6.3.12|^6.4.3|^7.0.3",
  5723. "symfony/validator": "^6.4|^7.0"
  5724. },
  5725. "type": "library",
  5726. "autoload": {
  5727. "psr-4": {
  5728. "Symfony\\Component\\Security\\Core\\": ""
  5729. },
  5730. "exclude-from-classmap": [
  5731. "/Tests/"
  5732. ]
  5733. },
  5734. "notification-url": "https://packagist.org/downloads/",
  5735. "license": [
  5736. "MIT"
  5737. ],
  5738. "authors": [
  5739. {
  5740. "name": "Fabien Potencier",
  5741. "email": "fabien@symfony.com"
  5742. },
  5743. {
  5744. "name": "Symfony Community",
  5745. "homepage": "https://symfony.com/contributors"
  5746. }
  5747. ],
  5748. "description": "Symfony Security Component - Core Library",
  5749. "homepage": "https://symfony.com",
  5750. "support": {
  5751. "source": "https://github.com/symfony/security-core/tree/v6.4.16"
  5752. },
  5753. "funding": [
  5754. {
  5755. "url": "https://symfony.com/sponsor",
  5756. "type": "custom"
  5757. },
  5758. {
  5759. "url": "https://github.com/fabpot",
  5760. "type": "github"
  5761. },
  5762. {
  5763. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5764. "type": "tidelift"
  5765. }
  5766. ],
  5767. "time": "2024-11-27T09:48:51+00:00"
  5768. },
  5769. {
  5770. "name": "symfony/security-csrf",
  5771. "version": "v6.4.13",
  5772. "source": {
  5773. "type": "git",
  5774. "url": "https://github.com/symfony/security-csrf.git",
  5775. "reference": "c34421b7d34efbaef5d611ab2e646a0ec464ffe3"
  5776. },
  5777. "dist": {
  5778. "type": "zip",
  5779. "url": "https://api.github.com/repos/symfony/security-csrf/zipball/c34421b7d34efbaef5d611ab2e646a0ec464ffe3",
  5780. "reference": "c34421b7d34efbaef5d611ab2e646a0ec464ffe3",
  5781. "shasum": ""
  5782. },
  5783. "require": {
  5784. "php": ">=8.1",
  5785. "symfony/security-core": "^5.4|^6.0|^7.0"
  5786. },
  5787. "conflict": {
  5788. "symfony/http-foundation": "<5.4"
  5789. },
  5790. "require-dev": {
  5791. "symfony/http-foundation": "^5.4|^6.0|^7.0"
  5792. },
  5793. "type": "library",
  5794. "autoload": {
  5795. "psr-4": {
  5796. "Symfony\\Component\\Security\\Csrf\\": ""
  5797. },
  5798. "exclude-from-classmap": [
  5799. "/Tests/"
  5800. ]
  5801. },
  5802. "notification-url": "https://packagist.org/downloads/",
  5803. "license": [
  5804. "MIT"
  5805. ],
  5806. "authors": [
  5807. {
  5808. "name": "Fabien Potencier",
  5809. "email": "fabien@symfony.com"
  5810. },
  5811. {
  5812. "name": "Symfony Community",
  5813. "homepage": "https://symfony.com/contributors"
  5814. }
  5815. ],
  5816. "description": "Symfony Security Component - CSRF Library",
  5817. "homepage": "https://symfony.com",
  5818. "support": {
  5819. "source": "https://github.com/symfony/security-csrf/tree/v6.4.13"
  5820. },
  5821. "funding": [
  5822. {
  5823. "url": "https://symfony.com/sponsor",
  5824. "type": "custom"
  5825. },
  5826. {
  5827. "url": "https://github.com/fabpot",
  5828. "type": "github"
  5829. },
  5830. {
  5831. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5832. "type": "tidelift"
  5833. }
  5834. ],
  5835. "time": "2024-09-25T14:18:03+00:00"
  5836. },
  5837. {
  5838. "name": "symfony/security-http",
  5839. "version": "v6.4.15",
  5840. "source": {
  5841. "type": "git",
  5842. "url": "https://github.com/symfony/security-http.git",
  5843. "reference": "ded1e078f952e686b058d9eac98e497bea47b308"
  5844. },
  5845. "dist": {
  5846. "type": "zip",
  5847. "url": "https://api.github.com/repos/symfony/security-http/zipball/ded1e078f952e686b058d9eac98e497bea47b308",
  5848. "reference": "ded1e078f952e686b058d9eac98e497bea47b308",
  5849. "shasum": ""
  5850. },
  5851. "require": {
  5852. "php": ">=8.1",
  5853. "symfony/deprecation-contracts": "^2.5|^3",
  5854. "symfony/http-foundation": "^6.2|^7.0",
  5855. "symfony/http-kernel": "^6.3|^7.0",
  5856. "symfony/polyfill-mbstring": "~1.0",
  5857. "symfony/property-access": "^5.4|^6.0|^7.0",
  5858. "symfony/security-core": "^6.4|^7.0",
  5859. "symfony/service-contracts": "^2.5|^3"
  5860. },
  5861. "conflict": {
  5862. "symfony/clock": "<6.3",
  5863. "symfony/event-dispatcher": "<5.4.9|>=6,<6.0.9",
  5864. "symfony/http-client-contracts": "<3.0",
  5865. "symfony/security-bundle": "<5.4",
  5866. "symfony/security-csrf": "<5.4"
  5867. },
  5868. "require-dev": {
  5869. "psr/log": "^1|^2|^3",
  5870. "symfony/cache": "^5.4|^6.0|^7.0",
  5871. "symfony/clock": "^6.3|^7.0",
  5872. "symfony/expression-language": "^5.4|^6.0|^7.0",
  5873. "symfony/http-client-contracts": "^3.0",
  5874. "symfony/rate-limiter": "^5.4|^6.0|^7.0",
  5875. "symfony/routing": "^5.4|^6.0|^7.0",
  5876. "symfony/security-csrf": "^5.4|^6.0|^7.0",
  5877. "symfony/translation": "^5.4|^6.0|^7.0",
  5878. "web-token/jwt-checker": "^3.1",
  5879. "web-token/jwt-signature-algorithm-ecdsa": "^3.1"
  5880. },
  5881. "type": "library",
  5882. "autoload": {
  5883. "psr-4": {
  5884. "Symfony\\Component\\Security\\Http\\": ""
  5885. },
  5886. "exclude-from-classmap": [
  5887. "/Tests/"
  5888. ]
  5889. },
  5890. "notification-url": "https://packagist.org/downloads/",
  5891. "license": [
  5892. "MIT"
  5893. ],
  5894. "authors": [
  5895. {
  5896. "name": "Fabien Potencier",
  5897. "email": "fabien@symfony.com"
  5898. },
  5899. {
  5900. "name": "Symfony Community",
  5901. "homepage": "https://symfony.com/contributors"
  5902. }
  5903. ],
  5904. "description": "Symfony Security Component - HTTP Integration",
  5905. "homepage": "https://symfony.com",
  5906. "support": {
  5907. "source": "https://github.com/symfony/security-http/tree/v6.4.15"
  5908. },
  5909. "funding": [
  5910. {
  5911. "url": "https://symfony.com/sponsor",
  5912. "type": "custom"
  5913. },
  5914. {
  5915. "url": "https://github.com/fabpot",
  5916. "type": "github"
  5917. },
  5918. {
  5919. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5920. "type": "tidelift"
  5921. }
  5922. ],
  5923. "time": "2024-11-13T13:40:18+00:00"
  5924. },
  5925. {
  5926. "name": "symfony/serializer",
  5927. "version": "v6.4.15",
  5928. "source": {
  5929. "type": "git",
  5930. "url": "https://github.com/symfony/serializer.git",
  5931. "reference": "9d862d66198f3c2e30404228629ef4c18d5d608e"
  5932. },
  5933. "dist": {
  5934. "type": "zip",
  5935. "url": "https://api.github.com/repos/symfony/serializer/zipball/9d862d66198f3c2e30404228629ef4c18d5d608e",
  5936. "reference": "9d862d66198f3c2e30404228629ef4c18d5d608e",
  5937. "shasum": ""
  5938. },
  5939. "require": {
  5940. "php": ">=8.1",
  5941. "symfony/deprecation-contracts": "^2.5|^3",
  5942. "symfony/polyfill-ctype": "~1.8"
  5943. },
  5944. "conflict": {
  5945. "doctrine/annotations": "<1.12",
  5946. "phpdocumentor/reflection-docblock": "<3.2.2",
  5947. "phpdocumentor/type-resolver": "<1.4.0",
  5948. "symfony/dependency-injection": "<5.4",
  5949. "symfony/property-access": "<5.4",
  5950. "symfony/property-info": "<5.4.24|>=6,<6.2.11",
  5951. "symfony/uid": "<5.4",
  5952. "symfony/validator": "<6.4",
  5953. "symfony/yaml": "<5.4"
  5954. },
  5955. "require-dev": {
  5956. "doctrine/annotations": "^1.12|^2",
  5957. "phpdocumentor/reflection-docblock": "^3.2|^4.0|^5.0",
  5958. "seld/jsonlint": "^1.10",
  5959. "symfony/cache": "^5.4|^6.0|^7.0",
  5960. "symfony/config": "^5.4|^6.0|^7.0",
  5961. "symfony/console": "^5.4|^6.0|^7.0",
  5962. "symfony/dependency-injection": "^5.4|^6.0|^7.0",
  5963. "symfony/error-handler": "^5.4|^6.0|^7.0",
  5964. "symfony/filesystem": "^5.4|^6.0|^7.0",
  5965. "symfony/form": "^5.4|^6.0|^7.0",
  5966. "symfony/http-foundation": "^5.4|^6.0|^7.0",
  5967. "symfony/http-kernel": "^5.4|^6.0|^7.0",
  5968. "symfony/messenger": "^5.4|^6.0|^7.0",
  5969. "symfony/mime": "^5.4|^6.0|^7.0",
  5970. "symfony/property-access": "^5.4.26|^6.3|^7.0",
  5971. "symfony/property-info": "^5.4.24|^6.2.11|^7.0",
  5972. "symfony/translation-contracts": "^2.5|^3",
  5973. "symfony/uid": "^5.4|^6.0|^7.0",
  5974. "symfony/validator": "^6.4|^7.0",
  5975. "symfony/var-dumper": "^5.4|^6.0|^7.0",
  5976. "symfony/var-exporter": "^5.4|^6.0|^7.0",
  5977. "symfony/yaml": "^5.4|^6.0|^7.0"
  5978. },
  5979. "type": "library",
  5980. "autoload": {
  5981. "psr-4": {
  5982. "Symfony\\Component\\Serializer\\": ""
  5983. },
  5984. "exclude-from-classmap": [
  5985. "/Tests/"
  5986. ]
  5987. },
  5988. "notification-url": "https://packagist.org/downloads/",
  5989. "license": [
  5990. "MIT"
  5991. ],
  5992. "authors": [
  5993. {
  5994. "name": "Fabien Potencier",
  5995. "email": "fabien@symfony.com"
  5996. },
  5997. {
  5998. "name": "Symfony Community",
  5999. "homepage": "https://symfony.com/contributors"
  6000. }
  6001. ],
  6002. "description": "Handles serializing and deserializing data structures, including object graphs, into array structures or other formats like XML and JSON.",
  6003. "homepage": "https://symfony.com",
  6004. "support": {
  6005. "source": "https://github.com/symfony/serializer/tree/v6.4.15"
  6006. },
  6007. "funding": [
  6008. {
  6009. "url": "https://symfony.com/sponsor",
  6010. "type": "custom"
  6011. },
  6012. {
  6013. "url": "https://github.com/fabpot",
  6014. "type": "github"
  6015. },
  6016. {
  6017. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6018. "type": "tidelift"
  6019. }
  6020. ],
  6021. "time": "2024-10-23T13:25:59+00:00"
  6022. },
  6023. {
  6024. "name": "symfony/service-contracts",
  6025. "version": "v3.5.1",
  6026. "source": {
  6027. "type": "git",
  6028. "url": "https://github.com/symfony/service-contracts.git",
  6029. "reference": "e53260aabf78fb3d63f8d79d69ece59f80d5eda0"
  6030. },
  6031. "dist": {
  6032. "type": "zip",
  6033. "url": "https://api.github.com/repos/symfony/service-contracts/zipball/e53260aabf78fb3d63f8d79d69ece59f80d5eda0",
  6034. "reference": "e53260aabf78fb3d63f8d79d69ece59f80d5eda0",
  6035. "shasum": ""
  6036. },
  6037. "require": {
  6038. "php": ">=8.1",
  6039. "psr/container": "^1.1|^2.0",
  6040. "symfony/deprecation-contracts": "^2.5|^3"
  6041. },
  6042. "conflict": {
  6043. "ext-psr": "<1.1|>=2"
  6044. },
  6045. "type": "library",
  6046. "extra": {
  6047. "thanks": {
  6048. "url": "https://github.com/symfony/contracts",
  6049. "name": "symfony/contracts"
  6050. },
  6051. "branch-alias": {
  6052. "dev-main": "3.5-dev"
  6053. }
  6054. },
  6055. "autoload": {
  6056. "psr-4": {
  6057. "Symfony\\Contracts\\Service\\": ""
  6058. },
  6059. "exclude-from-classmap": [
  6060. "/Test/"
  6061. ]
  6062. },
  6063. "notification-url": "https://packagist.org/downloads/",
  6064. "license": [
  6065. "MIT"
  6066. ],
  6067. "authors": [
  6068. {
  6069. "name": "Nicolas Grekas",
  6070. "email": "p@tchwork.com"
  6071. },
  6072. {
  6073. "name": "Symfony Community",
  6074. "homepage": "https://symfony.com/contributors"
  6075. }
  6076. ],
  6077. "description": "Generic abstractions related to writing services",
  6078. "homepage": "https://symfony.com",
  6079. "keywords": [
  6080. "abstractions",
  6081. "contracts",
  6082. "decoupling",
  6083. "interfaces",
  6084. "interoperability",
  6085. "standards"
  6086. ],
  6087. "support": {
  6088. "source": "https://github.com/symfony/service-contracts/tree/v3.5.1"
  6089. },
  6090. "funding": [
  6091. {
  6092. "url": "https://symfony.com/sponsor",
  6093. "type": "custom"
  6094. },
  6095. {
  6096. "url": "https://github.com/fabpot",
  6097. "type": "github"
  6098. },
  6099. {
  6100. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6101. "type": "tidelift"
  6102. }
  6103. ],
  6104. "time": "2024-09-25T14:20:29+00:00"
  6105. },
  6106. {
  6107. "name": "symfony/stimulus-bundle",
  6108. "version": "v2.22.1",
  6109. "source": {
  6110. "type": "git",
  6111. "url": "https://github.com/symfony/stimulus-bundle.git",
  6112. "reference": "e13034d428354023c82a1db108d40fdf6cec2d36"
  6113. },
  6114. "dist": {
  6115. "type": "zip",
  6116. "url": "https://api.github.com/repos/symfony/stimulus-bundle/zipball/e13034d428354023c82a1db108d40fdf6cec2d36",
  6117. "reference": "e13034d428354023c82a1db108d40fdf6cec2d36",
  6118. "shasum": ""
  6119. },
  6120. "require": {
  6121. "php": ">=8.1",
  6122. "symfony/config": "^5.4|^6.0|^7.0",
  6123. "symfony/dependency-injection": "^5.4|^6.0|^7.0",
  6124. "symfony/deprecation-contracts": "^2.0|^3.0",
  6125. "symfony/finder": "^5.4|^6.0|^7.0",
  6126. "symfony/http-kernel": "^5.4|^6.0|^7.0",
  6127. "twig/twig": "^2.15.3|^3.8"
  6128. },
  6129. "require-dev": {
  6130. "symfony/asset-mapper": "^6.3|^7.0",
  6131. "symfony/framework-bundle": "^5.4|^6.0|^7.0",
  6132. "symfony/phpunit-bridge": "^5.4|^6.0|^7.0",
  6133. "symfony/twig-bundle": "^5.4|^6.0|^7.0",
  6134. "zenstruck/browser": "^1.4"
  6135. },
  6136. "type": "symfony-bundle",
  6137. "autoload": {
  6138. "psr-4": {
  6139. "Symfony\\UX\\StimulusBundle\\": "src"
  6140. }
  6141. },
  6142. "notification-url": "https://packagist.org/downloads/",
  6143. "license": [
  6144. "MIT"
  6145. ],
  6146. "authors": [
  6147. {
  6148. "name": "Symfony Community",
  6149. "homepage": "https://symfony.com/contributors"
  6150. }
  6151. ],
  6152. "description": "Integration with your Symfony app & Stimulus!",
  6153. "keywords": [
  6154. "symfony-ux"
  6155. ],
  6156. "support": {
  6157. "source": "https://github.com/symfony/stimulus-bundle/tree/v2.22.1"
  6158. },
  6159. "funding": [
  6160. {
  6161. "url": "https://symfony.com/sponsor",
  6162. "type": "custom"
  6163. },
  6164. {
  6165. "url": "https://github.com/fabpot",
  6166. "type": "github"
  6167. },
  6168. {
  6169. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6170. "type": "tidelift"
  6171. }
  6172. ],
  6173. "time": "2024-12-06T14:30:33+00:00"
  6174. },
  6175. {
  6176. "name": "symfony/stopwatch",
  6177. "version": "v6.4.13",
  6178. "source": {
  6179. "type": "git",
  6180. "url": "https://github.com/symfony/stopwatch.git",
  6181. "reference": "2cae0a6f8d04937d02f6d19806251e2104d54f92"
  6182. },
  6183. "dist": {
  6184. "type": "zip",
  6185. "url": "https://api.github.com/repos/symfony/stopwatch/zipball/2cae0a6f8d04937d02f6d19806251e2104d54f92",
  6186. "reference": "2cae0a6f8d04937d02f6d19806251e2104d54f92",
  6187. "shasum": ""
  6188. },
  6189. "require": {
  6190. "php": ">=8.1",
  6191. "symfony/service-contracts": "^2.5|^3"
  6192. },
  6193. "type": "library",
  6194. "autoload": {
  6195. "psr-4": {
  6196. "Symfony\\Component\\Stopwatch\\": ""
  6197. },
  6198. "exclude-from-classmap": [
  6199. "/Tests/"
  6200. ]
  6201. },
  6202. "notification-url": "https://packagist.org/downloads/",
  6203. "license": [
  6204. "MIT"
  6205. ],
  6206. "authors": [
  6207. {
  6208. "name": "Fabien Potencier",
  6209. "email": "fabien@symfony.com"
  6210. },
  6211. {
  6212. "name": "Symfony Community",
  6213. "homepage": "https://symfony.com/contributors"
  6214. }
  6215. ],
  6216. "description": "Provides a way to profile code",
  6217. "homepage": "https://symfony.com",
  6218. "support": {
  6219. "source": "https://github.com/symfony/stopwatch/tree/v6.4.13"
  6220. },
  6221. "funding": [
  6222. {
  6223. "url": "https://symfony.com/sponsor",
  6224. "type": "custom"
  6225. },
  6226. {
  6227. "url": "https://github.com/fabpot",
  6228. "type": "github"
  6229. },
  6230. {
  6231. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6232. "type": "tidelift"
  6233. }
  6234. ],
  6235. "time": "2024-09-25T14:18:03+00:00"
  6236. },
  6237. {
  6238. "name": "symfony/string",
  6239. "version": "v6.4.15",
  6240. "source": {
  6241. "type": "git",
  6242. "url": "https://github.com/symfony/string.git",
  6243. "reference": "73a5e66ea2e1677c98d4449177c5a9cf9d8b4c6f"
  6244. },
  6245. "dist": {
  6246. "type": "zip",
  6247. "url": "https://api.github.com/repos/symfony/string/zipball/73a5e66ea2e1677c98d4449177c5a9cf9d8b4c6f",
  6248. "reference": "73a5e66ea2e1677c98d4449177c5a9cf9d8b4c6f",
  6249. "shasum": ""
  6250. },
  6251. "require": {
  6252. "php": ">=8.1",
  6253. "symfony/polyfill-ctype": "~1.8",
  6254. "symfony/polyfill-intl-grapheme": "~1.0",
  6255. "symfony/polyfill-intl-normalizer": "~1.0",
  6256. "symfony/polyfill-mbstring": "~1.0"
  6257. },
  6258. "conflict": {
  6259. "symfony/translation-contracts": "<2.5"
  6260. },
  6261. "require-dev": {
  6262. "symfony/error-handler": "^5.4|^6.0|^7.0",
  6263. "symfony/http-client": "^5.4|^6.0|^7.0",
  6264. "symfony/intl": "^6.2|^7.0",
  6265. "symfony/translation-contracts": "^2.5|^3.0",
  6266. "symfony/var-exporter": "^5.4|^6.0|^7.0"
  6267. },
  6268. "type": "library",
  6269. "autoload": {
  6270. "files": [
  6271. "Resources/functions.php"
  6272. ],
  6273. "psr-4": {
  6274. "Symfony\\Component\\String\\": ""
  6275. },
  6276. "exclude-from-classmap": [
  6277. "/Tests/"
  6278. ]
  6279. },
  6280. "notification-url": "https://packagist.org/downloads/",
  6281. "license": [
  6282. "MIT"
  6283. ],
  6284. "authors": [
  6285. {
  6286. "name": "Nicolas Grekas",
  6287. "email": "p@tchwork.com"
  6288. },
  6289. {
  6290. "name": "Symfony Community",
  6291. "homepage": "https://symfony.com/contributors"
  6292. }
  6293. ],
  6294. "description": "Provides an object-oriented API to strings and deals with bytes, UTF-8 code points and grapheme clusters in a unified way",
  6295. "homepage": "https://symfony.com",
  6296. "keywords": [
  6297. "grapheme",
  6298. "i18n",
  6299. "string",
  6300. "unicode",
  6301. "utf-8",
  6302. "utf8"
  6303. ],
  6304. "support": {
  6305. "source": "https://github.com/symfony/string/tree/v6.4.15"
  6306. },
  6307. "funding": [
  6308. {
  6309. "url": "https://symfony.com/sponsor",
  6310. "type": "custom"
  6311. },
  6312. {
  6313. "url": "https://github.com/fabpot",
  6314. "type": "github"
  6315. },
  6316. {
  6317. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6318. "type": "tidelift"
  6319. }
  6320. ],
  6321. "time": "2024-11-13T13:31:12+00:00"
  6322. },
  6323. {
  6324. "name": "symfony/translation",
  6325. "version": "v6.4.13",
  6326. "source": {
  6327. "type": "git",
  6328. "url": "https://github.com/symfony/translation.git",
  6329. "reference": "bee9bfabfa8b4045a66bf82520e492cddbaffa66"
  6330. },
  6331. "dist": {
  6332. "type": "zip",
  6333. "url": "https://api.github.com/repos/symfony/translation/zipball/bee9bfabfa8b4045a66bf82520e492cddbaffa66",
  6334. "reference": "bee9bfabfa8b4045a66bf82520e492cddbaffa66",
  6335. "shasum": ""
  6336. },
  6337. "require": {
  6338. "php": ">=8.1",
  6339. "symfony/deprecation-contracts": "^2.5|^3",
  6340. "symfony/polyfill-mbstring": "~1.0",
  6341. "symfony/translation-contracts": "^2.5|^3.0"
  6342. },
  6343. "conflict": {
  6344. "symfony/config": "<5.4",
  6345. "symfony/console": "<5.4",
  6346. "symfony/dependency-injection": "<5.4",
  6347. "symfony/http-client-contracts": "<2.5",
  6348. "symfony/http-kernel": "<5.4",
  6349. "symfony/service-contracts": "<2.5",
  6350. "symfony/twig-bundle": "<5.4",
  6351. "symfony/yaml": "<5.4"
  6352. },
  6353. "provide": {
  6354. "symfony/translation-implementation": "2.3|3.0"
  6355. },
  6356. "require-dev": {
  6357. "nikic/php-parser": "^4.18|^5.0",
  6358. "psr/log": "^1|^2|^3",
  6359. "symfony/config": "^5.4|^6.0|^7.0",
  6360. "symfony/console": "^5.4|^6.0|^7.0",
  6361. "symfony/dependency-injection": "^5.4|^6.0|^7.0",
  6362. "symfony/finder": "^5.4|^6.0|^7.0",
  6363. "symfony/http-client-contracts": "^2.5|^3.0",
  6364. "symfony/http-kernel": "^5.4|^6.0|^7.0",
  6365. "symfony/intl": "^5.4|^6.0|^7.0",
  6366. "symfony/polyfill-intl-icu": "^1.21",
  6367. "symfony/routing": "^5.4|^6.0|^7.0",
  6368. "symfony/service-contracts": "^2.5|^3",
  6369. "symfony/yaml": "^5.4|^6.0|^7.0"
  6370. },
  6371. "type": "library",
  6372. "autoload": {
  6373. "files": [
  6374. "Resources/functions.php"
  6375. ],
  6376. "psr-4": {
  6377. "Symfony\\Component\\Translation\\": ""
  6378. },
  6379. "exclude-from-classmap": [
  6380. "/Tests/"
  6381. ]
  6382. },
  6383. "notification-url": "https://packagist.org/downloads/",
  6384. "license": [
  6385. "MIT"
  6386. ],
  6387. "authors": [
  6388. {
  6389. "name": "Fabien Potencier",
  6390. "email": "fabien@symfony.com"
  6391. },
  6392. {
  6393. "name": "Symfony Community",
  6394. "homepage": "https://symfony.com/contributors"
  6395. }
  6396. ],
  6397. "description": "Provides tools to internationalize your application",
  6398. "homepage": "https://symfony.com",
  6399. "support": {
  6400. "source": "https://github.com/symfony/translation/tree/v6.4.13"
  6401. },
  6402. "funding": [
  6403. {
  6404. "url": "https://symfony.com/sponsor",
  6405. "type": "custom"
  6406. },
  6407. {
  6408. "url": "https://github.com/fabpot",
  6409. "type": "github"
  6410. },
  6411. {
  6412. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6413. "type": "tidelift"
  6414. }
  6415. ],
  6416. "time": "2024-09-27T18:14:25+00:00"
  6417. },
  6418. {
  6419. "name": "symfony/translation-contracts",
  6420. "version": "v3.5.1",
  6421. "source": {
  6422. "type": "git",
  6423. "url": "https://github.com/symfony/translation-contracts.git",
  6424. "reference": "4667ff3bd513750603a09c8dedbea942487fb07c"
  6425. },
  6426. "dist": {
  6427. "type": "zip",
  6428. "url": "https://api.github.com/repos/symfony/translation-contracts/zipball/4667ff3bd513750603a09c8dedbea942487fb07c",
  6429. "reference": "4667ff3bd513750603a09c8dedbea942487fb07c",
  6430. "shasum": ""
  6431. },
  6432. "require": {
  6433. "php": ">=8.1"
  6434. },
  6435. "type": "library",
  6436. "extra": {
  6437. "thanks": {
  6438. "url": "https://github.com/symfony/contracts",
  6439. "name": "symfony/contracts"
  6440. },
  6441. "branch-alias": {
  6442. "dev-main": "3.5-dev"
  6443. }
  6444. },
  6445. "autoload": {
  6446. "psr-4": {
  6447. "Symfony\\Contracts\\Translation\\": ""
  6448. },
  6449. "exclude-from-classmap": [
  6450. "/Test/"
  6451. ]
  6452. },
  6453. "notification-url": "https://packagist.org/downloads/",
  6454. "license": [
  6455. "MIT"
  6456. ],
  6457. "authors": [
  6458. {
  6459. "name": "Nicolas Grekas",
  6460. "email": "p@tchwork.com"
  6461. },
  6462. {
  6463. "name": "Symfony Community",
  6464. "homepage": "https://symfony.com/contributors"
  6465. }
  6466. ],
  6467. "description": "Generic abstractions related to translation",
  6468. "homepage": "https://symfony.com",
  6469. "keywords": [
  6470. "abstractions",
  6471. "contracts",
  6472. "decoupling",
  6473. "interfaces",
  6474. "interoperability",
  6475. "standards"
  6476. ],
  6477. "support": {
  6478. "source": "https://github.com/symfony/translation-contracts/tree/v3.5.1"
  6479. },
  6480. "funding": [
  6481. {
  6482. "url": "https://symfony.com/sponsor",
  6483. "type": "custom"
  6484. },
  6485. {
  6486. "url": "https://github.com/fabpot",
  6487. "type": "github"
  6488. },
  6489. {
  6490. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6491. "type": "tidelift"
  6492. }
  6493. ],
  6494. "time": "2024-09-25T14:20:29+00:00"
  6495. },
  6496. {
  6497. "name": "symfony/twig-bridge",
  6498. "version": "v6.4.17",
  6499. "source": {
  6500. "type": "git",
  6501. "url": "https://github.com/symfony/twig-bridge.git",
  6502. "reference": "238e1aac992b5231c66faf10131ace7bdba97065"
  6503. },
  6504. "dist": {
  6505. "type": "zip",
  6506. "url": "https://api.github.com/repos/symfony/twig-bridge/zipball/238e1aac992b5231c66faf10131ace7bdba97065",
  6507. "reference": "238e1aac992b5231c66faf10131ace7bdba97065",
  6508. "shasum": ""
  6509. },
  6510. "require": {
  6511. "php": ">=8.1",
  6512. "symfony/deprecation-contracts": "^2.5|^3",
  6513. "symfony/translation-contracts": "^2.5|^3",
  6514. "twig/twig": "^2.13|^3.0.4"
  6515. },
  6516. "conflict": {
  6517. "phpdocumentor/reflection-docblock": "<3.2.2",
  6518. "phpdocumentor/type-resolver": "<1.4.0",
  6519. "symfony/console": "<5.4",
  6520. "symfony/form": "<6.3",
  6521. "symfony/http-foundation": "<5.4",
  6522. "symfony/http-kernel": "<6.4",
  6523. "symfony/mime": "<6.2",
  6524. "symfony/serializer": "<6.4",
  6525. "symfony/translation": "<5.4",
  6526. "symfony/workflow": "<5.4"
  6527. },
  6528. "require-dev": {
  6529. "egulias/email-validator": "^2.1.10|^3|^4",
  6530. "league/html-to-markdown": "^5.0",
  6531. "phpdocumentor/reflection-docblock": "^3.0|^4.0|^5.0",
  6532. "symfony/asset": "^5.4|^6.0|^7.0",
  6533. "symfony/asset-mapper": "^6.3|^7.0",
  6534. "symfony/console": "^5.4|^6.0|^7.0",
  6535. "symfony/dependency-injection": "^5.4|^6.0|^7.0",
  6536. "symfony/expression-language": "^5.4|^6.0|^7.0",
  6537. "symfony/finder": "^5.4|^6.0|^7.0",
  6538. "symfony/form": "^6.4|^7.0",
  6539. "symfony/html-sanitizer": "^6.1|^7.0",
  6540. "symfony/http-foundation": "^5.4|^6.0|^7.0",
  6541. "symfony/http-kernel": "^6.4|^7.0",
  6542. "symfony/intl": "^5.4|^6.0|^7.0",
  6543. "symfony/mime": "^6.2|^7.0",
  6544. "symfony/polyfill-intl-icu": "~1.0",
  6545. "symfony/property-info": "^5.4|^6.0|^7.0",
  6546. "symfony/routing": "^5.4|^6.0|^7.0",
  6547. "symfony/security-acl": "^2.8|^3.0",
  6548. "symfony/security-core": "^5.4|^6.0|^7.0",
  6549. "symfony/security-csrf": "^5.4|^6.0|^7.0",
  6550. "symfony/security-http": "^5.4|^6.0|^7.0",
  6551. "symfony/serializer": "^6.4.3|^7.0.3",
  6552. "symfony/stopwatch": "^5.4|^6.0|^7.0",
  6553. "symfony/translation": "^6.1|^7.0",
  6554. "symfony/web-link": "^5.4|^6.0|^7.0",
  6555. "symfony/workflow": "^5.4|^6.0|^7.0",
  6556. "symfony/yaml": "^5.4|^6.0|^7.0",
  6557. "twig/cssinliner-extra": "^2.12|^3",
  6558. "twig/inky-extra": "^2.12|^3",
  6559. "twig/markdown-extra": "^2.12|^3"
  6560. },
  6561. "type": "symfony-bridge",
  6562. "autoload": {
  6563. "psr-4": {
  6564. "Symfony\\Bridge\\Twig\\": ""
  6565. },
  6566. "exclude-from-classmap": [
  6567. "/Tests/"
  6568. ]
  6569. },
  6570. "notification-url": "https://packagist.org/downloads/",
  6571. "license": [
  6572. "MIT"
  6573. ],
  6574. "authors": [
  6575. {
  6576. "name": "Fabien Potencier",
  6577. "email": "fabien@symfony.com"
  6578. },
  6579. {
  6580. "name": "Symfony Community",
  6581. "homepage": "https://symfony.com/contributors"
  6582. }
  6583. ],
  6584. "description": "Provides integration for Twig with various Symfony components",
  6585. "homepage": "https://symfony.com",
  6586. "support": {
  6587. "source": "https://github.com/symfony/twig-bridge/tree/v6.4.17"
  6588. },
  6589. "funding": [
  6590. {
  6591. "url": "https://symfony.com/sponsor",
  6592. "type": "custom"
  6593. },
  6594. {
  6595. "url": "https://github.com/fabpot",
  6596. "type": "github"
  6597. },
  6598. {
  6599. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6600. "type": "tidelift"
  6601. }
  6602. ],
  6603. "time": "2024-12-19T14:08:41+00:00"
  6604. },
  6605. {
  6606. "name": "symfony/twig-bundle",
  6607. "version": "v6.4.13",
  6608. "source": {
  6609. "type": "git",
  6610. "url": "https://github.com/symfony/twig-bundle.git",
  6611. "reference": "c3beeb5336aba1ea03c37e526968c2fde3ef25c4"
  6612. },
  6613. "dist": {
  6614. "type": "zip",
  6615. "url": "https://api.github.com/repos/symfony/twig-bundle/zipball/c3beeb5336aba1ea03c37e526968c2fde3ef25c4",
  6616. "reference": "c3beeb5336aba1ea03c37e526968c2fde3ef25c4",
  6617. "shasum": ""
  6618. },
  6619. "require": {
  6620. "composer-runtime-api": ">=2.1",
  6621. "php": ">=8.1",
  6622. "symfony/config": "^6.1|^7.0",
  6623. "symfony/dependency-injection": "^6.1|^7.0",
  6624. "symfony/http-foundation": "^5.4|^6.0|^7.0",
  6625. "symfony/http-kernel": "^6.2",
  6626. "symfony/twig-bridge": "^6.4",
  6627. "twig/twig": "^2.13|^3.0.4"
  6628. },
  6629. "conflict": {
  6630. "symfony/framework-bundle": "<5.4",
  6631. "symfony/translation": "<5.4"
  6632. },
  6633. "require-dev": {
  6634. "symfony/asset": "^5.4|^6.0|^7.0",
  6635. "symfony/expression-language": "^5.4|^6.0|^7.0",
  6636. "symfony/finder": "^5.4|^6.0|^7.0",
  6637. "symfony/form": "^5.4|^6.0|^7.0",
  6638. "symfony/framework-bundle": "^5.4|^6.0|^7.0",
  6639. "symfony/routing": "^5.4|^6.0|^7.0",
  6640. "symfony/stopwatch": "^5.4|^6.0|^7.0",
  6641. "symfony/translation": "^5.4|^6.0|^7.0",
  6642. "symfony/web-link": "^5.4|^6.0|^7.0",
  6643. "symfony/yaml": "^5.4|^6.0|^7.0"
  6644. },
  6645. "type": "symfony-bundle",
  6646. "autoload": {
  6647. "psr-4": {
  6648. "Symfony\\Bundle\\TwigBundle\\": ""
  6649. },
  6650. "exclude-from-classmap": [
  6651. "/Tests/"
  6652. ]
  6653. },
  6654. "notification-url": "https://packagist.org/downloads/",
  6655. "license": [
  6656. "MIT"
  6657. ],
  6658. "authors": [
  6659. {
  6660. "name": "Fabien Potencier",
  6661. "email": "fabien@symfony.com"
  6662. },
  6663. {
  6664. "name": "Symfony Community",
  6665. "homepage": "https://symfony.com/contributors"
  6666. }
  6667. ],
  6668. "description": "Provides a tight integration of Twig into the Symfony full-stack framework",
  6669. "homepage": "https://symfony.com",
  6670. "support": {
  6671. "source": "https://github.com/symfony/twig-bundle/tree/v6.4.13"
  6672. },
  6673. "funding": [
  6674. {
  6675. "url": "https://symfony.com/sponsor",
  6676. "type": "custom"
  6677. },
  6678. {
  6679. "url": "https://github.com/fabpot",
  6680. "type": "github"
  6681. },
  6682. {
  6683. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6684. "type": "tidelift"
  6685. }
  6686. ],
  6687. "time": "2024-09-25T14:18:03+00:00"
  6688. },
  6689. {
  6690. "name": "symfony/ux-turbo",
  6691. "version": "v2.22.1",
  6692. "source": {
  6693. "type": "git",
  6694. "url": "https://github.com/symfony/ux-turbo.git",
  6695. "reference": "97718ea4bca26f0db843c3c0de338d6900c5a002"
  6696. },
  6697. "dist": {
  6698. "type": "zip",
  6699. "url": "https://api.github.com/repos/symfony/ux-turbo/zipball/97718ea4bca26f0db843c3c0de338d6900c5a002",
  6700. "reference": "97718ea4bca26f0db843c3c0de338d6900c5a002",
  6701. "shasum": ""
  6702. },
  6703. "require": {
  6704. "php": ">=8.1",
  6705. "symfony/stimulus-bundle": "^2.9.1"
  6706. },
  6707. "conflict": {
  6708. "symfony/flex": "<1.13"
  6709. },
  6710. "require-dev": {
  6711. "dbrekelmans/bdi": "dev-main",
  6712. "doctrine/doctrine-bundle": "^2.4.3",
  6713. "doctrine/orm": "^2.8 | 3.0",
  6714. "phpstan/phpstan": "^1.10",
  6715. "symfony/asset-mapper": "^6.4|^7.0",
  6716. "symfony/debug-bundle": "^5.4|^6.0|^7.0",
  6717. "symfony/expression-language": "^5.4|^6.0|^7.0",
  6718. "symfony/form": "^5.4|^6.0|^7.0",
  6719. "symfony/framework-bundle": "^6.4|^7.0",
  6720. "symfony/mercure-bundle": "^0.3.7",
  6721. "symfony/messenger": "^5.4|^6.0|^7.0",
  6722. "symfony/panther": "^2.1",
  6723. "symfony/phpunit-bridge": "^5.4|^6.0|^7.0",
  6724. "symfony/process": "^5.4|6.3.*|^7.0",
  6725. "symfony/property-access": "^5.4|^6.0|^7.0",
  6726. "symfony/security-core": "^5.4|^6.0|^7.0",
  6727. "symfony/stopwatch": "^5.4|^6.0|^7.0",
  6728. "symfony/twig-bundle": "^6.4|^7.0",
  6729. "symfony/ux-twig-component": "^2.21",
  6730. "symfony/web-profiler-bundle": "^5.4|^6.0|^7.0"
  6731. },
  6732. "type": "symfony-bundle",
  6733. "extra": {
  6734. "thanks": {
  6735. "url": "https://github.com/symfony/ux",
  6736. "name": "symfony/ux"
  6737. }
  6738. },
  6739. "autoload": {
  6740. "psr-4": {
  6741. "Symfony\\UX\\Turbo\\": "src/"
  6742. }
  6743. },
  6744. "notification-url": "https://packagist.org/downloads/",
  6745. "license": [
  6746. "MIT"
  6747. ],
  6748. "authors": [
  6749. {
  6750. "name": "Kévin Dunglas",
  6751. "email": "kevin@dunglas.fr"
  6752. },
  6753. {
  6754. "name": "Symfony Community",
  6755. "homepage": "https://symfony.com/contributors"
  6756. }
  6757. ],
  6758. "description": "Hotwire Turbo integration for Symfony",
  6759. "homepage": "https://symfony.com",
  6760. "keywords": [
  6761. "hotwire",
  6762. "javascript",
  6763. "mercure",
  6764. "symfony-ux",
  6765. "turbo",
  6766. "turbo-stream"
  6767. ],
  6768. "support": {
  6769. "source": "https://github.com/symfony/ux-turbo/tree/v2.22.1"
  6770. },
  6771. "funding": [
  6772. {
  6773. "url": "https://symfony.com/sponsor",
  6774. "type": "custom"
  6775. },
  6776. {
  6777. "url": "https://github.com/fabpot",
  6778. "type": "github"
  6779. },
  6780. {
  6781. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6782. "type": "tidelift"
  6783. }
  6784. ],
  6785. "time": "2024-12-05T14:25:02+00:00"
  6786. },
  6787. {
  6788. "name": "symfony/validator",
  6789. "version": "v6.4.17",
  6790. "source": {
  6791. "type": "git",
  6792. "url": "https://github.com/symfony/validator.git",
  6793. "reference": "a3c19a0e542d427c207e22242043ef35b5b99a2c"
  6794. },
  6795. "dist": {
  6796. "type": "zip",
  6797. "url": "https://api.github.com/repos/symfony/validator/zipball/a3c19a0e542d427c207e22242043ef35b5b99a2c",
  6798. "reference": "a3c19a0e542d427c207e22242043ef35b5b99a2c",
  6799. "shasum": ""
  6800. },
  6801. "require": {
  6802. "php": ">=8.1",
  6803. "symfony/deprecation-contracts": "^2.5|^3",
  6804. "symfony/polyfill-ctype": "~1.8",
  6805. "symfony/polyfill-mbstring": "~1.0",
  6806. "symfony/polyfill-php83": "^1.27",
  6807. "symfony/translation-contracts": "^2.5|^3"
  6808. },
  6809. "conflict": {
  6810. "doctrine/annotations": "<1.13",
  6811. "doctrine/lexer": "<1.1",
  6812. "symfony/dependency-injection": "<5.4",
  6813. "symfony/expression-language": "<5.4",
  6814. "symfony/http-kernel": "<5.4",
  6815. "symfony/intl": "<5.4",
  6816. "symfony/property-info": "<5.4",
  6817. "symfony/translation": "<5.4.35|>=6.0,<6.3.12|>=6.4,<6.4.3|>=7.0,<7.0.3",
  6818. "symfony/yaml": "<5.4"
  6819. },
  6820. "require-dev": {
  6821. "doctrine/annotations": "^1.13|^2",
  6822. "egulias/email-validator": "^2.1.10|^3|^4",
  6823. "symfony/cache": "^5.4|^6.0|^7.0",
  6824. "symfony/config": "^5.4|^6.0|^7.0",
  6825. "symfony/console": "^5.4|^6.0|^7.0",
  6826. "symfony/dependency-injection": "^5.4|^6.0|^7.0",
  6827. "symfony/expression-language": "^5.4|^6.0|^7.0",
  6828. "symfony/finder": "^5.4|^6.0|^7.0",
  6829. "symfony/http-client": "^5.4|^6.0|^7.0",
  6830. "symfony/http-foundation": "^5.4|^6.0|^7.0",
  6831. "symfony/http-kernel": "^5.4|^6.0|^7.0",
  6832. "symfony/intl": "^5.4|^6.0|^7.0",
  6833. "symfony/mime": "^5.4|^6.0|^7.0",
  6834. "symfony/property-access": "^5.4|^6.0|^7.0",
  6835. "symfony/property-info": "^5.4|^6.0|^7.0",
  6836. "symfony/translation": "^5.4.35|~6.3.12|^6.4.3|^7.0.3",
  6837. "symfony/yaml": "^5.4|^6.0|^7.0"
  6838. },
  6839. "type": "library",
  6840. "autoload": {
  6841. "psr-4": {
  6842. "Symfony\\Component\\Validator\\": ""
  6843. },
  6844. "exclude-from-classmap": [
  6845. "/Tests/",
  6846. "/Resources/bin/"
  6847. ]
  6848. },
  6849. "notification-url": "https://packagist.org/downloads/",
  6850. "license": [
  6851. "MIT"
  6852. ],
  6853. "authors": [
  6854. {
  6855. "name": "Fabien Potencier",
  6856. "email": "fabien@symfony.com"
  6857. },
  6858. {
  6859. "name": "Symfony Community",
  6860. "homepage": "https://symfony.com/contributors"
  6861. }
  6862. ],
  6863. "description": "Provides tools to validate values",
  6864. "homepage": "https://symfony.com",
  6865. "support": {
  6866. "source": "https://github.com/symfony/validator/tree/v6.4.17"
  6867. },
  6868. "funding": [
  6869. {
  6870. "url": "https://symfony.com/sponsor",
  6871. "type": "custom"
  6872. },
  6873. {
  6874. "url": "https://github.com/fabpot",
  6875. "type": "github"
  6876. },
  6877. {
  6878. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6879. "type": "tidelift"
  6880. }
  6881. ],
  6882. "time": "2024-12-29T12:50:19+00:00"
  6883. },
  6884. {
  6885. "name": "symfony/var-dumper",
  6886. "version": "v6.4.15",
  6887. "source": {
  6888. "type": "git",
  6889. "url": "https://github.com/symfony/var-dumper.git",
  6890. "reference": "38254d5a5ac2e61f2b52f9caf54e7aa3c9d36b80"
  6891. },
  6892. "dist": {
  6893. "type": "zip",
  6894. "url": "https://api.github.com/repos/symfony/var-dumper/zipball/38254d5a5ac2e61f2b52f9caf54e7aa3c9d36b80",
  6895. "reference": "38254d5a5ac2e61f2b52f9caf54e7aa3c9d36b80",
  6896. "shasum": ""
  6897. },
  6898. "require": {
  6899. "php": ">=8.1",
  6900. "symfony/deprecation-contracts": "^2.5|^3",
  6901. "symfony/polyfill-mbstring": "~1.0"
  6902. },
  6903. "conflict": {
  6904. "symfony/console": "<5.4"
  6905. },
  6906. "require-dev": {
  6907. "ext-iconv": "*",
  6908. "symfony/console": "^5.4|^6.0|^7.0",
  6909. "symfony/error-handler": "^6.3|^7.0",
  6910. "symfony/http-kernel": "^5.4|^6.0|^7.0",
  6911. "symfony/process": "^5.4|^6.0|^7.0",
  6912. "symfony/uid": "^5.4|^6.0|^7.0",
  6913. "twig/twig": "^2.13|^3.0.4"
  6914. },
  6915. "bin": [
  6916. "Resources/bin/var-dump-server"
  6917. ],
  6918. "type": "library",
  6919. "autoload": {
  6920. "files": [
  6921. "Resources/functions/dump.php"
  6922. ],
  6923. "psr-4": {
  6924. "Symfony\\Component\\VarDumper\\": ""
  6925. },
  6926. "exclude-from-classmap": [
  6927. "/Tests/"
  6928. ]
  6929. },
  6930. "notification-url": "https://packagist.org/downloads/",
  6931. "license": [
  6932. "MIT"
  6933. ],
  6934. "authors": [
  6935. {
  6936. "name": "Nicolas Grekas",
  6937. "email": "p@tchwork.com"
  6938. },
  6939. {
  6940. "name": "Symfony Community",
  6941. "homepage": "https://symfony.com/contributors"
  6942. }
  6943. ],
  6944. "description": "Provides mechanisms for walking through any arbitrary PHP variable",
  6945. "homepage": "https://symfony.com",
  6946. "keywords": [
  6947. "debug",
  6948. "dump"
  6949. ],
  6950. "support": {
  6951. "source": "https://github.com/symfony/var-dumper/tree/v6.4.15"
  6952. },
  6953. "funding": [
  6954. {
  6955. "url": "https://symfony.com/sponsor",
  6956. "type": "custom"
  6957. },
  6958. {
  6959. "url": "https://github.com/fabpot",
  6960. "type": "github"
  6961. },
  6962. {
  6963. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6964. "type": "tidelift"
  6965. }
  6966. ],
  6967. "time": "2024-11-08T15:28:48+00:00"
  6968. },
  6969. {
  6970. "name": "symfony/var-exporter",
  6971. "version": "v6.4.13",
  6972. "source": {
  6973. "type": "git",
  6974. "url": "https://github.com/symfony/var-exporter.git",
  6975. "reference": "0f605f72a363f8743001038a176eeb2a11223b51"
  6976. },
  6977. "dist": {
  6978. "type": "zip",
  6979. "url": "https://api.github.com/repos/symfony/var-exporter/zipball/0f605f72a363f8743001038a176eeb2a11223b51",
  6980. "reference": "0f605f72a363f8743001038a176eeb2a11223b51",
  6981. "shasum": ""
  6982. },
  6983. "require": {
  6984. "php": ">=8.1",
  6985. "symfony/deprecation-contracts": "^2.5|^3"
  6986. },
  6987. "require-dev": {
  6988. "symfony/property-access": "^6.4|^7.0",
  6989. "symfony/serializer": "^6.4|^7.0",
  6990. "symfony/var-dumper": "^5.4|^6.0|^7.0"
  6991. },
  6992. "type": "library",
  6993. "autoload": {
  6994. "psr-4": {
  6995. "Symfony\\Component\\VarExporter\\": ""
  6996. },
  6997. "exclude-from-classmap": [
  6998. "/Tests/"
  6999. ]
  7000. },
  7001. "notification-url": "https://packagist.org/downloads/",
  7002. "license": [
  7003. "MIT"
  7004. ],
  7005. "authors": [
  7006. {
  7007. "name": "Nicolas Grekas",
  7008. "email": "p@tchwork.com"
  7009. },
  7010. {
  7011. "name": "Symfony Community",
  7012. "homepage": "https://symfony.com/contributors"
  7013. }
  7014. ],
  7015. "description": "Allows exporting any serializable PHP data structure to plain PHP code",
  7016. "homepage": "https://symfony.com",
  7017. "keywords": [
  7018. "clone",
  7019. "construct",
  7020. "export",
  7021. "hydrate",
  7022. "instantiate",
  7023. "lazy-loading",
  7024. "proxy",
  7025. "serialize"
  7026. ],
  7027. "support": {
  7028. "source": "https://github.com/symfony/var-exporter/tree/v6.4.13"
  7029. },
  7030. "funding": [
  7031. {
  7032. "url": "https://symfony.com/sponsor",
  7033. "type": "custom"
  7034. },
  7035. {
  7036. "url": "https://github.com/fabpot",
  7037. "type": "github"
  7038. },
  7039. {
  7040. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7041. "type": "tidelift"
  7042. }
  7043. ],
  7044. "time": "2024-09-25T14:18:03+00:00"
  7045. },
  7046. {
  7047. "name": "symfony/web-link",
  7048. "version": "v6.4.13",
  7049. "source": {
  7050. "type": "git",
  7051. "url": "https://github.com/symfony/web-link.git",
  7052. "reference": "4d188b64bb9a9c5e2e4d20c8d5fdce6bbbb32c94"
  7053. },
  7054. "dist": {
  7055. "type": "zip",
  7056. "url": "https://api.github.com/repos/symfony/web-link/zipball/4d188b64bb9a9c5e2e4d20c8d5fdce6bbbb32c94",
  7057. "reference": "4d188b64bb9a9c5e2e4d20c8d5fdce6bbbb32c94",
  7058. "shasum": ""
  7059. },
  7060. "require": {
  7061. "php": ">=8.1",
  7062. "psr/link": "^1.1|^2.0"
  7063. },
  7064. "conflict": {
  7065. "symfony/http-kernel": "<5.4"
  7066. },
  7067. "provide": {
  7068. "psr/link-implementation": "1.0|2.0"
  7069. },
  7070. "require-dev": {
  7071. "symfony/http-kernel": "^5.4|^6.0|^7.0"
  7072. },
  7073. "type": "library",
  7074. "autoload": {
  7075. "psr-4": {
  7076. "Symfony\\Component\\WebLink\\": ""
  7077. },
  7078. "exclude-from-classmap": [
  7079. "/Tests/"
  7080. ]
  7081. },
  7082. "notification-url": "https://packagist.org/downloads/",
  7083. "license": [
  7084. "MIT"
  7085. ],
  7086. "authors": [
  7087. {
  7088. "name": "Kévin Dunglas",
  7089. "email": "dunglas@gmail.com"
  7090. },
  7091. {
  7092. "name": "Symfony Community",
  7093. "homepage": "https://symfony.com/contributors"
  7094. }
  7095. ],
  7096. "description": "Manages links between resources",
  7097. "homepage": "https://symfony.com",
  7098. "keywords": [
  7099. "dns-prefetch",
  7100. "http",
  7101. "http2",
  7102. "link",
  7103. "performance",
  7104. "prefetch",
  7105. "preload",
  7106. "prerender",
  7107. "psr13",
  7108. "push"
  7109. ],
  7110. "support": {
  7111. "source": "https://github.com/symfony/web-link/tree/v6.4.13"
  7112. },
  7113. "funding": [
  7114. {
  7115. "url": "https://symfony.com/sponsor",
  7116. "type": "custom"
  7117. },
  7118. {
  7119. "url": "https://github.com/fabpot",
  7120. "type": "github"
  7121. },
  7122. {
  7123. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7124. "type": "tidelift"
  7125. }
  7126. ],
  7127. "time": "2024-09-25T14:18:03+00:00"
  7128. },
  7129. {
  7130. "name": "symfony/webpack-encore-bundle",
  7131. "version": "v2.2.0",
  7132. "source": {
  7133. "type": "git",
  7134. "url": "https://github.com/symfony/webpack-encore-bundle.git",
  7135. "reference": "e335394b68a775a9b2bd173a8ba4fd2001f3870c"
  7136. },
  7137. "dist": {
  7138. "type": "zip",
  7139. "url": "https://api.github.com/repos/symfony/webpack-encore-bundle/zipball/e335394b68a775a9b2bd173a8ba4fd2001f3870c",
  7140. "reference": "e335394b68a775a9b2bd173a8ba4fd2001f3870c",
  7141. "shasum": ""
  7142. },
  7143. "require": {
  7144. "php": ">=8.1.0",
  7145. "symfony/asset": "^5.4 || ^6.2 || ^7.0",
  7146. "symfony/config": "^5.4 || ^6.2 || ^7.0",
  7147. "symfony/dependency-injection": "^5.4 || ^6.2 || ^7.0",
  7148. "symfony/http-kernel": "^5.4 || ^6.2 || ^7.0",
  7149. "symfony/service-contracts": "^1.1.9 || ^2.1.3 || ^3.0"
  7150. },
  7151. "require-dev": {
  7152. "symfony/framework-bundle": "^5.4 || ^6.2 || ^7.0",
  7153. "symfony/http-client": "^5.4 || ^6.2 || ^7.0",
  7154. "symfony/phpunit-bridge": "^5.4 || ^6.2 || ^7.0",
  7155. "symfony/twig-bundle": "^5.4 || ^6.2 || ^7.0",
  7156. "symfony/web-link": "^5.4 || ^6.2 || ^7.0"
  7157. },
  7158. "type": "symfony-bundle",
  7159. "extra": {
  7160. "thanks": {
  7161. "url": "https://github.com/symfony/webpack-encore",
  7162. "name": "symfony/webpack-encore"
  7163. }
  7164. },
  7165. "autoload": {
  7166. "psr-4": {
  7167. "Symfony\\WebpackEncoreBundle\\": "src"
  7168. }
  7169. },
  7170. "notification-url": "https://packagist.org/downloads/",
  7171. "license": [
  7172. "MIT"
  7173. ],
  7174. "authors": [
  7175. {
  7176. "name": "Symfony Community",
  7177. "homepage": "https://symfony.com/contributors"
  7178. }
  7179. ],
  7180. "description": "Integration of your Symfony app with Webpack Encore",
  7181. "support": {
  7182. "issues": "https://github.com/symfony/webpack-encore-bundle/issues",
  7183. "source": "https://github.com/symfony/webpack-encore-bundle/tree/v2.2.0"
  7184. },
  7185. "funding": [
  7186. {
  7187. "url": "https://symfony.com/sponsor",
  7188. "type": "custom"
  7189. },
  7190. {
  7191. "url": "https://github.com/fabpot",
  7192. "type": "github"
  7193. },
  7194. {
  7195. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7196. "type": "tidelift"
  7197. }
  7198. ],
  7199. "time": "2024-10-02T07:27:19+00:00"
  7200. },
  7201. {
  7202. "name": "symfony/yaml",
  7203. "version": "v6.4.13",
  7204. "source": {
  7205. "type": "git",
  7206. "url": "https://github.com/symfony/yaml.git",
  7207. "reference": "e99b4e94d124b29ee4cf3140e1b537d2dad8cec9"
  7208. },
  7209. "dist": {
  7210. "type": "zip",
  7211. "url": "https://api.github.com/repos/symfony/yaml/zipball/e99b4e94d124b29ee4cf3140e1b537d2dad8cec9",
  7212. "reference": "e99b4e94d124b29ee4cf3140e1b537d2dad8cec9",
  7213. "shasum": ""
  7214. },
  7215. "require": {
  7216. "php": ">=8.1",
  7217. "symfony/deprecation-contracts": "^2.5|^3",
  7218. "symfony/polyfill-ctype": "^1.8"
  7219. },
  7220. "conflict": {
  7221. "symfony/console": "<5.4"
  7222. },
  7223. "require-dev": {
  7224. "symfony/console": "^5.4|^6.0|^7.0"
  7225. },
  7226. "bin": [
  7227. "Resources/bin/yaml-lint"
  7228. ],
  7229. "type": "library",
  7230. "autoload": {
  7231. "psr-4": {
  7232. "Symfony\\Component\\Yaml\\": ""
  7233. },
  7234. "exclude-from-classmap": [
  7235. "/Tests/"
  7236. ]
  7237. },
  7238. "notification-url": "https://packagist.org/downloads/",
  7239. "license": [
  7240. "MIT"
  7241. ],
  7242. "authors": [
  7243. {
  7244. "name": "Fabien Potencier",
  7245. "email": "fabien@symfony.com"
  7246. },
  7247. {
  7248. "name": "Symfony Community",
  7249. "homepage": "https://symfony.com/contributors"
  7250. }
  7251. ],
  7252. "description": "Loads and dumps YAML files",
  7253. "homepage": "https://symfony.com",
  7254. "support": {
  7255. "source": "https://github.com/symfony/yaml/tree/v6.4.13"
  7256. },
  7257. "funding": [
  7258. {
  7259. "url": "https://symfony.com/sponsor",
  7260. "type": "custom"
  7261. },
  7262. {
  7263. "url": "https://github.com/fabpot",
  7264. "type": "github"
  7265. },
  7266. {
  7267. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7268. "type": "tidelift"
  7269. }
  7270. ],
  7271. "time": "2024-09-25T14:18:03+00:00"
  7272. },
  7273. {
  7274. "name": "twig/extra-bundle",
  7275. "version": "v3.18.0",
  7276. "source": {
  7277. "type": "git",
  7278. "url": "https://github.com/twigphp/twig-extra-bundle.git",
  7279. "reference": "9746573ca4bc1cd03a767a183faadaf84e0c31fa"
  7280. },
  7281. "dist": {
  7282. "type": "zip",
  7283. "url": "https://api.github.com/repos/twigphp/twig-extra-bundle/zipball/9746573ca4bc1cd03a767a183faadaf84e0c31fa",
  7284. "reference": "9746573ca4bc1cd03a767a183faadaf84e0c31fa",
  7285. "shasum": ""
  7286. },
  7287. "require": {
  7288. "php": ">=8.0.2",
  7289. "symfony/framework-bundle": "^5.4|^6.4|^7.0",
  7290. "symfony/twig-bundle": "^5.4|^6.4|^7.0",
  7291. "twig/twig": "^3.2|^4.0"
  7292. },
  7293. "require-dev": {
  7294. "league/commonmark": "^1.0|^2.0",
  7295. "symfony/phpunit-bridge": "^6.4|^7.0",
  7296. "twig/cache-extra": "^3.0",
  7297. "twig/cssinliner-extra": "^3.0",
  7298. "twig/html-extra": "^3.0",
  7299. "twig/inky-extra": "^3.0",
  7300. "twig/intl-extra": "^3.0",
  7301. "twig/markdown-extra": "^3.0",
  7302. "twig/string-extra": "^3.0"
  7303. },
  7304. "type": "symfony-bundle",
  7305. "autoload": {
  7306. "psr-4": {
  7307. "Twig\\Extra\\TwigExtraBundle\\": ""
  7308. },
  7309. "exclude-from-classmap": [
  7310. "/Tests/"
  7311. ]
  7312. },
  7313. "notification-url": "https://packagist.org/downloads/",
  7314. "license": [
  7315. "MIT"
  7316. ],
  7317. "authors": [
  7318. {
  7319. "name": "Fabien Potencier",
  7320. "email": "fabien@symfony.com",
  7321. "homepage": "http://fabien.potencier.org",
  7322. "role": "Lead Developer"
  7323. }
  7324. ],
  7325. "description": "A Symfony bundle for extra Twig extensions",
  7326. "homepage": "https://twig.symfony.com",
  7327. "keywords": [
  7328. "bundle",
  7329. "extra",
  7330. "twig"
  7331. ],
  7332. "support": {
  7333. "source": "https://github.com/twigphp/twig-extra-bundle/tree/v3.18.0"
  7334. },
  7335. "funding": [
  7336. {
  7337. "url": "https://github.com/fabpot",
  7338. "type": "github"
  7339. },
  7340. {
  7341. "url": "https://tidelift.com/funding/github/packagist/twig/twig",
  7342. "type": "tidelift"
  7343. }
  7344. ],
  7345. "time": "2024-09-26T19:22:23+00:00"
  7346. },
  7347. {
  7348. "name": "twig/twig",
  7349. "version": "v3.18.0",
  7350. "source": {
  7351. "type": "git",
  7352. "url": "https://github.com/twigphp/Twig.git",
  7353. "reference": "acffa88cc2b40dbe42eaf3a5025d6c0d4600cc50"
  7354. },
  7355. "dist": {
  7356. "type": "zip",
  7357. "url": "https://api.github.com/repos/twigphp/Twig/zipball/acffa88cc2b40dbe42eaf3a5025d6c0d4600cc50",
  7358. "reference": "acffa88cc2b40dbe42eaf3a5025d6c0d4600cc50",
  7359. "shasum": ""
  7360. },
  7361. "require": {
  7362. "php": ">=8.0.2",
  7363. "symfony/deprecation-contracts": "^2.5|^3",
  7364. "symfony/polyfill-ctype": "^1.8",
  7365. "symfony/polyfill-mbstring": "^1.3",
  7366. "symfony/polyfill-php81": "^1.29"
  7367. },
  7368. "require-dev": {
  7369. "phpstan/phpstan": "^2.0",
  7370. "psr/container": "^1.0|^2.0",
  7371. "symfony/phpunit-bridge": "^5.4.9|^6.4|^7.0"
  7372. },
  7373. "type": "library",
  7374. "autoload": {
  7375. "files": [
  7376. "src/Resources/core.php",
  7377. "src/Resources/debug.php",
  7378. "src/Resources/escaper.php",
  7379. "src/Resources/string_loader.php"
  7380. ],
  7381. "psr-4": {
  7382. "Twig\\": "src/"
  7383. }
  7384. },
  7385. "notification-url": "https://packagist.org/downloads/",
  7386. "license": [
  7387. "BSD-3-Clause"
  7388. ],
  7389. "authors": [
  7390. {
  7391. "name": "Fabien Potencier",
  7392. "email": "fabien@symfony.com",
  7393. "homepage": "http://fabien.potencier.org",
  7394. "role": "Lead Developer"
  7395. },
  7396. {
  7397. "name": "Twig Team",
  7398. "role": "Contributors"
  7399. },
  7400. {
  7401. "name": "Armin Ronacher",
  7402. "email": "armin.ronacher@active-4.com",
  7403. "role": "Project Founder"
  7404. }
  7405. ],
  7406. "description": "Twig, the flexible, fast, and secure template language for PHP",
  7407. "homepage": "https://twig.symfony.com",
  7408. "keywords": [
  7409. "templating"
  7410. ],
  7411. "support": {
  7412. "issues": "https://github.com/twigphp/Twig/issues",
  7413. "source": "https://github.com/twigphp/Twig/tree/v3.18.0"
  7414. },
  7415. "funding": [
  7416. {
  7417. "url": "https://github.com/fabpot",
  7418. "type": "github"
  7419. },
  7420. {
  7421. "url": "https://tidelift.com/funding/github/packagist/twig/twig",
  7422. "type": "tidelift"
  7423. }
  7424. ],
  7425. "time": "2024-12-29T10:51:50+00:00"
  7426. },
  7427. {
  7428. "name": "webmozart/assert",
  7429. "version": "1.11.0",
  7430. "source": {
  7431. "type": "git",
  7432. "url": "https://github.com/webmozarts/assert.git",
  7433. "reference": "11cb2199493b2f8a3b53e7f19068fc6aac760991"
  7434. },
  7435. "dist": {
  7436. "type": "zip",
  7437. "url": "https://api.github.com/repos/webmozarts/assert/zipball/11cb2199493b2f8a3b53e7f19068fc6aac760991",
  7438. "reference": "11cb2199493b2f8a3b53e7f19068fc6aac760991",
  7439. "shasum": ""
  7440. },
  7441. "require": {
  7442. "ext-ctype": "*",
  7443. "php": "^7.2 || ^8.0"
  7444. },
  7445. "conflict": {
  7446. "phpstan/phpstan": "<0.12.20",
  7447. "vimeo/psalm": "<4.6.1 || 4.6.2"
  7448. },
  7449. "require-dev": {
  7450. "phpunit/phpunit": "^8.5.13"
  7451. },
  7452. "type": "library",
  7453. "extra": {
  7454. "branch-alias": {
  7455. "dev-master": "1.10-dev"
  7456. }
  7457. },
  7458. "autoload": {
  7459. "psr-4": {
  7460. "Webmozart\\Assert\\": "src/"
  7461. }
  7462. },
  7463. "notification-url": "https://packagist.org/downloads/",
  7464. "license": [
  7465. "MIT"
  7466. ],
  7467. "authors": [
  7468. {
  7469. "name": "Bernhard Schussek",
  7470. "email": "bschussek@gmail.com"
  7471. }
  7472. ],
  7473. "description": "Assertions to validate method input/output with nice error messages.",
  7474. "keywords": [
  7475. "assert",
  7476. "check",
  7477. "validate"
  7478. ],
  7479. "support": {
  7480. "issues": "https://github.com/webmozarts/assert/issues",
  7481. "source": "https://github.com/webmozarts/assert/tree/1.11.0"
  7482. },
  7483. "time": "2022-06-03T18:03:27+00:00"
  7484. }
  7485. ],
  7486. "packages-dev": [
  7487. {
  7488. "name": "masterminds/html5",
  7489. "version": "2.9.0",
  7490. "source": {
  7491. "type": "git",
  7492. "url": "https://github.com/Masterminds/html5-php.git",
  7493. "reference": "f5ac2c0b0a2eefca70b2ce32a5809992227e75a6"
  7494. },
  7495. "dist": {
  7496. "type": "zip",
  7497. "url": "https://api.github.com/repos/Masterminds/html5-php/zipball/f5ac2c0b0a2eefca70b2ce32a5809992227e75a6",
  7498. "reference": "f5ac2c0b0a2eefca70b2ce32a5809992227e75a6",
  7499. "shasum": ""
  7500. },
  7501. "require": {
  7502. "ext-dom": "*",
  7503. "php": ">=5.3.0"
  7504. },
  7505. "require-dev": {
  7506. "phpunit/phpunit": "^4.8.35 || ^5.7.21 || ^6 || ^7 || ^8 || ^9"
  7507. },
  7508. "type": "library",
  7509. "extra": {
  7510. "branch-alias": {
  7511. "dev-master": "2.7-dev"
  7512. }
  7513. },
  7514. "autoload": {
  7515. "psr-4": {
  7516. "Masterminds\\": "src"
  7517. }
  7518. },
  7519. "notification-url": "https://packagist.org/downloads/",
  7520. "license": [
  7521. "MIT"
  7522. ],
  7523. "authors": [
  7524. {
  7525. "name": "Matt Butcher",
  7526. "email": "technosophos@gmail.com"
  7527. },
  7528. {
  7529. "name": "Matt Farina",
  7530. "email": "matt@mattfarina.com"
  7531. },
  7532. {
  7533. "name": "Asmir Mustafic",
  7534. "email": "goetas@gmail.com"
  7535. }
  7536. ],
  7537. "description": "An HTML5 parser and serializer.",
  7538. "homepage": "http://masterminds.github.io/html5-php",
  7539. "keywords": [
  7540. "HTML5",
  7541. "dom",
  7542. "html",
  7543. "parser",
  7544. "querypath",
  7545. "serializer",
  7546. "xml"
  7547. ],
  7548. "support": {
  7549. "issues": "https://github.com/Masterminds/html5-php/issues",
  7550. "source": "https://github.com/Masterminds/html5-php/tree/2.9.0"
  7551. },
  7552. "time": "2024-03-31T07:05:07+00:00"
  7553. },
  7554. {
  7555. "name": "myclabs/deep-copy",
  7556. "version": "1.12.1",
  7557. "source": {
  7558. "type": "git",
  7559. "url": "https://github.com/myclabs/DeepCopy.git",
  7560. "reference": "123267b2c49fbf30d78a7b2d333f6be754b94845"
  7561. },
  7562. "dist": {
  7563. "type": "zip",
  7564. "url": "https://api.github.com/repos/myclabs/DeepCopy/zipball/123267b2c49fbf30d78a7b2d333f6be754b94845",
  7565. "reference": "123267b2c49fbf30d78a7b2d333f6be754b94845",
  7566. "shasum": ""
  7567. },
  7568. "require": {
  7569. "php": "^7.1 || ^8.0"
  7570. },
  7571. "conflict": {
  7572. "doctrine/collections": "<1.6.8",
  7573. "doctrine/common": "<2.13.3 || >=3 <3.2.2"
  7574. },
  7575. "require-dev": {
  7576. "doctrine/collections": "^1.6.8",
  7577. "doctrine/common": "^2.13.3 || ^3.2.2",
  7578. "phpspec/prophecy": "^1.10",
  7579. "phpunit/phpunit": "^7.5.20 || ^8.5.23 || ^9.5.13"
  7580. },
  7581. "type": "library",
  7582. "autoload": {
  7583. "files": [
  7584. "src/DeepCopy/deep_copy.php"
  7585. ],
  7586. "psr-4": {
  7587. "DeepCopy\\": "src/DeepCopy/"
  7588. }
  7589. },
  7590. "notification-url": "https://packagist.org/downloads/",
  7591. "license": [
  7592. "MIT"
  7593. ],
  7594. "description": "Create deep copies (clones) of your objects",
  7595. "keywords": [
  7596. "clone",
  7597. "copy",
  7598. "duplicate",
  7599. "object",
  7600. "object graph"
  7601. ],
  7602. "support": {
  7603. "issues": "https://github.com/myclabs/DeepCopy/issues",
  7604. "source": "https://github.com/myclabs/DeepCopy/tree/1.12.1"
  7605. },
  7606. "funding": [
  7607. {
  7608. "url": "https://tidelift.com/funding/github/packagist/myclabs/deep-copy",
  7609. "type": "tidelift"
  7610. }
  7611. ],
  7612. "time": "2024-11-08T17:47:46+00:00"
  7613. },
  7614. {
  7615. "name": "nikic/php-parser",
  7616. "version": "v5.4.0",
  7617. "source": {
  7618. "type": "git",
  7619. "url": "https://github.com/nikic/PHP-Parser.git",
  7620. "reference": "447a020a1f875a434d62f2a401f53b82a396e494"
  7621. },
  7622. "dist": {
  7623. "type": "zip",
  7624. "url": "https://api.github.com/repos/nikic/PHP-Parser/zipball/447a020a1f875a434d62f2a401f53b82a396e494",
  7625. "reference": "447a020a1f875a434d62f2a401f53b82a396e494",
  7626. "shasum": ""
  7627. },
  7628. "require": {
  7629. "ext-ctype": "*",
  7630. "ext-json": "*",
  7631. "ext-tokenizer": "*",
  7632. "php": ">=7.4"
  7633. },
  7634. "require-dev": {
  7635. "ircmaxell/php-yacc": "^0.0.7",
  7636. "phpunit/phpunit": "^9.0"
  7637. },
  7638. "bin": [
  7639. "bin/php-parse"
  7640. ],
  7641. "type": "library",
  7642. "extra": {
  7643. "branch-alias": {
  7644. "dev-master": "5.0-dev"
  7645. }
  7646. },
  7647. "autoload": {
  7648. "psr-4": {
  7649. "PhpParser\\": "lib/PhpParser"
  7650. }
  7651. },
  7652. "notification-url": "https://packagist.org/downloads/",
  7653. "license": [
  7654. "BSD-3-Clause"
  7655. ],
  7656. "authors": [
  7657. {
  7658. "name": "Nikita Popov"
  7659. }
  7660. ],
  7661. "description": "A PHP parser written in PHP",
  7662. "keywords": [
  7663. "parser",
  7664. "php"
  7665. ],
  7666. "support": {
  7667. "issues": "https://github.com/nikic/PHP-Parser/issues",
  7668. "source": "https://github.com/nikic/PHP-Parser/tree/v5.4.0"
  7669. },
  7670. "time": "2024-12-30T11:07:19+00:00"
  7671. },
  7672. {
  7673. "name": "phar-io/manifest",
  7674. "version": "2.0.4",
  7675. "source": {
  7676. "type": "git",
  7677. "url": "https://github.com/phar-io/manifest.git",
  7678. "reference": "54750ef60c58e43759730615a392c31c80e23176"
  7679. },
  7680. "dist": {
  7681. "type": "zip",
  7682. "url": "https://api.github.com/repos/phar-io/manifest/zipball/54750ef60c58e43759730615a392c31c80e23176",
  7683. "reference": "54750ef60c58e43759730615a392c31c80e23176",
  7684. "shasum": ""
  7685. },
  7686. "require": {
  7687. "ext-dom": "*",
  7688. "ext-libxml": "*",
  7689. "ext-phar": "*",
  7690. "ext-xmlwriter": "*",
  7691. "phar-io/version": "^3.0.1",
  7692. "php": "^7.2 || ^8.0"
  7693. },
  7694. "type": "library",
  7695. "extra": {
  7696. "branch-alias": {
  7697. "dev-master": "2.0.x-dev"
  7698. }
  7699. },
  7700. "autoload": {
  7701. "classmap": [
  7702. "src/"
  7703. ]
  7704. },
  7705. "notification-url": "https://packagist.org/downloads/",
  7706. "license": [
  7707. "BSD-3-Clause"
  7708. ],
  7709. "authors": [
  7710. {
  7711. "name": "Arne Blankerts",
  7712. "email": "arne@blankerts.de",
  7713. "role": "Developer"
  7714. },
  7715. {
  7716. "name": "Sebastian Heuer",
  7717. "email": "sebastian@phpeople.de",
  7718. "role": "Developer"
  7719. },
  7720. {
  7721. "name": "Sebastian Bergmann",
  7722. "email": "sebastian@phpunit.de",
  7723. "role": "Developer"
  7724. }
  7725. ],
  7726. "description": "Component for reading phar.io manifest information from a PHP Archive (PHAR)",
  7727. "support": {
  7728. "issues": "https://github.com/phar-io/manifest/issues",
  7729. "source": "https://github.com/phar-io/manifest/tree/2.0.4"
  7730. },
  7731. "funding": [
  7732. {
  7733. "url": "https://github.com/theseer",
  7734. "type": "github"
  7735. }
  7736. ],
  7737. "time": "2024-03-03T12:33:53+00:00"
  7738. },
  7739. {
  7740. "name": "phar-io/version",
  7741. "version": "3.2.1",
  7742. "source": {
  7743. "type": "git",
  7744. "url": "https://github.com/phar-io/version.git",
  7745. "reference": "4f7fd7836c6f332bb2933569e566a0d6c4cbed74"
  7746. },
  7747. "dist": {
  7748. "type": "zip",
  7749. "url": "https://api.github.com/repos/phar-io/version/zipball/4f7fd7836c6f332bb2933569e566a0d6c4cbed74",
  7750. "reference": "4f7fd7836c6f332bb2933569e566a0d6c4cbed74",
  7751. "shasum": ""
  7752. },
  7753. "require": {
  7754. "php": "^7.2 || ^8.0"
  7755. },
  7756. "type": "library",
  7757. "autoload": {
  7758. "classmap": [
  7759. "src/"
  7760. ]
  7761. },
  7762. "notification-url": "https://packagist.org/downloads/",
  7763. "license": [
  7764. "BSD-3-Clause"
  7765. ],
  7766. "authors": [
  7767. {
  7768. "name": "Arne Blankerts",
  7769. "email": "arne@blankerts.de",
  7770. "role": "Developer"
  7771. },
  7772. {
  7773. "name": "Sebastian Heuer",
  7774. "email": "sebastian@phpeople.de",
  7775. "role": "Developer"
  7776. },
  7777. {
  7778. "name": "Sebastian Bergmann",
  7779. "email": "sebastian@phpunit.de",
  7780. "role": "Developer"
  7781. }
  7782. ],
  7783. "description": "Library for handling version information and constraints",
  7784. "support": {
  7785. "issues": "https://github.com/phar-io/version/issues",
  7786. "source": "https://github.com/phar-io/version/tree/3.2.1"
  7787. },
  7788. "time": "2022-02-21T01:04:05+00:00"
  7789. },
  7790. {
  7791. "name": "phpunit/php-code-coverage",
  7792. "version": "9.2.32",
  7793. "source": {
  7794. "type": "git",
  7795. "url": "https://github.com/sebastianbergmann/php-code-coverage.git",
  7796. "reference": "85402a822d1ecf1db1096959413d35e1c37cf1a5"
  7797. },
  7798. "dist": {
  7799. "type": "zip",
  7800. "url": "https://api.github.com/repos/sebastianbergmann/php-code-coverage/zipball/85402a822d1ecf1db1096959413d35e1c37cf1a5",
  7801. "reference": "85402a822d1ecf1db1096959413d35e1c37cf1a5",
  7802. "shasum": ""
  7803. },
  7804. "require": {
  7805. "ext-dom": "*",
  7806. "ext-libxml": "*",
  7807. "ext-xmlwriter": "*",
  7808. "nikic/php-parser": "^4.19.1 || ^5.1.0",
  7809. "php": ">=7.3",
  7810. "phpunit/php-file-iterator": "^3.0.6",
  7811. "phpunit/php-text-template": "^2.0.4",
  7812. "sebastian/code-unit-reverse-lookup": "^2.0.3",
  7813. "sebastian/complexity": "^2.0.3",
  7814. "sebastian/environment": "^5.1.5",
  7815. "sebastian/lines-of-code": "^1.0.4",
  7816. "sebastian/version": "^3.0.2",
  7817. "theseer/tokenizer": "^1.2.3"
  7818. },
  7819. "require-dev": {
  7820. "phpunit/phpunit": "^9.6"
  7821. },
  7822. "suggest": {
  7823. "ext-pcov": "PHP extension that provides line coverage",
  7824. "ext-xdebug": "PHP extension that provides line coverage as well as branch and path coverage"
  7825. },
  7826. "type": "library",
  7827. "extra": {
  7828. "branch-alias": {
  7829. "dev-main": "9.2.x-dev"
  7830. }
  7831. },
  7832. "autoload": {
  7833. "classmap": [
  7834. "src/"
  7835. ]
  7836. },
  7837. "notification-url": "https://packagist.org/downloads/",
  7838. "license": [
  7839. "BSD-3-Clause"
  7840. ],
  7841. "authors": [
  7842. {
  7843. "name": "Sebastian Bergmann",
  7844. "email": "sebastian@phpunit.de",
  7845. "role": "lead"
  7846. }
  7847. ],
  7848. "description": "Library that provides collection, processing, and rendering functionality for PHP code coverage information.",
  7849. "homepage": "https://github.com/sebastianbergmann/php-code-coverage",
  7850. "keywords": [
  7851. "coverage",
  7852. "testing",
  7853. "xunit"
  7854. ],
  7855. "support": {
  7856. "issues": "https://github.com/sebastianbergmann/php-code-coverage/issues",
  7857. "security": "https://github.com/sebastianbergmann/php-code-coverage/security/policy",
  7858. "source": "https://github.com/sebastianbergmann/php-code-coverage/tree/9.2.32"
  7859. },
  7860. "funding": [
  7861. {
  7862. "url": "https://github.com/sebastianbergmann",
  7863. "type": "github"
  7864. }
  7865. ],
  7866. "time": "2024-08-22T04:23:01+00:00"
  7867. },
  7868. {
  7869. "name": "phpunit/php-file-iterator",
  7870. "version": "3.0.6",
  7871. "source": {
  7872. "type": "git",
  7873. "url": "https://github.com/sebastianbergmann/php-file-iterator.git",
  7874. "reference": "cf1c2e7c203ac650e352f4cc675a7021e7d1b3cf"
  7875. },
  7876. "dist": {
  7877. "type": "zip",
  7878. "url": "https://api.github.com/repos/sebastianbergmann/php-file-iterator/zipball/cf1c2e7c203ac650e352f4cc675a7021e7d1b3cf",
  7879. "reference": "cf1c2e7c203ac650e352f4cc675a7021e7d1b3cf",
  7880. "shasum": ""
  7881. },
  7882. "require": {
  7883. "php": ">=7.3"
  7884. },
  7885. "require-dev": {
  7886. "phpunit/phpunit": "^9.3"
  7887. },
  7888. "type": "library",
  7889. "extra": {
  7890. "branch-alias": {
  7891. "dev-master": "3.0-dev"
  7892. }
  7893. },
  7894. "autoload": {
  7895. "classmap": [
  7896. "src/"
  7897. ]
  7898. },
  7899. "notification-url": "https://packagist.org/downloads/",
  7900. "license": [
  7901. "BSD-3-Clause"
  7902. ],
  7903. "authors": [
  7904. {
  7905. "name": "Sebastian Bergmann",
  7906. "email": "sebastian@phpunit.de",
  7907. "role": "lead"
  7908. }
  7909. ],
  7910. "description": "FilterIterator implementation that filters files based on a list of suffixes.",
  7911. "homepage": "https://github.com/sebastianbergmann/php-file-iterator/",
  7912. "keywords": [
  7913. "filesystem",
  7914. "iterator"
  7915. ],
  7916. "support": {
  7917. "issues": "https://github.com/sebastianbergmann/php-file-iterator/issues",
  7918. "source": "https://github.com/sebastianbergmann/php-file-iterator/tree/3.0.6"
  7919. },
  7920. "funding": [
  7921. {
  7922. "url": "https://github.com/sebastianbergmann",
  7923. "type": "github"
  7924. }
  7925. ],
  7926. "time": "2021-12-02T12:48:52+00:00"
  7927. },
  7928. {
  7929. "name": "phpunit/php-invoker",
  7930. "version": "3.1.1",
  7931. "source": {
  7932. "type": "git",
  7933. "url": "https://github.com/sebastianbergmann/php-invoker.git",
  7934. "reference": "5a10147d0aaf65b58940a0b72f71c9ac0423cc67"
  7935. },
  7936. "dist": {
  7937. "type": "zip",
  7938. "url": "https://api.github.com/repos/sebastianbergmann/php-invoker/zipball/5a10147d0aaf65b58940a0b72f71c9ac0423cc67",
  7939. "reference": "5a10147d0aaf65b58940a0b72f71c9ac0423cc67",
  7940. "shasum": ""
  7941. },
  7942. "require": {
  7943. "php": ">=7.3"
  7944. },
  7945. "require-dev": {
  7946. "ext-pcntl": "*",
  7947. "phpunit/phpunit": "^9.3"
  7948. },
  7949. "suggest": {
  7950. "ext-pcntl": "*"
  7951. },
  7952. "type": "library",
  7953. "extra": {
  7954. "branch-alias": {
  7955. "dev-master": "3.1-dev"
  7956. }
  7957. },
  7958. "autoload": {
  7959. "classmap": [
  7960. "src/"
  7961. ]
  7962. },
  7963. "notification-url": "https://packagist.org/downloads/",
  7964. "license": [
  7965. "BSD-3-Clause"
  7966. ],
  7967. "authors": [
  7968. {
  7969. "name": "Sebastian Bergmann",
  7970. "email": "sebastian@phpunit.de",
  7971. "role": "lead"
  7972. }
  7973. ],
  7974. "description": "Invoke callables with a timeout",
  7975. "homepage": "https://github.com/sebastianbergmann/php-invoker/",
  7976. "keywords": [
  7977. "process"
  7978. ],
  7979. "support": {
  7980. "issues": "https://github.com/sebastianbergmann/php-invoker/issues",
  7981. "source": "https://github.com/sebastianbergmann/php-invoker/tree/3.1.1"
  7982. },
  7983. "funding": [
  7984. {
  7985. "url": "https://github.com/sebastianbergmann",
  7986. "type": "github"
  7987. }
  7988. ],
  7989. "time": "2020-09-28T05:58:55+00:00"
  7990. },
  7991. {
  7992. "name": "phpunit/php-text-template",
  7993. "version": "2.0.4",
  7994. "source": {
  7995. "type": "git",
  7996. "url": "https://github.com/sebastianbergmann/php-text-template.git",
  7997. "reference": "5da5f67fc95621df9ff4c4e5a84d6a8a2acf7c28"
  7998. },
  7999. "dist": {
  8000. "type": "zip",
  8001. "url": "https://api.github.com/repos/sebastianbergmann/php-text-template/zipball/5da5f67fc95621df9ff4c4e5a84d6a8a2acf7c28",
  8002. "reference": "5da5f67fc95621df9ff4c4e5a84d6a8a2acf7c28",
  8003. "shasum": ""
  8004. },
  8005. "require": {
  8006. "php": ">=7.3"
  8007. },
  8008. "require-dev": {
  8009. "phpunit/phpunit": "^9.3"
  8010. },
  8011. "type": "library",
  8012. "extra": {
  8013. "branch-alias": {
  8014. "dev-master": "2.0-dev"
  8015. }
  8016. },
  8017. "autoload": {
  8018. "classmap": [
  8019. "src/"
  8020. ]
  8021. },
  8022. "notification-url": "https://packagist.org/downloads/",
  8023. "license": [
  8024. "BSD-3-Clause"
  8025. ],
  8026. "authors": [
  8027. {
  8028. "name": "Sebastian Bergmann",
  8029. "email": "sebastian@phpunit.de",
  8030. "role": "lead"
  8031. }
  8032. ],
  8033. "description": "Simple template engine.",
  8034. "homepage": "https://github.com/sebastianbergmann/php-text-template/",
  8035. "keywords": [
  8036. "template"
  8037. ],
  8038. "support": {
  8039. "issues": "https://github.com/sebastianbergmann/php-text-template/issues",
  8040. "source": "https://github.com/sebastianbergmann/php-text-template/tree/2.0.4"
  8041. },
  8042. "funding": [
  8043. {
  8044. "url": "https://github.com/sebastianbergmann",
  8045. "type": "github"
  8046. }
  8047. ],
  8048. "time": "2020-10-26T05:33:50+00:00"
  8049. },
  8050. {
  8051. "name": "phpunit/php-timer",
  8052. "version": "5.0.3",
  8053. "source": {
  8054. "type": "git",
  8055. "url": "https://github.com/sebastianbergmann/php-timer.git",
  8056. "reference": "5a63ce20ed1b5bf577850e2c4e87f4aa902afbd2"
  8057. },
  8058. "dist": {
  8059. "type": "zip",
  8060. "url": "https://api.github.com/repos/sebastianbergmann/php-timer/zipball/5a63ce20ed1b5bf577850e2c4e87f4aa902afbd2",
  8061. "reference": "5a63ce20ed1b5bf577850e2c4e87f4aa902afbd2",
  8062. "shasum": ""
  8063. },
  8064. "require": {
  8065. "php": ">=7.3"
  8066. },
  8067. "require-dev": {
  8068. "phpunit/phpunit": "^9.3"
  8069. },
  8070. "type": "library",
  8071. "extra": {
  8072. "branch-alias": {
  8073. "dev-master": "5.0-dev"
  8074. }
  8075. },
  8076. "autoload": {
  8077. "classmap": [
  8078. "src/"
  8079. ]
  8080. },
  8081. "notification-url": "https://packagist.org/downloads/",
  8082. "license": [
  8083. "BSD-3-Clause"
  8084. ],
  8085. "authors": [
  8086. {
  8087. "name": "Sebastian Bergmann",
  8088. "email": "sebastian@phpunit.de",
  8089. "role": "lead"
  8090. }
  8091. ],
  8092. "description": "Utility class for timing",
  8093. "homepage": "https://github.com/sebastianbergmann/php-timer/",
  8094. "keywords": [
  8095. "timer"
  8096. ],
  8097. "support": {
  8098. "issues": "https://github.com/sebastianbergmann/php-timer/issues",
  8099. "source": "https://github.com/sebastianbergmann/php-timer/tree/5.0.3"
  8100. },
  8101. "funding": [
  8102. {
  8103. "url": "https://github.com/sebastianbergmann",
  8104. "type": "github"
  8105. }
  8106. ],
  8107. "time": "2020-10-26T13:16:10+00:00"
  8108. },
  8109. {
  8110. "name": "phpunit/phpunit",
  8111. "version": "9.6.22",
  8112. "source": {
  8113. "type": "git",
  8114. "url": "https://github.com/sebastianbergmann/phpunit.git",
  8115. "reference": "f80235cb4d3caa59ae09be3adf1ded27521d1a9c"
  8116. },
  8117. "dist": {
  8118. "type": "zip",
  8119. "url": "https://api.github.com/repos/sebastianbergmann/phpunit/zipball/f80235cb4d3caa59ae09be3adf1ded27521d1a9c",
  8120. "reference": "f80235cb4d3caa59ae09be3adf1ded27521d1a9c",
  8121. "shasum": ""
  8122. },
  8123. "require": {
  8124. "doctrine/instantiator": "^1.5.0 || ^2",
  8125. "ext-dom": "*",
  8126. "ext-json": "*",
  8127. "ext-libxml": "*",
  8128. "ext-mbstring": "*",
  8129. "ext-xml": "*",
  8130. "ext-xmlwriter": "*",
  8131. "myclabs/deep-copy": "^1.12.1",
  8132. "phar-io/manifest": "^2.0.4",
  8133. "phar-io/version": "^3.2.1",
  8134. "php": ">=7.3",
  8135. "phpunit/php-code-coverage": "^9.2.32",
  8136. "phpunit/php-file-iterator": "^3.0.6",
  8137. "phpunit/php-invoker": "^3.1.1",
  8138. "phpunit/php-text-template": "^2.0.4",
  8139. "phpunit/php-timer": "^5.0.3",
  8140. "sebastian/cli-parser": "^1.0.2",
  8141. "sebastian/code-unit": "^1.0.8",
  8142. "sebastian/comparator": "^4.0.8",
  8143. "sebastian/diff": "^4.0.6",
  8144. "sebastian/environment": "^5.1.5",
  8145. "sebastian/exporter": "^4.0.6",
  8146. "sebastian/global-state": "^5.0.7",
  8147. "sebastian/object-enumerator": "^4.0.4",
  8148. "sebastian/resource-operations": "^3.0.4",
  8149. "sebastian/type": "^3.2.1",
  8150. "sebastian/version": "^3.0.2"
  8151. },
  8152. "suggest": {
  8153. "ext-soap": "To be able to generate mocks based on WSDL files",
  8154. "ext-xdebug": "PHP extension that provides line coverage as well as branch and path coverage"
  8155. },
  8156. "bin": [
  8157. "phpunit"
  8158. ],
  8159. "type": "library",
  8160. "extra": {
  8161. "branch-alias": {
  8162. "dev-master": "9.6-dev"
  8163. }
  8164. },
  8165. "autoload": {
  8166. "files": [
  8167. "src/Framework/Assert/Functions.php"
  8168. ],
  8169. "classmap": [
  8170. "src/"
  8171. ]
  8172. },
  8173. "notification-url": "https://packagist.org/downloads/",
  8174. "license": [
  8175. "BSD-3-Clause"
  8176. ],
  8177. "authors": [
  8178. {
  8179. "name": "Sebastian Bergmann",
  8180. "email": "sebastian@phpunit.de",
  8181. "role": "lead"
  8182. }
  8183. ],
  8184. "description": "The PHP Unit Testing framework.",
  8185. "homepage": "https://phpunit.de/",
  8186. "keywords": [
  8187. "phpunit",
  8188. "testing",
  8189. "xunit"
  8190. ],
  8191. "support": {
  8192. "issues": "https://github.com/sebastianbergmann/phpunit/issues",
  8193. "security": "https://github.com/sebastianbergmann/phpunit/security/policy",
  8194. "source": "https://github.com/sebastianbergmann/phpunit/tree/9.6.22"
  8195. },
  8196. "funding": [
  8197. {
  8198. "url": "https://phpunit.de/sponsors.html",
  8199. "type": "custom"
  8200. },
  8201. {
  8202. "url": "https://github.com/sebastianbergmann",
  8203. "type": "github"
  8204. },
  8205. {
  8206. "url": "https://tidelift.com/funding/github/packagist/phpunit/phpunit",
  8207. "type": "tidelift"
  8208. }
  8209. ],
  8210. "time": "2024-12-05T13:48:26+00:00"
  8211. },
  8212. {
  8213. "name": "sebastian/cli-parser",
  8214. "version": "1.0.2",
  8215. "source": {
  8216. "type": "git",
  8217. "url": "https://github.com/sebastianbergmann/cli-parser.git",
  8218. "reference": "2b56bea83a09de3ac06bb18b92f068e60cc6f50b"
  8219. },
  8220. "dist": {
  8221. "type": "zip",
  8222. "url": "https://api.github.com/repos/sebastianbergmann/cli-parser/zipball/2b56bea83a09de3ac06bb18b92f068e60cc6f50b",
  8223. "reference": "2b56bea83a09de3ac06bb18b92f068e60cc6f50b",
  8224. "shasum": ""
  8225. },
  8226. "require": {
  8227. "php": ">=7.3"
  8228. },
  8229. "require-dev": {
  8230. "phpunit/phpunit": "^9.3"
  8231. },
  8232. "type": "library",
  8233. "extra": {
  8234. "branch-alias": {
  8235. "dev-master": "1.0-dev"
  8236. }
  8237. },
  8238. "autoload": {
  8239. "classmap": [
  8240. "src/"
  8241. ]
  8242. },
  8243. "notification-url": "https://packagist.org/downloads/",
  8244. "license": [
  8245. "BSD-3-Clause"
  8246. ],
  8247. "authors": [
  8248. {
  8249. "name": "Sebastian Bergmann",
  8250. "email": "sebastian@phpunit.de",
  8251. "role": "lead"
  8252. }
  8253. ],
  8254. "description": "Library for parsing CLI options",
  8255. "homepage": "https://github.com/sebastianbergmann/cli-parser",
  8256. "support": {
  8257. "issues": "https://github.com/sebastianbergmann/cli-parser/issues",
  8258. "source": "https://github.com/sebastianbergmann/cli-parser/tree/1.0.2"
  8259. },
  8260. "funding": [
  8261. {
  8262. "url": "https://github.com/sebastianbergmann",
  8263. "type": "github"
  8264. }
  8265. ],
  8266. "time": "2024-03-02T06:27:43+00:00"
  8267. },
  8268. {
  8269. "name": "sebastian/code-unit",
  8270. "version": "1.0.8",
  8271. "source": {
  8272. "type": "git",
  8273. "url": "https://github.com/sebastianbergmann/code-unit.git",
  8274. "reference": "1fc9f64c0927627ef78ba436c9b17d967e68e120"
  8275. },
  8276. "dist": {
  8277. "type": "zip",
  8278. "url": "https://api.github.com/repos/sebastianbergmann/code-unit/zipball/1fc9f64c0927627ef78ba436c9b17d967e68e120",
  8279. "reference": "1fc9f64c0927627ef78ba436c9b17d967e68e120",
  8280. "shasum": ""
  8281. },
  8282. "require": {
  8283. "php": ">=7.3"
  8284. },
  8285. "require-dev": {
  8286. "phpunit/phpunit": "^9.3"
  8287. },
  8288. "type": "library",
  8289. "extra": {
  8290. "branch-alias": {
  8291. "dev-master": "1.0-dev"
  8292. }
  8293. },
  8294. "autoload": {
  8295. "classmap": [
  8296. "src/"
  8297. ]
  8298. },
  8299. "notification-url": "https://packagist.org/downloads/",
  8300. "license": [
  8301. "BSD-3-Clause"
  8302. ],
  8303. "authors": [
  8304. {
  8305. "name": "Sebastian Bergmann",
  8306. "email": "sebastian@phpunit.de",
  8307. "role": "lead"
  8308. }
  8309. ],
  8310. "description": "Collection of value objects that represent the PHP code units",
  8311. "homepage": "https://github.com/sebastianbergmann/code-unit",
  8312. "support": {
  8313. "issues": "https://github.com/sebastianbergmann/code-unit/issues",
  8314. "source": "https://github.com/sebastianbergmann/code-unit/tree/1.0.8"
  8315. },
  8316. "funding": [
  8317. {
  8318. "url": "https://github.com/sebastianbergmann",
  8319. "type": "github"
  8320. }
  8321. ],
  8322. "time": "2020-10-26T13:08:54+00:00"
  8323. },
  8324. {
  8325. "name": "sebastian/code-unit-reverse-lookup",
  8326. "version": "2.0.3",
  8327. "source": {
  8328. "type": "git",
  8329. "url": "https://github.com/sebastianbergmann/code-unit-reverse-lookup.git",
  8330. "reference": "ac91f01ccec49fb77bdc6fd1e548bc70f7faa3e5"
  8331. },
  8332. "dist": {
  8333. "type": "zip",
  8334. "url": "https://api.github.com/repos/sebastianbergmann/code-unit-reverse-lookup/zipball/ac91f01ccec49fb77bdc6fd1e548bc70f7faa3e5",
  8335. "reference": "ac91f01ccec49fb77bdc6fd1e548bc70f7faa3e5",
  8336. "shasum": ""
  8337. },
  8338. "require": {
  8339. "php": ">=7.3"
  8340. },
  8341. "require-dev": {
  8342. "phpunit/phpunit": "^9.3"
  8343. },
  8344. "type": "library",
  8345. "extra": {
  8346. "branch-alias": {
  8347. "dev-master": "2.0-dev"
  8348. }
  8349. },
  8350. "autoload": {
  8351. "classmap": [
  8352. "src/"
  8353. ]
  8354. },
  8355. "notification-url": "https://packagist.org/downloads/",
  8356. "license": [
  8357. "BSD-3-Clause"
  8358. ],
  8359. "authors": [
  8360. {
  8361. "name": "Sebastian Bergmann",
  8362. "email": "sebastian@phpunit.de"
  8363. }
  8364. ],
  8365. "description": "Looks up which function or method a line of code belongs to",
  8366. "homepage": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/",
  8367. "support": {
  8368. "issues": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/issues",
  8369. "source": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/tree/2.0.3"
  8370. },
  8371. "funding": [
  8372. {
  8373. "url": "https://github.com/sebastianbergmann",
  8374. "type": "github"
  8375. }
  8376. ],
  8377. "time": "2020-09-28T05:30:19+00:00"
  8378. },
  8379. {
  8380. "name": "sebastian/comparator",
  8381. "version": "4.0.8",
  8382. "source": {
  8383. "type": "git",
  8384. "url": "https://github.com/sebastianbergmann/comparator.git",
  8385. "reference": "fa0f136dd2334583309d32b62544682ee972b51a"
  8386. },
  8387. "dist": {
  8388. "type": "zip",
  8389. "url": "https://api.github.com/repos/sebastianbergmann/comparator/zipball/fa0f136dd2334583309d32b62544682ee972b51a",
  8390. "reference": "fa0f136dd2334583309d32b62544682ee972b51a",
  8391. "shasum": ""
  8392. },
  8393. "require": {
  8394. "php": ">=7.3",
  8395. "sebastian/diff": "^4.0",
  8396. "sebastian/exporter": "^4.0"
  8397. },
  8398. "require-dev": {
  8399. "phpunit/phpunit": "^9.3"
  8400. },
  8401. "type": "library",
  8402. "extra": {
  8403. "branch-alias": {
  8404. "dev-master": "4.0-dev"
  8405. }
  8406. },
  8407. "autoload": {
  8408. "classmap": [
  8409. "src/"
  8410. ]
  8411. },
  8412. "notification-url": "https://packagist.org/downloads/",
  8413. "license": [
  8414. "BSD-3-Clause"
  8415. ],
  8416. "authors": [
  8417. {
  8418. "name": "Sebastian Bergmann",
  8419. "email": "sebastian@phpunit.de"
  8420. },
  8421. {
  8422. "name": "Jeff Welch",
  8423. "email": "whatthejeff@gmail.com"
  8424. },
  8425. {
  8426. "name": "Volker Dusch",
  8427. "email": "github@wallbash.com"
  8428. },
  8429. {
  8430. "name": "Bernhard Schussek",
  8431. "email": "bschussek@2bepublished.at"
  8432. }
  8433. ],
  8434. "description": "Provides the functionality to compare PHP values for equality",
  8435. "homepage": "https://github.com/sebastianbergmann/comparator",
  8436. "keywords": [
  8437. "comparator",
  8438. "compare",
  8439. "equality"
  8440. ],
  8441. "support": {
  8442. "issues": "https://github.com/sebastianbergmann/comparator/issues",
  8443. "source": "https://github.com/sebastianbergmann/comparator/tree/4.0.8"
  8444. },
  8445. "funding": [
  8446. {
  8447. "url": "https://github.com/sebastianbergmann",
  8448. "type": "github"
  8449. }
  8450. ],
  8451. "time": "2022-09-14T12:41:17+00:00"
  8452. },
  8453. {
  8454. "name": "sebastian/complexity",
  8455. "version": "2.0.3",
  8456. "source": {
  8457. "type": "git",
  8458. "url": "https://github.com/sebastianbergmann/complexity.git",
  8459. "reference": "25f207c40d62b8b7aa32f5ab026c53561964053a"
  8460. },
  8461. "dist": {
  8462. "type": "zip",
  8463. "url": "https://api.github.com/repos/sebastianbergmann/complexity/zipball/25f207c40d62b8b7aa32f5ab026c53561964053a",
  8464. "reference": "25f207c40d62b8b7aa32f5ab026c53561964053a",
  8465. "shasum": ""
  8466. },
  8467. "require": {
  8468. "nikic/php-parser": "^4.18 || ^5.0",
  8469. "php": ">=7.3"
  8470. },
  8471. "require-dev": {
  8472. "phpunit/phpunit": "^9.3"
  8473. },
  8474. "type": "library",
  8475. "extra": {
  8476. "branch-alias": {
  8477. "dev-master": "2.0-dev"
  8478. }
  8479. },
  8480. "autoload": {
  8481. "classmap": [
  8482. "src/"
  8483. ]
  8484. },
  8485. "notification-url": "https://packagist.org/downloads/",
  8486. "license": [
  8487. "BSD-3-Clause"
  8488. ],
  8489. "authors": [
  8490. {
  8491. "name": "Sebastian Bergmann",
  8492. "email": "sebastian@phpunit.de",
  8493. "role": "lead"
  8494. }
  8495. ],
  8496. "description": "Library for calculating the complexity of PHP code units",
  8497. "homepage": "https://github.com/sebastianbergmann/complexity",
  8498. "support": {
  8499. "issues": "https://github.com/sebastianbergmann/complexity/issues",
  8500. "source": "https://github.com/sebastianbergmann/complexity/tree/2.0.3"
  8501. },
  8502. "funding": [
  8503. {
  8504. "url": "https://github.com/sebastianbergmann",
  8505. "type": "github"
  8506. }
  8507. ],
  8508. "time": "2023-12-22T06:19:30+00:00"
  8509. },
  8510. {
  8511. "name": "sebastian/diff",
  8512. "version": "4.0.6",
  8513. "source": {
  8514. "type": "git",
  8515. "url": "https://github.com/sebastianbergmann/diff.git",
  8516. "reference": "ba01945089c3a293b01ba9badc29ad55b106b0bc"
  8517. },
  8518. "dist": {
  8519. "type": "zip",
  8520. "url": "https://api.github.com/repos/sebastianbergmann/diff/zipball/ba01945089c3a293b01ba9badc29ad55b106b0bc",
  8521. "reference": "ba01945089c3a293b01ba9badc29ad55b106b0bc",
  8522. "shasum": ""
  8523. },
  8524. "require": {
  8525. "php": ">=7.3"
  8526. },
  8527. "require-dev": {
  8528. "phpunit/phpunit": "^9.3",
  8529. "symfony/process": "^4.2 || ^5"
  8530. },
  8531. "type": "library",
  8532. "extra": {
  8533. "branch-alias": {
  8534. "dev-master": "4.0-dev"
  8535. }
  8536. },
  8537. "autoload": {
  8538. "classmap": [
  8539. "src/"
  8540. ]
  8541. },
  8542. "notification-url": "https://packagist.org/downloads/",
  8543. "license": [
  8544. "BSD-3-Clause"
  8545. ],
  8546. "authors": [
  8547. {
  8548. "name": "Sebastian Bergmann",
  8549. "email": "sebastian@phpunit.de"
  8550. },
  8551. {
  8552. "name": "Kore Nordmann",
  8553. "email": "mail@kore-nordmann.de"
  8554. }
  8555. ],
  8556. "description": "Diff implementation",
  8557. "homepage": "https://github.com/sebastianbergmann/diff",
  8558. "keywords": [
  8559. "diff",
  8560. "udiff",
  8561. "unidiff",
  8562. "unified diff"
  8563. ],
  8564. "support": {
  8565. "issues": "https://github.com/sebastianbergmann/diff/issues",
  8566. "source": "https://github.com/sebastianbergmann/diff/tree/4.0.6"
  8567. },
  8568. "funding": [
  8569. {
  8570. "url": "https://github.com/sebastianbergmann",
  8571. "type": "github"
  8572. }
  8573. ],
  8574. "time": "2024-03-02T06:30:58+00:00"
  8575. },
  8576. {
  8577. "name": "sebastian/environment",
  8578. "version": "5.1.5",
  8579. "source": {
  8580. "type": "git",
  8581. "url": "https://github.com/sebastianbergmann/environment.git",
  8582. "reference": "830c43a844f1f8d5b7a1f6d6076b784454d8b7ed"
  8583. },
  8584. "dist": {
  8585. "type": "zip",
  8586. "url": "https://api.github.com/repos/sebastianbergmann/environment/zipball/830c43a844f1f8d5b7a1f6d6076b784454d8b7ed",
  8587. "reference": "830c43a844f1f8d5b7a1f6d6076b784454d8b7ed",
  8588. "shasum": ""
  8589. },
  8590. "require": {
  8591. "php": ">=7.3"
  8592. },
  8593. "require-dev": {
  8594. "phpunit/phpunit": "^9.3"
  8595. },
  8596. "suggest": {
  8597. "ext-posix": "*"
  8598. },
  8599. "type": "library",
  8600. "extra": {
  8601. "branch-alias": {
  8602. "dev-master": "5.1-dev"
  8603. }
  8604. },
  8605. "autoload": {
  8606. "classmap": [
  8607. "src/"
  8608. ]
  8609. },
  8610. "notification-url": "https://packagist.org/downloads/",
  8611. "license": [
  8612. "BSD-3-Clause"
  8613. ],
  8614. "authors": [
  8615. {
  8616. "name": "Sebastian Bergmann",
  8617. "email": "sebastian@phpunit.de"
  8618. }
  8619. ],
  8620. "description": "Provides functionality to handle HHVM/PHP environments",
  8621. "homepage": "http://www.github.com/sebastianbergmann/environment",
  8622. "keywords": [
  8623. "Xdebug",
  8624. "environment",
  8625. "hhvm"
  8626. ],
  8627. "support": {
  8628. "issues": "https://github.com/sebastianbergmann/environment/issues",
  8629. "source": "https://github.com/sebastianbergmann/environment/tree/5.1.5"
  8630. },
  8631. "funding": [
  8632. {
  8633. "url": "https://github.com/sebastianbergmann",
  8634. "type": "github"
  8635. }
  8636. ],
  8637. "time": "2023-02-03T06:03:51+00:00"
  8638. },
  8639. {
  8640. "name": "sebastian/exporter",
  8641. "version": "4.0.6",
  8642. "source": {
  8643. "type": "git",
  8644. "url": "https://github.com/sebastianbergmann/exporter.git",
  8645. "reference": "78c00df8f170e02473b682df15bfcdacc3d32d72"
  8646. },
  8647. "dist": {
  8648. "type": "zip",
  8649. "url": "https://api.github.com/repos/sebastianbergmann/exporter/zipball/78c00df8f170e02473b682df15bfcdacc3d32d72",
  8650. "reference": "78c00df8f170e02473b682df15bfcdacc3d32d72",
  8651. "shasum": ""
  8652. },
  8653. "require": {
  8654. "php": ">=7.3",
  8655. "sebastian/recursion-context": "^4.0"
  8656. },
  8657. "require-dev": {
  8658. "ext-mbstring": "*",
  8659. "phpunit/phpunit": "^9.3"
  8660. },
  8661. "type": "library",
  8662. "extra": {
  8663. "branch-alias": {
  8664. "dev-master": "4.0-dev"
  8665. }
  8666. },
  8667. "autoload": {
  8668. "classmap": [
  8669. "src/"
  8670. ]
  8671. },
  8672. "notification-url": "https://packagist.org/downloads/",
  8673. "license": [
  8674. "BSD-3-Clause"
  8675. ],
  8676. "authors": [
  8677. {
  8678. "name": "Sebastian Bergmann",
  8679. "email": "sebastian@phpunit.de"
  8680. },
  8681. {
  8682. "name": "Jeff Welch",
  8683. "email": "whatthejeff@gmail.com"
  8684. },
  8685. {
  8686. "name": "Volker Dusch",
  8687. "email": "github@wallbash.com"
  8688. },
  8689. {
  8690. "name": "Adam Harvey",
  8691. "email": "aharvey@php.net"
  8692. },
  8693. {
  8694. "name": "Bernhard Schussek",
  8695. "email": "bschussek@gmail.com"
  8696. }
  8697. ],
  8698. "description": "Provides the functionality to export PHP variables for visualization",
  8699. "homepage": "https://www.github.com/sebastianbergmann/exporter",
  8700. "keywords": [
  8701. "export",
  8702. "exporter"
  8703. ],
  8704. "support": {
  8705. "issues": "https://github.com/sebastianbergmann/exporter/issues",
  8706. "source": "https://github.com/sebastianbergmann/exporter/tree/4.0.6"
  8707. },
  8708. "funding": [
  8709. {
  8710. "url": "https://github.com/sebastianbergmann",
  8711. "type": "github"
  8712. }
  8713. ],
  8714. "time": "2024-03-02T06:33:00+00:00"
  8715. },
  8716. {
  8717. "name": "sebastian/global-state",
  8718. "version": "5.0.7",
  8719. "source": {
  8720. "type": "git",
  8721. "url": "https://github.com/sebastianbergmann/global-state.git",
  8722. "reference": "bca7df1f32ee6fe93b4d4a9abbf69e13a4ada2c9"
  8723. },
  8724. "dist": {
  8725. "type": "zip",
  8726. "url": "https://api.github.com/repos/sebastianbergmann/global-state/zipball/bca7df1f32ee6fe93b4d4a9abbf69e13a4ada2c9",
  8727. "reference": "bca7df1f32ee6fe93b4d4a9abbf69e13a4ada2c9",
  8728. "shasum": ""
  8729. },
  8730. "require": {
  8731. "php": ">=7.3",
  8732. "sebastian/object-reflector": "^2.0",
  8733. "sebastian/recursion-context": "^4.0"
  8734. },
  8735. "require-dev": {
  8736. "ext-dom": "*",
  8737. "phpunit/phpunit": "^9.3"
  8738. },
  8739. "suggest": {
  8740. "ext-uopz": "*"
  8741. },
  8742. "type": "library",
  8743. "extra": {
  8744. "branch-alias": {
  8745. "dev-master": "5.0-dev"
  8746. }
  8747. },
  8748. "autoload": {
  8749. "classmap": [
  8750. "src/"
  8751. ]
  8752. },
  8753. "notification-url": "https://packagist.org/downloads/",
  8754. "license": [
  8755. "BSD-3-Clause"
  8756. ],
  8757. "authors": [
  8758. {
  8759. "name": "Sebastian Bergmann",
  8760. "email": "sebastian@phpunit.de"
  8761. }
  8762. ],
  8763. "description": "Snapshotting of global state",
  8764. "homepage": "http://www.github.com/sebastianbergmann/global-state",
  8765. "keywords": [
  8766. "global state"
  8767. ],
  8768. "support": {
  8769. "issues": "https://github.com/sebastianbergmann/global-state/issues",
  8770. "source": "https://github.com/sebastianbergmann/global-state/tree/5.0.7"
  8771. },
  8772. "funding": [
  8773. {
  8774. "url": "https://github.com/sebastianbergmann",
  8775. "type": "github"
  8776. }
  8777. ],
  8778. "time": "2024-03-02T06:35:11+00:00"
  8779. },
  8780. {
  8781. "name": "sebastian/lines-of-code",
  8782. "version": "1.0.4",
  8783. "source": {
  8784. "type": "git",
  8785. "url": "https://github.com/sebastianbergmann/lines-of-code.git",
  8786. "reference": "e1e4a170560925c26d424b6a03aed157e7dcc5c5"
  8787. },
  8788. "dist": {
  8789. "type": "zip",
  8790. "url": "https://api.github.com/repos/sebastianbergmann/lines-of-code/zipball/e1e4a170560925c26d424b6a03aed157e7dcc5c5",
  8791. "reference": "e1e4a170560925c26d424b6a03aed157e7dcc5c5",
  8792. "shasum": ""
  8793. },
  8794. "require": {
  8795. "nikic/php-parser": "^4.18 || ^5.0",
  8796. "php": ">=7.3"
  8797. },
  8798. "require-dev": {
  8799. "phpunit/phpunit": "^9.3"
  8800. },
  8801. "type": "library",
  8802. "extra": {
  8803. "branch-alias": {
  8804. "dev-master": "1.0-dev"
  8805. }
  8806. },
  8807. "autoload": {
  8808. "classmap": [
  8809. "src/"
  8810. ]
  8811. },
  8812. "notification-url": "https://packagist.org/downloads/",
  8813. "license": [
  8814. "BSD-3-Clause"
  8815. ],
  8816. "authors": [
  8817. {
  8818. "name": "Sebastian Bergmann",
  8819. "email": "sebastian@phpunit.de",
  8820. "role": "lead"
  8821. }
  8822. ],
  8823. "description": "Library for counting the lines of code in PHP source code",
  8824. "homepage": "https://github.com/sebastianbergmann/lines-of-code",
  8825. "support": {
  8826. "issues": "https://github.com/sebastianbergmann/lines-of-code/issues",
  8827. "source": "https://github.com/sebastianbergmann/lines-of-code/tree/1.0.4"
  8828. },
  8829. "funding": [
  8830. {
  8831. "url": "https://github.com/sebastianbergmann",
  8832. "type": "github"
  8833. }
  8834. ],
  8835. "time": "2023-12-22T06:20:34+00:00"
  8836. },
  8837. {
  8838. "name": "sebastian/object-enumerator",
  8839. "version": "4.0.4",
  8840. "source": {
  8841. "type": "git",
  8842. "url": "https://github.com/sebastianbergmann/object-enumerator.git",
  8843. "reference": "5c9eeac41b290a3712d88851518825ad78f45c71"
  8844. },
  8845. "dist": {
  8846. "type": "zip",
  8847. "url": "https://api.github.com/repos/sebastianbergmann/object-enumerator/zipball/5c9eeac41b290a3712d88851518825ad78f45c71",
  8848. "reference": "5c9eeac41b290a3712d88851518825ad78f45c71",
  8849. "shasum": ""
  8850. },
  8851. "require": {
  8852. "php": ">=7.3",
  8853. "sebastian/object-reflector": "^2.0",
  8854. "sebastian/recursion-context": "^4.0"
  8855. },
  8856. "require-dev": {
  8857. "phpunit/phpunit": "^9.3"
  8858. },
  8859. "type": "library",
  8860. "extra": {
  8861. "branch-alias": {
  8862. "dev-master": "4.0-dev"
  8863. }
  8864. },
  8865. "autoload": {
  8866. "classmap": [
  8867. "src/"
  8868. ]
  8869. },
  8870. "notification-url": "https://packagist.org/downloads/",
  8871. "license": [
  8872. "BSD-3-Clause"
  8873. ],
  8874. "authors": [
  8875. {
  8876. "name": "Sebastian Bergmann",
  8877. "email": "sebastian@phpunit.de"
  8878. }
  8879. ],
  8880. "description": "Traverses array structures and object graphs to enumerate all referenced objects",
  8881. "homepage": "https://github.com/sebastianbergmann/object-enumerator/",
  8882. "support": {
  8883. "issues": "https://github.com/sebastianbergmann/object-enumerator/issues",
  8884. "source": "https://github.com/sebastianbergmann/object-enumerator/tree/4.0.4"
  8885. },
  8886. "funding": [
  8887. {
  8888. "url": "https://github.com/sebastianbergmann",
  8889. "type": "github"
  8890. }
  8891. ],
  8892. "time": "2020-10-26T13:12:34+00:00"
  8893. },
  8894. {
  8895. "name": "sebastian/object-reflector",
  8896. "version": "2.0.4",
  8897. "source": {
  8898. "type": "git",
  8899. "url": "https://github.com/sebastianbergmann/object-reflector.git",
  8900. "reference": "b4f479ebdbf63ac605d183ece17d8d7fe49c15c7"
  8901. },
  8902. "dist": {
  8903. "type": "zip",
  8904. "url": "https://api.github.com/repos/sebastianbergmann/object-reflector/zipball/b4f479ebdbf63ac605d183ece17d8d7fe49c15c7",
  8905. "reference": "b4f479ebdbf63ac605d183ece17d8d7fe49c15c7",
  8906. "shasum": ""
  8907. },
  8908. "require": {
  8909. "php": ">=7.3"
  8910. },
  8911. "require-dev": {
  8912. "phpunit/phpunit": "^9.3"
  8913. },
  8914. "type": "library",
  8915. "extra": {
  8916. "branch-alias": {
  8917. "dev-master": "2.0-dev"
  8918. }
  8919. },
  8920. "autoload": {
  8921. "classmap": [
  8922. "src/"
  8923. ]
  8924. },
  8925. "notification-url": "https://packagist.org/downloads/",
  8926. "license": [
  8927. "BSD-3-Clause"
  8928. ],
  8929. "authors": [
  8930. {
  8931. "name": "Sebastian Bergmann",
  8932. "email": "sebastian@phpunit.de"
  8933. }
  8934. ],
  8935. "description": "Allows reflection of object attributes, including inherited and non-public ones",
  8936. "homepage": "https://github.com/sebastianbergmann/object-reflector/",
  8937. "support": {
  8938. "issues": "https://github.com/sebastianbergmann/object-reflector/issues",
  8939. "source": "https://github.com/sebastianbergmann/object-reflector/tree/2.0.4"
  8940. },
  8941. "funding": [
  8942. {
  8943. "url": "https://github.com/sebastianbergmann",
  8944. "type": "github"
  8945. }
  8946. ],
  8947. "time": "2020-10-26T13:14:26+00:00"
  8948. },
  8949. {
  8950. "name": "sebastian/recursion-context",
  8951. "version": "4.0.5",
  8952. "source": {
  8953. "type": "git",
  8954. "url": "https://github.com/sebastianbergmann/recursion-context.git",
  8955. "reference": "e75bd0f07204fec2a0af9b0f3cfe97d05f92efc1"
  8956. },
  8957. "dist": {
  8958. "type": "zip",
  8959. "url": "https://api.github.com/repos/sebastianbergmann/recursion-context/zipball/e75bd0f07204fec2a0af9b0f3cfe97d05f92efc1",
  8960. "reference": "e75bd0f07204fec2a0af9b0f3cfe97d05f92efc1",
  8961. "shasum": ""
  8962. },
  8963. "require": {
  8964. "php": ">=7.3"
  8965. },
  8966. "require-dev": {
  8967. "phpunit/phpunit": "^9.3"
  8968. },
  8969. "type": "library",
  8970. "extra": {
  8971. "branch-alias": {
  8972. "dev-master": "4.0-dev"
  8973. }
  8974. },
  8975. "autoload": {
  8976. "classmap": [
  8977. "src/"
  8978. ]
  8979. },
  8980. "notification-url": "https://packagist.org/downloads/",
  8981. "license": [
  8982. "BSD-3-Clause"
  8983. ],
  8984. "authors": [
  8985. {
  8986. "name": "Sebastian Bergmann",
  8987. "email": "sebastian@phpunit.de"
  8988. },
  8989. {
  8990. "name": "Jeff Welch",
  8991. "email": "whatthejeff@gmail.com"
  8992. },
  8993. {
  8994. "name": "Adam Harvey",
  8995. "email": "aharvey@php.net"
  8996. }
  8997. ],
  8998. "description": "Provides functionality to recursively process PHP variables",
  8999. "homepage": "https://github.com/sebastianbergmann/recursion-context",
  9000. "support": {
  9001. "issues": "https://github.com/sebastianbergmann/recursion-context/issues",
  9002. "source": "https://github.com/sebastianbergmann/recursion-context/tree/4.0.5"
  9003. },
  9004. "funding": [
  9005. {
  9006. "url": "https://github.com/sebastianbergmann",
  9007. "type": "github"
  9008. }
  9009. ],
  9010. "time": "2023-02-03T06:07:39+00:00"
  9011. },
  9012. {
  9013. "name": "sebastian/resource-operations",
  9014. "version": "3.0.4",
  9015. "source": {
  9016. "type": "git",
  9017. "url": "https://github.com/sebastianbergmann/resource-operations.git",
  9018. "reference": "05d5692a7993ecccd56a03e40cd7e5b09b1d404e"
  9019. },
  9020. "dist": {
  9021. "type": "zip",
  9022. "url": "https://api.github.com/repos/sebastianbergmann/resource-operations/zipball/05d5692a7993ecccd56a03e40cd7e5b09b1d404e",
  9023. "reference": "05d5692a7993ecccd56a03e40cd7e5b09b1d404e",
  9024. "shasum": ""
  9025. },
  9026. "require": {
  9027. "php": ">=7.3"
  9028. },
  9029. "require-dev": {
  9030. "phpunit/phpunit": "^9.0"
  9031. },
  9032. "type": "library",
  9033. "extra": {
  9034. "branch-alias": {
  9035. "dev-main": "3.0-dev"
  9036. }
  9037. },
  9038. "autoload": {
  9039. "classmap": [
  9040. "src/"
  9041. ]
  9042. },
  9043. "notification-url": "https://packagist.org/downloads/",
  9044. "license": [
  9045. "BSD-3-Clause"
  9046. ],
  9047. "authors": [
  9048. {
  9049. "name": "Sebastian Bergmann",
  9050. "email": "sebastian@phpunit.de"
  9051. }
  9052. ],
  9053. "description": "Provides a list of PHP built-in functions that operate on resources",
  9054. "homepage": "https://www.github.com/sebastianbergmann/resource-operations",
  9055. "support": {
  9056. "source": "https://github.com/sebastianbergmann/resource-operations/tree/3.0.4"
  9057. },
  9058. "funding": [
  9059. {
  9060. "url": "https://github.com/sebastianbergmann",
  9061. "type": "github"
  9062. }
  9063. ],
  9064. "time": "2024-03-14T16:00:52+00:00"
  9065. },
  9066. {
  9067. "name": "sebastian/type",
  9068. "version": "3.2.1",
  9069. "source": {
  9070. "type": "git",
  9071. "url": "https://github.com/sebastianbergmann/type.git",
  9072. "reference": "75e2c2a32f5e0b3aef905b9ed0b179b953b3d7c7"
  9073. },
  9074. "dist": {
  9075. "type": "zip",
  9076. "url": "https://api.github.com/repos/sebastianbergmann/type/zipball/75e2c2a32f5e0b3aef905b9ed0b179b953b3d7c7",
  9077. "reference": "75e2c2a32f5e0b3aef905b9ed0b179b953b3d7c7",
  9078. "shasum": ""
  9079. },
  9080. "require": {
  9081. "php": ">=7.3"
  9082. },
  9083. "require-dev": {
  9084. "phpunit/phpunit": "^9.5"
  9085. },
  9086. "type": "library",
  9087. "extra": {
  9088. "branch-alias": {
  9089. "dev-master": "3.2-dev"
  9090. }
  9091. },
  9092. "autoload": {
  9093. "classmap": [
  9094. "src/"
  9095. ]
  9096. },
  9097. "notification-url": "https://packagist.org/downloads/",
  9098. "license": [
  9099. "BSD-3-Clause"
  9100. ],
  9101. "authors": [
  9102. {
  9103. "name": "Sebastian Bergmann",
  9104. "email": "sebastian@phpunit.de",
  9105. "role": "lead"
  9106. }
  9107. ],
  9108. "description": "Collection of value objects that represent the types of the PHP type system",
  9109. "homepage": "https://github.com/sebastianbergmann/type",
  9110. "support": {
  9111. "issues": "https://github.com/sebastianbergmann/type/issues",
  9112. "source": "https://github.com/sebastianbergmann/type/tree/3.2.1"
  9113. },
  9114. "funding": [
  9115. {
  9116. "url": "https://github.com/sebastianbergmann",
  9117. "type": "github"
  9118. }
  9119. ],
  9120. "time": "2023-02-03T06:13:03+00:00"
  9121. },
  9122. {
  9123. "name": "sebastian/version",
  9124. "version": "3.0.2",
  9125. "source": {
  9126. "type": "git",
  9127. "url": "https://github.com/sebastianbergmann/version.git",
  9128. "reference": "c6c1022351a901512170118436c764e473f6de8c"
  9129. },
  9130. "dist": {
  9131. "type": "zip",
  9132. "url": "https://api.github.com/repos/sebastianbergmann/version/zipball/c6c1022351a901512170118436c764e473f6de8c",
  9133. "reference": "c6c1022351a901512170118436c764e473f6de8c",
  9134. "shasum": ""
  9135. },
  9136. "require": {
  9137. "php": ">=7.3"
  9138. },
  9139. "type": "library",
  9140. "extra": {
  9141. "branch-alias": {
  9142. "dev-master": "3.0-dev"
  9143. }
  9144. },
  9145. "autoload": {
  9146. "classmap": [
  9147. "src/"
  9148. ]
  9149. },
  9150. "notification-url": "https://packagist.org/downloads/",
  9151. "license": [
  9152. "BSD-3-Clause"
  9153. ],
  9154. "authors": [
  9155. {
  9156. "name": "Sebastian Bergmann",
  9157. "email": "sebastian@phpunit.de",
  9158. "role": "lead"
  9159. }
  9160. ],
  9161. "description": "Library that helps with managing the version number of Git-hosted PHP projects",
  9162. "homepage": "https://github.com/sebastianbergmann/version",
  9163. "support": {
  9164. "issues": "https://github.com/sebastianbergmann/version/issues",
  9165. "source": "https://github.com/sebastianbergmann/version/tree/3.0.2"
  9166. },
  9167. "funding": [
  9168. {
  9169. "url": "https://github.com/sebastianbergmann",
  9170. "type": "github"
  9171. }
  9172. ],
  9173. "time": "2020-09-28T06:39:44+00:00"
  9174. },
  9175. {
  9176. "name": "symfony/browser-kit",
  9177. "version": "v6.4.13",
  9178. "source": {
  9179. "type": "git",
  9180. "url": "https://github.com/symfony/browser-kit.git",
  9181. "reference": "65d4b3fd9556e4b5b41287bef93c671f8f9f86ab"
  9182. },
  9183. "dist": {
  9184. "type": "zip",
  9185. "url": "https://api.github.com/repos/symfony/browser-kit/zipball/65d4b3fd9556e4b5b41287bef93c671f8f9f86ab",
  9186. "reference": "65d4b3fd9556e4b5b41287bef93c671f8f9f86ab",
  9187. "shasum": ""
  9188. },
  9189. "require": {
  9190. "php": ">=8.1",
  9191. "symfony/dom-crawler": "^5.4|^6.0|^7.0"
  9192. },
  9193. "require-dev": {
  9194. "symfony/css-selector": "^5.4|^6.0|^7.0",
  9195. "symfony/http-client": "^5.4|^6.0|^7.0",
  9196. "symfony/mime": "^5.4|^6.0|^7.0",
  9197. "symfony/process": "^5.4|^6.0|^7.0"
  9198. },
  9199. "type": "library",
  9200. "autoload": {
  9201. "psr-4": {
  9202. "Symfony\\Component\\BrowserKit\\": ""
  9203. },
  9204. "exclude-from-classmap": [
  9205. "/Tests/"
  9206. ]
  9207. },
  9208. "notification-url": "https://packagist.org/downloads/",
  9209. "license": [
  9210. "MIT"
  9211. ],
  9212. "authors": [
  9213. {
  9214. "name": "Fabien Potencier",
  9215. "email": "fabien@symfony.com"
  9216. },
  9217. {
  9218. "name": "Symfony Community",
  9219. "homepage": "https://symfony.com/contributors"
  9220. }
  9221. ],
  9222. "description": "Simulates the behavior of a web browser, allowing you to make requests, click on links and submit forms programmatically",
  9223. "homepage": "https://symfony.com",
  9224. "support": {
  9225. "source": "https://github.com/symfony/browser-kit/tree/v6.4.13"
  9226. },
  9227. "funding": [
  9228. {
  9229. "url": "https://symfony.com/sponsor",
  9230. "type": "custom"
  9231. },
  9232. {
  9233. "url": "https://github.com/fabpot",
  9234. "type": "github"
  9235. },
  9236. {
  9237. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  9238. "type": "tidelift"
  9239. }
  9240. ],
  9241. "time": "2024-10-25T15:07:50+00:00"
  9242. },
  9243. {
  9244. "name": "symfony/css-selector",
  9245. "version": "v6.4.13",
  9246. "source": {
  9247. "type": "git",
  9248. "url": "https://github.com/symfony/css-selector.git",
  9249. "reference": "cb23e97813c5837a041b73a6d63a9ddff0778f5e"
  9250. },
  9251. "dist": {
  9252. "type": "zip",
  9253. "url": "https://api.github.com/repos/symfony/css-selector/zipball/cb23e97813c5837a041b73a6d63a9ddff0778f5e",
  9254. "reference": "cb23e97813c5837a041b73a6d63a9ddff0778f5e",
  9255. "shasum": ""
  9256. },
  9257. "require": {
  9258. "php": ">=8.1"
  9259. },
  9260. "type": "library",
  9261. "autoload": {
  9262. "psr-4": {
  9263. "Symfony\\Component\\CssSelector\\": ""
  9264. },
  9265. "exclude-from-classmap": [
  9266. "/Tests/"
  9267. ]
  9268. },
  9269. "notification-url": "https://packagist.org/downloads/",
  9270. "license": [
  9271. "MIT"
  9272. ],
  9273. "authors": [
  9274. {
  9275. "name": "Fabien Potencier",
  9276. "email": "fabien@symfony.com"
  9277. },
  9278. {
  9279. "name": "Jean-François Simon",
  9280. "email": "jeanfrancois.simon@sensiolabs.com"
  9281. },
  9282. {
  9283. "name": "Symfony Community",
  9284. "homepage": "https://symfony.com/contributors"
  9285. }
  9286. ],
  9287. "description": "Converts CSS selectors to XPath expressions",
  9288. "homepage": "https://symfony.com",
  9289. "support": {
  9290. "source": "https://github.com/symfony/css-selector/tree/v6.4.13"
  9291. },
  9292. "funding": [
  9293. {
  9294. "url": "https://symfony.com/sponsor",
  9295. "type": "custom"
  9296. },
  9297. {
  9298. "url": "https://github.com/fabpot",
  9299. "type": "github"
  9300. },
  9301. {
  9302. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  9303. "type": "tidelift"
  9304. }
  9305. ],
  9306. "time": "2024-09-25T14:18:03+00:00"
  9307. },
  9308. {
  9309. "name": "symfony/debug-bundle",
  9310. "version": "v6.4.13",
  9311. "source": {
  9312. "type": "git",
  9313. "url": "https://github.com/symfony/debug-bundle.git",
  9314. "reference": "7bcfaff39e094cc09455201916d016d9b2ae08ff"
  9315. },
  9316. "dist": {
  9317. "type": "zip",
  9318. "url": "https://api.github.com/repos/symfony/debug-bundle/zipball/7bcfaff39e094cc09455201916d016d9b2ae08ff",
  9319. "reference": "7bcfaff39e094cc09455201916d016d9b2ae08ff",
  9320. "shasum": ""
  9321. },
  9322. "require": {
  9323. "ext-xml": "*",
  9324. "php": ">=8.1",
  9325. "symfony/dependency-injection": "^5.4|^6.0|^7.0",
  9326. "symfony/http-kernel": "^5.4|^6.0|^7.0",
  9327. "symfony/twig-bridge": "^5.4|^6.0|^7.0",
  9328. "symfony/var-dumper": "^5.4|^6.0|^7.0"
  9329. },
  9330. "conflict": {
  9331. "symfony/config": "<5.4",
  9332. "symfony/dependency-injection": "<5.4"
  9333. },
  9334. "require-dev": {
  9335. "symfony/config": "^5.4|^6.0|^7.0",
  9336. "symfony/web-profiler-bundle": "^5.4|^6.0|^7.0"
  9337. },
  9338. "type": "symfony-bundle",
  9339. "autoload": {
  9340. "psr-4": {
  9341. "Symfony\\Bundle\\DebugBundle\\": ""
  9342. },
  9343. "exclude-from-classmap": [
  9344. "/Tests/"
  9345. ]
  9346. },
  9347. "notification-url": "https://packagist.org/downloads/",
  9348. "license": [
  9349. "MIT"
  9350. ],
  9351. "authors": [
  9352. {
  9353. "name": "Fabien Potencier",
  9354. "email": "fabien@symfony.com"
  9355. },
  9356. {
  9357. "name": "Symfony Community",
  9358. "homepage": "https://symfony.com/contributors"
  9359. }
  9360. ],
  9361. "description": "Provides a tight integration of the Symfony VarDumper component and the ServerLogCommand from MonologBridge into the Symfony full-stack framework",
  9362. "homepage": "https://symfony.com",
  9363. "support": {
  9364. "source": "https://github.com/symfony/debug-bundle/tree/v6.4.13"
  9365. },
  9366. "funding": [
  9367. {
  9368. "url": "https://symfony.com/sponsor",
  9369. "type": "custom"
  9370. },
  9371. {
  9372. "url": "https://github.com/fabpot",
  9373. "type": "github"
  9374. },
  9375. {
  9376. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  9377. "type": "tidelift"
  9378. }
  9379. ],
  9380. "time": "2024-09-25T14:18:03+00:00"
  9381. },
  9382. {
  9383. "name": "symfony/dom-crawler",
  9384. "version": "v6.4.16",
  9385. "source": {
  9386. "type": "git",
  9387. "url": "https://github.com/symfony/dom-crawler.git",
  9388. "reference": "4304e6ad5c894a9c72831ad459f627bfd35d766d"
  9389. },
  9390. "dist": {
  9391. "type": "zip",
  9392. "url": "https://api.github.com/repos/symfony/dom-crawler/zipball/4304e6ad5c894a9c72831ad459f627bfd35d766d",
  9393. "reference": "4304e6ad5c894a9c72831ad459f627bfd35d766d",
  9394. "shasum": ""
  9395. },
  9396. "require": {
  9397. "masterminds/html5": "^2.6",
  9398. "php": ">=8.1",
  9399. "symfony/polyfill-ctype": "~1.8",
  9400. "symfony/polyfill-mbstring": "~1.0"
  9401. },
  9402. "require-dev": {
  9403. "symfony/css-selector": "^5.4|^6.0|^7.0"
  9404. },
  9405. "type": "library",
  9406. "autoload": {
  9407. "psr-4": {
  9408. "Symfony\\Component\\DomCrawler\\": ""
  9409. },
  9410. "exclude-from-classmap": [
  9411. "/Tests/"
  9412. ]
  9413. },
  9414. "notification-url": "https://packagist.org/downloads/",
  9415. "license": [
  9416. "MIT"
  9417. ],
  9418. "authors": [
  9419. {
  9420. "name": "Fabien Potencier",
  9421. "email": "fabien@symfony.com"
  9422. },
  9423. {
  9424. "name": "Symfony Community",
  9425. "homepage": "https://symfony.com/contributors"
  9426. }
  9427. ],
  9428. "description": "Eases DOM navigation for HTML and XML documents",
  9429. "homepage": "https://symfony.com",
  9430. "support": {
  9431. "source": "https://github.com/symfony/dom-crawler/tree/v6.4.16"
  9432. },
  9433. "funding": [
  9434. {
  9435. "url": "https://symfony.com/sponsor",
  9436. "type": "custom"
  9437. },
  9438. {
  9439. "url": "https://github.com/fabpot",
  9440. "type": "github"
  9441. },
  9442. {
  9443. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  9444. "type": "tidelift"
  9445. }
  9446. ],
  9447. "time": "2024-11-13T15:06:22+00:00"
  9448. },
  9449. {
  9450. "name": "symfony/maker-bundle",
  9451. "version": "v1.61.0",
  9452. "source": {
  9453. "type": "git",
  9454. "url": "https://github.com/symfony/maker-bundle.git",
  9455. "reference": "a3b7f14d349f8f44ed752d4dde2263f77510cc18"
  9456. },
  9457. "dist": {
  9458. "type": "zip",
  9459. "url": "https://api.github.com/repos/symfony/maker-bundle/zipball/a3b7f14d349f8f44ed752d4dde2263f77510cc18",
  9460. "reference": "a3b7f14d349f8f44ed752d4dde2263f77510cc18",
  9461. "shasum": ""
  9462. },
  9463. "require": {
  9464. "doctrine/inflector": "^2.0",
  9465. "nikic/php-parser": "^4.18|^5.0",
  9466. "php": ">=8.1",
  9467. "symfony/config": "^6.4|^7.0",
  9468. "symfony/console": "^6.4|^7.0",
  9469. "symfony/dependency-injection": "^6.4|^7.0",
  9470. "symfony/deprecation-contracts": "^2.2|^3",
  9471. "symfony/filesystem": "^6.4|^7.0",
  9472. "symfony/finder": "^6.4|^7.0",
  9473. "symfony/framework-bundle": "^6.4|^7.0",
  9474. "symfony/http-kernel": "^6.4|^7.0",
  9475. "symfony/process": "^6.4|^7.0"
  9476. },
  9477. "conflict": {
  9478. "doctrine/doctrine-bundle": "<2.10",
  9479. "doctrine/orm": "<2.15"
  9480. },
  9481. "require-dev": {
  9482. "composer/semver": "^3.0",
  9483. "doctrine/doctrine-bundle": "^2.5.0",
  9484. "doctrine/orm": "^2.15|^3",
  9485. "symfony/http-client": "^6.4|^7.0",
  9486. "symfony/phpunit-bridge": "^6.4.1|^7.0",
  9487. "symfony/security-core": "^6.4|^7.0",
  9488. "symfony/yaml": "^6.4|^7.0",
  9489. "twig/twig": "^3.0|^4.x-dev"
  9490. },
  9491. "type": "symfony-bundle",
  9492. "extra": {
  9493. "branch-alias": {
  9494. "dev-main": "1.x-dev"
  9495. }
  9496. },
  9497. "autoload": {
  9498. "psr-4": {
  9499. "Symfony\\Bundle\\MakerBundle\\": "src/"
  9500. }
  9501. },
  9502. "notification-url": "https://packagist.org/downloads/",
  9503. "license": [
  9504. "MIT"
  9505. ],
  9506. "authors": [
  9507. {
  9508. "name": "Symfony Community",
  9509. "homepage": "https://symfony.com/contributors"
  9510. }
  9511. ],
  9512. "description": "Symfony Maker helps you create empty commands, controllers, form classes, tests and more so you can forget about writing boilerplate code.",
  9513. "homepage": "https://symfony.com/doc/current/bundles/SymfonyMakerBundle/index.html",
  9514. "keywords": [
  9515. "code generator",
  9516. "dev",
  9517. "generator",
  9518. "scaffold",
  9519. "scaffolding"
  9520. ],
  9521. "support": {
  9522. "issues": "https://github.com/symfony/maker-bundle/issues",
  9523. "source": "https://github.com/symfony/maker-bundle/tree/v1.61.0"
  9524. },
  9525. "funding": [
  9526. {
  9527. "url": "https://symfony.com/sponsor",
  9528. "type": "custom"
  9529. },
  9530. {
  9531. "url": "https://github.com/fabpot",
  9532. "type": "github"
  9533. },
  9534. {
  9535. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  9536. "type": "tidelift"
  9537. }
  9538. ],
  9539. "time": "2024-08-29T22:50:23+00:00"
  9540. },
  9541. {
  9542. "name": "symfony/phpunit-bridge",
  9543. "version": "v7.2.0",
  9544. "source": {
  9545. "type": "git",
  9546. "url": "https://github.com/symfony/phpunit-bridge.git",
  9547. "reference": "2bbde92ab25a0e2c88160857af7be9db5da0d145"
  9548. },
  9549. "dist": {
  9550. "type": "zip",
  9551. "url": "https://api.github.com/repos/symfony/phpunit-bridge/zipball/2bbde92ab25a0e2c88160857af7be9db5da0d145",
  9552. "reference": "2bbde92ab25a0e2c88160857af7be9db5da0d145",
  9553. "shasum": ""
  9554. },
  9555. "require": {
  9556. "php": ">=7.2.5"
  9557. },
  9558. "conflict": {
  9559. "phpunit/phpunit": "<7.5|9.1.2"
  9560. },
  9561. "require-dev": {
  9562. "symfony/deprecation-contracts": "^2.5|^3.0",
  9563. "symfony/error-handler": "^5.4|^6.4|^7.0",
  9564. "symfony/polyfill-php81": "^1.27"
  9565. },
  9566. "bin": [
  9567. "bin/simple-phpunit"
  9568. ],
  9569. "type": "symfony-bridge",
  9570. "extra": {
  9571. "thanks": {
  9572. "url": "https://github.com/sebastianbergmann/phpunit",
  9573. "name": "phpunit/phpunit"
  9574. }
  9575. },
  9576. "autoload": {
  9577. "files": [
  9578. "bootstrap.php"
  9579. ],
  9580. "psr-4": {
  9581. "Symfony\\Bridge\\PhpUnit\\": ""
  9582. },
  9583. "exclude-from-classmap": [
  9584. "/Tests/",
  9585. "/bin/"
  9586. ]
  9587. },
  9588. "notification-url": "https://packagist.org/downloads/",
  9589. "license": [
  9590. "MIT"
  9591. ],
  9592. "authors": [
  9593. {
  9594. "name": "Nicolas Grekas",
  9595. "email": "p@tchwork.com"
  9596. },
  9597. {
  9598. "name": "Symfony Community",
  9599. "homepage": "https://symfony.com/contributors"
  9600. }
  9601. ],
  9602. "description": "Provides utilities for PHPUnit, especially user deprecation notices management",
  9603. "homepage": "https://symfony.com",
  9604. "support": {
  9605. "source": "https://github.com/symfony/phpunit-bridge/tree/v7.2.0"
  9606. },
  9607. "funding": [
  9608. {
  9609. "url": "https://symfony.com/sponsor",
  9610. "type": "custom"
  9611. },
  9612. {
  9613. "url": "https://github.com/fabpot",
  9614. "type": "github"
  9615. },
  9616. {
  9617. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  9618. "type": "tidelift"
  9619. }
  9620. ],
  9621. "time": "2024-11-13T16:15:23+00:00"
  9622. },
  9623. {
  9624. "name": "symfony/web-profiler-bundle",
  9625. "version": "v6.4.17",
  9626. "source": {
  9627. "type": "git",
  9628. "url": "https://github.com/symfony/web-profiler-bundle.git",
  9629. "reference": "979f8ee1a4f2464c20f3fef0d2111827fef2e97e"
  9630. },
  9631. "dist": {
  9632. "type": "zip",
  9633. "url": "https://api.github.com/repos/symfony/web-profiler-bundle/zipball/979f8ee1a4f2464c20f3fef0d2111827fef2e97e",
  9634. "reference": "979f8ee1a4f2464c20f3fef0d2111827fef2e97e",
  9635. "shasum": ""
  9636. },
  9637. "require": {
  9638. "php": ">=8.1",
  9639. "symfony/config": "^5.4|^6.0|^7.0",
  9640. "symfony/framework-bundle": "^6.4|^7.0",
  9641. "symfony/http-kernel": "^6.4|^7.0",
  9642. "symfony/routing": "^5.4|^6.0|^7.0",
  9643. "symfony/twig-bundle": "^5.4|^6.0",
  9644. "twig/twig": "^2.13|^3.0.4"
  9645. },
  9646. "conflict": {
  9647. "symfony/form": "<5.4",
  9648. "symfony/mailer": "<5.4",
  9649. "symfony/messenger": "<5.4",
  9650. "symfony/twig-bundle": ">=7.0"
  9651. },
  9652. "require-dev": {
  9653. "symfony/browser-kit": "^5.4|^6.0|^7.0",
  9654. "symfony/console": "^5.4|^6.0|^7.0",
  9655. "symfony/css-selector": "^5.4|^6.0|^7.0",
  9656. "symfony/stopwatch": "^5.4|^6.0|^7.0"
  9657. },
  9658. "type": "symfony-bundle",
  9659. "autoload": {
  9660. "psr-4": {
  9661. "Symfony\\Bundle\\WebProfilerBundle\\": ""
  9662. },
  9663. "exclude-from-classmap": [
  9664. "/Tests/"
  9665. ]
  9666. },
  9667. "notification-url": "https://packagist.org/downloads/",
  9668. "license": [
  9669. "MIT"
  9670. ],
  9671. "authors": [
  9672. {
  9673. "name": "Fabien Potencier",
  9674. "email": "fabien@symfony.com"
  9675. },
  9676. {
  9677. "name": "Symfony Community",
  9678. "homepage": "https://symfony.com/contributors"
  9679. }
  9680. ],
  9681. "description": "Provides a development tool that gives detailed information about the execution of any request",
  9682. "homepage": "https://symfony.com",
  9683. "keywords": [
  9684. "dev"
  9685. ],
  9686. "support": {
  9687. "source": "https://github.com/symfony/web-profiler-bundle/tree/v6.4.17"
  9688. },
  9689. "funding": [
  9690. {
  9691. "url": "https://symfony.com/sponsor",
  9692. "type": "custom"
  9693. },
  9694. {
  9695. "url": "https://github.com/fabpot",
  9696. "type": "github"
  9697. },
  9698. {
  9699. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  9700. "type": "tidelift"
  9701. }
  9702. ],
  9703. "time": "2024-12-08T23:00:41+00:00"
  9704. },
  9705. {
  9706. "name": "theseer/tokenizer",
  9707. "version": "1.2.3",
  9708. "source": {
  9709. "type": "git",
  9710. "url": "https://github.com/theseer/tokenizer.git",
  9711. "reference": "737eda637ed5e28c3413cb1ebe8bb52cbf1ca7a2"
  9712. },
  9713. "dist": {
  9714. "type": "zip",
  9715. "url": "https://api.github.com/repos/theseer/tokenizer/zipball/737eda637ed5e28c3413cb1ebe8bb52cbf1ca7a2",
  9716. "reference": "737eda637ed5e28c3413cb1ebe8bb52cbf1ca7a2",
  9717. "shasum": ""
  9718. },
  9719. "require": {
  9720. "ext-dom": "*",
  9721. "ext-tokenizer": "*",
  9722. "ext-xmlwriter": "*",
  9723. "php": "^7.2 || ^8.0"
  9724. },
  9725. "type": "library",
  9726. "autoload": {
  9727. "classmap": [
  9728. "src/"
  9729. ]
  9730. },
  9731. "notification-url": "https://packagist.org/downloads/",
  9732. "license": [
  9733. "BSD-3-Clause"
  9734. ],
  9735. "authors": [
  9736. {
  9737. "name": "Arne Blankerts",
  9738. "email": "arne@blankerts.de",
  9739. "role": "Developer"
  9740. }
  9741. ],
  9742. "description": "A small library for converting tokenized PHP source code into XML and potentially other formats",
  9743. "support": {
  9744. "issues": "https://github.com/theseer/tokenizer/issues",
  9745. "source": "https://github.com/theseer/tokenizer/tree/1.2.3"
  9746. },
  9747. "funding": [
  9748. {
  9749. "url": "https://github.com/theseer",
  9750. "type": "github"
  9751. }
  9752. ],
  9753. "time": "2024-03-03T12:36:25+00:00"
  9754. }
  9755. ],
  9756. "aliases": [],
  9757. "minimum-stability": "stable",
  9758. "stability-flags": {},
  9759. "prefer-stable": true,
  9760. "prefer-lowest": false,
  9761. "platform": {
  9762. "php": ">=8.1",
  9763. "ext-ctype": "*",
  9764. "ext-iconv": "*"
  9765. },
  9766. "platform-dev": {},
  9767. "plugin-api-version": "2.6.0"
  9768. }