composer.lock 356 KB

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