composer.lock 233 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298529953005301530253035304530553065307530853095310531153125313531453155316531753185319532053215322532353245325532653275328532953305331533253335334533553365337533853395340534153425343534453455346534753485349535053515352535353545355535653575358535953605361536253635364536553665367536853695370537153725373537453755376537753785379538053815382538353845385538653875388538953905391539253935394539553965397539853995400540154025403540454055406540754085409541054115412541354145415541654175418541954205421542254235424542554265427542854295430543154325433543454355436543754385439544054415442544354445445544654475448544954505451545254535454545554565457545854595460546154625463546454655466546754685469547054715472547354745475547654775478547954805481548254835484548554865487548854895490549154925493549454955496549754985499550055015502550355045505550655075508550955105511551255135514551555165517551855195520552155225523552455255526552755285529553055315532553355345535553655375538553955405541554255435544554555465547554855495550555155525553555455555556555755585559556055615562556355645565556655675568556955705571557255735574557555765577557855795580558155825583558455855586558755885589559055915592559355945595559655975598559956005601560256035604560556065607560856095610561156125613561456155616561756185619562056215622562356245625562656275628562956305631563256335634563556365637563856395640564156425643564456455646564756485649565056515652565356545655565656575658565956605661566256635664566556665667566856695670567156725673567456755676567756785679568056815682568356845685568656875688568956905691569256935694569556965697569856995700570157025703570457055706570757085709571057115712571357145715571657175718571957205721572257235724572557265727572857295730573157325733573457355736573757385739574057415742574357445745574657475748574957505751575257535754575557565757575857595760576157625763576457655766576757685769577057715772577357745775577657775778577957805781578257835784578557865787578857895790579157925793579457955796579757985799580058015802580358045805580658075808580958105811581258135814581558165817581858195820582158225823582458255826582758285829583058315832583358345835583658375838583958405841584258435844584558465847584858495850585158525853585458555856585758585859586058615862586358645865586658675868586958705871587258735874587558765877587858795880588158825883588458855886588758885889589058915892589358945895589658975898589959005901590259035904590559065907590859095910591159125913591459155916591759185919592059215922592359245925592659275928592959305931593259335934593559365937593859395940594159425943594459455946594759485949595059515952595359545955595659575958595959605961596259635964596559665967596859695970597159725973597459755976597759785979598059815982598359845985598659875988598959905991599259935994599559965997599859996000600160026003600460056006600760086009601060116012601360146015601660176018601960206021602260236024602560266027602860296030603160326033603460356036603760386039604060416042604360446045604660476048604960506051605260536054605560566057605860596060606160626063606460656066606760686069607060716072607360746075607660776078607960806081608260836084608560866087608860896090609160926093609460956096609760986099610061016102610361046105610661076108610961106111611261136114611561166117611861196120612161226123612461256126612761286129613061316132613361346135613661376138613961406141614261436144614561466147614861496150615161526153615461556156615761586159616061616162616361646165616661676168616961706171617261736174617561766177617861796180618161826183618461856186618761886189619061916192619361946195619661976198619962006201620262036204620562066207620862096210621162126213621462156216621762186219622062216222622362246225622662276228622962306231623262336234623562366237623862396240624162426243624462456246624762486249625062516252625362546255625662576258625962606261626262636264626562666267626862696270627162726273627462756276627762786279628062816282628362846285628662876288628962906291629262936294629562966297629862996300630163026303630463056306630763086309631063116312631363146315631663176318631963206321632263236324632563266327632863296330633163326333633463356336633763386339634063416342634363446345634663476348634963506351635263536354635563566357635863596360636163626363636463656366636763686369637063716372637363746375637663776378637963806381638263836384638563866387638863896390639163926393639463956396639763986399640064016402640364046405640664076408
  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": "21152a7eb226c68bbb5f0af91881838b",
  8. "packages": [
  9. {
  10. "name": "altcha-org/altcha",
  11. "version": "v0.1.2",
  12. "source": {
  13. "type": "git",
  14. "url": "https://github.com/altcha-org/altcha-lib-php.git",
  15. "reference": "0f6104fed5005779eef799eeb01e640ab1d33bd6"
  16. },
  17. "dist": {
  18. "type": "zip",
  19. "url": "https://api.github.com/repos/altcha-org/altcha-lib-php/zipball/0f6104fed5005779eef799eeb01e640ab1d33bd6",
  20. "reference": "0f6104fed5005779eef799eeb01e640ab1d33bd6",
  21. "shasum": ""
  22. },
  23. "require": {
  24. "php": ">=7.4"
  25. },
  26. "require-dev": {
  27. "phpunit/phpunit": "^11.2"
  28. },
  29. "type": "library",
  30. "autoload": {
  31. "psr-4": {
  32. "AltchaOrg\\Altcha\\": "src/"
  33. }
  34. },
  35. "notification-url": "https://packagist.org/downloads/",
  36. "license": [
  37. "MIT"
  38. ],
  39. "authors": [
  40. {
  41. "name": "Daniel Regeci",
  42. "email": "536331+ovx@users.noreply.github.com"
  43. }
  44. ],
  45. "support": {
  46. "issues": "https://github.com/altcha-org/altcha-lib-php/issues",
  47. "source": "https://github.com/altcha-org/altcha-lib-php/tree/v0.1.2"
  48. },
  49. "time": "2024-07-28T14:39:28+00:00"
  50. },
  51. {
  52. "name": "api-platform/core",
  53. "version": "v3.3.12",
  54. "source": {
  55. "type": "git",
  56. "url": "https://github.com/api-platform/core.git",
  57. "reference": "e2eeb6b710f96542b75357a13d8d69ed4d8be5e2"
  58. },
  59. "dist": {
  60. "type": "zip",
  61. "url": "https://api.github.com/repos/api-platform/core/zipball/e2eeb6b710f96542b75357a13d8d69ed4d8be5e2",
  62. "reference": "e2eeb6b710f96542b75357a13d8d69ed4d8be5e2",
  63. "shasum": ""
  64. },
  65. "require": {
  66. "doctrine/inflector": "^1.0 || ^2.0",
  67. "php": ">=8.1",
  68. "psr/cache": "^1.0 || ^2.0 || ^3.0",
  69. "psr/container": "^1.0 || ^2.0",
  70. "symfony/deprecation-contracts": "^3.1",
  71. "symfony/http-foundation": "^6.4 || ^7.0",
  72. "symfony/http-kernel": "^6.4 || ^7.0",
  73. "symfony/property-access": "^6.4 || ^7.0",
  74. "symfony/property-info": "^6.4 || ^7.0",
  75. "symfony/serializer": "^6.4 || ^7.0",
  76. "symfony/translation-contracts": "^3.3",
  77. "symfony/web-link": "^6.4 || ^7.0",
  78. "willdurand/negotiation": "^3.0"
  79. },
  80. "conflict": {
  81. "doctrine/common": "<3.2.2",
  82. "doctrine/dbal": "<2.10",
  83. "doctrine/mongodb-odm": "<2.4",
  84. "doctrine/orm": "<2.14.0",
  85. "doctrine/persistence": "<1.3",
  86. "elasticsearch/elasticsearch": ">=8.0,<8.4",
  87. "phpspec/prophecy": "<1.15",
  88. "phpunit/phpunit": "<9.5",
  89. "symfony/framework-bundle": "6.4.6 || 7.0.6",
  90. "symfony/var-exporter": "<6.1.1"
  91. },
  92. "require-dev": {
  93. "behat/behat": "^3.11",
  94. "behat/mink": "^1.9",
  95. "doctrine/cache": "^1.11 || ^2.1",
  96. "doctrine/common": "^3.2.2",
  97. "doctrine/dbal": "^3.4.0",
  98. "doctrine/doctrine-bundle": "^1.12 || ^2.0",
  99. "doctrine/mongodb-odm": "^2.2",
  100. "doctrine/mongodb-odm-bundle": "^4.0 || ^5.0",
  101. "doctrine/orm": "^2.14 || ^3.0",
  102. "elasticsearch/elasticsearch": "^7.11 || ^8.4",
  103. "friends-of-behat/mink-browserkit-driver": "^1.3.1",
  104. "friends-of-behat/mink-extension": "^2.2",
  105. "friends-of-behat/symfony-extension": "^2.1",
  106. "guzzlehttp/guzzle": "^6.0 || ^7.0",
  107. "jangregor/phpstan-prophecy": "^1.0",
  108. "justinrainbow/json-schema": "^5.2.1",
  109. "phpspec/prophecy-phpunit": "^2.0",
  110. "phpstan/extension-installer": "^1.1",
  111. "phpstan/phpdoc-parser": "^1.13",
  112. "phpstan/phpstan": "^1.10",
  113. "phpstan/phpstan-doctrine": "^1.0",
  114. "phpstan/phpstan-phpunit": "^1.0",
  115. "phpstan/phpstan-symfony": "^1.0",
  116. "phpunit/phpunit": "^9.6",
  117. "psr/log": "^1.0 || ^2.0 || ^3.0",
  118. "ramsey/uuid": "^3.9.7 || ^4.0",
  119. "ramsey/uuid-doctrine": "^1.4 || ^2.0",
  120. "sebastian/comparator": "<5.0",
  121. "soyuka/contexts": "v3.3.9",
  122. "soyuka/pmu": "^0.0.2",
  123. "soyuka/stubs-mongodb": "^1.0",
  124. "symfony/asset": "^6.4 || ^7.0",
  125. "symfony/browser-kit": "^6.4 || ^7.0",
  126. "symfony/cache": "^6.4 || ^7.0",
  127. "symfony/config": "^6.4 || ^7.0",
  128. "symfony/console": "^6.4 || ^7.0",
  129. "symfony/css-selector": "^6.4 || ^7.0",
  130. "symfony/dependency-injection": "^6.4 || ^7.0.12",
  131. "symfony/doctrine-bridge": "^6.4 || ^7.0",
  132. "symfony/dom-crawler": "^6.4 || ^7.0",
  133. "symfony/error-handler": "^6.4 || ^7.0",
  134. "symfony/event-dispatcher": "^6.4 || ^7.0",
  135. "symfony/expression-language": "^6.4 || ^7.0",
  136. "symfony/finder": "^6.4 || ^7.0",
  137. "symfony/form": "^6.4 || ^7.0",
  138. "symfony/framework-bundle": "^6.4 || ^7.0",
  139. "symfony/http-client": "^6.4 || ^7.0",
  140. "symfony/intl": "^6.4 || ^7.0",
  141. "symfony/maker-bundle": "^1.24",
  142. "symfony/mercure-bundle": "*",
  143. "symfony/messenger": "^6.4 || ^7.0",
  144. "symfony/phpunit-bridge": "^6.4.1 || ^7.0",
  145. "symfony/routing": "^6.4 || ^7.0",
  146. "symfony/security-bundle": "^6.4 || ^7.0",
  147. "symfony/security-core": "^6.4 || ^7.0",
  148. "symfony/stopwatch": "^6.4 || ^7.0",
  149. "symfony/twig-bundle": "^6.4 || ^7.0",
  150. "symfony/uid": "^6.4 || ^7.0",
  151. "symfony/validator": "^6.4 || ^7.0",
  152. "symfony/web-profiler-bundle": "^6.4 || ^7.0",
  153. "symfony/yaml": "^6.4 || ^7.0",
  154. "twig/twig": "^1.42.3 || ^2.12 || ^3.0",
  155. "webonyx/graphql-php": "^14.0 || ^15.0"
  156. },
  157. "suggest": {
  158. "doctrine/mongodb-odm-bundle": "To support MongoDB. Only versions 4.0 and later are supported.",
  159. "elasticsearch/elasticsearch": "To support Elasticsearch.",
  160. "ocramius/package-versions": "To display the API Platform's version in the debug bar.",
  161. "phpstan/phpdoc-parser": "To support extracting metadata from PHPDoc.",
  162. "psr/cache-implementation": "To use metadata caching.",
  163. "ramsey/uuid": "To support Ramsey's UUID identifiers.",
  164. "symfony/cache": "To have metadata caching when using Symfony integration.",
  165. "symfony/config": "To load XML configuration files.",
  166. "symfony/expression-language": "To use authorization features.",
  167. "symfony/http-client": "To use the HTTP cache invalidation system.",
  168. "symfony/messenger": "To support messenger integration.",
  169. "symfony/security": "To use authorization features.",
  170. "symfony/twig-bundle": "To use the Swagger UI integration.",
  171. "symfony/uid": "To support Symfony UUID/ULID identifiers.",
  172. "symfony/web-profiler-bundle": "To use the data collector.",
  173. "webonyx/graphql-php": "To support GraphQL."
  174. },
  175. "type": "library",
  176. "extra": {
  177. "branch-alias": {
  178. "dev-main": "3.3.x-dev"
  179. },
  180. "symfony": {
  181. "require": "^6.4 || ^7.0"
  182. },
  183. "projects": [
  184. "api-platform/doctrine-common",
  185. "api-platform/doctrine-orm",
  186. "api-platform/doctrine-odm",
  187. "api-platform/metadata",
  188. "api-platform/json-schema",
  189. "api-platform/elasticsearch",
  190. "api-platform/jsonld",
  191. "api-platform/hydra",
  192. "api-platform/openapi",
  193. "api-platform/graphql",
  194. "api-platform/http-cache",
  195. "api-platform/documentation",
  196. "api-platform/parameter-validator",
  197. "api-platform/ramsey-uuid",
  198. "api-platform/serializer",
  199. "api-platform/state",
  200. "api-platform/symfony",
  201. "api-platform/validator"
  202. ]
  203. },
  204. "autoload": {
  205. "psr-4": {
  206. "ApiPlatform\\": "src/"
  207. }
  208. },
  209. "notification-url": "https://packagist.org/downloads/",
  210. "license": [
  211. "MIT"
  212. ],
  213. "authors": [
  214. {
  215. "name": "Kévin Dunglas",
  216. "email": "kevin@dunglas.fr",
  217. "homepage": "https://dunglas.fr"
  218. }
  219. ],
  220. "description": "Build a fully-featured hypermedia or GraphQL API in minutes!",
  221. "homepage": "https://api-platform.com",
  222. "keywords": [
  223. "Hydra",
  224. "JSON-LD",
  225. "api",
  226. "graphql",
  227. "hal",
  228. "jsonapi",
  229. "openapi",
  230. "rest",
  231. "swagger"
  232. ],
  233. "support": {
  234. "issues": "https://github.com/api-platform/core/issues",
  235. "source": "https://github.com/api-platform/core/tree/v3.3.12"
  236. },
  237. "time": "2024-08-30T14:44:44+00:00"
  238. },
  239. {
  240. "name": "doctrine/cache",
  241. "version": "2.2.0",
  242. "source": {
  243. "type": "git",
  244. "url": "https://github.com/doctrine/cache.git",
  245. "reference": "1ca8f21980e770095a31456042471a57bc4c68fb"
  246. },
  247. "dist": {
  248. "type": "zip",
  249. "url": "https://api.github.com/repos/doctrine/cache/zipball/1ca8f21980e770095a31456042471a57bc4c68fb",
  250. "reference": "1ca8f21980e770095a31456042471a57bc4c68fb",
  251. "shasum": ""
  252. },
  253. "require": {
  254. "php": "~7.1 || ^8.0"
  255. },
  256. "conflict": {
  257. "doctrine/common": ">2.2,<2.4"
  258. },
  259. "require-dev": {
  260. "cache/integration-tests": "dev-master",
  261. "doctrine/coding-standard": "^9",
  262. "phpunit/phpunit": "^7.5 || ^8.5 || ^9.5",
  263. "psr/cache": "^1.0 || ^2.0 || ^3.0",
  264. "symfony/cache": "^4.4 || ^5.4 || ^6",
  265. "symfony/var-exporter": "^4.4 || ^5.4 || ^6"
  266. },
  267. "type": "library",
  268. "autoload": {
  269. "psr-4": {
  270. "Doctrine\\Common\\Cache\\": "lib/Doctrine/Common/Cache"
  271. }
  272. },
  273. "notification-url": "https://packagist.org/downloads/",
  274. "license": [
  275. "MIT"
  276. ],
  277. "authors": [
  278. {
  279. "name": "Guilherme Blanco",
  280. "email": "guilhermeblanco@gmail.com"
  281. },
  282. {
  283. "name": "Roman Borschel",
  284. "email": "roman@code-factory.org"
  285. },
  286. {
  287. "name": "Benjamin Eberlei",
  288. "email": "kontakt@beberlei.de"
  289. },
  290. {
  291. "name": "Jonathan Wage",
  292. "email": "jonwage@gmail.com"
  293. },
  294. {
  295. "name": "Johannes Schmitt",
  296. "email": "schmittjoh@gmail.com"
  297. }
  298. ],
  299. "description": "PHP Doctrine Cache library is a popular cache implementation that supports many different drivers such as redis, memcache, apc, mongodb and others.",
  300. "homepage": "https://www.doctrine-project.org/projects/cache.html",
  301. "keywords": [
  302. "abstraction",
  303. "apcu",
  304. "cache",
  305. "caching",
  306. "couchdb",
  307. "memcached",
  308. "php",
  309. "redis",
  310. "xcache"
  311. ],
  312. "support": {
  313. "issues": "https://github.com/doctrine/cache/issues",
  314. "source": "https://github.com/doctrine/cache/tree/2.2.0"
  315. },
  316. "funding": [
  317. {
  318. "url": "https://www.doctrine-project.org/sponsorship.html",
  319. "type": "custom"
  320. },
  321. {
  322. "url": "https://www.patreon.com/phpdoctrine",
  323. "type": "patreon"
  324. },
  325. {
  326. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fcache",
  327. "type": "tidelift"
  328. }
  329. ],
  330. "time": "2022-05-20T20:07:39+00:00"
  331. },
  332. {
  333. "name": "doctrine/collections",
  334. "version": "2.2.2",
  335. "source": {
  336. "type": "git",
  337. "url": "https://github.com/doctrine/collections.git",
  338. "reference": "d8af7f248c74f195f7347424600fd9e17b57af59"
  339. },
  340. "dist": {
  341. "type": "zip",
  342. "url": "https://api.github.com/repos/doctrine/collections/zipball/d8af7f248c74f195f7347424600fd9e17b57af59",
  343. "reference": "d8af7f248c74f195f7347424600fd9e17b57af59",
  344. "shasum": ""
  345. },
  346. "require": {
  347. "doctrine/deprecations": "^1",
  348. "php": "^8.1"
  349. },
  350. "require-dev": {
  351. "doctrine/coding-standard": "^12",
  352. "ext-json": "*",
  353. "phpstan/phpstan": "^1.8",
  354. "phpstan/phpstan-phpunit": "^1.0",
  355. "phpunit/phpunit": "^10.5",
  356. "vimeo/psalm": "^5.11"
  357. },
  358. "type": "library",
  359. "autoload": {
  360. "psr-4": {
  361. "Doctrine\\Common\\Collections\\": "src"
  362. }
  363. },
  364. "notification-url": "https://packagist.org/downloads/",
  365. "license": [
  366. "MIT"
  367. ],
  368. "authors": [
  369. {
  370. "name": "Guilherme Blanco",
  371. "email": "guilhermeblanco@gmail.com"
  372. },
  373. {
  374. "name": "Roman Borschel",
  375. "email": "roman@code-factory.org"
  376. },
  377. {
  378. "name": "Benjamin Eberlei",
  379. "email": "kontakt@beberlei.de"
  380. },
  381. {
  382. "name": "Jonathan Wage",
  383. "email": "jonwage@gmail.com"
  384. },
  385. {
  386. "name": "Johannes Schmitt",
  387. "email": "schmittjoh@gmail.com"
  388. }
  389. ],
  390. "description": "PHP Doctrine Collections library that adds additional functionality on top of PHP arrays.",
  391. "homepage": "https://www.doctrine-project.org/projects/collections.html",
  392. "keywords": [
  393. "array",
  394. "collections",
  395. "iterators",
  396. "php"
  397. ],
  398. "support": {
  399. "issues": "https://github.com/doctrine/collections/issues",
  400. "source": "https://github.com/doctrine/collections/tree/2.2.2"
  401. },
  402. "funding": [
  403. {
  404. "url": "https://www.doctrine-project.org/sponsorship.html",
  405. "type": "custom"
  406. },
  407. {
  408. "url": "https://www.patreon.com/phpdoctrine",
  409. "type": "patreon"
  410. },
  411. {
  412. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fcollections",
  413. "type": "tidelift"
  414. }
  415. ],
  416. "time": "2024-04-18T06:56:21+00:00"
  417. },
  418. {
  419. "name": "doctrine/dbal",
  420. "version": "3.9.1",
  421. "source": {
  422. "type": "git",
  423. "url": "https://github.com/doctrine/dbal.git",
  424. "reference": "d7dc08f98cba352b2bab5d32c5e58f7e745c11a7"
  425. },
  426. "dist": {
  427. "type": "zip",
  428. "url": "https://api.github.com/repos/doctrine/dbal/zipball/d7dc08f98cba352b2bab5d32c5e58f7e745c11a7",
  429. "reference": "d7dc08f98cba352b2bab5d32c5e58f7e745c11a7",
  430. "shasum": ""
  431. },
  432. "require": {
  433. "composer-runtime-api": "^2",
  434. "doctrine/cache": "^1.11|^2.0",
  435. "doctrine/deprecations": "^0.5.3|^1",
  436. "doctrine/event-manager": "^1|^2",
  437. "php": "^7.4 || ^8.0",
  438. "psr/cache": "^1|^2|^3",
  439. "psr/log": "^1|^2|^3"
  440. },
  441. "require-dev": {
  442. "doctrine/coding-standard": "12.0.0",
  443. "fig/log-test": "^1",
  444. "jetbrains/phpstorm-stubs": "2023.1",
  445. "phpstan/phpstan": "1.12.0",
  446. "phpstan/phpstan-strict-rules": "^1.6",
  447. "phpunit/phpunit": "9.6.20",
  448. "psalm/plugin-phpunit": "0.18.4",
  449. "slevomat/coding-standard": "8.13.1",
  450. "squizlabs/php_codesniffer": "3.10.2",
  451. "symfony/cache": "^5.4|^6.0|^7.0",
  452. "symfony/console": "^4.4|^5.4|^6.0|^7.0",
  453. "vimeo/psalm": "4.30.0"
  454. },
  455. "suggest": {
  456. "symfony/console": "For helpful console commands such as SQL execution and import of files."
  457. },
  458. "bin": [
  459. "bin/doctrine-dbal"
  460. ],
  461. "type": "library",
  462. "autoload": {
  463. "psr-4": {
  464. "Doctrine\\DBAL\\": "src"
  465. }
  466. },
  467. "notification-url": "https://packagist.org/downloads/",
  468. "license": [
  469. "MIT"
  470. ],
  471. "authors": [
  472. {
  473. "name": "Guilherme Blanco",
  474. "email": "guilhermeblanco@gmail.com"
  475. },
  476. {
  477. "name": "Roman Borschel",
  478. "email": "roman@code-factory.org"
  479. },
  480. {
  481. "name": "Benjamin Eberlei",
  482. "email": "kontakt@beberlei.de"
  483. },
  484. {
  485. "name": "Jonathan Wage",
  486. "email": "jonwage@gmail.com"
  487. }
  488. ],
  489. "description": "Powerful PHP database abstraction layer (DBAL) with many features for database schema introspection and management.",
  490. "homepage": "https://www.doctrine-project.org/projects/dbal.html",
  491. "keywords": [
  492. "abstraction",
  493. "database",
  494. "db2",
  495. "dbal",
  496. "mariadb",
  497. "mssql",
  498. "mysql",
  499. "oci8",
  500. "oracle",
  501. "pdo",
  502. "pgsql",
  503. "postgresql",
  504. "queryobject",
  505. "sasql",
  506. "sql",
  507. "sqlite",
  508. "sqlserver",
  509. "sqlsrv"
  510. ],
  511. "support": {
  512. "issues": "https://github.com/doctrine/dbal/issues",
  513. "source": "https://github.com/doctrine/dbal/tree/3.9.1"
  514. },
  515. "funding": [
  516. {
  517. "url": "https://www.doctrine-project.org/sponsorship.html",
  518. "type": "custom"
  519. },
  520. {
  521. "url": "https://www.patreon.com/phpdoctrine",
  522. "type": "patreon"
  523. },
  524. {
  525. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fdbal",
  526. "type": "tidelift"
  527. }
  528. ],
  529. "time": "2024-09-01T13:49:23+00:00"
  530. },
  531. {
  532. "name": "doctrine/deprecations",
  533. "version": "1.1.3",
  534. "source": {
  535. "type": "git",
  536. "url": "https://github.com/doctrine/deprecations.git",
  537. "reference": "dfbaa3c2d2e9a9df1118213f3b8b0c597bb99fab"
  538. },
  539. "dist": {
  540. "type": "zip",
  541. "url": "https://api.github.com/repos/doctrine/deprecations/zipball/dfbaa3c2d2e9a9df1118213f3b8b0c597bb99fab",
  542. "reference": "dfbaa3c2d2e9a9df1118213f3b8b0c597bb99fab",
  543. "shasum": ""
  544. },
  545. "require": {
  546. "php": "^7.1 || ^8.0"
  547. },
  548. "require-dev": {
  549. "doctrine/coding-standard": "^9",
  550. "phpstan/phpstan": "1.4.10 || 1.10.15",
  551. "phpstan/phpstan-phpunit": "^1.0",
  552. "phpunit/phpunit": "^7.5 || ^8.5 || ^9.5",
  553. "psalm/plugin-phpunit": "0.18.4",
  554. "psr/log": "^1 || ^2 || ^3",
  555. "vimeo/psalm": "4.30.0 || 5.12.0"
  556. },
  557. "suggest": {
  558. "psr/log": "Allows logging deprecations via PSR-3 logger implementation"
  559. },
  560. "type": "library",
  561. "autoload": {
  562. "psr-4": {
  563. "Doctrine\\Deprecations\\": "lib/Doctrine/Deprecations"
  564. }
  565. },
  566. "notification-url": "https://packagist.org/downloads/",
  567. "license": [
  568. "MIT"
  569. ],
  570. "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.",
  571. "homepage": "https://www.doctrine-project.org/",
  572. "support": {
  573. "issues": "https://github.com/doctrine/deprecations/issues",
  574. "source": "https://github.com/doctrine/deprecations/tree/1.1.3"
  575. },
  576. "time": "2024-01-30T19:34:25+00:00"
  577. },
  578. {
  579. "name": "doctrine/doctrine-bundle",
  580. "version": "2.13.0",
  581. "source": {
  582. "type": "git",
  583. "url": "https://github.com/doctrine/DoctrineBundle.git",
  584. "reference": "ca59d84b8e63143ce1aed90cdb333ba329d71563"
  585. },
  586. "dist": {
  587. "type": "zip",
  588. "url": "https://api.github.com/repos/doctrine/DoctrineBundle/zipball/ca59d84b8e63143ce1aed90cdb333ba329d71563",
  589. "reference": "ca59d84b8e63143ce1aed90cdb333ba329d71563",
  590. "shasum": ""
  591. },
  592. "require": {
  593. "doctrine/cache": "^1.11 || ^2.0",
  594. "doctrine/dbal": "^3.7.0 || ^4.0",
  595. "doctrine/persistence": "^2.2 || ^3",
  596. "doctrine/sql-formatter": "^1.0.1",
  597. "php": "^7.4 || ^8.0",
  598. "symfony/cache": "^5.4 || ^6.0 || ^7.0",
  599. "symfony/config": "^5.4 || ^6.0 || ^7.0",
  600. "symfony/console": "^5.4 || ^6.0 || ^7.0",
  601. "symfony/dependency-injection": "^5.4 || ^6.0 || ^7.0",
  602. "symfony/deprecation-contracts": "^2.1 || ^3",
  603. "symfony/doctrine-bridge": "^5.4.19 || ^6.0.7 || ^7.0",
  604. "symfony/framework-bundle": "^5.4 || ^6.0 || ^7.0",
  605. "symfony/polyfill-php80": "^1.15",
  606. "symfony/service-contracts": "^1.1.1 || ^2.0 || ^3"
  607. },
  608. "conflict": {
  609. "doctrine/annotations": ">=3.0",
  610. "doctrine/orm": "<2.17 || >=4.0",
  611. "twig/twig": "<1.34 || >=2.0 <2.4"
  612. },
  613. "require-dev": {
  614. "doctrine/annotations": "^1 || ^2",
  615. "doctrine/coding-standard": "^12",
  616. "doctrine/deprecations": "^1.0",
  617. "doctrine/orm": "^2.17 || ^3.0",
  618. "friendsofphp/proxy-manager-lts": "^1.0",
  619. "phpunit/phpunit": "^9.5.26",
  620. "psalm/plugin-phpunit": "^0.18.4",
  621. "psalm/plugin-symfony": "^5",
  622. "psr/log": "^1.1.4 || ^2.0 || ^3.0",
  623. "symfony/phpunit-bridge": "^6.1 || ^7.0",
  624. "symfony/property-info": "^5.4 || ^6.0 || ^7.0",
  625. "symfony/proxy-manager-bridge": "^5.4 || ^6.0 || ^7.0",
  626. "symfony/security-bundle": "^5.4 || ^6.0 || ^7.0",
  627. "symfony/stopwatch": "^5.4 || ^6.0 || ^7.0",
  628. "symfony/string": "^5.4 || ^6.0 || ^7.0",
  629. "symfony/twig-bridge": "^5.4 || ^6.0 || ^7.0",
  630. "symfony/validator": "^5.4 || ^6.0 || ^7.0",
  631. "symfony/var-exporter": "^5.4 || ^6.2 || ^7.0",
  632. "symfony/web-profiler-bundle": "^5.4 || ^6.0 || ^7.0",
  633. "symfony/yaml": "^5.4 || ^6.0 || ^7.0",
  634. "twig/twig": "^1.34 || ^2.12 || ^3.0",
  635. "vimeo/psalm": "^5.15"
  636. },
  637. "suggest": {
  638. "doctrine/orm": "The Doctrine ORM integration is optional in the bundle.",
  639. "ext-pdo": "*",
  640. "symfony/web-profiler-bundle": "To use the data collector."
  641. },
  642. "type": "symfony-bundle",
  643. "autoload": {
  644. "psr-4": {
  645. "Doctrine\\Bundle\\DoctrineBundle\\": "src"
  646. }
  647. },
  648. "notification-url": "https://packagist.org/downloads/",
  649. "license": [
  650. "MIT"
  651. ],
  652. "authors": [
  653. {
  654. "name": "Fabien Potencier",
  655. "email": "fabien@symfony.com"
  656. },
  657. {
  658. "name": "Benjamin Eberlei",
  659. "email": "kontakt@beberlei.de"
  660. },
  661. {
  662. "name": "Symfony Community",
  663. "homepage": "https://symfony.com/contributors"
  664. },
  665. {
  666. "name": "Doctrine Project",
  667. "homepage": "https://www.doctrine-project.org/"
  668. }
  669. ],
  670. "description": "Symfony DoctrineBundle",
  671. "homepage": "https://www.doctrine-project.org",
  672. "keywords": [
  673. "database",
  674. "dbal",
  675. "orm",
  676. "persistence"
  677. ],
  678. "support": {
  679. "issues": "https://github.com/doctrine/DoctrineBundle/issues",
  680. "source": "https://github.com/doctrine/DoctrineBundle/tree/2.13.0"
  681. },
  682. "funding": [
  683. {
  684. "url": "https://www.doctrine-project.org/sponsorship.html",
  685. "type": "custom"
  686. },
  687. {
  688. "url": "https://www.patreon.com/phpdoctrine",
  689. "type": "patreon"
  690. },
  691. {
  692. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fdoctrine-bundle",
  693. "type": "tidelift"
  694. }
  695. ],
  696. "time": "2024-09-01T09:46:40+00:00"
  697. },
  698. {
  699. "name": "doctrine/doctrine-migrations-bundle",
  700. "version": "3.3.1",
  701. "source": {
  702. "type": "git",
  703. "url": "https://github.com/doctrine/DoctrineMigrationsBundle.git",
  704. "reference": "715b62c31a5894afcb2b2cdbbc6607d7dd0580c0"
  705. },
  706. "dist": {
  707. "type": "zip",
  708. "url": "https://api.github.com/repos/doctrine/DoctrineMigrationsBundle/zipball/715b62c31a5894afcb2b2cdbbc6607d7dd0580c0",
  709. "reference": "715b62c31a5894afcb2b2cdbbc6607d7dd0580c0",
  710. "shasum": ""
  711. },
  712. "require": {
  713. "doctrine/doctrine-bundle": "^2.4",
  714. "doctrine/migrations": "^3.2",
  715. "php": "^7.2|^8.0",
  716. "symfony/deprecation-contracts": "^2.1 || ^3",
  717. "symfony/framework-bundle": "^5.4 || ^6.0 || ^7.0"
  718. },
  719. "require-dev": {
  720. "composer/semver": "^3.0",
  721. "doctrine/coding-standard": "^12",
  722. "doctrine/orm": "^2.6 || ^3",
  723. "doctrine/persistence": "^2.0 || ^3 ",
  724. "phpstan/phpstan": "^1.4",
  725. "phpstan/phpstan-deprecation-rules": "^1",
  726. "phpstan/phpstan-phpunit": "^1",
  727. "phpstan/phpstan-strict-rules": "^1.1",
  728. "phpstan/phpstan-symfony": "^1.3",
  729. "phpunit/phpunit": "^8.5|^9.5",
  730. "psalm/plugin-phpunit": "^0.18.4",
  731. "psalm/plugin-symfony": "^3 || ^5",
  732. "symfony/phpunit-bridge": "^6.3 || ^7",
  733. "symfony/var-exporter": "^5.4 || ^6 || ^7",
  734. "vimeo/psalm": "^4.30 || ^5.15"
  735. },
  736. "type": "symfony-bundle",
  737. "autoload": {
  738. "psr-4": {
  739. "Doctrine\\Bundle\\MigrationsBundle\\": ""
  740. },
  741. "exclude-from-classmap": [
  742. "/Tests/"
  743. ]
  744. },
  745. "notification-url": "https://packagist.org/downloads/",
  746. "license": [
  747. "MIT"
  748. ],
  749. "authors": [
  750. {
  751. "name": "Fabien Potencier",
  752. "email": "fabien@symfony.com"
  753. },
  754. {
  755. "name": "Doctrine Project",
  756. "homepage": "https://www.doctrine-project.org"
  757. },
  758. {
  759. "name": "Symfony Community",
  760. "homepage": "https://symfony.com/contributors"
  761. }
  762. ],
  763. "description": "Symfony DoctrineMigrationsBundle",
  764. "homepage": "https://www.doctrine-project.org",
  765. "keywords": [
  766. "dbal",
  767. "migrations",
  768. "schema"
  769. ],
  770. "support": {
  771. "issues": "https://github.com/doctrine/DoctrineMigrationsBundle/issues",
  772. "source": "https://github.com/doctrine/DoctrineMigrationsBundle/tree/3.3.1"
  773. },
  774. "funding": [
  775. {
  776. "url": "https://www.doctrine-project.org/sponsorship.html",
  777. "type": "custom"
  778. },
  779. {
  780. "url": "https://www.patreon.com/phpdoctrine",
  781. "type": "patreon"
  782. },
  783. {
  784. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fdoctrine-migrations-bundle",
  785. "type": "tidelift"
  786. }
  787. ],
  788. "time": "2024-05-14T20:32:18+00:00"
  789. },
  790. {
  791. "name": "doctrine/event-manager",
  792. "version": "2.0.1",
  793. "source": {
  794. "type": "git",
  795. "url": "https://github.com/doctrine/event-manager.git",
  796. "reference": "b680156fa328f1dfd874fd48c7026c41570b9c6e"
  797. },
  798. "dist": {
  799. "type": "zip",
  800. "url": "https://api.github.com/repos/doctrine/event-manager/zipball/b680156fa328f1dfd874fd48c7026c41570b9c6e",
  801. "reference": "b680156fa328f1dfd874fd48c7026c41570b9c6e",
  802. "shasum": ""
  803. },
  804. "require": {
  805. "php": "^8.1"
  806. },
  807. "conflict": {
  808. "doctrine/common": "<2.9"
  809. },
  810. "require-dev": {
  811. "doctrine/coding-standard": "^12",
  812. "phpstan/phpstan": "^1.8.8",
  813. "phpunit/phpunit": "^10.5",
  814. "vimeo/psalm": "^5.24"
  815. },
  816. "type": "library",
  817. "autoload": {
  818. "psr-4": {
  819. "Doctrine\\Common\\": "src"
  820. }
  821. },
  822. "notification-url": "https://packagist.org/downloads/",
  823. "license": [
  824. "MIT"
  825. ],
  826. "authors": [
  827. {
  828. "name": "Guilherme Blanco",
  829. "email": "guilhermeblanco@gmail.com"
  830. },
  831. {
  832. "name": "Roman Borschel",
  833. "email": "roman@code-factory.org"
  834. },
  835. {
  836. "name": "Benjamin Eberlei",
  837. "email": "kontakt@beberlei.de"
  838. },
  839. {
  840. "name": "Jonathan Wage",
  841. "email": "jonwage@gmail.com"
  842. },
  843. {
  844. "name": "Johannes Schmitt",
  845. "email": "schmittjoh@gmail.com"
  846. },
  847. {
  848. "name": "Marco Pivetta",
  849. "email": "ocramius@gmail.com"
  850. }
  851. ],
  852. "description": "The Doctrine Event Manager is a simple PHP event system that was built to be used with the various Doctrine projects.",
  853. "homepage": "https://www.doctrine-project.org/projects/event-manager.html",
  854. "keywords": [
  855. "event",
  856. "event dispatcher",
  857. "event manager",
  858. "event system",
  859. "events"
  860. ],
  861. "support": {
  862. "issues": "https://github.com/doctrine/event-manager/issues",
  863. "source": "https://github.com/doctrine/event-manager/tree/2.0.1"
  864. },
  865. "funding": [
  866. {
  867. "url": "https://www.doctrine-project.org/sponsorship.html",
  868. "type": "custom"
  869. },
  870. {
  871. "url": "https://www.patreon.com/phpdoctrine",
  872. "type": "patreon"
  873. },
  874. {
  875. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fevent-manager",
  876. "type": "tidelift"
  877. }
  878. ],
  879. "time": "2024-05-22T20:47:39+00:00"
  880. },
  881. {
  882. "name": "doctrine/inflector",
  883. "version": "2.0.10",
  884. "source": {
  885. "type": "git",
  886. "url": "https://github.com/doctrine/inflector.git",
  887. "reference": "5817d0659c5b50c9b950feb9af7b9668e2c436bc"
  888. },
  889. "dist": {
  890. "type": "zip",
  891. "url": "https://api.github.com/repos/doctrine/inflector/zipball/5817d0659c5b50c9b950feb9af7b9668e2c436bc",
  892. "reference": "5817d0659c5b50c9b950feb9af7b9668e2c436bc",
  893. "shasum": ""
  894. },
  895. "require": {
  896. "php": "^7.2 || ^8.0"
  897. },
  898. "require-dev": {
  899. "doctrine/coding-standard": "^11.0",
  900. "phpstan/phpstan": "^1.8",
  901. "phpstan/phpstan-phpunit": "^1.1",
  902. "phpstan/phpstan-strict-rules": "^1.3",
  903. "phpunit/phpunit": "^8.5 || ^9.5",
  904. "vimeo/psalm": "^4.25 || ^5.4"
  905. },
  906. "type": "library",
  907. "autoload": {
  908. "psr-4": {
  909. "Doctrine\\Inflector\\": "lib/Doctrine/Inflector"
  910. }
  911. },
  912. "notification-url": "https://packagist.org/downloads/",
  913. "license": [
  914. "MIT"
  915. ],
  916. "authors": [
  917. {
  918. "name": "Guilherme Blanco",
  919. "email": "guilhermeblanco@gmail.com"
  920. },
  921. {
  922. "name": "Roman Borschel",
  923. "email": "roman@code-factory.org"
  924. },
  925. {
  926. "name": "Benjamin Eberlei",
  927. "email": "kontakt@beberlei.de"
  928. },
  929. {
  930. "name": "Jonathan Wage",
  931. "email": "jonwage@gmail.com"
  932. },
  933. {
  934. "name": "Johannes Schmitt",
  935. "email": "schmittjoh@gmail.com"
  936. }
  937. ],
  938. "description": "PHP Doctrine Inflector is a small library that can perform string manipulations with regard to upper/lowercase and singular/plural forms of words.",
  939. "homepage": "https://www.doctrine-project.org/projects/inflector.html",
  940. "keywords": [
  941. "inflection",
  942. "inflector",
  943. "lowercase",
  944. "manipulation",
  945. "php",
  946. "plural",
  947. "singular",
  948. "strings",
  949. "uppercase",
  950. "words"
  951. ],
  952. "support": {
  953. "issues": "https://github.com/doctrine/inflector/issues",
  954. "source": "https://github.com/doctrine/inflector/tree/2.0.10"
  955. },
  956. "funding": [
  957. {
  958. "url": "https://www.doctrine-project.org/sponsorship.html",
  959. "type": "custom"
  960. },
  961. {
  962. "url": "https://www.patreon.com/phpdoctrine",
  963. "type": "patreon"
  964. },
  965. {
  966. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Finflector",
  967. "type": "tidelift"
  968. }
  969. ],
  970. "time": "2024-02-18T20:23:39+00:00"
  971. },
  972. {
  973. "name": "doctrine/instantiator",
  974. "version": "2.0.0",
  975. "source": {
  976. "type": "git",
  977. "url": "https://github.com/doctrine/instantiator.git",
  978. "reference": "c6222283fa3f4ac679f8b9ced9a4e23f163e80d0"
  979. },
  980. "dist": {
  981. "type": "zip",
  982. "url": "https://api.github.com/repos/doctrine/instantiator/zipball/c6222283fa3f4ac679f8b9ced9a4e23f163e80d0",
  983. "reference": "c6222283fa3f4ac679f8b9ced9a4e23f163e80d0",
  984. "shasum": ""
  985. },
  986. "require": {
  987. "php": "^8.1"
  988. },
  989. "require-dev": {
  990. "doctrine/coding-standard": "^11",
  991. "ext-pdo": "*",
  992. "ext-phar": "*",
  993. "phpbench/phpbench": "^1.2",
  994. "phpstan/phpstan": "^1.9.4",
  995. "phpstan/phpstan-phpunit": "^1.3",
  996. "phpunit/phpunit": "^9.5.27",
  997. "vimeo/psalm": "^5.4"
  998. },
  999. "type": "library",
  1000. "autoload": {
  1001. "psr-4": {
  1002. "Doctrine\\Instantiator\\": "src/Doctrine/Instantiator/"
  1003. }
  1004. },
  1005. "notification-url": "https://packagist.org/downloads/",
  1006. "license": [
  1007. "MIT"
  1008. ],
  1009. "authors": [
  1010. {
  1011. "name": "Marco Pivetta",
  1012. "email": "ocramius@gmail.com",
  1013. "homepage": "https://ocramius.github.io/"
  1014. }
  1015. ],
  1016. "description": "A small, lightweight utility to instantiate objects in PHP without invoking their constructors",
  1017. "homepage": "https://www.doctrine-project.org/projects/instantiator.html",
  1018. "keywords": [
  1019. "constructor",
  1020. "instantiate"
  1021. ],
  1022. "support": {
  1023. "issues": "https://github.com/doctrine/instantiator/issues",
  1024. "source": "https://github.com/doctrine/instantiator/tree/2.0.0"
  1025. },
  1026. "funding": [
  1027. {
  1028. "url": "https://www.doctrine-project.org/sponsorship.html",
  1029. "type": "custom"
  1030. },
  1031. {
  1032. "url": "https://www.patreon.com/phpdoctrine",
  1033. "type": "patreon"
  1034. },
  1035. {
  1036. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Finstantiator",
  1037. "type": "tidelift"
  1038. }
  1039. ],
  1040. "time": "2022-12-30T00:23:10+00:00"
  1041. },
  1042. {
  1043. "name": "doctrine/lexer",
  1044. "version": "3.0.1",
  1045. "source": {
  1046. "type": "git",
  1047. "url": "https://github.com/doctrine/lexer.git",
  1048. "reference": "31ad66abc0fc9e1a1f2d9bc6a42668d2fbbcd6dd"
  1049. },
  1050. "dist": {
  1051. "type": "zip",
  1052. "url": "https://api.github.com/repos/doctrine/lexer/zipball/31ad66abc0fc9e1a1f2d9bc6a42668d2fbbcd6dd",
  1053. "reference": "31ad66abc0fc9e1a1f2d9bc6a42668d2fbbcd6dd",
  1054. "shasum": ""
  1055. },
  1056. "require": {
  1057. "php": "^8.1"
  1058. },
  1059. "require-dev": {
  1060. "doctrine/coding-standard": "^12",
  1061. "phpstan/phpstan": "^1.10",
  1062. "phpunit/phpunit": "^10.5",
  1063. "psalm/plugin-phpunit": "^0.18.3",
  1064. "vimeo/psalm": "^5.21"
  1065. },
  1066. "type": "library",
  1067. "autoload": {
  1068. "psr-4": {
  1069. "Doctrine\\Common\\Lexer\\": "src"
  1070. }
  1071. },
  1072. "notification-url": "https://packagist.org/downloads/",
  1073. "license": [
  1074. "MIT"
  1075. ],
  1076. "authors": [
  1077. {
  1078. "name": "Guilherme Blanco",
  1079. "email": "guilhermeblanco@gmail.com"
  1080. },
  1081. {
  1082. "name": "Roman Borschel",
  1083. "email": "roman@code-factory.org"
  1084. },
  1085. {
  1086. "name": "Johannes Schmitt",
  1087. "email": "schmittjoh@gmail.com"
  1088. }
  1089. ],
  1090. "description": "PHP Doctrine Lexer parser library that can be used in Top-Down, Recursive Descent Parsers.",
  1091. "homepage": "https://www.doctrine-project.org/projects/lexer.html",
  1092. "keywords": [
  1093. "annotations",
  1094. "docblock",
  1095. "lexer",
  1096. "parser",
  1097. "php"
  1098. ],
  1099. "support": {
  1100. "issues": "https://github.com/doctrine/lexer/issues",
  1101. "source": "https://github.com/doctrine/lexer/tree/3.0.1"
  1102. },
  1103. "funding": [
  1104. {
  1105. "url": "https://www.doctrine-project.org/sponsorship.html",
  1106. "type": "custom"
  1107. },
  1108. {
  1109. "url": "https://www.patreon.com/phpdoctrine",
  1110. "type": "patreon"
  1111. },
  1112. {
  1113. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Flexer",
  1114. "type": "tidelift"
  1115. }
  1116. ],
  1117. "time": "2024-02-05T11:56:58+00:00"
  1118. },
  1119. {
  1120. "name": "doctrine/migrations",
  1121. "version": "3.8.1",
  1122. "source": {
  1123. "type": "git",
  1124. "url": "https://github.com/doctrine/migrations.git",
  1125. "reference": "7760fbd0b7cb58bfb50415505a7bab821adf0877"
  1126. },
  1127. "dist": {
  1128. "type": "zip",
  1129. "url": "https://api.github.com/repos/doctrine/migrations/zipball/7760fbd0b7cb58bfb50415505a7bab821adf0877",
  1130. "reference": "7760fbd0b7cb58bfb50415505a7bab821adf0877",
  1131. "shasum": ""
  1132. },
  1133. "require": {
  1134. "composer-runtime-api": "^2",
  1135. "doctrine/dbal": "^3.6 || ^4",
  1136. "doctrine/deprecations": "^0.5.3 || ^1",
  1137. "doctrine/event-manager": "^1.2 || ^2.0",
  1138. "php": "^8.1",
  1139. "psr/log": "^1.1.3 || ^2 || ^3",
  1140. "symfony/console": "^5.4 || ^6.0 || ^7.0",
  1141. "symfony/stopwatch": "^5.4 || ^6.0 || ^7.0",
  1142. "symfony/var-exporter": "^6.2 || ^7.0"
  1143. },
  1144. "conflict": {
  1145. "doctrine/orm": "<2.12 || >=4"
  1146. },
  1147. "require-dev": {
  1148. "doctrine/coding-standard": "^12",
  1149. "doctrine/orm": "^2.13 || ^3",
  1150. "doctrine/persistence": "^2 || ^3",
  1151. "doctrine/sql-formatter": "^1.0",
  1152. "ext-pdo_sqlite": "*",
  1153. "fig/log-test": "^1",
  1154. "phpstan/phpstan": "^1.10",
  1155. "phpstan/phpstan-deprecation-rules": "^1.1",
  1156. "phpstan/phpstan-phpunit": "^1.3",
  1157. "phpstan/phpstan-strict-rules": "^1.4",
  1158. "phpstan/phpstan-symfony": "^1.3",
  1159. "phpunit/phpunit": "^10.3",
  1160. "symfony/cache": "^5.4 || ^6.0 || ^7.0",
  1161. "symfony/process": "^5.4 || ^6.0 || ^7.0",
  1162. "symfony/yaml": "^5.4 || ^6.0 || ^7.0"
  1163. },
  1164. "suggest": {
  1165. "doctrine/sql-formatter": "Allows to generate formatted SQL with the diff command.",
  1166. "symfony/yaml": "Allows the use of yaml for migration configuration files."
  1167. },
  1168. "bin": [
  1169. "bin/doctrine-migrations"
  1170. ],
  1171. "type": "library",
  1172. "autoload": {
  1173. "psr-4": {
  1174. "Doctrine\\Migrations\\": "src"
  1175. }
  1176. },
  1177. "notification-url": "https://packagist.org/downloads/",
  1178. "license": [
  1179. "MIT"
  1180. ],
  1181. "authors": [
  1182. {
  1183. "name": "Benjamin Eberlei",
  1184. "email": "kontakt@beberlei.de"
  1185. },
  1186. {
  1187. "name": "Jonathan Wage",
  1188. "email": "jonwage@gmail.com"
  1189. },
  1190. {
  1191. "name": "Michael Simonson",
  1192. "email": "contact@mikesimonson.com"
  1193. }
  1194. ],
  1195. "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.",
  1196. "homepage": "https://www.doctrine-project.org/projects/migrations.html",
  1197. "keywords": [
  1198. "database",
  1199. "dbal",
  1200. "migrations"
  1201. ],
  1202. "support": {
  1203. "issues": "https://github.com/doctrine/migrations/issues",
  1204. "source": "https://github.com/doctrine/migrations/tree/3.8.1"
  1205. },
  1206. "funding": [
  1207. {
  1208. "url": "https://www.doctrine-project.org/sponsorship.html",
  1209. "type": "custom"
  1210. },
  1211. {
  1212. "url": "https://www.patreon.com/phpdoctrine",
  1213. "type": "patreon"
  1214. },
  1215. {
  1216. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fmigrations",
  1217. "type": "tidelift"
  1218. }
  1219. ],
  1220. "time": "2024-08-28T13:17:28+00:00"
  1221. },
  1222. {
  1223. "name": "doctrine/orm",
  1224. "version": "3.2.2",
  1225. "source": {
  1226. "type": "git",
  1227. "url": "https://github.com/doctrine/orm.git",
  1228. "reference": "831a1eb7d260925528cdbb49cc1866c0357cf147"
  1229. },
  1230. "dist": {
  1231. "type": "zip",
  1232. "url": "https://api.github.com/repos/doctrine/orm/zipball/831a1eb7d260925528cdbb49cc1866c0357cf147",
  1233. "reference": "831a1eb7d260925528cdbb49cc1866c0357cf147",
  1234. "shasum": ""
  1235. },
  1236. "require": {
  1237. "composer-runtime-api": "^2",
  1238. "doctrine/collections": "^2.2",
  1239. "doctrine/dbal": "^3.8.2 || ^4",
  1240. "doctrine/deprecations": "^0.5.3 || ^1",
  1241. "doctrine/event-manager": "^1.2 || ^2",
  1242. "doctrine/inflector": "^1.4 || ^2.0",
  1243. "doctrine/instantiator": "^1.3 || ^2",
  1244. "doctrine/lexer": "^3",
  1245. "doctrine/persistence": "^3.3.1",
  1246. "ext-ctype": "*",
  1247. "php": "^8.1",
  1248. "psr/cache": "^1 || ^2 || ^3",
  1249. "symfony/console": "^5.4 || ^6.0 || ^7.0",
  1250. "symfony/var-exporter": "^6.3.9 || ^7.0"
  1251. },
  1252. "require-dev": {
  1253. "doctrine/coding-standard": "^12.0",
  1254. "phpbench/phpbench": "^1.0",
  1255. "phpstan/phpstan": "1.11.1",
  1256. "phpunit/phpunit": "^10.4.0",
  1257. "psr/log": "^1 || ^2 || ^3",
  1258. "squizlabs/php_codesniffer": "3.7.2",
  1259. "symfony/cache": "^5.4 || ^6.2 || ^7.0",
  1260. "vimeo/psalm": "5.24.0"
  1261. },
  1262. "suggest": {
  1263. "ext-dom": "Provides support for XSD validation for XML mapping files",
  1264. "symfony/cache": "Provides cache support for Setup Tool with doctrine/cache 2.0"
  1265. },
  1266. "type": "library",
  1267. "autoload": {
  1268. "psr-4": {
  1269. "Doctrine\\ORM\\": "src"
  1270. }
  1271. },
  1272. "notification-url": "https://packagist.org/downloads/",
  1273. "license": [
  1274. "MIT"
  1275. ],
  1276. "authors": [
  1277. {
  1278. "name": "Guilherme Blanco",
  1279. "email": "guilhermeblanco@gmail.com"
  1280. },
  1281. {
  1282. "name": "Roman Borschel",
  1283. "email": "roman@code-factory.org"
  1284. },
  1285. {
  1286. "name": "Benjamin Eberlei",
  1287. "email": "kontakt@beberlei.de"
  1288. },
  1289. {
  1290. "name": "Jonathan Wage",
  1291. "email": "jonwage@gmail.com"
  1292. },
  1293. {
  1294. "name": "Marco Pivetta",
  1295. "email": "ocramius@gmail.com"
  1296. }
  1297. ],
  1298. "description": "Object-Relational-Mapper for PHP",
  1299. "homepage": "https://www.doctrine-project.org/projects/orm.html",
  1300. "keywords": [
  1301. "database",
  1302. "orm"
  1303. ],
  1304. "support": {
  1305. "issues": "https://github.com/doctrine/orm/issues",
  1306. "source": "https://github.com/doctrine/orm/tree/3.2.2"
  1307. },
  1308. "time": "2024-08-23T10:03:52+00:00"
  1309. },
  1310. {
  1311. "name": "doctrine/persistence",
  1312. "version": "3.3.3",
  1313. "source": {
  1314. "type": "git",
  1315. "url": "https://github.com/doctrine/persistence.git",
  1316. "reference": "b337726451f5d530df338fc7f68dee8781b49779"
  1317. },
  1318. "dist": {
  1319. "type": "zip",
  1320. "url": "https://api.github.com/repos/doctrine/persistence/zipball/b337726451f5d530df338fc7f68dee8781b49779",
  1321. "reference": "b337726451f5d530df338fc7f68dee8781b49779",
  1322. "shasum": ""
  1323. },
  1324. "require": {
  1325. "doctrine/event-manager": "^1 || ^2",
  1326. "php": "^7.2 || ^8.0",
  1327. "psr/cache": "^1.0 || ^2.0 || ^3.0"
  1328. },
  1329. "conflict": {
  1330. "doctrine/common": "<2.10"
  1331. },
  1332. "require-dev": {
  1333. "doctrine/coding-standard": "^12",
  1334. "doctrine/common": "^3.0",
  1335. "phpstan/phpstan": "1.11.1",
  1336. "phpstan/phpstan-phpunit": "^1",
  1337. "phpstan/phpstan-strict-rules": "^1.1",
  1338. "phpunit/phpunit": "^8.5 || ^9.5",
  1339. "symfony/cache": "^4.4 || ^5.4 || ^6.0",
  1340. "vimeo/psalm": "4.30.0 || 5.24.0"
  1341. },
  1342. "type": "library",
  1343. "autoload": {
  1344. "psr-4": {
  1345. "Doctrine\\Persistence\\": "src/Persistence"
  1346. }
  1347. },
  1348. "notification-url": "https://packagist.org/downloads/",
  1349. "license": [
  1350. "MIT"
  1351. ],
  1352. "authors": [
  1353. {
  1354. "name": "Guilherme Blanco",
  1355. "email": "guilhermeblanco@gmail.com"
  1356. },
  1357. {
  1358. "name": "Roman Borschel",
  1359. "email": "roman@code-factory.org"
  1360. },
  1361. {
  1362. "name": "Benjamin Eberlei",
  1363. "email": "kontakt@beberlei.de"
  1364. },
  1365. {
  1366. "name": "Jonathan Wage",
  1367. "email": "jonwage@gmail.com"
  1368. },
  1369. {
  1370. "name": "Johannes Schmitt",
  1371. "email": "schmittjoh@gmail.com"
  1372. },
  1373. {
  1374. "name": "Marco Pivetta",
  1375. "email": "ocramius@gmail.com"
  1376. }
  1377. ],
  1378. "description": "The Doctrine Persistence project is a set of shared interfaces and functionality that the different Doctrine object mappers share.",
  1379. "homepage": "https://www.doctrine-project.org/projects/persistence.html",
  1380. "keywords": [
  1381. "mapper",
  1382. "object",
  1383. "odm",
  1384. "orm",
  1385. "persistence"
  1386. ],
  1387. "support": {
  1388. "issues": "https://github.com/doctrine/persistence/issues",
  1389. "source": "https://github.com/doctrine/persistence/tree/3.3.3"
  1390. },
  1391. "funding": [
  1392. {
  1393. "url": "https://www.doctrine-project.org/sponsorship.html",
  1394. "type": "custom"
  1395. },
  1396. {
  1397. "url": "https://www.patreon.com/phpdoctrine",
  1398. "type": "patreon"
  1399. },
  1400. {
  1401. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fpersistence",
  1402. "type": "tidelift"
  1403. }
  1404. ],
  1405. "time": "2024-06-20T10:14:30+00:00"
  1406. },
  1407. {
  1408. "name": "doctrine/sql-formatter",
  1409. "version": "1.4.1",
  1410. "source": {
  1411. "type": "git",
  1412. "url": "https://github.com/doctrine/sql-formatter.git",
  1413. "reference": "7f83911cc5eba870de7ebb11283972483f7e2891"
  1414. },
  1415. "dist": {
  1416. "type": "zip",
  1417. "url": "https://api.github.com/repos/doctrine/sql-formatter/zipball/7f83911cc5eba870de7ebb11283972483f7e2891",
  1418. "reference": "7f83911cc5eba870de7ebb11283972483f7e2891",
  1419. "shasum": ""
  1420. },
  1421. "require": {
  1422. "php": "^8.1"
  1423. },
  1424. "require-dev": {
  1425. "doctrine/coding-standard": "^12",
  1426. "phpstan/phpstan": "^1.10",
  1427. "phpunit/phpunit": "^10.5",
  1428. "vimeo/psalm": "^5.24"
  1429. },
  1430. "bin": [
  1431. "bin/sql-formatter"
  1432. ],
  1433. "type": "library",
  1434. "autoload": {
  1435. "psr-4": {
  1436. "Doctrine\\SqlFormatter\\": "src"
  1437. }
  1438. },
  1439. "notification-url": "https://packagist.org/downloads/",
  1440. "license": [
  1441. "MIT"
  1442. ],
  1443. "authors": [
  1444. {
  1445. "name": "Jeremy Dorn",
  1446. "email": "jeremy@jeremydorn.com",
  1447. "homepage": "https://jeremydorn.com/"
  1448. }
  1449. ],
  1450. "description": "a PHP SQL highlighting library",
  1451. "homepage": "https://github.com/doctrine/sql-formatter/",
  1452. "keywords": [
  1453. "highlight",
  1454. "sql"
  1455. ],
  1456. "support": {
  1457. "issues": "https://github.com/doctrine/sql-formatter/issues",
  1458. "source": "https://github.com/doctrine/sql-formatter/tree/1.4.1"
  1459. },
  1460. "time": "2024-08-05T20:32:22+00:00"
  1461. },
  1462. {
  1463. "name": "egulias/email-validator",
  1464. "version": "4.0.2",
  1465. "source": {
  1466. "type": "git",
  1467. "url": "https://github.com/egulias/EmailValidator.git",
  1468. "reference": "ebaaf5be6c0286928352e054f2d5125608e5405e"
  1469. },
  1470. "dist": {
  1471. "type": "zip",
  1472. "url": "https://api.github.com/repos/egulias/EmailValidator/zipball/ebaaf5be6c0286928352e054f2d5125608e5405e",
  1473. "reference": "ebaaf5be6c0286928352e054f2d5125608e5405e",
  1474. "shasum": ""
  1475. },
  1476. "require": {
  1477. "doctrine/lexer": "^2.0 || ^3.0",
  1478. "php": ">=8.1",
  1479. "symfony/polyfill-intl-idn": "^1.26"
  1480. },
  1481. "require-dev": {
  1482. "phpunit/phpunit": "^10.2",
  1483. "vimeo/psalm": "^5.12"
  1484. },
  1485. "suggest": {
  1486. "ext-intl": "PHP Internationalization Libraries are required to use the SpoofChecking validation"
  1487. },
  1488. "type": "library",
  1489. "extra": {
  1490. "branch-alias": {
  1491. "dev-master": "4.0.x-dev"
  1492. }
  1493. },
  1494. "autoload": {
  1495. "psr-4": {
  1496. "Egulias\\EmailValidator\\": "src"
  1497. }
  1498. },
  1499. "notification-url": "https://packagist.org/downloads/",
  1500. "license": [
  1501. "MIT"
  1502. ],
  1503. "authors": [
  1504. {
  1505. "name": "Eduardo Gulias Davis"
  1506. }
  1507. ],
  1508. "description": "A library for validating emails against several RFCs",
  1509. "homepage": "https://github.com/egulias/EmailValidator",
  1510. "keywords": [
  1511. "email",
  1512. "emailvalidation",
  1513. "emailvalidator",
  1514. "validation",
  1515. "validator"
  1516. ],
  1517. "support": {
  1518. "issues": "https://github.com/egulias/EmailValidator/issues",
  1519. "source": "https://github.com/egulias/EmailValidator/tree/4.0.2"
  1520. },
  1521. "funding": [
  1522. {
  1523. "url": "https://github.com/egulias",
  1524. "type": "github"
  1525. }
  1526. ],
  1527. "time": "2023-10-06T06:47:41+00:00"
  1528. },
  1529. {
  1530. "name": "nelmio/cors-bundle",
  1531. "version": "2.5.0",
  1532. "source": {
  1533. "type": "git",
  1534. "url": "https://github.com/nelmio/NelmioCorsBundle.git",
  1535. "reference": "3a526fe025cd20e04a6a11370cf5ab28dbb5a544"
  1536. },
  1537. "dist": {
  1538. "type": "zip",
  1539. "url": "https://api.github.com/repos/nelmio/NelmioCorsBundle/zipball/3a526fe025cd20e04a6a11370cf5ab28dbb5a544",
  1540. "reference": "3a526fe025cd20e04a6a11370cf5ab28dbb5a544",
  1541. "shasum": ""
  1542. },
  1543. "require": {
  1544. "psr/log": "^1.0 || ^2.0 || ^3.0",
  1545. "symfony/framework-bundle": "^5.4 || ^6.0 || ^7.0"
  1546. },
  1547. "require-dev": {
  1548. "mockery/mockery": "^1.3.6",
  1549. "symfony/phpunit-bridge": "^5.4 || ^6.0 || ^7.0"
  1550. },
  1551. "type": "symfony-bundle",
  1552. "extra": {
  1553. "branch-alias": {
  1554. "dev-master": "2.x-dev"
  1555. }
  1556. },
  1557. "autoload": {
  1558. "psr-4": {
  1559. "Nelmio\\CorsBundle\\": ""
  1560. },
  1561. "exclude-from-classmap": [
  1562. "/Tests/"
  1563. ]
  1564. },
  1565. "notification-url": "https://packagist.org/downloads/",
  1566. "license": [
  1567. "MIT"
  1568. ],
  1569. "authors": [
  1570. {
  1571. "name": "Nelmio",
  1572. "homepage": "http://nelm.io"
  1573. },
  1574. {
  1575. "name": "Symfony Community",
  1576. "homepage": "https://github.com/nelmio/NelmioCorsBundle/contributors"
  1577. }
  1578. ],
  1579. "description": "Adds CORS (Cross-Origin Resource Sharing) headers support in your Symfony application",
  1580. "keywords": [
  1581. "api",
  1582. "cors",
  1583. "crossdomain"
  1584. ],
  1585. "support": {
  1586. "issues": "https://github.com/nelmio/NelmioCorsBundle/issues",
  1587. "source": "https://github.com/nelmio/NelmioCorsBundle/tree/2.5.0"
  1588. },
  1589. "time": "2024-06-24T21:25:28+00:00"
  1590. },
  1591. {
  1592. "name": "olinox14/path-php",
  1593. "version": "0.1.8",
  1594. "source": {
  1595. "type": "git",
  1596. "url": "https://github.com/olinox14/path-php.git",
  1597. "reference": "cbc29f6f8e344d3a0c1b6fd343e26f2919b939fc"
  1598. },
  1599. "dist": {
  1600. "type": "zip",
  1601. "url": "https://api.github.com/repos/olinox14/path-php/zipball/cbc29f6f8e344d3a0c1b6fd343e26f2919b939fc",
  1602. "reference": "cbc29f6f8e344d3a0c1b6fd343e26f2919b939fc",
  1603. "shasum": ""
  1604. },
  1605. "require": {
  1606. "php": ">=8.0"
  1607. },
  1608. "require-dev": {
  1609. "ext-posix": "*",
  1610. "friendsofphp/php-cs-fixer": "^3.52",
  1611. "php-coveralls/php-coveralls": "^2.7",
  1612. "phpstan/phpstan": "^1.10",
  1613. "phpunit/phpunit": "^9.6"
  1614. },
  1615. "type": "library",
  1616. "autoload": {
  1617. "psr-4": {
  1618. "Path\\": "src/"
  1619. }
  1620. },
  1621. "notification-url": "https://packagist.org/downloads/",
  1622. "license": [
  1623. "MIT"
  1624. ],
  1625. "authors": [
  1626. {
  1627. "name": "Olivier Massot",
  1628. "email": "olinox14@tuta.io"
  1629. }
  1630. ],
  1631. "description": "Object-oriented file and path operations, inspired by the path.py python library",
  1632. "support": {
  1633. "issues": "https://github.com/olinox14/path-php/issues",
  1634. "source": "https://github.com/olinox14/path-php/tree/0.1.8"
  1635. },
  1636. "time": "2024-04-25T20:56:34+00:00"
  1637. },
  1638. {
  1639. "name": "phpdocumentor/reflection-common",
  1640. "version": "2.2.0",
  1641. "source": {
  1642. "type": "git",
  1643. "url": "https://github.com/phpDocumentor/ReflectionCommon.git",
  1644. "reference": "1d01c49d4ed62f25aa84a747ad35d5a16924662b"
  1645. },
  1646. "dist": {
  1647. "type": "zip",
  1648. "url": "https://api.github.com/repos/phpDocumentor/ReflectionCommon/zipball/1d01c49d4ed62f25aa84a747ad35d5a16924662b",
  1649. "reference": "1d01c49d4ed62f25aa84a747ad35d5a16924662b",
  1650. "shasum": ""
  1651. },
  1652. "require": {
  1653. "php": "^7.2 || ^8.0"
  1654. },
  1655. "type": "library",
  1656. "extra": {
  1657. "branch-alias": {
  1658. "dev-2.x": "2.x-dev"
  1659. }
  1660. },
  1661. "autoload": {
  1662. "psr-4": {
  1663. "phpDocumentor\\Reflection\\": "src/"
  1664. }
  1665. },
  1666. "notification-url": "https://packagist.org/downloads/",
  1667. "license": [
  1668. "MIT"
  1669. ],
  1670. "authors": [
  1671. {
  1672. "name": "Jaap van Otterdijk",
  1673. "email": "opensource@ijaap.nl"
  1674. }
  1675. ],
  1676. "description": "Common reflection classes used by phpdocumentor to reflect the code structure",
  1677. "homepage": "http://www.phpdoc.org",
  1678. "keywords": [
  1679. "FQSEN",
  1680. "phpDocumentor",
  1681. "phpdoc",
  1682. "reflection",
  1683. "static analysis"
  1684. ],
  1685. "support": {
  1686. "issues": "https://github.com/phpDocumentor/ReflectionCommon/issues",
  1687. "source": "https://github.com/phpDocumentor/ReflectionCommon/tree/2.x"
  1688. },
  1689. "time": "2020-06-27T09:03:43+00:00"
  1690. },
  1691. {
  1692. "name": "phpdocumentor/reflection-docblock",
  1693. "version": "5.4.1",
  1694. "source": {
  1695. "type": "git",
  1696. "url": "https://github.com/phpDocumentor/ReflectionDocBlock.git",
  1697. "reference": "9d07b3f7fdcf5efec5d1609cba3c19c5ea2bdc9c"
  1698. },
  1699. "dist": {
  1700. "type": "zip",
  1701. "url": "https://api.github.com/repos/phpDocumentor/ReflectionDocBlock/zipball/9d07b3f7fdcf5efec5d1609cba3c19c5ea2bdc9c",
  1702. "reference": "9d07b3f7fdcf5efec5d1609cba3c19c5ea2bdc9c",
  1703. "shasum": ""
  1704. },
  1705. "require": {
  1706. "doctrine/deprecations": "^1.1",
  1707. "ext-filter": "*",
  1708. "php": "^7.4 || ^8.0",
  1709. "phpdocumentor/reflection-common": "^2.2",
  1710. "phpdocumentor/type-resolver": "^1.7",
  1711. "phpstan/phpdoc-parser": "^1.7",
  1712. "webmozart/assert": "^1.9.1"
  1713. },
  1714. "require-dev": {
  1715. "mockery/mockery": "~1.3.5",
  1716. "phpstan/extension-installer": "^1.1",
  1717. "phpstan/phpstan": "^1.8",
  1718. "phpstan/phpstan-mockery": "^1.1",
  1719. "phpstan/phpstan-webmozart-assert": "^1.2",
  1720. "phpunit/phpunit": "^9.5",
  1721. "vimeo/psalm": "^5.13"
  1722. },
  1723. "type": "library",
  1724. "extra": {
  1725. "branch-alias": {
  1726. "dev-master": "5.x-dev"
  1727. }
  1728. },
  1729. "autoload": {
  1730. "psr-4": {
  1731. "phpDocumentor\\Reflection\\": "src"
  1732. }
  1733. },
  1734. "notification-url": "https://packagist.org/downloads/",
  1735. "license": [
  1736. "MIT"
  1737. ],
  1738. "authors": [
  1739. {
  1740. "name": "Mike van Riel",
  1741. "email": "me@mikevanriel.com"
  1742. },
  1743. {
  1744. "name": "Jaap van Otterdijk",
  1745. "email": "opensource@ijaap.nl"
  1746. }
  1747. ],
  1748. "description": "With this component, a library can provide support for annotations via DocBlocks or otherwise retrieve information that is embedded in a DocBlock.",
  1749. "support": {
  1750. "issues": "https://github.com/phpDocumentor/ReflectionDocBlock/issues",
  1751. "source": "https://github.com/phpDocumentor/ReflectionDocBlock/tree/5.4.1"
  1752. },
  1753. "time": "2024-05-21T05:55:05+00:00"
  1754. },
  1755. {
  1756. "name": "phpdocumentor/type-resolver",
  1757. "version": "1.8.2",
  1758. "source": {
  1759. "type": "git",
  1760. "url": "https://github.com/phpDocumentor/TypeResolver.git",
  1761. "reference": "153ae662783729388a584b4361f2545e4d841e3c"
  1762. },
  1763. "dist": {
  1764. "type": "zip",
  1765. "url": "https://api.github.com/repos/phpDocumentor/TypeResolver/zipball/153ae662783729388a584b4361f2545e4d841e3c",
  1766. "reference": "153ae662783729388a584b4361f2545e4d841e3c",
  1767. "shasum": ""
  1768. },
  1769. "require": {
  1770. "doctrine/deprecations": "^1.0",
  1771. "php": "^7.3 || ^8.0",
  1772. "phpdocumentor/reflection-common": "^2.0",
  1773. "phpstan/phpdoc-parser": "^1.13"
  1774. },
  1775. "require-dev": {
  1776. "ext-tokenizer": "*",
  1777. "phpbench/phpbench": "^1.2",
  1778. "phpstan/extension-installer": "^1.1",
  1779. "phpstan/phpstan": "^1.8",
  1780. "phpstan/phpstan-phpunit": "^1.1",
  1781. "phpunit/phpunit": "^9.5",
  1782. "rector/rector": "^0.13.9",
  1783. "vimeo/psalm": "^4.25"
  1784. },
  1785. "type": "library",
  1786. "extra": {
  1787. "branch-alias": {
  1788. "dev-1.x": "1.x-dev"
  1789. }
  1790. },
  1791. "autoload": {
  1792. "psr-4": {
  1793. "phpDocumentor\\Reflection\\": "src"
  1794. }
  1795. },
  1796. "notification-url": "https://packagist.org/downloads/",
  1797. "license": [
  1798. "MIT"
  1799. ],
  1800. "authors": [
  1801. {
  1802. "name": "Mike van Riel",
  1803. "email": "me@mikevanriel.com"
  1804. }
  1805. ],
  1806. "description": "A PSR-5 based resolver of Class names, Types and Structural Element Names",
  1807. "support": {
  1808. "issues": "https://github.com/phpDocumentor/TypeResolver/issues",
  1809. "source": "https://github.com/phpDocumentor/TypeResolver/tree/1.8.2"
  1810. },
  1811. "time": "2024-02-23T11:10:43+00:00"
  1812. },
  1813. {
  1814. "name": "phpstan/phpdoc-parser",
  1815. "version": "1.30.1",
  1816. "source": {
  1817. "type": "git",
  1818. "url": "https://github.com/phpstan/phpdoc-parser.git",
  1819. "reference": "51b95ec8670af41009e2b2b56873bad96682413e"
  1820. },
  1821. "dist": {
  1822. "type": "zip",
  1823. "url": "https://api.github.com/repos/phpstan/phpdoc-parser/zipball/51b95ec8670af41009e2b2b56873bad96682413e",
  1824. "reference": "51b95ec8670af41009e2b2b56873bad96682413e",
  1825. "shasum": ""
  1826. },
  1827. "require": {
  1828. "php": "^7.2 || ^8.0"
  1829. },
  1830. "require-dev": {
  1831. "doctrine/annotations": "^2.0",
  1832. "nikic/php-parser": "^4.15",
  1833. "php-parallel-lint/php-parallel-lint": "^1.2",
  1834. "phpstan/extension-installer": "^1.0",
  1835. "phpstan/phpstan": "^1.5",
  1836. "phpstan/phpstan-phpunit": "^1.1",
  1837. "phpstan/phpstan-strict-rules": "^1.0",
  1838. "phpunit/phpunit": "^9.5",
  1839. "symfony/process": "^5.2"
  1840. },
  1841. "type": "library",
  1842. "autoload": {
  1843. "psr-4": {
  1844. "PHPStan\\PhpDocParser\\": [
  1845. "src/"
  1846. ]
  1847. }
  1848. },
  1849. "notification-url": "https://packagist.org/downloads/",
  1850. "license": [
  1851. "MIT"
  1852. ],
  1853. "description": "PHPDoc parser with support for nullable, intersection and generic types",
  1854. "support": {
  1855. "issues": "https://github.com/phpstan/phpdoc-parser/issues",
  1856. "source": "https://github.com/phpstan/phpdoc-parser/tree/1.30.1"
  1857. },
  1858. "time": "2024-09-07T20:13:05+00:00"
  1859. },
  1860. {
  1861. "name": "psr/cache",
  1862. "version": "3.0.0",
  1863. "source": {
  1864. "type": "git",
  1865. "url": "https://github.com/php-fig/cache.git",
  1866. "reference": "aa5030cfa5405eccfdcb1083ce040c2cb8d253bf"
  1867. },
  1868. "dist": {
  1869. "type": "zip",
  1870. "url": "https://api.github.com/repos/php-fig/cache/zipball/aa5030cfa5405eccfdcb1083ce040c2cb8d253bf",
  1871. "reference": "aa5030cfa5405eccfdcb1083ce040c2cb8d253bf",
  1872. "shasum": ""
  1873. },
  1874. "require": {
  1875. "php": ">=8.0.0"
  1876. },
  1877. "type": "library",
  1878. "extra": {
  1879. "branch-alias": {
  1880. "dev-master": "1.0.x-dev"
  1881. }
  1882. },
  1883. "autoload": {
  1884. "psr-4": {
  1885. "Psr\\Cache\\": "src/"
  1886. }
  1887. },
  1888. "notification-url": "https://packagist.org/downloads/",
  1889. "license": [
  1890. "MIT"
  1891. ],
  1892. "authors": [
  1893. {
  1894. "name": "PHP-FIG",
  1895. "homepage": "https://www.php-fig.org/"
  1896. }
  1897. ],
  1898. "description": "Common interface for caching libraries",
  1899. "keywords": [
  1900. "cache",
  1901. "psr",
  1902. "psr-6"
  1903. ],
  1904. "support": {
  1905. "source": "https://github.com/php-fig/cache/tree/3.0.0"
  1906. },
  1907. "time": "2021-02-03T23:26:27+00:00"
  1908. },
  1909. {
  1910. "name": "psr/clock",
  1911. "version": "1.0.0",
  1912. "source": {
  1913. "type": "git",
  1914. "url": "https://github.com/php-fig/clock.git",
  1915. "reference": "e41a24703d4560fd0acb709162f73b8adfc3aa0d"
  1916. },
  1917. "dist": {
  1918. "type": "zip",
  1919. "url": "https://api.github.com/repos/php-fig/clock/zipball/e41a24703d4560fd0acb709162f73b8adfc3aa0d",
  1920. "reference": "e41a24703d4560fd0acb709162f73b8adfc3aa0d",
  1921. "shasum": ""
  1922. },
  1923. "require": {
  1924. "php": "^7.0 || ^8.0"
  1925. },
  1926. "type": "library",
  1927. "autoload": {
  1928. "psr-4": {
  1929. "Psr\\Clock\\": "src/"
  1930. }
  1931. },
  1932. "notification-url": "https://packagist.org/downloads/",
  1933. "license": [
  1934. "MIT"
  1935. ],
  1936. "authors": [
  1937. {
  1938. "name": "PHP-FIG",
  1939. "homepage": "https://www.php-fig.org/"
  1940. }
  1941. ],
  1942. "description": "Common interface for reading the clock.",
  1943. "homepage": "https://github.com/php-fig/clock",
  1944. "keywords": [
  1945. "clock",
  1946. "now",
  1947. "psr",
  1948. "psr-20",
  1949. "time"
  1950. ],
  1951. "support": {
  1952. "issues": "https://github.com/php-fig/clock/issues",
  1953. "source": "https://github.com/php-fig/clock/tree/1.0.0"
  1954. },
  1955. "time": "2022-11-25T14:36:26+00:00"
  1956. },
  1957. {
  1958. "name": "psr/container",
  1959. "version": "2.0.2",
  1960. "source": {
  1961. "type": "git",
  1962. "url": "https://github.com/php-fig/container.git",
  1963. "reference": "c71ecc56dfe541dbd90c5360474fbc405f8d5963"
  1964. },
  1965. "dist": {
  1966. "type": "zip",
  1967. "url": "https://api.github.com/repos/php-fig/container/zipball/c71ecc56dfe541dbd90c5360474fbc405f8d5963",
  1968. "reference": "c71ecc56dfe541dbd90c5360474fbc405f8d5963",
  1969. "shasum": ""
  1970. },
  1971. "require": {
  1972. "php": ">=7.4.0"
  1973. },
  1974. "type": "library",
  1975. "extra": {
  1976. "branch-alias": {
  1977. "dev-master": "2.0.x-dev"
  1978. }
  1979. },
  1980. "autoload": {
  1981. "psr-4": {
  1982. "Psr\\Container\\": "src/"
  1983. }
  1984. },
  1985. "notification-url": "https://packagist.org/downloads/",
  1986. "license": [
  1987. "MIT"
  1988. ],
  1989. "authors": [
  1990. {
  1991. "name": "PHP-FIG",
  1992. "homepage": "https://www.php-fig.org/"
  1993. }
  1994. ],
  1995. "description": "Common Container Interface (PHP FIG PSR-11)",
  1996. "homepage": "https://github.com/php-fig/container",
  1997. "keywords": [
  1998. "PSR-11",
  1999. "container",
  2000. "container-interface",
  2001. "container-interop",
  2002. "psr"
  2003. ],
  2004. "support": {
  2005. "issues": "https://github.com/php-fig/container/issues",
  2006. "source": "https://github.com/php-fig/container/tree/2.0.2"
  2007. },
  2008. "time": "2021-11-05T16:47:00+00:00"
  2009. },
  2010. {
  2011. "name": "psr/event-dispatcher",
  2012. "version": "1.0.0",
  2013. "source": {
  2014. "type": "git",
  2015. "url": "https://github.com/php-fig/event-dispatcher.git",
  2016. "reference": "dbefd12671e8a14ec7f180cab83036ed26714bb0"
  2017. },
  2018. "dist": {
  2019. "type": "zip",
  2020. "url": "https://api.github.com/repos/php-fig/event-dispatcher/zipball/dbefd12671e8a14ec7f180cab83036ed26714bb0",
  2021. "reference": "dbefd12671e8a14ec7f180cab83036ed26714bb0",
  2022. "shasum": ""
  2023. },
  2024. "require": {
  2025. "php": ">=7.2.0"
  2026. },
  2027. "type": "library",
  2028. "extra": {
  2029. "branch-alias": {
  2030. "dev-master": "1.0.x-dev"
  2031. }
  2032. },
  2033. "autoload": {
  2034. "psr-4": {
  2035. "Psr\\EventDispatcher\\": "src/"
  2036. }
  2037. },
  2038. "notification-url": "https://packagist.org/downloads/",
  2039. "license": [
  2040. "MIT"
  2041. ],
  2042. "authors": [
  2043. {
  2044. "name": "PHP-FIG",
  2045. "homepage": "http://www.php-fig.org/"
  2046. }
  2047. ],
  2048. "description": "Standard interfaces for event handling.",
  2049. "keywords": [
  2050. "events",
  2051. "psr",
  2052. "psr-14"
  2053. ],
  2054. "support": {
  2055. "issues": "https://github.com/php-fig/event-dispatcher/issues",
  2056. "source": "https://github.com/php-fig/event-dispatcher/tree/1.0.0"
  2057. },
  2058. "time": "2019-01-08T18:20:26+00:00"
  2059. },
  2060. {
  2061. "name": "psr/link",
  2062. "version": "2.0.1",
  2063. "source": {
  2064. "type": "git",
  2065. "url": "https://github.com/php-fig/link.git",
  2066. "reference": "84b159194ecfd7eaa472280213976e96415433f7"
  2067. },
  2068. "dist": {
  2069. "type": "zip",
  2070. "url": "https://api.github.com/repos/php-fig/link/zipball/84b159194ecfd7eaa472280213976e96415433f7",
  2071. "reference": "84b159194ecfd7eaa472280213976e96415433f7",
  2072. "shasum": ""
  2073. },
  2074. "require": {
  2075. "php": ">=8.0.0"
  2076. },
  2077. "suggest": {
  2078. "fig/link-util": "Provides some useful PSR-13 utilities"
  2079. },
  2080. "type": "library",
  2081. "extra": {
  2082. "branch-alias": {
  2083. "dev-master": "2.0.x-dev"
  2084. }
  2085. },
  2086. "autoload": {
  2087. "psr-4": {
  2088. "Psr\\Link\\": "src/"
  2089. }
  2090. },
  2091. "notification-url": "https://packagist.org/downloads/",
  2092. "license": [
  2093. "MIT"
  2094. ],
  2095. "authors": [
  2096. {
  2097. "name": "PHP-FIG",
  2098. "homepage": "http://www.php-fig.org/"
  2099. }
  2100. ],
  2101. "description": "Common interfaces for HTTP links",
  2102. "homepage": "https://github.com/php-fig/link",
  2103. "keywords": [
  2104. "http",
  2105. "http-link",
  2106. "link",
  2107. "psr",
  2108. "psr-13",
  2109. "rest"
  2110. ],
  2111. "support": {
  2112. "source": "https://github.com/php-fig/link/tree/2.0.1"
  2113. },
  2114. "time": "2021-03-11T23:00:27+00:00"
  2115. },
  2116. {
  2117. "name": "psr/log",
  2118. "version": "3.0.1",
  2119. "source": {
  2120. "type": "git",
  2121. "url": "https://github.com/php-fig/log.git",
  2122. "reference": "79dff0b268932c640297f5208d6298f71855c03e"
  2123. },
  2124. "dist": {
  2125. "type": "zip",
  2126. "url": "https://api.github.com/repos/php-fig/log/zipball/79dff0b268932c640297f5208d6298f71855c03e",
  2127. "reference": "79dff0b268932c640297f5208d6298f71855c03e",
  2128. "shasum": ""
  2129. },
  2130. "require": {
  2131. "php": ">=8.0.0"
  2132. },
  2133. "type": "library",
  2134. "extra": {
  2135. "branch-alias": {
  2136. "dev-master": "3.x-dev"
  2137. }
  2138. },
  2139. "autoload": {
  2140. "psr-4": {
  2141. "Psr\\Log\\": "src"
  2142. }
  2143. },
  2144. "notification-url": "https://packagist.org/downloads/",
  2145. "license": [
  2146. "MIT"
  2147. ],
  2148. "authors": [
  2149. {
  2150. "name": "PHP-FIG",
  2151. "homepage": "https://www.php-fig.org/"
  2152. }
  2153. ],
  2154. "description": "Common interface for logging libraries",
  2155. "homepage": "https://github.com/php-fig/log",
  2156. "keywords": [
  2157. "log",
  2158. "psr",
  2159. "psr-3"
  2160. ],
  2161. "support": {
  2162. "source": "https://github.com/php-fig/log/tree/3.0.1"
  2163. },
  2164. "time": "2024-08-21T13:31:24+00:00"
  2165. },
  2166. {
  2167. "name": "symfony/asset",
  2168. "version": "v7.1.1",
  2169. "source": {
  2170. "type": "git",
  2171. "url": "https://github.com/symfony/asset.git",
  2172. "reference": "8970de4a0cedd34e097c0f5c502a614780b9ca43"
  2173. },
  2174. "dist": {
  2175. "type": "zip",
  2176. "url": "https://api.github.com/repos/symfony/asset/zipball/8970de4a0cedd34e097c0f5c502a614780b9ca43",
  2177. "reference": "8970de4a0cedd34e097c0f5c502a614780b9ca43",
  2178. "shasum": ""
  2179. },
  2180. "require": {
  2181. "php": ">=8.2"
  2182. },
  2183. "conflict": {
  2184. "symfony/http-foundation": "<6.4"
  2185. },
  2186. "require-dev": {
  2187. "symfony/http-client": "^6.4|^7.0",
  2188. "symfony/http-foundation": "^6.4|^7.0",
  2189. "symfony/http-kernel": "^6.4|^7.0"
  2190. },
  2191. "type": "library",
  2192. "autoload": {
  2193. "psr-4": {
  2194. "Symfony\\Component\\Asset\\": ""
  2195. },
  2196. "exclude-from-classmap": [
  2197. "/Tests/"
  2198. ]
  2199. },
  2200. "notification-url": "https://packagist.org/downloads/",
  2201. "license": [
  2202. "MIT"
  2203. ],
  2204. "authors": [
  2205. {
  2206. "name": "Fabien Potencier",
  2207. "email": "fabien@symfony.com"
  2208. },
  2209. {
  2210. "name": "Symfony Community",
  2211. "homepage": "https://symfony.com/contributors"
  2212. }
  2213. ],
  2214. "description": "Manages URL generation and versioning of web assets such as CSS stylesheets, JavaScript files and image files",
  2215. "homepage": "https://symfony.com",
  2216. "support": {
  2217. "source": "https://github.com/symfony/asset/tree/v7.1.1"
  2218. },
  2219. "funding": [
  2220. {
  2221. "url": "https://symfony.com/sponsor",
  2222. "type": "custom"
  2223. },
  2224. {
  2225. "url": "https://github.com/fabpot",
  2226. "type": "github"
  2227. },
  2228. {
  2229. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  2230. "type": "tidelift"
  2231. }
  2232. ],
  2233. "time": "2024-05-31T14:57:53+00:00"
  2234. },
  2235. {
  2236. "name": "symfony/cache",
  2237. "version": "v7.1.4",
  2238. "source": {
  2239. "type": "git",
  2240. "url": "https://github.com/symfony/cache.git",
  2241. "reference": "b61e464d7687bb7e8f677d5031c632bf3820df18"
  2242. },
  2243. "dist": {
  2244. "type": "zip",
  2245. "url": "https://api.github.com/repos/symfony/cache/zipball/b61e464d7687bb7e8f677d5031c632bf3820df18",
  2246. "reference": "b61e464d7687bb7e8f677d5031c632bf3820df18",
  2247. "shasum": ""
  2248. },
  2249. "require": {
  2250. "php": ">=8.2",
  2251. "psr/cache": "^2.0|^3.0",
  2252. "psr/log": "^1.1|^2|^3",
  2253. "symfony/cache-contracts": "^2.5|^3",
  2254. "symfony/deprecation-contracts": "^2.5|^3.0",
  2255. "symfony/service-contracts": "^2.5|^3",
  2256. "symfony/var-exporter": "^6.4|^7.0"
  2257. },
  2258. "conflict": {
  2259. "doctrine/dbal": "<3.6",
  2260. "symfony/dependency-injection": "<6.4",
  2261. "symfony/http-kernel": "<6.4",
  2262. "symfony/var-dumper": "<6.4"
  2263. },
  2264. "provide": {
  2265. "psr/cache-implementation": "2.0|3.0",
  2266. "psr/simple-cache-implementation": "1.0|2.0|3.0",
  2267. "symfony/cache-implementation": "1.1|2.0|3.0"
  2268. },
  2269. "require-dev": {
  2270. "cache/integration-tests": "dev-master",
  2271. "doctrine/dbal": "^3.6|^4",
  2272. "predis/predis": "^1.1|^2.0",
  2273. "psr/simple-cache": "^1.0|^2.0|^3.0",
  2274. "symfony/config": "^6.4|^7.0",
  2275. "symfony/dependency-injection": "^6.4|^7.0",
  2276. "symfony/filesystem": "^6.4|^7.0",
  2277. "symfony/http-kernel": "^6.4|^7.0",
  2278. "symfony/messenger": "^6.4|^7.0",
  2279. "symfony/var-dumper": "^6.4|^7.0"
  2280. },
  2281. "type": "library",
  2282. "autoload": {
  2283. "psr-4": {
  2284. "Symfony\\Component\\Cache\\": ""
  2285. },
  2286. "classmap": [
  2287. "Traits/ValueWrapper.php"
  2288. ],
  2289. "exclude-from-classmap": [
  2290. "/Tests/"
  2291. ]
  2292. },
  2293. "notification-url": "https://packagist.org/downloads/",
  2294. "license": [
  2295. "MIT"
  2296. ],
  2297. "authors": [
  2298. {
  2299. "name": "Nicolas Grekas",
  2300. "email": "p@tchwork.com"
  2301. },
  2302. {
  2303. "name": "Symfony Community",
  2304. "homepage": "https://symfony.com/contributors"
  2305. }
  2306. ],
  2307. "description": "Provides extended PSR-6, PSR-16 (and tags) implementations",
  2308. "homepage": "https://symfony.com",
  2309. "keywords": [
  2310. "caching",
  2311. "psr6"
  2312. ],
  2313. "support": {
  2314. "source": "https://github.com/symfony/cache/tree/v7.1.4"
  2315. },
  2316. "funding": [
  2317. {
  2318. "url": "https://symfony.com/sponsor",
  2319. "type": "custom"
  2320. },
  2321. {
  2322. "url": "https://github.com/fabpot",
  2323. "type": "github"
  2324. },
  2325. {
  2326. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  2327. "type": "tidelift"
  2328. }
  2329. ],
  2330. "time": "2024-08-12T09:59:40+00:00"
  2331. },
  2332. {
  2333. "name": "symfony/cache-contracts",
  2334. "version": "v3.5.0",
  2335. "source": {
  2336. "type": "git",
  2337. "url": "https://github.com/symfony/cache-contracts.git",
  2338. "reference": "df6a1a44c890faded49a5fca33c2d5c5fd3c2197"
  2339. },
  2340. "dist": {
  2341. "type": "zip",
  2342. "url": "https://api.github.com/repos/symfony/cache-contracts/zipball/df6a1a44c890faded49a5fca33c2d5c5fd3c2197",
  2343. "reference": "df6a1a44c890faded49a5fca33c2d5c5fd3c2197",
  2344. "shasum": ""
  2345. },
  2346. "require": {
  2347. "php": ">=8.1",
  2348. "psr/cache": "^3.0"
  2349. },
  2350. "type": "library",
  2351. "extra": {
  2352. "branch-alias": {
  2353. "dev-main": "3.5-dev"
  2354. },
  2355. "thanks": {
  2356. "name": "symfony/contracts",
  2357. "url": "https://github.com/symfony/contracts"
  2358. }
  2359. },
  2360. "autoload": {
  2361. "psr-4": {
  2362. "Symfony\\Contracts\\Cache\\": ""
  2363. }
  2364. },
  2365. "notification-url": "https://packagist.org/downloads/",
  2366. "license": [
  2367. "MIT"
  2368. ],
  2369. "authors": [
  2370. {
  2371. "name": "Nicolas Grekas",
  2372. "email": "p@tchwork.com"
  2373. },
  2374. {
  2375. "name": "Symfony Community",
  2376. "homepage": "https://symfony.com/contributors"
  2377. }
  2378. ],
  2379. "description": "Generic abstractions related to caching",
  2380. "homepage": "https://symfony.com",
  2381. "keywords": [
  2382. "abstractions",
  2383. "contracts",
  2384. "decoupling",
  2385. "interfaces",
  2386. "interoperability",
  2387. "standards"
  2388. ],
  2389. "support": {
  2390. "source": "https://github.com/symfony/cache-contracts/tree/v3.5.0"
  2391. },
  2392. "funding": [
  2393. {
  2394. "url": "https://symfony.com/sponsor",
  2395. "type": "custom"
  2396. },
  2397. {
  2398. "url": "https://github.com/fabpot",
  2399. "type": "github"
  2400. },
  2401. {
  2402. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  2403. "type": "tidelift"
  2404. }
  2405. ],
  2406. "time": "2024-04-18T09:32:20+00:00"
  2407. },
  2408. {
  2409. "name": "symfony/clock",
  2410. "version": "v7.1.1",
  2411. "source": {
  2412. "type": "git",
  2413. "url": "https://github.com/symfony/clock.git",
  2414. "reference": "3dfc8b084853586de51dd1441c6242c76a28cbe7"
  2415. },
  2416. "dist": {
  2417. "type": "zip",
  2418. "url": "https://api.github.com/repos/symfony/clock/zipball/3dfc8b084853586de51dd1441c6242c76a28cbe7",
  2419. "reference": "3dfc8b084853586de51dd1441c6242c76a28cbe7",
  2420. "shasum": ""
  2421. },
  2422. "require": {
  2423. "php": ">=8.2",
  2424. "psr/clock": "^1.0",
  2425. "symfony/polyfill-php83": "^1.28"
  2426. },
  2427. "provide": {
  2428. "psr/clock-implementation": "1.0"
  2429. },
  2430. "type": "library",
  2431. "autoload": {
  2432. "files": [
  2433. "Resources/now.php"
  2434. ],
  2435. "psr-4": {
  2436. "Symfony\\Component\\Clock\\": ""
  2437. },
  2438. "exclude-from-classmap": [
  2439. "/Tests/"
  2440. ]
  2441. },
  2442. "notification-url": "https://packagist.org/downloads/",
  2443. "license": [
  2444. "MIT"
  2445. ],
  2446. "authors": [
  2447. {
  2448. "name": "Nicolas Grekas",
  2449. "email": "p@tchwork.com"
  2450. },
  2451. {
  2452. "name": "Symfony Community",
  2453. "homepage": "https://symfony.com/contributors"
  2454. }
  2455. ],
  2456. "description": "Decouples applications from the system clock",
  2457. "homepage": "https://symfony.com",
  2458. "keywords": [
  2459. "clock",
  2460. "psr20",
  2461. "time"
  2462. ],
  2463. "support": {
  2464. "source": "https://github.com/symfony/clock/tree/v7.1.1"
  2465. },
  2466. "funding": [
  2467. {
  2468. "url": "https://symfony.com/sponsor",
  2469. "type": "custom"
  2470. },
  2471. {
  2472. "url": "https://github.com/fabpot",
  2473. "type": "github"
  2474. },
  2475. {
  2476. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  2477. "type": "tidelift"
  2478. }
  2479. ],
  2480. "time": "2024-05-31T14:57:53+00:00"
  2481. },
  2482. {
  2483. "name": "symfony/config",
  2484. "version": "v7.1.1",
  2485. "source": {
  2486. "type": "git",
  2487. "url": "https://github.com/symfony/config.git",
  2488. "reference": "2210fc99fa42a259eb6c89d1f724ce0c4d62d5d2"
  2489. },
  2490. "dist": {
  2491. "type": "zip",
  2492. "url": "https://api.github.com/repos/symfony/config/zipball/2210fc99fa42a259eb6c89d1f724ce0c4d62d5d2",
  2493. "reference": "2210fc99fa42a259eb6c89d1f724ce0c4d62d5d2",
  2494. "shasum": ""
  2495. },
  2496. "require": {
  2497. "php": ">=8.2",
  2498. "symfony/deprecation-contracts": "^2.5|^3",
  2499. "symfony/filesystem": "^7.1",
  2500. "symfony/polyfill-ctype": "~1.8"
  2501. },
  2502. "conflict": {
  2503. "symfony/finder": "<6.4",
  2504. "symfony/service-contracts": "<2.5"
  2505. },
  2506. "require-dev": {
  2507. "symfony/event-dispatcher": "^6.4|^7.0",
  2508. "symfony/finder": "^6.4|^7.0",
  2509. "symfony/messenger": "^6.4|^7.0",
  2510. "symfony/service-contracts": "^2.5|^3",
  2511. "symfony/yaml": "^6.4|^7.0"
  2512. },
  2513. "type": "library",
  2514. "autoload": {
  2515. "psr-4": {
  2516. "Symfony\\Component\\Config\\": ""
  2517. },
  2518. "exclude-from-classmap": [
  2519. "/Tests/"
  2520. ]
  2521. },
  2522. "notification-url": "https://packagist.org/downloads/",
  2523. "license": [
  2524. "MIT"
  2525. ],
  2526. "authors": [
  2527. {
  2528. "name": "Fabien Potencier",
  2529. "email": "fabien@symfony.com"
  2530. },
  2531. {
  2532. "name": "Symfony Community",
  2533. "homepage": "https://symfony.com/contributors"
  2534. }
  2535. ],
  2536. "description": "Helps you find, load, combine, autofill and validate configuration values of any kind",
  2537. "homepage": "https://symfony.com",
  2538. "support": {
  2539. "source": "https://github.com/symfony/config/tree/v7.1.1"
  2540. },
  2541. "funding": [
  2542. {
  2543. "url": "https://symfony.com/sponsor",
  2544. "type": "custom"
  2545. },
  2546. {
  2547. "url": "https://github.com/fabpot",
  2548. "type": "github"
  2549. },
  2550. {
  2551. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  2552. "type": "tidelift"
  2553. }
  2554. ],
  2555. "time": "2024-05-31T14:57:53+00:00"
  2556. },
  2557. {
  2558. "name": "symfony/console",
  2559. "version": "v7.1.4",
  2560. "source": {
  2561. "type": "git",
  2562. "url": "https://github.com/symfony/console.git",
  2563. "reference": "1eed7af6961d763e7832e874d7f9b21c3ea9c111"
  2564. },
  2565. "dist": {
  2566. "type": "zip",
  2567. "url": "https://api.github.com/repos/symfony/console/zipball/1eed7af6961d763e7832e874d7f9b21c3ea9c111",
  2568. "reference": "1eed7af6961d763e7832e874d7f9b21c3ea9c111",
  2569. "shasum": ""
  2570. },
  2571. "require": {
  2572. "php": ">=8.2",
  2573. "symfony/polyfill-mbstring": "~1.0",
  2574. "symfony/service-contracts": "^2.5|^3",
  2575. "symfony/string": "^6.4|^7.0"
  2576. },
  2577. "conflict": {
  2578. "symfony/dependency-injection": "<6.4",
  2579. "symfony/dotenv": "<6.4",
  2580. "symfony/event-dispatcher": "<6.4",
  2581. "symfony/lock": "<6.4",
  2582. "symfony/process": "<6.4"
  2583. },
  2584. "provide": {
  2585. "psr/log-implementation": "1.0|2.0|3.0"
  2586. },
  2587. "require-dev": {
  2588. "psr/log": "^1|^2|^3",
  2589. "symfony/config": "^6.4|^7.0",
  2590. "symfony/dependency-injection": "^6.4|^7.0",
  2591. "symfony/event-dispatcher": "^6.4|^7.0",
  2592. "symfony/http-foundation": "^6.4|^7.0",
  2593. "symfony/http-kernel": "^6.4|^7.0",
  2594. "symfony/lock": "^6.4|^7.0",
  2595. "symfony/messenger": "^6.4|^7.0",
  2596. "symfony/process": "^6.4|^7.0",
  2597. "symfony/stopwatch": "^6.4|^7.0",
  2598. "symfony/var-dumper": "^6.4|^7.0"
  2599. },
  2600. "type": "library",
  2601. "autoload": {
  2602. "psr-4": {
  2603. "Symfony\\Component\\Console\\": ""
  2604. },
  2605. "exclude-from-classmap": [
  2606. "/Tests/"
  2607. ]
  2608. },
  2609. "notification-url": "https://packagist.org/downloads/",
  2610. "license": [
  2611. "MIT"
  2612. ],
  2613. "authors": [
  2614. {
  2615. "name": "Fabien Potencier",
  2616. "email": "fabien@symfony.com"
  2617. },
  2618. {
  2619. "name": "Symfony Community",
  2620. "homepage": "https://symfony.com/contributors"
  2621. }
  2622. ],
  2623. "description": "Eases the creation of beautiful and testable command line interfaces",
  2624. "homepage": "https://symfony.com",
  2625. "keywords": [
  2626. "cli",
  2627. "command-line",
  2628. "console",
  2629. "terminal"
  2630. ],
  2631. "support": {
  2632. "source": "https://github.com/symfony/console/tree/v7.1.4"
  2633. },
  2634. "funding": [
  2635. {
  2636. "url": "https://symfony.com/sponsor",
  2637. "type": "custom"
  2638. },
  2639. {
  2640. "url": "https://github.com/fabpot",
  2641. "type": "github"
  2642. },
  2643. {
  2644. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  2645. "type": "tidelift"
  2646. }
  2647. ],
  2648. "time": "2024-08-15T22:48:53+00:00"
  2649. },
  2650. {
  2651. "name": "symfony/dependency-injection",
  2652. "version": "v7.1.4",
  2653. "source": {
  2654. "type": "git",
  2655. "url": "https://github.com/symfony/dependency-injection.git",
  2656. "reference": "5320e0bc2c9e2d7450bb4091e497a305a68b28ed"
  2657. },
  2658. "dist": {
  2659. "type": "zip",
  2660. "url": "https://api.github.com/repos/symfony/dependency-injection/zipball/5320e0bc2c9e2d7450bb4091e497a305a68b28ed",
  2661. "reference": "5320e0bc2c9e2d7450bb4091e497a305a68b28ed",
  2662. "shasum": ""
  2663. },
  2664. "require": {
  2665. "php": ">=8.2",
  2666. "psr/container": "^1.1|^2.0",
  2667. "symfony/deprecation-contracts": "^2.5|^3",
  2668. "symfony/service-contracts": "^3.5",
  2669. "symfony/var-exporter": "^6.4|^7.0"
  2670. },
  2671. "conflict": {
  2672. "ext-psr": "<1.1|>=2",
  2673. "symfony/config": "<6.4",
  2674. "symfony/finder": "<6.4",
  2675. "symfony/yaml": "<6.4"
  2676. },
  2677. "provide": {
  2678. "psr/container-implementation": "1.1|2.0",
  2679. "symfony/service-implementation": "1.1|2.0|3.0"
  2680. },
  2681. "require-dev": {
  2682. "symfony/config": "^6.4|^7.0",
  2683. "symfony/expression-language": "^6.4|^7.0",
  2684. "symfony/yaml": "^6.4|^7.0"
  2685. },
  2686. "type": "library",
  2687. "autoload": {
  2688. "psr-4": {
  2689. "Symfony\\Component\\DependencyInjection\\": ""
  2690. },
  2691. "exclude-from-classmap": [
  2692. "/Tests/"
  2693. ]
  2694. },
  2695. "notification-url": "https://packagist.org/downloads/",
  2696. "license": [
  2697. "MIT"
  2698. ],
  2699. "authors": [
  2700. {
  2701. "name": "Fabien Potencier",
  2702. "email": "fabien@symfony.com"
  2703. },
  2704. {
  2705. "name": "Symfony Community",
  2706. "homepage": "https://symfony.com/contributors"
  2707. }
  2708. ],
  2709. "description": "Allows you to standardize and centralize the way objects are constructed in your application",
  2710. "homepage": "https://symfony.com",
  2711. "support": {
  2712. "source": "https://github.com/symfony/dependency-injection/tree/v7.1.4"
  2713. },
  2714. "funding": [
  2715. {
  2716. "url": "https://symfony.com/sponsor",
  2717. "type": "custom"
  2718. },
  2719. {
  2720. "url": "https://github.com/fabpot",
  2721. "type": "github"
  2722. },
  2723. {
  2724. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  2725. "type": "tidelift"
  2726. }
  2727. ],
  2728. "time": "2024-08-29T08:16:25+00:00"
  2729. },
  2730. {
  2731. "name": "symfony/deprecation-contracts",
  2732. "version": "v3.5.0",
  2733. "source": {
  2734. "type": "git",
  2735. "url": "https://github.com/symfony/deprecation-contracts.git",
  2736. "reference": "0e0d29ce1f20deffb4ab1b016a7257c4f1e789a1"
  2737. },
  2738. "dist": {
  2739. "type": "zip",
  2740. "url": "https://api.github.com/repos/symfony/deprecation-contracts/zipball/0e0d29ce1f20deffb4ab1b016a7257c4f1e789a1",
  2741. "reference": "0e0d29ce1f20deffb4ab1b016a7257c4f1e789a1",
  2742. "shasum": ""
  2743. },
  2744. "require": {
  2745. "php": ">=8.1"
  2746. },
  2747. "type": "library",
  2748. "extra": {
  2749. "branch-alias": {
  2750. "dev-main": "3.5-dev"
  2751. },
  2752. "thanks": {
  2753. "name": "symfony/contracts",
  2754. "url": "https://github.com/symfony/contracts"
  2755. }
  2756. },
  2757. "autoload": {
  2758. "files": [
  2759. "function.php"
  2760. ]
  2761. },
  2762. "notification-url": "https://packagist.org/downloads/",
  2763. "license": [
  2764. "MIT"
  2765. ],
  2766. "authors": [
  2767. {
  2768. "name": "Nicolas Grekas",
  2769. "email": "p@tchwork.com"
  2770. },
  2771. {
  2772. "name": "Symfony Community",
  2773. "homepage": "https://symfony.com/contributors"
  2774. }
  2775. ],
  2776. "description": "A generic function and convention to trigger deprecation notices",
  2777. "homepage": "https://symfony.com",
  2778. "support": {
  2779. "source": "https://github.com/symfony/deprecation-contracts/tree/v3.5.0"
  2780. },
  2781. "funding": [
  2782. {
  2783. "url": "https://symfony.com/sponsor",
  2784. "type": "custom"
  2785. },
  2786. {
  2787. "url": "https://github.com/fabpot",
  2788. "type": "github"
  2789. },
  2790. {
  2791. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  2792. "type": "tidelift"
  2793. }
  2794. ],
  2795. "time": "2024-04-18T09:32:20+00:00"
  2796. },
  2797. {
  2798. "name": "symfony/doctrine-bridge",
  2799. "version": "v7.1.4",
  2800. "source": {
  2801. "type": "git",
  2802. "url": "https://github.com/symfony/doctrine-bridge.git",
  2803. "reference": "5c31b278a52023970f4ef398e42ab9048483abfa"
  2804. },
  2805. "dist": {
  2806. "type": "zip",
  2807. "url": "https://api.github.com/repos/symfony/doctrine-bridge/zipball/5c31b278a52023970f4ef398e42ab9048483abfa",
  2808. "reference": "5c31b278a52023970f4ef398e42ab9048483abfa",
  2809. "shasum": ""
  2810. },
  2811. "require": {
  2812. "doctrine/event-manager": "^2",
  2813. "doctrine/persistence": "^3.1",
  2814. "php": ">=8.2",
  2815. "symfony/deprecation-contracts": "^2.5|^3",
  2816. "symfony/polyfill-ctype": "~1.8",
  2817. "symfony/polyfill-mbstring": "~1.0",
  2818. "symfony/service-contracts": "^2.5|^3"
  2819. },
  2820. "conflict": {
  2821. "doctrine/dbal": "<3.6",
  2822. "doctrine/lexer": "<1.1",
  2823. "doctrine/orm": "<2.15",
  2824. "symfony/cache": "<6.4",
  2825. "symfony/dependency-injection": "<6.4",
  2826. "symfony/form": "<6.4.6|>=7,<7.0.6",
  2827. "symfony/http-foundation": "<6.4",
  2828. "symfony/http-kernel": "<6.4",
  2829. "symfony/lock": "<6.4",
  2830. "symfony/messenger": "<6.4",
  2831. "symfony/property-info": "<6.4",
  2832. "symfony/security-bundle": "<6.4",
  2833. "symfony/security-core": "<6.4",
  2834. "symfony/validator": "<6.4"
  2835. },
  2836. "require-dev": {
  2837. "doctrine/collections": "^1.0|^2.0",
  2838. "doctrine/data-fixtures": "^1.1",
  2839. "doctrine/dbal": "^3.6|^4",
  2840. "doctrine/orm": "^2.15|^3",
  2841. "psr/log": "^1|^2|^3",
  2842. "symfony/cache": "^6.4|^7.0",
  2843. "symfony/config": "^6.4|^7.0",
  2844. "symfony/dependency-injection": "^6.4|^7.0",
  2845. "symfony/doctrine-messenger": "^6.4|^7.0",
  2846. "symfony/expression-language": "^6.4|^7.0",
  2847. "symfony/form": "^6.4.6|^7.0.6",
  2848. "symfony/http-kernel": "^6.4|^7.0",
  2849. "symfony/lock": "^6.4|^7.0",
  2850. "symfony/messenger": "^6.4|^7.0",
  2851. "symfony/property-access": "^6.4|^7.0",
  2852. "symfony/property-info": "^6.4|^7.0",
  2853. "symfony/security-core": "^6.4|^7.0",
  2854. "symfony/stopwatch": "^6.4|^7.0",
  2855. "symfony/translation": "^6.4|^7.0",
  2856. "symfony/type-info": "^7.1",
  2857. "symfony/uid": "^6.4|^7.0",
  2858. "symfony/validator": "^6.4|^7.0",
  2859. "symfony/var-dumper": "^6.4|^7.0"
  2860. },
  2861. "type": "symfony-bridge",
  2862. "autoload": {
  2863. "psr-4": {
  2864. "Symfony\\Bridge\\Doctrine\\": ""
  2865. },
  2866. "exclude-from-classmap": [
  2867. "/Tests/"
  2868. ]
  2869. },
  2870. "notification-url": "https://packagist.org/downloads/",
  2871. "license": [
  2872. "MIT"
  2873. ],
  2874. "authors": [
  2875. {
  2876. "name": "Fabien Potencier",
  2877. "email": "fabien@symfony.com"
  2878. },
  2879. {
  2880. "name": "Symfony Community",
  2881. "homepage": "https://symfony.com/contributors"
  2882. }
  2883. ],
  2884. "description": "Provides integration for Doctrine with various Symfony components",
  2885. "homepage": "https://symfony.com",
  2886. "support": {
  2887. "source": "https://github.com/symfony/doctrine-bridge/tree/v7.1.4"
  2888. },
  2889. "funding": [
  2890. {
  2891. "url": "https://symfony.com/sponsor",
  2892. "type": "custom"
  2893. },
  2894. {
  2895. "url": "https://github.com/fabpot",
  2896. "type": "github"
  2897. },
  2898. {
  2899. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  2900. "type": "tidelift"
  2901. }
  2902. ],
  2903. "time": "2024-08-13T10:29:23+00:00"
  2904. },
  2905. {
  2906. "name": "symfony/dotenv",
  2907. "version": "v7.1.3",
  2908. "source": {
  2909. "type": "git",
  2910. "url": "https://github.com/symfony/dotenv.git",
  2911. "reference": "a26be30fd61678dab694a18a85084cea7673bbf3"
  2912. },
  2913. "dist": {
  2914. "type": "zip",
  2915. "url": "https://api.github.com/repos/symfony/dotenv/zipball/a26be30fd61678dab694a18a85084cea7673bbf3",
  2916. "reference": "a26be30fd61678dab694a18a85084cea7673bbf3",
  2917. "shasum": ""
  2918. },
  2919. "require": {
  2920. "php": ">=8.2"
  2921. },
  2922. "conflict": {
  2923. "symfony/console": "<6.4",
  2924. "symfony/process": "<6.4"
  2925. },
  2926. "require-dev": {
  2927. "symfony/console": "^6.4|^7.0",
  2928. "symfony/process": "^6.4|^7.0"
  2929. },
  2930. "type": "library",
  2931. "autoload": {
  2932. "psr-4": {
  2933. "Symfony\\Component\\Dotenv\\": ""
  2934. },
  2935. "exclude-from-classmap": [
  2936. "/Tests/"
  2937. ]
  2938. },
  2939. "notification-url": "https://packagist.org/downloads/",
  2940. "license": [
  2941. "MIT"
  2942. ],
  2943. "authors": [
  2944. {
  2945. "name": "Fabien Potencier",
  2946. "email": "fabien@symfony.com"
  2947. },
  2948. {
  2949. "name": "Symfony Community",
  2950. "homepage": "https://symfony.com/contributors"
  2951. }
  2952. ],
  2953. "description": "Registers environment variables from a .env file",
  2954. "homepage": "https://symfony.com",
  2955. "keywords": [
  2956. "dotenv",
  2957. "env",
  2958. "environment"
  2959. ],
  2960. "support": {
  2961. "source": "https://github.com/symfony/dotenv/tree/v7.1.3"
  2962. },
  2963. "funding": [
  2964. {
  2965. "url": "https://symfony.com/sponsor",
  2966. "type": "custom"
  2967. },
  2968. {
  2969. "url": "https://github.com/fabpot",
  2970. "type": "github"
  2971. },
  2972. {
  2973. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  2974. "type": "tidelift"
  2975. }
  2976. ],
  2977. "time": "2024-07-09T19:36:07+00:00"
  2978. },
  2979. {
  2980. "name": "symfony/error-handler",
  2981. "version": "v7.1.3",
  2982. "source": {
  2983. "type": "git",
  2984. "url": "https://github.com/symfony/error-handler.git",
  2985. "reference": "432bb369952795c61ca1def65e078c4a80dad13c"
  2986. },
  2987. "dist": {
  2988. "type": "zip",
  2989. "url": "https://api.github.com/repos/symfony/error-handler/zipball/432bb369952795c61ca1def65e078c4a80dad13c",
  2990. "reference": "432bb369952795c61ca1def65e078c4a80dad13c",
  2991. "shasum": ""
  2992. },
  2993. "require": {
  2994. "php": ">=8.2",
  2995. "psr/log": "^1|^2|^3",
  2996. "symfony/var-dumper": "^6.4|^7.0"
  2997. },
  2998. "conflict": {
  2999. "symfony/deprecation-contracts": "<2.5",
  3000. "symfony/http-kernel": "<6.4"
  3001. },
  3002. "require-dev": {
  3003. "symfony/deprecation-contracts": "^2.5|^3",
  3004. "symfony/http-kernel": "^6.4|^7.0",
  3005. "symfony/serializer": "^6.4|^7.0"
  3006. },
  3007. "bin": [
  3008. "Resources/bin/patch-type-declarations"
  3009. ],
  3010. "type": "library",
  3011. "autoload": {
  3012. "psr-4": {
  3013. "Symfony\\Component\\ErrorHandler\\": ""
  3014. },
  3015. "exclude-from-classmap": [
  3016. "/Tests/"
  3017. ]
  3018. },
  3019. "notification-url": "https://packagist.org/downloads/",
  3020. "license": [
  3021. "MIT"
  3022. ],
  3023. "authors": [
  3024. {
  3025. "name": "Fabien Potencier",
  3026. "email": "fabien@symfony.com"
  3027. },
  3028. {
  3029. "name": "Symfony Community",
  3030. "homepage": "https://symfony.com/contributors"
  3031. }
  3032. ],
  3033. "description": "Provides tools to manage errors and ease debugging PHP code",
  3034. "homepage": "https://symfony.com",
  3035. "support": {
  3036. "source": "https://github.com/symfony/error-handler/tree/v7.1.3"
  3037. },
  3038. "funding": [
  3039. {
  3040. "url": "https://symfony.com/sponsor",
  3041. "type": "custom"
  3042. },
  3043. {
  3044. "url": "https://github.com/fabpot",
  3045. "type": "github"
  3046. },
  3047. {
  3048. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3049. "type": "tidelift"
  3050. }
  3051. ],
  3052. "time": "2024-07-26T13:02:51+00:00"
  3053. },
  3054. {
  3055. "name": "symfony/event-dispatcher",
  3056. "version": "v7.1.1",
  3057. "source": {
  3058. "type": "git",
  3059. "url": "https://github.com/symfony/event-dispatcher.git",
  3060. "reference": "9fa7f7a21beb22a39a8f3f28618b29e50d7a55a7"
  3061. },
  3062. "dist": {
  3063. "type": "zip",
  3064. "url": "https://api.github.com/repos/symfony/event-dispatcher/zipball/9fa7f7a21beb22a39a8f3f28618b29e50d7a55a7",
  3065. "reference": "9fa7f7a21beb22a39a8f3f28618b29e50d7a55a7",
  3066. "shasum": ""
  3067. },
  3068. "require": {
  3069. "php": ">=8.2",
  3070. "symfony/event-dispatcher-contracts": "^2.5|^3"
  3071. },
  3072. "conflict": {
  3073. "symfony/dependency-injection": "<6.4",
  3074. "symfony/service-contracts": "<2.5"
  3075. },
  3076. "provide": {
  3077. "psr/event-dispatcher-implementation": "1.0",
  3078. "symfony/event-dispatcher-implementation": "2.0|3.0"
  3079. },
  3080. "require-dev": {
  3081. "psr/log": "^1|^2|^3",
  3082. "symfony/config": "^6.4|^7.0",
  3083. "symfony/dependency-injection": "^6.4|^7.0",
  3084. "symfony/error-handler": "^6.4|^7.0",
  3085. "symfony/expression-language": "^6.4|^7.0",
  3086. "symfony/http-foundation": "^6.4|^7.0",
  3087. "symfony/service-contracts": "^2.5|^3",
  3088. "symfony/stopwatch": "^6.4|^7.0"
  3089. },
  3090. "type": "library",
  3091. "autoload": {
  3092. "psr-4": {
  3093. "Symfony\\Component\\EventDispatcher\\": ""
  3094. },
  3095. "exclude-from-classmap": [
  3096. "/Tests/"
  3097. ]
  3098. },
  3099. "notification-url": "https://packagist.org/downloads/",
  3100. "license": [
  3101. "MIT"
  3102. ],
  3103. "authors": [
  3104. {
  3105. "name": "Fabien Potencier",
  3106. "email": "fabien@symfony.com"
  3107. },
  3108. {
  3109. "name": "Symfony Community",
  3110. "homepage": "https://symfony.com/contributors"
  3111. }
  3112. ],
  3113. "description": "Provides tools that allow your application components to communicate with each other by dispatching events and listening to them",
  3114. "homepage": "https://symfony.com",
  3115. "support": {
  3116. "source": "https://github.com/symfony/event-dispatcher/tree/v7.1.1"
  3117. },
  3118. "funding": [
  3119. {
  3120. "url": "https://symfony.com/sponsor",
  3121. "type": "custom"
  3122. },
  3123. {
  3124. "url": "https://github.com/fabpot",
  3125. "type": "github"
  3126. },
  3127. {
  3128. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3129. "type": "tidelift"
  3130. }
  3131. ],
  3132. "time": "2024-05-31T14:57:53+00:00"
  3133. },
  3134. {
  3135. "name": "symfony/event-dispatcher-contracts",
  3136. "version": "v3.5.0",
  3137. "source": {
  3138. "type": "git",
  3139. "url": "https://github.com/symfony/event-dispatcher-contracts.git",
  3140. "reference": "8f93aec25d41b72493c6ddff14e916177c9efc50"
  3141. },
  3142. "dist": {
  3143. "type": "zip",
  3144. "url": "https://api.github.com/repos/symfony/event-dispatcher-contracts/zipball/8f93aec25d41b72493c6ddff14e916177c9efc50",
  3145. "reference": "8f93aec25d41b72493c6ddff14e916177c9efc50",
  3146. "shasum": ""
  3147. },
  3148. "require": {
  3149. "php": ">=8.1",
  3150. "psr/event-dispatcher": "^1"
  3151. },
  3152. "type": "library",
  3153. "extra": {
  3154. "branch-alias": {
  3155. "dev-main": "3.5-dev"
  3156. },
  3157. "thanks": {
  3158. "name": "symfony/contracts",
  3159. "url": "https://github.com/symfony/contracts"
  3160. }
  3161. },
  3162. "autoload": {
  3163. "psr-4": {
  3164. "Symfony\\Contracts\\EventDispatcher\\": ""
  3165. }
  3166. },
  3167. "notification-url": "https://packagist.org/downloads/",
  3168. "license": [
  3169. "MIT"
  3170. ],
  3171. "authors": [
  3172. {
  3173. "name": "Nicolas Grekas",
  3174. "email": "p@tchwork.com"
  3175. },
  3176. {
  3177. "name": "Symfony Community",
  3178. "homepage": "https://symfony.com/contributors"
  3179. }
  3180. ],
  3181. "description": "Generic abstractions related to dispatching event",
  3182. "homepage": "https://symfony.com",
  3183. "keywords": [
  3184. "abstractions",
  3185. "contracts",
  3186. "decoupling",
  3187. "interfaces",
  3188. "interoperability",
  3189. "standards"
  3190. ],
  3191. "support": {
  3192. "source": "https://github.com/symfony/event-dispatcher-contracts/tree/v3.5.0"
  3193. },
  3194. "funding": [
  3195. {
  3196. "url": "https://symfony.com/sponsor",
  3197. "type": "custom"
  3198. },
  3199. {
  3200. "url": "https://github.com/fabpot",
  3201. "type": "github"
  3202. },
  3203. {
  3204. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3205. "type": "tidelift"
  3206. }
  3207. ],
  3208. "time": "2024-04-18T09:32:20+00:00"
  3209. },
  3210. {
  3211. "name": "symfony/expression-language",
  3212. "version": "v7.1.4",
  3213. "source": {
  3214. "type": "git",
  3215. "url": "https://github.com/symfony/expression-language.git",
  3216. "reference": "b9e4bc6685d513c10235145ed1042a6081635806"
  3217. },
  3218. "dist": {
  3219. "type": "zip",
  3220. "url": "https://api.github.com/repos/symfony/expression-language/zipball/b9e4bc6685d513c10235145ed1042a6081635806",
  3221. "reference": "b9e4bc6685d513c10235145ed1042a6081635806",
  3222. "shasum": ""
  3223. },
  3224. "require": {
  3225. "php": ">=8.2",
  3226. "symfony/cache": "^6.4|^7.0",
  3227. "symfony/deprecation-contracts": "^2.5|^3",
  3228. "symfony/service-contracts": "^2.5|^3"
  3229. },
  3230. "type": "library",
  3231. "autoload": {
  3232. "psr-4": {
  3233. "Symfony\\Component\\ExpressionLanguage\\": ""
  3234. },
  3235. "exclude-from-classmap": [
  3236. "/Tests/"
  3237. ]
  3238. },
  3239. "notification-url": "https://packagist.org/downloads/",
  3240. "license": [
  3241. "MIT"
  3242. ],
  3243. "authors": [
  3244. {
  3245. "name": "Fabien Potencier",
  3246. "email": "fabien@symfony.com"
  3247. },
  3248. {
  3249. "name": "Symfony Community",
  3250. "homepage": "https://symfony.com/contributors"
  3251. }
  3252. ],
  3253. "description": "Provides an engine that can compile and evaluate expressions",
  3254. "homepage": "https://symfony.com",
  3255. "support": {
  3256. "source": "https://github.com/symfony/expression-language/tree/v7.1.4"
  3257. },
  3258. "funding": [
  3259. {
  3260. "url": "https://symfony.com/sponsor",
  3261. "type": "custom"
  3262. },
  3263. {
  3264. "url": "https://github.com/fabpot",
  3265. "type": "github"
  3266. },
  3267. {
  3268. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3269. "type": "tidelift"
  3270. }
  3271. ],
  3272. "time": "2024-08-12T09:59:40+00:00"
  3273. },
  3274. {
  3275. "name": "symfony/filesystem",
  3276. "version": "v7.1.2",
  3277. "source": {
  3278. "type": "git",
  3279. "url": "https://github.com/symfony/filesystem.git",
  3280. "reference": "92a91985250c251de9b947a14bb2c9390b1a562c"
  3281. },
  3282. "dist": {
  3283. "type": "zip",
  3284. "url": "https://api.github.com/repos/symfony/filesystem/zipball/92a91985250c251de9b947a14bb2c9390b1a562c",
  3285. "reference": "92a91985250c251de9b947a14bb2c9390b1a562c",
  3286. "shasum": ""
  3287. },
  3288. "require": {
  3289. "php": ">=8.2",
  3290. "symfony/polyfill-ctype": "~1.8",
  3291. "symfony/polyfill-mbstring": "~1.8"
  3292. },
  3293. "require-dev": {
  3294. "symfony/process": "^6.4|^7.0"
  3295. },
  3296. "type": "library",
  3297. "autoload": {
  3298. "psr-4": {
  3299. "Symfony\\Component\\Filesystem\\": ""
  3300. },
  3301. "exclude-from-classmap": [
  3302. "/Tests/"
  3303. ]
  3304. },
  3305. "notification-url": "https://packagist.org/downloads/",
  3306. "license": [
  3307. "MIT"
  3308. ],
  3309. "authors": [
  3310. {
  3311. "name": "Fabien Potencier",
  3312. "email": "fabien@symfony.com"
  3313. },
  3314. {
  3315. "name": "Symfony Community",
  3316. "homepage": "https://symfony.com/contributors"
  3317. }
  3318. ],
  3319. "description": "Provides basic utilities for the filesystem",
  3320. "homepage": "https://symfony.com",
  3321. "support": {
  3322. "source": "https://github.com/symfony/filesystem/tree/v7.1.2"
  3323. },
  3324. "funding": [
  3325. {
  3326. "url": "https://symfony.com/sponsor",
  3327. "type": "custom"
  3328. },
  3329. {
  3330. "url": "https://github.com/fabpot",
  3331. "type": "github"
  3332. },
  3333. {
  3334. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3335. "type": "tidelift"
  3336. }
  3337. ],
  3338. "time": "2024-06-28T10:03:55+00:00"
  3339. },
  3340. {
  3341. "name": "symfony/finder",
  3342. "version": "v7.1.4",
  3343. "source": {
  3344. "type": "git",
  3345. "url": "https://github.com/symfony/finder.git",
  3346. "reference": "d95bbf319f7d052082fb7af147e0f835a695e823"
  3347. },
  3348. "dist": {
  3349. "type": "zip",
  3350. "url": "https://api.github.com/repos/symfony/finder/zipball/d95bbf319f7d052082fb7af147e0f835a695e823",
  3351. "reference": "d95bbf319f7d052082fb7af147e0f835a695e823",
  3352. "shasum": ""
  3353. },
  3354. "require": {
  3355. "php": ">=8.2"
  3356. },
  3357. "require-dev": {
  3358. "symfony/filesystem": "^6.4|^7.0"
  3359. },
  3360. "type": "library",
  3361. "autoload": {
  3362. "psr-4": {
  3363. "Symfony\\Component\\Finder\\": ""
  3364. },
  3365. "exclude-from-classmap": [
  3366. "/Tests/"
  3367. ]
  3368. },
  3369. "notification-url": "https://packagist.org/downloads/",
  3370. "license": [
  3371. "MIT"
  3372. ],
  3373. "authors": [
  3374. {
  3375. "name": "Fabien Potencier",
  3376. "email": "fabien@symfony.com"
  3377. },
  3378. {
  3379. "name": "Symfony Community",
  3380. "homepage": "https://symfony.com/contributors"
  3381. }
  3382. ],
  3383. "description": "Finds files and directories via an intuitive fluent interface",
  3384. "homepage": "https://symfony.com",
  3385. "support": {
  3386. "source": "https://github.com/symfony/finder/tree/v7.1.4"
  3387. },
  3388. "funding": [
  3389. {
  3390. "url": "https://symfony.com/sponsor",
  3391. "type": "custom"
  3392. },
  3393. {
  3394. "url": "https://github.com/fabpot",
  3395. "type": "github"
  3396. },
  3397. {
  3398. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3399. "type": "tidelift"
  3400. }
  3401. ],
  3402. "time": "2024-08-13T14:28:19+00:00"
  3403. },
  3404. {
  3405. "name": "symfony/flex",
  3406. "version": "v2.4.6",
  3407. "source": {
  3408. "type": "git",
  3409. "url": "https://github.com/symfony/flex.git",
  3410. "reference": "4dc11919791f81d087a12db2ab4c7e044431ef6b"
  3411. },
  3412. "dist": {
  3413. "type": "zip",
  3414. "url": "https://api.github.com/repos/symfony/flex/zipball/4dc11919791f81d087a12db2ab4c7e044431ef6b",
  3415. "reference": "4dc11919791f81d087a12db2ab4c7e044431ef6b",
  3416. "shasum": ""
  3417. },
  3418. "require": {
  3419. "composer-plugin-api": "^2.1",
  3420. "php": ">=8.0"
  3421. },
  3422. "require-dev": {
  3423. "composer/composer": "^2.1",
  3424. "symfony/dotenv": "^5.4|^6.0",
  3425. "symfony/filesystem": "^5.4|^6.0",
  3426. "symfony/phpunit-bridge": "^5.4|^6.0",
  3427. "symfony/process": "^5.4|^6.0"
  3428. },
  3429. "type": "composer-plugin",
  3430. "extra": {
  3431. "class": "Symfony\\Flex\\Flex"
  3432. },
  3433. "autoload": {
  3434. "psr-4": {
  3435. "Symfony\\Flex\\": "src"
  3436. }
  3437. },
  3438. "notification-url": "https://packagist.org/downloads/",
  3439. "license": [
  3440. "MIT"
  3441. ],
  3442. "authors": [
  3443. {
  3444. "name": "Fabien Potencier",
  3445. "email": "fabien.potencier@gmail.com"
  3446. }
  3447. ],
  3448. "description": "Composer plugin for Symfony",
  3449. "support": {
  3450. "issues": "https://github.com/symfony/flex/issues",
  3451. "source": "https://github.com/symfony/flex/tree/v2.4.6"
  3452. },
  3453. "funding": [
  3454. {
  3455. "url": "https://symfony.com/sponsor",
  3456. "type": "custom"
  3457. },
  3458. {
  3459. "url": "https://github.com/fabpot",
  3460. "type": "github"
  3461. },
  3462. {
  3463. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3464. "type": "tidelift"
  3465. }
  3466. ],
  3467. "time": "2024-04-27T10:22:22+00:00"
  3468. },
  3469. {
  3470. "name": "symfony/framework-bundle",
  3471. "version": "v7.1.4",
  3472. "source": {
  3473. "type": "git",
  3474. "url": "https://github.com/symfony/framework-bundle.git",
  3475. "reference": "711af4eefcb4054a9c93e44b403626e1826bcddd"
  3476. },
  3477. "dist": {
  3478. "type": "zip",
  3479. "url": "https://api.github.com/repos/symfony/framework-bundle/zipball/711af4eefcb4054a9c93e44b403626e1826bcddd",
  3480. "reference": "711af4eefcb4054a9c93e44b403626e1826bcddd",
  3481. "shasum": ""
  3482. },
  3483. "require": {
  3484. "composer-runtime-api": ">=2.1",
  3485. "ext-xml": "*",
  3486. "php": ">=8.2",
  3487. "symfony/cache": "^6.4|^7.0",
  3488. "symfony/config": "^6.4|^7.0",
  3489. "symfony/dependency-injection": "^7.1",
  3490. "symfony/deprecation-contracts": "^2.5|^3",
  3491. "symfony/error-handler": "^6.4|^7.0",
  3492. "symfony/event-dispatcher": "^6.4|^7.0",
  3493. "symfony/filesystem": "^7.1",
  3494. "symfony/finder": "^6.4|^7.0",
  3495. "symfony/http-foundation": "^6.4|^7.0",
  3496. "symfony/http-kernel": "^6.4|^7.0",
  3497. "symfony/polyfill-mbstring": "~1.0",
  3498. "symfony/routing": "^6.4|^7.0"
  3499. },
  3500. "conflict": {
  3501. "doctrine/persistence": "<1.3",
  3502. "phpdocumentor/reflection-docblock": "<3.2.2",
  3503. "phpdocumentor/type-resolver": "<1.4.0",
  3504. "symfony/asset": "<6.4",
  3505. "symfony/asset-mapper": "<6.4",
  3506. "symfony/clock": "<6.4",
  3507. "symfony/console": "<6.4",
  3508. "symfony/dom-crawler": "<6.4",
  3509. "symfony/dotenv": "<6.4",
  3510. "symfony/form": "<6.4",
  3511. "symfony/http-client": "<6.4",
  3512. "symfony/lock": "<6.4",
  3513. "symfony/mailer": "<6.4",
  3514. "symfony/messenger": "<6.4",
  3515. "symfony/mime": "<6.4",
  3516. "symfony/property-access": "<6.4",
  3517. "symfony/property-info": "<6.4",
  3518. "symfony/scheduler": "<6.4.4|>=7.0.0,<7.0.4",
  3519. "symfony/security-core": "<6.4",
  3520. "symfony/security-csrf": "<6.4",
  3521. "symfony/serializer": "<6.4",
  3522. "symfony/stopwatch": "<6.4",
  3523. "symfony/translation": "<6.4",
  3524. "symfony/twig-bridge": "<6.4",
  3525. "symfony/twig-bundle": "<6.4",
  3526. "symfony/validator": "<6.4",
  3527. "symfony/web-profiler-bundle": "<6.4",
  3528. "symfony/workflow": "<6.4"
  3529. },
  3530. "require-dev": {
  3531. "doctrine/persistence": "^1.3|^2|^3",
  3532. "dragonmantank/cron-expression": "^3.1",
  3533. "phpdocumentor/reflection-docblock": "^3.0|^4.0|^5.0",
  3534. "seld/jsonlint": "^1.10",
  3535. "symfony/asset": "^6.4|^7.0",
  3536. "symfony/asset-mapper": "^6.4|^7.0",
  3537. "symfony/browser-kit": "^6.4|^7.0",
  3538. "symfony/clock": "^6.4|^7.0",
  3539. "symfony/console": "^6.4|^7.0",
  3540. "symfony/css-selector": "^6.4|^7.0",
  3541. "symfony/dom-crawler": "^6.4|^7.0",
  3542. "symfony/dotenv": "^6.4|^7.0",
  3543. "symfony/expression-language": "^6.4|^7.0",
  3544. "symfony/form": "^6.4|^7.0",
  3545. "symfony/html-sanitizer": "^6.4|^7.0",
  3546. "symfony/http-client": "^6.4|^7.0",
  3547. "symfony/lock": "^6.4|^7.0",
  3548. "symfony/mailer": "^6.4|^7.0",
  3549. "symfony/messenger": "^6.4|^7.0",
  3550. "symfony/mime": "^6.4|^7.0",
  3551. "symfony/notifier": "^6.4|^7.0",
  3552. "symfony/polyfill-intl-icu": "~1.0",
  3553. "symfony/process": "^6.4|^7.0",
  3554. "symfony/property-info": "^6.4|^7.0",
  3555. "symfony/rate-limiter": "^6.4|^7.0",
  3556. "symfony/scheduler": "^6.4.4|^7.0.4",
  3557. "symfony/security-bundle": "^6.4|^7.0",
  3558. "symfony/semaphore": "^6.4|^7.0",
  3559. "symfony/serializer": "^6.4|^7.0",
  3560. "symfony/stopwatch": "^6.4|^7.0",
  3561. "symfony/string": "^6.4|^7.0",
  3562. "symfony/translation": "^6.4|^7.0",
  3563. "symfony/twig-bundle": "^6.4|^7.0",
  3564. "symfony/type-info": "^7.1",
  3565. "symfony/uid": "^6.4|^7.0",
  3566. "symfony/validator": "^6.4|^7.0",
  3567. "symfony/web-link": "^6.4|^7.0",
  3568. "symfony/workflow": "^6.4|^7.0",
  3569. "symfony/yaml": "^6.4|^7.0",
  3570. "twig/twig": "^3.0.4"
  3571. },
  3572. "type": "symfony-bundle",
  3573. "autoload": {
  3574. "psr-4": {
  3575. "Symfony\\Bundle\\FrameworkBundle\\": ""
  3576. },
  3577. "exclude-from-classmap": [
  3578. "/Tests/"
  3579. ]
  3580. },
  3581. "notification-url": "https://packagist.org/downloads/",
  3582. "license": [
  3583. "MIT"
  3584. ],
  3585. "authors": [
  3586. {
  3587. "name": "Fabien Potencier",
  3588. "email": "fabien@symfony.com"
  3589. },
  3590. {
  3591. "name": "Symfony Community",
  3592. "homepage": "https://symfony.com/contributors"
  3593. }
  3594. ],
  3595. "description": "Provides a tight integration between Symfony components and the Symfony full-stack framework",
  3596. "homepage": "https://symfony.com",
  3597. "support": {
  3598. "source": "https://github.com/symfony/framework-bundle/tree/v7.1.4"
  3599. },
  3600. "funding": [
  3601. {
  3602. "url": "https://symfony.com/sponsor",
  3603. "type": "custom"
  3604. },
  3605. {
  3606. "url": "https://github.com/fabpot",
  3607. "type": "github"
  3608. },
  3609. {
  3610. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3611. "type": "tidelift"
  3612. }
  3613. ],
  3614. "time": "2024-08-11T16:10:02+00:00"
  3615. },
  3616. {
  3617. "name": "symfony/http-foundation",
  3618. "version": "v7.1.3",
  3619. "source": {
  3620. "type": "git",
  3621. "url": "https://github.com/symfony/http-foundation.git",
  3622. "reference": "f602d5c17d1fa02f8019ace2687d9d136b7f4a1a"
  3623. },
  3624. "dist": {
  3625. "type": "zip",
  3626. "url": "https://api.github.com/repos/symfony/http-foundation/zipball/f602d5c17d1fa02f8019ace2687d9d136b7f4a1a",
  3627. "reference": "f602d5c17d1fa02f8019ace2687d9d136b7f4a1a",
  3628. "shasum": ""
  3629. },
  3630. "require": {
  3631. "php": ">=8.2",
  3632. "symfony/polyfill-mbstring": "~1.1",
  3633. "symfony/polyfill-php83": "^1.27"
  3634. },
  3635. "conflict": {
  3636. "doctrine/dbal": "<3.6",
  3637. "symfony/cache": "<6.4"
  3638. },
  3639. "require-dev": {
  3640. "doctrine/dbal": "^3.6|^4",
  3641. "predis/predis": "^1.1|^2.0",
  3642. "symfony/cache": "^6.4|^7.0",
  3643. "symfony/dependency-injection": "^6.4|^7.0",
  3644. "symfony/expression-language": "^6.4|^7.0",
  3645. "symfony/http-kernel": "^6.4|^7.0",
  3646. "symfony/mime": "^6.4|^7.0",
  3647. "symfony/rate-limiter": "^6.4|^7.0"
  3648. },
  3649. "type": "library",
  3650. "autoload": {
  3651. "psr-4": {
  3652. "Symfony\\Component\\HttpFoundation\\": ""
  3653. },
  3654. "exclude-from-classmap": [
  3655. "/Tests/"
  3656. ]
  3657. },
  3658. "notification-url": "https://packagist.org/downloads/",
  3659. "license": [
  3660. "MIT"
  3661. ],
  3662. "authors": [
  3663. {
  3664. "name": "Fabien Potencier",
  3665. "email": "fabien@symfony.com"
  3666. },
  3667. {
  3668. "name": "Symfony Community",
  3669. "homepage": "https://symfony.com/contributors"
  3670. }
  3671. ],
  3672. "description": "Defines an object-oriented layer for the HTTP specification",
  3673. "homepage": "https://symfony.com",
  3674. "support": {
  3675. "source": "https://github.com/symfony/http-foundation/tree/v7.1.3"
  3676. },
  3677. "funding": [
  3678. {
  3679. "url": "https://symfony.com/sponsor",
  3680. "type": "custom"
  3681. },
  3682. {
  3683. "url": "https://github.com/fabpot",
  3684. "type": "github"
  3685. },
  3686. {
  3687. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3688. "type": "tidelift"
  3689. }
  3690. ],
  3691. "time": "2024-07-26T12:41:01+00:00"
  3692. },
  3693. {
  3694. "name": "symfony/http-kernel",
  3695. "version": "v7.1.4",
  3696. "source": {
  3697. "type": "git",
  3698. "url": "https://github.com/symfony/http-kernel.git",
  3699. "reference": "6efcbd1b3f444f631c386504fc83eeca25963747"
  3700. },
  3701. "dist": {
  3702. "type": "zip",
  3703. "url": "https://api.github.com/repos/symfony/http-kernel/zipball/6efcbd1b3f444f631c386504fc83eeca25963747",
  3704. "reference": "6efcbd1b3f444f631c386504fc83eeca25963747",
  3705. "shasum": ""
  3706. },
  3707. "require": {
  3708. "php": ">=8.2",
  3709. "psr/log": "^1|^2|^3",
  3710. "symfony/deprecation-contracts": "^2.5|^3",
  3711. "symfony/error-handler": "^6.4|^7.0",
  3712. "symfony/event-dispatcher": "^6.4|^7.0",
  3713. "symfony/http-foundation": "^6.4|^7.0",
  3714. "symfony/polyfill-ctype": "^1.8"
  3715. },
  3716. "conflict": {
  3717. "symfony/browser-kit": "<6.4",
  3718. "symfony/cache": "<6.4",
  3719. "symfony/config": "<6.4",
  3720. "symfony/console": "<6.4",
  3721. "symfony/dependency-injection": "<6.4",
  3722. "symfony/doctrine-bridge": "<6.4",
  3723. "symfony/form": "<6.4",
  3724. "symfony/http-client": "<6.4",
  3725. "symfony/http-client-contracts": "<2.5",
  3726. "symfony/mailer": "<6.4",
  3727. "symfony/messenger": "<6.4",
  3728. "symfony/translation": "<6.4",
  3729. "symfony/translation-contracts": "<2.5",
  3730. "symfony/twig-bridge": "<6.4",
  3731. "symfony/validator": "<6.4",
  3732. "symfony/var-dumper": "<6.4",
  3733. "twig/twig": "<3.0.4"
  3734. },
  3735. "provide": {
  3736. "psr/log-implementation": "1.0|2.0|3.0"
  3737. },
  3738. "require-dev": {
  3739. "psr/cache": "^1.0|^2.0|^3.0",
  3740. "symfony/browser-kit": "^6.4|^7.0",
  3741. "symfony/clock": "^6.4|^7.0",
  3742. "symfony/config": "^6.4|^7.0",
  3743. "symfony/console": "^6.4|^7.0",
  3744. "symfony/css-selector": "^6.4|^7.0",
  3745. "symfony/dependency-injection": "^6.4|^7.0",
  3746. "symfony/dom-crawler": "^6.4|^7.0",
  3747. "symfony/expression-language": "^6.4|^7.0",
  3748. "symfony/finder": "^6.4|^7.0",
  3749. "symfony/http-client-contracts": "^2.5|^3",
  3750. "symfony/process": "^6.4|^7.0",
  3751. "symfony/property-access": "^7.1",
  3752. "symfony/routing": "^6.4|^7.0",
  3753. "symfony/serializer": "^7.1",
  3754. "symfony/stopwatch": "^6.4|^7.0",
  3755. "symfony/translation": "^6.4|^7.0",
  3756. "symfony/translation-contracts": "^2.5|^3",
  3757. "symfony/uid": "^6.4|^7.0",
  3758. "symfony/validator": "^6.4|^7.0",
  3759. "symfony/var-dumper": "^6.4|^7.0",
  3760. "symfony/var-exporter": "^6.4|^7.0",
  3761. "twig/twig": "^3.0.4"
  3762. },
  3763. "type": "library",
  3764. "autoload": {
  3765. "psr-4": {
  3766. "Symfony\\Component\\HttpKernel\\": ""
  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 a structured process for converting a Request into a Response",
  3787. "homepage": "https://symfony.com",
  3788. "support": {
  3789. "source": "https://github.com/symfony/http-kernel/tree/v7.1.4"
  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-08-30T17:02:28+00:00"
  3806. },
  3807. {
  3808. "name": "symfony/mailer",
  3809. "version": "v7.1.2",
  3810. "source": {
  3811. "type": "git",
  3812. "url": "https://github.com/symfony/mailer.git",
  3813. "reference": "8fcff0af9043c8f8a8e229437cea363e282f9aee"
  3814. },
  3815. "dist": {
  3816. "type": "zip",
  3817. "url": "https://api.github.com/repos/symfony/mailer/zipball/8fcff0af9043c8f8a8e229437cea363e282f9aee",
  3818. "reference": "8fcff0af9043c8f8a8e229437cea363e282f9aee",
  3819. "shasum": ""
  3820. },
  3821. "require": {
  3822. "egulias/email-validator": "^2.1.10|^3|^4",
  3823. "php": ">=8.2",
  3824. "psr/event-dispatcher": "^1",
  3825. "psr/log": "^1|^2|^3",
  3826. "symfony/event-dispatcher": "^6.4|^7.0",
  3827. "symfony/mime": "^6.4|^7.0",
  3828. "symfony/service-contracts": "^2.5|^3"
  3829. },
  3830. "conflict": {
  3831. "symfony/http-client-contracts": "<2.5",
  3832. "symfony/http-kernel": "<6.4",
  3833. "symfony/messenger": "<6.4",
  3834. "symfony/mime": "<6.4",
  3835. "symfony/twig-bridge": "<6.4"
  3836. },
  3837. "require-dev": {
  3838. "symfony/console": "^6.4|^7.0",
  3839. "symfony/http-client": "^6.4|^7.0",
  3840. "symfony/messenger": "^6.4|^7.0",
  3841. "symfony/twig-bridge": "^6.4|^7.0"
  3842. },
  3843. "type": "library",
  3844. "autoload": {
  3845. "psr-4": {
  3846. "Symfony\\Component\\Mailer\\": ""
  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": "Helps sending emails",
  3867. "homepage": "https://symfony.com",
  3868. "support": {
  3869. "source": "https://github.com/symfony/mailer/tree/v7.1.2"
  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-06-28T08:00:31+00:00"
  3886. },
  3887. {
  3888. "name": "symfony/mime",
  3889. "version": "v7.1.4",
  3890. "source": {
  3891. "type": "git",
  3892. "url": "https://github.com/symfony/mime.git",
  3893. "reference": "ccaa6c2503db867f472a587291e764d6a1e58758"
  3894. },
  3895. "dist": {
  3896. "type": "zip",
  3897. "url": "https://api.github.com/repos/symfony/mime/zipball/ccaa6c2503db867f472a587291e764d6a1e58758",
  3898. "reference": "ccaa6c2503db867f472a587291e764d6a1e58758",
  3899. "shasum": ""
  3900. },
  3901. "require": {
  3902. "php": ">=8.2",
  3903. "symfony/polyfill-intl-idn": "^1.10",
  3904. "symfony/polyfill-mbstring": "^1.0"
  3905. },
  3906. "conflict": {
  3907. "egulias/email-validator": "~3.0.0",
  3908. "phpdocumentor/reflection-docblock": "<3.2.2",
  3909. "phpdocumentor/type-resolver": "<1.4.0",
  3910. "symfony/mailer": "<6.4",
  3911. "symfony/serializer": "<6.4.3|>7.0,<7.0.3"
  3912. },
  3913. "require-dev": {
  3914. "egulias/email-validator": "^2.1.10|^3.1|^4",
  3915. "league/html-to-markdown": "^5.0",
  3916. "phpdocumentor/reflection-docblock": "^3.0|^4.0|^5.0",
  3917. "symfony/dependency-injection": "^6.4|^7.0",
  3918. "symfony/process": "^6.4|^7.0",
  3919. "symfony/property-access": "^6.4|^7.0",
  3920. "symfony/property-info": "^6.4|^7.0",
  3921. "symfony/serializer": "^6.4.3|^7.0.3"
  3922. },
  3923. "type": "library",
  3924. "autoload": {
  3925. "psr-4": {
  3926. "Symfony\\Component\\Mime\\": ""
  3927. },
  3928. "exclude-from-classmap": [
  3929. "/Tests/"
  3930. ]
  3931. },
  3932. "notification-url": "https://packagist.org/downloads/",
  3933. "license": [
  3934. "MIT"
  3935. ],
  3936. "authors": [
  3937. {
  3938. "name": "Fabien Potencier",
  3939. "email": "fabien@symfony.com"
  3940. },
  3941. {
  3942. "name": "Symfony Community",
  3943. "homepage": "https://symfony.com/contributors"
  3944. }
  3945. ],
  3946. "description": "Allows manipulating MIME messages",
  3947. "homepage": "https://symfony.com",
  3948. "keywords": [
  3949. "mime",
  3950. "mime-type"
  3951. ],
  3952. "support": {
  3953. "source": "https://github.com/symfony/mime/tree/v7.1.4"
  3954. },
  3955. "funding": [
  3956. {
  3957. "url": "https://symfony.com/sponsor",
  3958. "type": "custom"
  3959. },
  3960. {
  3961. "url": "https://github.com/fabpot",
  3962. "type": "github"
  3963. },
  3964. {
  3965. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3966. "type": "tidelift"
  3967. }
  3968. ],
  3969. "time": "2024-08-13T14:28:19+00:00"
  3970. },
  3971. {
  3972. "name": "symfony/password-hasher",
  3973. "version": "v7.1.1",
  3974. "source": {
  3975. "type": "git",
  3976. "url": "https://github.com/symfony/password-hasher.git",
  3977. "reference": "4ad96eb7cf9e2f8f133ada95f2b8021769061662"
  3978. },
  3979. "dist": {
  3980. "type": "zip",
  3981. "url": "https://api.github.com/repos/symfony/password-hasher/zipball/4ad96eb7cf9e2f8f133ada95f2b8021769061662",
  3982. "reference": "4ad96eb7cf9e2f8f133ada95f2b8021769061662",
  3983. "shasum": ""
  3984. },
  3985. "require": {
  3986. "php": ">=8.2"
  3987. },
  3988. "conflict": {
  3989. "symfony/security-core": "<6.4"
  3990. },
  3991. "require-dev": {
  3992. "symfony/console": "^6.4|^7.0",
  3993. "symfony/security-core": "^6.4|^7.0"
  3994. },
  3995. "type": "library",
  3996. "autoload": {
  3997. "psr-4": {
  3998. "Symfony\\Component\\PasswordHasher\\": ""
  3999. },
  4000. "exclude-from-classmap": [
  4001. "/Tests/"
  4002. ]
  4003. },
  4004. "notification-url": "https://packagist.org/downloads/",
  4005. "license": [
  4006. "MIT"
  4007. ],
  4008. "authors": [
  4009. {
  4010. "name": "Robin Chalas",
  4011. "email": "robin.chalas@gmail.com"
  4012. },
  4013. {
  4014. "name": "Symfony Community",
  4015. "homepage": "https://symfony.com/contributors"
  4016. }
  4017. ],
  4018. "description": "Provides password hashing utilities",
  4019. "homepage": "https://symfony.com",
  4020. "keywords": [
  4021. "hashing",
  4022. "password"
  4023. ],
  4024. "support": {
  4025. "source": "https://github.com/symfony/password-hasher/tree/v7.1.1"
  4026. },
  4027. "funding": [
  4028. {
  4029. "url": "https://symfony.com/sponsor",
  4030. "type": "custom"
  4031. },
  4032. {
  4033. "url": "https://github.com/fabpot",
  4034. "type": "github"
  4035. },
  4036. {
  4037. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4038. "type": "tidelift"
  4039. }
  4040. ],
  4041. "time": "2024-05-31T14:57:53+00:00"
  4042. },
  4043. {
  4044. "name": "symfony/polyfill-intl-grapheme",
  4045. "version": "v1.30.0",
  4046. "source": {
  4047. "type": "git",
  4048. "url": "https://github.com/symfony/polyfill-intl-grapheme.git",
  4049. "reference": "64647a7c30b2283f5d49b874d84a18fc22054b7a"
  4050. },
  4051. "dist": {
  4052. "type": "zip",
  4053. "url": "https://api.github.com/repos/symfony/polyfill-intl-grapheme/zipball/64647a7c30b2283f5d49b874d84a18fc22054b7a",
  4054. "reference": "64647a7c30b2283f5d49b874d84a18fc22054b7a",
  4055. "shasum": ""
  4056. },
  4057. "require": {
  4058. "php": ">=7.1"
  4059. },
  4060. "suggest": {
  4061. "ext-intl": "For best performance"
  4062. },
  4063. "type": "library",
  4064. "extra": {
  4065. "thanks": {
  4066. "name": "symfony/polyfill",
  4067. "url": "https://github.com/symfony/polyfill"
  4068. }
  4069. },
  4070. "autoload": {
  4071. "files": [
  4072. "bootstrap.php"
  4073. ],
  4074. "psr-4": {
  4075. "Symfony\\Polyfill\\Intl\\Grapheme\\": ""
  4076. }
  4077. },
  4078. "notification-url": "https://packagist.org/downloads/",
  4079. "license": [
  4080. "MIT"
  4081. ],
  4082. "authors": [
  4083. {
  4084. "name": "Nicolas Grekas",
  4085. "email": "p@tchwork.com"
  4086. },
  4087. {
  4088. "name": "Symfony Community",
  4089. "homepage": "https://symfony.com/contributors"
  4090. }
  4091. ],
  4092. "description": "Symfony polyfill for intl's grapheme_* functions",
  4093. "homepage": "https://symfony.com",
  4094. "keywords": [
  4095. "compatibility",
  4096. "grapheme",
  4097. "intl",
  4098. "polyfill",
  4099. "portable",
  4100. "shim"
  4101. ],
  4102. "support": {
  4103. "source": "https://github.com/symfony/polyfill-intl-grapheme/tree/v1.30.0"
  4104. },
  4105. "funding": [
  4106. {
  4107. "url": "https://symfony.com/sponsor",
  4108. "type": "custom"
  4109. },
  4110. {
  4111. "url": "https://github.com/fabpot",
  4112. "type": "github"
  4113. },
  4114. {
  4115. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4116. "type": "tidelift"
  4117. }
  4118. ],
  4119. "time": "2024-05-31T15:07:36+00:00"
  4120. },
  4121. {
  4122. "name": "symfony/polyfill-intl-idn",
  4123. "version": "v1.31.0",
  4124. "source": {
  4125. "type": "git",
  4126. "url": "https://github.com/symfony/polyfill-intl-idn.git",
  4127. "reference": "c36586dcf89a12315939e00ec9b4474adcb1d773"
  4128. },
  4129. "dist": {
  4130. "type": "zip",
  4131. "url": "https://api.github.com/repos/symfony/polyfill-intl-idn/zipball/c36586dcf89a12315939e00ec9b4474adcb1d773",
  4132. "reference": "c36586dcf89a12315939e00ec9b4474adcb1d773",
  4133. "shasum": ""
  4134. },
  4135. "require": {
  4136. "php": ">=7.2",
  4137. "symfony/polyfill-intl-normalizer": "^1.10"
  4138. },
  4139. "suggest": {
  4140. "ext-intl": "For best performance"
  4141. },
  4142. "type": "library",
  4143. "extra": {
  4144. "thanks": {
  4145. "name": "symfony/polyfill",
  4146. "url": "https://github.com/symfony/polyfill"
  4147. }
  4148. },
  4149. "autoload": {
  4150. "files": [
  4151. "bootstrap.php"
  4152. ],
  4153. "psr-4": {
  4154. "Symfony\\Polyfill\\Intl\\Idn\\": ""
  4155. }
  4156. },
  4157. "notification-url": "https://packagist.org/downloads/",
  4158. "license": [
  4159. "MIT"
  4160. ],
  4161. "authors": [
  4162. {
  4163. "name": "Laurent Bassin",
  4164. "email": "laurent@bassin.info"
  4165. },
  4166. {
  4167. "name": "Trevor Rowbotham",
  4168. "email": "trevor.rowbotham@pm.me"
  4169. },
  4170. {
  4171. "name": "Symfony Community",
  4172. "homepage": "https://symfony.com/contributors"
  4173. }
  4174. ],
  4175. "description": "Symfony polyfill for intl's idn_to_ascii and idn_to_utf8 functions",
  4176. "homepage": "https://symfony.com",
  4177. "keywords": [
  4178. "compatibility",
  4179. "idn",
  4180. "intl",
  4181. "polyfill",
  4182. "portable",
  4183. "shim"
  4184. ],
  4185. "support": {
  4186. "source": "https://github.com/symfony/polyfill-intl-idn/tree/v1.31.0"
  4187. },
  4188. "funding": [
  4189. {
  4190. "url": "https://symfony.com/sponsor",
  4191. "type": "custom"
  4192. },
  4193. {
  4194. "url": "https://github.com/fabpot",
  4195. "type": "github"
  4196. },
  4197. {
  4198. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4199. "type": "tidelift"
  4200. }
  4201. ],
  4202. "time": "2024-09-09T11:45:10+00:00"
  4203. },
  4204. {
  4205. "name": "symfony/polyfill-intl-normalizer",
  4206. "version": "v1.30.0",
  4207. "source": {
  4208. "type": "git",
  4209. "url": "https://github.com/symfony/polyfill-intl-normalizer.git",
  4210. "reference": "a95281b0be0d9ab48050ebd988b967875cdb9fdb"
  4211. },
  4212. "dist": {
  4213. "type": "zip",
  4214. "url": "https://api.github.com/repos/symfony/polyfill-intl-normalizer/zipball/a95281b0be0d9ab48050ebd988b967875cdb9fdb",
  4215. "reference": "a95281b0be0d9ab48050ebd988b967875cdb9fdb",
  4216. "shasum": ""
  4217. },
  4218. "require": {
  4219. "php": ">=7.1"
  4220. },
  4221. "suggest": {
  4222. "ext-intl": "For best performance"
  4223. },
  4224. "type": "library",
  4225. "extra": {
  4226. "thanks": {
  4227. "name": "symfony/polyfill",
  4228. "url": "https://github.com/symfony/polyfill"
  4229. }
  4230. },
  4231. "autoload": {
  4232. "files": [
  4233. "bootstrap.php"
  4234. ],
  4235. "psr-4": {
  4236. "Symfony\\Polyfill\\Intl\\Normalizer\\": ""
  4237. },
  4238. "classmap": [
  4239. "Resources/stubs"
  4240. ]
  4241. },
  4242. "notification-url": "https://packagist.org/downloads/",
  4243. "license": [
  4244. "MIT"
  4245. ],
  4246. "authors": [
  4247. {
  4248. "name": "Nicolas Grekas",
  4249. "email": "p@tchwork.com"
  4250. },
  4251. {
  4252. "name": "Symfony Community",
  4253. "homepage": "https://symfony.com/contributors"
  4254. }
  4255. ],
  4256. "description": "Symfony polyfill for intl's Normalizer class and related functions",
  4257. "homepage": "https://symfony.com",
  4258. "keywords": [
  4259. "compatibility",
  4260. "intl",
  4261. "normalizer",
  4262. "polyfill",
  4263. "portable",
  4264. "shim"
  4265. ],
  4266. "support": {
  4267. "source": "https://github.com/symfony/polyfill-intl-normalizer/tree/v1.30.0"
  4268. },
  4269. "funding": [
  4270. {
  4271. "url": "https://symfony.com/sponsor",
  4272. "type": "custom"
  4273. },
  4274. {
  4275. "url": "https://github.com/fabpot",
  4276. "type": "github"
  4277. },
  4278. {
  4279. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4280. "type": "tidelift"
  4281. }
  4282. ],
  4283. "time": "2024-05-31T15:07:36+00:00"
  4284. },
  4285. {
  4286. "name": "symfony/polyfill-mbstring",
  4287. "version": "v1.30.0",
  4288. "source": {
  4289. "type": "git",
  4290. "url": "https://github.com/symfony/polyfill-mbstring.git",
  4291. "reference": "fd22ab50000ef01661e2a31d850ebaa297f8e03c"
  4292. },
  4293. "dist": {
  4294. "type": "zip",
  4295. "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/fd22ab50000ef01661e2a31d850ebaa297f8e03c",
  4296. "reference": "fd22ab50000ef01661e2a31d850ebaa297f8e03c",
  4297. "shasum": ""
  4298. },
  4299. "require": {
  4300. "php": ">=7.1"
  4301. },
  4302. "provide": {
  4303. "ext-mbstring": "*"
  4304. },
  4305. "suggest": {
  4306. "ext-mbstring": "For best performance"
  4307. },
  4308. "type": "library",
  4309. "extra": {
  4310. "thanks": {
  4311. "name": "symfony/polyfill",
  4312. "url": "https://github.com/symfony/polyfill"
  4313. }
  4314. },
  4315. "autoload": {
  4316. "files": [
  4317. "bootstrap.php"
  4318. ],
  4319. "psr-4": {
  4320. "Symfony\\Polyfill\\Mbstring\\": ""
  4321. }
  4322. },
  4323. "notification-url": "https://packagist.org/downloads/",
  4324. "license": [
  4325. "MIT"
  4326. ],
  4327. "authors": [
  4328. {
  4329. "name": "Nicolas Grekas",
  4330. "email": "p@tchwork.com"
  4331. },
  4332. {
  4333. "name": "Symfony Community",
  4334. "homepage": "https://symfony.com/contributors"
  4335. }
  4336. ],
  4337. "description": "Symfony polyfill for the Mbstring extension",
  4338. "homepage": "https://symfony.com",
  4339. "keywords": [
  4340. "compatibility",
  4341. "mbstring",
  4342. "polyfill",
  4343. "portable",
  4344. "shim"
  4345. ],
  4346. "support": {
  4347. "source": "https://github.com/symfony/polyfill-mbstring/tree/v1.30.0"
  4348. },
  4349. "funding": [
  4350. {
  4351. "url": "https://symfony.com/sponsor",
  4352. "type": "custom"
  4353. },
  4354. {
  4355. "url": "https://github.com/fabpot",
  4356. "type": "github"
  4357. },
  4358. {
  4359. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4360. "type": "tidelift"
  4361. }
  4362. ],
  4363. "time": "2024-06-19T12:30:46+00:00"
  4364. },
  4365. {
  4366. "name": "symfony/polyfill-php83",
  4367. "version": "v1.30.0",
  4368. "source": {
  4369. "type": "git",
  4370. "url": "https://github.com/symfony/polyfill-php83.git",
  4371. "reference": "dbdcdf1a4dcc2743591f1079d0c35ab1e2dcbbc9"
  4372. },
  4373. "dist": {
  4374. "type": "zip",
  4375. "url": "https://api.github.com/repos/symfony/polyfill-php83/zipball/dbdcdf1a4dcc2743591f1079d0c35ab1e2dcbbc9",
  4376. "reference": "dbdcdf1a4dcc2743591f1079d0c35ab1e2dcbbc9",
  4377. "shasum": ""
  4378. },
  4379. "require": {
  4380. "php": ">=7.1"
  4381. },
  4382. "type": "library",
  4383. "extra": {
  4384. "thanks": {
  4385. "name": "symfony/polyfill",
  4386. "url": "https://github.com/symfony/polyfill"
  4387. }
  4388. },
  4389. "autoload": {
  4390. "files": [
  4391. "bootstrap.php"
  4392. ],
  4393. "psr-4": {
  4394. "Symfony\\Polyfill\\Php83\\": ""
  4395. },
  4396. "classmap": [
  4397. "Resources/stubs"
  4398. ]
  4399. },
  4400. "notification-url": "https://packagist.org/downloads/",
  4401. "license": [
  4402. "MIT"
  4403. ],
  4404. "authors": [
  4405. {
  4406. "name": "Nicolas Grekas",
  4407. "email": "p@tchwork.com"
  4408. },
  4409. {
  4410. "name": "Symfony Community",
  4411. "homepage": "https://symfony.com/contributors"
  4412. }
  4413. ],
  4414. "description": "Symfony polyfill backporting some PHP 8.3+ features to lower PHP versions",
  4415. "homepage": "https://symfony.com",
  4416. "keywords": [
  4417. "compatibility",
  4418. "polyfill",
  4419. "portable",
  4420. "shim"
  4421. ],
  4422. "support": {
  4423. "source": "https://github.com/symfony/polyfill-php83/tree/v1.30.0"
  4424. },
  4425. "funding": [
  4426. {
  4427. "url": "https://symfony.com/sponsor",
  4428. "type": "custom"
  4429. },
  4430. {
  4431. "url": "https://github.com/fabpot",
  4432. "type": "github"
  4433. },
  4434. {
  4435. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4436. "type": "tidelift"
  4437. }
  4438. ],
  4439. "time": "2024-06-19T12:35:24+00:00"
  4440. },
  4441. {
  4442. "name": "symfony/property-access",
  4443. "version": "v7.1.4",
  4444. "source": {
  4445. "type": "git",
  4446. "url": "https://github.com/symfony/property-access.git",
  4447. "reference": "6c709f97103355016e5782d0622437ae381012ad"
  4448. },
  4449. "dist": {
  4450. "type": "zip",
  4451. "url": "https://api.github.com/repos/symfony/property-access/zipball/6c709f97103355016e5782d0622437ae381012ad",
  4452. "reference": "6c709f97103355016e5782d0622437ae381012ad",
  4453. "shasum": ""
  4454. },
  4455. "require": {
  4456. "php": ">=8.2",
  4457. "symfony/property-info": "^6.4|^7.0"
  4458. },
  4459. "require-dev": {
  4460. "symfony/cache": "^6.4|^7.0"
  4461. },
  4462. "type": "library",
  4463. "autoload": {
  4464. "psr-4": {
  4465. "Symfony\\Component\\PropertyAccess\\": ""
  4466. },
  4467. "exclude-from-classmap": [
  4468. "/Tests/"
  4469. ]
  4470. },
  4471. "notification-url": "https://packagist.org/downloads/",
  4472. "license": [
  4473. "MIT"
  4474. ],
  4475. "authors": [
  4476. {
  4477. "name": "Fabien Potencier",
  4478. "email": "fabien@symfony.com"
  4479. },
  4480. {
  4481. "name": "Symfony Community",
  4482. "homepage": "https://symfony.com/contributors"
  4483. }
  4484. ],
  4485. "description": "Provides functions to read and write from/to an object or array using a simple string notation",
  4486. "homepage": "https://symfony.com",
  4487. "keywords": [
  4488. "access",
  4489. "array",
  4490. "extraction",
  4491. "index",
  4492. "injection",
  4493. "object",
  4494. "property",
  4495. "property-path",
  4496. "reflection"
  4497. ],
  4498. "support": {
  4499. "source": "https://github.com/symfony/property-access/tree/v7.1.4"
  4500. },
  4501. "funding": [
  4502. {
  4503. "url": "https://symfony.com/sponsor",
  4504. "type": "custom"
  4505. },
  4506. {
  4507. "url": "https://github.com/fabpot",
  4508. "type": "github"
  4509. },
  4510. {
  4511. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4512. "type": "tidelift"
  4513. }
  4514. ],
  4515. "time": "2024-08-30T16:12:47+00:00"
  4516. },
  4517. {
  4518. "name": "symfony/property-info",
  4519. "version": "v7.1.3",
  4520. "source": {
  4521. "type": "git",
  4522. "url": "https://github.com/symfony/property-info.git",
  4523. "reference": "88a279df2db5b7919cac6f35d6a5d1d7147e6a9b"
  4524. },
  4525. "dist": {
  4526. "type": "zip",
  4527. "url": "https://api.github.com/repos/symfony/property-info/zipball/88a279df2db5b7919cac6f35d6a5d1d7147e6a9b",
  4528. "reference": "88a279df2db5b7919cac6f35d6a5d1d7147e6a9b",
  4529. "shasum": ""
  4530. },
  4531. "require": {
  4532. "php": ">=8.2",
  4533. "symfony/string": "^6.4|^7.0",
  4534. "symfony/type-info": "^7.1"
  4535. },
  4536. "conflict": {
  4537. "phpdocumentor/reflection-docblock": "<5.2",
  4538. "phpdocumentor/type-resolver": "<1.5.1",
  4539. "symfony/dependency-injection": "<6.4",
  4540. "symfony/serializer": "<6.4"
  4541. },
  4542. "require-dev": {
  4543. "phpdocumentor/reflection-docblock": "^5.2",
  4544. "phpstan/phpdoc-parser": "^1.0",
  4545. "symfony/cache": "^6.4|^7.0",
  4546. "symfony/dependency-injection": "^6.4|^7.0",
  4547. "symfony/serializer": "^6.4|^7.0"
  4548. },
  4549. "type": "library",
  4550. "autoload": {
  4551. "psr-4": {
  4552. "Symfony\\Component\\PropertyInfo\\": ""
  4553. },
  4554. "exclude-from-classmap": [
  4555. "/Tests/"
  4556. ]
  4557. },
  4558. "notification-url": "https://packagist.org/downloads/",
  4559. "license": [
  4560. "MIT"
  4561. ],
  4562. "authors": [
  4563. {
  4564. "name": "Kévin Dunglas",
  4565. "email": "dunglas@gmail.com"
  4566. },
  4567. {
  4568. "name": "Symfony Community",
  4569. "homepage": "https://symfony.com/contributors"
  4570. }
  4571. ],
  4572. "description": "Extracts information about PHP class' properties using metadata of popular sources",
  4573. "homepage": "https://symfony.com",
  4574. "keywords": [
  4575. "doctrine",
  4576. "phpdoc",
  4577. "property",
  4578. "symfony",
  4579. "type",
  4580. "validator"
  4581. ],
  4582. "support": {
  4583. "source": "https://github.com/symfony/property-info/tree/v7.1.3"
  4584. },
  4585. "funding": [
  4586. {
  4587. "url": "https://symfony.com/sponsor",
  4588. "type": "custom"
  4589. },
  4590. {
  4591. "url": "https://github.com/fabpot",
  4592. "type": "github"
  4593. },
  4594. {
  4595. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4596. "type": "tidelift"
  4597. }
  4598. ],
  4599. "time": "2024-07-26T07:36:36+00:00"
  4600. },
  4601. {
  4602. "name": "symfony/routing",
  4603. "version": "v7.1.4",
  4604. "source": {
  4605. "type": "git",
  4606. "url": "https://github.com/symfony/routing.git",
  4607. "reference": "1500aee0094a3ce1c92626ed8cf3c2037e86f5a7"
  4608. },
  4609. "dist": {
  4610. "type": "zip",
  4611. "url": "https://api.github.com/repos/symfony/routing/zipball/1500aee0094a3ce1c92626ed8cf3c2037e86f5a7",
  4612. "reference": "1500aee0094a3ce1c92626ed8cf3c2037e86f5a7",
  4613. "shasum": ""
  4614. },
  4615. "require": {
  4616. "php": ">=8.2",
  4617. "symfony/deprecation-contracts": "^2.5|^3"
  4618. },
  4619. "conflict": {
  4620. "symfony/config": "<6.4",
  4621. "symfony/dependency-injection": "<6.4",
  4622. "symfony/yaml": "<6.4"
  4623. },
  4624. "require-dev": {
  4625. "psr/log": "^1|^2|^3",
  4626. "symfony/config": "^6.4|^7.0",
  4627. "symfony/dependency-injection": "^6.4|^7.0",
  4628. "symfony/expression-language": "^6.4|^7.0",
  4629. "symfony/http-foundation": "^6.4|^7.0",
  4630. "symfony/yaml": "^6.4|^7.0"
  4631. },
  4632. "type": "library",
  4633. "autoload": {
  4634. "psr-4": {
  4635. "Symfony\\Component\\Routing\\": ""
  4636. },
  4637. "exclude-from-classmap": [
  4638. "/Tests/"
  4639. ]
  4640. },
  4641. "notification-url": "https://packagist.org/downloads/",
  4642. "license": [
  4643. "MIT"
  4644. ],
  4645. "authors": [
  4646. {
  4647. "name": "Fabien Potencier",
  4648. "email": "fabien@symfony.com"
  4649. },
  4650. {
  4651. "name": "Symfony Community",
  4652. "homepage": "https://symfony.com/contributors"
  4653. }
  4654. ],
  4655. "description": "Maps an HTTP request to a set of configuration variables",
  4656. "homepage": "https://symfony.com",
  4657. "keywords": [
  4658. "router",
  4659. "routing",
  4660. "uri",
  4661. "url"
  4662. ],
  4663. "support": {
  4664. "source": "https://github.com/symfony/routing/tree/v7.1.4"
  4665. },
  4666. "funding": [
  4667. {
  4668. "url": "https://symfony.com/sponsor",
  4669. "type": "custom"
  4670. },
  4671. {
  4672. "url": "https://github.com/fabpot",
  4673. "type": "github"
  4674. },
  4675. {
  4676. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4677. "type": "tidelift"
  4678. }
  4679. ],
  4680. "time": "2024-08-29T08:16:25+00:00"
  4681. },
  4682. {
  4683. "name": "symfony/runtime",
  4684. "version": "v7.1.1",
  4685. "source": {
  4686. "type": "git",
  4687. "url": "https://github.com/symfony/runtime.git",
  4688. "reference": "ea34522c447dd91a2b31cb330ee4540a56ba53f6"
  4689. },
  4690. "dist": {
  4691. "type": "zip",
  4692. "url": "https://api.github.com/repos/symfony/runtime/zipball/ea34522c447dd91a2b31cb330ee4540a56ba53f6",
  4693. "reference": "ea34522c447dd91a2b31cb330ee4540a56ba53f6",
  4694. "shasum": ""
  4695. },
  4696. "require": {
  4697. "composer-plugin-api": "^1.0|^2.0",
  4698. "php": ">=8.2"
  4699. },
  4700. "conflict": {
  4701. "symfony/dotenv": "<6.4"
  4702. },
  4703. "require-dev": {
  4704. "composer/composer": "^2.6",
  4705. "symfony/console": "^6.4|^7.0",
  4706. "symfony/dotenv": "^6.4|^7.0",
  4707. "symfony/http-foundation": "^6.4|^7.0",
  4708. "symfony/http-kernel": "^6.4|^7.0"
  4709. },
  4710. "type": "composer-plugin",
  4711. "extra": {
  4712. "class": "Symfony\\Component\\Runtime\\Internal\\ComposerPlugin"
  4713. },
  4714. "autoload": {
  4715. "psr-4": {
  4716. "Symfony\\Component\\Runtime\\": "",
  4717. "Symfony\\Runtime\\Symfony\\Component\\": "Internal/"
  4718. },
  4719. "exclude-from-classmap": [
  4720. "/Tests/"
  4721. ]
  4722. },
  4723. "notification-url": "https://packagist.org/downloads/",
  4724. "license": [
  4725. "MIT"
  4726. ],
  4727. "authors": [
  4728. {
  4729. "name": "Nicolas Grekas",
  4730. "email": "p@tchwork.com"
  4731. },
  4732. {
  4733. "name": "Symfony Community",
  4734. "homepage": "https://symfony.com/contributors"
  4735. }
  4736. ],
  4737. "description": "Enables decoupling PHP applications from global state",
  4738. "homepage": "https://symfony.com",
  4739. "keywords": [
  4740. "runtime"
  4741. ],
  4742. "support": {
  4743. "source": "https://github.com/symfony/runtime/tree/v7.1.1"
  4744. },
  4745. "funding": [
  4746. {
  4747. "url": "https://symfony.com/sponsor",
  4748. "type": "custom"
  4749. },
  4750. {
  4751. "url": "https://github.com/fabpot",
  4752. "type": "github"
  4753. },
  4754. {
  4755. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4756. "type": "tidelift"
  4757. }
  4758. ],
  4759. "time": "2024-05-31T14:55:39+00:00"
  4760. },
  4761. {
  4762. "name": "symfony/security-bundle",
  4763. "version": "v7.1.4",
  4764. "source": {
  4765. "type": "git",
  4766. "url": "https://github.com/symfony/security-bundle.git",
  4767. "reference": "5e10107856ff64d477c61fed7bcbb8a16125ea01"
  4768. },
  4769. "dist": {
  4770. "type": "zip",
  4771. "url": "https://api.github.com/repos/symfony/security-bundle/zipball/5e10107856ff64d477c61fed7bcbb8a16125ea01",
  4772. "reference": "5e10107856ff64d477c61fed7bcbb8a16125ea01",
  4773. "shasum": ""
  4774. },
  4775. "require": {
  4776. "composer-runtime-api": ">=2.1",
  4777. "ext-xml": "*",
  4778. "php": ">=8.2",
  4779. "symfony/clock": "^6.4|^7.0",
  4780. "symfony/config": "^6.4|^7.0",
  4781. "symfony/dependency-injection": "^6.4.11|^7.1.4",
  4782. "symfony/event-dispatcher": "^6.4|^7.0",
  4783. "symfony/http-foundation": "^6.4|^7.0",
  4784. "symfony/http-kernel": "^6.4|^7.0",
  4785. "symfony/password-hasher": "^6.4|^7.0",
  4786. "symfony/security-core": "^6.4|^7.0",
  4787. "symfony/security-csrf": "^6.4|^7.0",
  4788. "symfony/security-http": "^7.1",
  4789. "symfony/service-contracts": "^2.5|^3"
  4790. },
  4791. "conflict": {
  4792. "symfony/browser-kit": "<6.4",
  4793. "symfony/console": "<6.4",
  4794. "symfony/framework-bundle": "<6.4",
  4795. "symfony/http-client": "<6.4",
  4796. "symfony/ldap": "<6.4",
  4797. "symfony/serializer": "<6.4",
  4798. "symfony/twig-bundle": "<6.4",
  4799. "symfony/validator": "<6.4"
  4800. },
  4801. "require-dev": {
  4802. "symfony/asset": "^6.4|^7.0",
  4803. "symfony/browser-kit": "^6.4|^7.0",
  4804. "symfony/console": "^6.4|^7.0",
  4805. "symfony/css-selector": "^6.4|^7.0",
  4806. "symfony/dom-crawler": "^6.4|^7.0",
  4807. "symfony/expression-language": "^6.4|^7.0",
  4808. "symfony/form": "^6.4|^7.0",
  4809. "symfony/framework-bundle": "^6.4|^7.0",
  4810. "symfony/http-client": "^6.4|^7.0",
  4811. "symfony/ldap": "^6.4|^7.0",
  4812. "symfony/process": "^6.4|^7.0",
  4813. "symfony/rate-limiter": "^6.4|^7.0",
  4814. "symfony/serializer": "^6.4|^7.0",
  4815. "symfony/translation": "^6.4|^7.0",
  4816. "symfony/twig-bridge": "^6.4|^7.0",
  4817. "symfony/twig-bundle": "^6.4|^7.0",
  4818. "symfony/validator": "^6.4|^7.0",
  4819. "symfony/yaml": "^6.4|^7.0",
  4820. "twig/twig": "^3.0.4",
  4821. "web-token/jwt-library": "^3.3.2|^4.0"
  4822. },
  4823. "type": "symfony-bundle",
  4824. "autoload": {
  4825. "psr-4": {
  4826. "Symfony\\Bundle\\SecurityBundle\\": ""
  4827. },
  4828. "exclude-from-classmap": [
  4829. "/Tests/"
  4830. ]
  4831. },
  4832. "notification-url": "https://packagist.org/downloads/",
  4833. "license": [
  4834. "MIT"
  4835. ],
  4836. "authors": [
  4837. {
  4838. "name": "Fabien Potencier",
  4839. "email": "fabien@symfony.com"
  4840. },
  4841. {
  4842. "name": "Symfony Community",
  4843. "homepage": "https://symfony.com/contributors"
  4844. }
  4845. ],
  4846. "description": "Provides a tight integration of the Security component into the Symfony full-stack framework",
  4847. "homepage": "https://symfony.com",
  4848. "support": {
  4849. "source": "https://github.com/symfony/security-bundle/tree/v7.1.4"
  4850. },
  4851. "funding": [
  4852. {
  4853. "url": "https://symfony.com/sponsor",
  4854. "type": "custom"
  4855. },
  4856. {
  4857. "url": "https://github.com/fabpot",
  4858. "type": "github"
  4859. },
  4860. {
  4861. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4862. "type": "tidelift"
  4863. }
  4864. ],
  4865. "time": "2024-08-20T11:38:55+00:00"
  4866. },
  4867. {
  4868. "name": "symfony/security-core",
  4869. "version": "v7.1.4",
  4870. "source": {
  4871. "type": "git",
  4872. "url": "https://github.com/symfony/security-core.git",
  4873. "reference": "f5ccd9d005993e5ff7251e57fe4a0615c8535866"
  4874. },
  4875. "dist": {
  4876. "type": "zip",
  4877. "url": "https://api.github.com/repos/symfony/security-core/zipball/f5ccd9d005993e5ff7251e57fe4a0615c8535866",
  4878. "reference": "f5ccd9d005993e5ff7251e57fe4a0615c8535866",
  4879. "shasum": ""
  4880. },
  4881. "require": {
  4882. "php": ">=8.2",
  4883. "symfony/event-dispatcher-contracts": "^2.5|^3",
  4884. "symfony/password-hasher": "^6.4|^7.0",
  4885. "symfony/service-contracts": "^2.5|^3"
  4886. },
  4887. "conflict": {
  4888. "symfony/dependency-injection": "<6.4",
  4889. "symfony/event-dispatcher": "<6.4",
  4890. "symfony/http-foundation": "<6.4",
  4891. "symfony/ldap": "<6.4",
  4892. "symfony/translation": "<6.4.3|>=7.0,<7.0.3",
  4893. "symfony/validator": "<6.4"
  4894. },
  4895. "require-dev": {
  4896. "psr/cache": "^1.0|^2.0|^3.0",
  4897. "psr/container": "^1.1|^2.0",
  4898. "psr/log": "^1|^2|^3",
  4899. "symfony/cache": "^6.4|^7.0",
  4900. "symfony/dependency-injection": "^6.4|^7.0",
  4901. "symfony/event-dispatcher": "^6.4|^7.0",
  4902. "symfony/expression-language": "^6.4|^7.0",
  4903. "symfony/http-foundation": "^6.4|^7.0",
  4904. "symfony/ldap": "^6.4|^7.0",
  4905. "symfony/string": "^6.4|^7.0",
  4906. "symfony/translation": "^6.4.3|^7.0.3",
  4907. "symfony/validator": "^6.4|^7.0"
  4908. },
  4909. "type": "library",
  4910. "autoload": {
  4911. "psr-4": {
  4912. "Symfony\\Component\\Security\\Core\\": ""
  4913. },
  4914. "exclude-from-classmap": [
  4915. "/Tests/"
  4916. ]
  4917. },
  4918. "notification-url": "https://packagist.org/downloads/",
  4919. "license": [
  4920. "MIT"
  4921. ],
  4922. "authors": [
  4923. {
  4924. "name": "Fabien Potencier",
  4925. "email": "fabien@symfony.com"
  4926. },
  4927. {
  4928. "name": "Symfony Community",
  4929. "homepage": "https://symfony.com/contributors"
  4930. }
  4931. ],
  4932. "description": "Symfony Security Component - Core Library",
  4933. "homepage": "https://symfony.com",
  4934. "support": {
  4935. "source": "https://github.com/symfony/security-core/tree/v7.1.4"
  4936. },
  4937. "funding": [
  4938. {
  4939. "url": "https://symfony.com/sponsor",
  4940. "type": "custom"
  4941. },
  4942. {
  4943. "url": "https://github.com/fabpot",
  4944. "type": "github"
  4945. },
  4946. {
  4947. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4948. "type": "tidelift"
  4949. }
  4950. ],
  4951. "time": "2024-08-29T08:16:25+00:00"
  4952. },
  4953. {
  4954. "name": "symfony/security-csrf",
  4955. "version": "v7.1.1",
  4956. "source": {
  4957. "type": "git",
  4958. "url": "https://github.com/symfony/security-csrf.git",
  4959. "reference": "27cd1bce9d7f3457a152a6ca9790712d6954dd21"
  4960. },
  4961. "dist": {
  4962. "type": "zip",
  4963. "url": "https://api.github.com/repos/symfony/security-csrf/zipball/27cd1bce9d7f3457a152a6ca9790712d6954dd21",
  4964. "reference": "27cd1bce9d7f3457a152a6ca9790712d6954dd21",
  4965. "shasum": ""
  4966. },
  4967. "require": {
  4968. "php": ">=8.2",
  4969. "symfony/security-core": "^6.4|^7.0"
  4970. },
  4971. "conflict": {
  4972. "symfony/http-foundation": "<6.4"
  4973. },
  4974. "require-dev": {
  4975. "symfony/http-foundation": "^6.4|^7.0"
  4976. },
  4977. "type": "library",
  4978. "autoload": {
  4979. "psr-4": {
  4980. "Symfony\\Component\\Security\\Csrf\\": ""
  4981. },
  4982. "exclude-from-classmap": [
  4983. "/Tests/"
  4984. ]
  4985. },
  4986. "notification-url": "https://packagist.org/downloads/",
  4987. "license": [
  4988. "MIT"
  4989. ],
  4990. "authors": [
  4991. {
  4992. "name": "Fabien Potencier",
  4993. "email": "fabien@symfony.com"
  4994. },
  4995. {
  4996. "name": "Symfony Community",
  4997. "homepage": "https://symfony.com/contributors"
  4998. }
  4999. ],
  5000. "description": "Symfony Security Component - CSRF Library",
  5001. "homepage": "https://symfony.com",
  5002. "support": {
  5003. "source": "https://github.com/symfony/security-csrf/tree/v7.1.1"
  5004. },
  5005. "funding": [
  5006. {
  5007. "url": "https://symfony.com/sponsor",
  5008. "type": "custom"
  5009. },
  5010. {
  5011. "url": "https://github.com/fabpot",
  5012. "type": "github"
  5013. },
  5014. {
  5015. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5016. "type": "tidelift"
  5017. }
  5018. ],
  5019. "time": "2024-05-31T14:57:53+00:00"
  5020. },
  5021. {
  5022. "name": "symfony/security-http",
  5023. "version": "v7.1.4",
  5024. "source": {
  5025. "type": "git",
  5026. "url": "https://github.com/symfony/security-http.git",
  5027. "reference": "acd1ecc807b76b9bdefe53168c3a52a11205fc20"
  5028. },
  5029. "dist": {
  5030. "type": "zip",
  5031. "url": "https://api.github.com/repos/symfony/security-http/zipball/acd1ecc807b76b9bdefe53168c3a52a11205fc20",
  5032. "reference": "acd1ecc807b76b9bdefe53168c3a52a11205fc20",
  5033. "shasum": ""
  5034. },
  5035. "require": {
  5036. "php": ">=8.2",
  5037. "symfony/deprecation-contracts": "^2.5|^3",
  5038. "symfony/http-foundation": "^6.4|^7.0",
  5039. "symfony/http-kernel": "^6.4|^7.0",
  5040. "symfony/polyfill-mbstring": "~1.0",
  5041. "symfony/property-access": "^6.4|^7.0",
  5042. "symfony/security-core": "^6.4|^7.0",
  5043. "symfony/service-contracts": "^2.5|^3"
  5044. },
  5045. "conflict": {
  5046. "symfony/clock": "<6.4",
  5047. "symfony/event-dispatcher": "<6.4",
  5048. "symfony/http-client-contracts": "<3.0",
  5049. "symfony/security-bundle": "<6.4",
  5050. "symfony/security-csrf": "<6.4"
  5051. },
  5052. "require-dev": {
  5053. "psr/log": "^1|^2|^3",
  5054. "symfony/cache": "^6.4|^7.0",
  5055. "symfony/clock": "^6.4|^7.0",
  5056. "symfony/expression-language": "^6.4|^7.0",
  5057. "symfony/http-client": "^6.4|^7.0",
  5058. "symfony/http-client-contracts": "^3.0",
  5059. "symfony/rate-limiter": "^6.4|^7.0",
  5060. "symfony/routing": "^6.4|^7.0",
  5061. "symfony/security-csrf": "^6.4|^7.0",
  5062. "symfony/translation": "^6.4|^7.0",
  5063. "web-token/jwt-library": "^3.3.2|^4.0"
  5064. },
  5065. "type": "library",
  5066. "autoload": {
  5067. "psr-4": {
  5068. "Symfony\\Component\\Security\\Http\\": ""
  5069. },
  5070. "exclude-from-classmap": [
  5071. "/Tests/"
  5072. ]
  5073. },
  5074. "notification-url": "https://packagist.org/downloads/",
  5075. "license": [
  5076. "MIT"
  5077. ],
  5078. "authors": [
  5079. {
  5080. "name": "Fabien Potencier",
  5081. "email": "fabien@symfony.com"
  5082. },
  5083. {
  5084. "name": "Symfony Community",
  5085. "homepage": "https://symfony.com/contributors"
  5086. }
  5087. ],
  5088. "description": "Symfony Security Component - HTTP Integration",
  5089. "homepage": "https://symfony.com",
  5090. "support": {
  5091. "source": "https://github.com/symfony/security-http/tree/v7.1.4"
  5092. },
  5093. "funding": [
  5094. {
  5095. "url": "https://symfony.com/sponsor",
  5096. "type": "custom"
  5097. },
  5098. {
  5099. "url": "https://github.com/fabpot",
  5100. "type": "github"
  5101. },
  5102. {
  5103. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5104. "type": "tidelift"
  5105. }
  5106. ],
  5107. "time": "2024-08-15T22:52:38+00:00"
  5108. },
  5109. {
  5110. "name": "symfony/serializer",
  5111. "version": "v7.1.4",
  5112. "source": {
  5113. "type": "git",
  5114. "url": "https://github.com/symfony/serializer.git",
  5115. "reference": "0158b0e91b7cf7e744a6fb9acaeb613d1ca40dbb"
  5116. },
  5117. "dist": {
  5118. "type": "zip",
  5119. "url": "https://api.github.com/repos/symfony/serializer/zipball/0158b0e91b7cf7e744a6fb9acaeb613d1ca40dbb",
  5120. "reference": "0158b0e91b7cf7e744a6fb9acaeb613d1ca40dbb",
  5121. "shasum": ""
  5122. },
  5123. "require": {
  5124. "php": ">=8.2",
  5125. "symfony/deprecation-contracts": "^2.5|^3",
  5126. "symfony/polyfill-ctype": "~1.8"
  5127. },
  5128. "conflict": {
  5129. "phpdocumentor/reflection-docblock": "<3.2.2",
  5130. "phpdocumentor/type-resolver": "<1.4.0",
  5131. "symfony/dependency-injection": "<6.4",
  5132. "symfony/property-access": "<6.4",
  5133. "symfony/property-info": "<6.4",
  5134. "symfony/uid": "<6.4",
  5135. "symfony/validator": "<6.4",
  5136. "symfony/yaml": "<6.4"
  5137. },
  5138. "require-dev": {
  5139. "phpdocumentor/reflection-docblock": "^3.2|^4.0|^5.0",
  5140. "seld/jsonlint": "^1.10",
  5141. "symfony/cache": "^6.4|^7.0",
  5142. "symfony/config": "^6.4|^7.0",
  5143. "symfony/console": "^6.4|^7.0",
  5144. "symfony/dependency-injection": "^6.4|^7.0",
  5145. "symfony/error-handler": "^6.4|^7.0",
  5146. "symfony/filesystem": "^6.4|^7.0",
  5147. "symfony/form": "^6.4|^7.0",
  5148. "symfony/http-foundation": "^6.4|^7.0",
  5149. "symfony/http-kernel": "^6.4|^7.0",
  5150. "symfony/messenger": "^6.4|^7.0",
  5151. "symfony/mime": "^6.4|^7.0",
  5152. "symfony/property-access": "^6.4|^7.0",
  5153. "symfony/property-info": "^6.4|^7.0",
  5154. "symfony/translation-contracts": "^2.5|^3",
  5155. "symfony/type-info": "^7.1",
  5156. "symfony/uid": "^6.4|^7.0",
  5157. "symfony/validator": "^6.4|^7.0",
  5158. "symfony/var-dumper": "^6.4|^7.0",
  5159. "symfony/var-exporter": "^6.4|^7.0",
  5160. "symfony/yaml": "^6.4|^7.0"
  5161. },
  5162. "type": "library",
  5163. "autoload": {
  5164. "psr-4": {
  5165. "Symfony\\Component\\Serializer\\": ""
  5166. },
  5167. "exclude-from-classmap": [
  5168. "/Tests/"
  5169. ]
  5170. },
  5171. "notification-url": "https://packagist.org/downloads/",
  5172. "license": [
  5173. "MIT"
  5174. ],
  5175. "authors": [
  5176. {
  5177. "name": "Fabien Potencier",
  5178. "email": "fabien@symfony.com"
  5179. },
  5180. {
  5181. "name": "Symfony Community",
  5182. "homepage": "https://symfony.com/contributors"
  5183. }
  5184. ],
  5185. "description": "Handles serializing and deserializing data structures, including object graphs, into array structures or other formats like XML and JSON.",
  5186. "homepage": "https://symfony.com",
  5187. "support": {
  5188. "source": "https://github.com/symfony/serializer/tree/v7.1.4"
  5189. },
  5190. "funding": [
  5191. {
  5192. "url": "https://symfony.com/sponsor",
  5193. "type": "custom"
  5194. },
  5195. {
  5196. "url": "https://github.com/fabpot",
  5197. "type": "github"
  5198. },
  5199. {
  5200. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5201. "type": "tidelift"
  5202. }
  5203. ],
  5204. "time": "2024-08-22T09:39:57+00:00"
  5205. },
  5206. {
  5207. "name": "symfony/service-contracts",
  5208. "version": "v3.5.0",
  5209. "source": {
  5210. "type": "git",
  5211. "url": "https://github.com/symfony/service-contracts.git",
  5212. "reference": "bd1d9e59a81d8fa4acdcea3f617c581f7475a80f"
  5213. },
  5214. "dist": {
  5215. "type": "zip",
  5216. "url": "https://api.github.com/repos/symfony/service-contracts/zipball/bd1d9e59a81d8fa4acdcea3f617c581f7475a80f",
  5217. "reference": "bd1d9e59a81d8fa4acdcea3f617c581f7475a80f",
  5218. "shasum": ""
  5219. },
  5220. "require": {
  5221. "php": ">=8.1",
  5222. "psr/container": "^1.1|^2.0",
  5223. "symfony/deprecation-contracts": "^2.5|^3"
  5224. },
  5225. "conflict": {
  5226. "ext-psr": "<1.1|>=2"
  5227. },
  5228. "type": "library",
  5229. "extra": {
  5230. "branch-alias": {
  5231. "dev-main": "3.5-dev"
  5232. },
  5233. "thanks": {
  5234. "name": "symfony/contracts",
  5235. "url": "https://github.com/symfony/contracts"
  5236. }
  5237. },
  5238. "autoload": {
  5239. "psr-4": {
  5240. "Symfony\\Contracts\\Service\\": ""
  5241. },
  5242. "exclude-from-classmap": [
  5243. "/Test/"
  5244. ]
  5245. },
  5246. "notification-url": "https://packagist.org/downloads/",
  5247. "license": [
  5248. "MIT"
  5249. ],
  5250. "authors": [
  5251. {
  5252. "name": "Nicolas Grekas",
  5253. "email": "p@tchwork.com"
  5254. },
  5255. {
  5256. "name": "Symfony Community",
  5257. "homepage": "https://symfony.com/contributors"
  5258. }
  5259. ],
  5260. "description": "Generic abstractions related to writing services",
  5261. "homepage": "https://symfony.com",
  5262. "keywords": [
  5263. "abstractions",
  5264. "contracts",
  5265. "decoupling",
  5266. "interfaces",
  5267. "interoperability",
  5268. "standards"
  5269. ],
  5270. "support": {
  5271. "source": "https://github.com/symfony/service-contracts/tree/v3.5.0"
  5272. },
  5273. "funding": [
  5274. {
  5275. "url": "https://symfony.com/sponsor",
  5276. "type": "custom"
  5277. },
  5278. {
  5279. "url": "https://github.com/fabpot",
  5280. "type": "github"
  5281. },
  5282. {
  5283. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5284. "type": "tidelift"
  5285. }
  5286. ],
  5287. "time": "2024-04-18T09:32:20+00:00"
  5288. },
  5289. {
  5290. "name": "symfony/stopwatch",
  5291. "version": "v7.1.1",
  5292. "source": {
  5293. "type": "git",
  5294. "url": "https://github.com/symfony/stopwatch.git",
  5295. "reference": "5b75bb1ac2ba1b9d05c47fc4b3046a625377d23d"
  5296. },
  5297. "dist": {
  5298. "type": "zip",
  5299. "url": "https://api.github.com/repos/symfony/stopwatch/zipball/5b75bb1ac2ba1b9d05c47fc4b3046a625377d23d",
  5300. "reference": "5b75bb1ac2ba1b9d05c47fc4b3046a625377d23d",
  5301. "shasum": ""
  5302. },
  5303. "require": {
  5304. "php": ">=8.2",
  5305. "symfony/service-contracts": "^2.5|^3"
  5306. },
  5307. "type": "library",
  5308. "autoload": {
  5309. "psr-4": {
  5310. "Symfony\\Component\\Stopwatch\\": ""
  5311. },
  5312. "exclude-from-classmap": [
  5313. "/Tests/"
  5314. ]
  5315. },
  5316. "notification-url": "https://packagist.org/downloads/",
  5317. "license": [
  5318. "MIT"
  5319. ],
  5320. "authors": [
  5321. {
  5322. "name": "Fabien Potencier",
  5323. "email": "fabien@symfony.com"
  5324. },
  5325. {
  5326. "name": "Symfony Community",
  5327. "homepage": "https://symfony.com/contributors"
  5328. }
  5329. ],
  5330. "description": "Provides a way to profile code",
  5331. "homepage": "https://symfony.com",
  5332. "support": {
  5333. "source": "https://github.com/symfony/stopwatch/tree/v7.1.1"
  5334. },
  5335. "funding": [
  5336. {
  5337. "url": "https://symfony.com/sponsor",
  5338. "type": "custom"
  5339. },
  5340. {
  5341. "url": "https://github.com/fabpot",
  5342. "type": "github"
  5343. },
  5344. {
  5345. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5346. "type": "tidelift"
  5347. }
  5348. ],
  5349. "time": "2024-05-31T14:57:53+00:00"
  5350. },
  5351. {
  5352. "name": "symfony/string",
  5353. "version": "v7.1.4",
  5354. "source": {
  5355. "type": "git",
  5356. "url": "https://github.com/symfony/string.git",
  5357. "reference": "6cd670a6d968eaeb1c77c2e76091c45c56bc367b"
  5358. },
  5359. "dist": {
  5360. "type": "zip",
  5361. "url": "https://api.github.com/repos/symfony/string/zipball/6cd670a6d968eaeb1c77c2e76091c45c56bc367b",
  5362. "reference": "6cd670a6d968eaeb1c77c2e76091c45c56bc367b",
  5363. "shasum": ""
  5364. },
  5365. "require": {
  5366. "php": ">=8.2",
  5367. "symfony/polyfill-ctype": "~1.8",
  5368. "symfony/polyfill-intl-grapheme": "~1.0",
  5369. "symfony/polyfill-intl-normalizer": "~1.0",
  5370. "symfony/polyfill-mbstring": "~1.0"
  5371. },
  5372. "conflict": {
  5373. "symfony/translation-contracts": "<2.5"
  5374. },
  5375. "require-dev": {
  5376. "symfony/emoji": "^7.1",
  5377. "symfony/error-handler": "^6.4|^7.0",
  5378. "symfony/http-client": "^6.4|^7.0",
  5379. "symfony/intl": "^6.4|^7.0",
  5380. "symfony/translation-contracts": "^2.5|^3.0",
  5381. "symfony/var-exporter": "^6.4|^7.0"
  5382. },
  5383. "type": "library",
  5384. "autoload": {
  5385. "files": [
  5386. "Resources/functions.php"
  5387. ],
  5388. "psr-4": {
  5389. "Symfony\\Component\\String\\": ""
  5390. },
  5391. "exclude-from-classmap": [
  5392. "/Tests/"
  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": "Provides an object-oriented API to strings and deals with bytes, UTF-8 code points and grapheme clusters in a unified way",
  5410. "homepage": "https://symfony.com",
  5411. "keywords": [
  5412. "grapheme",
  5413. "i18n",
  5414. "string",
  5415. "unicode",
  5416. "utf-8",
  5417. "utf8"
  5418. ],
  5419. "support": {
  5420. "source": "https://github.com/symfony/string/tree/v7.1.4"
  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-08-12T09:59:40+00:00"
  5437. },
  5438. {
  5439. "name": "symfony/translation-contracts",
  5440. "version": "v3.5.0",
  5441. "source": {
  5442. "type": "git",
  5443. "url": "https://github.com/symfony/translation-contracts.git",
  5444. "reference": "b9d2189887bb6b2e0367a9fc7136c5239ab9b05a"
  5445. },
  5446. "dist": {
  5447. "type": "zip",
  5448. "url": "https://api.github.com/repos/symfony/translation-contracts/zipball/b9d2189887bb6b2e0367a9fc7136c5239ab9b05a",
  5449. "reference": "b9d2189887bb6b2e0367a9fc7136c5239ab9b05a",
  5450. "shasum": ""
  5451. },
  5452. "require": {
  5453. "php": ">=8.1"
  5454. },
  5455. "type": "library",
  5456. "extra": {
  5457. "branch-alias": {
  5458. "dev-main": "3.5-dev"
  5459. },
  5460. "thanks": {
  5461. "name": "symfony/contracts",
  5462. "url": "https://github.com/symfony/contracts"
  5463. }
  5464. },
  5465. "autoload": {
  5466. "psr-4": {
  5467. "Symfony\\Contracts\\Translation\\": ""
  5468. },
  5469. "exclude-from-classmap": [
  5470. "/Test/"
  5471. ]
  5472. },
  5473. "notification-url": "https://packagist.org/downloads/",
  5474. "license": [
  5475. "MIT"
  5476. ],
  5477. "authors": [
  5478. {
  5479. "name": "Nicolas Grekas",
  5480. "email": "p@tchwork.com"
  5481. },
  5482. {
  5483. "name": "Symfony Community",
  5484. "homepage": "https://symfony.com/contributors"
  5485. }
  5486. ],
  5487. "description": "Generic abstractions related to translation",
  5488. "homepage": "https://symfony.com",
  5489. "keywords": [
  5490. "abstractions",
  5491. "contracts",
  5492. "decoupling",
  5493. "interfaces",
  5494. "interoperability",
  5495. "standards"
  5496. ],
  5497. "support": {
  5498. "source": "https://github.com/symfony/translation-contracts/tree/v3.5.0"
  5499. },
  5500. "funding": [
  5501. {
  5502. "url": "https://symfony.com/sponsor",
  5503. "type": "custom"
  5504. },
  5505. {
  5506. "url": "https://github.com/fabpot",
  5507. "type": "github"
  5508. },
  5509. {
  5510. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5511. "type": "tidelift"
  5512. }
  5513. ],
  5514. "time": "2024-04-18T09:32:20+00:00"
  5515. },
  5516. {
  5517. "name": "symfony/twig-bridge",
  5518. "version": "v7.1.4",
  5519. "source": {
  5520. "type": "git",
  5521. "url": "https://github.com/symfony/twig-bridge.git",
  5522. "reference": "2db32cfe8fc57797908ef0bee232b90dbe42af66"
  5523. },
  5524. "dist": {
  5525. "type": "zip",
  5526. "url": "https://api.github.com/repos/symfony/twig-bridge/zipball/2db32cfe8fc57797908ef0bee232b90dbe42af66",
  5527. "reference": "2db32cfe8fc57797908ef0bee232b90dbe42af66",
  5528. "shasum": ""
  5529. },
  5530. "require": {
  5531. "php": ">=8.2",
  5532. "symfony/translation-contracts": "^2.5|^3",
  5533. "twig/twig": "^3.9"
  5534. },
  5535. "conflict": {
  5536. "phpdocumentor/reflection-docblock": "<3.2.2",
  5537. "phpdocumentor/type-resolver": "<1.4.0",
  5538. "symfony/console": "<6.4",
  5539. "symfony/form": "<6.4",
  5540. "symfony/http-foundation": "<6.4",
  5541. "symfony/http-kernel": "<6.4",
  5542. "symfony/mime": "<6.4",
  5543. "symfony/serializer": "<6.4",
  5544. "symfony/translation": "<6.4",
  5545. "symfony/workflow": "<6.4"
  5546. },
  5547. "require-dev": {
  5548. "egulias/email-validator": "^2.1.10|^3|^4",
  5549. "league/html-to-markdown": "^5.0",
  5550. "phpdocumentor/reflection-docblock": "^3.0|^4.0|^5.0",
  5551. "symfony/asset": "^6.4|^7.0",
  5552. "symfony/asset-mapper": "^6.4|^7.0",
  5553. "symfony/console": "^6.4|^7.0",
  5554. "symfony/dependency-injection": "^6.4|^7.0",
  5555. "symfony/emoji": "^7.1",
  5556. "symfony/expression-language": "^6.4|^7.0",
  5557. "symfony/finder": "^6.4|^7.0",
  5558. "symfony/form": "^6.4|^7.0",
  5559. "symfony/html-sanitizer": "^6.4|^7.0",
  5560. "symfony/http-foundation": "^6.4|^7.0",
  5561. "symfony/http-kernel": "^6.4|^7.0",
  5562. "symfony/intl": "^6.4|^7.0",
  5563. "symfony/mime": "^6.4|^7.0",
  5564. "symfony/polyfill-intl-icu": "~1.0",
  5565. "symfony/property-info": "^6.4|^7.0",
  5566. "symfony/routing": "^6.4|^7.0",
  5567. "symfony/security-acl": "^2.8|^3.0",
  5568. "symfony/security-core": "^6.4|^7.0",
  5569. "symfony/security-csrf": "^6.4|^7.0",
  5570. "symfony/security-http": "^6.4|^7.0",
  5571. "symfony/serializer": "^6.4.3|^7.0.3",
  5572. "symfony/stopwatch": "^6.4|^7.0",
  5573. "symfony/translation": "^6.4|^7.0",
  5574. "symfony/web-link": "^6.4|^7.0",
  5575. "symfony/workflow": "^6.4|^7.0",
  5576. "symfony/yaml": "^6.4|^7.0",
  5577. "twig/cssinliner-extra": "^2.12|^3",
  5578. "twig/inky-extra": "^2.12|^3",
  5579. "twig/markdown-extra": "^2.12|^3"
  5580. },
  5581. "type": "symfony-bridge",
  5582. "autoload": {
  5583. "psr-4": {
  5584. "Symfony\\Bridge\\Twig\\": ""
  5585. },
  5586. "exclude-from-classmap": [
  5587. "/Tests/"
  5588. ]
  5589. },
  5590. "notification-url": "https://packagist.org/downloads/",
  5591. "license": [
  5592. "MIT"
  5593. ],
  5594. "authors": [
  5595. {
  5596. "name": "Fabien Potencier",
  5597. "email": "fabien@symfony.com"
  5598. },
  5599. {
  5600. "name": "Symfony Community",
  5601. "homepage": "https://symfony.com/contributors"
  5602. }
  5603. ],
  5604. "description": "Provides integration for Twig with various Symfony components",
  5605. "homepage": "https://symfony.com",
  5606. "support": {
  5607. "source": "https://github.com/symfony/twig-bridge/tree/v7.1.4"
  5608. },
  5609. "funding": [
  5610. {
  5611. "url": "https://symfony.com/sponsor",
  5612. "type": "custom"
  5613. },
  5614. {
  5615. "url": "https://github.com/fabpot",
  5616. "type": "github"
  5617. },
  5618. {
  5619. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5620. "type": "tidelift"
  5621. }
  5622. ],
  5623. "time": "2024-08-29T08:16:25+00:00"
  5624. },
  5625. {
  5626. "name": "symfony/twig-bundle",
  5627. "version": "v7.1.1",
  5628. "source": {
  5629. "type": "git",
  5630. "url": "https://github.com/symfony/twig-bundle.git",
  5631. "reference": "d48c2f08c2f315e749f0e18fc4945b7be8afe1e5"
  5632. },
  5633. "dist": {
  5634. "type": "zip",
  5635. "url": "https://api.github.com/repos/symfony/twig-bundle/zipball/d48c2f08c2f315e749f0e18fc4945b7be8afe1e5",
  5636. "reference": "d48c2f08c2f315e749f0e18fc4945b7be8afe1e5",
  5637. "shasum": ""
  5638. },
  5639. "require": {
  5640. "composer-runtime-api": ">=2.1",
  5641. "php": ">=8.2",
  5642. "symfony/config": "^6.4|^7.0",
  5643. "symfony/dependency-injection": "^6.4|^7.0",
  5644. "symfony/http-foundation": "^6.4|^7.0",
  5645. "symfony/http-kernel": "^6.4|^7.0",
  5646. "symfony/twig-bridge": "^6.4|^7.0",
  5647. "twig/twig": "^3.0.4"
  5648. },
  5649. "conflict": {
  5650. "symfony/framework-bundle": "<6.4",
  5651. "symfony/translation": "<6.4"
  5652. },
  5653. "require-dev": {
  5654. "symfony/asset": "^6.4|^7.0",
  5655. "symfony/expression-language": "^6.4|^7.0",
  5656. "symfony/finder": "^6.4|^7.0",
  5657. "symfony/form": "^6.4|^7.0",
  5658. "symfony/framework-bundle": "^6.4|^7.0",
  5659. "symfony/routing": "^6.4|^7.0",
  5660. "symfony/stopwatch": "^6.4|^7.0",
  5661. "symfony/translation": "^6.4|^7.0",
  5662. "symfony/web-link": "^6.4|^7.0",
  5663. "symfony/yaml": "^6.4|^7.0"
  5664. },
  5665. "type": "symfony-bundle",
  5666. "autoload": {
  5667. "psr-4": {
  5668. "Symfony\\Bundle\\TwigBundle\\": ""
  5669. },
  5670. "exclude-from-classmap": [
  5671. "/Tests/"
  5672. ]
  5673. },
  5674. "notification-url": "https://packagist.org/downloads/",
  5675. "license": [
  5676. "MIT"
  5677. ],
  5678. "authors": [
  5679. {
  5680. "name": "Fabien Potencier",
  5681. "email": "fabien@symfony.com"
  5682. },
  5683. {
  5684. "name": "Symfony Community",
  5685. "homepage": "https://symfony.com/contributors"
  5686. }
  5687. ],
  5688. "description": "Provides a tight integration of Twig into the Symfony full-stack framework",
  5689. "homepage": "https://symfony.com",
  5690. "support": {
  5691. "source": "https://github.com/symfony/twig-bundle/tree/v7.1.1"
  5692. },
  5693. "funding": [
  5694. {
  5695. "url": "https://symfony.com/sponsor",
  5696. "type": "custom"
  5697. },
  5698. {
  5699. "url": "https://github.com/fabpot",
  5700. "type": "github"
  5701. },
  5702. {
  5703. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5704. "type": "tidelift"
  5705. }
  5706. ],
  5707. "time": "2024-05-31T14:57:53+00:00"
  5708. },
  5709. {
  5710. "name": "symfony/type-info",
  5711. "version": "v7.1.1",
  5712. "source": {
  5713. "type": "git",
  5714. "url": "https://github.com/symfony/type-info.git",
  5715. "reference": "60b28eb733f1453287f1263ed305b96091e0d1dc"
  5716. },
  5717. "dist": {
  5718. "type": "zip",
  5719. "url": "https://api.github.com/repos/symfony/type-info/zipball/60b28eb733f1453287f1263ed305b96091e0d1dc",
  5720. "reference": "60b28eb733f1453287f1263ed305b96091e0d1dc",
  5721. "shasum": ""
  5722. },
  5723. "require": {
  5724. "php": ">=8.2",
  5725. "psr/container": "^1.1|^2.0"
  5726. },
  5727. "conflict": {
  5728. "phpstan/phpdoc-parser": "<1.0",
  5729. "symfony/dependency-injection": "<6.4",
  5730. "symfony/property-info": "<6.4"
  5731. },
  5732. "require-dev": {
  5733. "phpstan/phpdoc-parser": "^1.0",
  5734. "symfony/dependency-injection": "^6.4|^7.0",
  5735. "symfony/property-info": "^6.4|^7.0"
  5736. },
  5737. "type": "library",
  5738. "autoload": {
  5739. "psr-4": {
  5740. "Symfony\\Component\\TypeInfo\\": ""
  5741. },
  5742. "exclude-from-classmap": [
  5743. "/Tests/"
  5744. ]
  5745. },
  5746. "notification-url": "https://packagist.org/downloads/",
  5747. "license": [
  5748. "MIT"
  5749. ],
  5750. "authors": [
  5751. {
  5752. "name": "Mathias Arlaud",
  5753. "email": "mathias.arlaud@gmail.com"
  5754. },
  5755. {
  5756. "name": "Baptiste LEDUC",
  5757. "email": "baptiste.leduc@gmail.com"
  5758. },
  5759. {
  5760. "name": "Symfony Community",
  5761. "homepage": "https://symfony.com/contributors"
  5762. }
  5763. ],
  5764. "description": "Extracts PHP types information.",
  5765. "homepage": "https://symfony.com",
  5766. "keywords": [
  5767. "PHPStan",
  5768. "phpdoc",
  5769. "symfony",
  5770. "type"
  5771. ],
  5772. "support": {
  5773. "source": "https://github.com/symfony/type-info/tree/v7.1.1"
  5774. },
  5775. "funding": [
  5776. {
  5777. "url": "https://symfony.com/sponsor",
  5778. "type": "custom"
  5779. },
  5780. {
  5781. "url": "https://github.com/fabpot",
  5782. "type": "github"
  5783. },
  5784. {
  5785. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5786. "type": "tidelift"
  5787. }
  5788. ],
  5789. "time": "2024-05-31T14:59:31+00:00"
  5790. },
  5791. {
  5792. "name": "symfony/validator",
  5793. "version": "v7.1.4",
  5794. "source": {
  5795. "type": "git",
  5796. "url": "https://github.com/symfony/validator.git",
  5797. "reference": "0d7e0dfd41702d6b9356214b76110421c1e74368"
  5798. },
  5799. "dist": {
  5800. "type": "zip",
  5801. "url": "https://api.github.com/repos/symfony/validator/zipball/0d7e0dfd41702d6b9356214b76110421c1e74368",
  5802. "reference": "0d7e0dfd41702d6b9356214b76110421c1e74368",
  5803. "shasum": ""
  5804. },
  5805. "require": {
  5806. "php": ">=8.2",
  5807. "symfony/deprecation-contracts": "^2.5|^3",
  5808. "symfony/polyfill-ctype": "~1.8",
  5809. "symfony/polyfill-mbstring": "~1.0",
  5810. "symfony/polyfill-php83": "^1.27",
  5811. "symfony/translation-contracts": "^2.5|^3"
  5812. },
  5813. "conflict": {
  5814. "doctrine/lexer": "<1.1",
  5815. "symfony/dependency-injection": "<6.4",
  5816. "symfony/doctrine-bridge": "<7.0",
  5817. "symfony/expression-language": "<6.4",
  5818. "symfony/http-kernel": "<6.4",
  5819. "symfony/intl": "<6.4",
  5820. "symfony/property-info": "<6.4",
  5821. "symfony/translation": "<6.4.3|>=7.0,<7.0.3",
  5822. "symfony/yaml": "<6.4"
  5823. },
  5824. "require-dev": {
  5825. "egulias/email-validator": "^2.1.10|^3|^4",
  5826. "symfony/cache": "^6.4|^7.0",
  5827. "symfony/config": "^6.4|^7.0",
  5828. "symfony/console": "^6.4|^7.0",
  5829. "symfony/dependency-injection": "^6.4|^7.0",
  5830. "symfony/expression-language": "^6.4|^7.0",
  5831. "symfony/finder": "^6.4|^7.0",
  5832. "symfony/http-client": "^6.4|^7.0",
  5833. "symfony/http-foundation": "^6.4|^7.0",
  5834. "symfony/http-kernel": "^6.4|^7.0",
  5835. "symfony/intl": "^6.4|^7.0",
  5836. "symfony/mime": "^6.4|^7.0",
  5837. "symfony/property-access": "^6.4|^7.0",
  5838. "symfony/property-info": "^6.4|^7.0",
  5839. "symfony/translation": "^6.4.3|^7.0.3",
  5840. "symfony/type-info": "^7.1",
  5841. "symfony/yaml": "^6.4|^7.0"
  5842. },
  5843. "type": "library",
  5844. "autoload": {
  5845. "psr-4": {
  5846. "Symfony\\Component\\Validator\\": ""
  5847. },
  5848. "exclude-from-classmap": [
  5849. "/Tests/",
  5850. "/Resources/bin/"
  5851. ]
  5852. },
  5853. "notification-url": "https://packagist.org/downloads/",
  5854. "license": [
  5855. "MIT"
  5856. ],
  5857. "authors": [
  5858. {
  5859. "name": "Fabien Potencier",
  5860. "email": "fabien@symfony.com"
  5861. },
  5862. {
  5863. "name": "Symfony Community",
  5864. "homepage": "https://symfony.com/contributors"
  5865. }
  5866. ],
  5867. "description": "Provides tools to validate values",
  5868. "homepage": "https://symfony.com",
  5869. "support": {
  5870. "source": "https://github.com/symfony/validator/tree/v7.1.4"
  5871. },
  5872. "funding": [
  5873. {
  5874. "url": "https://symfony.com/sponsor",
  5875. "type": "custom"
  5876. },
  5877. {
  5878. "url": "https://github.com/fabpot",
  5879. "type": "github"
  5880. },
  5881. {
  5882. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5883. "type": "tidelift"
  5884. }
  5885. ],
  5886. "time": "2024-08-30T15:58:06+00:00"
  5887. },
  5888. {
  5889. "name": "symfony/var-dumper",
  5890. "version": "v7.1.4",
  5891. "source": {
  5892. "type": "git",
  5893. "url": "https://github.com/symfony/var-dumper.git",
  5894. "reference": "a5fa7481b199090964d6fd5dab6294d5a870c7aa"
  5895. },
  5896. "dist": {
  5897. "type": "zip",
  5898. "url": "https://api.github.com/repos/symfony/var-dumper/zipball/a5fa7481b199090964d6fd5dab6294d5a870c7aa",
  5899. "reference": "a5fa7481b199090964d6fd5dab6294d5a870c7aa",
  5900. "shasum": ""
  5901. },
  5902. "require": {
  5903. "php": ">=8.2",
  5904. "symfony/polyfill-mbstring": "~1.0"
  5905. },
  5906. "conflict": {
  5907. "symfony/console": "<6.4"
  5908. },
  5909. "require-dev": {
  5910. "ext-iconv": "*",
  5911. "symfony/console": "^6.4|^7.0",
  5912. "symfony/http-kernel": "^6.4|^7.0",
  5913. "symfony/process": "^6.4|^7.0",
  5914. "symfony/uid": "^6.4|^7.0",
  5915. "twig/twig": "^3.0.4"
  5916. },
  5917. "bin": [
  5918. "Resources/bin/var-dump-server"
  5919. ],
  5920. "type": "library",
  5921. "autoload": {
  5922. "files": [
  5923. "Resources/functions/dump.php"
  5924. ],
  5925. "psr-4": {
  5926. "Symfony\\Component\\VarDumper\\": ""
  5927. },
  5928. "exclude-from-classmap": [
  5929. "/Tests/"
  5930. ]
  5931. },
  5932. "notification-url": "https://packagist.org/downloads/",
  5933. "license": [
  5934. "MIT"
  5935. ],
  5936. "authors": [
  5937. {
  5938. "name": "Nicolas Grekas",
  5939. "email": "p@tchwork.com"
  5940. },
  5941. {
  5942. "name": "Symfony Community",
  5943. "homepage": "https://symfony.com/contributors"
  5944. }
  5945. ],
  5946. "description": "Provides mechanisms for walking through any arbitrary PHP variable",
  5947. "homepage": "https://symfony.com",
  5948. "keywords": [
  5949. "debug",
  5950. "dump"
  5951. ],
  5952. "support": {
  5953. "source": "https://github.com/symfony/var-dumper/tree/v7.1.4"
  5954. },
  5955. "funding": [
  5956. {
  5957. "url": "https://symfony.com/sponsor",
  5958. "type": "custom"
  5959. },
  5960. {
  5961. "url": "https://github.com/fabpot",
  5962. "type": "github"
  5963. },
  5964. {
  5965. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5966. "type": "tidelift"
  5967. }
  5968. ],
  5969. "time": "2024-08-30T16:12:47+00:00"
  5970. },
  5971. {
  5972. "name": "symfony/var-exporter",
  5973. "version": "v7.1.2",
  5974. "source": {
  5975. "type": "git",
  5976. "url": "https://github.com/symfony/var-exporter.git",
  5977. "reference": "b80a669a2264609f07f1667f891dbfca25eba44c"
  5978. },
  5979. "dist": {
  5980. "type": "zip",
  5981. "url": "https://api.github.com/repos/symfony/var-exporter/zipball/b80a669a2264609f07f1667f891dbfca25eba44c",
  5982. "reference": "b80a669a2264609f07f1667f891dbfca25eba44c",
  5983. "shasum": ""
  5984. },
  5985. "require": {
  5986. "php": ">=8.2"
  5987. },
  5988. "require-dev": {
  5989. "symfony/property-access": "^6.4|^7.0",
  5990. "symfony/serializer": "^6.4|^7.0",
  5991. "symfony/var-dumper": "^6.4|^7.0"
  5992. },
  5993. "type": "library",
  5994. "autoload": {
  5995. "psr-4": {
  5996. "Symfony\\Component\\VarExporter\\": ""
  5997. },
  5998. "exclude-from-classmap": [
  5999. "/Tests/"
  6000. ]
  6001. },
  6002. "notification-url": "https://packagist.org/downloads/",
  6003. "license": [
  6004. "MIT"
  6005. ],
  6006. "authors": [
  6007. {
  6008. "name": "Nicolas Grekas",
  6009. "email": "p@tchwork.com"
  6010. },
  6011. {
  6012. "name": "Symfony Community",
  6013. "homepage": "https://symfony.com/contributors"
  6014. }
  6015. ],
  6016. "description": "Allows exporting any serializable PHP data structure to plain PHP code",
  6017. "homepage": "https://symfony.com",
  6018. "keywords": [
  6019. "clone",
  6020. "construct",
  6021. "export",
  6022. "hydrate",
  6023. "instantiate",
  6024. "lazy-loading",
  6025. "proxy",
  6026. "serialize"
  6027. ],
  6028. "support": {
  6029. "source": "https://github.com/symfony/var-exporter/tree/v7.1.2"
  6030. },
  6031. "funding": [
  6032. {
  6033. "url": "https://symfony.com/sponsor",
  6034. "type": "custom"
  6035. },
  6036. {
  6037. "url": "https://github.com/fabpot",
  6038. "type": "github"
  6039. },
  6040. {
  6041. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6042. "type": "tidelift"
  6043. }
  6044. ],
  6045. "time": "2024-06-28T08:00:31+00:00"
  6046. },
  6047. {
  6048. "name": "symfony/web-link",
  6049. "version": "v7.1.1",
  6050. "source": {
  6051. "type": "git",
  6052. "url": "https://github.com/symfony/web-link.git",
  6053. "reference": "63f90aa0054bfd9a091d2f5cf465958f1030638f"
  6054. },
  6055. "dist": {
  6056. "type": "zip",
  6057. "url": "https://api.github.com/repos/symfony/web-link/zipball/63f90aa0054bfd9a091d2f5cf465958f1030638f",
  6058. "reference": "63f90aa0054bfd9a091d2f5cf465958f1030638f",
  6059. "shasum": ""
  6060. },
  6061. "require": {
  6062. "php": ">=8.2",
  6063. "psr/link": "^1.1|^2.0"
  6064. },
  6065. "conflict": {
  6066. "symfony/http-kernel": "<6.4"
  6067. },
  6068. "provide": {
  6069. "psr/link-implementation": "1.0|2.0"
  6070. },
  6071. "require-dev": {
  6072. "symfony/http-kernel": "^6.4|^7.0"
  6073. },
  6074. "type": "library",
  6075. "autoload": {
  6076. "psr-4": {
  6077. "Symfony\\Component\\WebLink\\": ""
  6078. },
  6079. "exclude-from-classmap": [
  6080. "/Tests/"
  6081. ]
  6082. },
  6083. "notification-url": "https://packagist.org/downloads/",
  6084. "license": [
  6085. "MIT"
  6086. ],
  6087. "authors": [
  6088. {
  6089. "name": "Kévin Dunglas",
  6090. "email": "dunglas@gmail.com"
  6091. },
  6092. {
  6093. "name": "Symfony Community",
  6094. "homepage": "https://symfony.com/contributors"
  6095. }
  6096. ],
  6097. "description": "Manages links between resources",
  6098. "homepage": "https://symfony.com",
  6099. "keywords": [
  6100. "dns-prefetch",
  6101. "http",
  6102. "http2",
  6103. "link",
  6104. "performance",
  6105. "prefetch",
  6106. "preload",
  6107. "prerender",
  6108. "psr13",
  6109. "push"
  6110. ],
  6111. "support": {
  6112. "source": "https://github.com/symfony/web-link/tree/v7.1.1"
  6113. },
  6114. "funding": [
  6115. {
  6116. "url": "https://symfony.com/sponsor",
  6117. "type": "custom"
  6118. },
  6119. {
  6120. "url": "https://github.com/fabpot",
  6121. "type": "github"
  6122. },
  6123. {
  6124. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6125. "type": "tidelift"
  6126. }
  6127. ],
  6128. "time": "2024-05-31T14:57:53+00:00"
  6129. },
  6130. {
  6131. "name": "symfony/yaml",
  6132. "version": "v7.1.4",
  6133. "source": {
  6134. "type": "git",
  6135. "url": "https://github.com/symfony/yaml.git",
  6136. "reference": "92e080b851c1c655c786a2da77f188f2dccd0f4b"
  6137. },
  6138. "dist": {
  6139. "type": "zip",
  6140. "url": "https://api.github.com/repos/symfony/yaml/zipball/92e080b851c1c655c786a2da77f188f2dccd0f4b",
  6141. "reference": "92e080b851c1c655c786a2da77f188f2dccd0f4b",
  6142. "shasum": ""
  6143. },
  6144. "require": {
  6145. "php": ">=8.2",
  6146. "symfony/polyfill-ctype": "^1.8"
  6147. },
  6148. "conflict": {
  6149. "symfony/console": "<6.4"
  6150. },
  6151. "require-dev": {
  6152. "symfony/console": "^6.4|^7.0"
  6153. },
  6154. "bin": [
  6155. "Resources/bin/yaml-lint"
  6156. ],
  6157. "type": "library",
  6158. "autoload": {
  6159. "psr-4": {
  6160. "Symfony\\Component\\Yaml\\": ""
  6161. },
  6162. "exclude-from-classmap": [
  6163. "/Tests/"
  6164. ]
  6165. },
  6166. "notification-url": "https://packagist.org/downloads/",
  6167. "license": [
  6168. "MIT"
  6169. ],
  6170. "authors": [
  6171. {
  6172. "name": "Fabien Potencier",
  6173. "email": "fabien@symfony.com"
  6174. },
  6175. {
  6176. "name": "Symfony Community",
  6177. "homepage": "https://symfony.com/contributors"
  6178. }
  6179. ],
  6180. "description": "Loads and dumps YAML files",
  6181. "homepage": "https://symfony.com",
  6182. "support": {
  6183. "source": "https://github.com/symfony/yaml/tree/v7.1.4"
  6184. },
  6185. "funding": [
  6186. {
  6187. "url": "https://symfony.com/sponsor",
  6188. "type": "custom"
  6189. },
  6190. {
  6191. "url": "https://github.com/fabpot",
  6192. "type": "github"
  6193. },
  6194. {
  6195. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6196. "type": "tidelift"
  6197. }
  6198. ],
  6199. "time": "2024-08-12T09:59:40+00:00"
  6200. },
  6201. {
  6202. "name": "twig/twig",
  6203. "version": "v3.13.0",
  6204. "source": {
  6205. "type": "git",
  6206. "url": "https://github.com/twigphp/Twig.git",
  6207. "reference": "afc0eb63dc66c248c5a94504dc2b255bc9b86575"
  6208. },
  6209. "dist": {
  6210. "type": "zip",
  6211. "url": "https://api.github.com/repos/twigphp/Twig/zipball/afc0eb63dc66c248c5a94504dc2b255bc9b86575",
  6212. "reference": "afc0eb63dc66c248c5a94504dc2b255bc9b86575",
  6213. "shasum": ""
  6214. },
  6215. "require": {
  6216. "php": ">=8.0.2",
  6217. "symfony/deprecation-contracts": "^2.5|^3",
  6218. "symfony/polyfill-ctype": "^1.8",
  6219. "symfony/polyfill-mbstring": "^1.3",
  6220. "symfony/polyfill-php81": "^1.29"
  6221. },
  6222. "require-dev": {
  6223. "psr/container": "^1.0|^2.0",
  6224. "symfony/phpunit-bridge": "^5.4.9|^6.4|^7.0"
  6225. },
  6226. "type": "library",
  6227. "autoload": {
  6228. "files": [
  6229. "src/Resources/core.php",
  6230. "src/Resources/debug.php",
  6231. "src/Resources/escaper.php",
  6232. "src/Resources/string_loader.php"
  6233. ],
  6234. "psr-4": {
  6235. "Twig\\": "src/"
  6236. }
  6237. },
  6238. "notification-url": "https://packagist.org/downloads/",
  6239. "license": [
  6240. "BSD-3-Clause"
  6241. ],
  6242. "authors": [
  6243. {
  6244. "name": "Fabien Potencier",
  6245. "email": "fabien@symfony.com",
  6246. "homepage": "http://fabien.potencier.org",
  6247. "role": "Lead Developer"
  6248. },
  6249. {
  6250. "name": "Twig Team",
  6251. "role": "Contributors"
  6252. },
  6253. {
  6254. "name": "Armin Ronacher",
  6255. "email": "armin.ronacher@active-4.com",
  6256. "role": "Project Founder"
  6257. }
  6258. ],
  6259. "description": "Twig, the flexible, fast, and secure template language for PHP",
  6260. "homepage": "https://twig.symfony.com",
  6261. "keywords": [
  6262. "templating"
  6263. ],
  6264. "support": {
  6265. "issues": "https://github.com/twigphp/Twig/issues",
  6266. "source": "https://github.com/twigphp/Twig/tree/v3.13.0"
  6267. },
  6268. "funding": [
  6269. {
  6270. "url": "https://github.com/fabpot",
  6271. "type": "github"
  6272. },
  6273. {
  6274. "url": "https://tidelift.com/funding/github/packagist/twig/twig",
  6275. "type": "tidelift"
  6276. }
  6277. ],
  6278. "time": "2024-09-07T08:01:12+00:00"
  6279. },
  6280. {
  6281. "name": "webmozart/assert",
  6282. "version": "1.11.0",
  6283. "source": {
  6284. "type": "git",
  6285. "url": "https://github.com/webmozarts/assert.git",
  6286. "reference": "11cb2199493b2f8a3b53e7f19068fc6aac760991"
  6287. },
  6288. "dist": {
  6289. "type": "zip",
  6290. "url": "https://api.github.com/repos/webmozarts/assert/zipball/11cb2199493b2f8a3b53e7f19068fc6aac760991",
  6291. "reference": "11cb2199493b2f8a3b53e7f19068fc6aac760991",
  6292. "shasum": ""
  6293. },
  6294. "require": {
  6295. "ext-ctype": "*",
  6296. "php": "^7.2 || ^8.0"
  6297. },
  6298. "conflict": {
  6299. "phpstan/phpstan": "<0.12.20",
  6300. "vimeo/psalm": "<4.6.1 || 4.6.2"
  6301. },
  6302. "require-dev": {
  6303. "phpunit/phpunit": "^8.5.13"
  6304. },
  6305. "type": "library",
  6306. "extra": {
  6307. "branch-alias": {
  6308. "dev-master": "1.10-dev"
  6309. }
  6310. },
  6311. "autoload": {
  6312. "psr-4": {
  6313. "Webmozart\\Assert\\": "src/"
  6314. }
  6315. },
  6316. "notification-url": "https://packagist.org/downloads/",
  6317. "license": [
  6318. "MIT"
  6319. ],
  6320. "authors": [
  6321. {
  6322. "name": "Bernhard Schussek",
  6323. "email": "bschussek@gmail.com"
  6324. }
  6325. ],
  6326. "description": "Assertions to validate method input/output with nice error messages.",
  6327. "keywords": [
  6328. "assert",
  6329. "check",
  6330. "validate"
  6331. ],
  6332. "support": {
  6333. "issues": "https://github.com/webmozarts/assert/issues",
  6334. "source": "https://github.com/webmozarts/assert/tree/1.11.0"
  6335. },
  6336. "time": "2022-06-03T18:03:27+00:00"
  6337. },
  6338. {
  6339. "name": "willdurand/negotiation",
  6340. "version": "3.1.0",
  6341. "source": {
  6342. "type": "git",
  6343. "url": "https://github.com/willdurand/Negotiation.git",
  6344. "reference": "68e9ea0553ef6e2ee8db5c1d98829f111e623ec2"
  6345. },
  6346. "dist": {
  6347. "type": "zip",
  6348. "url": "https://api.github.com/repos/willdurand/Negotiation/zipball/68e9ea0553ef6e2ee8db5c1d98829f111e623ec2",
  6349. "reference": "68e9ea0553ef6e2ee8db5c1d98829f111e623ec2",
  6350. "shasum": ""
  6351. },
  6352. "require": {
  6353. "php": ">=7.1.0"
  6354. },
  6355. "require-dev": {
  6356. "symfony/phpunit-bridge": "^5.0"
  6357. },
  6358. "type": "library",
  6359. "extra": {
  6360. "branch-alias": {
  6361. "dev-master": "3.0-dev"
  6362. }
  6363. },
  6364. "autoload": {
  6365. "psr-4": {
  6366. "Negotiation\\": "src/Negotiation"
  6367. }
  6368. },
  6369. "notification-url": "https://packagist.org/downloads/",
  6370. "license": [
  6371. "MIT"
  6372. ],
  6373. "authors": [
  6374. {
  6375. "name": "William Durand",
  6376. "email": "will+git@drnd.me"
  6377. }
  6378. ],
  6379. "description": "Content Negotiation tools for PHP provided as a standalone library.",
  6380. "homepage": "http://williamdurand.fr/Negotiation/",
  6381. "keywords": [
  6382. "accept",
  6383. "content",
  6384. "format",
  6385. "header",
  6386. "negotiation"
  6387. ],
  6388. "support": {
  6389. "issues": "https://github.com/willdurand/Negotiation/issues",
  6390. "source": "https://github.com/willdurand/Negotiation/tree/3.1.0"
  6391. },
  6392. "time": "2022-01-30T20:08:53+00:00"
  6393. }
  6394. ],
  6395. "packages-dev": [],
  6396. "aliases": [],
  6397. "minimum-stability": "stable",
  6398. "stability-flags": [],
  6399. "prefer-stable": true,
  6400. "prefer-lowest": false,
  6401. "platform": {
  6402. "php": ">=8.2",
  6403. "ext-ctype": "*",
  6404. "ext-iconv": "*"
  6405. },
  6406. "platform-dev": [],
  6407. "plugin-api-version": "2.6.0"
  6408. }