composer.lock 386 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298529953005301530253035304530553065307530853095310531153125313531453155316531753185319532053215322532353245325532653275328532953305331533253335334533553365337533853395340534153425343534453455346534753485349535053515352535353545355535653575358535953605361536253635364536553665367536853695370537153725373537453755376537753785379538053815382538353845385538653875388538953905391539253935394539553965397539853995400540154025403540454055406540754085409541054115412541354145415541654175418541954205421542254235424542554265427542854295430543154325433543454355436543754385439544054415442544354445445544654475448544954505451545254535454545554565457545854595460546154625463546454655466546754685469547054715472547354745475547654775478547954805481548254835484548554865487548854895490549154925493549454955496549754985499550055015502550355045505550655075508550955105511551255135514551555165517551855195520552155225523552455255526552755285529553055315532553355345535553655375538553955405541554255435544554555465547554855495550555155525553555455555556555755585559556055615562556355645565556655675568556955705571557255735574557555765577557855795580558155825583558455855586558755885589559055915592559355945595559655975598559956005601560256035604560556065607560856095610561156125613561456155616561756185619562056215622562356245625562656275628562956305631563256335634563556365637563856395640564156425643564456455646564756485649565056515652565356545655565656575658565956605661566256635664566556665667566856695670567156725673567456755676567756785679568056815682568356845685568656875688568956905691569256935694569556965697569856995700570157025703570457055706570757085709571057115712571357145715571657175718571957205721572257235724572557265727572857295730573157325733573457355736573757385739574057415742574357445745574657475748574957505751575257535754575557565757575857595760576157625763576457655766576757685769577057715772577357745775577657775778577957805781578257835784578557865787578857895790579157925793579457955796579757985799580058015802580358045805580658075808580958105811581258135814581558165817581858195820582158225823582458255826582758285829583058315832583358345835583658375838583958405841584258435844584558465847584858495850585158525853585458555856585758585859586058615862586358645865586658675868586958705871587258735874587558765877587858795880588158825883588458855886588758885889589058915892589358945895589658975898589959005901590259035904590559065907590859095910591159125913591459155916591759185919592059215922592359245925592659275928592959305931593259335934593559365937593859395940594159425943594459455946594759485949595059515952595359545955595659575958595959605961596259635964596559665967596859695970597159725973597459755976597759785979598059815982598359845985598659875988598959905991599259935994599559965997599859996000600160026003600460056006600760086009601060116012601360146015601660176018601960206021602260236024602560266027602860296030603160326033603460356036603760386039604060416042604360446045604660476048604960506051605260536054605560566057605860596060606160626063606460656066606760686069607060716072607360746075607660776078607960806081608260836084608560866087608860896090609160926093609460956096609760986099610061016102610361046105610661076108610961106111611261136114611561166117611861196120612161226123612461256126612761286129613061316132613361346135613661376138613961406141614261436144614561466147614861496150615161526153615461556156615761586159616061616162616361646165616661676168616961706171617261736174617561766177617861796180618161826183618461856186618761886189619061916192619361946195619661976198619962006201620262036204620562066207620862096210621162126213621462156216621762186219622062216222622362246225622662276228622962306231623262336234623562366237623862396240624162426243624462456246624762486249625062516252625362546255625662576258625962606261626262636264626562666267626862696270627162726273627462756276627762786279628062816282628362846285628662876288628962906291629262936294629562966297629862996300630163026303630463056306630763086309631063116312631363146315631663176318631963206321632263236324632563266327632863296330633163326333633463356336633763386339634063416342634363446345634663476348634963506351635263536354635563566357635863596360636163626363636463656366636763686369637063716372637363746375637663776378637963806381638263836384638563866387638863896390639163926393639463956396639763986399640064016402640364046405640664076408640964106411641264136414641564166417641864196420642164226423642464256426642764286429643064316432643364346435643664376438643964406441644264436444644564466447644864496450645164526453645464556456645764586459646064616462646364646465646664676468646964706471647264736474647564766477647864796480648164826483648464856486648764886489649064916492649364946495649664976498649965006501650265036504650565066507650865096510651165126513651465156516651765186519652065216522652365246525652665276528652965306531653265336534653565366537653865396540654165426543654465456546654765486549655065516552655365546555655665576558655965606561656265636564656565666567656865696570657165726573657465756576657765786579658065816582658365846585658665876588658965906591659265936594659565966597659865996600660166026603660466056606660766086609661066116612661366146615661666176618661966206621662266236624662566266627662866296630663166326633663466356636663766386639664066416642664366446645664666476648664966506651665266536654665566566657665866596660666166626663666466656666666766686669667066716672667366746675667666776678667966806681668266836684668566866687668866896690669166926693669466956696669766986699670067016702670367046705670667076708670967106711671267136714671567166717671867196720672167226723672467256726672767286729673067316732673367346735673667376738673967406741674267436744674567466747674867496750675167526753675467556756675767586759676067616762676367646765676667676768676967706771677267736774677567766777677867796780678167826783678467856786678767886789679067916792679367946795679667976798679968006801680268036804680568066807680868096810681168126813681468156816681768186819682068216822682368246825682668276828682968306831683268336834683568366837683868396840684168426843684468456846684768486849685068516852685368546855685668576858685968606861686268636864686568666867686868696870687168726873687468756876687768786879688068816882688368846885688668876888688968906891689268936894689568966897689868996900690169026903690469056906690769086909691069116912691369146915691669176918691969206921692269236924692569266927692869296930693169326933693469356936693769386939694069416942694369446945694669476948694969506951695269536954695569566957695869596960696169626963696469656966696769686969697069716972697369746975697669776978697969806981698269836984698569866987698869896990699169926993699469956996699769986999700070017002700370047005700670077008700970107011701270137014701570167017701870197020702170227023702470257026702770287029703070317032703370347035703670377038703970407041704270437044704570467047704870497050705170527053705470557056705770587059706070617062706370647065706670677068706970707071707270737074707570767077707870797080708170827083708470857086708770887089709070917092709370947095709670977098709971007101710271037104710571067107710871097110711171127113711471157116711771187119712071217122712371247125712671277128712971307131713271337134713571367137713871397140714171427143714471457146714771487149715071517152715371547155715671577158715971607161716271637164716571667167716871697170717171727173717471757176717771787179718071817182718371847185718671877188718971907191719271937194719571967197719871997200720172027203720472057206720772087209721072117212721372147215721672177218721972207221722272237224722572267227722872297230723172327233723472357236723772387239724072417242724372447245724672477248724972507251725272537254725572567257725872597260726172627263726472657266726772687269727072717272727372747275727672777278727972807281728272837284728572867287728872897290729172927293729472957296729772987299730073017302730373047305730673077308730973107311731273137314731573167317731873197320732173227323732473257326732773287329733073317332733373347335733673377338733973407341734273437344734573467347734873497350735173527353735473557356735773587359736073617362736373647365736673677368736973707371737273737374737573767377737873797380738173827383738473857386738773887389739073917392739373947395739673977398739974007401740274037404740574067407740874097410741174127413741474157416741774187419742074217422742374247425742674277428742974307431743274337434743574367437743874397440744174427443744474457446744774487449745074517452745374547455745674577458745974607461746274637464746574667467746874697470747174727473747474757476747774787479748074817482748374847485748674877488748974907491749274937494749574967497749874997500750175027503750475057506750775087509751075117512751375147515751675177518751975207521752275237524752575267527752875297530753175327533753475357536753775387539754075417542754375447545754675477548754975507551755275537554755575567557755875597560756175627563756475657566756775687569757075717572757375747575757675777578757975807581758275837584758575867587758875897590759175927593759475957596759775987599760076017602760376047605760676077608760976107611761276137614761576167617761876197620762176227623762476257626762776287629763076317632763376347635763676377638763976407641764276437644764576467647764876497650765176527653765476557656765776587659766076617662766376647665766676677668766976707671767276737674767576767677767876797680768176827683768476857686768776887689769076917692769376947695769676977698769977007701770277037704770577067707770877097710771177127713771477157716771777187719772077217722772377247725772677277728772977307731773277337734773577367737773877397740774177427743774477457746774777487749775077517752775377547755775677577758775977607761776277637764776577667767776877697770777177727773777477757776777777787779778077817782778377847785778677877788778977907791779277937794779577967797779877997800780178027803780478057806780778087809781078117812781378147815781678177818781978207821782278237824782578267827782878297830783178327833783478357836783778387839784078417842784378447845784678477848784978507851785278537854785578567857785878597860786178627863786478657866786778687869787078717872787378747875787678777878787978807881788278837884788578867887788878897890789178927893789478957896789778987899790079017902790379047905790679077908790979107911791279137914791579167917791879197920792179227923792479257926792779287929793079317932793379347935793679377938793979407941794279437944794579467947794879497950795179527953795479557956795779587959796079617962796379647965796679677968796979707971797279737974797579767977797879797980798179827983798479857986798779887989799079917992799379947995799679977998799980008001800280038004800580068007800880098010801180128013801480158016801780188019802080218022802380248025802680278028802980308031803280338034803580368037803880398040804180428043804480458046804780488049805080518052805380548055805680578058805980608061806280638064806580668067806880698070807180728073807480758076807780788079808080818082808380848085808680878088808980908091809280938094809580968097809880998100810181028103810481058106810781088109811081118112811381148115811681178118811981208121812281238124812581268127812881298130813181328133813481358136813781388139814081418142814381448145814681478148814981508151815281538154815581568157815881598160816181628163816481658166816781688169817081718172817381748175817681778178817981808181818281838184818581868187818881898190819181928193819481958196819781988199820082018202820382048205820682078208820982108211821282138214821582168217821882198220822182228223822482258226822782288229823082318232823382348235823682378238823982408241824282438244824582468247824882498250825182528253825482558256825782588259826082618262826382648265826682678268826982708271827282738274827582768277827882798280828182828283828482858286828782888289829082918292829382948295829682978298829983008301830283038304830583068307830883098310831183128313831483158316831783188319832083218322832383248325832683278328832983308331833283338334833583368337833883398340834183428343834483458346834783488349835083518352835383548355835683578358835983608361836283638364836583668367836883698370837183728373837483758376837783788379838083818382838383848385838683878388838983908391839283938394839583968397839883998400840184028403840484058406840784088409841084118412841384148415841684178418841984208421842284238424842584268427842884298430843184328433843484358436843784388439844084418442844384448445844684478448844984508451845284538454845584568457845884598460846184628463846484658466846784688469847084718472847384748475847684778478847984808481848284838484848584868487848884898490849184928493849484958496849784988499850085018502850385048505850685078508850985108511851285138514851585168517851885198520852185228523852485258526852785288529853085318532853385348535853685378538853985408541854285438544854585468547854885498550855185528553855485558556855785588559856085618562856385648565856685678568856985708571857285738574857585768577857885798580858185828583858485858586858785888589859085918592859385948595859685978598859986008601860286038604860586068607860886098610861186128613861486158616861786188619862086218622862386248625862686278628862986308631863286338634863586368637863886398640864186428643864486458646864786488649865086518652865386548655865686578658865986608661866286638664866586668667866886698670867186728673867486758676867786788679868086818682868386848685868686878688868986908691869286938694869586968697869886998700870187028703870487058706870787088709871087118712871387148715871687178718871987208721872287238724872587268727872887298730873187328733873487358736873787388739874087418742874387448745874687478748874987508751875287538754875587568757875887598760876187628763876487658766876787688769877087718772877387748775877687778778877987808781878287838784878587868787878887898790879187928793879487958796879787988799880088018802880388048805880688078808880988108811881288138814881588168817881888198820882188228823882488258826882788288829883088318832883388348835883688378838883988408841884288438844884588468847884888498850885188528853885488558856885788588859886088618862886388648865886688678868886988708871887288738874887588768877887888798880888188828883888488858886888788888889889088918892889388948895889688978898889989008901890289038904890589068907890889098910891189128913891489158916891789188919892089218922892389248925892689278928892989308931893289338934893589368937893889398940894189428943894489458946894789488949895089518952895389548955895689578958895989608961896289638964896589668967896889698970897189728973897489758976897789788979898089818982898389848985898689878988898989908991899289938994899589968997899889999000900190029003900490059006900790089009901090119012901390149015901690179018901990209021902290239024902590269027902890299030903190329033903490359036903790389039904090419042904390449045904690479048904990509051905290539054905590569057905890599060906190629063906490659066906790689069907090719072907390749075907690779078907990809081908290839084908590869087908890899090909190929093909490959096909790989099910091019102910391049105910691079108910991109111911291139114911591169117911891199120912191229123912491259126912791289129913091319132913391349135913691379138913991409141914291439144914591469147914891499150915191529153915491559156915791589159916091619162916391649165916691679168916991709171917291739174917591769177917891799180918191829183918491859186918791889189919091919192919391949195919691979198919992009201920292039204920592069207920892099210921192129213921492159216921792189219922092219222922392249225922692279228922992309231923292339234923592369237923892399240924192429243924492459246924792489249925092519252925392549255925692579258925992609261926292639264926592669267926892699270927192729273927492759276927792789279928092819282928392849285928692879288928992909291929292939294929592969297929892999300930193029303930493059306930793089309931093119312931393149315931693179318931993209321932293239324932593269327932893299330933193329333933493359336933793389339934093419342934393449345934693479348934993509351935293539354935593569357935893599360936193629363936493659366936793689369937093719372937393749375937693779378937993809381938293839384938593869387938893899390939193929393939493959396939793989399940094019402940394049405940694079408940994109411941294139414941594169417941894199420942194229423942494259426942794289429943094319432943394349435943694379438943994409441944294439444944594469447944894499450945194529453945494559456945794589459946094619462946394649465946694679468946994709471947294739474947594769477947894799480948194829483948494859486948794889489949094919492949394949495949694979498949995009501950295039504950595069507950895099510951195129513951495159516951795189519952095219522952395249525952695279528952995309531953295339534953595369537953895399540954195429543954495459546954795489549955095519552955395549555955695579558955995609561956295639564956595669567956895699570957195729573957495759576957795789579958095819582958395849585958695879588958995909591959295939594959595969597959895999600960196029603960496059606960796089609961096119612961396149615961696179618961996209621962296239624962596269627962896299630963196329633963496359636963796389639964096419642964396449645964696479648964996509651965296539654965596569657965896599660966196629663966496659666966796689669967096719672967396749675967696779678967996809681968296839684968596869687968896899690969196929693969496959696969796989699970097019702970397049705970697079708970997109711971297139714971597169717971897199720972197229723972497259726972797289729973097319732973397349735973697379738973997409741974297439744974597469747974897499750975197529753975497559756975797589759976097619762976397649765976697679768976997709771977297739774977597769777977897799780978197829783978497859786978797889789979097919792979397949795979697979798979998009801980298039804980598069807980898099810981198129813981498159816981798189819982098219822982398249825982698279828982998309831983298339834983598369837983898399840984198429843984498459846984798489849985098519852985398549855985698579858985998609861986298639864986598669867986898699870987198729873987498759876987798789879988098819882988398849885988698879888988998909891989298939894989598969897989898999900990199029903990499059906990799089909991099119912991399149915991699179918991999209921992299239924992599269927992899299930993199329933993499359936993799389939994099419942994399449945994699479948994999509951995299539954995599569957995899599960996199629963996499659966996799689969997099719972997399749975997699779978997999809981998299839984998599869987998899899990999199929993999499959996999799989999100001000110002100031000410005100061000710008100091001010011100121001310014100151001610017100181001910020100211002210023100241002510026100271002810029100301003110032100331003410035100361003710038100391004010041100421004310044100451004610047100481004910050100511005210053100541005510056100571005810059100601006110062100631006410065100661006710068100691007010071100721007310074100751007610077100781007910080100811008210083100841008510086100871008810089100901009110092100931009410095100961009710098100991010010101101021010310104101051010610107101081010910110101111011210113101141011510116101171011810119101201012110122101231012410125101261012710128101291013010131101321013310134101351013610137101381013910140101411014210143101441014510146101471014810149101501015110152101531015410155101561015710158101591016010161101621016310164101651016610167101681016910170101711017210173101741017510176101771017810179101801018110182101831018410185101861018710188101891019010191101921019310194101951019610197101981019910200102011020210203102041020510206102071020810209102101021110212102131021410215102161021710218102191022010221102221022310224102251022610227102281022910230102311023210233102341023510236102371023810239102401024110242102431024410245102461024710248102491025010251102521025310254102551025610257102581025910260102611026210263102641026510266102671026810269102701027110272102731027410275102761027710278102791028010281102821028310284102851028610287102881028910290102911029210293102941029510296102971029810299103001030110302103031030410305103061030710308103091031010311103121031310314103151031610317103181031910320103211032210323103241032510326103271032810329103301033110332103331033410335103361033710338103391034010341103421034310344103451034610347103481034910350103511035210353103541035510356103571035810359103601036110362103631036410365103661036710368103691037010371103721037310374103751037610377103781037910380103811038210383103841038510386103871038810389103901039110392103931039410395103961039710398103991040010401104021040310404104051040610407104081040910410104111041210413104141041510416104171041810419104201042110422104231042410425104261042710428104291043010431104321043310434104351043610437104381043910440104411044210443104441044510446104471044810449104501045110452104531045410455104561045710458104591046010461104621046310464104651046610467104681046910470104711047210473104741047510476104771047810479104801048110482104831048410485104861048710488104891049010491104921049310494104951049610497104981049910500105011050210503105041050510506105071050810509105101051110512105131051410515105161051710518105191052010521105221052310524105251052610527105281052910530105311053210533105341053510536105371053810539105401054110542105431054410545105461054710548105491055010551105521055310554105551055610557105581055910560105611056210563105641056510566105671056810569105701057110572105731057410575105761057710578105791058010581105821058310584105851058610587105881058910590105911059210593105941059510596105971059810599106001060110602106031060410605106061060710608106091061010611106121061310614106151061610617106181061910620106211062210623106241062510626106271062810629106301063110632106331063410635106361063710638106391064010641
  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": "d2f1670c9f8d03b65c2aed16f800023a",
  8. "packages": [
  9. {
  10. "name": "composer/package-versions-deprecated",
  11. "version": "1.11.99.5",
  12. "source": {
  13. "type": "git",
  14. "url": "https://github.com/composer/package-versions-deprecated.git",
  15. "reference": "b4f54f74ef3453349c24a845d22392cd31e65f1d"
  16. },
  17. "dist": {
  18. "type": "zip",
  19. "url": "https://api.github.com/repos/composer/package-versions-deprecated/zipball/b4f54f74ef3453349c24a845d22392cd31e65f1d",
  20. "reference": "b4f54f74ef3453349c24a845d22392cd31e65f1d",
  21. "shasum": ""
  22. },
  23. "require": {
  24. "composer-plugin-api": "^1.1.0 || ^2.0",
  25. "php": "^7 || ^8"
  26. },
  27. "replace": {
  28. "ocramius/package-versions": "1.11.99"
  29. },
  30. "require-dev": {
  31. "composer/composer": "^1.9.3 || ^2.0@dev",
  32. "ext-zip": "^1.13",
  33. "phpunit/phpunit": "^6.5 || ^7"
  34. },
  35. "type": "composer-plugin",
  36. "extra": {
  37. "class": "PackageVersions\\Installer",
  38. "branch-alias": {
  39. "dev-master": "1.x-dev"
  40. }
  41. },
  42. "autoload": {
  43. "psr-4": {
  44. "PackageVersions\\": "src/PackageVersions"
  45. }
  46. },
  47. "notification-url": "https://packagist.org/downloads/",
  48. "license": [
  49. "MIT"
  50. ],
  51. "authors": [
  52. {
  53. "name": "Marco Pivetta",
  54. "email": "ocramius@gmail.com"
  55. },
  56. {
  57. "name": "Jordi Boggiano",
  58. "email": "j.boggiano@seld.be"
  59. }
  60. ],
  61. "description": "Composer plugin that provides efficient querying for installed package versions (no runtime IO)",
  62. "support": {
  63. "issues": "https://github.com/composer/package-versions-deprecated/issues",
  64. "source": "https://github.com/composer/package-versions-deprecated/tree/1.11.99.5"
  65. },
  66. "funding": [
  67. {
  68. "url": "https://packagist.com",
  69. "type": "custom"
  70. },
  71. {
  72. "url": "https://github.com/composer",
  73. "type": "github"
  74. },
  75. {
  76. "url": "https://tidelift.com/funding/github/packagist/composer/composer",
  77. "type": "tidelift"
  78. }
  79. ],
  80. "time": "2022-01-17T14:14:24+00:00"
  81. },
  82. {
  83. "name": "dflydev/dot-access-data",
  84. "version": "v3.0.2",
  85. "source": {
  86. "type": "git",
  87. "url": "https://github.com/dflydev/dflydev-dot-access-data.git",
  88. "reference": "f41715465d65213d644d3141a6a93081be5d3549"
  89. },
  90. "dist": {
  91. "type": "zip",
  92. "url": "https://api.github.com/repos/dflydev/dflydev-dot-access-data/zipball/f41715465d65213d644d3141a6a93081be5d3549",
  93. "reference": "f41715465d65213d644d3141a6a93081be5d3549",
  94. "shasum": ""
  95. },
  96. "require": {
  97. "php": "^7.1 || ^8.0"
  98. },
  99. "require-dev": {
  100. "phpstan/phpstan": "^0.12.42",
  101. "phpunit/phpunit": "^7.5 || ^8.5 || ^9.3",
  102. "scrutinizer/ocular": "1.6.0",
  103. "squizlabs/php_codesniffer": "^3.5",
  104. "vimeo/psalm": "^4.0.0"
  105. },
  106. "type": "library",
  107. "extra": {
  108. "branch-alias": {
  109. "dev-main": "3.x-dev"
  110. }
  111. },
  112. "autoload": {
  113. "psr-4": {
  114. "Dflydev\\DotAccessData\\": "src/"
  115. }
  116. },
  117. "notification-url": "https://packagist.org/downloads/",
  118. "license": [
  119. "MIT"
  120. ],
  121. "authors": [
  122. {
  123. "name": "Dragonfly Development Inc.",
  124. "email": "info@dflydev.com",
  125. "homepage": "http://dflydev.com"
  126. },
  127. {
  128. "name": "Beau Simensen",
  129. "email": "beau@dflydev.com",
  130. "homepage": "http://beausimensen.com"
  131. },
  132. {
  133. "name": "Carlos Frutos",
  134. "email": "carlos@kiwing.it",
  135. "homepage": "https://github.com/cfrutos"
  136. },
  137. {
  138. "name": "Colin O'Dell",
  139. "email": "colinodell@gmail.com",
  140. "homepage": "https://www.colinodell.com"
  141. }
  142. ],
  143. "description": "Given a deep data structure, access data by dot notation.",
  144. "homepage": "https://github.com/dflydev/dflydev-dot-access-data",
  145. "keywords": [
  146. "access",
  147. "data",
  148. "dot",
  149. "notation"
  150. ],
  151. "support": {
  152. "issues": "https://github.com/dflydev/dflydev-dot-access-data/issues",
  153. "source": "https://github.com/dflydev/dflydev-dot-access-data/tree/v3.0.2"
  154. },
  155. "time": "2022-10-27T11:44:00+00:00"
  156. },
  157. {
  158. "name": "doctrine/annotations",
  159. "version": "2.0.1",
  160. "source": {
  161. "type": "git",
  162. "url": "https://github.com/doctrine/annotations.git",
  163. "reference": "e157ef3f3124bbf6fe7ce0ffd109e8a8ef284e7f"
  164. },
  165. "dist": {
  166. "type": "zip",
  167. "url": "https://api.github.com/repos/doctrine/annotations/zipball/e157ef3f3124bbf6fe7ce0ffd109e8a8ef284e7f",
  168. "reference": "e157ef3f3124bbf6fe7ce0ffd109e8a8ef284e7f",
  169. "shasum": ""
  170. },
  171. "require": {
  172. "doctrine/lexer": "^2 || ^3",
  173. "ext-tokenizer": "*",
  174. "php": "^7.2 || ^8.0",
  175. "psr/cache": "^1 || ^2 || ^3"
  176. },
  177. "require-dev": {
  178. "doctrine/cache": "^2.0",
  179. "doctrine/coding-standard": "^10",
  180. "phpstan/phpstan": "^1.8.0",
  181. "phpunit/phpunit": "^7.5 || ^8.5 || ^9.5",
  182. "symfony/cache": "^5.4 || ^6",
  183. "vimeo/psalm": "^4.10"
  184. },
  185. "suggest": {
  186. "php": "PHP 8.0 or higher comes with attributes, a native replacement for annotations"
  187. },
  188. "type": "library",
  189. "autoload": {
  190. "psr-4": {
  191. "Doctrine\\Common\\Annotations\\": "lib/Doctrine/Common/Annotations"
  192. }
  193. },
  194. "notification-url": "https://packagist.org/downloads/",
  195. "license": [
  196. "MIT"
  197. ],
  198. "authors": [
  199. {
  200. "name": "Guilherme Blanco",
  201. "email": "guilhermeblanco@gmail.com"
  202. },
  203. {
  204. "name": "Roman Borschel",
  205. "email": "roman@code-factory.org"
  206. },
  207. {
  208. "name": "Benjamin Eberlei",
  209. "email": "kontakt@beberlei.de"
  210. },
  211. {
  212. "name": "Jonathan Wage",
  213. "email": "jonwage@gmail.com"
  214. },
  215. {
  216. "name": "Johannes Schmitt",
  217. "email": "schmittjoh@gmail.com"
  218. }
  219. ],
  220. "description": "Docblock Annotations Parser",
  221. "homepage": "https://www.doctrine-project.org/projects/annotations.html",
  222. "keywords": [
  223. "annotations",
  224. "docblock",
  225. "parser"
  226. ],
  227. "support": {
  228. "issues": "https://github.com/doctrine/annotations/issues",
  229. "source": "https://github.com/doctrine/annotations/tree/2.0.1"
  230. },
  231. "time": "2023-02-02T22:02:53+00:00"
  232. },
  233. {
  234. "name": "doctrine/cache",
  235. "version": "2.2.0",
  236. "source": {
  237. "type": "git",
  238. "url": "https://github.com/doctrine/cache.git",
  239. "reference": "1ca8f21980e770095a31456042471a57bc4c68fb"
  240. },
  241. "dist": {
  242. "type": "zip",
  243. "url": "https://api.github.com/repos/doctrine/cache/zipball/1ca8f21980e770095a31456042471a57bc4c68fb",
  244. "reference": "1ca8f21980e770095a31456042471a57bc4c68fb",
  245. "shasum": ""
  246. },
  247. "require": {
  248. "php": "~7.1 || ^8.0"
  249. },
  250. "conflict": {
  251. "doctrine/common": ">2.2,<2.4"
  252. },
  253. "require-dev": {
  254. "cache/integration-tests": "dev-master",
  255. "doctrine/coding-standard": "^9",
  256. "phpunit/phpunit": "^7.5 || ^8.5 || ^9.5",
  257. "psr/cache": "^1.0 || ^2.0 || ^3.0",
  258. "symfony/cache": "^4.4 || ^5.4 || ^6",
  259. "symfony/var-exporter": "^4.4 || ^5.4 || ^6"
  260. },
  261. "type": "library",
  262. "autoload": {
  263. "psr-4": {
  264. "Doctrine\\Common\\Cache\\": "lib/Doctrine/Common/Cache"
  265. }
  266. },
  267. "notification-url": "https://packagist.org/downloads/",
  268. "license": [
  269. "MIT"
  270. ],
  271. "authors": [
  272. {
  273. "name": "Guilherme Blanco",
  274. "email": "guilhermeblanco@gmail.com"
  275. },
  276. {
  277. "name": "Roman Borschel",
  278. "email": "roman@code-factory.org"
  279. },
  280. {
  281. "name": "Benjamin Eberlei",
  282. "email": "kontakt@beberlei.de"
  283. },
  284. {
  285. "name": "Jonathan Wage",
  286. "email": "jonwage@gmail.com"
  287. },
  288. {
  289. "name": "Johannes Schmitt",
  290. "email": "schmittjoh@gmail.com"
  291. }
  292. ],
  293. "description": "PHP Doctrine Cache library is a popular cache implementation that supports many different drivers such as redis, memcache, apc, mongodb and others.",
  294. "homepage": "https://www.doctrine-project.org/projects/cache.html",
  295. "keywords": [
  296. "abstraction",
  297. "apcu",
  298. "cache",
  299. "caching",
  300. "couchdb",
  301. "memcached",
  302. "php",
  303. "redis",
  304. "xcache"
  305. ],
  306. "support": {
  307. "issues": "https://github.com/doctrine/cache/issues",
  308. "source": "https://github.com/doctrine/cache/tree/2.2.0"
  309. },
  310. "funding": [
  311. {
  312. "url": "https://www.doctrine-project.org/sponsorship.html",
  313. "type": "custom"
  314. },
  315. {
  316. "url": "https://www.patreon.com/phpdoctrine",
  317. "type": "patreon"
  318. },
  319. {
  320. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fcache",
  321. "type": "tidelift"
  322. }
  323. ],
  324. "time": "2022-05-20T20:07:39+00:00"
  325. },
  326. {
  327. "name": "doctrine/collections",
  328. "version": "2.1.4",
  329. "source": {
  330. "type": "git",
  331. "url": "https://github.com/doctrine/collections.git",
  332. "reference": "72328a11443a0de79967104ad36ba7b30bded134"
  333. },
  334. "dist": {
  335. "type": "zip",
  336. "url": "https://api.github.com/repos/doctrine/collections/zipball/72328a11443a0de79967104ad36ba7b30bded134",
  337. "reference": "72328a11443a0de79967104ad36ba7b30bded134",
  338. "shasum": ""
  339. },
  340. "require": {
  341. "doctrine/deprecations": "^1",
  342. "php": "^8.1"
  343. },
  344. "require-dev": {
  345. "doctrine/coding-standard": "^12",
  346. "ext-json": "*",
  347. "phpstan/phpstan": "^1.8",
  348. "phpstan/phpstan-phpunit": "^1.0",
  349. "phpunit/phpunit": "^9.5",
  350. "vimeo/psalm": "^5.11"
  351. },
  352. "type": "library",
  353. "autoload": {
  354. "psr-4": {
  355. "Doctrine\\Common\\Collections\\": "src"
  356. }
  357. },
  358. "notification-url": "https://packagist.org/downloads/",
  359. "license": [
  360. "MIT"
  361. ],
  362. "authors": [
  363. {
  364. "name": "Guilherme Blanco",
  365. "email": "guilhermeblanco@gmail.com"
  366. },
  367. {
  368. "name": "Roman Borschel",
  369. "email": "roman@code-factory.org"
  370. },
  371. {
  372. "name": "Benjamin Eberlei",
  373. "email": "kontakt@beberlei.de"
  374. },
  375. {
  376. "name": "Jonathan Wage",
  377. "email": "jonwage@gmail.com"
  378. },
  379. {
  380. "name": "Johannes Schmitt",
  381. "email": "schmittjoh@gmail.com"
  382. }
  383. ],
  384. "description": "PHP Doctrine Collections library that adds additional functionality on top of PHP arrays.",
  385. "homepage": "https://www.doctrine-project.org/projects/collections.html",
  386. "keywords": [
  387. "array",
  388. "collections",
  389. "iterators",
  390. "php"
  391. ],
  392. "support": {
  393. "issues": "https://github.com/doctrine/collections/issues",
  394. "source": "https://github.com/doctrine/collections/tree/2.1.4"
  395. },
  396. "funding": [
  397. {
  398. "url": "https://www.doctrine-project.org/sponsorship.html",
  399. "type": "custom"
  400. },
  401. {
  402. "url": "https://www.patreon.com/phpdoctrine",
  403. "type": "patreon"
  404. },
  405. {
  406. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fcollections",
  407. "type": "tidelift"
  408. }
  409. ],
  410. "time": "2023-10-03T09:22:33+00:00"
  411. },
  412. {
  413. "name": "doctrine/common",
  414. "version": "3.4.3",
  415. "source": {
  416. "type": "git",
  417. "url": "https://github.com/doctrine/common.git",
  418. "reference": "8b5e5650391f851ed58910b3e3d48a71062eeced"
  419. },
  420. "dist": {
  421. "type": "zip",
  422. "url": "https://api.github.com/repos/doctrine/common/zipball/8b5e5650391f851ed58910b3e3d48a71062eeced",
  423. "reference": "8b5e5650391f851ed58910b3e3d48a71062eeced",
  424. "shasum": ""
  425. },
  426. "require": {
  427. "doctrine/persistence": "^2.0 || ^3.0",
  428. "php": "^7.1 || ^8.0"
  429. },
  430. "require-dev": {
  431. "doctrine/coding-standard": "^9.0 || ^10.0",
  432. "doctrine/collections": "^1",
  433. "phpstan/phpstan": "^1.4.1",
  434. "phpstan/phpstan-phpunit": "^1",
  435. "phpunit/phpunit": "^7.5.20 || ^8.5 || ^9.0",
  436. "squizlabs/php_codesniffer": "^3.0",
  437. "symfony/phpunit-bridge": "^6.1",
  438. "vimeo/psalm": "^4.4"
  439. },
  440. "type": "library",
  441. "autoload": {
  442. "psr-4": {
  443. "Doctrine\\Common\\": "src"
  444. }
  445. },
  446. "notification-url": "https://packagist.org/downloads/",
  447. "license": [
  448. "MIT"
  449. ],
  450. "authors": [
  451. {
  452. "name": "Guilherme Blanco",
  453. "email": "guilhermeblanco@gmail.com"
  454. },
  455. {
  456. "name": "Roman Borschel",
  457. "email": "roman@code-factory.org"
  458. },
  459. {
  460. "name": "Benjamin Eberlei",
  461. "email": "kontakt@beberlei.de"
  462. },
  463. {
  464. "name": "Jonathan Wage",
  465. "email": "jonwage@gmail.com"
  466. },
  467. {
  468. "name": "Johannes Schmitt",
  469. "email": "schmittjoh@gmail.com"
  470. },
  471. {
  472. "name": "Marco Pivetta",
  473. "email": "ocramius@gmail.com"
  474. }
  475. ],
  476. "description": "PHP Doctrine Common project is a library that provides additional functionality that other Doctrine projects depend on such as better reflection support, proxies and much more.",
  477. "homepage": "https://www.doctrine-project.org/projects/common.html",
  478. "keywords": [
  479. "common",
  480. "doctrine",
  481. "php"
  482. ],
  483. "support": {
  484. "issues": "https://github.com/doctrine/common/issues",
  485. "source": "https://github.com/doctrine/common/tree/3.4.3"
  486. },
  487. "funding": [
  488. {
  489. "url": "https://www.doctrine-project.org/sponsorship.html",
  490. "type": "custom"
  491. },
  492. {
  493. "url": "https://www.patreon.com/phpdoctrine",
  494. "type": "patreon"
  495. },
  496. {
  497. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fcommon",
  498. "type": "tidelift"
  499. }
  500. ],
  501. "time": "2022-10-09T11:47:59+00:00"
  502. },
  503. {
  504. "name": "doctrine/dbal",
  505. "version": "3.8.2",
  506. "source": {
  507. "type": "git",
  508. "url": "https://github.com/doctrine/dbal.git",
  509. "reference": "a19a1d05ca211f41089dffcc387733a6875196cb"
  510. },
  511. "dist": {
  512. "type": "zip",
  513. "url": "https://api.github.com/repos/doctrine/dbal/zipball/a19a1d05ca211f41089dffcc387733a6875196cb",
  514. "reference": "a19a1d05ca211f41089dffcc387733a6875196cb",
  515. "shasum": ""
  516. },
  517. "require": {
  518. "composer-runtime-api": "^2",
  519. "doctrine/cache": "^1.11|^2.0",
  520. "doctrine/deprecations": "^0.5.3|^1",
  521. "doctrine/event-manager": "^1|^2",
  522. "php": "^7.4 || ^8.0",
  523. "psr/cache": "^1|^2|^3",
  524. "psr/log": "^1|^2|^3"
  525. },
  526. "require-dev": {
  527. "doctrine/coding-standard": "12.0.0",
  528. "fig/log-test": "^1",
  529. "jetbrains/phpstorm-stubs": "2023.1",
  530. "phpstan/phpstan": "1.10.57",
  531. "phpstan/phpstan-strict-rules": "^1.5",
  532. "phpunit/phpunit": "9.6.16",
  533. "psalm/plugin-phpunit": "0.18.4",
  534. "slevomat/coding-standard": "8.13.1",
  535. "squizlabs/php_codesniffer": "3.8.1",
  536. "symfony/cache": "^5.4|^6.0|^7.0",
  537. "symfony/console": "^4.4|^5.4|^6.0|^7.0",
  538. "vimeo/psalm": "4.30.0"
  539. },
  540. "suggest": {
  541. "symfony/console": "For helpful console commands such as SQL execution and import of files."
  542. },
  543. "bin": [
  544. "bin/doctrine-dbal"
  545. ],
  546. "type": "library",
  547. "autoload": {
  548. "psr-4": {
  549. "Doctrine\\DBAL\\": "src"
  550. }
  551. },
  552. "notification-url": "https://packagist.org/downloads/",
  553. "license": [
  554. "MIT"
  555. ],
  556. "authors": [
  557. {
  558. "name": "Guilherme Blanco",
  559. "email": "guilhermeblanco@gmail.com"
  560. },
  561. {
  562. "name": "Roman Borschel",
  563. "email": "roman@code-factory.org"
  564. },
  565. {
  566. "name": "Benjamin Eberlei",
  567. "email": "kontakt@beberlei.de"
  568. },
  569. {
  570. "name": "Jonathan Wage",
  571. "email": "jonwage@gmail.com"
  572. }
  573. ],
  574. "description": "Powerful PHP database abstraction layer (DBAL) with many features for database schema introspection and management.",
  575. "homepage": "https://www.doctrine-project.org/projects/dbal.html",
  576. "keywords": [
  577. "abstraction",
  578. "database",
  579. "db2",
  580. "dbal",
  581. "mariadb",
  582. "mssql",
  583. "mysql",
  584. "oci8",
  585. "oracle",
  586. "pdo",
  587. "pgsql",
  588. "postgresql",
  589. "queryobject",
  590. "sasql",
  591. "sql",
  592. "sqlite",
  593. "sqlserver",
  594. "sqlsrv"
  595. ],
  596. "support": {
  597. "issues": "https://github.com/doctrine/dbal/issues",
  598. "source": "https://github.com/doctrine/dbal/tree/3.8.2"
  599. },
  600. "funding": [
  601. {
  602. "url": "https://www.doctrine-project.org/sponsorship.html",
  603. "type": "custom"
  604. },
  605. {
  606. "url": "https://www.patreon.com/phpdoctrine",
  607. "type": "patreon"
  608. },
  609. {
  610. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fdbal",
  611. "type": "tidelift"
  612. }
  613. ],
  614. "time": "2024-02-12T18:36:36+00:00"
  615. },
  616. {
  617. "name": "doctrine/deprecations",
  618. "version": "1.1.3",
  619. "source": {
  620. "type": "git",
  621. "url": "https://github.com/doctrine/deprecations.git",
  622. "reference": "dfbaa3c2d2e9a9df1118213f3b8b0c597bb99fab"
  623. },
  624. "dist": {
  625. "type": "zip",
  626. "url": "https://api.github.com/repos/doctrine/deprecations/zipball/dfbaa3c2d2e9a9df1118213f3b8b0c597bb99fab",
  627. "reference": "dfbaa3c2d2e9a9df1118213f3b8b0c597bb99fab",
  628. "shasum": ""
  629. },
  630. "require": {
  631. "php": "^7.1 || ^8.0"
  632. },
  633. "require-dev": {
  634. "doctrine/coding-standard": "^9",
  635. "phpstan/phpstan": "1.4.10 || 1.10.15",
  636. "phpstan/phpstan-phpunit": "^1.0",
  637. "phpunit/phpunit": "^7.5 || ^8.5 || ^9.5",
  638. "psalm/plugin-phpunit": "0.18.4",
  639. "psr/log": "^1 || ^2 || ^3",
  640. "vimeo/psalm": "4.30.0 || 5.12.0"
  641. },
  642. "suggest": {
  643. "psr/log": "Allows logging deprecations via PSR-3 logger implementation"
  644. },
  645. "type": "library",
  646. "autoload": {
  647. "psr-4": {
  648. "Doctrine\\Deprecations\\": "lib/Doctrine/Deprecations"
  649. }
  650. },
  651. "notification-url": "https://packagist.org/downloads/",
  652. "license": [
  653. "MIT"
  654. ],
  655. "description": "A small layer on top of trigger_error(E_USER_DEPRECATED) or PSR-3 logging with options to disable all deprecations or selectively for packages.",
  656. "homepage": "https://www.doctrine-project.org/",
  657. "support": {
  658. "issues": "https://github.com/doctrine/deprecations/issues",
  659. "source": "https://github.com/doctrine/deprecations/tree/1.1.3"
  660. },
  661. "time": "2024-01-30T19:34:25+00:00"
  662. },
  663. {
  664. "name": "doctrine/doctrine-bundle",
  665. "version": "2.11.3",
  666. "source": {
  667. "type": "git",
  668. "url": "https://github.com/doctrine/DoctrineBundle.git",
  669. "reference": "492725310ae9a1b5b20d6ae09fb5ae6404616e68"
  670. },
  671. "dist": {
  672. "type": "zip",
  673. "url": "https://api.github.com/repos/doctrine/DoctrineBundle/zipball/492725310ae9a1b5b20d6ae09fb5ae6404616e68",
  674. "reference": "492725310ae9a1b5b20d6ae09fb5ae6404616e68",
  675. "shasum": ""
  676. },
  677. "require": {
  678. "doctrine/cache": "^1.11 || ^2.0",
  679. "doctrine/dbal": "^3.7.0 || ^4.0",
  680. "doctrine/persistence": "^2.2 || ^3",
  681. "doctrine/sql-formatter": "^1.0.1",
  682. "php": "^7.4 || ^8.0",
  683. "symfony/cache": "^5.4 || ^6.0 || ^7.0",
  684. "symfony/config": "^5.4 || ^6.0 || ^7.0",
  685. "symfony/console": "^5.4 || ^6.0 || ^7.0",
  686. "symfony/dependency-injection": "^5.4 || ^6.0 || ^7.0",
  687. "symfony/deprecation-contracts": "^2.1 || ^3",
  688. "symfony/doctrine-bridge": "^5.4.19 || ^6.0.7 || ^7.0",
  689. "symfony/framework-bundle": "^5.4 || ^6.0 || ^7.0",
  690. "symfony/polyfill-php80": "^1.15",
  691. "symfony/service-contracts": "^1.1.1 || ^2.0 || ^3"
  692. },
  693. "conflict": {
  694. "doctrine/annotations": ">=3.0",
  695. "doctrine/orm": "<2.17 || >=4.0",
  696. "twig/twig": "<1.34 || >=2.0 <2.4"
  697. },
  698. "require-dev": {
  699. "doctrine/annotations": "^1 || ^2",
  700. "doctrine/coding-standard": "^12",
  701. "doctrine/deprecations": "^1.0",
  702. "doctrine/orm": "^2.17 || ^3.0",
  703. "friendsofphp/proxy-manager-lts": "^1.0",
  704. "phpunit/phpunit": "^9.5.26",
  705. "psalm/plugin-phpunit": "^0.18.4",
  706. "psalm/plugin-symfony": "^5",
  707. "psr/log": "^1.1.4 || ^2.0 || ^3.0",
  708. "symfony/phpunit-bridge": "^6.1 || ^7.0",
  709. "symfony/property-info": "^5.4 || ^6.0 || ^7.0",
  710. "symfony/proxy-manager-bridge": "^5.4 || ^6.0 || ^7.0",
  711. "symfony/security-bundle": "^5.4 || ^6.0 || ^7.0",
  712. "symfony/string": "^5.4 || ^6.0 || ^7.0",
  713. "symfony/twig-bridge": "^5.4 || ^6.0 || ^7.0",
  714. "symfony/validator": "^5.4 || ^6.0 || ^7.0",
  715. "symfony/var-exporter": "^5.4 || ^6.2 || ^7.0",
  716. "symfony/web-profiler-bundle": "^5.4 || ^6.0 || ^7.0",
  717. "symfony/yaml": "^5.4 || ^6.0 || ^7.0",
  718. "twig/twig": "^1.34 || ^2.12 || ^3.0",
  719. "vimeo/psalm": "^5.15"
  720. },
  721. "suggest": {
  722. "doctrine/orm": "The Doctrine ORM integration is optional in the bundle.",
  723. "ext-pdo": "*",
  724. "symfony/web-profiler-bundle": "To use the data collector."
  725. },
  726. "type": "symfony-bundle",
  727. "autoload": {
  728. "psr-4": {
  729. "Doctrine\\Bundle\\DoctrineBundle\\": ""
  730. }
  731. },
  732. "notification-url": "https://packagist.org/downloads/",
  733. "license": [
  734. "MIT"
  735. ],
  736. "authors": [
  737. {
  738. "name": "Fabien Potencier",
  739. "email": "fabien@symfony.com"
  740. },
  741. {
  742. "name": "Benjamin Eberlei",
  743. "email": "kontakt@beberlei.de"
  744. },
  745. {
  746. "name": "Symfony Community",
  747. "homepage": "https://symfony.com/contributors"
  748. },
  749. {
  750. "name": "Doctrine Project",
  751. "homepage": "https://www.doctrine-project.org/"
  752. }
  753. ],
  754. "description": "Symfony DoctrineBundle",
  755. "homepage": "https://www.doctrine-project.org",
  756. "keywords": [
  757. "database",
  758. "dbal",
  759. "orm",
  760. "persistence"
  761. ],
  762. "support": {
  763. "issues": "https://github.com/doctrine/DoctrineBundle/issues",
  764. "source": "https://github.com/doctrine/DoctrineBundle/tree/2.11.3"
  765. },
  766. "funding": [
  767. {
  768. "url": "https://www.doctrine-project.org/sponsorship.html",
  769. "type": "custom"
  770. },
  771. {
  772. "url": "https://www.patreon.com/phpdoctrine",
  773. "type": "patreon"
  774. },
  775. {
  776. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fdoctrine-bundle",
  777. "type": "tidelift"
  778. }
  779. ],
  780. "time": "2024-02-10T20:56:20+00:00"
  781. },
  782. {
  783. "name": "doctrine/doctrine-migrations-bundle",
  784. "version": "3.3.0",
  785. "source": {
  786. "type": "git",
  787. "url": "https://github.com/doctrine/DoctrineMigrationsBundle.git",
  788. "reference": "1dd42906a5fb9c5960723e2ebb45c68006493835"
  789. },
  790. "dist": {
  791. "type": "zip",
  792. "url": "https://api.github.com/repos/doctrine/DoctrineMigrationsBundle/zipball/1dd42906a5fb9c5960723e2ebb45c68006493835",
  793. "reference": "1dd42906a5fb9c5960723e2ebb45c68006493835",
  794. "shasum": ""
  795. },
  796. "require": {
  797. "doctrine/doctrine-bundle": "^2.4",
  798. "doctrine/migrations": "^3.2",
  799. "php": "^7.2|^8.0",
  800. "symfony/deprecation-contracts": "^2.1 || ^3",
  801. "symfony/framework-bundle": "^5.4 || ^6.0 || ^7.0"
  802. },
  803. "require-dev": {
  804. "doctrine/coding-standard": "^12",
  805. "doctrine/orm": "^2.6 || ^3",
  806. "doctrine/persistence": "^2.0 || ^3 ",
  807. "phpstan/phpstan": "^1.4",
  808. "phpstan/phpstan-deprecation-rules": "^1",
  809. "phpstan/phpstan-phpunit": "^1",
  810. "phpstan/phpstan-strict-rules": "^1.1",
  811. "phpstan/phpstan-symfony": "^1.3",
  812. "phpunit/phpunit": "^8.5|^9.5",
  813. "psalm/plugin-phpunit": "^0.18.4",
  814. "psalm/plugin-symfony": "^3 || ^5",
  815. "symfony/phpunit-bridge": "^6.3 || ^7",
  816. "symfony/var-exporter": "^5.4 || ^6 || ^7",
  817. "vimeo/psalm": "^4.30 || ^5.15"
  818. },
  819. "type": "symfony-bundle",
  820. "autoload": {
  821. "psr-4": {
  822. "Doctrine\\Bundle\\MigrationsBundle\\": ""
  823. },
  824. "exclude-from-classmap": [
  825. "/Tests/"
  826. ]
  827. },
  828. "notification-url": "https://packagist.org/downloads/",
  829. "license": [
  830. "MIT"
  831. ],
  832. "authors": [
  833. {
  834. "name": "Fabien Potencier",
  835. "email": "fabien@symfony.com"
  836. },
  837. {
  838. "name": "Doctrine Project",
  839. "homepage": "https://www.doctrine-project.org"
  840. },
  841. {
  842. "name": "Symfony Community",
  843. "homepage": "https://symfony.com/contributors"
  844. }
  845. ],
  846. "description": "Symfony DoctrineMigrationsBundle",
  847. "homepage": "https://www.doctrine-project.org",
  848. "keywords": [
  849. "dbal",
  850. "migrations",
  851. "schema"
  852. ],
  853. "support": {
  854. "issues": "https://github.com/doctrine/DoctrineMigrationsBundle/issues",
  855. "source": "https://github.com/doctrine/DoctrineMigrationsBundle/tree/3.3.0"
  856. },
  857. "funding": [
  858. {
  859. "url": "https://www.doctrine-project.org/sponsorship.html",
  860. "type": "custom"
  861. },
  862. {
  863. "url": "https://www.patreon.com/phpdoctrine",
  864. "type": "patreon"
  865. },
  866. {
  867. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fdoctrine-migrations-bundle",
  868. "type": "tidelift"
  869. }
  870. ],
  871. "time": "2023-11-13T19:44:41+00:00"
  872. },
  873. {
  874. "name": "doctrine/event-manager",
  875. "version": "2.0.0",
  876. "source": {
  877. "type": "git",
  878. "url": "https://github.com/doctrine/event-manager.git",
  879. "reference": "750671534e0241a7c50ea5b43f67e23eb5c96f32"
  880. },
  881. "dist": {
  882. "type": "zip",
  883. "url": "https://api.github.com/repos/doctrine/event-manager/zipball/750671534e0241a7c50ea5b43f67e23eb5c96f32",
  884. "reference": "750671534e0241a7c50ea5b43f67e23eb5c96f32",
  885. "shasum": ""
  886. },
  887. "require": {
  888. "php": "^8.1"
  889. },
  890. "conflict": {
  891. "doctrine/common": "<2.9"
  892. },
  893. "require-dev": {
  894. "doctrine/coding-standard": "^10",
  895. "phpstan/phpstan": "^1.8.8",
  896. "phpunit/phpunit": "^9.5",
  897. "vimeo/psalm": "^4.28"
  898. },
  899. "type": "library",
  900. "autoload": {
  901. "psr-4": {
  902. "Doctrine\\Common\\": "src"
  903. }
  904. },
  905. "notification-url": "https://packagist.org/downloads/",
  906. "license": [
  907. "MIT"
  908. ],
  909. "authors": [
  910. {
  911. "name": "Guilherme Blanco",
  912. "email": "guilhermeblanco@gmail.com"
  913. },
  914. {
  915. "name": "Roman Borschel",
  916. "email": "roman@code-factory.org"
  917. },
  918. {
  919. "name": "Benjamin Eberlei",
  920. "email": "kontakt@beberlei.de"
  921. },
  922. {
  923. "name": "Jonathan Wage",
  924. "email": "jonwage@gmail.com"
  925. },
  926. {
  927. "name": "Johannes Schmitt",
  928. "email": "schmittjoh@gmail.com"
  929. },
  930. {
  931. "name": "Marco Pivetta",
  932. "email": "ocramius@gmail.com"
  933. }
  934. ],
  935. "description": "The Doctrine Event Manager is a simple PHP event system that was built to be used with the various Doctrine projects.",
  936. "homepage": "https://www.doctrine-project.org/projects/event-manager.html",
  937. "keywords": [
  938. "event",
  939. "event dispatcher",
  940. "event manager",
  941. "event system",
  942. "events"
  943. ],
  944. "support": {
  945. "issues": "https://github.com/doctrine/event-manager/issues",
  946. "source": "https://github.com/doctrine/event-manager/tree/2.0.0"
  947. },
  948. "funding": [
  949. {
  950. "url": "https://www.doctrine-project.org/sponsorship.html",
  951. "type": "custom"
  952. },
  953. {
  954. "url": "https://www.patreon.com/phpdoctrine",
  955. "type": "patreon"
  956. },
  957. {
  958. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fevent-manager",
  959. "type": "tidelift"
  960. }
  961. ],
  962. "time": "2022-10-12T20:59:15+00:00"
  963. },
  964. {
  965. "name": "doctrine/inflector",
  966. "version": "2.0.10",
  967. "source": {
  968. "type": "git",
  969. "url": "https://github.com/doctrine/inflector.git",
  970. "reference": "5817d0659c5b50c9b950feb9af7b9668e2c436bc"
  971. },
  972. "dist": {
  973. "type": "zip",
  974. "url": "https://api.github.com/repos/doctrine/inflector/zipball/5817d0659c5b50c9b950feb9af7b9668e2c436bc",
  975. "reference": "5817d0659c5b50c9b950feb9af7b9668e2c436bc",
  976. "shasum": ""
  977. },
  978. "require": {
  979. "php": "^7.2 || ^8.0"
  980. },
  981. "require-dev": {
  982. "doctrine/coding-standard": "^11.0",
  983. "phpstan/phpstan": "^1.8",
  984. "phpstan/phpstan-phpunit": "^1.1",
  985. "phpstan/phpstan-strict-rules": "^1.3",
  986. "phpunit/phpunit": "^8.5 || ^9.5",
  987. "vimeo/psalm": "^4.25 || ^5.4"
  988. },
  989. "type": "library",
  990. "autoload": {
  991. "psr-4": {
  992. "Doctrine\\Inflector\\": "lib/Doctrine/Inflector"
  993. }
  994. },
  995. "notification-url": "https://packagist.org/downloads/",
  996. "license": [
  997. "MIT"
  998. ],
  999. "authors": [
  1000. {
  1001. "name": "Guilherme Blanco",
  1002. "email": "guilhermeblanco@gmail.com"
  1003. },
  1004. {
  1005. "name": "Roman Borschel",
  1006. "email": "roman@code-factory.org"
  1007. },
  1008. {
  1009. "name": "Benjamin Eberlei",
  1010. "email": "kontakt@beberlei.de"
  1011. },
  1012. {
  1013. "name": "Jonathan Wage",
  1014. "email": "jonwage@gmail.com"
  1015. },
  1016. {
  1017. "name": "Johannes Schmitt",
  1018. "email": "schmittjoh@gmail.com"
  1019. }
  1020. ],
  1021. "description": "PHP Doctrine Inflector is a small library that can perform string manipulations with regard to upper/lowercase and singular/plural forms of words.",
  1022. "homepage": "https://www.doctrine-project.org/projects/inflector.html",
  1023. "keywords": [
  1024. "inflection",
  1025. "inflector",
  1026. "lowercase",
  1027. "manipulation",
  1028. "php",
  1029. "plural",
  1030. "singular",
  1031. "strings",
  1032. "uppercase",
  1033. "words"
  1034. ],
  1035. "support": {
  1036. "issues": "https://github.com/doctrine/inflector/issues",
  1037. "source": "https://github.com/doctrine/inflector/tree/2.0.10"
  1038. },
  1039. "funding": [
  1040. {
  1041. "url": "https://www.doctrine-project.org/sponsorship.html",
  1042. "type": "custom"
  1043. },
  1044. {
  1045. "url": "https://www.patreon.com/phpdoctrine",
  1046. "type": "patreon"
  1047. },
  1048. {
  1049. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Finflector",
  1050. "type": "tidelift"
  1051. }
  1052. ],
  1053. "time": "2024-02-18T20:23:39+00:00"
  1054. },
  1055. {
  1056. "name": "doctrine/instantiator",
  1057. "version": "2.0.0",
  1058. "source": {
  1059. "type": "git",
  1060. "url": "https://github.com/doctrine/instantiator.git",
  1061. "reference": "c6222283fa3f4ac679f8b9ced9a4e23f163e80d0"
  1062. },
  1063. "dist": {
  1064. "type": "zip",
  1065. "url": "https://api.github.com/repos/doctrine/instantiator/zipball/c6222283fa3f4ac679f8b9ced9a4e23f163e80d0",
  1066. "reference": "c6222283fa3f4ac679f8b9ced9a4e23f163e80d0",
  1067. "shasum": ""
  1068. },
  1069. "require": {
  1070. "php": "^8.1"
  1071. },
  1072. "require-dev": {
  1073. "doctrine/coding-standard": "^11",
  1074. "ext-pdo": "*",
  1075. "ext-phar": "*",
  1076. "phpbench/phpbench": "^1.2",
  1077. "phpstan/phpstan": "^1.9.4",
  1078. "phpstan/phpstan-phpunit": "^1.3",
  1079. "phpunit/phpunit": "^9.5.27",
  1080. "vimeo/psalm": "^5.4"
  1081. },
  1082. "type": "library",
  1083. "autoload": {
  1084. "psr-4": {
  1085. "Doctrine\\Instantiator\\": "src/Doctrine/Instantiator/"
  1086. }
  1087. },
  1088. "notification-url": "https://packagist.org/downloads/",
  1089. "license": [
  1090. "MIT"
  1091. ],
  1092. "authors": [
  1093. {
  1094. "name": "Marco Pivetta",
  1095. "email": "ocramius@gmail.com",
  1096. "homepage": "https://ocramius.github.io/"
  1097. }
  1098. ],
  1099. "description": "A small, lightweight utility to instantiate objects in PHP without invoking their constructors",
  1100. "homepage": "https://www.doctrine-project.org/projects/instantiator.html",
  1101. "keywords": [
  1102. "constructor",
  1103. "instantiate"
  1104. ],
  1105. "support": {
  1106. "issues": "https://github.com/doctrine/instantiator/issues",
  1107. "source": "https://github.com/doctrine/instantiator/tree/2.0.0"
  1108. },
  1109. "funding": [
  1110. {
  1111. "url": "https://www.doctrine-project.org/sponsorship.html",
  1112. "type": "custom"
  1113. },
  1114. {
  1115. "url": "https://www.patreon.com/phpdoctrine",
  1116. "type": "patreon"
  1117. },
  1118. {
  1119. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Finstantiator",
  1120. "type": "tidelift"
  1121. }
  1122. ],
  1123. "time": "2022-12-30T00:23:10+00:00"
  1124. },
  1125. {
  1126. "name": "doctrine/lexer",
  1127. "version": "3.0.1",
  1128. "source": {
  1129. "type": "git",
  1130. "url": "https://github.com/doctrine/lexer.git",
  1131. "reference": "31ad66abc0fc9e1a1f2d9bc6a42668d2fbbcd6dd"
  1132. },
  1133. "dist": {
  1134. "type": "zip",
  1135. "url": "https://api.github.com/repos/doctrine/lexer/zipball/31ad66abc0fc9e1a1f2d9bc6a42668d2fbbcd6dd",
  1136. "reference": "31ad66abc0fc9e1a1f2d9bc6a42668d2fbbcd6dd",
  1137. "shasum": ""
  1138. },
  1139. "require": {
  1140. "php": "^8.1"
  1141. },
  1142. "require-dev": {
  1143. "doctrine/coding-standard": "^12",
  1144. "phpstan/phpstan": "^1.10",
  1145. "phpunit/phpunit": "^10.5",
  1146. "psalm/plugin-phpunit": "^0.18.3",
  1147. "vimeo/psalm": "^5.21"
  1148. },
  1149. "type": "library",
  1150. "autoload": {
  1151. "psr-4": {
  1152. "Doctrine\\Common\\Lexer\\": "src"
  1153. }
  1154. },
  1155. "notification-url": "https://packagist.org/downloads/",
  1156. "license": [
  1157. "MIT"
  1158. ],
  1159. "authors": [
  1160. {
  1161. "name": "Guilherme Blanco",
  1162. "email": "guilhermeblanco@gmail.com"
  1163. },
  1164. {
  1165. "name": "Roman Borschel",
  1166. "email": "roman@code-factory.org"
  1167. },
  1168. {
  1169. "name": "Johannes Schmitt",
  1170. "email": "schmittjoh@gmail.com"
  1171. }
  1172. ],
  1173. "description": "PHP Doctrine Lexer parser library that can be used in Top-Down, Recursive Descent Parsers.",
  1174. "homepage": "https://www.doctrine-project.org/projects/lexer.html",
  1175. "keywords": [
  1176. "annotations",
  1177. "docblock",
  1178. "lexer",
  1179. "parser",
  1180. "php"
  1181. ],
  1182. "support": {
  1183. "issues": "https://github.com/doctrine/lexer/issues",
  1184. "source": "https://github.com/doctrine/lexer/tree/3.0.1"
  1185. },
  1186. "funding": [
  1187. {
  1188. "url": "https://www.doctrine-project.org/sponsorship.html",
  1189. "type": "custom"
  1190. },
  1191. {
  1192. "url": "https://www.patreon.com/phpdoctrine",
  1193. "type": "patreon"
  1194. },
  1195. {
  1196. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Flexer",
  1197. "type": "tidelift"
  1198. }
  1199. ],
  1200. "time": "2024-02-05T11:56:58+00:00"
  1201. },
  1202. {
  1203. "name": "doctrine/migrations",
  1204. "version": "3.7.2",
  1205. "source": {
  1206. "type": "git",
  1207. "url": "https://github.com/doctrine/migrations.git",
  1208. "reference": "47af29eef49f29ebee545947e8b2a4b3be318c8a"
  1209. },
  1210. "dist": {
  1211. "type": "zip",
  1212. "url": "https://api.github.com/repos/doctrine/migrations/zipball/47af29eef49f29ebee545947e8b2a4b3be318c8a",
  1213. "reference": "47af29eef49f29ebee545947e8b2a4b3be318c8a",
  1214. "shasum": ""
  1215. },
  1216. "require": {
  1217. "composer-runtime-api": "^2",
  1218. "doctrine/dbal": "^3.5.1 || ^4",
  1219. "doctrine/deprecations": "^0.5.3 || ^1",
  1220. "doctrine/event-manager": "^1.2 || ^2.0",
  1221. "php": "^8.1",
  1222. "psr/log": "^1.1.3 || ^2 || ^3",
  1223. "symfony/console": "^5.4 || ^6.0 || ^7.0",
  1224. "symfony/stopwatch": "^5.4 || ^6.0 || ^7.0",
  1225. "symfony/var-exporter": "^6.2 || ^7.0"
  1226. },
  1227. "conflict": {
  1228. "doctrine/orm": "<2.12 || >=4"
  1229. },
  1230. "require-dev": {
  1231. "doctrine/coding-standard": "^12",
  1232. "doctrine/orm": "^2.13 || ^3",
  1233. "doctrine/persistence": "^2 || ^3",
  1234. "doctrine/sql-formatter": "^1.0",
  1235. "ext-pdo_sqlite": "*",
  1236. "phpstan/phpstan": "^1.10",
  1237. "phpstan/phpstan-deprecation-rules": "^1.1",
  1238. "phpstan/phpstan-phpunit": "^1.3",
  1239. "phpstan/phpstan-strict-rules": "^1.4",
  1240. "phpstan/phpstan-symfony": "^1.3",
  1241. "phpunit/phpunit": "^10.3",
  1242. "symfony/cache": "^5.4 || ^6.0 || ^7.0",
  1243. "symfony/process": "^5.4 || ^6.0 || ^7.0",
  1244. "symfony/yaml": "^5.4 || ^6.0 || ^7.0"
  1245. },
  1246. "suggest": {
  1247. "doctrine/sql-formatter": "Allows to generate formatted SQL with the diff command.",
  1248. "symfony/yaml": "Allows the use of yaml for migration configuration files."
  1249. },
  1250. "bin": [
  1251. "bin/doctrine-migrations"
  1252. ],
  1253. "type": "library",
  1254. "autoload": {
  1255. "psr-4": {
  1256. "Doctrine\\Migrations\\": "lib/Doctrine/Migrations"
  1257. }
  1258. },
  1259. "notification-url": "https://packagist.org/downloads/",
  1260. "license": [
  1261. "MIT"
  1262. ],
  1263. "authors": [
  1264. {
  1265. "name": "Benjamin Eberlei",
  1266. "email": "kontakt@beberlei.de"
  1267. },
  1268. {
  1269. "name": "Jonathan Wage",
  1270. "email": "jonwage@gmail.com"
  1271. },
  1272. {
  1273. "name": "Michael Simonson",
  1274. "email": "contact@mikesimonson.com"
  1275. }
  1276. ],
  1277. "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.",
  1278. "homepage": "https://www.doctrine-project.org/projects/migrations.html",
  1279. "keywords": [
  1280. "database",
  1281. "dbal",
  1282. "migrations"
  1283. ],
  1284. "support": {
  1285. "issues": "https://github.com/doctrine/migrations/issues",
  1286. "source": "https://github.com/doctrine/migrations/tree/3.7.2"
  1287. },
  1288. "funding": [
  1289. {
  1290. "url": "https://www.doctrine-project.org/sponsorship.html",
  1291. "type": "custom"
  1292. },
  1293. {
  1294. "url": "https://www.patreon.com/phpdoctrine",
  1295. "type": "patreon"
  1296. },
  1297. {
  1298. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fmigrations",
  1299. "type": "tidelift"
  1300. }
  1301. ],
  1302. "time": "2023-12-05T11:35:05+00:00"
  1303. },
  1304. {
  1305. "name": "doctrine/orm",
  1306. "version": "2.18.1",
  1307. "source": {
  1308. "type": "git",
  1309. "url": "https://github.com/doctrine/orm.git",
  1310. "reference": "e6eef1a97d41f1ee244b6e69d7359d00cb3e4c4a"
  1311. },
  1312. "dist": {
  1313. "type": "zip",
  1314. "url": "https://api.github.com/repos/doctrine/orm/zipball/e6eef1a97d41f1ee244b6e69d7359d00cb3e4c4a",
  1315. "reference": "e6eef1a97d41f1ee244b6e69d7359d00cb3e4c4a",
  1316. "shasum": ""
  1317. },
  1318. "require": {
  1319. "composer-runtime-api": "^2",
  1320. "doctrine/cache": "^1.12.1 || ^2.1.1",
  1321. "doctrine/collections": "^1.5 || ^2.1",
  1322. "doctrine/common": "^3.0.3",
  1323. "doctrine/dbal": "^2.13.1 || ^3.2",
  1324. "doctrine/deprecations": "^0.5.3 || ^1",
  1325. "doctrine/event-manager": "^1.2 || ^2",
  1326. "doctrine/inflector": "^1.4 || ^2.0",
  1327. "doctrine/instantiator": "^1.3 || ^2",
  1328. "doctrine/lexer": "^2 || ^3",
  1329. "doctrine/persistence": "^2.4 || ^3",
  1330. "ext-ctype": "*",
  1331. "php": "^7.1 || ^8.0",
  1332. "psr/cache": "^1 || ^2 || ^3",
  1333. "symfony/console": "^4.2 || ^5.0 || ^6.0 || ^7.0",
  1334. "symfony/polyfill-php72": "^1.23",
  1335. "symfony/polyfill-php80": "^1.16"
  1336. },
  1337. "conflict": {
  1338. "doctrine/annotations": "<1.13 || >= 3.0"
  1339. },
  1340. "require-dev": {
  1341. "doctrine/annotations": "^1.13 || ^2",
  1342. "doctrine/coding-standard": "^9.0.2 || ^12.0",
  1343. "phpbench/phpbench": "^0.16.10 || ^1.0",
  1344. "phpstan/phpstan": "~1.4.10 || 1.10.35",
  1345. "phpunit/phpunit": "^7.5 || ^8.5 || ^9.6",
  1346. "psr/log": "^1 || ^2 || ^3",
  1347. "squizlabs/php_codesniffer": "3.7.2",
  1348. "symfony/cache": "^4.4 || ^5.4 || ^6.4 || ^7.0",
  1349. "symfony/var-exporter": "^4.4 || ^5.4 || ^6.2 || ^7.0",
  1350. "symfony/yaml": "^3.4 || ^4.0 || ^5.0 || ^6.0 || ^7.0",
  1351. "vimeo/psalm": "4.30.0 || 5.16.0"
  1352. },
  1353. "suggest": {
  1354. "ext-dom": "Provides support for XSD validation for XML mapping files",
  1355. "symfony/cache": "Provides cache support for Setup Tool with doctrine/cache 2.0",
  1356. "symfony/yaml": "If you want to use YAML Metadata Mapping Driver"
  1357. },
  1358. "bin": [
  1359. "bin/doctrine"
  1360. ],
  1361. "type": "library",
  1362. "autoload": {
  1363. "psr-4": {
  1364. "Doctrine\\ORM\\": "src"
  1365. }
  1366. },
  1367. "notification-url": "https://packagist.org/downloads/",
  1368. "license": [
  1369. "MIT"
  1370. ],
  1371. "authors": [
  1372. {
  1373. "name": "Guilherme Blanco",
  1374. "email": "guilhermeblanco@gmail.com"
  1375. },
  1376. {
  1377. "name": "Roman Borschel",
  1378. "email": "roman@code-factory.org"
  1379. },
  1380. {
  1381. "name": "Benjamin Eberlei",
  1382. "email": "kontakt@beberlei.de"
  1383. },
  1384. {
  1385. "name": "Jonathan Wage",
  1386. "email": "jonwage@gmail.com"
  1387. },
  1388. {
  1389. "name": "Marco Pivetta",
  1390. "email": "ocramius@gmail.com"
  1391. }
  1392. ],
  1393. "description": "Object-Relational-Mapper for PHP",
  1394. "homepage": "https://www.doctrine-project.org/projects/orm.html",
  1395. "keywords": [
  1396. "database",
  1397. "orm"
  1398. ],
  1399. "support": {
  1400. "issues": "https://github.com/doctrine/orm/issues",
  1401. "source": "https://github.com/doctrine/orm/tree/2.18.1"
  1402. },
  1403. "time": "2024-02-22T12:22:44+00:00"
  1404. },
  1405. {
  1406. "name": "doctrine/persistence",
  1407. "version": "3.2.0",
  1408. "source": {
  1409. "type": "git",
  1410. "url": "https://github.com/doctrine/persistence.git",
  1411. "reference": "63fee8c33bef740db6730eb2a750cd3da6495603"
  1412. },
  1413. "dist": {
  1414. "type": "zip",
  1415. "url": "https://api.github.com/repos/doctrine/persistence/zipball/63fee8c33bef740db6730eb2a750cd3da6495603",
  1416. "reference": "63fee8c33bef740db6730eb2a750cd3da6495603",
  1417. "shasum": ""
  1418. },
  1419. "require": {
  1420. "doctrine/event-manager": "^1 || ^2",
  1421. "php": "^7.2 || ^8.0",
  1422. "psr/cache": "^1.0 || ^2.0 || ^3.0"
  1423. },
  1424. "conflict": {
  1425. "doctrine/common": "<2.10"
  1426. },
  1427. "require-dev": {
  1428. "composer/package-versions-deprecated": "^1.11",
  1429. "doctrine/coding-standard": "^11",
  1430. "doctrine/common": "^3.0",
  1431. "phpstan/phpstan": "1.9.4",
  1432. "phpstan/phpstan-phpunit": "^1",
  1433. "phpstan/phpstan-strict-rules": "^1.1",
  1434. "phpunit/phpunit": "^8.5 || ^9.5",
  1435. "symfony/cache": "^4.4 || ^5.4 || ^6.0",
  1436. "vimeo/psalm": "4.30.0 || 5.3.0"
  1437. },
  1438. "type": "library",
  1439. "autoload": {
  1440. "psr-4": {
  1441. "Doctrine\\Persistence\\": "src/Persistence"
  1442. }
  1443. },
  1444. "notification-url": "https://packagist.org/downloads/",
  1445. "license": [
  1446. "MIT"
  1447. ],
  1448. "authors": [
  1449. {
  1450. "name": "Guilherme Blanco",
  1451. "email": "guilhermeblanco@gmail.com"
  1452. },
  1453. {
  1454. "name": "Roman Borschel",
  1455. "email": "roman@code-factory.org"
  1456. },
  1457. {
  1458. "name": "Benjamin Eberlei",
  1459. "email": "kontakt@beberlei.de"
  1460. },
  1461. {
  1462. "name": "Jonathan Wage",
  1463. "email": "jonwage@gmail.com"
  1464. },
  1465. {
  1466. "name": "Johannes Schmitt",
  1467. "email": "schmittjoh@gmail.com"
  1468. },
  1469. {
  1470. "name": "Marco Pivetta",
  1471. "email": "ocramius@gmail.com"
  1472. }
  1473. ],
  1474. "description": "The Doctrine Persistence project is a set of shared interfaces and functionality that the different Doctrine object mappers share.",
  1475. "homepage": "https://www.doctrine-project.org/projects/persistence.html",
  1476. "keywords": [
  1477. "mapper",
  1478. "object",
  1479. "odm",
  1480. "orm",
  1481. "persistence"
  1482. ],
  1483. "support": {
  1484. "issues": "https://github.com/doctrine/persistence/issues",
  1485. "source": "https://github.com/doctrine/persistence/tree/3.2.0"
  1486. },
  1487. "funding": [
  1488. {
  1489. "url": "https://www.doctrine-project.org/sponsorship.html",
  1490. "type": "custom"
  1491. },
  1492. {
  1493. "url": "https://www.patreon.com/phpdoctrine",
  1494. "type": "patreon"
  1495. },
  1496. {
  1497. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fpersistence",
  1498. "type": "tidelift"
  1499. }
  1500. ],
  1501. "time": "2023-05-17T18:32:04+00:00"
  1502. },
  1503. {
  1504. "name": "doctrine/sql-formatter",
  1505. "version": "1.2.0",
  1506. "source": {
  1507. "type": "git",
  1508. "url": "https://github.com/doctrine/sql-formatter.git",
  1509. "reference": "a321d114e0a18e6497f8a2cd6f890e000cc17ecc"
  1510. },
  1511. "dist": {
  1512. "type": "zip",
  1513. "url": "https://api.github.com/repos/doctrine/sql-formatter/zipball/a321d114e0a18e6497f8a2cd6f890e000cc17ecc",
  1514. "reference": "a321d114e0a18e6497f8a2cd6f890e000cc17ecc",
  1515. "shasum": ""
  1516. },
  1517. "require": {
  1518. "php": "^7.1 || ^8.0"
  1519. },
  1520. "require-dev": {
  1521. "bamarni/composer-bin-plugin": "^1.4"
  1522. },
  1523. "bin": [
  1524. "bin/sql-formatter"
  1525. ],
  1526. "type": "library",
  1527. "autoload": {
  1528. "psr-4": {
  1529. "Doctrine\\SqlFormatter\\": "src"
  1530. }
  1531. },
  1532. "notification-url": "https://packagist.org/downloads/",
  1533. "license": [
  1534. "MIT"
  1535. ],
  1536. "authors": [
  1537. {
  1538. "name": "Jeremy Dorn",
  1539. "email": "jeremy@jeremydorn.com",
  1540. "homepage": "https://jeremydorn.com/"
  1541. }
  1542. ],
  1543. "description": "a PHP SQL highlighting library",
  1544. "homepage": "https://github.com/doctrine/sql-formatter/",
  1545. "keywords": [
  1546. "highlight",
  1547. "sql"
  1548. ],
  1549. "support": {
  1550. "issues": "https://github.com/doctrine/sql-formatter/issues",
  1551. "source": "https://github.com/doctrine/sql-formatter/tree/1.2.0"
  1552. },
  1553. "time": "2023-08-16T21:49:04+00:00"
  1554. },
  1555. {
  1556. "name": "egulias/email-validator",
  1557. "version": "4.0.2",
  1558. "source": {
  1559. "type": "git",
  1560. "url": "https://github.com/egulias/EmailValidator.git",
  1561. "reference": "ebaaf5be6c0286928352e054f2d5125608e5405e"
  1562. },
  1563. "dist": {
  1564. "type": "zip",
  1565. "url": "https://api.github.com/repos/egulias/EmailValidator/zipball/ebaaf5be6c0286928352e054f2d5125608e5405e",
  1566. "reference": "ebaaf5be6c0286928352e054f2d5125608e5405e",
  1567. "shasum": ""
  1568. },
  1569. "require": {
  1570. "doctrine/lexer": "^2.0 || ^3.0",
  1571. "php": ">=8.1",
  1572. "symfony/polyfill-intl-idn": "^1.26"
  1573. },
  1574. "require-dev": {
  1575. "phpunit/phpunit": "^10.2",
  1576. "vimeo/psalm": "^5.12"
  1577. },
  1578. "suggest": {
  1579. "ext-intl": "PHP Internationalization Libraries are required to use the SpoofChecking validation"
  1580. },
  1581. "type": "library",
  1582. "extra": {
  1583. "branch-alias": {
  1584. "dev-master": "4.0.x-dev"
  1585. }
  1586. },
  1587. "autoload": {
  1588. "psr-4": {
  1589. "Egulias\\EmailValidator\\": "src"
  1590. }
  1591. },
  1592. "notification-url": "https://packagist.org/downloads/",
  1593. "license": [
  1594. "MIT"
  1595. ],
  1596. "authors": [
  1597. {
  1598. "name": "Eduardo Gulias Davis"
  1599. }
  1600. ],
  1601. "description": "A library for validating emails against several RFCs",
  1602. "homepage": "https://github.com/egulias/EmailValidator",
  1603. "keywords": [
  1604. "email",
  1605. "emailvalidation",
  1606. "emailvalidator",
  1607. "validation",
  1608. "validator"
  1609. ],
  1610. "support": {
  1611. "issues": "https://github.com/egulias/EmailValidator/issues",
  1612. "source": "https://github.com/egulias/EmailValidator/tree/4.0.2"
  1613. },
  1614. "funding": [
  1615. {
  1616. "url": "https://github.com/egulias",
  1617. "type": "github"
  1618. }
  1619. ],
  1620. "time": "2023-10-06T06:47:41+00:00"
  1621. },
  1622. {
  1623. "name": "friendsofphp/proxy-manager-lts",
  1624. "version": "v1.0.16",
  1625. "source": {
  1626. "type": "git",
  1627. "url": "https://github.com/FriendsOfPHP/proxy-manager-lts.git",
  1628. "reference": "ecadbdc9052e4ad08c60c8a02268712e50427f7c"
  1629. },
  1630. "dist": {
  1631. "type": "zip",
  1632. "url": "https://api.github.com/repos/FriendsOfPHP/proxy-manager-lts/zipball/ecadbdc9052e4ad08c60c8a02268712e50427f7c",
  1633. "reference": "ecadbdc9052e4ad08c60c8a02268712e50427f7c",
  1634. "shasum": ""
  1635. },
  1636. "require": {
  1637. "laminas/laminas-code": "~3.4.1|^4.0",
  1638. "php": ">=7.1",
  1639. "symfony/filesystem": "^4.4.17|^5.0|^6.0|^7.0"
  1640. },
  1641. "conflict": {
  1642. "laminas/laminas-stdlib": "<3.2.1",
  1643. "zendframework/zend-stdlib": "<3.2.1"
  1644. },
  1645. "replace": {
  1646. "ocramius/proxy-manager": "^2.1"
  1647. },
  1648. "require-dev": {
  1649. "ext-phar": "*",
  1650. "symfony/phpunit-bridge": "^5.4|^6.0|^7.0"
  1651. },
  1652. "type": "library",
  1653. "extra": {
  1654. "thanks": {
  1655. "name": "ocramius/proxy-manager",
  1656. "url": "https://github.com/Ocramius/ProxyManager"
  1657. }
  1658. },
  1659. "autoload": {
  1660. "psr-4": {
  1661. "ProxyManager\\": "src/ProxyManager"
  1662. }
  1663. },
  1664. "notification-url": "https://packagist.org/downloads/",
  1665. "license": [
  1666. "MIT"
  1667. ],
  1668. "authors": [
  1669. {
  1670. "name": "Marco Pivetta",
  1671. "email": "ocramius@gmail.com",
  1672. "homepage": "https://ocramius.github.io/"
  1673. },
  1674. {
  1675. "name": "Nicolas Grekas",
  1676. "email": "p@tchwork.com"
  1677. }
  1678. ],
  1679. "description": "Adding support for a wider range of PHP versions to ocramius/proxy-manager",
  1680. "homepage": "https://github.com/FriendsOfPHP/proxy-manager-lts",
  1681. "keywords": [
  1682. "aop",
  1683. "lazy loading",
  1684. "proxy",
  1685. "proxy pattern",
  1686. "service proxies"
  1687. ],
  1688. "support": {
  1689. "issues": "https://github.com/FriendsOfPHP/proxy-manager-lts/issues",
  1690. "source": "https://github.com/FriendsOfPHP/proxy-manager-lts/tree/v1.0.16"
  1691. },
  1692. "funding": [
  1693. {
  1694. "url": "https://github.com/Ocramius",
  1695. "type": "github"
  1696. },
  1697. {
  1698. "url": "https://tidelift.com/funding/github/packagist/ocramius/proxy-manager",
  1699. "type": "tidelift"
  1700. }
  1701. ],
  1702. "time": "2023-05-24T07:17:17+00:00"
  1703. },
  1704. {
  1705. "name": "laminas/laminas-code",
  1706. "version": "4.13.0",
  1707. "source": {
  1708. "type": "git",
  1709. "url": "https://github.com/laminas/laminas-code.git",
  1710. "reference": "7353d4099ad5388e84737dd16994316a04f48dbf"
  1711. },
  1712. "dist": {
  1713. "type": "zip",
  1714. "url": "https://api.github.com/repos/laminas/laminas-code/zipball/7353d4099ad5388e84737dd16994316a04f48dbf",
  1715. "reference": "7353d4099ad5388e84737dd16994316a04f48dbf",
  1716. "shasum": ""
  1717. },
  1718. "require": {
  1719. "php": "~8.1.0 || ~8.2.0 || ~8.3.0"
  1720. },
  1721. "require-dev": {
  1722. "doctrine/annotations": "^2.0.1",
  1723. "ext-phar": "*",
  1724. "laminas/laminas-coding-standard": "^2.5.0",
  1725. "laminas/laminas-stdlib": "^3.17.0",
  1726. "phpunit/phpunit": "^10.3.3",
  1727. "psalm/plugin-phpunit": "^0.18.4",
  1728. "vimeo/psalm": "^5.15.0"
  1729. },
  1730. "suggest": {
  1731. "doctrine/annotations": "Doctrine\\Common\\Annotations >=1.0 for annotation features",
  1732. "laminas/laminas-stdlib": "Laminas\\Stdlib component"
  1733. },
  1734. "type": "library",
  1735. "autoload": {
  1736. "psr-4": {
  1737. "Laminas\\Code\\": "src/"
  1738. }
  1739. },
  1740. "notification-url": "https://packagist.org/downloads/",
  1741. "license": [
  1742. "BSD-3-Clause"
  1743. ],
  1744. "description": "Extensions to the PHP Reflection API, static code scanning, and code generation",
  1745. "homepage": "https://laminas.dev",
  1746. "keywords": [
  1747. "code",
  1748. "laminas",
  1749. "laminasframework"
  1750. ],
  1751. "support": {
  1752. "chat": "https://laminas.dev/chat",
  1753. "docs": "https://docs.laminas.dev/laminas-code/",
  1754. "forum": "https://discourse.laminas.dev",
  1755. "issues": "https://github.com/laminas/laminas-code/issues",
  1756. "rss": "https://github.com/laminas/laminas-code/releases.atom",
  1757. "source": "https://github.com/laminas/laminas-code"
  1758. },
  1759. "funding": [
  1760. {
  1761. "url": "https://funding.communitybridge.org/projects/laminas-project",
  1762. "type": "community_bridge"
  1763. }
  1764. ],
  1765. "time": "2023-10-18T10:00:55+00:00"
  1766. },
  1767. {
  1768. "name": "league/commonmark",
  1769. "version": "2.4.2",
  1770. "source": {
  1771. "type": "git",
  1772. "url": "https://github.com/thephpleague/commonmark.git",
  1773. "reference": "91c24291965bd6d7c46c46a12ba7492f83b1cadf"
  1774. },
  1775. "dist": {
  1776. "type": "zip",
  1777. "url": "https://api.github.com/repos/thephpleague/commonmark/zipball/91c24291965bd6d7c46c46a12ba7492f83b1cadf",
  1778. "reference": "91c24291965bd6d7c46c46a12ba7492f83b1cadf",
  1779. "shasum": ""
  1780. },
  1781. "require": {
  1782. "ext-mbstring": "*",
  1783. "league/config": "^1.1.1",
  1784. "php": "^7.4 || ^8.0",
  1785. "psr/event-dispatcher": "^1.0",
  1786. "symfony/deprecation-contracts": "^2.1 || ^3.0",
  1787. "symfony/polyfill-php80": "^1.16"
  1788. },
  1789. "require-dev": {
  1790. "cebe/markdown": "^1.0",
  1791. "commonmark/cmark": "0.30.3",
  1792. "commonmark/commonmark.js": "0.30.0",
  1793. "composer/package-versions-deprecated": "^1.8",
  1794. "embed/embed": "^4.4",
  1795. "erusev/parsedown": "^1.0",
  1796. "ext-json": "*",
  1797. "github/gfm": "0.29.0",
  1798. "michelf/php-markdown": "^1.4 || ^2.0",
  1799. "nyholm/psr7": "^1.5",
  1800. "phpstan/phpstan": "^1.8.2",
  1801. "phpunit/phpunit": "^9.5.21 || ^10.5.9 || ^11.0.0",
  1802. "scrutinizer/ocular": "^1.8.1",
  1803. "symfony/finder": "^5.3 | ^6.0 || ^7.0",
  1804. "symfony/yaml": "^2.3 | ^3.0 | ^4.0 | ^5.0 | ^6.0 || ^7.0",
  1805. "unleashedtech/php-coding-standard": "^3.1.1",
  1806. "vimeo/psalm": "^4.24.0 || ^5.0.0"
  1807. },
  1808. "suggest": {
  1809. "symfony/yaml": "v2.3+ required if using the Front Matter extension"
  1810. },
  1811. "type": "library",
  1812. "extra": {
  1813. "branch-alias": {
  1814. "dev-main": "2.5-dev"
  1815. }
  1816. },
  1817. "autoload": {
  1818. "psr-4": {
  1819. "League\\CommonMark\\": "src"
  1820. }
  1821. },
  1822. "notification-url": "https://packagist.org/downloads/",
  1823. "license": [
  1824. "BSD-3-Clause"
  1825. ],
  1826. "authors": [
  1827. {
  1828. "name": "Colin O'Dell",
  1829. "email": "colinodell@gmail.com",
  1830. "homepage": "https://www.colinodell.com",
  1831. "role": "Lead Developer"
  1832. }
  1833. ],
  1834. "description": "Highly-extensible PHP Markdown parser which fully supports the CommonMark spec and GitHub-Flavored Markdown (GFM)",
  1835. "homepage": "https://commonmark.thephpleague.com",
  1836. "keywords": [
  1837. "commonmark",
  1838. "flavored",
  1839. "gfm",
  1840. "github",
  1841. "github-flavored",
  1842. "markdown",
  1843. "md",
  1844. "parser"
  1845. ],
  1846. "support": {
  1847. "docs": "https://commonmark.thephpleague.com/",
  1848. "forum": "https://github.com/thephpleague/commonmark/discussions",
  1849. "issues": "https://github.com/thephpleague/commonmark/issues",
  1850. "rss": "https://github.com/thephpleague/commonmark/releases.atom",
  1851. "source": "https://github.com/thephpleague/commonmark"
  1852. },
  1853. "funding": [
  1854. {
  1855. "url": "https://www.colinodell.com/sponsor",
  1856. "type": "custom"
  1857. },
  1858. {
  1859. "url": "https://www.paypal.me/colinpodell/10.00",
  1860. "type": "custom"
  1861. },
  1862. {
  1863. "url": "https://github.com/colinodell",
  1864. "type": "github"
  1865. },
  1866. {
  1867. "url": "https://tidelift.com/funding/github/packagist/league/commonmark",
  1868. "type": "tidelift"
  1869. }
  1870. ],
  1871. "time": "2024-02-02T11:59:32+00:00"
  1872. },
  1873. {
  1874. "name": "league/config",
  1875. "version": "v1.2.0",
  1876. "source": {
  1877. "type": "git",
  1878. "url": "https://github.com/thephpleague/config.git",
  1879. "reference": "754b3604fb2984c71f4af4a9cbe7b57f346ec1f3"
  1880. },
  1881. "dist": {
  1882. "type": "zip",
  1883. "url": "https://api.github.com/repos/thephpleague/config/zipball/754b3604fb2984c71f4af4a9cbe7b57f346ec1f3",
  1884. "reference": "754b3604fb2984c71f4af4a9cbe7b57f346ec1f3",
  1885. "shasum": ""
  1886. },
  1887. "require": {
  1888. "dflydev/dot-access-data": "^3.0.1",
  1889. "nette/schema": "^1.2",
  1890. "php": "^7.4 || ^8.0"
  1891. },
  1892. "require-dev": {
  1893. "phpstan/phpstan": "^1.8.2",
  1894. "phpunit/phpunit": "^9.5.5",
  1895. "scrutinizer/ocular": "^1.8.1",
  1896. "unleashedtech/php-coding-standard": "^3.1",
  1897. "vimeo/psalm": "^4.7.3"
  1898. },
  1899. "type": "library",
  1900. "extra": {
  1901. "branch-alias": {
  1902. "dev-main": "1.2-dev"
  1903. }
  1904. },
  1905. "autoload": {
  1906. "psr-4": {
  1907. "League\\Config\\": "src"
  1908. }
  1909. },
  1910. "notification-url": "https://packagist.org/downloads/",
  1911. "license": [
  1912. "BSD-3-Clause"
  1913. ],
  1914. "authors": [
  1915. {
  1916. "name": "Colin O'Dell",
  1917. "email": "colinodell@gmail.com",
  1918. "homepage": "https://www.colinodell.com",
  1919. "role": "Lead Developer"
  1920. }
  1921. ],
  1922. "description": "Define configuration arrays with strict schemas and access values with dot notation",
  1923. "homepage": "https://config.thephpleague.com",
  1924. "keywords": [
  1925. "array",
  1926. "config",
  1927. "configuration",
  1928. "dot",
  1929. "dot-access",
  1930. "nested",
  1931. "schema"
  1932. ],
  1933. "support": {
  1934. "docs": "https://config.thephpleague.com/",
  1935. "issues": "https://github.com/thephpleague/config/issues",
  1936. "rss": "https://github.com/thephpleague/config/releases.atom",
  1937. "source": "https://github.com/thephpleague/config"
  1938. },
  1939. "funding": [
  1940. {
  1941. "url": "https://www.colinodell.com/sponsor",
  1942. "type": "custom"
  1943. },
  1944. {
  1945. "url": "https://www.paypal.me/colinpodell/10.00",
  1946. "type": "custom"
  1947. },
  1948. {
  1949. "url": "https://github.com/colinodell",
  1950. "type": "github"
  1951. }
  1952. ],
  1953. "time": "2022-12-11T20:36:23+00:00"
  1954. },
  1955. {
  1956. "name": "league/uri",
  1957. "version": "7.4.0",
  1958. "source": {
  1959. "type": "git",
  1960. "url": "https://github.com/thephpleague/uri.git",
  1961. "reference": "bf414ba956d902f5d98bf9385fcf63954f09dce5"
  1962. },
  1963. "dist": {
  1964. "type": "zip",
  1965. "url": "https://api.github.com/repos/thephpleague/uri/zipball/bf414ba956d902f5d98bf9385fcf63954f09dce5",
  1966. "reference": "bf414ba956d902f5d98bf9385fcf63954f09dce5",
  1967. "shasum": ""
  1968. },
  1969. "require": {
  1970. "league/uri-interfaces": "^7.3",
  1971. "php": "^8.1"
  1972. },
  1973. "conflict": {
  1974. "league/uri-schemes": "^1.0"
  1975. },
  1976. "suggest": {
  1977. "ext-bcmath": "to improve IPV4 host parsing",
  1978. "ext-fileinfo": "to create Data URI from file contennts",
  1979. "ext-gmp": "to improve IPV4 host parsing",
  1980. "ext-intl": "to handle IDN host with the best performance",
  1981. "jeremykendall/php-domain-parser": "to resolve Public Suffix and Top Level Domain",
  1982. "league/uri-components": "Needed to easily manipulate URI objects components",
  1983. "php-64bit": "to improve IPV4 host parsing",
  1984. "symfony/polyfill-intl-idn": "to handle IDN host via the Symfony polyfill if ext-intl is not present"
  1985. },
  1986. "type": "library",
  1987. "extra": {
  1988. "branch-alias": {
  1989. "dev-master": "7.x-dev"
  1990. }
  1991. },
  1992. "autoload": {
  1993. "psr-4": {
  1994. "League\\Uri\\": ""
  1995. }
  1996. },
  1997. "notification-url": "https://packagist.org/downloads/",
  1998. "license": [
  1999. "MIT"
  2000. ],
  2001. "authors": [
  2002. {
  2003. "name": "Ignace Nyamagana Butera",
  2004. "email": "nyamsprod@gmail.com",
  2005. "homepage": "https://nyamsprod.com"
  2006. }
  2007. ],
  2008. "description": "URI manipulation library",
  2009. "homepage": "https://uri.thephpleague.com",
  2010. "keywords": [
  2011. "data-uri",
  2012. "file-uri",
  2013. "ftp",
  2014. "hostname",
  2015. "http",
  2016. "https",
  2017. "middleware",
  2018. "parse_str",
  2019. "parse_url",
  2020. "psr-7",
  2021. "query-string",
  2022. "querystring",
  2023. "rfc3986",
  2024. "rfc3987",
  2025. "rfc6570",
  2026. "uri",
  2027. "uri-template",
  2028. "url",
  2029. "ws"
  2030. ],
  2031. "support": {
  2032. "docs": "https://uri.thephpleague.com",
  2033. "forum": "https://thephpleague.slack.com",
  2034. "issues": "https://github.com/thephpleague/uri-src/issues",
  2035. "source": "https://github.com/thephpleague/uri/tree/7.4.0"
  2036. },
  2037. "funding": [
  2038. {
  2039. "url": "https://github.com/sponsors/nyamsprod",
  2040. "type": "github"
  2041. }
  2042. ],
  2043. "time": "2023-12-01T06:24:25+00:00"
  2044. },
  2045. {
  2046. "name": "league/uri-interfaces",
  2047. "version": "7.4.0",
  2048. "source": {
  2049. "type": "git",
  2050. "url": "https://github.com/thephpleague/uri-interfaces.git",
  2051. "reference": "bd8c487ec236930f7bbc42b8d374fa882fbba0f3"
  2052. },
  2053. "dist": {
  2054. "type": "zip",
  2055. "url": "https://api.github.com/repos/thephpleague/uri-interfaces/zipball/bd8c487ec236930f7bbc42b8d374fa882fbba0f3",
  2056. "reference": "bd8c487ec236930f7bbc42b8d374fa882fbba0f3",
  2057. "shasum": ""
  2058. },
  2059. "require": {
  2060. "ext-filter": "*",
  2061. "php": "^8.1",
  2062. "psr/http-factory": "^1",
  2063. "psr/http-message": "^1.1 || ^2.0"
  2064. },
  2065. "suggest": {
  2066. "ext-bcmath": "to improve IPV4 host parsing",
  2067. "ext-gmp": "to improve IPV4 host parsing",
  2068. "ext-intl": "to handle IDN host with the best performance",
  2069. "php-64bit": "to improve IPV4 host parsing",
  2070. "symfony/polyfill-intl-idn": "to handle IDN host via the Symfony polyfill if ext-intl is not present"
  2071. },
  2072. "type": "library",
  2073. "extra": {
  2074. "branch-alias": {
  2075. "dev-master": "7.x-dev"
  2076. }
  2077. },
  2078. "autoload": {
  2079. "psr-4": {
  2080. "League\\Uri\\": ""
  2081. }
  2082. },
  2083. "notification-url": "https://packagist.org/downloads/",
  2084. "license": [
  2085. "MIT"
  2086. ],
  2087. "authors": [
  2088. {
  2089. "name": "Ignace Nyamagana Butera",
  2090. "email": "nyamsprod@gmail.com",
  2091. "homepage": "https://nyamsprod.com"
  2092. }
  2093. ],
  2094. "description": "Common interfaces and classes for URI representation and interaction",
  2095. "homepage": "https://uri.thephpleague.com",
  2096. "keywords": [
  2097. "data-uri",
  2098. "file-uri",
  2099. "ftp",
  2100. "hostname",
  2101. "http",
  2102. "https",
  2103. "parse_str",
  2104. "parse_url",
  2105. "psr-7",
  2106. "query-string",
  2107. "querystring",
  2108. "rfc3986",
  2109. "rfc3987",
  2110. "rfc6570",
  2111. "uri",
  2112. "url",
  2113. "ws"
  2114. ],
  2115. "support": {
  2116. "docs": "https://uri.thephpleague.com",
  2117. "forum": "https://thephpleague.slack.com",
  2118. "issues": "https://github.com/thephpleague/uri-src/issues",
  2119. "source": "https://github.com/thephpleague/uri-interfaces/tree/7.4.0"
  2120. },
  2121. "funding": [
  2122. {
  2123. "url": "https://github.com/sponsors/nyamsprod",
  2124. "type": "github"
  2125. }
  2126. ],
  2127. "time": "2023-11-24T15:40:42+00:00"
  2128. },
  2129. {
  2130. "name": "masterminds/html5",
  2131. "version": "2.8.1",
  2132. "source": {
  2133. "type": "git",
  2134. "url": "https://github.com/Masterminds/html5-php.git",
  2135. "reference": "f47dcf3c70c584de14f21143c55d9939631bc6cf"
  2136. },
  2137. "dist": {
  2138. "type": "zip",
  2139. "url": "https://api.github.com/repos/Masterminds/html5-php/zipball/f47dcf3c70c584de14f21143c55d9939631bc6cf",
  2140. "reference": "f47dcf3c70c584de14f21143c55d9939631bc6cf",
  2141. "shasum": ""
  2142. },
  2143. "require": {
  2144. "ext-dom": "*",
  2145. "php": ">=5.3.0"
  2146. },
  2147. "require-dev": {
  2148. "phpunit/phpunit": "^4.8.35 || ^5.7.21 || ^6 || ^7 || ^8"
  2149. },
  2150. "type": "library",
  2151. "extra": {
  2152. "branch-alias": {
  2153. "dev-master": "2.7-dev"
  2154. }
  2155. },
  2156. "autoload": {
  2157. "psr-4": {
  2158. "Masterminds\\": "src"
  2159. }
  2160. },
  2161. "notification-url": "https://packagist.org/downloads/",
  2162. "license": [
  2163. "MIT"
  2164. ],
  2165. "authors": [
  2166. {
  2167. "name": "Matt Butcher",
  2168. "email": "technosophos@gmail.com"
  2169. },
  2170. {
  2171. "name": "Matt Farina",
  2172. "email": "matt@mattfarina.com"
  2173. },
  2174. {
  2175. "name": "Asmir Mustafic",
  2176. "email": "goetas@gmail.com"
  2177. }
  2178. ],
  2179. "description": "An HTML5 parser and serializer.",
  2180. "homepage": "http://masterminds.github.io/html5-php",
  2181. "keywords": [
  2182. "HTML5",
  2183. "dom",
  2184. "html",
  2185. "parser",
  2186. "querypath",
  2187. "serializer",
  2188. "xml"
  2189. ],
  2190. "support": {
  2191. "issues": "https://github.com/Masterminds/html5-php/issues",
  2192. "source": "https://github.com/Masterminds/html5-php/tree/2.8.1"
  2193. },
  2194. "time": "2023-05-10T11:58:31+00:00"
  2195. },
  2196. {
  2197. "name": "monolog/monolog",
  2198. "version": "3.5.0",
  2199. "source": {
  2200. "type": "git",
  2201. "url": "https://github.com/Seldaek/monolog.git",
  2202. "reference": "c915e2634718dbc8a4a15c61b0e62e7a44e14448"
  2203. },
  2204. "dist": {
  2205. "type": "zip",
  2206. "url": "https://api.github.com/repos/Seldaek/monolog/zipball/c915e2634718dbc8a4a15c61b0e62e7a44e14448",
  2207. "reference": "c915e2634718dbc8a4a15c61b0e62e7a44e14448",
  2208. "shasum": ""
  2209. },
  2210. "require": {
  2211. "php": ">=8.1",
  2212. "psr/log": "^2.0 || ^3.0"
  2213. },
  2214. "provide": {
  2215. "psr/log-implementation": "3.0.0"
  2216. },
  2217. "require-dev": {
  2218. "aws/aws-sdk-php": "^3.0",
  2219. "doctrine/couchdb": "~1.0@dev",
  2220. "elasticsearch/elasticsearch": "^7 || ^8",
  2221. "ext-json": "*",
  2222. "graylog2/gelf-php": "^1.4.2 || ^2.0",
  2223. "guzzlehttp/guzzle": "^7.4.5",
  2224. "guzzlehttp/psr7": "^2.2",
  2225. "mongodb/mongodb": "^1.8",
  2226. "php-amqplib/php-amqplib": "~2.4 || ^3",
  2227. "phpstan/phpstan": "^1.9",
  2228. "phpstan/phpstan-deprecation-rules": "^1.0",
  2229. "phpstan/phpstan-strict-rules": "^1.4",
  2230. "phpunit/phpunit": "^10.1",
  2231. "predis/predis": "^1.1 || ^2",
  2232. "ruflin/elastica": "^7",
  2233. "symfony/mailer": "^5.4 || ^6",
  2234. "symfony/mime": "^5.4 || ^6"
  2235. },
  2236. "suggest": {
  2237. "aws/aws-sdk-php": "Allow sending log messages to AWS services like DynamoDB",
  2238. "doctrine/couchdb": "Allow sending log messages to a CouchDB server",
  2239. "elasticsearch/elasticsearch": "Allow sending log messages to an Elasticsearch server via official client",
  2240. "ext-amqp": "Allow sending log messages to an AMQP server (1.0+ required)",
  2241. "ext-curl": "Required to send log messages using the IFTTTHandler, the LogglyHandler, the SendGridHandler, the SlackWebhookHandler or the TelegramBotHandler",
  2242. "ext-mbstring": "Allow to work properly with unicode symbols",
  2243. "ext-mongodb": "Allow sending log messages to a MongoDB server (via driver)",
  2244. "ext-openssl": "Required to send log messages using SSL",
  2245. "ext-sockets": "Allow sending log messages to a Syslog server (via UDP driver)",
  2246. "graylog2/gelf-php": "Allow sending log messages to a GrayLog2 server",
  2247. "mongodb/mongodb": "Allow sending log messages to a MongoDB server (via library)",
  2248. "php-amqplib/php-amqplib": "Allow sending log messages to an AMQP server using php-amqplib",
  2249. "rollbar/rollbar": "Allow sending log messages to Rollbar",
  2250. "ruflin/elastica": "Allow sending log messages to an Elastic Search server"
  2251. },
  2252. "type": "library",
  2253. "extra": {
  2254. "branch-alias": {
  2255. "dev-main": "3.x-dev"
  2256. }
  2257. },
  2258. "autoload": {
  2259. "psr-4": {
  2260. "Monolog\\": "src/Monolog"
  2261. }
  2262. },
  2263. "notification-url": "https://packagist.org/downloads/",
  2264. "license": [
  2265. "MIT"
  2266. ],
  2267. "authors": [
  2268. {
  2269. "name": "Jordi Boggiano",
  2270. "email": "j.boggiano@seld.be",
  2271. "homepage": "https://seld.be"
  2272. }
  2273. ],
  2274. "description": "Sends your logs to files, sockets, inboxes, databases and various web services",
  2275. "homepage": "https://github.com/Seldaek/monolog",
  2276. "keywords": [
  2277. "log",
  2278. "logging",
  2279. "psr-3"
  2280. ],
  2281. "support": {
  2282. "issues": "https://github.com/Seldaek/monolog/issues",
  2283. "source": "https://github.com/Seldaek/monolog/tree/3.5.0"
  2284. },
  2285. "funding": [
  2286. {
  2287. "url": "https://github.com/Seldaek",
  2288. "type": "github"
  2289. },
  2290. {
  2291. "url": "https://tidelift.com/funding/github/packagist/monolog/monolog",
  2292. "type": "tidelift"
  2293. }
  2294. ],
  2295. "time": "2023-10-27T15:32:31+00:00"
  2296. },
  2297. {
  2298. "name": "nette/schema",
  2299. "version": "v1.3.0",
  2300. "source": {
  2301. "type": "git",
  2302. "url": "https://github.com/nette/schema.git",
  2303. "reference": "a6d3a6d1f545f01ef38e60f375d1cf1f4de98188"
  2304. },
  2305. "dist": {
  2306. "type": "zip",
  2307. "url": "https://api.github.com/repos/nette/schema/zipball/a6d3a6d1f545f01ef38e60f375d1cf1f4de98188",
  2308. "reference": "a6d3a6d1f545f01ef38e60f375d1cf1f4de98188",
  2309. "shasum": ""
  2310. },
  2311. "require": {
  2312. "nette/utils": "^4.0",
  2313. "php": "8.1 - 8.3"
  2314. },
  2315. "require-dev": {
  2316. "nette/tester": "^2.4",
  2317. "phpstan/phpstan-nette": "^1.0",
  2318. "tracy/tracy": "^2.8"
  2319. },
  2320. "type": "library",
  2321. "extra": {
  2322. "branch-alias": {
  2323. "dev-master": "1.3-dev"
  2324. }
  2325. },
  2326. "autoload": {
  2327. "classmap": [
  2328. "src/"
  2329. ]
  2330. },
  2331. "notification-url": "https://packagist.org/downloads/",
  2332. "license": [
  2333. "BSD-3-Clause",
  2334. "GPL-2.0-only",
  2335. "GPL-3.0-only"
  2336. ],
  2337. "authors": [
  2338. {
  2339. "name": "David Grudl",
  2340. "homepage": "https://davidgrudl.com"
  2341. },
  2342. {
  2343. "name": "Nette Community",
  2344. "homepage": "https://nette.org/contributors"
  2345. }
  2346. ],
  2347. "description": "📐 Nette Schema: validating data structures against a given Schema.",
  2348. "homepage": "https://nette.org",
  2349. "keywords": [
  2350. "config",
  2351. "nette"
  2352. ],
  2353. "support": {
  2354. "issues": "https://github.com/nette/schema/issues",
  2355. "source": "https://github.com/nette/schema/tree/v1.3.0"
  2356. },
  2357. "time": "2023-12-11T11:54:22+00:00"
  2358. },
  2359. {
  2360. "name": "nette/utils",
  2361. "version": "v4.0.4",
  2362. "source": {
  2363. "type": "git",
  2364. "url": "https://github.com/nette/utils.git",
  2365. "reference": "d3ad0aa3b9f934602cb3e3902ebccf10be34d218"
  2366. },
  2367. "dist": {
  2368. "type": "zip",
  2369. "url": "https://api.github.com/repos/nette/utils/zipball/d3ad0aa3b9f934602cb3e3902ebccf10be34d218",
  2370. "reference": "d3ad0aa3b9f934602cb3e3902ebccf10be34d218",
  2371. "shasum": ""
  2372. },
  2373. "require": {
  2374. "php": ">=8.0 <8.4"
  2375. },
  2376. "conflict": {
  2377. "nette/finder": "<3",
  2378. "nette/schema": "<1.2.2"
  2379. },
  2380. "require-dev": {
  2381. "jetbrains/phpstorm-attributes": "dev-master",
  2382. "nette/tester": "^2.5",
  2383. "phpstan/phpstan": "^1.0",
  2384. "tracy/tracy": "^2.9"
  2385. },
  2386. "suggest": {
  2387. "ext-gd": "to use Image",
  2388. "ext-iconv": "to use Strings::webalize(), toAscii(), chr() and reverse()",
  2389. "ext-intl": "to use Strings::webalize(), toAscii(), normalize() and compare()",
  2390. "ext-json": "to use Nette\\Utils\\Json",
  2391. "ext-mbstring": "to use Strings::lower() etc...",
  2392. "ext-tokenizer": "to use Nette\\Utils\\Reflection::getUseStatements()"
  2393. },
  2394. "type": "library",
  2395. "extra": {
  2396. "branch-alias": {
  2397. "dev-master": "4.0-dev"
  2398. }
  2399. },
  2400. "autoload": {
  2401. "classmap": [
  2402. "src/"
  2403. ]
  2404. },
  2405. "notification-url": "https://packagist.org/downloads/",
  2406. "license": [
  2407. "BSD-3-Clause",
  2408. "GPL-2.0-only",
  2409. "GPL-3.0-only"
  2410. ],
  2411. "authors": [
  2412. {
  2413. "name": "David Grudl",
  2414. "homepage": "https://davidgrudl.com"
  2415. },
  2416. {
  2417. "name": "Nette Community",
  2418. "homepage": "https://nette.org/contributors"
  2419. }
  2420. ],
  2421. "description": "🛠 Nette Utils: lightweight utilities for string & array manipulation, image handling, safe JSON encoding/decoding, validation, slug or strong password generating etc.",
  2422. "homepage": "https://nette.org",
  2423. "keywords": [
  2424. "array",
  2425. "core",
  2426. "datetime",
  2427. "images",
  2428. "json",
  2429. "nette",
  2430. "paginator",
  2431. "password",
  2432. "slugify",
  2433. "string",
  2434. "unicode",
  2435. "utf-8",
  2436. "utility",
  2437. "validation"
  2438. ],
  2439. "support": {
  2440. "issues": "https://github.com/nette/utils/issues",
  2441. "source": "https://github.com/nette/utils/tree/v4.0.4"
  2442. },
  2443. "time": "2024-01-17T16:50:36+00:00"
  2444. },
  2445. {
  2446. "name": "phpdocumentor/reflection-common",
  2447. "version": "2.2.0",
  2448. "source": {
  2449. "type": "git",
  2450. "url": "https://github.com/phpDocumentor/ReflectionCommon.git",
  2451. "reference": "1d01c49d4ed62f25aa84a747ad35d5a16924662b"
  2452. },
  2453. "dist": {
  2454. "type": "zip",
  2455. "url": "https://api.github.com/repos/phpDocumentor/ReflectionCommon/zipball/1d01c49d4ed62f25aa84a747ad35d5a16924662b",
  2456. "reference": "1d01c49d4ed62f25aa84a747ad35d5a16924662b",
  2457. "shasum": ""
  2458. },
  2459. "require": {
  2460. "php": "^7.2 || ^8.0"
  2461. },
  2462. "type": "library",
  2463. "extra": {
  2464. "branch-alias": {
  2465. "dev-2.x": "2.x-dev"
  2466. }
  2467. },
  2468. "autoload": {
  2469. "psr-4": {
  2470. "phpDocumentor\\Reflection\\": "src/"
  2471. }
  2472. },
  2473. "notification-url": "https://packagist.org/downloads/",
  2474. "license": [
  2475. "MIT"
  2476. ],
  2477. "authors": [
  2478. {
  2479. "name": "Jaap van Otterdijk",
  2480. "email": "opensource@ijaap.nl"
  2481. }
  2482. ],
  2483. "description": "Common reflection classes used by phpdocumentor to reflect the code structure",
  2484. "homepage": "http://www.phpdoc.org",
  2485. "keywords": [
  2486. "FQSEN",
  2487. "phpDocumentor",
  2488. "phpdoc",
  2489. "reflection",
  2490. "static analysis"
  2491. ],
  2492. "support": {
  2493. "issues": "https://github.com/phpDocumentor/ReflectionCommon/issues",
  2494. "source": "https://github.com/phpDocumentor/ReflectionCommon/tree/2.x"
  2495. },
  2496. "time": "2020-06-27T09:03:43+00:00"
  2497. },
  2498. {
  2499. "name": "phpdocumentor/reflection-docblock",
  2500. "version": "5.3.0",
  2501. "source": {
  2502. "type": "git",
  2503. "url": "https://github.com/phpDocumentor/ReflectionDocBlock.git",
  2504. "reference": "622548b623e81ca6d78b721c5e029f4ce664f170"
  2505. },
  2506. "dist": {
  2507. "type": "zip",
  2508. "url": "https://api.github.com/repos/phpDocumentor/ReflectionDocBlock/zipball/622548b623e81ca6d78b721c5e029f4ce664f170",
  2509. "reference": "622548b623e81ca6d78b721c5e029f4ce664f170",
  2510. "shasum": ""
  2511. },
  2512. "require": {
  2513. "ext-filter": "*",
  2514. "php": "^7.2 || ^8.0",
  2515. "phpdocumentor/reflection-common": "^2.2",
  2516. "phpdocumentor/type-resolver": "^1.3",
  2517. "webmozart/assert": "^1.9.1"
  2518. },
  2519. "require-dev": {
  2520. "mockery/mockery": "~1.3.2",
  2521. "psalm/phar": "^4.8"
  2522. },
  2523. "type": "library",
  2524. "extra": {
  2525. "branch-alias": {
  2526. "dev-master": "5.x-dev"
  2527. }
  2528. },
  2529. "autoload": {
  2530. "psr-4": {
  2531. "phpDocumentor\\Reflection\\": "src"
  2532. }
  2533. },
  2534. "notification-url": "https://packagist.org/downloads/",
  2535. "license": [
  2536. "MIT"
  2537. ],
  2538. "authors": [
  2539. {
  2540. "name": "Mike van Riel",
  2541. "email": "me@mikevanriel.com"
  2542. },
  2543. {
  2544. "name": "Jaap van Otterdijk",
  2545. "email": "account@ijaap.nl"
  2546. }
  2547. ],
  2548. "description": "With this component, a library can provide support for annotations via DocBlocks or otherwise retrieve information that is embedded in a DocBlock.",
  2549. "support": {
  2550. "issues": "https://github.com/phpDocumentor/ReflectionDocBlock/issues",
  2551. "source": "https://github.com/phpDocumentor/ReflectionDocBlock/tree/5.3.0"
  2552. },
  2553. "time": "2021-10-19T17:43:47+00:00"
  2554. },
  2555. {
  2556. "name": "phpdocumentor/type-resolver",
  2557. "version": "1.8.1",
  2558. "source": {
  2559. "type": "git",
  2560. "url": "https://github.com/phpDocumentor/TypeResolver.git",
  2561. "reference": "bc3dc91a5e9b14aa06d1d9e90647c5c5a2cc5353"
  2562. },
  2563. "dist": {
  2564. "type": "zip",
  2565. "url": "https://api.github.com/repos/phpDocumentor/TypeResolver/zipball/bc3dc91a5e9b14aa06d1d9e90647c5c5a2cc5353",
  2566. "reference": "bc3dc91a5e9b14aa06d1d9e90647c5c5a2cc5353",
  2567. "shasum": ""
  2568. },
  2569. "require": {
  2570. "doctrine/deprecations": "^1.0",
  2571. "php": "^7.4 || ^8.0",
  2572. "phpdocumentor/reflection-common": "^2.0",
  2573. "phpstan/phpdoc-parser": "^1.13"
  2574. },
  2575. "require-dev": {
  2576. "ext-tokenizer": "*",
  2577. "phpbench/phpbench": "^1.2",
  2578. "phpstan/extension-installer": "^1.1",
  2579. "phpstan/phpstan": "^1.8",
  2580. "phpstan/phpstan-phpunit": "^1.1",
  2581. "phpunit/phpunit": "^9.5",
  2582. "rector/rector": "^0.13.9",
  2583. "vimeo/psalm": "^4.25"
  2584. },
  2585. "type": "library",
  2586. "extra": {
  2587. "branch-alias": {
  2588. "dev-1.x": "1.x-dev"
  2589. }
  2590. },
  2591. "autoload": {
  2592. "psr-4": {
  2593. "phpDocumentor\\Reflection\\": "src"
  2594. }
  2595. },
  2596. "notification-url": "https://packagist.org/downloads/",
  2597. "license": [
  2598. "MIT"
  2599. ],
  2600. "authors": [
  2601. {
  2602. "name": "Mike van Riel",
  2603. "email": "me@mikevanriel.com"
  2604. }
  2605. ],
  2606. "description": "A PSR-5 based resolver of Class names, Types and Structural Element Names",
  2607. "support": {
  2608. "issues": "https://github.com/phpDocumentor/TypeResolver/issues",
  2609. "source": "https://github.com/phpDocumentor/TypeResolver/tree/1.8.1"
  2610. },
  2611. "time": "2024-01-18T19:15:27+00:00"
  2612. },
  2613. {
  2614. "name": "phpstan/phpdoc-parser",
  2615. "version": "1.25.0",
  2616. "source": {
  2617. "type": "git",
  2618. "url": "https://github.com/phpstan/phpdoc-parser.git",
  2619. "reference": "bd84b629c8de41aa2ae82c067c955e06f1b00240"
  2620. },
  2621. "dist": {
  2622. "type": "zip",
  2623. "url": "https://api.github.com/repos/phpstan/phpdoc-parser/zipball/bd84b629c8de41aa2ae82c067c955e06f1b00240",
  2624. "reference": "bd84b629c8de41aa2ae82c067c955e06f1b00240",
  2625. "shasum": ""
  2626. },
  2627. "require": {
  2628. "php": "^7.2 || ^8.0"
  2629. },
  2630. "require-dev": {
  2631. "doctrine/annotations": "^2.0",
  2632. "nikic/php-parser": "^4.15",
  2633. "php-parallel-lint/php-parallel-lint": "^1.2",
  2634. "phpstan/extension-installer": "^1.0",
  2635. "phpstan/phpstan": "^1.5",
  2636. "phpstan/phpstan-phpunit": "^1.1",
  2637. "phpstan/phpstan-strict-rules": "^1.0",
  2638. "phpunit/phpunit": "^9.5",
  2639. "symfony/process": "^5.2"
  2640. },
  2641. "type": "library",
  2642. "autoload": {
  2643. "psr-4": {
  2644. "PHPStan\\PhpDocParser\\": [
  2645. "src/"
  2646. ]
  2647. }
  2648. },
  2649. "notification-url": "https://packagist.org/downloads/",
  2650. "license": [
  2651. "MIT"
  2652. ],
  2653. "description": "PHPDoc parser with support for nullable, intersection and generic types",
  2654. "support": {
  2655. "issues": "https://github.com/phpstan/phpdoc-parser/issues",
  2656. "source": "https://github.com/phpstan/phpdoc-parser/tree/1.25.0"
  2657. },
  2658. "time": "2024-01-04T17:06:16+00:00"
  2659. },
  2660. {
  2661. "name": "psr/cache",
  2662. "version": "3.0.0",
  2663. "source": {
  2664. "type": "git",
  2665. "url": "https://github.com/php-fig/cache.git",
  2666. "reference": "aa5030cfa5405eccfdcb1083ce040c2cb8d253bf"
  2667. },
  2668. "dist": {
  2669. "type": "zip",
  2670. "url": "https://api.github.com/repos/php-fig/cache/zipball/aa5030cfa5405eccfdcb1083ce040c2cb8d253bf",
  2671. "reference": "aa5030cfa5405eccfdcb1083ce040c2cb8d253bf",
  2672. "shasum": ""
  2673. },
  2674. "require": {
  2675. "php": ">=8.0.0"
  2676. },
  2677. "type": "library",
  2678. "extra": {
  2679. "branch-alias": {
  2680. "dev-master": "1.0.x-dev"
  2681. }
  2682. },
  2683. "autoload": {
  2684. "psr-4": {
  2685. "Psr\\Cache\\": "src/"
  2686. }
  2687. },
  2688. "notification-url": "https://packagist.org/downloads/",
  2689. "license": [
  2690. "MIT"
  2691. ],
  2692. "authors": [
  2693. {
  2694. "name": "PHP-FIG",
  2695. "homepage": "https://www.php-fig.org/"
  2696. }
  2697. ],
  2698. "description": "Common interface for caching libraries",
  2699. "keywords": [
  2700. "cache",
  2701. "psr",
  2702. "psr-6"
  2703. ],
  2704. "support": {
  2705. "source": "https://github.com/php-fig/cache/tree/3.0.0"
  2706. },
  2707. "time": "2021-02-03T23:26:27+00:00"
  2708. },
  2709. {
  2710. "name": "psr/clock",
  2711. "version": "1.0.0",
  2712. "source": {
  2713. "type": "git",
  2714. "url": "https://github.com/php-fig/clock.git",
  2715. "reference": "e41a24703d4560fd0acb709162f73b8adfc3aa0d"
  2716. },
  2717. "dist": {
  2718. "type": "zip",
  2719. "url": "https://api.github.com/repos/php-fig/clock/zipball/e41a24703d4560fd0acb709162f73b8adfc3aa0d",
  2720. "reference": "e41a24703d4560fd0acb709162f73b8adfc3aa0d",
  2721. "shasum": ""
  2722. },
  2723. "require": {
  2724. "php": "^7.0 || ^8.0"
  2725. },
  2726. "type": "library",
  2727. "autoload": {
  2728. "psr-4": {
  2729. "Psr\\Clock\\": "src/"
  2730. }
  2731. },
  2732. "notification-url": "https://packagist.org/downloads/",
  2733. "license": [
  2734. "MIT"
  2735. ],
  2736. "authors": [
  2737. {
  2738. "name": "PHP-FIG",
  2739. "homepage": "https://www.php-fig.org/"
  2740. }
  2741. ],
  2742. "description": "Common interface for reading the clock.",
  2743. "homepage": "https://github.com/php-fig/clock",
  2744. "keywords": [
  2745. "clock",
  2746. "now",
  2747. "psr",
  2748. "psr-20",
  2749. "time"
  2750. ],
  2751. "support": {
  2752. "issues": "https://github.com/php-fig/clock/issues",
  2753. "source": "https://github.com/php-fig/clock/tree/1.0.0"
  2754. },
  2755. "time": "2022-11-25T14:36:26+00:00"
  2756. },
  2757. {
  2758. "name": "psr/container",
  2759. "version": "2.0.2",
  2760. "source": {
  2761. "type": "git",
  2762. "url": "https://github.com/php-fig/container.git",
  2763. "reference": "c71ecc56dfe541dbd90c5360474fbc405f8d5963"
  2764. },
  2765. "dist": {
  2766. "type": "zip",
  2767. "url": "https://api.github.com/repos/php-fig/container/zipball/c71ecc56dfe541dbd90c5360474fbc405f8d5963",
  2768. "reference": "c71ecc56dfe541dbd90c5360474fbc405f8d5963",
  2769. "shasum": ""
  2770. },
  2771. "require": {
  2772. "php": ">=7.4.0"
  2773. },
  2774. "type": "library",
  2775. "extra": {
  2776. "branch-alias": {
  2777. "dev-master": "2.0.x-dev"
  2778. }
  2779. },
  2780. "autoload": {
  2781. "psr-4": {
  2782. "Psr\\Container\\": "src/"
  2783. }
  2784. },
  2785. "notification-url": "https://packagist.org/downloads/",
  2786. "license": [
  2787. "MIT"
  2788. ],
  2789. "authors": [
  2790. {
  2791. "name": "PHP-FIG",
  2792. "homepage": "https://www.php-fig.org/"
  2793. }
  2794. ],
  2795. "description": "Common Container Interface (PHP FIG PSR-11)",
  2796. "homepage": "https://github.com/php-fig/container",
  2797. "keywords": [
  2798. "PSR-11",
  2799. "container",
  2800. "container-interface",
  2801. "container-interop",
  2802. "psr"
  2803. ],
  2804. "support": {
  2805. "issues": "https://github.com/php-fig/container/issues",
  2806. "source": "https://github.com/php-fig/container/tree/2.0.2"
  2807. },
  2808. "time": "2021-11-05T16:47:00+00:00"
  2809. },
  2810. {
  2811. "name": "psr/event-dispatcher",
  2812. "version": "1.0.0",
  2813. "source": {
  2814. "type": "git",
  2815. "url": "https://github.com/php-fig/event-dispatcher.git",
  2816. "reference": "dbefd12671e8a14ec7f180cab83036ed26714bb0"
  2817. },
  2818. "dist": {
  2819. "type": "zip",
  2820. "url": "https://api.github.com/repos/php-fig/event-dispatcher/zipball/dbefd12671e8a14ec7f180cab83036ed26714bb0",
  2821. "reference": "dbefd12671e8a14ec7f180cab83036ed26714bb0",
  2822. "shasum": ""
  2823. },
  2824. "require": {
  2825. "php": ">=7.2.0"
  2826. },
  2827. "type": "library",
  2828. "extra": {
  2829. "branch-alias": {
  2830. "dev-master": "1.0.x-dev"
  2831. }
  2832. },
  2833. "autoload": {
  2834. "psr-4": {
  2835. "Psr\\EventDispatcher\\": "src/"
  2836. }
  2837. },
  2838. "notification-url": "https://packagist.org/downloads/",
  2839. "license": [
  2840. "MIT"
  2841. ],
  2842. "authors": [
  2843. {
  2844. "name": "PHP-FIG",
  2845. "homepage": "http://www.php-fig.org/"
  2846. }
  2847. ],
  2848. "description": "Standard interfaces for event handling.",
  2849. "keywords": [
  2850. "events",
  2851. "psr",
  2852. "psr-14"
  2853. ],
  2854. "support": {
  2855. "issues": "https://github.com/php-fig/event-dispatcher/issues",
  2856. "source": "https://github.com/php-fig/event-dispatcher/tree/1.0.0"
  2857. },
  2858. "time": "2019-01-08T18:20:26+00:00"
  2859. },
  2860. {
  2861. "name": "psr/http-factory",
  2862. "version": "1.0.2",
  2863. "source": {
  2864. "type": "git",
  2865. "url": "https://github.com/php-fig/http-factory.git",
  2866. "reference": "e616d01114759c4c489f93b099585439f795fe35"
  2867. },
  2868. "dist": {
  2869. "type": "zip",
  2870. "url": "https://api.github.com/repos/php-fig/http-factory/zipball/e616d01114759c4c489f93b099585439f795fe35",
  2871. "reference": "e616d01114759c4c489f93b099585439f795fe35",
  2872. "shasum": ""
  2873. },
  2874. "require": {
  2875. "php": ">=7.0.0",
  2876. "psr/http-message": "^1.0 || ^2.0"
  2877. },
  2878. "type": "library",
  2879. "extra": {
  2880. "branch-alias": {
  2881. "dev-master": "1.0.x-dev"
  2882. }
  2883. },
  2884. "autoload": {
  2885. "psr-4": {
  2886. "Psr\\Http\\Message\\": "src/"
  2887. }
  2888. },
  2889. "notification-url": "https://packagist.org/downloads/",
  2890. "license": [
  2891. "MIT"
  2892. ],
  2893. "authors": [
  2894. {
  2895. "name": "PHP-FIG",
  2896. "homepage": "https://www.php-fig.org/"
  2897. }
  2898. ],
  2899. "description": "Common interfaces for PSR-7 HTTP message factories",
  2900. "keywords": [
  2901. "factory",
  2902. "http",
  2903. "message",
  2904. "psr",
  2905. "psr-17",
  2906. "psr-7",
  2907. "request",
  2908. "response"
  2909. ],
  2910. "support": {
  2911. "source": "https://github.com/php-fig/http-factory/tree/1.0.2"
  2912. },
  2913. "time": "2023-04-10T20:10:41+00:00"
  2914. },
  2915. {
  2916. "name": "psr/http-message",
  2917. "version": "2.0",
  2918. "source": {
  2919. "type": "git",
  2920. "url": "https://github.com/php-fig/http-message.git",
  2921. "reference": "402d35bcb92c70c026d1a6a9883f06b2ead23d71"
  2922. },
  2923. "dist": {
  2924. "type": "zip",
  2925. "url": "https://api.github.com/repos/php-fig/http-message/zipball/402d35bcb92c70c026d1a6a9883f06b2ead23d71",
  2926. "reference": "402d35bcb92c70c026d1a6a9883f06b2ead23d71",
  2927. "shasum": ""
  2928. },
  2929. "require": {
  2930. "php": "^7.2 || ^8.0"
  2931. },
  2932. "type": "library",
  2933. "extra": {
  2934. "branch-alias": {
  2935. "dev-master": "2.0.x-dev"
  2936. }
  2937. },
  2938. "autoload": {
  2939. "psr-4": {
  2940. "Psr\\Http\\Message\\": "src/"
  2941. }
  2942. },
  2943. "notification-url": "https://packagist.org/downloads/",
  2944. "license": [
  2945. "MIT"
  2946. ],
  2947. "authors": [
  2948. {
  2949. "name": "PHP-FIG",
  2950. "homepage": "https://www.php-fig.org/"
  2951. }
  2952. ],
  2953. "description": "Common interface for HTTP messages",
  2954. "homepage": "https://github.com/php-fig/http-message",
  2955. "keywords": [
  2956. "http",
  2957. "http-message",
  2958. "psr",
  2959. "psr-7",
  2960. "request",
  2961. "response"
  2962. ],
  2963. "support": {
  2964. "source": "https://github.com/php-fig/http-message/tree/2.0"
  2965. },
  2966. "time": "2023-04-04T09:54:51+00:00"
  2967. },
  2968. {
  2969. "name": "psr/link",
  2970. "version": "2.0.1",
  2971. "source": {
  2972. "type": "git",
  2973. "url": "https://github.com/php-fig/link.git",
  2974. "reference": "84b159194ecfd7eaa472280213976e96415433f7"
  2975. },
  2976. "dist": {
  2977. "type": "zip",
  2978. "url": "https://api.github.com/repos/php-fig/link/zipball/84b159194ecfd7eaa472280213976e96415433f7",
  2979. "reference": "84b159194ecfd7eaa472280213976e96415433f7",
  2980. "shasum": ""
  2981. },
  2982. "require": {
  2983. "php": ">=8.0.0"
  2984. },
  2985. "suggest": {
  2986. "fig/link-util": "Provides some useful PSR-13 utilities"
  2987. },
  2988. "type": "library",
  2989. "extra": {
  2990. "branch-alias": {
  2991. "dev-master": "2.0.x-dev"
  2992. }
  2993. },
  2994. "autoload": {
  2995. "psr-4": {
  2996. "Psr\\Link\\": "src/"
  2997. }
  2998. },
  2999. "notification-url": "https://packagist.org/downloads/",
  3000. "license": [
  3001. "MIT"
  3002. ],
  3003. "authors": [
  3004. {
  3005. "name": "PHP-FIG",
  3006. "homepage": "http://www.php-fig.org/"
  3007. }
  3008. ],
  3009. "description": "Common interfaces for HTTP links",
  3010. "homepage": "https://github.com/php-fig/link",
  3011. "keywords": [
  3012. "http",
  3013. "http-link",
  3014. "link",
  3015. "psr",
  3016. "psr-13",
  3017. "rest"
  3018. ],
  3019. "support": {
  3020. "source": "https://github.com/php-fig/link/tree/2.0.1"
  3021. },
  3022. "time": "2021-03-11T23:00:27+00:00"
  3023. },
  3024. {
  3025. "name": "psr/log",
  3026. "version": "3.0.0",
  3027. "source": {
  3028. "type": "git",
  3029. "url": "https://github.com/php-fig/log.git",
  3030. "reference": "fe5ea303b0887d5caefd3d431c3e61ad47037001"
  3031. },
  3032. "dist": {
  3033. "type": "zip",
  3034. "url": "https://api.github.com/repos/php-fig/log/zipball/fe5ea303b0887d5caefd3d431c3e61ad47037001",
  3035. "reference": "fe5ea303b0887d5caefd3d431c3e61ad47037001",
  3036. "shasum": ""
  3037. },
  3038. "require": {
  3039. "php": ">=8.0.0"
  3040. },
  3041. "type": "library",
  3042. "extra": {
  3043. "branch-alias": {
  3044. "dev-master": "3.x-dev"
  3045. }
  3046. },
  3047. "autoload": {
  3048. "psr-4": {
  3049. "Psr\\Log\\": "src"
  3050. }
  3051. },
  3052. "notification-url": "https://packagist.org/downloads/",
  3053. "license": [
  3054. "MIT"
  3055. ],
  3056. "authors": [
  3057. {
  3058. "name": "PHP-FIG",
  3059. "homepage": "https://www.php-fig.org/"
  3060. }
  3061. ],
  3062. "description": "Common interface for logging libraries",
  3063. "homepage": "https://github.com/php-fig/log",
  3064. "keywords": [
  3065. "log",
  3066. "psr",
  3067. "psr-3"
  3068. ],
  3069. "support": {
  3070. "source": "https://github.com/php-fig/log/tree/3.0.0"
  3071. },
  3072. "time": "2021-07-14T16:46:02+00:00"
  3073. },
  3074. {
  3075. "name": "symfony/apache-pack",
  3076. "version": "v1.0.1",
  3077. "source": {
  3078. "type": "git",
  3079. "url": "https://github.com/symfony/apache-pack.git",
  3080. "reference": "3aa5818d73ad2551281fc58a75afd9ca82622e6c"
  3081. },
  3082. "dist": {
  3083. "type": "zip",
  3084. "url": "https://api.github.com/repos/symfony/apache-pack/zipball/3aa5818d73ad2551281fc58a75afd9ca82622e6c",
  3085. "reference": "3aa5818d73ad2551281fc58a75afd9ca82622e6c",
  3086. "shasum": ""
  3087. },
  3088. "type": "symfony-pack",
  3089. "notification-url": "https://packagist.org/downloads/",
  3090. "license": [
  3091. "MIT"
  3092. ],
  3093. "description": "A pack for Apache support in Symfony",
  3094. "support": {
  3095. "issues": "https://github.com/symfony/apache-pack/issues",
  3096. "source": "https://github.com/symfony/apache-pack/tree/master"
  3097. },
  3098. "time": "2017-12-12T01:46:35+00:00"
  3099. },
  3100. {
  3101. "name": "symfony/asset",
  3102. "version": "v6.4.3",
  3103. "source": {
  3104. "type": "git",
  3105. "url": "https://github.com/symfony/asset.git",
  3106. "reference": "14b1c0fddb64af6ea626af51bb3c47af9fa19cb7"
  3107. },
  3108. "dist": {
  3109. "type": "zip",
  3110. "url": "https://api.github.com/repos/symfony/asset/zipball/14b1c0fddb64af6ea626af51bb3c47af9fa19cb7",
  3111. "reference": "14b1c0fddb64af6ea626af51bb3c47af9fa19cb7",
  3112. "shasum": ""
  3113. },
  3114. "require": {
  3115. "php": ">=8.1"
  3116. },
  3117. "conflict": {
  3118. "symfony/http-foundation": "<5.4"
  3119. },
  3120. "require-dev": {
  3121. "symfony/http-client": "^5.4|^6.0|^7.0",
  3122. "symfony/http-foundation": "^5.4|^6.0|^7.0",
  3123. "symfony/http-kernel": "^5.4|^6.0|^7.0"
  3124. },
  3125. "type": "library",
  3126. "autoload": {
  3127. "psr-4": {
  3128. "Symfony\\Component\\Asset\\": ""
  3129. },
  3130. "exclude-from-classmap": [
  3131. "/Tests/"
  3132. ]
  3133. },
  3134. "notification-url": "https://packagist.org/downloads/",
  3135. "license": [
  3136. "MIT"
  3137. ],
  3138. "authors": [
  3139. {
  3140. "name": "Fabien Potencier",
  3141. "email": "fabien@symfony.com"
  3142. },
  3143. {
  3144. "name": "Symfony Community",
  3145. "homepage": "https://symfony.com/contributors"
  3146. }
  3147. ],
  3148. "description": "Manages URL generation and versioning of web assets such as CSS stylesheets, JavaScript files and image files",
  3149. "homepage": "https://symfony.com",
  3150. "support": {
  3151. "source": "https://github.com/symfony/asset/tree/v6.4.3"
  3152. },
  3153. "funding": [
  3154. {
  3155. "url": "https://symfony.com/sponsor",
  3156. "type": "custom"
  3157. },
  3158. {
  3159. "url": "https://github.com/fabpot",
  3160. "type": "github"
  3161. },
  3162. {
  3163. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3164. "type": "tidelift"
  3165. }
  3166. ],
  3167. "time": "2024-01-23T14:51:35+00:00"
  3168. },
  3169. {
  3170. "name": "symfony/cache",
  3171. "version": "v6.4.3",
  3172. "source": {
  3173. "type": "git",
  3174. "url": "https://github.com/symfony/cache.git",
  3175. "reference": "49f8cdee544a621a621cd21b6cda32a38926d310"
  3176. },
  3177. "dist": {
  3178. "type": "zip",
  3179. "url": "https://api.github.com/repos/symfony/cache/zipball/49f8cdee544a621a621cd21b6cda32a38926d310",
  3180. "reference": "49f8cdee544a621a621cd21b6cda32a38926d310",
  3181. "shasum": ""
  3182. },
  3183. "require": {
  3184. "php": ">=8.1",
  3185. "psr/cache": "^2.0|^3.0",
  3186. "psr/log": "^1.1|^2|^3",
  3187. "symfony/cache-contracts": "^2.5|^3",
  3188. "symfony/service-contracts": "^2.5|^3",
  3189. "symfony/var-exporter": "^6.3.6|^7.0"
  3190. },
  3191. "conflict": {
  3192. "doctrine/dbal": "<2.13.1",
  3193. "symfony/dependency-injection": "<5.4",
  3194. "symfony/http-kernel": "<5.4",
  3195. "symfony/var-dumper": "<5.4"
  3196. },
  3197. "provide": {
  3198. "psr/cache-implementation": "2.0|3.0",
  3199. "psr/simple-cache-implementation": "1.0|2.0|3.0",
  3200. "symfony/cache-implementation": "1.1|2.0|3.0"
  3201. },
  3202. "require-dev": {
  3203. "cache/integration-tests": "dev-master",
  3204. "doctrine/dbal": "^2.13.1|^3|^4",
  3205. "predis/predis": "^1.1|^2.0",
  3206. "psr/simple-cache": "^1.0|^2.0|^3.0",
  3207. "symfony/config": "^5.4|^6.0|^7.0",
  3208. "symfony/dependency-injection": "^5.4|^6.0|^7.0",
  3209. "symfony/filesystem": "^5.4|^6.0|^7.0",
  3210. "symfony/http-kernel": "^5.4|^6.0|^7.0",
  3211. "symfony/messenger": "^5.4|^6.0|^7.0",
  3212. "symfony/var-dumper": "^5.4|^6.0|^7.0"
  3213. },
  3214. "type": "library",
  3215. "autoload": {
  3216. "psr-4": {
  3217. "Symfony\\Component\\Cache\\": ""
  3218. },
  3219. "classmap": [
  3220. "Traits/ValueWrapper.php"
  3221. ],
  3222. "exclude-from-classmap": [
  3223. "/Tests/"
  3224. ]
  3225. },
  3226. "notification-url": "https://packagist.org/downloads/",
  3227. "license": [
  3228. "MIT"
  3229. ],
  3230. "authors": [
  3231. {
  3232. "name": "Nicolas Grekas",
  3233. "email": "p@tchwork.com"
  3234. },
  3235. {
  3236. "name": "Symfony Community",
  3237. "homepage": "https://symfony.com/contributors"
  3238. }
  3239. ],
  3240. "description": "Provides extended PSR-6, PSR-16 (and tags) implementations",
  3241. "homepage": "https://symfony.com",
  3242. "keywords": [
  3243. "caching",
  3244. "psr6"
  3245. ],
  3246. "support": {
  3247. "source": "https://github.com/symfony/cache/tree/v6.4.3"
  3248. },
  3249. "funding": [
  3250. {
  3251. "url": "https://symfony.com/sponsor",
  3252. "type": "custom"
  3253. },
  3254. {
  3255. "url": "https://github.com/fabpot",
  3256. "type": "github"
  3257. },
  3258. {
  3259. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3260. "type": "tidelift"
  3261. }
  3262. ],
  3263. "time": "2024-01-23T14:51:35+00:00"
  3264. },
  3265. {
  3266. "name": "symfony/cache-contracts",
  3267. "version": "v3.4.0",
  3268. "source": {
  3269. "type": "git",
  3270. "url": "https://github.com/symfony/cache-contracts.git",
  3271. "reference": "1d74b127da04ffa87aa940abe15446fa89653778"
  3272. },
  3273. "dist": {
  3274. "type": "zip",
  3275. "url": "https://api.github.com/repos/symfony/cache-contracts/zipball/1d74b127da04ffa87aa940abe15446fa89653778",
  3276. "reference": "1d74b127da04ffa87aa940abe15446fa89653778",
  3277. "shasum": ""
  3278. },
  3279. "require": {
  3280. "php": ">=8.1",
  3281. "psr/cache": "^3.0"
  3282. },
  3283. "type": "library",
  3284. "extra": {
  3285. "branch-alias": {
  3286. "dev-main": "3.4-dev"
  3287. },
  3288. "thanks": {
  3289. "name": "symfony/contracts",
  3290. "url": "https://github.com/symfony/contracts"
  3291. }
  3292. },
  3293. "autoload": {
  3294. "psr-4": {
  3295. "Symfony\\Contracts\\Cache\\": ""
  3296. }
  3297. },
  3298. "notification-url": "https://packagist.org/downloads/",
  3299. "license": [
  3300. "MIT"
  3301. ],
  3302. "authors": [
  3303. {
  3304. "name": "Nicolas Grekas",
  3305. "email": "p@tchwork.com"
  3306. },
  3307. {
  3308. "name": "Symfony Community",
  3309. "homepage": "https://symfony.com/contributors"
  3310. }
  3311. ],
  3312. "description": "Generic abstractions related to caching",
  3313. "homepage": "https://symfony.com",
  3314. "keywords": [
  3315. "abstractions",
  3316. "contracts",
  3317. "decoupling",
  3318. "interfaces",
  3319. "interoperability",
  3320. "standards"
  3321. ],
  3322. "support": {
  3323. "source": "https://github.com/symfony/cache-contracts/tree/v3.4.0"
  3324. },
  3325. "funding": [
  3326. {
  3327. "url": "https://symfony.com/sponsor",
  3328. "type": "custom"
  3329. },
  3330. {
  3331. "url": "https://github.com/fabpot",
  3332. "type": "github"
  3333. },
  3334. {
  3335. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3336. "type": "tidelift"
  3337. }
  3338. ],
  3339. "time": "2023-09-25T12:52:38+00:00"
  3340. },
  3341. {
  3342. "name": "symfony/clock",
  3343. "version": "v6.4.3",
  3344. "source": {
  3345. "type": "git",
  3346. "url": "https://github.com/symfony/clock.git",
  3347. "reference": "f48770105c544001da00b8d745873a628e0de198"
  3348. },
  3349. "dist": {
  3350. "type": "zip",
  3351. "url": "https://api.github.com/repos/symfony/clock/zipball/f48770105c544001da00b8d745873a628e0de198",
  3352. "reference": "f48770105c544001da00b8d745873a628e0de198",
  3353. "shasum": ""
  3354. },
  3355. "require": {
  3356. "php": ">=8.1",
  3357. "psr/clock": "^1.0",
  3358. "symfony/polyfill-php83": "^1.28"
  3359. },
  3360. "provide": {
  3361. "psr/clock-implementation": "1.0"
  3362. },
  3363. "type": "library",
  3364. "autoload": {
  3365. "files": [
  3366. "Resources/now.php"
  3367. ],
  3368. "psr-4": {
  3369. "Symfony\\Component\\Clock\\": ""
  3370. },
  3371. "exclude-from-classmap": [
  3372. "/Tests/"
  3373. ]
  3374. },
  3375. "notification-url": "https://packagist.org/downloads/",
  3376. "license": [
  3377. "MIT"
  3378. ],
  3379. "authors": [
  3380. {
  3381. "name": "Nicolas Grekas",
  3382. "email": "p@tchwork.com"
  3383. },
  3384. {
  3385. "name": "Symfony Community",
  3386. "homepage": "https://symfony.com/contributors"
  3387. }
  3388. ],
  3389. "description": "Decouples applications from the system clock",
  3390. "homepage": "https://symfony.com",
  3391. "keywords": [
  3392. "clock",
  3393. "psr20",
  3394. "time"
  3395. ],
  3396. "support": {
  3397. "source": "https://github.com/symfony/clock/tree/v6.4.3"
  3398. },
  3399. "funding": [
  3400. {
  3401. "url": "https://symfony.com/sponsor",
  3402. "type": "custom"
  3403. },
  3404. {
  3405. "url": "https://github.com/fabpot",
  3406. "type": "github"
  3407. },
  3408. {
  3409. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3410. "type": "tidelift"
  3411. }
  3412. ],
  3413. "time": "2024-01-23T14:51:35+00:00"
  3414. },
  3415. {
  3416. "name": "symfony/config",
  3417. "version": "v6.4.3",
  3418. "source": {
  3419. "type": "git",
  3420. "url": "https://github.com/symfony/config.git",
  3421. "reference": "206482ff3ed450495b1d5b7bad1bc3a852def96f"
  3422. },
  3423. "dist": {
  3424. "type": "zip",
  3425. "url": "https://api.github.com/repos/symfony/config/zipball/206482ff3ed450495b1d5b7bad1bc3a852def96f",
  3426. "reference": "206482ff3ed450495b1d5b7bad1bc3a852def96f",
  3427. "shasum": ""
  3428. },
  3429. "require": {
  3430. "php": ">=8.1",
  3431. "symfony/deprecation-contracts": "^2.5|^3",
  3432. "symfony/filesystem": "^5.4|^6.0|^7.0",
  3433. "symfony/polyfill-ctype": "~1.8"
  3434. },
  3435. "conflict": {
  3436. "symfony/finder": "<5.4",
  3437. "symfony/service-contracts": "<2.5"
  3438. },
  3439. "require-dev": {
  3440. "symfony/event-dispatcher": "^5.4|^6.0|^7.0",
  3441. "symfony/finder": "^5.4|^6.0|^7.0",
  3442. "symfony/messenger": "^5.4|^6.0|^7.0",
  3443. "symfony/service-contracts": "^2.5|^3",
  3444. "symfony/yaml": "^5.4|^6.0|^7.0"
  3445. },
  3446. "type": "library",
  3447. "autoload": {
  3448. "psr-4": {
  3449. "Symfony\\Component\\Config\\": ""
  3450. },
  3451. "exclude-from-classmap": [
  3452. "/Tests/"
  3453. ]
  3454. },
  3455. "notification-url": "https://packagist.org/downloads/",
  3456. "license": [
  3457. "MIT"
  3458. ],
  3459. "authors": [
  3460. {
  3461. "name": "Fabien Potencier",
  3462. "email": "fabien@symfony.com"
  3463. },
  3464. {
  3465. "name": "Symfony Community",
  3466. "homepage": "https://symfony.com/contributors"
  3467. }
  3468. ],
  3469. "description": "Helps you find, load, combine, autofill and validate configuration values of any kind",
  3470. "homepage": "https://symfony.com",
  3471. "support": {
  3472. "source": "https://github.com/symfony/config/tree/v6.4.3"
  3473. },
  3474. "funding": [
  3475. {
  3476. "url": "https://symfony.com/sponsor",
  3477. "type": "custom"
  3478. },
  3479. {
  3480. "url": "https://github.com/fabpot",
  3481. "type": "github"
  3482. },
  3483. {
  3484. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3485. "type": "tidelift"
  3486. }
  3487. ],
  3488. "time": "2024-01-29T13:26:27+00:00"
  3489. },
  3490. {
  3491. "name": "symfony/console",
  3492. "version": "v6.4.3",
  3493. "source": {
  3494. "type": "git",
  3495. "url": "https://github.com/symfony/console.git",
  3496. "reference": "2aaf83b4de5b9d43b93e4aec6f2f8b676f7c567e"
  3497. },
  3498. "dist": {
  3499. "type": "zip",
  3500. "url": "https://api.github.com/repos/symfony/console/zipball/2aaf83b4de5b9d43b93e4aec6f2f8b676f7c567e",
  3501. "reference": "2aaf83b4de5b9d43b93e4aec6f2f8b676f7c567e",
  3502. "shasum": ""
  3503. },
  3504. "require": {
  3505. "php": ">=8.1",
  3506. "symfony/deprecation-contracts": "^2.5|^3",
  3507. "symfony/polyfill-mbstring": "~1.0",
  3508. "symfony/service-contracts": "^2.5|^3",
  3509. "symfony/string": "^5.4|^6.0|^7.0"
  3510. },
  3511. "conflict": {
  3512. "symfony/dependency-injection": "<5.4",
  3513. "symfony/dotenv": "<5.4",
  3514. "symfony/event-dispatcher": "<5.4",
  3515. "symfony/lock": "<5.4",
  3516. "symfony/process": "<5.4"
  3517. },
  3518. "provide": {
  3519. "psr/log-implementation": "1.0|2.0|3.0"
  3520. },
  3521. "require-dev": {
  3522. "psr/log": "^1|^2|^3",
  3523. "symfony/config": "^5.4|^6.0|^7.0",
  3524. "symfony/dependency-injection": "^5.4|^6.0|^7.0",
  3525. "symfony/event-dispatcher": "^5.4|^6.0|^7.0",
  3526. "symfony/http-foundation": "^6.4|^7.0",
  3527. "symfony/http-kernel": "^6.4|^7.0",
  3528. "symfony/lock": "^5.4|^6.0|^7.0",
  3529. "symfony/messenger": "^5.4|^6.0|^7.0",
  3530. "symfony/process": "^5.4|^6.0|^7.0",
  3531. "symfony/stopwatch": "^5.4|^6.0|^7.0",
  3532. "symfony/var-dumper": "^5.4|^6.0|^7.0"
  3533. },
  3534. "type": "library",
  3535. "autoload": {
  3536. "psr-4": {
  3537. "Symfony\\Component\\Console\\": ""
  3538. },
  3539. "exclude-from-classmap": [
  3540. "/Tests/"
  3541. ]
  3542. },
  3543. "notification-url": "https://packagist.org/downloads/",
  3544. "license": [
  3545. "MIT"
  3546. ],
  3547. "authors": [
  3548. {
  3549. "name": "Fabien Potencier",
  3550. "email": "fabien@symfony.com"
  3551. },
  3552. {
  3553. "name": "Symfony Community",
  3554. "homepage": "https://symfony.com/contributors"
  3555. }
  3556. ],
  3557. "description": "Eases the creation of beautiful and testable command line interfaces",
  3558. "homepage": "https://symfony.com",
  3559. "keywords": [
  3560. "cli",
  3561. "command-line",
  3562. "console",
  3563. "terminal"
  3564. ],
  3565. "support": {
  3566. "source": "https://github.com/symfony/console/tree/v6.4.3"
  3567. },
  3568. "funding": [
  3569. {
  3570. "url": "https://symfony.com/sponsor",
  3571. "type": "custom"
  3572. },
  3573. {
  3574. "url": "https://github.com/fabpot",
  3575. "type": "github"
  3576. },
  3577. {
  3578. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3579. "type": "tidelift"
  3580. }
  3581. ],
  3582. "time": "2024-01-23T14:51:35+00:00"
  3583. },
  3584. {
  3585. "name": "symfony/dependency-injection",
  3586. "version": "v6.4.3",
  3587. "source": {
  3588. "type": "git",
  3589. "url": "https://github.com/symfony/dependency-injection.git",
  3590. "reference": "6871811c5a5c5e180244ddb689746446db02c05b"
  3591. },
  3592. "dist": {
  3593. "type": "zip",
  3594. "url": "https://api.github.com/repos/symfony/dependency-injection/zipball/6871811c5a5c5e180244ddb689746446db02c05b",
  3595. "reference": "6871811c5a5c5e180244ddb689746446db02c05b",
  3596. "shasum": ""
  3597. },
  3598. "require": {
  3599. "php": ">=8.1",
  3600. "psr/container": "^1.1|^2.0",
  3601. "symfony/deprecation-contracts": "^2.5|^3",
  3602. "symfony/service-contracts": "^2.5|^3.0",
  3603. "symfony/var-exporter": "^6.2.10|^7.0"
  3604. },
  3605. "conflict": {
  3606. "ext-psr": "<1.1|>=2",
  3607. "symfony/config": "<6.1",
  3608. "symfony/finder": "<5.4",
  3609. "symfony/proxy-manager-bridge": "<6.3",
  3610. "symfony/yaml": "<5.4"
  3611. },
  3612. "provide": {
  3613. "psr/container-implementation": "1.1|2.0",
  3614. "symfony/service-implementation": "1.1|2.0|3.0"
  3615. },
  3616. "require-dev": {
  3617. "symfony/config": "^6.1|^7.0",
  3618. "symfony/expression-language": "^5.4|^6.0|^7.0",
  3619. "symfony/yaml": "^5.4|^6.0|^7.0"
  3620. },
  3621. "type": "library",
  3622. "autoload": {
  3623. "psr-4": {
  3624. "Symfony\\Component\\DependencyInjection\\": ""
  3625. },
  3626. "exclude-from-classmap": [
  3627. "/Tests/"
  3628. ]
  3629. },
  3630. "notification-url": "https://packagist.org/downloads/",
  3631. "license": [
  3632. "MIT"
  3633. ],
  3634. "authors": [
  3635. {
  3636. "name": "Fabien Potencier",
  3637. "email": "fabien@symfony.com"
  3638. },
  3639. {
  3640. "name": "Symfony Community",
  3641. "homepage": "https://symfony.com/contributors"
  3642. }
  3643. ],
  3644. "description": "Allows you to standardize and centralize the way objects are constructed in your application",
  3645. "homepage": "https://symfony.com",
  3646. "support": {
  3647. "source": "https://github.com/symfony/dependency-injection/tree/v6.4.3"
  3648. },
  3649. "funding": [
  3650. {
  3651. "url": "https://symfony.com/sponsor",
  3652. "type": "custom"
  3653. },
  3654. {
  3655. "url": "https://github.com/fabpot",
  3656. "type": "github"
  3657. },
  3658. {
  3659. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3660. "type": "tidelift"
  3661. }
  3662. ],
  3663. "time": "2024-01-30T08:32:12+00:00"
  3664. },
  3665. {
  3666. "name": "symfony/deprecation-contracts",
  3667. "version": "v3.4.0",
  3668. "source": {
  3669. "type": "git",
  3670. "url": "https://github.com/symfony/deprecation-contracts.git",
  3671. "reference": "7c3aff79d10325257a001fcf92d991f24fc967cf"
  3672. },
  3673. "dist": {
  3674. "type": "zip",
  3675. "url": "https://api.github.com/repos/symfony/deprecation-contracts/zipball/7c3aff79d10325257a001fcf92d991f24fc967cf",
  3676. "reference": "7c3aff79d10325257a001fcf92d991f24fc967cf",
  3677. "shasum": ""
  3678. },
  3679. "require": {
  3680. "php": ">=8.1"
  3681. },
  3682. "type": "library",
  3683. "extra": {
  3684. "branch-alias": {
  3685. "dev-main": "3.4-dev"
  3686. },
  3687. "thanks": {
  3688. "name": "symfony/contracts",
  3689. "url": "https://github.com/symfony/contracts"
  3690. }
  3691. },
  3692. "autoload": {
  3693. "files": [
  3694. "function.php"
  3695. ]
  3696. },
  3697. "notification-url": "https://packagist.org/downloads/",
  3698. "license": [
  3699. "MIT"
  3700. ],
  3701. "authors": [
  3702. {
  3703. "name": "Nicolas Grekas",
  3704. "email": "p@tchwork.com"
  3705. },
  3706. {
  3707. "name": "Symfony Community",
  3708. "homepage": "https://symfony.com/contributors"
  3709. }
  3710. ],
  3711. "description": "A generic function and convention to trigger deprecation notices",
  3712. "homepage": "https://symfony.com",
  3713. "support": {
  3714. "source": "https://github.com/symfony/deprecation-contracts/tree/v3.4.0"
  3715. },
  3716. "funding": [
  3717. {
  3718. "url": "https://symfony.com/sponsor",
  3719. "type": "custom"
  3720. },
  3721. {
  3722. "url": "https://github.com/fabpot",
  3723. "type": "github"
  3724. },
  3725. {
  3726. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3727. "type": "tidelift"
  3728. }
  3729. ],
  3730. "time": "2023-05-23T14:45:45+00:00"
  3731. },
  3732. {
  3733. "name": "symfony/doctrine-bridge",
  3734. "version": "v6.4.3",
  3735. "source": {
  3736. "type": "git",
  3737. "url": "https://github.com/symfony/doctrine-bridge.git",
  3738. "reference": "9c9a44bb06337dadeb9db1a8b202f15cca804353"
  3739. },
  3740. "dist": {
  3741. "type": "zip",
  3742. "url": "https://api.github.com/repos/symfony/doctrine-bridge/zipball/9c9a44bb06337dadeb9db1a8b202f15cca804353",
  3743. "reference": "9c9a44bb06337dadeb9db1a8b202f15cca804353",
  3744. "shasum": ""
  3745. },
  3746. "require": {
  3747. "doctrine/event-manager": "^1.2|^2",
  3748. "doctrine/persistence": "^3.1",
  3749. "php": ">=8.1",
  3750. "symfony/deprecation-contracts": "^2.5|^3",
  3751. "symfony/polyfill-ctype": "~1.8",
  3752. "symfony/polyfill-mbstring": "~1.0",
  3753. "symfony/service-contracts": "^2.5|^3"
  3754. },
  3755. "conflict": {
  3756. "doctrine/dbal": "<2.13.1",
  3757. "doctrine/lexer": "<1.1",
  3758. "doctrine/orm": "<2.15",
  3759. "symfony/cache": "<5.4",
  3760. "symfony/dependency-injection": "<6.2",
  3761. "symfony/form": "<5.4.21|>=6,<6.2.7",
  3762. "symfony/http-foundation": "<6.3",
  3763. "symfony/http-kernel": "<6.2",
  3764. "symfony/lock": "<6.3",
  3765. "symfony/messenger": "<5.4",
  3766. "symfony/property-info": "<5.4",
  3767. "symfony/security-bundle": "<5.4",
  3768. "symfony/security-core": "<6.4",
  3769. "symfony/validator": "<6.4"
  3770. },
  3771. "require-dev": {
  3772. "doctrine/collections": "^1.0|^2.0",
  3773. "doctrine/data-fixtures": "^1.1",
  3774. "doctrine/dbal": "^2.13.1|^3|^4",
  3775. "doctrine/orm": "^2.15|^3",
  3776. "psr/log": "^1|^2|^3",
  3777. "symfony/cache": "^5.4|^6.0|^7.0",
  3778. "symfony/config": "^5.4|^6.0|^7.0",
  3779. "symfony/dependency-injection": "^6.2|^7.0",
  3780. "symfony/doctrine-messenger": "^5.4|^6.0|^7.0",
  3781. "symfony/expression-language": "^5.4|^6.0|^7.0",
  3782. "symfony/form": "^5.4.21|^6.2.7|^7.0",
  3783. "symfony/http-kernel": "^6.3|^7.0",
  3784. "symfony/lock": "^6.3|^7.0",
  3785. "symfony/messenger": "^5.4|^6.0|^7.0",
  3786. "symfony/property-access": "^5.4|^6.0|^7.0",
  3787. "symfony/property-info": "^5.4|^6.0|^7.0",
  3788. "symfony/proxy-manager-bridge": "^6.4",
  3789. "symfony/security-core": "^6.4|^7.0",
  3790. "symfony/stopwatch": "^5.4|^6.0|^7.0",
  3791. "symfony/translation": "^5.4|^6.0|^7.0",
  3792. "symfony/uid": "^5.4|^6.0|^7.0",
  3793. "symfony/validator": "^6.4|^7.0",
  3794. "symfony/var-dumper": "^5.4|^6.0|^7.0"
  3795. },
  3796. "type": "symfony-bridge",
  3797. "autoload": {
  3798. "psr-4": {
  3799. "Symfony\\Bridge\\Doctrine\\": ""
  3800. },
  3801. "exclude-from-classmap": [
  3802. "/Tests/"
  3803. ]
  3804. },
  3805. "notification-url": "https://packagist.org/downloads/",
  3806. "license": [
  3807. "MIT"
  3808. ],
  3809. "authors": [
  3810. {
  3811. "name": "Fabien Potencier",
  3812. "email": "fabien@symfony.com"
  3813. },
  3814. {
  3815. "name": "Symfony Community",
  3816. "homepage": "https://symfony.com/contributors"
  3817. }
  3818. ],
  3819. "description": "Provides integration for Doctrine with various Symfony components",
  3820. "homepage": "https://symfony.com",
  3821. "support": {
  3822. "source": "https://github.com/symfony/doctrine-bridge/tree/v6.4.3"
  3823. },
  3824. "funding": [
  3825. {
  3826. "url": "https://symfony.com/sponsor",
  3827. "type": "custom"
  3828. },
  3829. {
  3830. "url": "https://github.com/fabpot",
  3831. "type": "github"
  3832. },
  3833. {
  3834. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3835. "type": "tidelift"
  3836. }
  3837. ],
  3838. "time": "2024-01-30T11:24:52+00:00"
  3839. },
  3840. {
  3841. "name": "symfony/dotenv",
  3842. "version": "v6.4.3",
  3843. "source": {
  3844. "type": "git",
  3845. "url": "https://github.com/symfony/dotenv.git",
  3846. "reference": "3cb7ca997124760ed1389d5341806247670f4ef8"
  3847. },
  3848. "dist": {
  3849. "type": "zip",
  3850. "url": "https://api.github.com/repos/symfony/dotenv/zipball/3cb7ca997124760ed1389d5341806247670f4ef8",
  3851. "reference": "3cb7ca997124760ed1389d5341806247670f4ef8",
  3852. "shasum": ""
  3853. },
  3854. "require": {
  3855. "php": ">=8.1"
  3856. },
  3857. "conflict": {
  3858. "symfony/console": "<5.4",
  3859. "symfony/process": "<5.4"
  3860. },
  3861. "require-dev": {
  3862. "symfony/console": "^5.4|^6.0|^7.0",
  3863. "symfony/process": "^5.4|^6.0|^7.0"
  3864. },
  3865. "type": "library",
  3866. "autoload": {
  3867. "psr-4": {
  3868. "Symfony\\Component\\Dotenv\\": ""
  3869. },
  3870. "exclude-from-classmap": [
  3871. "/Tests/"
  3872. ]
  3873. },
  3874. "notification-url": "https://packagist.org/downloads/",
  3875. "license": [
  3876. "MIT"
  3877. ],
  3878. "authors": [
  3879. {
  3880. "name": "Fabien Potencier",
  3881. "email": "fabien@symfony.com"
  3882. },
  3883. {
  3884. "name": "Symfony Community",
  3885. "homepage": "https://symfony.com/contributors"
  3886. }
  3887. ],
  3888. "description": "Registers environment variables from a .env file",
  3889. "homepage": "https://symfony.com",
  3890. "keywords": [
  3891. "dotenv",
  3892. "env",
  3893. "environment"
  3894. ],
  3895. "support": {
  3896. "source": "https://github.com/symfony/dotenv/tree/v6.4.3"
  3897. },
  3898. "funding": [
  3899. {
  3900. "url": "https://symfony.com/sponsor",
  3901. "type": "custom"
  3902. },
  3903. {
  3904. "url": "https://github.com/fabpot",
  3905. "type": "github"
  3906. },
  3907. {
  3908. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3909. "type": "tidelift"
  3910. }
  3911. ],
  3912. "time": "2024-01-23T14:51:35+00:00"
  3913. },
  3914. {
  3915. "name": "symfony/error-handler",
  3916. "version": "v6.4.3",
  3917. "source": {
  3918. "type": "git",
  3919. "url": "https://github.com/symfony/error-handler.git",
  3920. "reference": "6dc3c76a278b77f01d864a6005d640822c6f26a6"
  3921. },
  3922. "dist": {
  3923. "type": "zip",
  3924. "url": "https://api.github.com/repos/symfony/error-handler/zipball/6dc3c76a278b77f01d864a6005d640822c6f26a6",
  3925. "reference": "6dc3c76a278b77f01d864a6005d640822c6f26a6",
  3926. "shasum": ""
  3927. },
  3928. "require": {
  3929. "php": ">=8.1",
  3930. "psr/log": "^1|^2|^3",
  3931. "symfony/var-dumper": "^5.4|^6.0|^7.0"
  3932. },
  3933. "conflict": {
  3934. "symfony/deprecation-contracts": "<2.5",
  3935. "symfony/http-kernel": "<6.4"
  3936. },
  3937. "require-dev": {
  3938. "symfony/deprecation-contracts": "^2.5|^3",
  3939. "symfony/http-kernel": "^6.4|^7.0",
  3940. "symfony/serializer": "^5.4|^6.0|^7.0"
  3941. },
  3942. "bin": [
  3943. "Resources/bin/patch-type-declarations"
  3944. ],
  3945. "type": "library",
  3946. "autoload": {
  3947. "psr-4": {
  3948. "Symfony\\Component\\ErrorHandler\\": ""
  3949. },
  3950. "exclude-from-classmap": [
  3951. "/Tests/"
  3952. ]
  3953. },
  3954. "notification-url": "https://packagist.org/downloads/",
  3955. "license": [
  3956. "MIT"
  3957. ],
  3958. "authors": [
  3959. {
  3960. "name": "Fabien Potencier",
  3961. "email": "fabien@symfony.com"
  3962. },
  3963. {
  3964. "name": "Symfony Community",
  3965. "homepage": "https://symfony.com/contributors"
  3966. }
  3967. ],
  3968. "description": "Provides tools to manage errors and ease debugging PHP code",
  3969. "homepage": "https://symfony.com",
  3970. "support": {
  3971. "source": "https://github.com/symfony/error-handler/tree/v6.4.3"
  3972. },
  3973. "funding": [
  3974. {
  3975. "url": "https://symfony.com/sponsor",
  3976. "type": "custom"
  3977. },
  3978. {
  3979. "url": "https://github.com/fabpot",
  3980. "type": "github"
  3981. },
  3982. {
  3983. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3984. "type": "tidelift"
  3985. }
  3986. ],
  3987. "time": "2024-01-29T15:40:36+00:00"
  3988. },
  3989. {
  3990. "name": "symfony/event-dispatcher",
  3991. "version": "v6.4.3",
  3992. "source": {
  3993. "type": "git",
  3994. "url": "https://github.com/symfony/event-dispatcher.git",
  3995. "reference": "ae9d3a6f3003a6caf56acd7466d8d52378d44fef"
  3996. },
  3997. "dist": {
  3998. "type": "zip",
  3999. "url": "https://api.github.com/repos/symfony/event-dispatcher/zipball/ae9d3a6f3003a6caf56acd7466d8d52378d44fef",
  4000. "reference": "ae9d3a6f3003a6caf56acd7466d8d52378d44fef",
  4001. "shasum": ""
  4002. },
  4003. "require": {
  4004. "php": ">=8.1",
  4005. "symfony/event-dispatcher-contracts": "^2.5|^3"
  4006. },
  4007. "conflict": {
  4008. "symfony/dependency-injection": "<5.4",
  4009. "symfony/service-contracts": "<2.5"
  4010. },
  4011. "provide": {
  4012. "psr/event-dispatcher-implementation": "1.0",
  4013. "symfony/event-dispatcher-implementation": "2.0|3.0"
  4014. },
  4015. "require-dev": {
  4016. "psr/log": "^1|^2|^3",
  4017. "symfony/config": "^5.4|^6.0|^7.0",
  4018. "symfony/dependency-injection": "^5.4|^6.0|^7.0",
  4019. "symfony/error-handler": "^5.4|^6.0|^7.0",
  4020. "symfony/expression-language": "^5.4|^6.0|^7.0",
  4021. "symfony/http-foundation": "^5.4|^6.0|^7.0",
  4022. "symfony/service-contracts": "^2.5|^3",
  4023. "symfony/stopwatch": "^5.4|^6.0|^7.0"
  4024. },
  4025. "type": "library",
  4026. "autoload": {
  4027. "psr-4": {
  4028. "Symfony\\Component\\EventDispatcher\\": ""
  4029. },
  4030. "exclude-from-classmap": [
  4031. "/Tests/"
  4032. ]
  4033. },
  4034. "notification-url": "https://packagist.org/downloads/",
  4035. "license": [
  4036. "MIT"
  4037. ],
  4038. "authors": [
  4039. {
  4040. "name": "Fabien Potencier",
  4041. "email": "fabien@symfony.com"
  4042. },
  4043. {
  4044. "name": "Symfony Community",
  4045. "homepage": "https://symfony.com/contributors"
  4046. }
  4047. ],
  4048. "description": "Provides tools that allow your application components to communicate with each other by dispatching events and listening to them",
  4049. "homepage": "https://symfony.com",
  4050. "support": {
  4051. "source": "https://github.com/symfony/event-dispatcher/tree/v6.4.3"
  4052. },
  4053. "funding": [
  4054. {
  4055. "url": "https://symfony.com/sponsor",
  4056. "type": "custom"
  4057. },
  4058. {
  4059. "url": "https://github.com/fabpot",
  4060. "type": "github"
  4061. },
  4062. {
  4063. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4064. "type": "tidelift"
  4065. }
  4066. ],
  4067. "time": "2024-01-23T14:51:35+00:00"
  4068. },
  4069. {
  4070. "name": "symfony/event-dispatcher-contracts",
  4071. "version": "v3.4.0",
  4072. "source": {
  4073. "type": "git",
  4074. "url": "https://github.com/symfony/event-dispatcher-contracts.git",
  4075. "reference": "a76aed96a42d2b521153fb382d418e30d18b59df"
  4076. },
  4077. "dist": {
  4078. "type": "zip",
  4079. "url": "https://api.github.com/repos/symfony/event-dispatcher-contracts/zipball/a76aed96a42d2b521153fb382d418e30d18b59df",
  4080. "reference": "a76aed96a42d2b521153fb382d418e30d18b59df",
  4081. "shasum": ""
  4082. },
  4083. "require": {
  4084. "php": ">=8.1",
  4085. "psr/event-dispatcher": "^1"
  4086. },
  4087. "type": "library",
  4088. "extra": {
  4089. "branch-alias": {
  4090. "dev-main": "3.4-dev"
  4091. },
  4092. "thanks": {
  4093. "name": "symfony/contracts",
  4094. "url": "https://github.com/symfony/contracts"
  4095. }
  4096. },
  4097. "autoload": {
  4098. "psr-4": {
  4099. "Symfony\\Contracts\\EventDispatcher\\": ""
  4100. }
  4101. },
  4102. "notification-url": "https://packagist.org/downloads/",
  4103. "license": [
  4104. "MIT"
  4105. ],
  4106. "authors": [
  4107. {
  4108. "name": "Nicolas Grekas",
  4109. "email": "p@tchwork.com"
  4110. },
  4111. {
  4112. "name": "Symfony Community",
  4113. "homepage": "https://symfony.com/contributors"
  4114. }
  4115. ],
  4116. "description": "Generic abstractions related to dispatching event",
  4117. "homepage": "https://symfony.com",
  4118. "keywords": [
  4119. "abstractions",
  4120. "contracts",
  4121. "decoupling",
  4122. "interfaces",
  4123. "interoperability",
  4124. "standards"
  4125. ],
  4126. "support": {
  4127. "source": "https://github.com/symfony/event-dispatcher-contracts/tree/v3.4.0"
  4128. },
  4129. "funding": [
  4130. {
  4131. "url": "https://symfony.com/sponsor",
  4132. "type": "custom"
  4133. },
  4134. {
  4135. "url": "https://github.com/fabpot",
  4136. "type": "github"
  4137. },
  4138. {
  4139. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4140. "type": "tidelift"
  4141. }
  4142. ],
  4143. "time": "2023-05-23T14:45:45+00:00"
  4144. },
  4145. {
  4146. "name": "symfony/expression-language",
  4147. "version": "v6.4.3",
  4148. "source": {
  4149. "type": "git",
  4150. "url": "https://github.com/symfony/expression-language.git",
  4151. "reference": "b4a4ae33fbb33a99d23c5698faaecadb76ad0fe4"
  4152. },
  4153. "dist": {
  4154. "type": "zip",
  4155. "url": "https://api.github.com/repos/symfony/expression-language/zipball/b4a4ae33fbb33a99d23c5698faaecadb76ad0fe4",
  4156. "reference": "b4a4ae33fbb33a99d23c5698faaecadb76ad0fe4",
  4157. "shasum": ""
  4158. },
  4159. "require": {
  4160. "php": ">=8.1",
  4161. "symfony/cache": "^5.4|^6.0|^7.0",
  4162. "symfony/deprecation-contracts": "^2.5|^3",
  4163. "symfony/service-contracts": "^2.5|^3"
  4164. },
  4165. "type": "library",
  4166. "autoload": {
  4167. "psr-4": {
  4168. "Symfony\\Component\\ExpressionLanguage\\": ""
  4169. },
  4170. "exclude-from-classmap": [
  4171. "/Tests/"
  4172. ]
  4173. },
  4174. "notification-url": "https://packagist.org/downloads/",
  4175. "license": [
  4176. "MIT"
  4177. ],
  4178. "authors": [
  4179. {
  4180. "name": "Fabien Potencier",
  4181. "email": "fabien@symfony.com"
  4182. },
  4183. {
  4184. "name": "Symfony Community",
  4185. "homepage": "https://symfony.com/contributors"
  4186. }
  4187. ],
  4188. "description": "Provides an engine that can compile and evaluate expressions",
  4189. "homepage": "https://symfony.com",
  4190. "support": {
  4191. "source": "https://github.com/symfony/expression-language/tree/v6.4.3"
  4192. },
  4193. "funding": [
  4194. {
  4195. "url": "https://symfony.com/sponsor",
  4196. "type": "custom"
  4197. },
  4198. {
  4199. "url": "https://github.com/fabpot",
  4200. "type": "github"
  4201. },
  4202. {
  4203. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4204. "type": "tidelift"
  4205. }
  4206. ],
  4207. "time": "2024-01-23T14:51:35+00:00"
  4208. },
  4209. {
  4210. "name": "symfony/filesystem",
  4211. "version": "v6.4.3",
  4212. "source": {
  4213. "type": "git",
  4214. "url": "https://github.com/symfony/filesystem.git",
  4215. "reference": "7f3b1755eb49297a0827a7575d5d2b2fd11cc9fb"
  4216. },
  4217. "dist": {
  4218. "type": "zip",
  4219. "url": "https://api.github.com/repos/symfony/filesystem/zipball/7f3b1755eb49297a0827a7575d5d2b2fd11cc9fb",
  4220. "reference": "7f3b1755eb49297a0827a7575d5d2b2fd11cc9fb",
  4221. "shasum": ""
  4222. },
  4223. "require": {
  4224. "php": ">=8.1",
  4225. "symfony/polyfill-ctype": "~1.8",
  4226. "symfony/polyfill-mbstring": "~1.8"
  4227. },
  4228. "type": "library",
  4229. "autoload": {
  4230. "psr-4": {
  4231. "Symfony\\Component\\Filesystem\\": ""
  4232. },
  4233. "exclude-from-classmap": [
  4234. "/Tests/"
  4235. ]
  4236. },
  4237. "notification-url": "https://packagist.org/downloads/",
  4238. "license": [
  4239. "MIT"
  4240. ],
  4241. "authors": [
  4242. {
  4243. "name": "Fabien Potencier",
  4244. "email": "fabien@symfony.com"
  4245. },
  4246. {
  4247. "name": "Symfony Community",
  4248. "homepage": "https://symfony.com/contributors"
  4249. }
  4250. ],
  4251. "description": "Provides basic utilities for the filesystem",
  4252. "homepage": "https://symfony.com",
  4253. "support": {
  4254. "source": "https://github.com/symfony/filesystem/tree/v6.4.3"
  4255. },
  4256. "funding": [
  4257. {
  4258. "url": "https://symfony.com/sponsor",
  4259. "type": "custom"
  4260. },
  4261. {
  4262. "url": "https://github.com/fabpot",
  4263. "type": "github"
  4264. },
  4265. {
  4266. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4267. "type": "tidelift"
  4268. }
  4269. ],
  4270. "time": "2024-01-23T14:51:35+00:00"
  4271. },
  4272. {
  4273. "name": "symfony/finder",
  4274. "version": "v6.4.0",
  4275. "source": {
  4276. "type": "git",
  4277. "url": "https://github.com/symfony/finder.git",
  4278. "reference": "11d736e97f116ac375a81f96e662911a34cd50ce"
  4279. },
  4280. "dist": {
  4281. "type": "zip",
  4282. "url": "https://api.github.com/repos/symfony/finder/zipball/11d736e97f116ac375a81f96e662911a34cd50ce",
  4283. "reference": "11d736e97f116ac375a81f96e662911a34cd50ce",
  4284. "shasum": ""
  4285. },
  4286. "require": {
  4287. "php": ">=8.1"
  4288. },
  4289. "require-dev": {
  4290. "symfony/filesystem": "^6.0|^7.0"
  4291. },
  4292. "type": "library",
  4293. "autoload": {
  4294. "psr-4": {
  4295. "Symfony\\Component\\Finder\\": ""
  4296. },
  4297. "exclude-from-classmap": [
  4298. "/Tests/"
  4299. ]
  4300. },
  4301. "notification-url": "https://packagist.org/downloads/",
  4302. "license": [
  4303. "MIT"
  4304. ],
  4305. "authors": [
  4306. {
  4307. "name": "Fabien Potencier",
  4308. "email": "fabien@symfony.com"
  4309. },
  4310. {
  4311. "name": "Symfony Community",
  4312. "homepage": "https://symfony.com/contributors"
  4313. }
  4314. ],
  4315. "description": "Finds files and directories via an intuitive fluent interface",
  4316. "homepage": "https://symfony.com",
  4317. "support": {
  4318. "source": "https://github.com/symfony/finder/tree/v6.4.0"
  4319. },
  4320. "funding": [
  4321. {
  4322. "url": "https://symfony.com/sponsor",
  4323. "type": "custom"
  4324. },
  4325. {
  4326. "url": "https://github.com/fabpot",
  4327. "type": "github"
  4328. },
  4329. {
  4330. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4331. "type": "tidelift"
  4332. }
  4333. ],
  4334. "time": "2023-10-31T17:30:12+00:00"
  4335. },
  4336. {
  4337. "name": "symfony/flex",
  4338. "version": "v2.4.4",
  4339. "source": {
  4340. "type": "git",
  4341. "url": "https://github.com/symfony/flex.git",
  4342. "reference": "bec213c39511eda66663baa2ee7440c65f89c695"
  4343. },
  4344. "dist": {
  4345. "type": "zip",
  4346. "url": "https://api.github.com/repos/symfony/flex/zipball/bec213c39511eda66663baa2ee7440c65f89c695",
  4347. "reference": "bec213c39511eda66663baa2ee7440c65f89c695",
  4348. "shasum": ""
  4349. },
  4350. "require": {
  4351. "composer-plugin-api": "^2.1",
  4352. "php": ">=8.0"
  4353. },
  4354. "require-dev": {
  4355. "composer/composer": "^2.1",
  4356. "symfony/dotenv": "^5.4|^6.0",
  4357. "symfony/filesystem": "^5.4|^6.0",
  4358. "symfony/phpunit-bridge": "^5.4|^6.0",
  4359. "symfony/process": "^5.4|^6.0"
  4360. },
  4361. "type": "composer-plugin",
  4362. "extra": {
  4363. "class": "Symfony\\Flex\\Flex"
  4364. },
  4365. "autoload": {
  4366. "psr-4": {
  4367. "Symfony\\Flex\\": "src"
  4368. }
  4369. },
  4370. "notification-url": "https://packagist.org/downloads/",
  4371. "license": [
  4372. "MIT"
  4373. ],
  4374. "authors": [
  4375. {
  4376. "name": "Fabien Potencier",
  4377. "email": "fabien.potencier@gmail.com"
  4378. }
  4379. ],
  4380. "description": "Composer plugin for Symfony",
  4381. "support": {
  4382. "issues": "https://github.com/symfony/flex/issues",
  4383. "source": "https://github.com/symfony/flex/tree/v2.4.4"
  4384. },
  4385. "funding": [
  4386. {
  4387. "url": "https://symfony.com/sponsor",
  4388. "type": "custom"
  4389. },
  4390. {
  4391. "url": "https://github.com/fabpot",
  4392. "type": "github"
  4393. },
  4394. {
  4395. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4396. "type": "tidelift"
  4397. }
  4398. ],
  4399. "time": "2024-02-05T18:04:53+00:00"
  4400. },
  4401. {
  4402. "name": "symfony/form",
  4403. "version": "v6.4.3",
  4404. "source": {
  4405. "type": "git",
  4406. "url": "https://github.com/symfony/form.git",
  4407. "reference": "dabf7e9375550aada8916ced1736d01c2e3debff"
  4408. },
  4409. "dist": {
  4410. "type": "zip",
  4411. "url": "https://api.github.com/repos/symfony/form/zipball/dabf7e9375550aada8916ced1736d01c2e3debff",
  4412. "reference": "dabf7e9375550aada8916ced1736d01c2e3debff",
  4413. "shasum": ""
  4414. },
  4415. "require": {
  4416. "php": ">=8.1",
  4417. "symfony/deprecation-contracts": "^2.5|^3",
  4418. "symfony/event-dispatcher": "^5.4|^6.0|^7.0",
  4419. "symfony/options-resolver": "^5.4|^6.0|^7.0",
  4420. "symfony/polyfill-ctype": "~1.8",
  4421. "symfony/polyfill-intl-icu": "^1.21",
  4422. "symfony/polyfill-mbstring": "~1.0",
  4423. "symfony/property-access": "^5.4|^6.0|^7.0",
  4424. "symfony/service-contracts": "^2.5|^3"
  4425. },
  4426. "conflict": {
  4427. "symfony/console": "<5.4",
  4428. "symfony/dependency-injection": "<5.4",
  4429. "symfony/doctrine-bridge": "<5.4.21|>=6,<6.2.7",
  4430. "symfony/error-handler": "<5.4",
  4431. "symfony/framework-bundle": "<5.4",
  4432. "symfony/http-kernel": "<5.4",
  4433. "symfony/translation": "<5.4.35|>=6.0,<6.3.12|>=6.4,<6.4.3|>=7.0,<7.0.3",
  4434. "symfony/translation-contracts": "<2.5",
  4435. "symfony/twig-bridge": "<6.3"
  4436. },
  4437. "require-dev": {
  4438. "doctrine/collections": "^1.0|^2.0",
  4439. "symfony/config": "^5.4|^6.0|^7.0",
  4440. "symfony/console": "^5.4|^6.0|^7.0",
  4441. "symfony/dependency-injection": "^5.4|^6.0|^7.0",
  4442. "symfony/expression-language": "^5.4|^6.0|^7.0",
  4443. "symfony/html-sanitizer": "^6.1|^7.0",
  4444. "symfony/http-foundation": "^5.4|^6.0|^7.0",
  4445. "symfony/http-kernel": "^5.4|^6.0|^7.0",
  4446. "symfony/intl": "^5.4|^6.0|^7.0",
  4447. "symfony/security-core": "^6.2|^7.0",
  4448. "symfony/security-csrf": "^5.4|^6.0|^7.0",
  4449. "symfony/translation": "^5.4.35|~6.3.12|^6.4.3|^7.0.3",
  4450. "symfony/uid": "^5.4|^6.0|^7.0",
  4451. "symfony/validator": "^5.4|^6.0|^7.0",
  4452. "symfony/var-dumper": "^5.4|^6.0|^7.0"
  4453. },
  4454. "type": "library",
  4455. "autoload": {
  4456. "psr-4": {
  4457. "Symfony\\Component\\Form\\": ""
  4458. },
  4459. "exclude-from-classmap": [
  4460. "/Tests/"
  4461. ]
  4462. },
  4463. "notification-url": "https://packagist.org/downloads/",
  4464. "license": [
  4465. "MIT"
  4466. ],
  4467. "authors": [
  4468. {
  4469. "name": "Fabien Potencier",
  4470. "email": "fabien@symfony.com"
  4471. },
  4472. {
  4473. "name": "Symfony Community",
  4474. "homepage": "https://symfony.com/contributors"
  4475. }
  4476. ],
  4477. "description": "Allows to easily create, process and reuse HTML forms",
  4478. "homepage": "https://symfony.com",
  4479. "support": {
  4480. "source": "https://github.com/symfony/form/tree/v6.4.3"
  4481. },
  4482. "funding": [
  4483. {
  4484. "url": "https://symfony.com/sponsor",
  4485. "type": "custom"
  4486. },
  4487. {
  4488. "url": "https://github.com/fabpot",
  4489. "type": "github"
  4490. },
  4491. {
  4492. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4493. "type": "tidelift"
  4494. }
  4495. ],
  4496. "time": "2024-01-23T14:51:35+00:00"
  4497. },
  4498. {
  4499. "name": "symfony/framework-bundle",
  4500. "version": "v6.4.3",
  4501. "source": {
  4502. "type": "git",
  4503. "url": "https://github.com/symfony/framework-bundle.git",
  4504. "reference": "fb413ac4483803954411966a39f3a9204835848e"
  4505. },
  4506. "dist": {
  4507. "type": "zip",
  4508. "url": "https://api.github.com/repos/symfony/framework-bundle/zipball/fb413ac4483803954411966a39f3a9204835848e",
  4509. "reference": "fb413ac4483803954411966a39f3a9204835848e",
  4510. "shasum": ""
  4511. },
  4512. "require": {
  4513. "composer-runtime-api": ">=2.1",
  4514. "ext-xml": "*",
  4515. "php": ">=8.1",
  4516. "symfony/cache": "^5.4|^6.0|^7.0",
  4517. "symfony/config": "^6.1|^7.0",
  4518. "symfony/dependency-injection": "^6.4|^7.0",
  4519. "symfony/deprecation-contracts": "^2.5|^3",
  4520. "symfony/error-handler": "^6.1|^7.0",
  4521. "symfony/event-dispatcher": "^5.4|^6.0|^7.0",
  4522. "symfony/filesystem": "^5.4|^6.0|^7.0",
  4523. "symfony/finder": "^5.4|^6.0|^7.0",
  4524. "symfony/http-foundation": "^6.4|^7.0",
  4525. "symfony/http-kernel": "^6.4",
  4526. "symfony/polyfill-mbstring": "~1.0",
  4527. "symfony/routing": "^6.4|^7.0"
  4528. },
  4529. "conflict": {
  4530. "doctrine/annotations": "<1.13.1",
  4531. "doctrine/persistence": "<1.3",
  4532. "phpdocumentor/reflection-docblock": "<3.2.2",
  4533. "phpdocumentor/type-resolver": "<1.4.0",
  4534. "symfony/asset": "<5.4",
  4535. "symfony/asset-mapper": "<6.4",
  4536. "symfony/clock": "<6.3",
  4537. "symfony/console": "<5.4|>=7.0",
  4538. "symfony/dom-crawler": "<6.4",
  4539. "symfony/dotenv": "<5.4",
  4540. "symfony/form": "<5.4",
  4541. "symfony/http-client": "<6.3",
  4542. "symfony/lock": "<5.4",
  4543. "symfony/mailer": "<5.4",
  4544. "symfony/messenger": "<6.3",
  4545. "symfony/mime": "<6.4",
  4546. "symfony/property-access": "<5.4",
  4547. "symfony/property-info": "<5.4",
  4548. "symfony/scheduler": "<6.4.3|>=7.0.0,<7.0.3",
  4549. "symfony/security-core": "<5.4",
  4550. "symfony/security-csrf": "<5.4",
  4551. "symfony/serializer": "<6.4",
  4552. "symfony/stopwatch": "<5.4",
  4553. "symfony/translation": "<6.4",
  4554. "symfony/twig-bridge": "<5.4",
  4555. "symfony/twig-bundle": "<5.4",
  4556. "symfony/validator": "<6.4",
  4557. "symfony/web-profiler-bundle": "<6.4",
  4558. "symfony/workflow": "<6.4"
  4559. },
  4560. "require-dev": {
  4561. "doctrine/annotations": "^1.13.1|^2",
  4562. "doctrine/persistence": "^1.3|^2|^3",
  4563. "dragonmantank/cron-expression": "^3.1",
  4564. "phpdocumentor/reflection-docblock": "^3.0|^4.0|^5.0",
  4565. "seld/jsonlint": "^1.10",
  4566. "symfony/asset": "^5.4|^6.0|^7.0",
  4567. "symfony/asset-mapper": "^6.4|^7.0",
  4568. "symfony/browser-kit": "^5.4|^6.0|^7.0",
  4569. "symfony/clock": "^6.2|^7.0",
  4570. "symfony/console": "^5.4.9|^6.0.9|^7.0",
  4571. "symfony/css-selector": "^5.4|^6.0|^7.0",
  4572. "symfony/dom-crawler": "^6.4|^7.0",
  4573. "symfony/dotenv": "^5.4|^6.0|^7.0",
  4574. "symfony/expression-language": "^5.4|^6.0|^7.0",
  4575. "symfony/form": "^5.4|^6.0|^7.0",
  4576. "symfony/html-sanitizer": "^6.1|^7.0",
  4577. "symfony/http-client": "^6.3|^7.0",
  4578. "symfony/lock": "^5.4|^6.0|^7.0",
  4579. "symfony/mailer": "^5.4|^6.0|^7.0",
  4580. "symfony/messenger": "^6.3|^7.0",
  4581. "symfony/mime": "^6.4|^7.0",
  4582. "symfony/notifier": "^5.4|^6.0|^7.0",
  4583. "symfony/polyfill-intl-icu": "~1.0",
  4584. "symfony/process": "^5.4|^6.0|^7.0",
  4585. "symfony/property-info": "^5.4|^6.0|^7.0",
  4586. "symfony/rate-limiter": "^5.4|^6.0|^7.0",
  4587. "symfony/scheduler": "^6.4.3|^7.0.3",
  4588. "symfony/security-bundle": "^5.4|^6.0|^7.0",
  4589. "symfony/semaphore": "^5.4|^6.0|^7.0",
  4590. "symfony/serializer": "^6.4|^7.0",
  4591. "symfony/stopwatch": "^5.4|^6.0|^7.0",
  4592. "symfony/string": "^5.4|^6.0|^7.0",
  4593. "symfony/translation": "^6.4|^7.0",
  4594. "symfony/twig-bundle": "^5.4|^6.0|^7.0",
  4595. "symfony/uid": "^5.4|^6.0|^7.0",
  4596. "symfony/validator": "^6.4|^7.0",
  4597. "symfony/web-link": "^5.4|^6.0|^7.0",
  4598. "symfony/workflow": "^6.4|^7.0",
  4599. "symfony/yaml": "^5.4|^6.0|^7.0",
  4600. "twig/twig": "^2.10|^3.0"
  4601. },
  4602. "type": "symfony-bundle",
  4603. "autoload": {
  4604. "psr-4": {
  4605. "Symfony\\Bundle\\FrameworkBundle\\": ""
  4606. },
  4607. "exclude-from-classmap": [
  4608. "/Tests/"
  4609. ]
  4610. },
  4611. "notification-url": "https://packagist.org/downloads/",
  4612. "license": [
  4613. "MIT"
  4614. ],
  4615. "authors": [
  4616. {
  4617. "name": "Fabien Potencier",
  4618. "email": "fabien@symfony.com"
  4619. },
  4620. {
  4621. "name": "Symfony Community",
  4622. "homepage": "https://symfony.com/contributors"
  4623. }
  4624. ],
  4625. "description": "Provides a tight integration between Symfony components and the Symfony full-stack framework",
  4626. "homepage": "https://symfony.com",
  4627. "support": {
  4628. "source": "https://github.com/symfony/framework-bundle/tree/v6.4.3"
  4629. },
  4630. "funding": [
  4631. {
  4632. "url": "https://symfony.com/sponsor",
  4633. "type": "custom"
  4634. },
  4635. {
  4636. "url": "https://github.com/fabpot",
  4637. "type": "github"
  4638. },
  4639. {
  4640. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4641. "type": "tidelift"
  4642. }
  4643. ],
  4644. "time": "2024-01-29T15:02:55+00:00"
  4645. },
  4646. {
  4647. "name": "symfony/html-sanitizer",
  4648. "version": "v6.4.3",
  4649. "source": {
  4650. "type": "git",
  4651. "url": "https://github.com/symfony/html-sanitizer.git",
  4652. "reference": "116335ab09e10b05405f01d8afd31ccc3832b08b"
  4653. },
  4654. "dist": {
  4655. "type": "zip",
  4656. "url": "https://api.github.com/repos/symfony/html-sanitizer/zipball/116335ab09e10b05405f01d8afd31ccc3832b08b",
  4657. "reference": "116335ab09e10b05405f01d8afd31ccc3832b08b",
  4658. "shasum": ""
  4659. },
  4660. "require": {
  4661. "ext-dom": "*",
  4662. "league/uri": "^6.5|^7.0",
  4663. "masterminds/html5": "^2.7.2",
  4664. "php": ">=8.1"
  4665. },
  4666. "type": "library",
  4667. "autoload": {
  4668. "psr-4": {
  4669. "Symfony\\Component\\HtmlSanitizer\\": ""
  4670. },
  4671. "exclude-from-classmap": [
  4672. "/Tests/"
  4673. ]
  4674. },
  4675. "notification-url": "https://packagist.org/downloads/",
  4676. "license": [
  4677. "MIT"
  4678. ],
  4679. "authors": [
  4680. {
  4681. "name": "Titouan Galopin",
  4682. "email": "galopintitouan@gmail.com"
  4683. },
  4684. {
  4685. "name": "Symfony Community",
  4686. "homepage": "https://symfony.com/contributors"
  4687. }
  4688. ],
  4689. "description": "Provides an object-oriented API to sanitize untrusted HTML input for safe insertion into a document's DOM.",
  4690. "homepage": "https://symfony.com",
  4691. "keywords": [
  4692. "Purifier",
  4693. "html",
  4694. "sanitizer"
  4695. ],
  4696. "support": {
  4697. "source": "https://github.com/symfony/html-sanitizer/tree/v6.4.3"
  4698. },
  4699. "funding": [
  4700. {
  4701. "url": "https://symfony.com/sponsor",
  4702. "type": "custom"
  4703. },
  4704. {
  4705. "url": "https://github.com/fabpot",
  4706. "type": "github"
  4707. },
  4708. {
  4709. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4710. "type": "tidelift"
  4711. }
  4712. ],
  4713. "time": "2024-01-23T14:51:35+00:00"
  4714. },
  4715. {
  4716. "name": "symfony/http-client",
  4717. "version": "v6.4.3",
  4718. "source": {
  4719. "type": "git",
  4720. "url": "https://github.com/symfony/http-client.git",
  4721. "reference": "a9034bc119fab8238f76cf49c770f3135f3ead86"
  4722. },
  4723. "dist": {
  4724. "type": "zip",
  4725. "url": "https://api.github.com/repos/symfony/http-client/zipball/a9034bc119fab8238f76cf49c770f3135f3ead86",
  4726. "reference": "a9034bc119fab8238f76cf49c770f3135f3ead86",
  4727. "shasum": ""
  4728. },
  4729. "require": {
  4730. "php": ">=8.1",
  4731. "psr/log": "^1|^2|^3",
  4732. "symfony/deprecation-contracts": "^2.5|^3",
  4733. "symfony/http-client-contracts": "^3",
  4734. "symfony/service-contracts": "^2.5|^3"
  4735. },
  4736. "conflict": {
  4737. "php-http/discovery": "<1.15",
  4738. "symfony/http-foundation": "<6.3"
  4739. },
  4740. "provide": {
  4741. "php-http/async-client-implementation": "*",
  4742. "php-http/client-implementation": "*",
  4743. "psr/http-client-implementation": "1.0",
  4744. "symfony/http-client-implementation": "3.0"
  4745. },
  4746. "require-dev": {
  4747. "amphp/amp": "^2.5",
  4748. "amphp/http-client": "^4.2.1",
  4749. "amphp/http-tunnel": "^1.0",
  4750. "amphp/socket": "^1.1",
  4751. "guzzlehttp/promises": "^1.4",
  4752. "nyholm/psr7": "^1.0",
  4753. "php-http/httplug": "^1.0|^2.0",
  4754. "psr/http-client": "^1.0",
  4755. "symfony/dependency-injection": "^5.4|^6.0|^7.0",
  4756. "symfony/http-kernel": "^5.4|^6.0|^7.0",
  4757. "symfony/messenger": "^5.4|^6.0|^7.0",
  4758. "symfony/process": "^5.4|^6.0|^7.0",
  4759. "symfony/stopwatch": "^5.4|^6.0|^7.0"
  4760. },
  4761. "type": "library",
  4762. "autoload": {
  4763. "psr-4": {
  4764. "Symfony\\Component\\HttpClient\\": ""
  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": "Nicolas Grekas",
  4777. "email": "p@tchwork.com"
  4778. },
  4779. {
  4780. "name": "Symfony Community",
  4781. "homepage": "https://symfony.com/contributors"
  4782. }
  4783. ],
  4784. "description": "Provides powerful methods to fetch HTTP resources synchronously or asynchronously",
  4785. "homepage": "https://symfony.com",
  4786. "keywords": [
  4787. "http"
  4788. ],
  4789. "support": {
  4790. "source": "https://github.com/symfony/http-client/tree/v6.4.3"
  4791. },
  4792. "funding": [
  4793. {
  4794. "url": "https://symfony.com/sponsor",
  4795. "type": "custom"
  4796. },
  4797. {
  4798. "url": "https://github.com/fabpot",
  4799. "type": "github"
  4800. },
  4801. {
  4802. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4803. "type": "tidelift"
  4804. }
  4805. ],
  4806. "time": "2024-01-29T15:01:07+00:00"
  4807. },
  4808. {
  4809. "name": "symfony/http-client-contracts",
  4810. "version": "v3.4.0",
  4811. "source": {
  4812. "type": "git",
  4813. "url": "https://github.com/symfony/http-client-contracts.git",
  4814. "reference": "1ee70e699b41909c209a0c930f11034b93578654"
  4815. },
  4816. "dist": {
  4817. "type": "zip",
  4818. "url": "https://api.github.com/repos/symfony/http-client-contracts/zipball/1ee70e699b41909c209a0c930f11034b93578654",
  4819. "reference": "1ee70e699b41909c209a0c930f11034b93578654",
  4820. "shasum": ""
  4821. },
  4822. "require": {
  4823. "php": ">=8.1"
  4824. },
  4825. "type": "library",
  4826. "extra": {
  4827. "branch-alias": {
  4828. "dev-main": "3.4-dev"
  4829. },
  4830. "thanks": {
  4831. "name": "symfony/contracts",
  4832. "url": "https://github.com/symfony/contracts"
  4833. }
  4834. },
  4835. "autoload": {
  4836. "psr-4": {
  4837. "Symfony\\Contracts\\HttpClient\\": ""
  4838. },
  4839. "exclude-from-classmap": [
  4840. "/Test/"
  4841. ]
  4842. },
  4843. "notification-url": "https://packagist.org/downloads/",
  4844. "license": [
  4845. "MIT"
  4846. ],
  4847. "authors": [
  4848. {
  4849. "name": "Nicolas Grekas",
  4850. "email": "p@tchwork.com"
  4851. },
  4852. {
  4853. "name": "Symfony Community",
  4854. "homepage": "https://symfony.com/contributors"
  4855. }
  4856. ],
  4857. "description": "Generic abstractions related to HTTP clients",
  4858. "homepage": "https://symfony.com",
  4859. "keywords": [
  4860. "abstractions",
  4861. "contracts",
  4862. "decoupling",
  4863. "interfaces",
  4864. "interoperability",
  4865. "standards"
  4866. ],
  4867. "support": {
  4868. "source": "https://github.com/symfony/http-client-contracts/tree/v3.4.0"
  4869. },
  4870. "funding": [
  4871. {
  4872. "url": "https://symfony.com/sponsor",
  4873. "type": "custom"
  4874. },
  4875. {
  4876. "url": "https://github.com/fabpot",
  4877. "type": "github"
  4878. },
  4879. {
  4880. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4881. "type": "tidelift"
  4882. }
  4883. ],
  4884. "time": "2023-07-30T20:28:31+00:00"
  4885. },
  4886. {
  4887. "name": "symfony/http-foundation",
  4888. "version": "v6.4.3",
  4889. "source": {
  4890. "type": "git",
  4891. "url": "https://github.com/symfony/http-foundation.git",
  4892. "reference": "5677bdf7cade4619cb17fc9e1e7b31ec392244a9"
  4893. },
  4894. "dist": {
  4895. "type": "zip",
  4896. "url": "https://api.github.com/repos/symfony/http-foundation/zipball/5677bdf7cade4619cb17fc9e1e7b31ec392244a9",
  4897. "reference": "5677bdf7cade4619cb17fc9e1e7b31ec392244a9",
  4898. "shasum": ""
  4899. },
  4900. "require": {
  4901. "php": ">=8.1",
  4902. "symfony/deprecation-contracts": "^2.5|^3",
  4903. "symfony/polyfill-mbstring": "~1.1",
  4904. "symfony/polyfill-php83": "^1.27"
  4905. },
  4906. "conflict": {
  4907. "symfony/cache": "<6.3"
  4908. },
  4909. "require-dev": {
  4910. "doctrine/dbal": "^2.13.1|^3|^4",
  4911. "predis/predis": "^1.1|^2.0",
  4912. "symfony/cache": "^6.3|^7.0",
  4913. "symfony/dependency-injection": "^5.4|^6.0|^7.0",
  4914. "symfony/expression-language": "^5.4|^6.0|^7.0",
  4915. "symfony/http-kernel": "^5.4.12|^6.0.12|^6.1.4|^7.0",
  4916. "symfony/mime": "^5.4|^6.0|^7.0",
  4917. "symfony/rate-limiter": "^5.4|^6.0|^7.0"
  4918. },
  4919. "type": "library",
  4920. "autoload": {
  4921. "psr-4": {
  4922. "Symfony\\Component\\HttpFoundation\\": ""
  4923. },
  4924. "exclude-from-classmap": [
  4925. "/Tests/"
  4926. ]
  4927. },
  4928. "notification-url": "https://packagist.org/downloads/",
  4929. "license": [
  4930. "MIT"
  4931. ],
  4932. "authors": [
  4933. {
  4934. "name": "Fabien Potencier",
  4935. "email": "fabien@symfony.com"
  4936. },
  4937. {
  4938. "name": "Symfony Community",
  4939. "homepage": "https://symfony.com/contributors"
  4940. }
  4941. ],
  4942. "description": "Defines an object-oriented layer for the HTTP specification",
  4943. "homepage": "https://symfony.com",
  4944. "support": {
  4945. "source": "https://github.com/symfony/http-foundation/tree/v6.4.3"
  4946. },
  4947. "funding": [
  4948. {
  4949. "url": "https://symfony.com/sponsor",
  4950. "type": "custom"
  4951. },
  4952. {
  4953. "url": "https://github.com/fabpot",
  4954. "type": "github"
  4955. },
  4956. {
  4957. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4958. "type": "tidelift"
  4959. }
  4960. ],
  4961. "time": "2024-01-23T14:51:35+00:00"
  4962. },
  4963. {
  4964. "name": "symfony/http-kernel",
  4965. "version": "v6.4.3",
  4966. "source": {
  4967. "type": "git",
  4968. "url": "https://github.com/symfony/http-kernel.git",
  4969. "reference": "9c6ec4e543044f7568a53a76ab1484ecd30637a2"
  4970. },
  4971. "dist": {
  4972. "type": "zip",
  4973. "url": "https://api.github.com/repos/symfony/http-kernel/zipball/9c6ec4e543044f7568a53a76ab1484ecd30637a2",
  4974. "reference": "9c6ec4e543044f7568a53a76ab1484ecd30637a2",
  4975. "shasum": ""
  4976. },
  4977. "require": {
  4978. "php": ">=8.1",
  4979. "psr/log": "^1|^2|^3",
  4980. "symfony/deprecation-contracts": "^2.5|^3",
  4981. "symfony/error-handler": "^6.4|^7.0",
  4982. "symfony/event-dispatcher": "^5.4|^6.0|^7.0",
  4983. "symfony/http-foundation": "^6.4|^7.0",
  4984. "symfony/polyfill-ctype": "^1.8"
  4985. },
  4986. "conflict": {
  4987. "symfony/browser-kit": "<5.4",
  4988. "symfony/cache": "<5.4",
  4989. "symfony/config": "<6.1",
  4990. "symfony/console": "<5.4",
  4991. "symfony/dependency-injection": "<6.4",
  4992. "symfony/doctrine-bridge": "<5.4",
  4993. "symfony/form": "<5.4",
  4994. "symfony/http-client": "<5.4",
  4995. "symfony/http-client-contracts": "<2.5",
  4996. "symfony/mailer": "<5.4",
  4997. "symfony/messenger": "<5.4",
  4998. "symfony/translation": "<5.4",
  4999. "symfony/translation-contracts": "<2.5",
  5000. "symfony/twig-bridge": "<5.4",
  5001. "symfony/validator": "<6.4",
  5002. "symfony/var-dumper": "<6.3",
  5003. "twig/twig": "<2.13"
  5004. },
  5005. "provide": {
  5006. "psr/log-implementation": "1.0|2.0|3.0"
  5007. },
  5008. "require-dev": {
  5009. "psr/cache": "^1.0|^2.0|^3.0",
  5010. "symfony/browser-kit": "^5.4|^6.0|^7.0",
  5011. "symfony/clock": "^6.2|^7.0",
  5012. "symfony/config": "^6.1|^7.0",
  5013. "symfony/console": "^5.4|^6.0|^7.0",
  5014. "symfony/css-selector": "^5.4|^6.0|^7.0",
  5015. "symfony/dependency-injection": "^6.4|^7.0",
  5016. "symfony/dom-crawler": "^5.4|^6.0|^7.0",
  5017. "symfony/expression-language": "^5.4|^6.0|^7.0",
  5018. "symfony/finder": "^5.4|^6.0|^7.0",
  5019. "symfony/http-client-contracts": "^2.5|^3",
  5020. "symfony/process": "^5.4|^6.0|^7.0",
  5021. "symfony/property-access": "^5.4.5|^6.0.5|^7.0",
  5022. "symfony/routing": "^5.4|^6.0|^7.0",
  5023. "symfony/serializer": "^6.3|^7.0",
  5024. "symfony/stopwatch": "^5.4|^6.0|^7.0",
  5025. "symfony/translation": "^5.4|^6.0|^7.0",
  5026. "symfony/translation-contracts": "^2.5|^3",
  5027. "symfony/uid": "^5.4|^6.0|^7.0",
  5028. "symfony/validator": "^6.4|^7.0",
  5029. "symfony/var-exporter": "^6.2|^7.0",
  5030. "twig/twig": "^2.13|^3.0.4"
  5031. },
  5032. "type": "library",
  5033. "autoload": {
  5034. "psr-4": {
  5035. "Symfony\\Component\\HttpKernel\\": ""
  5036. },
  5037. "exclude-from-classmap": [
  5038. "/Tests/"
  5039. ]
  5040. },
  5041. "notification-url": "https://packagist.org/downloads/",
  5042. "license": [
  5043. "MIT"
  5044. ],
  5045. "authors": [
  5046. {
  5047. "name": "Fabien Potencier",
  5048. "email": "fabien@symfony.com"
  5049. },
  5050. {
  5051. "name": "Symfony Community",
  5052. "homepage": "https://symfony.com/contributors"
  5053. }
  5054. ],
  5055. "description": "Provides a structured process for converting a Request into a Response",
  5056. "homepage": "https://symfony.com",
  5057. "support": {
  5058. "source": "https://github.com/symfony/http-kernel/tree/v6.4.3"
  5059. },
  5060. "funding": [
  5061. {
  5062. "url": "https://symfony.com/sponsor",
  5063. "type": "custom"
  5064. },
  5065. {
  5066. "url": "https://github.com/fabpot",
  5067. "type": "github"
  5068. },
  5069. {
  5070. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5071. "type": "tidelift"
  5072. }
  5073. ],
  5074. "time": "2024-01-31T07:21:29+00:00"
  5075. },
  5076. {
  5077. "name": "symfony/mailer",
  5078. "version": "v6.4.3",
  5079. "source": {
  5080. "type": "git",
  5081. "url": "https://github.com/symfony/mailer.git",
  5082. "reference": "74412c62f88a85a41b61f0b71ab0afcaad6f03ee"
  5083. },
  5084. "dist": {
  5085. "type": "zip",
  5086. "url": "https://api.github.com/repos/symfony/mailer/zipball/74412c62f88a85a41b61f0b71ab0afcaad6f03ee",
  5087. "reference": "74412c62f88a85a41b61f0b71ab0afcaad6f03ee",
  5088. "shasum": ""
  5089. },
  5090. "require": {
  5091. "egulias/email-validator": "^2.1.10|^3|^4",
  5092. "php": ">=8.1",
  5093. "psr/event-dispatcher": "^1",
  5094. "psr/log": "^1|^2|^3",
  5095. "symfony/event-dispatcher": "^5.4|^6.0|^7.0",
  5096. "symfony/mime": "^6.2|^7.0",
  5097. "symfony/service-contracts": "^2.5|^3"
  5098. },
  5099. "conflict": {
  5100. "symfony/http-client-contracts": "<2.5",
  5101. "symfony/http-kernel": "<5.4",
  5102. "symfony/messenger": "<6.2",
  5103. "symfony/mime": "<6.2",
  5104. "symfony/twig-bridge": "<6.2.1"
  5105. },
  5106. "require-dev": {
  5107. "symfony/console": "^5.4|^6.0|^7.0",
  5108. "symfony/http-client": "^5.4|^6.0|^7.0",
  5109. "symfony/messenger": "^6.2|^7.0",
  5110. "symfony/twig-bridge": "^6.2|^7.0"
  5111. },
  5112. "type": "library",
  5113. "autoload": {
  5114. "psr-4": {
  5115. "Symfony\\Component\\Mailer\\": ""
  5116. },
  5117. "exclude-from-classmap": [
  5118. "/Tests/"
  5119. ]
  5120. },
  5121. "notification-url": "https://packagist.org/downloads/",
  5122. "license": [
  5123. "MIT"
  5124. ],
  5125. "authors": [
  5126. {
  5127. "name": "Fabien Potencier",
  5128. "email": "fabien@symfony.com"
  5129. },
  5130. {
  5131. "name": "Symfony Community",
  5132. "homepage": "https://symfony.com/contributors"
  5133. }
  5134. ],
  5135. "description": "Helps sending emails",
  5136. "homepage": "https://symfony.com",
  5137. "support": {
  5138. "source": "https://github.com/symfony/mailer/tree/v6.4.3"
  5139. },
  5140. "funding": [
  5141. {
  5142. "url": "https://symfony.com/sponsor",
  5143. "type": "custom"
  5144. },
  5145. {
  5146. "url": "https://github.com/fabpot",
  5147. "type": "github"
  5148. },
  5149. {
  5150. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5151. "type": "tidelift"
  5152. }
  5153. ],
  5154. "time": "2024-01-29T15:01:07+00:00"
  5155. },
  5156. {
  5157. "name": "symfony/mime",
  5158. "version": "v6.4.3",
  5159. "source": {
  5160. "type": "git",
  5161. "url": "https://github.com/symfony/mime.git",
  5162. "reference": "5017e0a9398c77090b7694be46f20eb796262a34"
  5163. },
  5164. "dist": {
  5165. "type": "zip",
  5166. "url": "https://api.github.com/repos/symfony/mime/zipball/5017e0a9398c77090b7694be46f20eb796262a34",
  5167. "reference": "5017e0a9398c77090b7694be46f20eb796262a34",
  5168. "shasum": ""
  5169. },
  5170. "require": {
  5171. "php": ">=8.1",
  5172. "symfony/deprecation-contracts": "^2.5|^3",
  5173. "symfony/polyfill-intl-idn": "^1.10",
  5174. "symfony/polyfill-mbstring": "^1.0"
  5175. },
  5176. "conflict": {
  5177. "egulias/email-validator": "~3.0.0",
  5178. "phpdocumentor/reflection-docblock": "<3.2.2",
  5179. "phpdocumentor/type-resolver": "<1.4.0",
  5180. "symfony/mailer": "<5.4",
  5181. "symfony/serializer": "<6.3.2"
  5182. },
  5183. "require-dev": {
  5184. "egulias/email-validator": "^2.1.10|^3.1|^4",
  5185. "league/html-to-markdown": "^5.0",
  5186. "phpdocumentor/reflection-docblock": "^3.0|^4.0|^5.0",
  5187. "symfony/dependency-injection": "^5.4|^6.0|^7.0",
  5188. "symfony/property-access": "^5.4|^6.0|^7.0",
  5189. "symfony/property-info": "^5.4|^6.0|^7.0",
  5190. "symfony/serializer": "^6.3.2|^7.0"
  5191. },
  5192. "type": "library",
  5193. "autoload": {
  5194. "psr-4": {
  5195. "Symfony\\Component\\Mime\\": ""
  5196. },
  5197. "exclude-from-classmap": [
  5198. "/Tests/"
  5199. ]
  5200. },
  5201. "notification-url": "https://packagist.org/downloads/",
  5202. "license": [
  5203. "MIT"
  5204. ],
  5205. "authors": [
  5206. {
  5207. "name": "Fabien Potencier",
  5208. "email": "fabien@symfony.com"
  5209. },
  5210. {
  5211. "name": "Symfony Community",
  5212. "homepage": "https://symfony.com/contributors"
  5213. }
  5214. ],
  5215. "description": "Allows manipulating MIME messages",
  5216. "homepage": "https://symfony.com",
  5217. "keywords": [
  5218. "mime",
  5219. "mime-type"
  5220. ],
  5221. "support": {
  5222. "source": "https://github.com/symfony/mime/tree/v6.4.3"
  5223. },
  5224. "funding": [
  5225. {
  5226. "url": "https://symfony.com/sponsor",
  5227. "type": "custom"
  5228. },
  5229. {
  5230. "url": "https://github.com/fabpot",
  5231. "type": "github"
  5232. },
  5233. {
  5234. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5235. "type": "tidelift"
  5236. }
  5237. ],
  5238. "time": "2024-01-30T08:32:12+00:00"
  5239. },
  5240. {
  5241. "name": "symfony/monolog-bridge",
  5242. "version": "v6.4.3",
  5243. "source": {
  5244. "type": "git",
  5245. "url": "https://github.com/symfony/monolog-bridge.git",
  5246. "reference": "1e1ec293f15dcc815146637ee9ee8a7f43642fa1"
  5247. },
  5248. "dist": {
  5249. "type": "zip",
  5250. "url": "https://api.github.com/repos/symfony/monolog-bridge/zipball/1e1ec293f15dcc815146637ee9ee8a7f43642fa1",
  5251. "reference": "1e1ec293f15dcc815146637ee9ee8a7f43642fa1",
  5252. "shasum": ""
  5253. },
  5254. "require": {
  5255. "monolog/monolog": "^1.25.1|^2|^3",
  5256. "php": ">=8.1",
  5257. "symfony/deprecation-contracts": "^2.5|^3",
  5258. "symfony/http-kernel": "^5.4|^6.0|^7.0",
  5259. "symfony/service-contracts": "^2.5|^3"
  5260. },
  5261. "conflict": {
  5262. "symfony/console": "<5.4",
  5263. "symfony/http-foundation": "<5.4",
  5264. "symfony/security-core": "<6.0"
  5265. },
  5266. "require-dev": {
  5267. "symfony/console": "^5.4|^6.0|^7.0",
  5268. "symfony/http-client": "^5.4|^6.0|^7.0",
  5269. "symfony/mailer": "^5.4|^6.0|^7.0",
  5270. "symfony/messenger": "^5.4|^6.0|^7.0",
  5271. "symfony/mime": "^5.4|^6.0|^7.0",
  5272. "symfony/security-core": "^6.0|^7.0",
  5273. "symfony/var-dumper": "^5.4|^6.0|^7.0"
  5274. },
  5275. "type": "symfony-bridge",
  5276. "autoload": {
  5277. "psr-4": {
  5278. "Symfony\\Bridge\\Monolog\\": ""
  5279. },
  5280. "exclude-from-classmap": [
  5281. "/Tests/"
  5282. ]
  5283. },
  5284. "notification-url": "https://packagist.org/downloads/",
  5285. "license": [
  5286. "MIT"
  5287. ],
  5288. "authors": [
  5289. {
  5290. "name": "Fabien Potencier",
  5291. "email": "fabien@symfony.com"
  5292. },
  5293. {
  5294. "name": "Symfony Community",
  5295. "homepage": "https://symfony.com/contributors"
  5296. }
  5297. ],
  5298. "description": "Provides integration for Monolog with various Symfony components",
  5299. "homepage": "https://symfony.com",
  5300. "support": {
  5301. "source": "https://github.com/symfony/monolog-bridge/tree/v6.4.3"
  5302. },
  5303. "funding": [
  5304. {
  5305. "url": "https://symfony.com/sponsor",
  5306. "type": "custom"
  5307. },
  5308. {
  5309. "url": "https://github.com/fabpot",
  5310. "type": "github"
  5311. },
  5312. {
  5313. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5314. "type": "tidelift"
  5315. }
  5316. ],
  5317. "time": "2024-01-29T15:01:07+00:00"
  5318. },
  5319. {
  5320. "name": "symfony/monolog-bundle",
  5321. "version": "v3.10.0",
  5322. "source": {
  5323. "type": "git",
  5324. "url": "https://github.com/symfony/monolog-bundle.git",
  5325. "reference": "414f951743f4aa1fd0f5bf6a0e9c16af3fe7f181"
  5326. },
  5327. "dist": {
  5328. "type": "zip",
  5329. "url": "https://api.github.com/repos/symfony/monolog-bundle/zipball/414f951743f4aa1fd0f5bf6a0e9c16af3fe7f181",
  5330. "reference": "414f951743f4aa1fd0f5bf6a0e9c16af3fe7f181",
  5331. "shasum": ""
  5332. },
  5333. "require": {
  5334. "monolog/monolog": "^1.25.1 || ^2.0 || ^3.0",
  5335. "php": ">=7.2.5",
  5336. "symfony/config": "^5.4 || ^6.0 || ^7.0",
  5337. "symfony/dependency-injection": "^5.4 || ^6.0 || ^7.0",
  5338. "symfony/http-kernel": "^5.4 || ^6.0 || ^7.0",
  5339. "symfony/monolog-bridge": "^5.4 || ^6.0 || ^7.0"
  5340. },
  5341. "require-dev": {
  5342. "symfony/console": "^5.4 || ^6.0 || ^7.0",
  5343. "symfony/phpunit-bridge": "^6.3 || ^7.0",
  5344. "symfony/yaml": "^5.4 || ^6.0 || ^7.0"
  5345. },
  5346. "type": "symfony-bundle",
  5347. "extra": {
  5348. "branch-alias": {
  5349. "dev-master": "3.x-dev"
  5350. }
  5351. },
  5352. "autoload": {
  5353. "psr-4": {
  5354. "Symfony\\Bundle\\MonologBundle\\": ""
  5355. },
  5356. "exclude-from-classmap": [
  5357. "/Tests/"
  5358. ]
  5359. },
  5360. "notification-url": "https://packagist.org/downloads/",
  5361. "license": [
  5362. "MIT"
  5363. ],
  5364. "authors": [
  5365. {
  5366. "name": "Fabien Potencier",
  5367. "email": "fabien@symfony.com"
  5368. },
  5369. {
  5370. "name": "Symfony Community",
  5371. "homepage": "https://symfony.com/contributors"
  5372. }
  5373. ],
  5374. "description": "Symfony MonologBundle",
  5375. "homepage": "https://symfony.com",
  5376. "keywords": [
  5377. "log",
  5378. "logging"
  5379. ],
  5380. "support": {
  5381. "issues": "https://github.com/symfony/monolog-bundle/issues",
  5382. "source": "https://github.com/symfony/monolog-bundle/tree/v3.10.0"
  5383. },
  5384. "funding": [
  5385. {
  5386. "url": "https://symfony.com/sponsor",
  5387. "type": "custom"
  5388. },
  5389. {
  5390. "url": "https://github.com/fabpot",
  5391. "type": "github"
  5392. },
  5393. {
  5394. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5395. "type": "tidelift"
  5396. }
  5397. ],
  5398. "time": "2023-11-06T17:08:13+00:00"
  5399. },
  5400. {
  5401. "name": "symfony/options-resolver",
  5402. "version": "v6.4.0",
  5403. "source": {
  5404. "type": "git",
  5405. "url": "https://github.com/symfony/options-resolver.git",
  5406. "reference": "22301f0e7fdeaacc14318928612dee79be99860e"
  5407. },
  5408. "dist": {
  5409. "type": "zip",
  5410. "url": "https://api.github.com/repos/symfony/options-resolver/zipball/22301f0e7fdeaacc14318928612dee79be99860e",
  5411. "reference": "22301f0e7fdeaacc14318928612dee79be99860e",
  5412. "shasum": ""
  5413. },
  5414. "require": {
  5415. "php": ">=8.1",
  5416. "symfony/deprecation-contracts": "^2.5|^3"
  5417. },
  5418. "type": "library",
  5419. "autoload": {
  5420. "psr-4": {
  5421. "Symfony\\Component\\OptionsResolver\\": ""
  5422. },
  5423. "exclude-from-classmap": [
  5424. "/Tests/"
  5425. ]
  5426. },
  5427. "notification-url": "https://packagist.org/downloads/",
  5428. "license": [
  5429. "MIT"
  5430. ],
  5431. "authors": [
  5432. {
  5433. "name": "Fabien Potencier",
  5434. "email": "fabien@symfony.com"
  5435. },
  5436. {
  5437. "name": "Symfony Community",
  5438. "homepage": "https://symfony.com/contributors"
  5439. }
  5440. ],
  5441. "description": "Provides an improved replacement for the array_replace PHP function",
  5442. "homepage": "https://symfony.com",
  5443. "keywords": [
  5444. "config",
  5445. "configuration",
  5446. "options"
  5447. ],
  5448. "support": {
  5449. "source": "https://github.com/symfony/options-resolver/tree/v6.4.0"
  5450. },
  5451. "funding": [
  5452. {
  5453. "url": "https://symfony.com/sponsor",
  5454. "type": "custom"
  5455. },
  5456. {
  5457. "url": "https://github.com/fabpot",
  5458. "type": "github"
  5459. },
  5460. {
  5461. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5462. "type": "tidelift"
  5463. }
  5464. ],
  5465. "time": "2023-08-08T10:16:24+00:00"
  5466. },
  5467. {
  5468. "name": "symfony/password-hasher",
  5469. "version": "v6.4.3",
  5470. "source": {
  5471. "type": "git",
  5472. "url": "https://github.com/symfony/password-hasher.git",
  5473. "reference": "5189cdfe89a9acb56cc6d6d7a5233bfb180c7268"
  5474. },
  5475. "dist": {
  5476. "type": "zip",
  5477. "url": "https://api.github.com/repos/symfony/password-hasher/zipball/5189cdfe89a9acb56cc6d6d7a5233bfb180c7268",
  5478. "reference": "5189cdfe89a9acb56cc6d6d7a5233bfb180c7268",
  5479. "shasum": ""
  5480. },
  5481. "require": {
  5482. "php": ">=8.1"
  5483. },
  5484. "conflict": {
  5485. "symfony/security-core": "<5.4"
  5486. },
  5487. "require-dev": {
  5488. "symfony/console": "^5.4|^6.0|^7.0",
  5489. "symfony/security-core": "^5.4|^6.0|^7.0"
  5490. },
  5491. "type": "library",
  5492. "autoload": {
  5493. "psr-4": {
  5494. "Symfony\\Component\\PasswordHasher\\": ""
  5495. },
  5496. "exclude-from-classmap": [
  5497. "/Tests/"
  5498. ]
  5499. },
  5500. "notification-url": "https://packagist.org/downloads/",
  5501. "license": [
  5502. "MIT"
  5503. ],
  5504. "authors": [
  5505. {
  5506. "name": "Robin Chalas",
  5507. "email": "robin.chalas@gmail.com"
  5508. },
  5509. {
  5510. "name": "Symfony Community",
  5511. "homepage": "https://symfony.com/contributors"
  5512. }
  5513. ],
  5514. "description": "Provides password hashing utilities",
  5515. "homepage": "https://symfony.com",
  5516. "keywords": [
  5517. "hashing",
  5518. "password"
  5519. ],
  5520. "support": {
  5521. "source": "https://github.com/symfony/password-hasher/tree/v6.4.3"
  5522. },
  5523. "funding": [
  5524. {
  5525. "url": "https://symfony.com/sponsor",
  5526. "type": "custom"
  5527. },
  5528. {
  5529. "url": "https://github.com/fabpot",
  5530. "type": "github"
  5531. },
  5532. {
  5533. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5534. "type": "tidelift"
  5535. }
  5536. ],
  5537. "time": "2024-01-23T14:51:35+00:00"
  5538. },
  5539. {
  5540. "name": "symfony/polyfill-intl-grapheme",
  5541. "version": "v1.29.0",
  5542. "source": {
  5543. "type": "git",
  5544. "url": "https://github.com/symfony/polyfill-intl-grapheme.git",
  5545. "reference": "32a9da87d7b3245e09ac426c83d334ae9f06f80f"
  5546. },
  5547. "dist": {
  5548. "type": "zip",
  5549. "url": "https://api.github.com/repos/symfony/polyfill-intl-grapheme/zipball/32a9da87d7b3245e09ac426c83d334ae9f06f80f",
  5550. "reference": "32a9da87d7b3245e09ac426c83d334ae9f06f80f",
  5551. "shasum": ""
  5552. },
  5553. "require": {
  5554. "php": ">=7.1"
  5555. },
  5556. "suggest": {
  5557. "ext-intl": "For best performance"
  5558. },
  5559. "type": "library",
  5560. "extra": {
  5561. "thanks": {
  5562. "name": "symfony/polyfill",
  5563. "url": "https://github.com/symfony/polyfill"
  5564. }
  5565. },
  5566. "autoload": {
  5567. "files": [
  5568. "bootstrap.php"
  5569. ],
  5570. "psr-4": {
  5571. "Symfony\\Polyfill\\Intl\\Grapheme\\": ""
  5572. }
  5573. },
  5574. "notification-url": "https://packagist.org/downloads/",
  5575. "license": [
  5576. "MIT"
  5577. ],
  5578. "authors": [
  5579. {
  5580. "name": "Nicolas Grekas",
  5581. "email": "p@tchwork.com"
  5582. },
  5583. {
  5584. "name": "Symfony Community",
  5585. "homepage": "https://symfony.com/contributors"
  5586. }
  5587. ],
  5588. "description": "Symfony polyfill for intl's grapheme_* functions",
  5589. "homepage": "https://symfony.com",
  5590. "keywords": [
  5591. "compatibility",
  5592. "grapheme",
  5593. "intl",
  5594. "polyfill",
  5595. "portable",
  5596. "shim"
  5597. ],
  5598. "support": {
  5599. "source": "https://github.com/symfony/polyfill-intl-grapheme/tree/v1.29.0"
  5600. },
  5601. "funding": [
  5602. {
  5603. "url": "https://symfony.com/sponsor",
  5604. "type": "custom"
  5605. },
  5606. {
  5607. "url": "https://github.com/fabpot",
  5608. "type": "github"
  5609. },
  5610. {
  5611. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5612. "type": "tidelift"
  5613. }
  5614. ],
  5615. "time": "2024-01-29T20:11:03+00:00"
  5616. },
  5617. {
  5618. "name": "symfony/polyfill-intl-icu",
  5619. "version": "v1.29.0",
  5620. "source": {
  5621. "type": "git",
  5622. "url": "https://github.com/symfony/polyfill-intl-icu.git",
  5623. "reference": "07094a28851a49107f3ab4f9120ca2975a64b6e1"
  5624. },
  5625. "dist": {
  5626. "type": "zip",
  5627. "url": "https://api.github.com/repos/symfony/polyfill-intl-icu/zipball/07094a28851a49107f3ab4f9120ca2975a64b6e1",
  5628. "reference": "07094a28851a49107f3ab4f9120ca2975a64b6e1",
  5629. "shasum": ""
  5630. },
  5631. "require": {
  5632. "php": ">=7.1"
  5633. },
  5634. "suggest": {
  5635. "ext-intl": "For best performance and support of other locales than \"en\""
  5636. },
  5637. "type": "library",
  5638. "extra": {
  5639. "thanks": {
  5640. "name": "symfony/polyfill",
  5641. "url": "https://github.com/symfony/polyfill"
  5642. }
  5643. },
  5644. "autoload": {
  5645. "files": [
  5646. "bootstrap.php"
  5647. ],
  5648. "psr-4": {
  5649. "Symfony\\Polyfill\\Intl\\Icu\\": ""
  5650. },
  5651. "classmap": [
  5652. "Resources/stubs"
  5653. ],
  5654. "exclude-from-classmap": [
  5655. "/Tests/"
  5656. ]
  5657. },
  5658. "notification-url": "https://packagist.org/downloads/",
  5659. "license": [
  5660. "MIT"
  5661. ],
  5662. "authors": [
  5663. {
  5664. "name": "Nicolas Grekas",
  5665. "email": "p@tchwork.com"
  5666. },
  5667. {
  5668. "name": "Symfony Community",
  5669. "homepage": "https://symfony.com/contributors"
  5670. }
  5671. ],
  5672. "description": "Symfony polyfill for intl's ICU-related data and classes",
  5673. "homepage": "https://symfony.com",
  5674. "keywords": [
  5675. "compatibility",
  5676. "icu",
  5677. "intl",
  5678. "polyfill",
  5679. "portable",
  5680. "shim"
  5681. ],
  5682. "support": {
  5683. "source": "https://github.com/symfony/polyfill-intl-icu/tree/v1.29.0"
  5684. },
  5685. "funding": [
  5686. {
  5687. "url": "https://symfony.com/sponsor",
  5688. "type": "custom"
  5689. },
  5690. {
  5691. "url": "https://github.com/fabpot",
  5692. "type": "github"
  5693. },
  5694. {
  5695. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5696. "type": "tidelift"
  5697. }
  5698. ],
  5699. "time": "2024-01-29T20:12:16+00:00"
  5700. },
  5701. {
  5702. "name": "symfony/polyfill-intl-idn",
  5703. "version": "v1.29.0",
  5704. "source": {
  5705. "type": "git",
  5706. "url": "https://github.com/symfony/polyfill-intl-idn.git",
  5707. "reference": "a287ed7475f85bf6f61890146edbc932c0fff919"
  5708. },
  5709. "dist": {
  5710. "type": "zip",
  5711. "url": "https://api.github.com/repos/symfony/polyfill-intl-idn/zipball/a287ed7475f85bf6f61890146edbc932c0fff919",
  5712. "reference": "a287ed7475f85bf6f61890146edbc932c0fff919",
  5713. "shasum": ""
  5714. },
  5715. "require": {
  5716. "php": ">=7.1",
  5717. "symfony/polyfill-intl-normalizer": "^1.10",
  5718. "symfony/polyfill-php72": "^1.10"
  5719. },
  5720. "suggest": {
  5721. "ext-intl": "For best performance"
  5722. },
  5723. "type": "library",
  5724. "extra": {
  5725. "thanks": {
  5726. "name": "symfony/polyfill",
  5727. "url": "https://github.com/symfony/polyfill"
  5728. }
  5729. },
  5730. "autoload": {
  5731. "files": [
  5732. "bootstrap.php"
  5733. ],
  5734. "psr-4": {
  5735. "Symfony\\Polyfill\\Intl\\Idn\\": ""
  5736. }
  5737. },
  5738. "notification-url": "https://packagist.org/downloads/",
  5739. "license": [
  5740. "MIT"
  5741. ],
  5742. "authors": [
  5743. {
  5744. "name": "Laurent Bassin",
  5745. "email": "laurent@bassin.info"
  5746. },
  5747. {
  5748. "name": "Trevor Rowbotham",
  5749. "email": "trevor.rowbotham@pm.me"
  5750. },
  5751. {
  5752. "name": "Symfony Community",
  5753. "homepage": "https://symfony.com/contributors"
  5754. }
  5755. ],
  5756. "description": "Symfony polyfill for intl's idn_to_ascii and idn_to_utf8 functions",
  5757. "homepage": "https://symfony.com",
  5758. "keywords": [
  5759. "compatibility",
  5760. "idn",
  5761. "intl",
  5762. "polyfill",
  5763. "portable",
  5764. "shim"
  5765. ],
  5766. "support": {
  5767. "source": "https://github.com/symfony/polyfill-intl-idn/tree/v1.29.0"
  5768. },
  5769. "funding": [
  5770. {
  5771. "url": "https://symfony.com/sponsor",
  5772. "type": "custom"
  5773. },
  5774. {
  5775. "url": "https://github.com/fabpot",
  5776. "type": "github"
  5777. },
  5778. {
  5779. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5780. "type": "tidelift"
  5781. }
  5782. ],
  5783. "time": "2024-01-29T20:11:03+00:00"
  5784. },
  5785. {
  5786. "name": "symfony/polyfill-intl-normalizer",
  5787. "version": "v1.29.0",
  5788. "source": {
  5789. "type": "git",
  5790. "url": "https://github.com/symfony/polyfill-intl-normalizer.git",
  5791. "reference": "bc45c394692b948b4d383a08d7753968bed9a83d"
  5792. },
  5793. "dist": {
  5794. "type": "zip",
  5795. "url": "https://api.github.com/repos/symfony/polyfill-intl-normalizer/zipball/bc45c394692b948b4d383a08d7753968bed9a83d",
  5796. "reference": "bc45c394692b948b4d383a08d7753968bed9a83d",
  5797. "shasum": ""
  5798. },
  5799. "require": {
  5800. "php": ">=7.1"
  5801. },
  5802. "suggest": {
  5803. "ext-intl": "For best performance"
  5804. },
  5805. "type": "library",
  5806. "extra": {
  5807. "thanks": {
  5808. "name": "symfony/polyfill",
  5809. "url": "https://github.com/symfony/polyfill"
  5810. }
  5811. },
  5812. "autoload": {
  5813. "files": [
  5814. "bootstrap.php"
  5815. ],
  5816. "psr-4": {
  5817. "Symfony\\Polyfill\\Intl\\Normalizer\\": ""
  5818. },
  5819. "classmap": [
  5820. "Resources/stubs"
  5821. ]
  5822. },
  5823. "notification-url": "https://packagist.org/downloads/",
  5824. "license": [
  5825. "MIT"
  5826. ],
  5827. "authors": [
  5828. {
  5829. "name": "Nicolas Grekas",
  5830. "email": "p@tchwork.com"
  5831. },
  5832. {
  5833. "name": "Symfony Community",
  5834. "homepage": "https://symfony.com/contributors"
  5835. }
  5836. ],
  5837. "description": "Symfony polyfill for intl's Normalizer class and related functions",
  5838. "homepage": "https://symfony.com",
  5839. "keywords": [
  5840. "compatibility",
  5841. "intl",
  5842. "normalizer",
  5843. "polyfill",
  5844. "portable",
  5845. "shim"
  5846. ],
  5847. "support": {
  5848. "source": "https://github.com/symfony/polyfill-intl-normalizer/tree/v1.29.0"
  5849. },
  5850. "funding": [
  5851. {
  5852. "url": "https://symfony.com/sponsor",
  5853. "type": "custom"
  5854. },
  5855. {
  5856. "url": "https://github.com/fabpot",
  5857. "type": "github"
  5858. },
  5859. {
  5860. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5861. "type": "tidelift"
  5862. }
  5863. ],
  5864. "time": "2024-01-29T20:11:03+00:00"
  5865. },
  5866. {
  5867. "name": "symfony/polyfill-mbstring",
  5868. "version": "v1.29.0",
  5869. "source": {
  5870. "type": "git",
  5871. "url": "https://github.com/symfony/polyfill-mbstring.git",
  5872. "reference": "9773676c8a1bb1f8d4340a62efe641cf76eda7ec"
  5873. },
  5874. "dist": {
  5875. "type": "zip",
  5876. "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/9773676c8a1bb1f8d4340a62efe641cf76eda7ec",
  5877. "reference": "9773676c8a1bb1f8d4340a62efe641cf76eda7ec",
  5878. "shasum": ""
  5879. },
  5880. "require": {
  5881. "php": ">=7.1"
  5882. },
  5883. "provide": {
  5884. "ext-mbstring": "*"
  5885. },
  5886. "suggest": {
  5887. "ext-mbstring": "For best performance"
  5888. },
  5889. "type": "library",
  5890. "extra": {
  5891. "thanks": {
  5892. "name": "symfony/polyfill",
  5893. "url": "https://github.com/symfony/polyfill"
  5894. }
  5895. },
  5896. "autoload": {
  5897. "files": [
  5898. "bootstrap.php"
  5899. ],
  5900. "psr-4": {
  5901. "Symfony\\Polyfill\\Mbstring\\": ""
  5902. }
  5903. },
  5904. "notification-url": "https://packagist.org/downloads/",
  5905. "license": [
  5906. "MIT"
  5907. ],
  5908. "authors": [
  5909. {
  5910. "name": "Nicolas Grekas",
  5911. "email": "p@tchwork.com"
  5912. },
  5913. {
  5914. "name": "Symfony Community",
  5915. "homepage": "https://symfony.com/contributors"
  5916. }
  5917. ],
  5918. "description": "Symfony polyfill for the Mbstring extension",
  5919. "homepage": "https://symfony.com",
  5920. "keywords": [
  5921. "compatibility",
  5922. "mbstring",
  5923. "polyfill",
  5924. "portable",
  5925. "shim"
  5926. ],
  5927. "support": {
  5928. "source": "https://github.com/symfony/polyfill-mbstring/tree/v1.29.0"
  5929. },
  5930. "funding": [
  5931. {
  5932. "url": "https://symfony.com/sponsor",
  5933. "type": "custom"
  5934. },
  5935. {
  5936. "url": "https://github.com/fabpot",
  5937. "type": "github"
  5938. },
  5939. {
  5940. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5941. "type": "tidelift"
  5942. }
  5943. ],
  5944. "time": "2024-01-29T20:11:03+00:00"
  5945. },
  5946. {
  5947. "name": "symfony/polyfill-php72",
  5948. "version": "v1.29.0",
  5949. "source": {
  5950. "type": "git",
  5951. "url": "https://github.com/symfony/polyfill-php72.git",
  5952. "reference": "861391a8da9a04cbad2d232ddd9e4893220d6e25"
  5953. },
  5954. "dist": {
  5955. "type": "zip",
  5956. "url": "https://api.github.com/repos/symfony/polyfill-php72/zipball/861391a8da9a04cbad2d232ddd9e4893220d6e25",
  5957. "reference": "861391a8da9a04cbad2d232ddd9e4893220d6e25",
  5958. "shasum": ""
  5959. },
  5960. "require": {
  5961. "php": ">=7.1"
  5962. },
  5963. "type": "library",
  5964. "extra": {
  5965. "thanks": {
  5966. "name": "symfony/polyfill",
  5967. "url": "https://github.com/symfony/polyfill"
  5968. }
  5969. },
  5970. "autoload": {
  5971. "files": [
  5972. "bootstrap.php"
  5973. ],
  5974. "psr-4": {
  5975. "Symfony\\Polyfill\\Php72\\": ""
  5976. }
  5977. },
  5978. "notification-url": "https://packagist.org/downloads/",
  5979. "license": [
  5980. "MIT"
  5981. ],
  5982. "authors": [
  5983. {
  5984. "name": "Nicolas Grekas",
  5985. "email": "p@tchwork.com"
  5986. },
  5987. {
  5988. "name": "Symfony Community",
  5989. "homepage": "https://symfony.com/contributors"
  5990. }
  5991. ],
  5992. "description": "Symfony polyfill backporting some PHP 7.2+ features to lower PHP versions",
  5993. "homepage": "https://symfony.com",
  5994. "keywords": [
  5995. "compatibility",
  5996. "polyfill",
  5997. "portable",
  5998. "shim"
  5999. ],
  6000. "support": {
  6001. "source": "https://github.com/symfony/polyfill-php72/tree/v1.29.0"
  6002. },
  6003. "funding": [
  6004. {
  6005. "url": "https://symfony.com/sponsor",
  6006. "type": "custom"
  6007. },
  6008. {
  6009. "url": "https://github.com/fabpot",
  6010. "type": "github"
  6011. },
  6012. {
  6013. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6014. "type": "tidelift"
  6015. }
  6016. ],
  6017. "time": "2024-01-29T20:11:03+00:00"
  6018. },
  6019. {
  6020. "name": "symfony/polyfill-php80",
  6021. "version": "v1.29.0",
  6022. "source": {
  6023. "type": "git",
  6024. "url": "https://github.com/symfony/polyfill-php80.git",
  6025. "reference": "87b68208d5c1188808dd7839ee1e6c8ec3b02f1b"
  6026. },
  6027. "dist": {
  6028. "type": "zip",
  6029. "url": "https://api.github.com/repos/symfony/polyfill-php80/zipball/87b68208d5c1188808dd7839ee1e6c8ec3b02f1b",
  6030. "reference": "87b68208d5c1188808dd7839ee1e6c8ec3b02f1b",
  6031. "shasum": ""
  6032. },
  6033. "require": {
  6034. "php": ">=7.1"
  6035. },
  6036. "type": "library",
  6037. "extra": {
  6038. "thanks": {
  6039. "name": "symfony/polyfill",
  6040. "url": "https://github.com/symfony/polyfill"
  6041. }
  6042. },
  6043. "autoload": {
  6044. "files": [
  6045. "bootstrap.php"
  6046. ],
  6047. "psr-4": {
  6048. "Symfony\\Polyfill\\Php80\\": ""
  6049. },
  6050. "classmap": [
  6051. "Resources/stubs"
  6052. ]
  6053. },
  6054. "notification-url": "https://packagist.org/downloads/",
  6055. "license": [
  6056. "MIT"
  6057. ],
  6058. "authors": [
  6059. {
  6060. "name": "Ion Bazan",
  6061. "email": "ion.bazan@gmail.com"
  6062. },
  6063. {
  6064. "name": "Nicolas Grekas",
  6065. "email": "p@tchwork.com"
  6066. },
  6067. {
  6068. "name": "Symfony Community",
  6069. "homepage": "https://symfony.com/contributors"
  6070. }
  6071. ],
  6072. "description": "Symfony polyfill backporting some PHP 8.0+ features to lower PHP versions",
  6073. "homepage": "https://symfony.com",
  6074. "keywords": [
  6075. "compatibility",
  6076. "polyfill",
  6077. "portable",
  6078. "shim"
  6079. ],
  6080. "support": {
  6081. "source": "https://github.com/symfony/polyfill-php80/tree/v1.29.0"
  6082. },
  6083. "funding": [
  6084. {
  6085. "url": "https://symfony.com/sponsor",
  6086. "type": "custom"
  6087. },
  6088. {
  6089. "url": "https://github.com/fabpot",
  6090. "type": "github"
  6091. },
  6092. {
  6093. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6094. "type": "tidelift"
  6095. }
  6096. ],
  6097. "time": "2024-01-29T20:11:03+00:00"
  6098. },
  6099. {
  6100. "name": "symfony/polyfill-php83",
  6101. "version": "v1.29.0",
  6102. "source": {
  6103. "type": "git",
  6104. "url": "https://github.com/symfony/polyfill-php83.git",
  6105. "reference": "86fcae159633351e5fd145d1c47de6c528f8caff"
  6106. },
  6107. "dist": {
  6108. "type": "zip",
  6109. "url": "https://api.github.com/repos/symfony/polyfill-php83/zipball/86fcae159633351e5fd145d1c47de6c528f8caff",
  6110. "reference": "86fcae159633351e5fd145d1c47de6c528f8caff",
  6111. "shasum": ""
  6112. },
  6113. "require": {
  6114. "php": ">=7.1",
  6115. "symfony/polyfill-php80": "^1.14"
  6116. },
  6117. "type": "library",
  6118. "extra": {
  6119. "thanks": {
  6120. "name": "symfony/polyfill",
  6121. "url": "https://github.com/symfony/polyfill"
  6122. }
  6123. },
  6124. "autoload": {
  6125. "files": [
  6126. "bootstrap.php"
  6127. ],
  6128. "psr-4": {
  6129. "Symfony\\Polyfill\\Php83\\": ""
  6130. },
  6131. "classmap": [
  6132. "Resources/stubs"
  6133. ]
  6134. },
  6135. "notification-url": "https://packagist.org/downloads/",
  6136. "license": [
  6137. "MIT"
  6138. ],
  6139. "authors": [
  6140. {
  6141. "name": "Nicolas Grekas",
  6142. "email": "p@tchwork.com"
  6143. },
  6144. {
  6145. "name": "Symfony Community",
  6146. "homepage": "https://symfony.com/contributors"
  6147. }
  6148. ],
  6149. "description": "Symfony polyfill backporting some PHP 8.3+ features to lower PHP versions",
  6150. "homepage": "https://symfony.com",
  6151. "keywords": [
  6152. "compatibility",
  6153. "polyfill",
  6154. "portable",
  6155. "shim"
  6156. ],
  6157. "support": {
  6158. "source": "https://github.com/symfony/polyfill-php83/tree/v1.29.0"
  6159. },
  6160. "funding": [
  6161. {
  6162. "url": "https://symfony.com/sponsor",
  6163. "type": "custom"
  6164. },
  6165. {
  6166. "url": "https://github.com/fabpot",
  6167. "type": "github"
  6168. },
  6169. {
  6170. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6171. "type": "tidelift"
  6172. }
  6173. ],
  6174. "time": "2024-01-29T20:11:03+00:00"
  6175. },
  6176. {
  6177. "name": "symfony/process",
  6178. "version": "v6.4.3",
  6179. "source": {
  6180. "type": "git",
  6181. "url": "https://github.com/symfony/process.git",
  6182. "reference": "31642b0818bfcff85930344ef93193f8c607e0a3"
  6183. },
  6184. "dist": {
  6185. "type": "zip",
  6186. "url": "https://api.github.com/repos/symfony/process/zipball/31642b0818bfcff85930344ef93193f8c607e0a3",
  6187. "reference": "31642b0818bfcff85930344ef93193f8c607e0a3",
  6188. "shasum": ""
  6189. },
  6190. "require": {
  6191. "php": ">=8.1"
  6192. },
  6193. "type": "library",
  6194. "autoload": {
  6195. "psr-4": {
  6196. "Symfony\\Component\\Process\\": ""
  6197. },
  6198. "exclude-from-classmap": [
  6199. "/Tests/"
  6200. ]
  6201. },
  6202. "notification-url": "https://packagist.org/downloads/",
  6203. "license": [
  6204. "MIT"
  6205. ],
  6206. "authors": [
  6207. {
  6208. "name": "Fabien Potencier",
  6209. "email": "fabien@symfony.com"
  6210. },
  6211. {
  6212. "name": "Symfony Community",
  6213. "homepage": "https://symfony.com/contributors"
  6214. }
  6215. ],
  6216. "description": "Executes commands in sub-processes",
  6217. "homepage": "https://symfony.com",
  6218. "support": {
  6219. "source": "https://github.com/symfony/process/tree/v6.4.3"
  6220. },
  6221. "funding": [
  6222. {
  6223. "url": "https://symfony.com/sponsor",
  6224. "type": "custom"
  6225. },
  6226. {
  6227. "url": "https://github.com/fabpot",
  6228. "type": "github"
  6229. },
  6230. {
  6231. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6232. "type": "tidelift"
  6233. }
  6234. ],
  6235. "time": "2024-01-23T14:51:35+00:00"
  6236. },
  6237. {
  6238. "name": "symfony/property-access",
  6239. "version": "v6.4.3",
  6240. "source": {
  6241. "type": "git",
  6242. "url": "https://github.com/symfony/property-access.git",
  6243. "reference": "dd22c9247a16c712bfa128b3c90ebdd505102778"
  6244. },
  6245. "dist": {
  6246. "type": "zip",
  6247. "url": "https://api.github.com/repos/symfony/property-access/zipball/dd22c9247a16c712bfa128b3c90ebdd505102778",
  6248. "reference": "dd22c9247a16c712bfa128b3c90ebdd505102778",
  6249. "shasum": ""
  6250. },
  6251. "require": {
  6252. "php": ">=8.1",
  6253. "symfony/deprecation-contracts": "^2.5|^3",
  6254. "symfony/property-info": "^5.4|^6.0|^7.0"
  6255. },
  6256. "require-dev": {
  6257. "symfony/cache": "^5.4|^6.0|^7.0"
  6258. },
  6259. "type": "library",
  6260. "autoload": {
  6261. "psr-4": {
  6262. "Symfony\\Component\\PropertyAccess\\": ""
  6263. },
  6264. "exclude-from-classmap": [
  6265. "/Tests/"
  6266. ]
  6267. },
  6268. "notification-url": "https://packagist.org/downloads/",
  6269. "license": [
  6270. "MIT"
  6271. ],
  6272. "authors": [
  6273. {
  6274. "name": "Fabien Potencier",
  6275. "email": "fabien@symfony.com"
  6276. },
  6277. {
  6278. "name": "Symfony Community",
  6279. "homepage": "https://symfony.com/contributors"
  6280. }
  6281. ],
  6282. "description": "Provides functions to read and write from/to an object or array using a simple string notation",
  6283. "homepage": "https://symfony.com",
  6284. "keywords": [
  6285. "access",
  6286. "array",
  6287. "extraction",
  6288. "index",
  6289. "injection",
  6290. "object",
  6291. "property",
  6292. "property-path",
  6293. "reflection"
  6294. ],
  6295. "support": {
  6296. "source": "https://github.com/symfony/property-access/tree/v6.4.3"
  6297. },
  6298. "funding": [
  6299. {
  6300. "url": "https://symfony.com/sponsor",
  6301. "type": "custom"
  6302. },
  6303. {
  6304. "url": "https://github.com/fabpot",
  6305. "type": "github"
  6306. },
  6307. {
  6308. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6309. "type": "tidelift"
  6310. }
  6311. ],
  6312. "time": "2024-01-23T14:51:35+00:00"
  6313. },
  6314. {
  6315. "name": "symfony/property-info",
  6316. "version": "v6.4.3",
  6317. "source": {
  6318. "type": "git",
  6319. "url": "https://github.com/symfony/property-info.git",
  6320. "reference": "e96d740ab5ac39aa530c8eaa0720ea8169118e26"
  6321. },
  6322. "dist": {
  6323. "type": "zip",
  6324. "url": "https://api.github.com/repos/symfony/property-info/zipball/e96d740ab5ac39aa530c8eaa0720ea8169118e26",
  6325. "reference": "e96d740ab5ac39aa530c8eaa0720ea8169118e26",
  6326. "shasum": ""
  6327. },
  6328. "require": {
  6329. "php": ">=8.1",
  6330. "symfony/string": "^5.4|^6.0|^7.0"
  6331. },
  6332. "conflict": {
  6333. "phpdocumentor/reflection-docblock": "<5.2",
  6334. "phpdocumentor/type-resolver": "<1.5.1",
  6335. "symfony/dependency-injection": "<5.4",
  6336. "symfony/serializer": "<6.4"
  6337. },
  6338. "require-dev": {
  6339. "phpdocumentor/reflection-docblock": "^5.2",
  6340. "phpstan/phpdoc-parser": "^1.0",
  6341. "symfony/cache": "^5.4|^6.0|^7.0",
  6342. "symfony/dependency-injection": "^5.4|^6.0|^7.0",
  6343. "symfony/serializer": "^6.4|^7.0"
  6344. },
  6345. "type": "library",
  6346. "autoload": {
  6347. "psr-4": {
  6348. "Symfony\\Component\\PropertyInfo\\": ""
  6349. },
  6350. "exclude-from-classmap": [
  6351. "/Tests/"
  6352. ]
  6353. },
  6354. "notification-url": "https://packagist.org/downloads/",
  6355. "license": [
  6356. "MIT"
  6357. ],
  6358. "authors": [
  6359. {
  6360. "name": "Kévin Dunglas",
  6361. "email": "dunglas@gmail.com"
  6362. },
  6363. {
  6364. "name": "Symfony Community",
  6365. "homepage": "https://symfony.com/contributors"
  6366. }
  6367. ],
  6368. "description": "Extracts information about PHP class' properties using metadata of popular sources",
  6369. "homepage": "https://symfony.com",
  6370. "keywords": [
  6371. "doctrine",
  6372. "phpdoc",
  6373. "property",
  6374. "symfony",
  6375. "type",
  6376. "validator"
  6377. ],
  6378. "support": {
  6379. "source": "https://github.com/symfony/property-info/tree/v6.4.3"
  6380. },
  6381. "funding": [
  6382. {
  6383. "url": "https://symfony.com/sponsor",
  6384. "type": "custom"
  6385. },
  6386. {
  6387. "url": "https://github.com/fabpot",
  6388. "type": "github"
  6389. },
  6390. {
  6391. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6392. "type": "tidelift"
  6393. }
  6394. ],
  6395. "time": "2024-01-23T14:51:35+00:00"
  6396. },
  6397. {
  6398. "name": "symfony/proxy-manager-bridge",
  6399. "version": "v6.4.3",
  6400. "source": {
  6401. "type": "git",
  6402. "url": "https://github.com/symfony/proxy-manager-bridge.git",
  6403. "reference": "c3f1b7d8f0b567eb960c540567f24219cb759e0a"
  6404. },
  6405. "dist": {
  6406. "type": "zip",
  6407. "url": "https://api.github.com/repos/symfony/proxy-manager-bridge/zipball/c3f1b7d8f0b567eb960c540567f24219cb759e0a",
  6408. "reference": "c3f1b7d8f0b567eb960c540567f24219cb759e0a",
  6409. "shasum": ""
  6410. },
  6411. "require": {
  6412. "friendsofphp/proxy-manager-lts": "^1.0.2",
  6413. "php": ">=8.1",
  6414. "symfony/dependency-injection": "^6.3|^7.0",
  6415. "symfony/deprecation-contracts": "^2.5|^3"
  6416. },
  6417. "require-dev": {
  6418. "symfony/config": "^6.1|^7.0"
  6419. },
  6420. "type": "symfony-bridge",
  6421. "autoload": {
  6422. "psr-4": {
  6423. "Symfony\\Bridge\\ProxyManager\\": ""
  6424. },
  6425. "exclude-from-classmap": [
  6426. "/Tests/"
  6427. ]
  6428. },
  6429. "notification-url": "https://packagist.org/downloads/",
  6430. "license": [
  6431. "MIT"
  6432. ],
  6433. "authors": [
  6434. {
  6435. "name": "Fabien Potencier",
  6436. "email": "fabien@symfony.com"
  6437. },
  6438. {
  6439. "name": "Symfony Community",
  6440. "homepage": "https://symfony.com/contributors"
  6441. }
  6442. ],
  6443. "description": "Provides integration for ProxyManager with various Symfony components",
  6444. "homepage": "https://symfony.com",
  6445. "support": {
  6446. "source": "https://github.com/symfony/proxy-manager-bridge/tree/v6.4.3"
  6447. },
  6448. "funding": [
  6449. {
  6450. "url": "https://symfony.com/sponsor",
  6451. "type": "custom"
  6452. },
  6453. {
  6454. "url": "https://github.com/fabpot",
  6455. "type": "github"
  6456. },
  6457. {
  6458. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6459. "type": "tidelift"
  6460. }
  6461. ],
  6462. "time": "2024-01-23T14:51:35+00:00"
  6463. },
  6464. {
  6465. "name": "symfony/routing",
  6466. "version": "v6.4.3",
  6467. "source": {
  6468. "type": "git",
  6469. "url": "https://github.com/symfony/routing.git",
  6470. "reference": "3b2957ad54902f0f544df83e3d58b38d7e8e5842"
  6471. },
  6472. "dist": {
  6473. "type": "zip",
  6474. "url": "https://api.github.com/repos/symfony/routing/zipball/3b2957ad54902f0f544df83e3d58b38d7e8e5842",
  6475. "reference": "3b2957ad54902f0f544df83e3d58b38d7e8e5842",
  6476. "shasum": ""
  6477. },
  6478. "require": {
  6479. "php": ">=8.1",
  6480. "symfony/deprecation-contracts": "^2.5|^3"
  6481. },
  6482. "conflict": {
  6483. "doctrine/annotations": "<1.12",
  6484. "symfony/config": "<6.2",
  6485. "symfony/dependency-injection": "<5.4",
  6486. "symfony/yaml": "<5.4"
  6487. },
  6488. "require-dev": {
  6489. "doctrine/annotations": "^1.12|^2",
  6490. "psr/log": "^1|^2|^3",
  6491. "symfony/config": "^6.2|^7.0",
  6492. "symfony/dependency-injection": "^5.4|^6.0|^7.0",
  6493. "symfony/expression-language": "^5.4|^6.0|^7.0",
  6494. "symfony/http-foundation": "^5.4|^6.0|^7.0",
  6495. "symfony/yaml": "^5.4|^6.0|^7.0"
  6496. },
  6497. "type": "library",
  6498. "autoload": {
  6499. "psr-4": {
  6500. "Symfony\\Component\\Routing\\": ""
  6501. },
  6502. "exclude-from-classmap": [
  6503. "/Tests/"
  6504. ]
  6505. },
  6506. "notification-url": "https://packagist.org/downloads/",
  6507. "license": [
  6508. "MIT"
  6509. ],
  6510. "authors": [
  6511. {
  6512. "name": "Fabien Potencier",
  6513. "email": "fabien@symfony.com"
  6514. },
  6515. {
  6516. "name": "Symfony Community",
  6517. "homepage": "https://symfony.com/contributors"
  6518. }
  6519. ],
  6520. "description": "Maps an HTTP request to a set of configuration variables",
  6521. "homepage": "https://symfony.com",
  6522. "keywords": [
  6523. "router",
  6524. "routing",
  6525. "uri",
  6526. "url"
  6527. ],
  6528. "support": {
  6529. "source": "https://github.com/symfony/routing/tree/v6.4.3"
  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-01-30T13:55:02+00:00"
  6546. },
  6547. {
  6548. "name": "symfony/runtime",
  6549. "version": "v6.4.3",
  6550. "source": {
  6551. "type": "git",
  6552. "url": "https://github.com/symfony/runtime.git",
  6553. "reference": "5682281d26366cd3bf0648cec69de0e62cca7fa0"
  6554. },
  6555. "dist": {
  6556. "type": "zip",
  6557. "url": "https://api.github.com/repos/symfony/runtime/zipball/5682281d26366cd3bf0648cec69de0e62cca7fa0",
  6558. "reference": "5682281d26366cd3bf0648cec69de0e62cca7fa0",
  6559. "shasum": ""
  6560. },
  6561. "require": {
  6562. "composer-plugin-api": "^1.0|^2.0",
  6563. "php": ">=8.1"
  6564. },
  6565. "conflict": {
  6566. "symfony/dotenv": "<5.4"
  6567. },
  6568. "require-dev": {
  6569. "composer/composer": "^1.0.2|^2.0",
  6570. "symfony/console": "^5.4.9|^6.0.9|^7.0",
  6571. "symfony/dotenv": "^5.4|^6.0|^7.0",
  6572. "symfony/http-foundation": "^5.4|^6.0|^7.0",
  6573. "symfony/http-kernel": "^5.4|^6.0|^7.0"
  6574. },
  6575. "type": "composer-plugin",
  6576. "extra": {
  6577. "class": "Symfony\\Component\\Runtime\\Internal\\ComposerPlugin"
  6578. },
  6579. "autoload": {
  6580. "psr-4": {
  6581. "Symfony\\Component\\Runtime\\": "",
  6582. "Symfony\\Runtime\\Symfony\\Component\\": "Internal/"
  6583. },
  6584. "exclude-from-classmap": [
  6585. "/Tests/"
  6586. ]
  6587. },
  6588. "notification-url": "https://packagist.org/downloads/",
  6589. "license": [
  6590. "MIT"
  6591. ],
  6592. "authors": [
  6593. {
  6594. "name": "Nicolas Grekas",
  6595. "email": "p@tchwork.com"
  6596. },
  6597. {
  6598. "name": "Symfony Community",
  6599. "homepage": "https://symfony.com/contributors"
  6600. }
  6601. ],
  6602. "description": "Enables decoupling PHP applications from global state",
  6603. "homepage": "https://symfony.com",
  6604. "keywords": [
  6605. "runtime"
  6606. ],
  6607. "support": {
  6608. "source": "https://github.com/symfony/runtime/tree/v6.4.3"
  6609. },
  6610. "funding": [
  6611. {
  6612. "url": "https://symfony.com/sponsor",
  6613. "type": "custom"
  6614. },
  6615. {
  6616. "url": "https://github.com/fabpot",
  6617. "type": "github"
  6618. },
  6619. {
  6620. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6621. "type": "tidelift"
  6622. }
  6623. ],
  6624. "time": "2024-01-23T14:51:35+00:00"
  6625. },
  6626. {
  6627. "name": "symfony/security-bundle",
  6628. "version": "v6.4.3",
  6629. "source": {
  6630. "type": "git",
  6631. "url": "https://github.com/symfony/security-bundle.git",
  6632. "reference": "a53a9e1f6695447ce613aa8c9c698cfd012bd2aa"
  6633. },
  6634. "dist": {
  6635. "type": "zip",
  6636. "url": "https://api.github.com/repos/symfony/security-bundle/zipball/a53a9e1f6695447ce613aa8c9c698cfd012bd2aa",
  6637. "reference": "a53a9e1f6695447ce613aa8c9c698cfd012bd2aa",
  6638. "shasum": ""
  6639. },
  6640. "require": {
  6641. "composer-runtime-api": ">=2.1",
  6642. "ext-xml": "*",
  6643. "php": ">=8.1",
  6644. "symfony/clock": "^6.3|^7.0",
  6645. "symfony/config": "^6.1|^7.0",
  6646. "symfony/dependency-injection": "^6.2|^7.0",
  6647. "symfony/deprecation-contracts": "^2.5|^3",
  6648. "symfony/event-dispatcher": "^5.4|^6.0|^7.0",
  6649. "symfony/http-foundation": "^6.2|^7.0",
  6650. "symfony/http-kernel": "^6.2",
  6651. "symfony/password-hasher": "^5.4|^6.0|^7.0",
  6652. "symfony/security-core": "^6.2|^7.0",
  6653. "symfony/security-csrf": "^5.4|^6.0|^7.0",
  6654. "symfony/security-http": "^6.3.6|^7.0",
  6655. "symfony/service-contracts": "^2.5|^3"
  6656. },
  6657. "conflict": {
  6658. "symfony/browser-kit": "<5.4",
  6659. "symfony/console": "<5.4",
  6660. "symfony/framework-bundle": "<6.4",
  6661. "symfony/http-client": "<5.4",
  6662. "symfony/ldap": "<5.4",
  6663. "symfony/serializer": "<6.4",
  6664. "symfony/twig-bundle": "<5.4",
  6665. "symfony/validator": "<6.4"
  6666. },
  6667. "require-dev": {
  6668. "symfony/asset": "^5.4|^6.0|^7.0",
  6669. "symfony/browser-kit": "^5.4|^6.0|^7.0",
  6670. "symfony/console": "^5.4|^6.0|^7.0",
  6671. "symfony/css-selector": "^5.4|^6.0|^7.0",
  6672. "symfony/dom-crawler": "^5.4|^6.0|^7.0",
  6673. "symfony/expression-language": "^5.4|^6.0|^7.0",
  6674. "symfony/form": "^5.4|^6.0|^7.0",
  6675. "symfony/framework-bundle": "^6.4|^7.0",
  6676. "symfony/http-client": "^5.4|^6.0|^7.0",
  6677. "symfony/ldap": "^5.4|^6.0|^7.0",
  6678. "symfony/process": "^5.4|^6.0|^7.0",
  6679. "symfony/rate-limiter": "^5.4|^6.0|^7.0",
  6680. "symfony/serializer": "^6.4|^7.0",
  6681. "symfony/translation": "^5.4|^6.0|^7.0",
  6682. "symfony/twig-bridge": "^5.4|^6.0|^7.0",
  6683. "symfony/twig-bundle": "^5.4|^6.0|^7.0",
  6684. "symfony/validator": "^6.4|^7.0",
  6685. "symfony/yaml": "^5.4|^6.0|^7.0",
  6686. "twig/twig": "^2.13|^3.0.4",
  6687. "web-token/jwt-checker": "^3.1",
  6688. "web-token/jwt-signature-algorithm-ecdsa": "^3.1",
  6689. "web-token/jwt-signature-algorithm-eddsa": "^3.1",
  6690. "web-token/jwt-signature-algorithm-hmac": "^3.1",
  6691. "web-token/jwt-signature-algorithm-none": "^3.1",
  6692. "web-token/jwt-signature-algorithm-rsa": "^3.1"
  6693. },
  6694. "type": "symfony-bundle",
  6695. "autoload": {
  6696. "psr-4": {
  6697. "Symfony\\Bundle\\SecurityBundle\\": ""
  6698. },
  6699. "exclude-from-classmap": [
  6700. "/Tests/"
  6701. ]
  6702. },
  6703. "notification-url": "https://packagist.org/downloads/",
  6704. "license": [
  6705. "MIT"
  6706. ],
  6707. "authors": [
  6708. {
  6709. "name": "Fabien Potencier",
  6710. "email": "fabien@symfony.com"
  6711. },
  6712. {
  6713. "name": "Symfony Community",
  6714. "homepage": "https://symfony.com/contributors"
  6715. }
  6716. ],
  6717. "description": "Provides a tight integration of the Security component into the Symfony full-stack framework",
  6718. "homepage": "https://symfony.com",
  6719. "support": {
  6720. "source": "https://github.com/symfony/security-bundle/tree/v6.4.3"
  6721. },
  6722. "funding": [
  6723. {
  6724. "url": "https://symfony.com/sponsor",
  6725. "type": "custom"
  6726. },
  6727. {
  6728. "url": "https://github.com/fabpot",
  6729. "type": "github"
  6730. },
  6731. {
  6732. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6733. "type": "tidelift"
  6734. }
  6735. ],
  6736. "time": "2024-01-28T15:49:46+00:00"
  6737. },
  6738. {
  6739. "name": "symfony/security-core",
  6740. "version": "v6.4.3",
  6741. "source": {
  6742. "type": "git",
  6743. "url": "https://github.com/symfony/security-core.git",
  6744. "reference": "bb10f630cf5b1819ff80aa3ad57a09c61268fc48"
  6745. },
  6746. "dist": {
  6747. "type": "zip",
  6748. "url": "https://api.github.com/repos/symfony/security-core/zipball/bb10f630cf5b1819ff80aa3ad57a09c61268fc48",
  6749. "reference": "bb10f630cf5b1819ff80aa3ad57a09c61268fc48",
  6750. "shasum": ""
  6751. },
  6752. "require": {
  6753. "php": ">=8.1",
  6754. "symfony/deprecation-contracts": "^2.5|^3",
  6755. "symfony/event-dispatcher-contracts": "^2.5|^3",
  6756. "symfony/password-hasher": "^5.4|^6.0|^7.0",
  6757. "symfony/service-contracts": "^2.5|^3"
  6758. },
  6759. "conflict": {
  6760. "symfony/event-dispatcher": "<5.4",
  6761. "symfony/http-foundation": "<5.4",
  6762. "symfony/ldap": "<5.4",
  6763. "symfony/security-guard": "<5.4",
  6764. "symfony/translation": "<5.4.35|>=6.0,<6.3.12|>=6.4,<6.4.3|>=7.0,<7.0.3",
  6765. "symfony/validator": "<5.4"
  6766. },
  6767. "require-dev": {
  6768. "psr/cache": "^1.0|^2.0|^3.0",
  6769. "psr/container": "^1.1|^2.0",
  6770. "psr/log": "^1|^2|^3",
  6771. "symfony/cache": "^5.4|^6.0|^7.0",
  6772. "symfony/event-dispatcher": "^5.4|^6.0|^7.0",
  6773. "symfony/expression-language": "^5.4|^6.0|^7.0",
  6774. "symfony/http-foundation": "^5.4|^6.0|^7.0",
  6775. "symfony/ldap": "^5.4|^6.0|^7.0",
  6776. "symfony/string": "^5.4|^6.0|^7.0",
  6777. "symfony/translation": "^5.4.35|~6.3.12|^6.4.3|^7.0.3",
  6778. "symfony/validator": "^6.4|^7.0"
  6779. },
  6780. "type": "library",
  6781. "autoload": {
  6782. "psr-4": {
  6783. "Symfony\\Component\\Security\\Core\\": ""
  6784. },
  6785. "exclude-from-classmap": [
  6786. "/Tests/"
  6787. ]
  6788. },
  6789. "notification-url": "https://packagist.org/downloads/",
  6790. "license": [
  6791. "MIT"
  6792. ],
  6793. "authors": [
  6794. {
  6795. "name": "Fabien Potencier",
  6796. "email": "fabien@symfony.com"
  6797. },
  6798. {
  6799. "name": "Symfony Community",
  6800. "homepage": "https://symfony.com/contributors"
  6801. }
  6802. ],
  6803. "description": "Symfony Security Component - Core Library",
  6804. "homepage": "https://symfony.com",
  6805. "support": {
  6806. "source": "https://github.com/symfony/security-core/tree/v6.4.3"
  6807. },
  6808. "funding": [
  6809. {
  6810. "url": "https://symfony.com/sponsor",
  6811. "type": "custom"
  6812. },
  6813. {
  6814. "url": "https://github.com/fabpot",
  6815. "type": "github"
  6816. },
  6817. {
  6818. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6819. "type": "tidelift"
  6820. }
  6821. ],
  6822. "time": "2024-01-23T14:51:35+00:00"
  6823. },
  6824. {
  6825. "name": "symfony/security-csrf",
  6826. "version": "v6.4.3",
  6827. "source": {
  6828. "type": "git",
  6829. "url": "https://github.com/symfony/security-csrf.git",
  6830. "reference": "e10257dd26f965d75e96bbfc27e46efd943f3010"
  6831. },
  6832. "dist": {
  6833. "type": "zip",
  6834. "url": "https://api.github.com/repos/symfony/security-csrf/zipball/e10257dd26f965d75e96bbfc27e46efd943f3010",
  6835. "reference": "e10257dd26f965d75e96bbfc27e46efd943f3010",
  6836. "shasum": ""
  6837. },
  6838. "require": {
  6839. "php": ">=8.1",
  6840. "symfony/security-core": "^5.4|^6.0|^7.0"
  6841. },
  6842. "conflict": {
  6843. "symfony/http-foundation": "<5.4"
  6844. },
  6845. "require-dev": {
  6846. "symfony/http-foundation": "^5.4|^6.0|^7.0"
  6847. },
  6848. "type": "library",
  6849. "autoload": {
  6850. "psr-4": {
  6851. "Symfony\\Component\\Security\\Csrf\\": ""
  6852. },
  6853. "exclude-from-classmap": [
  6854. "/Tests/"
  6855. ]
  6856. },
  6857. "notification-url": "https://packagist.org/downloads/",
  6858. "license": [
  6859. "MIT"
  6860. ],
  6861. "authors": [
  6862. {
  6863. "name": "Fabien Potencier",
  6864. "email": "fabien@symfony.com"
  6865. },
  6866. {
  6867. "name": "Symfony Community",
  6868. "homepage": "https://symfony.com/contributors"
  6869. }
  6870. ],
  6871. "description": "Symfony Security Component - CSRF Library",
  6872. "homepage": "https://symfony.com",
  6873. "support": {
  6874. "source": "https://github.com/symfony/security-csrf/tree/v6.4.3"
  6875. },
  6876. "funding": [
  6877. {
  6878. "url": "https://symfony.com/sponsor",
  6879. "type": "custom"
  6880. },
  6881. {
  6882. "url": "https://github.com/fabpot",
  6883. "type": "github"
  6884. },
  6885. {
  6886. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6887. "type": "tidelift"
  6888. }
  6889. ],
  6890. "time": "2024-01-23T14:51:35+00:00"
  6891. },
  6892. {
  6893. "name": "symfony/security-http",
  6894. "version": "v6.4.3",
  6895. "source": {
  6896. "type": "git",
  6897. "url": "https://github.com/symfony/security-http.git",
  6898. "reference": "d1962d08e02d620dccbaa28192498642500b5043"
  6899. },
  6900. "dist": {
  6901. "type": "zip",
  6902. "url": "https://api.github.com/repos/symfony/security-http/zipball/d1962d08e02d620dccbaa28192498642500b5043",
  6903. "reference": "d1962d08e02d620dccbaa28192498642500b5043",
  6904. "shasum": ""
  6905. },
  6906. "require": {
  6907. "php": ">=8.1",
  6908. "symfony/deprecation-contracts": "^2.5|^3",
  6909. "symfony/http-foundation": "^6.2|^7.0",
  6910. "symfony/http-kernel": "^6.3|^7.0",
  6911. "symfony/polyfill-mbstring": "~1.0",
  6912. "symfony/property-access": "^5.4|^6.0|^7.0",
  6913. "symfony/security-core": "^6.4|^7.0",
  6914. "symfony/service-contracts": "^2.5|^3"
  6915. },
  6916. "conflict": {
  6917. "symfony/clock": "<6.3",
  6918. "symfony/event-dispatcher": "<5.4.9|>=6,<6.0.9",
  6919. "symfony/http-client-contracts": "<3.0",
  6920. "symfony/security-bundle": "<5.4",
  6921. "symfony/security-csrf": "<5.4"
  6922. },
  6923. "require-dev": {
  6924. "psr/log": "^1|^2|^3",
  6925. "symfony/cache": "^5.4|^6.0|^7.0",
  6926. "symfony/clock": "^6.3|^7.0",
  6927. "symfony/expression-language": "^5.4|^6.0|^7.0",
  6928. "symfony/http-client-contracts": "^3.0",
  6929. "symfony/rate-limiter": "^5.4|^6.0|^7.0",
  6930. "symfony/routing": "^5.4|^6.0|^7.0",
  6931. "symfony/security-csrf": "^5.4|^6.0|^7.0",
  6932. "symfony/translation": "^5.4|^6.0|^7.0",
  6933. "web-token/jwt-checker": "^3.1",
  6934. "web-token/jwt-signature-algorithm-ecdsa": "^3.1"
  6935. },
  6936. "type": "library",
  6937. "autoload": {
  6938. "psr-4": {
  6939. "Symfony\\Component\\Security\\Http\\": ""
  6940. },
  6941. "exclude-from-classmap": [
  6942. "/Tests/"
  6943. ]
  6944. },
  6945. "notification-url": "https://packagist.org/downloads/",
  6946. "license": [
  6947. "MIT"
  6948. ],
  6949. "authors": [
  6950. {
  6951. "name": "Fabien Potencier",
  6952. "email": "fabien@symfony.com"
  6953. },
  6954. {
  6955. "name": "Symfony Community",
  6956. "homepage": "https://symfony.com/contributors"
  6957. }
  6958. ],
  6959. "description": "Symfony Security Component - HTTP Integration",
  6960. "homepage": "https://symfony.com",
  6961. "support": {
  6962. "source": "https://github.com/symfony/security-http/tree/v6.4.3"
  6963. },
  6964. "funding": [
  6965. {
  6966. "url": "https://symfony.com/sponsor",
  6967. "type": "custom"
  6968. },
  6969. {
  6970. "url": "https://github.com/fabpot",
  6971. "type": "github"
  6972. },
  6973. {
  6974. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6975. "type": "tidelift"
  6976. }
  6977. ],
  6978. "time": "2024-01-23T14:51:35+00:00"
  6979. },
  6980. {
  6981. "name": "symfony/serializer",
  6982. "version": "v6.4.3",
  6983. "source": {
  6984. "type": "git",
  6985. "url": "https://github.com/symfony/serializer.git",
  6986. "reference": "51a06ee93c4d5ab5b9edaa0635d8b83953e3c14d"
  6987. },
  6988. "dist": {
  6989. "type": "zip",
  6990. "url": "https://api.github.com/repos/symfony/serializer/zipball/51a06ee93c4d5ab5b9edaa0635d8b83953e3c14d",
  6991. "reference": "51a06ee93c4d5ab5b9edaa0635d8b83953e3c14d",
  6992. "shasum": ""
  6993. },
  6994. "require": {
  6995. "php": ">=8.1",
  6996. "symfony/deprecation-contracts": "^2.5|^3",
  6997. "symfony/polyfill-ctype": "~1.8"
  6998. },
  6999. "conflict": {
  7000. "doctrine/annotations": "<1.12",
  7001. "phpdocumentor/reflection-docblock": "<3.2.2",
  7002. "phpdocumentor/type-resolver": "<1.4.0",
  7003. "symfony/dependency-injection": "<5.4",
  7004. "symfony/property-access": "<5.4",
  7005. "symfony/property-info": "<5.4.24|>=6,<6.2.11",
  7006. "symfony/uid": "<5.4",
  7007. "symfony/validator": "<6.4",
  7008. "symfony/yaml": "<5.4"
  7009. },
  7010. "require-dev": {
  7011. "doctrine/annotations": "^1.12|^2",
  7012. "phpdocumentor/reflection-docblock": "^3.2|^4.0|^5.0",
  7013. "seld/jsonlint": "^1.10",
  7014. "symfony/cache": "^5.4|^6.0|^7.0",
  7015. "symfony/config": "^5.4|^6.0|^7.0",
  7016. "symfony/console": "^5.4|^6.0|^7.0",
  7017. "symfony/dependency-injection": "^5.4|^6.0|^7.0",
  7018. "symfony/error-handler": "^5.4|^6.0|^7.0",
  7019. "symfony/filesystem": "^5.4|^6.0|^7.0",
  7020. "symfony/form": "^5.4|^6.0|^7.0",
  7021. "symfony/http-foundation": "^5.4|^6.0|^7.0",
  7022. "symfony/http-kernel": "^5.4|^6.0|^7.0",
  7023. "symfony/messenger": "^5.4|^6.0|^7.0",
  7024. "symfony/mime": "^5.4|^6.0|^7.0",
  7025. "symfony/property-access": "^5.4.26|^6.3|^7.0",
  7026. "symfony/property-info": "^5.4.24|^6.2.11|^7.0",
  7027. "symfony/translation-contracts": "^2.5|^3",
  7028. "symfony/uid": "^5.4|^6.0|^7.0",
  7029. "symfony/validator": "^6.4|^7.0",
  7030. "symfony/var-dumper": "^5.4|^6.0|^7.0",
  7031. "symfony/var-exporter": "^5.4|^6.0|^7.0",
  7032. "symfony/yaml": "^5.4|^6.0|^7.0"
  7033. },
  7034. "type": "library",
  7035. "autoload": {
  7036. "psr-4": {
  7037. "Symfony\\Component\\Serializer\\": ""
  7038. },
  7039. "exclude-from-classmap": [
  7040. "/Tests/"
  7041. ]
  7042. },
  7043. "notification-url": "https://packagist.org/downloads/",
  7044. "license": [
  7045. "MIT"
  7046. ],
  7047. "authors": [
  7048. {
  7049. "name": "Fabien Potencier",
  7050. "email": "fabien@symfony.com"
  7051. },
  7052. {
  7053. "name": "Symfony Community",
  7054. "homepage": "https://symfony.com/contributors"
  7055. }
  7056. ],
  7057. "description": "Handles serializing and deserializing data structures, including object graphs, into array structures or other formats like XML and JSON.",
  7058. "homepage": "https://symfony.com",
  7059. "support": {
  7060. "source": "https://github.com/symfony/serializer/tree/v6.4.3"
  7061. },
  7062. "funding": [
  7063. {
  7064. "url": "https://symfony.com/sponsor",
  7065. "type": "custom"
  7066. },
  7067. {
  7068. "url": "https://github.com/fabpot",
  7069. "type": "github"
  7070. },
  7071. {
  7072. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7073. "type": "tidelift"
  7074. }
  7075. ],
  7076. "time": "2024-01-30T08:32:12+00:00"
  7077. },
  7078. {
  7079. "name": "symfony/service-contracts",
  7080. "version": "v3.4.1",
  7081. "source": {
  7082. "type": "git",
  7083. "url": "https://github.com/symfony/service-contracts.git",
  7084. "reference": "fe07cbc8d837f60caf7018068e350cc5163681a0"
  7085. },
  7086. "dist": {
  7087. "type": "zip",
  7088. "url": "https://api.github.com/repos/symfony/service-contracts/zipball/fe07cbc8d837f60caf7018068e350cc5163681a0",
  7089. "reference": "fe07cbc8d837f60caf7018068e350cc5163681a0",
  7090. "shasum": ""
  7091. },
  7092. "require": {
  7093. "php": ">=8.1",
  7094. "psr/container": "^1.1|^2.0"
  7095. },
  7096. "conflict": {
  7097. "ext-psr": "<1.1|>=2"
  7098. },
  7099. "type": "library",
  7100. "extra": {
  7101. "branch-alias": {
  7102. "dev-main": "3.4-dev"
  7103. },
  7104. "thanks": {
  7105. "name": "symfony/contracts",
  7106. "url": "https://github.com/symfony/contracts"
  7107. }
  7108. },
  7109. "autoload": {
  7110. "psr-4": {
  7111. "Symfony\\Contracts\\Service\\": ""
  7112. },
  7113. "exclude-from-classmap": [
  7114. "/Test/"
  7115. ]
  7116. },
  7117. "notification-url": "https://packagist.org/downloads/",
  7118. "license": [
  7119. "MIT"
  7120. ],
  7121. "authors": [
  7122. {
  7123. "name": "Nicolas Grekas",
  7124. "email": "p@tchwork.com"
  7125. },
  7126. {
  7127. "name": "Symfony Community",
  7128. "homepage": "https://symfony.com/contributors"
  7129. }
  7130. ],
  7131. "description": "Generic abstractions related to writing services",
  7132. "homepage": "https://symfony.com",
  7133. "keywords": [
  7134. "abstractions",
  7135. "contracts",
  7136. "decoupling",
  7137. "interfaces",
  7138. "interoperability",
  7139. "standards"
  7140. ],
  7141. "support": {
  7142. "source": "https://github.com/symfony/service-contracts/tree/v3.4.1"
  7143. },
  7144. "funding": [
  7145. {
  7146. "url": "https://symfony.com/sponsor",
  7147. "type": "custom"
  7148. },
  7149. {
  7150. "url": "https://github.com/fabpot",
  7151. "type": "github"
  7152. },
  7153. {
  7154. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7155. "type": "tidelift"
  7156. }
  7157. ],
  7158. "time": "2023-12-26T14:02:43+00:00"
  7159. },
  7160. {
  7161. "name": "symfony/stopwatch",
  7162. "version": "v6.4.3",
  7163. "source": {
  7164. "type": "git",
  7165. "url": "https://github.com/symfony/stopwatch.git",
  7166. "reference": "416596166641f1f728b0a64f5b9dd07cceb410c1"
  7167. },
  7168. "dist": {
  7169. "type": "zip",
  7170. "url": "https://api.github.com/repos/symfony/stopwatch/zipball/416596166641f1f728b0a64f5b9dd07cceb410c1",
  7171. "reference": "416596166641f1f728b0a64f5b9dd07cceb410c1",
  7172. "shasum": ""
  7173. },
  7174. "require": {
  7175. "php": ">=8.1",
  7176. "symfony/service-contracts": "^2.5|^3"
  7177. },
  7178. "type": "library",
  7179. "autoload": {
  7180. "psr-4": {
  7181. "Symfony\\Component\\Stopwatch\\": ""
  7182. },
  7183. "exclude-from-classmap": [
  7184. "/Tests/"
  7185. ]
  7186. },
  7187. "notification-url": "https://packagist.org/downloads/",
  7188. "license": [
  7189. "MIT"
  7190. ],
  7191. "authors": [
  7192. {
  7193. "name": "Fabien Potencier",
  7194. "email": "fabien@symfony.com"
  7195. },
  7196. {
  7197. "name": "Symfony Community",
  7198. "homepage": "https://symfony.com/contributors"
  7199. }
  7200. ],
  7201. "description": "Provides a way to profile code",
  7202. "homepage": "https://symfony.com",
  7203. "support": {
  7204. "source": "https://github.com/symfony/stopwatch/tree/v6.4.3"
  7205. },
  7206. "funding": [
  7207. {
  7208. "url": "https://symfony.com/sponsor",
  7209. "type": "custom"
  7210. },
  7211. {
  7212. "url": "https://github.com/fabpot",
  7213. "type": "github"
  7214. },
  7215. {
  7216. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7217. "type": "tidelift"
  7218. }
  7219. ],
  7220. "time": "2024-01-23T14:35:58+00:00"
  7221. },
  7222. {
  7223. "name": "symfony/string",
  7224. "version": "v6.4.3",
  7225. "source": {
  7226. "type": "git",
  7227. "url": "https://github.com/symfony/string.git",
  7228. "reference": "7a14736fb179876575464e4658fce0c304e8c15b"
  7229. },
  7230. "dist": {
  7231. "type": "zip",
  7232. "url": "https://api.github.com/repos/symfony/string/zipball/7a14736fb179876575464e4658fce0c304e8c15b",
  7233. "reference": "7a14736fb179876575464e4658fce0c304e8c15b",
  7234. "shasum": ""
  7235. },
  7236. "require": {
  7237. "php": ">=8.1",
  7238. "symfony/polyfill-ctype": "~1.8",
  7239. "symfony/polyfill-intl-grapheme": "~1.0",
  7240. "symfony/polyfill-intl-normalizer": "~1.0",
  7241. "symfony/polyfill-mbstring": "~1.0"
  7242. },
  7243. "conflict": {
  7244. "symfony/translation-contracts": "<2.5"
  7245. },
  7246. "require-dev": {
  7247. "symfony/error-handler": "^5.4|^6.0|^7.0",
  7248. "symfony/http-client": "^5.4|^6.0|^7.0",
  7249. "symfony/intl": "^6.2|^7.0",
  7250. "symfony/translation-contracts": "^2.5|^3.0",
  7251. "symfony/var-exporter": "^5.4|^6.0|^7.0"
  7252. },
  7253. "type": "library",
  7254. "autoload": {
  7255. "files": [
  7256. "Resources/functions.php"
  7257. ],
  7258. "psr-4": {
  7259. "Symfony\\Component\\String\\": ""
  7260. },
  7261. "exclude-from-classmap": [
  7262. "/Tests/"
  7263. ]
  7264. },
  7265. "notification-url": "https://packagist.org/downloads/",
  7266. "license": [
  7267. "MIT"
  7268. ],
  7269. "authors": [
  7270. {
  7271. "name": "Nicolas Grekas",
  7272. "email": "p@tchwork.com"
  7273. },
  7274. {
  7275. "name": "Symfony Community",
  7276. "homepage": "https://symfony.com/contributors"
  7277. }
  7278. ],
  7279. "description": "Provides an object-oriented API to strings and deals with bytes, UTF-8 code points and grapheme clusters in a unified way",
  7280. "homepage": "https://symfony.com",
  7281. "keywords": [
  7282. "grapheme",
  7283. "i18n",
  7284. "string",
  7285. "unicode",
  7286. "utf-8",
  7287. "utf8"
  7288. ],
  7289. "support": {
  7290. "source": "https://github.com/symfony/string/tree/v6.4.3"
  7291. },
  7292. "funding": [
  7293. {
  7294. "url": "https://symfony.com/sponsor",
  7295. "type": "custom"
  7296. },
  7297. {
  7298. "url": "https://github.com/fabpot",
  7299. "type": "github"
  7300. },
  7301. {
  7302. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7303. "type": "tidelift"
  7304. }
  7305. ],
  7306. "time": "2024-01-25T09:26:29+00:00"
  7307. },
  7308. {
  7309. "name": "symfony/translation",
  7310. "version": "v6.4.3",
  7311. "source": {
  7312. "type": "git",
  7313. "url": "https://github.com/symfony/translation.git",
  7314. "reference": "637c51191b6b184184bbf98937702bcf554f7d04"
  7315. },
  7316. "dist": {
  7317. "type": "zip",
  7318. "url": "https://api.github.com/repos/symfony/translation/zipball/637c51191b6b184184bbf98937702bcf554f7d04",
  7319. "reference": "637c51191b6b184184bbf98937702bcf554f7d04",
  7320. "shasum": ""
  7321. },
  7322. "require": {
  7323. "php": ">=8.1",
  7324. "symfony/deprecation-contracts": "^2.5|^3",
  7325. "symfony/polyfill-mbstring": "~1.0",
  7326. "symfony/translation-contracts": "^2.5|^3.0"
  7327. },
  7328. "conflict": {
  7329. "symfony/config": "<5.4",
  7330. "symfony/console": "<5.4",
  7331. "symfony/dependency-injection": "<5.4",
  7332. "symfony/http-client-contracts": "<2.5",
  7333. "symfony/http-kernel": "<5.4",
  7334. "symfony/service-contracts": "<2.5",
  7335. "symfony/twig-bundle": "<5.4",
  7336. "symfony/yaml": "<5.4"
  7337. },
  7338. "provide": {
  7339. "symfony/translation-implementation": "2.3|3.0"
  7340. },
  7341. "require-dev": {
  7342. "nikic/php-parser": "^4.18|^5.0",
  7343. "psr/log": "^1|^2|^3",
  7344. "symfony/config": "^5.4|^6.0|^7.0",
  7345. "symfony/console": "^5.4|^6.0|^7.0",
  7346. "symfony/dependency-injection": "^5.4|^6.0|^7.0",
  7347. "symfony/finder": "^5.4|^6.0|^7.0",
  7348. "symfony/http-client-contracts": "^2.5|^3.0",
  7349. "symfony/http-kernel": "^5.4|^6.0|^7.0",
  7350. "symfony/intl": "^5.4|^6.0|^7.0",
  7351. "symfony/polyfill-intl-icu": "^1.21",
  7352. "symfony/routing": "^5.4|^6.0|^7.0",
  7353. "symfony/service-contracts": "^2.5|^3",
  7354. "symfony/yaml": "^5.4|^6.0|^7.0"
  7355. },
  7356. "type": "library",
  7357. "autoload": {
  7358. "files": [
  7359. "Resources/functions.php"
  7360. ],
  7361. "psr-4": {
  7362. "Symfony\\Component\\Translation\\": ""
  7363. },
  7364. "exclude-from-classmap": [
  7365. "/Tests/"
  7366. ]
  7367. },
  7368. "notification-url": "https://packagist.org/downloads/",
  7369. "license": [
  7370. "MIT"
  7371. ],
  7372. "authors": [
  7373. {
  7374. "name": "Fabien Potencier",
  7375. "email": "fabien@symfony.com"
  7376. },
  7377. {
  7378. "name": "Symfony Community",
  7379. "homepage": "https://symfony.com/contributors"
  7380. }
  7381. ],
  7382. "description": "Provides tools to internationalize your application",
  7383. "homepage": "https://symfony.com",
  7384. "support": {
  7385. "source": "https://github.com/symfony/translation/tree/v6.4.3"
  7386. },
  7387. "funding": [
  7388. {
  7389. "url": "https://symfony.com/sponsor",
  7390. "type": "custom"
  7391. },
  7392. {
  7393. "url": "https://github.com/fabpot",
  7394. "type": "github"
  7395. },
  7396. {
  7397. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7398. "type": "tidelift"
  7399. }
  7400. ],
  7401. "time": "2024-01-29T13:11:52+00:00"
  7402. },
  7403. {
  7404. "name": "symfony/translation-contracts",
  7405. "version": "v3.4.1",
  7406. "source": {
  7407. "type": "git",
  7408. "url": "https://github.com/symfony/translation-contracts.git",
  7409. "reference": "06450585bf65e978026bda220cdebca3f867fde7"
  7410. },
  7411. "dist": {
  7412. "type": "zip",
  7413. "url": "https://api.github.com/repos/symfony/translation-contracts/zipball/06450585bf65e978026bda220cdebca3f867fde7",
  7414. "reference": "06450585bf65e978026bda220cdebca3f867fde7",
  7415. "shasum": ""
  7416. },
  7417. "require": {
  7418. "php": ">=8.1"
  7419. },
  7420. "type": "library",
  7421. "extra": {
  7422. "branch-alias": {
  7423. "dev-main": "3.4-dev"
  7424. },
  7425. "thanks": {
  7426. "name": "symfony/contracts",
  7427. "url": "https://github.com/symfony/contracts"
  7428. }
  7429. },
  7430. "autoload": {
  7431. "psr-4": {
  7432. "Symfony\\Contracts\\Translation\\": ""
  7433. },
  7434. "exclude-from-classmap": [
  7435. "/Test/"
  7436. ]
  7437. },
  7438. "notification-url": "https://packagist.org/downloads/",
  7439. "license": [
  7440. "MIT"
  7441. ],
  7442. "authors": [
  7443. {
  7444. "name": "Nicolas Grekas",
  7445. "email": "p@tchwork.com"
  7446. },
  7447. {
  7448. "name": "Symfony Community",
  7449. "homepage": "https://symfony.com/contributors"
  7450. }
  7451. ],
  7452. "description": "Generic abstractions related to translation",
  7453. "homepage": "https://symfony.com",
  7454. "keywords": [
  7455. "abstractions",
  7456. "contracts",
  7457. "decoupling",
  7458. "interfaces",
  7459. "interoperability",
  7460. "standards"
  7461. ],
  7462. "support": {
  7463. "source": "https://github.com/symfony/translation-contracts/tree/v3.4.1"
  7464. },
  7465. "funding": [
  7466. {
  7467. "url": "https://symfony.com/sponsor",
  7468. "type": "custom"
  7469. },
  7470. {
  7471. "url": "https://github.com/fabpot",
  7472. "type": "github"
  7473. },
  7474. {
  7475. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7476. "type": "tidelift"
  7477. }
  7478. ],
  7479. "time": "2023-12-26T14:02:43+00:00"
  7480. },
  7481. {
  7482. "name": "symfony/twig-bridge",
  7483. "version": "v6.4.3",
  7484. "source": {
  7485. "type": "git",
  7486. "url": "https://github.com/symfony/twig-bridge.git",
  7487. "reference": "bf6b411a5d9a0ce6ea43cca0fcf5f05f5196a957"
  7488. },
  7489. "dist": {
  7490. "type": "zip",
  7491. "url": "https://api.github.com/repos/symfony/twig-bridge/zipball/bf6b411a5d9a0ce6ea43cca0fcf5f05f5196a957",
  7492. "reference": "bf6b411a5d9a0ce6ea43cca0fcf5f05f5196a957",
  7493. "shasum": ""
  7494. },
  7495. "require": {
  7496. "php": ">=8.1",
  7497. "symfony/deprecation-contracts": "^2.5|^3",
  7498. "symfony/translation-contracts": "^2.5|^3",
  7499. "twig/twig": "^2.13|^3.0.4"
  7500. },
  7501. "conflict": {
  7502. "phpdocumentor/reflection-docblock": "<3.2.2",
  7503. "phpdocumentor/type-resolver": "<1.4.0",
  7504. "symfony/console": "<5.4",
  7505. "symfony/form": "<6.3",
  7506. "symfony/http-foundation": "<5.4",
  7507. "symfony/http-kernel": "<6.4",
  7508. "symfony/mime": "<6.2",
  7509. "symfony/serializer": "<6.4",
  7510. "symfony/translation": "<5.4",
  7511. "symfony/workflow": "<5.4"
  7512. },
  7513. "require-dev": {
  7514. "egulias/email-validator": "^2.1.10|^3|^4",
  7515. "league/html-to-markdown": "^5.0",
  7516. "phpdocumentor/reflection-docblock": "^3.0|^4.0|^5.0",
  7517. "symfony/asset": "^5.4|^6.0|^7.0",
  7518. "symfony/asset-mapper": "^6.3|^7.0",
  7519. "symfony/console": "^5.4|^6.0|^7.0",
  7520. "symfony/dependency-injection": "^5.4|^6.0|^7.0",
  7521. "symfony/expression-language": "^5.4|^6.0|^7.0",
  7522. "symfony/finder": "^5.4|^6.0|^7.0",
  7523. "symfony/form": "^6.4|^7.0",
  7524. "symfony/html-sanitizer": "^6.1|^7.0",
  7525. "symfony/http-foundation": "^5.4|^6.0|^7.0",
  7526. "symfony/http-kernel": "^6.4|^7.0",
  7527. "symfony/intl": "^5.4|^6.0|^7.0",
  7528. "symfony/mime": "^6.2|^7.0",
  7529. "symfony/polyfill-intl-icu": "~1.0",
  7530. "symfony/property-info": "^5.4|^6.0|^7.0",
  7531. "symfony/routing": "^5.4|^6.0|^7.0",
  7532. "symfony/security-acl": "^2.8|^3.0",
  7533. "symfony/security-core": "^5.4|^6.0|^7.0",
  7534. "symfony/security-csrf": "^5.4|^6.0|^7.0",
  7535. "symfony/security-http": "^5.4|^6.0|^7.0",
  7536. "symfony/serializer": "^6.4.3|^7.0.3",
  7537. "symfony/stopwatch": "^5.4|^6.0|^7.0",
  7538. "symfony/translation": "^6.1|^7.0",
  7539. "symfony/web-link": "^5.4|^6.0|^7.0",
  7540. "symfony/workflow": "^5.4|^6.0|^7.0",
  7541. "symfony/yaml": "^5.4|^6.0|^7.0",
  7542. "twig/cssinliner-extra": "^2.12|^3",
  7543. "twig/inky-extra": "^2.12|^3",
  7544. "twig/markdown-extra": "^2.12|^3"
  7545. },
  7546. "type": "symfony-bridge",
  7547. "autoload": {
  7548. "psr-4": {
  7549. "Symfony\\Bridge\\Twig\\": ""
  7550. },
  7551. "exclude-from-classmap": [
  7552. "/Tests/"
  7553. ]
  7554. },
  7555. "notification-url": "https://packagist.org/downloads/",
  7556. "license": [
  7557. "MIT"
  7558. ],
  7559. "authors": [
  7560. {
  7561. "name": "Fabien Potencier",
  7562. "email": "fabien@symfony.com"
  7563. },
  7564. {
  7565. "name": "Symfony Community",
  7566. "homepage": "https://symfony.com/contributors"
  7567. }
  7568. ],
  7569. "description": "Provides integration for Twig with various Symfony components",
  7570. "homepage": "https://symfony.com",
  7571. "support": {
  7572. "source": "https://github.com/symfony/twig-bridge/tree/v6.4.3"
  7573. },
  7574. "funding": [
  7575. {
  7576. "url": "https://symfony.com/sponsor",
  7577. "type": "custom"
  7578. },
  7579. {
  7580. "url": "https://github.com/fabpot",
  7581. "type": "github"
  7582. },
  7583. {
  7584. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7585. "type": "tidelift"
  7586. }
  7587. ],
  7588. "time": "2024-01-30T08:32:12+00:00"
  7589. },
  7590. {
  7591. "name": "symfony/twig-bundle",
  7592. "version": "v6.4.3",
  7593. "source": {
  7594. "type": "git",
  7595. "url": "https://github.com/symfony/twig-bundle.git",
  7596. "reference": "2e63e50de2ade430191af0b5d21bfd6526fe3709"
  7597. },
  7598. "dist": {
  7599. "type": "zip",
  7600. "url": "https://api.github.com/repos/symfony/twig-bundle/zipball/2e63e50de2ade430191af0b5d21bfd6526fe3709",
  7601. "reference": "2e63e50de2ade430191af0b5d21bfd6526fe3709",
  7602. "shasum": ""
  7603. },
  7604. "require": {
  7605. "composer-runtime-api": ">=2.1",
  7606. "php": ">=8.1",
  7607. "symfony/config": "^6.1|^7.0",
  7608. "symfony/dependency-injection": "^6.1|^7.0",
  7609. "symfony/http-foundation": "^5.4|^6.0|^7.0",
  7610. "symfony/http-kernel": "^6.2",
  7611. "symfony/twig-bridge": "^6.4",
  7612. "twig/twig": "^2.13|^3.0.4"
  7613. },
  7614. "conflict": {
  7615. "symfony/framework-bundle": "<5.4",
  7616. "symfony/translation": "<5.4"
  7617. },
  7618. "require-dev": {
  7619. "symfony/asset": "^5.4|^6.0|^7.0",
  7620. "symfony/expression-language": "^5.4|^6.0|^7.0",
  7621. "symfony/finder": "^5.4|^6.0|^7.0",
  7622. "symfony/form": "^5.4|^6.0|^7.0",
  7623. "symfony/framework-bundle": "^5.4|^6.0|^7.0",
  7624. "symfony/routing": "^5.4|^6.0|^7.0",
  7625. "symfony/stopwatch": "^5.4|^6.0|^7.0",
  7626. "symfony/translation": "^5.4|^6.0|^7.0",
  7627. "symfony/web-link": "^5.4|^6.0|^7.0",
  7628. "symfony/yaml": "^5.4|^6.0|^7.0"
  7629. },
  7630. "type": "symfony-bundle",
  7631. "autoload": {
  7632. "psr-4": {
  7633. "Symfony\\Bundle\\TwigBundle\\": ""
  7634. },
  7635. "exclude-from-classmap": [
  7636. "/Tests/"
  7637. ]
  7638. },
  7639. "notification-url": "https://packagist.org/downloads/",
  7640. "license": [
  7641. "MIT"
  7642. ],
  7643. "authors": [
  7644. {
  7645. "name": "Fabien Potencier",
  7646. "email": "fabien@symfony.com"
  7647. },
  7648. {
  7649. "name": "Symfony Community",
  7650. "homepage": "https://symfony.com/contributors"
  7651. }
  7652. ],
  7653. "description": "Provides a tight integration of Twig into the Symfony full-stack framework",
  7654. "homepage": "https://symfony.com",
  7655. "support": {
  7656. "source": "https://github.com/symfony/twig-bundle/tree/v6.4.3"
  7657. },
  7658. "funding": [
  7659. {
  7660. "url": "https://symfony.com/sponsor",
  7661. "type": "custom"
  7662. },
  7663. {
  7664. "url": "https://github.com/fabpot",
  7665. "type": "github"
  7666. },
  7667. {
  7668. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7669. "type": "tidelift"
  7670. }
  7671. ],
  7672. "time": "2024-01-23T14:51:35+00:00"
  7673. },
  7674. {
  7675. "name": "symfony/validator",
  7676. "version": "v6.4.3",
  7677. "source": {
  7678. "type": "git",
  7679. "url": "https://github.com/symfony/validator.git",
  7680. "reference": "9c1d8bb4edce5304fcefca7923741085f1ca5b60"
  7681. },
  7682. "dist": {
  7683. "type": "zip",
  7684. "url": "https://api.github.com/repos/symfony/validator/zipball/9c1d8bb4edce5304fcefca7923741085f1ca5b60",
  7685. "reference": "9c1d8bb4edce5304fcefca7923741085f1ca5b60",
  7686. "shasum": ""
  7687. },
  7688. "require": {
  7689. "php": ">=8.1",
  7690. "symfony/deprecation-contracts": "^2.5|^3",
  7691. "symfony/polyfill-ctype": "~1.8",
  7692. "symfony/polyfill-mbstring": "~1.0",
  7693. "symfony/polyfill-php83": "^1.27",
  7694. "symfony/translation-contracts": "^2.5|^3"
  7695. },
  7696. "conflict": {
  7697. "doctrine/annotations": "<1.13",
  7698. "doctrine/lexer": "<1.1",
  7699. "symfony/dependency-injection": "<5.4",
  7700. "symfony/expression-language": "<5.4",
  7701. "symfony/http-kernel": "<5.4",
  7702. "symfony/intl": "<5.4",
  7703. "symfony/property-info": "<5.4",
  7704. "symfony/translation": "<5.4.35|>=6.0,<6.3.12|>=6.4,<6.4.3|>=7.0,<7.0.3",
  7705. "symfony/yaml": "<5.4"
  7706. },
  7707. "require-dev": {
  7708. "doctrine/annotations": "^1.13|^2",
  7709. "egulias/email-validator": "^2.1.10|^3|^4",
  7710. "symfony/cache": "^5.4|^6.0|^7.0",
  7711. "symfony/config": "^5.4|^6.0|^7.0",
  7712. "symfony/console": "^5.4|^6.0|^7.0",
  7713. "symfony/dependency-injection": "^5.4|^6.0|^7.0",
  7714. "symfony/expression-language": "^5.4|^6.0|^7.0",
  7715. "symfony/finder": "^5.4|^6.0|^7.0",
  7716. "symfony/http-client": "^5.4|^6.0|^7.0",
  7717. "symfony/http-foundation": "^5.4|^6.0|^7.0",
  7718. "symfony/http-kernel": "^5.4|^6.0|^7.0",
  7719. "symfony/intl": "^5.4|^6.0|^7.0",
  7720. "symfony/mime": "^5.4|^6.0|^7.0",
  7721. "symfony/property-access": "^5.4|^6.0|^7.0",
  7722. "symfony/property-info": "^5.4|^6.0|^7.0",
  7723. "symfony/translation": "^5.4.35|~6.3.12|^6.4.3|^7.0.3",
  7724. "symfony/yaml": "^5.4|^6.0|^7.0"
  7725. },
  7726. "type": "library",
  7727. "autoload": {
  7728. "psr-4": {
  7729. "Symfony\\Component\\Validator\\": ""
  7730. },
  7731. "exclude-from-classmap": [
  7732. "/Tests/"
  7733. ]
  7734. },
  7735. "notification-url": "https://packagist.org/downloads/",
  7736. "license": [
  7737. "MIT"
  7738. ],
  7739. "authors": [
  7740. {
  7741. "name": "Fabien Potencier",
  7742. "email": "fabien@symfony.com"
  7743. },
  7744. {
  7745. "name": "Symfony Community",
  7746. "homepage": "https://symfony.com/contributors"
  7747. }
  7748. ],
  7749. "description": "Provides tools to validate values",
  7750. "homepage": "https://symfony.com",
  7751. "support": {
  7752. "source": "https://github.com/symfony/validator/tree/v6.4.3"
  7753. },
  7754. "funding": [
  7755. {
  7756. "url": "https://symfony.com/sponsor",
  7757. "type": "custom"
  7758. },
  7759. {
  7760. "url": "https://github.com/fabpot",
  7761. "type": "github"
  7762. },
  7763. {
  7764. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7765. "type": "tidelift"
  7766. }
  7767. ],
  7768. "time": "2024-01-29T15:01:07+00:00"
  7769. },
  7770. {
  7771. "name": "symfony/var-dumper",
  7772. "version": "v6.4.3",
  7773. "source": {
  7774. "type": "git",
  7775. "url": "https://github.com/symfony/var-dumper.git",
  7776. "reference": "0435a08f69125535336177c29d56af3abc1f69da"
  7777. },
  7778. "dist": {
  7779. "type": "zip",
  7780. "url": "https://api.github.com/repos/symfony/var-dumper/zipball/0435a08f69125535336177c29d56af3abc1f69da",
  7781. "reference": "0435a08f69125535336177c29d56af3abc1f69da",
  7782. "shasum": ""
  7783. },
  7784. "require": {
  7785. "php": ">=8.1",
  7786. "symfony/deprecation-contracts": "^2.5|^3",
  7787. "symfony/polyfill-mbstring": "~1.0"
  7788. },
  7789. "conflict": {
  7790. "symfony/console": "<5.4"
  7791. },
  7792. "require-dev": {
  7793. "ext-iconv": "*",
  7794. "symfony/console": "^5.4|^6.0|^7.0",
  7795. "symfony/error-handler": "^6.3|^7.0",
  7796. "symfony/http-kernel": "^5.4|^6.0|^7.0",
  7797. "symfony/process": "^5.4|^6.0|^7.0",
  7798. "symfony/uid": "^5.4|^6.0|^7.0",
  7799. "twig/twig": "^2.13|^3.0.4"
  7800. },
  7801. "bin": [
  7802. "Resources/bin/var-dump-server"
  7803. ],
  7804. "type": "library",
  7805. "autoload": {
  7806. "files": [
  7807. "Resources/functions/dump.php"
  7808. ],
  7809. "psr-4": {
  7810. "Symfony\\Component\\VarDumper\\": ""
  7811. },
  7812. "exclude-from-classmap": [
  7813. "/Tests/"
  7814. ]
  7815. },
  7816. "notification-url": "https://packagist.org/downloads/",
  7817. "license": [
  7818. "MIT"
  7819. ],
  7820. "authors": [
  7821. {
  7822. "name": "Nicolas Grekas",
  7823. "email": "p@tchwork.com"
  7824. },
  7825. {
  7826. "name": "Symfony Community",
  7827. "homepage": "https://symfony.com/contributors"
  7828. }
  7829. ],
  7830. "description": "Provides mechanisms for walking through any arbitrary PHP variable",
  7831. "homepage": "https://symfony.com",
  7832. "keywords": [
  7833. "debug",
  7834. "dump"
  7835. ],
  7836. "support": {
  7837. "source": "https://github.com/symfony/var-dumper/tree/v6.4.3"
  7838. },
  7839. "funding": [
  7840. {
  7841. "url": "https://symfony.com/sponsor",
  7842. "type": "custom"
  7843. },
  7844. {
  7845. "url": "https://github.com/fabpot",
  7846. "type": "github"
  7847. },
  7848. {
  7849. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7850. "type": "tidelift"
  7851. }
  7852. ],
  7853. "time": "2024-01-23T14:53:30+00:00"
  7854. },
  7855. {
  7856. "name": "symfony/var-exporter",
  7857. "version": "v6.4.3",
  7858. "source": {
  7859. "type": "git",
  7860. "url": "https://github.com/symfony/var-exporter.git",
  7861. "reference": "a8c12b5448a5ac685347f5eeb2abf6a571ec16b8"
  7862. },
  7863. "dist": {
  7864. "type": "zip",
  7865. "url": "https://api.github.com/repos/symfony/var-exporter/zipball/a8c12b5448a5ac685347f5eeb2abf6a571ec16b8",
  7866. "reference": "a8c12b5448a5ac685347f5eeb2abf6a571ec16b8",
  7867. "shasum": ""
  7868. },
  7869. "require": {
  7870. "php": ">=8.1",
  7871. "symfony/deprecation-contracts": "^2.5|^3"
  7872. },
  7873. "require-dev": {
  7874. "symfony/var-dumper": "^5.4|^6.0|^7.0"
  7875. },
  7876. "type": "library",
  7877. "autoload": {
  7878. "psr-4": {
  7879. "Symfony\\Component\\VarExporter\\": ""
  7880. },
  7881. "exclude-from-classmap": [
  7882. "/Tests/"
  7883. ]
  7884. },
  7885. "notification-url": "https://packagist.org/downloads/",
  7886. "license": [
  7887. "MIT"
  7888. ],
  7889. "authors": [
  7890. {
  7891. "name": "Nicolas Grekas",
  7892. "email": "p@tchwork.com"
  7893. },
  7894. {
  7895. "name": "Symfony Community",
  7896. "homepage": "https://symfony.com/contributors"
  7897. }
  7898. ],
  7899. "description": "Allows exporting any serializable PHP data structure to plain PHP code",
  7900. "homepage": "https://symfony.com",
  7901. "keywords": [
  7902. "clone",
  7903. "construct",
  7904. "export",
  7905. "hydrate",
  7906. "instantiate",
  7907. "lazy-loading",
  7908. "proxy",
  7909. "serialize"
  7910. ],
  7911. "support": {
  7912. "source": "https://github.com/symfony/var-exporter/tree/v6.4.3"
  7913. },
  7914. "funding": [
  7915. {
  7916. "url": "https://symfony.com/sponsor",
  7917. "type": "custom"
  7918. },
  7919. {
  7920. "url": "https://github.com/fabpot",
  7921. "type": "github"
  7922. },
  7923. {
  7924. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7925. "type": "tidelift"
  7926. }
  7927. ],
  7928. "time": "2024-01-23T14:51:35+00:00"
  7929. },
  7930. {
  7931. "name": "symfony/web-link",
  7932. "version": "v6.4.3",
  7933. "source": {
  7934. "type": "git",
  7935. "url": "https://github.com/symfony/web-link.git",
  7936. "reference": "1722ee157388aaf2f312954addf5b9665e4b7ee9"
  7937. },
  7938. "dist": {
  7939. "type": "zip",
  7940. "url": "https://api.github.com/repos/symfony/web-link/zipball/1722ee157388aaf2f312954addf5b9665e4b7ee9",
  7941. "reference": "1722ee157388aaf2f312954addf5b9665e4b7ee9",
  7942. "shasum": ""
  7943. },
  7944. "require": {
  7945. "php": ">=8.1",
  7946. "psr/link": "^1.1|^2.0"
  7947. },
  7948. "conflict": {
  7949. "symfony/http-kernel": "<5.4"
  7950. },
  7951. "provide": {
  7952. "psr/link-implementation": "1.0|2.0"
  7953. },
  7954. "require-dev": {
  7955. "symfony/http-kernel": "^5.4|^6.0|^7.0"
  7956. },
  7957. "type": "library",
  7958. "autoload": {
  7959. "psr-4": {
  7960. "Symfony\\Component\\WebLink\\": ""
  7961. },
  7962. "exclude-from-classmap": [
  7963. "/Tests/"
  7964. ]
  7965. },
  7966. "notification-url": "https://packagist.org/downloads/",
  7967. "license": [
  7968. "MIT"
  7969. ],
  7970. "authors": [
  7971. {
  7972. "name": "Kévin Dunglas",
  7973. "email": "dunglas@gmail.com"
  7974. },
  7975. {
  7976. "name": "Symfony Community",
  7977. "homepage": "https://symfony.com/contributors"
  7978. }
  7979. ],
  7980. "description": "Manages links between resources",
  7981. "homepage": "https://symfony.com",
  7982. "keywords": [
  7983. "dns-prefetch",
  7984. "http",
  7985. "http2",
  7986. "link",
  7987. "performance",
  7988. "prefetch",
  7989. "preload",
  7990. "prerender",
  7991. "psr13",
  7992. "push"
  7993. ],
  7994. "support": {
  7995. "source": "https://github.com/symfony/web-link/tree/v6.4.3"
  7996. },
  7997. "funding": [
  7998. {
  7999. "url": "https://symfony.com/sponsor",
  8000. "type": "custom"
  8001. },
  8002. {
  8003. "url": "https://github.com/fabpot",
  8004. "type": "github"
  8005. },
  8006. {
  8007. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8008. "type": "tidelift"
  8009. }
  8010. ],
  8011. "time": "2024-01-23T14:51:35+00:00"
  8012. },
  8013. {
  8014. "name": "symfony/webpack-encore-bundle",
  8015. "version": "v1.17.2",
  8016. "source": {
  8017. "type": "git",
  8018. "url": "https://github.com/symfony/webpack-encore-bundle.git",
  8019. "reference": "471ebbc03072dad6e31840dc317bc634a32785f5"
  8020. },
  8021. "dist": {
  8022. "type": "zip",
  8023. "url": "https://api.github.com/repos/symfony/webpack-encore-bundle/zipball/471ebbc03072dad6e31840dc317bc634a32785f5",
  8024. "reference": "471ebbc03072dad6e31840dc317bc634a32785f5",
  8025. "shasum": ""
  8026. },
  8027. "require": {
  8028. "php": ">=7.1.3",
  8029. "symfony/asset": "^4.4 || ^5.0 || ^6.0",
  8030. "symfony/config": "^4.4 || ^5.0 || ^6.0",
  8031. "symfony/dependency-injection": "^4.4 || ^5.0 || ^6.0",
  8032. "symfony/deprecation-contracts": "^2.1 || ^3.0",
  8033. "symfony/http-kernel": "^4.4 || ^5.0 || ^6.0",
  8034. "symfony/polyfill-php80": "^1.25.0",
  8035. "symfony/service-contracts": "^1.0 || ^2.0 || ^3.0"
  8036. },
  8037. "require-dev": {
  8038. "symfony/framework-bundle": "^4.4 || ^5.0 || ^6.0",
  8039. "symfony/phpunit-bridge": "^5.3 || ^6.0",
  8040. "symfony/twig-bundle": "^4.4 || ^5.0 || ^6.0",
  8041. "symfony/web-link": "^4.4 || ^5.0 || ^6.0"
  8042. },
  8043. "type": "symfony-bundle",
  8044. "extra": {
  8045. "thanks": {
  8046. "name": "symfony/webpack-encore",
  8047. "url": "https://github.com/symfony/webpack-encore"
  8048. }
  8049. },
  8050. "autoload": {
  8051. "psr-4": {
  8052. "Symfony\\WebpackEncoreBundle\\": "src"
  8053. }
  8054. },
  8055. "notification-url": "https://packagist.org/downloads/",
  8056. "license": [
  8057. "MIT"
  8058. ],
  8059. "authors": [
  8060. {
  8061. "name": "Symfony Community",
  8062. "homepage": "https://symfony.com/contributors"
  8063. }
  8064. ],
  8065. "description": "Integration with your Symfony app & Webpack Encore!",
  8066. "support": {
  8067. "issues": "https://github.com/symfony/webpack-encore-bundle/issues",
  8068. "source": "https://github.com/symfony/webpack-encore-bundle/tree/v1.17.2"
  8069. },
  8070. "funding": [
  8071. {
  8072. "url": "https://symfony.com/sponsor",
  8073. "type": "custom"
  8074. },
  8075. {
  8076. "url": "https://github.com/fabpot",
  8077. "type": "github"
  8078. },
  8079. {
  8080. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8081. "type": "tidelift"
  8082. }
  8083. ],
  8084. "time": "2023-09-26T14:36:28+00:00"
  8085. },
  8086. {
  8087. "name": "symfony/yaml",
  8088. "version": "v6.4.3",
  8089. "source": {
  8090. "type": "git",
  8091. "url": "https://github.com/symfony/yaml.git",
  8092. "reference": "d75715985f0f94f978e3a8fa42533e10db921b90"
  8093. },
  8094. "dist": {
  8095. "type": "zip",
  8096. "url": "https://api.github.com/repos/symfony/yaml/zipball/d75715985f0f94f978e3a8fa42533e10db921b90",
  8097. "reference": "d75715985f0f94f978e3a8fa42533e10db921b90",
  8098. "shasum": ""
  8099. },
  8100. "require": {
  8101. "php": ">=8.1",
  8102. "symfony/deprecation-contracts": "^2.5|^3",
  8103. "symfony/polyfill-ctype": "^1.8"
  8104. },
  8105. "conflict": {
  8106. "symfony/console": "<5.4"
  8107. },
  8108. "require-dev": {
  8109. "symfony/console": "^5.4|^6.0|^7.0"
  8110. },
  8111. "bin": [
  8112. "Resources/bin/yaml-lint"
  8113. ],
  8114. "type": "library",
  8115. "autoload": {
  8116. "psr-4": {
  8117. "Symfony\\Component\\Yaml\\": ""
  8118. },
  8119. "exclude-from-classmap": [
  8120. "/Tests/"
  8121. ]
  8122. },
  8123. "notification-url": "https://packagist.org/downloads/",
  8124. "license": [
  8125. "MIT"
  8126. ],
  8127. "authors": [
  8128. {
  8129. "name": "Fabien Potencier",
  8130. "email": "fabien@symfony.com"
  8131. },
  8132. {
  8133. "name": "Symfony Community",
  8134. "homepage": "https://symfony.com/contributors"
  8135. }
  8136. ],
  8137. "description": "Loads and dumps YAML files",
  8138. "homepage": "https://symfony.com",
  8139. "support": {
  8140. "source": "https://github.com/symfony/yaml/tree/v6.4.3"
  8141. },
  8142. "funding": [
  8143. {
  8144. "url": "https://symfony.com/sponsor",
  8145. "type": "custom"
  8146. },
  8147. {
  8148. "url": "https://github.com/fabpot",
  8149. "type": "github"
  8150. },
  8151. {
  8152. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8153. "type": "tidelift"
  8154. }
  8155. ],
  8156. "time": "2024-01-23T14:51:35+00:00"
  8157. },
  8158. {
  8159. "name": "twig/extra-bundle",
  8160. "version": "v3.8.0",
  8161. "source": {
  8162. "type": "git",
  8163. "url": "https://github.com/twigphp/twig-extra-bundle.git",
  8164. "reference": "32807183753de0388c8e59f7ac2d13bb47311140"
  8165. },
  8166. "dist": {
  8167. "type": "zip",
  8168. "url": "https://api.github.com/repos/twigphp/twig-extra-bundle/zipball/32807183753de0388c8e59f7ac2d13bb47311140",
  8169. "reference": "32807183753de0388c8e59f7ac2d13bb47311140",
  8170. "shasum": ""
  8171. },
  8172. "require": {
  8173. "php": ">=7.2.5",
  8174. "symfony/framework-bundle": "^5.4|^6.0|^7.0",
  8175. "symfony/twig-bundle": "^5.4|^6.0|^7.0",
  8176. "twig/twig": "^3.0"
  8177. },
  8178. "require-dev": {
  8179. "league/commonmark": "^1.0|^2.0",
  8180. "symfony/phpunit-bridge": "^6.4|^7.0",
  8181. "twig/cache-extra": "^3.0",
  8182. "twig/cssinliner-extra": "^2.12|^3.0",
  8183. "twig/html-extra": "^2.12|^3.0",
  8184. "twig/inky-extra": "^2.12|^3.0",
  8185. "twig/intl-extra": "^2.12|^3.0",
  8186. "twig/markdown-extra": "^2.12|^3.0",
  8187. "twig/string-extra": "^2.12|^3.0"
  8188. },
  8189. "type": "symfony-bundle",
  8190. "autoload": {
  8191. "psr-4": {
  8192. "Twig\\Extra\\TwigExtraBundle\\": ""
  8193. },
  8194. "exclude-from-classmap": [
  8195. "/Tests/"
  8196. ]
  8197. },
  8198. "notification-url": "https://packagist.org/downloads/",
  8199. "license": [
  8200. "MIT"
  8201. ],
  8202. "authors": [
  8203. {
  8204. "name": "Fabien Potencier",
  8205. "email": "fabien@symfony.com",
  8206. "homepage": "http://fabien.potencier.org",
  8207. "role": "Lead Developer"
  8208. }
  8209. ],
  8210. "description": "A Symfony bundle for extra Twig extensions",
  8211. "homepage": "https://twig.symfony.com",
  8212. "keywords": [
  8213. "bundle",
  8214. "extra",
  8215. "twig"
  8216. ],
  8217. "support": {
  8218. "source": "https://github.com/twigphp/twig-extra-bundle/tree/v3.8.0"
  8219. },
  8220. "funding": [
  8221. {
  8222. "url": "https://github.com/fabpot",
  8223. "type": "github"
  8224. },
  8225. {
  8226. "url": "https://tidelift.com/funding/github/packagist/twig/twig",
  8227. "type": "tidelift"
  8228. }
  8229. ],
  8230. "time": "2023-11-21T14:02:01+00:00"
  8231. },
  8232. {
  8233. "name": "twig/markdown-extra",
  8234. "version": "v3.8.0",
  8235. "source": {
  8236. "type": "git",
  8237. "url": "https://github.com/twigphp/markdown-extra.git",
  8238. "reference": "b6e4954ab60030233df5d293886b5404558daac8"
  8239. },
  8240. "dist": {
  8241. "type": "zip",
  8242. "url": "https://api.github.com/repos/twigphp/markdown-extra/zipball/b6e4954ab60030233df5d293886b5404558daac8",
  8243. "reference": "b6e4954ab60030233df5d293886b5404558daac8",
  8244. "shasum": ""
  8245. },
  8246. "require": {
  8247. "php": ">=7.2.5",
  8248. "twig/twig": "^3.0"
  8249. },
  8250. "require-dev": {
  8251. "erusev/parsedown": "^1.7",
  8252. "league/commonmark": "^1.0|^2.0",
  8253. "league/html-to-markdown": "^4.8|^5.0",
  8254. "michelf/php-markdown": "^1.8|^2.0",
  8255. "symfony/phpunit-bridge": "^6.4|^7.0"
  8256. },
  8257. "type": "library",
  8258. "autoload": {
  8259. "psr-4": {
  8260. "Twig\\Extra\\Markdown\\": ""
  8261. },
  8262. "exclude-from-classmap": [
  8263. "/Tests/"
  8264. ]
  8265. },
  8266. "notification-url": "https://packagist.org/downloads/",
  8267. "license": [
  8268. "MIT"
  8269. ],
  8270. "authors": [
  8271. {
  8272. "name": "Fabien Potencier",
  8273. "email": "fabien@symfony.com",
  8274. "homepage": "http://fabien.potencier.org",
  8275. "role": "Lead Developer"
  8276. }
  8277. ],
  8278. "description": "A Twig extension for Markdown",
  8279. "homepage": "https://twig.symfony.com",
  8280. "keywords": [
  8281. "html",
  8282. "markdown",
  8283. "twig"
  8284. ],
  8285. "support": {
  8286. "source": "https://github.com/twigphp/markdown-extra/tree/v3.8.0"
  8287. },
  8288. "funding": [
  8289. {
  8290. "url": "https://github.com/fabpot",
  8291. "type": "github"
  8292. },
  8293. {
  8294. "url": "https://tidelift.com/funding/github/packagist/twig/twig",
  8295. "type": "tidelift"
  8296. }
  8297. ],
  8298. "time": "2023-11-21T14:02:01+00:00"
  8299. },
  8300. {
  8301. "name": "twig/twig",
  8302. "version": "v3.8.0",
  8303. "source": {
  8304. "type": "git",
  8305. "url": "https://github.com/twigphp/Twig.git",
  8306. "reference": "9d15f0ac07f44dc4217883ec6ae02fd555c6f71d"
  8307. },
  8308. "dist": {
  8309. "type": "zip",
  8310. "url": "https://api.github.com/repos/twigphp/Twig/zipball/9d15f0ac07f44dc4217883ec6ae02fd555c6f71d",
  8311. "reference": "9d15f0ac07f44dc4217883ec6ae02fd555c6f71d",
  8312. "shasum": ""
  8313. },
  8314. "require": {
  8315. "php": ">=7.2.5",
  8316. "symfony/polyfill-ctype": "^1.8",
  8317. "symfony/polyfill-mbstring": "^1.3",
  8318. "symfony/polyfill-php80": "^1.22"
  8319. },
  8320. "require-dev": {
  8321. "psr/container": "^1.0|^2.0",
  8322. "symfony/phpunit-bridge": "^5.4.9|^6.3|^7.0"
  8323. },
  8324. "type": "library",
  8325. "autoload": {
  8326. "psr-4": {
  8327. "Twig\\": "src/"
  8328. }
  8329. },
  8330. "notification-url": "https://packagist.org/downloads/",
  8331. "license": [
  8332. "BSD-3-Clause"
  8333. ],
  8334. "authors": [
  8335. {
  8336. "name": "Fabien Potencier",
  8337. "email": "fabien@symfony.com",
  8338. "homepage": "http://fabien.potencier.org",
  8339. "role": "Lead Developer"
  8340. },
  8341. {
  8342. "name": "Twig Team",
  8343. "role": "Contributors"
  8344. },
  8345. {
  8346. "name": "Armin Ronacher",
  8347. "email": "armin.ronacher@active-4.com",
  8348. "role": "Project Founder"
  8349. }
  8350. ],
  8351. "description": "Twig, the flexible, fast, and secure template language for PHP",
  8352. "homepage": "https://twig.symfony.com",
  8353. "keywords": [
  8354. "templating"
  8355. ],
  8356. "support": {
  8357. "issues": "https://github.com/twigphp/Twig/issues",
  8358. "source": "https://github.com/twigphp/Twig/tree/v3.8.0"
  8359. },
  8360. "funding": [
  8361. {
  8362. "url": "https://github.com/fabpot",
  8363. "type": "github"
  8364. },
  8365. {
  8366. "url": "https://tidelift.com/funding/github/packagist/twig/twig",
  8367. "type": "tidelift"
  8368. }
  8369. ],
  8370. "time": "2023-11-21T18:54:41+00:00"
  8371. },
  8372. {
  8373. "name": "webmozart/assert",
  8374. "version": "1.11.0",
  8375. "source": {
  8376. "type": "git",
  8377. "url": "https://github.com/webmozarts/assert.git",
  8378. "reference": "11cb2199493b2f8a3b53e7f19068fc6aac760991"
  8379. },
  8380. "dist": {
  8381. "type": "zip",
  8382. "url": "https://api.github.com/repos/webmozarts/assert/zipball/11cb2199493b2f8a3b53e7f19068fc6aac760991",
  8383. "reference": "11cb2199493b2f8a3b53e7f19068fc6aac760991",
  8384. "shasum": ""
  8385. },
  8386. "require": {
  8387. "ext-ctype": "*",
  8388. "php": "^7.2 || ^8.0"
  8389. },
  8390. "conflict": {
  8391. "phpstan/phpstan": "<0.12.20",
  8392. "vimeo/psalm": "<4.6.1 || 4.6.2"
  8393. },
  8394. "require-dev": {
  8395. "phpunit/phpunit": "^8.5.13"
  8396. },
  8397. "type": "library",
  8398. "extra": {
  8399. "branch-alias": {
  8400. "dev-master": "1.10-dev"
  8401. }
  8402. },
  8403. "autoload": {
  8404. "psr-4": {
  8405. "Webmozart\\Assert\\": "src/"
  8406. }
  8407. },
  8408. "notification-url": "https://packagist.org/downloads/",
  8409. "license": [
  8410. "MIT"
  8411. ],
  8412. "authors": [
  8413. {
  8414. "name": "Bernhard Schussek",
  8415. "email": "bschussek@gmail.com"
  8416. }
  8417. ],
  8418. "description": "Assertions to validate method input/output with nice error messages.",
  8419. "keywords": [
  8420. "assert",
  8421. "check",
  8422. "validate"
  8423. ],
  8424. "support": {
  8425. "issues": "https://github.com/webmozarts/assert/issues",
  8426. "source": "https://github.com/webmozarts/assert/tree/1.11.0"
  8427. },
  8428. "time": "2022-06-03T18:03:27+00:00"
  8429. }
  8430. ],
  8431. "packages-dev": [
  8432. {
  8433. "name": "myclabs/deep-copy",
  8434. "version": "1.11.1",
  8435. "source": {
  8436. "type": "git",
  8437. "url": "https://github.com/myclabs/DeepCopy.git",
  8438. "reference": "7284c22080590fb39f2ffa3e9057f10a4ddd0e0c"
  8439. },
  8440. "dist": {
  8441. "type": "zip",
  8442. "url": "https://api.github.com/repos/myclabs/DeepCopy/zipball/7284c22080590fb39f2ffa3e9057f10a4ddd0e0c",
  8443. "reference": "7284c22080590fb39f2ffa3e9057f10a4ddd0e0c",
  8444. "shasum": ""
  8445. },
  8446. "require": {
  8447. "php": "^7.1 || ^8.0"
  8448. },
  8449. "conflict": {
  8450. "doctrine/collections": "<1.6.8",
  8451. "doctrine/common": "<2.13.3 || >=3,<3.2.2"
  8452. },
  8453. "require-dev": {
  8454. "doctrine/collections": "^1.6.8",
  8455. "doctrine/common": "^2.13.3 || ^3.2.2",
  8456. "phpunit/phpunit": "^7.5.20 || ^8.5.23 || ^9.5.13"
  8457. },
  8458. "type": "library",
  8459. "autoload": {
  8460. "files": [
  8461. "src/DeepCopy/deep_copy.php"
  8462. ],
  8463. "psr-4": {
  8464. "DeepCopy\\": "src/DeepCopy/"
  8465. }
  8466. },
  8467. "notification-url": "https://packagist.org/downloads/",
  8468. "license": [
  8469. "MIT"
  8470. ],
  8471. "description": "Create deep copies (clones) of your objects",
  8472. "keywords": [
  8473. "clone",
  8474. "copy",
  8475. "duplicate",
  8476. "object",
  8477. "object graph"
  8478. ],
  8479. "support": {
  8480. "issues": "https://github.com/myclabs/DeepCopy/issues",
  8481. "source": "https://github.com/myclabs/DeepCopy/tree/1.11.1"
  8482. },
  8483. "funding": [
  8484. {
  8485. "url": "https://tidelift.com/funding/github/packagist/myclabs/deep-copy",
  8486. "type": "tidelift"
  8487. }
  8488. ],
  8489. "time": "2023-03-08T13:26:56+00:00"
  8490. },
  8491. {
  8492. "name": "nikic/php-parser",
  8493. "version": "v5.0.1",
  8494. "source": {
  8495. "type": "git",
  8496. "url": "https://github.com/nikic/PHP-Parser.git",
  8497. "reference": "2218c2252c874a4624ab2f613d86ac32d227bc69"
  8498. },
  8499. "dist": {
  8500. "type": "zip",
  8501. "url": "https://api.github.com/repos/nikic/PHP-Parser/zipball/2218c2252c874a4624ab2f613d86ac32d227bc69",
  8502. "reference": "2218c2252c874a4624ab2f613d86ac32d227bc69",
  8503. "shasum": ""
  8504. },
  8505. "require": {
  8506. "ext-ctype": "*",
  8507. "ext-json": "*",
  8508. "ext-tokenizer": "*",
  8509. "php": ">=7.4"
  8510. },
  8511. "require-dev": {
  8512. "ircmaxell/php-yacc": "^0.0.7",
  8513. "phpunit/phpunit": "^7.0 || ^8.0 || ^9.0"
  8514. },
  8515. "bin": [
  8516. "bin/php-parse"
  8517. ],
  8518. "type": "library",
  8519. "extra": {
  8520. "branch-alias": {
  8521. "dev-master": "5.0-dev"
  8522. }
  8523. },
  8524. "autoload": {
  8525. "psr-4": {
  8526. "PhpParser\\": "lib/PhpParser"
  8527. }
  8528. },
  8529. "notification-url": "https://packagist.org/downloads/",
  8530. "license": [
  8531. "BSD-3-Clause"
  8532. ],
  8533. "authors": [
  8534. {
  8535. "name": "Nikita Popov"
  8536. }
  8537. ],
  8538. "description": "A PHP parser written in PHP",
  8539. "keywords": [
  8540. "parser",
  8541. "php"
  8542. ],
  8543. "support": {
  8544. "issues": "https://github.com/nikic/PHP-Parser/issues",
  8545. "source": "https://github.com/nikic/PHP-Parser/tree/v5.0.1"
  8546. },
  8547. "time": "2024-02-21T19:24:10+00:00"
  8548. },
  8549. {
  8550. "name": "phar-io/manifest",
  8551. "version": "2.0.3",
  8552. "source": {
  8553. "type": "git",
  8554. "url": "https://github.com/phar-io/manifest.git",
  8555. "reference": "97803eca37d319dfa7826cc2437fc020857acb53"
  8556. },
  8557. "dist": {
  8558. "type": "zip",
  8559. "url": "https://api.github.com/repos/phar-io/manifest/zipball/97803eca37d319dfa7826cc2437fc020857acb53",
  8560. "reference": "97803eca37d319dfa7826cc2437fc020857acb53",
  8561. "shasum": ""
  8562. },
  8563. "require": {
  8564. "ext-dom": "*",
  8565. "ext-phar": "*",
  8566. "ext-xmlwriter": "*",
  8567. "phar-io/version": "^3.0.1",
  8568. "php": "^7.2 || ^8.0"
  8569. },
  8570. "type": "library",
  8571. "extra": {
  8572. "branch-alias": {
  8573. "dev-master": "2.0.x-dev"
  8574. }
  8575. },
  8576. "autoload": {
  8577. "classmap": [
  8578. "src/"
  8579. ]
  8580. },
  8581. "notification-url": "https://packagist.org/downloads/",
  8582. "license": [
  8583. "BSD-3-Clause"
  8584. ],
  8585. "authors": [
  8586. {
  8587. "name": "Arne Blankerts",
  8588. "email": "arne@blankerts.de",
  8589. "role": "Developer"
  8590. },
  8591. {
  8592. "name": "Sebastian Heuer",
  8593. "email": "sebastian@phpeople.de",
  8594. "role": "Developer"
  8595. },
  8596. {
  8597. "name": "Sebastian Bergmann",
  8598. "email": "sebastian@phpunit.de",
  8599. "role": "Developer"
  8600. }
  8601. ],
  8602. "description": "Component for reading phar.io manifest information from a PHP Archive (PHAR)",
  8603. "support": {
  8604. "issues": "https://github.com/phar-io/manifest/issues",
  8605. "source": "https://github.com/phar-io/manifest/tree/2.0.3"
  8606. },
  8607. "time": "2021-07-20T11:28:43+00:00"
  8608. },
  8609. {
  8610. "name": "phar-io/version",
  8611. "version": "3.2.1",
  8612. "source": {
  8613. "type": "git",
  8614. "url": "https://github.com/phar-io/version.git",
  8615. "reference": "4f7fd7836c6f332bb2933569e566a0d6c4cbed74"
  8616. },
  8617. "dist": {
  8618. "type": "zip",
  8619. "url": "https://api.github.com/repos/phar-io/version/zipball/4f7fd7836c6f332bb2933569e566a0d6c4cbed74",
  8620. "reference": "4f7fd7836c6f332bb2933569e566a0d6c4cbed74",
  8621. "shasum": ""
  8622. },
  8623. "require": {
  8624. "php": "^7.2 || ^8.0"
  8625. },
  8626. "type": "library",
  8627. "autoload": {
  8628. "classmap": [
  8629. "src/"
  8630. ]
  8631. },
  8632. "notification-url": "https://packagist.org/downloads/",
  8633. "license": [
  8634. "BSD-3-Clause"
  8635. ],
  8636. "authors": [
  8637. {
  8638. "name": "Arne Blankerts",
  8639. "email": "arne@blankerts.de",
  8640. "role": "Developer"
  8641. },
  8642. {
  8643. "name": "Sebastian Heuer",
  8644. "email": "sebastian@phpeople.de",
  8645. "role": "Developer"
  8646. },
  8647. {
  8648. "name": "Sebastian Bergmann",
  8649. "email": "sebastian@phpunit.de",
  8650. "role": "Developer"
  8651. }
  8652. ],
  8653. "description": "Library for handling version information and constraints",
  8654. "support": {
  8655. "issues": "https://github.com/phar-io/version/issues",
  8656. "source": "https://github.com/phar-io/version/tree/3.2.1"
  8657. },
  8658. "time": "2022-02-21T01:04:05+00:00"
  8659. },
  8660. {
  8661. "name": "phpunit/php-code-coverage",
  8662. "version": "9.2.30",
  8663. "source": {
  8664. "type": "git",
  8665. "url": "https://github.com/sebastianbergmann/php-code-coverage.git",
  8666. "reference": "ca2bd87d2f9215904682a9cb9bb37dda98e76089"
  8667. },
  8668. "dist": {
  8669. "type": "zip",
  8670. "url": "https://api.github.com/repos/sebastianbergmann/php-code-coverage/zipball/ca2bd87d2f9215904682a9cb9bb37dda98e76089",
  8671. "reference": "ca2bd87d2f9215904682a9cb9bb37dda98e76089",
  8672. "shasum": ""
  8673. },
  8674. "require": {
  8675. "ext-dom": "*",
  8676. "ext-libxml": "*",
  8677. "ext-xmlwriter": "*",
  8678. "nikic/php-parser": "^4.18 || ^5.0",
  8679. "php": ">=7.3",
  8680. "phpunit/php-file-iterator": "^3.0.3",
  8681. "phpunit/php-text-template": "^2.0.2",
  8682. "sebastian/code-unit-reverse-lookup": "^2.0.2",
  8683. "sebastian/complexity": "^2.0",
  8684. "sebastian/environment": "^5.1.2",
  8685. "sebastian/lines-of-code": "^1.0.3",
  8686. "sebastian/version": "^3.0.1",
  8687. "theseer/tokenizer": "^1.2.0"
  8688. },
  8689. "require-dev": {
  8690. "phpunit/phpunit": "^9.3"
  8691. },
  8692. "suggest": {
  8693. "ext-pcov": "PHP extension that provides line coverage",
  8694. "ext-xdebug": "PHP extension that provides line coverage as well as branch and path coverage"
  8695. },
  8696. "type": "library",
  8697. "extra": {
  8698. "branch-alias": {
  8699. "dev-master": "9.2-dev"
  8700. }
  8701. },
  8702. "autoload": {
  8703. "classmap": [
  8704. "src/"
  8705. ]
  8706. },
  8707. "notification-url": "https://packagist.org/downloads/",
  8708. "license": [
  8709. "BSD-3-Clause"
  8710. ],
  8711. "authors": [
  8712. {
  8713. "name": "Sebastian Bergmann",
  8714. "email": "sebastian@phpunit.de",
  8715. "role": "lead"
  8716. }
  8717. ],
  8718. "description": "Library that provides collection, processing, and rendering functionality for PHP code coverage information.",
  8719. "homepage": "https://github.com/sebastianbergmann/php-code-coverage",
  8720. "keywords": [
  8721. "coverage",
  8722. "testing",
  8723. "xunit"
  8724. ],
  8725. "support": {
  8726. "issues": "https://github.com/sebastianbergmann/php-code-coverage/issues",
  8727. "security": "https://github.com/sebastianbergmann/php-code-coverage/security/policy",
  8728. "source": "https://github.com/sebastianbergmann/php-code-coverage/tree/9.2.30"
  8729. },
  8730. "funding": [
  8731. {
  8732. "url": "https://github.com/sebastianbergmann",
  8733. "type": "github"
  8734. }
  8735. ],
  8736. "time": "2023-12-22T06:47:57+00:00"
  8737. },
  8738. {
  8739. "name": "phpunit/php-file-iterator",
  8740. "version": "3.0.6",
  8741. "source": {
  8742. "type": "git",
  8743. "url": "https://github.com/sebastianbergmann/php-file-iterator.git",
  8744. "reference": "cf1c2e7c203ac650e352f4cc675a7021e7d1b3cf"
  8745. },
  8746. "dist": {
  8747. "type": "zip",
  8748. "url": "https://api.github.com/repos/sebastianbergmann/php-file-iterator/zipball/cf1c2e7c203ac650e352f4cc675a7021e7d1b3cf",
  8749. "reference": "cf1c2e7c203ac650e352f4cc675a7021e7d1b3cf",
  8750. "shasum": ""
  8751. },
  8752. "require": {
  8753. "php": ">=7.3"
  8754. },
  8755. "require-dev": {
  8756. "phpunit/phpunit": "^9.3"
  8757. },
  8758. "type": "library",
  8759. "extra": {
  8760. "branch-alias": {
  8761. "dev-master": "3.0-dev"
  8762. }
  8763. },
  8764. "autoload": {
  8765. "classmap": [
  8766. "src/"
  8767. ]
  8768. },
  8769. "notification-url": "https://packagist.org/downloads/",
  8770. "license": [
  8771. "BSD-3-Clause"
  8772. ],
  8773. "authors": [
  8774. {
  8775. "name": "Sebastian Bergmann",
  8776. "email": "sebastian@phpunit.de",
  8777. "role": "lead"
  8778. }
  8779. ],
  8780. "description": "FilterIterator implementation that filters files based on a list of suffixes.",
  8781. "homepage": "https://github.com/sebastianbergmann/php-file-iterator/",
  8782. "keywords": [
  8783. "filesystem",
  8784. "iterator"
  8785. ],
  8786. "support": {
  8787. "issues": "https://github.com/sebastianbergmann/php-file-iterator/issues",
  8788. "source": "https://github.com/sebastianbergmann/php-file-iterator/tree/3.0.6"
  8789. },
  8790. "funding": [
  8791. {
  8792. "url": "https://github.com/sebastianbergmann",
  8793. "type": "github"
  8794. }
  8795. ],
  8796. "time": "2021-12-02T12:48:52+00:00"
  8797. },
  8798. {
  8799. "name": "phpunit/php-invoker",
  8800. "version": "3.1.1",
  8801. "source": {
  8802. "type": "git",
  8803. "url": "https://github.com/sebastianbergmann/php-invoker.git",
  8804. "reference": "5a10147d0aaf65b58940a0b72f71c9ac0423cc67"
  8805. },
  8806. "dist": {
  8807. "type": "zip",
  8808. "url": "https://api.github.com/repos/sebastianbergmann/php-invoker/zipball/5a10147d0aaf65b58940a0b72f71c9ac0423cc67",
  8809. "reference": "5a10147d0aaf65b58940a0b72f71c9ac0423cc67",
  8810. "shasum": ""
  8811. },
  8812. "require": {
  8813. "php": ">=7.3"
  8814. },
  8815. "require-dev": {
  8816. "ext-pcntl": "*",
  8817. "phpunit/phpunit": "^9.3"
  8818. },
  8819. "suggest": {
  8820. "ext-pcntl": "*"
  8821. },
  8822. "type": "library",
  8823. "extra": {
  8824. "branch-alias": {
  8825. "dev-master": "3.1-dev"
  8826. }
  8827. },
  8828. "autoload": {
  8829. "classmap": [
  8830. "src/"
  8831. ]
  8832. },
  8833. "notification-url": "https://packagist.org/downloads/",
  8834. "license": [
  8835. "BSD-3-Clause"
  8836. ],
  8837. "authors": [
  8838. {
  8839. "name": "Sebastian Bergmann",
  8840. "email": "sebastian@phpunit.de",
  8841. "role": "lead"
  8842. }
  8843. ],
  8844. "description": "Invoke callables with a timeout",
  8845. "homepage": "https://github.com/sebastianbergmann/php-invoker/",
  8846. "keywords": [
  8847. "process"
  8848. ],
  8849. "support": {
  8850. "issues": "https://github.com/sebastianbergmann/php-invoker/issues",
  8851. "source": "https://github.com/sebastianbergmann/php-invoker/tree/3.1.1"
  8852. },
  8853. "funding": [
  8854. {
  8855. "url": "https://github.com/sebastianbergmann",
  8856. "type": "github"
  8857. }
  8858. ],
  8859. "time": "2020-09-28T05:58:55+00:00"
  8860. },
  8861. {
  8862. "name": "phpunit/php-text-template",
  8863. "version": "2.0.4",
  8864. "source": {
  8865. "type": "git",
  8866. "url": "https://github.com/sebastianbergmann/php-text-template.git",
  8867. "reference": "5da5f67fc95621df9ff4c4e5a84d6a8a2acf7c28"
  8868. },
  8869. "dist": {
  8870. "type": "zip",
  8871. "url": "https://api.github.com/repos/sebastianbergmann/php-text-template/zipball/5da5f67fc95621df9ff4c4e5a84d6a8a2acf7c28",
  8872. "reference": "5da5f67fc95621df9ff4c4e5a84d6a8a2acf7c28",
  8873. "shasum": ""
  8874. },
  8875. "require": {
  8876. "php": ">=7.3"
  8877. },
  8878. "require-dev": {
  8879. "phpunit/phpunit": "^9.3"
  8880. },
  8881. "type": "library",
  8882. "extra": {
  8883. "branch-alias": {
  8884. "dev-master": "2.0-dev"
  8885. }
  8886. },
  8887. "autoload": {
  8888. "classmap": [
  8889. "src/"
  8890. ]
  8891. },
  8892. "notification-url": "https://packagist.org/downloads/",
  8893. "license": [
  8894. "BSD-3-Clause"
  8895. ],
  8896. "authors": [
  8897. {
  8898. "name": "Sebastian Bergmann",
  8899. "email": "sebastian@phpunit.de",
  8900. "role": "lead"
  8901. }
  8902. ],
  8903. "description": "Simple template engine.",
  8904. "homepage": "https://github.com/sebastianbergmann/php-text-template/",
  8905. "keywords": [
  8906. "template"
  8907. ],
  8908. "support": {
  8909. "issues": "https://github.com/sebastianbergmann/php-text-template/issues",
  8910. "source": "https://github.com/sebastianbergmann/php-text-template/tree/2.0.4"
  8911. },
  8912. "funding": [
  8913. {
  8914. "url": "https://github.com/sebastianbergmann",
  8915. "type": "github"
  8916. }
  8917. ],
  8918. "time": "2020-10-26T05:33:50+00:00"
  8919. },
  8920. {
  8921. "name": "phpunit/php-timer",
  8922. "version": "5.0.3",
  8923. "source": {
  8924. "type": "git",
  8925. "url": "https://github.com/sebastianbergmann/php-timer.git",
  8926. "reference": "5a63ce20ed1b5bf577850e2c4e87f4aa902afbd2"
  8927. },
  8928. "dist": {
  8929. "type": "zip",
  8930. "url": "https://api.github.com/repos/sebastianbergmann/php-timer/zipball/5a63ce20ed1b5bf577850e2c4e87f4aa902afbd2",
  8931. "reference": "5a63ce20ed1b5bf577850e2c4e87f4aa902afbd2",
  8932. "shasum": ""
  8933. },
  8934. "require": {
  8935. "php": ">=7.3"
  8936. },
  8937. "require-dev": {
  8938. "phpunit/phpunit": "^9.3"
  8939. },
  8940. "type": "library",
  8941. "extra": {
  8942. "branch-alias": {
  8943. "dev-master": "5.0-dev"
  8944. }
  8945. },
  8946. "autoload": {
  8947. "classmap": [
  8948. "src/"
  8949. ]
  8950. },
  8951. "notification-url": "https://packagist.org/downloads/",
  8952. "license": [
  8953. "BSD-3-Clause"
  8954. ],
  8955. "authors": [
  8956. {
  8957. "name": "Sebastian Bergmann",
  8958. "email": "sebastian@phpunit.de",
  8959. "role": "lead"
  8960. }
  8961. ],
  8962. "description": "Utility class for timing",
  8963. "homepage": "https://github.com/sebastianbergmann/php-timer/",
  8964. "keywords": [
  8965. "timer"
  8966. ],
  8967. "support": {
  8968. "issues": "https://github.com/sebastianbergmann/php-timer/issues",
  8969. "source": "https://github.com/sebastianbergmann/php-timer/tree/5.0.3"
  8970. },
  8971. "funding": [
  8972. {
  8973. "url": "https://github.com/sebastianbergmann",
  8974. "type": "github"
  8975. }
  8976. ],
  8977. "time": "2020-10-26T13:16:10+00:00"
  8978. },
  8979. {
  8980. "name": "phpunit/phpunit",
  8981. "version": "9.6.16",
  8982. "source": {
  8983. "type": "git",
  8984. "url": "https://github.com/sebastianbergmann/phpunit.git",
  8985. "reference": "3767b2c56ce02d01e3491046f33466a1ae60a37f"
  8986. },
  8987. "dist": {
  8988. "type": "zip",
  8989. "url": "https://api.github.com/repos/sebastianbergmann/phpunit/zipball/3767b2c56ce02d01e3491046f33466a1ae60a37f",
  8990. "reference": "3767b2c56ce02d01e3491046f33466a1ae60a37f",
  8991. "shasum": ""
  8992. },
  8993. "require": {
  8994. "doctrine/instantiator": "^1.3.1 || ^2",
  8995. "ext-dom": "*",
  8996. "ext-json": "*",
  8997. "ext-libxml": "*",
  8998. "ext-mbstring": "*",
  8999. "ext-xml": "*",
  9000. "ext-xmlwriter": "*",
  9001. "myclabs/deep-copy": "^1.10.1",
  9002. "phar-io/manifest": "^2.0.3",
  9003. "phar-io/version": "^3.0.2",
  9004. "php": ">=7.3",
  9005. "phpunit/php-code-coverage": "^9.2.28",
  9006. "phpunit/php-file-iterator": "^3.0.5",
  9007. "phpunit/php-invoker": "^3.1.1",
  9008. "phpunit/php-text-template": "^2.0.3",
  9009. "phpunit/php-timer": "^5.0.2",
  9010. "sebastian/cli-parser": "^1.0.1",
  9011. "sebastian/code-unit": "^1.0.6",
  9012. "sebastian/comparator": "^4.0.8",
  9013. "sebastian/diff": "^4.0.3",
  9014. "sebastian/environment": "^5.1.3",
  9015. "sebastian/exporter": "^4.0.5",
  9016. "sebastian/global-state": "^5.0.1",
  9017. "sebastian/object-enumerator": "^4.0.3",
  9018. "sebastian/resource-operations": "^3.0.3",
  9019. "sebastian/type": "^3.2",
  9020. "sebastian/version": "^3.0.2"
  9021. },
  9022. "suggest": {
  9023. "ext-soap": "To be able to generate mocks based on WSDL files",
  9024. "ext-xdebug": "PHP extension that provides line coverage as well as branch and path coverage"
  9025. },
  9026. "bin": [
  9027. "phpunit"
  9028. ],
  9029. "type": "library",
  9030. "extra": {
  9031. "branch-alias": {
  9032. "dev-master": "9.6-dev"
  9033. }
  9034. },
  9035. "autoload": {
  9036. "files": [
  9037. "src/Framework/Assert/Functions.php"
  9038. ],
  9039. "classmap": [
  9040. "src/"
  9041. ]
  9042. },
  9043. "notification-url": "https://packagist.org/downloads/",
  9044. "license": [
  9045. "BSD-3-Clause"
  9046. ],
  9047. "authors": [
  9048. {
  9049. "name": "Sebastian Bergmann",
  9050. "email": "sebastian@phpunit.de",
  9051. "role": "lead"
  9052. }
  9053. ],
  9054. "description": "The PHP Unit Testing framework.",
  9055. "homepage": "https://phpunit.de/",
  9056. "keywords": [
  9057. "phpunit",
  9058. "testing",
  9059. "xunit"
  9060. ],
  9061. "support": {
  9062. "issues": "https://github.com/sebastianbergmann/phpunit/issues",
  9063. "security": "https://github.com/sebastianbergmann/phpunit/security/policy",
  9064. "source": "https://github.com/sebastianbergmann/phpunit/tree/9.6.16"
  9065. },
  9066. "funding": [
  9067. {
  9068. "url": "https://phpunit.de/sponsors.html",
  9069. "type": "custom"
  9070. },
  9071. {
  9072. "url": "https://github.com/sebastianbergmann",
  9073. "type": "github"
  9074. },
  9075. {
  9076. "url": "https://tidelift.com/funding/github/packagist/phpunit/phpunit",
  9077. "type": "tidelift"
  9078. }
  9079. ],
  9080. "time": "2024-01-19T07:03:14+00:00"
  9081. },
  9082. {
  9083. "name": "sebastian/cli-parser",
  9084. "version": "1.0.1",
  9085. "source": {
  9086. "type": "git",
  9087. "url": "https://github.com/sebastianbergmann/cli-parser.git",
  9088. "reference": "442e7c7e687e42adc03470c7b668bc4b2402c0b2"
  9089. },
  9090. "dist": {
  9091. "type": "zip",
  9092. "url": "https://api.github.com/repos/sebastianbergmann/cli-parser/zipball/442e7c7e687e42adc03470c7b668bc4b2402c0b2",
  9093. "reference": "442e7c7e687e42adc03470c7b668bc4b2402c0b2",
  9094. "shasum": ""
  9095. },
  9096. "require": {
  9097. "php": ">=7.3"
  9098. },
  9099. "require-dev": {
  9100. "phpunit/phpunit": "^9.3"
  9101. },
  9102. "type": "library",
  9103. "extra": {
  9104. "branch-alias": {
  9105. "dev-master": "1.0-dev"
  9106. }
  9107. },
  9108. "autoload": {
  9109. "classmap": [
  9110. "src/"
  9111. ]
  9112. },
  9113. "notification-url": "https://packagist.org/downloads/",
  9114. "license": [
  9115. "BSD-3-Clause"
  9116. ],
  9117. "authors": [
  9118. {
  9119. "name": "Sebastian Bergmann",
  9120. "email": "sebastian@phpunit.de",
  9121. "role": "lead"
  9122. }
  9123. ],
  9124. "description": "Library for parsing CLI options",
  9125. "homepage": "https://github.com/sebastianbergmann/cli-parser",
  9126. "support": {
  9127. "issues": "https://github.com/sebastianbergmann/cli-parser/issues",
  9128. "source": "https://github.com/sebastianbergmann/cli-parser/tree/1.0.1"
  9129. },
  9130. "funding": [
  9131. {
  9132. "url": "https://github.com/sebastianbergmann",
  9133. "type": "github"
  9134. }
  9135. ],
  9136. "time": "2020-09-28T06:08:49+00:00"
  9137. },
  9138. {
  9139. "name": "sebastian/code-unit",
  9140. "version": "1.0.8",
  9141. "source": {
  9142. "type": "git",
  9143. "url": "https://github.com/sebastianbergmann/code-unit.git",
  9144. "reference": "1fc9f64c0927627ef78ba436c9b17d967e68e120"
  9145. },
  9146. "dist": {
  9147. "type": "zip",
  9148. "url": "https://api.github.com/repos/sebastianbergmann/code-unit/zipball/1fc9f64c0927627ef78ba436c9b17d967e68e120",
  9149. "reference": "1fc9f64c0927627ef78ba436c9b17d967e68e120",
  9150. "shasum": ""
  9151. },
  9152. "require": {
  9153. "php": ">=7.3"
  9154. },
  9155. "require-dev": {
  9156. "phpunit/phpunit": "^9.3"
  9157. },
  9158. "type": "library",
  9159. "extra": {
  9160. "branch-alias": {
  9161. "dev-master": "1.0-dev"
  9162. }
  9163. },
  9164. "autoload": {
  9165. "classmap": [
  9166. "src/"
  9167. ]
  9168. },
  9169. "notification-url": "https://packagist.org/downloads/",
  9170. "license": [
  9171. "BSD-3-Clause"
  9172. ],
  9173. "authors": [
  9174. {
  9175. "name": "Sebastian Bergmann",
  9176. "email": "sebastian@phpunit.de",
  9177. "role": "lead"
  9178. }
  9179. ],
  9180. "description": "Collection of value objects that represent the PHP code units",
  9181. "homepage": "https://github.com/sebastianbergmann/code-unit",
  9182. "support": {
  9183. "issues": "https://github.com/sebastianbergmann/code-unit/issues",
  9184. "source": "https://github.com/sebastianbergmann/code-unit/tree/1.0.8"
  9185. },
  9186. "funding": [
  9187. {
  9188. "url": "https://github.com/sebastianbergmann",
  9189. "type": "github"
  9190. }
  9191. ],
  9192. "time": "2020-10-26T13:08:54+00:00"
  9193. },
  9194. {
  9195. "name": "sebastian/code-unit-reverse-lookup",
  9196. "version": "2.0.3",
  9197. "source": {
  9198. "type": "git",
  9199. "url": "https://github.com/sebastianbergmann/code-unit-reverse-lookup.git",
  9200. "reference": "ac91f01ccec49fb77bdc6fd1e548bc70f7faa3e5"
  9201. },
  9202. "dist": {
  9203. "type": "zip",
  9204. "url": "https://api.github.com/repos/sebastianbergmann/code-unit-reverse-lookup/zipball/ac91f01ccec49fb77bdc6fd1e548bc70f7faa3e5",
  9205. "reference": "ac91f01ccec49fb77bdc6fd1e548bc70f7faa3e5",
  9206. "shasum": ""
  9207. },
  9208. "require": {
  9209. "php": ">=7.3"
  9210. },
  9211. "require-dev": {
  9212. "phpunit/phpunit": "^9.3"
  9213. },
  9214. "type": "library",
  9215. "extra": {
  9216. "branch-alias": {
  9217. "dev-master": "2.0-dev"
  9218. }
  9219. },
  9220. "autoload": {
  9221. "classmap": [
  9222. "src/"
  9223. ]
  9224. },
  9225. "notification-url": "https://packagist.org/downloads/",
  9226. "license": [
  9227. "BSD-3-Clause"
  9228. ],
  9229. "authors": [
  9230. {
  9231. "name": "Sebastian Bergmann",
  9232. "email": "sebastian@phpunit.de"
  9233. }
  9234. ],
  9235. "description": "Looks up which function or method a line of code belongs to",
  9236. "homepage": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/",
  9237. "support": {
  9238. "issues": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/issues",
  9239. "source": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/tree/2.0.3"
  9240. },
  9241. "funding": [
  9242. {
  9243. "url": "https://github.com/sebastianbergmann",
  9244. "type": "github"
  9245. }
  9246. ],
  9247. "time": "2020-09-28T05:30:19+00:00"
  9248. },
  9249. {
  9250. "name": "sebastian/comparator",
  9251. "version": "4.0.8",
  9252. "source": {
  9253. "type": "git",
  9254. "url": "https://github.com/sebastianbergmann/comparator.git",
  9255. "reference": "fa0f136dd2334583309d32b62544682ee972b51a"
  9256. },
  9257. "dist": {
  9258. "type": "zip",
  9259. "url": "https://api.github.com/repos/sebastianbergmann/comparator/zipball/fa0f136dd2334583309d32b62544682ee972b51a",
  9260. "reference": "fa0f136dd2334583309d32b62544682ee972b51a",
  9261. "shasum": ""
  9262. },
  9263. "require": {
  9264. "php": ">=7.3",
  9265. "sebastian/diff": "^4.0",
  9266. "sebastian/exporter": "^4.0"
  9267. },
  9268. "require-dev": {
  9269. "phpunit/phpunit": "^9.3"
  9270. },
  9271. "type": "library",
  9272. "extra": {
  9273. "branch-alias": {
  9274. "dev-master": "4.0-dev"
  9275. }
  9276. },
  9277. "autoload": {
  9278. "classmap": [
  9279. "src/"
  9280. ]
  9281. },
  9282. "notification-url": "https://packagist.org/downloads/",
  9283. "license": [
  9284. "BSD-3-Clause"
  9285. ],
  9286. "authors": [
  9287. {
  9288. "name": "Sebastian Bergmann",
  9289. "email": "sebastian@phpunit.de"
  9290. },
  9291. {
  9292. "name": "Jeff Welch",
  9293. "email": "whatthejeff@gmail.com"
  9294. },
  9295. {
  9296. "name": "Volker Dusch",
  9297. "email": "github@wallbash.com"
  9298. },
  9299. {
  9300. "name": "Bernhard Schussek",
  9301. "email": "bschussek@2bepublished.at"
  9302. }
  9303. ],
  9304. "description": "Provides the functionality to compare PHP values for equality",
  9305. "homepage": "https://github.com/sebastianbergmann/comparator",
  9306. "keywords": [
  9307. "comparator",
  9308. "compare",
  9309. "equality"
  9310. ],
  9311. "support": {
  9312. "issues": "https://github.com/sebastianbergmann/comparator/issues",
  9313. "source": "https://github.com/sebastianbergmann/comparator/tree/4.0.8"
  9314. },
  9315. "funding": [
  9316. {
  9317. "url": "https://github.com/sebastianbergmann",
  9318. "type": "github"
  9319. }
  9320. ],
  9321. "time": "2022-09-14T12:41:17+00:00"
  9322. },
  9323. {
  9324. "name": "sebastian/complexity",
  9325. "version": "2.0.3",
  9326. "source": {
  9327. "type": "git",
  9328. "url": "https://github.com/sebastianbergmann/complexity.git",
  9329. "reference": "25f207c40d62b8b7aa32f5ab026c53561964053a"
  9330. },
  9331. "dist": {
  9332. "type": "zip",
  9333. "url": "https://api.github.com/repos/sebastianbergmann/complexity/zipball/25f207c40d62b8b7aa32f5ab026c53561964053a",
  9334. "reference": "25f207c40d62b8b7aa32f5ab026c53561964053a",
  9335. "shasum": ""
  9336. },
  9337. "require": {
  9338. "nikic/php-parser": "^4.18 || ^5.0",
  9339. "php": ">=7.3"
  9340. },
  9341. "require-dev": {
  9342. "phpunit/phpunit": "^9.3"
  9343. },
  9344. "type": "library",
  9345. "extra": {
  9346. "branch-alias": {
  9347. "dev-master": "2.0-dev"
  9348. }
  9349. },
  9350. "autoload": {
  9351. "classmap": [
  9352. "src/"
  9353. ]
  9354. },
  9355. "notification-url": "https://packagist.org/downloads/",
  9356. "license": [
  9357. "BSD-3-Clause"
  9358. ],
  9359. "authors": [
  9360. {
  9361. "name": "Sebastian Bergmann",
  9362. "email": "sebastian@phpunit.de",
  9363. "role": "lead"
  9364. }
  9365. ],
  9366. "description": "Library for calculating the complexity of PHP code units",
  9367. "homepage": "https://github.com/sebastianbergmann/complexity",
  9368. "support": {
  9369. "issues": "https://github.com/sebastianbergmann/complexity/issues",
  9370. "source": "https://github.com/sebastianbergmann/complexity/tree/2.0.3"
  9371. },
  9372. "funding": [
  9373. {
  9374. "url": "https://github.com/sebastianbergmann",
  9375. "type": "github"
  9376. }
  9377. ],
  9378. "time": "2023-12-22T06:19:30+00:00"
  9379. },
  9380. {
  9381. "name": "sebastian/diff",
  9382. "version": "4.0.5",
  9383. "source": {
  9384. "type": "git",
  9385. "url": "https://github.com/sebastianbergmann/diff.git",
  9386. "reference": "74be17022044ebaaecfdf0c5cd504fc9cd5a7131"
  9387. },
  9388. "dist": {
  9389. "type": "zip",
  9390. "url": "https://api.github.com/repos/sebastianbergmann/diff/zipball/74be17022044ebaaecfdf0c5cd504fc9cd5a7131",
  9391. "reference": "74be17022044ebaaecfdf0c5cd504fc9cd5a7131",
  9392. "shasum": ""
  9393. },
  9394. "require": {
  9395. "php": ">=7.3"
  9396. },
  9397. "require-dev": {
  9398. "phpunit/phpunit": "^9.3",
  9399. "symfony/process": "^4.2 || ^5"
  9400. },
  9401. "type": "library",
  9402. "extra": {
  9403. "branch-alias": {
  9404. "dev-master": "4.0-dev"
  9405. }
  9406. },
  9407. "autoload": {
  9408. "classmap": [
  9409. "src/"
  9410. ]
  9411. },
  9412. "notification-url": "https://packagist.org/downloads/",
  9413. "license": [
  9414. "BSD-3-Clause"
  9415. ],
  9416. "authors": [
  9417. {
  9418. "name": "Sebastian Bergmann",
  9419. "email": "sebastian@phpunit.de"
  9420. },
  9421. {
  9422. "name": "Kore Nordmann",
  9423. "email": "mail@kore-nordmann.de"
  9424. }
  9425. ],
  9426. "description": "Diff implementation",
  9427. "homepage": "https://github.com/sebastianbergmann/diff",
  9428. "keywords": [
  9429. "diff",
  9430. "udiff",
  9431. "unidiff",
  9432. "unified diff"
  9433. ],
  9434. "support": {
  9435. "issues": "https://github.com/sebastianbergmann/diff/issues",
  9436. "source": "https://github.com/sebastianbergmann/diff/tree/4.0.5"
  9437. },
  9438. "funding": [
  9439. {
  9440. "url": "https://github.com/sebastianbergmann",
  9441. "type": "github"
  9442. }
  9443. ],
  9444. "time": "2023-05-07T05:35:17+00:00"
  9445. },
  9446. {
  9447. "name": "sebastian/environment",
  9448. "version": "5.1.5",
  9449. "source": {
  9450. "type": "git",
  9451. "url": "https://github.com/sebastianbergmann/environment.git",
  9452. "reference": "830c43a844f1f8d5b7a1f6d6076b784454d8b7ed"
  9453. },
  9454. "dist": {
  9455. "type": "zip",
  9456. "url": "https://api.github.com/repos/sebastianbergmann/environment/zipball/830c43a844f1f8d5b7a1f6d6076b784454d8b7ed",
  9457. "reference": "830c43a844f1f8d5b7a1f6d6076b784454d8b7ed",
  9458. "shasum": ""
  9459. },
  9460. "require": {
  9461. "php": ">=7.3"
  9462. },
  9463. "require-dev": {
  9464. "phpunit/phpunit": "^9.3"
  9465. },
  9466. "suggest": {
  9467. "ext-posix": "*"
  9468. },
  9469. "type": "library",
  9470. "extra": {
  9471. "branch-alias": {
  9472. "dev-master": "5.1-dev"
  9473. }
  9474. },
  9475. "autoload": {
  9476. "classmap": [
  9477. "src/"
  9478. ]
  9479. },
  9480. "notification-url": "https://packagist.org/downloads/",
  9481. "license": [
  9482. "BSD-3-Clause"
  9483. ],
  9484. "authors": [
  9485. {
  9486. "name": "Sebastian Bergmann",
  9487. "email": "sebastian@phpunit.de"
  9488. }
  9489. ],
  9490. "description": "Provides functionality to handle HHVM/PHP environments",
  9491. "homepage": "http://www.github.com/sebastianbergmann/environment",
  9492. "keywords": [
  9493. "Xdebug",
  9494. "environment",
  9495. "hhvm"
  9496. ],
  9497. "support": {
  9498. "issues": "https://github.com/sebastianbergmann/environment/issues",
  9499. "source": "https://github.com/sebastianbergmann/environment/tree/5.1.5"
  9500. },
  9501. "funding": [
  9502. {
  9503. "url": "https://github.com/sebastianbergmann",
  9504. "type": "github"
  9505. }
  9506. ],
  9507. "time": "2023-02-03T06:03:51+00:00"
  9508. },
  9509. {
  9510. "name": "sebastian/exporter",
  9511. "version": "4.0.5",
  9512. "source": {
  9513. "type": "git",
  9514. "url": "https://github.com/sebastianbergmann/exporter.git",
  9515. "reference": "ac230ed27f0f98f597c8a2b6eb7ac563af5e5b9d"
  9516. },
  9517. "dist": {
  9518. "type": "zip",
  9519. "url": "https://api.github.com/repos/sebastianbergmann/exporter/zipball/ac230ed27f0f98f597c8a2b6eb7ac563af5e5b9d",
  9520. "reference": "ac230ed27f0f98f597c8a2b6eb7ac563af5e5b9d",
  9521. "shasum": ""
  9522. },
  9523. "require": {
  9524. "php": ">=7.3",
  9525. "sebastian/recursion-context": "^4.0"
  9526. },
  9527. "require-dev": {
  9528. "ext-mbstring": "*",
  9529. "phpunit/phpunit": "^9.3"
  9530. },
  9531. "type": "library",
  9532. "extra": {
  9533. "branch-alias": {
  9534. "dev-master": "4.0-dev"
  9535. }
  9536. },
  9537. "autoload": {
  9538. "classmap": [
  9539. "src/"
  9540. ]
  9541. },
  9542. "notification-url": "https://packagist.org/downloads/",
  9543. "license": [
  9544. "BSD-3-Clause"
  9545. ],
  9546. "authors": [
  9547. {
  9548. "name": "Sebastian Bergmann",
  9549. "email": "sebastian@phpunit.de"
  9550. },
  9551. {
  9552. "name": "Jeff Welch",
  9553. "email": "whatthejeff@gmail.com"
  9554. },
  9555. {
  9556. "name": "Volker Dusch",
  9557. "email": "github@wallbash.com"
  9558. },
  9559. {
  9560. "name": "Adam Harvey",
  9561. "email": "aharvey@php.net"
  9562. },
  9563. {
  9564. "name": "Bernhard Schussek",
  9565. "email": "bschussek@gmail.com"
  9566. }
  9567. ],
  9568. "description": "Provides the functionality to export PHP variables for visualization",
  9569. "homepage": "https://www.github.com/sebastianbergmann/exporter",
  9570. "keywords": [
  9571. "export",
  9572. "exporter"
  9573. ],
  9574. "support": {
  9575. "issues": "https://github.com/sebastianbergmann/exporter/issues",
  9576. "source": "https://github.com/sebastianbergmann/exporter/tree/4.0.5"
  9577. },
  9578. "funding": [
  9579. {
  9580. "url": "https://github.com/sebastianbergmann",
  9581. "type": "github"
  9582. }
  9583. ],
  9584. "time": "2022-09-14T06:03:37+00:00"
  9585. },
  9586. {
  9587. "name": "sebastian/global-state",
  9588. "version": "5.0.6",
  9589. "source": {
  9590. "type": "git",
  9591. "url": "https://github.com/sebastianbergmann/global-state.git",
  9592. "reference": "bde739e7565280bda77be70044ac1047bc007e34"
  9593. },
  9594. "dist": {
  9595. "type": "zip",
  9596. "url": "https://api.github.com/repos/sebastianbergmann/global-state/zipball/bde739e7565280bda77be70044ac1047bc007e34",
  9597. "reference": "bde739e7565280bda77be70044ac1047bc007e34",
  9598. "shasum": ""
  9599. },
  9600. "require": {
  9601. "php": ">=7.3",
  9602. "sebastian/object-reflector": "^2.0",
  9603. "sebastian/recursion-context": "^4.0"
  9604. },
  9605. "require-dev": {
  9606. "ext-dom": "*",
  9607. "phpunit/phpunit": "^9.3"
  9608. },
  9609. "suggest": {
  9610. "ext-uopz": "*"
  9611. },
  9612. "type": "library",
  9613. "extra": {
  9614. "branch-alias": {
  9615. "dev-master": "5.0-dev"
  9616. }
  9617. },
  9618. "autoload": {
  9619. "classmap": [
  9620. "src/"
  9621. ]
  9622. },
  9623. "notification-url": "https://packagist.org/downloads/",
  9624. "license": [
  9625. "BSD-3-Clause"
  9626. ],
  9627. "authors": [
  9628. {
  9629. "name": "Sebastian Bergmann",
  9630. "email": "sebastian@phpunit.de"
  9631. }
  9632. ],
  9633. "description": "Snapshotting of global state",
  9634. "homepage": "http://www.github.com/sebastianbergmann/global-state",
  9635. "keywords": [
  9636. "global state"
  9637. ],
  9638. "support": {
  9639. "issues": "https://github.com/sebastianbergmann/global-state/issues",
  9640. "source": "https://github.com/sebastianbergmann/global-state/tree/5.0.6"
  9641. },
  9642. "funding": [
  9643. {
  9644. "url": "https://github.com/sebastianbergmann",
  9645. "type": "github"
  9646. }
  9647. ],
  9648. "time": "2023-08-02T09:26:13+00:00"
  9649. },
  9650. {
  9651. "name": "sebastian/lines-of-code",
  9652. "version": "1.0.4",
  9653. "source": {
  9654. "type": "git",
  9655. "url": "https://github.com/sebastianbergmann/lines-of-code.git",
  9656. "reference": "e1e4a170560925c26d424b6a03aed157e7dcc5c5"
  9657. },
  9658. "dist": {
  9659. "type": "zip",
  9660. "url": "https://api.github.com/repos/sebastianbergmann/lines-of-code/zipball/e1e4a170560925c26d424b6a03aed157e7dcc5c5",
  9661. "reference": "e1e4a170560925c26d424b6a03aed157e7dcc5c5",
  9662. "shasum": ""
  9663. },
  9664. "require": {
  9665. "nikic/php-parser": "^4.18 || ^5.0",
  9666. "php": ">=7.3"
  9667. },
  9668. "require-dev": {
  9669. "phpunit/phpunit": "^9.3"
  9670. },
  9671. "type": "library",
  9672. "extra": {
  9673. "branch-alias": {
  9674. "dev-master": "1.0-dev"
  9675. }
  9676. },
  9677. "autoload": {
  9678. "classmap": [
  9679. "src/"
  9680. ]
  9681. },
  9682. "notification-url": "https://packagist.org/downloads/",
  9683. "license": [
  9684. "BSD-3-Clause"
  9685. ],
  9686. "authors": [
  9687. {
  9688. "name": "Sebastian Bergmann",
  9689. "email": "sebastian@phpunit.de",
  9690. "role": "lead"
  9691. }
  9692. ],
  9693. "description": "Library for counting the lines of code in PHP source code",
  9694. "homepage": "https://github.com/sebastianbergmann/lines-of-code",
  9695. "support": {
  9696. "issues": "https://github.com/sebastianbergmann/lines-of-code/issues",
  9697. "source": "https://github.com/sebastianbergmann/lines-of-code/tree/1.0.4"
  9698. },
  9699. "funding": [
  9700. {
  9701. "url": "https://github.com/sebastianbergmann",
  9702. "type": "github"
  9703. }
  9704. ],
  9705. "time": "2023-12-22T06:20:34+00:00"
  9706. },
  9707. {
  9708. "name": "sebastian/object-enumerator",
  9709. "version": "4.0.4",
  9710. "source": {
  9711. "type": "git",
  9712. "url": "https://github.com/sebastianbergmann/object-enumerator.git",
  9713. "reference": "5c9eeac41b290a3712d88851518825ad78f45c71"
  9714. },
  9715. "dist": {
  9716. "type": "zip",
  9717. "url": "https://api.github.com/repos/sebastianbergmann/object-enumerator/zipball/5c9eeac41b290a3712d88851518825ad78f45c71",
  9718. "reference": "5c9eeac41b290a3712d88851518825ad78f45c71",
  9719. "shasum": ""
  9720. },
  9721. "require": {
  9722. "php": ">=7.3",
  9723. "sebastian/object-reflector": "^2.0",
  9724. "sebastian/recursion-context": "^4.0"
  9725. },
  9726. "require-dev": {
  9727. "phpunit/phpunit": "^9.3"
  9728. },
  9729. "type": "library",
  9730. "extra": {
  9731. "branch-alias": {
  9732. "dev-master": "4.0-dev"
  9733. }
  9734. },
  9735. "autoload": {
  9736. "classmap": [
  9737. "src/"
  9738. ]
  9739. },
  9740. "notification-url": "https://packagist.org/downloads/",
  9741. "license": [
  9742. "BSD-3-Clause"
  9743. ],
  9744. "authors": [
  9745. {
  9746. "name": "Sebastian Bergmann",
  9747. "email": "sebastian@phpunit.de"
  9748. }
  9749. ],
  9750. "description": "Traverses array structures and object graphs to enumerate all referenced objects",
  9751. "homepage": "https://github.com/sebastianbergmann/object-enumerator/",
  9752. "support": {
  9753. "issues": "https://github.com/sebastianbergmann/object-enumerator/issues",
  9754. "source": "https://github.com/sebastianbergmann/object-enumerator/tree/4.0.4"
  9755. },
  9756. "funding": [
  9757. {
  9758. "url": "https://github.com/sebastianbergmann",
  9759. "type": "github"
  9760. }
  9761. ],
  9762. "time": "2020-10-26T13:12:34+00:00"
  9763. },
  9764. {
  9765. "name": "sebastian/object-reflector",
  9766. "version": "2.0.4",
  9767. "source": {
  9768. "type": "git",
  9769. "url": "https://github.com/sebastianbergmann/object-reflector.git",
  9770. "reference": "b4f479ebdbf63ac605d183ece17d8d7fe49c15c7"
  9771. },
  9772. "dist": {
  9773. "type": "zip",
  9774. "url": "https://api.github.com/repos/sebastianbergmann/object-reflector/zipball/b4f479ebdbf63ac605d183ece17d8d7fe49c15c7",
  9775. "reference": "b4f479ebdbf63ac605d183ece17d8d7fe49c15c7",
  9776. "shasum": ""
  9777. },
  9778. "require": {
  9779. "php": ">=7.3"
  9780. },
  9781. "require-dev": {
  9782. "phpunit/phpunit": "^9.3"
  9783. },
  9784. "type": "library",
  9785. "extra": {
  9786. "branch-alias": {
  9787. "dev-master": "2.0-dev"
  9788. }
  9789. },
  9790. "autoload": {
  9791. "classmap": [
  9792. "src/"
  9793. ]
  9794. },
  9795. "notification-url": "https://packagist.org/downloads/",
  9796. "license": [
  9797. "BSD-3-Clause"
  9798. ],
  9799. "authors": [
  9800. {
  9801. "name": "Sebastian Bergmann",
  9802. "email": "sebastian@phpunit.de"
  9803. }
  9804. ],
  9805. "description": "Allows reflection of object attributes, including inherited and non-public ones",
  9806. "homepage": "https://github.com/sebastianbergmann/object-reflector/",
  9807. "support": {
  9808. "issues": "https://github.com/sebastianbergmann/object-reflector/issues",
  9809. "source": "https://github.com/sebastianbergmann/object-reflector/tree/2.0.4"
  9810. },
  9811. "funding": [
  9812. {
  9813. "url": "https://github.com/sebastianbergmann",
  9814. "type": "github"
  9815. }
  9816. ],
  9817. "time": "2020-10-26T13:14:26+00:00"
  9818. },
  9819. {
  9820. "name": "sebastian/recursion-context",
  9821. "version": "4.0.5",
  9822. "source": {
  9823. "type": "git",
  9824. "url": "https://github.com/sebastianbergmann/recursion-context.git",
  9825. "reference": "e75bd0f07204fec2a0af9b0f3cfe97d05f92efc1"
  9826. },
  9827. "dist": {
  9828. "type": "zip",
  9829. "url": "https://api.github.com/repos/sebastianbergmann/recursion-context/zipball/e75bd0f07204fec2a0af9b0f3cfe97d05f92efc1",
  9830. "reference": "e75bd0f07204fec2a0af9b0f3cfe97d05f92efc1",
  9831. "shasum": ""
  9832. },
  9833. "require": {
  9834. "php": ">=7.3"
  9835. },
  9836. "require-dev": {
  9837. "phpunit/phpunit": "^9.3"
  9838. },
  9839. "type": "library",
  9840. "extra": {
  9841. "branch-alias": {
  9842. "dev-master": "4.0-dev"
  9843. }
  9844. },
  9845. "autoload": {
  9846. "classmap": [
  9847. "src/"
  9848. ]
  9849. },
  9850. "notification-url": "https://packagist.org/downloads/",
  9851. "license": [
  9852. "BSD-3-Clause"
  9853. ],
  9854. "authors": [
  9855. {
  9856. "name": "Sebastian Bergmann",
  9857. "email": "sebastian@phpunit.de"
  9858. },
  9859. {
  9860. "name": "Jeff Welch",
  9861. "email": "whatthejeff@gmail.com"
  9862. },
  9863. {
  9864. "name": "Adam Harvey",
  9865. "email": "aharvey@php.net"
  9866. }
  9867. ],
  9868. "description": "Provides functionality to recursively process PHP variables",
  9869. "homepage": "https://github.com/sebastianbergmann/recursion-context",
  9870. "support": {
  9871. "issues": "https://github.com/sebastianbergmann/recursion-context/issues",
  9872. "source": "https://github.com/sebastianbergmann/recursion-context/tree/4.0.5"
  9873. },
  9874. "funding": [
  9875. {
  9876. "url": "https://github.com/sebastianbergmann",
  9877. "type": "github"
  9878. }
  9879. ],
  9880. "time": "2023-02-03T06:07:39+00:00"
  9881. },
  9882. {
  9883. "name": "sebastian/resource-operations",
  9884. "version": "3.0.3",
  9885. "source": {
  9886. "type": "git",
  9887. "url": "https://github.com/sebastianbergmann/resource-operations.git",
  9888. "reference": "0f4443cb3a1d92ce809899753bc0d5d5a8dd19a8"
  9889. },
  9890. "dist": {
  9891. "type": "zip",
  9892. "url": "https://api.github.com/repos/sebastianbergmann/resource-operations/zipball/0f4443cb3a1d92ce809899753bc0d5d5a8dd19a8",
  9893. "reference": "0f4443cb3a1d92ce809899753bc0d5d5a8dd19a8",
  9894. "shasum": ""
  9895. },
  9896. "require": {
  9897. "php": ">=7.3"
  9898. },
  9899. "require-dev": {
  9900. "phpunit/phpunit": "^9.0"
  9901. },
  9902. "type": "library",
  9903. "extra": {
  9904. "branch-alias": {
  9905. "dev-master": "3.0-dev"
  9906. }
  9907. },
  9908. "autoload": {
  9909. "classmap": [
  9910. "src/"
  9911. ]
  9912. },
  9913. "notification-url": "https://packagist.org/downloads/",
  9914. "license": [
  9915. "BSD-3-Clause"
  9916. ],
  9917. "authors": [
  9918. {
  9919. "name": "Sebastian Bergmann",
  9920. "email": "sebastian@phpunit.de"
  9921. }
  9922. ],
  9923. "description": "Provides a list of PHP built-in functions that operate on resources",
  9924. "homepage": "https://www.github.com/sebastianbergmann/resource-operations",
  9925. "support": {
  9926. "issues": "https://github.com/sebastianbergmann/resource-operations/issues",
  9927. "source": "https://github.com/sebastianbergmann/resource-operations/tree/3.0.3"
  9928. },
  9929. "funding": [
  9930. {
  9931. "url": "https://github.com/sebastianbergmann",
  9932. "type": "github"
  9933. }
  9934. ],
  9935. "time": "2020-09-28T06:45:17+00:00"
  9936. },
  9937. {
  9938. "name": "sebastian/type",
  9939. "version": "3.2.1",
  9940. "source": {
  9941. "type": "git",
  9942. "url": "https://github.com/sebastianbergmann/type.git",
  9943. "reference": "75e2c2a32f5e0b3aef905b9ed0b179b953b3d7c7"
  9944. },
  9945. "dist": {
  9946. "type": "zip",
  9947. "url": "https://api.github.com/repos/sebastianbergmann/type/zipball/75e2c2a32f5e0b3aef905b9ed0b179b953b3d7c7",
  9948. "reference": "75e2c2a32f5e0b3aef905b9ed0b179b953b3d7c7",
  9949. "shasum": ""
  9950. },
  9951. "require": {
  9952. "php": ">=7.3"
  9953. },
  9954. "require-dev": {
  9955. "phpunit/phpunit": "^9.5"
  9956. },
  9957. "type": "library",
  9958. "extra": {
  9959. "branch-alias": {
  9960. "dev-master": "3.2-dev"
  9961. }
  9962. },
  9963. "autoload": {
  9964. "classmap": [
  9965. "src/"
  9966. ]
  9967. },
  9968. "notification-url": "https://packagist.org/downloads/",
  9969. "license": [
  9970. "BSD-3-Clause"
  9971. ],
  9972. "authors": [
  9973. {
  9974. "name": "Sebastian Bergmann",
  9975. "email": "sebastian@phpunit.de",
  9976. "role": "lead"
  9977. }
  9978. ],
  9979. "description": "Collection of value objects that represent the types of the PHP type system",
  9980. "homepage": "https://github.com/sebastianbergmann/type",
  9981. "support": {
  9982. "issues": "https://github.com/sebastianbergmann/type/issues",
  9983. "source": "https://github.com/sebastianbergmann/type/tree/3.2.1"
  9984. },
  9985. "funding": [
  9986. {
  9987. "url": "https://github.com/sebastianbergmann",
  9988. "type": "github"
  9989. }
  9990. ],
  9991. "time": "2023-02-03T06:13:03+00:00"
  9992. },
  9993. {
  9994. "name": "sebastian/version",
  9995. "version": "3.0.2",
  9996. "source": {
  9997. "type": "git",
  9998. "url": "https://github.com/sebastianbergmann/version.git",
  9999. "reference": "c6c1022351a901512170118436c764e473f6de8c"
  10000. },
  10001. "dist": {
  10002. "type": "zip",
  10003. "url": "https://api.github.com/repos/sebastianbergmann/version/zipball/c6c1022351a901512170118436c764e473f6de8c",
  10004. "reference": "c6c1022351a901512170118436c764e473f6de8c",
  10005. "shasum": ""
  10006. },
  10007. "require": {
  10008. "php": ">=7.3"
  10009. },
  10010. "type": "library",
  10011. "extra": {
  10012. "branch-alias": {
  10013. "dev-master": "3.0-dev"
  10014. }
  10015. },
  10016. "autoload": {
  10017. "classmap": [
  10018. "src/"
  10019. ]
  10020. },
  10021. "notification-url": "https://packagist.org/downloads/",
  10022. "license": [
  10023. "BSD-3-Clause"
  10024. ],
  10025. "authors": [
  10026. {
  10027. "name": "Sebastian Bergmann",
  10028. "email": "sebastian@phpunit.de",
  10029. "role": "lead"
  10030. }
  10031. ],
  10032. "description": "Library that helps with managing the version number of Git-hosted PHP projects",
  10033. "homepage": "https://github.com/sebastianbergmann/version",
  10034. "support": {
  10035. "issues": "https://github.com/sebastianbergmann/version/issues",
  10036. "source": "https://github.com/sebastianbergmann/version/tree/3.0.2"
  10037. },
  10038. "funding": [
  10039. {
  10040. "url": "https://github.com/sebastianbergmann",
  10041. "type": "github"
  10042. }
  10043. ],
  10044. "time": "2020-09-28T06:39:44+00:00"
  10045. },
  10046. {
  10047. "name": "symfony/browser-kit",
  10048. "version": "v6.4.3",
  10049. "source": {
  10050. "type": "git",
  10051. "url": "https://github.com/symfony/browser-kit.git",
  10052. "reference": "495ffa2e6d17e199213f93768efa01af32bbf70e"
  10053. },
  10054. "dist": {
  10055. "type": "zip",
  10056. "url": "https://api.github.com/repos/symfony/browser-kit/zipball/495ffa2e6d17e199213f93768efa01af32bbf70e",
  10057. "reference": "495ffa2e6d17e199213f93768efa01af32bbf70e",
  10058. "shasum": ""
  10059. },
  10060. "require": {
  10061. "php": ">=8.1",
  10062. "symfony/dom-crawler": "^5.4|^6.0|^7.0"
  10063. },
  10064. "require-dev": {
  10065. "symfony/css-selector": "^5.4|^6.0|^7.0",
  10066. "symfony/http-client": "^5.4|^6.0|^7.0",
  10067. "symfony/mime": "^5.4|^6.0|^7.0",
  10068. "symfony/process": "^5.4|^6.0|^7.0"
  10069. },
  10070. "type": "library",
  10071. "autoload": {
  10072. "psr-4": {
  10073. "Symfony\\Component\\BrowserKit\\": ""
  10074. },
  10075. "exclude-from-classmap": [
  10076. "/Tests/"
  10077. ]
  10078. },
  10079. "notification-url": "https://packagist.org/downloads/",
  10080. "license": [
  10081. "MIT"
  10082. ],
  10083. "authors": [
  10084. {
  10085. "name": "Fabien Potencier",
  10086. "email": "fabien@symfony.com"
  10087. },
  10088. {
  10089. "name": "Symfony Community",
  10090. "homepage": "https://symfony.com/contributors"
  10091. }
  10092. ],
  10093. "description": "Simulates the behavior of a web browser, allowing you to make requests, click on links and submit forms programmatically",
  10094. "homepage": "https://symfony.com",
  10095. "support": {
  10096. "source": "https://github.com/symfony/browser-kit/tree/v6.4.3"
  10097. },
  10098. "funding": [
  10099. {
  10100. "url": "https://symfony.com/sponsor",
  10101. "type": "custom"
  10102. },
  10103. {
  10104. "url": "https://github.com/fabpot",
  10105. "type": "github"
  10106. },
  10107. {
  10108. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  10109. "type": "tidelift"
  10110. }
  10111. ],
  10112. "time": "2024-01-23T14:51:35+00:00"
  10113. },
  10114. {
  10115. "name": "symfony/css-selector",
  10116. "version": "v6.4.3",
  10117. "source": {
  10118. "type": "git",
  10119. "url": "https://github.com/symfony/css-selector.git",
  10120. "reference": "ee0f7ed5cf298cc019431bb3b3977ebc52b86229"
  10121. },
  10122. "dist": {
  10123. "type": "zip",
  10124. "url": "https://api.github.com/repos/symfony/css-selector/zipball/ee0f7ed5cf298cc019431bb3b3977ebc52b86229",
  10125. "reference": "ee0f7ed5cf298cc019431bb3b3977ebc52b86229",
  10126. "shasum": ""
  10127. },
  10128. "require": {
  10129. "php": ">=8.1"
  10130. },
  10131. "type": "library",
  10132. "autoload": {
  10133. "psr-4": {
  10134. "Symfony\\Component\\CssSelector\\": ""
  10135. },
  10136. "exclude-from-classmap": [
  10137. "/Tests/"
  10138. ]
  10139. },
  10140. "notification-url": "https://packagist.org/downloads/",
  10141. "license": [
  10142. "MIT"
  10143. ],
  10144. "authors": [
  10145. {
  10146. "name": "Fabien Potencier",
  10147. "email": "fabien@symfony.com"
  10148. },
  10149. {
  10150. "name": "Jean-François Simon",
  10151. "email": "jeanfrancois.simon@sensiolabs.com"
  10152. },
  10153. {
  10154. "name": "Symfony Community",
  10155. "homepage": "https://symfony.com/contributors"
  10156. }
  10157. ],
  10158. "description": "Converts CSS selectors to XPath expressions",
  10159. "homepage": "https://symfony.com",
  10160. "support": {
  10161. "source": "https://github.com/symfony/css-selector/tree/v6.4.3"
  10162. },
  10163. "funding": [
  10164. {
  10165. "url": "https://symfony.com/sponsor",
  10166. "type": "custom"
  10167. },
  10168. {
  10169. "url": "https://github.com/fabpot",
  10170. "type": "github"
  10171. },
  10172. {
  10173. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  10174. "type": "tidelift"
  10175. }
  10176. ],
  10177. "time": "2024-01-23T14:51:35+00:00"
  10178. },
  10179. {
  10180. "name": "symfony/debug-bundle",
  10181. "version": "v6.4.3",
  10182. "source": {
  10183. "type": "git",
  10184. "url": "https://github.com/symfony/debug-bundle.git",
  10185. "reference": "425c7760a4e6fdc6cb643c791d32277037c971df"
  10186. },
  10187. "dist": {
  10188. "type": "zip",
  10189. "url": "https://api.github.com/repos/symfony/debug-bundle/zipball/425c7760a4e6fdc6cb643c791d32277037c971df",
  10190. "reference": "425c7760a4e6fdc6cb643c791d32277037c971df",
  10191. "shasum": ""
  10192. },
  10193. "require": {
  10194. "ext-xml": "*",
  10195. "php": ">=8.1",
  10196. "symfony/dependency-injection": "^5.4|^6.0|^7.0",
  10197. "symfony/http-kernel": "^5.4|^6.0|^7.0",
  10198. "symfony/twig-bridge": "^5.4|^6.0|^7.0",
  10199. "symfony/var-dumper": "^5.4|^6.0|^7.0"
  10200. },
  10201. "conflict": {
  10202. "symfony/config": "<5.4",
  10203. "symfony/dependency-injection": "<5.4"
  10204. },
  10205. "require-dev": {
  10206. "symfony/config": "^5.4|^6.0|^7.0",
  10207. "symfony/web-profiler-bundle": "^5.4|^6.0|^7.0"
  10208. },
  10209. "type": "symfony-bundle",
  10210. "autoload": {
  10211. "psr-4": {
  10212. "Symfony\\Bundle\\DebugBundle\\": ""
  10213. },
  10214. "exclude-from-classmap": [
  10215. "/Tests/"
  10216. ]
  10217. },
  10218. "notification-url": "https://packagist.org/downloads/",
  10219. "license": [
  10220. "MIT"
  10221. ],
  10222. "authors": [
  10223. {
  10224. "name": "Fabien Potencier",
  10225. "email": "fabien@symfony.com"
  10226. },
  10227. {
  10228. "name": "Symfony Community",
  10229. "homepage": "https://symfony.com/contributors"
  10230. }
  10231. ],
  10232. "description": "Provides a tight integration of the Symfony VarDumper component and the ServerLogCommand from MonologBridge into the Symfony full-stack framework",
  10233. "homepage": "https://symfony.com",
  10234. "support": {
  10235. "source": "https://github.com/symfony/debug-bundle/tree/v6.4.3"
  10236. },
  10237. "funding": [
  10238. {
  10239. "url": "https://symfony.com/sponsor",
  10240. "type": "custom"
  10241. },
  10242. {
  10243. "url": "https://github.com/fabpot",
  10244. "type": "github"
  10245. },
  10246. {
  10247. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  10248. "type": "tidelift"
  10249. }
  10250. ],
  10251. "time": "2024-01-23T14:51:35+00:00"
  10252. },
  10253. {
  10254. "name": "symfony/dom-crawler",
  10255. "version": "v6.4.3",
  10256. "source": {
  10257. "type": "git",
  10258. "url": "https://github.com/symfony/dom-crawler.git",
  10259. "reference": "6db31849011fefe091e94d0bb10cba26f7919894"
  10260. },
  10261. "dist": {
  10262. "type": "zip",
  10263. "url": "https://api.github.com/repos/symfony/dom-crawler/zipball/6db31849011fefe091e94d0bb10cba26f7919894",
  10264. "reference": "6db31849011fefe091e94d0bb10cba26f7919894",
  10265. "shasum": ""
  10266. },
  10267. "require": {
  10268. "masterminds/html5": "^2.6",
  10269. "php": ">=8.1",
  10270. "symfony/polyfill-ctype": "~1.8",
  10271. "symfony/polyfill-mbstring": "~1.0"
  10272. },
  10273. "require-dev": {
  10274. "symfony/css-selector": "^5.4|^6.0|^7.0"
  10275. },
  10276. "type": "library",
  10277. "autoload": {
  10278. "psr-4": {
  10279. "Symfony\\Component\\DomCrawler\\": ""
  10280. },
  10281. "exclude-from-classmap": [
  10282. "/Tests/"
  10283. ]
  10284. },
  10285. "notification-url": "https://packagist.org/downloads/",
  10286. "license": [
  10287. "MIT"
  10288. ],
  10289. "authors": [
  10290. {
  10291. "name": "Fabien Potencier",
  10292. "email": "fabien@symfony.com"
  10293. },
  10294. {
  10295. "name": "Symfony Community",
  10296. "homepage": "https://symfony.com/contributors"
  10297. }
  10298. ],
  10299. "description": "Eases DOM navigation for HTML and XML documents",
  10300. "homepage": "https://symfony.com",
  10301. "support": {
  10302. "source": "https://github.com/symfony/dom-crawler/tree/v6.4.3"
  10303. },
  10304. "funding": [
  10305. {
  10306. "url": "https://symfony.com/sponsor",
  10307. "type": "custom"
  10308. },
  10309. {
  10310. "url": "https://github.com/fabpot",
  10311. "type": "github"
  10312. },
  10313. {
  10314. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  10315. "type": "tidelift"
  10316. }
  10317. ],
  10318. "time": "2024-01-23T14:51:35+00:00"
  10319. },
  10320. {
  10321. "name": "symfony/maker-bundle",
  10322. "version": "v1.55.1",
  10323. "source": {
  10324. "type": "git",
  10325. "url": "https://github.com/symfony/maker-bundle.git",
  10326. "reference": "11a9d3125c5b93ab4043f0f2e9927fdc55881c17"
  10327. },
  10328. "dist": {
  10329. "type": "zip",
  10330. "url": "https://api.github.com/repos/symfony/maker-bundle/zipball/11a9d3125c5b93ab4043f0f2e9927fdc55881c17",
  10331. "reference": "11a9d3125c5b93ab4043f0f2e9927fdc55881c17",
  10332. "shasum": ""
  10333. },
  10334. "require": {
  10335. "doctrine/inflector": "^2.0",
  10336. "nikic/php-parser": "^4.18|^5.0",
  10337. "php": ">=8.1",
  10338. "symfony/config": "^6.4|^7.0",
  10339. "symfony/console": "^6.4|^7.0",
  10340. "symfony/dependency-injection": "^6.4|^7.0",
  10341. "symfony/deprecation-contracts": "^2.2|^3",
  10342. "symfony/filesystem": "^6.4|^7.0",
  10343. "symfony/finder": "^6.4|^7.0",
  10344. "symfony/framework-bundle": "^6.4|^7.0",
  10345. "symfony/http-kernel": "^6.4|^7.0",
  10346. "symfony/process": "^6.4|^7.0"
  10347. },
  10348. "conflict": {
  10349. "doctrine/doctrine-bundle": "<2.10",
  10350. "doctrine/orm": "<2.15"
  10351. },
  10352. "require-dev": {
  10353. "composer/semver": "^3.0",
  10354. "doctrine/doctrine-bundle": "^2.5.0",
  10355. "doctrine/orm": "^2.15|^3",
  10356. "symfony/http-client": "^6.4|^7.0",
  10357. "symfony/phpunit-bridge": "^6.4.1|^7.0",
  10358. "symfony/security-core": "^6.4|^7.0",
  10359. "symfony/yaml": "^6.4|^7.0",
  10360. "twig/twig": "^3.0|^4.x-dev"
  10361. },
  10362. "type": "symfony-bundle",
  10363. "extra": {
  10364. "branch-alias": {
  10365. "dev-main": "1.x-dev"
  10366. }
  10367. },
  10368. "autoload": {
  10369. "psr-4": {
  10370. "Symfony\\Bundle\\MakerBundle\\": "src/"
  10371. }
  10372. },
  10373. "notification-url": "https://packagist.org/downloads/",
  10374. "license": [
  10375. "MIT"
  10376. ],
  10377. "authors": [
  10378. {
  10379. "name": "Symfony Community",
  10380. "homepage": "https://symfony.com/contributors"
  10381. }
  10382. ],
  10383. "description": "Symfony Maker helps you create empty commands, controllers, form classes, tests and more so you can forget about writing boilerplate code.",
  10384. "homepage": "https://symfony.com/doc/current/bundles/SymfonyMakerBundle/index.html",
  10385. "keywords": [
  10386. "code generator",
  10387. "dev",
  10388. "generator",
  10389. "scaffold",
  10390. "scaffolding"
  10391. ],
  10392. "support": {
  10393. "issues": "https://github.com/symfony/maker-bundle/issues",
  10394. "source": "https://github.com/symfony/maker-bundle/tree/v1.55.1"
  10395. },
  10396. "funding": [
  10397. {
  10398. "url": "https://symfony.com/sponsor",
  10399. "type": "custom"
  10400. },
  10401. {
  10402. "url": "https://github.com/fabpot",
  10403. "type": "github"
  10404. },
  10405. {
  10406. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  10407. "type": "tidelift"
  10408. }
  10409. ],
  10410. "time": "2024-02-21T13:41:51+00:00"
  10411. },
  10412. {
  10413. "name": "symfony/phpunit-bridge",
  10414. "version": "v6.4.3",
  10415. "source": {
  10416. "type": "git",
  10417. "url": "https://github.com/symfony/phpunit-bridge.git",
  10418. "reference": "d49b4f6dc4690cf2c194311bb498abf0cf4f7485"
  10419. },
  10420. "dist": {
  10421. "type": "zip",
  10422. "url": "https://api.github.com/repos/symfony/phpunit-bridge/zipball/d49b4f6dc4690cf2c194311bb498abf0cf4f7485",
  10423. "reference": "d49b4f6dc4690cf2c194311bb498abf0cf4f7485",
  10424. "shasum": ""
  10425. },
  10426. "require": {
  10427. "php": ">=7.1.3"
  10428. },
  10429. "conflict": {
  10430. "phpunit/phpunit": "<7.5|9.1.2"
  10431. },
  10432. "require-dev": {
  10433. "symfony/deprecation-contracts": "^2.5|^3.0",
  10434. "symfony/error-handler": "^5.4|^6.0|^7.0",
  10435. "symfony/polyfill-php81": "^1.27"
  10436. },
  10437. "bin": [
  10438. "bin/simple-phpunit"
  10439. ],
  10440. "type": "symfony-bridge",
  10441. "extra": {
  10442. "thanks": {
  10443. "name": "phpunit/phpunit",
  10444. "url": "https://github.com/sebastianbergmann/phpunit"
  10445. }
  10446. },
  10447. "autoload": {
  10448. "files": [
  10449. "bootstrap.php"
  10450. ],
  10451. "psr-4": {
  10452. "Symfony\\Bridge\\PhpUnit\\": ""
  10453. },
  10454. "exclude-from-classmap": [
  10455. "/Tests/"
  10456. ]
  10457. },
  10458. "notification-url": "https://packagist.org/downloads/",
  10459. "license": [
  10460. "MIT"
  10461. ],
  10462. "authors": [
  10463. {
  10464. "name": "Nicolas Grekas",
  10465. "email": "p@tchwork.com"
  10466. },
  10467. {
  10468. "name": "Symfony Community",
  10469. "homepage": "https://symfony.com/contributors"
  10470. }
  10471. ],
  10472. "description": "Provides utilities for PHPUnit, especially user deprecation notices management",
  10473. "homepage": "https://symfony.com",
  10474. "support": {
  10475. "source": "https://github.com/symfony/phpunit-bridge/tree/v6.4.3"
  10476. },
  10477. "funding": [
  10478. {
  10479. "url": "https://symfony.com/sponsor",
  10480. "type": "custom"
  10481. },
  10482. {
  10483. "url": "https://github.com/fabpot",
  10484. "type": "github"
  10485. },
  10486. {
  10487. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  10488. "type": "tidelift"
  10489. }
  10490. ],
  10491. "time": "2024-01-23T14:51:35+00:00"
  10492. },
  10493. {
  10494. "name": "symfony/web-profiler-bundle",
  10495. "version": "v6.4.3",
  10496. "source": {
  10497. "type": "git",
  10498. "url": "https://github.com/symfony/web-profiler-bundle.git",
  10499. "reference": "e78f98da7b4f842bab89368d53c962f5b2f9e49c"
  10500. },
  10501. "dist": {
  10502. "type": "zip",
  10503. "url": "https://api.github.com/repos/symfony/web-profiler-bundle/zipball/e78f98da7b4f842bab89368d53c962f5b2f9e49c",
  10504. "reference": "e78f98da7b4f842bab89368d53c962f5b2f9e49c",
  10505. "shasum": ""
  10506. },
  10507. "require": {
  10508. "php": ">=8.1",
  10509. "symfony/config": "^5.4|^6.0|^7.0",
  10510. "symfony/framework-bundle": "^6.4|^7.0",
  10511. "symfony/http-kernel": "^6.4|^7.0",
  10512. "symfony/routing": "^5.4|^6.0|^7.0",
  10513. "symfony/twig-bundle": "^5.4|^6.0",
  10514. "twig/twig": "^2.13|^3.0.4"
  10515. },
  10516. "conflict": {
  10517. "symfony/form": "<5.4",
  10518. "symfony/mailer": "<5.4",
  10519. "symfony/messenger": "<5.4",
  10520. "symfony/twig-bundle": ">=7.0"
  10521. },
  10522. "require-dev": {
  10523. "symfony/browser-kit": "^5.4|^6.0|^7.0",
  10524. "symfony/console": "^5.4|^6.0|^7.0",
  10525. "symfony/css-selector": "^5.4|^6.0|^7.0",
  10526. "symfony/stopwatch": "^5.4|^6.0|^7.0"
  10527. },
  10528. "type": "symfony-bundle",
  10529. "autoload": {
  10530. "psr-4": {
  10531. "Symfony\\Bundle\\WebProfilerBundle\\": ""
  10532. },
  10533. "exclude-from-classmap": [
  10534. "/Tests/"
  10535. ]
  10536. },
  10537. "notification-url": "https://packagist.org/downloads/",
  10538. "license": [
  10539. "MIT"
  10540. ],
  10541. "authors": [
  10542. {
  10543. "name": "Fabien Potencier",
  10544. "email": "fabien@symfony.com"
  10545. },
  10546. {
  10547. "name": "Symfony Community",
  10548. "homepage": "https://symfony.com/contributors"
  10549. }
  10550. ],
  10551. "description": "Provides a development tool that gives detailed information about the execution of any request",
  10552. "homepage": "https://symfony.com",
  10553. "keywords": [
  10554. "dev"
  10555. ],
  10556. "support": {
  10557. "source": "https://github.com/symfony/web-profiler-bundle/tree/v6.4.3"
  10558. },
  10559. "funding": [
  10560. {
  10561. "url": "https://symfony.com/sponsor",
  10562. "type": "custom"
  10563. },
  10564. {
  10565. "url": "https://github.com/fabpot",
  10566. "type": "github"
  10567. },
  10568. {
  10569. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  10570. "type": "tidelift"
  10571. }
  10572. ],
  10573. "time": "2024-01-28T15:49:46+00:00"
  10574. },
  10575. {
  10576. "name": "theseer/tokenizer",
  10577. "version": "1.2.2",
  10578. "source": {
  10579. "type": "git",
  10580. "url": "https://github.com/theseer/tokenizer.git",
  10581. "reference": "b2ad5003ca10d4ee50a12da31de12a5774ba6b96"
  10582. },
  10583. "dist": {
  10584. "type": "zip",
  10585. "url": "https://api.github.com/repos/theseer/tokenizer/zipball/b2ad5003ca10d4ee50a12da31de12a5774ba6b96",
  10586. "reference": "b2ad5003ca10d4ee50a12da31de12a5774ba6b96",
  10587. "shasum": ""
  10588. },
  10589. "require": {
  10590. "ext-dom": "*",
  10591. "ext-tokenizer": "*",
  10592. "ext-xmlwriter": "*",
  10593. "php": "^7.2 || ^8.0"
  10594. },
  10595. "type": "library",
  10596. "autoload": {
  10597. "classmap": [
  10598. "src/"
  10599. ]
  10600. },
  10601. "notification-url": "https://packagist.org/downloads/",
  10602. "license": [
  10603. "BSD-3-Clause"
  10604. ],
  10605. "authors": [
  10606. {
  10607. "name": "Arne Blankerts",
  10608. "email": "arne@blankerts.de",
  10609. "role": "Developer"
  10610. }
  10611. ],
  10612. "description": "A small library for converting tokenized PHP source code into XML and potentially other formats",
  10613. "support": {
  10614. "issues": "https://github.com/theseer/tokenizer/issues",
  10615. "source": "https://github.com/theseer/tokenizer/tree/1.2.2"
  10616. },
  10617. "funding": [
  10618. {
  10619. "url": "https://github.com/theseer",
  10620. "type": "github"
  10621. }
  10622. ],
  10623. "time": "2023-11-20T00:12:19+00:00"
  10624. }
  10625. ],
  10626. "aliases": [],
  10627. "minimum-stability": "stable",
  10628. "stability-flags": [],
  10629. "prefer-stable": false,
  10630. "prefer-lowest": false,
  10631. "platform": {
  10632. "php": "^8.1",
  10633. "ext-ctype": "*",
  10634. "ext-iconv": "*"
  10635. },
  10636. "platform-dev": [],
  10637. "platform-overrides": {
  10638. "php": "8.1"
  10639. },
  10640. "plugin-api-version": "2.6.0"
  10641. }