composer.lock 380 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298529953005301530253035304530553065307530853095310531153125313531453155316531753185319532053215322532353245325532653275328532953305331533253335334533553365337533853395340534153425343534453455346534753485349535053515352535353545355535653575358535953605361536253635364536553665367536853695370537153725373537453755376537753785379538053815382538353845385538653875388538953905391539253935394539553965397539853995400540154025403540454055406540754085409541054115412541354145415541654175418541954205421542254235424542554265427542854295430543154325433543454355436543754385439544054415442544354445445544654475448544954505451545254535454545554565457545854595460546154625463546454655466546754685469547054715472547354745475547654775478547954805481548254835484548554865487548854895490549154925493549454955496549754985499550055015502550355045505550655075508550955105511551255135514551555165517551855195520552155225523552455255526552755285529553055315532553355345535553655375538553955405541554255435544554555465547554855495550555155525553555455555556555755585559556055615562556355645565556655675568556955705571557255735574557555765577557855795580558155825583558455855586558755885589559055915592559355945595559655975598559956005601560256035604560556065607560856095610561156125613561456155616561756185619562056215622562356245625562656275628562956305631563256335634563556365637563856395640564156425643564456455646564756485649565056515652565356545655565656575658565956605661566256635664566556665667566856695670567156725673567456755676567756785679568056815682568356845685568656875688568956905691569256935694569556965697569856995700570157025703570457055706570757085709571057115712571357145715571657175718571957205721572257235724572557265727572857295730573157325733573457355736573757385739574057415742574357445745574657475748574957505751575257535754575557565757575857595760576157625763576457655766576757685769577057715772577357745775577657775778577957805781578257835784578557865787578857895790579157925793579457955796579757985799580058015802580358045805580658075808580958105811581258135814581558165817581858195820582158225823582458255826582758285829583058315832583358345835583658375838583958405841584258435844584558465847584858495850585158525853585458555856585758585859586058615862586358645865586658675868586958705871587258735874587558765877587858795880588158825883588458855886588758885889589058915892589358945895589658975898589959005901590259035904590559065907590859095910591159125913591459155916591759185919592059215922592359245925592659275928592959305931593259335934593559365937593859395940594159425943594459455946594759485949595059515952595359545955595659575958595959605961596259635964596559665967596859695970597159725973597459755976597759785979598059815982598359845985598659875988598959905991599259935994599559965997599859996000600160026003600460056006600760086009601060116012601360146015601660176018601960206021602260236024602560266027602860296030603160326033603460356036603760386039604060416042604360446045604660476048604960506051605260536054605560566057605860596060606160626063606460656066606760686069607060716072607360746075607660776078607960806081608260836084608560866087608860896090609160926093609460956096609760986099610061016102610361046105610661076108610961106111611261136114611561166117611861196120612161226123612461256126612761286129613061316132613361346135613661376138613961406141614261436144614561466147614861496150615161526153615461556156615761586159616061616162616361646165616661676168616961706171617261736174617561766177617861796180618161826183618461856186618761886189619061916192619361946195619661976198619962006201620262036204620562066207620862096210621162126213621462156216621762186219622062216222622362246225622662276228622962306231623262336234623562366237623862396240624162426243624462456246624762486249625062516252625362546255625662576258625962606261626262636264626562666267626862696270627162726273627462756276627762786279628062816282628362846285628662876288628962906291629262936294629562966297629862996300630163026303630463056306630763086309631063116312631363146315631663176318631963206321632263236324632563266327632863296330633163326333633463356336633763386339634063416342634363446345634663476348634963506351635263536354635563566357635863596360636163626363636463656366636763686369637063716372637363746375637663776378637963806381638263836384638563866387638863896390639163926393639463956396639763986399640064016402640364046405640664076408640964106411641264136414641564166417641864196420642164226423642464256426642764286429643064316432643364346435643664376438643964406441644264436444644564466447644864496450645164526453645464556456645764586459646064616462646364646465646664676468646964706471647264736474647564766477647864796480648164826483648464856486648764886489649064916492649364946495649664976498649965006501650265036504650565066507650865096510651165126513651465156516651765186519652065216522652365246525652665276528652965306531653265336534653565366537653865396540654165426543654465456546654765486549655065516552655365546555655665576558655965606561656265636564656565666567656865696570657165726573657465756576657765786579658065816582658365846585658665876588658965906591659265936594659565966597659865996600660166026603660466056606660766086609661066116612661366146615661666176618661966206621662266236624662566266627662866296630663166326633663466356636663766386639664066416642664366446645664666476648664966506651665266536654665566566657665866596660666166626663666466656666666766686669667066716672667366746675667666776678667966806681668266836684668566866687668866896690669166926693669466956696669766986699670067016702670367046705670667076708670967106711671267136714671567166717671867196720672167226723672467256726672767286729673067316732673367346735673667376738673967406741674267436744674567466747674867496750675167526753675467556756675767586759676067616762676367646765676667676768676967706771677267736774677567766777677867796780678167826783678467856786678767886789679067916792679367946795679667976798679968006801680268036804680568066807680868096810681168126813681468156816681768186819682068216822682368246825682668276828682968306831683268336834683568366837683868396840684168426843684468456846684768486849685068516852685368546855685668576858685968606861686268636864686568666867686868696870687168726873687468756876687768786879688068816882688368846885688668876888688968906891689268936894689568966897689868996900690169026903690469056906690769086909691069116912691369146915691669176918691969206921692269236924692569266927692869296930693169326933693469356936693769386939694069416942694369446945694669476948694969506951695269536954695569566957695869596960696169626963696469656966696769686969697069716972697369746975697669776978697969806981698269836984698569866987698869896990699169926993699469956996699769986999700070017002700370047005700670077008700970107011701270137014701570167017701870197020702170227023702470257026702770287029703070317032703370347035703670377038703970407041704270437044704570467047704870497050705170527053705470557056705770587059706070617062706370647065706670677068706970707071707270737074707570767077707870797080708170827083708470857086708770887089709070917092709370947095709670977098709971007101710271037104710571067107710871097110711171127113711471157116711771187119712071217122712371247125712671277128712971307131713271337134713571367137713871397140714171427143714471457146714771487149715071517152715371547155715671577158715971607161716271637164716571667167716871697170717171727173717471757176717771787179718071817182718371847185718671877188718971907191719271937194719571967197719871997200720172027203720472057206720772087209721072117212721372147215721672177218721972207221722272237224722572267227722872297230723172327233723472357236723772387239724072417242724372447245724672477248724972507251725272537254725572567257725872597260726172627263726472657266726772687269727072717272727372747275727672777278727972807281728272837284728572867287728872897290729172927293729472957296729772987299730073017302730373047305730673077308730973107311731273137314731573167317731873197320732173227323732473257326732773287329733073317332733373347335733673377338733973407341734273437344734573467347734873497350735173527353735473557356735773587359736073617362736373647365736673677368736973707371737273737374737573767377737873797380738173827383738473857386738773887389739073917392739373947395739673977398739974007401740274037404740574067407740874097410741174127413741474157416741774187419742074217422742374247425742674277428742974307431743274337434743574367437743874397440744174427443744474457446744774487449745074517452745374547455745674577458745974607461746274637464746574667467746874697470747174727473747474757476747774787479748074817482748374847485748674877488748974907491749274937494749574967497749874997500750175027503750475057506750775087509751075117512751375147515751675177518751975207521752275237524752575267527752875297530753175327533753475357536753775387539754075417542754375447545754675477548754975507551755275537554755575567557755875597560756175627563756475657566756775687569757075717572757375747575757675777578757975807581758275837584758575867587758875897590759175927593759475957596759775987599760076017602760376047605760676077608760976107611761276137614761576167617761876197620762176227623762476257626762776287629763076317632763376347635763676377638763976407641764276437644764576467647764876497650765176527653765476557656765776587659766076617662766376647665766676677668766976707671767276737674767576767677767876797680768176827683768476857686768776887689769076917692769376947695769676977698769977007701770277037704770577067707770877097710771177127713771477157716771777187719772077217722772377247725772677277728772977307731773277337734773577367737773877397740774177427743774477457746774777487749775077517752775377547755775677577758775977607761776277637764776577667767776877697770777177727773777477757776777777787779778077817782778377847785778677877788778977907791779277937794779577967797779877997800780178027803780478057806780778087809781078117812781378147815781678177818781978207821782278237824782578267827782878297830783178327833783478357836783778387839784078417842784378447845784678477848784978507851785278537854785578567857785878597860786178627863786478657866786778687869787078717872787378747875787678777878787978807881788278837884788578867887788878897890789178927893789478957896789778987899790079017902790379047905790679077908790979107911791279137914791579167917791879197920792179227923792479257926792779287929793079317932793379347935793679377938793979407941794279437944794579467947794879497950795179527953795479557956795779587959796079617962796379647965796679677968796979707971797279737974797579767977797879797980798179827983798479857986798779887989799079917992799379947995799679977998799980008001800280038004800580068007800880098010801180128013801480158016801780188019802080218022802380248025802680278028802980308031803280338034803580368037803880398040804180428043804480458046804780488049805080518052805380548055805680578058805980608061806280638064806580668067806880698070807180728073807480758076807780788079808080818082808380848085808680878088808980908091809280938094809580968097809880998100810181028103810481058106810781088109811081118112811381148115811681178118811981208121812281238124812581268127812881298130813181328133813481358136813781388139814081418142814381448145814681478148814981508151815281538154815581568157815881598160816181628163816481658166816781688169817081718172817381748175817681778178817981808181818281838184818581868187818881898190819181928193819481958196819781988199820082018202820382048205820682078208820982108211821282138214821582168217821882198220822182228223822482258226822782288229823082318232823382348235823682378238823982408241824282438244824582468247824882498250825182528253825482558256825782588259826082618262826382648265826682678268826982708271827282738274827582768277827882798280828182828283828482858286828782888289829082918292829382948295829682978298829983008301830283038304830583068307830883098310831183128313831483158316831783188319832083218322832383248325832683278328832983308331833283338334833583368337833883398340834183428343834483458346834783488349835083518352835383548355835683578358835983608361836283638364836583668367836883698370837183728373837483758376837783788379838083818382838383848385838683878388838983908391839283938394839583968397839883998400840184028403840484058406840784088409841084118412841384148415841684178418841984208421842284238424842584268427842884298430843184328433843484358436843784388439844084418442844384448445844684478448844984508451845284538454845584568457845884598460846184628463846484658466846784688469847084718472847384748475847684778478847984808481848284838484848584868487848884898490849184928493849484958496849784988499850085018502850385048505850685078508850985108511851285138514851585168517851885198520852185228523852485258526852785288529853085318532853385348535853685378538853985408541854285438544854585468547854885498550855185528553855485558556855785588559856085618562856385648565856685678568856985708571857285738574857585768577857885798580858185828583858485858586858785888589859085918592859385948595859685978598859986008601860286038604860586068607860886098610861186128613861486158616861786188619862086218622862386248625862686278628862986308631863286338634863586368637863886398640864186428643864486458646864786488649865086518652865386548655865686578658865986608661866286638664866586668667866886698670867186728673867486758676867786788679868086818682868386848685868686878688868986908691869286938694869586968697869886998700870187028703870487058706870787088709871087118712871387148715871687178718871987208721872287238724872587268727872887298730873187328733873487358736873787388739874087418742874387448745874687478748874987508751875287538754875587568757875887598760876187628763876487658766876787688769877087718772877387748775877687778778877987808781878287838784878587868787878887898790879187928793879487958796879787988799880088018802880388048805880688078808880988108811881288138814881588168817881888198820882188228823882488258826882788288829883088318832883388348835883688378838883988408841884288438844884588468847884888498850885188528853885488558856885788588859886088618862886388648865886688678868886988708871887288738874887588768877887888798880888188828883888488858886888788888889889088918892889388948895889688978898889989008901890289038904890589068907890889098910891189128913891489158916891789188919892089218922892389248925892689278928892989308931893289338934893589368937893889398940894189428943894489458946894789488949895089518952895389548955895689578958895989608961896289638964896589668967896889698970897189728973897489758976897789788979898089818982898389848985898689878988898989908991899289938994899589968997899889999000900190029003900490059006900790089009901090119012901390149015901690179018901990209021902290239024902590269027902890299030903190329033903490359036903790389039904090419042904390449045904690479048904990509051905290539054905590569057905890599060906190629063906490659066906790689069907090719072907390749075907690779078907990809081908290839084908590869087908890899090909190929093909490959096909790989099910091019102910391049105910691079108910991109111911291139114911591169117911891199120912191229123912491259126912791289129913091319132913391349135913691379138913991409141914291439144914591469147914891499150915191529153915491559156915791589159916091619162916391649165916691679168916991709171917291739174917591769177917891799180918191829183918491859186918791889189919091919192919391949195919691979198919992009201920292039204920592069207920892099210921192129213921492159216921792189219922092219222922392249225922692279228922992309231923292339234923592369237923892399240924192429243924492459246924792489249925092519252925392549255925692579258925992609261926292639264926592669267926892699270927192729273927492759276927792789279928092819282928392849285928692879288928992909291929292939294929592969297929892999300930193029303930493059306930793089309931093119312931393149315931693179318931993209321932293239324932593269327932893299330933193329333933493359336933793389339934093419342934393449345934693479348934993509351935293539354935593569357935893599360936193629363936493659366936793689369937093719372937393749375937693779378937993809381938293839384938593869387938893899390939193929393939493959396939793989399940094019402940394049405940694079408940994109411941294139414941594169417941894199420942194229423942494259426942794289429943094319432943394349435943694379438943994409441944294439444944594469447944894499450945194529453945494559456945794589459946094619462946394649465946694679468946994709471947294739474947594769477947894799480948194829483948494859486948794889489949094919492949394949495949694979498949995009501950295039504950595069507950895099510951195129513951495159516951795189519952095219522952395249525952695279528952995309531953295339534953595369537953895399540954195429543954495459546954795489549955095519552955395549555955695579558955995609561956295639564956595669567956895699570957195729573957495759576957795789579958095819582958395849585958695879588958995909591959295939594959595969597959895999600960196029603960496059606960796089609961096119612961396149615961696179618961996209621962296239624962596269627962896299630963196329633963496359636963796389639964096419642964396449645964696479648964996509651965296539654965596569657965896599660966196629663966496659666966796689669967096719672967396749675967696779678967996809681968296839684968596869687968896899690969196929693969496959696969796989699970097019702970397049705970697079708970997109711971297139714971597169717971897199720972197229723972497259726972797289729973097319732973397349735973697379738973997409741974297439744974597469747974897499750975197529753975497559756975797589759976097619762976397649765976697679768976997709771977297739774977597769777977897799780978197829783978497859786978797889789979097919792979397949795979697979798979998009801980298039804980598069807980898099810981198129813981498159816981798189819982098219822982398249825982698279828982998309831983298339834983598369837983898399840984198429843984498459846984798489849985098519852985398549855985698579858985998609861986298639864986598669867986898699870987198729873987498759876987798789879988098819882988398849885988698879888988998909891989298939894989598969897989898999900990199029903990499059906990799089909991099119912991399149915991699179918991999209921992299239924992599269927992899299930993199329933993499359936993799389939994099419942994399449945994699479948994999509951995299539954995599569957995899599960996199629963996499659966996799689969997099719972997399749975997699779978997999809981998299839984998599869987998899899990999199929993999499959996999799989999100001000110002100031000410005100061000710008100091001010011100121001310014100151001610017100181001910020100211002210023100241002510026100271002810029100301003110032100331003410035100361003710038100391004010041100421004310044100451004610047100481004910050100511005210053100541005510056100571005810059100601006110062100631006410065100661006710068100691007010071100721007310074100751007610077100781007910080100811008210083100841008510086100871008810089100901009110092100931009410095100961009710098100991010010101101021010310104101051010610107101081010910110101111011210113101141011510116101171011810119101201012110122101231012410125101261012710128101291013010131101321013310134101351013610137101381013910140101411014210143101441014510146101471014810149101501015110152101531015410155101561015710158101591016010161101621016310164101651016610167101681016910170101711017210173101741017510176101771017810179101801018110182101831018410185101861018710188101891019010191101921019310194101951019610197101981019910200102011020210203102041020510206102071020810209102101021110212102131021410215102161021710218102191022010221102221022310224102251022610227102281022910230102311023210233102341023510236102371023810239102401024110242102431024410245102461024710248102491025010251102521025310254102551025610257102581025910260102611026210263102641026510266102671026810269102701027110272102731027410275102761027710278102791028010281102821028310284102851028610287102881028910290102911029210293102941029510296102971029810299103001030110302103031030410305103061030710308103091031010311103121031310314103151031610317103181031910320103211032210323103241032510326103271032810329103301033110332103331033410335103361033710338103391034010341103421034310344103451034610347103481034910350103511035210353103541035510356103571035810359103601036110362103631036410365103661036710368103691037010371103721037310374103751037610377103781037910380103811038210383103841038510386103871038810389103901039110392103931039410395103961039710398103991040010401104021040310404104051040610407104081040910410104111041210413104141041510416104171041810419104201042110422104231042410425104261042710428104291043010431104321043310434104351043610437104381043910440104411044210443104441044510446104471044810449104501045110452104531045410455104561045710458104591046010461104621046310464104651046610467104681046910470104711047210473104741047510476104771047810479104801048110482104831048410485104861048710488104891049010491104921049310494104951049610497104981049910500105011050210503105041050510506105071050810509105101051110512105131051410515105161051710518105191052010521105221052310524105251052610527105281052910530105311053210533105341053510536105371053810539105401054110542105431054410545
  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": "6032b0a35ad44d84618d557f1ba08409",
  8. "packages": [
  9. {
  10. "name": "beberlei/doctrineextensions",
  11. "version": "v1.5.0",
  12. "source": {
  13. "type": "git",
  14. "url": "https://github.com/beberlei/DoctrineExtensions.git",
  15. "reference": "281f1650641c2f438b0a54d8eaa7ba50ac7e3eb6"
  16. },
  17. "dist": {
  18. "type": "zip",
  19. "url": "https://api.github.com/repos/beberlei/DoctrineExtensions/zipball/281f1650641c2f438b0a54d8eaa7ba50ac7e3eb6",
  20. "reference": "281f1650641c2f438b0a54d8eaa7ba50ac7e3eb6",
  21. "shasum": ""
  22. },
  23. "require": {
  24. "doctrine/orm": "^2.19 || ^3.0",
  25. "php": "^7.2 || ^8.0"
  26. },
  27. "require-dev": {
  28. "doctrine/annotations": "^1.14 || ^2",
  29. "doctrine/coding-standard": "^9.0.2 || ^12.0",
  30. "nesbot/carbon": "^2.72 || ^3",
  31. "phpstan/phpstan": "^1.10",
  32. "phpunit/phpunit": "^8.5 || ^9.6",
  33. "squizlabs/php_codesniffer": "^3.8",
  34. "symfony/cache": "^5.4 || ^6.4 || ^7.0",
  35. "symfony/yaml": "^5.4 || ^6.4 || ^7.0",
  36. "vimeo/psalm": "^3.18 || ^5.22",
  37. "zf1/zend-date": "^1.12",
  38. "zf1/zend-registry": "^1.12"
  39. },
  40. "type": "library",
  41. "autoload": {
  42. "psr-4": {
  43. "DoctrineExtensions\\": "src/"
  44. }
  45. },
  46. "notification-url": "https://packagist.org/downloads/",
  47. "license": [
  48. "BSD-3-Clause"
  49. ],
  50. "authors": [
  51. {
  52. "name": "Benjamin Eberlei",
  53. "email": "kontakt@beberlei.de"
  54. },
  55. {
  56. "name": "Steve Lacey",
  57. "email": "steve@steve.ly"
  58. }
  59. ],
  60. "description": "A set of extensions to Doctrine 2 that add support for additional query functions available in MySQL, Oracle, PostgreSQL and SQLite.",
  61. "keywords": [
  62. "database",
  63. "doctrine",
  64. "orm"
  65. ],
  66. "support": {
  67. "source": "https://github.com/beberlei/DoctrineExtensions/tree/v1.5.0"
  68. },
  69. "time": "2024-03-03T17:55:15+00:00"
  70. },
  71. {
  72. "name": "composer/package-versions-deprecated",
  73. "version": "1.11.99.5",
  74. "source": {
  75. "type": "git",
  76. "url": "https://github.com/composer/package-versions-deprecated.git",
  77. "reference": "b4f54f74ef3453349c24a845d22392cd31e65f1d"
  78. },
  79. "dist": {
  80. "type": "zip",
  81. "url": "https://api.github.com/repos/composer/package-versions-deprecated/zipball/b4f54f74ef3453349c24a845d22392cd31e65f1d",
  82. "reference": "b4f54f74ef3453349c24a845d22392cd31e65f1d",
  83. "shasum": ""
  84. },
  85. "require": {
  86. "composer-plugin-api": "^1.1.0 || ^2.0",
  87. "php": "^7 || ^8"
  88. },
  89. "replace": {
  90. "ocramius/package-versions": "1.11.99"
  91. },
  92. "require-dev": {
  93. "composer/composer": "^1.9.3 || ^2.0@dev",
  94. "ext-zip": "^1.13",
  95. "phpunit/phpunit": "^6.5 || ^7"
  96. },
  97. "type": "composer-plugin",
  98. "extra": {
  99. "class": "PackageVersions\\Installer",
  100. "branch-alias": {
  101. "dev-master": "1.x-dev"
  102. }
  103. },
  104. "autoload": {
  105. "psr-4": {
  106. "PackageVersions\\": "src/PackageVersions"
  107. }
  108. },
  109. "notification-url": "https://packagist.org/downloads/",
  110. "license": [
  111. "MIT"
  112. ],
  113. "authors": [
  114. {
  115. "name": "Marco Pivetta",
  116. "email": "ocramius@gmail.com"
  117. },
  118. {
  119. "name": "Jordi Boggiano",
  120. "email": "j.boggiano@seld.be"
  121. }
  122. ],
  123. "description": "Composer plugin that provides efficient querying for installed package versions (no runtime IO)",
  124. "support": {
  125. "issues": "https://github.com/composer/package-versions-deprecated/issues",
  126. "source": "https://github.com/composer/package-versions-deprecated/tree/1.11.99.5"
  127. },
  128. "funding": [
  129. {
  130. "url": "https://packagist.com",
  131. "type": "custom"
  132. },
  133. {
  134. "url": "https://github.com/composer",
  135. "type": "github"
  136. },
  137. {
  138. "url": "https://tidelift.com/funding/github/packagist/composer/composer",
  139. "type": "tidelift"
  140. }
  141. ],
  142. "time": "2022-01-17T14:14:24+00:00"
  143. },
  144. {
  145. "name": "dflydev/dot-access-data",
  146. "version": "v3.0.3",
  147. "source": {
  148. "type": "git",
  149. "url": "https://github.com/dflydev/dflydev-dot-access-data.git",
  150. "reference": "a23a2bf4f31d3518f3ecb38660c95715dfead60f"
  151. },
  152. "dist": {
  153. "type": "zip",
  154. "url": "https://api.github.com/repos/dflydev/dflydev-dot-access-data/zipball/a23a2bf4f31d3518f3ecb38660c95715dfead60f",
  155. "reference": "a23a2bf4f31d3518f3ecb38660c95715dfead60f",
  156. "shasum": ""
  157. },
  158. "require": {
  159. "php": "^7.1 || ^8.0"
  160. },
  161. "require-dev": {
  162. "phpstan/phpstan": "^0.12.42",
  163. "phpunit/phpunit": "^7.5 || ^8.5 || ^9.3",
  164. "scrutinizer/ocular": "1.6.0",
  165. "squizlabs/php_codesniffer": "^3.5",
  166. "vimeo/psalm": "^4.0.0"
  167. },
  168. "type": "library",
  169. "extra": {
  170. "branch-alias": {
  171. "dev-main": "3.x-dev"
  172. }
  173. },
  174. "autoload": {
  175. "psr-4": {
  176. "Dflydev\\DotAccessData\\": "src/"
  177. }
  178. },
  179. "notification-url": "https://packagist.org/downloads/",
  180. "license": [
  181. "MIT"
  182. ],
  183. "authors": [
  184. {
  185. "name": "Dragonfly Development Inc.",
  186. "email": "info@dflydev.com",
  187. "homepage": "http://dflydev.com"
  188. },
  189. {
  190. "name": "Beau Simensen",
  191. "email": "beau@dflydev.com",
  192. "homepage": "http://beausimensen.com"
  193. },
  194. {
  195. "name": "Carlos Frutos",
  196. "email": "carlos@kiwing.it",
  197. "homepage": "https://github.com/cfrutos"
  198. },
  199. {
  200. "name": "Colin O'Dell",
  201. "email": "colinodell@gmail.com",
  202. "homepage": "https://www.colinodell.com"
  203. }
  204. ],
  205. "description": "Given a deep data structure, access data by dot notation.",
  206. "homepage": "https://github.com/dflydev/dflydev-dot-access-data",
  207. "keywords": [
  208. "access",
  209. "data",
  210. "dot",
  211. "notation"
  212. ],
  213. "support": {
  214. "issues": "https://github.com/dflydev/dflydev-dot-access-data/issues",
  215. "source": "https://github.com/dflydev/dflydev-dot-access-data/tree/v3.0.3"
  216. },
  217. "time": "2024-07-08T12:26:09+00:00"
  218. },
  219. {
  220. "name": "doctrine/annotations",
  221. "version": "2.0.2",
  222. "source": {
  223. "type": "git",
  224. "url": "https://github.com/doctrine/annotations.git",
  225. "reference": "901c2ee5d26eb64ff43c47976e114bf00843acf7"
  226. },
  227. "dist": {
  228. "type": "zip",
  229. "url": "https://api.github.com/repos/doctrine/annotations/zipball/901c2ee5d26eb64ff43c47976e114bf00843acf7",
  230. "reference": "901c2ee5d26eb64ff43c47976e114bf00843acf7",
  231. "shasum": ""
  232. },
  233. "require": {
  234. "doctrine/lexer": "^2 || ^3",
  235. "ext-tokenizer": "*",
  236. "php": "^7.2 || ^8.0",
  237. "psr/cache": "^1 || ^2 || ^3"
  238. },
  239. "require-dev": {
  240. "doctrine/cache": "^2.0",
  241. "doctrine/coding-standard": "^10",
  242. "phpstan/phpstan": "^1.10.28",
  243. "phpunit/phpunit": "^7.5 || ^8.5 || ^9.5",
  244. "symfony/cache": "^5.4 || ^6.4 || ^7",
  245. "vimeo/psalm": "^4.30 || ^5.14"
  246. },
  247. "suggest": {
  248. "php": "PHP 8.0 or higher comes with attributes, a native replacement for annotations"
  249. },
  250. "type": "library",
  251. "autoload": {
  252. "psr-4": {
  253. "Doctrine\\Common\\Annotations\\": "lib/Doctrine/Common/Annotations"
  254. }
  255. },
  256. "notification-url": "https://packagist.org/downloads/",
  257. "license": [
  258. "MIT"
  259. ],
  260. "authors": [
  261. {
  262. "name": "Guilherme Blanco",
  263. "email": "guilhermeblanco@gmail.com"
  264. },
  265. {
  266. "name": "Roman Borschel",
  267. "email": "roman@code-factory.org"
  268. },
  269. {
  270. "name": "Benjamin Eberlei",
  271. "email": "kontakt@beberlei.de"
  272. },
  273. {
  274. "name": "Jonathan Wage",
  275. "email": "jonwage@gmail.com"
  276. },
  277. {
  278. "name": "Johannes Schmitt",
  279. "email": "schmittjoh@gmail.com"
  280. }
  281. ],
  282. "description": "Docblock Annotations Parser",
  283. "homepage": "https://www.doctrine-project.org/projects/annotations.html",
  284. "keywords": [
  285. "annotations",
  286. "docblock",
  287. "parser"
  288. ],
  289. "support": {
  290. "issues": "https://github.com/doctrine/annotations/issues",
  291. "source": "https://github.com/doctrine/annotations/tree/2.0.2"
  292. },
  293. "time": "2024-09-05T10:17:24+00:00"
  294. },
  295. {
  296. "name": "doctrine/collections",
  297. "version": "2.3.0",
  298. "source": {
  299. "type": "git",
  300. "url": "https://github.com/doctrine/collections.git",
  301. "reference": "2eb07e5953eed811ce1b309a7478a3b236f2273d"
  302. },
  303. "dist": {
  304. "type": "zip",
  305. "url": "https://api.github.com/repos/doctrine/collections/zipball/2eb07e5953eed811ce1b309a7478a3b236f2273d",
  306. "reference": "2eb07e5953eed811ce1b309a7478a3b236f2273d",
  307. "shasum": ""
  308. },
  309. "require": {
  310. "doctrine/deprecations": "^1",
  311. "php": "^8.1",
  312. "symfony/polyfill-php84": "^1.30"
  313. },
  314. "require-dev": {
  315. "doctrine/coding-standard": "^12",
  316. "ext-json": "*",
  317. "phpstan/phpstan": "^1.8",
  318. "phpstan/phpstan-phpunit": "^1.0",
  319. "phpunit/phpunit": "^10.5"
  320. },
  321. "type": "library",
  322. "autoload": {
  323. "psr-4": {
  324. "Doctrine\\Common\\Collections\\": "src"
  325. }
  326. },
  327. "notification-url": "https://packagist.org/downloads/",
  328. "license": [
  329. "MIT"
  330. ],
  331. "authors": [
  332. {
  333. "name": "Guilherme Blanco",
  334. "email": "guilhermeblanco@gmail.com"
  335. },
  336. {
  337. "name": "Roman Borschel",
  338. "email": "roman@code-factory.org"
  339. },
  340. {
  341. "name": "Benjamin Eberlei",
  342. "email": "kontakt@beberlei.de"
  343. },
  344. {
  345. "name": "Jonathan Wage",
  346. "email": "jonwage@gmail.com"
  347. },
  348. {
  349. "name": "Johannes Schmitt",
  350. "email": "schmittjoh@gmail.com"
  351. }
  352. ],
  353. "description": "PHP Doctrine Collections library that adds additional functionality on top of PHP arrays.",
  354. "homepage": "https://www.doctrine-project.org/projects/collections.html",
  355. "keywords": [
  356. "array",
  357. "collections",
  358. "iterators",
  359. "php"
  360. ],
  361. "support": {
  362. "issues": "https://github.com/doctrine/collections/issues",
  363. "source": "https://github.com/doctrine/collections/tree/2.3.0"
  364. },
  365. "funding": [
  366. {
  367. "url": "https://www.doctrine-project.org/sponsorship.html",
  368. "type": "custom"
  369. },
  370. {
  371. "url": "https://www.patreon.com/phpdoctrine",
  372. "type": "patreon"
  373. },
  374. {
  375. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fcollections",
  376. "type": "tidelift"
  377. }
  378. ],
  379. "time": "2025-03-22T10:17:19+00:00"
  380. },
  381. {
  382. "name": "doctrine/dbal",
  383. "version": "4.2.3",
  384. "source": {
  385. "type": "git",
  386. "url": "https://github.com/doctrine/dbal.git",
  387. "reference": "33d2d7fe1269b2301640c44cf2896ea607b30e3e"
  388. },
  389. "dist": {
  390. "type": "zip",
  391. "url": "https://api.github.com/repos/doctrine/dbal/zipball/33d2d7fe1269b2301640c44cf2896ea607b30e3e",
  392. "reference": "33d2d7fe1269b2301640c44cf2896ea607b30e3e",
  393. "shasum": ""
  394. },
  395. "require": {
  396. "doctrine/deprecations": "^0.5.3|^1",
  397. "php": "^8.1",
  398. "psr/cache": "^1|^2|^3",
  399. "psr/log": "^1|^2|^3"
  400. },
  401. "require-dev": {
  402. "doctrine/coding-standard": "12.0.0",
  403. "fig/log-test": "^1",
  404. "jetbrains/phpstorm-stubs": "2023.2",
  405. "phpstan/phpstan": "2.1.1",
  406. "phpstan/phpstan-phpunit": "2.0.3",
  407. "phpstan/phpstan-strict-rules": "^2",
  408. "phpunit/phpunit": "10.5.39",
  409. "slevomat/coding-standard": "8.13.1",
  410. "squizlabs/php_codesniffer": "3.10.2",
  411. "symfony/cache": "^6.3.8|^7.0",
  412. "symfony/console": "^5.4|^6.3|^7.0"
  413. },
  414. "suggest": {
  415. "symfony/console": "For helpful console commands such as SQL execution and import of files."
  416. },
  417. "type": "library",
  418. "autoload": {
  419. "psr-4": {
  420. "Doctrine\\DBAL\\": "src"
  421. }
  422. },
  423. "notification-url": "https://packagist.org/downloads/",
  424. "license": [
  425. "MIT"
  426. ],
  427. "authors": [
  428. {
  429. "name": "Guilherme Blanco",
  430. "email": "guilhermeblanco@gmail.com"
  431. },
  432. {
  433. "name": "Roman Borschel",
  434. "email": "roman@code-factory.org"
  435. },
  436. {
  437. "name": "Benjamin Eberlei",
  438. "email": "kontakt@beberlei.de"
  439. },
  440. {
  441. "name": "Jonathan Wage",
  442. "email": "jonwage@gmail.com"
  443. }
  444. ],
  445. "description": "Powerful PHP database abstraction layer (DBAL) with many features for database schema introspection and management.",
  446. "homepage": "https://www.doctrine-project.org/projects/dbal.html",
  447. "keywords": [
  448. "abstraction",
  449. "database",
  450. "db2",
  451. "dbal",
  452. "mariadb",
  453. "mssql",
  454. "mysql",
  455. "oci8",
  456. "oracle",
  457. "pdo",
  458. "pgsql",
  459. "postgresql",
  460. "queryobject",
  461. "sasql",
  462. "sql",
  463. "sqlite",
  464. "sqlserver",
  465. "sqlsrv"
  466. ],
  467. "support": {
  468. "issues": "https://github.com/doctrine/dbal/issues",
  469. "source": "https://github.com/doctrine/dbal/tree/4.2.3"
  470. },
  471. "funding": [
  472. {
  473. "url": "https://www.doctrine-project.org/sponsorship.html",
  474. "type": "custom"
  475. },
  476. {
  477. "url": "https://www.patreon.com/phpdoctrine",
  478. "type": "patreon"
  479. },
  480. {
  481. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fdbal",
  482. "type": "tidelift"
  483. }
  484. ],
  485. "time": "2025-03-07T18:29:05+00:00"
  486. },
  487. {
  488. "name": "doctrine/deprecations",
  489. "version": "1.1.4",
  490. "source": {
  491. "type": "git",
  492. "url": "https://github.com/doctrine/deprecations.git",
  493. "reference": "31610dbb31faa98e6b5447b62340826f54fbc4e9"
  494. },
  495. "dist": {
  496. "type": "zip",
  497. "url": "https://api.github.com/repos/doctrine/deprecations/zipball/31610dbb31faa98e6b5447b62340826f54fbc4e9",
  498. "reference": "31610dbb31faa98e6b5447b62340826f54fbc4e9",
  499. "shasum": ""
  500. },
  501. "require": {
  502. "php": "^7.1 || ^8.0"
  503. },
  504. "require-dev": {
  505. "doctrine/coding-standard": "^9 || ^12",
  506. "phpstan/phpstan": "1.4.10 || 2.0.3",
  507. "phpstan/phpstan-phpunit": "^1.0 || ^2",
  508. "phpunit/phpunit": "^7.5 || ^8.5 || ^9.5",
  509. "psr/log": "^1 || ^2 || ^3"
  510. },
  511. "suggest": {
  512. "psr/log": "Allows logging deprecations via PSR-3 logger implementation"
  513. },
  514. "type": "library",
  515. "autoload": {
  516. "psr-4": {
  517. "Doctrine\\Deprecations\\": "src"
  518. }
  519. },
  520. "notification-url": "https://packagist.org/downloads/",
  521. "license": [
  522. "MIT"
  523. ],
  524. "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.",
  525. "homepage": "https://www.doctrine-project.org/",
  526. "support": {
  527. "issues": "https://github.com/doctrine/deprecations/issues",
  528. "source": "https://github.com/doctrine/deprecations/tree/1.1.4"
  529. },
  530. "time": "2024-12-07T21:18:45+00:00"
  531. },
  532. {
  533. "name": "doctrine/doctrine-bundle",
  534. "version": "2.14.0",
  535. "source": {
  536. "type": "git",
  537. "url": "https://github.com/doctrine/DoctrineBundle.git",
  538. "reference": "ca6a7350b421baf7fbdefbf9f4993292ed18effb"
  539. },
  540. "dist": {
  541. "type": "zip",
  542. "url": "https://api.github.com/repos/doctrine/DoctrineBundle/zipball/ca6a7350b421baf7fbdefbf9f4993292ed18effb",
  543. "reference": "ca6a7350b421baf7fbdefbf9f4993292ed18effb",
  544. "shasum": ""
  545. },
  546. "require": {
  547. "doctrine/dbal": "^3.7.0 || ^4.0",
  548. "doctrine/persistence": "^3.1 || ^4",
  549. "doctrine/sql-formatter": "^1.0.1",
  550. "php": "^8.1",
  551. "symfony/cache": "^6.4 || ^7.0",
  552. "symfony/config": "^6.4 || ^7.0",
  553. "symfony/console": "^6.4 || ^7.0",
  554. "symfony/dependency-injection": "^6.4 || ^7.0",
  555. "symfony/deprecation-contracts": "^2.1 || ^3",
  556. "symfony/doctrine-bridge": "^6.4.3 || ^7.0.3",
  557. "symfony/framework-bundle": "^6.4 || ^7.0",
  558. "symfony/service-contracts": "^2.5 || ^3"
  559. },
  560. "conflict": {
  561. "doctrine/annotations": ">=3.0",
  562. "doctrine/cache": "< 1.11",
  563. "doctrine/orm": "<2.17 || >=4.0",
  564. "symfony/var-exporter": "< 6.4.1 || 7.0.0",
  565. "twig/twig": "<2.13 || >=3.0 <3.0.4"
  566. },
  567. "require-dev": {
  568. "doctrine/annotations": "^1 || ^2",
  569. "doctrine/cache": "^1.11 || ^2.0",
  570. "doctrine/coding-standard": "^12",
  571. "doctrine/deprecations": "^1.0",
  572. "doctrine/orm": "^2.17 || ^3.0",
  573. "friendsofphp/proxy-manager-lts": "^1.0",
  574. "phpstan/phpstan": "2.1.1",
  575. "phpstan/phpstan-phpunit": "2.0.3",
  576. "phpstan/phpstan-strict-rules": "^2",
  577. "phpunit/phpunit": "^9.6.22",
  578. "psr/log": "^1.1.4 || ^2.0 || ^3.0",
  579. "symfony/doctrine-messenger": "^6.4 || ^7.0",
  580. "symfony/messenger": "^6.4 || ^7.0",
  581. "symfony/phpunit-bridge": "^7.2",
  582. "symfony/property-info": "^6.4 || ^7.0",
  583. "symfony/security-bundle": "^6.4 || ^7.0",
  584. "symfony/stopwatch": "^6.4 || ^7.0",
  585. "symfony/string": "^6.4 || ^7.0",
  586. "symfony/twig-bridge": "^6.4 || ^7.0",
  587. "symfony/validator": "^6.4 || ^7.0",
  588. "symfony/var-exporter": "^6.4.1 || ^7.0.1",
  589. "symfony/web-profiler-bundle": "^6.4 || ^7.0",
  590. "symfony/yaml": "^6.4 || ^7.0",
  591. "twig/twig": "^2.13 || ^3.0.4"
  592. },
  593. "suggest": {
  594. "doctrine/orm": "The Doctrine ORM integration is optional in the bundle.",
  595. "ext-pdo": "*",
  596. "symfony/web-profiler-bundle": "To use the data collector."
  597. },
  598. "type": "symfony-bundle",
  599. "autoload": {
  600. "psr-4": {
  601. "Doctrine\\Bundle\\DoctrineBundle\\": "src"
  602. }
  603. },
  604. "notification-url": "https://packagist.org/downloads/",
  605. "license": [
  606. "MIT"
  607. ],
  608. "authors": [
  609. {
  610. "name": "Fabien Potencier",
  611. "email": "fabien@symfony.com"
  612. },
  613. {
  614. "name": "Benjamin Eberlei",
  615. "email": "kontakt@beberlei.de"
  616. },
  617. {
  618. "name": "Symfony Community",
  619. "homepage": "https://symfony.com/contributors"
  620. },
  621. {
  622. "name": "Doctrine Project",
  623. "homepage": "https://www.doctrine-project.org/"
  624. }
  625. ],
  626. "description": "Symfony DoctrineBundle",
  627. "homepage": "https://www.doctrine-project.org",
  628. "keywords": [
  629. "database",
  630. "dbal",
  631. "orm",
  632. "persistence"
  633. ],
  634. "support": {
  635. "issues": "https://github.com/doctrine/DoctrineBundle/issues",
  636. "source": "https://github.com/doctrine/DoctrineBundle/tree/2.14.0"
  637. },
  638. "funding": [
  639. {
  640. "url": "https://www.doctrine-project.org/sponsorship.html",
  641. "type": "custom"
  642. },
  643. {
  644. "url": "https://www.patreon.com/phpdoctrine",
  645. "type": "patreon"
  646. },
  647. {
  648. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fdoctrine-bundle",
  649. "type": "tidelift"
  650. }
  651. ],
  652. "time": "2025-03-22T17:28:21+00:00"
  653. },
  654. {
  655. "name": "doctrine/doctrine-migrations-bundle",
  656. "version": "3.4.1",
  657. "source": {
  658. "type": "git",
  659. "url": "https://github.com/doctrine/DoctrineMigrationsBundle.git",
  660. "reference": "e858ce0f5c12b266dce7dce24834448355155da7"
  661. },
  662. "dist": {
  663. "type": "zip",
  664. "url": "https://api.github.com/repos/doctrine/DoctrineMigrationsBundle/zipball/e858ce0f5c12b266dce7dce24834448355155da7",
  665. "reference": "e858ce0f5c12b266dce7dce24834448355155da7",
  666. "shasum": ""
  667. },
  668. "require": {
  669. "doctrine/doctrine-bundle": "^2.4",
  670. "doctrine/migrations": "^3.2",
  671. "php": "^7.2 || ^8.0",
  672. "symfony/deprecation-contracts": "^2.1 || ^3",
  673. "symfony/framework-bundle": "^5.4 || ^6.0 || ^7.0"
  674. },
  675. "require-dev": {
  676. "composer/semver": "^3.0",
  677. "doctrine/coding-standard": "^12",
  678. "doctrine/orm": "^2.6 || ^3",
  679. "doctrine/persistence": "^2.0 || ^3",
  680. "phpstan/phpstan": "^1.4 || ^2",
  681. "phpstan/phpstan-deprecation-rules": "^1 || ^2",
  682. "phpstan/phpstan-phpunit": "^1 || ^2",
  683. "phpstan/phpstan-strict-rules": "^1.1 || ^2",
  684. "phpstan/phpstan-symfony": "^1.3 || ^2",
  685. "phpunit/phpunit": "^8.5 || ^9.5",
  686. "symfony/phpunit-bridge": "^6.3 || ^7",
  687. "symfony/var-exporter": "^5.4 || ^6 || ^7"
  688. },
  689. "type": "symfony-bundle",
  690. "autoload": {
  691. "psr-4": {
  692. "Doctrine\\Bundle\\MigrationsBundle\\": "src"
  693. }
  694. },
  695. "notification-url": "https://packagist.org/downloads/",
  696. "license": [
  697. "MIT"
  698. ],
  699. "authors": [
  700. {
  701. "name": "Fabien Potencier",
  702. "email": "fabien@symfony.com"
  703. },
  704. {
  705. "name": "Doctrine Project",
  706. "homepage": "https://www.doctrine-project.org"
  707. },
  708. {
  709. "name": "Symfony Community",
  710. "homepage": "https://symfony.com/contributors"
  711. }
  712. ],
  713. "description": "Symfony DoctrineMigrationsBundle",
  714. "homepage": "https://www.doctrine-project.org",
  715. "keywords": [
  716. "dbal",
  717. "migrations",
  718. "schema"
  719. ],
  720. "support": {
  721. "issues": "https://github.com/doctrine/DoctrineMigrationsBundle/issues",
  722. "source": "https://github.com/doctrine/DoctrineMigrationsBundle/tree/3.4.1"
  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%2Fdoctrine-migrations-bundle",
  735. "type": "tidelift"
  736. }
  737. ],
  738. "time": "2025-01-27T22:48:22+00:00"
  739. },
  740. {
  741. "name": "doctrine/event-manager",
  742. "version": "2.0.1",
  743. "source": {
  744. "type": "git",
  745. "url": "https://github.com/doctrine/event-manager.git",
  746. "reference": "b680156fa328f1dfd874fd48c7026c41570b9c6e"
  747. },
  748. "dist": {
  749. "type": "zip",
  750. "url": "https://api.github.com/repos/doctrine/event-manager/zipball/b680156fa328f1dfd874fd48c7026c41570b9c6e",
  751. "reference": "b680156fa328f1dfd874fd48c7026c41570b9c6e",
  752. "shasum": ""
  753. },
  754. "require": {
  755. "php": "^8.1"
  756. },
  757. "conflict": {
  758. "doctrine/common": "<2.9"
  759. },
  760. "require-dev": {
  761. "doctrine/coding-standard": "^12",
  762. "phpstan/phpstan": "^1.8.8",
  763. "phpunit/phpunit": "^10.5",
  764. "vimeo/psalm": "^5.24"
  765. },
  766. "type": "library",
  767. "autoload": {
  768. "psr-4": {
  769. "Doctrine\\Common\\": "src"
  770. }
  771. },
  772. "notification-url": "https://packagist.org/downloads/",
  773. "license": [
  774. "MIT"
  775. ],
  776. "authors": [
  777. {
  778. "name": "Guilherme Blanco",
  779. "email": "guilhermeblanco@gmail.com"
  780. },
  781. {
  782. "name": "Roman Borschel",
  783. "email": "roman@code-factory.org"
  784. },
  785. {
  786. "name": "Benjamin Eberlei",
  787. "email": "kontakt@beberlei.de"
  788. },
  789. {
  790. "name": "Jonathan Wage",
  791. "email": "jonwage@gmail.com"
  792. },
  793. {
  794. "name": "Johannes Schmitt",
  795. "email": "schmittjoh@gmail.com"
  796. },
  797. {
  798. "name": "Marco Pivetta",
  799. "email": "ocramius@gmail.com"
  800. }
  801. ],
  802. "description": "The Doctrine Event Manager is a simple PHP event system that was built to be used with the various Doctrine projects.",
  803. "homepage": "https://www.doctrine-project.org/projects/event-manager.html",
  804. "keywords": [
  805. "event",
  806. "event dispatcher",
  807. "event manager",
  808. "event system",
  809. "events"
  810. ],
  811. "support": {
  812. "issues": "https://github.com/doctrine/event-manager/issues",
  813. "source": "https://github.com/doctrine/event-manager/tree/2.0.1"
  814. },
  815. "funding": [
  816. {
  817. "url": "https://www.doctrine-project.org/sponsorship.html",
  818. "type": "custom"
  819. },
  820. {
  821. "url": "https://www.patreon.com/phpdoctrine",
  822. "type": "patreon"
  823. },
  824. {
  825. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fevent-manager",
  826. "type": "tidelift"
  827. }
  828. ],
  829. "time": "2024-05-22T20:47:39+00:00"
  830. },
  831. {
  832. "name": "doctrine/inflector",
  833. "version": "2.0.10",
  834. "source": {
  835. "type": "git",
  836. "url": "https://github.com/doctrine/inflector.git",
  837. "reference": "5817d0659c5b50c9b950feb9af7b9668e2c436bc"
  838. },
  839. "dist": {
  840. "type": "zip",
  841. "url": "https://api.github.com/repos/doctrine/inflector/zipball/5817d0659c5b50c9b950feb9af7b9668e2c436bc",
  842. "reference": "5817d0659c5b50c9b950feb9af7b9668e2c436bc",
  843. "shasum": ""
  844. },
  845. "require": {
  846. "php": "^7.2 || ^8.0"
  847. },
  848. "require-dev": {
  849. "doctrine/coding-standard": "^11.0",
  850. "phpstan/phpstan": "^1.8",
  851. "phpstan/phpstan-phpunit": "^1.1",
  852. "phpstan/phpstan-strict-rules": "^1.3",
  853. "phpunit/phpunit": "^8.5 || ^9.5",
  854. "vimeo/psalm": "^4.25 || ^5.4"
  855. },
  856. "type": "library",
  857. "autoload": {
  858. "psr-4": {
  859. "Doctrine\\Inflector\\": "lib/Doctrine/Inflector"
  860. }
  861. },
  862. "notification-url": "https://packagist.org/downloads/",
  863. "license": [
  864. "MIT"
  865. ],
  866. "authors": [
  867. {
  868. "name": "Guilherme Blanco",
  869. "email": "guilhermeblanco@gmail.com"
  870. },
  871. {
  872. "name": "Roman Borschel",
  873. "email": "roman@code-factory.org"
  874. },
  875. {
  876. "name": "Benjamin Eberlei",
  877. "email": "kontakt@beberlei.de"
  878. },
  879. {
  880. "name": "Jonathan Wage",
  881. "email": "jonwage@gmail.com"
  882. },
  883. {
  884. "name": "Johannes Schmitt",
  885. "email": "schmittjoh@gmail.com"
  886. }
  887. ],
  888. "description": "PHP Doctrine Inflector is a small library that can perform string manipulations with regard to upper/lowercase and singular/plural forms of words.",
  889. "homepage": "https://www.doctrine-project.org/projects/inflector.html",
  890. "keywords": [
  891. "inflection",
  892. "inflector",
  893. "lowercase",
  894. "manipulation",
  895. "php",
  896. "plural",
  897. "singular",
  898. "strings",
  899. "uppercase",
  900. "words"
  901. ],
  902. "support": {
  903. "issues": "https://github.com/doctrine/inflector/issues",
  904. "source": "https://github.com/doctrine/inflector/tree/2.0.10"
  905. },
  906. "funding": [
  907. {
  908. "url": "https://www.doctrine-project.org/sponsorship.html",
  909. "type": "custom"
  910. },
  911. {
  912. "url": "https://www.patreon.com/phpdoctrine",
  913. "type": "patreon"
  914. },
  915. {
  916. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Finflector",
  917. "type": "tidelift"
  918. }
  919. ],
  920. "time": "2024-02-18T20:23:39+00:00"
  921. },
  922. {
  923. "name": "doctrine/instantiator",
  924. "version": "2.0.0",
  925. "source": {
  926. "type": "git",
  927. "url": "https://github.com/doctrine/instantiator.git",
  928. "reference": "c6222283fa3f4ac679f8b9ced9a4e23f163e80d0"
  929. },
  930. "dist": {
  931. "type": "zip",
  932. "url": "https://api.github.com/repos/doctrine/instantiator/zipball/c6222283fa3f4ac679f8b9ced9a4e23f163e80d0",
  933. "reference": "c6222283fa3f4ac679f8b9ced9a4e23f163e80d0",
  934. "shasum": ""
  935. },
  936. "require": {
  937. "php": "^8.1"
  938. },
  939. "require-dev": {
  940. "doctrine/coding-standard": "^11",
  941. "ext-pdo": "*",
  942. "ext-phar": "*",
  943. "phpbench/phpbench": "^1.2",
  944. "phpstan/phpstan": "^1.9.4",
  945. "phpstan/phpstan-phpunit": "^1.3",
  946. "phpunit/phpunit": "^9.5.27",
  947. "vimeo/psalm": "^5.4"
  948. },
  949. "type": "library",
  950. "autoload": {
  951. "psr-4": {
  952. "Doctrine\\Instantiator\\": "src/Doctrine/Instantiator/"
  953. }
  954. },
  955. "notification-url": "https://packagist.org/downloads/",
  956. "license": [
  957. "MIT"
  958. ],
  959. "authors": [
  960. {
  961. "name": "Marco Pivetta",
  962. "email": "ocramius@gmail.com",
  963. "homepage": "https://ocramius.github.io/"
  964. }
  965. ],
  966. "description": "A small, lightweight utility to instantiate objects in PHP without invoking their constructors",
  967. "homepage": "https://www.doctrine-project.org/projects/instantiator.html",
  968. "keywords": [
  969. "constructor",
  970. "instantiate"
  971. ],
  972. "support": {
  973. "issues": "https://github.com/doctrine/instantiator/issues",
  974. "source": "https://github.com/doctrine/instantiator/tree/2.0.0"
  975. },
  976. "funding": [
  977. {
  978. "url": "https://www.doctrine-project.org/sponsorship.html",
  979. "type": "custom"
  980. },
  981. {
  982. "url": "https://www.patreon.com/phpdoctrine",
  983. "type": "patreon"
  984. },
  985. {
  986. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Finstantiator",
  987. "type": "tidelift"
  988. }
  989. ],
  990. "time": "2022-12-30T00:23:10+00:00"
  991. },
  992. {
  993. "name": "doctrine/lexer",
  994. "version": "3.0.1",
  995. "source": {
  996. "type": "git",
  997. "url": "https://github.com/doctrine/lexer.git",
  998. "reference": "31ad66abc0fc9e1a1f2d9bc6a42668d2fbbcd6dd"
  999. },
  1000. "dist": {
  1001. "type": "zip",
  1002. "url": "https://api.github.com/repos/doctrine/lexer/zipball/31ad66abc0fc9e1a1f2d9bc6a42668d2fbbcd6dd",
  1003. "reference": "31ad66abc0fc9e1a1f2d9bc6a42668d2fbbcd6dd",
  1004. "shasum": ""
  1005. },
  1006. "require": {
  1007. "php": "^8.1"
  1008. },
  1009. "require-dev": {
  1010. "doctrine/coding-standard": "^12",
  1011. "phpstan/phpstan": "^1.10",
  1012. "phpunit/phpunit": "^10.5",
  1013. "psalm/plugin-phpunit": "^0.18.3",
  1014. "vimeo/psalm": "^5.21"
  1015. },
  1016. "type": "library",
  1017. "autoload": {
  1018. "psr-4": {
  1019. "Doctrine\\Common\\Lexer\\": "src"
  1020. }
  1021. },
  1022. "notification-url": "https://packagist.org/downloads/",
  1023. "license": [
  1024. "MIT"
  1025. ],
  1026. "authors": [
  1027. {
  1028. "name": "Guilherme Blanco",
  1029. "email": "guilhermeblanco@gmail.com"
  1030. },
  1031. {
  1032. "name": "Roman Borschel",
  1033. "email": "roman@code-factory.org"
  1034. },
  1035. {
  1036. "name": "Johannes Schmitt",
  1037. "email": "schmittjoh@gmail.com"
  1038. }
  1039. ],
  1040. "description": "PHP Doctrine Lexer parser library that can be used in Top-Down, Recursive Descent Parsers.",
  1041. "homepage": "https://www.doctrine-project.org/projects/lexer.html",
  1042. "keywords": [
  1043. "annotations",
  1044. "docblock",
  1045. "lexer",
  1046. "parser",
  1047. "php"
  1048. ],
  1049. "support": {
  1050. "issues": "https://github.com/doctrine/lexer/issues",
  1051. "source": "https://github.com/doctrine/lexer/tree/3.0.1"
  1052. },
  1053. "funding": [
  1054. {
  1055. "url": "https://www.doctrine-project.org/sponsorship.html",
  1056. "type": "custom"
  1057. },
  1058. {
  1059. "url": "https://www.patreon.com/phpdoctrine",
  1060. "type": "patreon"
  1061. },
  1062. {
  1063. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Flexer",
  1064. "type": "tidelift"
  1065. }
  1066. ],
  1067. "time": "2024-02-05T11:56:58+00:00"
  1068. },
  1069. {
  1070. "name": "doctrine/migrations",
  1071. "version": "3.9.0",
  1072. "source": {
  1073. "type": "git",
  1074. "url": "https://github.com/doctrine/migrations.git",
  1075. "reference": "325b61e41d032f5f7d7e2d11cbefff656eadc9ab"
  1076. },
  1077. "dist": {
  1078. "type": "zip",
  1079. "url": "https://api.github.com/repos/doctrine/migrations/zipball/325b61e41d032f5f7d7e2d11cbefff656eadc9ab",
  1080. "reference": "325b61e41d032f5f7d7e2d11cbefff656eadc9ab",
  1081. "shasum": ""
  1082. },
  1083. "require": {
  1084. "composer-runtime-api": "^2",
  1085. "doctrine/dbal": "^3.6 || ^4",
  1086. "doctrine/deprecations": "^0.5.3 || ^1",
  1087. "doctrine/event-manager": "^1.2 || ^2.0",
  1088. "php": "^8.1",
  1089. "psr/log": "^1.1.3 || ^2 || ^3",
  1090. "symfony/console": "^5.4 || ^6.0 || ^7.0",
  1091. "symfony/stopwatch": "^5.4 || ^6.0 || ^7.0",
  1092. "symfony/var-exporter": "^6.2 || ^7.0"
  1093. },
  1094. "conflict": {
  1095. "doctrine/orm": "<2.12 || >=4"
  1096. },
  1097. "require-dev": {
  1098. "doctrine/coding-standard": "^12",
  1099. "doctrine/orm": "^2.13 || ^3",
  1100. "doctrine/persistence": "^2 || ^3 || ^4",
  1101. "doctrine/sql-formatter": "^1.0",
  1102. "ext-pdo_sqlite": "*",
  1103. "fig/log-test": "^1",
  1104. "phpstan/phpstan": "^1.10",
  1105. "phpstan/phpstan-deprecation-rules": "^1.1",
  1106. "phpstan/phpstan-phpunit": "^1.3",
  1107. "phpstan/phpstan-strict-rules": "^1.4",
  1108. "phpstan/phpstan-symfony": "^1.3",
  1109. "phpunit/phpunit": "^10.3",
  1110. "symfony/cache": "^5.4 || ^6.0 || ^7.0",
  1111. "symfony/process": "^5.4 || ^6.0 || ^7.0",
  1112. "symfony/yaml": "^5.4 || ^6.0 || ^7.0"
  1113. },
  1114. "suggest": {
  1115. "doctrine/sql-formatter": "Allows to generate formatted SQL with the diff command.",
  1116. "symfony/yaml": "Allows the use of yaml for migration configuration files."
  1117. },
  1118. "bin": [
  1119. "bin/doctrine-migrations"
  1120. ],
  1121. "type": "library",
  1122. "autoload": {
  1123. "psr-4": {
  1124. "Doctrine\\Migrations\\": "src"
  1125. }
  1126. },
  1127. "notification-url": "https://packagist.org/downloads/",
  1128. "license": [
  1129. "MIT"
  1130. ],
  1131. "authors": [
  1132. {
  1133. "name": "Benjamin Eberlei",
  1134. "email": "kontakt@beberlei.de"
  1135. },
  1136. {
  1137. "name": "Jonathan Wage",
  1138. "email": "jonwage@gmail.com"
  1139. },
  1140. {
  1141. "name": "Michael Simonson",
  1142. "email": "contact@mikesimonson.com"
  1143. }
  1144. ],
  1145. "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.",
  1146. "homepage": "https://www.doctrine-project.org/projects/migrations.html",
  1147. "keywords": [
  1148. "database",
  1149. "dbal",
  1150. "migrations"
  1151. ],
  1152. "support": {
  1153. "issues": "https://github.com/doctrine/migrations/issues",
  1154. "source": "https://github.com/doctrine/migrations/tree/3.9.0"
  1155. },
  1156. "funding": [
  1157. {
  1158. "url": "https://www.doctrine-project.org/sponsorship.html",
  1159. "type": "custom"
  1160. },
  1161. {
  1162. "url": "https://www.patreon.com/phpdoctrine",
  1163. "type": "patreon"
  1164. },
  1165. {
  1166. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fmigrations",
  1167. "type": "tidelift"
  1168. }
  1169. ],
  1170. "time": "2025-03-26T06:48:45+00:00"
  1171. },
  1172. {
  1173. "name": "doctrine/orm",
  1174. "version": "3.3.2",
  1175. "source": {
  1176. "type": "git",
  1177. "url": "https://github.com/doctrine/orm.git",
  1178. "reference": "c9557c588b3a70ed93caff069d0aa75737f25609"
  1179. },
  1180. "dist": {
  1181. "type": "zip",
  1182. "url": "https://api.github.com/repos/doctrine/orm/zipball/c9557c588b3a70ed93caff069d0aa75737f25609",
  1183. "reference": "c9557c588b3a70ed93caff069d0aa75737f25609",
  1184. "shasum": ""
  1185. },
  1186. "require": {
  1187. "composer-runtime-api": "^2",
  1188. "doctrine/collections": "^2.2",
  1189. "doctrine/dbal": "^3.8.2 || ^4",
  1190. "doctrine/deprecations": "^0.5.3 || ^1",
  1191. "doctrine/event-manager": "^1.2 || ^2",
  1192. "doctrine/inflector": "^1.4 || ^2.0",
  1193. "doctrine/instantiator": "^1.3 || ^2",
  1194. "doctrine/lexer": "^3",
  1195. "doctrine/persistence": "^3.3.1 || ^4",
  1196. "ext-ctype": "*",
  1197. "php": "^8.1",
  1198. "psr/cache": "^1 || ^2 || ^3",
  1199. "symfony/console": "^5.4 || ^6.0 || ^7.0",
  1200. "symfony/var-exporter": "^6.3.9 || ^7.0"
  1201. },
  1202. "require-dev": {
  1203. "doctrine/coding-standard": "^12.0",
  1204. "phpbench/phpbench": "^1.0",
  1205. "phpdocumentor/guides-cli": "^1.4",
  1206. "phpstan/extension-installer": "^1.4",
  1207. "phpstan/phpstan": "2.0.3",
  1208. "phpstan/phpstan-deprecation-rules": "^2",
  1209. "phpunit/phpunit": "^10.4.0",
  1210. "psr/log": "^1 || ^2 || ^3",
  1211. "squizlabs/php_codesniffer": "3.7.2",
  1212. "symfony/cache": "^5.4 || ^6.2 || ^7.0"
  1213. },
  1214. "suggest": {
  1215. "ext-dom": "Provides support for XSD validation for XML mapping files",
  1216. "symfony/cache": "Provides cache support for Setup Tool with doctrine/cache 2.0"
  1217. },
  1218. "type": "library",
  1219. "autoload": {
  1220. "psr-4": {
  1221. "Doctrine\\ORM\\": "src"
  1222. }
  1223. },
  1224. "notification-url": "https://packagist.org/downloads/",
  1225. "license": [
  1226. "MIT"
  1227. ],
  1228. "authors": [
  1229. {
  1230. "name": "Guilherme Blanco",
  1231. "email": "guilhermeblanco@gmail.com"
  1232. },
  1233. {
  1234. "name": "Roman Borschel",
  1235. "email": "roman@code-factory.org"
  1236. },
  1237. {
  1238. "name": "Benjamin Eberlei",
  1239. "email": "kontakt@beberlei.de"
  1240. },
  1241. {
  1242. "name": "Jonathan Wage",
  1243. "email": "jonwage@gmail.com"
  1244. },
  1245. {
  1246. "name": "Marco Pivetta",
  1247. "email": "ocramius@gmail.com"
  1248. }
  1249. ],
  1250. "description": "Object-Relational-Mapper for PHP",
  1251. "homepage": "https://www.doctrine-project.org/projects/orm.html",
  1252. "keywords": [
  1253. "database",
  1254. "orm"
  1255. ],
  1256. "support": {
  1257. "issues": "https://github.com/doctrine/orm/issues",
  1258. "source": "https://github.com/doctrine/orm/tree/3.3.2"
  1259. },
  1260. "time": "2025-02-04T19:43:15+00:00"
  1261. },
  1262. {
  1263. "name": "doctrine/persistence",
  1264. "version": "4.0.0",
  1265. "source": {
  1266. "type": "git",
  1267. "url": "https://github.com/doctrine/persistence.git",
  1268. "reference": "45004aca79189474f113cbe3a53847c2115a55fa"
  1269. },
  1270. "dist": {
  1271. "type": "zip",
  1272. "url": "https://api.github.com/repos/doctrine/persistence/zipball/45004aca79189474f113cbe3a53847c2115a55fa",
  1273. "reference": "45004aca79189474f113cbe3a53847c2115a55fa",
  1274. "shasum": ""
  1275. },
  1276. "require": {
  1277. "doctrine/event-manager": "^1 || ^2",
  1278. "php": "^8.1",
  1279. "psr/cache": "^1.0 || ^2.0 || ^3.0"
  1280. },
  1281. "conflict": {
  1282. "doctrine/common": "<2.10"
  1283. },
  1284. "require-dev": {
  1285. "doctrine/coding-standard": "^12",
  1286. "phpstan/phpstan": "1.12.7",
  1287. "phpstan/phpstan-phpunit": "^1",
  1288. "phpstan/phpstan-strict-rules": "^1.1",
  1289. "phpunit/phpunit": "^9.6",
  1290. "symfony/cache": "^4.4 || ^5.4 || ^6.0 || ^7.0"
  1291. },
  1292. "type": "library",
  1293. "autoload": {
  1294. "psr-4": {
  1295. "Doctrine\\Persistence\\": "src/Persistence"
  1296. }
  1297. },
  1298. "notification-url": "https://packagist.org/downloads/",
  1299. "license": [
  1300. "MIT"
  1301. ],
  1302. "authors": [
  1303. {
  1304. "name": "Guilherme Blanco",
  1305. "email": "guilhermeblanco@gmail.com"
  1306. },
  1307. {
  1308. "name": "Roman Borschel",
  1309. "email": "roman@code-factory.org"
  1310. },
  1311. {
  1312. "name": "Benjamin Eberlei",
  1313. "email": "kontakt@beberlei.de"
  1314. },
  1315. {
  1316. "name": "Jonathan Wage",
  1317. "email": "jonwage@gmail.com"
  1318. },
  1319. {
  1320. "name": "Johannes Schmitt",
  1321. "email": "schmittjoh@gmail.com"
  1322. },
  1323. {
  1324. "name": "Marco Pivetta",
  1325. "email": "ocramius@gmail.com"
  1326. }
  1327. ],
  1328. "description": "The Doctrine Persistence project is a set of shared interfaces and functionality that the different Doctrine object mappers share.",
  1329. "homepage": "https://www.doctrine-project.org/projects/persistence.html",
  1330. "keywords": [
  1331. "mapper",
  1332. "object",
  1333. "odm",
  1334. "orm",
  1335. "persistence"
  1336. ],
  1337. "support": {
  1338. "issues": "https://github.com/doctrine/persistence/issues",
  1339. "source": "https://github.com/doctrine/persistence/tree/4.0.0"
  1340. },
  1341. "funding": [
  1342. {
  1343. "url": "https://www.doctrine-project.org/sponsorship.html",
  1344. "type": "custom"
  1345. },
  1346. {
  1347. "url": "https://www.patreon.com/phpdoctrine",
  1348. "type": "patreon"
  1349. },
  1350. {
  1351. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fpersistence",
  1352. "type": "tidelift"
  1353. }
  1354. ],
  1355. "time": "2024-11-01T21:49:07+00:00"
  1356. },
  1357. {
  1358. "name": "doctrine/sql-formatter",
  1359. "version": "1.5.2",
  1360. "source": {
  1361. "type": "git",
  1362. "url": "https://github.com/doctrine/sql-formatter.git",
  1363. "reference": "d6d00aba6fd2957fe5216fe2b7673e9985db20c8"
  1364. },
  1365. "dist": {
  1366. "type": "zip",
  1367. "url": "https://api.github.com/repos/doctrine/sql-formatter/zipball/d6d00aba6fd2957fe5216fe2b7673e9985db20c8",
  1368. "reference": "d6d00aba6fd2957fe5216fe2b7673e9985db20c8",
  1369. "shasum": ""
  1370. },
  1371. "require": {
  1372. "php": "^8.1"
  1373. },
  1374. "require-dev": {
  1375. "doctrine/coding-standard": "^12",
  1376. "ergebnis/phpunit-slow-test-detector": "^2.14",
  1377. "phpstan/phpstan": "^1.10",
  1378. "phpunit/phpunit": "^10.5"
  1379. },
  1380. "bin": [
  1381. "bin/sql-formatter"
  1382. ],
  1383. "type": "library",
  1384. "autoload": {
  1385. "psr-4": {
  1386. "Doctrine\\SqlFormatter\\": "src"
  1387. }
  1388. },
  1389. "notification-url": "https://packagist.org/downloads/",
  1390. "license": [
  1391. "MIT"
  1392. ],
  1393. "authors": [
  1394. {
  1395. "name": "Jeremy Dorn",
  1396. "email": "jeremy@jeremydorn.com",
  1397. "homepage": "https://jeremydorn.com/"
  1398. }
  1399. ],
  1400. "description": "a PHP SQL highlighting library",
  1401. "homepage": "https://github.com/doctrine/sql-formatter/",
  1402. "keywords": [
  1403. "highlight",
  1404. "sql"
  1405. ],
  1406. "support": {
  1407. "issues": "https://github.com/doctrine/sql-formatter/issues",
  1408. "source": "https://github.com/doctrine/sql-formatter/tree/1.5.2"
  1409. },
  1410. "time": "2025-01-24T11:45:48+00:00"
  1411. },
  1412. {
  1413. "name": "egulias/email-validator",
  1414. "version": "4.0.4",
  1415. "source": {
  1416. "type": "git",
  1417. "url": "https://github.com/egulias/EmailValidator.git",
  1418. "reference": "d42c8731f0624ad6bdc8d3e5e9a4524f68801cfa"
  1419. },
  1420. "dist": {
  1421. "type": "zip",
  1422. "url": "https://api.github.com/repos/egulias/EmailValidator/zipball/d42c8731f0624ad6bdc8d3e5e9a4524f68801cfa",
  1423. "reference": "d42c8731f0624ad6bdc8d3e5e9a4524f68801cfa",
  1424. "shasum": ""
  1425. },
  1426. "require": {
  1427. "doctrine/lexer": "^2.0 || ^3.0",
  1428. "php": ">=8.1",
  1429. "symfony/polyfill-intl-idn": "^1.26"
  1430. },
  1431. "require-dev": {
  1432. "phpunit/phpunit": "^10.2",
  1433. "vimeo/psalm": "^5.12"
  1434. },
  1435. "suggest": {
  1436. "ext-intl": "PHP Internationalization Libraries are required to use the SpoofChecking validation"
  1437. },
  1438. "type": "library",
  1439. "extra": {
  1440. "branch-alias": {
  1441. "dev-master": "4.0.x-dev"
  1442. }
  1443. },
  1444. "autoload": {
  1445. "psr-4": {
  1446. "Egulias\\EmailValidator\\": "src"
  1447. }
  1448. },
  1449. "notification-url": "https://packagist.org/downloads/",
  1450. "license": [
  1451. "MIT"
  1452. ],
  1453. "authors": [
  1454. {
  1455. "name": "Eduardo Gulias Davis"
  1456. }
  1457. ],
  1458. "description": "A library for validating emails against several RFCs",
  1459. "homepage": "https://github.com/egulias/EmailValidator",
  1460. "keywords": [
  1461. "email",
  1462. "emailvalidation",
  1463. "emailvalidator",
  1464. "validation",
  1465. "validator"
  1466. ],
  1467. "support": {
  1468. "issues": "https://github.com/egulias/EmailValidator/issues",
  1469. "source": "https://github.com/egulias/EmailValidator/tree/4.0.4"
  1470. },
  1471. "funding": [
  1472. {
  1473. "url": "https://github.com/egulias",
  1474. "type": "github"
  1475. }
  1476. ],
  1477. "time": "2025-03-06T22:45:56+00:00"
  1478. },
  1479. {
  1480. "name": "league/commonmark",
  1481. "version": "2.6.1",
  1482. "source": {
  1483. "type": "git",
  1484. "url": "https://github.com/thephpleague/commonmark.git",
  1485. "reference": "d990688c91cedfb69753ffc2512727ec646df2ad"
  1486. },
  1487. "dist": {
  1488. "type": "zip",
  1489. "url": "https://api.github.com/repos/thephpleague/commonmark/zipball/d990688c91cedfb69753ffc2512727ec646df2ad",
  1490. "reference": "d990688c91cedfb69753ffc2512727ec646df2ad",
  1491. "shasum": ""
  1492. },
  1493. "require": {
  1494. "ext-mbstring": "*",
  1495. "league/config": "^1.1.1",
  1496. "php": "^7.4 || ^8.0",
  1497. "psr/event-dispatcher": "^1.0",
  1498. "symfony/deprecation-contracts": "^2.1 || ^3.0",
  1499. "symfony/polyfill-php80": "^1.16"
  1500. },
  1501. "require-dev": {
  1502. "cebe/markdown": "^1.0",
  1503. "commonmark/cmark": "0.31.1",
  1504. "commonmark/commonmark.js": "0.31.1",
  1505. "composer/package-versions-deprecated": "^1.8",
  1506. "embed/embed": "^4.4",
  1507. "erusev/parsedown": "^1.0",
  1508. "ext-json": "*",
  1509. "github/gfm": "0.29.0",
  1510. "michelf/php-markdown": "^1.4 || ^2.0",
  1511. "nyholm/psr7": "^1.5",
  1512. "phpstan/phpstan": "^1.8.2",
  1513. "phpunit/phpunit": "^9.5.21 || ^10.5.9 || ^11.0.0",
  1514. "scrutinizer/ocular": "^1.8.1",
  1515. "symfony/finder": "^5.3 | ^6.0 | ^7.0",
  1516. "symfony/process": "^5.4 | ^6.0 | ^7.0",
  1517. "symfony/yaml": "^2.3 | ^3.0 | ^4.0 | ^5.0 | ^6.0 | ^7.0",
  1518. "unleashedtech/php-coding-standard": "^3.1.1",
  1519. "vimeo/psalm": "^4.24.0 || ^5.0.0"
  1520. },
  1521. "suggest": {
  1522. "symfony/yaml": "v2.3+ required if using the Front Matter extension"
  1523. },
  1524. "type": "library",
  1525. "extra": {
  1526. "branch-alias": {
  1527. "dev-main": "2.7-dev"
  1528. }
  1529. },
  1530. "autoload": {
  1531. "psr-4": {
  1532. "League\\CommonMark\\": "src"
  1533. }
  1534. },
  1535. "notification-url": "https://packagist.org/downloads/",
  1536. "license": [
  1537. "BSD-3-Clause"
  1538. ],
  1539. "authors": [
  1540. {
  1541. "name": "Colin O'Dell",
  1542. "email": "colinodell@gmail.com",
  1543. "homepage": "https://www.colinodell.com",
  1544. "role": "Lead Developer"
  1545. }
  1546. ],
  1547. "description": "Highly-extensible PHP Markdown parser which fully supports the CommonMark spec and GitHub-Flavored Markdown (GFM)",
  1548. "homepage": "https://commonmark.thephpleague.com",
  1549. "keywords": [
  1550. "commonmark",
  1551. "flavored",
  1552. "gfm",
  1553. "github",
  1554. "github-flavored",
  1555. "markdown",
  1556. "md",
  1557. "parser"
  1558. ],
  1559. "support": {
  1560. "docs": "https://commonmark.thephpleague.com/",
  1561. "forum": "https://github.com/thephpleague/commonmark/discussions",
  1562. "issues": "https://github.com/thephpleague/commonmark/issues",
  1563. "rss": "https://github.com/thephpleague/commonmark/releases.atom",
  1564. "source": "https://github.com/thephpleague/commonmark"
  1565. },
  1566. "funding": [
  1567. {
  1568. "url": "https://www.colinodell.com/sponsor",
  1569. "type": "custom"
  1570. },
  1571. {
  1572. "url": "https://www.paypal.me/colinpodell/10.00",
  1573. "type": "custom"
  1574. },
  1575. {
  1576. "url": "https://github.com/colinodell",
  1577. "type": "github"
  1578. },
  1579. {
  1580. "url": "https://tidelift.com/funding/github/packagist/league/commonmark",
  1581. "type": "tidelift"
  1582. }
  1583. ],
  1584. "time": "2024-12-29T14:10:59+00:00"
  1585. },
  1586. {
  1587. "name": "league/config",
  1588. "version": "v1.2.0",
  1589. "source": {
  1590. "type": "git",
  1591. "url": "https://github.com/thephpleague/config.git",
  1592. "reference": "754b3604fb2984c71f4af4a9cbe7b57f346ec1f3"
  1593. },
  1594. "dist": {
  1595. "type": "zip",
  1596. "url": "https://api.github.com/repos/thephpleague/config/zipball/754b3604fb2984c71f4af4a9cbe7b57f346ec1f3",
  1597. "reference": "754b3604fb2984c71f4af4a9cbe7b57f346ec1f3",
  1598. "shasum": ""
  1599. },
  1600. "require": {
  1601. "dflydev/dot-access-data": "^3.0.1",
  1602. "nette/schema": "^1.2",
  1603. "php": "^7.4 || ^8.0"
  1604. },
  1605. "require-dev": {
  1606. "phpstan/phpstan": "^1.8.2",
  1607. "phpunit/phpunit": "^9.5.5",
  1608. "scrutinizer/ocular": "^1.8.1",
  1609. "unleashedtech/php-coding-standard": "^3.1",
  1610. "vimeo/psalm": "^4.7.3"
  1611. },
  1612. "type": "library",
  1613. "extra": {
  1614. "branch-alias": {
  1615. "dev-main": "1.2-dev"
  1616. }
  1617. },
  1618. "autoload": {
  1619. "psr-4": {
  1620. "League\\Config\\": "src"
  1621. }
  1622. },
  1623. "notification-url": "https://packagist.org/downloads/",
  1624. "license": [
  1625. "BSD-3-Clause"
  1626. ],
  1627. "authors": [
  1628. {
  1629. "name": "Colin O'Dell",
  1630. "email": "colinodell@gmail.com",
  1631. "homepage": "https://www.colinodell.com",
  1632. "role": "Lead Developer"
  1633. }
  1634. ],
  1635. "description": "Define configuration arrays with strict schemas and access values with dot notation",
  1636. "homepage": "https://config.thephpleague.com",
  1637. "keywords": [
  1638. "array",
  1639. "config",
  1640. "configuration",
  1641. "dot",
  1642. "dot-access",
  1643. "nested",
  1644. "schema"
  1645. ],
  1646. "support": {
  1647. "docs": "https://config.thephpleague.com/",
  1648. "issues": "https://github.com/thephpleague/config/issues",
  1649. "rss": "https://github.com/thephpleague/config/releases.atom",
  1650. "source": "https://github.com/thephpleague/config"
  1651. },
  1652. "funding": [
  1653. {
  1654. "url": "https://www.colinodell.com/sponsor",
  1655. "type": "custom"
  1656. },
  1657. {
  1658. "url": "https://www.paypal.me/colinpodell/10.00",
  1659. "type": "custom"
  1660. },
  1661. {
  1662. "url": "https://github.com/colinodell",
  1663. "type": "github"
  1664. }
  1665. ],
  1666. "time": "2022-12-11T20:36:23+00:00"
  1667. },
  1668. {
  1669. "name": "league/uri",
  1670. "version": "7.5.1",
  1671. "source": {
  1672. "type": "git",
  1673. "url": "https://github.com/thephpleague/uri.git",
  1674. "reference": "81fb5145d2644324614cc532b28efd0215bda430"
  1675. },
  1676. "dist": {
  1677. "type": "zip",
  1678. "url": "https://api.github.com/repos/thephpleague/uri/zipball/81fb5145d2644324614cc532b28efd0215bda430",
  1679. "reference": "81fb5145d2644324614cc532b28efd0215bda430",
  1680. "shasum": ""
  1681. },
  1682. "require": {
  1683. "league/uri-interfaces": "^7.5",
  1684. "php": "^8.1"
  1685. },
  1686. "conflict": {
  1687. "league/uri-schemes": "^1.0"
  1688. },
  1689. "suggest": {
  1690. "ext-bcmath": "to improve IPV4 host parsing",
  1691. "ext-fileinfo": "to create Data URI from file contennts",
  1692. "ext-gmp": "to improve IPV4 host parsing",
  1693. "ext-intl": "to handle IDN host with the best performance",
  1694. "jeremykendall/php-domain-parser": "to resolve Public Suffix and Top Level Domain",
  1695. "league/uri-components": "Needed to easily manipulate URI objects components",
  1696. "php-64bit": "to improve IPV4 host parsing",
  1697. "symfony/polyfill-intl-idn": "to handle IDN host via the Symfony polyfill if ext-intl is not present"
  1698. },
  1699. "type": "library",
  1700. "extra": {
  1701. "branch-alias": {
  1702. "dev-master": "7.x-dev"
  1703. }
  1704. },
  1705. "autoload": {
  1706. "psr-4": {
  1707. "League\\Uri\\": ""
  1708. }
  1709. },
  1710. "notification-url": "https://packagist.org/downloads/",
  1711. "license": [
  1712. "MIT"
  1713. ],
  1714. "authors": [
  1715. {
  1716. "name": "Ignace Nyamagana Butera",
  1717. "email": "nyamsprod@gmail.com",
  1718. "homepage": "https://nyamsprod.com"
  1719. }
  1720. ],
  1721. "description": "URI manipulation library",
  1722. "homepage": "https://uri.thephpleague.com",
  1723. "keywords": [
  1724. "data-uri",
  1725. "file-uri",
  1726. "ftp",
  1727. "hostname",
  1728. "http",
  1729. "https",
  1730. "middleware",
  1731. "parse_str",
  1732. "parse_url",
  1733. "psr-7",
  1734. "query-string",
  1735. "querystring",
  1736. "rfc3986",
  1737. "rfc3987",
  1738. "rfc6570",
  1739. "uri",
  1740. "uri-template",
  1741. "url",
  1742. "ws"
  1743. ],
  1744. "support": {
  1745. "docs": "https://uri.thephpleague.com",
  1746. "forum": "https://thephpleague.slack.com",
  1747. "issues": "https://github.com/thephpleague/uri-src/issues",
  1748. "source": "https://github.com/thephpleague/uri/tree/7.5.1"
  1749. },
  1750. "funding": [
  1751. {
  1752. "url": "https://github.com/sponsors/nyamsprod",
  1753. "type": "github"
  1754. }
  1755. ],
  1756. "time": "2024-12-08T08:40:02+00:00"
  1757. },
  1758. {
  1759. "name": "league/uri-interfaces",
  1760. "version": "7.5.0",
  1761. "source": {
  1762. "type": "git",
  1763. "url": "https://github.com/thephpleague/uri-interfaces.git",
  1764. "reference": "08cfc6c4f3d811584fb09c37e2849e6a7f9b0742"
  1765. },
  1766. "dist": {
  1767. "type": "zip",
  1768. "url": "https://api.github.com/repos/thephpleague/uri-interfaces/zipball/08cfc6c4f3d811584fb09c37e2849e6a7f9b0742",
  1769. "reference": "08cfc6c4f3d811584fb09c37e2849e6a7f9b0742",
  1770. "shasum": ""
  1771. },
  1772. "require": {
  1773. "ext-filter": "*",
  1774. "php": "^8.1",
  1775. "psr/http-factory": "^1",
  1776. "psr/http-message": "^1.1 || ^2.0"
  1777. },
  1778. "suggest": {
  1779. "ext-bcmath": "to improve IPV4 host parsing",
  1780. "ext-gmp": "to improve IPV4 host parsing",
  1781. "ext-intl": "to handle IDN host with the best performance",
  1782. "php-64bit": "to improve IPV4 host parsing",
  1783. "symfony/polyfill-intl-idn": "to handle IDN host via the Symfony polyfill if ext-intl is not present"
  1784. },
  1785. "type": "library",
  1786. "extra": {
  1787. "branch-alias": {
  1788. "dev-master": "7.x-dev"
  1789. }
  1790. },
  1791. "autoload": {
  1792. "psr-4": {
  1793. "League\\Uri\\": ""
  1794. }
  1795. },
  1796. "notification-url": "https://packagist.org/downloads/",
  1797. "license": [
  1798. "MIT"
  1799. ],
  1800. "authors": [
  1801. {
  1802. "name": "Ignace Nyamagana Butera",
  1803. "email": "nyamsprod@gmail.com",
  1804. "homepage": "https://nyamsprod.com"
  1805. }
  1806. ],
  1807. "description": "Common interfaces and classes for URI representation and interaction",
  1808. "homepage": "https://uri.thephpleague.com",
  1809. "keywords": [
  1810. "data-uri",
  1811. "file-uri",
  1812. "ftp",
  1813. "hostname",
  1814. "http",
  1815. "https",
  1816. "parse_str",
  1817. "parse_url",
  1818. "psr-7",
  1819. "query-string",
  1820. "querystring",
  1821. "rfc3986",
  1822. "rfc3987",
  1823. "rfc6570",
  1824. "uri",
  1825. "url",
  1826. "ws"
  1827. ],
  1828. "support": {
  1829. "docs": "https://uri.thephpleague.com",
  1830. "forum": "https://thephpleague.slack.com",
  1831. "issues": "https://github.com/thephpleague/uri-src/issues",
  1832. "source": "https://github.com/thephpleague/uri-interfaces/tree/7.5.0"
  1833. },
  1834. "funding": [
  1835. {
  1836. "url": "https://github.com/sponsors/nyamsprod",
  1837. "type": "github"
  1838. }
  1839. ],
  1840. "time": "2024-12-08T08:18:47+00:00"
  1841. },
  1842. {
  1843. "name": "masterminds/html5",
  1844. "version": "2.9.0",
  1845. "source": {
  1846. "type": "git",
  1847. "url": "https://github.com/Masterminds/html5-php.git",
  1848. "reference": "f5ac2c0b0a2eefca70b2ce32a5809992227e75a6"
  1849. },
  1850. "dist": {
  1851. "type": "zip",
  1852. "url": "https://api.github.com/repos/Masterminds/html5-php/zipball/f5ac2c0b0a2eefca70b2ce32a5809992227e75a6",
  1853. "reference": "f5ac2c0b0a2eefca70b2ce32a5809992227e75a6",
  1854. "shasum": ""
  1855. },
  1856. "require": {
  1857. "ext-dom": "*",
  1858. "php": ">=5.3.0"
  1859. },
  1860. "require-dev": {
  1861. "phpunit/phpunit": "^4.8.35 || ^5.7.21 || ^6 || ^7 || ^8 || ^9"
  1862. },
  1863. "type": "library",
  1864. "extra": {
  1865. "branch-alias": {
  1866. "dev-master": "2.7-dev"
  1867. }
  1868. },
  1869. "autoload": {
  1870. "psr-4": {
  1871. "Masterminds\\": "src"
  1872. }
  1873. },
  1874. "notification-url": "https://packagist.org/downloads/",
  1875. "license": [
  1876. "MIT"
  1877. ],
  1878. "authors": [
  1879. {
  1880. "name": "Matt Butcher",
  1881. "email": "technosophos@gmail.com"
  1882. },
  1883. {
  1884. "name": "Matt Farina",
  1885. "email": "matt@mattfarina.com"
  1886. },
  1887. {
  1888. "name": "Asmir Mustafic",
  1889. "email": "goetas@gmail.com"
  1890. }
  1891. ],
  1892. "description": "An HTML5 parser and serializer.",
  1893. "homepage": "http://masterminds.github.io/html5-php",
  1894. "keywords": [
  1895. "HTML5",
  1896. "dom",
  1897. "html",
  1898. "parser",
  1899. "querypath",
  1900. "serializer",
  1901. "xml"
  1902. ],
  1903. "support": {
  1904. "issues": "https://github.com/Masterminds/html5-php/issues",
  1905. "source": "https://github.com/Masterminds/html5-php/tree/2.9.0"
  1906. },
  1907. "time": "2024-03-31T07:05:07+00:00"
  1908. },
  1909. {
  1910. "name": "monolog/monolog",
  1911. "version": "3.9.0",
  1912. "source": {
  1913. "type": "git",
  1914. "url": "https://github.com/Seldaek/monolog.git",
  1915. "reference": "10d85740180ecba7896c87e06a166e0c95a0e3b6"
  1916. },
  1917. "dist": {
  1918. "type": "zip",
  1919. "url": "https://api.github.com/repos/Seldaek/monolog/zipball/10d85740180ecba7896c87e06a166e0c95a0e3b6",
  1920. "reference": "10d85740180ecba7896c87e06a166e0c95a0e3b6",
  1921. "shasum": ""
  1922. },
  1923. "require": {
  1924. "php": ">=8.1",
  1925. "psr/log": "^2.0 || ^3.0"
  1926. },
  1927. "provide": {
  1928. "psr/log-implementation": "3.0.0"
  1929. },
  1930. "require-dev": {
  1931. "aws/aws-sdk-php": "^3.0",
  1932. "doctrine/couchdb": "~1.0@dev",
  1933. "elasticsearch/elasticsearch": "^7 || ^8",
  1934. "ext-json": "*",
  1935. "graylog2/gelf-php": "^1.4.2 || ^2.0",
  1936. "guzzlehttp/guzzle": "^7.4.5",
  1937. "guzzlehttp/psr7": "^2.2",
  1938. "mongodb/mongodb": "^1.8",
  1939. "php-amqplib/php-amqplib": "~2.4 || ^3",
  1940. "php-console/php-console": "^3.1.8",
  1941. "phpstan/phpstan": "^2",
  1942. "phpstan/phpstan-deprecation-rules": "^2",
  1943. "phpstan/phpstan-strict-rules": "^2",
  1944. "phpunit/phpunit": "^10.5.17 || ^11.0.7",
  1945. "predis/predis": "^1.1 || ^2",
  1946. "rollbar/rollbar": "^4.0",
  1947. "ruflin/elastica": "^7 || ^8",
  1948. "symfony/mailer": "^5.4 || ^6",
  1949. "symfony/mime": "^5.4 || ^6"
  1950. },
  1951. "suggest": {
  1952. "aws/aws-sdk-php": "Allow sending log messages to AWS services like DynamoDB",
  1953. "doctrine/couchdb": "Allow sending log messages to a CouchDB server",
  1954. "elasticsearch/elasticsearch": "Allow sending log messages to an Elasticsearch server via official client",
  1955. "ext-amqp": "Allow sending log messages to an AMQP server (1.0+ required)",
  1956. "ext-curl": "Required to send log messages using the IFTTTHandler, the LogglyHandler, the SendGridHandler, the SlackWebhookHandler or the TelegramBotHandler",
  1957. "ext-mbstring": "Allow to work properly with unicode symbols",
  1958. "ext-mongodb": "Allow sending log messages to a MongoDB server (via driver)",
  1959. "ext-openssl": "Required to send log messages using SSL",
  1960. "ext-sockets": "Allow sending log messages to a Syslog server (via UDP driver)",
  1961. "graylog2/gelf-php": "Allow sending log messages to a GrayLog2 server",
  1962. "mongodb/mongodb": "Allow sending log messages to a MongoDB server (via library)",
  1963. "php-amqplib/php-amqplib": "Allow sending log messages to an AMQP server using php-amqplib",
  1964. "rollbar/rollbar": "Allow sending log messages to Rollbar",
  1965. "ruflin/elastica": "Allow sending log messages to an Elastic Search server"
  1966. },
  1967. "type": "library",
  1968. "extra": {
  1969. "branch-alias": {
  1970. "dev-main": "3.x-dev"
  1971. }
  1972. },
  1973. "autoload": {
  1974. "psr-4": {
  1975. "Monolog\\": "src/Monolog"
  1976. }
  1977. },
  1978. "notification-url": "https://packagist.org/downloads/",
  1979. "license": [
  1980. "MIT"
  1981. ],
  1982. "authors": [
  1983. {
  1984. "name": "Jordi Boggiano",
  1985. "email": "j.boggiano@seld.be",
  1986. "homepage": "https://seld.be"
  1987. }
  1988. ],
  1989. "description": "Sends your logs to files, sockets, inboxes, databases and various web services",
  1990. "homepage": "https://github.com/Seldaek/monolog",
  1991. "keywords": [
  1992. "log",
  1993. "logging",
  1994. "psr-3"
  1995. ],
  1996. "support": {
  1997. "issues": "https://github.com/Seldaek/monolog/issues",
  1998. "source": "https://github.com/Seldaek/monolog/tree/3.9.0"
  1999. },
  2000. "funding": [
  2001. {
  2002. "url": "https://github.com/Seldaek",
  2003. "type": "github"
  2004. },
  2005. {
  2006. "url": "https://tidelift.com/funding/github/packagist/monolog/monolog",
  2007. "type": "tidelift"
  2008. }
  2009. ],
  2010. "time": "2025-03-24T10:02:05+00:00"
  2011. },
  2012. {
  2013. "name": "nette/schema",
  2014. "version": "v1.3.2",
  2015. "source": {
  2016. "type": "git",
  2017. "url": "https://github.com/nette/schema.git",
  2018. "reference": "da801d52f0354f70a638673c4a0f04e16529431d"
  2019. },
  2020. "dist": {
  2021. "type": "zip",
  2022. "url": "https://api.github.com/repos/nette/schema/zipball/da801d52f0354f70a638673c4a0f04e16529431d",
  2023. "reference": "da801d52f0354f70a638673c4a0f04e16529431d",
  2024. "shasum": ""
  2025. },
  2026. "require": {
  2027. "nette/utils": "^4.0",
  2028. "php": "8.1 - 8.4"
  2029. },
  2030. "require-dev": {
  2031. "nette/tester": "^2.5.2",
  2032. "phpstan/phpstan-nette": "^1.0",
  2033. "tracy/tracy": "^2.8"
  2034. },
  2035. "type": "library",
  2036. "extra": {
  2037. "branch-alias": {
  2038. "dev-master": "1.3-dev"
  2039. }
  2040. },
  2041. "autoload": {
  2042. "classmap": [
  2043. "src/"
  2044. ]
  2045. },
  2046. "notification-url": "https://packagist.org/downloads/",
  2047. "license": [
  2048. "BSD-3-Clause",
  2049. "GPL-2.0-only",
  2050. "GPL-3.0-only"
  2051. ],
  2052. "authors": [
  2053. {
  2054. "name": "David Grudl",
  2055. "homepage": "https://davidgrudl.com"
  2056. },
  2057. {
  2058. "name": "Nette Community",
  2059. "homepage": "https://nette.org/contributors"
  2060. }
  2061. ],
  2062. "description": "📐 Nette Schema: validating data structures against a given Schema.",
  2063. "homepage": "https://nette.org",
  2064. "keywords": [
  2065. "config",
  2066. "nette"
  2067. ],
  2068. "support": {
  2069. "issues": "https://github.com/nette/schema/issues",
  2070. "source": "https://github.com/nette/schema/tree/v1.3.2"
  2071. },
  2072. "time": "2024-10-06T23:10:23+00:00"
  2073. },
  2074. {
  2075. "name": "nette/utils",
  2076. "version": "v4.0.5",
  2077. "source": {
  2078. "type": "git",
  2079. "url": "https://github.com/nette/utils.git",
  2080. "reference": "736c567e257dbe0fcf6ce81b4d6dbe05c6899f96"
  2081. },
  2082. "dist": {
  2083. "type": "zip",
  2084. "url": "https://api.github.com/repos/nette/utils/zipball/736c567e257dbe0fcf6ce81b4d6dbe05c6899f96",
  2085. "reference": "736c567e257dbe0fcf6ce81b4d6dbe05c6899f96",
  2086. "shasum": ""
  2087. },
  2088. "require": {
  2089. "php": "8.0 - 8.4"
  2090. },
  2091. "conflict": {
  2092. "nette/finder": "<3",
  2093. "nette/schema": "<1.2.2"
  2094. },
  2095. "require-dev": {
  2096. "jetbrains/phpstorm-attributes": "dev-master",
  2097. "nette/tester": "^2.5",
  2098. "phpstan/phpstan": "^1.0",
  2099. "tracy/tracy": "^2.9"
  2100. },
  2101. "suggest": {
  2102. "ext-gd": "to use Image",
  2103. "ext-iconv": "to use Strings::webalize(), toAscii(), chr() and reverse()",
  2104. "ext-intl": "to use Strings::webalize(), toAscii(), normalize() and compare()",
  2105. "ext-json": "to use Nette\\Utils\\Json",
  2106. "ext-mbstring": "to use Strings::lower() etc...",
  2107. "ext-tokenizer": "to use Nette\\Utils\\Reflection::getUseStatements()"
  2108. },
  2109. "type": "library",
  2110. "extra": {
  2111. "branch-alias": {
  2112. "dev-master": "4.0-dev"
  2113. }
  2114. },
  2115. "autoload": {
  2116. "classmap": [
  2117. "src/"
  2118. ]
  2119. },
  2120. "notification-url": "https://packagist.org/downloads/",
  2121. "license": [
  2122. "BSD-3-Clause",
  2123. "GPL-2.0-only",
  2124. "GPL-3.0-only"
  2125. ],
  2126. "authors": [
  2127. {
  2128. "name": "David Grudl",
  2129. "homepage": "https://davidgrudl.com"
  2130. },
  2131. {
  2132. "name": "Nette Community",
  2133. "homepage": "https://nette.org/contributors"
  2134. }
  2135. ],
  2136. "description": "🛠 Nette Utils: lightweight utilities for string & array manipulation, image handling, safe JSON encoding/decoding, validation, slug or strong password generating etc.",
  2137. "homepage": "https://nette.org",
  2138. "keywords": [
  2139. "array",
  2140. "core",
  2141. "datetime",
  2142. "images",
  2143. "json",
  2144. "nette",
  2145. "paginator",
  2146. "password",
  2147. "slugify",
  2148. "string",
  2149. "unicode",
  2150. "utf-8",
  2151. "utility",
  2152. "validation"
  2153. ],
  2154. "support": {
  2155. "issues": "https://github.com/nette/utils/issues",
  2156. "source": "https://github.com/nette/utils/tree/v4.0.5"
  2157. },
  2158. "time": "2024-08-07T15:39:19+00:00"
  2159. },
  2160. {
  2161. "name": "phpdocumentor/reflection-common",
  2162. "version": "2.2.0",
  2163. "source": {
  2164. "type": "git",
  2165. "url": "https://github.com/phpDocumentor/ReflectionCommon.git",
  2166. "reference": "1d01c49d4ed62f25aa84a747ad35d5a16924662b"
  2167. },
  2168. "dist": {
  2169. "type": "zip",
  2170. "url": "https://api.github.com/repos/phpDocumentor/ReflectionCommon/zipball/1d01c49d4ed62f25aa84a747ad35d5a16924662b",
  2171. "reference": "1d01c49d4ed62f25aa84a747ad35d5a16924662b",
  2172. "shasum": ""
  2173. },
  2174. "require": {
  2175. "php": "^7.2 || ^8.0"
  2176. },
  2177. "type": "library",
  2178. "extra": {
  2179. "branch-alias": {
  2180. "dev-2.x": "2.x-dev"
  2181. }
  2182. },
  2183. "autoload": {
  2184. "psr-4": {
  2185. "phpDocumentor\\Reflection\\": "src/"
  2186. }
  2187. },
  2188. "notification-url": "https://packagist.org/downloads/",
  2189. "license": [
  2190. "MIT"
  2191. ],
  2192. "authors": [
  2193. {
  2194. "name": "Jaap van Otterdijk",
  2195. "email": "opensource@ijaap.nl"
  2196. }
  2197. ],
  2198. "description": "Common reflection classes used by phpdocumentor to reflect the code structure",
  2199. "homepage": "http://www.phpdoc.org",
  2200. "keywords": [
  2201. "FQSEN",
  2202. "phpDocumentor",
  2203. "phpdoc",
  2204. "reflection",
  2205. "static analysis"
  2206. ],
  2207. "support": {
  2208. "issues": "https://github.com/phpDocumentor/ReflectionCommon/issues",
  2209. "source": "https://github.com/phpDocumentor/ReflectionCommon/tree/2.x"
  2210. },
  2211. "time": "2020-06-27T09:03:43+00:00"
  2212. },
  2213. {
  2214. "name": "phpdocumentor/reflection-docblock",
  2215. "version": "5.6.1",
  2216. "source": {
  2217. "type": "git",
  2218. "url": "https://github.com/phpDocumentor/ReflectionDocBlock.git",
  2219. "reference": "e5e784149a09bd69d9a5e3b01c5cbd2e2bd653d8"
  2220. },
  2221. "dist": {
  2222. "type": "zip",
  2223. "url": "https://api.github.com/repos/phpDocumentor/ReflectionDocBlock/zipball/e5e784149a09bd69d9a5e3b01c5cbd2e2bd653d8",
  2224. "reference": "e5e784149a09bd69d9a5e3b01c5cbd2e2bd653d8",
  2225. "shasum": ""
  2226. },
  2227. "require": {
  2228. "doctrine/deprecations": "^1.1",
  2229. "ext-filter": "*",
  2230. "php": "^7.4 || ^8.0",
  2231. "phpdocumentor/reflection-common": "^2.2",
  2232. "phpdocumentor/type-resolver": "^1.7",
  2233. "phpstan/phpdoc-parser": "^1.7|^2.0",
  2234. "webmozart/assert": "^1.9.1"
  2235. },
  2236. "require-dev": {
  2237. "mockery/mockery": "~1.3.5 || ~1.6.0",
  2238. "phpstan/extension-installer": "^1.1",
  2239. "phpstan/phpstan": "^1.8",
  2240. "phpstan/phpstan-mockery": "^1.1",
  2241. "phpstan/phpstan-webmozart-assert": "^1.2",
  2242. "phpunit/phpunit": "^9.5",
  2243. "psalm/phar": "^5.26"
  2244. },
  2245. "type": "library",
  2246. "extra": {
  2247. "branch-alias": {
  2248. "dev-master": "5.x-dev"
  2249. }
  2250. },
  2251. "autoload": {
  2252. "psr-4": {
  2253. "phpDocumentor\\Reflection\\": "src"
  2254. }
  2255. },
  2256. "notification-url": "https://packagist.org/downloads/",
  2257. "license": [
  2258. "MIT"
  2259. ],
  2260. "authors": [
  2261. {
  2262. "name": "Mike van Riel",
  2263. "email": "me@mikevanriel.com"
  2264. },
  2265. {
  2266. "name": "Jaap van Otterdijk",
  2267. "email": "opensource@ijaap.nl"
  2268. }
  2269. ],
  2270. "description": "With this component, a library can provide support for annotations via DocBlocks or otherwise retrieve information that is embedded in a DocBlock.",
  2271. "support": {
  2272. "issues": "https://github.com/phpDocumentor/ReflectionDocBlock/issues",
  2273. "source": "https://github.com/phpDocumentor/ReflectionDocBlock/tree/5.6.1"
  2274. },
  2275. "time": "2024-12-07T09:39:29+00:00"
  2276. },
  2277. {
  2278. "name": "phpdocumentor/type-resolver",
  2279. "version": "1.10.0",
  2280. "source": {
  2281. "type": "git",
  2282. "url": "https://github.com/phpDocumentor/TypeResolver.git",
  2283. "reference": "679e3ce485b99e84c775d28e2e96fade9a7fb50a"
  2284. },
  2285. "dist": {
  2286. "type": "zip",
  2287. "url": "https://api.github.com/repos/phpDocumentor/TypeResolver/zipball/679e3ce485b99e84c775d28e2e96fade9a7fb50a",
  2288. "reference": "679e3ce485b99e84c775d28e2e96fade9a7fb50a",
  2289. "shasum": ""
  2290. },
  2291. "require": {
  2292. "doctrine/deprecations": "^1.0",
  2293. "php": "^7.3 || ^8.0",
  2294. "phpdocumentor/reflection-common": "^2.0",
  2295. "phpstan/phpdoc-parser": "^1.18|^2.0"
  2296. },
  2297. "require-dev": {
  2298. "ext-tokenizer": "*",
  2299. "phpbench/phpbench": "^1.2",
  2300. "phpstan/extension-installer": "^1.1",
  2301. "phpstan/phpstan": "^1.8",
  2302. "phpstan/phpstan-phpunit": "^1.1",
  2303. "phpunit/phpunit": "^9.5",
  2304. "rector/rector": "^0.13.9",
  2305. "vimeo/psalm": "^4.25"
  2306. },
  2307. "type": "library",
  2308. "extra": {
  2309. "branch-alias": {
  2310. "dev-1.x": "1.x-dev"
  2311. }
  2312. },
  2313. "autoload": {
  2314. "psr-4": {
  2315. "phpDocumentor\\Reflection\\": "src"
  2316. }
  2317. },
  2318. "notification-url": "https://packagist.org/downloads/",
  2319. "license": [
  2320. "MIT"
  2321. ],
  2322. "authors": [
  2323. {
  2324. "name": "Mike van Riel",
  2325. "email": "me@mikevanriel.com"
  2326. }
  2327. ],
  2328. "description": "A PSR-5 based resolver of Class names, Types and Structural Element Names",
  2329. "support": {
  2330. "issues": "https://github.com/phpDocumentor/TypeResolver/issues",
  2331. "source": "https://github.com/phpDocumentor/TypeResolver/tree/1.10.0"
  2332. },
  2333. "time": "2024-11-09T15:12:26+00:00"
  2334. },
  2335. {
  2336. "name": "phpstan/phpdoc-parser",
  2337. "version": "2.1.0",
  2338. "source": {
  2339. "type": "git",
  2340. "url": "https://github.com/phpstan/phpdoc-parser.git",
  2341. "reference": "9b30d6fd026b2c132b3985ce6b23bec09ab3aa68"
  2342. },
  2343. "dist": {
  2344. "type": "zip",
  2345. "url": "https://api.github.com/repos/phpstan/phpdoc-parser/zipball/9b30d6fd026b2c132b3985ce6b23bec09ab3aa68",
  2346. "reference": "9b30d6fd026b2c132b3985ce6b23bec09ab3aa68",
  2347. "shasum": ""
  2348. },
  2349. "require": {
  2350. "php": "^7.4 || ^8.0"
  2351. },
  2352. "require-dev": {
  2353. "doctrine/annotations": "^2.0",
  2354. "nikic/php-parser": "^5.3.0",
  2355. "php-parallel-lint/php-parallel-lint": "^1.2",
  2356. "phpstan/extension-installer": "^1.0",
  2357. "phpstan/phpstan": "^2.0",
  2358. "phpstan/phpstan-phpunit": "^2.0",
  2359. "phpstan/phpstan-strict-rules": "^2.0",
  2360. "phpunit/phpunit": "^9.6",
  2361. "symfony/process": "^5.2"
  2362. },
  2363. "type": "library",
  2364. "autoload": {
  2365. "psr-4": {
  2366. "PHPStan\\PhpDocParser\\": [
  2367. "src/"
  2368. ]
  2369. }
  2370. },
  2371. "notification-url": "https://packagist.org/downloads/",
  2372. "license": [
  2373. "MIT"
  2374. ],
  2375. "description": "PHPDoc parser with support for nullable, intersection and generic types",
  2376. "support": {
  2377. "issues": "https://github.com/phpstan/phpdoc-parser/issues",
  2378. "source": "https://github.com/phpstan/phpdoc-parser/tree/2.1.0"
  2379. },
  2380. "time": "2025-02-19T13:28:12+00:00"
  2381. },
  2382. {
  2383. "name": "psr/cache",
  2384. "version": "3.0.0",
  2385. "source": {
  2386. "type": "git",
  2387. "url": "https://github.com/php-fig/cache.git",
  2388. "reference": "aa5030cfa5405eccfdcb1083ce040c2cb8d253bf"
  2389. },
  2390. "dist": {
  2391. "type": "zip",
  2392. "url": "https://api.github.com/repos/php-fig/cache/zipball/aa5030cfa5405eccfdcb1083ce040c2cb8d253bf",
  2393. "reference": "aa5030cfa5405eccfdcb1083ce040c2cb8d253bf",
  2394. "shasum": ""
  2395. },
  2396. "require": {
  2397. "php": ">=8.0.0"
  2398. },
  2399. "type": "library",
  2400. "extra": {
  2401. "branch-alias": {
  2402. "dev-master": "1.0.x-dev"
  2403. }
  2404. },
  2405. "autoload": {
  2406. "psr-4": {
  2407. "Psr\\Cache\\": "src/"
  2408. }
  2409. },
  2410. "notification-url": "https://packagist.org/downloads/",
  2411. "license": [
  2412. "MIT"
  2413. ],
  2414. "authors": [
  2415. {
  2416. "name": "PHP-FIG",
  2417. "homepage": "https://www.php-fig.org/"
  2418. }
  2419. ],
  2420. "description": "Common interface for caching libraries",
  2421. "keywords": [
  2422. "cache",
  2423. "psr",
  2424. "psr-6"
  2425. ],
  2426. "support": {
  2427. "source": "https://github.com/php-fig/cache/tree/3.0.0"
  2428. },
  2429. "time": "2021-02-03T23:26:27+00:00"
  2430. },
  2431. {
  2432. "name": "psr/clock",
  2433. "version": "1.0.0",
  2434. "source": {
  2435. "type": "git",
  2436. "url": "https://github.com/php-fig/clock.git",
  2437. "reference": "e41a24703d4560fd0acb709162f73b8adfc3aa0d"
  2438. },
  2439. "dist": {
  2440. "type": "zip",
  2441. "url": "https://api.github.com/repos/php-fig/clock/zipball/e41a24703d4560fd0acb709162f73b8adfc3aa0d",
  2442. "reference": "e41a24703d4560fd0acb709162f73b8adfc3aa0d",
  2443. "shasum": ""
  2444. },
  2445. "require": {
  2446. "php": "^7.0 || ^8.0"
  2447. },
  2448. "type": "library",
  2449. "autoload": {
  2450. "psr-4": {
  2451. "Psr\\Clock\\": "src/"
  2452. }
  2453. },
  2454. "notification-url": "https://packagist.org/downloads/",
  2455. "license": [
  2456. "MIT"
  2457. ],
  2458. "authors": [
  2459. {
  2460. "name": "PHP-FIG",
  2461. "homepage": "https://www.php-fig.org/"
  2462. }
  2463. ],
  2464. "description": "Common interface for reading the clock.",
  2465. "homepage": "https://github.com/php-fig/clock",
  2466. "keywords": [
  2467. "clock",
  2468. "now",
  2469. "psr",
  2470. "psr-20",
  2471. "time"
  2472. ],
  2473. "support": {
  2474. "issues": "https://github.com/php-fig/clock/issues",
  2475. "source": "https://github.com/php-fig/clock/tree/1.0.0"
  2476. },
  2477. "time": "2022-11-25T14:36:26+00:00"
  2478. },
  2479. {
  2480. "name": "psr/container",
  2481. "version": "2.0.2",
  2482. "source": {
  2483. "type": "git",
  2484. "url": "https://github.com/php-fig/container.git",
  2485. "reference": "c71ecc56dfe541dbd90c5360474fbc405f8d5963"
  2486. },
  2487. "dist": {
  2488. "type": "zip",
  2489. "url": "https://api.github.com/repos/php-fig/container/zipball/c71ecc56dfe541dbd90c5360474fbc405f8d5963",
  2490. "reference": "c71ecc56dfe541dbd90c5360474fbc405f8d5963",
  2491. "shasum": ""
  2492. },
  2493. "require": {
  2494. "php": ">=7.4.0"
  2495. },
  2496. "type": "library",
  2497. "extra": {
  2498. "branch-alias": {
  2499. "dev-master": "2.0.x-dev"
  2500. }
  2501. },
  2502. "autoload": {
  2503. "psr-4": {
  2504. "Psr\\Container\\": "src/"
  2505. }
  2506. },
  2507. "notification-url": "https://packagist.org/downloads/",
  2508. "license": [
  2509. "MIT"
  2510. ],
  2511. "authors": [
  2512. {
  2513. "name": "PHP-FIG",
  2514. "homepage": "https://www.php-fig.org/"
  2515. }
  2516. ],
  2517. "description": "Common Container Interface (PHP FIG PSR-11)",
  2518. "homepage": "https://github.com/php-fig/container",
  2519. "keywords": [
  2520. "PSR-11",
  2521. "container",
  2522. "container-interface",
  2523. "container-interop",
  2524. "psr"
  2525. ],
  2526. "support": {
  2527. "issues": "https://github.com/php-fig/container/issues",
  2528. "source": "https://github.com/php-fig/container/tree/2.0.2"
  2529. },
  2530. "time": "2021-11-05T16:47:00+00:00"
  2531. },
  2532. {
  2533. "name": "psr/event-dispatcher",
  2534. "version": "1.0.0",
  2535. "source": {
  2536. "type": "git",
  2537. "url": "https://github.com/php-fig/event-dispatcher.git",
  2538. "reference": "dbefd12671e8a14ec7f180cab83036ed26714bb0"
  2539. },
  2540. "dist": {
  2541. "type": "zip",
  2542. "url": "https://api.github.com/repos/php-fig/event-dispatcher/zipball/dbefd12671e8a14ec7f180cab83036ed26714bb0",
  2543. "reference": "dbefd12671e8a14ec7f180cab83036ed26714bb0",
  2544. "shasum": ""
  2545. },
  2546. "require": {
  2547. "php": ">=7.2.0"
  2548. },
  2549. "type": "library",
  2550. "extra": {
  2551. "branch-alias": {
  2552. "dev-master": "1.0.x-dev"
  2553. }
  2554. },
  2555. "autoload": {
  2556. "psr-4": {
  2557. "Psr\\EventDispatcher\\": "src/"
  2558. }
  2559. },
  2560. "notification-url": "https://packagist.org/downloads/",
  2561. "license": [
  2562. "MIT"
  2563. ],
  2564. "authors": [
  2565. {
  2566. "name": "PHP-FIG",
  2567. "homepage": "http://www.php-fig.org/"
  2568. }
  2569. ],
  2570. "description": "Standard interfaces for event handling.",
  2571. "keywords": [
  2572. "events",
  2573. "psr",
  2574. "psr-14"
  2575. ],
  2576. "support": {
  2577. "issues": "https://github.com/php-fig/event-dispatcher/issues",
  2578. "source": "https://github.com/php-fig/event-dispatcher/tree/1.0.0"
  2579. },
  2580. "time": "2019-01-08T18:20:26+00:00"
  2581. },
  2582. {
  2583. "name": "psr/http-factory",
  2584. "version": "1.1.0",
  2585. "source": {
  2586. "type": "git",
  2587. "url": "https://github.com/php-fig/http-factory.git",
  2588. "reference": "2b4765fddfe3b508ac62f829e852b1501d3f6e8a"
  2589. },
  2590. "dist": {
  2591. "type": "zip",
  2592. "url": "https://api.github.com/repos/php-fig/http-factory/zipball/2b4765fddfe3b508ac62f829e852b1501d3f6e8a",
  2593. "reference": "2b4765fddfe3b508ac62f829e852b1501d3f6e8a",
  2594. "shasum": ""
  2595. },
  2596. "require": {
  2597. "php": ">=7.1",
  2598. "psr/http-message": "^1.0 || ^2.0"
  2599. },
  2600. "type": "library",
  2601. "extra": {
  2602. "branch-alias": {
  2603. "dev-master": "1.0.x-dev"
  2604. }
  2605. },
  2606. "autoload": {
  2607. "psr-4": {
  2608. "Psr\\Http\\Message\\": "src/"
  2609. }
  2610. },
  2611. "notification-url": "https://packagist.org/downloads/",
  2612. "license": [
  2613. "MIT"
  2614. ],
  2615. "authors": [
  2616. {
  2617. "name": "PHP-FIG",
  2618. "homepage": "https://www.php-fig.org/"
  2619. }
  2620. ],
  2621. "description": "PSR-17: Common interfaces for PSR-7 HTTP message factories",
  2622. "keywords": [
  2623. "factory",
  2624. "http",
  2625. "message",
  2626. "psr",
  2627. "psr-17",
  2628. "psr-7",
  2629. "request",
  2630. "response"
  2631. ],
  2632. "support": {
  2633. "source": "https://github.com/php-fig/http-factory"
  2634. },
  2635. "time": "2024-04-15T12:06:14+00:00"
  2636. },
  2637. {
  2638. "name": "psr/http-message",
  2639. "version": "2.0",
  2640. "source": {
  2641. "type": "git",
  2642. "url": "https://github.com/php-fig/http-message.git",
  2643. "reference": "402d35bcb92c70c026d1a6a9883f06b2ead23d71"
  2644. },
  2645. "dist": {
  2646. "type": "zip",
  2647. "url": "https://api.github.com/repos/php-fig/http-message/zipball/402d35bcb92c70c026d1a6a9883f06b2ead23d71",
  2648. "reference": "402d35bcb92c70c026d1a6a9883f06b2ead23d71",
  2649. "shasum": ""
  2650. },
  2651. "require": {
  2652. "php": "^7.2 || ^8.0"
  2653. },
  2654. "type": "library",
  2655. "extra": {
  2656. "branch-alias": {
  2657. "dev-master": "2.0.x-dev"
  2658. }
  2659. },
  2660. "autoload": {
  2661. "psr-4": {
  2662. "Psr\\Http\\Message\\": "src/"
  2663. }
  2664. },
  2665. "notification-url": "https://packagist.org/downloads/",
  2666. "license": [
  2667. "MIT"
  2668. ],
  2669. "authors": [
  2670. {
  2671. "name": "PHP-FIG",
  2672. "homepage": "https://www.php-fig.org/"
  2673. }
  2674. ],
  2675. "description": "Common interface for HTTP messages",
  2676. "homepage": "https://github.com/php-fig/http-message",
  2677. "keywords": [
  2678. "http",
  2679. "http-message",
  2680. "psr",
  2681. "psr-7",
  2682. "request",
  2683. "response"
  2684. ],
  2685. "support": {
  2686. "source": "https://github.com/php-fig/http-message/tree/2.0"
  2687. },
  2688. "time": "2023-04-04T09:54:51+00:00"
  2689. },
  2690. {
  2691. "name": "psr/link",
  2692. "version": "2.0.1",
  2693. "source": {
  2694. "type": "git",
  2695. "url": "https://github.com/php-fig/link.git",
  2696. "reference": "84b159194ecfd7eaa472280213976e96415433f7"
  2697. },
  2698. "dist": {
  2699. "type": "zip",
  2700. "url": "https://api.github.com/repos/php-fig/link/zipball/84b159194ecfd7eaa472280213976e96415433f7",
  2701. "reference": "84b159194ecfd7eaa472280213976e96415433f7",
  2702. "shasum": ""
  2703. },
  2704. "require": {
  2705. "php": ">=8.0.0"
  2706. },
  2707. "suggest": {
  2708. "fig/link-util": "Provides some useful PSR-13 utilities"
  2709. },
  2710. "type": "library",
  2711. "extra": {
  2712. "branch-alias": {
  2713. "dev-master": "2.0.x-dev"
  2714. }
  2715. },
  2716. "autoload": {
  2717. "psr-4": {
  2718. "Psr\\Link\\": "src/"
  2719. }
  2720. },
  2721. "notification-url": "https://packagist.org/downloads/",
  2722. "license": [
  2723. "MIT"
  2724. ],
  2725. "authors": [
  2726. {
  2727. "name": "PHP-FIG",
  2728. "homepage": "http://www.php-fig.org/"
  2729. }
  2730. ],
  2731. "description": "Common interfaces for HTTP links",
  2732. "homepage": "https://github.com/php-fig/link",
  2733. "keywords": [
  2734. "http",
  2735. "http-link",
  2736. "link",
  2737. "psr",
  2738. "psr-13",
  2739. "rest"
  2740. ],
  2741. "support": {
  2742. "source": "https://github.com/php-fig/link/tree/2.0.1"
  2743. },
  2744. "time": "2021-03-11T23:00:27+00:00"
  2745. },
  2746. {
  2747. "name": "psr/log",
  2748. "version": "3.0.2",
  2749. "source": {
  2750. "type": "git",
  2751. "url": "https://github.com/php-fig/log.git",
  2752. "reference": "f16e1d5863e37f8d8c2a01719f5b34baa2b714d3"
  2753. },
  2754. "dist": {
  2755. "type": "zip",
  2756. "url": "https://api.github.com/repos/php-fig/log/zipball/f16e1d5863e37f8d8c2a01719f5b34baa2b714d3",
  2757. "reference": "f16e1d5863e37f8d8c2a01719f5b34baa2b714d3",
  2758. "shasum": ""
  2759. },
  2760. "require": {
  2761. "php": ">=8.0.0"
  2762. },
  2763. "type": "library",
  2764. "extra": {
  2765. "branch-alias": {
  2766. "dev-master": "3.x-dev"
  2767. }
  2768. },
  2769. "autoload": {
  2770. "psr-4": {
  2771. "Psr\\Log\\": "src"
  2772. }
  2773. },
  2774. "notification-url": "https://packagist.org/downloads/",
  2775. "license": [
  2776. "MIT"
  2777. ],
  2778. "authors": [
  2779. {
  2780. "name": "PHP-FIG",
  2781. "homepage": "https://www.php-fig.org/"
  2782. }
  2783. ],
  2784. "description": "Common interface for logging libraries",
  2785. "homepage": "https://github.com/php-fig/log",
  2786. "keywords": [
  2787. "log",
  2788. "psr",
  2789. "psr-3"
  2790. ],
  2791. "support": {
  2792. "source": "https://github.com/php-fig/log/tree/3.0.2"
  2793. },
  2794. "time": "2024-09-11T13:17:53+00:00"
  2795. },
  2796. {
  2797. "name": "symfony/apache-pack",
  2798. "version": "v1.0.1",
  2799. "source": {
  2800. "type": "git",
  2801. "url": "https://github.com/symfony/apache-pack.git",
  2802. "reference": "3aa5818d73ad2551281fc58a75afd9ca82622e6c"
  2803. },
  2804. "dist": {
  2805. "type": "zip",
  2806. "url": "https://api.github.com/repos/symfony/apache-pack/zipball/3aa5818d73ad2551281fc58a75afd9ca82622e6c",
  2807. "reference": "3aa5818d73ad2551281fc58a75afd9ca82622e6c",
  2808. "shasum": ""
  2809. },
  2810. "type": "symfony-pack",
  2811. "notification-url": "https://packagist.org/downloads/",
  2812. "license": [
  2813. "MIT"
  2814. ],
  2815. "description": "A pack for Apache support in Symfony",
  2816. "support": {
  2817. "issues": "https://github.com/symfony/apache-pack/issues",
  2818. "source": "https://github.com/symfony/apache-pack/tree/master"
  2819. },
  2820. "time": "2017-12-12T01:46:35+00:00"
  2821. },
  2822. {
  2823. "name": "symfony/asset",
  2824. "version": "v7.1.6",
  2825. "source": {
  2826. "type": "git",
  2827. "url": "https://github.com/symfony/asset.git",
  2828. "reference": "0dcd51490d7fc9fbf3c8f5aec6df182920fc0426"
  2829. },
  2830. "dist": {
  2831. "type": "zip",
  2832. "url": "https://api.github.com/repos/symfony/asset/zipball/0dcd51490d7fc9fbf3c8f5aec6df182920fc0426",
  2833. "reference": "0dcd51490d7fc9fbf3c8f5aec6df182920fc0426",
  2834. "shasum": ""
  2835. },
  2836. "require": {
  2837. "php": ">=8.2"
  2838. },
  2839. "conflict": {
  2840. "symfony/http-foundation": "<6.4"
  2841. },
  2842. "require-dev": {
  2843. "symfony/http-client": "^6.4|^7.0",
  2844. "symfony/http-foundation": "^6.4|^7.0",
  2845. "symfony/http-kernel": "^6.4|^7.0"
  2846. },
  2847. "type": "library",
  2848. "autoload": {
  2849. "psr-4": {
  2850. "Symfony\\Component\\Asset\\": ""
  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": "Manages URL generation and versioning of web assets such as CSS stylesheets, JavaScript files and image files",
  2871. "homepage": "https://symfony.com",
  2872. "support": {
  2873. "source": "https://github.com/symfony/asset/tree/v7.1.6"
  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-10-25T15:11:02+00:00"
  2890. },
  2891. {
  2892. "name": "symfony/cache",
  2893. "version": "v7.1.11",
  2894. "source": {
  2895. "type": "git",
  2896. "url": "https://github.com/symfony/cache.git",
  2897. "reference": "3828c0375578ff3ca1ddc54cc5c6fa4cc89fb3fb"
  2898. },
  2899. "dist": {
  2900. "type": "zip",
  2901. "url": "https://api.github.com/repos/symfony/cache/zipball/3828c0375578ff3ca1ddc54cc5c6fa4cc89fb3fb",
  2902. "reference": "3828c0375578ff3ca1ddc54cc5c6fa4cc89fb3fb",
  2903. "shasum": ""
  2904. },
  2905. "require": {
  2906. "php": ">=8.2",
  2907. "psr/cache": "^2.0|^3.0",
  2908. "psr/log": "^1.1|^2|^3",
  2909. "symfony/cache-contracts": "^2.5|^3",
  2910. "symfony/deprecation-contracts": "^2.5|^3.0",
  2911. "symfony/service-contracts": "^2.5|^3",
  2912. "symfony/var-exporter": "^6.4|^7.0"
  2913. },
  2914. "conflict": {
  2915. "doctrine/dbal": "<3.6",
  2916. "symfony/dependency-injection": "<6.4",
  2917. "symfony/http-kernel": "<6.4",
  2918. "symfony/var-dumper": "<6.4"
  2919. },
  2920. "provide": {
  2921. "psr/cache-implementation": "2.0|3.0",
  2922. "psr/simple-cache-implementation": "1.0|2.0|3.0",
  2923. "symfony/cache-implementation": "1.1|2.0|3.0"
  2924. },
  2925. "require-dev": {
  2926. "cache/integration-tests": "dev-master",
  2927. "doctrine/dbal": "^3.6|^4",
  2928. "predis/predis": "^1.1|^2.0",
  2929. "psr/simple-cache": "^1.0|^2.0|^3.0",
  2930. "symfony/config": "^6.4|^7.0",
  2931. "symfony/dependency-injection": "^6.4|^7.0",
  2932. "symfony/filesystem": "^6.4|^7.0",
  2933. "symfony/http-kernel": "^6.4|^7.0",
  2934. "symfony/messenger": "^6.4|^7.0",
  2935. "symfony/var-dumper": "^6.4|^7.0"
  2936. },
  2937. "type": "library",
  2938. "autoload": {
  2939. "psr-4": {
  2940. "Symfony\\Component\\Cache\\": ""
  2941. },
  2942. "classmap": [
  2943. "Traits/ValueWrapper.php"
  2944. ],
  2945. "exclude-from-classmap": [
  2946. "/Tests/"
  2947. ]
  2948. },
  2949. "notification-url": "https://packagist.org/downloads/",
  2950. "license": [
  2951. "MIT"
  2952. ],
  2953. "authors": [
  2954. {
  2955. "name": "Nicolas Grekas",
  2956. "email": "p@tchwork.com"
  2957. },
  2958. {
  2959. "name": "Symfony Community",
  2960. "homepage": "https://symfony.com/contributors"
  2961. }
  2962. ],
  2963. "description": "Provides extended PSR-6, PSR-16 (and tags) implementations",
  2964. "homepage": "https://symfony.com",
  2965. "keywords": [
  2966. "caching",
  2967. "psr6"
  2968. ],
  2969. "support": {
  2970. "source": "https://github.com/symfony/cache/tree/v7.1.11"
  2971. },
  2972. "funding": [
  2973. {
  2974. "url": "https://symfony.com/sponsor",
  2975. "type": "custom"
  2976. },
  2977. {
  2978. "url": "https://github.com/fabpot",
  2979. "type": "github"
  2980. },
  2981. {
  2982. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  2983. "type": "tidelift"
  2984. }
  2985. ],
  2986. "time": "2025-01-27T10:57:12+00:00"
  2987. },
  2988. {
  2989. "name": "symfony/cache-contracts",
  2990. "version": "v3.5.1",
  2991. "source": {
  2992. "type": "git",
  2993. "url": "https://github.com/symfony/cache-contracts.git",
  2994. "reference": "15a4f8e5cd3bce9aeafc882b1acab39ec8de2c1b"
  2995. },
  2996. "dist": {
  2997. "type": "zip",
  2998. "url": "https://api.github.com/repos/symfony/cache-contracts/zipball/15a4f8e5cd3bce9aeafc882b1acab39ec8de2c1b",
  2999. "reference": "15a4f8e5cd3bce9aeafc882b1acab39ec8de2c1b",
  3000. "shasum": ""
  3001. },
  3002. "require": {
  3003. "php": ">=8.1",
  3004. "psr/cache": "^3.0"
  3005. },
  3006. "type": "library",
  3007. "extra": {
  3008. "thanks": {
  3009. "url": "https://github.com/symfony/contracts",
  3010. "name": "symfony/contracts"
  3011. },
  3012. "branch-alias": {
  3013. "dev-main": "3.5-dev"
  3014. }
  3015. },
  3016. "autoload": {
  3017. "psr-4": {
  3018. "Symfony\\Contracts\\Cache\\": ""
  3019. }
  3020. },
  3021. "notification-url": "https://packagist.org/downloads/",
  3022. "license": [
  3023. "MIT"
  3024. ],
  3025. "authors": [
  3026. {
  3027. "name": "Nicolas Grekas",
  3028. "email": "p@tchwork.com"
  3029. },
  3030. {
  3031. "name": "Symfony Community",
  3032. "homepage": "https://symfony.com/contributors"
  3033. }
  3034. ],
  3035. "description": "Generic abstractions related to caching",
  3036. "homepage": "https://symfony.com",
  3037. "keywords": [
  3038. "abstractions",
  3039. "contracts",
  3040. "decoupling",
  3041. "interfaces",
  3042. "interoperability",
  3043. "standards"
  3044. ],
  3045. "support": {
  3046. "source": "https://github.com/symfony/cache-contracts/tree/v3.5.1"
  3047. },
  3048. "funding": [
  3049. {
  3050. "url": "https://symfony.com/sponsor",
  3051. "type": "custom"
  3052. },
  3053. {
  3054. "url": "https://github.com/fabpot",
  3055. "type": "github"
  3056. },
  3057. {
  3058. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3059. "type": "tidelift"
  3060. }
  3061. ],
  3062. "time": "2024-09-25T14:20:29+00:00"
  3063. },
  3064. {
  3065. "name": "symfony/clock",
  3066. "version": "v7.1.6",
  3067. "source": {
  3068. "type": "git",
  3069. "url": "https://github.com/symfony/clock.git",
  3070. "reference": "97bebc53548684c17ed696bc8af016880f0f098d"
  3071. },
  3072. "dist": {
  3073. "type": "zip",
  3074. "url": "https://api.github.com/repos/symfony/clock/zipball/97bebc53548684c17ed696bc8af016880f0f098d",
  3075. "reference": "97bebc53548684c17ed696bc8af016880f0f098d",
  3076. "shasum": ""
  3077. },
  3078. "require": {
  3079. "php": ">=8.2",
  3080. "psr/clock": "^1.0",
  3081. "symfony/polyfill-php83": "^1.28"
  3082. },
  3083. "provide": {
  3084. "psr/clock-implementation": "1.0"
  3085. },
  3086. "type": "library",
  3087. "autoload": {
  3088. "files": [
  3089. "Resources/now.php"
  3090. ],
  3091. "psr-4": {
  3092. "Symfony\\Component\\Clock\\": ""
  3093. },
  3094. "exclude-from-classmap": [
  3095. "/Tests/"
  3096. ]
  3097. },
  3098. "notification-url": "https://packagist.org/downloads/",
  3099. "license": [
  3100. "MIT"
  3101. ],
  3102. "authors": [
  3103. {
  3104. "name": "Nicolas Grekas",
  3105. "email": "p@tchwork.com"
  3106. },
  3107. {
  3108. "name": "Symfony Community",
  3109. "homepage": "https://symfony.com/contributors"
  3110. }
  3111. ],
  3112. "description": "Decouples applications from the system clock",
  3113. "homepage": "https://symfony.com",
  3114. "keywords": [
  3115. "clock",
  3116. "psr20",
  3117. "time"
  3118. ],
  3119. "support": {
  3120. "source": "https://github.com/symfony/clock/tree/v7.1.6"
  3121. },
  3122. "funding": [
  3123. {
  3124. "url": "https://symfony.com/sponsor",
  3125. "type": "custom"
  3126. },
  3127. {
  3128. "url": "https://github.com/fabpot",
  3129. "type": "github"
  3130. },
  3131. {
  3132. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3133. "type": "tidelift"
  3134. }
  3135. ],
  3136. "time": "2024-09-25T14:20:29+00:00"
  3137. },
  3138. {
  3139. "name": "symfony/config",
  3140. "version": "v7.1.7",
  3141. "source": {
  3142. "type": "git",
  3143. "url": "https://github.com/symfony/config.git",
  3144. "reference": "dc373a5cbd345354696f5dfd39c5c7a8ea23f4c8"
  3145. },
  3146. "dist": {
  3147. "type": "zip",
  3148. "url": "https://api.github.com/repos/symfony/config/zipball/dc373a5cbd345354696f5dfd39c5c7a8ea23f4c8",
  3149. "reference": "dc373a5cbd345354696f5dfd39c5c7a8ea23f4c8",
  3150. "shasum": ""
  3151. },
  3152. "require": {
  3153. "php": ">=8.2",
  3154. "symfony/deprecation-contracts": "^2.5|^3",
  3155. "symfony/filesystem": "^7.1",
  3156. "symfony/polyfill-ctype": "~1.8"
  3157. },
  3158. "conflict": {
  3159. "symfony/finder": "<6.4",
  3160. "symfony/service-contracts": "<2.5"
  3161. },
  3162. "require-dev": {
  3163. "symfony/event-dispatcher": "^6.4|^7.0",
  3164. "symfony/finder": "^6.4|^7.0",
  3165. "symfony/messenger": "^6.4|^7.0",
  3166. "symfony/service-contracts": "^2.5|^3",
  3167. "symfony/yaml": "^6.4|^7.0"
  3168. },
  3169. "type": "library",
  3170. "autoload": {
  3171. "psr-4": {
  3172. "Symfony\\Component\\Config\\": ""
  3173. },
  3174. "exclude-from-classmap": [
  3175. "/Tests/"
  3176. ]
  3177. },
  3178. "notification-url": "https://packagist.org/downloads/",
  3179. "license": [
  3180. "MIT"
  3181. ],
  3182. "authors": [
  3183. {
  3184. "name": "Fabien Potencier",
  3185. "email": "fabien@symfony.com"
  3186. },
  3187. {
  3188. "name": "Symfony Community",
  3189. "homepage": "https://symfony.com/contributors"
  3190. }
  3191. ],
  3192. "description": "Helps you find, load, combine, autofill and validate configuration values of any kind",
  3193. "homepage": "https://symfony.com",
  3194. "support": {
  3195. "source": "https://github.com/symfony/config/tree/v7.1.7"
  3196. },
  3197. "funding": [
  3198. {
  3199. "url": "https://symfony.com/sponsor",
  3200. "type": "custom"
  3201. },
  3202. {
  3203. "url": "https://github.com/fabpot",
  3204. "type": "github"
  3205. },
  3206. {
  3207. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3208. "type": "tidelift"
  3209. }
  3210. ],
  3211. "time": "2024-11-04T11:34:07+00:00"
  3212. },
  3213. {
  3214. "name": "symfony/console",
  3215. "version": "v7.1.10",
  3216. "source": {
  3217. "type": "git",
  3218. "url": "https://github.com/symfony/console.git",
  3219. "reference": "bb06e2d7f8dd9dffe5eada8a5cbe0f68f1482db7"
  3220. },
  3221. "dist": {
  3222. "type": "zip",
  3223. "url": "https://api.github.com/repos/symfony/console/zipball/bb06e2d7f8dd9dffe5eada8a5cbe0f68f1482db7",
  3224. "reference": "bb06e2d7f8dd9dffe5eada8a5cbe0f68f1482db7",
  3225. "shasum": ""
  3226. },
  3227. "require": {
  3228. "php": ">=8.2",
  3229. "symfony/polyfill-mbstring": "~1.0",
  3230. "symfony/service-contracts": "^2.5|^3",
  3231. "symfony/string": "^6.4|^7.0"
  3232. },
  3233. "conflict": {
  3234. "symfony/dependency-injection": "<6.4",
  3235. "symfony/dotenv": "<6.4",
  3236. "symfony/event-dispatcher": "<6.4",
  3237. "symfony/lock": "<6.4",
  3238. "symfony/process": "<6.4"
  3239. },
  3240. "provide": {
  3241. "psr/log-implementation": "1.0|2.0|3.0"
  3242. },
  3243. "require-dev": {
  3244. "psr/log": "^1|^2|^3",
  3245. "symfony/config": "^6.4|^7.0",
  3246. "symfony/dependency-injection": "^6.4|^7.0",
  3247. "symfony/event-dispatcher": "^6.4|^7.0",
  3248. "symfony/http-foundation": "^6.4|^7.0",
  3249. "symfony/http-kernel": "^6.4|^7.0",
  3250. "symfony/lock": "^6.4|^7.0",
  3251. "symfony/messenger": "^6.4|^7.0",
  3252. "symfony/process": "^6.4|^7.0",
  3253. "symfony/stopwatch": "^6.4|^7.0",
  3254. "symfony/var-dumper": "^6.4|^7.0"
  3255. },
  3256. "type": "library",
  3257. "autoload": {
  3258. "psr-4": {
  3259. "Symfony\\Component\\Console\\": ""
  3260. },
  3261. "exclude-from-classmap": [
  3262. "/Tests/"
  3263. ]
  3264. },
  3265. "notification-url": "https://packagist.org/downloads/",
  3266. "license": [
  3267. "MIT"
  3268. ],
  3269. "authors": [
  3270. {
  3271. "name": "Fabien Potencier",
  3272. "email": "fabien@symfony.com"
  3273. },
  3274. {
  3275. "name": "Symfony Community",
  3276. "homepage": "https://symfony.com/contributors"
  3277. }
  3278. ],
  3279. "description": "Eases the creation of beautiful and testable command line interfaces",
  3280. "homepage": "https://symfony.com",
  3281. "keywords": [
  3282. "cli",
  3283. "command-line",
  3284. "console",
  3285. "terminal"
  3286. ],
  3287. "support": {
  3288. "source": "https://github.com/symfony/console/tree/v7.1.10"
  3289. },
  3290. "funding": [
  3291. {
  3292. "url": "https://symfony.com/sponsor",
  3293. "type": "custom"
  3294. },
  3295. {
  3296. "url": "https://github.com/fabpot",
  3297. "type": "github"
  3298. },
  3299. {
  3300. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3301. "type": "tidelift"
  3302. }
  3303. ],
  3304. "time": "2024-12-09T07:30:10+00:00"
  3305. },
  3306. {
  3307. "name": "symfony/dependency-injection",
  3308. "version": "v7.1.11",
  3309. "source": {
  3310. "type": "git",
  3311. "url": "https://github.com/symfony/dependency-injection.git",
  3312. "reference": "5ebf7d4dfda126b442450effaec421a106c010de"
  3313. },
  3314. "dist": {
  3315. "type": "zip",
  3316. "url": "https://api.github.com/repos/symfony/dependency-injection/zipball/5ebf7d4dfda126b442450effaec421a106c010de",
  3317. "reference": "5ebf7d4dfda126b442450effaec421a106c010de",
  3318. "shasum": ""
  3319. },
  3320. "require": {
  3321. "php": ">=8.2",
  3322. "psr/container": "^1.1|^2.0",
  3323. "symfony/deprecation-contracts": "^2.5|^3",
  3324. "symfony/service-contracts": "^3.5",
  3325. "symfony/var-exporter": "^6.4|^7.0"
  3326. },
  3327. "conflict": {
  3328. "ext-psr": "<1.1|>=2",
  3329. "symfony/config": "<6.4",
  3330. "symfony/finder": "<6.4",
  3331. "symfony/yaml": "<6.4"
  3332. },
  3333. "provide": {
  3334. "psr/container-implementation": "1.1|2.0",
  3335. "symfony/service-implementation": "1.1|2.0|3.0"
  3336. },
  3337. "require-dev": {
  3338. "symfony/config": "^6.4|^7.0",
  3339. "symfony/expression-language": "^6.4|^7.0",
  3340. "symfony/yaml": "^6.4|^7.0"
  3341. },
  3342. "type": "library",
  3343. "autoload": {
  3344. "psr-4": {
  3345. "Symfony\\Component\\DependencyInjection\\": ""
  3346. },
  3347. "exclude-from-classmap": [
  3348. "/Tests/"
  3349. ]
  3350. },
  3351. "notification-url": "https://packagist.org/downloads/",
  3352. "license": [
  3353. "MIT"
  3354. ],
  3355. "authors": [
  3356. {
  3357. "name": "Fabien Potencier",
  3358. "email": "fabien@symfony.com"
  3359. },
  3360. {
  3361. "name": "Symfony Community",
  3362. "homepage": "https://symfony.com/contributors"
  3363. }
  3364. ],
  3365. "description": "Allows you to standardize and centralize the way objects are constructed in your application",
  3366. "homepage": "https://symfony.com",
  3367. "support": {
  3368. "source": "https://github.com/symfony/dependency-injection/tree/v7.1.11"
  3369. },
  3370. "funding": [
  3371. {
  3372. "url": "https://symfony.com/sponsor",
  3373. "type": "custom"
  3374. },
  3375. {
  3376. "url": "https://github.com/fabpot",
  3377. "type": "github"
  3378. },
  3379. {
  3380. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3381. "type": "tidelift"
  3382. }
  3383. ],
  3384. "time": "2025-01-10T09:29:52+00:00"
  3385. },
  3386. {
  3387. "name": "symfony/deprecation-contracts",
  3388. "version": "v3.5.1",
  3389. "source": {
  3390. "type": "git",
  3391. "url": "https://github.com/symfony/deprecation-contracts.git",
  3392. "reference": "74c71c939a79f7d5bf3c1ce9f5ea37ba0114c6f6"
  3393. },
  3394. "dist": {
  3395. "type": "zip",
  3396. "url": "https://api.github.com/repos/symfony/deprecation-contracts/zipball/74c71c939a79f7d5bf3c1ce9f5ea37ba0114c6f6",
  3397. "reference": "74c71c939a79f7d5bf3c1ce9f5ea37ba0114c6f6",
  3398. "shasum": ""
  3399. },
  3400. "require": {
  3401. "php": ">=8.1"
  3402. },
  3403. "type": "library",
  3404. "extra": {
  3405. "thanks": {
  3406. "url": "https://github.com/symfony/contracts",
  3407. "name": "symfony/contracts"
  3408. },
  3409. "branch-alias": {
  3410. "dev-main": "3.5-dev"
  3411. }
  3412. },
  3413. "autoload": {
  3414. "files": [
  3415. "function.php"
  3416. ]
  3417. },
  3418. "notification-url": "https://packagist.org/downloads/",
  3419. "license": [
  3420. "MIT"
  3421. ],
  3422. "authors": [
  3423. {
  3424. "name": "Nicolas Grekas",
  3425. "email": "p@tchwork.com"
  3426. },
  3427. {
  3428. "name": "Symfony Community",
  3429. "homepage": "https://symfony.com/contributors"
  3430. }
  3431. ],
  3432. "description": "A generic function and convention to trigger deprecation notices",
  3433. "homepage": "https://symfony.com",
  3434. "support": {
  3435. "source": "https://github.com/symfony/deprecation-contracts/tree/v3.5.1"
  3436. },
  3437. "funding": [
  3438. {
  3439. "url": "https://symfony.com/sponsor",
  3440. "type": "custom"
  3441. },
  3442. {
  3443. "url": "https://github.com/fabpot",
  3444. "type": "github"
  3445. },
  3446. {
  3447. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3448. "type": "tidelift"
  3449. }
  3450. ],
  3451. "time": "2024-09-25T14:20:29+00:00"
  3452. },
  3453. {
  3454. "name": "symfony/doctrine-bridge",
  3455. "version": "v7.1.11",
  3456. "source": {
  3457. "type": "git",
  3458. "url": "https://github.com/symfony/doctrine-bridge.git",
  3459. "reference": "b0247c25b71409c23c0cf3e090030950a86cc61b"
  3460. },
  3461. "dist": {
  3462. "type": "zip",
  3463. "url": "https://api.github.com/repos/symfony/doctrine-bridge/zipball/b0247c25b71409c23c0cf3e090030950a86cc61b",
  3464. "reference": "b0247c25b71409c23c0cf3e090030950a86cc61b",
  3465. "shasum": ""
  3466. },
  3467. "require": {
  3468. "doctrine/event-manager": "^2",
  3469. "doctrine/persistence": "^3.1|^4",
  3470. "php": ">=8.2",
  3471. "symfony/deprecation-contracts": "^2.5|^3",
  3472. "symfony/polyfill-ctype": "~1.8",
  3473. "symfony/polyfill-mbstring": "~1.0",
  3474. "symfony/service-contracts": "^2.5|^3"
  3475. },
  3476. "conflict": {
  3477. "doctrine/dbal": "<3.6",
  3478. "doctrine/lexer": "<1.1",
  3479. "doctrine/orm": "<2.15",
  3480. "symfony/cache": "<6.4",
  3481. "symfony/dependency-injection": "<6.4",
  3482. "symfony/form": "<6.4.6|>=7,<7.0.6",
  3483. "symfony/http-foundation": "<6.4",
  3484. "symfony/http-kernel": "<6.4",
  3485. "symfony/lock": "<6.4",
  3486. "symfony/messenger": "<6.4",
  3487. "symfony/property-info": "<6.4",
  3488. "symfony/security-bundle": "<6.4",
  3489. "symfony/security-core": "<6.4",
  3490. "symfony/validator": "<6.4"
  3491. },
  3492. "require-dev": {
  3493. "doctrine/collections": "^1.0|^2.0",
  3494. "doctrine/data-fixtures": "^1.1|^2",
  3495. "doctrine/dbal": "^3.6|^4",
  3496. "doctrine/orm": "^2.15|^3",
  3497. "psr/log": "^1|^2|^3",
  3498. "symfony/cache": "^6.4|^7.0",
  3499. "symfony/config": "^6.4|^7.0",
  3500. "symfony/dependency-injection": "^6.4|^7.0",
  3501. "symfony/doctrine-messenger": "^6.4|^7.0",
  3502. "symfony/expression-language": "^6.4|^7.0",
  3503. "symfony/form": "^6.4.6|^7.0.6",
  3504. "symfony/http-kernel": "^6.4|^7.0",
  3505. "symfony/lock": "^6.4|^7.0",
  3506. "symfony/messenger": "^6.4|^7.0",
  3507. "symfony/property-access": "^6.4|^7.0",
  3508. "symfony/property-info": "^6.4|^7.0",
  3509. "symfony/security-core": "^6.4|^7.0",
  3510. "symfony/stopwatch": "^6.4|^7.0",
  3511. "symfony/translation": "^6.4|^7.0",
  3512. "symfony/type-info": "^7.1",
  3513. "symfony/uid": "^6.4|^7.0",
  3514. "symfony/validator": "^6.4|^7.0",
  3515. "symfony/var-dumper": "^6.4|^7.0"
  3516. },
  3517. "type": "symfony-bridge",
  3518. "autoload": {
  3519. "psr-4": {
  3520. "Symfony\\Bridge\\Doctrine\\": ""
  3521. },
  3522. "exclude-from-classmap": [
  3523. "/Tests/"
  3524. ]
  3525. },
  3526. "notification-url": "https://packagist.org/downloads/",
  3527. "license": [
  3528. "MIT"
  3529. ],
  3530. "authors": [
  3531. {
  3532. "name": "Fabien Potencier",
  3533. "email": "fabien@symfony.com"
  3534. },
  3535. {
  3536. "name": "Symfony Community",
  3537. "homepage": "https://symfony.com/contributors"
  3538. }
  3539. ],
  3540. "description": "Provides integration for Doctrine with various Symfony components",
  3541. "homepage": "https://symfony.com",
  3542. "support": {
  3543. "source": "https://github.com/symfony/doctrine-bridge/tree/v7.1.11"
  3544. },
  3545. "funding": [
  3546. {
  3547. "url": "https://symfony.com/sponsor",
  3548. "type": "custom"
  3549. },
  3550. {
  3551. "url": "https://github.com/fabpot",
  3552. "type": "github"
  3553. },
  3554. {
  3555. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3556. "type": "tidelift"
  3557. }
  3558. ],
  3559. "time": "2025-01-27T10:57:12+00:00"
  3560. },
  3561. {
  3562. "name": "symfony/dotenv",
  3563. "version": "v7.1.9",
  3564. "source": {
  3565. "type": "git",
  3566. "url": "https://github.com/symfony/dotenv.git",
  3567. "reference": "245d1afe223664d2276afb75177d8988c328fb78"
  3568. },
  3569. "dist": {
  3570. "type": "zip",
  3571. "url": "https://api.github.com/repos/symfony/dotenv/zipball/245d1afe223664d2276afb75177d8988c328fb78",
  3572. "reference": "245d1afe223664d2276afb75177d8988c328fb78",
  3573. "shasum": ""
  3574. },
  3575. "require": {
  3576. "php": ">=8.2"
  3577. },
  3578. "conflict": {
  3579. "symfony/console": "<6.4",
  3580. "symfony/process": "<6.4"
  3581. },
  3582. "require-dev": {
  3583. "symfony/console": "^6.4|^7.0",
  3584. "symfony/process": "^6.4|^7.0"
  3585. },
  3586. "type": "library",
  3587. "autoload": {
  3588. "psr-4": {
  3589. "Symfony\\Component\\Dotenv\\": ""
  3590. },
  3591. "exclude-from-classmap": [
  3592. "/Tests/"
  3593. ]
  3594. },
  3595. "notification-url": "https://packagist.org/downloads/",
  3596. "license": [
  3597. "MIT"
  3598. ],
  3599. "authors": [
  3600. {
  3601. "name": "Fabien Potencier",
  3602. "email": "fabien@symfony.com"
  3603. },
  3604. {
  3605. "name": "Symfony Community",
  3606. "homepage": "https://symfony.com/contributors"
  3607. }
  3608. ],
  3609. "description": "Registers environment variables from a .env file",
  3610. "homepage": "https://symfony.com",
  3611. "keywords": [
  3612. "dotenv",
  3613. "env",
  3614. "environment"
  3615. ],
  3616. "support": {
  3617. "source": "https://github.com/symfony/dotenv/tree/v7.1.9"
  3618. },
  3619. "funding": [
  3620. {
  3621. "url": "https://symfony.com/sponsor",
  3622. "type": "custom"
  3623. },
  3624. {
  3625. "url": "https://github.com/fabpot",
  3626. "type": "github"
  3627. },
  3628. {
  3629. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3630. "type": "tidelift"
  3631. }
  3632. ],
  3633. "time": "2024-11-27T11:17:28+00:00"
  3634. },
  3635. {
  3636. "name": "symfony/error-handler",
  3637. "version": "v7.1.11",
  3638. "source": {
  3639. "type": "git",
  3640. "url": "https://github.com/symfony/error-handler.git",
  3641. "reference": "f4d1fd1bcb4bce9983d034111b7ea3edc88e1a57"
  3642. },
  3643. "dist": {
  3644. "type": "zip",
  3645. "url": "https://api.github.com/repos/symfony/error-handler/zipball/f4d1fd1bcb4bce9983d034111b7ea3edc88e1a57",
  3646. "reference": "f4d1fd1bcb4bce9983d034111b7ea3edc88e1a57",
  3647. "shasum": ""
  3648. },
  3649. "require": {
  3650. "php": ">=8.2",
  3651. "psr/log": "^1|^2|^3",
  3652. "symfony/var-dumper": "^6.4|^7.0"
  3653. },
  3654. "conflict": {
  3655. "symfony/deprecation-contracts": "<2.5",
  3656. "symfony/http-kernel": "<6.4"
  3657. },
  3658. "require-dev": {
  3659. "symfony/deprecation-contracts": "^2.5|^3",
  3660. "symfony/http-kernel": "^6.4|^7.0",
  3661. "symfony/serializer": "^6.4|^7.0"
  3662. },
  3663. "bin": [
  3664. "Resources/bin/patch-type-declarations"
  3665. ],
  3666. "type": "library",
  3667. "autoload": {
  3668. "psr-4": {
  3669. "Symfony\\Component\\ErrorHandler\\": ""
  3670. },
  3671. "exclude-from-classmap": [
  3672. "/Tests/"
  3673. ]
  3674. },
  3675. "notification-url": "https://packagist.org/downloads/",
  3676. "license": [
  3677. "MIT"
  3678. ],
  3679. "authors": [
  3680. {
  3681. "name": "Fabien Potencier",
  3682. "email": "fabien@symfony.com"
  3683. },
  3684. {
  3685. "name": "Symfony Community",
  3686. "homepage": "https://symfony.com/contributors"
  3687. }
  3688. ],
  3689. "description": "Provides tools to manage errors and ease debugging PHP code",
  3690. "homepage": "https://symfony.com",
  3691. "support": {
  3692. "source": "https://github.com/symfony/error-handler/tree/v7.1.11"
  3693. },
  3694. "funding": [
  3695. {
  3696. "url": "https://symfony.com/sponsor",
  3697. "type": "custom"
  3698. },
  3699. {
  3700. "url": "https://github.com/fabpot",
  3701. "type": "github"
  3702. },
  3703. {
  3704. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3705. "type": "tidelift"
  3706. }
  3707. ],
  3708. "time": "2025-01-07T09:23:14+00:00"
  3709. },
  3710. {
  3711. "name": "symfony/event-dispatcher",
  3712. "version": "v7.1.6",
  3713. "source": {
  3714. "type": "git",
  3715. "url": "https://github.com/symfony/event-dispatcher.git",
  3716. "reference": "87254c78dd50721cfd015b62277a8281c5589702"
  3717. },
  3718. "dist": {
  3719. "type": "zip",
  3720. "url": "https://api.github.com/repos/symfony/event-dispatcher/zipball/87254c78dd50721cfd015b62277a8281c5589702",
  3721. "reference": "87254c78dd50721cfd015b62277a8281c5589702",
  3722. "shasum": ""
  3723. },
  3724. "require": {
  3725. "php": ">=8.2",
  3726. "symfony/event-dispatcher-contracts": "^2.5|^3"
  3727. },
  3728. "conflict": {
  3729. "symfony/dependency-injection": "<6.4",
  3730. "symfony/service-contracts": "<2.5"
  3731. },
  3732. "provide": {
  3733. "psr/event-dispatcher-implementation": "1.0",
  3734. "symfony/event-dispatcher-implementation": "2.0|3.0"
  3735. },
  3736. "require-dev": {
  3737. "psr/log": "^1|^2|^3",
  3738. "symfony/config": "^6.4|^7.0",
  3739. "symfony/dependency-injection": "^6.4|^7.0",
  3740. "symfony/error-handler": "^6.4|^7.0",
  3741. "symfony/expression-language": "^6.4|^7.0",
  3742. "symfony/http-foundation": "^6.4|^7.0",
  3743. "symfony/service-contracts": "^2.5|^3",
  3744. "symfony/stopwatch": "^6.4|^7.0"
  3745. },
  3746. "type": "library",
  3747. "autoload": {
  3748. "psr-4": {
  3749. "Symfony\\Component\\EventDispatcher\\": ""
  3750. },
  3751. "exclude-from-classmap": [
  3752. "/Tests/"
  3753. ]
  3754. },
  3755. "notification-url": "https://packagist.org/downloads/",
  3756. "license": [
  3757. "MIT"
  3758. ],
  3759. "authors": [
  3760. {
  3761. "name": "Fabien Potencier",
  3762. "email": "fabien@symfony.com"
  3763. },
  3764. {
  3765. "name": "Symfony Community",
  3766. "homepage": "https://symfony.com/contributors"
  3767. }
  3768. ],
  3769. "description": "Provides tools that allow your application components to communicate with each other by dispatching events and listening to them",
  3770. "homepage": "https://symfony.com",
  3771. "support": {
  3772. "source": "https://github.com/symfony/event-dispatcher/tree/v7.1.6"
  3773. },
  3774. "funding": [
  3775. {
  3776. "url": "https://symfony.com/sponsor",
  3777. "type": "custom"
  3778. },
  3779. {
  3780. "url": "https://github.com/fabpot",
  3781. "type": "github"
  3782. },
  3783. {
  3784. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3785. "type": "tidelift"
  3786. }
  3787. ],
  3788. "time": "2024-09-25T14:20:29+00:00"
  3789. },
  3790. {
  3791. "name": "symfony/event-dispatcher-contracts",
  3792. "version": "v3.5.1",
  3793. "source": {
  3794. "type": "git",
  3795. "url": "https://github.com/symfony/event-dispatcher-contracts.git",
  3796. "reference": "7642f5e970b672283b7823222ae8ef8bbc160b9f"
  3797. },
  3798. "dist": {
  3799. "type": "zip",
  3800. "url": "https://api.github.com/repos/symfony/event-dispatcher-contracts/zipball/7642f5e970b672283b7823222ae8ef8bbc160b9f",
  3801. "reference": "7642f5e970b672283b7823222ae8ef8bbc160b9f",
  3802. "shasum": ""
  3803. },
  3804. "require": {
  3805. "php": ">=8.1",
  3806. "psr/event-dispatcher": "^1"
  3807. },
  3808. "type": "library",
  3809. "extra": {
  3810. "thanks": {
  3811. "url": "https://github.com/symfony/contracts",
  3812. "name": "symfony/contracts"
  3813. },
  3814. "branch-alias": {
  3815. "dev-main": "3.5-dev"
  3816. }
  3817. },
  3818. "autoload": {
  3819. "psr-4": {
  3820. "Symfony\\Contracts\\EventDispatcher\\": ""
  3821. }
  3822. },
  3823. "notification-url": "https://packagist.org/downloads/",
  3824. "license": [
  3825. "MIT"
  3826. ],
  3827. "authors": [
  3828. {
  3829. "name": "Nicolas Grekas",
  3830. "email": "p@tchwork.com"
  3831. },
  3832. {
  3833. "name": "Symfony Community",
  3834. "homepage": "https://symfony.com/contributors"
  3835. }
  3836. ],
  3837. "description": "Generic abstractions related to dispatching event",
  3838. "homepage": "https://symfony.com",
  3839. "keywords": [
  3840. "abstractions",
  3841. "contracts",
  3842. "decoupling",
  3843. "interfaces",
  3844. "interoperability",
  3845. "standards"
  3846. ],
  3847. "support": {
  3848. "source": "https://github.com/symfony/event-dispatcher-contracts/tree/v3.5.1"
  3849. },
  3850. "funding": [
  3851. {
  3852. "url": "https://symfony.com/sponsor",
  3853. "type": "custom"
  3854. },
  3855. {
  3856. "url": "https://github.com/fabpot",
  3857. "type": "github"
  3858. },
  3859. {
  3860. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3861. "type": "tidelift"
  3862. }
  3863. ],
  3864. "time": "2024-09-25T14:20:29+00:00"
  3865. },
  3866. {
  3867. "name": "symfony/expression-language",
  3868. "version": "v7.1.6",
  3869. "source": {
  3870. "type": "git",
  3871. "url": "https://github.com/symfony/expression-language.git",
  3872. "reference": "c3a1224bc144b36cd79149b42c1aecd5f81395a5"
  3873. },
  3874. "dist": {
  3875. "type": "zip",
  3876. "url": "https://api.github.com/repos/symfony/expression-language/zipball/c3a1224bc144b36cd79149b42c1aecd5f81395a5",
  3877. "reference": "c3a1224bc144b36cd79149b42c1aecd5f81395a5",
  3878. "shasum": ""
  3879. },
  3880. "require": {
  3881. "php": ">=8.2",
  3882. "symfony/cache": "^6.4|^7.0",
  3883. "symfony/deprecation-contracts": "^2.5|^3",
  3884. "symfony/service-contracts": "^2.5|^3"
  3885. },
  3886. "type": "library",
  3887. "autoload": {
  3888. "psr-4": {
  3889. "Symfony\\Component\\ExpressionLanguage\\": ""
  3890. },
  3891. "exclude-from-classmap": [
  3892. "/Tests/"
  3893. ]
  3894. },
  3895. "notification-url": "https://packagist.org/downloads/",
  3896. "license": [
  3897. "MIT"
  3898. ],
  3899. "authors": [
  3900. {
  3901. "name": "Fabien Potencier",
  3902. "email": "fabien@symfony.com"
  3903. },
  3904. {
  3905. "name": "Symfony Community",
  3906. "homepage": "https://symfony.com/contributors"
  3907. }
  3908. ],
  3909. "description": "Provides an engine that can compile and evaluate expressions",
  3910. "homepage": "https://symfony.com",
  3911. "support": {
  3912. "source": "https://github.com/symfony/expression-language/tree/v7.1.6"
  3913. },
  3914. "funding": [
  3915. {
  3916. "url": "https://symfony.com/sponsor",
  3917. "type": "custom"
  3918. },
  3919. {
  3920. "url": "https://github.com/fabpot",
  3921. "type": "github"
  3922. },
  3923. {
  3924. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3925. "type": "tidelift"
  3926. }
  3927. ],
  3928. "time": "2024-10-09T08:46:59+00:00"
  3929. },
  3930. {
  3931. "name": "symfony/filesystem",
  3932. "version": "v7.1.6",
  3933. "source": {
  3934. "type": "git",
  3935. "url": "https://github.com/symfony/filesystem.git",
  3936. "reference": "c835867b3c62bb05c7fe3d637c871c7ae52024d4"
  3937. },
  3938. "dist": {
  3939. "type": "zip",
  3940. "url": "https://api.github.com/repos/symfony/filesystem/zipball/c835867b3c62bb05c7fe3d637c871c7ae52024d4",
  3941. "reference": "c835867b3c62bb05c7fe3d637c871c7ae52024d4",
  3942. "shasum": ""
  3943. },
  3944. "require": {
  3945. "php": ">=8.2",
  3946. "symfony/polyfill-ctype": "~1.8",
  3947. "symfony/polyfill-mbstring": "~1.8"
  3948. },
  3949. "require-dev": {
  3950. "symfony/process": "^6.4|^7.0"
  3951. },
  3952. "type": "library",
  3953. "autoload": {
  3954. "psr-4": {
  3955. "Symfony\\Component\\Filesystem\\": ""
  3956. },
  3957. "exclude-from-classmap": [
  3958. "/Tests/"
  3959. ]
  3960. },
  3961. "notification-url": "https://packagist.org/downloads/",
  3962. "license": [
  3963. "MIT"
  3964. ],
  3965. "authors": [
  3966. {
  3967. "name": "Fabien Potencier",
  3968. "email": "fabien@symfony.com"
  3969. },
  3970. {
  3971. "name": "Symfony Community",
  3972. "homepage": "https://symfony.com/contributors"
  3973. }
  3974. ],
  3975. "description": "Provides basic utilities for the filesystem",
  3976. "homepage": "https://symfony.com",
  3977. "support": {
  3978. "source": "https://github.com/symfony/filesystem/tree/v7.1.6"
  3979. },
  3980. "funding": [
  3981. {
  3982. "url": "https://symfony.com/sponsor",
  3983. "type": "custom"
  3984. },
  3985. {
  3986. "url": "https://github.com/fabpot",
  3987. "type": "github"
  3988. },
  3989. {
  3990. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3991. "type": "tidelift"
  3992. }
  3993. ],
  3994. "time": "2024-10-25T15:11:02+00:00"
  3995. },
  3996. {
  3997. "name": "symfony/finder",
  3998. "version": "v7.1.10",
  3999. "source": {
  4000. "type": "git",
  4001. "url": "https://github.com/symfony/finder.git",
  4002. "reference": "b8b526e051ac0b33feabbec7893adcab96b23bf3"
  4003. },
  4004. "dist": {
  4005. "type": "zip",
  4006. "url": "https://api.github.com/repos/symfony/finder/zipball/b8b526e051ac0b33feabbec7893adcab96b23bf3",
  4007. "reference": "b8b526e051ac0b33feabbec7893adcab96b23bf3",
  4008. "shasum": ""
  4009. },
  4010. "require": {
  4011. "php": ">=8.2"
  4012. },
  4013. "require-dev": {
  4014. "symfony/filesystem": "^6.4|^7.0"
  4015. },
  4016. "type": "library",
  4017. "autoload": {
  4018. "psr-4": {
  4019. "Symfony\\Component\\Finder\\": ""
  4020. },
  4021. "exclude-from-classmap": [
  4022. "/Tests/"
  4023. ]
  4024. },
  4025. "notification-url": "https://packagist.org/downloads/",
  4026. "license": [
  4027. "MIT"
  4028. ],
  4029. "authors": [
  4030. {
  4031. "name": "Fabien Potencier",
  4032. "email": "fabien@symfony.com"
  4033. },
  4034. {
  4035. "name": "Symfony Community",
  4036. "homepage": "https://symfony.com/contributors"
  4037. }
  4038. ],
  4039. "description": "Finds files and directories via an intuitive fluent interface",
  4040. "homepage": "https://symfony.com",
  4041. "support": {
  4042. "source": "https://github.com/symfony/finder/tree/v7.1.10"
  4043. },
  4044. "funding": [
  4045. {
  4046. "url": "https://symfony.com/sponsor",
  4047. "type": "custom"
  4048. },
  4049. {
  4050. "url": "https://github.com/fabpot",
  4051. "type": "github"
  4052. },
  4053. {
  4054. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4055. "type": "tidelift"
  4056. }
  4057. ],
  4058. "time": "2024-12-30T18:59:46+00:00"
  4059. },
  4060. {
  4061. "name": "symfony/flex",
  4062. "version": "v2.5.0",
  4063. "source": {
  4064. "type": "git",
  4065. "url": "https://github.com/symfony/flex.git",
  4066. "reference": "8ce1acd9842abe0e9b4c4a0bd3f259859516c018"
  4067. },
  4068. "dist": {
  4069. "type": "zip",
  4070. "url": "https://api.github.com/repos/symfony/flex/zipball/8ce1acd9842abe0e9b4c4a0bd3f259859516c018",
  4071. "reference": "8ce1acd9842abe0e9b4c4a0bd3f259859516c018",
  4072. "shasum": ""
  4073. },
  4074. "require": {
  4075. "composer-plugin-api": "^2.1",
  4076. "php": ">=8.0"
  4077. },
  4078. "conflict": {
  4079. "composer/semver": "<1.7.2"
  4080. },
  4081. "require-dev": {
  4082. "composer/composer": "^2.1",
  4083. "symfony/dotenv": "^5.4|^6.0",
  4084. "symfony/filesystem": "^5.4|^6.0",
  4085. "symfony/phpunit-bridge": "^5.4|^6.0",
  4086. "symfony/process": "^5.4|^6.0"
  4087. },
  4088. "type": "composer-plugin",
  4089. "extra": {
  4090. "class": "Symfony\\Flex\\Flex"
  4091. },
  4092. "autoload": {
  4093. "psr-4": {
  4094. "Symfony\\Flex\\": "src"
  4095. }
  4096. },
  4097. "notification-url": "https://packagist.org/downloads/",
  4098. "license": [
  4099. "MIT"
  4100. ],
  4101. "authors": [
  4102. {
  4103. "name": "Fabien Potencier",
  4104. "email": "fabien.potencier@gmail.com"
  4105. }
  4106. ],
  4107. "description": "Composer plugin for Symfony",
  4108. "support": {
  4109. "issues": "https://github.com/symfony/flex/issues",
  4110. "source": "https://github.com/symfony/flex/tree/v2.5.0"
  4111. },
  4112. "funding": [
  4113. {
  4114. "url": "https://symfony.com/sponsor",
  4115. "type": "custom"
  4116. },
  4117. {
  4118. "url": "https://github.com/fabpot",
  4119. "type": "github"
  4120. },
  4121. {
  4122. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4123. "type": "tidelift"
  4124. }
  4125. ],
  4126. "time": "2025-03-03T07:50:46+00:00"
  4127. },
  4128. {
  4129. "name": "symfony/form",
  4130. "version": "v7.1.6",
  4131. "source": {
  4132. "type": "git",
  4133. "url": "https://github.com/symfony/form.git",
  4134. "reference": "7a48dda96fe16711fc042df38ca1a7dd4d9d6387"
  4135. },
  4136. "dist": {
  4137. "type": "zip",
  4138. "url": "https://api.github.com/repos/symfony/form/zipball/7a48dda96fe16711fc042df38ca1a7dd4d9d6387",
  4139. "reference": "7a48dda96fe16711fc042df38ca1a7dd4d9d6387",
  4140. "shasum": ""
  4141. },
  4142. "require": {
  4143. "php": ">=8.2",
  4144. "symfony/deprecation-contracts": "^2.5|^3",
  4145. "symfony/event-dispatcher": "^6.4|^7.0",
  4146. "symfony/options-resolver": "^6.4|^7.0",
  4147. "symfony/polyfill-ctype": "~1.8",
  4148. "symfony/polyfill-intl-icu": "^1.21",
  4149. "symfony/polyfill-mbstring": "~1.0",
  4150. "symfony/property-access": "^6.4|^7.0",
  4151. "symfony/service-contracts": "^2.5|^3"
  4152. },
  4153. "conflict": {
  4154. "symfony/console": "<6.4",
  4155. "symfony/dependency-injection": "<6.4",
  4156. "symfony/doctrine-bridge": "<6.4",
  4157. "symfony/error-handler": "<6.4",
  4158. "symfony/framework-bundle": "<6.4",
  4159. "symfony/http-kernel": "<6.4",
  4160. "symfony/translation": "<6.4.3|>=7.0,<7.0.3",
  4161. "symfony/translation-contracts": "<2.5",
  4162. "symfony/twig-bridge": "<6.4"
  4163. },
  4164. "require-dev": {
  4165. "doctrine/collections": "^1.0|^2.0",
  4166. "symfony/config": "^6.4|^7.0",
  4167. "symfony/console": "^6.4|^7.0",
  4168. "symfony/dependency-injection": "^6.4|^7.0",
  4169. "symfony/expression-language": "^6.4|^7.0",
  4170. "symfony/html-sanitizer": "^6.4|^7.0",
  4171. "symfony/http-foundation": "^6.4|^7.0",
  4172. "symfony/http-kernel": "^6.4|^7.0",
  4173. "symfony/intl": "^6.4|^7.0",
  4174. "symfony/security-core": "^6.4|^7.0",
  4175. "symfony/security-csrf": "^6.4|^7.0",
  4176. "symfony/translation": "^6.4.3|^7.0.3",
  4177. "symfony/uid": "^6.4|^7.0",
  4178. "symfony/validator": "^6.4|^7.0",
  4179. "symfony/var-dumper": "^6.4|^7.0"
  4180. },
  4181. "type": "library",
  4182. "autoload": {
  4183. "psr-4": {
  4184. "Symfony\\Component\\Form\\": ""
  4185. },
  4186. "exclude-from-classmap": [
  4187. "/Tests/"
  4188. ]
  4189. },
  4190. "notification-url": "https://packagist.org/downloads/",
  4191. "license": [
  4192. "MIT"
  4193. ],
  4194. "authors": [
  4195. {
  4196. "name": "Fabien Potencier",
  4197. "email": "fabien@symfony.com"
  4198. },
  4199. {
  4200. "name": "Symfony Community",
  4201. "homepage": "https://symfony.com/contributors"
  4202. }
  4203. ],
  4204. "description": "Allows to easily create, process and reuse HTML forms",
  4205. "homepage": "https://symfony.com",
  4206. "support": {
  4207. "source": "https://github.com/symfony/form/tree/v7.1.6"
  4208. },
  4209. "funding": [
  4210. {
  4211. "url": "https://symfony.com/sponsor",
  4212. "type": "custom"
  4213. },
  4214. {
  4215. "url": "https://github.com/fabpot",
  4216. "type": "github"
  4217. },
  4218. {
  4219. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4220. "type": "tidelift"
  4221. }
  4222. ],
  4223. "time": "2024-10-09T08:46:59+00:00"
  4224. },
  4225. {
  4226. "name": "symfony/framework-bundle",
  4227. "version": "v7.1.11",
  4228. "source": {
  4229. "type": "git",
  4230. "url": "https://github.com/symfony/framework-bundle.git",
  4231. "reference": "1eae7a4e095a2a3851cb41ac2aea9aa60fba1df8"
  4232. },
  4233. "dist": {
  4234. "type": "zip",
  4235. "url": "https://api.github.com/repos/symfony/framework-bundle/zipball/1eae7a4e095a2a3851cb41ac2aea9aa60fba1df8",
  4236. "reference": "1eae7a4e095a2a3851cb41ac2aea9aa60fba1df8",
  4237. "shasum": ""
  4238. },
  4239. "require": {
  4240. "composer-runtime-api": ">=2.1",
  4241. "ext-xml": "*",
  4242. "php": ">=8.2",
  4243. "symfony/cache": "^6.4|^7.0",
  4244. "symfony/config": "^6.4|^7.0",
  4245. "symfony/dependency-injection": "^7.1.5",
  4246. "symfony/deprecation-contracts": "^2.5|^3",
  4247. "symfony/error-handler": "^6.4|^7.0",
  4248. "symfony/event-dispatcher": "^6.4|^7.0",
  4249. "symfony/filesystem": "^7.1",
  4250. "symfony/finder": "^6.4|^7.0",
  4251. "symfony/http-foundation": "^6.4|^7.0",
  4252. "symfony/http-kernel": "^6.4|^7.0",
  4253. "symfony/polyfill-mbstring": "~1.0",
  4254. "symfony/routing": "^6.4|^7.0"
  4255. },
  4256. "conflict": {
  4257. "doctrine/persistence": "<1.3",
  4258. "phpdocumentor/reflection-docblock": "<3.2.2",
  4259. "phpdocumentor/type-resolver": "<1.4.0",
  4260. "symfony/asset": "<6.4",
  4261. "symfony/asset-mapper": "<6.4",
  4262. "symfony/clock": "<6.4",
  4263. "symfony/console": "<6.4",
  4264. "symfony/dom-crawler": "<6.4",
  4265. "symfony/dotenv": "<6.4",
  4266. "symfony/form": "<6.4",
  4267. "symfony/http-client": "<6.4",
  4268. "symfony/lock": "<6.4",
  4269. "symfony/mailer": "<6.4",
  4270. "symfony/messenger": "<6.4",
  4271. "symfony/mime": "<6.4",
  4272. "symfony/property-access": "<6.4",
  4273. "symfony/property-info": "<6.4",
  4274. "symfony/runtime": "<6.4.13|>=7.0,<7.1.6",
  4275. "symfony/scheduler": "<6.4.4|>=7.0.0,<7.0.4",
  4276. "symfony/security-core": "<6.4",
  4277. "symfony/security-csrf": "<6.4",
  4278. "symfony/serializer": "<6.4",
  4279. "symfony/stopwatch": "<6.4",
  4280. "symfony/translation": "<6.4",
  4281. "symfony/twig-bridge": "<6.4",
  4282. "symfony/twig-bundle": "<6.4",
  4283. "symfony/validator": "<6.4",
  4284. "symfony/web-profiler-bundle": "<6.4",
  4285. "symfony/workflow": "<6.4"
  4286. },
  4287. "require-dev": {
  4288. "doctrine/persistence": "^1.3|^2|^3",
  4289. "dragonmantank/cron-expression": "^3.1",
  4290. "phpdocumentor/reflection-docblock": "^3.0|^4.0|^5.0",
  4291. "seld/jsonlint": "^1.10",
  4292. "symfony/asset": "^6.4|^7.0",
  4293. "symfony/asset-mapper": "^6.4|^7.0",
  4294. "symfony/browser-kit": "^6.4|^7.0",
  4295. "symfony/clock": "^6.4|^7.0",
  4296. "symfony/console": "^6.4|^7.0",
  4297. "symfony/css-selector": "^6.4|^7.0",
  4298. "symfony/dom-crawler": "^6.4|^7.0",
  4299. "symfony/dotenv": "^6.4|^7.0",
  4300. "symfony/expression-language": "^6.4|^7.0",
  4301. "symfony/form": "^6.4|^7.0",
  4302. "symfony/html-sanitizer": "^6.4|^7.0",
  4303. "symfony/http-client": "^6.4|^7.0",
  4304. "symfony/lock": "^6.4|^7.0",
  4305. "symfony/mailer": "^6.4|^7.0",
  4306. "symfony/messenger": "^6.4|^7.0",
  4307. "symfony/mime": "^6.4|^7.0",
  4308. "symfony/notifier": "^6.4|^7.0",
  4309. "symfony/polyfill-intl-icu": "~1.0",
  4310. "symfony/process": "^6.4|^7.0",
  4311. "symfony/property-info": "^6.4|^7.0",
  4312. "symfony/rate-limiter": "^6.4|^7.0",
  4313. "symfony/scheduler": "^6.4.4|^7.0.4",
  4314. "symfony/security-bundle": "^6.4|^7.0",
  4315. "symfony/semaphore": "^6.4|^7.0",
  4316. "symfony/serializer": "^6.4|^7.0",
  4317. "symfony/stopwatch": "^6.4|^7.0",
  4318. "symfony/string": "^6.4|^7.0",
  4319. "symfony/translation": "^6.4|^7.0",
  4320. "symfony/twig-bundle": "^6.4|^7.0",
  4321. "symfony/type-info": "^7.1",
  4322. "symfony/uid": "^6.4|^7.0",
  4323. "symfony/validator": "^6.4|^7.0",
  4324. "symfony/web-link": "^6.4|^7.0",
  4325. "symfony/workflow": "^6.4|^7.0",
  4326. "symfony/yaml": "^6.4|^7.0",
  4327. "twig/twig": "^3.0.4"
  4328. },
  4329. "type": "symfony-bundle",
  4330. "autoload": {
  4331. "psr-4": {
  4332. "Symfony\\Bundle\\FrameworkBundle\\": ""
  4333. },
  4334. "exclude-from-classmap": [
  4335. "/Tests/"
  4336. ]
  4337. },
  4338. "notification-url": "https://packagist.org/downloads/",
  4339. "license": [
  4340. "MIT"
  4341. ],
  4342. "authors": [
  4343. {
  4344. "name": "Fabien Potencier",
  4345. "email": "fabien@symfony.com"
  4346. },
  4347. {
  4348. "name": "Symfony Community",
  4349. "homepage": "https://symfony.com/contributors"
  4350. }
  4351. ],
  4352. "description": "Provides a tight integration between Symfony components and the Symfony full-stack framework",
  4353. "homepage": "https://symfony.com",
  4354. "support": {
  4355. "source": "https://github.com/symfony/framework-bundle/tree/v7.1.11"
  4356. },
  4357. "funding": [
  4358. {
  4359. "url": "https://symfony.com/sponsor",
  4360. "type": "custom"
  4361. },
  4362. {
  4363. "url": "https://github.com/fabpot",
  4364. "type": "github"
  4365. },
  4366. {
  4367. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4368. "type": "tidelift"
  4369. }
  4370. ],
  4371. "time": "2025-01-29T07:13:42+00:00"
  4372. },
  4373. {
  4374. "name": "symfony/html-sanitizer",
  4375. "version": "v7.1.11",
  4376. "source": {
  4377. "type": "git",
  4378. "url": "https://github.com/symfony/html-sanitizer.git",
  4379. "reference": "5d928d0dc7823d703282bded46ba80008ce40d81"
  4380. },
  4381. "dist": {
  4382. "type": "zip",
  4383. "url": "https://api.github.com/repos/symfony/html-sanitizer/zipball/5d928d0dc7823d703282bded46ba80008ce40d81",
  4384. "reference": "5d928d0dc7823d703282bded46ba80008ce40d81",
  4385. "shasum": ""
  4386. },
  4387. "require": {
  4388. "ext-dom": "*",
  4389. "league/uri": "^6.5|^7.0",
  4390. "masterminds/html5": "^2.7.2",
  4391. "php": ">=8.2"
  4392. },
  4393. "type": "library",
  4394. "autoload": {
  4395. "psr-4": {
  4396. "Symfony\\Component\\HtmlSanitizer\\": ""
  4397. },
  4398. "exclude-from-classmap": [
  4399. "/Tests/"
  4400. ]
  4401. },
  4402. "notification-url": "https://packagist.org/downloads/",
  4403. "license": [
  4404. "MIT"
  4405. ],
  4406. "authors": [
  4407. {
  4408. "name": "Titouan Galopin",
  4409. "email": "galopintitouan@gmail.com"
  4410. },
  4411. {
  4412. "name": "Symfony Community",
  4413. "homepage": "https://symfony.com/contributors"
  4414. }
  4415. ],
  4416. "description": "Provides an object-oriented API to sanitize untrusted HTML input for safe insertion into a document's DOM.",
  4417. "homepage": "https://symfony.com",
  4418. "keywords": [
  4419. "Purifier",
  4420. "html",
  4421. "sanitizer"
  4422. ],
  4423. "support": {
  4424. "source": "https://github.com/symfony/html-sanitizer/tree/v7.1.11"
  4425. },
  4426. "funding": [
  4427. {
  4428. "url": "https://symfony.com/sponsor",
  4429. "type": "custom"
  4430. },
  4431. {
  4432. "url": "https://github.com/fabpot",
  4433. "type": "github"
  4434. },
  4435. {
  4436. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4437. "type": "tidelift"
  4438. }
  4439. ],
  4440. "time": "2025-01-27T10:57:12+00:00"
  4441. },
  4442. {
  4443. "name": "symfony/http-client",
  4444. "version": "v7.1.11",
  4445. "source": {
  4446. "type": "git",
  4447. "url": "https://github.com/symfony/http-client.git",
  4448. "reference": "71632c1f13b36cb4c23ccdd255946dc02753afef"
  4449. },
  4450. "dist": {
  4451. "type": "zip",
  4452. "url": "https://api.github.com/repos/symfony/http-client/zipball/71632c1f13b36cb4c23ccdd255946dc02753afef",
  4453. "reference": "71632c1f13b36cb4c23ccdd255946dc02753afef",
  4454. "shasum": ""
  4455. },
  4456. "require": {
  4457. "php": ">=8.2",
  4458. "psr/log": "^1|^2|^3",
  4459. "symfony/deprecation-contracts": "^2.5|^3",
  4460. "symfony/http-client-contracts": "~3.4.4|^3.5.2",
  4461. "symfony/service-contracts": "^2.5|^3"
  4462. },
  4463. "conflict": {
  4464. "php-http/discovery": "<1.15",
  4465. "symfony/http-foundation": "<6.4"
  4466. },
  4467. "provide": {
  4468. "php-http/async-client-implementation": "*",
  4469. "php-http/client-implementation": "*",
  4470. "psr/http-client-implementation": "1.0",
  4471. "symfony/http-client-implementation": "3.0"
  4472. },
  4473. "require-dev": {
  4474. "amphp/amp": "^2.5",
  4475. "amphp/http-client": "^4.2.1",
  4476. "amphp/http-tunnel": "^1.0",
  4477. "amphp/socket": "^1.1",
  4478. "guzzlehttp/promises": "^1.4|^2.0",
  4479. "nyholm/psr7": "^1.0",
  4480. "php-http/httplug": "^1.0|^2.0",
  4481. "psr/http-client": "^1.0",
  4482. "symfony/dependency-injection": "^6.4|^7.0",
  4483. "symfony/http-kernel": "^6.4|^7.0",
  4484. "symfony/messenger": "^6.4|^7.0",
  4485. "symfony/process": "^6.4|^7.0",
  4486. "symfony/rate-limiter": "^6.4|^7.0",
  4487. "symfony/stopwatch": "^6.4|^7.0"
  4488. },
  4489. "type": "library",
  4490. "autoload": {
  4491. "psr-4": {
  4492. "Symfony\\Component\\HttpClient\\": ""
  4493. },
  4494. "exclude-from-classmap": [
  4495. "/Tests/"
  4496. ]
  4497. },
  4498. "notification-url": "https://packagist.org/downloads/",
  4499. "license": [
  4500. "MIT"
  4501. ],
  4502. "authors": [
  4503. {
  4504. "name": "Nicolas Grekas",
  4505. "email": "p@tchwork.com"
  4506. },
  4507. {
  4508. "name": "Symfony Community",
  4509. "homepage": "https://symfony.com/contributors"
  4510. }
  4511. ],
  4512. "description": "Provides powerful methods to fetch HTTP resources synchronously or asynchronously",
  4513. "homepage": "https://symfony.com",
  4514. "keywords": [
  4515. "http"
  4516. ],
  4517. "support": {
  4518. "source": "https://github.com/symfony/http-client/tree/v7.1.11"
  4519. },
  4520. "funding": [
  4521. {
  4522. "url": "https://symfony.com/sponsor",
  4523. "type": "custom"
  4524. },
  4525. {
  4526. "url": "https://github.com/fabpot",
  4527. "type": "github"
  4528. },
  4529. {
  4530. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4531. "type": "tidelift"
  4532. }
  4533. ],
  4534. "time": "2025-01-28T15:50:57+00:00"
  4535. },
  4536. {
  4537. "name": "symfony/http-client-contracts",
  4538. "version": "v3.5.2",
  4539. "source": {
  4540. "type": "git",
  4541. "url": "https://github.com/symfony/http-client-contracts.git",
  4542. "reference": "ee8d807ab20fcb51267fdace50fbe3494c31e645"
  4543. },
  4544. "dist": {
  4545. "type": "zip",
  4546. "url": "https://api.github.com/repos/symfony/http-client-contracts/zipball/ee8d807ab20fcb51267fdace50fbe3494c31e645",
  4547. "reference": "ee8d807ab20fcb51267fdace50fbe3494c31e645",
  4548. "shasum": ""
  4549. },
  4550. "require": {
  4551. "php": ">=8.1"
  4552. },
  4553. "type": "library",
  4554. "extra": {
  4555. "thanks": {
  4556. "url": "https://github.com/symfony/contracts",
  4557. "name": "symfony/contracts"
  4558. },
  4559. "branch-alias": {
  4560. "dev-main": "3.5-dev"
  4561. }
  4562. },
  4563. "autoload": {
  4564. "psr-4": {
  4565. "Symfony\\Contracts\\HttpClient\\": ""
  4566. },
  4567. "exclude-from-classmap": [
  4568. "/Test/"
  4569. ]
  4570. },
  4571. "notification-url": "https://packagist.org/downloads/",
  4572. "license": [
  4573. "MIT"
  4574. ],
  4575. "authors": [
  4576. {
  4577. "name": "Nicolas Grekas",
  4578. "email": "p@tchwork.com"
  4579. },
  4580. {
  4581. "name": "Symfony Community",
  4582. "homepage": "https://symfony.com/contributors"
  4583. }
  4584. ],
  4585. "description": "Generic abstractions related to HTTP clients",
  4586. "homepage": "https://symfony.com",
  4587. "keywords": [
  4588. "abstractions",
  4589. "contracts",
  4590. "decoupling",
  4591. "interfaces",
  4592. "interoperability",
  4593. "standards"
  4594. ],
  4595. "support": {
  4596. "source": "https://github.com/symfony/http-client-contracts/tree/v3.5.2"
  4597. },
  4598. "funding": [
  4599. {
  4600. "url": "https://symfony.com/sponsor",
  4601. "type": "custom"
  4602. },
  4603. {
  4604. "url": "https://github.com/fabpot",
  4605. "type": "github"
  4606. },
  4607. {
  4608. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4609. "type": "tidelift"
  4610. }
  4611. ],
  4612. "time": "2024-12-07T08:49:48+00:00"
  4613. },
  4614. {
  4615. "name": "symfony/http-foundation",
  4616. "version": "v7.1.11",
  4617. "source": {
  4618. "type": "git",
  4619. "url": "https://github.com/symfony/http-foundation.git",
  4620. "reference": "7ced01aa123612666a7a4fb72c627f969c01fa8d"
  4621. },
  4622. "dist": {
  4623. "type": "zip",
  4624. "url": "https://api.github.com/repos/symfony/http-foundation/zipball/7ced01aa123612666a7a4fb72c627f969c01fa8d",
  4625. "reference": "7ced01aa123612666a7a4fb72c627f969c01fa8d",
  4626. "shasum": ""
  4627. },
  4628. "require": {
  4629. "php": ">=8.2",
  4630. "symfony/polyfill-mbstring": "~1.1",
  4631. "symfony/polyfill-php83": "^1.27"
  4632. },
  4633. "conflict": {
  4634. "doctrine/dbal": "<3.6",
  4635. "symfony/cache": "<6.4.12|>=7.0,<7.1.5"
  4636. },
  4637. "require-dev": {
  4638. "doctrine/dbal": "^3.6|^4",
  4639. "predis/predis": "^1.1|^2.0",
  4640. "symfony/cache": "^6.4.12|^7.1.5",
  4641. "symfony/dependency-injection": "^6.4|^7.0",
  4642. "symfony/expression-language": "^6.4|^7.0",
  4643. "symfony/http-kernel": "^6.4|^7.0",
  4644. "symfony/mime": "^6.4|^7.0",
  4645. "symfony/rate-limiter": "^6.4|^7.0"
  4646. },
  4647. "type": "library",
  4648. "autoload": {
  4649. "psr-4": {
  4650. "Symfony\\Component\\HttpFoundation\\": ""
  4651. },
  4652. "exclude-from-classmap": [
  4653. "/Tests/"
  4654. ]
  4655. },
  4656. "notification-url": "https://packagist.org/downloads/",
  4657. "license": [
  4658. "MIT"
  4659. ],
  4660. "authors": [
  4661. {
  4662. "name": "Fabien Potencier",
  4663. "email": "fabien@symfony.com"
  4664. },
  4665. {
  4666. "name": "Symfony Community",
  4667. "homepage": "https://symfony.com/contributors"
  4668. }
  4669. ],
  4670. "description": "Defines an object-oriented layer for the HTTP specification",
  4671. "homepage": "https://symfony.com",
  4672. "support": {
  4673. "source": "https://github.com/symfony/http-foundation/tree/v7.1.11"
  4674. },
  4675. "funding": [
  4676. {
  4677. "url": "https://symfony.com/sponsor",
  4678. "type": "custom"
  4679. },
  4680. {
  4681. "url": "https://github.com/fabpot",
  4682. "type": "github"
  4683. },
  4684. {
  4685. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4686. "type": "tidelift"
  4687. }
  4688. ],
  4689. "time": "2025-01-17T10:33:21+00:00"
  4690. },
  4691. {
  4692. "name": "symfony/http-kernel",
  4693. "version": "v7.1.11",
  4694. "source": {
  4695. "type": "git",
  4696. "url": "https://github.com/symfony/http-kernel.git",
  4697. "reference": "576eb3368037dd139f67b8ac71db56c3f69f7d66"
  4698. },
  4699. "dist": {
  4700. "type": "zip",
  4701. "url": "https://api.github.com/repos/symfony/http-kernel/zipball/576eb3368037dd139f67b8ac71db56c3f69f7d66",
  4702. "reference": "576eb3368037dd139f67b8ac71db56c3f69f7d66",
  4703. "shasum": ""
  4704. },
  4705. "require": {
  4706. "php": ">=8.2",
  4707. "psr/log": "^1|^2|^3",
  4708. "symfony/deprecation-contracts": "^2.5|^3",
  4709. "symfony/error-handler": "^6.4|^7.0",
  4710. "symfony/event-dispatcher": "^6.4|^7.0",
  4711. "symfony/http-foundation": "^6.4|^7.0",
  4712. "symfony/polyfill-ctype": "^1.8"
  4713. },
  4714. "conflict": {
  4715. "symfony/browser-kit": "<6.4",
  4716. "symfony/cache": "<6.4",
  4717. "symfony/config": "<6.4",
  4718. "symfony/console": "<6.4",
  4719. "symfony/dependency-injection": "<6.4",
  4720. "symfony/doctrine-bridge": "<6.4",
  4721. "symfony/form": "<6.4",
  4722. "symfony/http-client": "<6.4",
  4723. "symfony/http-client-contracts": "<2.5",
  4724. "symfony/mailer": "<6.4",
  4725. "symfony/messenger": "<6.4",
  4726. "symfony/translation": "<6.4",
  4727. "symfony/translation-contracts": "<2.5",
  4728. "symfony/twig-bridge": "<6.4",
  4729. "symfony/validator": "<6.4",
  4730. "symfony/var-dumper": "<6.4",
  4731. "twig/twig": "<3.0.4"
  4732. },
  4733. "provide": {
  4734. "psr/log-implementation": "1.0|2.0|3.0"
  4735. },
  4736. "require-dev": {
  4737. "psr/cache": "^1.0|^2.0|^3.0",
  4738. "symfony/browser-kit": "^6.4|^7.0",
  4739. "symfony/clock": "^6.4|^7.0",
  4740. "symfony/config": "^6.4|^7.0",
  4741. "symfony/console": "^6.4|^7.0",
  4742. "symfony/css-selector": "^6.4|^7.0",
  4743. "symfony/dependency-injection": "^6.4|^7.0",
  4744. "symfony/dom-crawler": "^6.4|^7.0",
  4745. "symfony/expression-language": "^6.4|^7.0",
  4746. "symfony/finder": "^6.4|^7.0",
  4747. "symfony/http-client-contracts": "^2.5|^3",
  4748. "symfony/process": "^6.4|^7.0",
  4749. "symfony/property-access": "^7.1",
  4750. "symfony/routing": "^6.4|^7.0",
  4751. "symfony/serializer": "^7.1",
  4752. "symfony/stopwatch": "^6.4|^7.0",
  4753. "symfony/translation": "^6.4|^7.0",
  4754. "symfony/translation-contracts": "^2.5|^3",
  4755. "symfony/uid": "^6.4|^7.0",
  4756. "symfony/validator": "^6.4|^7.0",
  4757. "symfony/var-dumper": "^6.4|^7.0",
  4758. "symfony/var-exporter": "^6.4|^7.0",
  4759. "twig/twig": "^3.0.4"
  4760. },
  4761. "type": "library",
  4762. "autoload": {
  4763. "psr-4": {
  4764. "Symfony\\Component\\HttpKernel\\": ""
  4765. },
  4766. "exclude-from-classmap": [
  4767. "/Tests/"
  4768. ]
  4769. },
  4770. "notification-url": "https://packagist.org/downloads/",
  4771. "license": [
  4772. "MIT"
  4773. ],
  4774. "authors": [
  4775. {
  4776. "name": "Fabien Potencier",
  4777. "email": "fabien@symfony.com"
  4778. },
  4779. {
  4780. "name": "Symfony Community",
  4781. "homepage": "https://symfony.com/contributors"
  4782. }
  4783. ],
  4784. "description": "Provides a structured process for converting a Request into a Response",
  4785. "homepage": "https://symfony.com",
  4786. "support": {
  4787. "source": "https://github.com/symfony/http-kernel/tree/v7.1.11"
  4788. },
  4789. "funding": [
  4790. {
  4791. "url": "https://symfony.com/sponsor",
  4792. "type": "custom"
  4793. },
  4794. {
  4795. "url": "https://github.com/fabpot",
  4796. "type": "github"
  4797. },
  4798. {
  4799. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4800. "type": "tidelift"
  4801. }
  4802. ],
  4803. "time": "2025-01-29T07:34:05+00:00"
  4804. },
  4805. {
  4806. "name": "symfony/mailer",
  4807. "version": "v7.1.11",
  4808. "source": {
  4809. "type": "git",
  4810. "url": "https://github.com/symfony/mailer.git",
  4811. "reference": "e3790ddd7448cc6797fbd06749db70d147992321"
  4812. },
  4813. "dist": {
  4814. "type": "zip",
  4815. "url": "https://api.github.com/repos/symfony/mailer/zipball/e3790ddd7448cc6797fbd06749db70d147992321",
  4816. "reference": "e3790ddd7448cc6797fbd06749db70d147992321",
  4817. "shasum": ""
  4818. },
  4819. "require": {
  4820. "egulias/email-validator": "^2.1.10|^3|^4",
  4821. "php": ">=8.2",
  4822. "psr/event-dispatcher": "^1",
  4823. "psr/log": "^1|^2|^3",
  4824. "symfony/event-dispatcher": "^6.4|^7.0",
  4825. "symfony/mime": "^6.4|^7.0",
  4826. "symfony/service-contracts": "^2.5|^3"
  4827. },
  4828. "conflict": {
  4829. "symfony/http-client-contracts": "<2.5",
  4830. "symfony/http-kernel": "<6.4",
  4831. "symfony/messenger": "<6.4",
  4832. "symfony/mime": "<6.4",
  4833. "symfony/twig-bridge": "<6.4"
  4834. },
  4835. "require-dev": {
  4836. "symfony/console": "^6.4|^7.0",
  4837. "symfony/http-client": "^6.4|^7.0",
  4838. "symfony/messenger": "^6.4|^7.0",
  4839. "symfony/twig-bridge": "^6.4|^7.0"
  4840. },
  4841. "type": "library",
  4842. "autoload": {
  4843. "psr-4": {
  4844. "Symfony\\Component\\Mailer\\": ""
  4845. },
  4846. "exclude-from-classmap": [
  4847. "/Tests/"
  4848. ]
  4849. },
  4850. "notification-url": "https://packagist.org/downloads/",
  4851. "license": [
  4852. "MIT"
  4853. ],
  4854. "authors": [
  4855. {
  4856. "name": "Fabien Potencier",
  4857. "email": "fabien@symfony.com"
  4858. },
  4859. {
  4860. "name": "Symfony Community",
  4861. "homepage": "https://symfony.com/contributors"
  4862. }
  4863. ],
  4864. "description": "Helps sending emails",
  4865. "homepage": "https://symfony.com",
  4866. "support": {
  4867. "source": "https://github.com/symfony/mailer/tree/v7.1.11"
  4868. },
  4869. "funding": [
  4870. {
  4871. "url": "https://symfony.com/sponsor",
  4872. "type": "custom"
  4873. },
  4874. {
  4875. "url": "https://github.com/fabpot",
  4876. "type": "github"
  4877. },
  4878. {
  4879. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4880. "type": "tidelift"
  4881. }
  4882. ],
  4883. "time": "2025-01-27T10:57:12+00:00"
  4884. },
  4885. {
  4886. "name": "symfony/mime",
  4887. "version": "v7.1.11",
  4888. "source": {
  4889. "type": "git",
  4890. "url": "https://github.com/symfony/mime.git",
  4891. "reference": "c252e20d1179dd35a5bfdb4a61a2084387ce97f4"
  4892. },
  4893. "dist": {
  4894. "type": "zip",
  4895. "url": "https://api.github.com/repos/symfony/mime/zipball/c252e20d1179dd35a5bfdb4a61a2084387ce97f4",
  4896. "reference": "c252e20d1179dd35a5bfdb4a61a2084387ce97f4",
  4897. "shasum": ""
  4898. },
  4899. "require": {
  4900. "php": ">=8.2",
  4901. "symfony/polyfill-intl-idn": "^1.10",
  4902. "symfony/polyfill-mbstring": "^1.0"
  4903. },
  4904. "conflict": {
  4905. "egulias/email-validator": "~3.0.0",
  4906. "phpdocumentor/reflection-docblock": "<3.2.2",
  4907. "phpdocumentor/type-resolver": "<1.4.0",
  4908. "symfony/mailer": "<6.4",
  4909. "symfony/serializer": "<6.4.3|>7.0,<7.0.3"
  4910. },
  4911. "require-dev": {
  4912. "egulias/email-validator": "^2.1.10|^3.1|^4",
  4913. "league/html-to-markdown": "^5.0",
  4914. "phpdocumentor/reflection-docblock": "^3.0|^4.0|^5.0",
  4915. "symfony/dependency-injection": "^6.4|^7.0",
  4916. "symfony/process": "^6.4|^7.0",
  4917. "symfony/property-access": "^6.4|^7.0",
  4918. "symfony/property-info": "^6.4|^7.0",
  4919. "symfony/serializer": "^6.4.3|^7.0.3"
  4920. },
  4921. "type": "library",
  4922. "autoload": {
  4923. "psr-4": {
  4924. "Symfony\\Component\\Mime\\": ""
  4925. },
  4926. "exclude-from-classmap": [
  4927. "/Tests/"
  4928. ]
  4929. },
  4930. "notification-url": "https://packagist.org/downloads/",
  4931. "license": [
  4932. "MIT"
  4933. ],
  4934. "authors": [
  4935. {
  4936. "name": "Fabien Potencier",
  4937. "email": "fabien@symfony.com"
  4938. },
  4939. {
  4940. "name": "Symfony Community",
  4941. "homepage": "https://symfony.com/contributors"
  4942. }
  4943. ],
  4944. "description": "Allows manipulating MIME messages",
  4945. "homepage": "https://symfony.com",
  4946. "keywords": [
  4947. "mime",
  4948. "mime-type"
  4949. ],
  4950. "support": {
  4951. "source": "https://github.com/symfony/mime/tree/v7.1.11"
  4952. },
  4953. "funding": [
  4954. {
  4955. "url": "https://symfony.com/sponsor",
  4956. "type": "custom"
  4957. },
  4958. {
  4959. "url": "https://github.com/fabpot",
  4960. "type": "github"
  4961. },
  4962. {
  4963. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4964. "type": "tidelift"
  4965. }
  4966. ],
  4967. "time": "2025-01-27T10:57:12+00:00"
  4968. },
  4969. {
  4970. "name": "symfony/monolog-bridge",
  4971. "version": "v7.1.6",
  4972. "source": {
  4973. "type": "git",
  4974. "url": "https://github.com/symfony/monolog-bridge.git",
  4975. "reference": "e1da878cf5f701df5f5c1799bdbf827acee5a76e"
  4976. },
  4977. "dist": {
  4978. "type": "zip",
  4979. "url": "https://api.github.com/repos/symfony/monolog-bridge/zipball/e1da878cf5f701df5f5c1799bdbf827acee5a76e",
  4980. "reference": "e1da878cf5f701df5f5c1799bdbf827acee5a76e",
  4981. "shasum": ""
  4982. },
  4983. "require": {
  4984. "monolog/monolog": "^3",
  4985. "php": ">=8.2",
  4986. "symfony/http-kernel": "^6.4|^7.0",
  4987. "symfony/service-contracts": "^2.5|^3"
  4988. },
  4989. "conflict": {
  4990. "symfony/console": "<6.4",
  4991. "symfony/http-foundation": "<6.4",
  4992. "symfony/security-core": "<6.4"
  4993. },
  4994. "require-dev": {
  4995. "symfony/console": "^6.4|^7.0",
  4996. "symfony/http-client": "^6.4|^7.0",
  4997. "symfony/mailer": "^6.4|^7.0",
  4998. "symfony/messenger": "^6.4|^7.0",
  4999. "symfony/mime": "^6.4|^7.0",
  5000. "symfony/security-core": "^6.4|^7.0",
  5001. "symfony/var-dumper": "^6.4|^7.0"
  5002. },
  5003. "type": "symfony-bridge",
  5004. "autoload": {
  5005. "psr-4": {
  5006. "Symfony\\Bridge\\Monolog\\": ""
  5007. },
  5008. "exclude-from-classmap": [
  5009. "/Tests/"
  5010. ]
  5011. },
  5012. "notification-url": "https://packagist.org/downloads/",
  5013. "license": [
  5014. "MIT"
  5015. ],
  5016. "authors": [
  5017. {
  5018. "name": "Fabien Potencier",
  5019. "email": "fabien@symfony.com"
  5020. },
  5021. {
  5022. "name": "Symfony Community",
  5023. "homepage": "https://symfony.com/contributors"
  5024. }
  5025. ],
  5026. "description": "Provides integration for Monolog with various Symfony components",
  5027. "homepage": "https://symfony.com",
  5028. "support": {
  5029. "source": "https://github.com/symfony/monolog-bridge/tree/v7.1.6"
  5030. },
  5031. "funding": [
  5032. {
  5033. "url": "https://symfony.com/sponsor",
  5034. "type": "custom"
  5035. },
  5036. {
  5037. "url": "https://github.com/fabpot",
  5038. "type": "github"
  5039. },
  5040. {
  5041. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5042. "type": "tidelift"
  5043. }
  5044. ],
  5045. "time": "2024-10-14T08:49:35+00:00"
  5046. },
  5047. {
  5048. "name": "symfony/monolog-bundle",
  5049. "version": "v3.10.0",
  5050. "source": {
  5051. "type": "git",
  5052. "url": "https://github.com/symfony/monolog-bundle.git",
  5053. "reference": "414f951743f4aa1fd0f5bf6a0e9c16af3fe7f181"
  5054. },
  5055. "dist": {
  5056. "type": "zip",
  5057. "url": "https://api.github.com/repos/symfony/monolog-bundle/zipball/414f951743f4aa1fd0f5bf6a0e9c16af3fe7f181",
  5058. "reference": "414f951743f4aa1fd0f5bf6a0e9c16af3fe7f181",
  5059. "shasum": ""
  5060. },
  5061. "require": {
  5062. "monolog/monolog": "^1.25.1 || ^2.0 || ^3.0",
  5063. "php": ">=7.2.5",
  5064. "symfony/config": "^5.4 || ^6.0 || ^7.0",
  5065. "symfony/dependency-injection": "^5.4 || ^6.0 || ^7.0",
  5066. "symfony/http-kernel": "^5.4 || ^6.0 || ^7.0",
  5067. "symfony/monolog-bridge": "^5.4 || ^6.0 || ^7.0"
  5068. },
  5069. "require-dev": {
  5070. "symfony/console": "^5.4 || ^6.0 || ^7.0",
  5071. "symfony/phpunit-bridge": "^6.3 || ^7.0",
  5072. "symfony/yaml": "^5.4 || ^6.0 || ^7.0"
  5073. },
  5074. "type": "symfony-bundle",
  5075. "extra": {
  5076. "branch-alias": {
  5077. "dev-master": "3.x-dev"
  5078. }
  5079. },
  5080. "autoload": {
  5081. "psr-4": {
  5082. "Symfony\\Bundle\\MonologBundle\\": ""
  5083. },
  5084. "exclude-from-classmap": [
  5085. "/Tests/"
  5086. ]
  5087. },
  5088. "notification-url": "https://packagist.org/downloads/",
  5089. "license": [
  5090. "MIT"
  5091. ],
  5092. "authors": [
  5093. {
  5094. "name": "Fabien Potencier",
  5095. "email": "fabien@symfony.com"
  5096. },
  5097. {
  5098. "name": "Symfony Community",
  5099. "homepage": "https://symfony.com/contributors"
  5100. }
  5101. ],
  5102. "description": "Symfony MonologBundle",
  5103. "homepage": "https://symfony.com",
  5104. "keywords": [
  5105. "log",
  5106. "logging"
  5107. ],
  5108. "support": {
  5109. "issues": "https://github.com/symfony/monolog-bundle/issues",
  5110. "source": "https://github.com/symfony/monolog-bundle/tree/v3.10.0"
  5111. },
  5112. "funding": [
  5113. {
  5114. "url": "https://symfony.com/sponsor",
  5115. "type": "custom"
  5116. },
  5117. {
  5118. "url": "https://github.com/fabpot",
  5119. "type": "github"
  5120. },
  5121. {
  5122. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5123. "type": "tidelift"
  5124. }
  5125. ],
  5126. "time": "2023-11-06T17:08:13+00:00"
  5127. },
  5128. {
  5129. "name": "symfony/options-resolver",
  5130. "version": "v7.1.9",
  5131. "source": {
  5132. "type": "git",
  5133. "url": "https://github.com/symfony/options-resolver.git",
  5134. "reference": "0f4099f5306a92487d13b2a4589068c36a93c447"
  5135. },
  5136. "dist": {
  5137. "type": "zip",
  5138. "url": "https://api.github.com/repos/symfony/options-resolver/zipball/0f4099f5306a92487d13b2a4589068c36a93c447",
  5139. "reference": "0f4099f5306a92487d13b2a4589068c36a93c447",
  5140. "shasum": ""
  5141. },
  5142. "require": {
  5143. "php": ">=8.2",
  5144. "symfony/deprecation-contracts": "^2.5|^3"
  5145. },
  5146. "type": "library",
  5147. "autoload": {
  5148. "psr-4": {
  5149. "Symfony\\Component\\OptionsResolver\\": ""
  5150. },
  5151. "exclude-from-classmap": [
  5152. "/Tests/"
  5153. ]
  5154. },
  5155. "notification-url": "https://packagist.org/downloads/",
  5156. "license": [
  5157. "MIT"
  5158. ],
  5159. "authors": [
  5160. {
  5161. "name": "Fabien Potencier",
  5162. "email": "fabien@symfony.com"
  5163. },
  5164. {
  5165. "name": "Symfony Community",
  5166. "homepage": "https://symfony.com/contributors"
  5167. }
  5168. ],
  5169. "description": "Provides an improved replacement for the array_replace PHP function",
  5170. "homepage": "https://symfony.com",
  5171. "keywords": [
  5172. "config",
  5173. "configuration",
  5174. "options"
  5175. ],
  5176. "support": {
  5177. "source": "https://github.com/symfony/options-resolver/tree/v7.1.9"
  5178. },
  5179. "funding": [
  5180. {
  5181. "url": "https://symfony.com/sponsor",
  5182. "type": "custom"
  5183. },
  5184. {
  5185. "url": "https://github.com/fabpot",
  5186. "type": "github"
  5187. },
  5188. {
  5189. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5190. "type": "tidelift"
  5191. }
  5192. ],
  5193. "time": "2024-11-20T11:08:58+00:00"
  5194. },
  5195. {
  5196. "name": "symfony/password-hasher",
  5197. "version": "v7.1.6",
  5198. "source": {
  5199. "type": "git",
  5200. "url": "https://github.com/symfony/password-hasher.git",
  5201. "reference": "2e618d1af51805e5a1fbda326d00b77c6c1037d5"
  5202. },
  5203. "dist": {
  5204. "type": "zip",
  5205. "url": "https://api.github.com/repos/symfony/password-hasher/zipball/2e618d1af51805e5a1fbda326d00b77c6c1037d5",
  5206. "reference": "2e618d1af51805e5a1fbda326d00b77c6c1037d5",
  5207. "shasum": ""
  5208. },
  5209. "require": {
  5210. "php": ">=8.2"
  5211. },
  5212. "conflict": {
  5213. "symfony/security-core": "<6.4"
  5214. },
  5215. "require-dev": {
  5216. "symfony/console": "^6.4|^7.0",
  5217. "symfony/security-core": "^6.4|^7.0"
  5218. },
  5219. "type": "library",
  5220. "autoload": {
  5221. "psr-4": {
  5222. "Symfony\\Component\\PasswordHasher\\": ""
  5223. },
  5224. "exclude-from-classmap": [
  5225. "/Tests/"
  5226. ]
  5227. },
  5228. "notification-url": "https://packagist.org/downloads/",
  5229. "license": [
  5230. "MIT"
  5231. ],
  5232. "authors": [
  5233. {
  5234. "name": "Robin Chalas",
  5235. "email": "robin.chalas@gmail.com"
  5236. },
  5237. {
  5238. "name": "Symfony Community",
  5239. "homepage": "https://symfony.com/contributors"
  5240. }
  5241. ],
  5242. "description": "Provides password hashing utilities",
  5243. "homepage": "https://symfony.com",
  5244. "keywords": [
  5245. "hashing",
  5246. "password"
  5247. ],
  5248. "support": {
  5249. "source": "https://github.com/symfony/password-hasher/tree/v7.1.6"
  5250. },
  5251. "funding": [
  5252. {
  5253. "url": "https://symfony.com/sponsor",
  5254. "type": "custom"
  5255. },
  5256. {
  5257. "url": "https://github.com/fabpot",
  5258. "type": "github"
  5259. },
  5260. {
  5261. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5262. "type": "tidelift"
  5263. }
  5264. ],
  5265. "time": "2024-09-25T14:20:29+00:00"
  5266. },
  5267. {
  5268. "name": "symfony/polyfill-intl-grapheme",
  5269. "version": "v1.31.0",
  5270. "source": {
  5271. "type": "git",
  5272. "url": "https://github.com/symfony/polyfill-intl-grapheme.git",
  5273. "reference": "b9123926e3b7bc2f98c02ad54f6a4b02b91a8abe"
  5274. },
  5275. "dist": {
  5276. "type": "zip",
  5277. "url": "https://api.github.com/repos/symfony/polyfill-intl-grapheme/zipball/b9123926e3b7bc2f98c02ad54f6a4b02b91a8abe",
  5278. "reference": "b9123926e3b7bc2f98c02ad54f6a4b02b91a8abe",
  5279. "shasum": ""
  5280. },
  5281. "require": {
  5282. "php": ">=7.2"
  5283. },
  5284. "suggest": {
  5285. "ext-intl": "For best performance"
  5286. },
  5287. "type": "library",
  5288. "extra": {
  5289. "thanks": {
  5290. "url": "https://github.com/symfony/polyfill",
  5291. "name": "symfony/polyfill"
  5292. }
  5293. },
  5294. "autoload": {
  5295. "files": [
  5296. "bootstrap.php"
  5297. ],
  5298. "psr-4": {
  5299. "Symfony\\Polyfill\\Intl\\Grapheme\\": ""
  5300. }
  5301. },
  5302. "notification-url": "https://packagist.org/downloads/",
  5303. "license": [
  5304. "MIT"
  5305. ],
  5306. "authors": [
  5307. {
  5308. "name": "Nicolas Grekas",
  5309. "email": "p@tchwork.com"
  5310. },
  5311. {
  5312. "name": "Symfony Community",
  5313. "homepage": "https://symfony.com/contributors"
  5314. }
  5315. ],
  5316. "description": "Symfony polyfill for intl's grapheme_* functions",
  5317. "homepage": "https://symfony.com",
  5318. "keywords": [
  5319. "compatibility",
  5320. "grapheme",
  5321. "intl",
  5322. "polyfill",
  5323. "portable",
  5324. "shim"
  5325. ],
  5326. "support": {
  5327. "source": "https://github.com/symfony/polyfill-intl-grapheme/tree/v1.31.0"
  5328. },
  5329. "funding": [
  5330. {
  5331. "url": "https://symfony.com/sponsor",
  5332. "type": "custom"
  5333. },
  5334. {
  5335. "url": "https://github.com/fabpot",
  5336. "type": "github"
  5337. },
  5338. {
  5339. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5340. "type": "tidelift"
  5341. }
  5342. ],
  5343. "time": "2024-09-09T11:45:10+00:00"
  5344. },
  5345. {
  5346. "name": "symfony/polyfill-intl-icu",
  5347. "version": "v1.31.0",
  5348. "source": {
  5349. "type": "git",
  5350. "url": "https://github.com/symfony/polyfill-intl-icu.git",
  5351. "reference": "d80a05e9904d2c2b9b95929f3e4b5d3a8f418d78"
  5352. },
  5353. "dist": {
  5354. "type": "zip",
  5355. "url": "https://api.github.com/repos/symfony/polyfill-intl-icu/zipball/d80a05e9904d2c2b9b95929f3e4b5d3a8f418d78",
  5356. "reference": "d80a05e9904d2c2b9b95929f3e4b5d3a8f418d78",
  5357. "shasum": ""
  5358. },
  5359. "require": {
  5360. "php": ">=7.2"
  5361. },
  5362. "suggest": {
  5363. "ext-intl": "For best performance and support of other locales than \"en\""
  5364. },
  5365. "type": "library",
  5366. "extra": {
  5367. "thanks": {
  5368. "url": "https://github.com/symfony/polyfill",
  5369. "name": "symfony/polyfill"
  5370. }
  5371. },
  5372. "autoload": {
  5373. "files": [
  5374. "bootstrap.php"
  5375. ],
  5376. "psr-4": {
  5377. "Symfony\\Polyfill\\Intl\\Icu\\": ""
  5378. },
  5379. "classmap": [
  5380. "Resources/stubs"
  5381. ],
  5382. "exclude-from-classmap": [
  5383. "/Tests/"
  5384. ]
  5385. },
  5386. "notification-url": "https://packagist.org/downloads/",
  5387. "license": [
  5388. "MIT"
  5389. ],
  5390. "authors": [
  5391. {
  5392. "name": "Nicolas Grekas",
  5393. "email": "p@tchwork.com"
  5394. },
  5395. {
  5396. "name": "Symfony Community",
  5397. "homepage": "https://symfony.com/contributors"
  5398. }
  5399. ],
  5400. "description": "Symfony polyfill for intl's ICU-related data and classes",
  5401. "homepage": "https://symfony.com",
  5402. "keywords": [
  5403. "compatibility",
  5404. "icu",
  5405. "intl",
  5406. "polyfill",
  5407. "portable",
  5408. "shim"
  5409. ],
  5410. "support": {
  5411. "source": "https://github.com/symfony/polyfill-intl-icu/tree/v1.31.0"
  5412. },
  5413. "funding": [
  5414. {
  5415. "url": "https://symfony.com/sponsor",
  5416. "type": "custom"
  5417. },
  5418. {
  5419. "url": "https://github.com/fabpot",
  5420. "type": "github"
  5421. },
  5422. {
  5423. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5424. "type": "tidelift"
  5425. }
  5426. ],
  5427. "time": "2024-09-09T11:45:10+00:00"
  5428. },
  5429. {
  5430. "name": "symfony/polyfill-intl-idn",
  5431. "version": "v1.31.0",
  5432. "source": {
  5433. "type": "git",
  5434. "url": "https://github.com/symfony/polyfill-intl-idn.git",
  5435. "reference": "c36586dcf89a12315939e00ec9b4474adcb1d773"
  5436. },
  5437. "dist": {
  5438. "type": "zip",
  5439. "url": "https://api.github.com/repos/symfony/polyfill-intl-idn/zipball/c36586dcf89a12315939e00ec9b4474adcb1d773",
  5440. "reference": "c36586dcf89a12315939e00ec9b4474adcb1d773",
  5441. "shasum": ""
  5442. },
  5443. "require": {
  5444. "php": ">=7.2",
  5445. "symfony/polyfill-intl-normalizer": "^1.10"
  5446. },
  5447. "suggest": {
  5448. "ext-intl": "For best performance"
  5449. },
  5450. "type": "library",
  5451. "extra": {
  5452. "thanks": {
  5453. "url": "https://github.com/symfony/polyfill",
  5454. "name": "symfony/polyfill"
  5455. }
  5456. },
  5457. "autoload": {
  5458. "files": [
  5459. "bootstrap.php"
  5460. ],
  5461. "psr-4": {
  5462. "Symfony\\Polyfill\\Intl\\Idn\\": ""
  5463. }
  5464. },
  5465. "notification-url": "https://packagist.org/downloads/",
  5466. "license": [
  5467. "MIT"
  5468. ],
  5469. "authors": [
  5470. {
  5471. "name": "Laurent Bassin",
  5472. "email": "laurent@bassin.info"
  5473. },
  5474. {
  5475. "name": "Trevor Rowbotham",
  5476. "email": "trevor.rowbotham@pm.me"
  5477. },
  5478. {
  5479. "name": "Symfony Community",
  5480. "homepage": "https://symfony.com/contributors"
  5481. }
  5482. ],
  5483. "description": "Symfony polyfill for intl's idn_to_ascii and idn_to_utf8 functions",
  5484. "homepage": "https://symfony.com",
  5485. "keywords": [
  5486. "compatibility",
  5487. "idn",
  5488. "intl",
  5489. "polyfill",
  5490. "portable",
  5491. "shim"
  5492. ],
  5493. "support": {
  5494. "source": "https://github.com/symfony/polyfill-intl-idn/tree/v1.31.0"
  5495. },
  5496. "funding": [
  5497. {
  5498. "url": "https://symfony.com/sponsor",
  5499. "type": "custom"
  5500. },
  5501. {
  5502. "url": "https://github.com/fabpot",
  5503. "type": "github"
  5504. },
  5505. {
  5506. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5507. "type": "tidelift"
  5508. }
  5509. ],
  5510. "time": "2024-09-09T11:45:10+00:00"
  5511. },
  5512. {
  5513. "name": "symfony/polyfill-intl-normalizer",
  5514. "version": "v1.31.0",
  5515. "source": {
  5516. "type": "git",
  5517. "url": "https://github.com/symfony/polyfill-intl-normalizer.git",
  5518. "reference": "3833d7255cc303546435cb650316bff708a1c75c"
  5519. },
  5520. "dist": {
  5521. "type": "zip",
  5522. "url": "https://api.github.com/repos/symfony/polyfill-intl-normalizer/zipball/3833d7255cc303546435cb650316bff708a1c75c",
  5523. "reference": "3833d7255cc303546435cb650316bff708a1c75c",
  5524. "shasum": ""
  5525. },
  5526. "require": {
  5527. "php": ">=7.2"
  5528. },
  5529. "suggest": {
  5530. "ext-intl": "For best performance"
  5531. },
  5532. "type": "library",
  5533. "extra": {
  5534. "thanks": {
  5535. "url": "https://github.com/symfony/polyfill",
  5536. "name": "symfony/polyfill"
  5537. }
  5538. },
  5539. "autoload": {
  5540. "files": [
  5541. "bootstrap.php"
  5542. ],
  5543. "psr-4": {
  5544. "Symfony\\Polyfill\\Intl\\Normalizer\\": ""
  5545. },
  5546. "classmap": [
  5547. "Resources/stubs"
  5548. ]
  5549. },
  5550. "notification-url": "https://packagist.org/downloads/",
  5551. "license": [
  5552. "MIT"
  5553. ],
  5554. "authors": [
  5555. {
  5556. "name": "Nicolas Grekas",
  5557. "email": "p@tchwork.com"
  5558. },
  5559. {
  5560. "name": "Symfony Community",
  5561. "homepage": "https://symfony.com/contributors"
  5562. }
  5563. ],
  5564. "description": "Symfony polyfill for intl's Normalizer class and related functions",
  5565. "homepage": "https://symfony.com",
  5566. "keywords": [
  5567. "compatibility",
  5568. "intl",
  5569. "normalizer",
  5570. "polyfill",
  5571. "portable",
  5572. "shim"
  5573. ],
  5574. "support": {
  5575. "source": "https://github.com/symfony/polyfill-intl-normalizer/tree/v1.31.0"
  5576. },
  5577. "funding": [
  5578. {
  5579. "url": "https://symfony.com/sponsor",
  5580. "type": "custom"
  5581. },
  5582. {
  5583. "url": "https://github.com/fabpot",
  5584. "type": "github"
  5585. },
  5586. {
  5587. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5588. "type": "tidelift"
  5589. }
  5590. ],
  5591. "time": "2024-09-09T11:45:10+00:00"
  5592. },
  5593. {
  5594. "name": "symfony/polyfill-mbstring",
  5595. "version": "v1.31.0",
  5596. "source": {
  5597. "type": "git",
  5598. "url": "https://github.com/symfony/polyfill-mbstring.git",
  5599. "reference": "85181ba99b2345b0ef10ce42ecac37612d9fd341"
  5600. },
  5601. "dist": {
  5602. "type": "zip",
  5603. "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/85181ba99b2345b0ef10ce42ecac37612d9fd341",
  5604. "reference": "85181ba99b2345b0ef10ce42ecac37612d9fd341",
  5605. "shasum": ""
  5606. },
  5607. "require": {
  5608. "php": ">=7.2"
  5609. },
  5610. "provide": {
  5611. "ext-mbstring": "*"
  5612. },
  5613. "suggest": {
  5614. "ext-mbstring": "For best performance"
  5615. },
  5616. "type": "library",
  5617. "extra": {
  5618. "thanks": {
  5619. "url": "https://github.com/symfony/polyfill",
  5620. "name": "symfony/polyfill"
  5621. }
  5622. },
  5623. "autoload": {
  5624. "files": [
  5625. "bootstrap.php"
  5626. ],
  5627. "psr-4": {
  5628. "Symfony\\Polyfill\\Mbstring\\": ""
  5629. }
  5630. },
  5631. "notification-url": "https://packagist.org/downloads/",
  5632. "license": [
  5633. "MIT"
  5634. ],
  5635. "authors": [
  5636. {
  5637. "name": "Nicolas Grekas",
  5638. "email": "p@tchwork.com"
  5639. },
  5640. {
  5641. "name": "Symfony Community",
  5642. "homepage": "https://symfony.com/contributors"
  5643. }
  5644. ],
  5645. "description": "Symfony polyfill for the Mbstring extension",
  5646. "homepage": "https://symfony.com",
  5647. "keywords": [
  5648. "compatibility",
  5649. "mbstring",
  5650. "polyfill",
  5651. "portable",
  5652. "shim"
  5653. ],
  5654. "support": {
  5655. "source": "https://github.com/symfony/polyfill-mbstring/tree/v1.31.0"
  5656. },
  5657. "funding": [
  5658. {
  5659. "url": "https://symfony.com/sponsor",
  5660. "type": "custom"
  5661. },
  5662. {
  5663. "url": "https://github.com/fabpot",
  5664. "type": "github"
  5665. },
  5666. {
  5667. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5668. "type": "tidelift"
  5669. }
  5670. ],
  5671. "time": "2024-09-09T11:45:10+00:00"
  5672. },
  5673. {
  5674. "name": "symfony/polyfill-php80",
  5675. "version": "v1.31.0",
  5676. "source": {
  5677. "type": "git",
  5678. "url": "https://github.com/symfony/polyfill-php80.git",
  5679. "reference": "60328e362d4c2c802a54fcbf04f9d3fb892b4cf8"
  5680. },
  5681. "dist": {
  5682. "type": "zip",
  5683. "url": "https://api.github.com/repos/symfony/polyfill-php80/zipball/60328e362d4c2c802a54fcbf04f9d3fb892b4cf8",
  5684. "reference": "60328e362d4c2c802a54fcbf04f9d3fb892b4cf8",
  5685. "shasum": ""
  5686. },
  5687. "require": {
  5688. "php": ">=7.2"
  5689. },
  5690. "type": "library",
  5691. "extra": {
  5692. "thanks": {
  5693. "url": "https://github.com/symfony/polyfill",
  5694. "name": "symfony/polyfill"
  5695. }
  5696. },
  5697. "autoload": {
  5698. "files": [
  5699. "bootstrap.php"
  5700. ],
  5701. "psr-4": {
  5702. "Symfony\\Polyfill\\Php80\\": ""
  5703. },
  5704. "classmap": [
  5705. "Resources/stubs"
  5706. ]
  5707. },
  5708. "notification-url": "https://packagist.org/downloads/",
  5709. "license": [
  5710. "MIT"
  5711. ],
  5712. "authors": [
  5713. {
  5714. "name": "Ion Bazan",
  5715. "email": "ion.bazan@gmail.com"
  5716. },
  5717. {
  5718. "name": "Nicolas Grekas",
  5719. "email": "p@tchwork.com"
  5720. },
  5721. {
  5722. "name": "Symfony Community",
  5723. "homepage": "https://symfony.com/contributors"
  5724. }
  5725. ],
  5726. "description": "Symfony polyfill backporting some PHP 8.0+ features to lower PHP versions",
  5727. "homepage": "https://symfony.com",
  5728. "keywords": [
  5729. "compatibility",
  5730. "polyfill",
  5731. "portable",
  5732. "shim"
  5733. ],
  5734. "support": {
  5735. "source": "https://github.com/symfony/polyfill-php80/tree/v1.31.0"
  5736. },
  5737. "funding": [
  5738. {
  5739. "url": "https://symfony.com/sponsor",
  5740. "type": "custom"
  5741. },
  5742. {
  5743. "url": "https://github.com/fabpot",
  5744. "type": "github"
  5745. },
  5746. {
  5747. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5748. "type": "tidelift"
  5749. }
  5750. ],
  5751. "time": "2024-09-09T11:45:10+00:00"
  5752. },
  5753. {
  5754. "name": "symfony/polyfill-php83",
  5755. "version": "v1.31.0",
  5756. "source": {
  5757. "type": "git",
  5758. "url": "https://github.com/symfony/polyfill-php83.git",
  5759. "reference": "2fb86d65e2d424369ad2905e83b236a8805ba491"
  5760. },
  5761. "dist": {
  5762. "type": "zip",
  5763. "url": "https://api.github.com/repos/symfony/polyfill-php83/zipball/2fb86d65e2d424369ad2905e83b236a8805ba491",
  5764. "reference": "2fb86d65e2d424369ad2905e83b236a8805ba491",
  5765. "shasum": ""
  5766. },
  5767. "require": {
  5768. "php": ">=7.2"
  5769. },
  5770. "type": "library",
  5771. "extra": {
  5772. "thanks": {
  5773. "url": "https://github.com/symfony/polyfill",
  5774. "name": "symfony/polyfill"
  5775. }
  5776. },
  5777. "autoload": {
  5778. "files": [
  5779. "bootstrap.php"
  5780. ],
  5781. "psr-4": {
  5782. "Symfony\\Polyfill\\Php83\\": ""
  5783. },
  5784. "classmap": [
  5785. "Resources/stubs"
  5786. ]
  5787. },
  5788. "notification-url": "https://packagist.org/downloads/",
  5789. "license": [
  5790. "MIT"
  5791. ],
  5792. "authors": [
  5793. {
  5794. "name": "Nicolas Grekas",
  5795. "email": "p@tchwork.com"
  5796. },
  5797. {
  5798. "name": "Symfony Community",
  5799. "homepage": "https://symfony.com/contributors"
  5800. }
  5801. ],
  5802. "description": "Symfony polyfill backporting some PHP 8.3+ features to lower PHP versions",
  5803. "homepage": "https://symfony.com",
  5804. "keywords": [
  5805. "compatibility",
  5806. "polyfill",
  5807. "portable",
  5808. "shim"
  5809. ],
  5810. "support": {
  5811. "source": "https://github.com/symfony/polyfill-php83/tree/v1.31.0"
  5812. },
  5813. "funding": [
  5814. {
  5815. "url": "https://symfony.com/sponsor",
  5816. "type": "custom"
  5817. },
  5818. {
  5819. "url": "https://github.com/fabpot",
  5820. "type": "github"
  5821. },
  5822. {
  5823. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5824. "type": "tidelift"
  5825. }
  5826. ],
  5827. "time": "2024-09-09T11:45:10+00:00"
  5828. },
  5829. {
  5830. "name": "symfony/polyfill-php84",
  5831. "version": "v1.31.0",
  5832. "source": {
  5833. "type": "git",
  5834. "url": "https://github.com/symfony/polyfill-php84.git",
  5835. "reference": "e5493eb51311ab0b1cc2243416613f06ed8f18bd"
  5836. },
  5837. "dist": {
  5838. "type": "zip",
  5839. "url": "https://api.github.com/repos/symfony/polyfill-php84/zipball/e5493eb51311ab0b1cc2243416613f06ed8f18bd",
  5840. "reference": "e5493eb51311ab0b1cc2243416613f06ed8f18bd",
  5841. "shasum": ""
  5842. },
  5843. "require": {
  5844. "php": ">=7.2"
  5845. },
  5846. "type": "library",
  5847. "extra": {
  5848. "thanks": {
  5849. "url": "https://github.com/symfony/polyfill",
  5850. "name": "symfony/polyfill"
  5851. }
  5852. },
  5853. "autoload": {
  5854. "files": [
  5855. "bootstrap.php"
  5856. ],
  5857. "psr-4": {
  5858. "Symfony\\Polyfill\\Php84\\": ""
  5859. },
  5860. "classmap": [
  5861. "Resources/stubs"
  5862. ]
  5863. },
  5864. "notification-url": "https://packagist.org/downloads/",
  5865. "license": [
  5866. "MIT"
  5867. ],
  5868. "authors": [
  5869. {
  5870. "name": "Nicolas Grekas",
  5871. "email": "p@tchwork.com"
  5872. },
  5873. {
  5874. "name": "Symfony Community",
  5875. "homepage": "https://symfony.com/contributors"
  5876. }
  5877. ],
  5878. "description": "Symfony polyfill backporting some PHP 8.4+ features to lower PHP versions",
  5879. "homepage": "https://symfony.com",
  5880. "keywords": [
  5881. "compatibility",
  5882. "polyfill",
  5883. "portable",
  5884. "shim"
  5885. ],
  5886. "support": {
  5887. "source": "https://github.com/symfony/polyfill-php84/tree/v1.31.0"
  5888. },
  5889. "funding": [
  5890. {
  5891. "url": "https://symfony.com/sponsor",
  5892. "type": "custom"
  5893. },
  5894. {
  5895. "url": "https://github.com/fabpot",
  5896. "type": "github"
  5897. },
  5898. {
  5899. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5900. "type": "tidelift"
  5901. }
  5902. ],
  5903. "time": "2024-09-09T12:04:04+00:00"
  5904. },
  5905. {
  5906. "name": "symfony/process",
  5907. "version": "v7.1.8",
  5908. "source": {
  5909. "type": "git",
  5910. "url": "https://github.com/symfony/process.git",
  5911. "reference": "42783370fda6e538771f7c7a36e9fa2ee3a84892"
  5912. },
  5913. "dist": {
  5914. "type": "zip",
  5915. "url": "https://api.github.com/repos/symfony/process/zipball/42783370fda6e538771f7c7a36e9fa2ee3a84892",
  5916. "reference": "42783370fda6e538771f7c7a36e9fa2ee3a84892",
  5917. "shasum": ""
  5918. },
  5919. "require": {
  5920. "php": ">=8.2"
  5921. },
  5922. "type": "library",
  5923. "autoload": {
  5924. "psr-4": {
  5925. "Symfony\\Component\\Process\\": ""
  5926. },
  5927. "exclude-from-classmap": [
  5928. "/Tests/"
  5929. ]
  5930. },
  5931. "notification-url": "https://packagist.org/downloads/",
  5932. "license": [
  5933. "MIT"
  5934. ],
  5935. "authors": [
  5936. {
  5937. "name": "Fabien Potencier",
  5938. "email": "fabien@symfony.com"
  5939. },
  5940. {
  5941. "name": "Symfony Community",
  5942. "homepage": "https://symfony.com/contributors"
  5943. }
  5944. ],
  5945. "description": "Executes commands in sub-processes",
  5946. "homepage": "https://symfony.com",
  5947. "support": {
  5948. "source": "https://github.com/symfony/process/tree/v7.1.8"
  5949. },
  5950. "funding": [
  5951. {
  5952. "url": "https://symfony.com/sponsor",
  5953. "type": "custom"
  5954. },
  5955. {
  5956. "url": "https://github.com/fabpot",
  5957. "type": "github"
  5958. },
  5959. {
  5960. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5961. "type": "tidelift"
  5962. }
  5963. ],
  5964. "time": "2024-11-06T14:23:19+00:00"
  5965. },
  5966. {
  5967. "name": "symfony/property-access",
  5968. "version": "v7.1.11",
  5969. "source": {
  5970. "type": "git",
  5971. "url": "https://github.com/symfony/property-access.git",
  5972. "reference": "83e46f0266186e76929257426ddaa151248781c6"
  5973. },
  5974. "dist": {
  5975. "type": "zip",
  5976. "url": "https://api.github.com/repos/symfony/property-access/zipball/83e46f0266186e76929257426ddaa151248781c6",
  5977. "reference": "83e46f0266186e76929257426ddaa151248781c6",
  5978. "shasum": ""
  5979. },
  5980. "require": {
  5981. "php": ">=8.2",
  5982. "symfony/property-info": "^6.4|^7.0"
  5983. },
  5984. "require-dev": {
  5985. "symfony/cache": "^6.4|^7.0"
  5986. },
  5987. "type": "library",
  5988. "autoload": {
  5989. "psr-4": {
  5990. "Symfony\\Component\\PropertyAccess\\": ""
  5991. },
  5992. "exclude-from-classmap": [
  5993. "/Tests/"
  5994. ]
  5995. },
  5996. "notification-url": "https://packagist.org/downloads/",
  5997. "license": [
  5998. "MIT"
  5999. ],
  6000. "authors": [
  6001. {
  6002. "name": "Fabien Potencier",
  6003. "email": "fabien@symfony.com"
  6004. },
  6005. {
  6006. "name": "Symfony Community",
  6007. "homepage": "https://symfony.com/contributors"
  6008. }
  6009. ],
  6010. "description": "Provides functions to read and write from/to an object or array using a simple string notation",
  6011. "homepage": "https://symfony.com",
  6012. "keywords": [
  6013. "access",
  6014. "array",
  6015. "extraction",
  6016. "index",
  6017. "injection",
  6018. "object",
  6019. "property",
  6020. "property-path",
  6021. "reflection"
  6022. ],
  6023. "support": {
  6024. "source": "https://github.com/symfony/property-access/tree/v7.1.11"
  6025. },
  6026. "funding": [
  6027. {
  6028. "url": "https://symfony.com/sponsor",
  6029. "type": "custom"
  6030. },
  6031. {
  6032. "url": "https://github.com/fabpot",
  6033. "type": "github"
  6034. },
  6035. {
  6036. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6037. "type": "tidelift"
  6038. }
  6039. ],
  6040. "time": "2025-01-10T14:50:02+00:00"
  6041. },
  6042. {
  6043. "name": "symfony/property-info",
  6044. "version": "v7.1.11",
  6045. "source": {
  6046. "type": "git",
  6047. "url": "https://github.com/symfony/property-info.git",
  6048. "reference": "df9002f8381cc074300dc2bf9726075e4bf00458"
  6049. },
  6050. "dist": {
  6051. "type": "zip",
  6052. "url": "https://api.github.com/repos/symfony/property-info/zipball/df9002f8381cc074300dc2bf9726075e4bf00458",
  6053. "reference": "df9002f8381cc074300dc2bf9726075e4bf00458",
  6054. "shasum": ""
  6055. },
  6056. "require": {
  6057. "php": ">=8.2",
  6058. "symfony/string": "^6.4|^7.0",
  6059. "symfony/type-info": "~7.1.9|^7.2.2"
  6060. },
  6061. "conflict": {
  6062. "phpdocumentor/reflection-docblock": "<5.2",
  6063. "phpdocumentor/type-resolver": "<1.5.1",
  6064. "symfony/cache": "<6.4",
  6065. "symfony/dependency-injection": "<6.4",
  6066. "symfony/serializer": "<6.4"
  6067. },
  6068. "require-dev": {
  6069. "phpdocumentor/reflection-docblock": "^5.2",
  6070. "phpstan/phpdoc-parser": "^1.0|^2.0",
  6071. "symfony/cache": "^6.4|^7.0",
  6072. "symfony/dependency-injection": "^6.4|^7.0",
  6073. "symfony/serializer": "^6.4|^7.0"
  6074. },
  6075. "type": "library",
  6076. "autoload": {
  6077. "psr-4": {
  6078. "Symfony\\Component\\PropertyInfo\\": ""
  6079. },
  6080. "exclude-from-classmap": [
  6081. "/Tests/"
  6082. ]
  6083. },
  6084. "notification-url": "https://packagist.org/downloads/",
  6085. "license": [
  6086. "MIT"
  6087. ],
  6088. "authors": [
  6089. {
  6090. "name": "Kévin Dunglas",
  6091. "email": "dunglas@gmail.com"
  6092. },
  6093. {
  6094. "name": "Symfony Community",
  6095. "homepage": "https://symfony.com/contributors"
  6096. }
  6097. ],
  6098. "description": "Extracts information about PHP class' properties using metadata of popular sources",
  6099. "homepage": "https://symfony.com",
  6100. "keywords": [
  6101. "doctrine",
  6102. "phpdoc",
  6103. "property",
  6104. "symfony",
  6105. "type",
  6106. "validator"
  6107. ],
  6108. "support": {
  6109. "source": "https://github.com/symfony/property-info/tree/v7.1.11"
  6110. },
  6111. "funding": [
  6112. {
  6113. "url": "https://symfony.com/sponsor",
  6114. "type": "custom"
  6115. },
  6116. {
  6117. "url": "https://github.com/fabpot",
  6118. "type": "github"
  6119. },
  6120. {
  6121. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6122. "type": "tidelift"
  6123. }
  6124. ],
  6125. "time": "2025-01-27T10:57:12+00:00"
  6126. },
  6127. {
  6128. "name": "symfony/routing",
  6129. "version": "v7.1.11",
  6130. "source": {
  6131. "type": "git",
  6132. "url": "https://github.com/symfony/routing.git",
  6133. "reference": "07f6463a8ff4377944222b69b126bd5495e9d44e"
  6134. },
  6135. "dist": {
  6136. "type": "zip",
  6137. "url": "https://api.github.com/repos/symfony/routing/zipball/07f6463a8ff4377944222b69b126bd5495e9d44e",
  6138. "reference": "07f6463a8ff4377944222b69b126bd5495e9d44e",
  6139. "shasum": ""
  6140. },
  6141. "require": {
  6142. "php": ">=8.2",
  6143. "symfony/deprecation-contracts": "^2.5|^3"
  6144. },
  6145. "conflict": {
  6146. "symfony/config": "<6.4",
  6147. "symfony/dependency-injection": "<6.4",
  6148. "symfony/yaml": "<6.4"
  6149. },
  6150. "require-dev": {
  6151. "psr/log": "^1|^2|^3",
  6152. "symfony/config": "^6.4|^7.0",
  6153. "symfony/dependency-injection": "^6.4|^7.0",
  6154. "symfony/expression-language": "^6.4|^7.0",
  6155. "symfony/http-foundation": "^6.4|^7.0",
  6156. "symfony/yaml": "^6.4|^7.0"
  6157. },
  6158. "type": "library",
  6159. "autoload": {
  6160. "psr-4": {
  6161. "Symfony\\Component\\Routing\\": ""
  6162. },
  6163. "exclude-from-classmap": [
  6164. "/Tests/"
  6165. ]
  6166. },
  6167. "notification-url": "https://packagist.org/downloads/",
  6168. "license": [
  6169. "MIT"
  6170. ],
  6171. "authors": [
  6172. {
  6173. "name": "Fabien Potencier",
  6174. "email": "fabien@symfony.com"
  6175. },
  6176. {
  6177. "name": "Symfony Community",
  6178. "homepage": "https://symfony.com/contributors"
  6179. }
  6180. ],
  6181. "description": "Maps an HTTP request to a set of configuration variables",
  6182. "homepage": "https://symfony.com",
  6183. "keywords": [
  6184. "router",
  6185. "routing",
  6186. "uri",
  6187. "url"
  6188. ],
  6189. "support": {
  6190. "source": "https://github.com/symfony/routing/tree/v7.1.11"
  6191. },
  6192. "funding": [
  6193. {
  6194. "url": "https://symfony.com/sponsor",
  6195. "type": "custom"
  6196. },
  6197. {
  6198. "url": "https://github.com/fabpot",
  6199. "type": "github"
  6200. },
  6201. {
  6202. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6203. "type": "tidelift"
  6204. }
  6205. ],
  6206. "time": "2025-01-17T10:33:21+00:00"
  6207. },
  6208. {
  6209. "name": "symfony/runtime",
  6210. "version": "v7.1.7",
  6211. "source": {
  6212. "type": "git",
  6213. "url": "https://github.com/symfony/runtime.git",
  6214. "reference": "9889783c17e8a68fa5e88c8e8a1a85e802558dba"
  6215. },
  6216. "dist": {
  6217. "type": "zip",
  6218. "url": "https://api.github.com/repos/symfony/runtime/zipball/9889783c17e8a68fa5e88c8e8a1a85e802558dba",
  6219. "reference": "9889783c17e8a68fa5e88c8e8a1a85e802558dba",
  6220. "shasum": ""
  6221. },
  6222. "require": {
  6223. "composer-plugin-api": "^1.0|^2.0",
  6224. "php": ">=8.2"
  6225. },
  6226. "conflict": {
  6227. "symfony/dotenv": "<6.4"
  6228. },
  6229. "require-dev": {
  6230. "composer/composer": "^2.6",
  6231. "symfony/console": "^6.4|^7.0",
  6232. "symfony/dotenv": "^6.4|^7.0",
  6233. "symfony/http-foundation": "^6.4|^7.0",
  6234. "symfony/http-kernel": "^6.4|^7.0"
  6235. },
  6236. "type": "composer-plugin",
  6237. "extra": {
  6238. "class": "Symfony\\Component\\Runtime\\Internal\\ComposerPlugin"
  6239. },
  6240. "autoload": {
  6241. "psr-4": {
  6242. "Symfony\\Component\\Runtime\\": "",
  6243. "Symfony\\Runtime\\Symfony\\Component\\": "Internal/"
  6244. },
  6245. "exclude-from-classmap": [
  6246. "/Tests/"
  6247. ]
  6248. },
  6249. "notification-url": "https://packagist.org/downloads/",
  6250. "license": [
  6251. "MIT"
  6252. ],
  6253. "authors": [
  6254. {
  6255. "name": "Nicolas Grekas",
  6256. "email": "p@tchwork.com"
  6257. },
  6258. {
  6259. "name": "Symfony Community",
  6260. "homepage": "https://symfony.com/contributors"
  6261. }
  6262. ],
  6263. "description": "Enables decoupling PHP applications from global state",
  6264. "homepage": "https://symfony.com",
  6265. "keywords": [
  6266. "runtime"
  6267. ],
  6268. "support": {
  6269. "source": "https://github.com/symfony/runtime/tree/v7.1.7"
  6270. },
  6271. "funding": [
  6272. {
  6273. "url": "https://symfony.com/sponsor",
  6274. "type": "custom"
  6275. },
  6276. {
  6277. "url": "https://github.com/fabpot",
  6278. "type": "github"
  6279. },
  6280. {
  6281. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6282. "type": "tidelift"
  6283. }
  6284. ],
  6285. "time": "2024-11-05T16:45:54+00:00"
  6286. },
  6287. {
  6288. "name": "symfony/security-bundle",
  6289. "version": "v7.1.11",
  6290. "source": {
  6291. "type": "git",
  6292. "url": "https://github.com/symfony/security-bundle.git",
  6293. "reference": "4012dbc0884fc7cbf555615a5aaa16f7c0d3f222"
  6294. },
  6295. "dist": {
  6296. "type": "zip",
  6297. "url": "https://api.github.com/repos/symfony/security-bundle/zipball/4012dbc0884fc7cbf555615a5aaa16f7c0d3f222",
  6298. "reference": "4012dbc0884fc7cbf555615a5aaa16f7c0d3f222",
  6299. "shasum": ""
  6300. },
  6301. "require": {
  6302. "composer-runtime-api": ">=2.1",
  6303. "ext-xml": "*",
  6304. "php": ">=8.2",
  6305. "symfony/clock": "^6.4|^7.0",
  6306. "symfony/config": "^6.4|^7.0",
  6307. "symfony/dependency-injection": "^6.4.11|^7.1.4",
  6308. "symfony/event-dispatcher": "^6.4|^7.0",
  6309. "symfony/http-foundation": "^6.4|^7.0",
  6310. "symfony/http-kernel": "^6.4|^7.0",
  6311. "symfony/password-hasher": "^6.4|^7.0",
  6312. "symfony/security-core": "^6.4|^7.0",
  6313. "symfony/security-csrf": "^6.4|^7.0",
  6314. "symfony/security-http": "^7.1",
  6315. "symfony/service-contracts": "^2.5|^3"
  6316. },
  6317. "conflict": {
  6318. "symfony/browser-kit": "<6.4",
  6319. "symfony/console": "<6.4",
  6320. "symfony/framework-bundle": "<6.4",
  6321. "symfony/http-client": "<6.4",
  6322. "symfony/ldap": "<6.4",
  6323. "symfony/serializer": "<6.4",
  6324. "symfony/twig-bundle": "<6.4",
  6325. "symfony/validator": "<6.4"
  6326. },
  6327. "require-dev": {
  6328. "symfony/asset": "^6.4|^7.0",
  6329. "symfony/browser-kit": "^6.4|^7.0",
  6330. "symfony/console": "^6.4|^7.0",
  6331. "symfony/css-selector": "^6.4|^7.0",
  6332. "symfony/dom-crawler": "^6.4|^7.0",
  6333. "symfony/expression-language": "^6.4|^7.0",
  6334. "symfony/form": "^6.4|^7.0",
  6335. "symfony/framework-bundle": "^6.4|^7.0",
  6336. "symfony/http-client": "^6.4|^7.0",
  6337. "symfony/ldap": "^6.4|^7.0",
  6338. "symfony/process": "^6.4|^7.0",
  6339. "symfony/rate-limiter": "^6.4|^7.0",
  6340. "symfony/serializer": "^6.4|^7.0",
  6341. "symfony/translation": "^6.4|^7.0",
  6342. "symfony/twig-bridge": "^6.4|^7.0",
  6343. "symfony/twig-bundle": "^6.4|^7.0",
  6344. "symfony/validator": "^6.4|^7.0",
  6345. "symfony/yaml": "^6.4|^7.0",
  6346. "twig/twig": "^3.0.4",
  6347. "web-token/jwt-library": "^3.3.2|^4.0"
  6348. },
  6349. "type": "symfony-bundle",
  6350. "autoload": {
  6351. "psr-4": {
  6352. "Symfony\\Bundle\\SecurityBundle\\": ""
  6353. },
  6354. "exclude-from-classmap": [
  6355. "/Tests/"
  6356. ]
  6357. },
  6358. "notification-url": "https://packagist.org/downloads/",
  6359. "license": [
  6360. "MIT"
  6361. ],
  6362. "authors": [
  6363. {
  6364. "name": "Fabien Potencier",
  6365. "email": "fabien@symfony.com"
  6366. },
  6367. {
  6368. "name": "Symfony Community",
  6369. "homepage": "https://symfony.com/contributors"
  6370. }
  6371. ],
  6372. "description": "Provides a tight integration of the Security component into the Symfony full-stack framework",
  6373. "homepage": "https://symfony.com",
  6374. "support": {
  6375. "source": "https://github.com/symfony/security-bundle/tree/v7.1.11"
  6376. },
  6377. "funding": [
  6378. {
  6379. "url": "https://symfony.com/sponsor",
  6380. "type": "custom"
  6381. },
  6382. {
  6383. "url": "https://github.com/fabpot",
  6384. "type": "github"
  6385. },
  6386. {
  6387. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6388. "type": "tidelift"
  6389. }
  6390. ],
  6391. "time": "2024-12-31T17:57:35+00:00"
  6392. },
  6393. {
  6394. "name": "symfony/security-core",
  6395. "version": "v7.1.11",
  6396. "source": {
  6397. "type": "git",
  6398. "url": "https://github.com/symfony/security-core.git",
  6399. "reference": "0931c6bb15b696e1a4da8405c255b3a8673dcb3c"
  6400. },
  6401. "dist": {
  6402. "type": "zip",
  6403. "url": "https://api.github.com/repos/symfony/security-core/zipball/0931c6bb15b696e1a4da8405c255b3a8673dcb3c",
  6404. "reference": "0931c6bb15b696e1a4da8405c255b3a8673dcb3c",
  6405. "shasum": ""
  6406. },
  6407. "require": {
  6408. "php": ">=8.2",
  6409. "symfony/event-dispatcher-contracts": "^2.5|^3",
  6410. "symfony/password-hasher": "^6.4|^7.0",
  6411. "symfony/service-contracts": "^2.5|^3"
  6412. },
  6413. "conflict": {
  6414. "symfony/dependency-injection": "<6.4",
  6415. "symfony/event-dispatcher": "<6.4",
  6416. "symfony/http-foundation": "<6.4",
  6417. "symfony/ldap": "<6.4",
  6418. "symfony/translation": "<6.4.3|>=7.0,<7.0.3",
  6419. "symfony/validator": "<6.4"
  6420. },
  6421. "require-dev": {
  6422. "psr/cache": "^1.0|^2.0|^3.0",
  6423. "psr/container": "^1.1|^2.0",
  6424. "psr/log": "^1|^2|^3",
  6425. "symfony/cache": "^6.4|^7.0",
  6426. "symfony/dependency-injection": "^6.4|^7.0",
  6427. "symfony/event-dispatcher": "^6.4|^7.0",
  6428. "symfony/expression-language": "^6.4|^7.0",
  6429. "symfony/http-foundation": "^6.4|^7.0",
  6430. "symfony/ldap": "^6.4|^7.0",
  6431. "symfony/string": "^6.4|^7.0",
  6432. "symfony/translation": "^6.4.3|^7.0.3",
  6433. "symfony/validator": "^6.4|^7.0"
  6434. },
  6435. "type": "library",
  6436. "autoload": {
  6437. "psr-4": {
  6438. "Symfony\\Component\\Security\\Core\\": ""
  6439. },
  6440. "exclude-from-classmap": [
  6441. "/Tests/"
  6442. ]
  6443. },
  6444. "notification-url": "https://packagist.org/downloads/",
  6445. "license": [
  6446. "MIT"
  6447. ],
  6448. "authors": [
  6449. {
  6450. "name": "Fabien Potencier",
  6451. "email": "fabien@symfony.com"
  6452. },
  6453. {
  6454. "name": "Symfony Community",
  6455. "homepage": "https://symfony.com/contributors"
  6456. }
  6457. ],
  6458. "description": "Symfony Security Component - Core Library",
  6459. "homepage": "https://symfony.com",
  6460. "support": {
  6461. "source": "https://github.com/symfony/security-core/tree/v7.1.11"
  6462. },
  6463. "funding": [
  6464. {
  6465. "url": "https://symfony.com/sponsor",
  6466. "type": "custom"
  6467. },
  6468. {
  6469. "url": "https://github.com/fabpot",
  6470. "type": "github"
  6471. },
  6472. {
  6473. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6474. "type": "tidelift"
  6475. }
  6476. ],
  6477. "time": "2025-01-27T10:57:12+00:00"
  6478. },
  6479. {
  6480. "name": "symfony/security-csrf",
  6481. "version": "v7.1.6",
  6482. "source": {
  6483. "type": "git",
  6484. "url": "https://github.com/symfony/security-csrf.git",
  6485. "reference": "23b460d3447fd61970e0ed5ec7a0301296a17f06"
  6486. },
  6487. "dist": {
  6488. "type": "zip",
  6489. "url": "https://api.github.com/repos/symfony/security-csrf/zipball/23b460d3447fd61970e0ed5ec7a0301296a17f06",
  6490. "reference": "23b460d3447fd61970e0ed5ec7a0301296a17f06",
  6491. "shasum": ""
  6492. },
  6493. "require": {
  6494. "php": ">=8.2",
  6495. "symfony/security-core": "^6.4|^7.0"
  6496. },
  6497. "conflict": {
  6498. "symfony/http-foundation": "<6.4"
  6499. },
  6500. "require-dev": {
  6501. "symfony/http-foundation": "^6.4|^7.0"
  6502. },
  6503. "type": "library",
  6504. "autoload": {
  6505. "psr-4": {
  6506. "Symfony\\Component\\Security\\Csrf\\": ""
  6507. },
  6508. "exclude-from-classmap": [
  6509. "/Tests/"
  6510. ]
  6511. },
  6512. "notification-url": "https://packagist.org/downloads/",
  6513. "license": [
  6514. "MIT"
  6515. ],
  6516. "authors": [
  6517. {
  6518. "name": "Fabien Potencier",
  6519. "email": "fabien@symfony.com"
  6520. },
  6521. {
  6522. "name": "Symfony Community",
  6523. "homepage": "https://symfony.com/contributors"
  6524. }
  6525. ],
  6526. "description": "Symfony Security Component - CSRF Library",
  6527. "homepage": "https://symfony.com",
  6528. "support": {
  6529. "source": "https://github.com/symfony/security-csrf/tree/v7.1.6"
  6530. },
  6531. "funding": [
  6532. {
  6533. "url": "https://symfony.com/sponsor",
  6534. "type": "custom"
  6535. },
  6536. {
  6537. "url": "https://github.com/fabpot",
  6538. "type": "github"
  6539. },
  6540. {
  6541. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6542. "type": "tidelift"
  6543. }
  6544. ],
  6545. "time": "2024-09-25T14:20:29+00:00"
  6546. },
  6547. {
  6548. "name": "symfony/security-http",
  6549. "version": "v7.1.11",
  6550. "source": {
  6551. "type": "git",
  6552. "url": "https://github.com/symfony/security-http.git",
  6553. "reference": "c5ef4cb3bb013cf02c1d8459d1c51bc9f616cd80"
  6554. },
  6555. "dist": {
  6556. "type": "zip",
  6557. "url": "https://api.github.com/repos/symfony/security-http/zipball/c5ef4cb3bb013cf02c1d8459d1c51bc9f616cd80",
  6558. "reference": "c5ef4cb3bb013cf02c1d8459d1c51bc9f616cd80",
  6559. "shasum": ""
  6560. },
  6561. "require": {
  6562. "php": ">=8.2",
  6563. "symfony/deprecation-contracts": "^2.5|^3",
  6564. "symfony/http-foundation": "^6.4|^7.0",
  6565. "symfony/http-kernel": "^6.4|^7.0",
  6566. "symfony/polyfill-mbstring": "~1.0",
  6567. "symfony/property-access": "^6.4|^7.0",
  6568. "symfony/security-core": "^6.4|^7.0",
  6569. "symfony/service-contracts": "^2.5|^3"
  6570. },
  6571. "conflict": {
  6572. "symfony/clock": "<6.4",
  6573. "symfony/event-dispatcher": "<6.4",
  6574. "symfony/http-client-contracts": "<3.0",
  6575. "symfony/security-bundle": "<6.4",
  6576. "symfony/security-csrf": "<6.4"
  6577. },
  6578. "require-dev": {
  6579. "psr/log": "^1|^2|^3",
  6580. "symfony/cache": "^6.4|^7.0",
  6581. "symfony/clock": "^6.4|^7.0",
  6582. "symfony/expression-language": "^6.4|^7.0",
  6583. "symfony/http-client": "^6.4|^7.0",
  6584. "symfony/http-client-contracts": "^3.0",
  6585. "symfony/rate-limiter": "^6.4|^7.0",
  6586. "symfony/routing": "^6.4|^7.0",
  6587. "symfony/security-csrf": "^6.4|^7.0",
  6588. "symfony/translation": "^6.4|^7.0",
  6589. "web-token/jwt-library": "^3.3.2|^4.0"
  6590. },
  6591. "type": "library",
  6592. "autoload": {
  6593. "psr-4": {
  6594. "Symfony\\Component\\Security\\Http\\": ""
  6595. },
  6596. "exclude-from-classmap": [
  6597. "/Tests/"
  6598. ]
  6599. },
  6600. "notification-url": "https://packagist.org/downloads/",
  6601. "license": [
  6602. "MIT"
  6603. ],
  6604. "authors": [
  6605. {
  6606. "name": "Fabien Potencier",
  6607. "email": "fabien@symfony.com"
  6608. },
  6609. {
  6610. "name": "Symfony Community",
  6611. "homepage": "https://symfony.com/contributors"
  6612. }
  6613. ],
  6614. "description": "Symfony Security Component - HTTP Integration",
  6615. "homepage": "https://symfony.com",
  6616. "support": {
  6617. "source": "https://github.com/symfony/security-http/tree/v7.1.11"
  6618. },
  6619. "funding": [
  6620. {
  6621. "url": "https://symfony.com/sponsor",
  6622. "type": "custom"
  6623. },
  6624. {
  6625. "url": "https://github.com/fabpot",
  6626. "type": "github"
  6627. },
  6628. {
  6629. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6630. "type": "tidelift"
  6631. }
  6632. ],
  6633. "time": "2025-01-28T15:50:57+00:00"
  6634. },
  6635. {
  6636. "name": "symfony/serializer",
  6637. "version": "v7.1.11",
  6638. "source": {
  6639. "type": "git",
  6640. "url": "https://github.com/symfony/serializer.git",
  6641. "reference": "cb88edf0d4d63472c50b5f77bcb3227a103966e6"
  6642. },
  6643. "dist": {
  6644. "type": "zip",
  6645. "url": "https://api.github.com/repos/symfony/serializer/zipball/cb88edf0d4d63472c50b5f77bcb3227a103966e6",
  6646. "reference": "cb88edf0d4d63472c50b5f77bcb3227a103966e6",
  6647. "shasum": ""
  6648. },
  6649. "require": {
  6650. "php": ">=8.2",
  6651. "symfony/deprecation-contracts": "^2.5|^3",
  6652. "symfony/polyfill-ctype": "~1.8"
  6653. },
  6654. "conflict": {
  6655. "phpdocumentor/reflection-docblock": "<3.2.2",
  6656. "phpdocumentor/type-resolver": "<1.4.0",
  6657. "symfony/dependency-injection": "<6.4",
  6658. "symfony/property-access": "<6.4",
  6659. "symfony/property-info": "<6.4",
  6660. "symfony/type-info": "<7.1.5",
  6661. "symfony/uid": "<6.4",
  6662. "symfony/validator": "<6.4",
  6663. "symfony/yaml": "<6.4"
  6664. },
  6665. "require-dev": {
  6666. "phpdocumentor/reflection-docblock": "^3.2|^4.0|^5.0",
  6667. "phpstan/phpdoc-parser": "^1.0|^2.0",
  6668. "seld/jsonlint": "^1.10",
  6669. "symfony/cache": "^6.4|^7.0",
  6670. "symfony/config": "^6.4|^7.0",
  6671. "symfony/console": "^6.4|^7.0",
  6672. "symfony/dependency-injection": "^6.4|^7.0",
  6673. "symfony/error-handler": "^6.4|^7.0",
  6674. "symfony/filesystem": "^6.4|^7.0",
  6675. "symfony/form": "^6.4|^7.0",
  6676. "symfony/http-foundation": "^6.4|^7.0",
  6677. "symfony/http-kernel": "^6.4|^7.0",
  6678. "symfony/messenger": "^6.4|^7.0",
  6679. "symfony/mime": "^6.4|^7.0",
  6680. "symfony/property-access": "^6.4|^7.0",
  6681. "symfony/property-info": "^6.4|^7.0",
  6682. "symfony/translation-contracts": "^2.5|^3",
  6683. "symfony/type-info": "^7.1.5",
  6684. "symfony/uid": "^6.4|^7.0",
  6685. "symfony/validator": "^6.4|^7.0",
  6686. "symfony/var-dumper": "^6.4|^7.0",
  6687. "symfony/var-exporter": "^6.4|^7.0",
  6688. "symfony/yaml": "^6.4|^7.0"
  6689. },
  6690. "type": "library",
  6691. "autoload": {
  6692. "psr-4": {
  6693. "Symfony\\Component\\Serializer\\": ""
  6694. },
  6695. "exclude-from-classmap": [
  6696. "/Tests/"
  6697. ]
  6698. },
  6699. "notification-url": "https://packagist.org/downloads/",
  6700. "license": [
  6701. "MIT"
  6702. ],
  6703. "authors": [
  6704. {
  6705. "name": "Fabien Potencier",
  6706. "email": "fabien@symfony.com"
  6707. },
  6708. {
  6709. "name": "Symfony Community",
  6710. "homepage": "https://symfony.com/contributors"
  6711. }
  6712. ],
  6713. "description": "Handles serializing and deserializing data structures, including object graphs, into array structures or other formats like XML and JSON.",
  6714. "homepage": "https://symfony.com",
  6715. "support": {
  6716. "source": "https://github.com/symfony/serializer/tree/v7.1.11"
  6717. },
  6718. "funding": [
  6719. {
  6720. "url": "https://symfony.com/sponsor",
  6721. "type": "custom"
  6722. },
  6723. {
  6724. "url": "https://github.com/fabpot",
  6725. "type": "github"
  6726. },
  6727. {
  6728. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6729. "type": "tidelift"
  6730. }
  6731. ],
  6732. "time": "2025-01-29T07:13:42+00:00"
  6733. },
  6734. {
  6735. "name": "symfony/service-contracts",
  6736. "version": "v3.5.1",
  6737. "source": {
  6738. "type": "git",
  6739. "url": "https://github.com/symfony/service-contracts.git",
  6740. "reference": "e53260aabf78fb3d63f8d79d69ece59f80d5eda0"
  6741. },
  6742. "dist": {
  6743. "type": "zip",
  6744. "url": "https://api.github.com/repos/symfony/service-contracts/zipball/e53260aabf78fb3d63f8d79d69ece59f80d5eda0",
  6745. "reference": "e53260aabf78fb3d63f8d79d69ece59f80d5eda0",
  6746. "shasum": ""
  6747. },
  6748. "require": {
  6749. "php": ">=8.1",
  6750. "psr/container": "^1.1|^2.0",
  6751. "symfony/deprecation-contracts": "^2.5|^3"
  6752. },
  6753. "conflict": {
  6754. "ext-psr": "<1.1|>=2"
  6755. },
  6756. "type": "library",
  6757. "extra": {
  6758. "thanks": {
  6759. "url": "https://github.com/symfony/contracts",
  6760. "name": "symfony/contracts"
  6761. },
  6762. "branch-alias": {
  6763. "dev-main": "3.5-dev"
  6764. }
  6765. },
  6766. "autoload": {
  6767. "psr-4": {
  6768. "Symfony\\Contracts\\Service\\": ""
  6769. },
  6770. "exclude-from-classmap": [
  6771. "/Test/"
  6772. ]
  6773. },
  6774. "notification-url": "https://packagist.org/downloads/",
  6775. "license": [
  6776. "MIT"
  6777. ],
  6778. "authors": [
  6779. {
  6780. "name": "Nicolas Grekas",
  6781. "email": "p@tchwork.com"
  6782. },
  6783. {
  6784. "name": "Symfony Community",
  6785. "homepage": "https://symfony.com/contributors"
  6786. }
  6787. ],
  6788. "description": "Generic abstractions related to writing services",
  6789. "homepage": "https://symfony.com",
  6790. "keywords": [
  6791. "abstractions",
  6792. "contracts",
  6793. "decoupling",
  6794. "interfaces",
  6795. "interoperability",
  6796. "standards"
  6797. ],
  6798. "support": {
  6799. "source": "https://github.com/symfony/service-contracts/tree/v3.5.1"
  6800. },
  6801. "funding": [
  6802. {
  6803. "url": "https://symfony.com/sponsor",
  6804. "type": "custom"
  6805. },
  6806. {
  6807. "url": "https://github.com/fabpot",
  6808. "type": "github"
  6809. },
  6810. {
  6811. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6812. "type": "tidelift"
  6813. }
  6814. ],
  6815. "time": "2024-09-25T14:20:29+00:00"
  6816. },
  6817. {
  6818. "name": "symfony/stimulus-bundle",
  6819. "version": "v2.23.0",
  6820. "source": {
  6821. "type": "git",
  6822. "url": "https://github.com/symfony/stimulus-bundle.git",
  6823. "reference": "254f4e05cbaa349d4ae68b9b2e6a22995e0887f9"
  6824. },
  6825. "dist": {
  6826. "type": "zip",
  6827. "url": "https://api.github.com/repos/symfony/stimulus-bundle/zipball/254f4e05cbaa349d4ae68b9b2e6a22995e0887f9",
  6828. "reference": "254f4e05cbaa349d4ae68b9b2e6a22995e0887f9",
  6829. "shasum": ""
  6830. },
  6831. "require": {
  6832. "php": ">=8.1",
  6833. "symfony/config": "^5.4|^6.0|^7.0",
  6834. "symfony/dependency-injection": "^5.4|^6.0|^7.0",
  6835. "symfony/deprecation-contracts": "^2.0|^3.0",
  6836. "symfony/finder": "^5.4|^6.0|^7.0",
  6837. "symfony/http-kernel": "^5.4|^6.0|^7.0",
  6838. "twig/twig": "^2.15.3|^3.8"
  6839. },
  6840. "require-dev": {
  6841. "symfony/asset-mapper": "^6.3|^7.0",
  6842. "symfony/framework-bundle": "^5.4|^6.0|^7.0",
  6843. "symfony/phpunit-bridge": "^5.4|^6.0|^7.0",
  6844. "symfony/twig-bundle": "^5.4|^6.0|^7.0",
  6845. "zenstruck/browser": "^1.4"
  6846. },
  6847. "type": "symfony-bundle",
  6848. "autoload": {
  6849. "psr-4": {
  6850. "Symfony\\UX\\StimulusBundle\\": "src"
  6851. }
  6852. },
  6853. "notification-url": "https://packagist.org/downloads/",
  6854. "license": [
  6855. "MIT"
  6856. ],
  6857. "authors": [
  6858. {
  6859. "name": "Symfony Community",
  6860. "homepage": "https://symfony.com/contributors"
  6861. }
  6862. ],
  6863. "description": "Integration with your Symfony app & Stimulus!",
  6864. "keywords": [
  6865. "symfony-ux"
  6866. ],
  6867. "support": {
  6868. "source": "https://github.com/symfony/stimulus-bundle/tree/v2.23.0"
  6869. },
  6870. "funding": [
  6871. {
  6872. "url": "https://symfony.com/sponsor",
  6873. "type": "custom"
  6874. },
  6875. {
  6876. "url": "https://github.com/fabpot",
  6877. "type": "github"
  6878. },
  6879. {
  6880. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6881. "type": "tidelift"
  6882. }
  6883. ],
  6884. "time": "2025-01-16T21:55:09+00:00"
  6885. },
  6886. {
  6887. "name": "symfony/stopwatch",
  6888. "version": "v7.1.6",
  6889. "source": {
  6890. "type": "git",
  6891. "url": "https://github.com/symfony/stopwatch.git",
  6892. "reference": "8b4a434e6e7faf6adedffb48783a5c75409a1a05"
  6893. },
  6894. "dist": {
  6895. "type": "zip",
  6896. "url": "https://api.github.com/repos/symfony/stopwatch/zipball/8b4a434e6e7faf6adedffb48783a5c75409a1a05",
  6897. "reference": "8b4a434e6e7faf6adedffb48783a5c75409a1a05",
  6898. "shasum": ""
  6899. },
  6900. "require": {
  6901. "php": ">=8.2",
  6902. "symfony/service-contracts": "^2.5|^3"
  6903. },
  6904. "type": "library",
  6905. "autoload": {
  6906. "psr-4": {
  6907. "Symfony\\Component\\Stopwatch\\": ""
  6908. },
  6909. "exclude-from-classmap": [
  6910. "/Tests/"
  6911. ]
  6912. },
  6913. "notification-url": "https://packagist.org/downloads/",
  6914. "license": [
  6915. "MIT"
  6916. ],
  6917. "authors": [
  6918. {
  6919. "name": "Fabien Potencier",
  6920. "email": "fabien@symfony.com"
  6921. },
  6922. {
  6923. "name": "Symfony Community",
  6924. "homepage": "https://symfony.com/contributors"
  6925. }
  6926. ],
  6927. "description": "Provides a way to profile code",
  6928. "homepage": "https://symfony.com",
  6929. "support": {
  6930. "source": "https://github.com/symfony/stopwatch/tree/v7.1.6"
  6931. },
  6932. "funding": [
  6933. {
  6934. "url": "https://symfony.com/sponsor",
  6935. "type": "custom"
  6936. },
  6937. {
  6938. "url": "https://github.com/fabpot",
  6939. "type": "github"
  6940. },
  6941. {
  6942. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6943. "type": "tidelift"
  6944. }
  6945. ],
  6946. "time": "2024-09-25T14:20:29+00:00"
  6947. },
  6948. {
  6949. "name": "symfony/string",
  6950. "version": "v7.1.8",
  6951. "source": {
  6952. "type": "git",
  6953. "url": "https://github.com/symfony/string.git",
  6954. "reference": "591ebd41565f356fcd8b090fe64dbb5878f50281"
  6955. },
  6956. "dist": {
  6957. "type": "zip",
  6958. "url": "https://api.github.com/repos/symfony/string/zipball/591ebd41565f356fcd8b090fe64dbb5878f50281",
  6959. "reference": "591ebd41565f356fcd8b090fe64dbb5878f50281",
  6960. "shasum": ""
  6961. },
  6962. "require": {
  6963. "php": ">=8.2",
  6964. "symfony/polyfill-ctype": "~1.8",
  6965. "symfony/polyfill-intl-grapheme": "~1.0",
  6966. "symfony/polyfill-intl-normalizer": "~1.0",
  6967. "symfony/polyfill-mbstring": "~1.0"
  6968. },
  6969. "conflict": {
  6970. "symfony/translation-contracts": "<2.5"
  6971. },
  6972. "require-dev": {
  6973. "symfony/emoji": "^7.1",
  6974. "symfony/error-handler": "^6.4|^7.0",
  6975. "symfony/http-client": "^6.4|^7.0",
  6976. "symfony/intl": "^6.4|^7.0",
  6977. "symfony/translation-contracts": "^2.5|^3.0",
  6978. "symfony/var-exporter": "^6.4|^7.0"
  6979. },
  6980. "type": "library",
  6981. "autoload": {
  6982. "files": [
  6983. "Resources/functions.php"
  6984. ],
  6985. "psr-4": {
  6986. "Symfony\\Component\\String\\": ""
  6987. },
  6988. "exclude-from-classmap": [
  6989. "/Tests/"
  6990. ]
  6991. },
  6992. "notification-url": "https://packagist.org/downloads/",
  6993. "license": [
  6994. "MIT"
  6995. ],
  6996. "authors": [
  6997. {
  6998. "name": "Nicolas Grekas",
  6999. "email": "p@tchwork.com"
  7000. },
  7001. {
  7002. "name": "Symfony Community",
  7003. "homepage": "https://symfony.com/contributors"
  7004. }
  7005. ],
  7006. "description": "Provides an object-oriented API to strings and deals with bytes, UTF-8 code points and grapheme clusters in a unified way",
  7007. "homepage": "https://symfony.com",
  7008. "keywords": [
  7009. "grapheme",
  7010. "i18n",
  7011. "string",
  7012. "unicode",
  7013. "utf-8",
  7014. "utf8"
  7015. ],
  7016. "support": {
  7017. "source": "https://github.com/symfony/string/tree/v7.1.8"
  7018. },
  7019. "funding": [
  7020. {
  7021. "url": "https://symfony.com/sponsor",
  7022. "type": "custom"
  7023. },
  7024. {
  7025. "url": "https://github.com/fabpot",
  7026. "type": "github"
  7027. },
  7028. {
  7029. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7030. "type": "tidelift"
  7031. }
  7032. ],
  7033. "time": "2024-11-13T13:31:21+00:00"
  7034. },
  7035. {
  7036. "name": "symfony/translation",
  7037. "version": "v7.1.6",
  7038. "source": {
  7039. "type": "git",
  7040. "url": "https://github.com/symfony/translation.git",
  7041. "reference": "b9f72ab14efdb6b772f85041fa12f820dee8d55f"
  7042. },
  7043. "dist": {
  7044. "type": "zip",
  7045. "url": "https://api.github.com/repos/symfony/translation/zipball/b9f72ab14efdb6b772f85041fa12f820dee8d55f",
  7046. "reference": "b9f72ab14efdb6b772f85041fa12f820dee8d55f",
  7047. "shasum": ""
  7048. },
  7049. "require": {
  7050. "php": ">=8.2",
  7051. "symfony/polyfill-mbstring": "~1.0",
  7052. "symfony/translation-contracts": "^2.5|^3.0"
  7053. },
  7054. "conflict": {
  7055. "symfony/config": "<6.4",
  7056. "symfony/console": "<6.4",
  7057. "symfony/dependency-injection": "<6.4",
  7058. "symfony/http-client-contracts": "<2.5",
  7059. "symfony/http-kernel": "<6.4",
  7060. "symfony/service-contracts": "<2.5",
  7061. "symfony/twig-bundle": "<6.4",
  7062. "symfony/yaml": "<6.4"
  7063. },
  7064. "provide": {
  7065. "symfony/translation-implementation": "2.3|3.0"
  7066. },
  7067. "require-dev": {
  7068. "nikic/php-parser": "^4.18|^5.0",
  7069. "psr/log": "^1|^2|^3",
  7070. "symfony/config": "^6.4|^7.0",
  7071. "symfony/console": "^6.4|^7.0",
  7072. "symfony/dependency-injection": "^6.4|^7.0",
  7073. "symfony/finder": "^6.4|^7.0",
  7074. "symfony/http-client-contracts": "^2.5|^3.0",
  7075. "symfony/http-kernel": "^6.4|^7.0",
  7076. "symfony/intl": "^6.4|^7.0",
  7077. "symfony/polyfill-intl-icu": "^1.21",
  7078. "symfony/routing": "^6.4|^7.0",
  7079. "symfony/service-contracts": "^2.5|^3",
  7080. "symfony/yaml": "^6.4|^7.0"
  7081. },
  7082. "type": "library",
  7083. "autoload": {
  7084. "files": [
  7085. "Resources/functions.php"
  7086. ],
  7087. "psr-4": {
  7088. "Symfony\\Component\\Translation\\": ""
  7089. },
  7090. "exclude-from-classmap": [
  7091. "/Tests/"
  7092. ]
  7093. },
  7094. "notification-url": "https://packagist.org/downloads/",
  7095. "license": [
  7096. "MIT"
  7097. ],
  7098. "authors": [
  7099. {
  7100. "name": "Fabien Potencier",
  7101. "email": "fabien@symfony.com"
  7102. },
  7103. {
  7104. "name": "Symfony Community",
  7105. "homepage": "https://symfony.com/contributors"
  7106. }
  7107. ],
  7108. "description": "Provides tools to internationalize your application",
  7109. "homepage": "https://symfony.com",
  7110. "support": {
  7111. "source": "https://github.com/symfony/translation/tree/v7.1.6"
  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-28T12:35:13+00:00"
  7128. },
  7129. {
  7130. "name": "symfony/translation-contracts",
  7131. "version": "v3.5.1",
  7132. "source": {
  7133. "type": "git",
  7134. "url": "https://github.com/symfony/translation-contracts.git",
  7135. "reference": "4667ff3bd513750603a09c8dedbea942487fb07c"
  7136. },
  7137. "dist": {
  7138. "type": "zip",
  7139. "url": "https://api.github.com/repos/symfony/translation-contracts/zipball/4667ff3bd513750603a09c8dedbea942487fb07c",
  7140. "reference": "4667ff3bd513750603a09c8dedbea942487fb07c",
  7141. "shasum": ""
  7142. },
  7143. "require": {
  7144. "php": ">=8.1"
  7145. },
  7146. "type": "library",
  7147. "extra": {
  7148. "thanks": {
  7149. "url": "https://github.com/symfony/contracts",
  7150. "name": "symfony/contracts"
  7151. },
  7152. "branch-alias": {
  7153. "dev-main": "3.5-dev"
  7154. }
  7155. },
  7156. "autoload": {
  7157. "psr-4": {
  7158. "Symfony\\Contracts\\Translation\\": ""
  7159. },
  7160. "exclude-from-classmap": [
  7161. "/Test/"
  7162. ]
  7163. },
  7164. "notification-url": "https://packagist.org/downloads/",
  7165. "license": [
  7166. "MIT"
  7167. ],
  7168. "authors": [
  7169. {
  7170. "name": "Nicolas Grekas",
  7171. "email": "p@tchwork.com"
  7172. },
  7173. {
  7174. "name": "Symfony Community",
  7175. "homepage": "https://symfony.com/contributors"
  7176. }
  7177. ],
  7178. "description": "Generic abstractions related to translation",
  7179. "homepage": "https://symfony.com",
  7180. "keywords": [
  7181. "abstractions",
  7182. "contracts",
  7183. "decoupling",
  7184. "interfaces",
  7185. "interoperability",
  7186. "standards"
  7187. ],
  7188. "support": {
  7189. "source": "https://github.com/symfony/translation-contracts/tree/v3.5.1"
  7190. },
  7191. "funding": [
  7192. {
  7193. "url": "https://symfony.com/sponsor",
  7194. "type": "custom"
  7195. },
  7196. {
  7197. "url": "https://github.com/fabpot",
  7198. "type": "github"
  7199. },
  7200. {
  7201. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7202. "type": "tidelift"
  7203. }
  7204. ],
  7205. "time": "2024-09-25T14:20:29+00:00"
  7206. },
  7207. {
  7208. "name": "symfony/twig-bridge",
  7209. "version": "v7.1.10",
  7210. "source": {
  7211. "type": "git",
  7212. "url": "https://github.com/symfony/twig-bridge.git",
  7213. "reference": "c027c54611cd194273b924c8d24d9706695171ff"
  7214. },
  7215. "dist": {
  7216. "type": "zip",
  7217. "url": "https://api.github.com/repos/symfony/twig-bridge/zipball/c027c54611cd194273b924c8d24d9706695171ff",
  7218. "reference": "c027c54611cd194273b924c8d24d9706695171ff",
  7219. "shasum": ""
  7220. },
  7221. "require": {
  7222. "php": ">=8.2",
  7223. "symfony/translation-contracts": "^2.5|^3",
  7224. "twig/twig": "^3.9"
  7225. },
  7226. "conflict": {
  7227. "phpdocumentor/reflection-docblock": "<3.2.2",
  7228. "phpdocumentor/type-resolver": "<1.4.0",
  7229. "symfony/console": "<6.4",
  7230. "symfony/form": "<6.4",
  7231. "symfony/http-foundation": "<6.4",
  7232. "symfony/http-kernel": "<6.4",
  7233. "symfony/mime": "<6.4",
  7234. "symfony/serializer": "<6.4",
  7235. "symfony/translation": "<6.4",
  7236. "symfony/workflow": "<6.4"
  7237. },
  7238. "require-dev": {
  7239. "egulias/email-validator": "^2.1.10|^3|^4",
  7240. "league/html-to-markdown": "^5.0",
  7241. "phpdocumentor/reflection-docblock": "^3.0|^4.0|^5.0",
  7242. "symfony/asset": "^6.4|^7.0",
  7243. "symfony/asset-mapper": "^6.4|^7.0",
  7244. "symfony/console": "^6.4|^7.0",
  7245. "symfony/dependency-injection": "^6.4|^7.0",
  7246. "symfony/emoji": "^7.1",
  7247. "symfony/expression-language": "^6.4|^7.0",
  7248. "symfony/finder": "^6.4|^7.0",
  7249. "symfony/form": "^6.4|^7.0",
  7250. "symfony/html-sanitizer": "^6.4|^7.0",
  7251. "symfony/http-foundation": "^6.4|^7.0",
  7252. "symfony/http-kernel": "^6.4|^7.0",
  7253. "symfony/intl": "^6.4|^7.0",
  7254. "symfony/mime": "^6.4|^7.0",
  7255. "symfony/polyfill-intl-icu": "~1.0",
  7256. "symfony/property-info": "^6.4|^7.0",
  7257. "symfony/routing": "^6.4|^7.0",
  7258. "symfony/security-acl": "^2.8|^3.0",
  7259. "symfony/security-core": "^6.4|^7.0",
  7260. "symfony/security-csrf": "^6.4|^7.0",
  7261. "symfony/security-http": "^6.4|^7.0",
  7262. "symfony/serializer": "^6.4.3|^7.0.3",
  7263. "symfony/stopwatch": "^6.4|^7.0",
  7264. "symfony/translation": "^6.4|^7.0",
  7265. "symfony/web-link": "^6.4|^7.0",
  7266. "symfony/workflow": "^6.4|^7.0",
  7267. "symfony/yaml": "^6.4|^7.0",
  7268. "twig/cssinliner-extra": "^2.12|^3",
  7269. "twig/inky-extra": "^2.12|^3",
  7270. "twig/markdown-extra": "^2.12|^3"
  7271. },
  7272. "type": "symfony-bridge",
  7273. "autoload": {
  7274. "psr-4": {
  7275. "Symfony\\Bridge\\Twig\\": ""
  7276. },
  7277. "exclude-from-classmap": [
  7278. "/Tests/"
  7279. ]
  7280. },
  7281. "notification-url": "https://packagist.org/downloads/",
  7282. "license": [
  7283. "MIT"
  7284. ],
  7285. "authors": [
  7286. {
  7287. "name": "Fabien Potencier",
  7288. "email": "fabien@symfony.com"
  7289. },
  7290. {
  7291. "name": "Symfony Community",
  7292. "homepage": "https://symfony.com/contributors"
  7293. }
  7294. ],
  7295. "description": "Provides integration for Twig with various Symfony components",
  7296. "homepage": "https://symfony.com",
  7297. "support": {
  7298. "source": "https://github.com/symfony/twig-bridge/tree/v7.1.10"
  7299. },
  7300. "funding": [
  7301. {
  7302. "url": "https://symfony.com/sponsor",
  7303. "type": "custom"
  7304. },
  7305. {
  7306. "url": "https://github.com/fabpot",
  7307. "type": "github"
  7308. },
  7309. {
  7310. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7311. "type": "tidelift"
  7312. }
  7313. ],
  7314. "time": "2024-12-19T14:23:39+00:00"
  7315. },
  7316. {
  7317. "name": "symfony/twig-bundle",
  7318. "version": "v7.1.6",
  7319. "source": {
  7320. "type": "git",
  7321. "url": "https://github.com/symfony/twig-bundle.git",
  7322. "reference": "af902314a71fb412ae412094f7e1d7e49594507b"
  7323. },
  7324. "dist": {
  7325. "type": "zip",
  7326. "url": "https://api.github.com/repos/symfony/twig-bundle/zipball/af902314a71fb412ae412094f7e1d7e49594507b",
  7327. "reference": "af902314a71fb412ae412094f7e1d7e49594507b",
  7328. "shasum": ""
  7329. },
  7330. "require": {
  7331. "composer-runtime-api": ">=2.1",
  7332. "php": ">=8.2",
  7333. "symfony/config": "^6.4|^7.0",
  7334. "symfony/dependency-injection": "^6.4|^7.0",
  7335. "symfony/http-foundation": "^6.4|^7.0",
  7336. "symfony/http-kernel": "^6.4|^7.0",
  7337. "symfony/twig-bridge": "^6.4|^7.0",
  7338. "twig/twig": "^3.0.4"
  7339. },
  7340. "conflict": {
  7341. "symfony/framework-bundle": "<6.4",
  7342. "symfony/translation": "<6.4"
  7343. },
  7344. "require-dev": {
  7345. "symfony/asset": "^6.4|^7.0",
  7346. "symfony/expression-language": "^6.4|^7.0",
  7347. "symfony/finder": "^6.4|^7.0",
  7348. "symfony/form": "^6.4|^7.0",
  7349. "symfony/framework-bundle": "^6.4|^7.0",
  7350. "symfony/routing": "^6.4|^7.0",
  7351. "symfony/stopwatch": "^6.4|^7.0",
  7352. "symfony/translation": "^6.4|^7.0",
  7353. "symfony/web-link": "^6.4|^7.0",
  7354. "symfony/yaml": "^6.4|^7.0"
  7355. },
  7356. "type": "symfony-bundle",
  7357. "autoload": {
  7358. "psr-4": {
  7359. "Symfony\\Bundle\\TwigBundle\\": ""
  7360. },
  7361. "exclude-from-classmap": [
  7362. "/Tests/"
  7363. ]
  7364. },
  7365. "notification-url": "https://packagist.org/downloads/",
  7366. "license": [
  7367. "MIT"
  7368. ],
  7369. "authors": [
  7370. {
  7371. "name": "Fabien Potencier",
  7372. "email": "fabien@symfony.com"
  7373. },
  7374. {
  7375. "name": "Symfony Community",
  7376. "homepage": "https://symfony.com/contributors"
  7377. }
  7378. ],
  7379. "description": "Provides a tight integration of Twig into the Symfony full-stack framework",
  7380. "homepage": "https://symfony.com",
  7381. "support": {
  7382. "source": "https://github.com/symfony/twig-bundle/tree/v7.1.6"
  7383. },
  7384. "funding": [
  7385. {
  7386. "url": "https://symfony.com/sponsor",
  7387. "type": "custom"
  7388. },
  7389. {
  7390. "url": "https://github.com/fabpot",
  7391. "type": "github"
  7392. },
  7393. {
  7394. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7395. "type": "tidelift"
  7396. }
  7397. ],
  7398. "time": "2024-09-25T14:20:29+00:00"
  7399. },
  7400. {
  7401. "name": "symfony/type-info",
  7402. "version": "v7.1.10",
  7403. "source": {
  7404. "type": "git",
  7405. "url": "https://github.com/symfony/type-info.git",
  7406. "reference": "8f980bdd1d6a2834503afbfcf3f39de8133e48fe"
  7407. },
  7408. "dist": {
  7409. "type": "zip",
  7410. "url": "https://api.github.com/repos/symfony/type-info/zipball/8f980bdd1d6a2834503afbfcf3f39de8133e48fe",
  7411. "reference": "8f980bdd1d6a2834503afbfcf3f39de8133e48fe",
  7412. "shasum": ""
  7413. },
  7414. "require": {
  7415. "php": ">=8.2",
  7416. "psr/container": "^1.1|^2.0"
  7417. },
  7418. "conflict": {
  7419. "phpstan/phpdoc-parser": "<1.0",
  7420. "symfony/dependency-injection": "<6.4",
  7421. "symfony/property-info": "<6.4"
  7422. },
  7423. "require-dev": {
  7424. "phpstan/phpdoc-parser": "^1.0|^2.0",
  7425. "symfony/dependency-injection": "^6.4|^7.0",
  7426. "symfony/property-info": "^6.4|^7.0"
  7427. },
  7428. "type": "library",
  7429. "autoload": {
  7430. "psr-4": {
  7431. "Symfony\\Component\\TypeInfo\\": ""
  7432. },
  7433. "exclude-from-classmap": [
  7434. "/Tests/"
  7435. ]
  7436. },
  7437. "notification-url": "https://packagist.org/downloads/",
  7438. "license": [
  7439. "MIT"
  7440. ],
  7441. "authors": [
  7442. {
  7443. "name": "Mathias Arlaud",
  7444. "email": "mathias.arlaud@gmail.com"
  7445. },
  7446. {
  7447. "name": "Baptiste LEDUC",
  7448. "email": "baptiste.leduc@gmail.com"
  7449. },
  7450. {
  7451. "name": "Symfony Community",
  7452. "homepage": "https://symfony.com/contributors"
  7453. }
  7454. ],
  7455. "description": "Extracts PHP types information.",
  7456. "homepage": "https://symfony.com",
  7457. "keywords": [
  7458. "PHPStan",
  7459. "phpdoc",
  7460. "symfony",
  7461. "type"
  7462. ],
  7463. "support": {
  7464. "source": "https://github.com/symfony/type-info/tree/v7.1.10"
  7465. },
  7466. "funding": [
  7467. {
  7468. "url": "https://symfony.com/sponsor",
  7469. "type": "custom"
  7470. },
  7471. {
  7472. "url": "https://github.com/fabpot",
  7473. "type": "github"
  7474. },
  7475. {
  7476. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7477. "type": "tidelift"
  7478. }
  7479. ],
  7480. "time": "2024-12-11T12:11:39+00:00"
  7481. },
  7482. {
  7483. "name": "symfony/ux-chartjs",
  7484. "version": "v2.23.0",
  7485. "source": {
  7486. "type": "git",
  7487. "url": "https://github.com/symfony/ux-chartjs.git",
  7488. "reference": "bbe034301ac2a89855ec79d6d5123156071a50c0"
  7489. },
  7490. "dist": {
  7491. "type": "zip",
  7492. "url": "https://api.github.com/repos/symfony/ux-chartjs/zipball/bbe034301ac2a89855ec79d6d5123156071a50c0",
  7493. "reference": "bbe034301ac2a89855ec79d6d5123156071a50c0",
  7494. "shasum": ""
  7495. },
  7496. "require": {
  7497. "php": ">=8.1",
  7498. "symfony/config": "^5.4|^6.0|^7.0",
  7499. "symfony/dependency-injection": "^5.4|^6.0|^7.0",
  7500. "symfony/http-kernel": "^5.4|^6.0|^7.0",
  7501. "symfony/stimulus-bundle": "^2.9.1"
  7502. },
  7503. "conflict": {
  7504. "symfony/flex": "<1.13"
  7505. },
  7506. "require-dev": {
  7507. "symfony/framework-bundle": "^5.4|^6.0|^7.0",
  7508. "symfony/phpunit-bridge": "^5.4|^6.0|^7.0",
  7509. "symfony/twig-bundle": "^5.4|^6.0|^7.0",
  7510. "symfony/var-dumper": "^5.4|^6.0|^7.0"
  7511. },
  7512. "type": "symfony-bundle",
  7513. "extra": {
  7514. "thanks": {
  7515. "url": "https://github.com/symfony/ux",
  7516. "name": "symfony/ux"
  7517. }
  7518. },
  7519. "autoload": {
  7520. "psr-4": {
  7521. "Symfony\\UX\\Chartjs\\": "src/"
  7522. }
  7523. },
  7524. "notification-url": "https://packagist.org/downloads/",
  7525. "license": [
  7526. "MIT"
  7527. ],
  7528. "authors": [
  7529. {
  7530. "name": "Titouan Galopin",
  7531. "email": "galopintitouan@gmail.com"
  7532. },
  7533. {
  7534. "name": "Symfony Community",
  7535. "homepage": "https://symfony.com/contributors"
  7536. }
  7537. ],
  7538. "description": "Chart.js integration for Symfony",
  7539. "homepage": "https://symfony.com",
  7540. "keywords": [
  7541. "symfony-ux"
  7542. ],
  7543. "support": {
  7544. "source": "https://github.com/symfony/ux-chartjs/tree/v2.23.0"
  7545. },
  7546. "funding": [
  7547. {
  7548. "url": "https://symfony.com/sponsor",
  7549. "type": "custom"
  7550. },
  7551. {
  7552. "url": "https://github.com/fabpot",
  7553. "type": "github"
  7554. },
  7555. {
  7556. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7557. "type": "tidelift"
  7558. }
  7559. ],
  7560. "time": "2025-01-05T13:18:49+00:00"
  7561. },
  7562. {
  7563. "name": "symfony/validator",
  7564. "version": "v7.1.11",
  7565. "source": {
  7566. "type": "git",
  7567. "url": "https://github.com/symfony/validator.git",
  7568. "reference": "bb226e43829a6554cf891bd7c176dc73d49bc6c1"
  7569. },
  7570. "dist": {
  7571. "type": "zip",
  7572. "url": "https://api.github.com/repos/symfony/validator/zipball/bb226e43829a6554cf891bd7c176dc73d49bc6c1",
  7573. "reference": "bb226e43829a6554cf891bd7c176dc73d49bc6c1",
  7574. "shasum": ""
  7575. },
  7576. "require": {
  7577. "php": ">=8.2",
  7578. "symfony/deprecation-contracts": "^2.5|^3",
  7579. "symfony/polyfill-ctype": "~1.8",
  7580. "symfony/polyfill-mbstring": "~1.0",
  7581. "symfony/polyfill-php83": "^1.27",
  7582. "symfony/translation-contracts": "^2.5|^3"
  7583. },
  7584. "conflict": {
  7585. "doctrine/lexer": "<1.1",
  7586. "symfony/dependency-injection": "<6.4",
  7587. "symfony/doctrine-bridge": "<7.0",
  7588. "symfony/expression-language": "<6.4",
  7589. "symfony/http-kernel": "<6.4",
  7590. "symfony/intl": "<6.4",
  7591. "symfony/property-info": "<6.4",
  7592. "symfony/translation": "<6.4.3|>=7.0,<7.0.3",
  7593. "symfony/yaml": "<6.4"
  7594. },
  7595. "require-dev": {
  7596. "egulias/email-validator": "^2.1.10|^3|^4",
  7597. "symfony/cache": "^6.4|^7.0",
  7598. "symfony/config": "^6.4|^7.0",
  7599. "symfony/console": "^6.4|^7.0",
  7600. "symfony/dependency-injection": "^6.4|^7.0",
  7601. "symfony/expression-language": "^6.4|^7.0",
  7602. "symfony/finder": "^6.4|^7.0",
  7603. "symfony/http-client": "^6.4|^7.0",
  7604. "symfony/http-foundation": "^6.4|^7.0",
  7605. "symfony/http-kernel": "^6.4|^7.0",
  7606. "symfony/intl": "^6.4|^7.0",
  7607. "symfony/mime": "^6.4|^7.0",
  7608. "symfony/property-access": "^6.4|^7.0",
  7609. "symfony/property-info": "^6.4|^7.0",
  7610. "symfony/translation": "^6.4.3|^7.0.3",
  7611. "symfony/type-info": "^7.1",
  7612. "symfony/yaml": "^6.4|^7.0"
  7613. },
  7614. "type": "library",
  7615. "autoload": {
  7616. "psr-4": {
  7617. "Symfony\\Component\\Validator\\": ""
  7618. },
  7619. "exclude-from-classmap": [
  7620. "/Tests/",
  7621. "/Resources/bin/"
  7622. ]
  7623. },
  7624. "notification-url": "https://packagist.org/downloads/",
  7625. "license": [
  7626. "MIT"
  7627. ],
  7628. "authors": [
  7629. {
  7630. "name": "Fabien Potencier",
  7631. "email": "fabien@symfony.com"
  7632. },
  7633. {
  7634. "name": "Symfony Community",
  7635. "homepage": "https://symfony.com/contributors"
  7636. }
  7637. ],
  7638. "description": "Provides tools to validate values",
  7639. "homepage": "https://symfony.com",
  7640. "support": {
  7641. "source": "https://github.com/symfony/validator/tree/v7.1.11"
  7642. },
  7643. "funding": [
  7644. {
  7645. "url": "https://symfony.com/sponsor",
  7646. "type": "custom"
  7647. },
  7648. {
  7649. "url": "https://github.com/fabpot",
  7650. "type": "github"
  7651. },
  7652. {
  7653. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7654. "type": "tidelift"
  7655. }
  7656. ],
  7657. "time": "2025-01-28T15:50:57+00:00"
  7658. },
  7659. {
  7660. "name": "symfony/var-dumper",
  7661. "version": "v7.1.11",
  7662. "source": {
  7663. "type": "git",
  7664. "url": "https://github.com/symfony/var-dumper.git",
  7665. "reference": "a563c5aeacb98cd46f9885a63cf241ea7794b307"
  7666. },
  7667. "dist": {
  7668. "type": "zip",
  7669. "url": "https://api.github.com/repos/symfony/var-dumper/zipball/a563c5aeacb98cd46f9885a63cf241ea7794b307",
  7670. "reference": "a563c5aeacb98cd46f9885a63cf241ea7794b307",
  7671. "shasum": ""
  7672. },
  7673. "require": {
  7674. "php": ">=8.2",
  7675. "symfony/polyfill-mbstring": "~1.0"
  7676. },
  7677. "conflict": {
  7678. "symfony/console": "<6.4"
  7679. },
  7680. "require-dev": {
  7681. "ext-iconv": "*",
  7682. "symfony/console": "^6.4|^7.0",
  7683. "symfony/http-kernel": "^6.4|^7.0",
  7684. "symfony/process": "^6.4|^7.0",
  7685. "symfony/uid": "^6.4|^7.0",
  7686. "twig/twig": "^3.0.4"
  7687. },
  7688. "bin": [
  7689. "Resources/bin/var-dump-server"
  7690. ],
  7691. "type": "library",
  7692. "autoload": {
  7693. "files": [
  7694. "Resources/functions/dump.php"
  7695. ],
  7696. "psr-4": {
  7697. "Symfony\\Component\\VarDumper\\": ""
  7698. },
  7699. "exclude-from-classmap": [
  7700. "/Tests/"
  7701. ]
  7702. },
  7703. "notification-url": "https://packagist.org/downloads/",
  7704. "license": [
  7705. "MIT"
  7706. ],
  7707. "authors": [
  7708. {
  7709. "name": "Nicolas Grekas",
  7710. "email": "p@tchwork.com"
  7711. },
  7712. {
  7713. "name": "Symfony Community",
  7714. "homepage": "https://symfony.com/contributors"
  7715. }
  7716. ],
  7717. "description": "Provides mechanisms for walking through any arbitrary PHP variable",
  7718. "homepage": "https://symfony.com",
  7719. "keywords": [
  7720. "debug",
  7721. "dump"
  7722. ],
  7723. "support": {
  7724. "source": "https://github.com/symfony/var-dumper/tree/v7.1.11"
  7725. },
  7726. "funding": [
  7727. {
  7728. "url": "https://symfony.com/sponsor",
  7729. "type": "custom"
  7730. },
  7731. {
  7732. "url": "https://github.com/fabpot",
  7733. "type": "github"
  7734. },
  7735. {
  7736. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7737. "type": "tidelift"
  7738. }
  7739. ],
  7740. "time": "2025-01-17T11:38:41+00:00"
  7741. },
  7742. {
  7743. "name": "symfony/var-exporter",
  7744. "version": "v7.1.6",
  7745. "source": {
  7746. "type": "git",
  7747. "url": "https://github.com/symfony/var-exporter.git",
  7748. "reference": "90173ef89c40e7c8c616653241048705f84130ef"
  7749. },
  7750. "dist": {
  7751. "type": "zip",
  7752. "url": "https://api.github.com/repos/symfony/var-exporter/zipball/90173ef89c40e7c8c616653241048705f84130ef",
  7753. "reference": "90173ef89c40e7c8c616653241048705f84130ef",
  7754. "shasum": ""
  7755. },
  7756. "require": {
  7757. "php": ">=8.2"
  7758. },
  7759. "require-dev": {
  7760. "symfony/property-access": "^6.4|^7.0",
  7761. "symfony/serializer": "^6.4|^7.0",
  7762. "symfony/var-dumper": "^6.4|^7.0"
  7763. },
  7764. "type": "library",
  7765. "autoload": {
  7766. "psr-4": {
  7767. "Symfony\\Component\\VarExporter\\": ""
  7768. },
  7769. "exclude-from-classmap": [
  7770. "/Tests/"
  7771. ]
  7772. },
  7773. "notification-url": "https://packagist.org/downloads/",
  7774. "license": [
  7775. "MIT"
  7776. ],
  7777. "authors": [
  7778. {
  7779. "name": "Nicolas Grekas",
  7780. "email": "p@tchwork.com"
  7781. },
  7782. {
  7783. "name": "Symfony Community",
  7784. "homepage": "https://symfony.com/contributors"
  7785. }
  7786. ],
  7787. "description": "Allows exporting any serializable PHP data structure to plain PHP code",
  7788. "homepage": "https://symfony.com",
  7789. "keywords": [
  7790. "clone",
  7791. "construct",
  7792. "export",
  7793. "hydrate",
  7794. "instantiate",
  7795. "lazy-loading",
  7796. "proxy",
  7797. "serialize"
  7798. ],
  7799. "support": {
  7800. "source": "https://github.com/symfony/var-exporter/tree/v7.1.6"
  7801. },
  7802. "funding": [
  7803. {
  7804. "url": "https://symfony.com/sponsor",
  7805. "type": "custom"
  7806. },
  7807. {
  7808. "url": "https://github.com/fabpot",
  7809. "type": "github"
  7810. },
  7811. {
  7812. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7813. "type": "tidelift"
  7814. }
  7815. ],
  7816. "time": "2024-09-25T14:20:29+00:00"
  7817. },
  7818. {
  7819. "name": "symfony/web-link",
  7820. "version": "v7.1.6",
  7821. "source": {
  7822. "type": "git",
  7823. "url": "https://github.com/symfony/web-link.git",
  7824. "reference": "383aa7566f25e3a1ab323732c2cc6a1748120d3a"
  7825. },
  7826. "dist": {
  7827. "type": "zip",
  7828. "url": "https://api.github.com/repos/symfony/web-link/zipball/383aa7566f25e3a1ab323732c2cc6a1748120d3a",
  7829. "reference": "383aa7566f25e3a1ab323732c2cc6a1748120d3a",
  7830. "shasum": ""
  7831. },
  7832. "require": {
  7833. "php": ">=8.2",
  7834. "psr/link": "^1.1|^2.0"
  7835. },
  7836. "conflict": {
  7837. "symfony/http-kernel": "<6.4"
  7838. },
  7839. "provide": {
  7840. "psr/link-implementation": "1.0|2.0"
  7841. },
  7842. "require-dev": {
  7843. "symfony/http-kernel": "^6.4|^7.0"
  7844. },
  7845. "type": "library",
  7846. "autoload": {
  7847. "psr-4": {
  7848. "Symfony\\Component\\WebLink\\": ""
  7849. },
  7850. "exclude-from-classmap": [
  7851. "/Tests/"
  7852. ]
  7853. },
  7854. "notification-url": "https://packagist.org/downloads/",
  7855. "license": [
  7856. "MIT"
  7857. ],
  7858. "authors": [
  7859. {
  7860. "name": "Kévin Dunglas",
  7861. "email": "dunglas@gmail.com"
  7862. },
  7863. {
  7864. "name": "Symfony Community",
  7865. "homepage": "https://symfony.com/contributors"
  7866. }
  7867. ],
  7868. "description": "Manages links between resources",
  7869. "homepage": "https://symfony.com",
  7870. "keywords": [
  7871. "dns-prefetch",
  7872. "http",
  7873. "http2",
  7874. "link",
  7875. "performance",
  7876. "prefetch",
  7877. "preload",
  7878. "prerender",
  7879. "psr13",
  7880. "push"
  7881. ],
  7882. "support": {
  7883. "source": "https://github.com/symfony/web-link/tree/v7.1.6"
  7884. },
  7885. "funding": [
  7886. {
  7887. "url": "https://symfony.com/sponsor",
  7888. "type": "custom"
  7889. },
  7890. {
  7891. "url": "https://github.com/fabpot",
  7892. "type": "github"
  7893. },
  7894. {
  7895. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7896. "type": "tidelift"
  7897. }
  7898. ],
  7899. "time": "2024-09-25T14:20:29+00:00"
  7900. },
  7901. {
  7902. "name": "symfony/webpack-encore-bundle",
  7903. "version": "v2.2.0",
  7904. "source": {
  7905. "type": "git",
  7906. "url": "https://github.com/symfony/webpack-encore-bundle.git",
  7907. "reference": "e335394b68a775a9b2bd173a8ba4fd2001f3870c"
  7908. },
  7909. "dist": {
  7910. "type": "zip",
  7911. "url": "https://api.github.com/repos/symfony/webpack-encore-bundle/zipball/e335394b68a775a9b2bd173a8ba4fd2001f3870c",
  7912. "reference": "e335394b68a775a9b2bd173a8ba4fd2001f3870c",
  7913. "shasum": ""
  7914. },
  7915. "require": {
  7916. "php": ">=8.1.0",
  7917. "symfony/asset": "^5.4 || ^6.2 || ^7.0",
  7918. "symfony/config": "^5.4 || ^6.2 || ^7.0",
  7919. "symfony/dependency-injection": "^5.4 || ^6.2 || ^7.0",
  7920. "symfony/http-kernel": "^5.4 || ^6.2 || ^7.0",
  7921. "symfony/service-contracts": "^1.1.9 || ^2.1.3 || ^3.0"
  7922. },
  7923. "require-dev": {
  7924. "symfony/framework-bundle": "^5.4 || ^6.2 || ^7.0",
  7925. "symfony/http-client": "^5.4 || ^6.2 || ^7.0",
  7926. "symfony/phpunit-bridge": "^5.4 || ^6.2 || ^7.0",
  7927. "symfony/twig-bundle": "^5.4 || ^6.2 || ^7.0",
  7928. "symfony/web-link": "^5.4 || ^6.2 || ^7.0"
  7929. },
  7930. "type": "symfony-bundle",
  7931. "extra": {
  7932. "thanks": {
  7933. "url": "https://github.com/symfony/webpack-encore",
  7934. "name": "symfony/webpack-encore"
  7935. }
  7936. },
  7937. "autoload": {
  7938. "psr-4": {
  7939. "Symfony\\WebpackEncoreBundle\\": "src"
  7940. }
  7941. },
  7942. "notification-url": "https://packagist.org/downloads/",
  7943. "license": [
  7944. "MIT"
  7945. ],
  7946. "authors": [
  7947. {
  7948. "name": "Symfony Community",
  7949. "homepage": "https://symfony.com/contributors"
  7950. }
  7951. ],
  7952. "description": "Integration of your Symfony app with Webpack Encore",
  7953. "support": {
  7954. "issues": "https://github.com/symfony/webpack-encore-bundle/issues",
  7955. "source": "https://github.com/symfony/webpack-encore-bundle/tree/v2.2.0"
  7956. },
  7957. "funding": [
  7958. {
  7959. "url": "https://symfony.com/sponsor",
  7960. "type": "custom"
  7961. },
  7962. {
  7963. "url": "https://github.com/fabpot",
  7964. "type": "github"
  7965. },
  7966. {
  7967. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7968. "type": "tidelift"
  7969. }
  7970. ],
  7971. "time": "2024-10-02T07:27:19+00:00"
  7972. },
  7973. {
  7974. "name": "symfony/yaml",
  7975. "version": "v7.1.11",
  7976. "source": {
  7977. "type": "git",
  7978. "url": "https://github.com/symfony/yaml.git",
  7979. "reference": "4921b8c1db90c13ba2ee0520080ef6800912b018"
  7980. },
  7981. "dist": {
  7982. "type": "zip",
  7983. "url": "https://api.github.com/repos/symfony/yaml/zipball/4921b8c1db90c13ba2ee0520080ef6800912b018",
  7984. "reference": "4921b8c1db90c13ba2ee0520080ef6800912b018",
  7985. "shasum": ""
  7986. },
  7987. "require": {
  7988. "php": ">=8.2",
  7989. "symfony/polyfill-ctype": "^1.8"
  7990. },
  7991. "conflict": {
  7992. "symfony/console": "<6.4"
  7993. },
  7994. "require-dev": {
  7995. "symfony/console": "^6.4|^7.0"
  7996. },
  7997. "bin": [
  7998. "Resources/bin/yaml-lint"
  7999. ],
  8000. "type": "library",
  8001. "autoload": {
  8002. "psr-4": {
  8003. "Symfony\\Component\\Yaml\\": ""
  8004. },
  8005. "exclude-from-classmap": [
  8006. "/Tests/"
  8007. ]
  8008. },
  8009. "notification-url": "https://packagist.org/downloads/",
  8010. "license": [
  8011. "MIT"
  8012. ],
  8013. "authors": [
  8014. {
  8015. "name": "Fabien Potencier",
  8016. "email": "fabien@symfony.com"
  8017. },
  8018. {
  8019. "name": "Symfony Community",
  8020. "homepage": "https://symfony.com/contributors"
  8021. }
  8022. ],
  8023. "description": "Loads and dumps YAML files",
  8024. "homepage": "https://symfony.com",
  8025. "support": {
  8026. "source": "https://github.com/symfony/yaml/tree/v7.1.11"
  8027. },
  8028. "funding": [
  8029. {
  8030. "url": "https://symfony.com/sponsor",
  8031. "type": "custom"
  8032. },
  8033. {
  8034. "url": "https://github.com/fabpot",
  8035. "type": "github"
  8036. },
  8037. {
  8038. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8039. "type": "tidelift"
  8040. }
  8041. ],
  8042. "time": "2025-01-07T12:50:05+00:00"
  8043. },
  8044. {
  8045. "name": "twig/extra-bundle",
  8046. "version": "v3.20.0",
  8047. "source": {
  8048. "type": "git",
  8049. "url": "https://github.com/twigphp/twig-extra-bundle.git",
  8050. "reference": "9df5e1dbb6a68c0665ae5603f6f2c20815647876"
  8051. },
  8052. "dist": {
  8053. "type": "zip",
  8054. "url": "https://api.github.com/repos/twigphp/twig-extra-bundle/zipball/9df5e1dbb6a68c0665ae5603f6f2c20815647876",
  8055. "reference": "9df5e1dbb6a68c0665ae5603f6f2c20815647876",
  8056. "shasum": ""
  8057. },
  8058. "require": {
  8059. "php": ">=8.1.0",
  8060. "symfony/framework-bundle": "^5.4|^6.4|^7.0",
  8061. "symfony/twig-bundle": "^5.4|^6.4|^7.0",
  8062. "twig/twig": "^3.2|^4.0"
  8063. },
  8064. "require-dev": {
  8065. "league/commonmark": "^1.0|^2.0",
  8066. "symfony/phpunit-bridge": "^6.4|^7.0",
  8067. "twig/cache-extra": "^3.0",
  8068. "twig/cssinliner-extra": "^3.0",
  8069. "twig/html-extra": "^3.0",
  8070. "twig/inky-extra": "^3.0",
  8071. "twig/intl-extra": "^3.0",
  8072. "twig/markdown-extra": "^3.0",
  8073. "twig/string-extra": "^3.0"
  8074. },
  8075. "type": "symfony-bundle",
  8076. "autoload": {
  8077. "psr-4": {
  8078. "Twig\\Extra\\TwigExtraBundle\\": ""
  8079. },
  8080. "exclude-from-classmap": [
  8081. "/Tests/"
  8082. ]
  8083. },
  8084. "notification-url": "https://packagist.org/downloads/",
  8085. "license": [
  8086. "MIT"
  8087. ],
  8088. "authors": [
  8089. {
  8090. "name": "Fabien Potencier",
  8091. "email": "fabien@symfony.com",
  8092. "homepage": "http://fabien.potencier.org",
  8093. "role": "Lead Developer"
  8094. }
  8095. ],
  8096. "description": "A Symfony bundle for extra Twig extensions",
  8097. "homepage": "https://twig.symfony.com",
  8098. "keywords": [
  8099. "bundle",
  8100. "extra",
  8101. "twig"
  8102. ],
  8103. "support": {
  8104. "source": "https://github.com/twigphp/twig-extra-bundle/tree/v3.20.0"
  8105. },
  8106. "funding": [
  8107. {
  8108. "url": "https://github.com/fabpot",
  8109. "type": "github"
  8110. },
  8111. {
  8112. "url": "https://tidelift.com/funding/github/packagist/twig/twig",
  8113. "type": "tidelift"
  8114. }
  8115. ],
  8116. "time": "2025-02-08T09:47:15+00:00"
  8117. },
  8118. {
  8119. "name": "twig/markdown-extra",
  8120. "version": "v3.20.0",
  8121. "source": {
  8122. "type": "git",
  8123. "url": "https://github.com/twigphp/markdown-extra.git",
  8124. "reference": "f4616e1dd375209dacf6026f846e6b537d036ce4"
  8125. },
  8126. "dist": {
  8127. "type": "zip",
  8128. "url": "https://api.github.com/repos/twigphp/markdown-extra/zipball/f4616e1dd375209dacf6026f846e6b537d036ce4",
  8129. "reference": "f4616e1dd375209dacf6026f846e6b537d036ce4",
  8130. "shasum": ""
  8131. },
  8132. "require": {
  8133. "php": ">=8.1.0",
  8134. "symfony/deprecation-contracts": "^2.5|^3",
  8135. "twig/twig": "^3.13|^4.0"
  8136. },
  8137. "require-dev": {
  8138. "erusev/parsedown": "dev-master as 1.x-dev",
  8139. "league/commonmark": "^1.0|^2.0",
  8140. "league/html-to-markdown": "^4.8|^5.0",
  8141. "michelf/php-markdown": "^1.8|^2.0",
  8142. "symfony/phpunit-bridge": "^6.4|^7.0"
  8143. },
  8144. "type": "library",
  8145. "autoload": {
  8146. "files": [
  8147. "Resources/functions.php"
  8148. ],
  8149. "psr-4": {
  8150. "Twig\\Extra\\Markdown\\": ""
  8151. },
  8152. "exclude-from-classmap": [
  8153. "/Tests/"
  8154. ]
  8155. },
  8156. "notification-url": "https://packagist.org/downloads/",
  8157. "license": [
  8158. "MIT"
  8159. ],
  8160. "authors": [
  8161. {
  8162. "name": "Fabien Potencier",
  8163. "email": "fabien@symfony.com",
  8164. "homepage": "http://fabien.potencier.org",
  8165. "role": "Lead Developer"
  8166. }
  8167. ],
  8168. "description": "A Twig extension for Markdown",
  8169. "homepage": "https://twig.symfony.com",
  8170. "keywords": [
  8171. "html",
  8172. "markdown",
  8173. "twig"
  8174. ],
  8175. "support": {
  8176. "source": "https://github.com/twigphp/markdown-extra/tree/v3.20.0"
  8177. },
  8178. "funding": [
  8179. {
  8180. "url": "https://github.com/fabpot",
  8181. "type": "github"
  8182. },
  8183. {
  8184. "url": "https://tidelift.com/funding/github/packagist/twig/twig",
  8185. "type": "tidelift"
  8186. }
  8187. ],
  8188. "time": "2025-01-31T20:45:36+00:00"
  8189. },
  8190. {
  8191. "name": "twig/twig",
  8192. "version": "v3.20.0",
  8193. "source": {
  8194. "type": "git",
  8195. "url": "https://github.com/twigphp/Twig.git",
  8196. "reference": "3468920399451a384bef53cf7996965f7cd40183"
  8197. },
  8198. "dist": {
  8199. "type": "zip",
  8200. "url": "https://api.github.com/repos/twigphp/Twig/zipball/3468920399451a384bef53cf7996965f7cd40183",
  8201. "reference": "3468920399451a384bef53cf7996965f7cd40183",
  8202. "shasum": ""
  8203. },
  8204. "require": {
  8205. "php": ">=8.1.0",
  8206. "symfony/deprecation-contracts": "^2.5|^3",
  8207. "symfony/polyfill-ctype": "^1.8",
  8208. "symfony/polyfill-mbstring": "^1.3"
  8209. },
  8210. "require-dev": {
  8211. "phpstan/phpstan": "^2.0",
  8212. "psr/container": "^1.0|^2.0",
  8213. "symfony/phpunit-bridge": "^5.4.9|^6.4|^7.0"
  8214. },
  8215. "type": "library",
  8216. "autoload": {
  8217. "files": [
  8218. "src/Resources/core.php",
  8219. "src/Resources/debug.php",
  8220. "src/Resources/escaper.php",
  8221. "src/Resources/string_loader.php"
  8222. ],
  8223. "psr-4": {
  8224. "Twig\\": "src/"
  8225. }
  8226. },
  8227. "notification-url": "https://packagist.org/downloads/",
  8228. "license": [
  8229. "BSD-3-Clause"
  8230. ],
  8231. "authors": [
  8232. {
  8233. "name": "Fabien Potencier",
  8234. "email": "fabien@symfony.com",
  8235. "homepage": "http://fabien.potencier.org",
  8236. "role": "Lead Developer"
  8237. },
  8238. {
  8239. "name": "Twig Team",
  8240. "role": "Contributors"
  8241. },
  8242. {
  8243. "name": "Armin Ronacher",
  8244. "email": "armin.ronacher@active-4.com",
  8245. "role": "Project Founder"
  8246. }
  8247. ],
  8248. "description": "Twig, the flexible, fast, and secure template language for PHP",
  8249. "homepage": "https://twig.symfony.com",
  8250. "keywords": [
  8251. "templating"
  8252. ],
  8253. "support": {
  8254. "issues": "https://github.com/twigphp/Twig/issues",
  8255. "source": "https://github.com/twigphp/Twig/tree/v3.20.0"
  8256. },
  8257. "funding": [
  8258. {
  8259. "url": "https://github.com/fabpot",
  8260. "type": "github"
  8261. },
  8262. {
  8263. "url": "https://tidelift.com/funding/github/packagist/twig/twig",
  8264. "type": "tidelift"
  8265. }
  8266. ],
  8267. "time": "2025-02-13T08:34:43+00:00"
  8268. },
  8269. {
  8270. "name": "webmozart/assert",
  8271. "version": "1.11.0",
  8272. "source": {
  8273. "type": "git",
  8274. "url": "https://github.com/webmozarts/assert.git",
  8275. "reference": "11cb2199493b2f8a3b53e7f19068fc6aac760991"
  8276. },
  8277. "dist": {
  8278. "type": "zip",
  8279. "url": "https://api.github.com/repos/webmozarts/assert/zipball/11cb2199493b2f8a3b53e7f19068fc6aac760991",
  8280. "reference": "11cb2199493b2f8a3b53e7f19068fc6aac760991",
  8281. "shasum": ""
  8282. },
  8283. "require": {
  8284. "ext-ctype": "*",
  8285. "php": "^7.2 || ^8.0"
  8286. },
  8287. "conflict": {
  8288. "phpstan/phpstan": "<0.12.20",
  8289. "vimeo/psalm": "<4.6.1 || 4.6.2"
  8290. },
  8291. "require-dev": {
  8292. "phpunit/phpunit": "^8.5.13"
  8293. },
  8294. "type": "library",
  8295. "extra": {
  8296. "branch-alias": {
  8297. "dev-master": "1.10-dev"
  8298. }
  8299. },
  8300. "autoload": {
  8301. "psr-4": {
  8302. "Webmozart\\Assert\\": "src/"
  8303. }
  8304. },
  8305. "notification-url": "https://packagist.org/downloads/",
  8306. "license": [
  8307. "MIT"
  8308. ],
  8309. "authors": [
  8310. {
  8311. "name": "Bernhard Schussek",
  8312. "email": "bschussek@gmail.com"
  8313. }
  8314. ],
  8315. "description": "Assertions to validate method input/output with nice error messages.",
  8316. "keywords": [
  8317. "assert",
  8318. "check",
  8319. "validate"
  8320. ],
  8321. "support": {
  8322. "issues": "https://github.com/webmozarts/assert/issues",
  8323. "source": "https://github.com/webmozarts/assert/tree/1.11.0"
  8324. },
  8325. "time": "2022-06-03T18:03:27+00:00"
  8326. }
  8327. ],
  8328. "packages-dev": [
  8329. {
  8330. "name": "myclabs/deep-copy",
  8331. "version": "1.13.0",
  8332. "source": {
  8333. "type": "git",
  8334. "url": "https://github.com/myclabs/DeepCopy.git",
  8335. "reference": "024473a478be9df5fdaca2c793f2232fe788e414"
  8336. },
  8337. "dist": {
  8338. "type": "zip",
  8339. "url": "https://api.github.com/repos/myclabs/DeepCopy/zipball/024473a478be9df5fdaca2c793f2232fe788e414",
  8340. "reference": "024473a478be9df5fdaca2c793f2232fe788e414",
  8341. "shasum": ""
  8342. },
  8343. "require": {
  8344. "php": "^7.1 || ^8.0"
  8345. },
  8346. "conflict": {
  8347. "doctrine/collections": "<1.6.8",
  8348. "doctrine/common": "<2.13.3 || >=3 <3.2.2"
  8349. },
  8350. "require-dev": {
  8351. "doctrine/collections": "^1.6.8",
  8352. "doctrine/common": "^2.13.3 || ^3.2.2",
  8353. "phpspec/prophecy": "^1.10",
  8354. "phpunit/phpunit": "^7.5.20 || ^8.5.23 || ^9.5.13"
  8355. },
  8356. "type": "library",
  8357. "autoload": {
  8358. "files": [
  8359. "src/DeepCopy/deep_copy.php"
  8360. ],
  8361. "psr-4": {
  8362. "DeepCopy\\": "src/DeepCopy/"
  8363. }
  8364. },
  8365. "notification-url": "https://packagist.org/downloads/",
  8366. "license": [
  8367. "MIT"
  8368. ],
  8369. "description": "Create deep copies (clones) of your objects",
  8370. "keywords": [
  8371. "clone",
  8372. "copy",
  8373. "duplicate",
  8374. "object",
  8375. "object graph"
  8376. ],
  8377. "support": {
  8378. "issues": "https://github.com/myclabs/DeepCopy/issues",
  8379. "source": "https://github.com/myclabs/DeepCopy/tree/1.13.0"
  8380. },
  8381. "funding": [
  8382. {
  8383. "url": "https://tidelift.com/funding/github/packagist/myclabs/deep-copy",
  8384. "type": "tidelift"
  8385. }
  8386. ],
  8387. "time": "2025-02-12T12:17:51+00:00"
  8388. },
  8389. {
  8390. "name": "nikic/php-parser",
  8391. "version": "v5.4.0",
  8392. "source": {
  8393. "type": "git",
  8394. "url": "https://github.com/nikic/PHP-Parser.git",
  8395. "reference": "447a020a1f875a434d62f2a401f53b82a396e494"
  8396. },
  8397. "dist": {
  8398. "type": "zip",
  8399. "url": "https://api.github.com/repos/nikic/PHP-Parser/zipball/447a020a1f875a434d62f2a401f53b82a396e494",
  8400. "reference": "447a020a1f875a434d62f2a401f53b82a396e494",
  8401. "shasum": ""
  8402. },
  8403. "require": {
  8404. "ext-ctype": "*",
  8405. "ext-json": "*",
  8406. "ext-tokenizer": "*",
  8407. "php": ">=7.4"
  8408. },
  8409. "require-dev": {
  8410. "ircmaxell/php-yacc": "^0.0.7",
  8411. "phpunit/phpunit": "^9.0"
  8412. },
  8413. "bin": [
  8414. "bin/php-parse"
  8415. ],
  8416. "type": "library",
  8417. "extra": {
  8418. "branch-alias": {
  8419. "dev-master": "5.0-dev"
  8420. }
  8421. },
  8422. "autoload": {
  8423. "psr-4": {
  8424. "PhpParser\\": "lib/PhpParser"
  8425. }
  8426. },
  8427. "notification-url": "https://packagist.org/downloads/",
  8428. "license": [
  8429. "BSD-3-Clause"
  8430. ],
  8431. "authors": [
  8432. {
  8433. "name": "Nikita Popov"
  8434. }
  8435. ],
  8436. "description": "A PHP parser written in PHP",
  8437. "keywords": [
  8438. "parser",
  8439. "php"
  8440. ],
  8441. "support": {
  8442. "issues": "https://github.com/nikic/PHP-Parser/issues",
  8443. "source": "https://github.com/nikic/PHP-Parser/tree/v5.4.0"
  8444. },
  8445. "time": "2024-12-30T11:07:19+00:00"
  8446. },
  8447. {
  8448. "name": "phar-io/manifest",
  8449. "version": "2.0.4",
  8450. "source": {
  8451. "type": "git",
  8452. "url": "https://github.com/phar-io/manifest.git",
  8453. "reference": "54750ef60c58e43759730615a392c31c80e23176"
  8454. },
  8455. "dist": {
  8456. "type": "zip",
  8457. "url": "https://api.github.com/repos/phar-io/manifest/zipball/54750ef60c58e43759730615a392c31c80e23176",
  8458. "reference": "54750ef60c58e43759730615a392c31c80e23176",
  8459. "shasum": ""
  8460. },
  8461. "require": {
  8462. "ext-dom": "*",
  8463. "ext-libxml": "*",
  8464. "ext-phar": "*",
  8465. "ext-xmlwriter": "*",
  8466. "phar-io/version": "^3.0.1",
  8467. "php": "^7.2 || ^8.0"
  8468. },
  8469. "type": "library",
  8470. "extra": {
  8471. "branch-alias": {
  8472. "dev-master": "2.0.x-dev"
  8473. }
  8474. },
  8475. "autoload": {
  8476. "classmap": [
  8477. "src/"
  8478. ]
  8479. },
  8480. "notification-url": "https://packagist.org/downloads/",
  8481. "license": [
  8482. "BSD-3-Clause"
  8483. ],
  8484. "authors": [
  8485. {
  8486. "name": "Arne Blankerts",
  8487. "email": "arne@blankerts.de",
  8488. "role": "Developer"
  8489. },
  8490. {
  8491. "name": "Sebastian Heuer",
  8492. "email": "sebastian@phpeople.de",
  8493. "role": "Developer"
  8494. },
  8495. {
  8496. "name": "Sebastian Bergmann",
  8497. "email": "sebastian@phpunit.de",
  8498. "role": "Developer"
  8499. }
  8500. ],
  8501. "description": "Component for reading phar.io manifest information from a PHP Archive (PHAR)",
  8502. "support": {
  8503. "issues": "https://github.com/phar-io/manifest/issues",
  8504. "source": "https://github.com/phar-io/manifest/tree/2.0.4"
  8505. },
  8506. "funding": [
  8507. {
  8508. "url": "https://github.com/theseer",
  8509. "type": "github"
  8510. }
  8511. ],
  8512. "time": "2024-03-03T12:33:53+00:00"
  8513. },
  8514. {
  8515. "name": "phar-io/version",
  8516. "version": "3.2.1",
  8517. "source": {
  8518. "type": "git",
  8519. "url": "https://github.com/phar-io/version.git",
  8520. "reference": "4f7fd7836c6f332bb2933569e566a0d6c4cbed74"
  8521. },
  8522. "dist": {
  8523. "type": "zip",
  8524. "url": "https://api.github.com/repos/phar-io/version/zipball/4f7fd7836c6f332bb2933569e566a0d6c4cbed74",
  8525. "reference": "4f7fd7836c6f332bb2933569e566a0d6c4cbed74",
  8526. "shasum": ""
  8527. },
  8528. "require": {
  8529. "php": "^7.2 || ^8.0"
  8530. },
  8531. "type": "library",
  8532. "autoload": {
  8533. "classmap": [
  8534. "src/"
  8535. ]
  8536. },
  8537. "notification-url": "https://packagist.org/downloads/",
  8538. "license": [
  8539. "BSD-3-Clause"
  8540. ],
  8541. "authors": [
  8542. {
  8543. "name": "Arne Blankerts",
  8544. "email": "arne@blankerts.de",
  8545. "role": "Developer"
  8546. },
  8547. {
  8548. "name": "Sebastian Heuer",
  8549. "email": "sebastian@phpeople.de",
  8550. "role": "Developer"
  8551. },
  8552. {
  8553. "name": "Sebastian Bergmann",
  8554. "email": "sebastian@phpunit.de",
  8555. "role": "Developer"
  8556. }
  8557. ],
  8558. "description": "Library for handling version information and constraints",
  8559. "support": {
  8560. "issues": "https://github.com/phar-io/version/issues",
  8561. "source": "https://github.com/phar-io/version/tree/3.2.1"
  8562. },
  8563. "time": "2022-02-21T01:04:05+00:00"
  8564. },
  8565. {
  8566. "name": "phpunit/php-code-coverage",
  8567. "version": "9.2.32",
  8568. "source": {
  8569. "type": "git",
  8570. "url": "https://github.com/sebastianbergmann/php-code-coverage.git",
  8571. "reference": "85402a822d1ecf1db1096959413d35e1c37cf1a5"
  8572. },
  8573. "dist": {
  8574. "type": "zip",
  8575. "url": "https://api.github.com/repos/sebastianbergmann/php-code-coverage/zipball/85402a822d1ecf1db1096959413d35e1c37cf1a5",
  8576. "reference": "85402a822d1ecf1db1096959413d35e1c37cf1a5",
  8577. "shasum": ""
  8578. },
  8579. "require": {
  8580. "ext-dom": "*",
  8581. "ext-libxml": "*",
  8582. "ext-xmlwriter": "*",
  8583. "nikic/php-parser": "^4.19.1 || ^5.1.0",
  8584. "php": ">=7.3",
  8585. "phpunit/php-file-iterator": "^3.0.6",
  8586. "phpunit/php-text-template": "^2.0.4",
  8587. "sebastian/code-unit-reverse-lookup": "^2.0.3",
  8588. "sebastian/complexity": "^2.0.3",
  8589. "sebastian/environment": "^5.1.5",
  8590. "sebastian/lines-of-code": "^1.0.4",
  8591. "sebastian/version": "^3.0.2",
  8592. "theseer/tokenizer": "^1.2.3"
  8593. },
  8594. "require-dev": {
  8595. "phpunit/phpunit": "^9.6"
  8596. },
  8597. "suggest": {
  8598. "ext-pcov": "PHP extension that provides line coverage",
  8599. "ext-xdebug": "PHP extension that provides line coverage as well as branch and path coverage"
  8600. },
  8601. "type": "library",
  8602. "extra": {
  8603. "branch-alias": {
  8604. "dev-main": "9.2.x-dev"
  8605. }
  8606. },
  8607. "autoload": {
  8608. "classmap": [
  8609. "src/"
  8610. ]
  8611. },
  8612. "notification-url": "https://packagist.org/downloads/",
  8613. "license": [
  8614. "BSD-3-Clause"
  8615. ],
  8616. "authors": [
  8617. {
  8618. "name": "Sebastian Bergmann",
  8619. "email": "sebastian@phpunit.de",
  8620. "role": "lead"
  8621. }
  8622. ],
  8623. "description": "Library that provides collection, processing, and rendering functionality for PHP code coverage information.",
  8624. "homepage": "https://github.com/sebastianbergmann/php-code-coverage",
  8625. "keywords": [
  8626. "coverage",
  8627. "testing",
  8628. "xunit"
  8629. ],
  8630. "support": {
  8631. "issues": "https://github.com/sebastianbergmann/php-code-coverage/issues",
  8632. "security": "https://github.com/sebastianbergmann/php-code-coverage/security/policy",
  8633. "source": "https://github.com/sebastianbergmann/php-code-coverage/tree/9.2.32"
  8634. },
  8635. "funding": [
  8636. {
  8637. "url": "https://github.com/sebastianbergmann",
  8638. "type": "github"
  8639. }
  8640. ],
  8641. "time": "2024-08-22T04:23:01+00:00"
  8642. },
  8643. {
  8644. "name": "phpunit/php-file-iterator",
  8645. "version": "3.0.6",
  8646. "source": {
  8647. "type": "git",
  8648. "url": "https://github.com/sebastianbergmann/php-file-iterator.git",
  8649. "reference": "cf1c2e7c203ac650e352f4cc675a7021e7d1b3cf"
  8650. },
  8651. "dist": {
  8652. "type": "zip",
  8653. "url": "https://api.github.com/repos/sebastianbergmann/php-file-iterator/zipball/cf1c2e7c203ac650e352f4cc675a7021e7d1b3cf",
  8654. "reference": "cf1c2e7c203ac650e352f4cc675a7021e7d1b3cf",
  8655. "shasum": ""
  8656. },
  8657. "require": {
  8658. "php": ">=7.3"
  8659. },
  8660. "require-dev": {
  8661. "phpunit/phpunit": "^9.3"
  8662. },
  8663. "type": "library",
  8664. "extra": {
  8665. "branch-alias": {
  8666. "dev-master": "3.0-dev"
  8667. }
  8668. },
  8669. "autoload": {
  8670. "classmap": [
  8671. "src/"
  8672. ]
  8673. },
  8674. "notification-url": "https://packagist.org/downloads/",
  8675. "license": [
  8676. "BSD-3-Clause"
  8677. ],
  8678. "authors": [
  8679. {
  8680. "name": "Sebastian Bergmann",
  8681. "email": "sebastian@phpunit.de",
  8682. "role": "lead"
  8683. }
  8684. ],
  8685. "description": "FilterIterator implementation that filters files based on a list of suffixes.",
  8686. "homepage": "https://github.com/sebastianbergmann/php-file-iterator/",
  8687. "keywords": [
  8688. "filesystem",
  8689. "iterator"
  8690. ],
  8691. "support": {
  8692. "issues": "https://github.com/sebastianbergmann/php-file-iterator/issues",
  8693. "source": "https://github.com/sebastianbergmann/php-file-iterator/tree/3.0.6"
  8694. },
  8695. "funding": [
  8696. {
  8697. "url": "https://github.com/sebastianbergmann",
  8698. "type": "github"
  8699. }
  8700. ],
  8701. "time": "2021-12-02T12:48:52+00:00"
  8702. },
  8703. {
  8704. "name": "phpunit/php-invoker",
  8705. "version": "3.1.1",
  8706. "source": {
  8707. "type": "git",
  8708. "url": "https://github.com/sebastianbergmann/php-invoker.git",
  8709. "reference": "5a10147d0aaf65b58940a0b72f71c9ac0423cc67"
  8710. },
  8711. "dist": {
  8712. "type": "zip",
  8713. "url": "https://api.github.com/repos/sebastianbergmann/php-invoker/zipball/5a10147d0aaf65b58940a0b72f71c9ac0423cc67",
  8714. "reference": "5a10147d0aaf65b58940a0b72f71c9ac0423cc67",
  8715. "shasum": ""
  8716. },
  8717. "require": {
  8718. "php": ">=7.3"
  8719. },
  8720. "require-dev": {
  8721. "ext-pcntl": "*",
  8722. "phpunit/phpunit": "^9.3"
  8723. },
  8724. "suggest": {
  8725. "ext-pcntl": "*"
  8726. },
  8727. "type": "library",
  8728. "extra": {
  8729. "branch-alias": {
  8730. "dev-master": "3.1-dev"
  8731. }
  8732. },
  8733. "autoload": {
  8734. "classmap": [
  8735. "src/"
  8736. ]
  8737. },
  8738. "notification-url": "https://packagist.org/downloads/",
  8739. "license": [
  8740. "BSD-3-Clause"
  8741. ],
  8742. "authors": [
  8743. {
  8744. "name": "Sebastian Bergmann",
  8745. "email": "sebastian@phpunit.de",
  8746. "role": "lead"
  8747. }
  8748. ],
  8749. "description": "Invoke callables with a timeout",
  8750. "homepage": "https://github.com/sebastianbergmann/php-invoker/",
  8751. "keywords": [
  8752. "process"
  8753. ],
  8754. "support": {
  8755. "issues": "https://github.com/sebastianbergmann/php-invoker/issues",
  8756. "source": "https://github.com/sebastianbergmann/php-invoker/tree/3.1.1"
  8757. },
  8758. "funding": [
  8759. {
  8760. "url": "https://github.com/sebastianbergmann",
  8761. "type": "github"
  8762. }
  8763. ],
  8764. "time": "2020-09-28T05:58:55+00:00"
  8765. },
  8766. {
  8767. "name": "phpunit/php-text-template",
  8768. "version": "2.0.4",
  8769. "source": {
  8770. "type": "git",
  8771. "url": "https://github.com/sebastianbergmann/php-text-template.git",
  8772. "reference": "5da5f67fc95621df9ff4c4e5a84d6a8a2acf7c28"
  8773. },
  8774. "dist": {
  8775. "type": "zip",
  8776. "url": "https://api.github.com/repos/sebastianbergmann/php-text-template/zipball/5da5f67fc95621df9ff4c4e5a84d6a8a2acf7c28",
  8777. "reference": "5da5f67fc95621df9ff4c4e5a84d6a8a2acf7c28",
  8778. "shasum": ""
  8779. },
  8780. "require": {
  8781. "php": ">=7.3"
  8782. },
  8783. "require-dev": {
  8784. "phpunit/phpunit": "^9.3"
  8785. },
  8786. "type": "library",
  8787. "extra": {
  8788. "branch-alias": {
  8789. "dev-master": "2.0-dev"
  8790. }
  8791. },
  8792. "autoload": {
  8793. "classmap": [
  8794. "src/"
  8795. ]
  8796. },
  8797. "notification-url": "https://packagist.org/downloads/",
  8798. "license": [
  8799. "BSD-3-Clause"
  8800. ],
  8801. "authors": [
  8802. {
  8803. "name": "Sebastian Bergmann",
  8804. "email": "sebastian@phpunit.de",
  8805. "role": "lead"
  8806. }
  8807. ],
  8808. "description": "Simple template engine.",
  8809. "homepage": "https://github.com/sebastianbergmann/php-text-template/",
  8810. "keywords": [
  8811. "template"
  8812. ],
  8813. "support": {
  8814. "issues": "https://github.com/sebastianbergmann/php-text-template/issues",
  8815. "source": "https://github.com/sebastianbergmann/php-text-template/tree/2.0.4"
  8816. },
  8817. "funding": [
  8818. {
  8819. "url": "https://github.com/sebastianbergmann",
  8820. "type": "github"
  8821. }
  8822. ],
  8823. "time": "2020-10-26T05:33:50+00:00"
  8824. },
  8825. {
  8826. "name": "phpunit/php-timer",
  8827. "version": "5.0.3",
  8828. "source": {
  8829. "type": "git",
  8830. "url": "https://github.com/sebastianbergmann/php-timer.git",
  8831. "reference": "5a63ce20ed1b5bf577850e2c4e87f4aa902afbd2"
  8832. },
  8833. "dist": {
  8834. "type": "zip",
  8835. "url": "https://api.github.com/repos/sebastianbergmann/php-timer/zipball/5a63ce20ed1b5bf577850e2c4e87f4aa902afbd2",
  8836. "reference": "5a63ce20ed1b5bf577850e2c4e87f4aa902afbd2",
  8837. "shasum": ""
  8838. },
  8839. "require": {
  8840. "php": ">=7.3"
  8841. },
  8842. "require-dev": {
  8843. "phpunit/phpunit": "^9.3"
  8844. },
  8845. "type": "library",
  8846. "extra": {
  8847. "branch-alias": {
  8848. "dev-master": "5.0-dev"
  8849. }
  8850. },
  8851. "autoload": {
  8852. "classmap": [
  8853. "src/"
  8854. ]
  8855. },
  8856. "notification-url": "https://packagist.org/downloads/",
  8857. "license": [
  8858. "BSD-3-Clause"
  8859. ],
  8860. "authors": [
  8861. {
  8862. "name": "Sebastian Bergmann",
  8863. "email": "sebastian@phpunit.de",
  8864. "role": "lead"
  8865. }
  8866. ],
  8867. "description": "Utility class for timing",
  8868. "homepage": "https://github.com/sebastianbergmann/php-timer/",
  8869. "keywords": [
  8870. "timer"
  8871. ],
  8872. "support": {
  8873. "issues": "https://github.com/sebastianbergmann/php-timer/issues",
  8874. "source": "https://github.com/sebastianbergmann/php-timer/tree/5.0.3"
  8875. },
  8876. "funding": [
  8877. {
  8878. "url": "https://github.com/sebastianbergmann",
  8879. "type": "github"
  8880. }
  8881. ],
  8882. "time": "2020-10-26T13:16:10+00:00"
  8883. },
  8884. {
  8885. "name": "phpunit/phpunit",
  8886. "version": "9.6.22",
  8887. "source": {
  8888. "type": "git",
  8889. "url": "https://github.com/sebastianbergmann/phpunit.git",
  8890. "reference": "f80235cb4d3caa59ae09be3adf1ded27521d1a9c"
  8891. },
  8892. "dist": {
  8893. "type": "zip",
  8894. "url": "https://api.github.com/repos/sebastianbergmann/phpunit/zipball/f80235cb4d3caa59ae09be3adf1ded27521d1a9c",
  8895. "reference": "f80235cb4d3caa59ae09be3adf1ded27521d1a9c",
  8896. "shasum": ""
  8897. },
  8898. "require": {
  8899. "doctrine/instantiator": "^1.5.0 || ^2",
  8900. "ext-dom": "*",
  8901. "ext-json": "*",
  8902. "ext-libxml": "*",
  8903. "ext-mbstring": "*",
  8904. "ext-xml": "*",
  8905. "ext-xmlwriter": "*",
  8906. "myclabs/deep-copy": "^1.12.1",
  8907. "phar-io/manifest": "^2.0.4",
  8908. "phar-io/version": "^3.2.1",
  8909. "php": ">=7.3",
  8910. "phpunit/php-code-coverage": "^9.2.32",
  8911. "phpunit/php-file-iterator": "^3.0.6",
  8912. "phpunit/php-invoker": "^3.1.1",
  8913. "phpunit/php-text-template": "^2.0.4",
  8914. "phpunit/php-timer": "^5.0.3",
  8915. "sebastian/cli-parser": "^1.0.2",
  8916. "sebastian/code-unit": "^1.0.8",
  8917. "sebastian/comparator": "^4.0.8",
  8918. "sebastian/diff": "^4.0.6",
  8919. "sebastian/environment": "^5.1.5",
  8920. "sebastian/exporter": "^4.0.6",
  8921. "sebastian/global-state": "^5.0.7",
  8922. "sebastian/object-enumerator": "^4.0.4",
  8923. "sebastian/resource-operations": "^3.0.4",
  8924. "sebastian/type": "^3.2.1",
  8925. "sebastian/version": "^3.0.2"
  8926. },
  8927. "suggest": {
  8928. "ext-soap": "To be able to generate mocks based on WSDL files",
  8929. "ext-xdebug": "PHP extension that provides line coverage as well as branch and path coverage"
  8930. },
  8931. "bin": [
  8932. "phpunit"
  8933. ],
  8934. "type": "library",
  8935. "extra": {
  8936. "branch-alias": {
  8937. "dev-master": "9.6-dev"
  8938. }
  8939. },
  8940. "autoload": {
  8941. "files": [
  8942. "src/Framework/Assert/Functions.php"
  8943. ],
  8944. "classmap": [
  8945. "src/"
  8946. ]
  8947. },
  8948. "notification-url": "https://packagist.org/downloads/",
  8949. "license": [
  8950. "BSD-3-Clause"
  8951. ],
  8952. "authors": [
  8953. {
  8954. "name": "Sebastian Bergmann",
  8955. "email": "sebastian@phpunit.de",
  8956. "role": "lead"
  8957. }
  8958. ],
  8959. "description": "The PHP Unit Testing framework.",
  8960. "homepage": "https://phpunit.de/",
  8961. "keywords": [
  8962. "phpunit",
  8963. "testing",
  8964. "xunit"
  8965. ],
  8966. "support": {
  8967. "issues": "https://github.com/sebastianbergmann/phpunit/issues",
  8968. "security": "https://github.com/sebastianbergmann/phpunit/security/policy",
  8969. "source": "https://github.com/sebastianbergmann/phpunit/tree/9.6.22"
  8970. },
  8971. "funding": [
  8972. {
  8973. "url": "https://phpunit.de/sponsors.html",
  8974. "type": "custom"
  8975. },
  8976. {
  8977. "url": "https://github.com/sebastianbergmann",
  8978. "type": "github"
  8979. },
  8980. {
  8981. "url": "https://tidelift.com/funding/github/packagist/phpunit/phpunit",
  8982. "type": "tidelift"
  8983. }
  8984. ],
  8985. "time": "2024-12-05T13:48:26+00:00"
  8986. },
  8987. {
  8988. "name": "sebastian/cli-parser",
  8989. "version": "1.0.2",
  8990. "source": {
  8991. "type": "git",
  8992. "url": "https://github.com/sebastianbergmann/cli-parser.git",
  8993. "reference": "2b56bea83a09de3ac06bb18b92f068e60cc6f50b"
  8994. },
  8995. "dist": {
  8996. "type": "zip",
  8997. "url": "https://api.github.com/repos/sebastianbergmann/cli-parser/zipball/2b56bea83a09de3ac06bb18b92f068e60cc6f50b",
  8998. "reference": "2b56bea83a09de3ac06bb18b92f068e60cc6f50b",
  8999. "shasum": ""
  9000. },
  9001. "require": {
  9002. "php": ">=7.3"
  9003. },
  9004. "require-dev": {
  9005. "phpunit/phpunit": "^9.3"
  9006. },
  9007. "type": "library",
  9008. "extra": {
  9009. "branch-alias": {
  9010. "dev-master": "1.0-dev"
  9011. }
  9012. },
  9013. "autoload": {
  9014. "classmap": [
  9015. "src/"
  9016. ]
  9017. },
  9018. "notification-url": "https://packagist.org/downloads/",
  9019. "license": [
  9020. "BSD-3-Clause"
  9021. ],
  9022. "authors": [
  9023. {
  9024. "name": "Sebastian Bergmann",
  9025. "email": "sebastian@phpunit.de",
  9026. "role": "lead"
  9027. }
  9028. ],
  9029. "description": "Library for parsing CLI options",
  9030. "homepage": "https://github.com/sebastianbergmann/cli-parser",
  9031. "support": {
  9032. "issues": "https://github.com/sebastianbergmann/cli-parser/issues",
  9033. "source": "https://github.com/sebastianbergmann/cli-parser/tree/1.0.2"
  9034. },
  9035. "funding": [
  9036. {
  9037. "url": "https://github.com/sebastianbergmann",
  9038. "type": "github"
  9039. }
  9040. ],
  9041. "time": "2024-03-02T06:27:43+00:00"
  9042. },
  9043. {
  9044. "name": "sebastian/code-unit",
  9045. "version": "1.0.8",
  9046. "source": {
  9047. "type": "git",
  9048. "url": "https://github.com/sebastianbergmann/code-unit.git",
  9049. "reference": "1fc9f64c0927627ef78ba436c9b17d967e68e120"
  9050. },
  9051. "dist": {
  9052. "type": "zip",
  9053. "url": "https://api.github.com/repos/sebastianbergmann/code-unit/zipball/1fc9f64c0927627ef78ba436c9b17d967e68e120",
  9054. "reference": "1fc9f64c0927627ef78ba436c9b17d967e68e120",
  9055. "shasum": ""
  9056. },
  9057. "require": {
  9058. "php": ">=7.3"
  9059. },
  9060. "require-dev": {
  9061. "phpunit/phpunit": "^9.3"
  9062. },
  9063. "type": "library",
  9064. "extra": {
  9065. "branch-alias": {
  9066. "dev-master": "1.0-dev"
  9067. }
  9068. },
  9069. "autoload": {
  9070. "classmap": [
  9071. "src/"
  9072. ]
  9073. },
  9074. "notification-url": "https://packagist.org/downloads/",
  9075. "license": [
  9076. "BSD-3-Clause"
  9077. ],
  9078. "authors": [
  9079. {
  9080. "name": "Sebastian Bergmann",
  9081. "email": "sebastian@phpunit.de",
  9082. "role": "lead"
  9083. }
  9084. ],
  9085. "description": "Collection of value objects that represent the PHP code units",
  9086. "homepage": "https://github.com/sebastianbergmann/code-unit",
  9087. "support": {
  9088. "issues": "https://github.com/sebastianbergmann/code-unit/issues",
  9089. "source": "https://github.com/sebastianbergmann/code-unit/tree/1.0.8"
  9090. },
  9091. "funding": [
  9092. {
  9093. "url": "https://github.com/sebastianbergmann",
  9094. "type": "github"
  9095. }
  9096. ],
  9097. "time": "2020-10-26T13:08:54+00:00"
  9098. },
  9099. {
  9100. "name": "sebastian/code-unit-reverse-lookup",
  9101. "version": "2.0.3",
  9102. "source": {
  9103. "type": "git",
  9104. "url": "https://github.com/sebastianbergmann/code-unit-reverse-lookup.git",
  9105. "reference": "ac91f01ccec49fb77bdc6fd1e548bc70f7faa3e5"
  9106. },
  9107. "dist": {
  9108. "type": "zip",
  9109. "url": "https://api.github.com/repos/sebastianbergmann/code-unit-reverse-lookup/zipball/ac91f01ccec49fb77bdc6fd1e548bc70f7faa3e5",
  9110. "reference": "ac91f01ccec49fb77bdc6fd1e548bc70f7faa3e5",
  9111. "shasum": ""
  9112. },
  9113. "require": {
  9114. "php": ">=7.3"
  9115. },
  9116. "require-dev": {
  9117. "phpunit/phpunit": "^9.3"
  9118. },
  9119. "type": "library",
  9120. "extra": {
  9121. "branch-alias": {
  9122. "dev-master": "2.0-dev"
  9123. }
  9124. },
  9125. "autoload": {
  9126. "classmap": [
  9127. "src/"
  9128. ]
  9129. },
  9130. "notification-url": "https://packagist.org/downloads/",
  9131. "license": [
  9132. "BSD-3-Clause"
  9133. ],
  9134. "authors": [
  9135. {
  9136. "name": "Sebastian Bergmann",
  9137. "email": "sebastian@phpunit.de"
  9138. }
  9139. ],
  9140. "description": "Looks up which function or method a line of code belongs to",
  9141. "homepage": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/",
  9142. "support": {
  9143. "issues": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/issues",
  9144. "source": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/tree/2.0.3"
  9145. },
  9146. "funding": [
  9147. {
  9148. "url": "https://github.com/sebastianbergmann",
  9149. "type": "github"
  9150. }
  9151. ],
  9152. "time": "2020-09-28T05:30:19+00:00"
  9153. },
  9154. {
  9155. "name": "sebastian/comparator",
  9156. "version": "4.0.8",
  9157. "source": {
  9158. "type": "git",
  9159. "url": "https://github.com/sebastianbergmann/comparator.git",
  9160. "reference": "fa0f136dd2334583309d32b62544682ee972b51a"
  9161. },
  9162. "dist": {
  9163. "type": "zip",
  9164. "url": "https://api.github.com/repos/sebastianbergmann/comparator/zipball/fa0f136dd2334583309d32b62544682ee972b51a",
  9165. "reference": "fa0f136dd2334583309d32b62544682ee972b51a",
  9166. "shasum": ""
  9167. },
  9168. "require": {
  9169. "php": ">=7.3",
  9170. "sebastian/diff": "^4.0",
  9171. "sebastian/exporter": "^4.0"
  9172. },
  9173. "require-dev": {
  9174. "phpunit/phpunit": "^9.3"
  9175. },
  9176. "type": "library",
  9177. "extra": {
  9178. "branch-alias": {
  9179. "dev-master": "4.0-dev"
  9180. }
  9181. },
  9182. "autoload": {
  9183. "classmap": [
  9184. "src/"
  9185. ]
  9186. },
  9187. "notification-url": "https://packagist.org/downloads/",
  9188. "license": [
  9189. "BSD-3-Clause"
  9190. ],
  9191. "authors": [
  9192. {
  9193. "name": "Sebastian Bergmann",
  9194. "email": "sebastian@phpunit.de"
  9195. },
  9196. {
  9197. "name": "Jeff Welch",
  9198. "email": "whatthejeff@gmail.com"
  9199. },
  9200. {
  9201. "name": "Volker Dusch",
  9202. "email": "github@wallbash.com"
  9203. },
  9204. {
  9205. "name": "Bernhard Schussek",
  9206. "email": "bschussek@2bepublished.at"
  9207. }
  9208. ],
  9209. "description": "Provides the functionality to compare PHP values for equality",
  9210. "homepage": "https://github.com/sebastianbergmann/comparator",
  9211. "keywords": [
  9212. "comparator",
  9213. "compare",
  9214. "equality"
  9215. ],
  9216. "support": {
  9217. "issues": "https://github.com/sebastianbergmann/comparator/issues",
  9218. "source": "https://github.com/sebastianbergmann/comparator/tree/4.0.8"
  9219. },
  9220. "funding": [
  9221. {
  9222. "url": "https://github.com/sebastianbergmann",
  9223. "type": "github"
  9224. }
  9225. ],
  9226. "time": "2022-09-14T12:41:17+00:00"
  9227. },
  9228. {
  9229. "name": "sebastian/complexity",
  9230. "version": "2.0.3",
  9231. "source": {
  9232. "type": "git",
  9233. "url": "https://github.com/sebastianbergmann/complexity.git",
  9234. "reference": "25f207c40d62b8b7aa32f5ab026c53561964053a"
  9235. },
  9236. "dist": {
  9237. "type": "zip",
  9238. "url": "https://api.github.com/repos/sebastianbergmann/complexity/zipball/25f207c40d62b8b7aa32f5ab026c53561964053a",
  9239. "reference": "25f207c40d62b8b7aa32f5ab026c53561964053a",
  9240. "shasum": ""
  9241. },
  9242. "require": {
  9243. "nikic/php-parser": "^4.18 || ^5.0",
  9244. "php": ">=7.3"
  9245. },
  9246. "require-dev": {
  9247. "phpunit/phpunit": "^9.3"
  9248. },
  9249. "type": "library",
  9250. "extra": {
  9251. "branch-alias": {
  9252. "dev-master": "2.0-dev"
  9253. }
  9254. },
  9255. "autoload": {
  9256. "classmap": [
  9257. "src/"
  9258. ]
  9259. },
  9260. "notification-url": "https://packagist.org/downloads/",
  9261. "license": [
  9262. "BSD-3-Clause"
  9263. ],
  9264. "authors": [
  9265. {
  9266. "name": "Sebastian Bergmann",
  9267. "email": "sebastian@phpunit.de",
  9268. "role": "lead"
  9269. }
  9270. ],
  9271. "description": "Library for calculating the complexity of PHP code units",
  9272. "homepage": "https://github.com/sebastianbergmann/complexity",
  9273. "support": {
  9274. "issues": "https://github.com/sebastianbergmann/complexity/issues",
  9275. "source": "https://github.com/sebastianbergmann/complexity/tree/2.0.3"
  9276. },
  9277. "funding": [
  9278. {
  9279. "url": "https://github.com/sebastianbergmann",
  9280. "type": "github"
  9281. }
  9282. ],
  9283. "time": "2023-12-22T06:19:30+00:00"
  9284. },
  9285. {
  9286. "name": "sebastian/diff",
  9287. "version": "4.0.6",
  9288. "source": {
  9289. "type": "git",
  9290. "url": "https://github.com/sebastianbergmann/diff.git",
  9291. "reference": "ba01945089c3a293b01ba9badc29ad55b106b0bc"
  9292. },
  9293. "dist": {
  9294. "type": "zip",
  9295. "url": "https://api.github.com/repos/sebastianbergmann/diff/zipball/ba01945089c3a293b01ba9badc29ad55b106b0bc",
  9296. "reference": "ba01945089c3a293b01ba9badc29ad55b106b0bc",
  9297. "shasum": ""
  9298. },
  9299. "require": {
  9300. "php": ">=7.3"
  9301. },
  9302. "require-dev": {
  9303. "phpunit/phpunit": "^9.3",
  9304. "symfony/process": "^4.2 || ^5"
  9305. },
  9306. "type": "library",
  9307. "extra": {
  9308. "branch-alias": {
  9309. "dev-master": "4.0-dev"
  9310. }
  9311. },
  9312. "autoload": {
  9313. "classmap": [
  9314. "src/"
  9315. ]
  9316. },
  9317. "notification-url": "https://packagist.org/downloads/",
  9318. "license": [
  9319. "BSD-3-Clause"
  9320. ],
  9321. "authors": [
  9322. {
  9323. "name": "Sebastian Bergmann",
  9324. "email": "sebastian@phpunit.de"
  9325. },
  9326. {
  9327. "name": "Kore Nordmann",
  9328. "email": "mail@kore-nordmann.de"
  9329. }
  9330. ],
  9331. "description": "Diff implementation",
  9332. "homepage": "https://github.com/sebastianbergmann/diff",
  9333. "keywords": [
  9334. "diff",
  9335. "udiff",
  9336. "unidiff",
  9337. "unified diff"
  9338. ],
  9339. "support": {
  9340. "issues": "https://github.com/sebastianbergmann/diff/issues",
  9341. "source": "https://github.com/sebastianbergmann/diff/tree/4.0.6"
  9342. },
  9343. "funding": [
  9344. {
  9345. "url": "https://github.com/sebastianbergmann",
  9346. "type": "github"
  9347. }
  9348. ],
  9349. "time": "2024-03-02T06:30:58+00:00"
  9350. },
  9351. {
  9352. "name": "sebastian/environment",
  9353. "version": "5.1.5",
  9354. "source": {
  9355. "type": "git",
  9356. "url": "https://github.com/sebastianbergmann/environment.git",
  9357. "reference": "830c43a844f1f8d5b7a1f6d6076b784454d8b7ed"
  9358. },
  9359. "dist": {
  9360. "type": "zip",
  9361. "url": "https://api.github.com/repos/sebastianbergmann/environment/zipball/830c43a844f1f8d5b7a1f6d6076b784454d8b7ed",
  9362. "reference": "830c43a844f1f8d5b7a1f6d6076b784454d8b7ed",
  9363. "shasum": ""
  9364. },
  9365. "require": {
  9366. "php": ">=7.3"
  9367. },
  9368. "require-dev": {
  9369. "phpunit/phpunit": "^9.3"
  9370. },
  9371. "suggest": {
  9372. "ext-posix": "*"
  9373. },
  9374. "type": "library",
  9375. "extra": {
  9376. "branch-alias": {
  9377. "dev-master": "5.1-dev"
  9378. }
  9379. },
  9380. "autoload": {
  9381. "classmap": [
  9382. "src/"
  9383. ]
  9384. },
  9385. "notification-url": "https://packagist.org/downloads/",
  9386. "license": [
  9387. "BSD-3-Clause"
  9388. ],
  9389. "authors": [
  9390. {
  9391. "name": "Sebastian Bergmann",
  9392. "email": "sebastian@phpunit.de"
  9393. }
  9394. ],
  9395. "description": "Provides functionality to handle HHVM/PHP environments",
  9396. "homepage": "http://www.github.com/sebastianbergmann/environment",
  9397. "keywords": [
  9398. "Xdebug",
  9399. "environment",
  9400. "hhvm"
  9401. ],
  9402. "support": {
  9403. "issues": "https://github.com/sebastianbergmann/environment/issues",
  9404. "source": "https://github.com/sebastianbergmann/environment/tree/5.1.5"
  9405. },
  9406. "funding": [
  9407. {
  9408. "url": "https://github.com/sebastianbergmann",
  9409. "type": "github"
  9410. }
  9411. ],
  9412. "time": "2023-02-03T06:03:51+00:00"
  9413. },
  9414. {
  9415. "name": "sebastian/exporter",
  9416. "version": "4.0.6",
  9417. "source": {
  9418. "type": "git",
  9419. "url": "https://github.com/sebastianbergmann/exporter.git",
  9420. "reference": "78c00df8f170e02473b682df15bfcdacc3d32d72"
  9421. },
  9422. "dist": {
  9423. "type": "zip",
  9424. "url": "https://api.github.com/repos/sebastianbergmann/exporter/zipball/78c00df8f170e02473b682df15bfcdacc3d32d72",
  9425. "reference": "78c00df8f170e02473b682df15bfcdacc3d32d72",
  9426. "shasum": ""
  9427. },
  9428. "require": {
  9429. "php": ">=7.3",
  9430. "sebastian/recursion-context": "^4.0"
  9431. },
  9432. "require-dev": {
  9433. "ext-mbstring": "*",
  9434. "phpunit/phpunit": "^9.3"
  9435. },
  9436. "type": "library",
  9437. "extra": {
  9438. "branch-alias": {
  9439. "dev-master": "4.0-dev"
  9440. }
  9441. },
  9442. "autoload": {
  9443. "classmap": [
  9444. "src/"
  9445. ]
  9446. },
  9447. "notification-url": "https://packagist.org/downloads/",
  9448. "license": [
  9449. "BSD-3-Clause"
  9450. ],
  9451. "authors": [
  9452. {
  9453. "name": "Sebastian Bergmann",
  9454. "email": "sebastian@phpunit.de"
  9455. },
  9456. {
  9457. "name": "Jeff Welch",
  9458. "email": "whatthejeff@gmail.com"
  9459. },
  9460. {
  9461. "name": "Volker Dusch",
  9462. "email": "github@wallbash.com"
  9463. },
  9464. {
  9465. "name": "Adam Harvey",
  9466. "email": "aharvey@php.net"
  9467. },
  9468. {
  9469. "name": "Bernhard Schussek",
  9470. "email": "bschussek@gmail.com"
  9471. }
  9472. ],
  9473. "description": "Provides the functionality to export PHP variables for visualization",
  9474. "homepage": "https://www.github.com/sebastianbergmann/exporter",
  9475. "keywords": [
  9476. "export",
  9477. "exporter"
  9478. ],
  9479. "support": {
  9480. "issues": "https://github.com/sebastianbergmann/exporter/issues",
  9481. "source": "https://github.com/sebastianbergmann/exporter/tree/4.0.6"
  9482. },
  9483. "funding": [
  9484. {
  9485. "url": "https://github.com/sebastianbergmann",
  9486. "type": "github"
  9487. }
  9488. ],
  9489. "time": "2024-03-02T06:33:00+00:00"
  9490. },
  9491. {
  9492. "name": "sebastian/global-state",
  9493. "version": "5.0.7",
  9494. "source": {
  9495. "type": "git",
  9496. "url": "https://github.com/sebastianbergmann/global-state.git",
  9497. "reference": "bca7df1f32ee6fe93b4d4a9abbf69e13a4ada2c9"
  9498. },
  9499. "dist": {
  9500. "type": "zip",
  9501. "url": "https://api.github.com/repos/sebastianbergmann/global-state/zipball/bca7df1f32ee6fe93b4d4a9abbf69e13a4ada2c9",
  9502. "reference": "bca7df1f32ee6fe93b4d4a9abbf69e13a4ada2c9",
  9503. "shasum": ""
  9504. },
  9505. "require": {
  9506. "php": ">=7.3",
  9507. "sebastian/object-reflector": "^2.0",
  9508. "sebastian/recursion-context": "^4.0"
  9509. },
  9510. "require-dev": {
  9511. "ext-dom": "*",
  9512. "phpunit/phpunit": "^9.3"
  9513. },
  9514. "suggest": {
  9515. "ext-uopz": "*"
  9516. },
  9517. "type": "library",
  9518. "extra": {
  9519. "branch-alias": {
  9520. "dev-master": "5.0-dev"
  9521. }
  9522. },
  9523. "autoload": {
  9524. "classmap": [
  9525. "src/"
  9526. ]
  9527. },
  9528. "notification-url": "https://packagist.org/downloads/",
  9529. "license": [
  9530. "BSD-3-Clause"
  9531. ],
  9532. "authors": [
  9533. {
  9534. "name": "Sebastian Bergmann",
  9535. "email": "sebastian@phpunit.de"
  9536. }
  9537. ],
  9538. "description": "Snapshotting of global state",
  9539. "homepage": "http://www.github.com/sebastianbergmann/global-state",
  9540. "keywords": [
  9541. "global state"
  9542. ],
  9543. "support": {
  9544. "issues": "https://github.com/sebastianbergmann/global-state/issues",
  9545. "source": "https://github.com/sebastianbergmann/global-state/tree/5.0.7"
  9546. },
  9547. "funding": [
  9548. {
  9549. "url": "https://github.com/sebastianbergmann",
  9550. "type": "github"
  9551. }
  9552. ],
  9553. "time": "2024-03-02T06:35:11+00:00"
  9554. },
  9555. {
  9556. "name": "sebastian/lines-of-code",
  9557. "version": "1.0.4",
  9558. "source": {
  9559. "type": "git",
  9560. "url": "https://github.com/sebastianbergmann/lines-of-code.git",
  9561. "reference": "e1e4a170560925c26d424b6a03aed157e7dcc5c5"
  9562. },
  9563. "dist": {
  9564. "type": "zip",
  9565. "url": "https://api.github.com/repos/sebastianbergmann/lines-of-code/zipball/e1e4a170560925c26d424b6a03aed157e7dcc5c5",
  9566. "reference": "e1e4a170560925c26d424b6a03aed157e7dcc5c5",
  9567. "shasum": ""
  9568. },
  9569. "require": {
  9570. "nikic/php-parser": "^4.18 || ^5.0",
  9571. "php": ">=7.3"
  9572. },
  9573. "require-dev": {
  9574. "phpunit/phpunit": "^9.3"
  9575. },
  9576. "type": "library",
  9577. "extra": {
  9578. "branch-alias": {
  9579. "dev-master": "1.0-dev"
  9580. }
  9581. },
  9582. "autoload": {
  9583. "classmap": [
  9584. "src/"
  9585. ]
  9586. },
  9587. "notification-url": "https://packagist.org/downloads/",
  9588. "license": [
  9589. "BSD-3-Clause"
  9590. ],
  9591. "authors": [
  9592. {
  9593. "name": "Sebastian Bergmann",
  9594. "email": "sebastian@phpunit.de",
  9595. "role": "lead"
  9596. }
  9597. ],
  9598. "description": "Library for counting the lines of code in PHP source code",
  9599. "homepage": "https://github.com/sebastianbergmann/lines-of-code",
  9600. "support": {
  9601. "issues": "https://github.com/sebastianbergmann/lines-of-code/issues",
  9602. "source": "https://github.com/sebastianbergmann/lines-of-code/tree/1.0.4"
  9603. },
  9604. "funding": [
  9605. {
  9606. "url": "https://github.com/sebastianbergmann",
  9607. "type": "github"
  9608. }
  9609. ],
  9610. "time": "2023-12-22T06:20:34+00:00"
  9611. },
  9612. {
  9613. "name": "sebastian/object-enumerator",
  9614. "version": "4.0.4",
  9615. "source": {
  9616. "type": "git",
  9617. "url": "https://github.com/sebastianbergmann/object-enumerator.git",
  9618. "reference": "5c9eeac41b290a3712d88851518825ad78f45c71"
  9619. },
  9620. "dist": {
  9621. "type": "zip",
  9622. "url": "https://api.github.com/repos/sebastianbergmann/object-enumerator/zipball/5c9eeac41b290a3712d88851518825ad78f45c71",
  9623. "reference": "5c9eeac41b290a3712d88851518825ad78f45c71",
  9624. "shasum": ""
  9625. },
  9626. "require": {
  9627. "php": ">=7.3",
  9628. "sebastian/object-reflector": "^2.0",
  9629. "sebastian/recursion-context": "^4.0"
  9630. },
  9631. "require-dev": {
  9632. "phpunit/phpunit": "^9.3"
  9633. },
  9634. "type": "library",
  9635. "extra": {
  9636. "branch-alias": {
  9637. "dev-master": "4.0-dev"
  9638. }
  9639. },
  9640. "autoload": {
  9641. "classmap": [
  9642. "src/"
  9643. ]
  9644. },
  9645. "notification-url": "https://packagist.org/downloads/",
  9646. "license": [
  9647. "BSD-3-Clause"
  9648. ],
  9649. "authors": [
  9650. {
  9651. "name": "Sebastian Bergmann",
  9652. "email": "sebastian@phpunit.de"
  9653. }
  9654. ],
  9655. "description": "Traverses array structures and object graphs to enumerate all referenced objects",
  9656. "homepage": "https://github.com/sebastianbergmann/object-enumerator/",
  9657. "support": {
  9658. "issues": "https://github.com/sebastianbergmann/object-enumerator/issues",
  9659. "source": "https://github.com/sebastianbergmann/object-enumerator/tree/4.0.4"
  9660. },
  9661. "funding": [
  9662. {
  9663. "url": "https://github.com/sebastianbergmann",
  9664. "type": "github"
  9665. }
  9666. ],
  9667. "time": "2020-10-26T13:12:34+00:00"
  9668. },
  9669. {
  9670. "name": "sebastian/object-reflector",
  9671. "version": "2.0.4",
  9672. "source": {
  9673. "type": "git",
  9674. "url": "https://github.com/sebastianbergmann/object-reflector.git",
  9675. "reference": "b4f479ebdbf63ac605d183ece17d8d7fe49c15c7"
  9676. },
  9677. "dist": {
  9678. "type": "zip",
  9679. "url": "https://api.github.com/repos/sebastianbergmann/object-reflector/zipball/b4f479ebdbf63ac605d183ece17d8d7fe49c15c7",
  9680. "reference": "b4f479ebdbf63ac605d183ece17d8d7fe49c15c7",
  9681. "shasum": ""
  9682. },
  9683. "require": {
  9684. "php": ">=7.3"
  9685. },
  9686. "require-dev": {
  9687. "phpunit/phpunit": "^9.3"
  9688. },
  9689. "type": "library",
  9690. "extra": {
  9691. "branch-alias": {
  9692. "dev-master": "2.0-dev"
  9693. }
  9694. },
  9695. "autoload": {
  9696. "classmap": [
  9697. "src/"
  9698. ]
  9699. },
  9700. "notification-url": "https://packagist.org/downloads/",
  9701. "license": [
  9702. "BSD-3-Clause"
  9703. ],
  9704. "authors": [
  9705. {
  9706. "name": "Sebastian Bergmann",
  9707. "email": "sebastian@phpunit.de"
  9708. }
  9709. ],
  9710. "description": "Allows reflection of object attributes, including inherited and non-public ones",
  9711. "homepage": "https://github.com/sebastianbergmann/object-reflector/",
  9712. "support": {
  9713. "issues": "https://github.com/sebastianbergmann/object-reflector/issues",
  9714. "source": "https://github.com/sebastianbergmann/object-reflector/tree/2.0.4"
  9715. },
  9716. "funding": [
  9717. {
  9718. "url": "https://github.com/sebastianbergmann",
  9719. "type": "github"
  9720. }
  9721. ],
  9722. "time": "2020-10-26T13:14:26+00:00"
  9723. },
  9724. {
  9725. "name": "sebastian/recursion-context",
  9726. "version": "4.0.5",
  9727. "source": {
  9728. "type": "git",
  9729. "url": "https://github.com/sebastianbergmann/recursion-context.git",
  9730. "reference": "e75bd0f07204fec2a0af9b0f3cfe97d05f92efc1"
  9731. },
  9732. "dist": {
  9733. "type": "zip",
  9734. "url": "https://api.github.com/repos/sebastianbergmann/recursion-context/zipball/e75bd0f07204fec2a0af9b0f3cfe97d05f92efc1",
  9735. "reference": "e75bd0f07204fec2a0af9b0f3cfe97d05f92efc1",
  9736. "shasum": ""
  9737. },
  9738. "require": {
  9739. "php": ">=7.3"
  9740. },
  9741. "require-dev": {
  9742. "phpunit/phpunit": "^9.3"
  9743. },
  9744. "type": "library",
  9745. "extra": {
  9746. "branch-alias": {
  9747. "dev-master": "4.0-dev"
  9748. }
  9749. },
  9750. "autoload": {
  9751. "classmap": [
  9752. "src/"
  9753. ]
  9754. },
  9755. "notification-url": "https://packagist.org/downloads/",
  9756. "license": [
  9757. "BSD-3-Clause"
  9758. ],
  9759. "authors": [
  9760. {
  9761. "name": "Sebastian Bergmann",
  9762. "email": "sebastian@phpunit.de"
  9763. },
  9764. {
  9765. "name": "Jeff Welch",
  9766. "email": "whatthejeff@gmail.com"
  9767. },
  9768. {
  9769. "name": "Adam Harvey",
  9770. "email": "aharvey@php.net"
  9771. }
  9772. ],
  9773. "description": "Provides functionality to recursively process PHP variables",
  9774. "homepage": "https://github.com/sebastianbergmann/recursion-context",
  9775. "support": {
  9776. "issues": "https://github.com/sebastianbergmann/recursion-context/issues",
  9777. "source": "https://github.com/sebastianbergmann/recursion-context/tree/4.0.5"
  9778. },
  9779. "funding": [
  9780. {
  9781. "url": "https://github.com/sebastianbergmann",
  9782. "type": "github"
  9783. }
  9784. ],
  9785. "time": "2023-02-03T06:07:39+00:00"
  9786. },
  9787. {
  9788. "name": "sebastian/resource-operations",
  9789. "version": "3.0.4",
  9790. "source": {
  9791. "type": "git",
  9792. "url": "https://github.com/sebastianbergmann/resource-operations.git",
  9793. "reference": "05d5692a7993ecccd56a03e40cd7e5b09b1d404e"
  9794. },
  9795. "dist": {
  9796. "type": "zip",
  9797. "url": "https://api.github.com/repos/sebastianbergmann/resource-operations/zipball/05d5692a7993ecccd56a03e40cd7e5b09b1d404e",
  9798. "reference": "05d5692a7993ecccd56a03e40cd7e5b09b1d404e",
  9799. "shasum": ""
  9800. },
  9801. "require": {
  9802. "php": ">=7.3"
  9803. },
  9804. "require-dev": {
  9805. "phpunit/phpunit": "^9.0"
  9806. },
  9807. "type": "library",
  9808. "extra": {
  9809. "branch-alias": {
  9810. "dev-main": "3.0-dev"
  9811. }
  9812. },
  9813. "autoload": {
  9814. "classmap": [
  9815. "src/"
  9816. ]
  9817. },
  9818. "notification-url": "https://packagist.org/downloads/",
  9819. "license": [
  9820. "BSD-3-Clause"
  9821. ],
  9822. "authors": [
  9823. {
  9824. "name": "Sebastian Bergmann",
  9825. "email": "sebastian@phpunit.de"
  9826. }
  9827. ],
  9828. "description": "Provides a list of PHP built-in functions that operate on resources",
  9829. "homepage": "https://www.github.com/sebastianbergmann/resource-operations",
  9830. "support": {
  9831. "source": "https://github.com/sebastianbergmann/resource-operations/tree/3.0.4"
  9832. },
  9833. "funding": [
  9834. {
  9835. "url": "https://github.com/sebastianbergmann",
  9836. "type": "github"
  9837. }
  9838. ],
  9839. "time": "2024-03-14T16:00:52+00:00"
  9840. },
  9841. {
  9842. "name": "sebastian/type",
  9843. "version": "3.2.1",
  9844. "source": {
  9845. "type": "git",
  9846. "url": "https://github.com/sebastianbergmann/type.git",
  9847. "reference": "75e2c2a32f5e0b3aef905b9ed0b179b953b3d7c7"
  9848. },
  9849. "dist": {
  9850. "type": "zip",
  9851. "url": "https://api.github.com/repos/sebastianbergmann/type/zipball/75e2c2a32f5e0b3aef905b9ed0b179b953b3d7c7",
  9852. "reference": "75e2c2a32f5e0b3aef905b9ed0b179b953b3d7c7",
  9853. "shasum": ""
  9854. },
  9855. "require": {
  9856. "php": ">=7.3"
  9857. },
  9858. "require-dev": {
  9859. "phpunit/phpunit": "^9.5"
  9860. },
  9861. "type": "library",
  9862. "extra": {
  9863. "branch-alias": {
  9864. "dev-master": "3.2-dev"
  9865. }
  9866. },
  9867. "autoload": {
  9868. "classmap": [
  9869. "src/"
  9870. ]
  9871. },
  9872. "notification-url": "https://packagist.org/downloads/",
  9873. "license": [
  9874. "BSD-3-Clause"
  9875. ],
  9876. "authors": [
  9877. {
  9878. "name": "Sebastian Bergmann",
  9879. "email": "sebastian@phpunit.de",
  9880. "role": "lead"
  9881. }
  9882. ],
  9883. "description": "Collection of value objects that represent the types of the PHP type system",
  9884. "homepage": "https://github.com/sebastianbergmann/type",
  9885. "support": {
  9886. "issues": "https://github.com/sebastianbergmann/type/issues",
  9887. "source": "https://github.com/sebastianbergmann/type/tree/3.2.1"
  9888. },
  9889. "funding": [
  9890. {
  9891. "url": "https://github.com/sebastianbergmann",
  9892. "type": "github"
  9893. }
  9894. ],
  9895. "time": "2023-02-03T06:13:03+00:00"
  9896. },
  9897. {
  9898. "name": "sebastian/version",
  9899. "version": "3.0.2",
  9900. "source": {
  9901. "type": "git",
  9902. "url": "https://github.com/sebastianbergmann/version.git",
  9903. "reference": "c6c1022351a901512170118436c764e473f6de8c"
  9904. },
  9905. "dist": {
  9906. "type": "zip",
  9907. "url": "https://api.github.com/repos/sebastianbergmann/version/zipball/c6c1022351a901512170118436c764e473f6de8c",
  9908. "reference": "c6c1022351a901512170118436c764e473f6de8c",
  9909. "shasum": ""
  9910. },
  9911. "require": {
  9912. "php": ">=7.3"
  9913. },
  9914. "type": "library",
  9915. "extra": {
  9916. "branch-alias": {
  9917. "dev-master": "3.0-dev"
  9918. }
  9919. },
  9920. "autoload": {
  9921. "classmap": [
  9922. "src/"
  9923. ]
  9924. },
  9925. "notification-url": "https://packagist.org/downloads/",
  9926. "license": [
  9927. "BSD-3-Clause"
  9928. ],
  9929. "authors": [
  9930. {
  9931. "name": "Sebastian Bergmann",
  9932. "email": "sebastian@phpunit.de",
  9933. "role": "lead"
  9934. }
  9935. ],
  9936. "description": "Library that helps with managing the version number of Git-hosted PHP projects",
  9937. "homepage": "https://github.com/sebastianbergmann/version",
  9938. "support": {
  9939. "issues": "https://github.com/sebastianbergmann/version/issues",
  9940. "source": "https://github.com/sebastianbergmann/version/tree/3.0.2"
  9941. },
  9942. "funding": [
  9943. {
  9944. "url": "https://github.com/sebastianbergmann",
  9945. "type": "github"
  9946. }
  9947. ],
  9948. "time": "2020-09-28T06:39:44+00:00"
  9949. },
  9950. {
  9951. "name": "symfony/browser-kit",
  9952. "version": "v7.1.6",
  9953. "source": {
  9954. "type": "git",
  9955. "url": "https://github.com/symfony/browser-kit.git",
  9956. "reference": "714becc9ba9b20115ffededc58f6b7172dc394cf"
  9957. },
  9958. "dist": {
  9959. "type": "zip",
  9960. "url": "https://api.github.com/repos/symfony/browser-kit/zipball/714becc9ba9b20115ffededc58f6b7172dc394cf",
  9961. "reference": "714becc9ba9b20115ffededc58f6b7172dc394cf",
  9962. "shasum": ""
  9963. },
  9964. "require": {
  9965. "php": ">=8.2",
  9966. "symfony/dom-crawler": "^6.4|^7.0"
  9967. },
  9968. "require-dev": {
  9969. "symfony/css-selector": "^6.4|^7.0",
  9970. "symfony/http-client": "^6.4|^7.0",
  9971. "symfony/mime": "^6.4|^7.0",
  9972. "symfony/process": "^6.4|^7.0"
  9973. },
  9974. "type": "library",
  9975. "autoload": {
  9976. "psr-4": {
  9977. "Symfony\\Component\\BrowserKit\\": ""
  9978. },
  9979. "exclude-from-classmap": [
  9980. "/Tests/"
  9981. ]
  9982. },
  9983. "notification-url": "https://packagist.org/downloads/",
  9984. "license": [
  9985. "MIT"
  9986. ],
  9987. "authors": [
  9988. {
  9989. "name": "Fabien Potencier",
  9990. "email": "fabien@symfony.com"
  9991. },
  9992. {
  9993. "name": "Symfony Community",
  9994. "homepage": "https://symfony.com/contributors"
  9995. }
  9996. ],
  9997. "description": "Simulates the behavior of a web browser, allowing you to make requests, click on links and submit forms programmatically",
  9998. "homepage": "https://symfony.com",
  9999. "support": {
  10000. "source": "https://github.com/symfony/browser-kit/tree/v7.1.6"
  10001. },
  10002. "funding": [
  10003. {
  10004. "url": "https://symfony.com/sponsor",
  10005. "type": "custom"
  10006. },
  10007. {
  10008. "url": "https://github.com/fabpot",
  10009. "type": "github"
  10010. },
  10011. {
  10012. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  10013. "type": "tidelift"
  10014. }
  10015. ],
  10016. "time": "2024-10-25T15:11:02+00:00"
  10017. },
  10018. {
  10019. "name": "symfony/css-selector",
  10020. "version": "v7.1.6",
  10021. "source": {
  10022. "type": "git",
  10023. "url": "https://github.com/symfony/css-selector.git",
  10024. "reference": "4aa4f6b3d6749c14d3aa815eef8226632e7bbc66"
  10025. },
  10026. "dist": {
  10027. "type": "zip",
  10028. "url": "https://api.github.com/repos/symfony/css-selector/zipball/4aa4f6b3d6749c14d3aa815eef8226632e7bbc66",
  10029. "reference": "4aa4f6b3d6749c14d3aa815eef8226632e7bbc66",
  10030. "shasum": ""
  10031. },
  10032. "require": {
  10033. "php": ">=8.2"
  10034. },
  10035. "type": "library",
  10036. "autoload": {
  10037. "psr-4": {
  10038. "Symfony\\Component\\CssSelector\\": ""
  10039. },
  10040. "exclude-from-classmap": [
  10041. "/Tests/"
  10042. ]
  10043. },
  10044. "notification-url": "https://packagist.org/downloads/",
  10045. "license": [
  10046. "MIT"
  10047. ],
  10048. "authors": [
  10049. {
  10050. "name": "Fabien Potencier",
  10051. "email": "fabien@symfony.com"
  10052. },
  10053. {
  10054. "name": "Jean-François Simon",
  10055. "email": "jeanfrancois.simon@sensiolabs.com"
  10056. },
  10057. {
  10058. "name": "Symfony Community",
  10059. "homepage": "https://symfony.com/contributors"
  10060. }
  10061. ],
  10062. "description": "Converts CSS selectors to XPath expressions",
  10063. "homepage": "https://symfony.com",
  10064. "support": {
  10065. "source": "https://github.com/symfony/css-selector/tree/v7.1.6"
  10066. },
  10067. "funding": [
  10068. {
  10069. "url": "https://symfony.com/sponsor",
  10070. "type": "custom"
  10071. },
  10072. {
  10073. "url": "https://github.com/fabpot",
  10074. "type": "github"
  10075. },
  10076. {
  10077. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  10078. "type": "tidelift"
  10079. }
  10080. ],
  10081. "time": "2024-09-25T14:20:29+00:00"
  10082. },
  10083. {
  10084. "name": "symfony/debug-bundle",
  10085. "version": "v7.1.6",
  10086. "source": {
  10087. "type": "git",
  10088. "url": "https://github.com/symfony/debug-bundle.git",
  10089. "reference": "c91a650aa390071d22dfaf32c2ff77fda27e9583"
  10090. },
  10091. "dist": {
  10092. "type": "zip",
  10093. "url": "https://api.github.com/repos/symfony/debug-bundle/zipball/c91a650aa390071d22dfaf32c2ff77fda27e9583",
  10094. "reference": "c91a650aa390071d22dfaf32c2ff77fda27e9583",
  10095. "shasum": ""
  10096. },
  10097. "require": {
  10098. "ext-xml": "*",
  10099. "php": ">=8.2",
  10100. "symfony/dependency-injection": "^6.4|^7.0",
  10101. "symfony/http-kernel": "^6.4|^7.0",
  10102. "symfony/twig-bridge": "^6.4|^7.0",
  10103. "symfony/var-dumper": "^6.4|^7.0"
  10104. },
  10105. "conflict": {
  10106. "symfony/config": "<6.4",
  10107. "symfony/dependency-injection": "<6.4"
  10108. },
  10109. "require-dev": {
  10110. "symfony/config": "^6.4|^7.0",
  10111. "symfony/web-profiler-bundle": "^6.4|^7.0"
  10112. },
  10113. "type": "symfony-bundle",
  10114. "autoload": {
  10115. "psr-4": {
  10116. "Symfony\\Bundle\\DebugBundle\\": ""
  10117. },
  10118. "exclude-from-classmap": [
  10119. "/Tests/"
  10120. ]
  10121. },
  10122. "notification-url": "https://packagist.org/downloads/",
  10123. "license": [
  10124. "MIT"
  10125. ],
  10126. "authors": [
  10127. {
  10128. "name": "Fabien Potencier",
  10129. "email": "fabien@symfony.com"
  10130. },
  10131. {
  10132. "name": "Symfony Community",
  10133. "homepage": "https://symfony.com/contributors"
  10134. }
  10135. ],
  10136. "description": "Provides a tight integration of the Symfony VarDumper component and the ServerLogCommand from MonologBridge into the Symfony full-stack framework",
  10137. "homepage": "https://symfony.com",
  10138. "support": {
  10139. "source": "https://github.com/symfony/debug-bundle/tree/v7.1.6"
  10140. },
  10141. "funding": [
  10142. {
  10143. "url": "https://symfony.com/sponsor",
  10144. "type": "custom"
  10145. },
  10146. {
  10147. "url": "https://github.com/fabpot",
  10148. "type": "github"
  10149. },
  10150. {
  10151. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  10152. "type": "tidelift"
  10153. }
  10154. ],
  10155. "time": "2024-09-25T14:20:29+00:00"
  10156. },
  10157. {
  10158. "name": "symfony/dom-crawler",
  10159. "version": "v7.1.11",
  10160. "source": {
  10161. "type": "git",
  10162. "url": "https://github.com/symfony/dom-crawler.git",
  10163. "reference": "7361d8f7e7eecbca17efe68ca1ee677bf23cfe5a"
  10164. },
  10165. "dist": {
  10166. "type": "zip",
  10167. "url": "https://api.github.com/repos/symfony/dom-crawler/zipball/7361d8f7e7eecbca17efe68ca1ee677bf23cfe5a",
  10168. "reference": "7361d8f7e7eecbca17efe68ca1ee677bf23cfe5a",
  10169. "shasum": ""
  10170. },
  10171. "require": {
  10172. "masterminds/html5": "^2.6",
  10173. "php": ">=8.2",
  10174. "symfony/polyfill-ctype": "~1.8",
  10175. "symfony/polyfill-mbstring": "~1.0"
  10176. },
  10177. "require-dev": {
  10178. "symfony/css-selector": "^6.4|^7.0"
  10179. },
  10180. "type": "library",
  10181. "autoload": {
  10182. "psr-4": {
  10183. "Symfony\\Component\\DomCrawler\\": ""
  10184. },
  10185. "exclude-from-classmap": [
  10186. "/Tests/"
  10187. ]
  10188. },
  10189. "notification-url": "https://packagist.org/downloads/",
  10190. "license": [
  10191. "MIT"
  10192. ],
  10193. "authors": [
  10194. {
  10195. "name": "Fabien Potencier",
  10196. "email": "fabien@symfony.com"
  10197. },
  10198. {
  10199. "name": "Symfony Community",
  10200. "homepage": "https://symfony.com/contributors"
  10201. }
  10202. ],
  10203. "description": "Eases DOM navigation for HTML and XML documents",
  10204. "homepage": "https://symfony.com",
  10205. "support": {
  10206. "source": "https://github.com/symfony/dom-crawler/tree/v7.1.11"
  10207. },
  10208. "funding": [
  10209. {
  10210. "url": "https://symfony.com/sponsor",
  10211. "type": "custom"
  10212. },
  10213. {
  10214. "url": "https://github.com/fabpot",
  10215. "type": "github"
  10216. },
  10217. {
  10218. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  10219. "type": "tidelift"
  10220. }
  10221. ],
  10222. "time": "2025-01-27T10:57:12+00:00"
  10223. },
  10224. {
  10225. "name": "symfony/maker-bundle",
  10226. "version": "v1.62.1",
  10227. "source": {
  10228. "type": "git",
  10229. "url": "https://github.com/symfony/maker-bundle.git",
  10230. "reference": "468ff2708200c95ebc0d85d3174b6c6711b8a590"
  10231. },
  10232. "dist": {
  10233. "type": "zip",
  10234. "url": "https://api.github.com/repos/symfony/maker-bundle/zipball/468ff2708200c95ebc0d85d3174b6c6711b8a590",
  10235. "reference": "468ff2708200c95ebc0d85d3174b6c6711b8a590",
  10236. "shasum": ""
  10237. },
  10238. "require": {
  10239. "doctrine/inflector": "^2.0",
  10240. "nikic/php-parser": "^4.18|^5.0",
  10241. "php": ">=8.1",
  10242. "symfony/config": "^6.4|^7.0",
  10243. "symfony/console": "^6.4|^7.0",
  10244. "symfony/dependency-injection": "^6.4|^7.0",
  10245. "symfony/deprecation-contracts": "^2.2|^3",
  10246. "symfony/filesystem": "^6.4|^7.0",
  10247. "symfony/finder": "^6.4|^7.0",
  10248. "symfony/framework-bundle": "^6.4|^7.0",
  10249. "symfony/http-kernel": "^6.4|^7.0",
  10250. "symfony/process": "^6.4|^7.0"
  10251. },
  10252. "conflict": {
  10253. "doctrine/doctrine-bundle": "<2.10",
  10254. "doctrine/orm": "<2.15"
  10255. },
  10256. "require-dev": {
  10257. "composer/semver": "^3.0",
  10258. "doctrine/doctrine-bundle": "^2.5.0",
  10259. "doctrine/orm": "^2.15|^3",
  10260. "symfony/http-client": "^6.4|^7.0",
  10261. "symfony/phpunit-bridge": "^6.4.1|^7.0",
  10262. "symfony/security-core": "^6.4|^7.0",
  10263. "symfony/yaml": "^6.4|^7.0",
  10264. "twig/twig": "^3.0|^4.x-dev"
  10265. },
  10266. "type": "symfony-bundle",
  10267. "extra": {
  10268. "branch-alias": {
  10269. "dev-main": "1.x-dev"
  10270. }
  10271. },
  10272. "autoload": {
  10273. "psr-4": {
  10274. "Symfony\\Bundle\\MakerBundle\\": "src/"
  10275. }
  10276. },
  10277. "notification-url": "https://packagist.org/downloads/",
  10278. "license": [
  10279. "MIT"
  10280. ],
  10281. "authors": [
  10282. {
  10283. "name": "Symfony Community",
  10284. "homepage": "https://symfony.com/contributors"
  10285. }
  10286. ],
  10287. "description": "Symfony Maker helps you create empty commands, controllers, form classes, tests and more so you can forget about writing boilerplate code.",
  10288. "homepage": "https://symfony.com/doc/current/bundles/SymfonyMakerBundle/index.html",
  10289. "keywords": [
  10290. "code generator",
  10291. "dev",
  10292. "generator",
  10293. "scaffold",
  10294. "scaffolding"
  10295. ],
  10296. "support": {
  10297. "issues": "https://github.com/symfony/maker-bundle/issues",
  10298. "source": "https://github.com/symfony/maker-bundle/tree/v1.62.1"
  10299. },
  10300. "funding": [
  10301. {
  10302. "url": "https://symfony.com/sponsor",
  10303. "type": "custom"
  10304. },
  10305. {
  10306. "url": "https://github.com/fabpot",
  10307. "type": "github"
  10308. },
  10309. {
  10310. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  10311. "type": "tidelift"
  10312. }
  10313. ],
  10314. "time": "2025-01-15T00:21:40+00:00"
  10315. },
  10316. {
  10317. "name": "symfony/phpunit-bridge",
  10318. "version": "v7.1.9",
  10319. "source": {
  10320. "type": "git",
  10321. "url": "https://github.com/symfony/phpunit-bridge.git",
  10322. "reference": "c924f857dddcb7a6030b853ff069f039a4883fad"
  10323. },
  10324. "dist": {
  10325. "type": "zip",
  10326. "url": "https://api.github.com/repos/symfony/phpunit-bridge/zipball/c924f857dddcb7a6030b853ff069f039a4883fad",
  10327. "reference": "c924f857dddcb7a6030b853ff069f039a4883fad",
  10328. "shasum": ""
  10329. },
  10330. "require": {
  10331. "php": ">=7.2.5"
  10332. },
  10333. "conflict": {
  10334. "phpunit/phpunit": "<7.5|9.1.2"
  10335. },
  10336. "require-dev": {
  10337. "symfony/deprecation-contracts": "^2.5|^3.0",
  10338. "symfony/error-handler": "^5.4|^6.4|^7.0",
  10339. "symfony/polyfill-php81": "^1.27"
  10340. },
  10341. "bin": [
  10342. "bin/simple-phpunit"
  10343. ],
  10344. "type": "symfony-bridge",
  10345. "extra": {
  10346. "thanks": {
  10347. "url": "https://github.com/sebastianbergmann/phpunit",
  10348. "name": "phpunit/phpunit"
  10349. }
  10350. },
  10351. "autoload": {
  10352. "files": [
  10353. "bootstrap.php"
  10354. ],
  10355. "psr-4": {
  10356. "Symfony\\Bridge\\PhpUnit\\": ""
  10357. },
  10358. "exclude-from-classmap": [
  10359. "/Tests/",
  10360. "/bin/"
  10361. ]
  10362. },
  10363. "notification-url": "https://packagist.org/downloads/",
  10364. "license": [
  10365. "MIT"
  10366. ],
  10367. "authors": [
  10368. {
  10369. "name": "Nicolas Grekas",
  10370. "email": "p@tchwork.com"
  10371. },
  10372. {
  10373. "name": "Symfony Community",
  10374. "homepage": "https://symfony.com/contributors"
  10375. }
  10376. ],
  10377. "description": "Provides utilities for PHPUnit, especially user deprecation notices management",
  10378. "homepage": "https://symfony.com",
  10379. "support": {
  10380. "source": "https://github.com/symfony/phpunit-bridge/tree/v7.1.9"
  10381. },
  10382. "funding": [
  10383. {
  10384. "url": "https://symfony.com/sponsor",
  10385. "type": "custom"
  10386. },
  10387. {
  10388. "url": "https://github.com/fabpot",
  10389. "type": "github"
  10390. },
  10391. {
  10392. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  10393. "type": "tidelift"
  10394. }
  10395. ],
  10396. "time": "2024-11-13T15:09:09+00:00"
  10397. },
  10398. {
  10399. "name": "symfony/web-profiler-bundle",
  10400. "version": "v7.1.11",
  10401. "source": {
  10402. "type": "git",
  10403. "url": "https://github.com/symfony/web-profiler-bundle.git",
  10404. "reference": "328b2728bb5d85d0d38b18d1458834098202afe2"
  10405. },
  10406. "dist": {
  10407. "type": "zip",
  10408. "url": "https://api.github.com/repos/symfony/web-profiler-bundle/zipball/328b2728bb5d85d0d38b18d1458834098202afe2",
  10409. "reference": "328b2728bb5d85d0d38b18d1458834098202afe2",
  10410. "shasum": ""
  10411. },
  10412. "require": {
  10413. "php": ">=8.2",
  10414. "symfony/config": "^6.4|^7.0",
  10415. "symfony/framework-bundle": "^6.4|^7.0",
  10416. "symfony/http-kernel": "^6.4|^7.0",
  10417. "symfony/routing": "^6.4|^7.0",
  10418. "symfony/twig-bundle": "^6.4|^7.0",
  10419. "twig/twig": "^3.10"
  10420. },
  10421. "conflict": {
  10422. "symfony/form": "<6.4",
  10423. "symfony/mailer": "<6.4",
  10424. "symfony/messenger": "<6.4"
  10425. },
  10426. "require-dev": {
  10427. "symfony/browser-kit": "^6.4|^7.0",
  10428. "symfony/console": "^6.4|^7.0",
  10429. "symfony/css-selector": "^6.4|^7.0",
  10430. "symfony/stopwatch": "^6.4|^7.0"
  10431. },
  10432. "type": "symfony-bundle",
  10433. "autoload": {
  10434. "psr-4": {
  10435. "Symfony\\Bundle\\WebProfilerBundle\\": ""
  10436. },
  10437. "exclude-from-classmap": [
  10438. "/Tests/"
  10439. ]
  10440. },
  10441. "notification-url": "https://packagist.org/downloads/",
  10442. "license": [
  10443. "MIT"
  10444. ],
  10445. "authors": [
  10446. {
  10447. "name": "Fabien Potencier",
  10448. "email": "fabien@symfony.com"
  10449. },
  10450. {
  10451. "name": "Symfony Community",
  10452. "homepage": "https://symfony.com/contributors"
  10453. }
  10454. ],
  10455. "description": "Provides a development tool that gives detailed information about the execution of any request",
  10456. "homepage": "https://symfony.com",
  10457. "keywords": [
  10458. "dev"
  10459. ],
  10460. "support": {
  10461. "source": "https://github.com/symfony/web-profiler-bundle/tree/v7.1.11"
  10462. },
  10463. "funding": [
  10464. {
  10465. "url": "https://symfony.com/sponsor",
  10466. "type": "custom"
  10467. },
  10468. {
  10469. "url": "https://github.com/fabpot",
  10470. "type": "github"
  10471. },
  10472. {
  10473. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  10474. "type": "tidelift"
  10475. }
  10476. ],
  10477. "time": "2025-01-07T09:23:14+00:00"
  10478. },
  10479. {
  10480. "name": "theseer/tokenizer",
  10481. "version": "1.2.3",
  10482. "source": {
  10483. "type": "git",
  10484. "url": "https://github.com/theseer/tokenizer.git",
  10485. "reference": "737eda637ed5e28c3413cb1ebe8bb52cbf1ca7a2"
  10486. },
  10487. "dist": {
  10488. "type": "zip",
  10489. "url": "https://api.github.com/repos/theseer/tokenizer/zipball/737eda637ed5e28c3413cb1ebe8bb52cbf1ca7a2",
  10490. "reference": "737eda637ed5e28c3413cb1ebe8bb52cbf1ca7a2",
  10491. "shasum": ""
  10492. },
  10493. "require": {
  10494. "ext-dom": "*",
  10495. "ext-tokenizer": "*",
  10496. "ext-xmlwriter": "*",
  10497. "php": "^7.2 || ^8.0"
  10498. },
  10499. "type": "library",
  10500. "autoload": {
  10501. "classmap": [
  10502. "src/"
  10503. ]
  10504. },
  10505. "notification-url": "https://packagist.org/downloads/",
  10506. "license": [
  10507. "BSD-3-Clause"
  10508. ],
  10509. "authors": [
  10510. {
  10511. "name": "Arne Blankerts",
  10512. "email": "arne@blankerts.de",
  10513. "role": "Developer"
  10514. }
  10515. ],
  10516. "description": "A small library for converting tokenized PHP source code into XML and potentially other formats",
  10517. "support": {
  10518. "issues": "https://github.com/theseer/tokenizer/issues",
  10519. "source": "https://github.com/theseer/tokenizer/tree/1.2.3"
  10520. },
  10521. "funding": [
  10522. {
  10523. "url": "https://github.com/theseer",
  10524. "type": "github"
  10525. }
  10526. ],
  10527. "time": "2024-03-03T12:36:25+00:00"
  10528. }
  10529. ],
  10530. "aliases": [],
  10531. "minimum-stability": "stable",
  10532. "stability-flags": {},
  10533. "prefer-stable": false,
  10534. "prefer-lowest": false,
  10535. "platform": {
  10536. "php": "^8.2",
  10537. "ext-ctype": "*",
  10538. "ext-iconv": "*"
  10539. },
  10540. "platform-dev": {},
  10541. "platform-overrides": {
  10542. "php": "8.2"
  10543. },
  10544. "plugin-api-version": "2.6.0"
  10545. }