composer.lock 383 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298529953005301530253035304530553065307530853095310531153125313531453155316531753185319532053215322532353245325532653275328532953305331533253335334533553365337533853395340534153425343534453455346534753485349535053515352535353545355535653575358535953605361536253635364536553665367536853695370537153725373537453755376537753785379538053815382538353845385538653875388538953905391539253935394539553965397539853995400540154025403540454055406540754085409541054115412541354145415541654175418541954205421542254235424542554265427542854295430543154325433543454355436543754385439544054415442544354445445544654475448544954505451545254535454545554565457545854595460546154625463546454655466546754685469547054715472547354745475547654775478547954805481548254835484548554865487548854895490549154925493549454955496549754985499550055015502550355045505550655075508550955105511551255135514551555165517551855195520552155225523552455255526552755285529553055315532553355345535553655375538553955405541554255435544554555465547554855495550555155525553555455555556555755585559556055615562556355645565556655675568556955705571557255735574557555765577557855795580558155825583558455855586558755885589559055915592559355945595559655975598559956005601560256035604560556065607560856095610561156125613561456155616561756185619562056215622562356245625562656275628562956305631563256335634563556365637563856395640564156425643564456455646564756485649565056515652565356545655565656575658565956605661566256635664566556665667566856695670567156725673567456755676567756785679568056815682568356845685568656875688568956905691569256935694569556965697569856995700570157025703570457055706570757085709571057115712571357145715571657175718571957205721572257235724572557265727572857295730573157325733573457355736573757385739574057415742574357445745574657475748574957505751575257535754575557565757575857595760576157625763576457655766576757685769577057715772577357745775577657775778577957805781578257835784578557865787578857895790579157925793579457955796579757985799580058015802580358045805580658075808580958105811581258135814581558165817581858195820582158225823582458255826582758285829583058315832583358345835583658375838583958405841584258435844584558465847584858495850585158525853585458555856585758585859586058615862586358645865586658675868586958705871587258735874587558765877587858795880588158825883588458855886588758885889589058915892589358945895589658975898589959005901590259035904590559065907590859095910591159125913591459155916591759185919592059215922592359245925592659275928592959305931593259335934593559365937593859395940594159425943594459455946594759485949595059515952595359545955595659575958595959605961596259635964596559665967596859695970597159725973597459755976597759785979598059815982598359845985598659875988598959905991599259935994599559965997599859996000600160026003600460056006600760086009601060116012601360146015601660176018601960206021602260236024602560266027602860296030603160326033603460356036603760386039604060416042604360446045604660476048604960506051605260536054605560566057605860596060606160626063606460656066606760686069607060716072607360746075607660776078607960806081608260836084608560866087608860896090609160926093609460956096609760986099610061016102610361046105610661076108610961106111611261136114611561166117611861196120612161226123612461256126612761286129613061316132613361346135613661376138613961406141614261436144614561466147614861496150615161526153615461556156615761586159616061616162616361646165616661676168616961706171617261736174617561766177617861796180618161826183618461856186618761886189619061916192619361946195619661976198619962006201620262036204620562066207620862096210621162126213621462156216621762186219622062216222622362246225622662276228622962306231623262336234623562366237623862396240624162426243624462456246624762486249625062516252625362546255625662576258625962606261626262636264626562666267626862696270627162726273627462756276627762786279628062816282628362846285628662876288628962906291629262936294629562966297629862996300630163026303630463056306630763086309631063116312631363146315631663176318631963206321632263236324632563266327632863296330633163326333633463356336633763386339634063416342634363446345634663476348634963506351635263536354635563566357635863596360636163626363636463656366636763686369637063716372637363746375637663776378637963806381638263836384638563866387638863896390639163926393639463956396639763986399640064016402640364046405640664076408640964106411641264136414641564166417641864196420642164226423642464256426642764286429643064316432643364346435643664376438643964406441644264436444644564466447644864496450645164526453645464556456645764586459646064616462646364646465646664676468646964706471647264736474647564766477647864796480648164826483648464856486648764886489649064916492649364946495649664976498649965006501650265036504650565066507650865096510651165126513651465156516651765186519652065216522652365246525652665276528652965306531653265336534653565366537653865396540654165426543654465456546654765486549655065516552655365546555655665576558655965606561656265636564656565666567656865696570657165726573657465756576657765786579658065816582658365846585658665876588658965906591659265936594659565966597659865996600660166026603660466056606660766086609661066116612661366146615661666176618661966206621662266236624662566266627662866296630663166326633663466356636663766386639664066416642664366446645664666476648664966506651665266536654665566566657665866596660666166626663666466656666666766686669667066716672667366746675667666776678667966806681668266836684668566866687668866896690669166926693669466956696669766986699670067016702670367046705670667076708670967106711671267136714671567166717671867196720672167226723672467256726672767286729673067316732673367346735673667376738673967406741674267436744674567466747674867496750675167526753675467556756675767586759676067616762676367646765676667676768676967706771677267736774677567766777677867796780678167826783678467856786678767886789679067916792679367946795679667976798679968006801680268036804680568066807680868096810681168126813681468156816681768186819682068216822682368246825682668276828682968306831683268336834683568366837683868396840684168426843684468456846684768486849685068516852685368546855685668576858685968606861686268636864686568666867686868696870687168726873687468756876687768786879688068816882688368846885688668876888688968906891689268936894689568966897689868996900690169026903690469056906690769086909691069116912691369146915691669176918691969206921692269236924692569266927692869296930693169326933693469356936693769386939694069416942694369446945694669476948694969506951695269536954695569566957695869596960696169626963696469656966696769686969697069716972697369746975697669776978697969806981698269836984698569866987698869896990699169926993699469956996699769986999700070017002700370047005700670077008700970107011701270137014701570167017701870197020702170227023702470257026702770287029703070317032703370347035703670377038703970407041704270437044704570467047704870497050705170527053705470557056705770587059706070617062706370647065706670677068706970707071707270737074707570767077707870797080708170827083708470857086708770887089709070917092709370947095709670977098709971007101710271037104710571067107710871097110711171127113711471157116711771187119712071217122712371247125712671277128712971307131713271337134713571367137713871397140714171427143714471457146714771487149715071517152715371547155715671577158715971607161716271637164716571667167716871697170717171727173717471757176717771787179718071817182718371847185718671877188718971907191719271937194719571967197719871997200720172027203720472057206720772087209721072117212721372147215721672177218721972207221722272237224722572267227722872297230723172327233723472357236723772387239724072417242724372447245724672477248724972507251725272537254725572567257725872597260726172627263726472657266726772687269727072717272727372747275727672777278727972807281728272837284728572867287728872897290729172927293729472957296729772987299730073017302730373047305730673077308730973107311731273137314731573167317731873197320732173227323732473257326732773287329733073317332733373347335733673377338733973407341734273437344734573467347734873497350735173527353735473557356735773587359736073617362736373647365736673677368736973707371737273737374737573767377737873797380738173827383738473857386738773887389739073917392739373947395739673977398739974007401740274037404740574067407740874097410741174127413741474157416741774187419742074217422742374247425742674277428742974307431743274337434743574367437743874397440744174427443744474457446744774487449745074517452745374547455745674577458745974607461746274637464746574667467746874697470747174727473747474757476747774787479748074817482748374847485748674877488748974907491749274937494749574967497749874997500750175027503750475057506750775087509751075117512751375147515751675177518751975207521752275237524752575267527752875297530753175327533753475357536753775387539754075417542754375447545754675477548754975507551755275537554755575567557755875597560756175627563756475657566756775687569757075717572757375747575757675777578757975807581758275837584758575867587758875897590759175927593759475957596759775987599760076017602760376047605760676077608760976107611761276137614761576167617761876197620762176227623762476257626762776287629763076317632763376347635763676377638763976407641764276437644764576467647764876497650765176527653765476557656765776587659766076617662766376647665766676677668766976707671767276737674767576767677767876797680768176827683768476857686768776887689769076917692769376947695769676977698769977007701770277037704770577067707770877097710771177127713771477157716771777187719772077217722772377247725772677277728772977307731773277337734773577367737773877397740774177427743774477457746774777487749775077517752775377547755775677577758775977607761776277637764776577667767776877697770777177727773777477757776777777787779778077817782778377847785778677877788778977907791779277937794779577967797779877997800780178027803780478057806780778087809781078117812781378147815781678177818781978207821782278237824782578267827782878297830783178327833783478357836783778387839784078417842784378447845784678477848784978507851785278537854785578567857785878597860786178627863786478657866786778687869787078717872787378747875787678777878787978807881788278837884788578867887788878897890789178927893789478957896789778987899790079017902790379047905790679077908790979107911791279137914791579167917791879197920792179227923792479257926792779287929793079317932793379347935793679377938793979407941794279437944794579467947794879497950795179527953795479557956795779587959796079617962796379647965796679677968796979707971797279737974797579767977797879797980798179827983798479857986798779887989799079917992799379947995799679977998799980008001800280038004800580068007800880098010801180128013801480158016801780188019802080218022802380248025802680278028802980308031803280338034803580368037803880398040804180428043804480458046804780488049805080518052805380548055805680578058805980608061806280638064806580668067806880698070807180728073807480758076807780788079808080818082808380848085808680878088808980908091809280938094809580968097809880998100810181028103810481058106810781088109811081118112811381148115811681178118811981208121812281238124812581268127812881298130813181328133813481358136813781388139814081418142814381448145814681478148814981508151815281538154815581568157815881598160816181628163816481658166816781688169817081718172817381748175817681778178817981808181818281838184818581868187818881898190819181928193819481958196819781988199820082018202820382048205820682078208820982108211821282138214821582168217821882198220822182228223822482258226822782288229823082318232823382348235823682378238823982408241824282438244824582468247824882498250825182528253825482558256825782588259826082618262826382648265826682678268826982708271827282738274827582768277827882798280828182828283828482858286828782888289829082918292829382948295829682978298829983008301830283038304830583068307830883098310831183128313831483158316831783188319832083218322832383248325832683278328832983308331833283338334833583368337833883398340834183428343834483458346834783488349835083518352835383548355835683578358835983608361836283638364836583668367836883698370837183728373837483758376837783788379838083818382838383848385838683878388838983908391839283938394839583968397839883998400840184028403840484058406840784088409841084118412841384148415841684178418841984208421842284238424842584268427842884298430843184328433843484358436843784388439844084418442844384448445844684478448844984508451845284538454845584568457845884598460846184628463846484658466846784688469847084718472847384748475847684778478847984808481848284838484848584868487848884898490849184928493849484958496849784988499850085018502850385048505850685078508850985108511851285138514851585168517851885198520852185228523852485258526852785288529853085318532853385348535853685378538853985408541854285438544854585468547854885498550855185528553855485558556855785588559856085618562856385648565856685678568856985708571857285738574857585768577857885798580858185828583858485858586858785888589859085918592859385948595859685978598859986008601860286038604860586068607860886098610861186128613861486158616861786188619862086218622862386248625862686278628862986308631863286338634863586368637863886398640864186428643864486458646864786488649865086518652865386548655865686578658865986608661866286638664866586668667866886698670867186728673867486758676867786788679868086818682868386848685868686878688868986908691869286938694869586968697869886998700870187028703870487058706870787088709871087118712871387148715871687178718871987208721872287238724872587268727872887298730873187328733873487358736873787388739874087418742874387448745874687478748874987508751875287538754875587568757875887598760876187628763876487658766876787688769877087718772877387748775877687778778877987808781878287838784878587868787878887898790879187928793879487958796879787988799880088018802880388048805880688078808880988108811881288138814881588168817881888198820882188228823882488258826882788288829883088318832883388348835883688378838883988408841884288438844884588468847884888498850885188528853885488558856885788588859886088618862886388648865886688678868886988708871887288738874887588768877887888798880888188828883888488858886888788888889889088918892889388948895889688978898889989008901890289038904890589068907890889098910891189128913891489158916891789188919892089218922892389248925892689278928892989308931893289338934893589368937893889398940894189428943894489458946894789488949895089518952895389548955895689578958895989608961896289638964896589668967896889698970897189728973897489758976897789788979898089818982898389848985898689878988898989908991899289938994899589968997899889999000900190029003900490059006900790089009901090119012901390149015901690179018901990209021902290239024902590269027902890299030903190329033903490359036903790389039904090419042904390449045904690479048904990509051905290539054905590569057905890599060906190629063906490659066906790689069907090719072907390749075907690779078907990809081908290839084908590869087908890899090909190929093909490959096909790989099910091019102910391049105910691079108910991109111911291139114911591169117911891199120912191229123912491259126912791289129913091319132913391349135913691379138913991409141914291439144914591469147914891499150915191529153915491559156915791589159916091619162916391649165916691679168916991709171917291739174917591769177917891799180918191829183918491859186918791889189919091919192919391949195919691979198919992009201920292039204920592069207920892099210921192129213921492159216921792189219922092219222922392249225922692279228922992309231923292339234923592369237923892399240924192429243924492459246924792489249925092519252925392549255925692579258925992609261926292639264926592669267926892699270927192729273927492759276927792789279928092819282928392849285928692879288928992909291929292939294929592969297929892999300930193029303930493059306930793089309931093119312931393149315931693179318931993209321932293239324932593269327932893299330933193329333933493359336933793389339934093419342934393449345934693479348934993509351935293539354935593569357935893599360936193629363936493659366936793689369937093719372937393749375937693779378937993809381938293839384938593869387938893899390939193929393939493959396939793989399940094019402940394049405940694079408940994109411941294139414941594169417941894199420942194229423942494259426942794289429943094319432943394349435943694379438943994409441944294439444944594469447944894499450945194529453945494559456945794589459946094619462946394649465946694679468946994709471947294739474947594769477947894799480948194829483948494859486948794889489949094919492949394949495949694979498949995009501950295039504950595069507950895099510951195129513951495159516951795189519952095219522952395249525952695279528952995309531953295339534953595369537953895399540954195429543954495459546954795489549955095519552955395549555955695579558955995609561956295639564956595669567956895699570957195729573957495759576957795789579958095819582958395849585958695879588958995909591959295939594959595969597959895999600960196029603960496059606960796089609961096119612961396149615961696179618961996209621962296239624962596269627962896299630963196329633963496359636963796389639964096419642964396449645964696479648964996509651965296539654965596569657965896599660966196629663966496659666966796689669967096719672967396749675967696779678967996809681968296839684968596869687968896899690969196929693969496959696969796989699970097019702970397049705970697079708970997109711971297139714971597169717971897199720972197229723972497259726972797289729973097319732973397349735973697379738973997409741974297439744974597469747974897499750975197529753975497559756975797589759976097619762976397649765976697679768976997709771977297739774977597769777977897799780978197829783978497859786978797889789979097919792979397949795979697979798979998009801980298039804980598069807980898099810981198129813981498159816981798189819982098219822982398249825982698279828982998309831983298339834983598369837983898399840984198429843984498459846984798489849985098519852985398549855985698579858985998609861986298639864986598669867986898699870987198729873987498759876987798789879988098819882988398849885988698879888988998909891989298939894989598969897989898999900990199029903990499059906990799089909991099119912991399149915991699179918991999209921992299239924992599269927992899299930993199329933993499359936993799389939994099419942994399449945994699479948994999509951995299539954995599569957995899599960996199629963996499659966996799689969997099719972997399749975997699779978997999809981998299839984998599869987998899899990999199929993999499959996999799989999100001000110002100031000410005100061000710008100091001010011100121001310014100151001610017100181001910020100211002210023100241002510026100271002810029100301003110032100331003410035100361003710038100391004010041100421004310044100451004610047100481004910050100511005210053100541005510056100571005810059100601006110062100631006410065100661006710068100691007010071100721007310074100751007610077100781007910080100811008210083100841008510086100871008810089100901009110092100931009410095100961009710098100991010010101101021010310104101051010610107101081010910110101111011210113101141011510116101171011810119101201012110122101231012410125101261012710128101291013010131101321013310134101351013610137101381013910140101411014210143101441014510146101471014810149101501015110152101531015410155101561015710158101591016010161101621016310164101651016610167101681016910170101711017210173101741017510176101771017810179101801018110182101831018410185101861018710188101891019010191101921019310194101951019610197101981019910200102011020210203102041020510206102071020810209102101021110212102131021410215102161021710218102191022010221102221022310224102251022610227102281022910230102311023210233102341023510236102371023810239102401024110242102431024410245102461024710248102491025010251102521025310254102551025610257102581025910260102611026210263102641026510266102671026810269102701027110272102731027410275102761027710278102791028010281102821028310284102851028610287102881028910290102911029210293102941029510296102971029810299103001030110302103031030410305103061030710308103091031010311103121031310314103151031610317103181031910320103211032210323103241032510326103271032810329103301033110332103331033410335103361033710338103391034010341103421034310344103451034610347103481034910350103511035210353103541035510356103571035810359103601036110362103631036410365103661036710368103691037010371103721037310374103751037610377103781037910380103811038210383103841038510386103871038810389103901039110392103931039410395103961039710398103991040010401104021040310404104051040610407104081040910410104111041210413104141041510416104171041810419104201042110422104231042410425104261042710428104291043010431104321043310434104351043610437104381043910440104411044210443104441044510446104471044810449104501045110452104531045410455104561045710458104591046010461104621046310464104651046610467104681046910470104711047210473104741047510476104771047810479104801048110482104831048410485104861048710488104891049010491104921049310494104951049610497104981049910500105011050210503105041050510506105071050810509105101051110512105131051410515105161051710518105191052010521105221052310524105251052610527105281052910530105311053210533105341053510536105371053810539105401054110542105431054410545105461054710548105491055010551105521055310554105551055610557105581055910560105611056210563105641056510566105671056810569105701057110572105731057410575105761057710578105791058010581105821058310584105851058610587105881058910590105911059210593105941059510596105971059810599106001060110602106031060410605106061060710608106091061010611106121061310614106151061610617106181061910620106211062210623106241062510626106271062810629106301063110632
  1. {
  2. "_readme": [
  3. "This file locks the dependencies of your project to a known state",
  4. "Read more about it at https://getcomposer.org/doc/01-basic-usage.md#installing-dependencies",
  5. "This file is @generated automatically"
  6. ],
  7. "content-hash": "6032b0a35ad44d84618d557f1ba08409",
  8. "packages": [
  9. {
  10. "name": "beberlei/doctrineextensions",
  11. "version": "v1.5.0",
  12. "source": {
  13. "type": "git",
  14. "url": "https://github.com/beberlei/DoctrineExtensions.git",
  15. "reference": "281f1650641c2f438b0a54d8eaa7ba50ac7e3eb6"
  16. },
  17. "dist": {
  18. "type": "zip",
  19. "url": "https://api.github.com/repos/beberlei/DoctrineExtensions/zipball/281f1650641c2f438b0a54d8eaa7ba50ac7e3eb6",
  20. "reference": "281f1650641c2f438b0a54d8eaa7ba50ac7e3eb6",
  21. "shasum": ""
  22. },
  23. "require": {
  24. "doctrine/orm": "^2.19 || ^3.0",
  25. "php": "^7.2 || ^8.0"
  26. },
  27. "require-dev": {
  28. "doctrine/annotations": "^1.14 || ^2",
  29. "doctrine/coding-standard": "^9.0.2 || ^12.0",
  30. "nesbot/carbon": "^2.72 || ^3",
  31. "phpstan/phpstan": "^1.10",
  32. "phpunit/phpunit": "^8.5 || ^9.6",
  33. "squizlabs/php_codesniffer": "^3.8",
  34. "symfony/cache": "^5.4 || ^6.4 || ^7.0",
  35. "symfony/yaml": "^5.4 || ^6.4 || ^7.0",
  36. "vimeo/psalm": "^3.18 || ^5.22",
  37. "zf1/zend-date": "^1.12",
  38. "zf1/zend-registry": "^1.12"
  39. },
  40. "type": "library",
  41. "autoload": {
  42. "psr-4": {
  43. "DoctrineExtensions\\": "src/"
  44. }
  45. },
  46. "notification-url": "https://packagist.org/downloads/",
  47. "license": [
  48. "BSD-3-Clause"
  49. ],
  50. "authors": [
  51. {
  52. "name": "Benjamin Eberlei",
  53. "email": "kontakt@beberlei.de"
  54. },
  55. {
  56. "name": "Steve Lacey",
  57. "email": "steve@steve.ly"
  58. }
  59. ],
  60. "description": "A set of extensions to Doctrine 2 that add support for additional query functions available in MySQL, Oracle, PostgreSQL and SQLite.",
  61. "keywords": [
  62. "database",
  63. "doctrine",
  64. "orm"
  65. ],
  66. "support": {
  67. "source": "https://github.com/beberlei/DoctrineExtensions/tree/v1.5.0"
  68. },
  69. "time": "2024-03-03T17:55:15+00:00"
  70. },
  71. {
  72. "name": "composer/package-versions-deprecated",
  73. "version": "1.11.99.5",
  74. "source": {
  75. "type": "git",
  76. "url": "https://github.com/composer/package-versions-deprecated.git",
  77. "reference": "b4f54f74ef3453349c24a845d22392cd31e65f1d"
  78. },
  79. "dist": {
  80. "type": "zip",
  81. "url": "https://api.github.com/repos/composer/package-versions-deprecated/zipball/b4f54f74ef3453349c24a845d22392cd31e65f1d",
  82. "reference": "b4f54f74ef3453349c24a845d22392cd31e65f1d",
  83. "shasum": ""
  84. },
  85. "require": {
  86. "composer-plugin-api": "^1.1.0 || ^2.0",
  87. "php": "^7 || ^8"
  88. },
  89. "replace": {
  90. "ocramius/package-versions": "1.11.99"
  91. },
  92. "require-dev": {
  93. "composer/composer": "^1.9.3 || ^2.0@dev",
  94. "ext-zip": "^1.13",
  95. "phpunit/phpunit": "^6.5 || ^7"
  96. },
  97. "type": "composer-plugin",
  98. "extra": {
  99. "class": "PackageVersions\\Installer",
  100. "branch-alias": {
  101. "dev-master": "1.x-dev"
  102. }
  103. },
  104. "autoload": {
  105. "psr-4": {
  106. "PackageVersions\\": "src/PackageVersions"
  107. }
  108. },
  109. "notification-url": "https://packagist.org/downloads/",
  110. "license": [
  111. "MIT"
  112. ],
  113. "authors": [
  114. {
  115. "name": "Marco Pivetta",
  116. "email": "ocramius@gmail.com"
  117. },
  118. {
  119. "name": "Jordi Boggiano",
  120. "email": "j.boggiano@seld.be"
  121. }
  122. ],
  123. "description": "Composer plugin that provides efficient querying for installed package versions (no runtime IO)",
  124. "support": {
  125. "issues": "https://github.com/composer/package-versions-deprecated/issues",
  126. "source": "https://github.com/composer/package-versions-deprecated/tree/1.11.99.5"
  127. },
  128. "funding": [
  129. {
  130. "url": "https://packagist.com",
  131. "type": "custom"
  132. },
  133. {
  134. "url": "https://github.com/composer",
  135. "type": "github"
  136. },
  137. {
  138. "url": "https://tidelift.com/funding/github/packagist/composer/composer",
  139. "type": "tidelift"
  140. }
  141. ],
  142. "time": "2022-01-17T14:14:24+00:00"
  143. },
  144. {
  145. "name": "dflydev/dot-access-data",
  146. "version": "v3.0.3",
  147. "source": {
  148. "type": "git",
  149. "url": "https://github.com/dflydev/dflydev-dot-access-data.git",
  150. "reference": "a23a2bf4f31d3518f3ecb38660c95715dfead60f"
  151. },
  152. "dist": {
  153. "type": "zip",
  154. "url": "https://api.github.com/repos/dflydev/dflydev-dot-access-data/zipball/a23a2bf4f31d3518f3ecb38660c95715dfead60f",
  155. "reference": "a23a2bf4f31d3518f3ecb38660c95715dfead60f",
  156. "shasum": ""
  157. },
  158. "require": {
  159. "php": "^7.1 || ^8.0"
  160. },
  161. "require-dev": {
  162. "phpstan/phpstan": "^0.12.42",
  163. "phpunit/phpunit": "^7.5 || ^8.5 || ^9.3",
  164. "scrutinizer/ocular": "1.6.0",
  165. "squizlabs/php_codesniffer": "^3.5",
  166. "vimeo/psalm": "^4.0.0"
  167. },
  168. "type": "library",
  169. "extra": {
  170. "branch-alias": {
  171. "dev-main": "3.x-dev"
  172. }
  173. },
  174. "autoload": {
  175. "psr-4": {
  176. "Dflydev\\DotAccessData\\": "src/"
  177. }
  178. },
  179. "notification-url": "https://packagist.org/downloads/",
  180. "license": [
  181. "MIT"
  182. ],
  183. "authors": [
  184. {
  185. "name": "Dragonfly Development Inc.",
  186. "email": "info@dflydev.com",
  187. "homepage": "http://dflydev.com"
  188. },
  189. {
  190. "name": "Beau Simensen",
  191. "email": "beau@dflydev.com",
  192. "homepage": "http://beausimensen.com"
  193. },
  194. {
  195. "name": "Carlos Frutos",
  196. "email": "carlos@kiwing.it",
  197. "homepage": "https://github.com/cfrutos"
  198. },
  199. {
  200. "name": "Colin O'Dell",
  201. "email": "colinodell@gmail.com",
  202. "homepage": "https://www.colinodell.com"
  203. }
  204. ],
  205. "description": "Given a deep data structure, access data by dot notation.",
  206. "homepage": "https://github.com/dflydev/dflydev-dot-access-data",
  207. "keywords": [
  208. "access",
  209. "data",
  210. "dot",
  211. "notation"
  212. ],
  213. "support": {
  214. "issues": "https://github.com/dflydev/dflydev-dot-access-data/issues",
  215. "source": "https://github.com/dflydev/dflydev-dot-access-data/tree/v3.0.3"
  216. },
  217. "time": "2024-07-08T12:26:09+00:00"
  218. },
  219. {
  220. "name": "doctrine/annotations",
  221. "version": "2.0.1",
  222. "source": {
  223. "type": "git",
  224. "url": "https://github.com/doctrine/annotations.git",
  225. "reference": "e157ef3f3124bbf6fe7ce0ffd109e8a8ef284e7f"
  226. },
  227. "dist": {
  228. "type": "zip",
  229. "url": "https://api.github.com/repos/doctrine/annotations/zipball/e157ef3f3124bbf6fe7ce0ffd109e8a8ef284e7f",
  230. "reference": "e157ef3f3124bbf6fe7ce0ffd109e8a8ef284e7f",
  231. "shasum": ""
  232. },
  233. "require": {
  234. "doctrine/lexer": "^2 || ^3",
  235. "ext-tokenizer": "*",
  236. "php": "^7.2 || ^8.0",
  237. "psr/cache": "^1 || ^2 || ^3"
  238. },
  239. "require-dev": {
  240. "doctrine/cache": "^2.0",
  241. "doctrine/coding-standard": "^10",
  242. "phpstan/phpstan": "^1.8.0",
  243. "phpunit/phpunit": "^7.5 || ^8.5 || ^9.5",
  244. "symfony/cache": "^5.4 || ^6",
  245. "vimeo/psalm": "^4.10"
  246. },
  247. "suggest": {
  248. "php": "PHP 8.0 or higher comes with attributes, a native replacement for annotations"
  249. },
  250. "type": "library",
  251. "autoload": {
  252. "psr-4": {
  253. "Doctrine\\Common\\Annotations\\": "lib/Doctrine/Common/Annotations"
  254. }
  255. },
  256. "notification-url": "https://packagist.org/downloads/",
  257. "license": [
  258. "MIT"
  259. ],
  260. "authors": [
  261. {
  262. "name": "Guilherme Blanco",
  263. "email": "guilhermeblanco@gmail.com"
  264. },
  265. {
  266. "name": "Roman Borschel",
  267. "email": "roman@code-factory.org"
  268. },
  269. {
  270. "name": "Benjamin Eberlei",
  271. "email": "kontakt@beberlei.de"
  272. },
  273. {
  274. "name": "Jonathan Wage",
  275. "email": "jonwage@gmail.com"
  276. },
  277. {
  278. "name": "Johannes Schmitt",
  279. "email": "schmittjoh@gmail.com"
  280. }
  281. ],
  282. "description": "Docblock Annotations Parser",
  283. "homepage": "https://www.doctrine-project.org/projects/annotations.html",
  284. "keywords": [
  285. "annotations",
  286. "docblock",
  287. "parser"
  288. ],
  289. "support": {
  290. "issues": "https://github.com/doctrine/annotations/issues",
  291. "source": "https://github.com/doctrine/annotations/tree/2.0.1"
  292. },
  293. "time": "2023-02-02T22:02:53+00:00"
  294. },
  295. {
  296. "name": "doctrine/cache",
  297. "version": "2.2.0",
  298. "source": {
  299. "type": "git",
  300. "url": "https://github.com/doctrine/cache.git",
  301. "reference": "1ca8f21980e770095a31456042471a57bc4c68fb"
  302. },
  303. "dist": {
  304. "type": "zip",
  305. "url": "https://api.github.com/repos/doctrine/cache/zipball/1ca8f21980e770095a31456042471a57bc4c68fb",
  306. "reference": "1ca8f21980e770095a31456042471a57bc4c68fb",
  307. "shasum": ""
  308. },
  309. "require": {
  310. "php": "~7.1 || ^8.0"
  311. },
  312. "conflict": {
  313. "doctrine/common": ">2.2,<2.4"
  314. },
  315. "require-dev": {
  316. "cache/integration-tests": "dev-master",
  317. "doctrine/coding-standard": "^9",
  318. "phpunit/phpunit": "^7.5 || ^8.5 || ^9.5",
  319. "psr/cache": "^1.0 || ^2.0 || ^3.0",
  320. "symfony/cache": "^4.4 || ^5.4 || ^6",
  321. "symfony/var-exporter": "^4.4 || ^5.4 || ^6"
  322. },
  323. "type": "library",
  324. "autoload": {
  325. "psr-4": {
  326. "Doctrine\\Common\\Cache\\": "lib/Doctrine/Common/Cache"
  327. }
  328. },
  329. "notification-url": "https://packagist.org/downloads/",
  330. "license": [
  331. "MIT"
  332. ],
  333. "authors": [
  334. {
  335. "name": "Guilherme Blanco",
  336. "email": "guilhermeblanco@gmail.com"
  337. },
  338. {
  339. "name": "Roman Borschel",
  340. "email": "roman@code-factory.org"
  341. },
  342. {
  343. "name": "Benjamin Eberlei",
  344. "email": "kontakt@beberlei.de"
  345. },
  346. {
  347. "name": "Jonathan Wage",
  348. "email": "jonwage@gmail.com"
  349. },
  350. {
  351. "name": "Johannes Schmitt",
  352. "email": "schmittjoh@gmail.com"
  353. }
  354. ],
  355. "description": "PHP Doctrine Cache library is a popular cache implementation that supports many different drivers such as redis, memcache, apc, mongodb and others.",
  356. "homepage": "https://www.doctrine-project.org/projects/cache.html",
  357. "keywords": [
  358. "abstraction",
  359. "apcu",
  360. "cache",
  361. "caching",
  362. "couchdb",
  363. "memcached",
  364. "php",
  365. "redis",
  366. "xcache"
  367. ],
  368. "support": {
  369. "issues": "https://github.com/doctrine/cache/issues",
  370. "source": "https://github.com/doctrine/cache/tree/2.2.0"
  371. },
  372. "funding": [
  373. {
  374. "url": "https://www.doctrine-project.org/sponsorship.html",
  375. "type": "custom"
  376. },
  377. {
  378. "url": "https://www.patreon.com/phpdoctrine",
  379. "type": "patreon"
  380. },
  381. {
  382. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fcache",
  383. "type": "tidelift"
  384. }
  385. ],
  386. "time": "2022-05-20T20:07:39+00:00"
  387. },
  388. {
  389. "name": "doctrine/collections",
  390. "version": "2.2.2",
  391. "source": {
  392. "type": "git",
  393. "url": "https://github.com/doctrine/collections.git",
  394. "reference": "d8af7f248c74f195f7347424600fd9e17b57af59"
  395. },
  396. "dist": {
  397. "type": "zip",
  398. "url": "https://api.github.com/repos/doctrine/collections/zipball/d8af7f248c74f195f7347424600fd9e17b57af59",
  399. "reference": "d8af7f248c74f195f7347424600fd9e17b57af59",
  400. "shasum": ""
  401. },
  402. "require": {
  403. "doctrine/deprecations": "^1",
  404. "php": "^8.1"
  405. },
  406. "require-dev": {
  407. "doctrine/coding-standard": "^12",
  408. "ext-json": "*",
  409. "phpstan/phpstan": "^1.8",
  410. "phpstan/phpstan-phpunit": "^1.0",
  411. "phpunit/phpunit": "^10.5",
  412. "vimeo/psalm": "^5.11"
  413. },
  414. "type": "library",
  415. "autoload": {
  416. "psr-4": {
  417. "Doctrine\\Common\\Collections\\": "src"
  418. }
  419. },
  420. "notification-url": "https://packagist.org/downloads/",
  421. "license": [
  422. "MIT"
  423. ],
  424. "authors": [
  425. {
  426. "name": "Guilherme Blanco",
  427. "email": "guilhermeblanco@gmail.com"
  428. },
  429. {
  430. "name": "Roman Borschel",
  431. "email": "roman@code-factory.org"
  432. },
  433. {
  434. "name": "Benjamin Eberlei",
  435. "email": "kontakt@beberlei.de"
  436. },
  437. {
  438. "name": "Jonathan Wage",
  439. "email": "jonwage@gmail.com"
  440. },
  441. {
  442. "name": "Johannes Schmitt",
  443. "email": "schmittjoh@gmail.com"
  444. }
  445. ],
  446. "description": "PHP Doctrine Collections library that adds additional functionality on top of PHP arrays.",
  447. "homepage": "https://www.doctrine-project.org/projects/collections.html",
  448. "keywords": [
  449. "array",
  450. "collections",
  451. "iterators",
  452. "php"
  453. ],
  454. "support": {
  455. "issues": "https://github.com/doctrine/collections/issues",
  456. "source": "https://github.com/doctrine/collections/tree/2.2.2"
  457. },
  458. "funding": [
  459. {
  460. "url": "https://www.doctrine-project.org/sponsorship.html",
  461. "type": "custom"
  462. },
  463. {
  464. "url": "https://www.patreon.com/phpdoctrine",
  465. "type": "patreon"
  466. },
  467. {
  468. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fcollections",
  469. "type": "tidelift"
  470. }
  471. ],
  472. "time": "2024-04-18T06:56:21+00:00"
  473. },
  474. {
  475. "name": "doctrine/dbal",
  476. "version": "4.0.4",
  477. "source": {
  478. "type": "git",
  479. "url": "https://github.com/doctrine/dbal.git",
  480. "reference": "50fda19f80724b55ff770bb4ff352407008e63c5"
  481. },
  482. "dist": {
  483. "type": "zip",
  484. "url": "https://api.github.com/repos/doctrine/dbal/zipball/50fda19f80724b55ff770bb4ff352407008e63c5",
  485. "reference": "50fda19f80724b55ff770bb4ff352407008e63c5",
  486. "shasum": ""
  487. },
  488. "require": {
  489. "doctrine/deprecations": "^0.5.3|^1",
  490. "php": "^8.1",
  491. "psr/cache": "^1|^2|^3",
  492. "psr/log": "^1|^2|^3"
  493. },
  494. "require-dev": {
  495. "doctrine/coding-standard": "12.0.0",
  496. "fig/log-test": "^1",
  497. "jetbrains/phpstorm-stubs": "2023.2",
  498. "phpstan/phpstan": "1.11.5",
  499. "phpstan/phpstan-phpunit": "1.4.0",
  500. "phpstan/phpstan-strict-rules": "^1.6",
  501. "phpunit/phpunit": "10.5.22",
  502. "psalm/plugin-phpunit": "0.19.0",
  503. "slevomat/coding-standard": "8.13.1",
  504. "squizlabs/php_codesniffer": "3.10.1",
  505. "symfony/cache": "^6.3.8|^7.0",
  506. "symfony/console": "^5.4|^6.3|^7.0",
  507. "vimeo/psalm": "5.24.0"
  508. },
  509. "suggest": {
  510. "symfony/console": "For helpful console commands such as SQL execution and import of files."
  511. },
  512. "type": "library",
  513. "autoload": {
  514. "psr-4": {
  515. "Doctrine\\DBAL\\": "src"
  516. }
  517. },
  518. "notification-url": "https://packagist.org/downloads/",
  519. "license": [
  520. "MIT"
  521. ],
  522. "authors": [
  523. {
  524. "name": "Guilherme Blanco",
  525. "email": "guilhermeblanco@gmail.com"
  526. },
  527. {
  528. "name": "Roman Borschel",
  529. "email": "roman@code-factory.org"
  530. },
  531. {
  532. "name": "Benjamin Eberlei",
  533. "email": "kontakt@beberlei.de"
  534. },
  535. {
  536. "name": "Jonathan Wage",
  537. "email": "jonwage@gmail.com"
  538. }
  539. ],
  540. "description": "Powerful PHP database abstraction layer (DBAL) with many features for database schema introspection and management.",
  541. "homepage": "https://www.doctrine-project.org/projects/dbal.html",
  542. "keywords": [
  543. "abstraction",
  544. "database",
  545. "db2",
  546. "dbal",
  547. "mariadb",
  548. "mssql",
  549. "mysql",
  550. "oci8",
  551. "oracle",
  552. "pdo",
  553. "pgsql",
  554. "postgresql",
  555. "queryobject",
  556. "sasql",
  557. "sql",
  558. "sqlite",
  559. "sqlserver",
  560. "sqlsrv"
  561. ],
  562. "support": {
  563. "issues": "https://github.com/doctrine/dbal/issues",
  564. "source": "https://github.com/doctrine/dbal/tree/4.0.4"
  565. },
  566. "funding": [
  567. {
  568. "url": "https://www.doctrine-project.org/sponsorship.html",
  569. "type": "custom"
  570. },
  571. {
  572. "url": "https://www.patreon.com/phpdoctrine",
  573. "type": "patreon"
  574. },
  575. {
  576. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fdbal",
  577. "type": "tidelift"
  578. }
  579. ],
  580. "time": "2024-06-19T11:57:23+00:00"
  581. },
  582. {
  583. "name": "doctrine/deprecations",
  584. "version": "1.1.3",
  585. "source": {
  586. "type": "git",
  587. "url": "https://github.com/doctrine/deprecations.git",
  588. "reference": "dfbaa3c2d2e9a9df1118213f3b8b0c597bb99fab"
  589. },
  590. "dist": {
  591. "type": "zip",
  592. "url": "https://api.github.com/repos/doctrine/deprecations/zipball/dfbaa3c2d2e9a9df1118213f3b8b0c597bb99fab",
  593. "reference": "dfbaa3c2d2e9a9df1118213f3b8b0c597bb99fab",
  594. "shasum": ""
  595. },
  596. "require": {
  597. "php": "^7.1 || ^8.0"
  598. },
  599. "require-dev": {
  600. "doctrine/coding-standard": "^9",
  601. "phpstan/phpstan": "1.4.10 || 1.10.15",
  602. "phpstan/phpstan-phpunit": "^1.0",
  603. "phpunit/phpunit": "^7.5 || ^8.5 || ^9.5",
  604. "psalm/plugin-phpunit": "0.18.4",
  605. "psr/log": "^1 || ^2 || ^3",
  606. "vimeo/psalm": "4.30.0 || 5.12.0"
  607. },
  608. "suggest": {
  609. "psr/log": "Allows logging deprecations via PSR-3 logger implementation"
  610. },
  611. "type": "library",
  612. "autoload": {
  613. "psr-4": {
  614. "Doctrine\\Deprecations\\": "lib/Doctrine/Deprecations"
  615. }
  616. },
  617. "notification-url": "https://packagist.org/downloads/",
  618. "license": [
  619. "MIT"
  620. ],
  621. "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.",
  622. "homepage": "https://www.doctrine-project.org/",
  623. "support": {
  624. "issues": "https://github.com/doctrine/deprecations/issues",
  625. "source": "https://github.com/doctrine/deprecations/tree/1.1.3"
  626. },
  627. "time": "2024-01-30T19:34:25+00:00"
  628. },
  629. {
  630. "name": "doctrine/doctrine-bundle",
  631. "version": "2.12.0",
  632. "source": {
  633. "type": "git",
  634. "url": "https://github.com/doctrine/DoctrineBundle.git",
  635. "reference": "5418e811a14724068e95e0ba43353b903ada530f"
  636. },
  637. "dist": {
  638. "type": "zip",
  639. "url": "https://api.github.com/repos/doctrine/DoctrineBundle/zipball/5418e811a14724068e95e0ba43353b903ada530f",
  640. "reference": "5418e811a14724068e95e0ba43353b903ada530f",
  641. "shasum": ""
  642. },
  643. "require": {
  644. "doctrine/cache": "^1.11 || ^2.0",
  645. "doctrine/dbal": "^3.7.0 || ^4.0",
  646. "doctrine/persistence": "^2.2 || ^3",
  647. "doctrine/sql-formatter": "^1.0.1",
  648. "php": "^7.4 || ^8.0",
  649. "symfony/cache": "^5.4 || ^6.0 || ^7.0",
  650. "symfony/config": "^5.4 || ^6.0 || ^7.0",
  651. "symfony/console": "^5.4 || ^6.0 || ^7.0",
  652. "symfony/dependency-injection": "^5.4 || ^6.0 || ^7.0",
  653. "symfony/deprecation-contracts": "^2.1 || ^3",
  654. "symfony/doctrine-bridge": "^5.4.19 || ^6.0.7 || ^7.0",
  655. "symfony/framework-bundle": "^5.4 || ^6.0 || ^7.0",
  656. "symfony/polyfill-php80": "^1.15",
  657. "symfony/service-contracts": "^1.1.1 || ^2.0 || ^3"
  658. },
  659. "conflict": {
  660. "doctrine/annotations": ">=3.0",
  661. "doctrine/orm": "<2.17 || >=4.0",
  662. "twig/twig": "<1.34 || >=2.0 <2.4"
  663. },
  664. "require-dev": {
  665. "doctrine/annotations": "^1 || ^2",
  666. "doctrine/coding-standard": "^12",
  667. "doctrine/deprecations": "^1.0",
  668. "doctrine/orm": "^2.17 || ^3.0",
  669. "friendsofphp/proxy-manager-lts": "^1.0",
  670. "phpunit/phpunit": "^9.5.26",
  671. "psalm/plugin-phpunit": "^0.18.4",
  672. "psalm/plugin-symfony": "^5",
  673. "psr/log": "^1.1.4 || ^2.0 || ^3.0",
  674. "symfony/phpunit-bridge": "^6.1 || ^7.0",
  675. "symfony/property-info": "^5.4 || ^6.0 || ^7.0",
  676. "symfony/proxy-manager-bridge": "^5.4 || ^6.0 || ^7.0",
  677. "symfony/security-bundle": "^5.4 || ^6.0 || ^7.0",
  678. "symfony/stopwatch": "^5.4 || ^6.0 || ^7.0",
  679. "symfony/string": "^5.4 || ^6.0 || ^7.0",
  680. "symfony/twig-bridge": "^5.4 || ^6.0 || ^7.0",
  681. "symfony/validator": "^5.4 || ^6.0 || ^7.0",
  682. "symfony/var-exporter": "^5.4 || ^6.2 || ^7.0",
  683. "symfony/web-profiler-bundle": "^5.4 || ^6.0 || ^7.0",
  684. "symfony/yaml": "^5.4 || ^6.0 || ^7.0",
  685. "twig/twig": "^1.34 || ^2.12 || ^3.0",
  686. "vimeo/psalm": "^5.15"
  687. },
  688. "suggest": {
  689. "doctrine/orm": "The Doctrine ORM integration is optional in the bundle.",
  690. "ext-pdo": "*",
  691. "symfony/web-profiler-bundle": "To use the data collector."
  692. },
  693. "type": "symfony-bundle",
  694. "autoload": {
  695. "psr-4": {
  696. "Doctrine\\Bundle\\DoctrineBundle\\": "src"
  697. }
  698. },
  699. "notification-url": "https://packagist.org/downloads/",
  700. "license": [
  701. "MIT"
  702. ],
  703. "authors": [
  704. {
  705. "name": "Fabien Potencier",
  706. "email": "fabien@symfony.com"
  707. },
  708. {
  709. "name": "Benjamin Eberlei",
  710. "email": "kontakt@beberlei.de"
  711. },
  712. {
  713. "name": "Symfony Community",
  714. "homepage": "https://symfony.com/contributors"
  715. },
  716. {
  717. "name": "Doctrine Project",
  718. "homepage": "https://www.doctrine-project.org/"
  719. }
  720. ],
  721. "description": "Symfony DoctrineBundle",
  722. "homepage": "https://www.doctrine-project.org",
  723. "keywords": [
  724. "database",
  725. "dbal",
  726. "orm",
  727. "persistence"
  728. ],
  729. "support": {
  730. "issues": "https://github.com/doctrine/DoctrineBundle/issues",
  731. "source": "https://github.com/doctrine/DoctrineBundle/tree/2.12.0"
  732. },
  733. "funding": [
  734. {
  735. "url": "https://www.doctrine-project.org/sponsorship.html",
  736. "type": "custom"
  737. },
  738. {
  739. "url": "https://www.patreon.com/phpdoctrine",
  740. "type": "patreon"
  741. },
  742. {
  743. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fdoctrine-bundle",
  744. "type": "tidelift"
  745. }
  746. ],
  747. "time": "2024-03-19T07:20:37+00:00"
  748. },
  749. {
  750. "name": "doctrine/doctrine-migrations-bundle",
  751. "version": "3.3.1",
  752. "source": {
  753. "type": "git",
  754. "url": "https://github.com/doctrine/DoctrineMigrationsBundle.git",
  755. "reference": "715b62c31a5894afcb2b2cdbbc6607d7dd0580c0"
  756. },
  757. "dist": {
  758. "type": "zip",
  759. "url": "https://api.github.com/repos/doctrine/DoctrineMigrationsBundle/zipball/715b62c31a5894afcb2b2cdbbc6607d7dd0580c0",
  760. "reference": "715b62c31a5894afcb2b2cdbbc6607d7dd0580c0",
  761. "shasum": ""
  762. },
  763. "require": {
  764. "doctrine/doctrine-bundle": "^2.4",
  765. "doctrine/migrations": "^3.2",
  766. "php": "^7.2|^8.0",
  767. "symfony/deprecation-contracts": "^2.1 || ^3",
  768. "symfony/framework-bundle": "^5.4 || ^6.0 || ^7.0"
  769. },
  770. "require-dev": {
  771. "composer/semver": "^3.0",
  772. "doctrine/coding-standard": "^12",
  773. "doctrine/orm": "^2.6 || ^3",
  774. "doctrine/persistence": "^2.0 || ^3 ",
  775. "phpstan/phpstan": "^1.4",
  776. "phpstan/phpstan-deprecation-rules": "^1",
  777. "phpstan/phpstan-phpunit": "^1",
  778. "phpstan/phpstan-strict-rules": "^1.1",
  779. "phpstan/phpstan-symfony": "^1.3",
  780. "phpunit/phpunit": "^8.5|^9.5",
  781. "psalm/plugin-phpunit": "^0.18.4",
  782. "psalm/plugin-symfony": "^3 || ^5",
  783. "symfony/phpunit-bridge": "^6.3 || ^7",
  784. "symfony/var-exporter": "^5.4 || ^6 || ^7",
  785. "vimeo/psalm": "^4.30 || ^5.15"
  786. },
  787. "type": "symfony-bundle",
  788. "autoload": {
  789. "psr-4": {
  790. "Doctrine\\Bundle\\MigrationsBundle\\": ""
  791. },
  792. "exclude-from-classmap": [
  793. "/Tests/"
  794. ]
  795. },
  796. "notification-url": "https://packagist.org/downloads/",
  797. "license": [
  798. "MIT"
  799. ],
  800. "authors": [
  801. {
  802. "name": "Fabien Potencier",
  803. "email": "fabien@symfony.com"
  804. },
  805. {
  806. "name": "Doctrine Project",
  807. "homepage": "https://www.doctrine-project.org"
  808. },
  809. {
  810. "name": "Symfony Community",
  811. "homepage": "https://symfony.com/contributors"
  812. }
  813. ],
  814. "description": "Symfony DoctrineMigrationsBundle",
  815. "homepage": "https://www.doctrine-project.org",
  816. "keywords": [
  817. "dbal",
  818. "migrations",
  819. "schema"
  820. ],
  821. "support": {
  822. "issues": "https://github.com/doctrine/DoctrineMigrationsBundle/issues",
  823. "source": "https://github.com/doctrine/DoctrineMigrationsBundle/tree/3.3.1"
  824. },
  825. "funding": [
  826. {
  827. "url": "https://www.doctrine-project.org/sponsorship.html",
  828. "type": "custom"
  829. },
  830. {
  831. "url": "https://www.patreon.com/phpdoctrine",
  832. "type": "patreon"
  833. },
  834. {
  835. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fdoctrine-migrations-bundle",
  836. "type": "tidelift"
  837. }
  838. ],
  839. "time": "2024-05-14T20:32:18+00:00"
  840. },
  841. {
  842. "name": "doctrine/event-manager",
  843. "version": "2.0.1",
  844. "source": {
  845. "type": "git",
  846. "url": "https://github.com/doctrine/event-manager.git",
  847. "reference": "b680156fa328f1dfd874fd48c7026c41570b9c6e"
  848. },
  849. "dist": {
  850. "type": "zip",
  851. "url": "https://api.github.com/repos/doctrine/event-manager/zipball/b680156fa328f1dfd874fd48c7026c41570b9c6e",
  852. "reference": "b680156fa328f1dfd874fd48c7026c41570b9c6e",
  853. "shasum": ""
  854. },
  855. "require": {
  856. "php": "^8.1"
  857. },
  858. "conflict": {
  859. "doctrine/common": "<2.9"
  860. },
  861. "require-dev": {
  862. "doctrine/coding-standard": "^12",
  863. "phpstan/phpstan": "^1.8.8",
  864. "phpunit/phpunit": "^10.5",
  865. "vimeo/psalm": "^5.24"
  866. },
  867. "type": "library",
  868. "autoload": {
  869. "psr-4": {
  870. "Doctrine\\Common\\": "src"
  871. }
  872. },
  873. "notification-url": "https://packagist.org/downloads/",
  874. "license": [
  875. "MIT"
  876. ],
  877. "authors": [
  878. {
  879. "name": "Guilherme Blanco",
  880. "email": "guilhermeblanco@gmail.com"
  881. },
  882. {
  883. "name": "Roman Borschel",
  884. "email": "roman@code-factory.org"
  885. },
  886. {
  887. "name": "Benjamin Eberlei",
  888. "email": "kontakt@beberlei.de"
  889. },
  890. {
  891. "name": "Jonathan Wage",
  892. "email": "jonwage@gmail.com"
  893. },
  894. {
  895. "name": "Johannes Schmitt",
  896. "email": "schmittjoh@gmail.com"
  897. },
  898. {
  899. "name": "Marco Pivetta",
  900. "email": "ocramius@gmail.com"
  901. }
  902. ],
  903. "description": "The Doctrine Event Manager is a simple PHP event system that was built to be used with the various Doctrine projects.",
  904. "homepage": "https://www.doctrine-project.org/projects/event-manager.html",
  905. "keywords": [
  906. "event",
  907. "event dispatcher",
  908. "event manager",
  909. "event system",
  910. "events"
  911. ],
  912. "support": {
  913. "issues": "https://github.com/doctrine/event-manager/issues",
  914. "source": "https://github.com/doctrine/event-manager/tree/2.0.1"
  915. },
  916. "funding": [
  917. {
  918. "url": "https://www.doctrine-project.org/sponsorship.html",
  919. "type": "custom"
  920. },
  921. {
  922. "url": "https://www.patreon.com/phpdoctrine",
  923. "type": "patreon"
  924. },
  925. {
  926. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fevent-manager",
  927. "type": "tidelift"
  928. }
  929. ],
  930. "time": "2024-05-22T20:47:39+00:00"
  931. },
  932. {
  933. "name": "doctrine/inflector",
  934. "version": "2.0.10",
  935. "source": {
  936. "type": "git",
  937. "url": "https://github.com/doctrine/inflector.git",
  938. "reference": "5817d0659c5b50c9b950feb9af7b9668e2c436bc"
  939. },
  940. "dist": {
  941. "type": "zip",
  942. "url": "https://api.github.com/repos/doctrine/inflector/zipball/5817d0659c5b50c9b950feb9af7b9668e2c436bc",
  943. "reference": "5817d0659c5b50c9b950feb9af7b9668e2c436bc",
  944. "shasum": ""
  945. },
  946. "require": {
  947. "php": "^7.2 || ^8.0"
  948. },
  949. "require-dev": {
  950. "doctrine/coding-standard": "^11.0",
  951. "phpstan/phpstan": "^1.8",
  952. "phpstan/phpstan-phpunit": "^1.1",
  953. "phpstan/phpstan-strict-rules": "^1.3",
  954. "phpunit/phpunit": "^8.5 || ^9.5",
  955. "vimeo/psalm": "^4.25 || ^5.4"
  956. },
  957. "type": "library",
  958. "autoload": {
  959. "psr-4": {
  960. "Doctrine\\Inflector\\": "lib/Doctrine/Inflector"
  961. }
  962. },
  963. "notification-url": "https://packagist.org/downloads/",
  964. "license": [
  965. "MIT"
  966. ],
  967. "authors": [
  968. {
  969. "name": "Guilherme Blanco",
  970. "email": "guilhermeblanco@gmail.com"
  971. },
  972. {
  973. "name": "Roman Borschel",
  974. "email": "roman@code-factory.org"
  975. },
  976. {
  977. "name": "Benjamin Eberlei",
  978. "email": "kontakt@beberlei.de"
  979. },
  980. {
  981. "name": "Jonathan Wage",
  982. "email": "jonwage@gmail.com"
  983. },
  984. {
  985. "name": "Johannes Schmitt",
  986. "email": "schmittjoh@gmail.com"
  987. }
  988. ],
  989. "description": "PHP Doctrine Inflector is a small library that can perform string manipulations with regard to upper/lowercase and singular/plural forms of words.",
  990. "homepage": "https://www.doctrine-project.org/projects/inflector.html",
  991. "keywords": [
  992. "inflection",
  993. "inflector",
  994. "lowercase",
  995. "manipulation",
  996. "php",
  997. "plural",
  998. "singular",
  999. "strings",
  1000. "uppercase",
  1001. "words"
  1002. ],
  1003. "support": {
  1004. "issues": "https://github.com/doctrine/inflector/issues",
  1005. "source": "https://github.com/doctrine/inflector/tree/2.0.10"
  1006. },
  1007. "funding": [
  1008. {
  1009. "url": "https://www.doctrine-project.org/sponsorship.html",
  1010. "type": "custom"
  1011. },
  1012. {
  1013. "url": "https://www.patreon.com/phpdoctrine",
  1014. "type": "patreon"
  1015. },
  1016. {
  1017. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Finflector",
  1018. "type": "tidelift"
  1019. }
  1020. ],
  1021. "time": "2024-02-18T20:23:39+00:00"
  1022. },
  1023. {
  1024. "name": "doctrine/instantiator",
  1025. "version": "2.0.0",
  1026. "source": {
  1027. "type": "git",
  1028. "url": "https://github.com/doctrine/instantiator.git",
  1029. "reference": "c6222283fa3f4ac679f8b9ced9a4e23f163e80d0"
  1030. },
  1031. "dist": {
  1032. "type": "zip",
  1033. "url": "https://api.github.com/repos/doctrine/instantiator/zipball/c6222283fa3f4ac679f8b9ced9a4e23f163e80d0",
  1034. "reference": "c6222283fa3f4ac679f8b9ced9a4e23f163e80d0",
  1035. "shasum": ""
  1036. },
  1037. "require": {
  1038. "php": "^8.1"
  1039. },
  1040. "require-dev": {
  1041. "doctrine/coding-standard": "^11",
  1042. "ext-pdo": "*",
  1043. "ext-phar": "*",
  1044. "phpbench/phpbench": "^1.2",
  1045. "phpstan/phpstan": "^1.9.4",
  1046. "phpstan/phpstan-phpunit": "^1.3",
  1047. "phpunit/phpunit": "^9.5.27",
  1048. "vimeo/psalm": "^5.4"
  1049. },
  1050. "type": "library",
  1051. "autoload": {
  1052. "psr-4": {
  1053. "Doctrine\\Instantiator\\": "src/Doctrine/Instantiator/"
  1054. }
  1055. },
  1056. "notification-url": "https://packagist.org/downloads/",
  1057. "license": [
  1058. "MIT"
  1059. ],
  1060. "authors": [
  1061. {
  1062. "name": "Marco Pivetta",
  1063. "email": "ocramius@gmail.com",
  1064. "homepage": "https://ocramius.github.io/"
  1065. }
  1066. ],
  1067. "description": "A small, lightweight utility to instantiate objects in PHP without invoking their constructors",
  1068. "homepage": "https://www.doctrine-project.org/projects/instantiator.html",
  1069. "keywords": [
  1070. "constructor",
  1071. "instantiate"
  1072. ],
  1073. "support": {
  1074. "issues": "https://github.com/doctrine/instantiator/issues",
  1075. "source": "https://github.com/doctrine/instantiator/tree/2.0.0"
  1076. },
  1077. "funding": [
  1078. {
  1079. "url": "https://www.doctrine-project.org/sponsorship.html",
  1080. "type": "custom"
  1081. },
  1082. {
  1083. "url": "https://www.patreon.com/phpdoctrine",
  1084. "type": "patreon"
  1085. },
  1086. {
  1087. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Finstantiator",
  1088. "type": "tidelift"
  1089. }
  1090. ],
  1091. "time": "2022-12-30T00:23:10+00:00"
  1092. },
  1093. {
  1094. "name": "doctrine/lexer",
  1095. "version": "3.0.1",
  1096. "source": {
  1097. "type": "git",
  1098. "url": "https://github.com/doctrine/lexer.git",
  1099. "reference": "31ad66abc0fc9e1a1f2d9bc6a42668d2fbbcd6dd"
  1100. },
  1101. "dist": {
  1102. "type": "zip",
  1103. "url": "https://api.github.com/repos/doctrine/lexer/zipball/31ad66abc0fc9e1a1f2d9bc6a42668d2fbbcd6dd",
  1104. "reference": "31ad66abc0fc9e1a1f2d9bc6a42668d2fbbcd6dd",
  1105. "shasum": ""
  1106. },
  1107. "require": {
  1108. "php": "^8.1"
  1109. },
  1110. "require-dev": {
  1111. "doctrine/coding-standard": "^12",
  1112. "phpstan/phpstan": "^1.10",
  1113. "phpunit/phpunit": "^10.5",
  1114. "psalm/plugin-phpunit": "^0.18.3",
  1115. "vimeo/psalm": "^5.21"
  1116. },
  1117. "type": "library",
  1118. "autoload": {
  1119. "psr-4": {
  1120. "Doctrine\\Common\\Lexer\\": "src"
  1121. }
  1122. },
  1123. "notification-url": "https://packagist.org/downloads/",
  1124. "license": [
  1125. "MIT"
  1126. ],
  1127. "authors": [
  1128. {
  1129. "name": "Guilherme Blanco",
  1130. "email": "guilhermeblanco@gmail.com"
  1131. },
  1132. {
  1133. "name": "Roman Borschel",
  1134. "email": "roman@code-factory.org"
  1135. },
  1136. {
  1137. "name": "Johannes Schmitt",
  1138. "email": "schmittjoh@gmail.com"
  1139. }
  1140. ],
  1141. "description": "PHP Doctrine Lexer parser library that can be used in Top-Down, Recursive Descent Parsers.",
  1142. "homepage": "https://www.doctrine-project.org/projects/lexer.html",
  1143. "keywords": [
  1144. "annotations",
  1145. "docblock",
  1146. "lexer",
  1147. "parser",
  1148. "php"
  1149. ],
  1150. "support": {
  1151. "issues": "https://github.com/doctrine/lexer/issues",
  1152. "source": "https://github.com/doctrine/lexer/tree/3.0.1"
  1153. },
  1154. "funding": [
  1155. {
  1156. "url": "https://www.doctrine-project.org/sponsorship.html",
  1157. "type": "custom"
  1158. },
  1159. {
  1160. "url": "https://www.patreon.com/phpdoctrine",
  1161. "type": "patreon"
  1162. },
  1163. {
  1164. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Flexer",
  1165. "type": "tidelift"
  1166. }
  1167. ],
  1168. "time": "2024-02-05T11:56:58+00:00"
  1169. },
  1170. {
  1171. "name": "doctrine/migrations",
  1172. "version": "3.8.0",
  1173. "source": {
  1174. "type": "git",
  1175. "url": "https://github.com/doctrine/migrations.git",
  1176. "reference": "535a70dcbd88b8c6ba945be050977457f4f4c06c"
  1177. },
  1178. "dist": {
  1179. "type": "zip",
  1180. "url": "https://api.github.com/repos/doctrine/migrations/zipball/535a70dcbd88b8c6ba945be050977457f4f4c06c",
  1181. "reference": "535a70dcbd88b8c6ba945be050977457f4f4c06c",
  1182. "shasum": ""
  1183. },
  1184. "require": {
  1185. "composer-runtime-api": "^2",
  1186. "doctrine/dbal": "^3.6 || ^4",
  1187. "doctrine/deprecations": "^0.5.3 || ^1",
  1188. "doctrine/event-manager": "^1.2 || ^2.0",
  1189. "php": "^8.1",
  1190. "psr/log": "^1.1.3 || ^2 || ^3",
  1191. "symfony/console": "^5.4 || ^6.0 || ^7.0",
  1192. "symfony/stopwatch": "^5.4 || ^6.0 || ^7.0",
  1193. "symfony/var-exporter": "^6.2 || ^7.0"
  1194. },
  1195. "conflict": {
  1196. "doctrine/orm": "<2.12 || >=4"
  1197. },
  1198. "require-dev": {
  1199. "doctrine/coding-standard": "^12",
  1200. "doctrine/orm": "^2.13 || ^3",
  1201. "doctrine/persistence": "^2 || ^3",
  1202. "doctrine/sql-formatter": "^1.0",
  1203. "ext-pdo_sqlite": "*",
  1204. "phpstan/phpstan": "^1.10",
  1205. "phpstan/phpstan-deprecation-rules": "^1.1",
  1206. "phpstan/phpstan-phpunit": "^1.3",
  1207. "phpstan/phpstan-strict-rules": "^1.4",
  1208. "phpstan/phpstan-symfony": "^1.3",
  1209. "phpunit/phpunit": "^10.3",
  1210. "symfony/cache": "^5.4 || ^6.0 || ^7.0",
  1211. "symfony/process": "^5.4 || ^6.0 || ^7.0",
  1212. "symfony/yaml": "^5.4 || ^6.0 || ^7.0"
  1213. },
  1214. "suggest": {
  1215. "doctrine/sql-formatter": "Allows to generate formatted SQL with the diff command.",
  1216. "symfony/yaml": "Allows the use of yaml for migration configuration files."
  1217. },
  1218. "bin": [
  1219. "bin/doctrine-migrations"
  1220. ],
  1221. "type": "library",
  1222. "autoload": {
  1223. "psr-4": {
  1224. "Doctrine\\Migrations\\": "src"
  1225. }
  1226. },
  1227. "notification-url": "https://packagist.org/downloads/",
  1228. "license": [
  1229. "MIT"
  1230. ],
  1231. "authors": [
  1232. {
  1233. "name": "Benjamin Eberlei",
  1234. "email": "kontakt@beberlei.de"
  1235. },
  1236. {
  1237. "name": "Jonathan Wage",
  1238. "email": "jonwage@gmail.com"
  1239. },
  1240. {
  1241. "name": "Michael Simonson",
  1242. "email": "contact@mikesimonson.com"
  1243. }
  1244. ],
  1245. "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.",
  1246. "homepage": "https://www.doctrine-project.org/projects/migrations.html",
  1247. "keywords": [
  1248. "database",
  1249. "dbal",
  1250. "migrations"
  1251. ],
  1252. "support": {
  1253. "issues": "https://github.com/doctrine/migrations/issues",
  1254. "source": "https://github.com/doctrine/migrations/tree/3.8.0"
  1255. },
  1256. "funding": [
  1257. {
  1258. "url": "https://www.doctrine-project.org/sponsorship.html",
  1259. "type": "custom"
  1260. },
  1261. {
  1262. "url": "https://www.patreon.com/phpdoctrine",
  1263. "type": "patreon"
  1264. },
  1265. {
  1266. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fmigrations",
  1267. "type": "tidelift"
  1268. }
  1269. ],
  1270. "time": "2024-06-26T14:12:46+00:00"
  1271. },
  1272. {
  1273. "name": "doctrine/orm",
  1274. "version": "3.2.1",
  1275. "source": {
  1276. "type": "git",
  1277. "url": "https://github.com/doctrine/orm.git",
  1278. "reference": "722cea6536775206e81744542b36fa7c9a4ea3e5"
  1279. },
  1280. "dist": {
  1281. "type": "zip",
  1282. "url": "https://api.github.com/repos/doctrine/orm/zipball/722cea6536775206e81744542b36fa7c9a4ea3e5",
  1283. "reference": "722cea6536775206e81744542b36fa7c9a4ea3e5",
  1284. "shasum": ""
  1285. },
  1286. "require": {
  1287. "composer-runtime-api": "^2",
  1288. "doctrine/collections": "^2.2",
  1289. "doctrine/dbal": "^3.8.2 || ^4",
  1290. "doctrine/deprecations": "^0.5.3 || ^1",
  1291. "doctrine/event-manager": "^1.2 || ^2",
  1292. "doctrine/inflector": "^1.4 || ^2.0",
  1293. "doctrine/instantiator": "^1.3 || ^2",
  1294. "doctrine/lexer": "^3",
  1295. "doctrine/persistence": "^3.3.1",
  1296. "ext-ctype": "*",
  1297. "php": "^8.1",
  1298. "psr/cache": "^1 || ^2 || ^3",
  1299. "symfony/console": "^5.4 || ^6.0 || ^7.0",
  1300. "symfony/var-exporter": "^6.3.9 || ^7.0"
  1301. },
  1302. "require-dev": {
  1303. "doctrine/coding-standard": "^12.0",
  1304. "phpbench/phpbench": "^1.0",
  1305. "phpstan/phpstan": "1.11.1",
  1306. "phpunit/phpunit": "^10.4.0",
  1307. "psr/log": "^1 || ^2 || ^3",
  1308. "squizlabs/php_codesniffer": "3.7.2",
  1309. "symfony/cache": "^5.4 || ^6.2 || ^7.0",
  1310. "vimeo/psalm": "5.24.0"
  1311. },
  1312. "suggest": {
  1313. "ext-dom": "Provides support for XSD validation for XML mapping files",
  1314. "symfony/cache": "Provides cache support for Setup Tool with doctrine/cache 2.0"
  1315. },
  1316. "type": "library",
  1317. "autoload": {
  1318. "psr-4": {
  1319. "Doctrine\\ORM\\": "src"
  1320. }
  1321. },
  1322. "notification-url": "https://packagist.org/downloads/",
  1323. "license": [
  1324. "MIT"
  1325. ],
  1326. "authors": [
  1327. {
  1328. "name": "Guilherme Blanco",
  1329. "email": "guilhermeblanco@gmail.com"
  1330. },
  1331. {
  1332. "name": "Roman Borschel",
  1333. "email": "roman@code-factory.org"
  1334. },
  1335. {
  1336. "name": "Benjamin Eberlei",
  1337. "email": "kontakt@beberlei.de"
  1338. },
  1339. {
  1340. "name": "Jonathan Wage",
  1341. "email": "jonwage@gmail.com"
  1342. },
  1343. {
  1344. "name": "Marco Pivetta",
  1345. "email": "ocramius@gmail.com"
  1346. }
  1347. ],
  1348. "description": "Object-Relational-Mapper for PHP",
  1349. "homepage": "https://www.doctrine-project.org/projects/orm.html",
  1350. "keywords": [
  1351. "database",
  1352. "orm"
  1353. ],
  1354. "support": {
  1355. "issues": "https://github.com/doctrine/orm/issues",
  1356. "source": "https://github.com/doctrine/orm/tree/3.2.1"
  1357. },
  1358. "time": "2024-06-26T21:48:58+00:00"
  1359. },
  1360. {
  1361. "name": "doctrine/persistence",
  1362. "version": "3.3.3",
  1363. "source": {
  1364. "type": "git",
  1365. "url": "https://github.com/doctrine/persistence.git",
  1366. "reference": "b337726451f5d530df338fc7f68dee8781b49779"
  1367. },
  1368. "dist": {
  1369. "type": "zip",
  1370. "url": "https://api.github.com/repos/doctrine/persistence/zipball/b337726451f5d530df338fc7f68dee8781b49779",
  1371. "reference": "b337726451f5d530df338fc7f68dee8781b49779",
  1372. "shasum": ""
  1373. },
  1374. "require": {
  1375. "doctrine/event-manager": "^1 || ^2",
  1376. "php": "^7.2 || ^8.0",
  1377. "psr/cache": "^1.0 || ^2.0 || ^3.0"
  1378. },
  1379. "conflict": {
  1380. "doctrine/common": "<2.10"
  1381. },
  1382. "require-dev": {
  1383. "doctrine/coding-standard": "^12",
  1384. "doctrine/common": "^3.0",
  1385. "phpstan/phpstan": "1.11.1",
  1386. "phpstan/phpstan-phpunit": "^1",
  1387. "phpstan/phpstan-strict-rules": "^1.1",
  1388. "phpunit/phpunit": "^8.5 || ^9.5",
  1389. "symfony/cache": "^4.4 || ^5.4 || ^6.0",
  1390. "vimeo/psalm": "4.30.0 || 5.24.0"
  1391. },
  1392. "type": "library",
  1393. "autoload": {
  1394. "psr-4": {
  1395. "Doctrine\\Persistence\\": "src/Persistence"
  1396. }
  1397. },
  1398. "notification-url": "https://packagist.org/downloads/",
  1399. "license": [
  1400. "MIT"
  1401. ],
  1402. "authors": [
  1403. {
  1404. "name": "Guilherme Blanco",
  1405. "email": "guilhermeblanco@gmail.com"
  1406. },
  1407. {
  1408. "name": "Roman Borschel",
  1409. "email": "roman@code-factory.org"
  1410. },
  1411. {
  1412. "name": "Benjamin Eberlei",
  1413. "email": "kontakt@beberlei.de"
  1414. },
  1415. {
  1416. "name": "Jonathan Wage",
  1417. "email": "jonwage@gmail.com"
  1418. },
  1419. {
  1420. "name": "Johannes Schmitt",
  1421. "email": "schmittjoh@gmail.com"
  1422. },
  1423. {
  1424. "name": "Marco Pivetta",
  1425. "email": "ocramius@gmail.com"
  1426. }
  1427. ],
  1428. "description": "The Doctrine Persistence project is a set of shared interfaces and functionality that the different Doctrine object mappers share.",
  1429. "homepage": "https://www.doctrine-project.org/projects/persistence.html",
  1430. "keywords": [
  1431. "mapper",
  1432. "object",
  1433. "odm",
  1434. "orm",
  1435. "persistence"
  1436. ],
  1437. "support": {
  1438. "issues": "https://github.com/doctrine/persistence/issues",
  1439. "source": "https://github.com/doctrine/persistence/tree/3.3.3"
  1440. },
  1441. "funding": [
  1442. {
  1443. "url": "https://www.doctrine-project.org/sponsorship.html",
  1444. "type": "custom"
  1445. },
  1446. {
  1447. "url": "https://www.patreon.com/phpdoctrine",
  1448. "type": "patreon"
  1449. },
  1450. {
  1451. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fpersistence",
  1452. "type": "tidelift"
  1453. }
  1454. ],
  1455. "time": "2024-06-20T10:14:30+00:00"
  1456. },
  1457. {
  1458. "name": "doctrine/sql-formatter",
  1459. "version": "1.4.0",
  1460. "source": {
  1461. "type": "git",
  1462. "url": "https://github.com/doctrine/sql-formatter.git",
  1463. "reference": "d1ac84aef745c69ea034929eb6d65a6908b675cc"
  1464. },
  1465. "dist": {
  1466. "type": "zip",
  1467. "url": "https://api.github.com/repos/doctrine/sql-formatter/zipball/d1ac84aef745c69ea034929eb6d65a6908b675cc",
  1468. "reference": "d1ac84aef745c69ea034929eb6d65a6908b675cc",
  1469. "shasum": ""
  1470. },
  1471. "require": {
  1472. "php": "^8.1"
  1473. },
  1474. "require-dev": {
  1475. "doctrine/coding-standard": "^12",
  1476. "phpstan/phpstan": "^1.10",
  1477. "phpunit/phpunit": "^10.5",
  1478. "vimeo/psalm": "^5.24"
  1479. },
  1480. "bin": [
  1481. "bin/sql-formatter"
  1482. ],
  1483. "type": "library",
  1484. "autoload": {
  1485. "psr-4": {
  1486. "Doctrine\\SqlFormatter\\": "src"
  1487. }
  1488. },
  1489. "notification-url": "https://packagist.org/downloads/",
  1490. "license": [
  1491. "MIT"
  1492. ],
  1493. "authors": [
  1494. {
  1495. "name": "Jeremy Dorn",
  1496. "email": "jeremy@jeremydorn.com",
  1497. "homepage": "https://jeremydorn.com/"
  1498. }
  1499. ],
  1500. "description": "a PHP SQL highlighting library",
  1501. "homepage": "https://github.com/doctrine/sql-formatter/",
  1502. "keywords": [
  1503. "highlight",
  1504. "sql"
  1505. ],
  1506. "support": {
  1507. "issues": "https://github.com/doctrine/sql-formatter/issues",
  1508. "source": "https://github.com/doctrine/sql-formatter/tree/1.4.0"
  1509. },
  1510. "time": "2024-05-08T08:12:09+00:00"
  1511. },
  1512. {
  1513. "name": "egulias/email-validator",
  1514. "version": "4.0.2",
  1515. "source": {
  1516. "type": "git",
  1517. "url": "https://github.com/egulias/EmailValidator.git",
  1518. "reference": "ebaaf5be6c0286928352e054f2d5125608e5405e"
  1519. },
  1520. "dist": {
  1521. "type": "zip",
  1522. "url": "https://api.github.com/repos/egulias/EmailValidator/zipball/ebaaf5be6c0286928352e054f2d5125608e5405e",
  1523. "reference": "ebaaf5be6c0286928352e054f2d5125608e5405e",
  1524. "shasum": ""
  1525. },
  1526. "require": {
  1527. "doctrine/lexer": "^2.0 || ^3.0",
  1528. "php": ">=8.1",
  1529. "symfony/polyfill-intl-idn": "^1.26"
  1530. },
  1531. "require-dev": {
  1532. "phpunit/phpunit": "^10.2",
  1533. "vimeo/psalm": "^5.12"
  1534. },
  1535. "suggest": {
  1536. "ext-intl": "PHP Internationalization Libraries are required to use the SpoofChecking validation"
  1537. },
  1538. "type": "library",
  1539. "extra": {
  1540. "branch-alias": {
  1541. "dev-master": "4.0.x-dev"
  1542. }
  1543. },
  1544. "autoload": {
  1545. "psr-4": {
  1546. "Egulias\\EmailValidator\\": "src"
  1547. }
  1548. },
  1549. "notification-url": "https://packagist.org/downloads/",
  1550. "license": [
  1551. "MIT"
  1552. ],
  1553. "authors": [
  1554. {
  1555. "name": "Eduardo Gulias Davis"
  1556. }
  1557. ],
  1558. "description": "A library for validating emails against several RFCs",
  1559. "homepage": "https://github.com/egulias/EmailValidator",
  1560. "keywords": [
  1561. "email",
  1562. "emailvalidation",
  1563. "emailvalidator",
  1564. "validation",
  1565. "validator"
  1566. ],
  1567. "support": {
  1568. "issues": "https://github.com/egulias/EmailValidator/issues",
  1569. "source": "https://github.com/egulias/EmailValidator/tree/4.0.2"
  1570. },
  1571. "funding": [
  1572. {
  1573. "url": "https://github.com/egulias",
  1574. "type": "github"
  1575. }
  1576. ],
  1577. "time": "2023-10-06T06:47:41+00:00"
  1578. },
  1579. {
  1580. "name": "league/commonmark",
  1581. "version": "2.5.1",
  1582. "source": {
  1583. "type": "git",
  1584. "url": "https://github.com/thephpleague/commonmark.git",
  1585. "reference": "ac815920de0eff6de947eac0a6a94e5ed0fb147c"
  1586. },
  1587. "dist": {
  1588. "type": "zip",
  1589. "url": "https://api.github.com/repos/thephpleague/commonmark/zipball/ac815920de0eff6de947eac0a6a94e5ed0fb147c",
  1590. "reference": "ac815920de0eff6de947eac0a6a94e5ed0fb147c",
  1591. "shasum": ""
  1592. },
  1593. "require": {
  1594. "ext-mbstring": "*",
  1595. "league/config": "^1.1.1",
  1596. "php": "^7.4 || ^8.0",
  1597. "psr/event-dispatcher": "^1.0",
  1598. "symfony/deprecation-contracts": "^2.1 || ^3.0",
  1599. "symfony/polyfill-php80": "^1.16"
  1600. },
  1601. "require-dev": {
  1602. "cebe/markdown": "^1.0",
  1603. "commonmark/cmark": "0.31.0",
  1604. "commonmark/commonmark.js": "0.31.0",
  1605. "composer/package-versions-deprecated": "^1.8",
  1606. "embed/embed": "^4.4",
  1607. "erusev/parsedown": "^1.0",
  1608. "ext-json": "*",
  1609. "github/gfm": "0.29.0",
  1610. "michelf/php-markdown": "^1.4 || ^2.0",
  1611. "nyholm/psr7": "^1.5",
  1612. "phpstan/phpstan": "^1.8.2",
  1613. "phpunit/phpunit": "^9.5.21 || ^10.5.9 || ^11.0.0",
  1614. "scrutinizer/ocular": "^1.8.1",
  1615. "symfony/finder": "^5.3 | ^6.0 || ^7.0",
  1616. "symfony/yaml": "^2.3 | ^3.0 | ^4.0 | ^5.0 | ^6.0 || ^7.0",
  1617. "unleashedtech/php-coding-standard": "^3.1.1",
  1618. "vimeo/psalm": "^4.24.0 || ^5.0.0"
  1619. },
  1620. "suggest": {
  1621. "symfony/yaml": "v2.3+ required if using the Front Matter extension"
  1622. },
  1623. "type": "library",
  1624. "extra": {
  1625. "branch-alias": {
  1626. "dev-main": "2.6-dev"
  1627. }
  1628. },
  1629. "autoload": {
  1630. "psr-4": {
  1631. "League\\CommonMark\\": "src"
  1632. }
  1633. },
  1634. "notification-url": "https://packagist.org/downloads/",
  1635. "license": [
  1636. "BSD-3-Clause"
  1637. ],
  1638. "authors": [
  1639. {
  1640. "name": "Colin O'Dell",
  1641. "email": "colinodell@gmail.com",
  1642. "homepage": "https://www.colinodell.com",
  1643. "role": "Lead Developer"
  1644. }
  1645. ],
  1646. "description": "Highly-extensible PHP Markdown parser which fully supports the CommonMark spec and GitHub-Flavored Markdown (GFM)",
  1647. "homepage": "https://commonmark.thephpleague.com",
  1648. "keywords": [
  1649. "commonmark",
  1650. "flavored",
  1651. "gfm",
  1652. "github",
  1653. "github-flavored",
  1654. "markdown",
  1655. "md",
  1656. "parser"
  1657. ],
  1658. "support": {
  1659. "docs": "https://commonmark.thephpleague.com/",
  1660. "forum": "https://github.com/thephpleague/commonmark/discussions",
  1661. "issues": "https://github.com/thephpleague/commonmark/issues",
  1662. "rss": "https://github.com/thephpleague/commonmark/releases.atom",
  1663. "source": "https://github.com/thephpleague/commonmark"
  1664. },
  1665. "funding": [
  1666. {
  1667. "url": "https://www.colinodell.com/sponsor",
  1668. "type": "custom"
  1669. },
  1670. {
  1671. "url": "https://www.paypal.me/colinpodell/10.00",
  1672. "type": "custom"
  1673. },
  1674. {
  1675. "url": "https://github.com/colinodell",
  1676. "type": "github"
  1677. },
  1678. {
  1679. "url": "https://tidelift.com/funding/github/packagist/league/commonmark",
  1680. "type": "tidelift"
  1681. }
  1682. ],
  1683. "time": "2024-07-24T12:52:09+00:00"
  1684. },
  1685. {
  1686. "name": "league/config",
  1687. "version": "v1.2.0",
  1688. "source": {
  1689. "type": "git",
  1690. "url": "https://github.com/thephpleague/config.git",
  1691. "reference": "754b3604fb2984c71f4af4a9cbe7b57f346ec1f3"
  1692. },
  1693. "dist": {
  1694. "type": "zip",
  1695. "url": "https://api.github.com/repos/thephpleague/config/zipball/754b3604fb2984c71f4af4a9cbe7b57f346ec1f3",
  1696. "reference": "754b3604fb2984c71f4af4a9cbe7b57f346ec1f3",
  1697. "shasum": ""
  1698. },
  1699. "require": {
  1700. "dflydev/dot-access-data": "^3.0.1",
  1701. "nette/schema": "^1.2",
  1702. "php": "^7.4 || ^8.0"
  1703. },
  1704. "require-dev": {
  1705. "phpstan/phpstan": "^1.8.2",
  1706. "phpunit/phpunit": "^9.5.5",
  1707. "scrutinizer/ocular": "^1.8.1",
  1708. "unleashedtech/php-coding-standard": "^3.1",
  1709. "vimeo/psalm": "^4.7.3"
  1710. },
  1711. "type": "library",
  1712. "extra": {
  1713. "branch-alias": {
  1714. "dev-main": "1.2-dev"
  1715. }
  1716. },
  1717. "autoload": {
  1718. "psr-4": {
  1719. "League\\Config\\": "src"
  1720. }
  1721. },
  1722. "notification-url": "https://packagist.org/downloads/",
  1723. "license": [
  1724. "BSD-3-Clause"
  1725. ],
  1726. "authors": [
  1727. {
  1728. "name": "Colin O'Dell",
  1729. "email": "colinodell@gmail.com",
  1730. "homepage": "https://www.colinodell.com",
  1731. "role": "Lead Developer"
  1732. }
  1733. ],
  1734. "description": "Define configuration arrays with strict schemas and access values with dot notation",
  1735. "homepage": "https://config.thephpleague.com",
  1736. "keywords": [
  1737. "array",
  1738. "config",
  1739. "configuration",
  1740. "dot",
  1741. "dot-access",
  1742. "nested",
  1743. "schema"
  1744. ],
  1745. "support": {
  1746. "docs": "https://config.thephpleague.com/",
  1747. "issues": "https://github.com/thephpleague/config/issues",
  1748. "rss": "https://github.com/thephpleague/config/releases.atom",
  1749. "source": "https://github.com/thephpleague/config"
  1750. },
  1751. "funding": [
  1752. {
  1753. "url": "https://www.colinodell.com/sponsor",
  1754. "type": "custom"
  1755. },
  1756. {
  1757. "url": "https://www.paypal.me/colinpodell/10.00",
  1758. "type": "custom"
  1759. },
  1760. {
  1761. "url": "https://github.com/colinodell",
  1762. "type": "github"
  1763. }
  1764. ],
  1765. "time": "2022-12-11T20:36:23+00:00"
  1766. },
  1767. {
  1768. "name": "league/uri",
  1769. "version": "7.4.1",
  1770. "source": {
  1771. "type": "git",
  1772. "url": "https://github.com/thephpleague/uri.git",
  1773. "reference": "bedb6e55eff0c933668addaa7efa1e1f2c417cc4"
  1774. },
  1775. "dist": {
  1776. "type": "zip",
  1777. "url": "https://api.github.com/repos/thephpleague/uri/zipball/bedb6e55eff0c933668addaa7efa1e1f2c417cc4",
  1778. "reference": "bedb6e55eff0c933668addaa7efa1e1f2c417cc4",
  1779. "shasum": ""
  1780. },
  1781. "require": {
  1782. "league/uri-interfaces": "^7.3",
  1783. "php": "^8.1"
  1784. },
  1785. "conflict": {
  1786. "league/uri-schemes": "^1.0"
  1787. },
  1788. "suggest": {
  1789. "ext-bcmath": "to improve IPV4 host parsing",
  1790. "ext-fileinfo": "to create Data URI from file contennts",
  1791. "ext-gmp": "to improve IPV4 host parsing",
  1792. "ext-intl": "to handle IDN host with the best performance",
  1793. "jeremykendall/php-domain-parser": "to resolve Public Suffix and Top Level Domain",
  1794. "league/uri-components": "Needed to easily manipulate URI objects components",
  1795. "php-64bit": "to improve IPV4 host parsing",
  1796. "symfony/polyfill-intl-idn": "to handle IDN host via the Symfony polyfill if ext-intl is not present"
  1797. },
  1798. "type": "library",
  1799. "extra": {
  1800. "branch-alias": {
  1801. "dev-master": "7.x-dev"
  1802. }
  1803. },
  1804. "autoload": {
  1805. "psr-4": {
  1806. "League\\Uri\\": ""
  1807. }
  1808. },
  1809. "notification-url": "https://packagist.org/downloads/",
  1810. "license": [
  1811. "MIT"
  1812. ],
  1813. "authors": [
  1814. {
  1815. "name": "Ignace Nyamagana Butera",
  1816. "email": "nyamsprod@gmail.com",
  1817. "homepage": "https://nyamsprod.com"
  1818. }
  1819. ],
  1820. "description": "URI manipulation library",
  1821. "homepage": "https://uri.thephpleague.com",
  1822. "keywords": [
  1823. "data-uri",
  1824. "file-uri",
  1825. "ftp",
  1826. "hostname",
  1827. "http",
  1828. "https",
  1829. "middleware",
  1830. "parse_str",
  1831. "parse_url",
  1832. "psr-7",
  1833. "query-string",
  1834. "querystring",
  1835. "rfc3986",
  1836. "rfc3987",
  1837. "rfc6570",
  1838. "uri",
  1839. "uri-template",
  1840. "url",
  1841. "ws"
  1842. ],
  1843. "support": {
  1844. "docs": "https://uri.thephpleague.com",
  1845. "forum": "https://thephpleague.slack.com",
  1846. "issues": "https://github.com/thephpleague/uri-src/issues",
  1847. "source": "https://github.com/thephpleague/uri/tree/7.4.1"
  1848. },
  1849. "funding": [
  1850. {
  1851. "url": "https://github.com/sponsors/nyamsprod",
  1852. "type": "github"
  1853. }
  1854. ],
  1855. "time": "2024-03-23T07:42:40+00:00"
  1856. },
  1857. {
  1858. "name": "league/uri-interfaces",
  1859. "version": "7.4.1",
  1860. "source": {
  1861. "type": "git",
  1862. "url": "https://github.com/thephpleague/uri-interfaces.git",
  1863. "reference": "8d43ef5c841032c87e2de015972c06f3865ef718"
  1864. },
  1865. "dist": {
  1866. "type": "zip",
  1867. "url": "https://api.github.com/repos/thephpleague/uri-interfaces/zipball/8d43ef5c841032c87e2de015972c06f3865ef718",
  1868. "reference": "8d43ef5c841032c87e2de015972c06f3865ef718",
  1869. "shasum": ""
  1870. },
  1871. "require": {
  1872. "ext-filter": "*",
  1873. "php": "^8.1",
  1874. "psr/http-factory": "^1",
  1875. "psr/http-message": "^1.1 || ^2.0"
  1876. },
  1877. "suggest": {
  1878. "ext-bcmath": "to improve IPV4 host parsing",
  1879. "ext-gmp": "to improve IPV4 host parsing",
  1880. "ext-intl": "to handle IDN host with the best performance",
  1881. "php-64bit": "to improve IPV4 host parsing",
  1882. "symfony/polyfill-intl-idn": "to handle IDN host via the Symfony polyfill if ext-intl is not present"
  1883. },
  1884. "type": "library",
  1885. "extra": {
  1886. "branch-alias": {
  1887. "dev-master": "7.x-dev"
  1888. }
  1889. },
  1890. "autoload": {
  1891. "psr-4": {
  1892. "League\\Uri\\": ""
  1893. }
  1894. },
  1895. "notification-url": "https://packagist.org/downloads/",
  1896. "license": [
  1897. "MIT"
  1898. ],
  1899. "authors": [
  1900. {
  1901. "name": "Ignace Nyamagana Butera",
  1902. "email": "nyamsprod@gmail.com",
  1903. "homepage": "https://nyamsprod.com"
  1904. }
  1905. ],
  1906. "description": "Common interfaces and classes for URI representation and interaction",
  1907. "homepage": "https://uri.thephpleague.com",
  1908. "keywords": [
  1909. "data-uri",
  1910. "file-uri",
  1911. "ftp",
  1912. "hostname",
  1913. "http",
  1914. "https",
  1915. "parse_str",
  1916. "parse_url",
  1917. "psr-7",
  1918. "query-string",
  1919. "querystring",
  1920. "rfc3986",
  1921. "rfc3987",
  1922. "rfc6570",
  1923. "uri",
  1924. "url",
  1925. "ws"
  1926. ],
  1927. "support": {
  1928. "docs": "https://uri.thephpleague.com",
  1929. "forum": "https://thephpleague.slack.com",
  1930. "issues": "https://github.com/thephpleague/uri-src/issues",
  1931. "source": "https://github.com/thephpleague/uri-interfaces/tree/7.4.1"
  1932. },
  1933. "funding": [
  1934. {
  1935. "url": "https://github.com/sponsors/nyamsprod",
  1936. "type": "github"
  1937. }
  1938. ],
  1939. "time": "2024-03-23T07:42:40+00:00"
  1940. },
  1941. {
  1942. "name": "masterminds/html5",
  1943. "version": "2.9.0",
  1944. "source": {
  1945. "type": "git",
  1946. "url": "https://github.com/Masterminds/html5-php.git",
  1947. "reference": "f5ac2c0b0a2eefca70b2ce32a5809992227e75a6"
  1948. },
  1949. "dist": {
  1950. "type": "zip",
  1951. "url": "https://api.github.com/repos/Masterminds/html5-php/zipball/f5ac2c0b0a2eefca70b2ce32a5809992227e75a6",
  1952. "reference": "f5ac2c0b0a2eefca70b2ce32a5809992227e75a6",
  1953. "shasum": ""
  1954. },
  1955. "require": {
  1956. "ext-dom": "*",
  1957. "php": ">=5.3.0"
  1958. },
  1959. "require-dev": {
  1960. "phpunit/phpunit": "^4.8.35 || ^5.7.21 || ^6 || ^7 || ^8 || ^9"
  1961. },
  1962. "type": "library",
  1963. "extra": {
  1964. "branch-alias": {
  1965. "dev-master": "2.7-dev"
  1966. }
  1967. },
  1968. "autoload": {
  1969. "psr-4": {
  1970. "Masterminds\\": "src"
  1971. }
  1972. },
  1973. "notification-url": "https://packagist.org/downloads/",
  1974. "license": [
  1975. "MIT"
  1976. ],
  1977. "authors": [
  1978. {
  1979. "name": "Matt Butcher",
  1980. "email": "technosophos@gmail.com"
  1981. },
  1982. {
  1983. "name": "Matt Farina",
  1984. "email": "matt@mattfarina.com"
  1985. },
  1986. {
  1987. "name": "Asmir Mustafic",
  1988. "email": "goetas@gmail.com"
  1989. }
  1990. ],
  1991. "description": "An HTML5 parser and serializer.",
  1992. "homepage": "http://masterminds.github.io/html5-php",
  1993. "keywords": [
  1994. "HTML5",
  1995. "dom",
  1996. "html",
  1997. "parser",
  1998. "querypath",
  1999. "serializer",
  2000. "xml"
  2001. ],
  2002. "support": {
  2003. "issues": "https://github.com/Masterminds/html5-php/issues",
  2004. "source": "https://github.com/Masterminds/html5-php/tree/2.9.0"
  2005. },
  2006. "time": "2024-03-31T07:05:07+00:00"
  2007. },
  2008. {
  2009. "name": "monolog/monolog",
  2010. "version": "3.7.0",
  2011. "source": {
  2012. "type": "git",
  2013. "url": "https://github.com/Seldaek/monolog.git",
  2014. "reference": "f4393b648b78a5408747de94fca38beb5f7e9ef8"
  2015. },
  2016. "dist": {
  2017. "type": "zip",
  2018. "url": "https://api.github.com/repos/Seldaek/monolog/zipball/f4393b648b78a5408747de94fca38beb5f7e9ef8",
  2019. "reference": "f4393b648b78a5408747de94fca38beb5f7e9ef8",
  2020. "shasum": ""
  2021. },
  2022. "require": {
  2023. "php": ">=8.1",
  2024. "psr/log": "^2.0 || ^3.0"
  2025. },
  2026. "provide": {
  2027. "psr/log-implementation": "3.0.0"
  2028. },
  2029. "require-dev": {
  2030. "aws/aws-sdk-php": "^3.0",
  2031. "doctrine/couchdb": "~1.0@dev",
  2032. "elasticsearch/elasticsearch": "^7 || ^8",
  2033. "ext-json": "*",
  2034. "graylog2/gelf-php": "^1.4.2 || ^2.0",
  2035. "guzzlehttp/guzzle": "^7.4.5",
  2036. "guzzlehttp/psr7": "^2.2",
  2037. "mongodb/mongodb": "^1.8",
  2038. "php-amqplib/php-amqplib": "~2.4 || ^3",
  2039. "phpstan/phpstan": "^1.9",
  2040. "phpstan/phpstan-deprecation-rules": "^1.0",
  2041. "phpstan/phpstan-strict-rules": "^1.4",
  2042. "phpunit/phpunit": "^10.5.17",
  2043. "predis/predis": "^1.1 || ^2",
  2044. "ruflin/elastica": "^7",
  2045. "symfony/mailer": "^5.4 || ^6",
  2046. "symfony/mime": "^5.4 || ^6"
  2047. },
  2048. "suggest": {
  2049. "aws/aws-sdk-php": "Allow sending log messages to AWS services like DynamoDB",
  2050. "doctrine/couchdb": "Allow sending log messages to a CouchDB server",
  2051. "elasticsearch/elasticsearch": "Allow sending log messages to an Elasticsearch server via official client",
  2052. "ext-amqp": "Allow sending log messages to an AMQP server (1.0+ required)",
  2053. "ext-curl": "Required to send log messages using the IFTTTHandler, the LogglyHandler, the SendGridHandler, the SlackWebhookHandler or the TelegramBotHandler",
  2054. "ext-mbstring": "Allow to work properly with unicode symbols",
  2055. "ext-mongodb": "Allow sending log messages to a MongoDB server (via driver)",
  2056. "ext-openssl": "Required to send log messages using SSL",
  2057. "ext-sockets": "Allow sending log messages to a Syslog server (via UDP driver)",
  2058. "graylog2/gelf-php": "Allow sending log messages to a GrayLog2 server",
  2059. "mongodb/mongodb": "Allow sending log messages to a MongoDB server (via library)",
  2060. "php-amqplib/php-amqplib": "Allow sending log messages to an AMQP server using php-amqplib",
  2061. "rollbar/rollbar": "Allow sending log messages to Rollbar",
  2062. "ruflin/elastica": "Allow sending log messages to an Elastic Search server"
  2063. },
  2064. "type": "library",
  2065. "extra": {
  2066. "branch-alias": {
  2067. "dev-main": "3.x-dev"
  2068. }
  2069. },
  2070. "autoload": {
  2071. "psr-4": {
  2072. "Monolog\\": "src/Monolog"
  2073. }
  2074. },
  2075. "notification-url": "https://packagist.org/downloads/",
  2076. "license": [
  2077. "MIT"
  2078. ],
  2079. "authors": [
  2080. {
  2081. "name": "Jordi Boggiano",
  2082. "email": "j.boggiano@seld.be",
  2083. "homepage": "https://seld.be"
  2084. }
  2085. ],
  2086. "description": "Sends your logs to files, sockets, inboxes, databases and various web services",
  2087. "homepage": "https://github.com/Seldaek/monolog",
  2088. "keywords": [
  2089. "log",
  2090. "logging",
  2091. "psr-3"
  2092. ],
  2093. "support": {
  2094. "issues": "https://github.com/Seldaek/monolog/issues",
  2095. "source": "https://github.com/Seldaek/monolog/tree/3.7.0"
  2096. },
  2097. "funding": [
  2098. {
  2099. "url": "https://github.com/Seldaek",
  2100. "type": "github"
  2101. },
  2102. {
  2103. "url": "https://tidelift.com/funding/github/packagist/monolog/monolog",
  2104. "type": "tidelift"
  2105. }
  2106. ],
  2107. "time": "2024-06-28T09:40:51+00:00"
  2108. },
  2109. {
  2110. "name": "nette/schema",
  2111. "version": "v1.3.0",
  2112. "source": {
  2113. "type": "git",
  2114. "url": "https://github.com/nette/schema.git",
  2115. "reference": "a6d3a6d1f545f01ef38e60f375d1cf1f4de98188"
  2116. },
  2117. "dist": {
  2118. "type": "zip",
  2119. "url": "https://api.github.com/repos/nette/schema/zipball/a6d3a6d1f545f01ef38e60f375d1cf1f4de98188",
  2120. "reference": "a6d3a6d1f545f01ef38e60f375d1cf1f4de98188",
  2121. "shasum": ""
  2122. },
  2123. "require": {
  2124. "nette/utils": "^4.0",
  2125. "php": "8.1 - 8.3"
  2126. },
  2127. "require-dev": {
  2128. "nette/tester": "^2.4",
  2129. "phpstan/phpstan-nette": "^1.0",
  2130. "tracy/tracy": "^2.8"
  2131. },
  2132. "type": "library",
  2133. "extra": {
  2134. "branch-alias": {
  2135. "dev-master": "1.3-dev"
  2136. }
  2137. },
  2138. "autoload": {
  2139. "classmap": [
  2140. "src/"
  2141. ]
  2142. },
  2143. "notification-url": "https://packagist.org/downloads/",
  2144. "license": [
  2145. "BSD-3-Clause",
  2146. "GPL-2.0-only",
  2147. "GPL-3.0-only"
  2148. ],
  2149. "authors": [
  2150. {
  2151. "name": "David Grudl",
  2152. "homepage": "https://davidgrudl.com"
  2153. },
  2154. {
  2155. "name": "Nette Community",
  2156. "homepage": "https://nette.org/contributors"
  2157. }
  2158. ],
  2159. "description": "📐 Nette Schema: validating data structures against a given Schema.",
  2160. "homepage": "https://nette.org",
  2161. "keywords": [
  2162. "config",
  2163. "nette"
  2164. ],
  2165. "support": {
  2166. "issues": "https://github.com/nette/schema/issues",
  2167. "source": "https://github.com/nette/schema/tree/v1.3.0"
  2168. },
  2169. "time": "2023-12-11T11:54:22+00:00"
  2170. },
  2171. {
  2172. "name": "nette/utils",
  2173. "version": "v4.0.4",
  2174. "source": {
  2175. "type": "git",
  2176. "url": "https://github.com/nette/utils.git",
  2177. "reference": "d3ad0aa3b9f934602cb3e3902ebccf10be34d218"
  2178. },
  2179. "dist": {
  2180. "type": "zip",
  2181. "url": "https://api.github.com/repos/nette/utils/zipball/d3ad0aa3b9f934602cb3e3902ebccf10be34d218",
  2182. "reference": "d3ad0aa3b9f934602cb3e3902ebccf10be34d218",
  2183. "shasum": ""
  2184. },
  2185. "require": {
  2186. "php": ">=8.0 <8.4"
  2187. },
  2188. "conflict": {
  2189. "nette/finder": "<3",
  2190. "nette/schema": "<1.2.2"
  2191. },
  2192. "require-dev": {
  2193. "jetbrains/phpstorm-attributes": "dev-master",
  2194. "nette/tester": "^2.5",
  2195. "phpstan/phpstan": "^1.0",
  2196. "tracy/tracy": "^2.9"
  2197. },
  2198. "suggest": {
  2199. "ext-gd": "to use Image",
  2200. "ext-iconv": "to use Strings::webalize(), toAscii(), chr() and reverse()",
  2201. "ext-intl": "to use Strings::webalize(), toAscii(), normalize() and compare()",
  2202. "ext-json": "to use Nette\\Utils\\Json",
  2203. "ext-mbstring": "to use Strings::lower() etc...",
  2204. "ext-tokenizer": "to use Nette\\Utils\\Reflection::getUseStatements()"
  2205. },
  2206. "type": "library",
  2207. "extra": {
  2208. "branch-alias": {
  2209. "dev-master": "4.0-dev"
  2210. }
  2211. },
  2212. "autoload": {
  2213. "classmap": [
  2214. "src/"
  2215. ]
  2216. },
  2217. "notification-url": "https://packagist.org/downloads/",
  2218. "license": [
  2219. "BSD-3-Clause",
  2220. "GPL-2.0-only",
  2221. "GPL-3.0-only"
  2222. ],
  2223. "authors": [
  2224. {
  2225. "name": "David Grudl",
  2226. "homepage": "https://davidgrudl.com"
  2227. },
  2228. {
  2229. "name": "Nette Community",
  2230. "homepage": "https://nette.org/contributors"
  2231. }
  2232. ],
  2233. "description": "🛠 Nette Utils: lightweight utilities for string & array manipulation, image handling, safe JSON encoding/decoding, validation, slug or strong password generating etc.",
  2234. "homepage": "https://nette.org",
  2235. "keywords": [
  2236. "array",
  2237. "core",
  2238. "datetime",
  2239. "images",
  2240. "json",
  2241. "nette",
  2242. "paginator",
  2243. "password",
  2244. "slugify",
  2245. "string",
  2246. "unicode",
  2247. "utf-8",
  2248. "utility",
  2249. "validation"
  2250. ],
  2251. "support": {
  2252. "issues": "https://github.com/nette/utils/issues",
  2253. "source": "https://github.com/nette/utils/tree/v4.0.4"
  2254. },
  2255. "time": "2024-01-17T16:50:36+00:00"
  2256. },
  2257. {
  2258. "name": "phpdocumentor/reflection-common",
  2259. "version": "2.2.0",
  2260. "source": {
  2261. "type": "git",
  2262. "url": "https://github.com/phpDocumentor/ReflectionCommon.git",
  2263. "reference": "1d01c49d4ed62f25aa84a747ad35d5a16924662b"
  2264. },
  2265. "dist": {
  2266. "type": "zip",
  2267. "url": "https://api.github.com/repos/phpDocumentor/ReflectionCommon/zipball/1d01c49d4ed62f25aa84a747ad35d5a16924662b",
  2268. "reference": "1d01c49d4ed62f25aa84a747ad35d5a16924662b",
  2269. "shasum": ""
  2270. },
  2271. "require": {
  2272. "php": "^7.2 || ^8.0"
  2273. },
  2274. "type": "library",
  2275. "extra": {
  2276. "branch-alias": {
  2277. "dev-2.x": "2.x-dev"
  2278. }
  2279. },
  2280. "autoload": {
  2281. "psr-4": {
  2282. "phpDocumentor\\Reflection\\": "src/"
  2283. }
  2284. },
  2285. "notification-url": "https://packagist.org/downloads/",
  2286. "license": [
  2287. "MIT"
  2288. ],
  2289. "authors": [
  2290. {
  2291. "name": "Jaap van Otterdijk",
  2292. "email": "opensource@ijaap.nl"
  2293. }
  2294. ],
  2295. "description": "Common reflection classes used by phpdocumentor to reflect the code structure",
  2296. "homepage": "http://www.phpdoc.org",
  2297. "keywords": [
  2298. "FQSEN",
  2299. "phpDocumentor",
  2300. "phpdoc",
  2301. "reflection",
  2302. "static analysis"
  2303. ],
  2304. "support": {
  2305. "issues": "https://github.com/phpDocumentor/ReflectionCommon/issues",
  2306. "source": "https://github.com/phpDocumentor/ReflectionCommon/tree/2.x"
  2307. },
  2308. "time": "2020-06-27T09:03:43+00:00"
  2309. },
  2310. {
  2311. "name": "phpdocumentor/reflection-docblock",
  2312. "version": "5.4.1",
  2313. "source": {
  2314. "type": "git",
  2315. "url": "https://github.com/phpDocumentor/ReflectionDocBlock.git",
  2316. "reference": "9d07b3f7fdcf5efec5d1609cba3c19c5ea2bdc9c"
  2317. },
  2318. "dist": {
  2319. "type": "zip",
  2320. "url": "https://api.github.com/repos/phpDocumentor/ReflectionDocBlock/zipball/9d07b3f7fdcf5efec5d1609cba3c19c5ea2bdc9c",
  2321. "reference": "9d07b3f7fdcf5efec5d1609cba3c19c5ea2bdc9c",
  2322. "shasum": ""
  2323. },
  2324. "require": {
  2325. "doctrine/deprecations": "^1.1",
  2326. "ext-filter": "*",
  2327. "php": "^7.4 || ^8.0",
  2328. "phpdocumentor/reflection-common": "^2.2",
  2329. "phpdocumentor/type-resolver": "^1.7",
  2330. "phpstan/phpdoc-parser": "^1.7",
  2331. "webmozart/assert": "^1.9.1"
  2332. },
  2333. "require-dev": {
  2334. "mockery/mockery": "~1.3.5",
  2335. "phpstan/extension-installer": "^1.1",
  2336. "phpstan/phpstan": "^1.8",
  2337. "phpstan/phpstan-mockery": "^1.1",
  2338. "phpstan/phpstan-webmozart-assert": "^1.2",
  2339. "phpunit/phpunit": "^9.5",
  2340. "vimeo/psalm": "^5.13"
  2341. },
  2342. "type": "library",
  2343. "extra": {
  2344. "branch-alias": {
  2345. "dev-master": "5.x-dev"
  2346. }
  2347. },
  2348. "autoload": {
  2349. "psr-4": {
  2350. "phpDocumentor\\Reflection\\": "src"
  2351. }
  2352. },
  2353. "notification-url": "https://packagist.org/downloads/",
  2354. "license": [
  2355. "MIT"
  2356. ],
  2357. "authors": [
  2358. {
  2359. "name": "Mike van Riel",
  2360. "email": "me@mikevanriel.com"
  2361. },
  2362. {
  2363. "name": "Jaap van Otterdijk",
  2364. "email": "opensource@ijaap.nl"
  2365. }
  2366. ],
  2367. "description": "With this component, a library can provide support for annotations via DocBlocks or otherwise retrieve information that is embedded in a DocBlock.",
  2368. "support": {
  2369. "issues": "https://github.com/phpDocumentor/ReflectionDocBlock/issues",
  2370. "source": "https://github.com/phpDocumentor/ReflectionDocBlock/tree/5.4.1"
  2371. },
  2372. "time": "2024-05-21T05:55:05+00:00"
  2373. },
  2374. {
  2375. "name": "phpdocumentor/type-resolver",
  2376. "version": "1.8.2",
  2377. "source": {
  2378. "type": "git",
  2379. "url": "https://github.com/phpDocumentor/TypeResolver.git",
  2380. "reference": "153ae662783729388a584b4361f2545e4d841e3c"
  2381. },
  2382. "dist": {
  2383. "type": "zip",
  2384. "url": "https://api.github.com/repos/phpDocumentor/TypeResolver/zipball/153ae662783729388a584b4361f2545e4d841e3c",
  2385. "reference": "153ae662783729388a584b4361f2545e4d841e3c",
  2386. "shasum": ""
  2387. },
  2388. "require": {
  2389. "doctrine/deprecations": "^1.0",
  2390. "php": "^7.3 || ^8.0",
  2391. "phpdocumentor/reflection-common": "^2.0",
  2392. "phpstan/phpdoc-parser": "^1.13"
  2393. },
  2394. "require-dev": {
  2395. "ext-tokenizer": "*",
  2396. "phpbench/phpbench": "^1.2",
  2397. "phpstan/extension-installer": "^1.1",
  2398. "phpstan/phpstan": "^1.8",
  2399. "phpstan/phpstan-phpunit": "^1.1",
  2400. "phpunit/phpunit": "^9.5",
  2401. "rector/rector": "^0.13.9",
  2402. "vimeo/psalm": "^4.25"
  2403. },
  2404. "type": "library",
  2405. "extra": {
  2406. "branch-alias": {
  2407. "dev-1.x": "1.x-dev"
  2408. }
  2409. },
  2410. "autoload": {
  2411. "psr-4": {
  2412. "phpDocumentor\\Reflection\\": "src"
  2413. }
  2414. },
  2415. "notification-url": "https://packagist.org/downloads/",
  2416. "license": [
  2417. "MIT"
  2418. ],
  2419. "authors": [
  2420. {
  2421. "name": "Mike van Riel",
  2422. "email": "me@mikevanriel.com"
  2423. }
  2424. ],
  2425. "description": "A PSR-5 based resolver of Class names, Types and Structural Element Names",
  2426. "support": {
  2427. "issues": "https://github.com/phpDocumentor/TypeResolver/issues",
  2428. "source": "https://github.com/phpDocumentor/TypeResolver/tree/1.8.2"
  2429. },
  2430. "time": "2024-02-23T11:10:43+00:00"
  2431. },
  2432. {
  2433. "name": "phpstan/phpdoc-parser",
  2434. "version": "1.29.1",
  2435. "source": {
  2436. "type": "git",
  2437. "url": "https://github.com/phpstan/phpdoc-parser.git",
  2438. "reference": "fcaefacf2d5c417e928405b71b400d4ce10daaf4"
  2439. },
  2440. "dist": {
  2441. "type": "zip",
  2442. "url": "https://api.github.com/repos/phpstan/phpdoc-parser/zipball/fcaefacf2d5c417e928405b71b400d4ce10daaf4",
  2443. "reference": "fcaefacf2d5c417e928405b71b400d4ce10daaf4",
  2444. "shasum": ""
  2445. },
  2446. "require": {
  2447. "php": "^7.2 || ^8.0"
  2448. },
  2449. "require-dev": {
  2450. "doctrine/annotations": "^2.0",
  2451. "nikic/php-parser": "^4.15",
  2452. "php-parallel-lint/php-parallel-lint": "^1.2",
  2453. "phpstan/extension-installer": "^1.0",
  2454. "phpstan/phpstan": "^1.5",
  2455. "phpstan/phpstan-phpunit": "^1.1",
  2456. "phpstan/phpstan-strict-rules": "^1.0",
  2457. "phpunit/phpunit": "^9.5",
  2458. "symfony/process": "^5.2"
  2459. },
  2460. "type": "library",
  2461. "autoload": {
  2462. "psr-4": {
  2463. "PHPStan\\PhpDocParser\\": [
  2464. "src/"
  2465. ]
  2466. }
  2467. },
  2468. "notification-url": "https://packagist.org/downloads/",
  2469. "license": [
  2470. "MIT"
  2471. ],
  2472. "description": "PHPDoc parser with support for nullable, intersection and generic types",
  2473. "support": {
  2474. "issues": "https://github.com/phpstan/phpdoc-parser/issues",
  2475. "source": "https://github.com/phpstan/phpdoc-parser/tree/1.29.1"
  2476. },
  2477. "time": "2024-05-31T08:52:43+00:00"
  2478. },
  2479. {
  2480. "name": "psr/cache",
  2481. "version": "3.0.0",
  2482. "source": {
  2483. "type": "git",
  2484. "url": "https://github.com/php-fig/cache.git",
  2485. "reference": "aa5030cfa5405eccfdcb1083ce040c2cb8d253bf"
  2486. },
  2487. "dist": {
  2488. "type": "zip",
  2489. "url": "https://api.github.com/repos/php-fig/cache/zipball/aa5030cfa5405eccfdcb1083ce040c2cb8d253bf",
  2490. "reference": "aa5030cfa5405eccfdcb1083ce040c2cb8d253bf",
  2491. "shasum": ""
  2492. },
  2493. "require": {
  2494. "php": ">=8.0.0"
  2495. },
  2496. "type": "library",
  2497. "extra": {
  2498. "branch-alias": {
  2499. "dev-master": "1.0.x-dev"
  2500. }
  2501. },
  2502. "autoload": {
  2503. "psr-4": {
  2504. "Psr\\Cache\\": "src/"
  2505. }
  2506. },
  2507. "notification-url": "https://packagist.org/downloads/",
  2508. "license": [
  2509. "MIT"
  2510. ],
  2511. "authors": [
  2512. {
  2513. "name": "PHP-FIG",
  2514. "homepage": "https://www.php-fig.org/"
  2515. }
  2516. ],
  2517. "description": "Common interface for caching libraries",
  2518. "keywords": [
  2519. "cache",
  2520. "psr",
  2521. "psr-6"
  2522. ],
  2523. "support": {
  2524. "source": "https://github.com/php-fig/cache/tree/3.0.0"
  2525. },
  2526. "time": "2021-02-03T23:26:27+00:00"
  2527. },
  2528. {
  2529. "name": "psr/clock",
  2530. "version": "1.0.0",
  2531. "source": {
  2532. "type": "git",
  2533. "url": "https://github.com/php-fig/clock.git",
  2534. "reference": "e41a24703d4560fd0acb709162f73b8adfc3aa0d"
  2535. },
  2536. "dist": {
  2537. "type": "zip",
  2538. "url": "https://api.github.com/repos/php-fig/clock/zipball/e41a24703d4560fd0acb709162f73b8adfc3aa0d",
  2539. "reference": "e41a24703d4560fd0acb709162f73b8adfc3aa0d",
  2540. "shasum": ""
  2541. },
  2542. "require": {
  2543. "php": "^7.0 || ^8.0"
  2544. },
  2545. "type": "library",
  2546. "autoload": {
  2547. "psr-4": {
  2548. "Psr\\Clock\\": "src/"
  2549. }
  2550. },
  2551. "notification-url": "https://packagist.org/downloads/",
  2552. "license": [
  2553. "MIT"
  2554. ],
  2555. "authors": [
  2556. {
  2557. "name": "PHP-FIG",
  2558. "homepage": "https://www.php-fig.org/"
  2559. }
  2560. ],
  2561. "description": "Common interface for reading the clock.",
  2562. "homepage": "https://github.com/php-fig/clock",
  2563. "keywords": [
  2564. "clock",
  2565. "now",
  2566. "psr",
  2567. "psr-20",
  2568. "time"
  2569. ],
  2570. "support": {
  2571. "issues": "https://github.com/php-fig/clock/issues",
  2572. "source": "https://github.com/php-fig/clock/tree/1.0.0"
  2573. },
  2574. "time": "2022-11-25T14:36:26+00:00"
  2575. },
  2576. {
  2577. "name": "psr/container",
  2578. "version": "2.0.2",
  2579. "source": {
  2580. "type": "git",
  2581. "url": "https://github.com/php-fig/container.git",
  2582. "reference": "c71ecc56dfe541dbd90c5360474fbc405f8d5963"
  2583. },
  2584. "dist": {
  2585. "type": "zip",
  2586. "url": "https://api.github.com/repos/php-fig/container/zipball/c71ecc56dfe541dbd90c5360474fbc405f8d5963",
  2587. "reference": "c71ecc56dfe541dbd90c5360474fbc405f8d5963",
  2588. "shasum": ""
  2589. },
  2590. "require": {
  2591. "php": ">=7.4.0"
  2592. },
  2593. "type": "library",
  2594. "extra": {
  2595. "branch-alias": {
  2596. "dev-master": "2.0.x-dev"
  2597. }
  2598. },
  2599. "autoload": {
  2600. "psr-4": {
  2601. "Psr\\Container\\": "src/"
  2602. }
  2603. },
  2604. "notification-url": "https://packagist.org/downloads/",
  2605. "license": [
  2606. "MIT"
  2607. ],
  2608. "authors": [
  2609. {
  2610. "name": "PHP-FIG",
  2611. "homepage": "https://www.php-fig.org/"
  2612. }
  2613. ],
  2614. "description": "Common Container Interface (PHP FIG PSR-11)",
  2615. "homepage": "https://github.com/php-fig/container",
  2616. "keywords": [
  2617. "PSR-11",
  2618. "container",
  2619. "container-interface",
  2620. "container-interop",
  2621. "psr"
  2622. ],
  2623. "support": {
  2624. "issues": "https://github.com/php-fig/container/issues",
  2625. "source": "https://github.com/php-fig/container/tree/2.0.2"
  2626. },
  2627. "time": "2021-11-05T16:47:00+00:00"
  2628. },
  2629. {
  2630. "name": "psr/event-dispatcher",
  2631. "version": "1.0.0",
  2632. "source": {
  2633. "type": "git",
  2634. "url": "https://github.com/php-fig/event-dispatcher.git",
  2635. "reference": "dbefd12671e8a14ec7f180cab83036ed26714bb0"
  2636. },
  2637. "dist": {
  2638. "type": "zip",
  2639. "url": "https://api.github.com/repos/php-fig/event-dispatcher/zipball/dbefd12671e8a14ec7f180cab83036ed26714bb0",
  2640. "reference": "dbefd12671e8a14ec7f180cab83036ed26714bb0",
  2641. "shasum": ""
  2642. },
  2643. "require": {
  2644. "php": ">=7.2.0"
  2645. },
  2646. "type": "library",
  2647. "extra": {
  2648. "branch-alias": {
  2649. "dev-master": "1.0.x-dev"
  2650. }
  2651. },
  2652. "autoload": {
  2653. "psr-4": {
  2654. "Psr\\EventDispatcher\\": "src/"
  2655. }
  2656. },
  2657. "notification-url": "https://packagist.org/downloads/",
  2658. "license": [
  2659. "MIT"
  2660. ],
  2661. "authors": [
  2662. {
  2663. "name": "PHP-FIG",
  2664. "homepage": "http://www.php-fig.org/"
  2665. }
  2666. ],
  2667. "description": "Standard interfaces for event handling.",
  2668. "keywords": [
  2669. "events",
  2670. "psr",
  2671. "psr-14"
  2672. ],
  2673. "support": {
  2674. "issues": "https://github.com/php-fig/event-dispatcher/issues",
  2675. "source": "https://github.com/php-fig/event-dispatcher/tree/1.0.0"
  2676. },
  2677. "time": "2019-01-08T18:20:26+00:00"
  2678. },
  2679. {
  2680. "name": "psr/http-factory",
  2681. "version": "1.1.0",
  2682. "source": {
  2683. "type": "git",
  2684. "url": "https://github.com/php-fig/http-factory.git",
  2685. "reference": "2b4765fddfe3b508ac62f829e852b1501d3f6e8a"
  2686. },
  2687. "dist": {
  2688. "type": "zip",
  2689. "url": "https://api.github.com/repos/php-fig/http-factory/zipball/2b4765fddfe3b508ac62f829e852b1501d3f6e8a",
  2690. "reference": "2b4765fddfe3b508ac62f829e852b1501d3f6e8a",
  2691. "shasum": ""
  2692. },
  2693. "require": {
  2694. "php": ">=7.1",
  2695. "psr/http-message": "^1.0 || ^2.0"
  2696. },
  2697. "type": "library",
  2698. "extra": {
  2699. "branch-alias": {
  2700. "dev-master": "1.0.x-dev"
  2701. }
  2702. },
  2703. "autoload": {
  2704. "psr-4": {
  2705. "Psr\\Http\\Message\\": "src/"
  2706. }
  2707. },
  2708. "notification-url": "https://packagist.org/downloads/",
  2709. "license": [
  2710. "MIT"
  2711. ],
  2712. "authors": [
  2713. {
  2714. "name": "PHP-FIG",
  2715. "homepage": "https://www.php-fig.org/"
  2716. }
  2717. ],
  2718. "description": "PSR-17: Common interfaces for PSR-7 HTTP message factories",
  2719. "keywords": [
  2720. "factory",
  2721. "http",
  2722. "message",
  2723. "psr",
  2724. "psr-17",
  2725. "psr-7",
  2726. "request",
  2727. "response"
  2728. ],
  2729. "support": {
  2730. "source": "https://github.com/php-fig/http-factory"
  2731. },
  2732. "time": "2024-04-15T12:06:14+00:00"
  2733. },
  2734. {
  2735. "name": "psr/http-message",
  2736. "version": "2.0",
  2737. "source": {
  2738. "type": "git",
  2739. "url": "https://github.com/php-fig/http-message.git",
  2740. "reference": "402d35bcb92c70c026d1a6a9883f06b2ead23d71"
  2741. },
  2742. "dist": {
  2743. "type": "zip",
  2744. "url": "https://api.github.com/repos/php-fig/http-message/zipball/402d35bcb92c70c026d1a6a9883f06b2ead23d71",
  2745. "reference": "402d35bcb92c70c026d1a6a9883f06b2ead23d71",
  2746. "shasum": ""
  2747. },
  2748. "require": {
  2749. "php": "^7.2 || ^8.0"
  2750. },
  2751. "type": "library",
  2752. "extra": {
  2753. "branch-alias": {
  2754. "dev-master": "2.0.x-dev"
  2755. }
  2756. },
  2757. "autoload": {
  2758. "psr-4": {
  2759. "Psr\\Http\\Message\\": "src/"
  2760. }
  2761. },
  2762. "notification-url": "https://packagist.org/downloads/",
  2763. "license": [
  2764. "MIT"
  2765. ],
  2766. "authors": [
  2767. {
  2768. "name": "PHP-FIG",
  2769. "homepage": "https://www.php-fig.org/"
  2770. }
  2771. ],
  2772. "description": "Common interface for HTTP messages",
  2773. "homepage": "https://github.com/php-fig/http-message",
  2774. "keywords": [
  2775. "http",
  2776. "http-message",
  2777. "psr",
  2778. "psr-7",
  2779. "request",
  2780. "response"
  2781. ],
  2782. "support": {
  2783. "source": "https://github.com/php-fig/http-message/tree/2.0"
  2784. },
  2785. "time": "2023-04-04T09:54:51+00:00"
  2786. },
  2787. {
  2788. "name": "psr/link",
  2789. "version": "2.0.1",
  2790. "source": {
  2791. "type": "git",
  2792. "url": "https://github.com/php-fig/link.git",
  2793. "reference": "84b159194ecfd7eaa472280213976e96415433f7"
  2794. },
  2795. "dist": {
  2796. "type": "zip",
  2797. "url": "https://api.github.com/repos/php-fig/link/zipball/84b159194ecfd7eaa472280213976e96415433f7",
  2798. "reference": "84b159194ecfd7eaa472280213976e96415433f7",
  2799. "shasum": ""
  2800. },
  2801. "require": {
  2802. "php": ">=8.0.0"
  2803. },
  2804. "suggest": {
  2805. "fig/link-util": "Provides some useful PSR-13 utilities"
  2806. },
  2807. "type": "library",
  2808. "extra": {
  2809. "branch-alias": {
  2810. "dev-master": "2.0.x-dev"
  2811. }
  2812. },
  2813. "autoload": {
  2814. "psr-4": {
  2815. "Psr\\Link\\": "src/"
  2816. }
  2817. },
  2818. "notification-url": "https://packagist.org/downloads/",
  2819. "license": [
  2820. "MIT"
  2821. ],
  2822. "authors": [
  2823. {
  2824. "name": "PHP-FIG",
  2825. "homepage": "http://www.php-fig.org/"
  2826. }
  2827. ],
  2828. "description": "Common interfaces for HTTP links",
  2829. "homepage": "https://github.com/php-fig/link",
  2830. "keywords": [
  2831. "http",
  2832. "http-link",
  2833. "link",
  2834. "psr",
  2835. "psr-13",
  2836. "rest"
  2837. ],
  2838. "support": {
  2839. "source": "https://github.com/php-fig/link/tree/2.0.1"
  2840. },
  2841. "time": "2021-03-11T23:00:27+00:00"
  2842. },
  2843. {
  2844. "name": "psr/log",
  2845. "version": "3.0.0",
  2846. "source": {
  2847. "type": "git",
  2848. "url": "https://github.com/php-fig/log.git",
  2849. "reference": "fe5ea303b0887d5caefd3d431c3e61ad47037001"
  2850. },
  2851. "dist": {
  2852. "type": "zip",
  2853. "url": "https://api.github.com/repos/php-fig/log/zipball/fe5ea303b0887d5caefd3d431c3e61ad47037001",
  2854. "reference": "fe5ea303b0887d5caefd3d431c3e61ad47037001",
  2855. "shasum": ""
  2856. },
  2857. "require": {
  2858. "php": ">=8.0.0"
  2859. },
  2860. "type": "library",
  2861. "extra": {
  2862. "branch-alias": {
  2863. "dev-master": "3.x-dev"
  2864. }
  2865. },
  2866. "autoload": {
  2867. "psr-4": {
  2868. "Psr\\Log\\": "src"
  2869. }
  2870. },
  2871. "notification-url": "https://packagist.org/downloads/",
  2872. "license": [
  2873. "MIT"
  2874. ],
  2875. "authors": [
  2876. {
  2877. "name": "PHP-FIG",
  2878. "homepage": "https://www.php-fig.org/"
  2879. }
  2880. ],
  2881. "description": "Common interface for logging libraries",
  2882. "homepage": "https://github.com/php-fig/log",
  2883. "keywords": [
  2884. "log",
  2885. "psr",
  2886. "psr-3"
  2887. ],
  2888. "support": {
  2889. "source": "https://github.com/php-fig/log/tree/3.0.0"
  2890. },
  2891. "time": "2021-07-14T16:46:02+00:00"
  2892. },
  2893. {
  2894. "name": "symfony/apache-pack",
  2895. "version": "v1.0.1",
  2896. "source": {
  2897. "type": "git",
  2898. "url": "https://github.com/symfony/apache-pack.git",
  2899. "reference": "3aa5818d73ad2551281fc58a75afd9ca82622e6c"
  2900. },
  2901. "dist": {
  2902. "type": "zip",
  2903. "url": "https://api.github.com/repos/symfony/apache-pack/zipball/3aa5818d73ad2551281fc58a75afd9ca82622e6c",
  2904. "reference": "3aa5818d73ad2551281fc58a75afd9ca82622e6c",
  2905. "shasum": ""
  2906. },
  2907. "type": "symfony-pack",
  2908. "notification-url": "https://packagist.org/downloads/",
  2909. "license": [
  2910. "MIT"
  2911. ],
  2912. "description": "A pack for Apache support in Symfony",
  2913. "support": {
  2914. "issues": "https://github.com/symfony/apache-pack/issues",
  2915. "source": "https://github.com/symfony/apache-pack/tree/master"
  2916. },
  2917. "time": "2017-12-12T01:46:35+00:00"
  2918. },
  2919. {
  2920. "name": "symfony/asset",
  2921. "version": "v7.1.1",
  2922. "source": {
  2923. "type": "git",
  2924. "url": "https://github.com/symfony/asset.git",
  2925. "reference": "8970de4a0cedd34e097c0f5c502a614780b9ca43"
  2926. },
  2927. "dist": {
  2928. "type": "zip",
  2929. "url": "https://api.github.com/repos/symfony/asset/zipball/8970de4a0cedd34e097c0f5c502a614780b9ca43",
  2930. "reference": "8970de4a0cedd34e097c0f5c502a614780b9ca43",
  2931. "shasum": ""
  2932. },
  2933. "require": {
  2934. "php": ">=8.2"
  2935. },
  2936. "conflict": {
  2937. "symfony/http-foundation": "<6.4"
  2938. },
  2939. "require-dev": {
  2940. "symfony/http-client": "^6.4|^7.0",
  2941. "symfony/http-foundation": "^6.4|^7.0",
  2942. "symfony/http-kernel": "^6.4|^7.0"
  2943. },
  2944. "type": "library",
  2945. "autoload": {
  2946. "psr-4": {
  2947. "Symfony\\Component\\Asset\\": ""
  2948. },
  2949. "exclude-from-classmap": [
  2950. "/Tests/"
  2951. ]
  2952. },
  2953. "notification-url": "https://packagist.org/downloads/",
  2954. "license": [
  2955. "MIT"
  2956. ],
  2957. "authors": [
  2958. {
  2959. "name": "Fabien Potencier",
  2960. "email": "fabien@symfony.com"
  2961. },
  2962. {
  2963. "name": "Symfony Community",
  2964. "homepage": "https://symfony.com/contributors"
  2965. }
  2966. ],
  2967. "description": "Manages URL generation and versioning of web assets such as CSS stylesheets, JavaScript files and image files",
  2968. "homepage": "https://symfony.com",
  2969. "support": {
  2970. "source": "https://github.com/symfony/asset/tree/v7.1.1"
  2971. },
  2972. "funding": [
  2973. {
  2974. "url": "https://symfony.com/sponsor",
  2975. "type": "custom"
  2976. },
  2977. {
  2978. "url": "https://github.com/fabpot",
  2979. "type": "github"
  2980. },
  2981. {
  2982. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  2983. "type": "tidelift"
  2984. }
  2985. ],
  2986. "time": "2024-05-31T14:57:53+00:00"
  2987. },
  2988. {
  2989. "name": "symfony/cache",
  2990. "version": "v7.1.3",
  2991. "source": {
  2992. "type": "git",
  2993. "url": "https://github.com/symfony/cache.git",
  2994. "reference": "8ac37acee794372f9732fe8a61a8221f6762148e"
  2995. },
  2996. "dist": {
  2997. "type": "zip",
  2998. "url": "https://api.github.com/repos/symfony/cache/zipball/8ac37acee794372f9732fe8a61a8221f6762148e",
  2999. "reference": "8ac37acee794372f9732fe8a61a8221f6762148e",
  3000. "shasum": ""
  3001. },
  3002. "require": {
  3003. "php": ">=8.2",
  3004. "psr/cache": "^2.0|^3.0",
  3005. "psr/log": "^1.1|^2|^3",
  3006. "symfony/cache-contracts": "^2.5|^3",
  3007. "symfony/deprecation-contracts": "^2.5|^3.0",
  3008. "symfony/service-contracts": "^2.5|^3",
  3009. "symfony/var-exporter": "^6.4|^7.0"
  3010. },
  3011. "conflict": {
  3012. "doctrine/dbal": "<3.6",
  3013. "symfony/dependency-injection": "<6.4",
  3014. "symfony/http-kernel": "<6.4",
  3015. "symfony/var-dumper": "<6.4"
  3016. },
  3017. "provide": {
  3018. "psr/cache-implementation": "2.0|3.0",
  3019. "psr/simple-cache-implementation": "1.0|2.0|3.0",
  3020. "symfony/cache-implementation": "1.1|2.0|3.0"
  3021. },
  3022. "require-dev": {
  3023. "cache/integration-tests": "dev-master",
  3024. "doctrine/dbal": "^3.6|^4",
  3025. "predis/predis": "^1.1|^2.0",
  3026. "psr/simple-cache": "^1.0|^2.0|^3.0",
  3027. "symfony/config": "^6.4|^7.0",
  3028. "symfony/dependency-injection": "^6.4|^7.0",
  3029. "symfony/filesystem": "^6.4|^7.0",
  3030. "symfony/http-kernel": "^6.4|^7.0",
  3031. "symfony/messenger": "^6.4|^7.0",
  3032. "symfony/var-dumper": "^6.4|^7.0"
  3033. },
  3034. "type": "library",
  3035. "autoload": {
  3036. "psr-4": {
  3037. "Symfony\\Component\\Cache\\": ""
  3038. },
  3039. "classmap": [
  3040. "Traits/ValueWrapper.php"
  3041. ],
  3042. "exclude-from-classmap": [
  3043. "/Tests/"
  3044. ]
  3045. },
  3046. "notification-url": "https://packagist.org/downloads/",
  3047. "license": [
  3048. "MIT"
  3049. ],
  3050. "authors": [
  3051. {
  3052. "name": "Nicolas Grekas",
  3053. "email": "p@tchwork.com"
  3054. },
  3055. {
  3056. "name": "Symfony Community",
  3057. "homepage": "https://symfony.com/contributors"
  3058. }
  3059. ],
  3060. "description": "Provides extended PSR-6, PSR-16 (and tags) implementations",
  3061. "homepage": "https://symfony.com",
  3062. "keywords": [
  3063. "caching",
  3064. "psr6"
  3065. ],
  3066. "support": {
  3067. "source": "https://github.com/symfony/cache/tree/v7.1.3"
  3068. },
  3069. "funding": [
  3070. {
  3071. "url": "https://symfony.com/sponsor",
  3072. "type": "custom"
  3073. },
  3074. {
  3075. "url": "https://github.com/fabpot",
  3076. "type": "github"
  3077. },
  3078. {
  3079. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3080. "type": "tidelift"
  3081. }
  3082. ],
  3083. "time": "2024-07-17T06:10:24+00:00"
  3084. },
  3085. {
  3086. "name": "symfony/cache-contracts",
  3087. "version": "v3.5.0",
  3088. "source": {
  3089. "type": "git",
  3090. "url": "https://github.com/symfony/cache-contracts.git",
  3091. "reference": "df6a1a44c890faded49a5fca33c2d5c5fd3c2197"
  3092. },
  3093. "dist": {
  3094. "type": "zip",
  3095. "url": "https://api.github.com/repos/symfony/cache-contracts/zipball/df6a1a44c890faded49a5fca33c2d5c5fd3c2197",
  3096. "reference": "df6a1a44c890faded49a5fca33c2d5c5fd3c2197",
  3097. "shasum": ""
  3098. },
  3099. "require": {
  3100. "php": ">=8.1",
  3101. "psr/cache": "^3.0"
  3102. },
  3103. "type": "library",
  3104. "extra": {
  3105. "branch-alias": {
  3106. "dev-main": "3.5-dev"
  3107. },
  3108. "thanks": {
  3109. "name": "symfony/contracts",
  3110. "url": "https://github.com/symfony/contracts"
  3111. }
  3112. },
  3113. "autoload": {
  3114. "psr-4": {
  3115. "Symfony\\Contracts\\Cache\\": ""
  3116. }
  3117. },
  3118. "notification-url": "https://packagist.org/downloads/",
  3119. "license": [
  3120. "MIT"
  3121. ],
  3122. "authors": [
  3123. {
  3124. "name": "Nicolas Grekas",
  3125. "email": "p@tchwork.com"
  3126. },
  3127. {
  3128. "name": "Symfony Community",
  3129. "homepage": "https://symfony.com/contributors"
  3130. }
  3131. ],
  3132. "description": "Generic abstractions related to caching",
  3133. "homepage": "https://symfony.com",
  3134. "keywords": [
  3135. "abstractions",
  3136. "contracts",
  3137. "decoupling",
  3138. "interfaces",
  3139. "interoperability",
  3140. "standards"
  3141. ],
  3142. "support": {
  3143. "source": "https://github.com/symfony/cache-contracts/tree/v3.5.0"
  3144. },
  3145. "funding": [
  3146. {
  3147. "url": "https://symfony.com/sponsor",
  3148. "type": "custom"
  3149. },
  3150. {
  3151. "url": "https://github.com/fabpot",
  3152. "type": "github"
  3153. },
  3154. {
  3155. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3156. "type": "tidelift"
  3157. }
  3158. ],
  3159. "time": "2024-04-18T09:32:20+00:00"
  3160. },
  3161. {
  3162. "name": "symfony/clock",
  3163. "version": "v7.1.1",
  3164. "source": {
  3165. "type": "git",
  3166. "url": "https://github.com/symfony/clock.git",
  3167. "reference": "3dfc8b084853586de51dd1441c6242c76a28cbe7"
  3168. },
  3169. "dist": {
  3170. "type": "zip",
  3171. "url": "https://api.github.com/repos/symfony/clock/zipball/3dfc8b084853586de51dd1441c6242c76a28cbe7",
  3172. "reference": "3dfc8b084853586de51dd1441c6242c76a28cbe7",
  3173. "shasum": ""
  3174. },
  3175. "require": {
  3176. "php": ">=8.2",
  3177. "psr/clock": "^1.0",
  3178. "symfony/polyfill-php83": "^1.28"
  3179. },
  3180. "provide": {
  3181. "psr/clock-implementation": "1.0"
  3182. },
  3183. "type": "library",
  3184. "autoload": {
  3185. "files": [
  3186. "Resources/now.php"
  3187. ],
  3188. "psr-4": {
  3189. "Symfony\\Component\\Clock\\": ""
  3190. },
  3191. "exclude-from-classmap": [
  3192. "/Tests/"
  3193. ]
  3194. },
  3195. "notification-url": "https://packagist.org/downloads/",
  3196. "license": [
  3197. "MIT"
  3198. ],
  3199. "authors": [
  3200. {
  3201. "name": "Nicolas Grekas",
  3202. "email": "p@tchwork.com"
  3203. },
  3204. {
  3205. "name": "Symfony Community",
  3206. "homepage": "https://symfony.com/contributors"
  3207. }
  3208. ],
  3209. "description": "Decouples applications from the system clock",
  3210. "homepage": "https://symfony.com",
  3211. "keywords": [
  3212. "clock",
  3213. "psr20",
  3214. "time"
  3215. ],
  3216. "support": {
  3217. "source": "https://github.com/symfony/clock/tree/v7.1.1"
  3218. },
  3219. "funding": [
  3220. {
  3221. "url": "https://symfony.com/sponsor",
  3222. "type": "custom"
  3223. },
  3224. {
  3225. "url": "https://github.com/fabpot",
  3226. "type": "github"
  3227. },
  3228. {
  3229. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3230. "type": "tidelift"
  3231. }
  3232. ],
  3233. "time": "2024-05-31T14:57:53+00:00"
  3234. },
  3235. {
  3236. "name": "symfony/config",
  3237. "version": "v7.1.1",
  3238. "source": {
  3239. "type": "git",
  3240. "url": "https://github.com/symfony/config.git",
  3241. "reference": "2210fc99fa42a259eb6c89d1f724ce0c4d62d5d2"
  3242. },
  3243. "dist": {
  3244. "type": "zip",
  3245. "url": "https://api.github.com/repos/symfony/config/zipball/2210fc99fa42a259eb6c89d1f724ce0c4d62d5d2",
  3246. "reference": "2210fc99fa42a259eb6c89d1f724ce0c4d62d5d2",
  3247. "shasum": ""
  3248. },
  3249. "require": {
  3250. "php": ">=8.2",
  3251. "symfony/deprecation-contracts": "^2.5|^3",
  3252. "symfony/filesystem": "^7.1",
  3253. "symfony/polyfill-ctype": "~1.8"
  3254. },
  3255. "conflict": {
  3256. "symfony/finder": "<6.4",
  3257. "symfony/service-contracts": "<2.5"
  3258. },
  3259. "require-dev": {
  3260. "symfony/event-dispatcher": "^6.4|^7.0",
  3261. "symfony/finder": "^6.4|^7.0",
  3262. "symfony/messenger": "^6.4|^7.0",
  3263. "symfony/service-contracts": "^2.5|^3",
  3264. "symfony/yaml": "^6.4|^7.0"
  3265. },
  3266. "type": "library",
  3267. "autoload": {
  3268. "psr-4": {
  3269. "Symfony\\Component\\Config\\": ""
  3270. },
  3271. "exclude-from-classmap": [
  3272. "/Tests/"
  3273. ]
  3274. },
  3275. "notification-url": "https://packagist.org/downloads/",
  3276. "license": [
  3277. "MIT"
  3278. ],
  3279. "authors": [
  3280. {
  3281. "name": "Fabien Potencier",
  3282. "email": "fabien@symfony.com"
  3283. },
  3284. {
  3285. "name": "Symfony Community",
  3286. "homepage": "https://symfony.com/contributors"
  3287. }
  3288. ],
  3289. "description": "Helps you find, load, combine, autofill and validate configuration values of any kind",
  3290. "homepage": "https://symfony.com",
  3291. "support": {
  3292. "source": "https://github.com/symfony/config/tree/v7.1.1"
  3293. },
  3294. "funding": [
  3295. {
  3296. "url": "https://symfony.com/sponsor",
  3297. "type": "custom"
  3298. },
  3299. {
  3300. "url": "https://github.com/fabpot",
  3301. "type": "github"
  3302. },
  3303. {
  3304. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3305. "type": "tidelift"
  3306. }
  3307. ],
  3308. "time": "2024-05-31T14:57:53+00:00"
  3309. },
  3310. {
  3311. "name": "symfony/console",
  3312. "version": "v7.1.3",
  3313. "source": {
  3314. "type": "git",
  3315. "url": "https://github.com/symfony/console.git",
  3316. "reference": "cb1dcb30ebc7005c29864ee78adb47b5fb7c3cd9"
  3317. },
  3318. "dist": {
  3319. "type": "zip",
  3320. "url": "https://api.github.com/repos/symfony/console/zipball/cb1dcb30ebc7005c29864ee78adb47b5fb7c3cd9",
  3321. "reference": "cb1dcb30ebc7005c29864ee78adb47b5fb7c3cd9",
  3322. "shasum": ""
  3323. },
  3324. "require": {
  3325. "php": ">=8.2",
  3326. "symfony/polyfill-mbstring": "~1.0",
  3327. "symfony/service-contracts": "^2.5|^3",
  3328. "symfony/string": "^6.4|^7.0"
  3329. },
  3330. "conflict": {
  3331. "symfony/dependency-injection": "<6.4",
  3332. "symfony/dotenv": "<6.4",
  3333. "symfony/event-dispatcher": "<6.4",
  3334. "symfony/lock": "<6.4",
  3335. "symfony/process": "<6.4"
  3336. },
  3337. "provide": {
  3338. "psr/log-implementation": "1.0|2.0|3.0"
  3339. },
  3340. "require-dev": {
  3341. "psr/log": "^1|^2|^3",
  3342. "symfony/config": "^6.4|^7.0",
  3343. "symfony/dependency-injection": "^6.4|^7.0",
  3344. "symfony/event-dispatcher": "^6.4|^7.0",
  3345. "symfony/http-foundation": "^6.4|^7.0",
  3346. "symfony/http-kernel": "^6.4|^7.0",
  3347. "symfony/lock": "^6.4|^7.0",
  3348. "symfony/messenger": "^6.4|^7.0",
  3349. "symfony/process": "^6.4|^7.0",
  3350. "symfony/stopwatch": "^6.4|^7.0",
  3351. "symfony/var-dumper": "^6.4|^7.0"
  3352. },
  3353. "type": "library",
  3354. "autoload": {
  3355. "psr-4": {
  3356. "Symfony\\Component\\Console\\": ""
  3357. },
  3358. "exclude-from-classmap": [
  3359. "/Tests/"
  3360. ]
  3361. },
  3362. "notification-url": "https://packagist.org/downloads/",
  3363. "license": [
  3364. "MIT"
  3365. ],
  3366. "authors": [
  3367. {
  3368. "name": "Fabien Potencier",
  3369. "email": "fabien@symfony.com"
  3370. },
  3371. {
  3372. "name": "Symfony Community",
  3373. "homepage": "https://symfony.com/contributors"
  3374. }
  3375. ],
  3376. "description": "Eases the creation of beautiful and testable command line interfaces",
  3377. "homepage": "https://symfony.com",
  3378. "keywords": [
  3379. "cli",
  3380. "command-line",
  3381. "console",
  3382. "terminal"
  3383. ],
  3384. "support": {
  3385. "source": "https://github.com/symfony/console/tree/v7.1.3"
  3386. },
  3387. "funding": [
  3388. {
  3389. "url": "https://symfony.com/sponsor",
  3390. "type": "custom"
  3391. },
  3392. {
  3393. "url": "https://github.com/fabpot",
  3394. "type": "github"
  3395. },
  3396. {
  3397. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3398. "type": "tidelift"
  3399. }
  3400. ],
  3401. "time": "2024-07-26T12:41:01+00:00"
  3402. },
  3403. {
  3404. "name": "symfony/dependency-injection",
  3405. "version": "v7.1.3",
  3406. "source": {
  3407. "type": "git",
  3408. "url": "https://github.com/symfony/dependency-injection.git",
  3409. "reference": "8126f0be4ff984e4db0140e60917900a53facb49"
  3410. },
  3411. "dist": {
  3412. "type": "zip",
  3413. "url": "https://api.github.com/repos/symfony/dependency-injection/zipball/8126f0be4ff984e4db0140e60917900a53facb49",
  3414. "reference": "8126f0be4ff984e4db0140e60917900a53facb49",
  3415. "shasum": ""
  3416. },
  3417. "require": {
  3418. "php": ">=8.2",
  3419. "psr/container": "^1.1|^2.0",
  3420. "symfony/deprecation-contracts": "^2.5|^3",
  3421. "symfony/service-contracts": "^3.5",
  3422. "symfony/var-exporter": "^6.4|^7.0"
  3423. },
  3424. "conflict": {
  3425. "ext-psr": "<1.1|>=2",
  3426. "symfony/config": "<6.4",
  3427. "symfony/finder": "<6.4",
  3428. "symfony/yaml": "<6.4"
  3429. },
  3430. "provide": {
  3431. "psr/container-implementation": "1.1|2.0",
  3432. "symfony/service-implementation": "1.1|2.0|3.0"
  3433. },
  3434. "require-dev": {
  3435. "symfony/config": "^6.4|^7.0",
  3436. "symfony/expression-language": "^6.4|^7.0",
  3437. "symfony/yaml": "^6.4|^7.0"
  3438. },
  3439. "type": "library",
  3440. "autoload": {
  3441. "psr-4": {
  3442. "Symfony\\Component\\DependencyInjection\\": ""
  3443. },
  3444. "exclude-from-classmap": [
  3445. "/Tests/"
  3446. ]
  3447. },
  3448. "notification-url": "https://packagist.org/downloads/",
  3449. "license": [
  3450. "MIT"
  3451. ],
  3452. "authors": [
  3453. {
  3454. "name": "Fabien Potencier",
  3455. "email": "fabien@symfony.com"
  3456. },
  3457. {
  3458. "name": "Symfony Community",
  3459. "homepage": "https://symfony.com/contributors"
  3460. }
  3461. ],
  3462. "description": "Allows you to standardize and centralize the way objects are constructed in your application",
  3463. "homepage": "https://symfony.com",
  3464. "support": {
  3465. "source": "https://github.com/symfony/dependency-injection/tree/v7.1.3"
  3466. },
  3467. "funding": [
  3468. {
  3469. "url": "https://symfony.com/sponsor",
  3470. "type": "custom"
  3471. },
  3472. {
  3473. "url": "https://github.com/fabpot",
  3474. "type": "github"
  3475. },
  3476. {
  3477. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3478. "type": "tidelift"
  3479. }
  3480. ],
  3481. "time": "2024-07-26T07:35:39+00:00"
  3482. },
  3483. {
  3484. "name": "symfony/deprecation-contracts",
  3485. "version": "v3.5.0",
  3486. "source": {
  3487. "type": "git",
  3488. "url": "https://github.com/symfony/deprecation-contracts.git",
  3489. "reference": "0e0d29ce1f20deffb4ab1b016a7257c4f1e789a1"
  3490. },
  3491. "dist": {
  3492. "type": "zip",
  3493. "url": "https://api.github.com/repos/symfony/deprecation-contracts/zipball/0e0d29ce1f20deffb4ab1b016a7257c4f1e789a1",
  3494. "reference": "0e0d29ce1f20deffb4ab1b016a7257c4f1e789a1",
  3495. "shasum": ""
  3496. },
  3497. "require": {
  3498. "php": ">=8.1"
  3499. },
  3500. "type": "library",
  3501. "extra": {
  3502. "branch-alias": {
  3503. "dev-main": "3.5-dev"
  3504. },
  3505. "thanks": {
  3506. "name": "symfony/contracts",
  3507. "url": "https://github.com/symfony/contracts"
  3508. }
  3509. },
  3510. "autoload": {
  3511. "files": [
  3512. "function.php"
  3513. ]
  3514. },
  3515. "notification-url": "https://packagist.org/downloads/",
  3516. "license": [
  3517. "MIT"
  3518. ],
  3519. "authors": [
  3520. {
  3521. "name": "Nicolas Grekas",
  3522. "email": "p@tchwork.com"
  3523. },
  3524. {
  3525. "name": "Symfony Community",
  3526. "homepage": "https://symfony.com/contributors"
  3527. }
  3528. ],
  3529. "description": "A generic function and convention to trigger deprecation notices",
  3530. "homepage": "https://symfony.com",
  3531. "support": {
  3532. "source": "https://github.com/symfony/deprecation-contracts/tree/v3.5.0"
  3533. },
  3534. "funding": [
  3535. {
  3536. "url": "https://symfony.com/sponsor",
  3537. "type": "custom"
  3538. },
  3539. {
  3540. "url": "https://github.com/fabpot",
  3541. "type": "github"
  3542. },
  3543. {
  3544. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3545. "type": "tidelift"
  3546. }
  3547. ],
  3548. "time": "2024-04-18T09:32:20+00:00"
  3549. },
  3550. {
  3551. "name": "symfony/doctrine-bridge",
  3552. "version": "v7.1.3",
  3553. "source": {
  3554. "type": "git",
  3555. "url": "https://github.com/symfony/doctrine-bridge.git",
  3556. "reference": "b526822483124b62ff3cda14237418408f444e4d"
  3557. },
  3558. "dist": {
  3559. "type": "zip",
  3560. "url": "https://api.github.com/repos/symfony/doctrine-bridge/zipball/b526822483124b62ff3cda14237418408f444e4d",
  3561. "reference": "b526822483124b62ff3cda14237418408f444e4d",
  3562. "shasum": ""
  3563. },
  3564. "require": {
  3565. "doctrine/event-manager": "^2",
  3566. "doctrine/persistence": "^3.1",
  3567. "php": ">=8.2",
  3568. "symfony/deprecation-contracts": "^2.5|^3",
  3569. "symfony/polyfill-ctype": "~1.8",
  3570. "symfony/polyfill-mbstring": "~1.0",
  3571. "symfony/service-contracts": "^2.5|^3"
  3572. },
  3573. "conflict": {
  3574. "doctrine/dbal": "<3.6",
  3575. "doctrine/lexer": "<1.1",
  3576. "doctrine/orm": "<2.15",
  3577. "symfony/cache": "<6.4",
  3578. "symfony/dependency-injection": "<6.4",
  3579. "symfony/form": "<6.4.6|>=7,<7.0.6",
  3580. "symfony/http-foundation": "<6.4",
  3581. "symfony/http-kernel": "<6.4",
  3582. "symfony/lock": "<6.4",
  3583. "symfony/messenger": "<6.4",
  3584. "symfony/property-info": "<6.4",
  3585. "symfony/security-bundle": "<6.4",
  3586. "symfony/security-core": "<6.4",
  3587. "symfony/validator": "<6.4"
  3588. },
  3589. "require-dev": {
  3590. "doctrine/collections": "^1.0|^2.0",
  3591. "doctrine/data-fixtures": "^1.1",
  3592. "doctrine/dbal": "^3.6|^4",
  3593. "doctrine/orm": "^2.15|^3",
  3594. "psr/log": "^1|^2|^3",
  3595. "symfony/cache": "^6.4|^7.0",
  3596. "symfony/config": "^6.4|^7.0",
  3597. "symfony/dependency-injection": "^6.4|^7.0",
  3598. "symfony/doctrine-messenger": "^6.4|^7.0",
  3599. "symfony/expression-language": "^6.4|^7.0",
  3600. "symfony/form": "^6.4.6|^7.0.6",
  3601. "symfony/http-kernel": "^6.4|^7.0",
  3602. "symfony/lock": "^6.4|^7.0",
  3603. "symfony/messenger": "^6.4|^7.0",
  3604. "symfony/property-access": "^6.4|^7.0",
  3605. "symfony/property-info": "^6.4|^7.0",
  3606. "symfony/security-core": "^6.4|^7.0",
  3607. "symfony/stopwatch": "^6.4|^7.0",
  3608. "symfony/translation": "^6.4|^7.0",
  3609. "symfony/type-info": "^7.1",
  3610. "symfony/uid": "^6.4|^7.0",
  3611. "symfony/validator": "^6.4|^7.0",
  3612. "symfony/var-dumper": "^6.4|^7.0"
  3613. },
  3614. "type": "symfony-bridge",
  3615. "autoload": {
  3616. "psr-4": {
  3617. "Symfony\\Bridge\\Doctrine\\": ""
  3618. },
  3619. "exclude-from-classmap": [
  3620. "/Tests/"
  3621. ]
  3622. },
  3623. "notification-url": "https://packagist.org/downloads/",
  3624. "license": [
  3625. "MIT"
  3626. ],
  3627. "authors": [
  3628. {
  3629. "name": "Fabien Potencier",
  3630. "email": "fabien@symfony.com"
  3631. },
  3632. {
  3633. "name": "Symfony Community",
  3634. "homepage": "https://symfony.com/contributors"
  3635. }
  3636. ],
  3637. "description": "Provides integration for Doctrine with various Symfony components",
  3638. "homepage": "https://symfony.com",
  3639. "support": {
  3640. "source": "https://github.com/symfony/doctrine-bridge/tree/v7.1.3"
  3641. },
  3642. "funding": [
  3643. {
  3644. "url": "https://symfony.com/sponsor",
  3645. "type": "custom"
  3646. },
  3647. {
  3648. "url": "https://github.com/fabpot",
  3649. "type": "github"
  3650. },
  3651. {
  3652. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3653. "type": "tidelift"
  3654. }
  3655. ],
  3656. "time": "2024-07-26T12:41:01+00:00"
  3657. },
  3658. {
  3659. "name": "symfony/dotenv",
  3660. "version": "v7.1.3",
  3661. "source": {
  3662. "type": "git",
  3663. "url": "https://github.com/symfony/dotenv.git",
  3664. "reference": "a26be30fd61678dab694a18a85084cea7673bbf3"
  3665. },
  3666. "dist": {
  3667. "type": "zip",
  3668. "url": "https://api.github.com/repos/symfony/dotenv/zipball/a26be30fd61678dab694a18a85084cea7673bbf3",
  3669. "reference": "a26be30fd61678dab694a18a85084cea7673bbf3",
  3670. "shasum": ""
  3671. },
  3672. "require": {
  3673. "php": ">=8.2"
  3674. },
  3675. "conflict": {
  3676. "symfony/console": "<6.4",
  3677. "symfony/process": "<6.4"
  3678. },
  3679. "require-dev": {
  3680. "symfony/console": "^6.4|^7.0",
  3681. "symfony/process": "^6.4|^7.0"
  3682. },
  3683. "type": "library",
  3684. "autoload": {
  3685. "psr-4": {
  3686. "Symfony\\Component\\Dotenv\\": ""
  3687. },
  3688. "exclude-from-classmap": [
  3689. "/Tests/"
  3690. ]
  3691. },
  3692. "notification-url": "https://packagist.org/downloads/",
  3693. "license": [
  3694. "MIT"
  3695. ],
  3696. "authors": [
  3697. {
  3698. "name": "Fabien Potencier",
  3699. "email": "fabien@symfony.com"
  3700. },
  3701. {
  3702. "name": "Symfony Community",
  3703. "homepage": "https://symfony.com/contributors"
  3704. }
  3705. ],
  3706. "description": "Registers environment variables from a .env file",
  3707. "homepage": "https://symfony.com",
  3708. "keywords": [
  3709. "dotenv",
  3710. "env",
  3711. "environment"
  3712. ],
  3713. "support": {
  3714. "source": "https://github.com/symfony/dotenv/tree/v7.1.3"
  3715. },
  3716. "funding": [
  3717. {
  3718. "url": "https://symfony.com/sponsor",
  3719. "type": "custom"
  3720. },
  3721. {
  3722. "url": "https://github.com/fabpot",
  3723. "type": "github"
  3724. },
  3725. {
  3726. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3727. "type": "tidelift"
  3728. }
  3729. ],
  3730. "time": "2024-07-09T19:36:07+00:00"
  3731. },
  3732. {
  3733. "name": "symfony/error-handler",
  3734. "version": "v7.1.3",
  3735. "source": {
  3736. "type": "git",
  3737. "url": "https://github.com/symfony/error-handler.git",
  3738. "reference": "432bb369952795c61ca1def65e078c4a80dad13c"
  3739. },
  3740. "dist": {
  3741. "type": "zip",
  3742. "url": "https://api.github.com/repos/symfony/error-handler/zipball/432bb369952795c61ca1def65e078c4a80dad13c",
  3743. "reference": "432bb369952795c61ca1def65e078c4a80dad13c",
  3744. "shasum": ""
  3745. },
  3746. "require": {
  3747. "php": ">=8.2",
  3748. "psr/log": "^1|^2|^3",
  3749. "symfony/var-dumper": "^6.4|^7.0"
  3750. },
  3751. "conflict": {
  3752. "symfony/deprecation-contracts": "<2.5",
  3753. "symfony/http-kernel": "<6.4"
  3754. },
  3755. "require-dev": {
  3756. "symfony/deprecation-contracts": "^2.5|^3",
  3757. "symfony/http-kernel": "^6.4|^7.0",
  3758. "symfony/serializer": "^6.4|^7.0"
  3759. },
  3760. "bin": [
  3761. "Resources/bin/patch-type-declarations"
  3762. ],
  3763. "type": "library",
  3764. "autoload": {
  3765. "psr-4": {
  3766. "Symfony\\Component\\ErrorHandler\\": ""
  3767. },
  3768. "exclude-from-classmap": [
  3769. "/Tests/"
  3770. ]
  3771. },
  3772. "notification-url": "https://packagist.org/downloads/",
  3773. "license": [
  3774. "MIT"
  3775. ],
  3776. "authors": [
  3777. {
  3778. "name": "Fabien Potencier",
  3779. "email": "fabien@symfony.com"
  3780. },
  3781. {
  3782. "name": "Symfony Community",
  3783. "homepage": "https://symfony.com/contributors"
  3784. }
  3785. ],
  3786. "description": "Provides tools to manage errors and ease debugging PHP code",
  3787. "homepage": "https://symfony.com",
  3788. "support": {
  3789. "source": "https://github.com/symfony/error-handler/tree/v7.1.3"
  3790. },
  3791. "funding": [
  3792. {
  3793. "url": "https://symfony.com/sponsor",
  3794. "type": "custom"
  3795. },
  3796. {
  3797. "url": "https://github.com/fabpot",
  3798. "type": "github"
  3799. },
  3800. {
  3801. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3802. "type": "tidelift"
  3803. }
  3804. ],
  3805. "time": "2024-07-26T13:02:51+00:00"
  3806. },
  3807. {
  3808. "name": "symfony/event-dispatcher",
  3809. "version": "v7.1.1",
  3810. "source": {
  3811. "type": "git",
  3812. "url": "https://github.com/symfony/event-dispatcher.git",
  3813. "reference": "9fa7f7a21beb22a39a8f3f28618b29e50d7a55a7"
  3814. },
  3815. "dist": {
  3816. "type": "zip",
  3817. "url": "https://api.github.com/repos/symfony/event-dispatcher/zipball/9fa7f7a21beb22a39a8f3f28618b29e50d7a55a7",
  3818. "reference": "9fa7f7a21beb22a39a8f3f28618b29e50d7a55a7",
  3819. "shasum": ""
  3820. },
  3821. "require": {
  3822. "php": ">=8.2",
  3823. "symfony/event-dispatcher-contracts": "^2.5|^3"
  3824. },
  3825. "conflict": {
  3826. "symfony/dependency-injection": "<6.4",
  3827. "symfony/service-contracts": "<2.5"
  3828. },
  3829. "provide": {
  3830. "psr/event-dispatcher-implementation": "1.0",
  3831. "symfony/event-dispatcher-implementation": "2.0|3.0"
  3832. },
  3833. "require-dev": {
  3834. "psr/log": "^1|^2|^3",
  3835. "symfony/config": "^6.4|^7.0",
  3836. "symfony/dependency-injection": "^6.4|^7.0",
  3837. "symfony/error-handler": "^6.4|^7.0",
  3838. "symfony/expression-language": "^6.4|^7.0",
  3839. "symfony/http-foundation": "^6.4|^7.0",
  3840. "symfony/service-contracts": "^2.5|^3",
  3841. "symfony/stopwatch": "^6.4|^7.0"
  3842. },
  3843. "type": "library",
  3844. "autoload": {
  3845. "psr-4": {
  3846. "Symfony\\Component\\EventDispatcher\\": ""
  3847. },
  3848. "exclude-from-classmap": [
  3849. "/Tests/"
  3850. ]
  3851. },
  3852. "notification-url": "https://packagist.org/downloads/",
  3853. "license": [
  3854. "MIT"
  3855. ],
  3856. "authors": [
  3857. {
  3858. "name": "Fabien Potencier",
  3859. "email": "fabien@symfony.com"
  3860. },
  3861. {
  3862. "name": "Symfony Community",
  3863. "homepage": "https://symfony.com/contributors"
  3864. }
  3865. ],
  3866. "description": "Provides tools that allow your application components to communicate with each other by dispatching events and listening to them",
  3867. "homepage": "https://symfony.com",
  3868. "support": {
  3869. "source": "https://github.com/symfony/event-dispatcher/tree/v7.1.1"
  3870. },
  3871. "funding": [
  3872. {
  3873. "url": "https://symfony.com/sponsor",
  3874. "type": "custom"
  3875. },
  3876. {
  3877. "url": "https://github.com/fabpot",
  3878. "type": "github"
  3879. },
  3880. {
  3881. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3882. "type": "tidelift"
  3883. }
  3884. ],
  3885. "time": "2024-05-31T14:57:53+00:00"
  3886. },
  3887. {
  3888. "name": "symfony/event-dispatcher-contracts",
  3889. "version": "v3.5.0",
  3890. "source": {
  3891. "type": "git",
  3892. "url": "https://github.com/symfony/event-dispatcher-contracts.git",
  3893. "reference": "8f93aec25d41b72493c6ddff14e916177c9efc50"
  3894. },
  3895. "dist": {
  3896. "type": "zip",
  3897. "url": "https://api.github.com/repos/symfony/event-dispatcher-contracts/zipball/8f93aec25d41b72493c6ddff14e916177c9efc50",
  3898. "reference": "8f93aec25d41b72493c6ddff14e916177c9efc50",
  3899. "shasum": ""
  3900. },
  3901. "require": {
  3902. "php": ">=8.1",
  3903. "psr/event-dispatcher": "^1"
  3904. },
  3905. "type": "library",
  3906. "extra": {
  3907. "branch-alias": {
  3908. "dev-main": "3.5-dev"
  3909. },
  3910. "thanks": {
  3911. "name": "symfony/contracts",
  3912. "url": "https://github.com/symfony/contracts"
  3913. }
  3914. },
  3915. "autoload": {
  3916. "psr-4": {
  3917. "Symfony\\Contracts\\EventDispatcher\\": ""
  3918. }
  3919. },
  3920. "notification-url": "https://packagist.org/downloads/",
  3921. "license": [
  3922. "MIT"
  3923. ],
  3924. "authors": [
  3925. {
  3926. "name": "Nicolas Grekas",
  3927. "email": "p@tchwork.com"
  3928. },
  3929. {
  3930. "name": "Symfony Community",
  3931. "homepage": "https://symfony.com/contributors"
  3932. }
  3933. ],
  3934. "description": "Generic abstractions related to dispatching event",
  3935. "homepage": "https://symfony.com",
  3936. "keywords": [
  3937. "abstractions",
  3938. "contracts",
  3939. "decoupling",
  3940. "interfaces",
  3941. "interoperability",
  3942. "standards"
  3943. ],
  3944. "support": {
  3945. "source": "https://github.com/symfony/event-dispatcher-contracts/tree/v3.5.0"
  3946. },
  3947. "funding": [
  3948. {
  3949. "url": "https://symfony.com/sponsor",
  3950. "type": "custom"
  3951. },
  3952. {
  3953. "url": "https://github.com/fabpot",
  3954. "type": "github"
  3955. },
  3956. {
  3957. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3958. "type": "tidelift"
  3959. }
  3960. ],
  3961. "time": "2024-04-18T09:32:20+00:00"
  3962. },
  3963. {
  3964. "name": "symfony/expression-language",
  3965. "version": "v7.1.1",
  3966. "source": {
  3967. "type": "git",
  3968. "url": "https://github.com/symfony/expression-language.git",
  3969. "reference": "463cb95f80c14136175f4e03f7f6199b01c6b8b4"
  3970. },
  3971. "dist": {
  3972. "type": "zip",
  3973. "url": "https://api.github.com/repos/symfony/expression-language/zipball/463cb95f80c14136175f4e03f7f6199b01c6b8b4",
  3974. "reference": "463cb95f80c14136175f4e03f7f6199b01c6b8b4",
  3975. "shasum": ""
  3976. },
  3977. "require": {
  3978. "php": ">=8.2",
  3979. "symfony/cache": "^6.4|^7.0",
  3980. "symfony/deprecation-contracts": "^2.5|^3",
  3981. "symfony/service-contracts": "^2.5|^3"
  3982. },
  3983. "type": "library",
  3984. "autoload": {
  3985. "psr-4": {
  3986. "Symfony\\Component\\ExpressionLanguage\\": ""
  3987. },
  3988. "exclude-from-classmap": [
  3989. "/Tests/"
  3990. ]
  3991. },
  3992. "notification-url": "https://packagist.org/downloads/",
  3993. "license": [
  3994. "MIT"
  3995. ],
  3996. "authors": [
  3997. {
  3998. "name": "Fabien Potencier",
  3999. "email": "fabien@symfony.com"
  4000. },
  4001. {
  4002. "name": "Symfony Community",
  4003. "homepage": "https://symfony.com/contributors"
  4004. }
  4005. ],
  4006. "description": "Provides an engine that can compile and evaluate expressions",
  4007. "homepage": "https://symfony.com",
  4008. "support": {
  4009. "source": "https://github.com/symfony/expression-language/tree/v7.1.1"
  4010. },
  4011. "funding": [
  4012. {
  4013. "url": "https://symfony.com/sponsor",
  4014. "type": "custom"
  4015. },
  4016. {
  4017. "url": "https://github.com/fabpot",
  4018. "type": "github"
  4019. },
  4020. {
  4021. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4022. "type": "tidelift"
  4023. }
  4024. ],
  4025. "time": "2024-05-31T14:57:53+00:00"
  4026. },
  4027. {
  4028. "name": "symfony/filesystem",
  4029. "version": "v7.1.2",
  4030. "source": {
  4031. "type": "git",
  4032. "url": "https://github.com/symfony/filesystem.git",
  4033. "reference": "92a91985250c251de9b947a14bb2c9390b1a562c"
  4034. },
  4035. "dist": {
  4036. "type": "zip",
  4037. "url": "https://api.github.com/repos/symfony/filesystem/zipball/92a91985250c251de9b947a14bb2c9390b1a562c",
  4038. "reference": "92a91985250c251de9b947a14bb2c9390b1a562c",
  4039. "shasum": ""
  4040. },
  4041. "require": {
  4042. "php": ">=8.2",
  4043. "symfony/polyfill-ctype": "~1.8",
  4044. "symfony/polyfill-mbstring": "~1.8"
  4045. },
  4046. "require-dev": {
  4047. "symfony/process": "^6.4|^7.0"
  4048. },
  4049. "type": "library",
  4050. "autoload": {
  4051. "psr-4": {
  4052. "Symfony\\Component\\Filesystem\\": ""
  4053. },
  4054. "exclude-from-classmap": [
  4055. "/Tests/"
  4056. ]
  4057. },
  4058. "notification-url": "https://packagist.org/downloads/",
  4059. "license": [
  4060. "MIT"
  4061. ],
  4062. "authors": [
  4063. {
  4064. "name": "Fabien Potencier",
  4065. "email": "fabien@symfony.com"
  4066. },
  4067. {
  4068. "name": "Symfony Community",
  4069. "homepage": "https://symfony.com/contributors"
  4070. }
  4071. ],
  4072. "description": "Provides basic utilities for the filesystem",
  4073. "homepage": "https://symfony.com",
  4074. "support": {
  4075. "source": "https://github.com/symfony/filesystem/tree/v7.1.2"
  4076. },
  4077. "funding": [
  4078. {
  4079. "url": "https://symfony.com/sponsor",
  4080. "type": "custom"
  4081. },
  4082. {
  4083. "url": "https://github.com/fabpot",
  4084. "type": "github"
  4085. },
  4086. {
  4087. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4088. "type": "tidelift"
  4089. }
  4090. ],
  4091. "time": "2024-06-28T10:03:55+00:00"
  4092. },
  4093. {
  4094. "name": "symfony/finder",
  4095. "version": "v7.1.3",
  4096. "source": {
  4097. "type": "git",
  4098. "url": "https://github.com/symfony/finder.git",
  4099. "reference": "717c6329886f32dc65e27461f80f2a465412fdca"
  4100. },
  4101. "dist": {
  4102. "type": "zip",
  4103. "url": "https://api.github.com/repos/symfony/finder/zipball/717c6329886f32dc65e27461f80f2a465412fdca",
  4104. "reference": "717c6329886f32dc65e27461f80f2a465412fdca",
  4105. "shasum": ""
  4106. },
  4107. "require": {
  4108. "php": ">=8.2"
  4109. },
  4110. "require-dev": {
  4111. "symfony/filesystem": "^6.4|^7.0"
  4112. },
  4113. "type": "library",
  4114. "autoload": {
  4115. "psr-4": {
  4116. "Symfony\\Component\\Finder\\": ""
  4117. },
  4118. "exclude-from-classmap": [
  4119. "/Tests/"
  4120. ]
  4121. },
  4122. "notification-url": "https://packagist.org/downloads/",
  4123. "license": [
  4124. "MIT"
  4125. ],
  4126. "authors": [
  4127. {
  4128. "name": "Fabien Potencier",
  4129. "email": "fabien@symfony.com"
  4130. },
  4131. {
  4132. "name": "Symfony Community",
  4133. "homepage": "https://symfony.com/contributors"
  4134. }
  4135. ],
  4136. "description": "Finds files and directories via an intuitive fluent interface",
  4137. "homepage": "https://symfony.com",
  4138. "support": {
  4139. "source": "https://github.com/symfony/finder/tree/v7.1.3"
  4140. },
  4141. "funding": [
  4142. {
  4143. "url": "https://symfony.com/sponsor",
  4144. "type": "custom"
  4145. },
  4146. {
  4147. "url": "https://github.com/fabpot",
  4148. "type": "github"
  4149. },
  4150. {
  4151. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4152. "type": "tidelift"
  4153. }
  4154. ],
  4155. "time": "2024-07-24T07:08:44+00:00"
  4156. },
  4157. {
  4158. "name": "symfony/flex",
  4159. "version": "v2.4.6",
  4160. "source": {
  4161. "type": "git",
  4162. "url": "https://github.com/symfony/flex.git",
  4163. "reference": "4dc11919791f81d087a12db2ab4c7e044431ef6b"
  4164. },
  4165. "dist": {
  4166. "type": "zip",
  4167. "url": "https://api.github.com/repos/symfony/flex/zipball/4dc11919791f81d087a12db2ab4c7e044431ef6b",
  4168. "reference": "4dc11919791f81d087a12db2ab4c7e044431ef6b",
  4169. "shasum": ""
  4170. },
  4171. "require": {
  4172. "composer-plugin-api": "^2.1",
  4173. "php": ">=8.0"
  4174. },
  4175. "require-dev": {
  4176. "composer/composer": "^2.1",
  4177. "symfony/dotenv": "^5.4|^6.0",
  4178. "symfony/filesystem": "^5.4|^6.0",
  4179. "symfony/phpunit-bridge": "^5.4|^6.0",
  4180. "symfony/process": "^5.4|^6.0"
  4181. },
  4182. "type": "composer-plugin",
  4183. "extra": {
  4184. "class": "Symfony\\Flex\\Flex"
  4185. },
  4186. "autoload": {
  4187. "psr-4": {
  4188. "Symfony\\Flex\\": "src"
  4189. }
  4190. },
  4191. "notification-url": "https://packagist.org/downloads/",
  4192. "license": [
  4193. "MIT"
  4194. ],
  4195. "authors": [
  4196. {
  4197. "name": "Fabien Potencier",
  4198. "email": "fabien.potencier@gmail.com"
  4199. }
  4200. ],
  4201. "description": "Composer plugin for Symfony",
  4202. "support": {
  4203. "issues": "https://github.com/symfony/flex/issues",
  4204. "source": "https://github.com/symfony/flex/tree/v2.4.6"
  4205. },
  4206. "funding": [
  4207. {
  4208. "url": "https://symfony.com/sponsor",
  4209. "type": "custom"
  4210. },
  4211. {
  4212. "url": "https://github.com/fabpot",
  4213. "type": "github"
  4214. },
  4215. {
  4216. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4217. "type": "tidelift"
  4218. }
  4219. ],
  4220. "time": "2024-04-27T10:22:22+00:00"
  4221. },
  4222. {
  4223. "name": "symfony/form",
  4224. "version": "v7.1.3",
  4225. "source": {
  4226. "type": "git",
  4227. "url": "https://github.com/symfony/form.git",
  4228. "reference": "11df2e2e142161824eb341e96cbb3c56c3bb57dc"
  4229. },
  4230. "dist": {
  4231. "type": "zip",
  4232. "url": "https://api.github.com/repos/symfony/form/zipball/11df2e2e142161824eb341e96cbb3c56c3bb57dc",
  4233. "reference": "11df2e2e142161824eb341e96cbb3c56c3bb57dc",
  4234. "shasum": ""
  4235. },
  4236. "require": {
  4237. "php": ">=8.2",
  4238. "symfony/deprecation-contracts": "^2.5|^3",
  4239. "symfony/event-dispatcher": "^6.4|^7.0",
  4240. "symfony/options-resolver": "^6.4|^7.0",
  4241. "symfony/polyfill-ctype": "~1.8",
  4242. "symfony/polyfill-intl-icu": "^1.21",
  4243. "symfony/polyfill-mbstring": "~1.0",
  4244. "symfony/property-access": "^6.4|^7.0",
  4245. "symfony/service-contracts": "^2.5|^3"
  4246. },
  4247. "conflict": {
  4248. "symfony/console": "<6.4",
  4249. "symfony/dependency-injection": "<6.4",
  4250. "symfony/doctrine-bridge": "<6.4",
  4251. "symfony/error-handler": "<6.4",
  4252. "symfony/framework-bundle": "<6.4",
  4253. "symfony/http-kernel": "<6.4",
  4254. "symfony/translation": "<6.4.3|>=7.0,<7.0.3",
  4255. "symfony/translation-contracts": "<2.5",
  4256. "symfony/twig-bridge": "<6.4"
  4257. },
  4258. "require-dev": {
  4259. "doctrine/collections": "^1.0|^2.0",
  4260. "symfony/config": "^6.4|^7.0",
  4261. "symfony/console": "^6.4|^7.0",
  4262. "symfony/dependency-injection": "^6.4|^7.0",
  4263. "symfony/expression-language": "^6.4|^7.0",
  4264. "symfony/html-sanitizer": "^6.4|^7.0",
  4265. "symfony/http-foundation": "^6.4|^7.0",
  4266. "symfony/http-kernel": "^6.4|^7.0",
  4267. "symfony/intl": "^6.4|^7.0",
  4268. "symfony/security-core": "^6.4|^7.0",
  4269. "symfony/security-csrf": "^6.4|^7.0",
  4270. "symfony/translation": "^6.4.3|^7.0.3",
  4271. "symfony/uid": "^6.4|^7.0",
  4272. "symfony/validator": "^6.4|^7.0",
  4273. "symfony/var-dumper": "^6.4|^7.0"
  4274. },
  4275. "type": "library",
  4276. "autoload": {
  4277. "psr-4": {
  4278. "Symfony\\Component\\Form\\": ""
  4279. },
  4280. "exclude-from-classmap": [
  4281. "/Tests/"
  4282. ]
  4283. },
  4284. "notification-url": "https://packagist.org/downloads/",
  4285. "license": [
  4286. "MIT"
  4287. ],
  4288. "authors": [
  4289. {
  4290. "name": "Fabien Potencier",
  4291. "email": "fabien@symfony.com"
  4292. },
  4293. {
  4294. "name": "Symfony Community",
  4295. "homepage": "https://symfony.com/contributors"
  4296. }
  4297. ],
  4298. "description": "Allows to easily create, process and reuse HTML forms",
  4299. "homepage": "https://symfony.com",
  4300. "support": {
  4301. "source": "https://github.com/symfony/form/tree/v7.1.3"
  4302. },
  4303. "funding": [
  4304. {
  4305. "url": "https://symfony.com/sponsor",
  4306. "type": "custom"
  4307. },
  4308. {
  4309. "url": "https://github.com/fabpot",
  4310. "type": "github"
  4311. },
  4312. {
  4313. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4314. "type": "tidelift"
  4315. }
  4316. ],
  4317. "time": "2024-07-19T08:30:01+00:00"
  4318. },
  4319. {
  4320. "name": "symfony/framework-bundle",
  4321. "version": "v7.1.3",
  4322. "source": {
  4323. "type": "git",
  4324. "url": "https://github.com/symfony/framework-bundle.git",
  4325. "reference": "a32ec544bd501eb4619eb977860ad3076ee55061"
  4326. },
  4327. "dist": {
  4328. "type": "zip",
  4329. "url": "https://api.github.com/repos/symfony/framework-bundle/zipball/a32ec544bd501eb4619eb977860ad3076ee55061",
  4330. "reference": "a32ec544bd501eb4619eb977860ad3076ee55061",
  4331. "shasum": ""
  4332. },
  4333. "require": {
  4334. "composer-runtime-api": ">=2.1",
  4335. "ext-xml": "*",
  4336. "php": ">=8.2",
  4337. "symfony/cache": "^6.4|^7.0",
  4338. "symfony/config": "^6.4|^7.0",
  4339. "symfony/dependency-injection": "^7.1",
  4340. "symfony/deprecation-contracts": "^2.5|^3",
  4341. "symfony/error-handler": "^6.4|^7.0",
  4342. "symfony/event-dispatcher": "^6.4|^7.0",
  4343. "symfony/filesystem": "^7.1",
  4344. "symfony/finder": "^6.4|^7.0",
  4345. "symfony/http-foundation": "^6.4|^7.0",
  4346. "symfony/http-kernel": "^6.4|^7.0",
  4347. "symfony/polyfill-mbstring": "~1.0",
  4348. "symfony/routing": "^6.4|^7.0"
  4349. },
  4350. "conflict": {
  4351. "doctrine/persistence": "<1.3",
  4352. "phpdocumentor/reflection-docblock": "<3.2.2",
  4353. "phpdocumentor/type-resolver": "<1.4.0",
  4354. "symfony/asset": "<6.4",
  4355. "symfony/asset-mapper": "<6.4",
  4356. "symfony/clock": "<6.4",
  4357. "symfony/console": "<6.4",
  4358. "symfony/dom-crawler": "<6.4",
  4359. "symfony/dotenv": "<6.4",
  4360. "symfony/form": "<6.4",
  4361. "symfony/http-client": "<6.4",
  4362. "symfony/lock": "<6.4",
  4363. "symfony/mailer": "<6.4",
  4364. "symfony/messenger": "<6.4",
  4365. "symfony/mime": "<6.4",
  4366. "symfony/property-access": "<6.4",
  4367. "symfony/property-info": "<6.4",
  4368. "symfony/scheduler": "<6.4.4|>=7.0.0,<7.0.4",
  4369. "symfony/security-core": "<6.4",
  4370. "symfony/security-csrf": "<6.4",
  4371. "symfony/serializer": "<6.4",
  4372. "symfony/stopwatch": "<6.4",
  4373. "symfony/translation": "<6.4",
  4374. "symfony/twig-bridge": "<6.4",
  4375. "symfony/twig-bundle": "<6.4",
  4376. "symfony/validator": "<6.4",
  4377. "symfony/web-profiler-bundle": "<6.4",
  4378. "symfony/workflow": "<6.4"
  4379. },
  4380. "require-dev": {
  4381. "doctrine/persistence": "^1.3|^2|^3",
  4382. "dragonmantank/cron-expression": "^3.1",
  4383. "phpdocumentor/reflection-docblock": "^3.0|^4.0|^5.0",
  4384. "seld/jsonlint": "^1.10",
  4385. "symfony/asset": "^6.4|^7.0",
  4386. "symfony/asset-mapper": "^6.4|^7.0",
  4387. "symfony/browser-kit": "^6.4|^7.0",
  4388. "symfony/clock": "^6.4|^7.0",
  4389. "symfony/console": "^6.4|^7.0",
  4390. "symfony/css-selector": "^6.4|^7.0",
  4391. "symfony/dom-crawler": "^6.4|^7.0",
  4392. "symfony/dotenv": "^6.4|^7.0",
  4393. "symfony/expression-language": "^6.4|^7.0",
  4394. "symfony/form": "^6.4|^7.0",
  4395. "symfony/html-sanitizer": "^6.4|^7.0",
  4396. "symfony/http-client": "^6.4|^7.0",
  4397. "symfony/lock": "^6.4|^7.0",
  4398. "symfony/mailer": "^6.4|^7.0",
  4399. "symfony/messenger": "^6.4|^7.0",
  4400. "symfony/mime": "^6.4|^7.0",
  4401. "symfony/notifier": "^6.4|^7.0",
  4402. "symfony/polyfill-intl-icu": "~1.0",
  4403. "symfony/process": "^6.4|^7.0",
  4404. "symfony/property-info": "^6.4|^7.0",
  4405. "symfony/rate-limiter": "^6.4|^7.0",
  4406. "symfony/scheduler": "^6.4.4|^7.0.4",
  4407. "symfony/security-bundle": "^6.4|^7.0",
  4408. "symfony/semaphore": "^6.4|^7.0",
  4409. "symfony/serializer": "^6.4|^7.0",
  4410. "symfony/stopwatch": "^6.4|^7.0",
  4411. "symfony/string": "^6.4|^7.0",
  4412. "symfony/translation": "^6.4|^7.0",
  4413. "symfony/twig-bundle": "^6.4|^7.0",
  4414. "symfony/type-info": "^7.1",
  4415. "symfony/uid": "^6.4|^7.0",
  4416. "symfony/validator": "^6.4|^7.0",
  4417. "symfony/web-link": "^6.4|^7.0",
  4418. "symfony/workflow": "^6.4|^7.0",
  4419. "symfony/yaml": "^6.4|^7.0",
  4420. "twig/twig": "^3.0.4"
  4421. },
  4422. "type": "symfony-bundle",
  4423. "autoload": {
  4424. "psr-4": {
  4425. "Symfony\\Bundle\\FrameworkBundle\\": ""
  4426. },
  4427. "exclude-from-classmap": [
  4428. "/Tests/"
  4429. ]
  4430. },
  4431. "notification-url": "https://packagist.org/downloads/",
  4432. "license": [
  4433. "MIT"
  4434. ],
  4435. "authors": [
  4436. {
  4437. "name": "Fabien Potencier",
  4438. "email": "fabien@symfony.com"
  4439. },
  4440. {
  4441. "name": "Symfony Community",
  4442. "homepage": "https://symfony.com/contributors"
  4443. }
  4444. ],
  4445. "description": "Provides a tight integration between Symfony components and the Symfony full-stack framework",
  4446. "homepage": "https://symfony.com",
  4447. "support": {
  4448. "source": "https://github.com/symfony/framework-bundle/tree/v7.1.3"
  4449. },
  4450. "funding": [
  4451. {
  4452. "url": "https://symfony.com/sponsor",
  4453. "type": "custom"
  4454. },
  4455. {
  4456. "url": "https://github.com/fabpot",
  4457. "type": "github"
  4458. },
  4459. {
  4460. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4461. "type": "tidelift"
  4462. }
  4463. ],
  4464. "time": "2024-07-26T13:24:34+00:00"
  4465. },
  4466. {
  4467. "name": "symfony/html-sanitizer",
  4468. "version": "v7.1.1",
  4469. "source": {
  4470. "type": "git",
  4471. "url": "https://github.com/symfony/html-sanitizer.git",
  4472. "reference": "737cbaa8082b696d0574afd91b9f471eca67fc65"
  4473. },
  4474. "dist": {
  4475. "type": "zip",
  4476. "url": "https://api.github.com/repos/symfony/html-sanitizer/zipball/737cbaa8082b696d0574afd91b9f471eca67fc65",
  4477. "reference": "737cbaa8082b696d0574afd91b9f471eca67fc65",
  4478. "shasum": ""
  4479. },
  4480. "require": {
  4481. "ext-dom": "*",
  4482. "league/uri": "^6.5|^7.0",
  4483. "masterminds/html5": "^2.7.2",
  4484. "php": ">=8.2"
  4485. },
  4486. "type": "library",
  4487. "autoload": {
  4488. "psr-4": {
  4489. "Symfony\\Component\\HtmlSanitizer\\": ""
  4490. },
  4491. "exclude-from-classmap": [
  4492. "/Tests/"
  4493. ]
  4494. },
  4495. "notification-url": "https://packagist.org/downloads/",
  4496. "license": [
  4497. "MIT"
  4498. ],
  4499. "authors": [
  4500. {
  4501. "name": "Titouan Galopin",
  4502. "email": "galopintitouan@gmail.com"
  4503. },
  4504. {
  4505. "name": "Symfony Community",
  4506. "homepage": "https://symfony.com/contributors"
  4507. }
  4508. ],
  4509. "description": "Provides an object-oriented API to sanitize untrusted HTML input for safe insertion into a document's DOM.",
  4510. "homepage": "https://symfony.com",
  4511. "keywords": [
  4512. "Purifier",
  4513. "html",
  4514. "sanitizer"
  4515. ],
  4516. "support": {
  4517. "source": "https://github.com/symfony/html-sanitizer/tree/v7.1.1"
  4518. },
  4519. "funding": [
  4520. {
  4521. "url": "https://symfony.com/sponsor",
  4522. "type": "custom"
  4523. },
  4524. {
  4525. "url": "https://github.com/fabpot",
  4526. "type": "github"
  4527. },
  4528. {
  4529. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4530. "type": "tidelift"
  4531. }
  4532. ],
  4533. "time": "2024-05-31T14:55:39+00:00"
  4534. },
  4535. {
  4536. "name": "symfony/http-client",
  4537. "version": "v7.1.3",
  4538. "source": {
  4539. "type": "git",
  4540. "url": "https://github.com/symfony/http-client.git",
  4541. "reference": "b79858aa7a051ea791b0d50269a234a0b50cb231"
  4542. },
  4543. "dist": {
  4544. "type": "zip",
  4545. "url": "https://api.github.com/repos/symfony/http-client/zipball/b79858aa7a051ea791b0d50269a234a0b50cb231",
  4546. "reference": "b79858aa7a051ea791b0d50269a234a0b50cb231",
  4547. "shasum": ""
  4548. },
  4549. "require": {
  4550. "php": ">=8.2",
  4551. "psr/log": "^1|^2|^3",
  4552. "symfony/deprecation-contracts": "^2.5|^3",
  4553. "symfony/http-client-contracts": "^3.4.1",
  4554. "symfony/service-contracts": "^2.5|^3"
  4555. },
  4556. "conflict": {
  4557. "php-http/discovery": "<1.15",
  4558. "symfony/http-foundation": "<6.4"
  4559. },
  4560. "provide": {
  4561. "php-http/async-client-implementation": "*",
  4562. "php-http/client-implementation": "*",
  4563. "psr/http-client-implementation": "1.0",
  4564. "symfony/http-client-implementation": "3.0"
  4565. },
  4566. "require-dev": {
  4567. "amphp/amp": "^2.5",
  4568. "amphp/http-client": "^4.2.1",
  4569. "amphp/http-tunnel": "^1.0",
  4570. "amphp/socket": "^1.1",
  4571. "guzzlehttp/promises": "^1.4|^2.0",
  4572. "nyholm/psr7": "^1.0",
  4573. "php-http/httplug": "^1.0|^2.0",
  4574. "psr/http-client": "^1.0",
  4575. "symfony/dependency-injection": "^6.4|^7.0",
  4576. "symfony/http-kernel": "^6.4|^7.0",
  4577. "symfony/messenger": "^6.4|^7.0",
  4578. "symfony/process": "^6.4|^7.0",
  4579. "symfony/rate-limiter": "^6.4|^7.0",
  4580. "symfony/stopwatch": "^6.4|^7.0"
  4581. },
  4582. "type": "library",
  4583. "autoload": {
  4584. "psr-4": {
  4585. "Symfony\\Component\\HttpClient\\": ""
  4586. },
  4587. "exclude-from-classmap": [
  4588. "/Tests/"
  4589. ]
  4590. },
  4591. "notification-url": "https://packagist.org/downloads/",
  4592. "license": [
  4593. "MIT"
  4594. ],
  4595. "authors": [
  4596. {
  4597. "name": "Nicolas Grekas",
  4598. "email": "p@tchwork.com"
  4599. },
  4600. {
  4601. "name": "Symfony Community",
  4602. "homepage": "https://symfony.com/contributors"
  4603. }
  4604. ],
  4605. "description": "Provides powerful methods to fetch HTTP resources synchronously or asynchronously",
  4606. "homepage": "https://symfony.com",
  4607. "keywords": [
  4608. "http"
  4609. ],
  4610. "support": {
  4611. "source": "https://github.com/symfony/http-client/tree/v7.1.3"
  4612. },
  4613. "funding": [
  4614. {
  4615. "url": "https://symfony.com/sponsor",
  4616. "type": "custom"
  4617. },
  4618. {
  4619. "url": "https://github.com/fabpot",
  4620. "type": "github"
  4621. },
  4622. {
  4623. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4624. "type": "tidelift"
  4625. }
  4626. ],
  4627. "time": "2024-07-17T06:10:24+00:00"
  4628. },
  4629. {
  4630. "name": "symfony/http-client-contracts",
  4631. "version": "v3.5.0",
  4632. "source": {
  4633. "type": "git",
  4634. "url": "https://github.com/symfony/http-client-contracts.git",
  4635. "reference": "20414d96f391677bf80078aa55baece78b82647d"
  4636. },
  4637. "dist": {
  4638. "type": "zip",
  4639. "url": "https://api.github.com/repos/symfony/http-client-contracts/zipball/20414d96f391677bf80078aa55baece78b82647d",
  4640. "reference": "20414d96f391677bf80078aa55baece78b82647d",
  4641. "shasum": ""
  4642. },
  4643. "require": {
  4644. "php": ">=8.1"
  4645. },
  4646. "type": "library",
  4647. "extra": {
  4648. "branch-alias": {
  4649. "dev-main": "3.5-dev"
  4650. },
  4651. "thanks": {
  4652. "name": "symfony/contracts",
  4653. "url": "https://github.com/symfony/contracts"
  4654. }
  4655. },
  4656. "autoload": {
  4657. "psr-4": {
  4658. "Symfony\\Contracts\\HttpClient\\": ""
  4659. },
  4660. "exclude-from-classmap": [
  4661. "/Test/"
  4662. ]
  4663. },
  4664. "notification-url": "https://packagist.org/downloads/",
  4665. "license": [
  4666. "MIT"
  4667. ],
  4668. "authors": [
  4669. {
  4670. "name": "Nicolas Grekas",
  4671. "email": "p@tchwork.com"
  4672. },
  4673. {
  4674. "name": "Symfony Community",
  4675. "homepage": "https://symfony.com/contributors"
  4676. }
  4677. ],
  4678. "description": "Generic abstractions related to HTTP clients",
  4679. "homepage": "https://symfony.com",
  4680. "keywords": [
  4681. "abstractions",
  4682. "contracts",
  4683. "decoupling",
  4684. "interfaces",
  4685. "interoperability",
  4686. "standards"
  4687. ],
  4688. "support": {
  4689. "source": "https://github.com/symfony/http-client-contracts/tree/v3.5.0"
  4690. },
  4691. "funding": [
  4692. {
  4693. "url": "https://symfony.com/sponsor",
  4694. "type": "custom"
  4695. },
  4696. {
  4697. "url": "https://github.com/fabpot",
  4698. "type": "github"
  4699. },
  4700. {
  4701. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4702. "type": "tidelift"
  4703. }
  4704. ],
  4705. "time": "2024-04-18T09:32:20+00:00"
  4706. },
  4707. {
  4708. "name": "symfony/http-foundation",
  4709. "version": "v7.1.3",
  4710. "source": {
  4711. "type": "git",
  4712. "url": "https://github.com/symfony/http-foundation.git",
  4713. "reference": "f602d5c17d1fa02f8019ace2687d9d136b7f4a1a"
  4714. },
  4715. "dist": {
  4716. "type": "zip",
  4717. "url": "https://api.github.com/repos/symfony/http-foundation/zipball/f602d5c17d1fa02f8019ace2687d9d136b7f4a1a",
  4718. "reference": "f602d5c17d1fa02f8019ace2687d9d136b7f4a1a",
  4719. "shasum": ""
  4720. },
  4721. "require": {
  4722. "php": ">=8.2",
  4723. "symfony/polyfill-mbstring": "~1.1",
  4724. "symfony/polyfill-php83": "^1.27"
  4725. },
  4726. "conflict": {
  4727. "doctrine/dbal": "<3.6",
  4728. "symfony/cache": "<6.4"
  4729. },
  4730. "require-dev": {
  4731. "doctrine/dbal": "^3.6|^4",
  4732. "predis/predis": "^1.1|^2.0",
  4733. "symfony/cache": "^6.4|^7.0",
  4734. "symfony/dependency-injection": "^6.4|^7.0",
  4735. "symfony/expression-language": "^6.4|^7.0",
  4736. "symfony/http-kernel": "^6.4|^7.0",
  4737. "symfony/mime": "^6.4|^7.0",
  4738. "symfony/rate-limiter": "^6.4|^7.0"
  4739. },
  4740. "type": "library",
  4741. "autoload": {
  4742. "psr-4": {
  4743. "Symfony\\Component\\HttpFoundation\\": ""
  4744. },
  4745. "exclude-from-classmap": [
  4746. "/Tests/"
  4747. ]
  4748. },
  4749. "notification-url": "https://packagist.org/downloads/",
  4750. "license": [
  4751. "MIT"
  4752. ],
  4753. "authors": [
  4754. {
  4755. "name": "Fabien Potencier",
  4756. "email": "fabien@symfony.com"
  4757. },
  4758. {
  4759. "name": "Symfony Community",
  4760. "homepage": "https://symfony.com/contributors"
  4761. }
  4762. ],
  4763. "description": "Defines an object-oriented layer for the HTTP specification",
  4764. "homepage": "https://symfony.com",
  4765. "support": {
  4766. "source": "https://github.com/symfony/http-foundation/tree/v7.1.3"
  4767. },
  4768. "funding": [
  4769. {
  4770. "url": "https://symfony.com/sponsor",
  4771. "type": "custom"
  4772. },
  4773. {
  4774. "url": "https://github.com/fabpot",
  4775. "type": "github"
  4776. },
  4777. {
  4778. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4779. "type": "tidelift"
  4780. }
  4781. ],
  4782. "time": "2024-07-26T12:41:01+00:00"
  4783. },
  4784. {
  4785. "name": "symfony/http-kernel",
  4786. "version": "v7.1.3",
  4787. "source": {
  4788. "type": "git",
  4789. "url": "https://github.com/symfony/http-kernel.git",
  4790. "reference": "db9702f3a04cc471ec8c70e881825db26ac5f186"
  4791. },
  4792. "dist": {
  4793. "type": "zip",
  4794. "url": "https://api.github.com/repos/symfony/http-kernel/zipball/db9702f3a04cc471ec8c70e881825db26ac5f186",
  4795. "reference": "db9702f3a04cc471ec8c70e881825db26ac5f186",
  4796. "shasum": ""
  4797. },
  4798. "require": {
  4799. "php": ">=8.2",
  4800. "psr/log": "^1|^2|^3",
  4801. "symfony/deprecation-contracts": "^2.5|^3",
  4802. "symfony/error-handler": "^6.4|^7.0",
  4803. "symfony/event-dispatcher": "^6.4|^7.0",
  4804. "symfony/http-foundation": "^6.4|^7.0",
  4805. "symfony/polyfill-ctype": "^1.8"
  4806. },
  4807. "conflict": {
  4808. "symfony/browser-kit": "<6.4",
  4809. "symfony/cache": "<6.4",
  4810. "symfony/config": "<6.4",
  4811. "symfony/console": "<6.4",
  4812. "symfony/dependency-injection": "<6.4",
  4813. "symfony/doctrine-bridge": "<6.4",
  4814. "symfony/form": "<6.4",
  4815. "symfony/http-client": "<6.4",
  4816. "symfony/http-client-contracts": "<2.5",
  4817. "symfony/mailer": "<6.4",
  4818. "symfony/messenger": "<6.4",
  4819. "symfony/translation": "<6.4",
  4820. "symfony/translation-contracts": "<2.5",
  4821. "symfony/twig-bridge": "<6.4",
  4822. "symfony/validator": "<6.4",
  4823. "symfony/var-dumper": "<6.4",
  4824. "twig/twig": "<3.0.4"
  4825. },
  4826. "provide": {
  4827. "psr/log-implementation": "1.0|2.0|3.0"
  4828. },
  4829. "require-dev": {
  4830. "psr/cache": "^1.0|^2.0|^3.0",
  4831. "symfony/browser-kit": "^6.4|^7.0",
  4832. "symfony/clock": "^6.4|^7.0",
  4833. "symfony/config": "^6.4|^7.0",
  4834. "symfony/console": "^6.4|^7.0",
  4835. "symfony/css-selector": "^6.4|^7.0",
  4836. "symfony/dependency-injection": "^6.4|^7.0",
  4837. "symfony/dom-crawler": "^6.4|^7.0",
  4838. "symfony/expression-language": "^6.4|^7.0",
  4839. "symfony/finder": "^6.4|^7.0",
  4840. "symfony/http-client-contracts": "^2.5|^3",
  4841. "symfony/process": "^6.4|^7.0",
  4842. "symfony/property-access": "^7.1",
  4843. "symfony/routing": "^6.4|^7.0",
  4844. "symfony/serializer": "^7.1",
  4845. "symfony/stopwatch": "^6.4|^7.0",
  4846. "symfony/translation": "^6.4|^7.0",
  4847. "symfony/translation-contracts": "^2.5|^3",
  4848. "symfony/uid": "^6.4|^7.0",
  4849. "symfony/validator": "^6.4|^7.0",
  4850. "symfony/var-dumper": "^6.4|^7.0",
  4851. "symfony/var-exporter": "^6.4|^7.0",
  4852. "twig/twig": "^3.0.4"
  4853. },
  4854. "type": "library",
  4855. "autoload": {
  4856. "psr-4": {
  4857. "Symfony\\Component\\HttpKernel\\": ""
  4858. },
  4859. "exclude-from-classmap": [
  4860. "/Tests/"
  4861. ]
  4862. },
  4863. "notification-url": "https://packagist.org/downloads/",
  4864. "license": [
  4865. "MIT"
  4866. ],
  4867. "authors": [
  4868. {
  4869. "name": "Fabien Potencier",
  4870. "email": "fabien@symfony.com"
  4871. },
  4872. {
  4873. "name": "Symfony Community",
  4874. "homepage": "https://symfony.com/contributors"
  4875. }
  4876. ],
  4877. "description": "Provides a structured process for converting a Request into a Response",
  4878. "homepage": "https://symfony.com",
  4879. "support": {
  4880. "source": "https://github.com/symfony/http-kernel/tree/v7.1.3"
  4881. },
  4882. "funding": [
  4883. {
  4884. "url": "https://symfony.com/sponsor",
  4885. "type": "custom"
  4886. },
  4887. {
  4888. "url": "https://github.com/fabpot",
  4889. "type": "github"
  4890. },
  4891. {
  4892. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4893. "type": "tidelift"
  4894. }
  4895. ],
  4896. "time": "2024-07-26T14:58:15+00:00"
  4897. },
  4898. {
  4899. "name": "symfony/mailer",
  4900. "version": "v7.1.2",
  4901. "source": {
  4902. "type": "git",
  4903. "url": "https://github.com/symfony/mailer.git",
  4904. "reference": "8fcff0af9043c8f8a8e229437cea363e282f9aee"
  4905. },
  4906. "dist": {
  4907. "type": "zip",
  4908. "url": "https://api.github.com/repos/symfony/mailer/zipball/8fcff0af9043c8f8a8e229437cea363e282f9aee",
  4909. "reference": "8fcff0af9043c8f8a8e229437cea363e282f9aee",
  4910. "shasum": ""
  4911. },
  4912. "require": {
  4913. "egulias/email-validator": "^2.1.10|^3|^4",
  4914. "php": ">=8.2",
  4915. "psr/event-dispatcher": "^1",
  4916. "psr/log": "^1|^2|^3",
  4917. "symfony/event-dispatcher": "^6.4|^7.0",
  4918. "symfony/mime": "^6.4|^7.0",
  4919. "symfony/service-contracts": "^2.5|^3"
  4920. },
  4921. "conflict": {
  4922. "symfony/http-client-contracts": "<2.5",
  4923. "symfony/http-kernel": "<6.4",
  4924. "symfony/messenger": "<6.4",
  4925. "symfony/mime": "<6.4",
  4926. "symfony/twig-bridge": "<6.4"
  4927. },
  4928. "require-dev": {
  4929. "symfony/console": "^6.4|^7.0",
  4930. "symfony/http-client": "^6.4|^7.0",
  4931. "symfony/messenger": "^6.4|^7.0",
  4932. "symfony/twig-bridge": "^6.4|^7.0"
  4933. },
  4934. "type": "library",
  4935. "autoload": {
  4936. "psr-4": {
  4937. "Symfony\\Component\\Mailer\\": ""
  4938. },
  4939. "exclude-from-classmap": [
  4940. "/Tests/"
  4941. ]
  4942. },
  4943. "notification-url": "https://packagist.org/downloads/",
  4944. "license": [
  4945. "MIT"
  4946. ],
  4947. "authors": [
  4948. {
  4949. "name": "Fabien Potencier",
  4950. "email": "fabien@symfony.com"
  4951. },
  4952. {
  4953. "name": "Symfony Community",
  4954. "homepage": "https://symfony.com/contributors"
  4955. }
  4956. ],
  4957. "description": "Helps sending emails",
  4958. "homepage": "https://symfony.com",
  4959. "support": {
  4960. "source": "https://github.com/symfony/mailer/tree/v7.1.2"
  4961. },
  4962. "funding": [
  4963. {
  4964. "url": "https://symfony.com/sponsor",
  4965. "type": "custom"
  4966. },
  4967. {
  4968. "url": "https://github.com/fabpot",
  4969. "type": "github"
  4970. },
  4971. {
  4972. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4973. "type": "tidelift"
  4974. }
  4975. ],
  4976. "time": "2024-06-28T08:00:31+00:00"
  4977. },
  4978. {
  4979. "name": "symfony/mime",
  4980. "version": "v7.1.2",
  4981. "source": {
  4982. "type": "git",
  4983. "url": "https://github.com/symfony/mime.git",
  4984. "reference": "26a00b85477e69a4bab63b66c5dce64f18b0cbfc"
  4985. },
  4986. "dist": {
  4987. "type": "zip",
  4988. "url": "https://api.github.com/repos/symfony/mime/zipball/26a00b85477e69a4bab63b66c5dce64f18b0cbfc",
  4989. "reference": "26a00b85477e69a4bab63b66c5dce64f18b0cbfc",
  4990. "shasum": ""
  4991. },
  4992. "require": {
  4993. "php": ">=8.2",
  4994. "symfony/polyfill-intl-idn": "^1.10",
  4995. "symfony/polyfill-mbstring": "^1.0"
  4996. },
  4997. "conflict": {
  4998. "egulias/email-validator": "~3.0.0",
  4999. "phpdocumentor/reflection-docblock": "<3.2.2",
  5000. "phpdocumentor/type-resolver": "<1.4.0",
  5001. "symfony/mailer": "<6.4",
  5002. "symfony/serializer": "<6.4.3|>7.0,<7.0.3"
  5003. },
  5004. "require-dev": {
  5005. "egulias/email-validator": "^2.1.10|^3.1|^4",
  5006. "league/html-to-markdown": "^5.0",
  5007. "phpdocumentor/reflection-docblock": "^3.0|^4.0|^5.0",
  5008. "symfony/dependency-injection": "^6.4|^7.0",
  5009. "symfony/process": "^6.4|^7.0",
  5010. "symfony/property-access": "^6.4|^7.0",
  5011. "symfony/property-info": "^6.4|^7.0",
  5012. "symfony/serializer": "^6.4.3|^7.0.3"
  5013. },
  5014. "type": "library",
  5015. "autoload": {
  5016. "psr-4": {
  5017. "Symfony\\Component\\Mime\\": ""
  5018. },
  5019. "exclude-from-classmap": [
  5020. "/Tests/"
  5021. ]
  5022. },
  5023. "notification-url": "https://packagist.org/downloads/",
  5024. "license": [
  5025. "MIT"
  5026. ],
  5027. "authors": [
  5028. {
  5029. "name": "Fabien Potencier",
  5030. "email": "fabien@symfony.com"
  5031. },
  5032. {
  5033. "name": "Symfony Community",
  5034. "homepage": "https://symfony.com/contributors"
  5035. }
  5036. ],
  5037. "description": "Allows manipulating MIME messages",
  5038. "homepage": "https://symfony.com",
  5039. "keywords": [
  5040. "mime",
  5041. "mime-type"
  5042. ],
  5043. "support": {
  5044. "source": "https://github.com/symfony/mime/tree/v7.1.2"
  5045. },
  5046. "funding": [
  5047. {
  5048. "url": "https://symfony.com/sponsor",
  5049. "type": "custom"
  5050. },
  5051. {
  5052. "url": "https://github.com/fabpot",
  5053. "type": "github"
  5054. },
  5055. {
  5056. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5057. "type": "tidelift"
  5058. }
  5059. ],
  5060. "time": "2024-06-28T10:03:55+00:00"
  5061. },
  5062. {
  5063. "name": "symfony/monolog-bridge",
  5064. "version": "v7.1.1",
  5065. "source": {
  5066. "type": "git",
  5067. "url": "https://github.com/symfony/monolog-bridge.git",
  5068. "reference": "727be11ae17bb1c5a7f600753b9a1bf0cc0ec3b8"
  5069. },
  5070. "dist": {
  5071. "type": "zip",
  5072. "url": "https://api.github.com/repos/symfony/monolog-bridge/zipball/727be11ae17bb1c5a7f600753b9a1bf0cc0ec3b8",
  5073. "reference": "727be11ae17bb1c5a7f600753b9a1bf0cc0ec3b8",
  5074. "shasum": ""
  5075. },
  5076. "require": {
  5077. "monolog/monolog": "^3",
  5078. "php": ">=8.2",
  5079. "symfony/http-kernel": "^6.4|^7.0",
  5080. "symfony/service-contracts": "^2.5|^3"
  5081. },
  5082. "conflict": {
  5083. "symfony/console": "<6.4",
  5084. "symfony/http-foundation": "<6.4",
  5085. "symfony/security-core": "<6.4"
  5086. },
  5087. "require-dev": {
  5088. "symfony/console": "^6.4|^7.0",
  5089. "symfony/http-client": "^6.4|^7.0",
  5090. "symfony/mailer": "^6.4|^7.0",
  5091. "symfony/messenger": "^6.4|^7.0",
  5092. "symfony/mime": "^6.4|^7.0",
  5093. "symfony/security-core": "^6.4|^7.0",
  5094. "symfony/var-dumper": "^6.4|^7.0"
  5095. },
  5096. "type": "symfony-bridge",
  5097. "autoload": {
  5098. "psr-4": {
  5099. "Symfony\\Bridge\\Monolog\\": ""
  5100. },
  5101. "exclude-from-classmap": [
  5102. "/Tests/"
  5103. ]
  5104. },
  5105. "notification-url": "https://packagist.org/downloads/",
  5106. "license": [
  5107. "MIT"
  5108. ],
  5109. "authors": [
  5110. {
  5111. "name": "Fabien Potencier",
  5112. "email": "fabien@symfony.com"
  5113. },
  5114. {
  5115. "name": "Symfony Community",
  5116. "homepage": "https://symfony.com/contributors"
  5117. }
  5118. ],
  5119. "description": "Provides integration for Monolog with various Symfony components",
  5120. "homepage": "https://symfony.com",
  5121. "support": {
  5122. "source": "https://github.com/symfony/monolog-bridge/tree/v7.1.1"
  5123. },
  5124. "funding": [
  5125. {
  5126. "url": "https://symfony.com/sponsor",
  5127. "type": "custom"
  5128. },
  5129. {
  5130. "url": "https://github.com/fabpot",
  5131. "type": "github"
  5132. },
  5133. {
  5134. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5135. "type": "tidelift"
  5136. }
  5137. ],
  5138. "time": "2024-05-31T14:57:53+00:00"
  5139. },
  5140. {
  5141. "name": "symfony/monolog-bundle",
  5142. "version": "v3.10.0",
  5143. "source": {
  5144. "type": "git",
  5145. "url": "https://github.com/symfony/monolog-bundle.git",
  5146. "reference": "414f951743f4aa1fd0f5bf6a0e9c16af3fe7f181"
  5147. },
  5148. "dist": {
  5149. "type": "zip",
  5150. "url": "https://api.github.com/repos/symfony/monolog-bundle/zipball/414f951743f4aa1fd0f5bf6a0e9c16af3fe7f181",
  5151. "reference": "414f951743f4aa1fd0f5bf6a0e9c16af3fe7f181",
  5152. "shasum": ""
  5153. },
  5154. "require": {
  5155. "monolog/monolog": "^1.25.1 || ^2.0 || ^3.0",
  5156. "php": ">=7.2.5",
  5157. "symfony/config": "^5.4 || ^6.0 || ^7.0",
  5158. "symfony/dependency-injection": "^5.4 || ^6.0 || ^7.0",
  5159. "symfony/http-kernel": "^5.4 || ^6.0 || ^7.0",
  5160. "symfony/monolog-bridge": "^5.4 || ^6.0 || ^7.0"
  5161. },
  5162. "require-dev": {
  5163. "symfony/console": "^5.4 || ^6.0 || ^7.0",
  5164. "symfony/phpunit-bridge": "^6.3 || ^7.0",
  5165. "symfony/yaml": "^5.4 || ^6.0 || ^7.0"
  5166. },
  5167. "type": "symfony-bundle",
  5168. "extra": {
  5169. "branch-alias": {
  5170. "dev-master": "3.x-dev"
  5171. }
  5172. },
  5173. "autoload": {
  5174. "psr-4": {
  5175. "Symfony\\Bundle\\MonologBundle\\": ""
  5176. },
  5177. "exclude-from-classmap": [
  5178. "/Tests/"
  5179. ]
  5180. },
  5181. "notification-url": "https://packagist.org/downloads/",
  5182. "license": [
  5183. "MIT"
  5184. ],
  5185. "authors": [
  5186. {
  5187. "name": "Fabien Potencier",
  5188. "email": "fabien@symfony.com"
  5189. },
  5190. {
  5191. "name": "Symfony Community",
  5192. "homepage": "https://symfony.com/contributors"
  5193. }
  5194. ],
  5195. "description": "Symfony MonologBundle",
  5196. "homepage": "https://symfony.com",
  5197. "keywords": [
  5198. "log",
  5199. "logging"
  5200. ],
  5201. "support": {
  5202. "issues": "https://github.com/symfony/monolog-bundle/issues",
  5203. "source": "https://github.com/symfony/monolog-bundle/tree/v3.10.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": "2023-11-06T17:08:13+00:00"
  5220. },
  5221. {
  5222. "name": "symfony/options-resolver",
  5223. "version": "v7.1.1",
  5224. "source": {
  5225. "type": "git",
  5226. "url": "https://github.com/symfony/options-resolver.git",
  5227. "reference": "47aa818121ed3950acd2b58d1d37d08a94f9bf55"
  5228. },
  5229. "dist": {
  5230. "type": "zip",
  5231. "url": "https://api.github.com/repos/symfony/options-resolver/zipball/47aa818121ed3950acd2b58d1d37d08a94f9bf55",
  5232. "reference": "47aa818121ed3950acd2b58d1d37d08a94f9bf55",
  5233. "shasum": ""
  5234. },
  5235. "require": {
  5236. "php": ">=8.2",
  5237. "symfony/deprecation-contracts": "^2.5|^3"
  5238. },
  5239. "type": "library",
  5240. "autoload": {
  5241. "psr-4": {
  5242. "Symfony\\Component\\OptionsResolver\\": ""
  5243. },
  5244. "exclude-from-classmap": [
  5245. "/Tests/"
  5246. ]
  5247. },
  5248. "notification-url": "https://packagist.org/downloads/",
  5249. "license": [
  5250. "MIT"
  5251. ],
  5252. "authors": [
  5253. {
  5254. "name": "Fabien Potencier",
  5255. "email": "fabien@symfony.com"
  5256. },
  5257. {
  5258. "name": "Symfony Community",
  5259. "homepage": "https://symfony.com/contributors"
  5260. }
  5261. ],
  5262. "description": "Provides an improved replacement for the array_replace PHP function",
  5263. "homepage": "https://symfony.com",
  5264. "keywords": [
  5265. "config",
  5266. "configuration",
  5267. "options"
  5268. ],
  5269. "support": {
  5270. "source": "https://github.com/symfony/options-resolver/tree/v7.1.1"
  5271. },
  5272. "funding": [
  5273. {
  5274. "url": "https://symfony.com/sponsor",
  5275. "type": "custom"
  5276. },
  5277. {
  5278. "url": "https://github.com/fabpot",
  5279. "type": "github"
  5280. },
  5281. {
  5282. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5283. "type": "tidelift"
  5284. }
  5285. ],
  5286. "time": "2024-05-31T14:57:53+00:00"
  5287. },
  5288. {
  5289. "name": "symfony/password-hasher",
  5290. "version": "v7.1.1",
  5291. "source": {
  5292. "type": "git",
  5293. "url": "https://github.com/symfony/password-hasher.git",
  5294. "reference": "4ad96eb7cf9e2f8f133ada95f2b8021769061662"
  5295. },
  5296. "dist": {
  5297. "type": "zip",
  5298. "url": "https://api.github.com/repos/symfony/password-hasher/zipball/4ad96eb7cf9e2f8f133ada95f2b8021769061662",
  5299. "reference": "4ad96eb7cf9e2f8f133ada95f2b8021769061662",
  5300. "shasum": ""
  5301. },
  5302. "require": {
  5303. "php": ">=8.2"
  5304. },
  5305. "conflict": {
  5306. "symfony/security-core": "<6.4"
  5307. },
  5308. "require-dev": {
  5309. "symfony/console": "^6.4|^7.0",
  5310. "symfony/security-core": "^6.4|^7.0"
  5311. },
  5312. "type": "library",
  5313. "autoload": {
  5314. "psr-4": {
  5315. "Symfony\\Component\\PasswordHasher\\": ""
  5316. },
  5317. "exclude-from-classmap": [
  5318. "/Tests/"
  5319. ]
  5320. },
  5321. "notification-url": "https://packagist.org/downloads/",
  5322. "license": [
  5323. "MIT"
  5324. ],
  5325. "authors": [
  5326. {
  5327. "name": "Robin Chalas",
  5328. "email": "robin.chalas@gmail.com"
  5329. },
  5330. {
  5331. "name": "Symfony Community",
  5332. "homepage": "https://symfony.com/contributors"
  5333. }
  5334. ],
  5335. "description": "Provides password hashing utilities",
  5336. "homepage": "https://symfony.com",
  5337. "keywords": [
  5338. "hashing",
  5339. "password"
  5340. ],
  5341. "support": {
  5342. "source": "https://github.com/symfony/password-hasher/tree/v7.1.1"
  5343. },
  5344. "funding": [
  5345. {
  5346. "url": "https://symfony.com/sponsor",
  5347. "type": "custom"
  5348. },
  5349. {
  5350. "url": "https://github.com/fabpot",
  5351. "type": "github"
  5352. },
  5353. {
  5354. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5355. "type": "tidelift"
  5356. }
  5357. ],
  5358. "time": "2024-05-31T14:57:53+00:00"
  5359. },
  5360. {
  5361. "name": "symfony/polyfill-intl-grapheme",
  5362. "version": "v1.30.0",
  5363. "source": {
  5364. "type": "git",
  5365. "url": "https://github.com/symfony/polyfill-intl-grapheme.git",
  5366. "reference": "64647a7c30b2283f5d49b874d84a18fc22054b7a"
  5367. },
  5368. "dist": {
  5369. "type": "zip",
  5370. "url": "https://api.github.com/repos/symfony/polyfill-intl-grapheme/zipball/64647a7c30b2283f5d49b874d84a18fc22054b7a",
  5371. "reference": "64647a7c30b2283f5d49b874d84a18fc22054b7a",
  5372. "shasum": ""
  5373. },
  5374. "require": {
  5375. "php": ">=7.1"
  5376. },
  5377. "suggest": {
  5378. "ext-intl": "For best performance"
  5379. },
  5380. "type": "library",
  5381. "extra": {
  5382. "thanks": {
  5383. "name": "symfony/polyfill",
  5384. "url": "https://github.com/symfony/polyfill"
  5385. }
  5386. },
  5387. "autoload": {
  5388. "files": [
  5389. "bootstrap.php"
  5390. ],
  5391. "psr-4": {
  5392. "Symfony\\Polyfill\\Intl\\Grapheme\\": ""
  5393. }
  5394. },
  5395. "notification-url": "https://packagist.org/downloads/",
  5396. "license": [
  5397. "MIT"
  5398. ],
  5399. "authors": [
  5400. {
  5401. "name": "Nicolas Grekas",
  5402. "email": "p@tchwork.com"
  5403. },
  5404. {
  5405. "name": "Symfony Community",
  5406. "homepage": "https://symfony.com/contributors"
  5407. }
  5408. ],
  5409. "description": "Symfony polyfill for intl's grapheme_* functions",
  5410. "homepage": "https://symfony.com",
  5411. "keywords": [
  5412. "compatibility",
  5413. "grapheme",
  5414. "intl",
  5415. "polyfill",
  5416. "portable",
  5417. "shim"
  5418. ],
  5419. "support": {
  5420. "source": "https://github.com/symfony/polyfill-intl-grapheme/tree/v1.30.0"
  5421. },
  5422. "funding": [
  5423. {
  5424. "url": "https://symfony.com/sponsor",
  5425. "type": "custom"
  5426. },
  5427. {
  5428. "url": "https://github.com/fabpot",
  5429. "type": "github"
  5430. },
  5431. {
  5432. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5433. "type": "tidelift"
  5434. }
  5435. ],
  5436. "time": "2024-05-31T15:07:36+00:00"
  5437. },
  5438. {
  5439. "name": "symfony/polyfill-intl-icu",
  5440. "version": "v1.30.0",
  5441. "source": {
  5442. "type": "git",
  5443. "url": "https://github.com/symfony/polyfill-intl-icu.git",
  5444. "reference": "e76343c631b453088e2260ac41dfebe21954de81"
  5445. },
  5446. "dist": {
  5447. "type": "zip",
  5448. "url": "https://api.github.com/repos/symfony/polyfill-intl-icu/zipball/e76343c631b453088e2260ac41dfebe21954de81",
  5449. "reference": "e76343c631b453088e2260ac41dfebe21954de81",
  5450. "shasum": ""
  5451. },
  5452. "require": {
  5453. "php": ">=7.1"
  5454. },
  5455. "suggest": {
  5456. "ext-intl": "For best performance and support of other locales than \"en\""
  5457. },
  5458. "type": "library",
  5459. "extra": {
  5460. "thanks": {
  5461. "name": "symfony/polyfill",
  5462. "url": "https://github.com/symfony/polyfill"
  5463. }
  5464. },
  5465. "autoload": {
  5466. "files": [
  5467. "bootstrap.php"
  5468. ],
  5469. "psr-4": {
  5470. "Symfony\\Polyfill\\Intl\\Icu\\": ""
  5471. },
  5472. "classmap": [
  5473. "Resources/stubs"
  5474. ],
  5475. "exclude-from-classmap": [
  5476. "/Tests/"
  5477. ]
  5478. },
  5479. "notification-url": "https://packagist.org/downloads/",
  5480. "license": [
  5481. "MIT"
  5482. ],
  5483. "authors": [
  5484. {
  5485. "name": "Nicolas Grekas",
  5486. "email": "p@tchwork.com"
  5487. },
  5488. {
  5489. "name": "Symfony Community",
  5490. "homepage": "https://symfony.com/contributors"
  5491. }
  5492. ],
  5493. "description": "Symfony polyfill for intl's ICU-related data and classes",
  5494. "homepage": "https://symfony.com",
  5495. "keywords": [
  5496. "compatibility",
  5497. "icu",
  5498. "intl",
  5499. "polyfill",
  5500. "portable",
  5501. "shim"
  5502. ],
  5503. "support": {
  5504. "source": "https://github.com/symfony/polyfill-intl-icu/tree/v1.30.0"
  5505. },
  5506. "funding": [
  5507. {
  5508. "url": "https://symfony.com/sponsor",
  5509. "type": "custom"
  5510. },
  5511. {
  5512. "url": "https://github.com/fabpot",
  5513. "type": "github"
  5514. },
  5515. {
  5516. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5517. "type": "tidelift"
  5518. }
  5519. ],
  5520. "time": "2024-05-31T15:07:36+00:00"
  5521. },
  5522. {
  5523. "name": "symfony/polyfill-intl-idn",
  5524. "version": "v1.30.0",
  5525. "source": {
  5526. "type": "git",
  5527. "url": "https://github.com/symfony/polyfill-intl-idn.git",
  5528. "reference": "a6e83bdeb3c84391d1dfe16f42e40727ce524a5c"
  5529. },
  5530. "dist": {
  5531. "type": "zip",
  5532. "url": "https://api.github.com/repos/symfony/polyfill-intl-idn/zipball/a6e83bdeb3c84391d1dfe16f42e40727ce524a5c",
  5533. "reference": "a6e83bdeb3c84391d1dfe16f42e40727ce524a5c",
  5534. "shasum": ""
  5535. },
  5536. "require": {
  5537. "php": ">=7.1",
  5538. "symfony/polyfill-intl-normalizer": "^1.10",
  5539. "symfony/polyfill-php72": "^1.10"
  5540. },
  5541. "suggest": {
  5542. "ext-intl": "For best performance"
  5543. },
  5544. "type": "library",
  5545. "extra": {
  5546. "thanks": {
  5547. "name": "symfony/polyfill",
  5548. "url": "https://github.com/symfony/polyfill"
  5549. }
  5550. },
  5551. "autoload": {
  5552. "files": [
  5553. "bootstrap.php"
  5554. ],
  5555. "psr-4": {
  5556. "Symfony\\Polyfill\\Intl\\Idn\\": ""
  5557. }
  5558. },
  5559. "notification-url": "https://packagist.org/downloads/",
  5560. "license": [
  5561. "MIT"
  5562. ],
  5563. "authors": [
  5564. {
  5565. "name": "Laurent Bassin",
  5566. "email": "laurent@bassin.info"
  5567. },
  5568. {
  5569. "name": "Trevor Rowbotham",
  5570. "email": "trevor.rowbotham@pm.me"
  5571. },
  5572. {
  5573. "name": "Symfony Community",
  5574. "homepage": "https://symfony.com/contributors"
  5575. }
  5576. ],
  5577. "description": "Symfony polyfill for intl's idn_to_ascii and idn_to_utf8 functions",
  5578. "homepage": "https://symfony.com",
  5579. "keywords": [
  5580. "compatibility",
  5581. "idn",
  5582. "intl",
  5583. "polyfill",
  5584. "portable",
  5585. "shim"
  5586. ],
  5587. "support": {
  5588. "source": "https://github.com/symfony/polyfill-intl-idn/tree/v1.30.0"
  5589. },
  5590. "funding": [
  5591. {
  5592. "url": "https://symfony.com/sponsor",
  5593. "type": "custom"
  5594. },
  5595. {
  5596. "url": "https://github.com/fabpot",
  5597. "type": "github"
  5598. },
  5599. {
  5600. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5601. "type": "tidelift"
  5602. }
  5603. ],
  5604. "time": "2024-05-31T15:07:36+00:00"
  5605. },
  5606. {
  5607. "name": "symfony/polyfill-intl-normalizer",
  5608. "version": "v1.30.0",
  5609. "source": {
  5610. "type": "git",
  5611. "url": "https://github.com/symfony/polyfill-intl-normalizer.git",
  5612. "reference": "a95281b0be0d9ab48050ebd988b967875cdb9fdb"
  5613. },
  5614. "dist": {
  5615. "type": "zip",
  5616. "url": "https://api.github.com/repos/symfony/polyfill-intl-normalizer/zipball/a95281b0be0d9ab48050ebd988b967875cdb9fdb",
  5617. "reference": "a95281b0be0d9ab48050ebd988b967875cdb9fdb",
  5618. "shasum": ""
  5619. },
  5620. "require": {
  5621. "php": ">=7.1"
  5622. },
  5623. "suggest": {
  5624. "ext-intl": "For best performance"
  5625. },
  5626. "type": "library",
  5627. "extra": {
  5628. "thanks": {
  5629. "name": "symfony/polyfill",
  5630. "url": "https://github.com/symfony/polyfill"
  5631. }
  5632. },
  5633. "autoload": {
  5634. "files": [
  5635. "bootstrap.php"
  5636. ],
  5637. "psr-4": {
  5638. "Symfony\\Polyfill\\Intl\\Normalizer\\": ""
  5639. },
  5640. "classmap": [
  5641. "Resources/stubs"
  5642. ]
  5643. },
  5644. "notification-url": "https://packagist.org/downloads/",
  5645. "license": [
  5646. "MIT"
  5647. ],
  5648. "authors": [
  5649. {
  5650. "name": "Nicolas Grekas",
  5651. "email": "p@tchwork.com"
  5652. },
  5653. {
  5654. "name": "Symfony Community",
  5655. "homepage": "https://symfony.com/contributors"
  5656. }
  5657. ],
  5658. "description": "Symfony polyfill for intl's Normalizer class and related functions",
  5659. "homepage": "https://symfony.com",
  5660. "keywords": [
  5661. "compatibility",
  5662. "intl",
  5663. "normalizer",
  5664. "polyfill",
  5665. "portable",
  5666. "shim"
  5667. ],
  5668. "support": {
  5669. "source": "https://github.com/symfony/polyfill-intl-normalizer/tree/v1.30.0"
  5670. },
  5671. "funding": [
  5672. {
  5673. "url": "https://symfony.com/sponsor",
  5674. "type": "custom"
  5675. },
  5676. {
  5677. "url": "https://github.com/fabpot",
  5678. "type": "github"
  5679. },
  5680. {
  5681. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5682. "type": "tidelift"
  5683. }
  5684. ],
  5685. "time": "2024-05-31T15:07:36+00:00"
  5686. },
  5687. {
  5688. "name": "symfony/polyfill-mbstring",
  5689. "version": "v1.30.0",
  5690. "source": {
  5691. "type": "git",
  5692. "url": "https://github.com/symfony/polyfill-mbstring.git",
  5693. "reference": "fd22ab50000ef01661e2a31d850ebaa297f8e03c"
  5694. },
  5695. "dist": {
  5696. "type": "zip",
  5697. "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/fd22ab50000ef01661e2a31d850ebaa297f8e03c",
  5698. "reference": "fd22ab50000ef01661e2a31d850ebaa297f8e03c",
  5699. "shasum": ""
  5700. },
  5701. "require": {
  5702. "php": ">=7.1"
  5703. },
  5704. "provide": {
  5705. "ext-mbstring": "*"
  5706. },
  5707. "suggest": {
  5708. "ext-mbstring": "For best performance"
  5709. },
  5710. "type": "library",
  5711. "extra": {
  5712. "thanks": {
  5713. "name": "symfony/polyfill",
  5714. "url": "https://github.com/symfony/polyfill"
  5715. }
  5716. },
  5717. "autoload": {
  5718. "files": [
  5719. "bootstrap.php"
  5720. ],
  5721. "psr-4": {
  5722. "Symfony\\Polyfill\\Mbstring\\": ""
  5723. }
  5724. },
  5725. "notification-url": "https://packagist.org/downloads/",
  5726. "license": [
  5727. "MIT"
  5728. ],
  5729. "authors": [
  5730. {
  5731. "name": "Nicolas Grekas",
  5732. "email": "p@tchwork.com"
  5733. },
  5734. {
  5735. "name": "Symfony Community",
  5736. "homepage": "https://symfony.com/contributors"
  5737. }
  5738. ],
  5739. "description": "Symfony polyfill for the Mbstring extension",
  5740. "homepage": "https://symfony.com",
  5741. "keywords": [
  5742. "compatibility",
  5743. "mbstring",
  5744. "polyfill",
  5745. "portable",
  5746. "shim"
  5747. ],
  5748. "support": {
  5749. "source": "https://github.com/symfony/polyfill-mbstring/tree/v1.30.0"
  5750. },
  5751. "funding": [
  5752. {
  5753. "url": "https://symfony.com/sponsor",
  5754. "type": "custom"
  5755. },
  5756. {
  5757. "url": "https://github.com/fabpot",
  5758. "type": "github"
  5759. },
  5760. {
  5761. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5762. "type": "tidelift"
  5763. }
  5764. ],
  5765. "time": "2024-06-19T12:30:46+00:00"
  5766. },
  5767. {
  5768. "name": "symfony/polyfill-php72",
  5769. "version": "v1.30.0",
  5770. "source": {
  5771. "type": "git",
  5772. "url": "https://github.com/symfony/polyfill-php72.git",
  5773. "reference": "10112722600777e02d2745716b70c5db4ca70442"
  5774. },
  5775. "dist": {
  5776. "type": "zip",
  5777. "url": "https://api.github.com/repos/symfony/polyfill-php72/zipball/10112722600777e02d2745716b70c5db4ca70442",
  5778. "reference": "10112722600777e02d2745716b70c5db4ca70442",
  5779. "shasum": ""
  5780. },
  5781. "require": {
  5782. "php": ">=7.1"
  5783. },
  5784. "type": "library",
  5785. "extra": {
  5786. "thanks": {
  5787. "name": "symfony/polyfill",
  5788. "url": "https://github.com/symfony/polyfill"
  5789. }
  5790. },
  5791. "autoload": {
  5792. "files": [
  5793. "bootstrap.php"
  5794. ],
  5795. "psr-4": {
  5796. "Symfony\\Polyfill\\Php72\\": ""
  5797. }
  5798. },
  5799. "notification-url": "https://packagist.org/downloads/",
  5800. "license": [
  5801. "MIT"
  5802. ],
  5803. "authors": [
  5804. {
  5805. "name": "Nicolas Grekas",
  5806. "email": "p@tchwork.com"
  5807. },
  5808. {
  5809. "name": "Symfony Community",
  5810. "homepage": "https://symfony.com/contributors"
  5811. }
  5812. ],
  5813. "description": "Symfony polyfill backporting some PHP 7.2+ features to lower PHP versions",
  5814. "homepage": "https://symfony.com",
  5815. "keywords": [
  5816. "compatibility",
  5817. "polyfill",
  5818. "portable",
  5819. "shim"
  5820. ],
  5821. "support": {
  5822. "source": "https://github.com/symfony/polyfill-php72/tree/v1.30.0"
  5823. },
  5824. "funding": [
  5825. {
  5826. "url": "https://symfony.com/sponsor",
  5827. "type": "custom"
  5828. },
  5829. {
  5830. "url": "https://github.com/fabpot",
  5831. "type": "github"
  5832. },
  5833. {
  5834. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5835. "type": "tidelift"
  5836. }
  5837. ],
  5838. "time": "2024-06-19T12:30:46+00:00"
  5839. },
  5840. {
  5841. "name": "symfony/polyfill-php80",
  5842. "version": "v1.30.0",
  5843. "source": {
  5844. "type": "git",
  5845. "url": "https://github.com/symfony/polyfill-php80.git",
  5846. "reference": "77fa7995ac1b21ab60769b7323d600a991a90433"
  5847. },
  5848. "dist": {
  5849. "type": "zip",
  5850. "url": "https://api.github.com/repos/symfony/polyfill-php80/zipball/77fa7995ac1b21ab60769b7323d600a991a90433",
  5851. "reference": "77fa7995ac1b21ab60769b7323d600a991a90433",
  5852. "shasum": ""
  5853. },
  5854. "require": {
  5855. "php": ">=7.1"
  5856. },
  5857. "type": "library",
  5858. "extra": {
  5859. "thanks": {
  5860. "name": "symfony/polyfill",
  5861. "url": "https://github.com/symfony/polyfill"
  5862. }
  5863. },
  5864. "autoload": {
  5865. "files": [
  5866. "bootstrap.php"
  5867. ],
  5868. "psr-4": {
  5869. "Symfony\\Polyfill\\Php80\\": ""
  5870. },
  5871. "classmap": [
  5872. "Resources/stubs"
  5873. ]
  5874. },
  5875. "notification-url": "https://packagist.org/downloads/",
  5876. "license": [
  5877. "MIT"
  5878. ],
  5879. "authors": [
  5880. {
  5881. "name": "Ion Bazan",
  5882. "email": "ion.bazan@gmail.com"
  5883. },
  5884. {
  5885. "name": "Nicolas Grekas",
  5886. "email": "p@tchwork.com"
  5887. },
  5888. {
  5889. "name": "Symfony Community",
  5890. "homepage": "https://symfony.com/contributors"
  5891. }
  5892. ],
  5893. "description": "Symfony polyfill backporting some PHP 8.0+ features to lower PHP versions",
  5894. "homepage": "https://symfony.com",
  5895. "keywords": [
  5896. "compatibility",
  5897. "polyfill",
  5898. "portable",
  5899. "shim"
  5900. ],
  5901. "support": {
  5902. "source": "https://github.com/symfony/polyfill-php80/tree/v1.30.0"
  5903. },
  5904. "funding": [
  5905. {
  5906. "url": "https://symfony.com/sponsor",
  5907. "type": "custom"
  5908. },
  5909. {
  5910. "url": "https://github.com/fabpot",
  5911. "type": "github"
  5912. },
  5913. {
  5914. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5915. "type": "tidelift"
  5916. }
  5917. ],
  5918. "time": "2024-05-31T15:07:36+00:00"
  5919. },
  5920. {
  5921. "name": "symfony/polyfill-php83",
  5922. "version": "v1.30.0",
  5923. "source": {
  5924. "type": "git",
  5925. "url": "https://github.com/symfony/polyfill-php83.git",
  5926. "reference": "dbdcdf1a4dcc2743591f1079d0c35ab1e2dcbbc9"
  5927. },
  5928. "dist": {
  5929. "type": "zip",
  5930. "url": "https://api.github.com/repos/symfony/polyfill-php83/zipball/dbdcdf1a4dcc2743591f1079d0c35ab1e2dcbbc9",
  5931. "reference": "dbdcdf1a4dcc2743591f1079d0c35ab1e2dcbbc9",
  5932. "shasum": ""
  5933. },
  5934. "require": {
  5935. "php": ">=7.1"
  5936. },
  5937. "type": "library",
  5938. "extra": {
  5939. "thanks": {
  5940. "name": "symfony/polyfill",
  5941. "url": "https://github.com/symfony/polyfill"
  5942. }
  5943. },
  5944. "autoload": {
  5945. "files": [
  5946. "bootstrap.php"
  5947. ],
  5948. "psr-4": {
  5949. "Symfony\\Polyfill\\Php83\\": ""
  5950. },
  5951. "classmap": [
  5952. "Resources/stubs"
  5953. ]
  5954. },
  5955. "notification-url": "https://packagist.org/downloads/",
  5956. "license": [
  5957. "MIT"
  5958. ],
  5959. "authors": [
  5960. {
  5961. "name": "Nicolas Grekas",
  5962. "email": "p@tchwork.com"
  5963. },
  5964. {
  5965. "name": "Symfony Community",
  5966. "homepage": "https://symfony.com/contributors"
  5967. }
  5968. ],
  5969. "description": "Symfony polyfill backporting some PHP 8.3+ features to lower PHP versions",
  5970. "homepage": "https://symfony.com",
  5971. "keywords": [
  5972. "compatibility",
  5973. "polyfill",
  5974. "portable",
  5975. "shim"
  5976. ],
  5977. "support": {
  5978. "source": "https://github.com/symfony/polyfill-php83/tree/v1.30.0"
  5979. },
  5980. "funding": [
  5981. {
  5982. "url": "https://symfony.com/sponsor",
  5983. "type": "custom"
  5984. },
  5985. {
  5986. "url": "https://github.com/fabpot",
  5987. "type": "github"
  5988. },
  5989. {
  5990. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5991. "type": "tidelift"
  5992. }
  5993. ],
  5994. "time": "2024-06-19T12:35:24+00:00"
  5995. },
  5996. {
  5997. "name": "symfony/process",
  5998. "version": "v7.1.3",
  5999. "source": {
  6000. "type": "git",
  6001. "url": "https://github.com/symfony/process.git",
  6002. "reference": "7f2f542c668ad6c313dc4a5e9c3321f733197eca"
  6003. },
  6004. "dist": {
  6005. "type": "zip",
  6006. "url": "https://api.github.com/repos/symfony/process/zipball/7f2f542c668ad6c313dc4a5e9c3321f733197eca",
  6007. "reference": "7f2f542c668ad6c313dc4a5e9c3321f733197eca",
  6008. "shasum": ""
  6009. },
  6010. "require": {
  6011. "php": ">=8.2"
  6012. },
  6013. "type": "library",
  6014. "autoload": {
  6015. "psr-4": {
  6016. "Symfony\\Component\\Process\\": ""
  6017. },
  6018. "exclude-from-classmap": [
  6019. "/Tests/"
  6020. ]
  6021. },
  6022. "notification-url": "https://packagist.org/downloads/",
  6023. "license": [
  6024. "MIT"
  6025. ],
  6026. "authors": [
  6027. {
  6028. "name": "Fabien Potencier",
  6029. "email": "fabien@symfony.com"
  6030. },
  6031. {
  6032. "name": "Symfony Community",
  6033. "homepage": "https://symfony.com/contributors"
  6034. }
  6035. ],
  6036. "description": "Executes commands in sub-processes",
  6037. "homepage": "https://symfony.com",
  6038. "support": {
  6039. "source": "https://github.com/symfony/process/tree/v7.1.3"
  6040. },
  6041. "funding": [
  6042. {
  6043. "url": "https://symfony.com/sponsor",
  6044. "type": "custom"
  6045. },
  6046. {
  6047. "url": "https://github.com/fabpot",
  6048. "type": "github"
  6049. },
  6050. {
  6051. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6052. "type": "tidelift"
  6053. }
  6054. ],
  6055. "time": "2024-07-26T12:44:47+00:00"
  6056. },
  6057. {
  6058. "name": "symfony/property-access",
  6059. "version": "v7.1.1",
  6060. "source": {
  6061. "type": "git",
  6062. "url": "https://github.com/symfony/property-access.git",
  6063. "reference": "74e39e6a6276b8e384f34c6ddbc10a6c9a60193a"
  6064. },
  6065. "dist": {
  6066. "type": "zip",
  6067. "url": "https://api.github.com/repos/symfony/property-access/zipball/74e39e6a6276b8e384f34c6ddbc10a6c9a60193a",
  6068. "reference": "74e39e6a6276b8e384f34c6ddbc10a6c9a60193a",
  6069. "shasum": ""
  6070. },
  6071. "require": {
  6072. "php": ">=8.2",
  6073. "symfony/property-info": "^6.4|^7.0"
  6074. },
  6075. "require-dev": {
  6076. "symfony/cache": "^6.4|^7.0"
  6077. },
  6078. "type": "library",
  6079. "autoload": {
  6080. "psr-4": {
  6081. "Symfony\\Component\\PropertyAccess\\": ""
  6082. },
  6083. "exclude-from-classmap": [
  6084. "/Tests/"
  6085. ]
  6086. },
  6087. "notification-url": "https://packagist.org/downloads/",
  6088. "license": [
  6089. "MIT"
  6090. ],
  6091. "authors": [
  6092. {
  6093. "name": "Fabien Potencier",
  6094. "email": "fabien@symfony.com"
  6095. },
  6096. {
  6097. "name": "Symfony Community",
  6098. "homepage": "https://symfony.com/contributors"
  6099. }
  6100. ],
  6101. "description": "Provides functions to read and write from/to an object or array using a simple string notation",
  6102. "homepage": "https://symfony.com",
  6103. "keywords": [
  6104. "access",
  6105. "array",
  6106. "extraction",
  6107. "index",
  6108. "injection",
  6109. "object",
  6110. "property",
  6111. "property-path",
  6112. "reflection"
  6113. ],
  6114. "support": {
  6115. "source": "https://github.com/symfony/property-access/tree/v7.1.1"
  6116. },
  6117. "funding": [
  6118. {
  6119. "url": "https://symfony.com/sponsor",
  6120. "type": "custom"
  6121. },
  6122. {
  6123. "url": "https://github.com/fabpot",
  6124. "type": "github"
  6125. },
  6126. {
  6127. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6128. "type": "tidelift"
  6129. }
  6130. ],
  6131. "time": "2024-05-31T14:57:53+00:00"
  6132. },
  6133. {
  6134. "name": "symfony/property-info",
  6135. "version": "v7.1.3",
  6136. "source": {
  6137. "type": "git",
  6138. "url": "https://github.com/symfony/property-info.git",
  6139. "reference": "88a279df2db5b7919cac6f35d6a5d1d7147e6a9b"
  6140. },
  6141. "dist": {
  6142. "type": "zip",
  6143. "url": "https://api.github.com/repos/symfony/property-info/zipball/88a279df2db5b7919cac6f35d6a5d1d7147e6a9b",
  6144. "reference": "88a279df2db5b7919cac6f35d6a5d1d7147e6a9b",
  6145. "shasum": ""
  6146. },
  6147. "require": {
  6148. "php": ">=8.2",
  6149. "symfony/string": "^6.4|^7.0",
  6150. "symfony/type-info": "^7.1"
  6151. },
  6152. "conflict": {
  6153. "phpdocumentor/reflection-docblock": "<5.2",
  6154. "phpdocumentor/type-resolver": "<1.5.1",
  6155. "symfony/dependency-injection": "<6.4",
  6156. "symfony/serializer": "<6.4"
  6157. },
  6158. "require-dev": {
  6159. "phpdocumentor/reflection-docblock": "^5.2",
  6160. "phpstan/phpdoc-parser": "^1.0",
  6161. "symfony/cache": "^6.4|^7.0",
  6162. "symfony/dependency-injection": "^6.4|^7.0",
  6163. "symfony/serializer": "^6.4|^7.0"
  6164. },
  6165. "type": "library",
  6166. "autoload": {
  6167. "psr-4": {
  6168. "Symfony\\Component\\PropertyInfo\\": ""
  6169. },
  6170. "exclude-from-classmap": [
  6171. "/Tests/"
  6172. ]
  6173. },
  6174. "notification-url": "https://packagist.org/downloads/",
  6175. "license": [
  6176. "MIT"
  6177. ],
  6178. "authors": [
  6179. {
  6180. "name": "Kévin Dunglas",
  6181. "email": "dunglas@gmail.com"
  6182. },
  6183. {
  6184. "name": "Symfony Community",
  6185. "homepage": "https://symfony.com/contributors"
  6186. }
  6187. ],
  6188. "description": "Extracts information about PHP class' properties using metadata of popular sources",
  6189. "homepage": "https://symfony.com",
  6190. "keywords": [
  6191. "doctrine",
  6192. "phpdoc",
  6193. "property",
  6194. "symfony",
  6195. "type",
  6196. "validator"
  6197. ],
  6198. "support": {
  6199. "source": "https://github.com/symfony/property-info/tree/v7.1.3"
  6200. },
  6201. "funding": [
  6202. {
  6203. "url": "https://symfony.com/sponsor",
  6204. "type": "custom"
  6205. },
  6206. {
  6207. "url": "https://github.com/fabpot",
  6208. "type": "github"
  6209. },
  6210. {
  6211. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6212. "type": "tidelift"
  6213. }
  6214. ],
  6215. "time": "2024-07-26T07:36:36+00:00"
  6216. },
  6217. {
  6218. "name": "symfony/routing",
  6219. "version": "v7.1.3",
  6220. "source": {
  6221. "type": "git",
  6222. "url": "https://github.com/symfony/routing.git",
  6223. "reference": "8a908a3f22d5a1b5d297578c2ceb41b02fa916d0"
  6224. },
  6225. "dist": {
  6226. "type": "zip",
  6227. "url": "https://api.github.com/repos/symfony/routing/zipball/8a908a3f22d5a1b5d297578c2ceb41b02fa916d0",
  6228. "reference": "8a908a3f22d5a1b5d297578c2ceb41b02fa916d0",
  6229. "shasum": ""
  6230. },
  6231. "require": {
  6232. "php": ">=8.2",
  6233. "symfony/deprecation-contracts": "^2.5|^3"
  6234. },
  6235. "conflict": {
  6236. "symfony/config": "<6.4",
  6237. "symfony/dependency-injection": "<6.4",
  6238. "symfony/yaml": "<6.4"
  6239. },
  6240. "require-dev": {
  6241. "psr/log": "^1|^2|^3",
  6242. "symfony/config": "^6.4|^7.0",
  6243. "symfony/dependency-injection": "^6.4|^7.0",
  6244. "symfony/expression-language": "^6.4|^7.0",
  6245. "symfony/http-foundation": "^6.4|^7.0",
  6246. "symfony/yaml": "^6.4|^7.0"
  6247. },
  6248. "type": "library",
  6249. "autoload": {
  6250. "psr-4": {
  6251. "Symfony\\Component\\Routing\\": ""
  6252. },
  6253. "exclude-from-classmap": [
  6254. "/Tests/"
  6255. ]
  6256. },
  6257. "notification-url": "https://packagist.org/downloads/",
  6258. "license": [
  6259. "MIT"
  6260. ],
  6261. "authors": [
  6262. {
  6263. "name": "Fabien Potencier",
  6264. "email": "fabien@symfony.com"
  6265. },
  6266. {
  6267. "name": "Symfony Community",
  6268. "homepage": "https://symfony.com/contributors"
  6269. }
  6270. ],
  6271. "description": "Maps an HTTP request to a set of configuration variables",
  6272. "homepage": "https://symfony.com",
  6273. "keywords": [
  6274. "router",
  6275. "routing",
  6276. "uri",
  6277. "url"
  6278. ],
  6279. "support": {
  6280. "source": "https://github.com/symfony/routing/tree/v7.1.3"
  6281. },
  6282. "funding": [
  6283. {
  6284. "url": "https://symfony.com/sponsor",
  6285. "type": "custom"
  6286. },
  6287. {
  6288. "url": "https://github.com/fabpot",
  6289. "type": "github"
  6290. },
  6291. {
  6292. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6293. "type": "tidelift"
  6294. }
  6295. ],
  6296. "time": "2024-07-17T06:10:24+00:00"
  6297. },
  6298. {
  6299. "name": "symfony/runtime",
  6300. "version": "v7.1.1",
  6301. "source": {
  6302. "type": "git",
  6303. "url": "https://github.com/symfony/runtime.git",
  6304. "reference": "ea34522c447dd91a2b31cb330ee4540a56ba53f6"
  6305. },
  6306. "dist": {
  6307. "type": "zip",
  6308. "url": "https://api.github.com/repos/symfony/runtime/zipball/ea34522c447dd91a2b31cb330ee4540a56ba53f6",
  6309. "reference": "ea34522c447dd91a2b31cb330ee4540a56ba53f6",
  6310. "shasum": ""
  6311. },
  6312. "require": {
  6313. "composer-plugin-api": "^1.0|^2.0",
  6314. "php": ">=8.2"
  6315. },
  6316. "conflict": {
  6317. "symfony/dotenv": "<6.4"
  6318. },
  6319. "require-dev": {
  6320. "composer/composer": "^2.6",
  6321. "symfony/console": "^6.4|^7.0",
  6322. "symfony/dotenv": "^6.4|^7.0",
  6323. "symfony/http-foundation": "^6.4|^7.0",
  6324. "symfony/http-kernel": "^6.4|^7.0"
  6325. },
  6326. "type": "composer-plugin",
  6327. "extra": {
  6328. "class": "Symfony\\Component\\Runtime\\Internal\\ComposerPlugin"
  6329. },
  6330. "autoload": {
  6331. "psr-4": {
  6332. "Symfony\\Component\\Runtime\\": "",
  6333. "Symfony\\Runtime\\Symfony\\Component\\": "Internal/"
  6334. },
  6335. "exclude-from-classmap": [
  6336. "/Tests/"
  6337. ]
  6338. },
  6339. "notification-url": "https://packagist.org/downloads/",
  6340. "license": [
  6341. "MIT"
  6342. ],
  6343. "authors": [
  6344. {
  6345. "name": "Nicolas Grekas",
  6346. "email": "p@tchwork.com"
  6347. },
  6348. {
  6349. "name": "Symfony Community",
  6350. "homepage": "https://symfony.com/contributors"
  6351. }
  6352. ],
  6353. "description": "Enables decoupling PHP applications from global state",
  6354. "homepage": "https://symfony.com",
  6355. "keywords": [
  6356. "runtime"
  6357. ],
  6358. "support": {
  6359. "source": "https://github.com/symfony/runtime/tree/v7.1.1"
  6360. },
  6361. "funding": [
  6362. {
  6363. "url": "https://symfony.com/sponsor",
  6364. "type": "custom"
  6365. },
  6366. {
  6367. "url": "https://github.com/fabpot",
  6368. "type": "github"
  6369. },
  6370. {
  6371. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6372. "type": "tidelift"
  6373. }
  6374. ],
  6375. "time": "2024-05-31T14:55:39+00:00"
  6376. },
  6377. {
  6378. "name": "symfony/security-bundle",
  6379. "version": "v7.1.3",
  6380. "source": {
  6381. "type": "git",
  6382. "url": "https://github.com/symfony/security-bundle.git",
  6383. "reference": "4f77a89e21c2e700b5fbbf3c1eccd71b9a5d69ad"
  6384. },
  6385. "dist": {
  6386. "type": "zip",
  6387. "url": "https://api.github.com/repos/symfony/security-bundle/zipball/4f77a89e21c2e700b5fbbf3c1eccd71b9a5d69ad",
  6388. "reference": "4f77a89e21c2e700b5fbbf3c1eccd71b9a5d69ad",
  6389. "shasum": ""
  6390. },
  6391. "require": {
  6392. "composer-runtime-api": ">=2.1",
  6393. "ext-xml": "*",
  6394. "php": ">=8.2",
  6395. "symfony/clock": "^6.4|^7.0",
  6396. "symfony/config": "^6.4|^7.0",
  6397. "symfony/dependency-injection": "^6.4|^7.0",
  6398. "symfony/event-dispatcher": "^6.4|^7.0",
  6399. "symfony/http-foundation": "^6.4|^7.0",
  6400. "symfony/http-kernel": "^6.4|^7.0",
  6401. "symfony/password-hasher": "^6.4|^7.0",
  6402. "symfony/security-core": "^6.4|^7.0",
  6403. "symfony/security-csrf": "^6.4|^7.0",
  6404. "symfony/security-http": "^7.1",
  6405. "symfony/service-contracts": "^2.5|^3"
  6406. },
  6407. "conflict": {
  6408. "symfony/browser-kit": "<6.4",
  6409. "symfony/console": "<6.4",
  6410. "symfony/framework-bundle": "<6.4",
  6411. "symfony/http-client": "<6.4",
  6412. "symfony/ldap": "<6.4",
  6413. "symfony/serializer": "<6.4",
  6414. "symfony/twig-bundle": "<6.4",
  6415. "symfony/validator": "<6.4"
  6416. },
  6417. "require-dev": {
  6418. "symfony/asset": "^6.4|^7.0",
  6419. "symfony/browser-kit": "^6.4|^7.0",
  6420. "symfony/console": "^6.4|^7.0",
  6421. "symfony/css-selector": "^6.4|^7.0",
  6422. "symfony/dom-crawler": "^6.4|^7.0",
  6423. "symfony/expression-language": "^6.4|^7.0",
  6424. "symfony/form": "^6.4|^7.0",
  6425. "symfony/framework-bundle": "^6.4|^7.0",
  6426. "symfony/http-client": "^6.4|^7.0",
  6427. "symfony/ldap": "^6.4|^7.0",
  6428. "symfony/process": "^6.4|^7.0",
  6429. "symfony/rate-limiter": "^6.4|^7.0",
  6430. "symfony/serializer": "^6.4|^7.0",
  6431. "symfony/translation": "^6.4|^7.0",
  6432. "symfony/twig-bridge": "^6.4|^7.0",
  6433. "symfony/twig-bundle": "^6.4|^7.0",
  6434. "symfony/validator": "^6.4|^7.0",
  6435. "symfony/yaml": "^6.4|^7.0",
  6436. "twig/twig": "^3.0.4",
  6437. "web-token/jwt-library": "^3.3.2|^4.0"
  6438. },
  6439. "type": "symfony-bundle",
  6440. "autoload": {
  6441. "psr-4": {
  6442. "Symfony\\Bundle\\SecurityBundle\\": ""
  6443. },
  6444. "exclude-from-classmap": [
  6445. "/Tests/"
  6446. ]
  6447. },
  6448. "notification-url": "https://packagist.org/downloads/",
  6449. "license": [
  6450. "MIT"
  6451. ],
  6452. "authors": [
  6453. {
  6454. "name": "Fabien Potencier",
  6455. "email": "fabien@symfony.com"
  6456. },
  6457. {
  6458. "name": "Symfony Community",
  6459. "homepage": "https://symfony.com/contributors"
  6460. }
  6461. ],
  6462. "description": "Provides a tight integration of the Security component into the Symfony full-stack framework",
  6463. "homepage": "https://symfony.com",
  6464. "support": {
  6465. "source": "https://github.com/symfony/security-bundle/tree/v7.1.3"
  6466. },
  6467. "funding": [
  6468. {
  6469. "url": "https://symfony.com/sponsor",
  6470. "type": "custom"
  6471. },
  6472. {
  6473. "url": "https://github.com/fabpot",
  6474. "type": "github"
  6475. },
  6476. {
  6477. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6478. "type": "tidelift"
  6479. }
  6480. ],
  6481. "time": "2024-07-26T07:24:20+00:00"
  6482. },
  6483. {
  6484. "name": "symfony/security-core",
  6485. "version": "v7.1.3",
  6486. "source": {
  6487. "type": "git",
  6488. "url": "https://github.com/symfony/security-core.git",
  6489. "reference": "aa4f432586a129017ce0ba34e2b1bfe6babfe8c7"
  6490. },
  6491. "dist": {
  6492. "type": "zip",
  6493. "url": "https://api.github.com/repos/symfony/security-core/zipball/aa4f432586a129017ce0ba34e2b1bfe6babfe8c7",
  6494. "reference": "aa4f432586a129017ce0ba34e2b1bfe6babfe8c7",
  6495. "shasum": ""
  6496. },
  6497. "require": {
  6498. "php": ">=8.2",
  6499. "symfony/event-dispatcher-contracts": "^2.5|^3",
  6500. "symfony/password-hasher": "^6.4|^7.0",
  6501. "symfony/service-contracts": "^2.5|^3"
  6502. },
  6503. "conflict": {
  6504. "symfony/dependency-injection": "<6.4",
  6505. "symfony/event-dispatcher": "<6.4",
  6506. "symfony/http-foundation": "<6.4",
  6507. "symfony/ldap": "<6.4",
  6508. "symfony/translation": "<6.4.3|>=7.0,<7.0.3",
  6509. "symfony/validator": "<6.4"
  6510. },
  6511. "require-dev": {
  6512. "psr/cache": "^1.0|^2.0|^3.0",
  6513. "psr/container": "^1.1|^2.0",
  6514. "psr/log": "^1|^2|^3",
  6515. "symfony/cache": "^6.4|^7.0",
  6516. "symfony/dependency-injection": "^6.4|^7.0",
  6517. "symfony/event-dispatcher": "^6.4|^7.0",
  6518. "symfony/expression-language": "^6.4|^7.0",
  6519. "symfony/http-foundation": "^6.4|^7.0",
  6520. "symfony/ldap": "^6.4|^7.0",
  6521. "symfony/string": "^6.4|^7.0",
  6522. "symfony/translation": "^6.4.3|^7.0.3",
  6523. "symfony/validator": "^6.4|^7.0"
  6524. },
  6525. "type": "library",
  6526. "autoload": {
  6527. "psr-4": {
  6528. "Symfony\\Component\\Security\\Core\\": ""
  6529. },
  6530. "exclude-from-classmap": [
  6531. "/Tests/"
  6532. ]
  6533. },
  6534. "notification-url": "https://packagist.org/downloads/",
  6535. "license": [
  6536. "MIT"
  6537. ],
  6538. "authors": [
  6539. {
  6540. "name": "Fabien Potencier",
  6541. "email": "fabien@symfony.com"
  6542. },
  6543. {
  6544. "name": "Symfony Community",
  6545. "homepage": "https://symfony.com/contributors"
  6546. }
  6547. ],
  6548. "description": "Symfony Security Component - Core Library",
  6549. "homepage": "https://symfony.com",
  6550. "support": {
  6551. "source": "https://github.com/symfony/security-core/tree/v7.1.3"
  6552. },
  6553. "funding": [
  6554. {
  6555. "url": "https://symfony.com/sponsor",
  6556. "type": "custom"
  6557. },
  6558. {
  6559. "url": "https://github.com/fabpot",
  6560. "type": "github"
  6561. },
  6562. {
  6563. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6564. "type": "tidelift"
  6565. }
  6566. ],
  6567. "time": "2024-07-26T12:41:01+00:00"
  6568. },
  6569. {
  6570. "name": "symfony/security-csrf",
  6571. "version": "v7.1.1",
  6572. "source": {
  6573. "type": "git",
  6574. "url": "https://github.com/symfony/security-csrf.git",
  6575. "reference": "27cd1bce9d7f3457a152a6ca9790712d6954dd21"
  6576. },
  6577. "dist": {
  6578. "type": "zip",
  6579. "url": "https://api.github.com/repos/symfony/security-csrf/zipball/27cd1bce9d7f3457a152a6ca9790712d6954dd21",
  6580. "reference": "27cd1bce9d7f3457a152a6ca9790712d6954dd21",
  6581. "shasum": ""
  6582. },
  6583. "require": {
  6584. "php": ">=8.2",
  6585. "symfony/security-core": "^6.4|^7.0"
  6586. },
  6587. "conflict": {
  6588. "symfony/http-foundation": "<6.4"
  6589. },
  6590. "require-dev": {
  6591. "symfony/http-foundation": "^6.4|^7.0"
  6592. },
  6593. "type": "library",
  6594. "autoload": {
  6595. "psr-4": {
  6596. "Symfony\\Component\\Security\\Csrf\\": ""
  6597. },
  6598. "exclude-from-classmap": [
  6599. "/Tests/"
  6600. ]
  6601. },
  6602. "notification-url": "https://packagist.org/downloads/",
  6603. "license": [
  6604. "MIT"
  6605. ],
  6606. "authors": [
  6607. {
  6608. "name": "Fabien Potencier",
  6609. "email": "fabien@symfony.com"
  6610. },
  6611. {
  6612. "name": "Symfony Community",
  6613. "homepage": "https://symfony.com/contributors"
  6614. }
  6615. ],
  6616. "description": "Symfony Security Component - CSRF Library",
  6617. "homepage": "https://symfony.com",
  6618. "support": {
  6619. "source": "https://github.com/symfony/security-csrf/tree/v7.1.1"
  6620. },
  6621. "funding": [
  6622. {
  6623. "url": "https://symfony.com/sponsor",
  6624. "type": "custom"
  6625. },
  6626. {
  6627. "url": "https://github.com/fabpot",
  6628. "type": "github"
  6629. },
  6630. {
  6631. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6632. "type": "tidelift"
  6633. }
  6634. ],
  6635. "time": "2024-05-31T14:57:53+00:00"
  6636. },
  6637. {
  6638. "name": "symfony/security-http",
  6639. "version": "v7.1.3",
  6640. "source": {
  6641. "type": "git",
  6642. "url": "https://github.com/symfony/security-http.git",
  6643. "reference": "19f07b6530dbb82017c38ee7582b154f5c42b179"
  6644. },
  6645. "dist": {
  6646. "type": "zip",
  6647. "url": "https://api.github.com/repos/symfony/security-http/zipball/19f07b6530dbb82017c38ee7582b154f5c42b179",
  6648. "reference": "19f07b6530dbb82017c38ee7582b154f5c42b179",
  6649. "shasum": ""
  6650. },
  6651. "require": {
  6652. "php": ">=8.2",
  6653. "symfony/deprecation-contracts": "^2.5|^3",
  6654. "symfony/http-foundation": "^6.4|^7.0",
  6655. "symfony/http-kernel": "^6.4|^7.0",
  6656. "symfony/polyfill-mbstring": "~1.0",
  6657. "symfony/property-access": "^6.4|^7.0",
  6658. "symfony/security-core": "^6.4|^7.0",
  6659. "symfony/service-contracts": "^2.5|^3"
  6660. },
  6661. "conflict": {
  6662. "symfony/clock": "<6.4",
  6663. "symfony/event-dispatcher": "<6.4",
  6664. "symfony/http-client-contracts": "<3.0",
  6665. "symfony/security-bundle": "<6.4",
  6666. "symfony/security-csrf": "<6.4"
  6667. },
  6668. "require-dev": {
  6669. "psr/log": "^1|^2|^3",
  6670. "symfony/cache": "^6.4|^7.0",
  6671. "symfony/clock": "^6.4|^7.0",
  6672. "symfony/expression-language": "^6.4|^7.0",
  6673. "symfony/http-client": "^6.4|^7.0",
  6674. "symfony/http-client-contracts": "^3.0",
  6675. "symfony/rate-limiter": "^6.4|^7.0",
  6676. "symfony/routing": "^6.4|^7.0",
  6677. "symfony/security-csrf": "^6.4|^7.0",
  6678. "symfony/translation": "^6.4|^7.0",
  6679. "web-token/jwt-library": "^3.3.2|^4.0"
  6680. },
  6681. "type": "library",
  6682. "autoload": {
  6683. "psr-4": {
  6684. "Symfony\\Component\\Security\\Http\\": ""
  6685. },
  6686. "exclude-from-classmap": [
  6687. "/Tests/"
  6688. ]
  6689. },
  6690. "notification-url": "https://packagist.org/downloads/",
  6691. "license": [
  6692. "MIT"
  6693. ],
  6694. "authors": [
  6695. {
  6696. "name": "Fabien Potencier",
  6697. "email": "fabien@symfony.com"
  6698. },
  6699. {
  6700. "name": "Symfony Community",
  6701. "homepage": "https://symfony.com/contributors"
  6702. }
  6703. ],
  6704. "description": "Symfony Security Component - HTTP Integration",
  6705. "homepage": "https://symfony.com",
  6706. "support": {
  6707. "source": "https://github.com/symfony/security-http/tree/v7.1.3"
  6708. },
  6709. "funding": [
  6710. {
  6711. "url": "https://symfony.com/sponsor",
  6712. "type": "custom"
  6713. },
  6714. {
  6715. "url": "https://github.com/fabpot",
  6716. "type": "github"
  6717. },
  6718. {
  6719. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6720. "type": "tidelift"
  6721. }
  6722. ],
  6723. "time": "2024-07-26T07:24:20+00:00"
  6724. },
  6725. {
  6726. "name": "symfony/serializer",
  6727. "version": "v7.1.3",
  6728. "source": {
  6729. "type": "git",
  6730. "url": "https://github.com/symfony/serializer.git",
  6731. "reference": "0d5ddac365fbfffc30ca9bc944ad3eb9b3763c09"
  6732. },
  6733. "dist": {
  6734. "type": "zip",
  6735. "url": "https://api.github.com/repos/symfony/serializer/zipball/0d5ddac365fbfffc30ca9bc944ad3eb9b3763c09",
  6736. "reference": "0d5ddac365fbfffc30ca9bc944ad3eb9b3763c09",
  6737. "shasum": ""
  6738. },
  6739. "require": {
  6740. "php": ">=8.2",
  6741. "symfony/deprecation-contracts": "^2.5|^3",
  6742. "symfony/polyfill-ctype": "~1.8"
  6743. },
  6744. "conflict": {
  6745. "phpdocumentor/reflection-docblock": "<3.2.2",
  6746. "phpdocumentor/type-resolver": "<1.4.0",
  6747. "symfony/dependency-injection": "<6.4",
  6748. "symfony/property-access": "<6.4",
  6749. "symfony/property-info": "<6.4",
  6750. "symfony/uid": "<6.4",
  6751. "symfony/validator": "<6.4",
  6752. "symfony/yaml": "<6.4"
  6753. },
  6754. "require-dev": {
  6755. "phpdocumentor/reflection-docblock": "^3.2|^4.0|^5.0",
  6756. "seld/jsonlint": "^1.10",
  6757. "symfony/cache": "^6.4|^7.0",
  6758. "symfony/config": "^6.4|^7.0",
  6759. "symfony/console": "^6.4|^7.0",
  6760. "symfony/dependency-injection": "^6.4|^7.0",
  6761. "symfony/error-handler": "^6.4|^7.0",
  6762. "symfony/filesystem": "^6.4|^7.0",
  6763. "symfony/form": "^6.4|^7.0",
  6764. "symfony/http-foundation": "^6.4|^7.0",
  6765. "symfony/http-kernel": "^6.4|^7.0",
  6766. "symfony/messenger": "^6.4|^7.0",
  6767. "symfony/mime": "^6.4|^7.0",
  6768. "symfony/property-access": "^6.4|^7.0",
  6769. "symfony/property-info": "^6.4|^7.0",
  6770. "symfony/translation-contracts": "^2.5|^3",
  6771. "symfony/type-info": "^7.1",
  6772. "symfony/uid": "^6.4|^7.0",
  6773. "symfony/validator": "^6.4|^7.0",
  6774. "symfony/var-dumper": "^6.4|^7.0",
  6775. "symfony/var-exporter": "^6.4|^7.0",
  6776. "symfony/yaml": "^6.4|^7.0"
  6777. },
  6778. "type": "library",
  6779. "autoload": {
  6780. "psr-4": {
  6781. "Symfony\\Component\\Serializer\\": ""
  6782. },
  6783. "exclude-from-classmap": [
  6784. "/Tests/"
  6785. ]
  6786. },
  6787. "notification-url": "https://packagist.org/downloads/",
  6788. "license": [
  6789. "MIT"
  6790. ],
  6791. "authors": [
  6792. {
  6793. "name": "Fabien Potencier",
  6794. "email": "fabien@symfony.com"
  6795. },
  6796. {
  6797. "name": "Symfony Community",
  6798. "homepage": "https://symfony.com/contributors"
  6799. }
  6800. ],
  6801. "description": "Handles serializing and deserializing data structures, including object graphs, into array structures or other formats like XML and JSON.",
  6802. "homepage": "https://symfony.com",
  6803. "support": {
  6804. "source": "https://github.com/symfony/serializer/tree/v7.1.3"
  6805. },
  6806. "funding": [
  6807. {
  6808. "url": "https://symfony.com/sponsor",
  6809. "type": "custom"
  6810. },
  6811. {
  6812. "url": "https://github.com/fabpot",
  6813. "type": "github"
  6814. },
  6815. {
  6816. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6817. "type": "tidelift"
  6818. }
  6819. ],
  6820. "time": "2024-07-17T06:10:24+00:00"
  6821. },
  6822. {
  6823. "name": "symfony/service-contracts",
  6824. "version": "v3.5.0",
  6825. "source": {
  6826. "type": "git",
  6827. "url": "https://github.com/symfony/service-contracts.git",
  6828. "reference": "bd1d9e59a81d8fa4acdcea3f617c581f7475a80f"
  6829. },
  6830. "dist": {
  6831. "type": "zip",
  6832. "url": "https://api.github.com/repos/symfony/service-contracts/zipball/bd1d9e59a81d8fa4acdcea3f617c581f7475a80f",
  6833. "reference": "bd1d9e59a81d8fa4acdcea3f617c581f7475a80f",
  6834. "shasum": ""
  6835. },
  6836. "require": {
  6837. "php": ">=8.1",
  6838. "psr/container": "^1.1|^2.0",
  6839. "symfony/deprecation-contracts": "^2.5|^3"
  6840. },
  6841. "conflict": {
  6842. "ext-psr": "<1.1|>=2"
  6843. },
  6844. "type": "library",
  6845. "extra": {
  6846. "branch-alias": {
  6847. "dev-main": "3.5-dev"
  6848. },
  6849. "thanks": {
  6850. "name": "symfony/contracts",
  6851. "url": "https://github.com/symfony/contracts"
  6852. }
  6853. },
  6854. "autoload": {
  6855. "psr-4": {
  6856. "Symfony\\Contracts\\Service\\": ""
  6857. },
  6858. "exclude-from-classmap": [
  6859. "/Test/"
  6860. ]
  6861. },
  6862. "notification-url": "https://packagist.org/downloads/",
  6863. "license": [
  6864. "MIT"
  6865. ],
  6866. "authors": [
  6867. {
  6868. "name": "Nicolas Grekas",
  6869. "email": "p@tchwork.com"
  6870. },
  6871. {
  6872. "name": "Symfony Community",
  6873. "homepage": "https://symfony.com/contributors"
  6874. }
  6875. ],
  6876. "description": "Generic abstractions related to writing services",
  6877. "homepage": "https://symfony.com",
  6878. "keywords": [
  6879. "abstractions",
  6880. "contracts",
  6881. "decoupling",
  6882. "interfaces",
  6883. "interoperability",
  6884. "standards"
  6885. ],
  6886. "support": {
  6887. "source": "https://github.com/symfony/service-contracts/tree/v3.5.0"
  6888. },
  6889. "funding": [
  6890. {
  6891. "url": "https://symfony.com/sponsor",
  6892. "type": "custom"
  6893. },
  6894. {
  6895. "url": "https://github.com/fabpot",
  6896. "type": "github"
  6897. },
  6898. {
  6899. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6900. "type": "tidelift"
  6901. }
  6902. ],
  6903. "time": "2024-04-18T09:32:20+00:00"
  6904. },
  6905. {
  6906. "name": "symfony/stimulus-bundle",
  6907. "version": "v2.18.1",
  6908. "source": {
  6909. "type": "git",
  6910. "url": "https://github.com/symfony/stimulus-bundle.git",
  6911. "reference": "017b60e036c366c8ce0e77864d5aabab436ad73d"
  6912. },
  6913. "dist": {
  6914. "type": "zip",
  6915. "url": "https://api.github.com/repos/symfony/stimulus-bundle/zipball/017b60e036c366c8ce0e77864d5aabab436ad73d",
  6916. "reference": "017b60e036c366c8ce0e77864d5aabab436ad73d",
  6917. "shasum": ""
  6918. },
  6919. "require": {
  6920. "php": ">=8.1",
  6921. "symfony/config": "^5.4|^6.0|^7.0",
  6922. "symfony/dependency-injection": "^5.4|^6.0|^7.0",
  6923. "symfony/deprecation-contracts": "^2.0|^3.0",
  6924. "symfony/finder": "^5.4|^6.0|^7.0",
  6925. "symfony/http-kernel": "^5.4|^6.0|^7.0",
  6926. "twig/twig": "^2.15.3|^3.8"
  6927. },
  6928. "require-dev": {
  6929. "symfony/asset-mapper": "^6.3|^7.0",
  6930. "symfony/framework-bundle": "^5.4|^6.0|^7.0",
  6931. "symfony/phpunit-bridge": "^5.4|^6.0|^7.0",
  6932. "symfony/twig-bundle": "^5.4|^6.0|^7.0",
  6933. "zenstruck/browser": "^1.4"
  6934. },
  6935. "type": "symfony-bundle",
  6936. "autoload": {
  6937. "psr-4": {
  6938. "Symfony\\UX\\StimulusBundle\\": "src"
  6939. }
  6940. },
  6941. "notification-url": "https://packagist.org/downloads/",
  6942. "license": [
  6943. "MIT"
  6944. ],
  6945. "authors": [
  6946. {
  6947. "name": "Symfony Community",
  6948. "homepage": "https://symfony.com/contributors"
  6949. }
  6950. ],
  6951. "description": "Integration with your Symfony app & Stimulus!",
  6952. "keywords": [
  6953. "symfony-ux"
  6954. ],
  6955. "support": {
  6956. "source": "https://github.com/symfony/stimulus-bundle/tree/v2.18.1"
  6957. },
  6958. "funding": [
  6959. {
  6960. "url": "https://symfony.com/sponsor",
  6961. "type": "custom"
  6962. },
  6963. {
  6964. "url": "https://github.com/fabpot",
  6965. "type": "github"
  6966. },
  6967. {
  6968. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6969. "type": "tidelift"
  6970. }
  6971. ],
  6972. "time": "2024-06-11T13:21:54+00:00"
  6973. },
  6974. {
  6975. "name": "symfony/stopwatch",
  6976. "version": "v7.1.1",
  6977. "source": {
  6978. "type": "git",
  6979. "url": "https://github.com/symfony/stopwatch.git",
  6980. "reference": "5b75bb1ac2ba1b9d05c47fc4b3046a625377d23d"
  6981. },
  6982. "dist": {
  6983. "type": "zip",
  6984. "url": "https://api.github.com/repos/symfony/stopwatch/zipball/5b75bb1ac2ba1b9d05c47fc4b3046a625377d23d",
  6985. "reference": "5b75bb1ac2ba1b9d05c47fc4b3046a625377d23d",
  6986. "shasum": ""
  6987. },
  6988. "require": {
  6989. "php": ">=8.2",
  6990. "symfony/service-contracts": "^2.5|^3"
  6991. },
  6992. "type": "library",
  6993. "autoload": {
  6994. "psr-4": {
  6995. "Symfony\\Component\\Stopwatch\\": ""
  6996. },
  6997. "exclude-from-classmap": [
  6998. "/Tests/"
  6999. ]
  7000. },
  7001. "notification-url": "https://packagist.org/downloads/",
  7002. "license": [
  7003. "MIT"
  7004. ],
  7005. "authors": [
  7006. {
  7007. "name": "Fabien Potencier",
  7008. "email": "fabien@symfony.com"
  7009. },
  7010. {
  7011. "name": "Symfony Community",
  7012. "homepage": "https://symfony.com/contributors"
  7013. }
  7014. ],
  7015. "description": "Provides a way to profile code",
  7016. "homepage": "https://symfony.com",
  7017. "support": {
  7018. "source": "https://github.com/symfony/stopwatch/tree/v7.1.1"
  7019. },
  7020. "funding": [
  7021. {
  7022. "url": "https://symfony.com/sponsor",
  7023. "type": "custom"
  7024. },
  7025. {
  7026. "url": "https://github.com/fabpot",
  7027. "type": "github"
  7028. },
  7029. {
  7030. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7031. "type": "tidelift"
  7032. }
  7033. ],
  7034. "time": "2024-05-31T14:57:53+00:00"
  7035. },
  7036. {
  7037. "name": "symfony/string",
  7038. "version": "v7.1.3",
  7039. "source": {
  7040. "type": "git",
  7041. "url": "https://github.com/symfony/string.git",
  7042. "reference": "ea272a882be7f20cad58d5d78c215001617b7f07"
  7043. },
  7044. "dist": {
  7045. "type": "zip",
  7046. "url": "https://api.github.com/repos/symfony/string/zipball/ea272a882be7f20cad58d5d78c215001617b7f07",
  7047. "reference": "ea272a882be7f20cad58d5d78c215001617b7f07",
  7048. "shasum": ""
  7049. },
  7050. "require": {
  7051. "php": ">=8.2",
  7052. "symfony/polyfill-ctype": "~1.8",
  7053. "symfony/polyfill-intl-grapheme": "~1.0",
  7054. "symfony/polyfill-intl-normalizer": "~1.0",
  7055. "symfony/polyfill-mbstring": "~1.0"
  7056. },
  7057. "conflict": {
  7058. "symfony/translation-contracts": "<2.5"
  7059. },
  7060. "require-dev": {
  7061. "symfony/emoji": "^7.1",
  7062. "symfony/error-handler": "^6.4|^7.0",
  7063. "symfony/http-client": "^6.4|^7.0",
  7064. "symfony/intl": "^6.4|^7.0",
  7065. "symfony/translation-contracts": "^2.5|^3.0",
  7066. "symfony/var-exporter": "^6.4|^7.0"
  7067. },
  7068. "type": "library",
  7069. "autoload": {
  7070. "files": [
  7071. "Resources/functions.php"
  7072. ],
  7073. "psr-4": {
  7074. "Symfony\\Component\\String\\": ""
  7075. },
  7076. "exclude-from-classmap": [
  7077. "/Tests/"
  7078. ]
  7079. },
  7080. "notification-url": "https://packagist.org/downloads/",
  7081. "license": [
  7082. "MIT"
  7083. ],
  7084. "authors": [
  7085. {
  7086. "name": "Nicolas Grekas",
  7087. "email": "p@tchwork.com"
  7088. },
  7089. {
  7090. "name": "Symfony Community",
  7091. "homepage": "https://symfony.com/contributors"
  7092. }
  7093. ],
  7094. "description": "Provides an object-oriented API to strings and deals with bytes, UTF-8 code points and grapheme clusters in a unified way",
  7095. "homepage": "https://symfony.com",
  7096. "keywords": [
  7097. "grapheme",
  7098. "i18n",
  7099. "string",
  7100. "unicode",
  7101. "utf-8",
  7102. "utf8"
  7103. ],
  7104. "support": {
  7105. "source": "https://github.com/symfony/string/tree/v7.1.3"
  7106. },
  7107. "funding": [
  7108. {
  7109. "url": "https://symfony.com/sponsor",
  7110. "type": "custom"
  7111. },
  7112. {
  7113. "url": "https://github.com/fabpot",
  7114. "type": "github"
  7115. },
  7116. {
  7117. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7118. "type": "tidelift"
  7119. }
  7120. ],
  7121. "time": "2024-07-22T10:25:37+00:00"
  7122. },
  7123. {
  7124. "name": "symfony/translation",
  7125. "version": "v7.1.3",
  7126. "source": {
  7127. "type": "git",
  7128. "url": "https://github.com/symfony/translation.git",
  7129. "reference": "8d5e50c813ba2859a6dfc99a0765c550507934a1"
  7130. },
  7131. "dist": {
  7132. "type": "zip",
  7133. "url": "https://api.github.com/repos/symfony/translation/zipball/8d5e50c813ba2859a6dfc99a0765c550507934a1",
  7134. "reference": "8d5e50c813ba2859a6dfc99a0765c550507934a1",
  7135. "shasum": ""
  7136. },
  7137. "require": {
  7138. "php": ">=8.2",
  7139. "symfony/polyfill-mbstring": "~1.0",
  7140. "symfony/translation-contracts": "^2.5|^3.0"
  7141. },
  7142. "conflict": {
  7143. "symfony/config": "<6.4",
  7144. "symfony/console": "<6.4",
  7145. "symfony/dependency-injection": "<6.4",
  7146. "symfony/http-client-contracts": "<2.5",
  7147. "symfony/http-kernel": "<6.4",
  7148. "symfony/service-contracts": "<2.5",
  7149. "symfony/twig-bundle": "<6.4",
  7150. "symfony/yaml": "<6.4"
  7151. },
  7152. "provide": {
  7153. "symfony/translation-implementation": "2.3|3.0"
  7154. },
  7155. "require-dev": {
  7156. "nikic/php-parser": "^4.18|^5.0",
  7157. "psr/log": "^1|^2|^3",
  7158. "symfony/config": "^6.4|^7.0",
  7159. "symfony/console": "^6.4|^7.0",
  7160. "symfony/dependency-injection": "^6.4|^7.0",
  7161. "symfony/finder": "^6.4|^7.0",
  7162. "symfony/http-client-contracts": "^2.5|^3.0",
  7163. "symfony/http-kernel": "^6.4|^7.0",
  7164. "symfony/intl": "^6.4|^7.0",
  7165. "symfony/polyfill-intl-icu": "^1.21",
  7166. "symfony/routing": "^6.4|^7.0",
  7167. "symfony/service-contracts": "^2.5|^3",
  7168. "symfony/yaml": "^6.4|^7.0"
  7169. },
  7170. "type": "library",
  7171. "autoload": {
  7172. "files": [
  7173. "Resources/functions.php"
  7174. ],
  7175. "psr-4": {
  7176. "Symfony\\Component\\Translation\\": ""
  7177. },
  7178. "exclude-from-classmap": [
  7179. "/Tests/"
  7180. ]
  7181. },
  7182. "notification-url": "https://packagist.org/downloads/",
  7183. "license": [
  7184. "MIT"
  7185. ],
  7186. "authors": [
  7187. {
  7188. "name": "Fabien Potencier",
  7189. "email": "fabien@symfony.com"
  7190. },
  7191. {
  7192. "name": "Symfony Community",
  7193. "homepage": "https://symfony.com/contributors"
  7194. }
  7195. ],
  7196. "description": "Provides tools to internationalize your application",
  7197. "homepage": "https://symfony.com",
  7198. "support": {
  7199. "source": "https://github.com/symfony/translation/tree/v7.1.3"
  7200. },
  7201. "funding": [
  7202. {
  7203. "url": "https://symfony.com/sponsor",
  7204. "type": "custom"
  7205. },
  7206. {
  7207. "url": "https://github.com/fabpot",
  7208. "type": "github"
  7209. },
  7210. {
  7211. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7212. "type": "tidelift"
  7213. }
  7214. ],
  7215. "time": "2024-07-26T12:41:01+00:00"
  7216. },
  7217. {
  7218. "name": "symfony/translation-contracts",
  7219. "version": "v3.5.0",
  7220. "source": {
  7221. "type": "git",
  7222. "url": "https://github.com/symfony/translation-contracts.git",
  7223. "reference": "b9d2189887bb6b2e0367a9fc7136c5239ab9b05a"
  7224. },
  7225. "dist": {
  7226. "type": "zip",
  7227. "url": "https://api.github.com/repos/symfony/translation-contracts/zipball/b9d2189887bb6b2e0367a9fc7136c5239ab9b05a",
  7228. "reference": "b9d2189887bb6b2e0367a9fc7136c5239ab9b05a",
  7229. "shasum": ""
  7230. },
  7231. "require": {
  7232. "php": ">=8.1"
  7233. },
  7234. "type": "library",
  7235. "extra": {
  7236. "branch-alias": {
  7237. "dev-main": "3.5-dev"
  7238. },
  7239. "thanks": {
  7240. "name": "symfony/contracts",
  7241. "url": "https://github.com/symfony/contracts"
  7242. }
  7243. },
  7244. "autoload": {
  7245. "psr-4": {
  7246. "Symfony\\Contracts\\Translation\\": ""
  7247. },
  7248. "exclude-from-classmap": [
  7249. "/Test/"
  7250. ]
  7251. },
  7252. "notification-url": "https://packagist.org/downloads/",
  7253. "license": [
  7254. "MIT"
  7255. ],
  7256. "authors": [
  7257. {
  7258. "name": "Nicolas Grekas",
  7259. "email": "p@tchwork.com"
  7260. },
  7261. {
  7262. "name": "Symfony Community",
  7263. "homepage": "https://symfony.com/contributors"
  7264. }
  7265. ],
  7266. "description": "Generic abstractions related to translation",
  7267. "homepage": "https://symfony.com",
  7268. "keywords": [
  7269. "abstractions",
  7270. "contracts",
  7271. "decoupling",
  7272. "interfaces",
  7273. "interoperability",
  7274. "standards"
  7275. ],
  7276. "support": {
  7277. "source": "https://github.com/symfony/translation-contracts/tree/v3.5.0"
  7278. },
  7279. "funding": [
  7280. {
  7281. "url": "https://symfony.com/sponsor",
  7282. "type": "custom"
  7283. },
  7284. {
  7285. "url": "https://github.com/fabpot",
  7286. "type": "github"
  7287. },
  7288. {
  7289. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7290. "type": "tidelift"
  7291. }
  7292. ],
  7293. "time": "2024-04-18T09:32:20+00:00"
  7294. },
  7295. {
  7296. "name": "symfony/twig-bridge",
  7297. "version": "v7.1.1",
  7298. "source": {
  7299. "type": "git",
  7300. "url": "https://github.com/symfony/twig-bridge.git",
  7301. "reference": "96e6e12a63db80bcedefc012042d2cb2d1a015f8"
  7302. },
  7303. "dist": {
  7304. "type": "zip",
  7305. "url": "https://api.github.com/repos/symfony/twig-bridge/zipball/96e6e12a63db80bcedefc012042d2cb2d1a015f8",
  7306. "reference": "96e6e12a63db80bcedefc012042d2cb2d1a015f8",
  7307. "shasum": ""
  7308. },
  7309. "require": {
  7310. "php": ">=8.2",
  7311. "symfony/translation-contracts": "^2.5|^3",
  7312. "twig/twig": "^3.9"
  7313. },
  7314. "conflict": {
  7315. "phpdocumentor/reflection-docblock": "<3.2.2",
  7316. "phpdocumentor/type-resolver": "<1.4.0",
  7317. "symfony/console": "<6.4",
  7318. "symfony/form": "<6.4",
  7319. "symfony/http-foundation": "<6.4",
  7320. "symfony/http-kernel": "<6.4",
  7321. "symfony/mime": "<6.4",
  7322. "symfony/serializer": "<6.4",
  7323. "symfony/translation": "<6.4",
  7324. "symfony/workflow": "<6.4"
  7325. },
  7326. "require-dev": {
  7327. "egulias/email-validator": "^2.1.10|^3|^4",
  7328. "league/html-to-markdown": "^5.0",
  7329. "phpdocumentor/reflection-docblock": "^3.0|^4.0|^5.0",
  7330. "symfony/asset": "^6.4|^7.0",
  7331. "symfony/asset-mapper": "^6.4|^7.0",
  7332. "symfony/console": "^6.4|^7.0",
  7333. "symfony/dependency-injection": "^6.4|^7.0",
  7334. "symfony/emoji": "^7.1",
  7335. "symfony/expression-language": "^6.4|^7.0",
  7336. "symfony/finder": "^6.4|^7.0",
  7337. "symfony/form": "^6.4|^7.0",
  7338. "symfony/html-sanitizer": "^6.4|^7.0",
  7339. "symfony/http-foundation": "^6.4|^7.0",
  7340. "symfony/http-kernel": "^6.4|^7.0",
  7341. "symfony/intl": "^6.4|^7.0",
  7342. "symfony/mime": "^6.4|^7.0",
  7343. "symfony/polyfill-intl-icu": "~1.0",
  7344. "symfony/property-info": "^6.4|^7.0",
  7345. "symfony/routing": "^6.4|^7.0",
  7346. "symfony/security-acl": "^2.8|^3.0",
  7347. "symfony/security-core": "^6.4|^7.0",
  7348. "symfony/security-csrf": "^6.4|^7.0",
  7349. "symfony/security-http": "^6.4|^7.0",
  7350. "symfony/serializer": "^6.4.3|^7.0.3",
  7351. "symfony/stopwatch": "^6.4|^7.0",
  7352. "symfony/translation": "^6.4|^7.0",
  7353. "symfony/web-link": "^6.4|^7.0",
  7354. "symfony/workflow": "^6.4|^7.0",
  7355. "symfony/yaml": "^6.4|^7.0",
  7356. "twig/cssinliner-extra": "^2.12|^3",
  7357. "twig/inky-extra": "^2.12|^3",
  7358. "twig/markdown-extra": "^2.12|^3"
  7359. },
  7360. "type": "symfony-bridge",
  7361. "autoload": {
  7362. "psr-4": {
  7363. "Symfony\\Bridge\\Twig\\": ""
  7364. },
  7365. "exclude-from-classmap": [
  7366. "/Tests/"
  7367. ]
  7368. },
  7369. "notification-url": "https://packagist.org/downloads/",
  7370. "license": [
  7371. "MIT"
  7372. ],
  7373. "authors": [
  7374. {
  7375. "name": "Fabien Potencier",
  7376. "email": "fabien@symfony.com"
  7377. },
  7378. {
  7379. "name": "Symfony Community",
  7380. "homepage": "https://symfony.com/contributors"
  7381. }
  7382. ],
  7383. "description": "Provides integration for Twig with various Symfony components",
  7384. "homepage": "https://symfony.com",
  7385. "support": {
  7386. "source": "https://github.com/symfony/twig-bridge/tree/v7.1.1"
  7387. },
  7388. "funding": [
  7389. {
  7390. "url": "https://symfony.com/sponsor",
  7391. "type": "custom"
  7392. },
  7393. {
  7394. "url": "https://github.com/fabpot",
  7395. "type": "github"
  7396. },
  7397. {
  7398. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7399. "type": "tidelift"
  7400. }
  7401. ],
  7402. "time": "2024-05-31T14:57:53+00:00"
  7403. },
  7404. {
  7405. "name": "symfony/twig-bundle",
  7406. "version": "v7.1.1",
  7407. "source": {
  7408. "type": "git",
  7409. "url": "https://github.com/symfony/twig-bundle.git",
  7410. "reference": "d48c2f08c2f315e749f0e18fc4945b7be8afe1e5"
  7411. },
  7412. "dist": {
  7413. "type": "zip",
  7414. "url": "https://api.github.com/repos/symfony/twig-bundle/zipball/d48c2f08c2f315e749f0e18fc4945b7be8afe1e5",
  7415. "reference": "d48c2f08c2f315e749f0e18fc4945b7be8afe1e5",
  7416. "shasum": ""
  7417. },
  7418. "require": {
  7419. "composer-runtime-api": ">=2.1",
  7420. "php": ">=8.2",
  7421. "symfony/config": "^6.4|^7.0",
  7422. "symfony/dependency-injection": "^6.4|^7.0",
  7423. "symfony/http-foundation": "^6.4|^7.0",
  7424. "symfony/http-kernel": "^6.4|^7.0",
  7425. "symfony/twig-bridge": "^6.4|^7.0",
  7426. "twig/twig": "^3.0.4"
  7427. },
  7428. "conflict": {
  7429. "symfony/framework-bundle": "<6.4",
  7430. "symfony/translation": "<6.4"
  7431. },
  7432. "require-dev": {
  7433. "symfony/asset": "^6.4|^7.0",
  7434. "symfony/expression-language": "^6.4|^7.0",
  7435. "symfony/finder": "^6.4|^7.0",
  7436. "symfony/form": "^6.4|^7.0",
  7437. "symfony/framework-bundle": "^6.4|^7.0",
  7438. "symfony/routing": "^6.4|^7.0",
  7439. "symfony/stopwatch": "^6.4|^7.0",
  7440. "symfony/translation": "^6.4|^7.0",
  7441. "symfony/web-link": "^6.4|^7.0",
  7442. "symfony/yaml": "^6.4|^7.0"
  7443. },
  7444. "type": "symfony-bundle",
  7445. "autoload": {
  7446. "psr-4": {
  7447. "Symfony\\Bundle\\TwigBundle\\": ""
  7448. },
  7449. "exclude-from-classmap": [
  7450. "/Tests/"
  7451. ]
  7452. },
  7453. "notification-url": "https://packagist.org/downloads/",
  7454. "license": [
  7455. "MIT"
  7456. ],
  7457. "authors": [
  7458. {
  7459. "name": "Fabien Potencier",
  7460. "email": "fabien@symfony.com"
  7461. },
  7462. {
  7463. "name": "Symfony Community",
  7464. "homepage": "https://symfony.com/contributors"
  7465. }
  7466. ],
  7467. "description": "Provides a tight integration of Twig into the Symfony full-stack framework",
  7468. "homepage": "https://symfony.com",
  7469. "support": {
  7470. "source": "https://github.com/symfony/twig-bundle/tree/v7.1.1"
  7471. },
  7472. "funding": [
  7473. {
  7474. "url": "https://symfony.com/sponsor",
  7475. "type": "custom"
  7476. },
  7477. {
  7478. "url": "https://github.com/fabpot",
  7479. "type": "github"
  7480. },
  7481. {
  7482. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7483. "type": "tidelift"
  7484. }
  7485. ],
  7486. "time": "2024-05-31T14:57:53+00:00"
  7487. },
  7488. {
  7489. "name": "symfony/type-info",
  7490. "version": "v7.1.1",
  7491. "source": {
  7492. "type": "git",
  7493. "url": "https://github.com/symfony/type-info.git",
  7494. "reference": "60b28eb733f1453287f1263ed305b96091e0d1dc"
  7495. },
  7496. "dist": {
  7497. "type": "zip",
  7498. "url": "https://api.github.com/repos/symfony/type-info/zipball/60b28eb733f1453287f1263ed305b96091e0d1dc",
  7499. "reference": "60b28eb733f1453287f1263ed305b96091e0d1dc",
  7500. "shasum": ""
  7501. },
  7502. "require": {
  7503. "php": ">=8.2",
  7504. "psr/container": "^1.1|^2.0"
  7505. },
  7506. "conflict": {
  7507. "phpstan/phpdoc-parser": "<1.0",
  7508. "symfony/dependency-injection": "<6.4",
  7509. "symfony/property-info": "<6.4"
  7510. },
  7511. "require-dev": {
  7512. "phpstan/phpdoc-parser": "^1.0",
  7513. "symfony/dependency-injection": "^6.4|^7.0",
  7514. "symfony/property-info": "^6.4|^7.0"
  7515. },
  7516. "type": "library",
  7517. "autoload": {
  7518. "psr-4": {
  7519. "Symfony\\Component\\TypeInfo\\": ""
  7520. },
  7521. "exclude-from-classmap": [
  7522. "/Tests/"
  7523. ]
  7524. },
  7525. "notification-url": "https://packagist.org/downloads/",
  7526. "license": [
  7527. "MIT"
  7528. ],
  7529. "authors": [
  7530. {
  7531. "name": "Mathias Arlaud",
  7532. "email": "mathias.arlaud@gmail.com"
  7533. },
  7534. {
  7535. "name": "Baptiste LEDUC",
  7536. "email": "baptiste.leduc@gmail.com"
  7537. },
  7538. {
  7539. "name": "Symfony Community",
  7540. "homepage": "https://symfony.com/contributors"
  7541. }
  7542. ],
  7543. "description": "Extracts PHP types information.",
  7544. "homepage": "https://symfony.com",
  7545. "keywords": [
  7546. "PHPStan",
  7547. "phpdoc",
  7548. "symfony",
  7549. "type"
  7550. ],
  7551. "support": {
  7552. "source": "https://github.com/symfony/type-info/tree/v7.1.1"
  7553. },
  7554. "funding": [
  7555. {
  7556. "url": "https://symfony.com/sponsor",
  7557. "type": "custom"
  7558. },
  7559. {
  7560. "url": "https://github.com/fabpot",
  7561. "type": "github"
  7562. },
  7563. {
  7564. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7565. "type": "tidelift"
  7566. }
  7567. ],
  7568. "time": "2024-05-31T14:59:31+00:00"
  7569. },
  7570. {
  7571. "name": "symfony/ux-chartjs",
  7572. "version": "v2.20.0",
  7573. "source": {
  7574. "type": "git",
  7575. "url": "https://github.com/symfony/ux-chartjs.git",
  7576. "reference": "3a669e28d6665515da4d3117d245650d325212da"
  7577. },
  7578. "dist": {
  7579. "type": "zip",
  7580. "url": "https://api.github.com/repos/symfony/ux-chartjs/zipball/3a669e28d6665515da4d3117d245650d325212da",
  7581. "reference": "3a669e28d6665515da4d3117d245650d325212da",
  7582. "shasum": ""
  7583. },
  7584. "require": {
  7585. "php": ">=8.1",
  7586. "symfony/config": "^5.4|^6.0|^7.0",
  7587. "symfony/dependency-injection": "^5.4|^6.0|^7.0",
  7588. "symfony/http-kernel": "^5.4|^6.0|^7.0",
  7589. "symfony/stimulus-bundle": "^2.9.1"
  7590. },
  7591. "conflict": {
  7592. "symfony/flex": "<1.13"
  7593. },
  7594. "require-dev": {
  7595. "symfony/framework-bundle": "^5.4|^6.0|^7.0",
  7596. "symfony/phpunit-bridge": "^5.4|^6.0|^7.0",
  7597. "symfony/twig-bundle": "^5.4|^6.0|^7.0",
  7598. "symfony/var-dumper": "^5.4|^6.0|^7.0"
  7599. },
  7600. "type": "symfony-bundle",
  7601. "extra": {
  7602. "thanks": {
  7603. "name": "symfony/ux",
  7604. "url": "https://github.com/symfony/ux"
  7605. }
  7606. },
  7607. "autoload": {
  7608. "psr-4": {
  7609. "Symfony\\UX\\Chartjs\\": "src/"
  7610. }
  7611. },
  7612. "notification-url": "https://packagist.org/downloads/",
  7613. "license": [
  7614. "MIT"
  7615. ],
  7616. "authors": [
  7617. {
  7618. "name": "Titouan Galopin",
  7619. "email": "galopintitouan@gmail.com"
  7620. },
  7621. {
  7622. "name": "Symfony Community",
  7623. "homepage": "https://symfony.com/contributors"
  7624. }
  7625. ],
  7626. "description": "Chart.js integration for Symfony",
  7627. "homepage": "https://symfony.com",
  7628. "keywords": [
  7629. "symfony-ux"
  7630. ],
  7631. "support": {
  7632. "source": "https://github.com/symfony/ux-chartjs/tree/v2.20.0"
  7633. },
  7634. "funding": [
  7635. {
  7636. "url": "https://symfony.com/sponsor",
  7637. "type": "custom"
  7638. },
  7639. {
  7640. "url": "https://github.com/fabpot",
  7641. "type": "github"
  7642. },
  7643. {
  7644. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7645. "type": "tidelift"
  7646. }
  7647. ],
  7648. "time": "2024-09-24T09:27:42+00:00"
  7649. },
  7650. {
  7651. "name": "symfony/validator",
  7652. "version": "v7.1.3",
  7653. "source": {
  7654. "type": "git",
  7655. "url": "https://github.com/symfony/validator.git",
  7656. "reference": "ba711a6cfc008544dad059abb3c1d997f1472237"
  7657. },
  7658. "dist": {
  7659. "type": "zip",
  7660. "url": "https://api.github.com/repos/symfony/validator/zipball/ba711a6cfc008544dad059abb3c1d997f1472237",
  7661. "reference": "ba711a6cfc008544dad059abb3c1d997f1472237",
  7662. "shasum": ""
  7663. },
  7664. "require": {
  7665. "php": ">=8.2",
  7666. "symfony/deprecation-contracts": "^2.5|^3",
  7667. "symfony/polyfill-ctype": "~1.8",
  7668. "symfony/polyfill-mbstring": "~1.0",
  7669. "symfony/polyfill-php83": "^1.27",
  7670. "symfony/translation-contracts": "^2.5|^3"
  7671. },
  7672. "conflict": {
  7673. "doctrine/lexer": "<1.1",
  7674. "symfony/dependency-injection": "<6.4",
  7675. "symfony/doctrine-bridge": "<7.0",
  7676. "symfony/expression-language": "<6.4",
  7677. "symfony/http-kernel": "<6.4",
  7678. "symfony/intl": "<6.4",
  7679. "symfony/property-info": "<6.4",
  7680. "symfony/translation": "<6.4.3|>=7.0,<7.0.3",
  7681. "symfony/yaml": "<6.4"
  7682. },
  7683. "require-dev": {
  7684. "egulias/email-validator": "^2.1.10|^3|^4",
  7685. "symfony/cache": "^6.4|^7.0",
  7686. "symfony/config": "^6.4|^7.0",
  7687. "symfony/console": "^6.4|^7.0",
  7688. "symfony/dependency-injection": "^6.4|^7.0",
  7689. "symfony/expression-language": "^6.4|^7.0",
  7690. "symfony/finder": "^6.4|^7.0",
  7691. "symfony/http-client": "^6.4|^7.0",
  7692. "symfony/http-foundation": "^6.4|^7.0",
  7693. "symfony/http-kernel": "^6.4|^7.0",
  7694. "symfony/intl": "^6.4|^7.0",
  7695. "symfony/mime": "^6.4|^7.0",
  7696. "symfony/property-access": "^6.4|^7.0",
  7697. "symfony/property-info": "^6.4|^7.0",
  7698. "symfony/translation": "^6.4.3|^7.0.3",
  7699. "symfony/type-info": "^7.1",
  7700. "symfony/yaml": "^6.4|^7.0"
  7701. },
  7702. "type": "library",
  7703. "autoload": {
  7704. "psr-4": {
  7705. "Symfony\\Component\\Validator\\": ""
  7706. },
  7707. "exclude-from-classmap": [
  7708. "/Tests/",
  7709. "/Resources/bin/"
  7710. ]
  7711. },
  7712. "notification-url": "https://packagist.org/downloads/",
  7713. "license": [
  7714. "MIT"
  7715. ],
  7716. "authors": [
  7717. {
  7718. "name": "Fabien Potencier",
  7719. "email": "fabien@symfony.com"
  7720. },
  7721. {
  7722. "name": "Symfony Community",
  7723. "homepage": "https://symfony.com/contributors"
  7724. }
  7725. ],
  7726. "description": "Provides tools to validate values",
  7727. "homepage": "https://symfony.com",
  7728. "support": {
  7729. "source": "https://github.com/symfony/validator/tree/v7.1.3"
  7730. },
  7731. "funding": [
  7732. {
  7733. "url": "https://symfony.com/sponsor",
  7734. "type": "custom"
  7735. },
  7736. {
  7737. "url": "https://github.com/fabpot",
  7738. "type": "github"
  7739. },
  7740. {
  7741. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7742. "type": "tidelift"
  7743. }
  7744. ],
  7745. "time": "2024-07-26T12:41:01+00:00"
  7746. },
  7747. {
  7748. "name": "symfony/var-dumper",
  7749. "version": "v7.1.3",
  7750. "source": {
  7751. "type": "git",
  7752. "url": "https://github.com/symfony/var-dumper.git",
  7753. "reference": "86af4617cca75a6e28598f49ae0690f3b9d4591f"
  7754. },
  7755. "dist": {
  7756. "type": "zip",
  7757. "url": "https://api.github.com/repos/symfony/var-dumper/zipball/86af4617cca75a6e28598f49ae0690f3b9d4591f",
  7758. "reference": "86af4617cca75a6e28598f49ae0690f3b9d4591f",
  7759. "shasum": ""
  7760. },
  7761. "require": {
  7762. "php": ">=8.2",
  7763. "symfony/polyfill-mbstring": "~1.0"
  7764. },
  7765. "conflict": {
  7766. "symfony/console": "<6.4"
  7767. },
  7768. "require-dev": {
  7769. "ext-iconv": "*",
  7770. "symfony/console": "^6.4|^7.0",
  7771. "symfony/http-kernel": "^6.4|^7.0",
  7772. "symfony/process": "^6.4|^7.0",
  7773. "symfony/uid": "^6.4|^7.0",
  7774. "twig/twig": "^3.0.4"
  7775. },
  7776. "bin": [
  7777. "Resources/bin/var-dump-server"
  7778. ],
  7779. "type": "library",
  7780. "autoload": {
  7781. "files": [
  7782. "Resources/functions/dump.php"
  7783. ],
  7784. "psr-4": {
  7785. "Symfony\\Component\\VarDumper\\": ""
  7786. },
  7787. "exclude-from-classmap": [
  7788. "/Tests/"
  7789. ]
  7790. },
  7791. "notification-url": "https://packagist.org/downloads/",
  7792. "license": [
  7793. "MIT"
  7794. ],
  7795. "authors": [
  7796. {
  7797. "name": "Nicolas Grekas",
  7798. "email": "p@tchwork.com"
  7799. },
  7800. {
  7801. "name": "Symfony Community",
  7802. "homepage": "https://symfony.com/contributors"
  7803. }
  7804. ],
  7805. "description": "Provides mechanisms for walking through any arbitrary PHP variable",
  7806. "homepage": "https://symfony.com",
  7807. "keywords": [
  7808. "debug",
  7809. "dump"
  7810. ],
  7811. "support": {
  7812. "source": "https://github.com/symfony/var-dumper/tree/v7.1.3"
  7813. },
  7814. "funding": [
  7815. {
  7816. "url": "https://symfony.com/sponsor",
  7817. "type": "custom"
  7818. },
  7819. {
  7820. "url": "https://github.com/fabpot",
  7821. "type": "github"
  7822. },
  7823. {
  7824. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7825. "type": "tidelift"
  7826. }
  7827. ],
  7828. "time": "2024-07-26T12:41:01+00:00"
  7829. },
  7830. {
  7831. "name": "symfony/var-exporter",
  7832. "version": "v7.1.2",
  7833. "source": {
  7834. "type": "git",
  7835. "url": "https://github.com/symfony/var-exporter.git",
  7836. "reference": "b80a669a2264609f07f1667f891dbfca25eba44c"
  7837. },
  7838. "dist": {
  7839. "type": "zip",
  7840. "url": "https://api.github.com/repos/symfony/var-exporter/zipball/b80a669a2264609f07f1667f891dbfca25eba44c",
  7841. "reference": "b80a669a2264609f07f1667f891dbfca25eba44c",
  7842. "shasum": ""
  7843. },
  7844. "require": {
  7845. "php": ">=8.2"
  7846. },
  7847. "require-dev": {
  7848. "symfony/property-access": "^6.4|^7.0",
  7849. "symfony/serializer": "^6.4|^7.0",
  7850. "symfony/var-dumper": "^6.4|^7.0"
  7851. },
  7852. "type": "library",
  7853. "autoload": {
  7854. "psr-4": {
  7855. "Symfony\\Component\\VarExporter\\": ""
  7856. },
  7857. "exclude-from-classmap": [
  7858. "/Tests/"
  7859. ]
  7860. },
  7861. "notification-url": "https://packagist.org/downloads/",
  7862. "license": [
  7863. "MIT"
  7864. ],
  7865. "authors": [
  7866. {
  7867. "name": "Nicolas Grekas",
  7868. "email": "p@tchwork.com"
  7869. },
  7870. {
  7871. "name": "Symfony Community",
  7872. "homepage": "https://symfony.com/contributors"
  7873. }
  7874. ],
  7875. "description": "Allows exporting any serializable PHP data structure to plain PHP code",
  7876. "homepage": "https://symfony.com",
  7877. "keywords": [
  7878. "clone",
  7879. "construct",
  7880. "export",
  7881. "hydrate",
  7882. "instantiate",
  7883. "lazy-loading",
  7884. "proxy",
  7885. "serialize"
  7886. ],
  7887. "support": {
  7888. "source": "https://github.com/symfony/var-exporter/tree/v7.1.2"
  7889. },
  7890. "funding": [
  7891. {
  7892. "url": "https://symfony.com/sponsor",
  7893. "type": "custom"
  7894. },
  7895. {
  7896. "url": "https://github.com/fabpot",
  7897. "type": "github"
  7898. },
  7899. {
  7900. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7901. "type": "tidelift"
  7902. }
  7903. ],
  7904. "time": "2024-06-28T08:00:31+00:00"
  7905. },
  7906. {
  7907. "name": "symfony/web-link",
  7908. "version": "v7.1.1",
  7909. "source": {
  7910. "type": "git",
  7911. "url": "https://github.com/symfony/web-link.git",
  7912. "reference": "63f90aa0054bfd9a091d2f5cf465958f1030638f"
  7913. },
  7914. "dist": {
  7915. "type": "zip",
  7916. "url": "https://api.github.com/repos/symfony/web-link/zipball/63f90aa0054bfd9a091d2f5cf465958f1030638f",
  7917. "reference": "63f90aa0054bfd9a091d2f5cf465958f1030638f",
  7918. "shasum": ""
  7919. },
  7920. "require": {
  7921. "php": ">=8.2",
  7922. "psr/link": "^1.1|^2.0"
  7923. },
  7924. "conflict": {
  7925. "symfony/http-kernel": "<6.4"
  7926. },
  7927. "provide": {
  7928. "psr/link-implementation": "1.0|2.0"
  7929. },
  7930. "require-dev": {
  7931. "symfony/http-kernel": "^6.4|^7.0"
  7932. },
  7933. "type": "library",
  7934. "autoload": {
  7935. "psr-4": {
  7936. "Symfony\\Component\\WebLink\\": ""
  7937. },
  7938. "exclude-from-classmap": [
  7939. "/Tests/"
  7940. ]
  7941. },
  7942. "notification-url": "https://packagist.org/downloads/",
  7943. "license": [
  7944. "MIT"
  7945. ],
  7946. "authors": [
  7947. {
  7948. "name": "Kévin Dunglas",
  7949. "email": "dunglas@gmail.com"
  7950. },
  7951. {
  7952. "name": "Symfony Community",
  7953. "homepage": "https://symfony.com/contributors"
  7954. }
  7955. ],
  7956. "description": "Manages links between resources",
  7957. "homepage": "https://symfony.com",
  7958. "keywords": [
  7959. "dns-prefetch",
  7960. "http",
  7961. "http2",
  7962. "link",
  7963. "performance",
  7964. "prefetch",
  7965. "preload",
  7966. "prerender",
  7967. "psr13",
  7968. "push"
  7969. ],
  7970. "support": {
  7971. "source": "https://github.com/symfony/web-link/tree/v7.1.1"
  7972. },
  7973. "funding": [
  7974. {
  7975. "url": "https://symfony.com/sponsor",
  7976. "type": "custom"
  7977. },
  7978. {
  7979. "url": "https://github.com/fabpot",
  7980. "type": "github"
  7981. },
  7982. {
  7983. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7984. "type": "tidelift"
  7985. }
  7986. ],
  7987. "time": "2024-05-31T14:57:53+00:00"
  7988. },
  7989. {
  7990. "name": "symfony/webpack-encore-bundle",
  7991. "version": "v2.1.1",
  7992. "source": {
  7993. "type": "git",
  7994. "url": "https://github.com/symfony/webpack-encore-bundle.git",
  7995. "reference": "75cb918df3f65e28cf0d4bc03042bc45ccb19dd0"
  7996. },
  7997. "dist": {
  7998. "type": "zip",
  7999. "url": "https://api.github.com/repos/symfony/webpack-encore-bundle/zipball/75cb918df3f65e28cf0d4bc03042bc45ccb19dd0",
  8000. "reference": "75cb918df3f65e28cf0d4bc03042bc45ccb19dd0",
  8001. "shasum": ""
  8002. },
  8003. "require": {
  8004. "php": ">=8.1.0",
  8005. "symfony/asset": "^5.4 || ^6.2 || ^7.0",
  8006. "symfony/config": "^5.4 || ^6.2 || ^7.0",
  8007. "symfony/dependency-injection": "^5.4 || ^6.2 || ^7.0",
  8008. "symfony/http-kernel": "^5.4 || ^6.2 || ^7.0",
  8009. "symfony/service-contracts": "^1.1.9 || ^2.1.3 || ^3.0"
  8010. },
  8011. "require-dev": {
  8012. "symfony/framework-bundle": "^5.4 || ^6.2 || ^7.0",
  8013. "symfony/phpunit-bridge": "^5.4 || ^6.2 || ^7.0",
  8014. "symfony/twig-bundle": "^5.4 || ^6.2 || ^7.0",
  8015. "symfony/web-link": "^5.4 || ^6.2 || ^7.0"
  8016. },
  8017. "type": "symfony-bundle",
  8018. "extra": {
  8019. "thanks": {
  8020. "name": "symfony/webpack-encore",
  8021. "url": "https://github.com/symfony/webpack-encore"
  8022. }
  8023. },
  8024. "autoload": {
  8025. "psr-4": {
  8026. "Symfony\\WebpackEncoreBundle\\": "src"
  8027. }
  8028. },
  8029. "notification-url": "https://packagist.org/downloads/",
  8030. "license": [
  8031. "MIT"
  8032. ],
  8033. "authors": [
  8034. {
  8035. "name": "Symfony Community",
  8036. "homepage": "https://symfony.com/contributors"
  8037. }
  8038. ],
  8039. "description": "Integration with your Symfony app & Webpack Encore!",
  8040. "support": {
  8041. "issues": "https://github.com/symfony/webpack-encore-bundle/issues",
  8042. "source": "https://github.com/symfony/webpack-encore-bundle/tree/v2.1.1"
  8043. },
  8044. "funding": [
  8045. {
  8046. "url": "https://symfony.com/sponsor",
  8047. "type": "custom"
  8048. },
  8049. {
  8050. "url": "https://github.com/fabpot",
  8051. "type": "github"
  8052. },
  8053. {
  8054. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8055. "type": "tidelift"
  8056. }
  8057. ],
  8058. "time": "2023-10-22T18:53:08+00:00"
  8059. },
  8060. {
  8061. "name": "symfony/yaml",
  8062. "version": "v7.1.1",
  8063. "source": {
  8064. "type": "git",
  8065. "url": "https://github.com/symfony/yaml.git",
  8066. "reference": "fa34c77015aa6720469db7003567b9f772492bf2"
  8067. },
  8068. "dist": {
  8069. "type": "zip",
  8070. "url": "https://api.github.com/repos/symfony/yaml/zipball/fa34c77015aa6720469db7003567b9f772492bf2",
  8071. "reference": "fa34c77015aa6720469db7003567b9f772492bf2",
  8072. "shasum": ""
  8073. },
  8074. "require": {
  8075. "php": ">=8.2",
  8076. "symfony/polyfill-ctype": "^1.8"
  8077. },
  8078. "conflict": {
  8079. "symfony/console": "<6.4"
  8080. },
  8081. "require-dev": {
  8082. "symfony/console": "^6.4|^7.0"
  8083. },
  8084. "bin": [
  8085. "Resources/bin/yaml-lint"
  8086. ],
  8087. "type": "library",
  8088. "autoload": {
  8089. "psr-4": {
  8090. "Symfony\\Component\\Yaml\\": ""
  8091. },
  8092. "exclude-from-classmap": [
  8093. "/Tests/"
  8094. ]
  8095. },
  8096. "notification-url": "https://packagist.org/downloads/",
  8097. "license": [
  8098. "MIT"
  8099. ],
  8100. "authors": [
  8101. {
  8102. "name": "Fabien Potencier",
  8103. "email": "fabien@symfony.com"
  8104. },
  8105. {
  8106. "name": "Symfony Community",
  8107. "homepage": "https://symfony.com/contributors"
  8108. }
  8109. ],
  8110. "description": "Loads and dumps YAML files",
  8111. "homepage": "https://symfony.com",
  8112. "support": {
  8113. "source": "https://github.com/symfony/yaml/tree/v7.1.1"
  8114. },
  8115. "funding": [
  8116. {
  8117. "url": "https://symfony.com/sponsor",
  8118. "type": "custom"
  8119. },
  8120. {
  8121. "url": "https://github.com/fabpot",
  8122. "type": "github"
  8123. },
  8124. {
  8125. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8126. "type": "tidelift"
  8127. }
  8128. ],
  8129. "time": "2024-05-31T14:57:53+00:00"
  8130. },
  8131. {
  8132. "name": "twig/extra-bundle",
  8133. "version": "v3.10.0",
  8134. "source": {
  8135. "type": "git",
  8136. "url": "https://github.com/twigphp/twig-extra-bundle.git",
  8137. "reference": "cdc6e23aeb7f4953c1039568c3439aab60c56454"
  8138. },
  8139. "dist": {
  8140. "type": "zip",
  8141. "url": "https://api.github.com/repos/twigphp/twig-extra-bundle/zipball/cdc6e23aeb7f4953c1039568c3439aab60c56454",
  8142. "reference": "cdc6e23aeb7f4953c1039568c3439aab60c56454",
  8143. "shasum": ""
  8144. },
  8145. "require": {
  8146. "php": ">=7.2.5",
  8147. "symfony/framework-bundle": "^5.4|^6.4|^7.0",
  8148. "symfony/twig-bundle": "^5.4|^6.4|^7.0",
  8149. "twig/twig": "^3.0"
  8150. },
  8151. "require-dev": {
  8152. "league/commonmark": "^1.0|^2.0",
  8153. "symfony/phpunit-bridge": "^6.4|^7.0",
  8154. "twig/cache-extra": "^3.0",
  8155. "twig/cssinliner-extra": "^3.0",
  8156. "twig/html-extra": "^3.0",
  8157. "twig/inky-extra": "^3.0",
  8158. "twig/intl-extra": "^3.0",
  8159. "twig/markdown-extra": "^3.0",
  8160. "twig/string-extra": "^3.0"
  8161. },
  8162. "type": "symfony-bundle",
  8163. "autoload": {
  8164. "psr-4": {
  8165. "Twig\\Extra\\TwigExtraBundle\\": ""
  8166. },
  8167. "exclude-from-classmap": [
  8168. "/Tests/"
  8169. ]
  8170. },
  8171. "notification-url": "https://packagist.org/downloads/",
  8172. "license": [
  8173. "MIT"
  8174. ],
  8175. "authors": [
  8176. {
  8177. "name": "Fabien Potencier",
  8178. "email": "fabien@symfony.com",
  8179. "homepage": "http://fabien.potencier.org",
  8180. "role": "Lead Developer"
  8181. }
  8182. ],
  8183. "description": "A Symfony bundle for extra Twig extensions",
  8184. "homepage": "https://twig.symfony.com",
  8185. "keywords": [
  8186. "bundle",
  8187. "extra",
  8188. "twig"
  8189. ],
  8190. "support": {
  8191. "source": "https://github.com/twigphp/twig-extra-bundle/tree/v3.10.0"
  8192. },
  8193. "funding": [
  8194. {
  8195. "url": "https://github.com/fabpot",
  8196. "type": "github"
  8197. },
  8198. {
  8199. "url": "https://tidelift.com/funding/github/packagist/twig/twig",
  8200. "type": "tidelift"
  8201. }
  8202. ],
  8203. "time": "2024-05-11T07:35:57+00:00"
  8204. },
  8205. {
  8206. "name": "twig/markdown-extra",
  8207. "version": "v3.10.0",
  8208. "source": {
  8209. "type": "git",
  8210. "url": "https://github.com/twigphp/markdown-extra.git",
  8211. "reference": "e4bf2419df819dcf9dc7a0b25dd8cd1092cbd86d"
  8212. },
  8213. "dist": {
  8214. "type": "zip",
  8215. "url": "https://api.github.com/repos/twigphp/markdown-extra/zipball/e4bf2419df819dcf9dc7a0b25dd8cd1092cbd86d",
  8216. "reference": "e4bf2419df819dcf9dc7a0b25dd8cd1092cbd86d",
  8217. "shasum": ""
  8218. },
  8219. "require": {
  8220. "php": ">=7.2.5",
  8221. "symfony/deprecation-contracts": "^2.5|^3",
  8222. "twig/twig": "^3.0"
  8223. },
  8224. "require-dev": {
  8225. "erusev/parsedown": "^1.7",
  8226. "league/commonmark": "^1.0|^2.0",
  8227. "league/html-to-markdown": "^4.8|^5.0",
  8228. "michelf/php-markdown": "^1.8|^2.0",
  8229. "symfony/phpunit-bridge": "^6.4|^7.0"
  8230. },
  8231. "type": "library",
  8232. "autoload": {
  8233. "files": [
  8234. "Resources/functions.php"
  8235. ],
  8236. "psr-4": {
  8237. "Twig\\Extra\\Markdown\\": ""
  8238. },
  8239. "exclude-from-classmap": [
  8240. "/Tests/"
  8241. ]
  8242. },
  8243. "notification-url": "https://packagist.org/downloads/",
  8244. "license": [
  8245. "MIT"
  8246. ],
  8247. "authors": [
  8248. {
  8249. "name": "Fabien Potencier",
  8250. "email": "fabien@symfony.com",
  8251. "homepage": "http://fabien.potencier.org",
  8252. "role": "Lead Developer"
  8253. }
  8254. ],
  8255. "description": "A Twig extension for Markdown",
  8256. "homepage": "https://twig.symfony.com",
  8257. "keywords": [
  8258. "html",
  8259. "markdown",
  8260. "twig"
  8261. ],
  8262. "support": {
  8263. "source": "https://github.com/twigphp/markdown-extra/tree/v3.10.0"
  8264. },
  8265. "funding": [
  8266. {
  8267. "url": "https://github.com/fabpot",
  8268. "type": "github"
  8269. },
  8270. {
  8271. "url": "https://tidelift.com/funding/github/packagist/twig/twig",
  8272. "type": "tidelift"
  8273. }
  8274. ],
  8275. "time": "2024-05-11T07:35:57+00:00"
  8276. },
  8277. {
  8278. "name": "twig/twig",
  8279. "version": "v3.10.3",
  8280. "source": {
  8281. "type": "git",
  8282. "url": "https://github.com/twigphp/Twig.git",
  8283. "reference": "67f29781ffafa520b0bbfbd8384674b42db04572"
  8284. },
  8285. "dist": {
  8286. "type": "zip",
  8287. "url": "https://api.github.com/repos/twigphp/Twig/zipball/67f29781ffafa520b0bbfbd8384674b42db04572",
  8288. "reference": "67f29781ffafa520b0bbfbd8384674b42db04572",
  8289. "shasum": ""
  8290. },
  8291. "require": {
  8292. "php": ">=7.2.5",
  8293. "symfony/deprecation-contracts": "^2.5|^3",
  8294. "symfony/polyfill-ctype": "^1.8",
  8295. "symfony/polyfill-mbstring": "^1.3",
  8296. "symfony/polyfill-php80": "^1.22"
  8297. },
  8298. "require-dev": {
  8299. "psr/container": "^1.0|^2.0",
  8300. "symfony/phpunit-bridge": "^5.4.9|^6.4|^7.0"
  8301. },
  8302. "type": "library",
  8303. "autoload": {
  8304. "files": [
  8305. "src/Resources/core.php",
  8306. "src/Resources/debug.php",
  8307. "src/Resources/escaper.php",
  8308. "src/Resources/string_loader.php"
  8309. ],
  8310. "psr-4": {
  8311. "Twig\\": "src/"
  8312. }
  8313. },
  8314. "notification-url": "https://packagist.org/downloads/",
  8315. "license": [
  8316. "BSD-3-Clause"
  8317. ],
  8318. "authors": [
  8319. {
  8320. "name": "Fabien Potencier",
  8321. "email": "fabien@symfony.com",
  8322. "homepage": "http://fabien.potencier.org",
  8323. "role": "Lead Developer"
  8324. },
  8325. {
  8326. "name": "Twig Team",
  8327. "role": "Contributors"
  8328. },
  8329. {
  8330. "name": "Armin Ronacher",
  8331. "email": "armin.ronacher@active-4.com",
  8332. "role": "Project Founder"
  8333. }
  8334. ],
  8335. "description": "Twig, the flexible, fast, and secure template language for PHP",
  8336. "homepage": "https://twig.symfony.com",
  8337. "keywords": [
  8338. "templating"
  8339. ],
  8340. "support": {
  8341. "issues": "https://github.com/twigphp/Twig/issues",
  8342. "source": "https://github.com/twigphp/Twig/tree/v3.10.3"
  8343. },
  8344. "funding": [
  8345. {
  8346. "url": "https://github.com/fabpot",
  8347. "type": "github"
  8348. },
  8349. {
  8350. "url": "https://tidelift.com/funding/github/packagist/twig/twig",
  8351. "type": "tidelift"
  8352. }
  8353. ],
  8354. "time": "2024-05-16T10:04:27+00:00"
  8355. },
  8356. {
  8357. "name": "webmozart/assert",
  8358. "version": "1.11.0",
  8359. "source": {
  8360. "type": "git",
  8361. "url": "https://github.com/webmozarts/assert.git",
  8362. "reference": "11cb2199493b2f8a3b53e7f19068fc6aac760991"
  8363. },
  8364. "dist": {
  8365. "type": "zip",
  8366. "url": "https://api.github.com/repos/webmozarts/assert/zipball/11cb2199493b2f8a3b53e7f19068fc6aac760991",
  8367. "reference": "11cb2199493b2f8a3b53e7f19068fc6aac760991",
  8368. "shasum": ""
  8369. },
  8370. "require": {
  8371. "ext-ctype": "*",
  8372. "php": "^7.2 || ^8.0"
  8373. },
  8374. "conflict": {
  8375. "phpstan/phpstan": "<0.12.20",
  8376. "vimeo/psalm": "<4.6.1 || 4.6.2"
  8377. },
  8378. "require-dev": {
  8379. "phpunit/phpunit": "^8.5.13"
  8380. },
  8381. "type": "library",
  8382. "extra": {
  8383. "branch-alias": {
  8384. "dev-master": "1.10-dev"
  8385. }
  8386. },
  8387. "autoload": {
  8388. "psr-4": {
  8389. "Webmozart\\Assert\\": "src/"
  8390. }
  8391. },
  8392. "notification-url": "https://packagist.org/downloads/",
  8393. "license": [
  8394. "MIT"
  8395. ],
  8396. "authors": [
  8397. {
  8398. "name": "Bernhard Schussek",
  8399. "email": "bschussek@gmail.com"
  8400. }
  8401. ],
  8402. "description": "Assertions to validate method input/output with nice error messages.",
  8403. "keywords": [
  8404. "assert",
  8405. "check",
  8406. "validate"
  8407. ],
  8408. "support": {
  8409. "issues": "https://github.com/webmozarts/assert/issues",
  8410. "source": "https://github.com/webmozarts/assert/tree/1.11.0"
  8411. },
  8412. "time": "2022-06-03T18:03:27+00:00"
  8413. }
  8414. ],
  8415. "packages-dev": [
  8416. {
  8417. "name": "myclabs/deep-copy",
  8418. "version": "1.12.0",
  8419. "source": {
  8420. "type": "git",
  8421. "url": "https://github.com/myclabs/DeepCopy.git",
  8422. "reference": "3a6b9a42cd8f8771bd4295d13e1423fa7f3d942c"
  8423. },
  8424. "dist": {
  8425. "type": "zip",
  8426. "url": "https://api.github.com/repos/myclabs/DeepCopy/zipball/3a6b9a42cd8f8771bd4295d13e1423fa7f3d942c",
  8427. "reference": "3a6b9a42cd8f8771bd4295d13e1423fa7f3d942c",
  8428. "shasum": ""
  8429. },
  8430. "require": {
  8431. "php": "^7.1 || ^8.0"
  8432. },
  8433. "conflict": {
  8434. "doctrine/collections": "<1.6.8",
  8435. "doctrine/common": "<2.13.3 || >=3 <3.2.2"
  8436. },
  8437. "require-dev": {
  8438. "doctrine/collections": "^1.6.8",
  8439. "doctrine/common": "^2.13.3 || ^3.2.2",
  8440. "phpspec/prophecy": "^1.10",
  8441. "phpunit/phpunit": "^7.5.20 || ^8.5.23 || ^9.5.13"
  8442. },
  8443. "type": "library",
  8444. "autoload": {
  8445. "files": [
  8446. "src/DeepCopy/deep_copy.php"
  8447. ],
  8448. "psr-4": {
  8449. "DeepCopy\\": "src/DeepCopy/"
  8450. }
  8451. },
  8452. "notification-url": "https://packagist.org/downloads/",
  8453. "license": [
  8454. "MIT"
  8455. ],
  8456. "description": "Create deep copies (clones) of your objects",
  8457. "keywords": [
  8458. "clone",
  8459. "copy",
  8460. "duplicate",
  8461. "object",
  8462. "object graph"
  8463. ],
  8464. "support": {
  8465. "issues": "https://github.com/myclabs/DeepCopy/issues",
  8466. "source": "https://github.com/myclabs/DeepCopy/tree/1.12.0"
  8467. },
  8468. "funding": [
  8469. {
  8470. "url": "https://tidelift.com/funding/github/packagist/myclabs/deep-copy",
  8471. "type": "tidelift"
  8472. }
  8473. ],
  8474. "time": "2024-06-12T14:39:25+00:00"
  8475. },
  8476. {
  8477. "name": "nikic/php-parser",
  8478. "version": "v5.1.0",
  8479. "source": {
  8480. "type": "git",
  8481. "url": "https://github.com/nikic/PHP-Parser.git",
  8482. "reference": "683130c2ff8c2739f4822ff7ac5c873ec529abd1"
  8483. },
  8484. "dist": {
  8485. "type": "zip",
  8486. "url": "https://api.github.com/repos/nikic/PHP-Parser/zipball/683130c2ff8c2739f4822ff7ac5c873ec529abd1",
  8487. "reference": "683130c2ff8c2739f4822ff7ac5c873ec529abd1",
  8488. "shasum": ""
  8489. },
  8490. "require": {
  8491. "ext-ctype": "*",
  8492. "ext-json": "*",
  8493. "ext-tokenizer": "*",
  8494. "php": ">=7.4"
  8495. },
  8496. "require-dev": {
  8497. "ircmaxell/php-yacc": "^0.0.7",
  8498. "phpunit/phpunit": "^9.0"
  8499. },
  8500. "bin": [
  8501. "bin/php-parse"
  8502. ],
  8503. "type": "library",
  8504. "extra": {
  8505. "branch-alias": {
  8506. "dev-master": "5.0-dev"
  8507. }
  8508. },
  8509. "autoload": {
  8510. "psr-4": {
  8511. "PhpParser\\": "lib/PhpParser"
  8512. }
  8513. },
  8514. "notification-url": "https://packagist.org/downloads/",
  8515. "license": [
  8516. "BSD-3-Clause"
  8517. ],
  8518. "authors": [
  8519. {
  8520. "name": "Nikita Popov"
  8521. }
  8522. ],
  8523. "description": "A PHP parser written in PHP",
  8524. "keywords": [
  8525. "parser",
  8526. "php"
  8527. ],
  8528. "support": {
  8529. "issues": "https://github.com/nikic/PHP-Parser/issues",
  8530. "source": "https://github.com/nikic/PHP-Parser/tree/v5.1.0"
  8531. },
  8532. "time": "2024-07-01T20:03:41+00:00"
  8533. },
  8534. {
  8535. "name": "phar-io/manifest",
  8536. "version": "2.0.4",
  8537. "source": {
  8538. "type": "git",
  8539. "url": "https://github.com/phar-io/manifest.git",
  8540. "reference": "54750ef60c58e43759730615a392c31c80e23176"
  8541. },
  8542. "dist": {
  8543. "type": "zip",
  8544. "url": "https://api.github.com/repos/phar-io/manifest/zipball/54750ef60c58e43759730615a392c31c80e23176",
  8545. "reference": "54750ef60c58e43759730615a392c31c80e23176",
  8546. "shasum": ""
  8547. },
  8548. "require": {
  8549. "ext-dom": "*",
  8550. "ext-libxml": "*",
  8551. "ext-phar": "*",
  8552. "ext-xmlwriter": "*",
  8553. "phar-io/version": "^3.0.1",
  8554. "php": "^7.2 || ^8.0"
  8555. },
  8556. "type": "library",
  8557. "extra": {
  8558. "branch-alias": {
  8559. "dev-master": "2.0.x-dev"
  8560. }
  8561. },
  8562. "autoload": {
  8563. "classmap": [
  8564. "src/"
  8565. ]
  8566. },
  8567. "notification-url": "https://packagist.org/downloads/",
  8568. "license": [
  8569. "BSD-3-Clause"
  8570. ],
  8571. "authors": [
  8572. {
  8573. "name": "Arne Blankerts",
  8574. "email": "arne@blankerts.de",
  8575. "role": "Developer"
  8576. },
  8577. {
  8578. "name": "Sebastian Heuer",
  8579. "email": "sebastian@phpeople.de",
  8580. "role": "Developer"
  8581. },
  8582. {
  8583. "name": "Sebastian Bergmann",
  8584. "email": "sebastian@phpunit.de",
  8585. "role": "Developer"
  8586. }
  8587. ],
  8588. "description": "Component for reading phar.io manifest information from a PHP Archive (PHAR)",
  8589. "support": {
  8590. "issues": "https://github.com/phar-io/manifest/issues",
  8591. "source": "https://github.com/phar-io/manifest/tree/2.0.4"
  8592. },
  8593. "funding": [
  8594. {
  8595. "url": "https://github.com/theseer",
  8596. "type": "github"
  8597. }
  8598. ],
  8599. "time": "2024-03-03T12:33:53+00:00"
  8600. },
  8601. {
  8602. "name": "phar-io/version",
  8603. "version": "3.2.1",
  8604. "source": {
  8605. "type": "git",
  8606. "url": "https://github.com/phar-io/version.git",
  8607. "reference": "4f7fd7836c6f332bb2933569e566a0d6c4cbed74"
  8608. },
  8609. "dist": {
  8610. "type": "zip",
  8611. "url": "https://api.github.com/repos/phar-io/version/zipball/4f7fd7836c6f332bb2933569e566a0d6c4cbed74",
  8612. "reference": "4f7fd7836c6f332bb2933569e566a0d6c4cbed74",
  8613. "shasum": ""
  8614. },
  8615. "require": {
  8616. "php": "^7.2 || ^8.0"
  8617. },
  8618. "type": "library",
  8619. "autoload": {
  8620. "classmap": [
  8621. "src/"
  8622. ]
  8623. },
  8624. "notification-url": "https://packagist.org/downloads/",
  8625. "license": [
  8626. "BSD-3-Clause"
  8627. ],
  8628. "authors": [
  8629. {
  8630. "name": "Arne Blankerts",
  8631. "email": "arne@blankerts.de",
  8632. "role": "Developer"
  8633. },
  8634. {
  8635. "name": "Sebastian Heuer",
  8636. "email": "sebastian@phpeople.de",
  8637. "role": "Developer"
  8638. },
  8639. {
  8640. "name": "Sebastian Bergmann",
  8641. "email": "sebastian@phpunit.de",
  8642. "role": "Developer"
  8643. }
  8644. ],
  8645. "description": "Library for handling version information and constraints",
  8646. "support": {
  8647. "issues": "https://github.com/phar-io/version/issues",
  8648. "source": "https://github.com/phar-io/version/tree/3.2.1"
  8649. },
  8650. "time": "2022-02-21T01:04:05+00:00"
  8651. },
  8652. {
  8653. "name": "phpunit/php-code-coverage",
  8654. "version": "9.2.31",
  8655. "source": {
  8656. "type": "git",
  8657. "url": "https://github.com/sebastianbergmann/php-code-coverage.git",
  8658. "reference": "48c34b5d8d983006bd2adc2d0de92963b9155965"
  8659. },
  8660. "dist": {
  8661. "type": "zip",
  8662. "url": "https://api.github.com/repos/sebastianbergmann/php-code-coverage/zipball/48c34b5d8d983006bd2adc2d0de92963b9155965",
  8663. "reference": "48c34b5d8d983006bd2adc2d0de92963b9155965",
  8664. "shasum": ""
  8665. },
  8666. "require": {
  8667. "ext-dom": "*",
  8668. "ext-libxml": "*",
  8669. "ext-xmlwriter": "*",
  8670. "nikic/php-parser": "^4.18 || ^5.0",
  8671. "php": ">=7.3",
  8672. "phpunit/php-file-iterator": "^3.0.3",
  8673. "phpunit/php-text-template": "^2.0.2",
  8674. "sebastian/code-unit-reverse-lookup": "^2.0.2",
  8675. "sebastian/complexity": "^2.0",
  8676. "sebastian/environment": "^5.1.2",
  8677. "sebastian/lines-of-code": "^1.0.3",
  8678. "sebastian/version": "^3.0.1",
  8679. "theseer/tokenizer": "^1.2.0"
  8680. },
  8681. "require-dev": {
  8682. "phpunit/phpunit": "^9.3"
  8683. },
  8684. "suggest": {
  8685. "ext-pcov": "PHP extension that provides line coverage",
  8686. "ext-xdebug": "PHP extension that provides line coverage as well as branch and path coverage"
  8687. },
  8688. "type": "library",
  8689. "extra": {
  8690. "branch-alias": {
  8691. "dev-master": "9.2-dev"
  8692. }
  8693. },
  8694. "autoload": {
  8695. "classmap": [
  8696. "src/"
  8697. ]
  8698. },
  8699. "notification-url": "https://packagist.org/downloads/",
  8700. "license": [
  8701. "BSD-3-Clause"
  8702. ],
  8703. "authors": [
  8704. {
  8705. "name": "Sebastian Bergmann",
  8706. "email": "sebastian@phpunit.de",
  8707. "role": "lead"
  8708. }
  8709. ],
  8710. "description": "Library that provides collection, processing, and rendering functionality for PHP code coverage information.",
  8711. "homepage": "https://github.com/sebastianbergmann/php-code-coverage",
  8712. "keywords": [
  8713. "coverage",
  8714. "testing",
  8715. "xunit"
  8716. ],
  8717. "support": {
  8718. "issues": "https://github.com/sebastianbergmann/php-code-coverage/issues",
  8719. "security": "https://github.com/sebastianbergmann/php-code-coverage/security/policy",
  8720. "source": "https://github.com/sebastianbergmann/php-code-coverage/tree/9.2.31"
  8721. },
  8722. "funding": [
  8723. {
  8724. "url": "https://github.com/sebastianbergmann",
  8725. "type": "github"
  8726. }
  8727. ],
  8728. "time": "2024-03-02T06:37:42+00:00"
  8729. },
  8730. {
  8731. "name": "phpunit/php-file-iterator",
  8732. "version": "3.0.6",
  8733. "source": {
  8734. "type": "git",
  8735. "url": "https://github.com/sebastianbergmann/php-file-iterator.git",
  8736. "reference": "cf1c2e7c203ac650e352f4cc675a7021e7d1b3cf"
  8737. },
  8738. "dist": {
  8739. "type": "zip",
  8740. "url": "https://api.github.com/repos/sebastianbergmann/php-file-iterator/zipball/cf1c2e7c203ac650e352f4cc675a7021e7d1b3cf",
  8741. "reference": "cf1c2e7c203ac650e352f4cc675a7021e7d1b3cf",
  8742. "shasum": ""
  8743. },
  8744. "require": {
  8745. "php": ">=7.3"
  8746. },
  8747. "require-dev": {
  8748. "phpunit/phpunit": "^9.3"
  8749. },
  8750. "type": "library",
  8751. "extra": {
  8752. "branch-alias": {
  8753. "dev-master": "3.0-dev"
  8754. }
  8755. },
  8756. "autoload": {
  8757. "classmap": [
  8758. "src/"
  8759. ]
  8760. },
  8761. "notification-url": "https://packagist.org/downloads/",
  8762. "license": [
  8763. "BSD-3-Clause"
  8764. ],
  8765. "authors": [
  8766. {
  8767. "name": "Sebastian Bergmann",
  8768. "email": "sebastian@phpunit.de",
  8769. "role": "lead"
  8770. }
  8771. ],
  8772. "description": "FilterIterator implementation that filters files based on a list of suffixes.",
  8773. "homepage": "https://github.com/sebastianbergmann/php-file-iterator/",
  8774. "keywords": [
  8775. "filesystem",
  8776. "iterator"
  8777. ],
  8778. "support": {
  8779. "issues": "https://github.com/sebastianbergmann/php-file-iterator/issues",
  8780. "source": "https://github.com/sebastianbergmann/php-file-iterator/tree/3.0.6"
  8781. },
  8782. "funding": [
  8783. {
  8784. "url": "https://github.com/sebastianbergmann",
  8785. "type": "github"
  8786. }
  8787. ],
  8788. "time": "2021-12-02T12:48:52+00:00"
  8789. },
  8790. {
  8791. "name": "phpunit/php-invoker",
  8792. "version": "3.1.1",
  8793. "source": {
  8794. "type": "git",
  8795. "url": "https://github.com/sebastianbergmann/php-invoker.git",
  8796. "reference": "5a10147d0aaf65b58940a0b72f71c9ac0423cc67"
  8797. },
  8798. "dist": {
  8799. "type": "zip",
  8800. "url": "https://api.github.com/repos/sebastianbergmann/php-invoker/zipball/5a10147d0aaf65b58940a0b72f71c9ac0423cc67",
  8801. "reference": "5a10147d0aaf65b58940a0b72f71c9ac0423cc67",
  8802. "shasum": ""
  8803. },
  8804. "require": {
  8805. "php": ">=7.3"
  8806. },
  8807. "require-dev": {
  8808. "ext-pcntl": "*",
  8809. "phpunit/phpunit": "^9.3"
  8810. },
  8811. "suggest": {
  8812. "ext-pcntl": "*"
  8813. },
  8814. "type": "library",
  8815. "extra": {
  8816. "branch-alias": {
  8817. "dev-master": "3.1-dev"
  8818. }
  8819. },
  8820. "autoload": {
  8821. "classmap": [
  8822. "src/"
  8823. ]
  8824. },
  8825. "notification-url": "https://packagist.org/downloads/",
  8826. "license": [
  8827. "BSD-3-Clause"
  8828. ],
  8829. "authors": [
  8830. {
  8831. "name": "Sebastian Bergmann",
  8832. "email": "sebastian@phpunit.de",
  8833. "role": "lead"
  8834. }
  8835. ],
  8836. "description": "Invoke callables with a timeout",
  8837. "homepage": "https://github.com/sebastianbergmann/php-invoker/",
  8838. "keywords": [
  8839. "process"
  8840. ],
  8841. "support": {
  8842. "issues": "https://github.com/sebastianbergmann/php-invoker/issues",
  8843. "source": "https://github.com/sebastianbergmann/php-invoker/tree/3.1.1"
  8844. },
  8845. "funding": [
  8846. {
  8847. "url": "https://github.com/sebastianbergmann",
  8848. "type": "github"
  8849. }
  8850. ],
  8851. "time": "2020-09-28T05:58:55+00:00"
  8852. },
  8853. {
  8854. "name": "phpunit/php-text-template",
  8855. "version": "2.0.4",
  8856. "source": {
  8857. "type": "git",
  8858. "url": "https://github.com/sebastianbergmann/php-text-template.git",
  8859. "reference": "5da5f67fc95621df9ff4c4e5a84d6a8a2acf7c28"
  8860. },
  8861. "dist": {
  8862. "type": "zip",
  8863. "url": "https://api.github.com/repos/sebastianbergmann/php-text-template/zipball/5da5f67fc95621df9ff4c4e5a84d6a8a2acf7c28",
  8864. "reference": "5da5f67fc95621df9ff4c4e5a84d6a8a2acf7c28",
  8865. "shasum": ""
  8866. },
  8867. "require": {
  8868. "php": ">=7.3"
  8869. },
  8870. "require-dev": {
  8871. "phpunit/phpunit": "^9.3"
  8872. },
  8873. "type": "library",
  8874. "extra": {
  8875. "branch-alias": {
  8876. "dev-master": "2.0-dev"
  8877. }
  8878. },
  8879. "autoload": {
  8880. "classmap": [
  8881. "src/"
  8882. ]
  8883. },
  8884. "notification-url": "https://packagist.org/downloads/",
  8885. "license": [
  8886. "BSD-3-Clause"
  8887. ],
  8888. "authors": [
  8889. {
  8890. "name": "Sebastian Bergmann",
  8891. "email": "sebastian@phpunit.de",
  8892. "role": "lead"
  8893. }
  8894. ],
  8895. "description": "Simple template engine.",
  8896. "homepage": "https://github.com/sebastianbergmann/php-text-template/",
  8897. "keywords": [
  8898. "template"
  8899. ],
  8900. "support": {
  8901. "issues": "https://github.com/sebastianbergmann/php-text-template/issues",
  8902. "source": "https://github.com/sebastianbergmann/php-text-template/tree/2.0.4"
  8903. },
  8904. "funding": [
  8905. {
  8906. "url": "https://github.com/sebastianbergmann",
  8907. "type": "github"
  8908. }
  8909. ],
  8910. "time": "2020-10-26T05:33:50+00:00"
  8911. },
  8912. {
  8913. "name": "phpunit/php-timer",
  8914. "version": "5.0.3",
  8915. "source": {
  8916. "type": "git",
  8917. "url": "https://github.com/sebastianbergmann/php-timer.git",
  8918. "reference": "5a63ce20ed1b5bf577850e2c4e87f4aa902afbd2"
  8919. },
  8920. "dist": {
  8921. "type": "zip",
  8922. "url": "https://api.github.com/repos/sebastianbergmann/php-timer/zipball/5a63ce20ed1b5bf577850e2c4e87f4aa902afbd2",
  8923. "reference": "5a63ce20ed1b5bf577850e2c4e87f4aa902afbd2",
  8924. "shasum": ""
  8925. },
  8926. "require": {
  8927. "php": ">=7.3"
  8928. },
  8929. "require-dev": {
  8930. "phpunit/phpunit": "^9.3"
  8931. },
  8932. "type": "library",
  8933. "extra": {
  8934. "branch-alias": {
  8935. "dev-master": "5.0-dev"
  8936. }
  8937. },
  8938. "autoload": {
  8939. "classmap": [
  8940. "src/"
  8941. ]
  8942. },
  8943. "notification-url": "https://packagist.org/downloads/",
  8944. "license": [
  8945. "BSD-3-Clause"
  8946. ],
  8947. "authors": [
  8948. {
  8949. "name": "Sebastian Bergmann",
  8950. "email": "sebastian@phpunit.de",
  8951. "role": "lead"
  8952. }
  8953. ],
  8954. "description": "Utility class for timing",
  8955. "homepage": "https://github.com/sebastianbergmann/php-timer/",
  8956. "keywords": [
  8957. "timer"
  8958. ],
  8959. "support": {
  8960. "issues": "https://github.com/sebastianbergmann/php-timer/issues",
  8961. "source": "https://github.com/sebastianbergmann/php-timer/tree/5.0.3"
  8962. },
  8963. "funding": [
  8964. {
  8965. "url": "https://github.com/sebastianbergmann",
  8966. "type": "github"
  8967. }
  8968. ],
  8969. "time": "2020-10-26T13:16:10+00:00"
  8970. },
  8971. {
  8972. "name": "phpunit/phpunit",
  8973. "version": "9.6.20",
  8974. "source": {
  8975. "type": "git",
  8976. "url": "https://github.com/sebastianbergmann/phpunit.git",
  8977. "reference": "49d7820565836236411f5dc002d16dd689cde42f"
  8978. },
  8979. "dist": {
  8980. "type": "zip",
  8981. "url": "https://api.github.com/repos/sebastianbergmann/phpunit/zipball/49d7820565836236411f5dc002d16dd689cde42f",
  8982. "reference": "49d7820565836236411f5dc002d16dd689cde42f",
  8983. "shasum": ""
  8984. },
  8985. "require": {
  8986. "doctrine/instantiator": "^1.5.0 || ^2",
  8987. "ext-dom": "*",
  8988. "ext-json": "*",
  8989. "ext-libxml": "*",
  8990. "ext-mbstring": "*",
  8991. "ext-xml": "*",
  8992. "ext-xmlwriter": "*",
  8993. "myclabs/deep-copy": "^1.12.0",
  8994. "phar-io/manifest": "^2.0.4",
  8995. "phar-io/version": "^3.2.1",
  8996. "php": ">=7.3",
  8997. "phpunit/php-code-coverage": "^9.2.31",
  8998. "phpunit/php-file-iterator": "^3.0.6",
  8999. "phpunit/php-invoker": "^3.1.1",
  9000. "phpunit/php-text-template": "^2.0.4",
  9001. "phpunit/php-timer": "^5.0.3",
  9002. "sebastian/cli-parser": "^1.0.2",
  9003. "sebastian/code-unit": "^1.0.8",
  9004. "sebastian/comparator": "^4.0.8",
  9005. "sebastian/diff": "^4.0.6",
  9006. "sebastian/environment": "^5.1.5",
  9007. "sebastian/exporter": "^4.0.6",
  9008. "sebastian/global-state": "^5.0.7",
  9009. "sebastian/object-enumerator": "^4.0.4",
  9010. "sebastian/resource-operations": "^3.0.4",
  9011. "sebastian/type": "^3.2.1",
  9012. "sebastian/version": "^3.0.2"
  9013. },
  9014. "suggest": {
  9015. "ext-soap": "To be able to generate mocks based on WSDL files",
  9016. "ext-xdebug": "PHP extension that provides line coverage as well as branch and path coverage"
  9017. },
  9018. "bin": [
  9019. "phpunit"
  9020. ],
  9021. "type": "library",
  9022. "extra": {
  9023. "branch-alias": {
  9024. "dev-master": "9.6-dev"
  9025. }
  9026. },
  9027. "autoload": {
  9028. "files": [
  9029. "src/Framework/Assert/Functions.php"
  9030. ],
  9031. "classmap": [
  9032. "src/"
  9033. ]
  9034. },
  9035. "notification-url": "https://packagist.org/downloads/",
  9036. "license": [
  9037. "BSD-3-Clause"
  9038. ],
  9039. "authors": [
  9040. {
  9041. "name": "Sebastian Bergmann",
  9042. "email": "sebastian@phpunit.de",
  9043. "role": "lead"
  9044. }
  9045. ],
  9046. "description": "The PHP Unit Testing framework.",
  9047. "homepage": "https://phpunit.de/",
  9048. "keywords": [
  9049. "phpunit",
  9050. "testing",
  9051. "xunit"
  9052. ],
  9053. "support": {
  9054. "issues": "https://github.com/sebastianbergmann/phpunit/issues",
  9055. "security": "https://github.com/sebastianbergmann/phpunit/security/policy",
  9056. "source": "https://github.com/sebastianbergmann/phpunit/tree/9.6.20"
  9057. },
  9058. "funding": [
  9059. {
  9060. "url": "https://phpunit.de/sponsors.html",
  9061. "type": "custom"
  9062. },
  9063. {
  9064. "url": "https://github.com/sebastianbergmann",
  9065. "type": "github"
  9066. },
  9067. {
  9068. "url": "https://tidelift.com/funding/github/packagist/phpunit/phpunit",
  9069. "type": "tidelift"
  9070. }
  9071. ],
  9072. "time": "2024-07-10T11:45:39+00:00"
  9073. },
  9074. {
  9075. "name": "sebastian/cli-parser",
  9076. "version": "1.0.2",
  9077. "source": {
  9078. "type": "git",
  9079. "url": "https://github.com/sebastianbergmann/cli-parser.git",
  9080. "reference": "2b56bea83a09de3ac06bb18b92f068e60cc6f50b"
  9081. },
  9082. "dist": {
  9083. "type": "zip",
  9084. "url": "https://api.github.com/repos/sebastianbergmann/cli-parser/zipball/2b56bea83a09de3ac06bb18b92f068e60cc6f50b",
  9085. "reference": "2b56bea83a09de3ac06bb18b92f068e60cc6f50b",
  9086. "shasum": ""
  9087. },
  9088. "require": {
  9089. "php": ">=7.3"
  9090. },
  9091. "require-dev": {
  9092. "phpunit/phpunit": "^9.3"
  9093. },
  9094. "type": "library",
  9095. "extra": {
  9096. "branch-alias": {
  9097. "dev-master": "1.0-dev"
  9098. }
  9099. },
  9100. "autoload": {
  9101. "classmap": [
  9102. "src/"
  9103. ]
  9104. },
  9105. "notification-url": "https://packagist.org/downloads/",
  9106. "license": [
  9107. "BSD-3-Clause"
  9108. ],
  9109. "authors": [
  9110. {
  9111. "name": "Sebastian Bergmann",
  9112. "email": "sebastian@phpunit.de",
  9113. "role": "lead"
  9114. }
  9115. ],
  9116. "description": "Library for parsing CLI options",
  9117. "homepage": "https://github.com/sebastianbergmann/cli-parser",
  9118. "support": {
  9119. "issues": "https://github.com/sebastianbergmann/cli-parser/issues",
  9120. "source": "https://github.com/sebastianbergmann/cli-parser/tree/1.0.2"
  9121. },
  9122. "funding": [
  9123. {
  9124. "url": "https://github.com/sebastianbergmann",
  9125. "type": "github"
  9126. }
  9127. ],
  9128. "time": "2024-03-02T06:27:43+00:00"
  9129. },
  9130. {
  9131. "name": "sebastian/code-unit",
  9132. "version": "1.0.8",
  9133. "source": {
  9134. "type": "git",
  9135. "url": "https://github.com/sebastianbergmann/code-unit.git",
  9136. "reference": "1fc9f64c0927627ef78ba436c9b17d967e68e120"
  9137. },
  9138. "dist": {
  9139. "type": "zip",
  9140. "url": "https://api.github.com/repos/sebastianbergmann/code-unit/zipball/1fc9f64c0927627ef78ba436c9b17d967e68e120",
  9141. "reference": "1fc9f64c0927627ef78ba436c9b17d967e68e120",
  9142. "shasum": ""
  9143. },
  9144. "require": {
  9145. "php": ">=7.3"
  9146. },
  9147. "require-dev": {
  9148. "phpunit/phpunit": "^9.3"
  9149. },
  9150. "type": "library",
  9151. "extra": {
  9152. "branch-alias": {
  9153. "dev-master": "1.0-dev"
  9154. }
  9155. },
  9156. "autoload": {
  9157. "classmap": [
  9158. "src/"
  9159. ]
  9160. },
  9161. "notification-url": "https://packagist.org/downloads/",
  9162. "license": [
  9163. "BSD-3-Clause"
  9164. ],
  9165. "authors": [
  9166. {
  9167. "name": "Sebastian Bergmann",
  9168. "email": "sebastian@phpunit.de",
  9169. "role": "lead"
  9170. }
  9171. ],
  9172. "description": "Collection of value objects that represent the PHP code units",
  9173. "homepage": "https://github.com/sebastianbergmann/code-unit",
  9174. "support": {
  9175. "issues": "https://github.com/sebastianbergmann/code-unit/issues",
  9176. "source": "https://github.com/sebastianbergmann/code-unit/tree/1.0.8"
  9177. },
  9178. "funding": [
  9179. {
  9180. "url": "https://github.com/sebastianbergmann",
  9181. "type": "github"
  9182. }
  9183. ],
  9184. "time": "2020-10-26T13:08:54+00:00"
  9185. },
  9186. {
  9187. "name": "sebastian/code-unit-reverse-lookup",
  9188. "version": "2.0.3",
  9189. "source": {
  9190. "type": "git",
  9191. "url": "https://github.com/sebastianbergmann/code-unit-reverse-lookup.git",
  9192. "reference": "ac91f01ccec49fb77bdc6fd1e548bc70f7faa3e5"
  9193. },
  9194. "dist": {
  9195. "type": "zip",
  9196. "url": "https://api.github.com/repos/sebastianbergmann/code-unit-reverse-lookup/zipball/ac91f01ccec49fb77bdc6fd1e548bc70f7faa3e5",
  9197. "reference": "ac91f01ccec49fb77bdc6fd1e548bc70f7faa3e5",
  9198. "shasum": ""
  9199. },
  9200. "require": {
  9201. "php": ">=7.3"
  9202. },
  9203. "require-dev": {
  9204. "phpunit/phpunit": "^9.3"
  9205. },
  9206. "type": "library",
  9207. "extra": {
  9208. "branch-alias": {
  9209. "dev-master": "2.0-dev"
  9210. }
  9211. },
  9212. "autoload": {
  9213. "classmap": [
  9214. "src/"
  9215. ]
  9216. },
  9217. "notification-url": "https://packagist.org/downloads/",
  9218. "license": [
  9219. "BSD-3-Clause"
  9220. ],
  9221. "authors": [
  9222. {
  9223. "name": "Sebastian Bergmann",
  9224. "email": "sebastian@phpunit.de"
  9225. }
  9226. ],
  9227. "description": "Looks up which function or method a line of code belongs to",
  9228. "homepage": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/",
  9229. "support": {
  9230. "issues": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/issues",
  9231. "source": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/tree/2.0.3"
  9232. },
  9233. "funding": [
  9234. {
  9235. "url": "https://github.com/sebastianbergmann",
  9236. "type": "github"
  9237. }
  9238. ],
  9239. "time": "2020-09-28T05:30:19+00:00"
  9240. },
  9241. {
  9242. "name": "sebastian/comparator",
  9243. "version": "4.0.8",
  9244. "source": {
  9245. "type": "git",
  9246. "url": "https://github.com/sebastianbergmann/comparator.git",
  9247. "reference": "fa0f136dd2334583309d32b62544682ee972b51a"
  9248. },
  9249. "dist": {
  9250. "type": "zip",
  9251. "url": "https://api.github.com/repos/sebastianbergmann/comparator/zipball/fa0f136dd2334583309d32b62544682ee972b51a",
  9252. "reference": "fa0f136dd2334583309d32b62544682ee972b51a",
  9253. "shasum": ""
  9254. },
  9255. "require": {
  9256. "php": ">=7.3",
  9257. "sebastian/diff": "^4.0",
  9258. "sebastian/exporter": "^4.0"
  9259. },
  9260. "require-dev": {
  9261. "phpunit/phpunit": "^9.3"
  9262. },
  9263. "type": "library",
  9264. "extra": {
  9265. "branch-alias": {
  9266. "dev-master": "4.0-dev"
  9267. }
  9268. },
  9269. "autoload": {
  9270. "classmap": [
  9271. "src/"
  9272. ]
  9273. },
  9274. "notification-url": "https://packagist.org/downloads/",
  9275. "license": [
  9276. "BSD-3-Clause"
  9277. ],
  9278. "authors": [
  9279. {
  9280. "name": "Sebastian Bergmann",
  9281. "email": "sebastian@phpunit.de"
  9282. },
  9283. {
  9284. "name": "Jeff Welch",
  9285. "email": "whatthejeff@gmail.com"
  9286. },
  9287. {
  9288. "name": "Volker Dusch",
  9289. "email": "github@wallbash.com"
  9290. },
  9291. {
  9292. "name": "Bernhard Schussek",
  9293. "email": "bschussek@2bepublished.at"
  9294. }
  9295. ],
  9296. "description": "Provides the functionality to compare PHP values for equality",
  9297. "homepage": "https://github.com/sebastianbergmann/comparator",
  9298. "keywords": [
  9299. "comparator",
  9300. "compare",
  9301. "equality"
  9302. ],
  9303. "support": {
  9304. "issues": "https://github.com/sebastianbergmann/comparator/issues",
  9305. "source": "https://github.com/sebastianbergmann/comparator/tree/4.0.8"
  9306. },
  9307. "funding": [
  9308. {
  9309. "url": "https://github.com/sebastianbergmann",
  9310. "type": "github"
  9311. }
  9312. ],
  9313. "time": "2022-09-14T12:41:17+00:00"
  9314. },
  9315. {
  9316. "name": "sebastian/complexity",
  9317. "version": "2.0.3",
  9318. "source": {
  9319. "type": "git",
  9320. "url": "https://github.com/sebastianbergmann/complexity.git",
  9321. "reference": "25f207c40d62b8b7aa32f5ab026c53561964053a"
  9322. },
  9323. "dist": {
  9324. "type": "zip",
  9325. "url": "https://api.github.com/repos/sebastianbergmann/complexity/zipball/25f207c40d62b8b7aa32f5ab026c53561964053a",
  9326. "reference": "25f207c40d62b8b7aa32f5ab026c53561964053a",
  9327. "shasum": ""
  9328. },
  9329. "require": {
  9330. "nikic/php-parser": "^4.18 || ^5.0",
  9331. "php": ">=7.3"
  9332. },
  9333. "require-dev": {
  9334. "phpunit/phpunit": "^9.3"
  9335. },
  9336. "type": "library",
  9337. "extra": {
  9338. "branch-alias": {
  9339. "dev-master": "2.0-dev"
  9340. }
  9341. },
  9342. "autoload": {
  9343. "classmap": [
  9344. "src/"
  9345. ]
  9346. },
  9347. "notification-url": "https://packagist.org/downloads/",
  9348. "license": [
  9349. "BSD-3-Clause"
  9350. ],
  9351. "authors": [
  9352. {
  9353. "name": "Sebastian Bergmann",
  9354. "email": "sebastian@phpunit.de",
  9355. "role": "lead"
  9356. }
  9357. ],
  9358. "description": "Library for calculating the complexity of PHP code units",
  9359. "homepage": "https://github.com/sebastianbergmann/complexity",
  9360. "support": {
  9361. "issues": "https://github.com/sebastianbergmann/complexity/issues",
  9362. "source": "https://github.com/sebastianbergmann/complexity/tree/2.0.3"
  9363. },
  9364. "funding": [
  9365. {
  9366. "url": "https://github.com/sebastianbergmann",
  9367. "type": "github"
  9368. }
  9369. ],
  9370. "time": "2023-12-22T06:19:30+00:00"
  9371. },
  9372. {
  9373. "name": "sebastian/diff",
  9374. "version": "4.0.6",
  9375. "source": {
  9376. "type": "git",
  9377. "url": "https://github.com/sebastianbergmann/diff.git",
  9378. "reference": "ba01945089c3a293b01ba9badc29ad55b106b0bc"
  9379. },
  9380. "dist": {
  9381. "type": "zip",
  9382. "url": "https://api.github.com/repos/sebastianbergmann/diff/zipball/ba01945089c3a293b01ba9badc29ad55b106b0bc",
  9383. "reference": "ba01945089c3a293b01ba9badc29ad55b106b0bc",
  9384. "shasum": ""
  9385. },
  9386. "require": {
  9387. "php": ">=7.3"
  9388. },
  9389. "require-dev": {
  9390. "phpunit/phpunit": "^9.3",
  9391. "symfony/process": "^4.2 || ^5"
  9392. },
  9393. "type": "library",
  9394. "extra": {
  9395. "branch-alias": {
  9396. "dev-master": "4.0-dev"
  9397. }
  9398. },
  9399. "autoload": {
  9400. "classmap": [
  9401. "src/"
  9402. ]
  9403. },
  9404. "notification-url": "https://packagist.org/downloads/",
  9405. "license": [
  9406. "BSD-3-Clause"
  9407. ],
  9408. "authors": [
  9409. {
  9410. "name": "Sebastian Bergmann",
  9411. "email": "sebastian@phpunit.de"
  9412. },
  9413. {
  9414. "name": "Kore Nordmann",
  9415. "email": "mail@kore-nordmann.de"
  9416. }
  9417. ],
  9418. "description": "Diff implementation",
  9419. "homepage": "https://github.com/sebastianbergmann/diff",
  9420. "keywords": [
  9421. "diff",
  9422. "udiff",
  9423. "unidiff",
  9424. "unified diff"
  9425. ],
  9426. "support": {
  9427. "issues": "https://github.com/sebastianbergmann/diff/issues",
  9428. "source": "https://github.com/sebastianbergmann/diff/tree/4.0.6"
  9429. },
  9430. "funding": [
  9431. {
  9432. "url": "https://github.com/sebastianbergmann",
  9433. "type": "github"
  9434. }
  9435. ],
  9436. "time": "2024-03-02T06:30:58+00:00"
  9437. },
  9438. {
  9439. "name": "sebastian/environment",
  9440. "version": "5.1.5",
  9441. "source": {
  9442. "type": "git",
  9443. "url": "https://github.com/sebastianbergmann/environment.git",
  9444. "reference": "830c43a844f1f8d5b7a1f6d6076b784454d8b7ed"
  9445. },
  9446. "dist": {
  9447. "type": "zip",
  9448. "url": "https://api.github.com/repos/sebastianbergmann/environment/zipball/830c43a844f1f8d5b7a1f6d6076b784454d8b7ed",
  9449. "reference": "830c43a844f1f8d5b7a1f6d6076b784454d8b7ed",
  9450. "shasum": ""
  9451. },
  9452. "require": {
  9453. "php": ">=7.3"
  9454. },
  9455. "require-dev": {
  9456. "phpunit/phpunit": "^9.3"
  9457. },
  9458. "suggest": {
  9459. "ext-posix": "*"
  9460. },
  9461. "type": "library",
  9462. "extra": {
  9463. "branch-alias": {
  9464. "dev-master": "5.1-dev"
  9465. }
  9466. },
  9467. "autoload": {
  9468. "classmap": [
  9469. "src/"
  9470. ]
  9471. },
  9472. "notification-url": "https://packagist.org/downloads/",
  9473. "license": [
  9474. "BSD-3-Clause"
  9475. ],
  9476. "authors": [
  9477. {
  9478. "name": "Sebastian Bergmann",
  9479. "email": "sebastian@phpunit.de"
  9480. }
  9481. ],
  9482. "description": "Provides functionality to handle HHVM/PHP environments",
  9483. "homepage": "http://www.github.com/sebastianbergmann/environment",
  9484. "keywords": [
  9485. "Xdebug",
  9486. "environment",
  9487. "hhvm"
  9488. ],
  9489. "support": {
  9490. "issues": "https://github.com/sebastianbergmann/environment/issues",
  9491. "source": "https://github.com/sebastianbergmann/environment/tree/5.1.5"
  9492. },
  9493. "funding": [
  9494. {
  9495. "url": "https://github.com/sebastianbergmann",
  9496. "type": "github"
  9497. }
  9498. ],
  9499. "time": "2023-02-03T06:03:51+00:00"
  9500. },
  9501. {
  9502. "name": "sebastian/exporter",
  9503. "version": "4.0.6",
  9504. "source": {
  9505. "type": "git",
  9506. "url": "https://github.com/sebastianbergmann/exporter.git",
  9507. "reference": "78c00df8f170e02473b682df15bfcdacc3d32d72"
  9508. },
  9509. "dist": {
  9510. "type": "zip",
  9511. "url": "https://api.github.com/repos/sebastianbergmann/exporter/zipball/78c00df8f170e02473b682df15bfcdacc3d32d72",
  9512. "reference": "78c00df8f170e02473b682df15bfcdacc3d32d72",
  9513. "shasum": ""
  9514. },
  9515. "require": {
  9516. "php": ">=7.3",
  9517. "sebastian/recursion-context": "^4.0"
  9518. },
  9519. "require-dev": {
  9520. "ext-mbstring": "*",
  9521. "phpunit/phpunit": "^9.3"
  9522. },
  9523. "type": "library",
  9524. "extra": {
  9525. "branch-alias": {
  9526. "dev-master": "4.0-dev"
  9527. }
  9528. },
  9529. "autoload": {
  9530. "classmap": [
  9531. "src/"
  9532. ]
  9533. },
  9534. "notification-url": "https://packagist.org/downloads/",
  9535. "license": [
  9536. "BSD-3-Clause"
  9537. ],
  9538. "authors": [
  9539. {
  9540. "name": "Sebastian Bergmann",
  9541. "email": "sebastian@phpunit.de"
  9542. },
  9543. {
  9544. "name": "Jeff Welch",
  9545. "email": "whatthejeff@gmail.com"
  9546. },
  9547. {
  9548. "name": "Volker Dusch",
  9549. "email": "github@wallbash.com"
  9550. },
  9551. {
  9552. "name": "Adam Harvey",
  9553. "email": "aharvey@php.net"
  9554. },
  9555. {
  9556. "name": "Bernhard Schussek",
  9557. "email": "bschussek@gmail.com"
  9558. }
  9559. ],
  9560. "description": "Provides the functionality to export PHP variables for visualization",
  9561. "homepage": "https://www.github.com/sebastianbergmann/exporter",
  9562. "keywords": [
  9563. "export",
  9564. "exporter"
  9565. ],
  9566. "support": {
  9567. "issues": "https://github.com/sebastianbergmann/exporter/issues",
  9568. "source": "https://github.com/sebastianbergmann/exporter/tree/4.0.6"
  9569. },
  9570. "funding": [
  9571. {
  9572. "url": "https://github.com/sebastianbergmann",
  9573. "type": "github"
  9574. }
  9575. ],
  9576. "time": "2024-03-02T06:33:00+00:00"
  9577. },
  9578. {
  9579. "name": "sebastian/global-state",
  9580. "version": "5.0.7",
  9581. "source": {
  9582. "type": "git",
  9583. "url": "https://github.com/sebastianbergmann/global-state.git",
  9584. "reference": "bca7df1f32ee6fe93b4d4a9abbf69e13a4ada2c9"
  9585. },
  9586. "dist": {
  9587. "type": "zip",
  9588. "url": "https://api.github.com/repos/sebastianbergmann/global-state/zipball/bca7df1f32ee6fe93b4d4a9abbf69e13a4ada2c9",
  9589. "reference": "bca7df1f32ee6fe93b4d4a9abbf69e13a4ada2c9",
  9590. "shasum": ""
  9591. },
  9592. "require": {
  9593. "php": ">=7.3",
  9594. "sebastian/object-reflector": "^2.0",
  9595. "sebastian/recursion-context": "^4.0"
  9596. },
  9597. "require-dev": {
  9598. "ext-dom": "*",
  9599. "phpunit/phpunit": "^9.3"
  9600. },
  9601. "suggest": {
  9602. "ext-uopz": "*"
  9603. },
  9604. "type": "library",
  9605. "extra": {
  9606. "branch-alias": {
  9607. "dev-master": "5.0-dev"
  9608. }
  9609. },
  9610. "autoload": {
  9611. "classmap": [
  9612. "src/"
  9613. ]
  9614. },
  9615. "notification-url": "https://packagist.org/downloads/",
  9616. "license": [
  9617. "BSD-3-Clause"
  9618. ],
  9619. "authors": [
  9620. {
  9621. "name": "Sebastian Bergmann",
  9622. "email": "sebastian@phpunit.de"
  9623. }
  9624. ],
  9625. "description": "Snapshotting of global state",
  9626. "homepage": "http://www.github.com/sebastianbergmann/global-state",
  9627. "keywords": [
  9628. "global state"
  9629. ],
  9630. "support": {
  9631. "issues": "https://github.com/sebastianbergmann/global-state/issues",
  9632. "source": "https://github.com/sebastianbergmann/global-state/tree/5.0.7"
  9633. },
  9634. "funding": [
  9635. {
  9636. "url": "https://github.com/sebastianbergmann",
  9637. "type": "github"
  9638. }
  9639. ],
  9640. "time": "2024-03-02T06:35:11+00:00"
  9641. },
  9642. {
  9643. "name": "sebastian/lines-of-code",
  9644. "version": "1.0.4",
  9645. "source": {
  9646. "type": "git",
  9647. "url": "https://github.com/sebastianbergmann/lines-of-code.git",
  9648. "reference": "e1e4a170560925c26d424b6a03aed157e7dcc5c5"
  9649. },
  9650. "dist": {
  9651. "type": "zip",
  9652. "url": "https://api.github.com/repos/sebastianbergmann/lines-of-code/zipball/e1e4a170560925c26d424b6a03aed157e7dcc5c5",
  9653. "reference": "e1e4a170560925c26d424b6a03aed157e7dcc5c5",
  9654. "shasum": ""
  9655. },
  9656. "require": {
  9657. "nikic/php-parser": "^4.18 || ^5.0",
  9658. "php": ">=7.3"
  9659. },
  9660. "require-dev": {
  9661. "phpunit/phpunit": "^9.3"
  9662. },
  9663. "type": "library",
  9664. "extra": {
  9665. "branch-alias": {
  9666. "dev-master": "1.0-dev"
  9667. }
  9668. },
  9669. "autoload": {
  9670. "classmap": [
  9671. "src/"
  9672. ]
  9673. },
  9674. "notification-url": "https://packagist.org/downloads/",
  9675. "license": [
  9676. "BSD-3-Clause"
  9677. ],
  9678. "authors": [
  9679. {
  9680. "name": "Sebastian Bergmann",
  9681. "email": "sebastian@phpunit.de",
  9682. "role": "lead"
  9683. }
  9684. ],
  9685. "description": "Library for counting the lines of code in PHP source code",
  9686. "homepage": "https://github.com/sebastianbergmann/lines-of-code",
  9687. "support": {
  9688. "issues": "https://github.com/sebastianbergmann/lines-of-code/issues",
  9689. "source": "https://github.com/sebastianbergmann/lines-of-code/tree/1.0.4"
  9690. },
  9691. "funding": [
  9692. {
  9693. "url": "https://github.com/sebastianbergmann",
  9694. "type": "github"
  9695. }
  9696. ],
  9697. "time": "2023-12-22T06:20:34+00:00"
  9698. },
  9699. {
  9700. "name": "sebastian/object-enumerator",
  9701. "version": "4.0.4",
  9702. "source": {
  9703. "type": "git",
  9704. "url": "https://github.com/sebastianbergmann/object-enumerator.git",
  9705. "reference": "5c9eeac41b290a3712d88851518825ad78f45c71"
  9706. },
  9707. "dist": {
  9708. "type": "zip",
  9709. "url": "https://api.github.com/repos/sebastianbergmann/object-enumerator/zipball/5c9eeac41b290a3712d88851518825ad78f45c71",
  9710. "reference": "5c9eeac41b290a3712d88851518825ad78f45c71",
  9711. "shasum": ""
  9712. },
  9713. "require": {
  9714. "php": ">=7.3",
  9715. "sebastian/object-reflector": "^2.0",
  9716. "sebastian/recursion-context": "^4.0"
  9717. },
  9718. "require-dev": {
  9719. "phpunit/phpunit": "^9.3"
  9720. },
  9721. "type": "library",
  9722. "extra": {
  9723. "branch-alias": {
  9724. "dev-master": "4.0-dev"
  9725. }
  9726. },
  9727. "autoload": {
  9728. "classmap": [
  9729. "src/"
  9730. ]
  9731. },
  9732. "notification-url": "https://packagist.org/downloads/",
  9733. "license": [
  9734. "BSD-3-Clause"
  9735. ],
  9736. "authors": [
  9737. {
  9738. "name": "Sebastian Bergmann",
  9739. "email": "sebastian@phpunit.de"
  9740. }
  9741. ],
  9742. "description": "Traverses array structures and object graphs to enumerate all referenced objects",
  9743. "homepage": "https://github.com/sebastianbergmann/object-enumerator/",
  9744. "support": {
  9745. "issues": "https://github.com/sebastianbergmann/object-enumerator/issues",
  9746. "source": "https://github.com/sebastianbergmann/object-enumerator/tree/4.0.4"
  9747. },
  9748. "funding": [
  9749. {
  9750. "url": "https://github.com/sebastianbergmann",
  9751. "type": "github"
  9752. }
  9753. ],
  9754. "time": "2020-10-26T13:12:34+00:00"
  9755. },
  9756. {
  9757. "name": "sebastian/object-reflector",
  9758. "version": "2.0.4",
  9759. "source": {
  9760. "type": "git",
  9761. "url": "https://github.com/sebastianbergmann/object-reflector.git",
  9762. "reference": "b4f479ebdbf63ac605d183ece17d8d7fe49c15c7"
  9763. },
  9764. "dist": {
  9765. "type": "zip",
  9766. "url": "https://api.github.com/repos/sebastianbergmann/object-reflector/zipball/b4f479ebdbf63ac605d183ece17d8d7fe49c15c7",
  9767. "reference": "b4f479ebdbf63ac605d183ece17d8d7fe49c15c7",
  9768. "shasum": ""
  9769. },
  9770. "require": {
  9771. "php": ">=7.3"
  9772. },
  9773. "require-dev": {
  9774. "phpunit/phpunit": "^9.3"
  9775. },
  9776. "type": "library",
  9777. "extra": {
  9778. "branch-alias": {
  9779. "dev-master": "2.0-dev"
  9780. }
  9781. },
  9782. "autoload": {
  9783. "classmap": [
  9784. "src/"
  9785. ]
  9786. },
  9787. "notification-url": "https://packagist.org/downloads/",
  9788. "license": [
  9789. "BSD-3-Clause"
  9790. ],
  9791. "authors": [
  9792. {
  9793. "name": "Sebastian Bergmann",
  9794. "email": "sebastian@phpunit.de"
  9795. }
  9796. ],
  9797. "description": "Allows reflection of object attributes, including inherited and non-public ones",
  9798. "homepage": "https://github.com/sebastianbergmann/object-reflector/",
  9799. "support": {
  9800. "issues": "https://github.com/sebastianbergmann/object-reflector/issues",
  9801. "source": "https://github.com/sebastianbergmann/object-reflector/tree/2.0.4"
  9802. },
  9803. "funding": [
  9804. {
  9805. "url": "https://github.com/sebastianbergmann",
  9806. "type": "github"
  9807. }
  9808. ],
  9809. "time": "2020-10-26T13:14:26+00:00"
  9810. },
  9811. {
  9812. "name": "sebastian/recursion-context",
  9813. "version": "4.0.5",
  9814. "source": {
  9815. "type": "git",
  9816. "url": "https://github.com/sebastianbergmann/recursion-context.git",
  9817. "reference": "e75bd0f07204fec2a0af9b0f3cfe97d05f92efc1"
  9818. },
  9819. "dist": {
  9820. "type": "zip",
  9821. "url": "https://api.github.com/repos/sebastianbergmann/recursion-context/zipball/e75bd0f07204fec2a0af9b0f3cfe97d05f92efc1",
  9822. "reference": "e75bd0f07204fec2a0af9b0f3cfe97d05f92efc1",
  9823. "shasum": ""
  9824. },
  9825. "require": {
  9826. "php": ">=7.3"
  9827. },
  9828. "require-dev": {
  9829. "phpunit/phpunit": "^9.3"
  9830. },
  9831. "type": "library",
  9832. "extra": {
  9833. "branch-alias": {
  9834. "dev-master": "4.0-dev"
  9835. }
  9836. },
  9837. "autoload": {
  9838. "classmap": [
  9839. "src/"
  9840. ]
  9841. },
  9842. "notification-url": "https://packagist.org/downloads/",
  9843. "license": [
  9844. "BSD-3-Clause"
  9845. ],
  9846. "authors": [
  9847. {
  9848. "name": "Sebastian Bergmann",
  9849. "email": "sebastian@phpunit.de"
  9850. },
  9851. {
  9852. "name": "Jeff Welch",
  9853. "email": "whatthejeff@gmail.com"
  9854. },
  9855. {
  9856. "name": "Adam Harvey",
  9857. "email": "aharvey@php.net"
  9858. }
  9859. ],
  9860. "description": "Provides functionality to recursively process PHP variables",
  9861. "homepage": "https://github.com/sebastianbergmann/recursion-context",
  9862. "support": {
  9863. "issues": "https://github.com/sebastianbergmann/recursion-context/issues",
  9864. "source": "https://github.com/sebastianbergmann/recursion-context/tree/4.0.5"
  9865. },
  9866. "funding": [
  9867. {
  9868. "url": "https://github.com/sebastianbergmann",
  9869. "type": "github"
  9870. }
  9871. ],
  9872. "time": "2023-02-03T06:07:39+00:00"
  9873. },
  9874. {
  9875. "name": "sebastian/resource-operations",
  9876. "version": "3.0.4",
  9877. "source": {
  9878. "type": "git",
  9879. "url": "https://github.com/sebastianbergmann/resource-operations.git",
  9880. "reference": "05d5692a7993ecccd56a03e40cd7e5b09b1d404e"
  9881. },
  9882. "dist": {
  9883. "type": "zip",
  9884. "url": "https://api.github.com/repos/sebastianbergmann/resource-operations/zipball/05d5692a7993ecccd56a03e40cd7e5b09b1d404e",
  9885. "reference": "05d5692a7993ecccd56a03e40cd7e5b09b1d404e",
  9886. "shasum": ""
  9887. },
  9888. "require": {
  9889. "php": ">=7.3"
  9890. },
  9891. "require-dev": {
  9892. "phpunit/phpunit": "^9.0"
  9893. },
  9894. "type": "library",
  9895. "extra": {
  9896. "branch-alias": {
  9897. "dev-main": "3.0-dev"
  9898. }
  9899. },
  9900. "autoload": {
  9901. "classmap": [
  9902. "src/"
  9903. ]
  9904. },
  9905. "notification-url": "https://packagist.org/downloads/",
  9906. "license": [
  9907. "BSD-3-Clause"
  9908. ],
  9909. "authors": [
  9910. {
  9911. "name": "Sebastian Bergmann",
  9912. "email": "sebastian@phpunit.de"
  9913. }
  9914. ],
  9915. "description": "Provides a list of PHP built-in functions that operate on resources",
  9916. "homepage": "https://www.github.com/sebastianbergmann/resource-operations",
  9917. "support": {
  9918. "source": "https://github.com/sebastianbergmann/resource-operations/tree/3.0.4"
  9919. },
  9920. "funding": [
  9921. {
  9922. "url": "https://github.com/sebastianbergmann",
  9923. "type": "github"
  9924. }
  9925. ],
  9926. "time": "2024-03-14T16:00:52+00:00"
  9927. },
  9928. {
  9929. "name": "sebastian/type",
  9930. "version": "3.2.1",
  9931. "source": {
  9932. "type": "git",
  9933. "url": "https://github.com/sebastianbergmann/type.git",
  9934. "reference": "75e2c2a32f5e0b3aef905b9ed0b179b953b3d7c7"
  9935. },
  9936. "dist": {
  9937. "type": "zip",
  9938. "url": "https://api.github.com/repos/sebastianbergmann/type/zipball/75e2c2a32f5e0b3aef905b9ed0b179b953b3d7c7",
  9939. "reference": "75e2c2a32f5e0b3aef905b9ed0b179b953b3d7c7",
  9940. "shasum": ""
  9941. },
  9942. "require": {
  9943. "php": ">=7.3"
  9944. },
  9945. "require-dev": {
  9946. "phpunit/phpunit": "^9.5"
  9947. },
  9948. "type": "library",
  9949. "extra": {
  9950. "branch-alias": {
  9951. "dev-master": "3.2-dev"
  9952. }
  9953. },
  9954. "autoload": {
  9955. "classmap": [
  9956. "src/"
  9957. ]
  9958. },
  9959. "notification-url": "https://packagist.org/downloads/",
  9960. "license": [
  9961. "BSD-3-Clause"
  9962. ],
  9963. "authors": [
  9964. {
  9965. "name": "Sebastian Bergmann",
  9966. "email": "sebastian@phpunit.de",
  9967. "role": "lead"
  9968. }
  9969. ],
  9970. "description": "Collection of value objects that represent the types of the PHP type system",
  9971. "homepage": "https://github.com/sebastianbergmann/type",
  9972. "support": {
  9973. "issues": "https://github.com/sebastianbergmann/type/issues",
  9974. "source": "https://github.com/sebastianbergmann/type/tree/3.2.1"
  9975. },
  9976. "funding": [
  9977. {
  9978. "url": "https://github.com/sebastianbergmann",
  9979. "type": "github"
  9980. }
  9981. ],
  9982. "time": "2023-02-03T06:13:03+00:00"
  9983. },
  9984. {
  9985. "name": "sebastian/version",
  9986. "version": "3.0.2",
  9987. "source": {
  9988. "type": "git",
  9989. "url": "https://github.com/sebastianbergmann/version.git",
  9990. "reference": "c6c1022351a901512170118436c764e473f6de8c"
  9991. },
  9992. "dist": {
  9993. "type": "zip",
  9994. "url": "https://api.github.com/repos/sebastianbergmann/version/zipball/c6c1022351a901512170118436c764e473f6de8c",
  9995. "reference": "c6c1022351a901512170118436c764e473f6de8c",
  9996. "shasum": ""
  9997. },
  9998. "require": {
  9999. "php": ">=7.3"
  10000. },
  10001. "type": "library",
  10002. "extra": {
  10003. "branch-alias": {
  10004. "dev-master": "3.0-dev"
  10005. }
  10006. },
  10007. "autoload": {
  10008. "classmap": [
  10009. "src/"
  10010. ]
  10011. },
  10012. "notification-url": "https://packagist.org/downloads/",
  10013. "license": [
  10014. "BSD-3-Clause"
  10015. ],
  10016. "authors": [
  10017. {
  10018. "name": "Sebastian Bergmann",
  10019. "email": "sebastian@phpunit.de",
  10020. "role": "lead"
  10021. }
  10022. ],
  10023. "description": "Library that helps with managing the version number of Git-hosted PHP projects",
  10024. "homepage": "https://github.com/sebastianbergmann/version",
  10025. "support": {
  10026. "issues": "https://github.com/sebastianbergmann/version/issues",
  10027. "source": "https://github.com/sebastianbergmann/version/tree/3.0.2"
  10028. },
  10029. "funding": [
  10030. {
  10031. "url": "https://github.com/sebastianbergmann",
  10032. "type": "github"
  10033. }
  10034. ],
  10035. "time": "2020-09-28T06:39:44+00:00"
  10036. },
  10037. {
  10038. "name": "symfony/browser-kit",
  10039. "version": "v7.1.1",
  10040. "source": {
  10041. "type": "git",
  10042. "url": "https://github.com/symfony/browser-kit.git",
  10043. "reference": "9c13742e3175b5815e272b981876ae329bec2040"
  10044. },
  10045. "dist": {
  10046. "type": "zip",
  10047. "url": "https://api.github.com/repos/symfony/browser-kit/zipball/9c13742e3175b5815e272b981876ae329bec2040",
  10048. "reference": "9c13742e3175b5815e272b981876ae329bec2040",
  10049. "shasum": ""
  10050. },
  10051. "require": {
  10052. "php": ">=8.2",
  10053. "symfony/dom-crawler": "^6.4|^7.0"
  10054. },
  10055. "require-dev": {
  10056. "symfony/css-selector": "^6.4|^7.0",
  10057. "symfony/http-client": "^6.4|^7.0",
  10058. "symfony/mime": "^6.4|^7.0",
  10059. "symfony/process": "^6.4|^7.0"
  10060. },
  10061. "type": "library",
  10062. "autoload": {
  10063. "psr-4": {
  10064. "Symfony\\Component\\BrowserKit\\": ""
  10065. },
  10066. "exclude-from-classmap": [
  10067. "/Tests/"
  10068. ]
  10069. },
  10070. "notification-url": "https://packagist.org/downloads/",
  10071. "license": [
  10072. "MIT"
  10073. ],
  10074. "authors": [
  10075. {
  10076. "name": "Fabien Potencier",
  10077. "email": "fabien@symfony.com"
  10078. },
  10079. {
  10080. "name": "Symfony Community",
  10081. "homepage": "https://symfony.com/contributors"
  10082. }
  10083. ],
  10084. "description": "Simulates the behavior of a web browser, allowing you to make requests, click on links and submit forms programmatically",
  10085. "homepage": "https://symfony.com",
  10086. "support": {
  10087. "source": "https://github.com/symfony/browser-kit/tree/v7.1.1"
  10088. },
  10089. "funding": [
  10090. {
  10091. "url": "https://symfony.com/sponsor",
  10092. "type": "custom"
  10093. },
  10094. {
  10095. "url": "https://github.com/fabpot",
  10096. "type": "github"
  10097. },
  10098. {
  10099. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  10100. "type": "tidelift"
  10101. }
  10102. ],
  10103. "time": "2024-05-31T14:57:53+00:00"
  10104. },
  10105. {
  10106. "name": "symfony/css-selector",
  10107. "version": "v7.1.1",
  10108. "source": {
  10109. "type": "git",
  10110. "url": "https://github.com/symfony/css-selector.git",
  10111. "reference": "1c7cee86c6f812896af54434f8ce29c8d94f9ff4"
  10112. },
  10113. "dist": {
  10114. "type": "zip",
  10115. "url": "https://api.github.com/repos/symfony/css-selector/zipball/1c7cee86c6f812896af54434f8ce29c8d94f9ff4",
  10116. "reference": "1c7cee86c6f812896af54434f8ce29c8d94f9ff4",
  10117. "shasum": ""
  10118. },
  10119. "require": {
  10120. "php": ">=8.2"
  10121. },
  10122. "type": "library",
  10123. "autoload": {
  10124. "psr-4": {
  10125. "Symfony\\Component\\CssSelector\\": ""
  10126. },
  10127. "exclude-from-classmap": [
  10128. "/Tests/"
  10129. ]
  10130. },
  10131. "notification-url": "https://packagist.org/downloads/",
  10132. "license": [
  10133. "MIT"
  10134. ],
  10135. "authors": [
  10136. {
  10137. "name": "Fabien Potencier",
  10138. "email": "fabien@symfony.com"
  10139. },
  10140. {
  10141. "name": "Jean-François Simon",
  10142. "email": "jeanfrancois.simon@sensiolabs.com"
  10143. },
  10144. {
  10145. "name": "Symfony Community",
  10146. "homepage": "https://symfony.com/contributors"
  10147. }
  10148. ],
  10149. "description": "Converts CSS selectors to XPath expressions",
  10150. "homepage": "https://symfony.com",
  10151. "support": {
  10152. "source": "https://github.com/symfony/css-selector/tree/v7.1.1"
  10153. },
  10154. "funding": [
  10155. {
  10156. "url": "https://symfony.com/sponsor",
  10157. "type": "custom"
  10158. },
  10159. {
  10160. "url": "https://github.com/fabpot",
  10161. "type": "github"
  10162. },
  10163. {
  10164. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  10165. "type": "tidelift"
  10166. }
  10167. ],
  10168. "time": "2024-05-31T14:57:53+00:00"
  10169. },
  10170. {
  10171. "name": "symfony/debug-bundle",
  10172. "version": "v7.1.1",
  10173. "source": {
  10174. "type": "git",
  10175. "url": "https://github.com/symfony/debug-bundle.git",
  10176. "reference": "aa024d28ce7ce0c6a16ee57c066838bece92893f"
  10177. },
  10178. "dist": {
  10179. "type": "zip",
  10180. "url": "https://api.github.com/repos/symfony/debug-bundle/zipball/aa024d28ce7ce0c6a16ee57c066838bece92893f",
  10181. "reference": "aa024d28ce7ce0c6a16ee57c066838bece92893f",
  10182. "shasum": ""
  10183. },
  10184. "require": {
  10185. "ext-xml": "*",
  10186. "php": ">=8.2",
  10187. "symfony/dependency-injection": "^6.4|^7.0",
  10188. "symfony/http-kernel": "^6.4|^7.0",
  10189. "symfony/twig-bridge": "^6.4|^7.0",
  10190. "symfony/var-dumper": "^6.4|^7.0"
  10191. },
  10192. "conflict": {
  10193. "symfony/config": "<6.4",
  10194. "symfony/dependency-injection": "<6.4"
  10195. },
  10196. "require-dev": {
  10197. "symfony/config": "^6.4|^7.0",
  10198. "symfony/web-profiler-bundle": "^6.4|^7.0"
  10199. },
  10200. "type": "symfony-bundle",
  10201. "autoload": {
  10202. "psr-4": {
  10203. "Symfony\\Bundle\\DebugBundle\\": ""
  10204. },
  10205. "exclude-from-classmap": [
  10206. "/Tests/"
  10207. ]
  10208. },
  10209. "notification-url": "https://packagist.org/downloads/",
  10210. "license": [
  10211. "MIT"
  10212. ],
  10213. "authors": [
  10214. {
  10215. "name": "Fabien Potencier",
  10216. "email": "fabien@symfony.com"
  10217. },
  10218. {
  10219. "name": "Symfony Community",
  10220. "homepage": "https://symfony.com/contributors"
  10221. }
  10222. ],
  10223. "description": "Provides a tight integration of the Symfony VarDumper component and the ServerLogCommand from MonologBridge into the Symfony full-stack framework",
  10224. "homepage": "https://symfony.com",
  10225. "support": {
  10226. "source": "https://github.com/symfony/debug-bundle/tree/v7.1.1"
  10227. },
  10228. "funding": [
  10229. {
  10230. "url": "https://symfony.com/sponsor",
  10231. "type": "custom"
  10232. },
  10233. {
  10234. "url": "https://github.com/fabpot",
  10235. "type": "github"
  10236. },
  10237. {
  10238. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  10239. "type": "tidelift"
  10240. }
  10241. ],
  10242. "time": "2024-05-31T14:55:39+00:00"
  10243. },
  10244. {
  10245. "name": "symfony/dom-crawler",
  10246. "version": "v7.1.1",
  10247. "source": {
  10248. "type": "git",
  10249. "url": "https://github.com/symfony/dom-crawler.git",
  10250. "reference": "01ce8174447f1f1dd33a5854b01beef79061d9fa"
  10251. },
  10252. "dist": {
  10253. "type": "zip",
  10254. "url": "https://api.github.com/repos/symfony/dom-crawler/zipball/01ce8174447f1f1dd33a5854b01beef79061d9fa",
  10255. "reference": "01ce8174447f1f1dd33a5854b01beef79061d9fa",
  10256. "shasum": ""
  10257. },
  10258. "require": {
  10259. "masterminds/html5": "^2.6",
  10260. "php": ">=8.2",
  10261. "symfony/polyfill-ctype": "~1.8",
  10262. "symfony/polyfill-mbstring": "~1.0"
  10263. },
  10264. "require-dev": {
  10265. "symfony/css-selector": "^6.4|^7.0"
  10266. },
  10267. "type": "library",
  10268. "autoload": {
  10269. "psr-4": {
  10270. "Symfony\\Component\\DomCrawler\\": ""
  10271. },
  10272. "exclude-from-classmap": [
  10273. "/Tests/"
  10274. ]
  10275. },
  10276. "notification-url": "https://packagist.org/downloads/",
  10277. "license": [
  10278. "MIT"
  10279. ],
  10280. "authors": [
  10281. {
  10282. "name": "Fabien Potencier",
  10283. "email": "fabien@symfony.com"
  10284. },
  10285. {
  10286. "name": "Symfony Community",
  10287. "homepage": "https://symfony.com/contributors"
  10288. }
  10289. ],
  10290. "description": "Eases DOM navigation for HTML and XML documents",
  10291. "homepage": "https://symfony.com",
  10292. "support": {
  10293. "source": "https://github.com/symfony/dom-crawler/tree/v7.1.1"
  10294. },
  10295. "funding": [
  10296. {
  10297. "url": "https://symfony.com/sponsor",
  10298. "type": "custom"
  10299. },
  10300. {
  10301. "url": "https://github.com/fabpot",
  10302. "type": "github"
  10303. },
  10304. {
  10305. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  10306. "type": "tidelift"
  10307. }
  10308. ],
  10309. "time": "2024-05-31T14:57:53+00:00"
  10310. },
  10311. {
  10312. "name": "symfony/maker-bundle",
  10313. "version": "v1.60.0",
  10314. "source": {
  10315. "type": "git",
  10316. "url": "https://github.com/symfony/maker-bundle.git",
  10317. "reference": "c305a02a22974670f359d4274c9431e1a191f559"
  10318. },
  10319. "dist": {
  10320. "type": "zip",
  10321. "url": "https://api.github.com/repos/symfony/maker-bundle/zipball/c305a02a22974670f359d4274c9431e1a191f559",
  10322. "reference": "c305a02a22974670f359d4274c9431e1a191f559",
  10323. "shasum": ""
  10324. },
  10325. "require": {
  10326. "doctrine/inflector": "^2.0",
  10327. "nikic/php-parser": "^4.18|^5.0",
  10328. "php": ">=8.1",
  10329. "symfony/config": "^6.4|^7.0",
  10330. "symfony/console": "^6.4|^7.0",
  10331. "symfony/dependency-injection": "^6.4|^7.0",
  10332. "symfony/deprecation-contracts": "^2.2|^3",
  10333. "symfony/filesystem": "^6.4|^7.0",
  10334. "symfony/finder": "^6.4|^7.0",
  10335. "symfony/framework-bundle": "^6.4|^7.0",
  10336. "symfony/http-kernel": "^6.4|^7.0",
  10337. "symfony/process": "^6.4|^7.0"
  10338. },
  10339. "conflict": {
  10340. "doctrine/doctrine-bundle": "<2.10",
  10341. "doctrine/orm": "<2.15"
  10342. },
  10343. "require-dev": {
  10344. "composer/semver": "^3.0",
  10345. "doctrine/doctrine-bundle": "^2.5.0",
  10346. "doctrine/orm": "^2.15|^3",
  10347. "symfony/http-client": "^6.4|^7.0",
  10348. "symfony/phpunit-bridge": "^6.4.1|^7.0",
  10349. "symfony/security-core": "^6.4|^7.0",
  10350. "symfony/yaml": "^6.4|^7.0",
  10351. "twig/twig": "^3.0|^4.x-dev"
  10352. },
  10353. "type": "symfony-bundle",
  10354. "extra": {
  10355. "branch-alias": {
  10356. "dev-main": "1.x-dev"
  10357. }
  10358. },
  10359. "autoload": {
  10360. "psr-4": {
  10361. "Symfony\\Bundle\\MakerBundle\\": "src/"
  10362. }
  10363. },
  10364. "notification-url": "https://packagist.org/downloads/",
  10365. "license": [
  10366. "MIT"
  10367. ],
  10368. "authors": [
  10369. {
  10370. "name": "Symfony Community",
  10371. "homepage": "https://symfony.com/contributors"
  10372. }
  10373. ],
  10374. "description": "Symfony Maker helps you create empty commands, controllers, form classes, tests and more so you can forget about writing boilerplate code.",
  10375. "homepage": "https://symfony.com/doc/current/bundles/SymfonyMakerBundle/index.html",
  10376. "keywords": [
  10377. "code generator",
  10378. "dev",
  10379. "generator",
  10380. "scaffold",
  10381. "scaffolding"
  10382. ],
  10383. "support": {
  10384. "issues": "https://github.com/symfony/maker-bundle/issues",
  10385. "source": "https://github.com/symfony/maker-bundle/tree/v1.60.0"
  10386. },
  10387. "funding": [
  10388. {
  10389. "url": "https://symfony.com/sponsor",
  10390. "type": "custom"
  10391. },
  10392. {
  10393. "url": "https://github.com/fabpot",
  10394. "type": "github"
  10395. },
  10396. {
  10397. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  10398. "type": "tidelift"
  10399. }
  10400. ],
  10401. "time": "2024-06-10T06:03:18+00:00"
  10402. },
  10403. {
  10404. "name": "symfony/phpunit-bridge",
  10405. "version": "v7.1.3",
  10406. "source": {
  10407. "type": "git",
  10408. "url": "https://github.com/symfony/phpunit-bridge.git",
  10409. "reference": "e823122d31935eb711e2767c31f3d71cb0b87fb1"
  10410. },
  10411. "dist": {
  10412. "type": "zip",
  10413. "url": "https://api.github.com/repos/symfony/phpunit-bridge/zipball/e823122d31935eb711e2767c31f3d71cb0b87fb1",
  10414. "reference": "e823122d31935eb711e2767c31f3d71cb0b87fb1",
  10415. "shasum": ""
  10416. },
  10417. "require": {
  10418. "php": ">=7.2.5"
  10419. },
  10420. "conflict": {
  10421. "phpunit/phpunit": "<7.5|9.1.2"
  10422. },
  10423. "require-dev": {
  10424. "symfony/deprecation-contracts": "^2.5|^3.0",
  10425. "symfony/error-handler": "^5.4|^6.4|^7.0",
  10426. "symfony/polyfill-php81": "^1.27"
  10427. },
  10428. "bin": [
  10429. "bin/simple-phpunit"
  10430. ],
  10431. "type": "symfony-bridge",
  10432. "extra": {
  10433. "thanks": {
  10434. "name": "phpunit/phpunit",
  10435. "url": "https://github.com/sebastianbergmann/phpunit"
  10436. }
  10437. },
  10438. "autoload": {
  10439. "files": [
  10440. "bootstrap.php"
  10441. ],
  10442. "psr-4": {
  10443. "Symfony\\Bridge\\PhpUnit\\": ""
  10444. },
  10445. "exclude-from-classmap": [
  10446. "/Tests/",
  10447. "/bin/"
  10448. ]
  10449. },
  10450. "notification-url": "https://packagist.org/downloads/",
  10451. "license": [
  10452. "MIT"
  10453. ],
  10454. "authors": [
  10455. {
  10456. "name": "Nicolas Grekas",
  10457. "email": "p@tchwork.com"
  10458. },
  10459. {
  10460. "name": "Symfony Community",
  10461. "homepage": "https://symfony.com/contributors"
  10462. }
  10463. ],
  10464. "description": "Provides utilities for PHPUnit, especially user deprecation notices management",
  10465. "homepage": "https://symfony.com",
  10466. "support": {
  10467. "source": "https://github.com/symfony/phpunit-bridge/tree/v7.1.3"
  10468. },
  10469. "funding": [
  10470. {
  10471. "url": "https://symfony.com/sponsor",
  10472. "type": "custom"
  10473. },
  10474. {
  10475. "url": "https://github.com/fabpot",
  10476. "type": "github"
  10477. },
  10478. {
  10479. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  10480. "type": "tidelift"
  10481. }
  10482. ],
  10483. "time": "2024-07-26T12:41:01+00:00"
  10484. },
  10485. {
  10486. "name": "symfony/web-profiler-bundle",
  10487. "version": "v7.1.3",
  10488. "source": {
  10489. "type": "git",
  10490. "url": "https://github.com/symfony/web-profiler-bundle.git",
  10491. "reference": "b9357f73d2c14dcd36783a67386f510654828668"
  10492. },
  10493. "dist": {
  10494. "type": "zip",
  10495. "url": "https://api.github.com/repos/symfony/web-profiler-bundle/zipball/b9357f73d2c14dcd36783a67386f510654828668",
  10496. "reference": "b9357f73d2c14dcd36783a67386f510654828668",
  10497. "shasum": ""
  10498. },
  10499. "require": {
  10500. "php": ">=8.2",
  10501. "symfony/config": "^6.4|^7.0",
  10502. "symfony/framework-bundle": "^6.4|^7.0",
  10503. "symfony/http-kernel": "^6.4|^7.0",
  10504. "symfony/routing": "^6.4|^7.0",
  10505. "symfony/twig-bundle": "^6.4|^7.0",
  10506. "twig/twig": "^3.10"
  10507. },
  10508. "conflict": {
  10509. "symfony/form": "<6.4",
  10510. "symfony/mailer": "<6.4",
  10511. "symfony/messenger": "<6.4"
  10512. },
  10513. "require-dev": {
  10514. "symfony/browser-kit": "^6.4|^7.0",
  10515. "symfony/console": "^6.4|^7.0",
  10516. "symfony/css-selector": "^6.4|^7.0",
  10517. "symfony/stopwatch": "^6.4|^7.0"
  10518. },
  10519. "type": "symfony-bundle",
  10520. "autoload": {
  10521. "psr-4": {
  10522. "Symfony\\Bundle\\WebProfilerBundle\\": ""
  10523. },
  10524. "exclude-from-classmap": [
  10525. "/Tests/"
  10526. ]
  10527. },
  10528. "notification-url": "https://packagist.org/downloads/",
  10529. "license": [
  10530. "MIT"
  10531. ],
  10532. "authors": [
  10533. {
  10534. "name": "Fabien Potencier",
  10535. "email": "fabien@symfony.com"
  10536. },
  10537. {
  10538. "name": "Symfony Community",
  10539. "homepage": "https://symfony.com/contributors"
  10540. }
  10541. ],
  10542. "description": "Provides a development tool that gives detailed information about the execution of any request",
  10543. "homepage": "https://symfony.com",
  10544. "keywords": [
  10545. "dev"
  10546. ],
  10547. "support": {
  10548. "source": "https://github.com/symfony/web-profiler-bundle/tree/v7.1.3"
  10549. },
  10550. "funding": [
  10551. {
  10552. "url": "https://symfony.com/sponsor",
  10553. "type": "custom"
  10554. },
  10555. {
  10556. "url": "https://github.com/fabpot",
  10557. "type": "github"
  10558. },
  10559. {
  10560. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  10561. "type": "tidelift"
  10562. }
  10563. ],
  10564. "time": "2024-07-26T12:41:01+00:00"
  10565. },
  10566. {
  10567. "name": "theseer/tokenizer",
  10568. "version": "1.2.3",
  10569. "source": {
  10570. "type": "git",
  10571. "url": "https://github.com/theseer/tokenizer.git",
  10572. "reference": "737eda637ed5e28c3413cb1ebe8bb52cbf1ca7a2"
  10573. },
  10574. "dist": {
  10575. "type": "zip",
  10576. "url": "https://api.github.com/repos/theseer/tokenizer/zipball/737eda637ed5e28c3413cb1ebe8bb52cbf1ca7a2",
  10577. "reference": "737eda637ed5e28c3413cb1ebe8bb52cbf1ca7a2",
  10578. "shasum": ""
  10579. },
  10580. "require": {
  10581. "ext-dom": "*",
  10582. "ext-tokenizer": "*",
  10583. "ext-xmlwriter": "*",
  10584. "php": "^7.2 || ^8.0"
  10585. },
  10586. "type": "library",
  10587. "autoload": {
  10588. "classmap": [
  10589. "src/"
  10590. ]
  10591. },
  10592. "notification-url": "https://packagist.org/downloads/",
  10593. "license": [
  10594. "BSD-3-Clause"
  10595. ],
  10596. "authors": [
  10597. {
  10598. "name": "Arne Blankerts",
  10599. "email": "arne@blankerts.de",
  10600. "role": "Developer"
  10601. }
  10602. ],
  10603. "description": "A small library for converting tokenized PHP source code into XML and potentially other formats",
  10604. "support": {
  10605. "issues": "https://github.com/theseer/tokenizer/issues",
  10606. "source": "https://github.com/theseer/tokenizer/tree/1.2.3"
  10607. },
  10608. "funding": [
  10609. {
  10610. "url": "https://github.com/theseer",
  10611. "type": "github"
  10612. }
  10613. ],
  10614. "time": "2024-03-03T12:36:25+00:00"
  10615. }
  10616. ],
  10617. "aliases": [],
  10618. "minimum-stability": "stable",
  10619. "stability-flags": [],
  10620. "prefer-stable": false,
  10621. "prefer-lowest": false,
  10622. "platform": {
  10623. "php": "^8.2",
  10624. "ext-ctype": "*",
  10625. "ext-iconv": "*"
  10626. },
  10627. "platform-dev": [],
  10628. "platform-overrides": {
  10629. "php": "8.2"
  10630. },
  10631. "plugin-api-version": "2.6.0"
  10632. }