composer.lock 355 KB

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