composer.lock 362 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298529953005301530253035304530553065307530853095310531153125313531453155316531753185319532053215322532353245325532653275328532953305331533253335334533553365337533853395340534153425343534453455346534753485349535053515352535353545355535653575358535953605361536253635364536553665367536853695370537153725373537453755376537753785379538053815382538353845385538653875388538953905391539253935394539553965397539853995400540154025403540454055406540754085409541054115412541354145415541654175418541954205421542254235424542554265427542854295430543154325433543454355436543754385439544054415442544354445445544654475448544954505451545254535454545554565457545854595460546154625463546454655466546754685469547054715472547354745475547654775478547954805481548254835484548554865487548854895490549154925493549454955496549754985499550055015502550355045505550655075508550955105511551255135514551555165517551855195520552155225523552455255526552755285529553055315532553355345535553655375538553955405541554255435544554555465547554855495550555155525553555455555556555755585559556055615562556355645565556655675568556955705571557255735574557555765577557855795580558155825583558455855586558755885589559055915592559355945595559655975598559956005601560256035604560556065607560856095610561156125613561456155616561756185619562056215622562356245625562656275628562956305631563256335634563556365637563856395640564156425643564456455646564756485649565056515652565356545655565656575658565956605661566256635664566556665667566856695670567156725673567456755676567756785679568056815682568356845685568656875688568956905691569256935694569556965697569856995700570157025703570457055706570757085709571057115712571357145715571657175718571957205721572257235724572557265727572857295730573157325733573457355736573757385739574057415742574357445745574657475748574957505751575257535754575557565757575857595760576157625763576457655766576757685769577057715772577357745775577657775778577957805781578257835784578557865787578857895790579157925793579457955796579757985799580058015802580358045805580658075808580958105811581258135814581558165817581858195820582158225823582458255826582758285829583058315832583358345835583658375838583958405841584258435844584558465847584858495850585158525853585458555856585758585859586058615862586358645865586658675868586958705871587258735874587558765877587858795880588158825883588458855886588758885889589058915892589358945895589658975898589959005901590259035904590559065907590859095910591159125913591459155916591759185919592059215922592359245925592659275928592959305931593259335934593559365937593859395940594159425943594459455946594759485949595059515952595359545955595659575958595959605961596259635964596559665967596859695970597159725973597459755976597759785979598059815982598359845985598659875988598959905991599259935994599559965997599859996000600160026003600460056006600760086009601060116012601360146015601660176018601960206021602260236024602560266027602860296030603160326033603460356036603760386039604060416042604360446045604660476048604960506051605260536054605560566057605860596060606160626063606460656066606760686069607060716072607360746075607660776078607960806081608260836084608560866087608860896090609160926093609460956096609760986099610061016102610361046105610661076108610961106111611261136114611561166117611861196120612161226123612461256126612761286129613061316132613361346135613661376138613961406141614261436144614561466147614861496150615161526153615461556156615761586159616061616162616361646165616661676168616961706171617261736174617561766177617861796180618161826183618461856186618761886189619061916192619361946195619661976198619962006201620262036204620562066207620862096210621162126213621462156216621762186219622062216222622362246225622662276228622962306231623262336234623562366237623862396240624162426243624462456246624762486249625062516252625362546255625662576258625962606261626262636264626562666267626862696270627162726273627462756276627762786279628062816282628362846285628662876288628962906291629262936294629562966297629862996300630163026303630463056306630763086309631063116312631363146315631663176318631963206321632263236324632563266327632863296330633163326333633463356336633763386339634063416342634363446345634663476348634963506351635263536354635563566357635863596360636163626363636463656366636763686369637063716372637363746375637663776378637963806381638263836384638563866387638863896390639163926393639463956396639763986399640064016402640364046405640664076408640964106411641264136414641564166417641864196420642164226423642464256426642764286429643064316432643364346435643664376438643964406441644264436444644564466447644864496450645164526453645464556456645764586459646064616462646364646465646664676468646964706471647264736474647564766477647864796480648164826483648464856486648764886489649064916492649364946495649664976498649965006501650265036504650565066507650865096510651165126513651465156516651765186519652065216522652365246525652665276528652965306531653265336534653565366537653865396540654165426543654465456546654765486549655065516552655365546555655665576558655965606561656265636564656565666567656865696570657165726573657465756576657765786579658065816582658365846585658665876588658965906591659265936594659565966597659865996600660166026603660466056606660766086609661066116612661366146615661666176618661966206621662266236624662566266627662866296630663166326633663466356636663766386639664066416642664366446645664666476648664966506651665266536654665566566657665866596660666166626663666466656666666766686669667066716672667366746675667666776678667966806681668266836684668566866687668866896690669166926693669466956696669766986699670067016702670367046705670667076708670967106711671267136714671567166717671867196720672167226723672467256726672767286729673067316732673367346735673667376738673967406741674267436744674567466747674867496750675167526753675467556756675767586759676067616762676367646765676667676768676967706771677267736774677567766777677867796780678167826783678467856786678767886789679067916792679367946795679667976798679968006801680268036804680568066807680868096810681168126813681468156816681768186819682068216822682368246825682668276828682968306831683268336834683568366837683868396840684168426843684468456846684768486849685068516852685368546855685668576858685968606861686268636864686568666867686868696870687168726873687468756876687768786879688068816882688368846885688668876888688968906891689268936894689568966897689868996900690169026903690469056906690769086909691069116912691369146915691669176918691969206921692269236924692569266927692869296930693169326933693469356936693769386939694069416942694369446945694669476948694969506951695269536954695569566957695869596960696169626963696469656966696769686969697069716972697369746975697669776978697969806981698269836984698569866987698869896990699169926993699469956996699769986999700070017002700370047005700670077008700970107011701270137014701570167017701870197020702170227023702470257026702770287029703070317032703370347035703670377038703970407041704270437044704570467047704870497050705170527053705470557056705770587059706070617062706370647065706670677068706970707071707270737074707570767077707870797080708170827083708470857086708770887089709070917092709370947095709670977098709971007101710271037104710571067107710871097110711171127113711471157116711771187119712071217122712371247125712671277128712971307131713271337134713571367137713871397140714171427143714471457146714771487149715071517152715371547155715671577158715971607161716271637164716571667167716871697170717171727173717471757176717771787179718071817182718371847185718671877188718971907191719271937194719571967197719871997200720172027203720472057206720772087209721072117212721372147215721672177218721972207221722272237224722572267227722872297230723172327233723472357236723772387239724072417242724372447245724672477248724972507251725272537254725572567257725872597260726172627263726472657266726772687269727072717272727372747275727672777278727972807281728272837284728572867287728872897290729172927293729472957296729772987299730073017302730373047305730673077308730973107311731273137314731573167317731873197320732173227323732473257326732773287329733073317332733373347335733673377338733973407341734273437344734573467347734873497350735173527353735473557356735773587359736073617362736373647365736673677368736973707371737273737374737573767377737873797380738173827383738473857386738773887389739073917392739373947395739673977398739974007401740274037404740574067407740874097410741174127413741474157416741774187419742074217422742374247425742674277428742974307431743274337434743574367437743874397440744174427443744474457446744774487449745074517452745374547455745674577458745974607461746274637464746574667467746874697470747174727473747474757476747774787479748074817482748374847485748674877488748974907491749274937494749574967497749874997500750175027503750475057506750775087509751075117512751375147515751675177518751975207521752275237524752575267527752875297530753175327533753475357536753775387539754075417542754375447545754675477548754975507551755275537554755575567557755875597560756175627563756475657566756775687569757075717572757375747575757675777578757975807581758275837584758575867587758875897590759175927593759475957596759775987599760076017602760376047605760676077608760976107611761276137614761576167617761876197620762176227623762476257626762776287629763076317632763376347635763676377638763976407641764276437644764576467647764876497650765176527653765476557656765776587659766076617662766376647665766676677668766976707671767276737674767576767677767876797680768176827683768476857686768776887689769076917692769376947695769676977698769977007701770277037704770577067707770877097710771177127713771477157716771777187719772077217722772377247725772677277728772977307731773277337734773577367737773877397740774177427743774477457746774777487749775077517752775377547755775677577758775977607761776277637764776577667767776877697770777177727773777477757776777777787779778077817782778377847785778677877788778977907791779277937794779577967797779877997800780178027803780478057806780778087809781078117812781378147815781678177818781978207821782278237824782578267827782878297830783178327833783478357836783778387839784078417842784378447845784678477848784978507851785278537854785578567857785878597860786178627863786478657866786778687869787078717872787378747875787678777878787978807881788278837884788578867887788878897890789178927893789478957896789778987899790079017902790379047905790679077908790979107911791279137914791579167917791879197920792179227923792479257926792779287929793079317932793379347935793679377938793979407941794279437944794579467947794879497950795179527953795479557956795779587959796079617962796379647965796679677968796979707971797279737974797579767977797879797980798179827983798479857986798779887989799079917992799379947995799679977998799980008001800280038004800580068007800880098010801180128013801480158016801780188019802080218022802380248025802680278028802980308031803280338034803580368037803880398040804180428043804480458046804780488049805080518052805380548055805680578058805980608061806280638064806580668067806880698070807180728073807480758076807780788079808080818082808380848085808680878088808980908091809280938094809580968097809880998100810181028103810481058106810781088109811081118112811381148115811681178118811981208121812281238124812581268127812881298130813181328133813481358136813781388139814081418142814381448145814681478148814981508151815281538154815581568157815881598160816181628163816481658166816781688169817081718172817381748175817681778178817981808181818281838184818581868187818881898190819181928193819481958196819781988199820082018202820382048205820682078208820982108211821282138214821582168217821882198220822182228223822482258226822782288229823082318232823382348235823682378238823982408241824282438244824582468247824882498250825182528253825482558256825782588259826082618262826382648265826682678268826982708271827282738274827582768277827882798280828182828283828482858286828782888289829082918292829382948295829682978298829983008301830283038304830583068307830883098310831183128313831483158316831783188319832083218322832383248325832683278328832983308331833283338334833583368337833883398340834183428343834483458346834783488349835083518352835383548355835683578358835983608361836283638364836583668367836883698370837183728373837483758376837783788379838083818382838383848385838683878388838983908391839283938394839583968397839883998400840184028403840484058406840784088409841084118412841384148415841684178418841984208421842284238424842584268427842884298430843184328433843484358436843784388439844084418442844384448445844684478448844984508451845284538454845584568457845884598460846184628463846484658466846784688469847084718472847384748475847684778478847984808481848284838484848584868487848884898490849184928493849484958496849784988499850085018502850385048505850685078508850985108511851285138514851585168517851885198520852185228523852485258526852785288529853085318532853385348535853685378538853985408541854285438544854585468547854885498550855185528553855485558556855785588559856085618562856385648565856685678568856985708571857285738574857585768577857885798580858185828583858485858586858785888589859085918592859385948595859685978598859986008601860286038604860586068607860886098610861186128613861486158616861786188619862086218622862386248625862686278628862986308631863286338634863586368637863886398640864186428643864486458646864786488649865086518652865386548655865686578658865986608661866286638664866586668667866886698670867186728673867486758676867786788679868086818682868386848685868686878688868986908691869286938694869586968697869886998700870187028703870487058706870787088709871087118712871387148715871687178718871987208721872287238724872587268727872887298730873187328733873487358736873787388739874087418742874387448745874687478748874987508751875287538754875587568757875887598760876187628763876487658766876787688769877087718772877387748775877687778778877987808781878287838784878587868787878887898790879187928793879487958796879787988799880088018802880388048805880688078808880988108811881288138814881588168817881888198820882188228823882488258826882788288829883088318832883388348835883688378838883988408841884288438844884588468847884888498850885188528853885488558856885788588859886088618862886388648865886688678868886988708871887288738874887588768877887888798880888188828883888488858886888788888889889088918892889388948895889688978898889989008901890289038904890589068907890889098910891189128913891489158916891789188919892089218922892389248925892689278928892989308931893289338934893589368937893889398940894189428943894489458946894789488949895089518952895389548955895689578958895989608961896289638964896589668967896889698970897189728973897489758976897789788979898089818982898389848985898689878988898989908991899289938994899589968997899889999000900190029003900490059006900790089009901090119012901390149015901690179018901990209021902290239024902590269027902890299030903190329033903490359036903790389039904090419042904390449045904690479048904990509051905290539054905590569057905890599060906190629063906490659066906790689069907090719072907390749075907690779078907990809081908290839084908590869087908890899090909190929093909490959096909790989099910091019102910391049105910691079108910991109111911291139114911591169117911891199120912191229123912491259126912791289129913091319132913391349135913691379138913991409141914291439144914591469147914891499150915191529153915491559156915791589159916091619162916391649165916691679168916991709171917291739174917591769177917891799180918191829183918491859186918791889189919091919192919391949195919691979198919992009201920292039204920592069207920892099210921192129213921492159216921792189219922092219222922392249225922692279228922992309231923292339234923592369237923892399240924192429243924492459246924792489249925092519252925392549255925692579258925992609261926292639264926592669267926892699270927192729273927492759276927792789279928092819282928392849285928692879288928992909291929292939294929592969297929892999300930193029303930493059306930793089309931093119312931393149315931693179318931993209321932293239324932593269327932893299330933193329333933493359336933793389339934093419342934393449345934693479348934993509351935293539354935593569357935893599360936193629363936493659366936793689369937093719372937393749375937693779378937993809381938293839384938593869387938893899390939193929393939493959396939793989399940094019402940394049405940694079408940994109411941294139414941594169417941894199420942194229423942494259426942794289429943094319432943394349435943694379438943994409441944294439444944594469447944894499450945194529453945494559456945794589459946094619462946394649465946694679468946994709471947294739474947594769477947894799480948194829483948494859486948794889489949094919492949394949495949694979498949995009501950295039504950595069507950895099510951195129513951495159516951795189519952095219522952395249525952695279528952995309531953295339534953595369537953895399540954195429543954495459546954795489549955095519552955395549555955695579558955995609561956295639564956595669567956895699570957195729573957495759576957795789579958095819582958395849585958695879588958995909591959295939594959595969597959895999600960196029603960496059606960796089609961096119612961396149615961696179618961996209621962296239624962596269627962896299630963196329633963496359636963796389639964096419642964396449645964696479648964996509651965296539654965596569657965896599660966196629663966496659666966796689669967096719672967396749675967696779678967996809681968296839684968596869687968896899690969196929693969496959696969796989699970097019702970397049705970697079708970997109711971297139714971597169717971897199720972197229723972497259726972797289729973097319732973397349735973697379738973997409741974297439744974597469747974897499750975197529753975497559756975797589759976097619762976397649765976697679768976997709771977297739774977597769777977897799780978197829783978497859786978797889789979097919792979397949795979697979798979998009801980298039804980598069807980898099810981198129813981498159816981798189819982098219822982398249825982698279828982998309831983298339834983598369837983898399840984198429843984498459846984798489849985098519852985398549855985698579858985998609861986298639864986598669867986898699870987198729873987498759876987798789879988098819882988398849885988698879888988998909891989298939894989598969897989898999900990199029903990499059906990799089909991099119912
  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": "7e8426ea8af2574e4072a37165ca7eb5",
  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-client",
  3801. "version": "v5.4.13",
  3802. "source": {
  3803. "type": "git",
  3804. "url": "https://github.com/symfony/http-client.git",
  3805. "reference": "596fd752f00e0205d895cd6b184d135c27bb5d6a"
  3806. },
  3807. "dist": {
  3808. "type": "zip",
  3809. "url": "https://api.github.com/repos/symfony/http-client/zipball/596fd752f00e0205d895cd6b184d135c27bb5d6a",
  3810. "reference": "596fd752f00e0205d895cd6b184d135c27bb5d6a",
  3811. "shasum": ""
  3812. },
  3813. "require": {
  3814. "php": ">=7.2.5",
  3815. "psr/log": "^1|^2|^3",
  3816. "symfony/deprecation-contracts": "^2.1|^3",
  3817. "symfony/http-client-contracts": "^2.4",
  3818. "symfony/polyfill-php73": "^1.11",
  3819. "symfony/polyfill-php80": "^1.16",
  3820. "symfony/service-contracts": "^1.0|^2|^3"
  3821. },
  3822. "provide": {
  3823. "php-http/async-client-implementation": "*",
  3824. "php-http/client-implementation": "*",
  3825. "psr/http-client-implementation": "1.0",
  3826. "symfony/http-client-implementation": "2.4"
  3827. },
  3828. "require-dev": {
  3829. "amphp/amp": "^2.5",
  3830. "amphp/http-client": "^4.2.1",
  3831. "amphp/http-tunnel": "^1.0",
  3832. "amphp/socket": "^1.1",
  3833. "guzzlehttp/promises": "^1.4",
  3834. "nyholm/psr7": "^1.0",
  3835. "php-http/httplug": "^1.0|^2.0",
  3836. "psr/http-client": "^1.0",
  3837. "symfony/dependency-injection": "^4.4|^5.0|^6.0",
  3838. "symfony/http-kernel": "^4.4.13|^5.1.5|^6.0",
  3839. "symfony/process": "^4.4|^5.0|^6.0",
  3840. "symfony/stopwatch": "^4.4|^5.0|^6.0"
  3841. },
  3842. "type": "library",
  3843. "autoload": {
  3844. "psr-4": {
  3845. "Symfony\\Component\\HttpClient\\": ""
  3846. },
  3847. "exclude-from-classmap": [
  3848. "/Tests/"
  3849. ]
  3850. },
  3851. "notification-url": "https://packagist.org/downloads/",
  3852. "license": [
  3853. "MIT"
  3854. ],
  3855. "authors": [
  3856. {
  3857. "name": "Nicolas Grekas",
  3858. "email": "p@tchwork.com"
  3859. },
  3860. {
  3861. "name": "Symfony Community",
  3862. "homepage": "https://symfony.com/contributors"
  3863. }
  3864. ],
  3865. "description": "Provides powerful methods to fetch HTTP resources synchronously or asynchronously",
  3866. "homepage": "https://symfony.com",
  3867. "support": {
  3868. "source": "https://github.com/symfony/http-client/tree/v5.4.13"
  3869. },
  3870. "funding": [
  3871. {
  3872. "url": "https://symfony.com/sponsor",
  3873. "type": "custom"
  3874. },
  3875. {
  3876. "url": "https://github.com/fabpot",
  3877. "type": "github"
  3878. },
  3879. {
  3880. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3881. "type": "tidelift"
  3882. }
  3883. ],
  3884. "time": "2022-09-08T18:41:21+00:00"
  3885. },
  3886. {
  3887. "name": "symfony/http-client-contracts",
  3888. "version": "v2.5.2",
  3889. "source": {
  3890. "type": "git",
  3891. "url": "https://github.com/symfony/http-client-contracts.git",
  3892. "reference": "ba6a9f0e8f3edd190520ee3b9a958596b6ca2e70"
  3893. },
  3894. "dist": {
  3895. "type": "zip",
  3896. "url": "https://api.github.com/repos/symfony/http-client-contracts/zipball/ba6a9f0e8f3edd190520ee3b9a958596b6ca2e70",
  3897. "reference": "ba6a9f0e8f3edd190520ee3b9a958596b6ca2e70",
  3898. "shasum": ""
  3899. },
  3900. "require": {
  3901. "php": ">=7.2.5"
  3902. },
  3903. "suggest": {
  3904. "symfony/http-client-implementation": ""
  3905. },
  3906. "type": "library",
  3907. "extra": {
  3908. "branch-alias": {
  3909. "dev-main": "2.5-dev"
  3910. },
  3911. "thanks": {
  3912. "name": "symfony/contracts",
  3913. "url": "https://github.com/symfony/contracts"
  3914. }
  3915. },
  3916. "autoload": {
  3917. "psr-4": {
  3918. "Symfony\\Contracts\\HttpClient\\": ""
  3919. }
  3920. },
  3921. "notification-url": "https://packagist.org/downloads/",
  3922. "license": [
  3923. "MIT"
  3924. ],
  3925. "authors": [
  3926. {
  3927. "name": "Nicolas Grekas",
  3928. "email": "p@tchwork.com"
  3929. },
  3930. {
  3931. "name": "Symfony Community",
  3932. "homepage": "https://symfony.com/contributors"
  3933. }
  3934. ],
  3935. "description": "Generic abstractions related to HTTP clients",
  3936. "homepage": "https://symfony.com",
  3937. "keywords": [
  3938. "abstractions",
  3939. "contracts",
  3940. "decoupling",
  3941. "interfaces",
  3942. "interoperability",
  3943. "standards"
  3944. ],
  3945. "support": {
  3946. "source": "https://github.com/symfony/http-client-contracts/tree/v2.5.2"
  3947. },
  3948. "funding": [
  3949. {
  3950. "url": "https://symfony.com/sponsor",
  3951. "type": "custom"
  3952. },
  3953. {
  3954. "url": "https://github.com/fabpot",
  3955. "type": "github"
  3956. },
  3957. {
  3958. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3959. "type": "tidelift"
  3960. }
  3961. ],
  3962. "time": "2022-04-12T15:48:08+00:00"
  3963. },
  3964. {
  3965. "name": "symfony/http-foundation",
  3966. "version": "v5.4.13",
  3967. "source": {
  3968. "type": "git",
  3969. "url": "https://github.com/symfony/http-foundation.git",
  3970. "reference": "54be067587a4f2b7fffb7a699f9481ec3daf9379"
  3971. },
  3972. "dist": {
  3973. "type": "zip",
  3974. "url": "https://api.github.com/repos/symfony/http-foundation/zipball/54be067587a4f2b7fffb7a699f9481ec3daf9379",
  3975. "reference": "54be067587a4f2b7fffb7a699f9481ec3daf9379",
  3976. "shasum": ""
  3977. },
  3978. "require": {
  3979. "php": ">=7.2.5",
  3980. "symfony/deprecation-contracts": "^2.1|^3",
  3981. "symfony/polyfill-mbstring": "~1.1",
  3982. "symfony/polyfill-php80": "^1.16"
  3983. },
  3984. "require-dev": {
  3985. "predis/predis": "~1.0",
  3986. "symfony/cache": "^4.4|^5.0|^6.0",
  3987. "symfony/dependency-injection": "^5.4|^6.0",
  3988. "symfony/expression-language": "^4.4|^5.0|^6.0",
  3989. "symfony/http-kernel": "^5.4.12|^6.0.12|^6.1.4",
  3990. "symfony/mime": "^4.4|^5.0|^6.0",
  3991. "symfony/rate-limiter": "^5.2|^6.0"
  3992. },
  3993. "suggest": {
  3994. "symfony/mime": "To use the file extension guesser"
  3995. },
  3996. "type": "library",
  3997. "autoload": {
  3998. "psr-4": {
  3999. "Symfony\\Component\\HttpFoundation\\": ""
  4000. },
  4001. "exclude-from-classmap": [
  4002. "/Tests/"
  4003. ]
  4004. },
  4005. "notification-url": "https://packagist.org/downloads/",
  4006. "license": [
  4007. "MIT"
  4008. ],
  4009. "authors": [
  4010. {
  4011. "name": "Fabien Potencier",
  4012. "email": "fabien@symfony.com"
  4013. },
  4014. {
  4015. "name": "Symfony Community",
  4016. "homepage": "https://symfony.com/contributors"
  4017. }
  4018. ],
  4019. "description": "Defines an object-oriented layer for the HTTP specification",
  4020. "homepage": "https://symfony.com",
  4021. "support": {
  4022. "source": "https://github.com/symfony/http-foundation/tree/v5.4.13"
  4023. },
  4024. "funding": [
  4025. {
  4026. "url": "https://symfony.com/sponsor",
  4027. "type": "custom"
  4028. },
  4029. {
  4030. "url": "https://github.com/fabpot",
  4031. "type": "github"
  4032. },
  4033. {
  4034. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4035. "type": "tidelift"
  4036. }
  4037. ],
  4038. "time": "2022-09-17T07:31:22+00:00"
  4039. },
  4040. {
  4041. "name": "symfony/http-kernel",
  4042. "version": "v5.4.13",
  4043. "source": {
  4044. "type": "git",
  4045. "url": "https://github.com/symfony/http-kernel.git",
  4046. "reference": "4f25330c216b7bb178603b2e25fb7a9325015507"
  4047. },
  4048. "dist": {
  4049. "type": "zip",
  4050. "url": "https://api.github.com/repos/symfony/http-kernel/zipball/4f25330c216b7bb178603b2e25fb7a9325015507",
  4051. "reference": "4f25330c216b7bb178603b2e25fb7a9325015507",
  4052. "shasum": ""
  4053. },
  4054. "require": {
  4055. "php": ">=7.2.5",
  4056. "psr/log": "^1|^2",
  4057. "symfony/deprecation-contracts": "^2.1|^3",
  4058. "symfony/error-handler": "^4.4|^5.0|^6.0",
  4059. "symfony/event-dispatcher": "^5.0|^6.0",
  4060. "symfony/http-foundation": "^5.3.7|^6.0",
  4061. "symfony/polyfill-ctype": "^1.8",
  4062. "symfony/polyfill-php73": "^1.9",
  4063. "symfony/polyfill-php80": "^1.16"
  4064. },
  4065. "conflict": {
  4066. "symfony/browser-kit": "<5.4",
  4067. "symfony/cache": "<5.0",
  4068. "symfony/config": "<5.0",
  4069. "symfony/console": "<4.4",
  4070. "symfony/dependency-injection": "<5.3",
  4071. "symfony/doctrine-bridge": "<5.0",
  4072. "symfony/form": "<5.0",
  4073. "symfony/http-client": "<5.0",
  4074. "symfony/mailer": "<5.0",
  4075. "symfony/messenger": "<5.0",
  4076. "symfony/translation": "<5.0",
  4077. "symfony/twig-bridge": "<5.0",
  4078. "symfony/validator": "<5.0",
  4079. "twig/twig": "<2.13"
  4080. },
  4081. "provide": {
  4082. "psr/log-implementation": "1.0|2.0"
  4083. },
  4084. "require-dev": {
  4085. "psr/cache": "^1.0|^2.0|^3.0",
  4086. "symfony/browser-kit": "^5.4|^6.0",
  4087. "symfony/config": "^5.0|^6.0",
  4088. "symfony/console": "^4.4|^5.0|^6.0",
  4089. "symfony/css-selector": "^4.4|^5.0|^6.0",
  4090. "symfony/dependency-injection": "^5.3|^6.0",
  4091. "symfony/dom-crawler": "^4.4|^5.0|^6.0",
  4092. "symfony/expression-language": "^4.4|^5.0|^6.0",
  4093. "symfony/finder": "^4.4|^5.0|^6.0",
  4094. "symfony/http-client-contracts": "^1.1|^2|^3",
  4095. "symfony/process": "^4.4|^5.0|^6.0",
  4096. "symfony/routing": "^4.4|^5.0|^6.0",
  4097. "symfony/stopwatch": "^4.4|^5.0|^6.0",
  4098. "symfony/translation": "^4.4|^5.0|^6.0",
  4099. "symfony/translation-contracts": "^1.1|^2|^3",
  4100. "twig/twig": "^2.13|^3.0.4"
  4101. },
  4102. "suggest": {
  4103. "symfony/browser-kit": "",
  4104. "symfony/config": "",
  4105. "symfony/console": "",
  4106. "symfony/dependency-injection": ""
  4107. },
  4108. "type": "library",
  4109. "autoload": {
  4110. "psr-4": {
  4111. "Symfony\\Component\\HttpKernel\\": ""
  4112. },
  4113. "exclude-from-classmap": [
  4114. "/Tests/"
  4115. ]
  4116. },
  4117. "notification-url": "https://packagist.org/downloads/",
  4118. "license": [
  4119. "MIT"
  4120. ],
  4121. "authors": [
  4122. {
  4123. "name": "Fabien Potencier",
  4124. "email": "fabien@symfony.com"
  4125. },
  4126. {
  4127. "name": "Symfony Community",
  4128. "homepage": "https://symfony.com/contributors"
  4129. }
  4130. ],
  4131. "description": "Provides a structured process for converting a Request into a Response",
  4132. "homepage": "https://symfony.com",
  4133. "support": {
  4134. "source": "https://github.com/symfony/http-kernel/tree/v5.4.13"
  4135. },
  4136. "funding": [
  4137. {
  4138. "url": "https://symfony.com/sponsor",
  4139. "type": "custom"
  4140. },
  4141. {
  4142. "url": "https://github.com/fabpot",
  4143. "type": "github"
  4144. },
  4145. {
  4146. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4147. "type": "tidelift"
  4148. }
  4149. ],
  4150. "time": "2022-09-30T07:40:28+00:00"
  4151. },
  4152. {
  4153. "name": "symfony/mailer",
  4154. "version": "v5.4.13",
  4155. "source": {
  4156. "type": "git",
  4157. "url": "https://github.com/symfony/mailer.git",
  4158. "reference": "63bf36a5150ac0bfed1c4d0a4e0b114a57b77e11"
  4159. },
  4160. "dist": {
  4161. "type": "zip",
  4162. "url": "https://api.github.com/repos/symfony/mailer/zipball/63bf36a5150ac0bfed1c4d0a4e0b114a57b77e11",
  4163. "reference": "63bf36a5150ac0bfed1c4d0a4e0b114a57b77e11",
  4164. "shasum": ""
  4165. },
  4166. "require": {
  4167. "egulias/email-validator": "^2.1.10|^3",
  4168. "php": ">=7.2.5",
  4169. "psr/event-dispatcher": "^1",
  4170. "psr/log": "^1|^2|^3",
  4171. "symfony/deprecation-contracts": "^2.1|^3",
  4172. "symfony/event-dispatcher": "^4.4|^5.0|^6.0",
  4173. "symfony/mime": "^5.2.6|^6.0",
  4174. "symfony/polyfill-php80": "^1.16",
  4175. "symfony/service-contracts": "^1.1|^2|^3"
  4176. },
  4177. "conflict": {
  4178. "symfony/http-kernel": "<4.4"
  4179. },
  4180. "require-dev": {
  4181. "symfony/http-client-contracts": "^1.1|^2|^3",
  4182. "symfony/messenger": "^4.4|^5.0|^6.0"
  4183. },
  4184. "type": "library",
  4185. "autoload": {
  4186. "psr-4": {
  4187. "Symfony\\Component\\Mailer\\": ""
  4188. },
  4189. "exclude-from-classmap": [
  4190. "/Tests/"
  4191. ]
  4192. },
  4193. "notification-url": "https://packagist.org/downloads/",
  4194. "license": [
  4195. "MIT"
  4196. ],
  4197. "authors": [
  4198. {
  4199. "name": "Fabien Potencier",
  4200. "email": "fabien@symfony.com"
  4201. },
  4202. {
  4203. "name": "Symfony Community",
  4204. "homepage": "https://symfony.com/contributors"
  4205. }
  4206. ],
  4207. "description": "Helps sending emails",
  4208. "homepage": "https://symfony.com",
  4209. "support": {
  4210. "source": "https://github.com/symfony/mailer/tree/v5.4.13"
  4211. },
  4212. "funding": [
  4213. {
  4214. "url": "https://symfony.com/sponsor",
  4215. "type": "custom"
  4216. },
  4217. {
  4218. "url": "https://github.com/fabpot",
  4219. "type": "github"
  4220. },
  4221. {
  4222. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4223. "type": "tidelift"
  4224. }
  4225. ],
  4226. "time": "2022-08-29T06:47:07+00:00"
  4227. },
  4228. {
  4229. "name": "symfony/mime",
  4230. "version": "v5.4.13",
  4231. "source": {
  4232. "type": "git",
  4233. "url": "https://github.com/symfony/mime.git",
  4234. "reference": "bb2ccf759e2b967dcd11bdee5bdf30dddd2290bd"
  4235. },
  4236. "dist": {
  4237. "type": "zip",
  4238. "url": "https://api.github.com/repos/symfony/mime/zipball/bb2ccf759e2b967dcd11bdee5bdf30dddd2290bd",
  4239. "reference": "bb2ccf759e2b967dcd11bdee5bdf30dddd2290bd",
  4240. "shasum": ""
  4241. },
  4242. "require": {
  4243. "php": ">=7.2.5",
  4244. "symfony/deprecation-contracts": "^2.1|^3",
  4245. "symfony/polyfill-intl-idn": "^1.10",
  4246. "symfony/polyfill-mbstring": "^1.0",
  4247. "symfony/polyfill-php80": "^1.16"
  4248. },
  4249. "conflict": {
  4250. "egulias/email-validator": "~3.0.0",
  4251. "phpdocumentor/reflection-docblock": "<3.2.2",
  4252. "phpdocumentor/type-resolver": "<1.4.0",
  4253. "symfony/mailer": "<4.4"
  4254. },
  4255. "require-dev": {
  4256. "egulias/email-validator": "^2.1.10|^3.1",
  4257. "phpdocumentor/reflection-docblock": "^3.0|^4.0|^5.0",
  4258. "symfony/dependency-injection": "^4.4|^5.0|^6.0",
  4259. "symfony/property-access": "^4.4|^5.1|^6.0",
  4260. "symfony/property-info": "^4.4|^5.1|^6.0",
  4261. "symfony/serializer": "^5.2|^6.0"
  4262. },
  4263. "type": "library",
  4264. "autoload": {
  4265. "psr-4": {
  4266. "Symfony\\Component\\Mime\\": ""
  4267. },
  4268. "exclude-from-classmap": [
  4269. "/Tests/"
  4270. ]
  4271. },
  4272. "notification-url": "https://packagist.org/downloads/",
  4273. "license": [
  4274. "MIT"
  4275. ],
  4276. "authors": [
  4277. {
  4278. "name": "Fabien Potencier",
  4279. "email": "fabien@symfony.com"
  4280. },
  4281. {
  4282. "name": "Symfony Community",
  4283. "homepage": "https://symfony.com/contributors"
  4284. }
  4285. ],
  4286. "description": "Allows manipulating MIME messages",
  4287. "homepage": "https://symfony.com",
  4288. "keywords": [
  4289. "mime",
  4290. "mime-type"
  4291. ],
  4292. "support": {
  4293. "source": "https://github.com/symfony/mime/tree/v5.4.13"
  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-09-01T18:18:29+00:00"
  4310. },
  4311. {
  4312. "name": "symfony/monolog-bridge",
  4313. "version": "v5.4.10",
  4314. "source": {
  4315. "type": "git",
  4316. "url": "https://github.com/symfony/monolog-bridge.git",
  4317. "reference": "b3b0890e76e7eb626f27b165a5c501f2754dfbbd"
  4318. },
  4319. "dist": {
  4320. "type": "zip",
  4321. "url": "https://api.github.com/repos/symfony/monolog-bridge/zipball/b3b0890e76e7eb626f27b165a5c501f2754dfbbd",
  4322. "reference": "b3b0890e76e7eb626f27b165a5c501f2754dfbbd",
  4323. "shasum": ""
  4324. },
  4325. "require": {
  4326. "monolog/monolog": "^1.25.1|^2",
  4327. "php": ">=7.2.5",
  4328. "symfony/deprecation-contracts": "^2.1|^3",
  4329. "symfony/http-kernel": "^5.3|^6.0",
  4330. "symfony/polyfill-php80": "^1.16",
  4331. "symfony/service-contracts": "^1.1|^2|^3"
  4332. },
  4333. "conflict": {
  4334. "symfony/console": "<4.4",
  4335. "symfony/http-foundation": "<5.3"
  4336. },
  4337. "require-dev": {
  4338. "symfony/console": "^4.4|^5.0|^6.0",
  4339. "symfony/http-client": "^4.4|^5.0|^6.0",
  4340. "symfony/mailer": "^4.4|^5.0|^6.0",
  4341. "symfony/messenger": "^4.4|^5.0|^6.0",
  4342. "symfony/mime": "^4.4|^5.0|^6.0",
  4343. "symfony/security-core": "^4.4|^5.0|^6.0",
  4344. "symfony/var-dumper": "^4.4|^5.0|^6.0"
  4345. },
  4346. "suggest": {
  4347. "symfony/console": "For the possibility to show log messages in console commands depending on verbosity settings.",
  4348. "symfony/http-kernel": "For using the debugging handlers together with the response life cycle of the HTTP kernel.",
  4349. "symfony/var-dumper": "For using the debugging handlers like the console handler or the log server handler."
  4350. },
  4351. "type": "symfony-bridge",
  4352. "autoload": {
  4353. "psr-4": {
  4354. "Symfony\\Bridge\\Monolog\\": ""
  4355. },
  4356. "exclude-from-classmap": [
  4357. "/Tests/"
  4358. ]
  4359. },
  4360. "notification-url": "https://packagist.org/downloads/",
  4361. "license": [
  4362. "MIT"
  4363. ],
  4364. "authors": [
  4365. {
  4366. "name": "Fabien Potencier",
  4367. "email": "fabien@symfony.com"
  4368. },
  4369. {
  4370. "name": "Symfony Community",
  4371. "homepage": "https://symfony.com/contributors"
  4372. }
  4373. ],
  4374. "description": "Provides integration for Monolog with various Symfony components",
  4375. "homepage": "https://symfony.com",
  4376. "support": {
  4377. "source": "https://github.com/symfony/monolog-bridge/tree/v5.4.10"
  4378. },
  4379. "funding": [
  4380. {
  4381. "url": "https://symfony.com/sponsor",
  4382. "type": "custom"
  4383. },
  4384. {
  4385. "url": "https://github.com/fabpot",
  4386. "type": "github"
  4387. },
  4388. {
  4389. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4390. "type": "tidelift"
  4391. }
  4392. ],
  4393. "time": "2022-06-19T12:03:50+00:00"
  4394. },
  4395. {
  4396. "name": "symfony/monolog-bundle",
  4397. "version": "v3.8.0",
  4398. "source": {
  4399. "type": "git",
  4400. "url": "https://github.com/symfony/monolog-bundle.git",
  4401. "reference": "a41bbcdc1105603b6d73a7d9a43a3788f8e0fb7d"
  4402. },
  4403. "dist": {
  4404. "type": "zip",
  4405. "url": "https://api.github.com/repos/symfony/monolog-bundle/zipball/a41bbcdc1105603b6d73a7d9a43a3788f8e0fb7d",
  4406. "reference": "a41bbcdc1105603b6d73a7d9a43a3788f8e0fb7d",
  4407. "shasum": ""
  4408. },
  4409. "require": {
  4410. "monolog/monolog": "^1.22 || ^2.0 || ^3.0",
  4411. "php": ">=7.1.3",
  4412. "symfony/config": "~4.4 || ^5.0 || ^6.0",
  4413. "symfony/dependency-injection": "^4.4 || ^5.0 || ^6.0",
  4414. "symfony/http-kernel": "~4.4 || ^5.0 || ^6.0",
  4415. "symfony/monolog-bridge": "~4.4 || ^5.0 || ^6.0"
  4416. },
  4417. "require-dev": {
  4418. "symfony/console": "~4.4 || ^5.0 || ^6.0",
  4419. "symfony/phpunit-bridge": "^5.2 || ^6.0",
  4420. "symfony/yaml": "~4.4 || ^5.0 || ^6.0"
  4421. },
  4422. "type": "symfony-bundle",
  4423. "extra": {
  4424. "branch-alias": {
  4425. "dev-master": "3.x-dev"
  4426. }
  4427. },
  4428. "autoload": {
  4429. "psr-4": {
  4430. "Symfony\\Bundle\\MonologBundle\\": ""
  4431. },
  4432. "exclude-from-classmap": [
  4433. "/Tests/"
  4434. ]
  4435. },
  4436. "notification-url": "https://packagist.org/downloads/",
  4437. "license": [
  4438. "MIT"
  4439. ],
  4440. "authors": [
  4441. {
  4442. "name": "Fabien Potencier",
  4443. "email": "fabien@symfony.com"
  4444. },
  4445. {
  4446. "name": "Symfony Community",
  4447. "homepage": "https://symfony.com/contributors"
  4448. }
  4449. ],
  4450. "description": "Symfony MonologBundle",
  4451. "homepage": "https://symfony.com",
  4452. "keywords": [
  4453. "log",
  4454. "logging"
  4455. ],
  4456. "support": {
  4457. "issues": "https://github.com/symfony/monolog-bundle/issues",
  4458. "source": "https://github.com/symfony/monolog-bundle/tree/v3.8.0"
  4459. },
  4460. "funding": [
  4461. {
  4462. "url": "https://symfony.com/sponsor",
  4463. "type": "custom"
  4464. },
  4465. {
  4466. "url": "https://github.com/fabpot",
  4467. "type": "github"
  4468. },
  4469. {
  4470. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4471. "type": "tidelift"
  4472. }
  4473. ],
  4474. "time": "2022-05-10T14:24:36+00:00"
  4475. },
  4476. {
  4477. "name": "symfony/options-resolver",
  4478. "version": "v5.4.11",
  4479. "source": {
  4480. "type": "git",
  4481. "url": "https://github.com/symfony/options-resolver.git",
  4482. "reference": "54f14e36aa73cb8f7261d7686691fd4d75ea2690"
  4483. },
  4484. "dist": {
  4485. "type": "zip",
  4486. "url": "https://api.github.com/repos/symfony/options-resolver/zipball/54f14e36aa73cb8f7261d7686691fd4d75ea2690",
  4487. "reference": "54f14e36aa73cb8f7261d7686691fd4d75ea2690",
  4488. "shasum": ""
  4489. },
  4490. "require": {
  4491. "php": ">=7.2.5",
  4492. "symfony/deprecation-contracts": "^2.1|^3",
  4493. "symfony/polyfill-php73": "~1.0",
  4494. "symfony/polyfill-php80": "^1.16"
  4495. },
  4496. "type": "library",
  4497. "autoload": {
  4498. "psr-4": {
  4499. "Symfony\\Component\\OptionsResolver\\": ""
  4500. },
  4501. "exclude-from-classmap": [
  4502. "/Tests/"
  4503. ]
  4504. },
  4505. "notification-url": "https://packagist.org/downloads/",
  4506. "license": [
  4507. "MIT"
  4508. ],
  4509. "authors": [
  4510. {
  4511. "name": "Fabien Potencier",
  4512. "email": "fabien@symfony.com"
  4513. },
  4514. {
  4515. "name": "Symfony Community",
  4516. "homepage": "https://symfony.com/contributors"
  4517. }
  4518. ],
  4519. "description": "Provides an improved replacement for the array_replace PHP function",
  4520. "homepage": "https://symfony.com",
  4521. "keywords": [
  4522. "config",
  4523. "configuration",
  4524. "options"
  4525. ],
  4526. "support": {
  4527. "source": "https://github.com/symfony/options-resolver/tree/v5.4.11"
  4528. },
  4529. "funding": [
  4530. {
  4531. "url": "https://symfony.com/sponsor",
  4532. "type": "custom"
  4533. },
  4534. {
  4535. "url": "https://github.com/fabpot",
  4536. "type": "github"
  4537. },
  4538. {
  4539. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4540. "type": "tidelift"
  4541. }
  4542. ],
  4543. "time": "2022-07-20T13:00:38+00:00"
  4544. },
  4545. {
  4546. "name": "symfony/password-hasher",
  4547. "version": "v5.4.11",
  4548. "source": {
  4549. "type": "git",
  4550. "url": "https://github.com/symfony/password-hasher.git",
  4551. "reference": "b0169ed8f09a4ae39eb119218ea1685079a9b179"
  4552. },
  4553. "dist": {
  4554. "type": "zip",
  4555. "url": "https://api.github.com/repos/symfony/password-hasher/zipball/b0169ed8f09a4ae39eb119218ea1685079a9b179",
  4556. "reference": "b0169ed8f09a4ae39eb119218ea1685079a9b179",
  4557. "shasum": ""
  4558. },
  4559. "require": {
  4560. "php": ">=7.2.5",
  4561. "symfony/polyfill-php80": "^1.15"
  4562. },
  4563. "conflict": {
  4564. "symfony/security-core": "<5.3"
  4565. },
  4566. "require-dev": {
  4567. "symfony/console": "^5.3|^6.0",
  4568. "symfony/security-core": "^5.3|^6.0"
  4569. },
  4570. "type": "library",
  4571. "autoload": {
  4572. "psr-4": {
  4573. "Symfony\\Component\\PasswordHasher\\": ""
  4574. },
  4575. "exclude-from-classmap": [
  4576. "/Tests/"
  4577. ]
  4578. },
  4579. "notification-url": "https://packagist.org/downloads/",
  4580. "license": [
  4581. "MIT"
  4582. ],
  4583. "authors": [
  4584. {
  4585. "name": "Robin Chalas",
  4586. "email": "robin.chalas@gmail.com"
  4587. },
  4588. {
  4589. "name": "Symfony Community",
  4590. "homepage": "https://symfony.com/contributors"
  4591. }
  4592. ],
  4593. "description": "Provides password hashing utilities",
  4594. "homepage": "https://symfony.com",
  4595. "keywords": [
  4596. "hashing",
  4597. "password"
  4598. ],
  4599. "support": {
  4600. "source": "https://github.com/symfony/password-hasher/tree/v5.4.11"
  4601. },
  4602. "funding": [
  4603. {
  4604. "url": "https://symfony.com/sponsor",
  4605. "type": "custom"
  4606. },
  4607. {
  4608. "url": "https://github.com/fabpot",
  4609. "type": "github"
  4610. },
  4611. {
  4612. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4613. "type": "tidelift"
  4614. }
  4615. ],
  4616. "time": "2022-07-20T13:00:38+00:00"
  4617. },
  4618. {
  4619. "name": "symfony/polyfill-intl-grapheme",
  4620. "version": "v1.26.0",
  4621. "source": {
  4622. "type": "git",
  4623. "url": "https://github.com/symfony/polyfill-intl-grapheme.git",
  4624. "reference": "433d05519ce6990bf3530fba6957499d327395c2"
  4625. },
  4626. "dist": {
  4627. "type": "zip",
  4628. "url": "https://api.github.com/repos/symfony/polyfill-intl-grapheme/zipball/433d05519ce6990bf3530fba6957499d327395c2",
  4629. "reference": "433d05519ce6990bf3530fba6957499d327395c2",
  4630. "shasum": ""
  4631. },
  4632. "require": {
  4633. "php": ">=7.1"
  4634. },
  4635. "suggest": {
  4636. "ext-intl": "For best performance"
  4637. },
  4638. "type": "library",
  4639. "extra": {
  4640. "branch-alias": {
  4641. "dev-main": "1.26-dev"
  4642. },
  4643. "thanks": {
  4644. "name": "symfony/polyfill",
  4645. "url": "https://github.com/symfony/polyfill"
  4646. }
  4647. },
  4648. "autoload": {
  4649. "files": [
  4650. "bootstrap.php"
  4651. ],
  4652. "psr-4": {
  4653. "Symfony\\Polyfill\\Intl\\Grapheme\\": ""
  4654. }
  4655. },
  4656. "notification-url": "https://packagist.org/downloads/",
  4657. "license": [
  4658. "MIT"
  4659. ],
  4660. "authors": [
  4661. {
  4662. "name": "Nicolas Grekas",
  4663. "email": "p@tchwork.com"
  4664. },
  4665. {
  4666. "name": "Symfony Community",
  4667. "homepage": "https://symfony.com/contributors"
  4668. }
  4669. ],
  4670. "description": "Symfony polyfill for intl's grapheme_* functions",
  4671. "homepage": "https://symfony.com",
  4672. "keywords": [
  4673. "compatibility",
  4674. "grapheme",
  4675. "intl",
  4676. "polyfill",
  4677. "portable",
  4678. "shim"
  4679. ],
  4680. "support": {
  4681. "source": "https://github.com/symfony/polyfill-intl-grapheme/tree/v1.26.0"
  4682. },
  4683. "funding": [
  4684. {
  4685. "url": "https://symfony.com/sponsor",
  4686. "type": "custom"
  4687. },
  4688. {
  4689. "url": "https://github.com/fabpot",
  4690. "type": "github"
  4691. },
  4692. {
  4693. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4694. "type": "tidelift"
  4695. }
  4696. ],
  4697. "time": "2022-05-24T11:49:31+00:00"
  4698. },
  4699. {
  4700. "name": "symfony/polyfill-intl-icu",
  4701. "version": "v1.26.0",
  4702. "source": {
  4703. "type": "git",
  4704. "url": "https://github.com/symfony/polyfill-intl-icu.git",
  4705. "reference": "e407643d610e5f2c8a4b14189150f68934bf5e48"
  4706. },
  4707. "dist": {
  4708. "type": "zip",
  4709. "url": "https://api.github.com/repos/symfony/polyfill-intl-icu/zipball/e407643d610e5f2c8a4b14189150f68934bf5e48",
  4710. "reference": "e407643d610e5f2c8a4b14189150f68934bf5e48",
  4711. "shasum": ""
  4712. },
  4713. "require": {
  4714. "php": ">=7.1"
  4715. },
  4716. "suggest": {
  4717. "ext-intl": "For best performance and support of other locales than \"en\""
  4718. },
  4719. "type": "library",
  4720. "extra": {
  4721. "branch-alias": {
  4722. "dev-main": "1.26-dev"
  4723. },
  4724. "thanks": {
  4725. "name": "symfony/polyfill",
  4726. "url": "https://github.com/symfony/polyfill"
  4727. }
  4728. },
  4729. "autoload": {
  4730. "files": [
  4731. "bootstrap.php"
  4732. ],
  4733. "psr-4": {
  4734. "Symfony\\Polyfill\\Intl\\Icu\\": ""
  4735. },
  4736. "classmap": [
  4737. "Resources/stubs"
  4738. ],
  4739. "exclude-from-classmap": [
  4740. "/Tests/"
  4741. ]
  4742. },
  4743. "notification-url": "https://packagist.org/downloads/",
  4744. "license": [
  4745. "MIT"
  4746. ],
  4747. "authors": [
  4748. {
  4749. "name": "Nicolas Grekas",
  4750. "email": "p@tchwork.com"
  4751. },
  4752. {
  4753. "name": "Symfony Community",
  4754. "homepage": "https://symfony.com/contributors"
  4755. }
  4756. ],
  4757. "description": "Symfony polyfill for intl's ICU-related data and classes",
  4758. "homepage": "https://symfony.com",
  4759. "keywords": [
  4760. "compatibility",
  4761. "icu",
  4762. "intl",
  4763. "polyfill",
  4764. "portable",
  4765. "shim"
  4766. ],
  4767. "support": {
  4768. "source": "https://github.com/symfony/polyfill-intl-icu/tree/v1.26.0"
  4769. },
  4770. "funding": [
  4771. {
  4772. "url": "https://symfony.com/sponsor",
  4773. "type": "custom"
  4774. },
  4775. {
  4776. "url": "https://github.com/fabpot",
  4777. "type": "github"
  4778. },
  4779. {
  4780. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4781. "type": "tidelift"
  4782. }
  4783. ],
  4784. "time": "2022-05-24T11:49:31+00:00"
  4785. },
  4786. {
  4787. "name": "symfony/polyfill-intl-idn",
  4788. "version": "v1.26.0",
  4789. "source": {
  4790. "type": "git",
  4791. "url": "https://github.com/symfony/polyfill-intl-idn.git",
  4792. "reference": "59a8d271f00dd0e4c2e518104cc7963f655a1aa8"
  4793. },
  4794. "dist": {
  4795. "type": "zip",
  4796. "url": "https://api.github.com/repos/symfony/polyfill-intl-idn/zipball/59a8d271f00dd0e4c2e518104cc7963f655a1aa8",
  4797. "reference": "59a8d271f00dd0e4c2e518104cc7963f655a1aa8",
  4798. "shasum": ""
  4799. },
  4800. "require": {
  4801. "php": ">=7.1",
  4802. "symfony/polyfill-intl-normalizer": "^1.10",
  4803. "symfony/polyfill-php72": "^1.10"
  4804. },
  4805. "suggest": {
  4806. "ext-intl": "For best performance"
  4807. },
  4808. "type": "library",
  4809. "extra": {
  4810. "branch-alias": {
  4811. "dev-main": "1.26-dev"
  4812. },
  4813. "thanks": {
  4814. "name": "symfony/polyfill",
  4815. "url": "https://github.com/symfony/polyfill"
  4816. }
  4817. },
  4818. "autoload": {
  4819. "files": [
  4820. "bootstrap.php"
  4821. ],
  4822. "psr-4": {
  4823. "Symfony\\Polyfill\\Intl\\Idn\\": ""
  4824. }
  4825. },
  4826. "notification-url": "https://packagist.org/downloads/",
  4827. "license": [
  4828. "MIT"
  4829. ],
  4830. "authors": [
  4831. {
  4832. "name": "Laurent Bassin",
  4833. "email": "laurent@bassin.info"
  4834. },
  4835. {
  4836. "name": "Trevor Rowbotham",
  4837. "email": "trevor.rowbotham@pm.me"
  4838. },
  4839. {
  4840. "name": "Symfony Community",
  4841. "homepage": "https://symfony.com/contributors"
  4842. }
  4843. ],
  4844. "description": "Symfony polyfill for intl's idn_to_ascii and idn_to_utf8 functions",
  4845. "homepage": "https://symfony.com",
  4846. "keywords": [
  4847. "compatibility",
  4848. "idn",
  4849. "intl",
  4850. "polyfill",
  4851. "portable",
  4852. "shim"
  4853. ],
  4854. "support": {
  4855. "source": "https://github.com/symfony/polyfill-intl-idn/tree/v1.26.0"
  4856. },
  4857. "funding": [
  4858. {
  4859. "url": "https://symfony.com/sponsor",
  4860. "type": "custom"
  4861. },
  4862. {
  4863. "url": "https://github.com/fabpot",
  4864. "type": "github"
  4865. },
  4866. {
  4867. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4868. "type": "tidelift"
  4869. }
  4870. ],
  4871. "time": "2022-05-24T11:49:31+00:00"
  4872. },
  4873. {
  4874. "name": "symfony/polyfill-intl-normalizer",
  4875. "version": "v1.26.0",
  4876. "source": {
  4877. "type": "git",
  4878. "url": "https://github.com/symfony/polyfill-intl-normalizer.git",
  4879. "reference": "219aa369ceff116e673852dce47c3a41794c14bd"
  4880. },
  4881. "dist": {
  4882. "type": "zip",
  4883. "url": "https://api.github.com/repos/symfony/polyfill-intl-normalizer/zipball/219aa369ceff116e673852dce47c3a41794c14bd",
  4884. "reference": "219aa369ceff116e673852dce47c3a41794c14bd",
  4885. "shasum": ""
  4886. },
  4887. "require": {
  4888. "php": ">=7.1"
  4889. },
  4890. "suggest": {
  4891. "ext-intl": "For best performance"
  4892. },
  4893. "type": "library",
  4894. "extra": {
  4895. "branch-alias": {
  4896. "dev-main": "1.26-dev"
  4897. },
  4898. "thanks": {
  4899. "name": "symfony/polyfill",
  4900. "url": "https://github.com/symfony/polyfill"
  4901. }
  4902. },
  4903. "autoload": {
  4904. "files": [
  4905. "bootstrap.php"
  4906. ],
  4907. "psr-4": {
  4908. "Symfony\\Polyfill\\Intl\\Normalizer\\": ""
  4909. },
  4910. "classmap": [
  4911. "Resources/stubs"
  4912. ]
  4913. },
  4914. "notification-url": "https://packagist.org/downloads/",
  4915. "license": [
  4916. "MIT"
  4917. ],
  4918. "authors": [
  4919. {
  4920. "name": "Nicolas Grekas",
  4921. "email": "p@tchwork.com"
  4922. },
  4923. {
  4924. "name": "Symfony Community",
  4925. "homepage": "https://symfony.com/contributors"
  4926. }
  4927. ],
  4928. "description": "Symfony polyfill for intl's Normalizer class and related functions",
  4929. "homepage": "https://symfony.com",
  4930. "keywords": [
  4931. "compatibility",
  4932. "intl",
  4933. "normalizer",
  4934. "polyfill",
  4935. "portable",
  4936. "shim"
  4937. ],
  4938. "support": {
  4939. "source": "https://github.com/symfony/polyfill-intl-normalizer/tree/v1.26.0"
  4940. },
  4941. "funding": [
  4942. {
  4943. "url": "https://symfony.com/sponsor",
  4944. "type": "custom"
  4945. },
  4946. {
  4947. "url": "https://github.com/fabpot",
  4948. "type": "github"
  4949. },
  4950. {
  4951. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4952. "type": "tidelift"
  4953. }
  4954. ],
  4955. "time": "2022-05-24T11:49:31+00:00"
  4956. },
  4957. {
  4958. "name": "symfony/polyfill-mbstring",
  4959. "version": "v1.26.0",
  4960. "source": {
  4961. "type": "git",
  4962. "url": "https://github.com/symfony/polyfill-mbstring.git",
  4963. "reference": "9344f9cb97f3b19424af1a21a3b0e75b0a7d8d7e"
  4964. },
  4965. "dist": {
  4966. "type": "zip",
  4967. "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/9344f9cb97f3b19424af1a21a3b0e75b0a7d8d7e",
  4968. "reference": "9344f9cb97f3b19424af1a21a3b0e75b0a7d8d7e",
  4969. "shasum": ""
  4970. },
  4971. "require": {
  4972. "php": ">=7.1"
  4973. },
  4974. "provide": {
  4975. "ext-mbstring": "*"
  4976. },
  4977. "suggest": {
  4978. "ext-mbstring": "For best performance"
  4979. },
  4980. "type": "library",
  4981. "extra": {
  4982. "branch-alias": {
  4983. "dev-main": "1.26-dev"
  4984. },
  4985. "thanks": {
  4986. "name": "symfony/polyfill",
  4987. "url": "https://github.com/symfony/polyfill"
  4988. }
  4989. },
  4990. "autoload": {
  4991. "files": [
  4992. "bootstrap.php"
  4993. ],
  4994. "psr-4": {
  4995. "Symfony\\Polyfill\\Mbstring\\": ""
  4996. }
  4997. },
  4998. "notification-url": "https://packagist.org/downloads/",
  4999. "license": [
  5000. "MIT"
  5001. ],
  5002. "authors": [
  5003. {
  5004. "name": "Nicolas Grekas",
  5005. "email": "p@tchwork.com"
  5006. },
  5007. {
  5008. "name": "Symfony Community",
  5009. "homepage": "https://symfony.com/contributors"
  5010. }
  5011. ],
  5012. "description": "Symfony polyfill for the Mbstring extension",
  5013. "homepage": "https://symfony.com",
  5014. "keywords": [
  5015. "compatibility",
  5016. "mbstring",
  5017. "polyfill",
  5018. "portable",
  5019. "shim"
  5020. ],
  5021. "support": {
  5022. "source": "https://github.com/symfony/polyfill-mbstring/tree/v1.26.0"
  5023. },
  5024. "funding": [
  5025. {
  5026. "url": "https://symfony.com/sponsor",
  5027. "type": "custom"
  5028. },
  5029. {
  5030. "url": "https://github.com/fabpot",
  5031. "type": "github"
  5032. },
  5033. {
  5034. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5035. "type": "tidelift"
  5036. }
  5037. ],
  5038. "time": "2022-05-24T11:49:31+00:00"
  5039. },
  5040. {
  5041. "name": "symfony/polyfill-php72",
  5042. "version": "v1.26.0",
  5043. "source": {
  5044. "type": "git",
  5045. "url": "https://github.com/symfony/polyfill-php72.git",
  5046. "reference": "bf44a9fd41feaac72b074de600314a93e2ae78e2"
  5047. },
  5048. "dist": {
  5049. "type": "zip",
  5050. "url": "https://api.github.com/repos/symfony/polyfill-php72/zipball/bf44a9fd41feaac72b074de600314a93e2ae78e2",
  5051. "reference": "bf44a9fd41feaac72b074de600314a93e2ae78e2",
  5052. "shasum": ""
  5053. },
  5054. "require": {
  5055. "php": ">=7.1"
  5056. },
  5057. "type": "library",
  5058. "extra": {
  5059. "branch-alias": {
  5060. "dev-main": "1.26-dev"
  5061. },
  5062. "thanks": {
  5063. "name": "symfony/polyfill",
  5064. "url": "https://github.com/symfony/polyfill"
  5065. }
  5066. },
  5067. "autoload": {
  5068. "files": [
  5069. "bootstrap.php"
  5070. ],
  5071. "psr-4": {
  5072. "Symfony\\Polyfill\\Php72\\": ""
  5073. }
  5074. },
  5075. "notification-url": "https://packagist.org/downloads/",
  5076. "license": [
  5077. "MIT"
  5078. ],
  5079. "authors": [
  5080. {
  5081. "name": "Nicolas Grekas",
  5082. "email": "p@tchwork.com"
  5083. },
  5084. {
  5085. "name": "Symfony Community",
  5086. "homepage": "https://symfony.com/contributors"
  5087. }
  5088. ],
  5089. "description": "Symfony polyfill backporting some PHP 7.2+ features to lower PHP versions",
  5090. "homepage": "https://symfony.com",
  5091. "keywords": [
  5092. "compatibility",
  5093. "polyfill",
  5094. "portable",
  5095. "shim"
  5096. ],
  5097. "support": {
  5098. "source": "https://github.com/symfony/polyfill-php72/tree/v1.26.0"
  5099. },
  5100. "funding": [
  5101. {
  5102. "url": "https://symfony.com/sponsor",
  5103. "type": "custom"
  5104. },
  5105. {
  5106. "url": "https://github.com/fabpot",
  5107. "type": "github"
  5108. },
  5109. {
  5110. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5111. "type": "tidelift"
  5112. }
  5113. ],
  5114. "time": "2022-05-24T11:49:31+00:00"
  5115. },
  5116. {
  5117. "name": "symfony/polyfill-php73",
  5118. "version": "v1.26.0",
  5119. "source": {
  5120. "type": "git",
  5121. "url": "https://github.com/symfony/polyfill-php73.git",
  5122. "reference": "e440d35fa0286f77fb45b79a03fedbeda9307e85"
  5123. },
  5124. "dist": {
  5125. "type": "zip",
  5126. "url": "https://api.github.com/repos/symfony/polyfill-php73/zipball/e440d35fa0286f77fb45b79a03fedbeda9307e85",
  5127. "reference": "e440d35fa0286f77fb45b79a03fedbeda9307e85",
  5128. "shasum": ""
  5129. },
  5130. "require": {
  5131. "php": ">=7.1"
  5132. },
  5133. "type": "library",
  5134. "extra": {
  5135. "branch-alias": {
  5136. "dev-main": "1.26-dev"
  5137. },
  5138. "thanks": {
  5139. "name": "symfony/polyfill",
  5140. "url": "https://github.com/symfony/polyfill"
  5141. }
  5142. },
  5143. "autoload": {
  5144. "files": [
  5145. "bootstrap.php"
  5146. ],
  5147. "psr-4": {
  5148. "Symfony\\Polyfill\\Php73\\": ""
  5149. },
  5150. "classmap": [
  5151. "Resources/stubs"
  5152. ]
  5153. },
  5154. "notification-url": "https://packagist.org/downloads/",
  5155. "license": [
  5156. "MIT"
  5157. ],
  5158. "authors": [
  5159. {
  5160. "name": "Nicolas Grekas",
  5161. "email": "p@tchwork.com"
  5162. },
  5163. {
  5164. "name": "Symfony Community",
  5165. "homepage": "https://symfony.com/contributors"
  5166. }
  5167. ],
  5168. "description": "Symfony polyfill backporting some PHP 7.3+ features to lower PHP versions",
  5169. "homepage": "https://symfony.com",
  5170. "keywords": [
  5171. "compatibility",
  5172. "polyfill",
  5173. "portable",
  5174. "shim"
  5175. ],
  5176. "support": {
  5177. "source": "https://github.com/symfony/polyfill-php73/tree/v1.26.0"
  5178. },
  5179. "funding": [
  5180. {
  5181. "url": "https://symfony.com/sponsor",
  5182. "type": "custom"
  5183. },
  5184. {
  5185. "url": "https://github.com/fabpot",
  5186. "type": "github"
  5187. },
  5188. {
  5189. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5190. "type": "tidelift"
  5191. }
  5192. ],
  5193. "time": "2022-05-24T11:49:31+00:00"
  5194. },
  5195. {
  5196. "name": "symfony/polyfill-php80",
  5197. "version": "v1.26.0",
  5198. "source": {
  5199. "type": "git",
  5200. "url": "https://github.com/symfony/polyfill-php80.git",
  5201. "reference": "cfa0ae98841b9e461207c13ab093d76b0fa7bace"
  5202. },
  5203. "dist": {
  5204. "type": "zip",
  5205. "url": "https://api.github.com/repos/symfony/polyfill-php80/zipball/cfa0ae98841b9e461207c13ab093d76b0fa7bace",
  5206. "reference": "cfa0ae98841b9e461207c13ab093d76b0fa7bace",
  5207. "shasum": ""
  5208. },
  5209. "require": {
  5210. "php": ">=7.1"
  5211. },
  5212. "type": "library",
  5213. "extra": {
  5214. "branch-alias": {
  5215. "dev-main": "1.26-dev"
  5216. },
  5217. "thanks": {
  5218. "name": "symfony/polyfill",
  5219. "url": "https://github.com/symfony/polyfill"
  5220. }
  5221. },
  5222. "autoload": {
  5223. "files": [
  5224. "bootstrap.php"
  5225. ],
  5226. "psr-4": {
  5227. "Symfony\\Polyfill\\Php80\\": ""
  5228. },
  5229. "classmap": [
  5230. "Resources/stubs"
  5231. ]
  5232. },
  5233. "notification-url": "https://packagist.org/downloads/",
  5234. "license": [
  5235. "MIT"
  5236. ],
  5237. "authors": [
  5238. {
  5239. "name": "Ion Bazan",
  5240. "email": "ion.bazan@gmail.com"
  5241. },
  5242. {
  5243. "name": "Nicolas Grekas",
  5244. "email": "p@tchwork.com"
  5245. },
  5246. {
  5247. "name": "Symfony Community",
  5248. "homepage": "https://symfony.com/contributors"
  5249. }
  5250. ],
  5251. "description": "Symfony polyfill backporting some PHP 8.0+ features to lower PHP versions",
  5252. "homepage": "https://symfony.com",
  5253. "keywords": [
  5254. "compatibility",
  5255. "polyfill",
  5256. "portable",
  5257. "shim"
  5258. ],
  5259. "support": {
  5260. "source": "https://github.com/symfony/polyfill-php80/tree/v1.26.0"
  5261. },
  5262. "funding": [
  5263. {
  5264. "url": "https://symfony.com/sponsor",
  5265. "type": "custom"
  5266. },
  5267. {
  5268. "url": "https://github.com/fabpot",
  5269. "type": "github"
  5270. },
  5271. {
  5272. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5273. "type": "tidelift"
  5274. }
  5275. ],
  5276. "time": "2022-05-10T07:21:04+00:00"
  5277. },
  5278. {
  5279. "name": "symfony/polyfill-php81",
  5280. "version": "v1.26.0",
  5281. "source": {
  5282. "type": "git",
  5283. "url": "https://github.com/symfony/polyfill-php81.git",
  5284. "reference": "13f6d1271c663dc5ae9fb843a8f16521db7687a1"
  5285. },
  5286. "dist": {
  5287. "type": "zip",
  5288. "url": "https://api.github.com/repos/symfony/polyfill-php81/zipball/13f6d1271c663dc5ae9fb843a8f16521db7687a1",
  5289. "reference": "13f6d1271c663dc5ae9fb843a8f16521db7687a1",
  5290. "shasum": ""
  5291. },
  5292. "require": {
  5293. "php": ">=7.1"
  5294. },
  5295. "type": "library",
  5296. "extra": {
  5297. "branch-alias": {
  5298. "dev-main": "1.26-dev"
  5299. },
  5300. "thanks": {
  5301. "name": "symfony/polyfill",
  5302. "url": "https://github.com/symfony/polyfill"
  5303. }
  5304. },
  5305. "autoload": {
  5306. "files": [
  5307. "bootstrap.php"
  5308. ],
  5309. "psr-4": {
  5310. "Symfony\\Polyfill\\Php81\\": ""
  5311. },
  5312. "classmap": [
  5313. "Resources/stubs"
  5314. ]
  5315. },
  5316. "notification-url": "https://packagist.org/downloads/",
  5317. "license": [
  5318. "MIT"
  5319. ],
  5320. "authors": [
  5321. {
  5322. "name": "Nicolas Grekas",
  5323. "email": "p@tchwork.com"
  5324. },
  5325. {
  5326. "name": "Symfony Community",
  5327. "homepage": "https://symfony.com/contributors"
  5328. }
  5329. ],
  5330. "description": "Symfony polyfill backporting some PHP 8.1+ features to lower PHP versions",
  5331. "homepage": "https://symfony.com",
  5332. "keywords": [
  5333. "compatibility",
  5334. "polyfill",
  5335. "portable",
  5336. "shim"
  5337. ],
  5338. "support": {
  5339. "source": "https://github.com/symfony/polyfill-php81/tree/v1.26.0"
  5340. },
  5341. "funding": [
  5342. {
  5343. "url": "https://symfony.com/sponsor",
  5344. "type": "custom"
  5345. },
  5346. {
  5347. "url": "https://github.com/fabpot",
  5348. "type": "github"
  5349. },
  5350. {
  5351. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5352. "type": "tidelift"
  5353. }
  5354. ],
  5355. "time": "2022-05-24T11:49:31+00:00"
  5356. },
  5357. {
  5358. "name": "symfony/process",
  5359. "version": "v5.4.11",
  5360. "source": {
  5361. "type": "git",
  5362. "url": "https://github.com/symfony/process.git",
  5363. "reference": "6e75fe6874cbc7e4773d049616ab450eff537bf1"
  5364. },
  5365. "dist": {
  5366. "type": "zip",
  5367. "url": "https://api.github.com/repos/symfony/process/zipball/6e75fe6874cbc7e4773d049616ab450eff537bf1",
  5368. "reference": "6e75fe6874cbc7e4773d049616ab450eff537bf1",
  5369. "shasum": ""
  5370. },
  5371. "require": {
  5372. "php": ">=7.2.5",
  5373. "symfony/polyfill-php80": "^1.16"
  5374. },
  5375. "type": "library",
  5376. "autoload": {
  5377. "psr-4": {
  5378. "Symfony\\Component\\Process\\": ""
  5379. },
  5380. "exclude-from-classmap": [
  5381. "/Tests/"
  5382. ]
  5383. },
  5384. "notification-url": "https://packagist.org/downloads/",
  5385. "license": [
  5386. "MIT"
  5387. ],
  5388. "authors": [
  5389. {
  5390. "name": "Fabien Potencier",
  5391. "email": "fabien@symfony.com"
  5392. },
  5393. {
  5394. "name": "Symfony Community",
  5395. "homepage": "https://symfony.com/contributors"
  5396. }
  5397. ],
  5398. "description": "Executes commands in sub-processes",
  5399. "homepage": "https://symfony.com",
  5400. "support": {
  5401. "source": "https://github.com/symfony/process/tree/v5.4.11"
  5402. },
  5403. "funding": [
  5404. {
  5405. "url": "https://symfony.com/sponsor",
  5406. "type": "custom"
  5407. },
  5408. {
  5409. "url": "https://github.com/fabpot",
  5410. "type": "github"
  5411. },
  5412. {
  5413. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5414. "type": "tidelift"
  5415. }
  5416. ],
  5417. "time": "2022-06-27T16:58:25+00:00"
  5418. },
  5419. {
  5420. "name": "symfony/property-access",
  5421. "version": "v5.4.11",
  5422. "source": {
  5423. "type": "git",
  5424. "url": "https://github.com/symfony/property-access.git",
  5425. "reference": "c641d63e943ed31981bad4b4dcf29fe7da2ffa8c"
  5426. },
  5427. "dist": {
  5428. "type": "zip",
  5429. "url": "https://api.github.com/repos/symfony/property-access/zipball/c641d63e943ed31981bad4b4dcf29fe7da2ffa8c",
  5430. "reference": "c641d63e943ed31981bad4b4dcf29fe7da2ffa8c",
  5431. "shasum": ""
  5432. },
  5433. "require": {
  5434. "php": ">=7.2.5",
  5435. "symfony/deprecation-contracts": "^2.1|^3",
  5436. "symfony/polyfill-php80": "^1.16",
  5437. "symfony/property-info": "^5.2|^6.0"
  5438. },
  5439. "require-dev": {
  5440. "symfony/cache": "^4.4|^5.0|^6.0"
  5441. },
  5442. "suggest": {
  5443. "psr/cache-implementation": "To cache access methods."
  5444. },
  5445. "type": "library",
  5446. "autoload": {
  5447. "psr-4": {
  5448. "Symfony\\Component\\PropertyAccess\\": ""
  5449. },
  5450. "exclude-from-classmap": [
  5451. "/Tests/"
  5452. ]
  5453. },
  5454. "notification-url": "https://packagist.org/downloads/",
  5455. "license": [
  5456. "MIT"
  5457. ],
  5458. "authors": [
  5459. {
  5460. "name": "Fabien Potencier",
  5461. "email": "fabien@symfony.com"
  5462. },
  5463. {
  5464. "name": "Symfony Community",
  5465. "homepage": "https://symfony.com/contributors"
  5466. }
  5467. ],
  5468. "description": "Provides functions to read and write from/to an object or array using a simple string notation",
  5469. "homepage": "https://symfony.com",
  5470. "keywords": [
  5471. "access",
  5472. "array",
  5473. "extraction",
  5474. "index",
  5475. "injection",
  5476. "object",
  5477. "property",
  5478. "property path",
  5479. "reflection"
  5480. ],
  5481. "support": {
  5482. "source": "https://github.com/symfony/property-access/tree/v5.4.11"
  5483. },
  5484. "funding": [
  5485. {
  5486. "url": "https://symfony.com/sponsor",
  5487. "type": "custom"
  5488. },
  5489. {
  5490. "url": "https://github.com/fabpot",
  5491. "type": "github"
  5492. },
  5493. {
  5494. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5495. "type": "tidelift"
  5496. }
  5497. ],
  5498. "time": "2022-06-27T16:58:25+00:00"
  5499. },
  5500. {
  5501. "name": "symfony/property-info",
  5502. "version": "v5.4.11",
  5503. "source": {
  5504. "type": "git",
  5505. "url": "https://github.com/symfony/property-info.git",
  5506. "reference": "8a9a2b638a808cc92a2fbce185b9318e76b0e20c"
  5507. },
  5508. "dist": {
  5509. "type": "zip",
  5510. "url": "https://api.github.com/repos/symfony/property-info/zipball/8a9a2b638a808cc92a2fbce185b9318e76b0e20c",
  5511. "reference": "8a9a2b638a808cc92a2fbce185b9318e76b0e20c",
  5512. "shasum": ""
  5513. },
  5514. "require": {
  5515. "php": ">=7.2.5",
  5516. "symfony/deprecation-contracts": "^2.1|^3",
  5517. "symfony/polyfill-php80": "^1.16",
  5518. "symfony/string": "^5.1|^6.0"
  5519. },
  5520. "conflict": {
  5521. "phpdocumentor/reflection-docblock": "<3.2.2",
  5522. "phpdocumentor/type-resolver": "<1.4.0",
  5523. "symfony/dependency-injection": "<4.4"
  5524. },
  5525. "require-dev": {
  5526. "doctrine/annotations": "^1.10.4",
  5527. "phpdocumentor/reflection-docblock": "^3.0|^4.0|^5.0",
  5528. "phpstan/phpdoc-parser": "^1.0",
  5529. "symfony/cache": "^4.4|^5.0|^6.0",
  5530. "symfony/dependency-injection": "^4.4|^5.0|^6.0",
  5531. "symfony/serializer": "^4.4|^5.0|^6.0"
  5532. },
  5533. "suggest": {
  5534. "phpdocumentor/reflection-docblock": "To use the PHPDoc",
  5535. "psr/cache-implementation": "To cache results",
  5536. "symfony/doctrine-bridge": "To use Doctrine metadata",
  5537. "symfony/serializer": "To use Serializer metadata"
  5538. },
  5539. "type": "library",
  5540. "autoload": {
  5541. "psr-4": {
  5542. "Symfony\\Component\\PropertyInfo\\": ""
  5543. },
  5544. "exclude-from-classmap": [
  5545. "/Tests/"
  5546. ]
  5547. },
  5548. "notification-url": "https://packagist.org/downloads/",
  5549. "license": [
  5550. "MIT"
  5551. ],
  5552. "authors": [
  5553. {
  5554. "name": "Kévin Dunglas",
  5555. "email": "dunglas@gmail.com"
  5556. },
  5557. {
  5558. "name": "Symfony Community",
  5559. "homepage": "https://symfony.com/contributors"
  5560. }
  5561. ],
  5562. "description": "Extracts information about PHP class' properties using metadata of popular sources",
  5563. "homepage": "https://symfony.com",
  5564. "keywords": [
  5565. "doctrine",
  5566. "phpdoc",
  5567. "property",
  5568. "symfony",
  5569. "type",
  5570. "validator"
  5571. ],
  5572. "support": {
  5573. "source": "https://github.com/symfony/property-info/tree/v5.4.11"
  5574. },
  5575. "funding": [
  5576. {
  5577. "url": "https://symfony.com/sponsor",
  5578. "type": "custom"
  5579. },
  5580. {
  5581. "url": "https://github.com/fabpot",
  5582. "type": "github"
  5583. },
  5584. {
  5585. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5586. "type": "tidelift"
  5587. }
  5588. ],
  5589. "time": "2022-07-19T08:07:51+00:00"
  5590. },
  5591. {
  5592. "name": "symfony/proxy-manager-bridge",
  5593. "version": "v5.4.6",
  5594. "source": {
  5595. "type": "git",
  5596. "url": "https://github.com/symfony/proxy-manager-bridge.git",
  5597. "reference": "e6936de1cc8f4e6e3b2264aef186ca21695aee8e"
  5598. },
  5599. "dist": {
  5600. "type": "zip",
  5601. "url": "https://api.github.com/repos/symfony/proxy-manager-bridge/zipball/e6936de1cc8f4e6e3b2264aef186ca21695aee8e",
  5602. "reference": "e6936de1cc8f4e6e3b2264aef186ca21695aee8e",
  5603. "shasum": ""
  5604. },
  5605. "require": {
  5606. "friendsofphp/proxy-manager-lts": "^1.0.2",
  5607. "php": ">=7.2.5",
  5608. "symfony/dependency-injection": "^5.0|^6.0",
  5609. "symfony/polyfill-php80": "^1.16"
  5610. },
  5611. "require-dev": {
  5612. "symfony/config": "^4.4|^5.0|^6.0"
  5613. },
  5614. "type": "symfony-bridge",
  5615. "autoload": {
  5616. "psr-4": {
  5617. "Symfony\\Bridge\\ProxyManager\\": ""
  5618. },
  5619. "exclude-from-classmap": [
  5620. "/Tests/"
  5621. ]
  5622. },
  5623. "notification-url": "https://packagist.org/downloads/",
  5624. "license": [
  5625. "MIT"
  5626. ],
  5627. "authors": [
  5628. {
  5629. "name": "Fabien Potencier",
  5630. "email": "fabien@symfony.com"
  5631. },
  5632. {
  5633. "name": "Symfony Community",
  5634. "homepage": "https://symfony.com/contributors"
  5635. }
  5636. ],
  5637. "description": "Provides integration for ProxyManager with various Symfony components",
  5638. "homepage": "https://symfony.com",
  5639. "support": {
  5640. "source": "https://github.com/symfony/proxy-manager-bridge/tree/v5.4.6"
  5641. },
  5642. "funding": [
  5643. {
  5644. "url": "https://symfony.com/sponsor",
  5645. "type": "custom"
  5646. },
  5647. {
  5648. "url": "https://github.com/fabpot",
  5649. "type": "github"
  5650. },
  5651. {
  5652. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5653. "type": "tidelift"
  5654. }
  5655. ],
  5656. "time": "2022-03-02T12:42:23+00:00"
  5657. },
  5658. {
  5659. "name": "symfony/routing",
  5660. "version": "v5.4.11",
  5661. "source": {
  5662. "type": "git",
  5663. "url": "https://github.com/symfony/routing.git",
  5664. "reference": "3e01ccd9b2a3a4167ba2b3c53612762300300226"
  5665. },
  5666. "dist": {
  5667. "type": "zip",
  5668. "url": "https://api.github.com/repos/symfony/routing/zipball/3e01ccd9b2a3a4167ba2b3c53612762300300226",
  5669. "reference": "3e01ccd9b2a3a4167ba2b3c53612762300300226",
  5670. "shasum": ""
  5671. },
  5672. "require": {
  5673. "php": ">=7.2.5",
  5674. "symfony/deprecation-contracts": "^2.1|^3",
  5675. "symfony/polyfill-php80": "^1.16"
  5676. },
  5677. "conflict": {
  5678. "doctrine/annotations": "<1.12",
  5679. "symfony/config": "<5.3",
  5680. "symfony/dependency-injection": "<4.4",
  5681. "symfony/yaml": "<4.4"
  5682. },
  5683. "require-dev": {
  5684. "doctrine/annotations": "^1.12",
  5685. "psr/log": "^1|^2|^3",
  5686. "symfony/config": "^5.3|^6.0",
  5687. "symfony/dependency-injection": "^4.4|^5.0|^6.0",
  5688. "symfony/expression-language": "^4.4|^5.0|^6.0",
  5689. "symfony/http-foundation": "^4.4|^5.0|^6.0",
  5690. "symfony/yaml": "^4.4|^5.0|^6.0"
  5691. },
  5692. "suggest": {
  5693. "symfony/config": "For using the all-in-one router or any loader",
  5694. "symfony/expression-language": "For using expression matching",
  5695. "symfony/http-foundation": "For using a Symfony Request object",
  5696. "symfony/yaml": "For using the YAML loader"
  5697. },
  5698. "type": "library",
  5699. "autoload": {
  5700. "psr-4": {
  5701. "Symfony\\Component\\Routing\\": ""
  5702. },
  5703. "exclude-from-classmap": [
  5704. "/Tests/"
  5705. ]
  5706. },
  5707. "notification-url": "https://packagist.org/downloads/",
  5708. "license": [
  5709. "MIT"
  5710. ],
  5711. "authors": [
  5712. {
  5713. "name": "Fabien Potencier",
  5714. "email": "fabien@symfony.com"
  5715. },
  5716. {
  5717. "name": "Symfony Community",
  5718. "homepage": "https://symfony.com/contributors"
  5719. }
  5720. ],
  5721. "description": "Maps an HTTP request to a set of configuration variables",
  5722. "homepage": "https://symfony.com",
  5723. "keywords": [
  5724. "router",
  5725. "routing",
  5726. "uri",
  5727. "url"
  5728. ],
  5729. "support": {
  5730. "source": "https://github.com/symfony/routing/tree/v5.4.11"
  5731. },
  5732. "funding": [
  5733. {
  5734. "url": "https://symfony.com/sponsor",
  5735. "type": "custom"
  5736. },
  5737. {
  5738. "url": "https://github.com/fabpot",
  5739. "type": "github"
  5740. },
  5741. {
  5742. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5743. "type": "tidelift"
  5744. }
  5745. ],
  5746. "time": "2022-07-20T13:00:38+00:00"
  5747. },
  5748. {
  5749. "name": "symfony/runtime",
  5750. "version": "v5.4.11",
  5751. "source": {
  5752. "type": "git",
  5753. "url": "https://github.com/symfony/runtime.git",
  5754. "reference": "c32ac27a8abebe4e6375cd12a4f78ba78e9c742f"
  5755. },
  5756. "dist": {
  5757. "type": "zip",
  5758. "url": "https://api.github.com/repos/symfony/runtime/zipball/c32ac27a8abebe4e6375cd12a4f78ba78e9c742f",
  5759. "reference": "c32ac27a8abebe4e6375cd12a4f78ba78e9c742f",
  5760. "shasum": ""
  5761. },
  5762. "require": {
  5763. "composer-plugin-api": "^1.0|^2.0",
  5764. "php": ">=7.2.5",
  5765. "symfony/polyfill-php80": "^1.15"
  5766. },
  5767. "conflict": {
  5768. "symfony/dotenv": "<5.1"
  5769. },
  5770. "require-dev": {
  5771. "composer/composer": "^1.0.2|^2.0",
  5772. "symfony/console": "^4.4.30|^5.3.7|^6.0",
  5773. "symfony/dotenv": "^5.1|^6.0",
  5774. "symfony/http-foundation": "^4.4.30|^5.3.7|^6.0",
  5775. "symfony/http-kernel": "^4.4.30|^5.3.7|^6.0"
  5776. },
  5777. "type": "composer-plugin",
  5778. "extra": {
  5779. "class": "Symfony\\Component\\Runtime\\Internal\\ComposerPlugin"
  5780. },
  5781. "autoload": {
  5782. "psr-4": {
  5783. "Symfony\\Component\\Runtime\\": "",
  5784. "Symfony\\Runtime\\Symfony\\Component\\": "Internal/"
  5785. },
  5786. "exclude-from-classmap": [
  5787. "/Tests/"
  5788. ]
  5789. },
  5790. "notification-url": "https://packagist.org/downloads/",
  5791. "license": [
  5792. "MIT"
  5793. ],
  5794. "authors": [
  5795. {
  5796. "name": "Nicolas Grekas",
  5797. "email": "p@tchwork.com"
  5798. },
  5799. {
  5800. "name": "Symfony Community",
  5801. "homepage": "https://symfony.com/contributors"
  5802. }
  5803. ],
  5804. "description": "Enables decoupling PHP applications from global state",
  5805. "homepage": "https://symfony.com",
  5806. "support": {
  5807. "source": "https://github.com/symfony/runtime/tree/v5.4.11"
  5808. },
  5809. "funding": [
  5810. {
  5811. "url": "https://symfony.com/sponsor",
  5812. "type": "custom"
  5813. },
  5814. {
  5815. "url": "https://github.com/fabpot",
  5816. "type": "github"
  5817. },
  5818. {
  5819. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5820. "type": "tidelift"
  5821. }
  5822. ],
  5823. "time": "2022-06-27T16:58:25+00:00"
  5824. },
  5825. {
  5826. "name": "symfony/security-bundle",
  5827. "version": "v5.4.11",
  5828. "source": {
  5829. "type": "git",
  5830. "url": "https://github.com/symfony/security-bundle.git",
  5831. "reference": "86b49feb056b840f2b79a03fcfa2d378d6d34234"
  5832. },
  5833. "dist": {
  5834. "type": "zip",
  5835. "url": "https://api.github.com/repos/symfony/security-bundle/zipball/86b49feb056b840f2b79a03fcfa2d378d6d34234",
  5836. "reference": "86b49feb056b840f2b79a03fcfa2d378d6d34234",
  5837. "shasum": ""
  5838. },
  5839. "require": {
  5840. "ext-xml": "*",
  5841. "php": ">=7.2.5",
  5842. "symfony/config": "^4.4|^5.0|^6.0",
  5843. "symfony/dependency-injection": "^5.3|^6.0",
  5844. "symfony/deprecation-contracts": "^2.1|^3",
  5845. "symfony/event-dispatcher": "^5.1|^6.0",
  5846. "symfony/http-foundation": "^5.3|^6.0",
  5847. "symfony/http-kernel": "^5.3|^6.0",
  5848. "symfony/password-hasher": "^5.3|^6.0",
  5849. "symfony/polyfill-php80": "^1.16",
  5850. "symfony/security-core": "^5.4|^6.0",
  5851. "symfony/security-csrf": "^4.4|^5.0|^6.0",
  5852. "symfony/security-guard": "^5.3",
  5853. "symfony/security-http": "^5.4|^6.0"
  5854. },
  5855. "conflict": {
  5856. "symfony/browser-kit": "<4.4",
  5857. "symfony/console": "<4.4",
  5858. "symfony/framework-bundle": "<4.4",
  5859. "symfony/ldap": "<5.1",
  5860. "symfony/twig-bundle": "<4.4"
  5861. },
  5862. "require-dev": {
  5863. "doctrine/annotations": "^1.10.4",
  5864. "symfony/asset": "^4.4|^5.0|^6.0",
  5865. "symfony/browser-kit": "^4.4|^5.0|^6.0",
  5866. "symfony/console": "^4.4|^5.0|^6.0",
  5867. "symfony/css-selector": "^4.4|^5.0|^6.0",
  5868. "symfony/dom-crawler": "^4.4|^5.0|^6.0",
  5869. "symfony/expression-language": "^4.4|^5.0|^6.0",
  5870. "symfony/form": "^4.4|^5.0|^6.0",
  5871. "symfony/framework-bundle": "^5.3|^6.0",
  5872. "symfony/ldap": "^5.3|^6.0",
  5873. "symfony/process": "^4.4|^5.0|^6.0",
  5874. "symfony/rate-limiter": "^5.2|^6.0",
  5875. "symfony/serializer": "^4.4|^5.0|^6.0",
  5876. "symfony/translation": "^4.4|^5.0|^6.0",
  5877. "symfony/twig-bridge": "^4.4|^5.0|^6.0",
  5878. "symfony/twig-bundle": "^4.4|^5.0|^6.0",
  5879. "symfony/validator": "^4.4|^5.0|^6.0",
  5880. "symfony/yaml": "^4.4|^5.0|^6.0",
  5881. "twig/twig": "^2.13|^3.0.4"
  5882. },
  5883. "type": "symfony-bundle",
  5884. "autoload": {
  5885. "psr-4": {
  5886. "Symfony\\Bundle\\SecurityBundle\\": ""
  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": "Provides a tight integration of the Security component into the Symfony full-stack framework",
  5907. "homepage": "https://symfony.com",
  5908. "support": {
  5909. "source": "https://github.com/symfony/security-bundle/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-core",
  5929. "version": "v5.4.13",
  5930. "source": {
  5931. "type": "git",
  5932. "url": "https://github.com/symfony/security-core.git",
  5933. "reference": "71bc477807d9afc9c904fd62b3b5d48f97308460"
  5934. },
  5935. "dist": {
  5936. "type": "zip",
  5937. "url": "https://api.github.com/repos/symfony/security-core/zipball/71bc477807d9afc9c904fd62b3b5d48f97308460",
  5938. "reference": "71bc477807d9afc9c904fd62b3b5d48f97308460",
  5939. "shasum": ""
  5940. },
  5941. "require": {
  5942. "php": ">=7.2.5",
  5943. "symfony/deprecation-contracts": "^2.1|^3",
  5944. "symfony/event-dispatcher-contracts": "^1.1|^2|^3",
  5945. "symfony/password-hasher": "^5.3|^6.0",
  5946. "symfony/polyfill-php80": "^1.16",
  5947. "symfony/service-contracts": "^1.1.6|^2|^3"
  5948. },
  5949. "conflict": {
  5950. "symfony/event-dispatcher": "<4.4",
  5951. "symfony/http-foundation": "<5.3",
  5952. "symfony/ldap": "<4.4",
  5953. "symfony/security-guard": "<4.4",
  5954. "symfony/validator": "<5.2"
  5955. },
  5956. "require-dev": {
  5957. "psr/cache": "^1.0|^2.0|^3.0",
  5958. "psr/container": "^1.0|^2.0",
  5959. "psr/log": "^1|^2|^3",
  5960. "symfony/cache": "^4.4|^5.0|^6.0",
  5961. "symfony/event-dispatcher": "^4.4|^5.0|^6.0",
  5962. "symfony/expression-language": "^4.4|^5.0|^6.0",
  5963. "symfony/http-foundation": "^5.3|^6.0",
  5964. "symfony/ldap": "^4.4|^5.0|^6.0",
  5965. "symfony/translation": "^4.4|^5.0|^6.0",
  5966. "symfony/validator": "^5.2|^6.0"
  5967. },
  5968. "suggest": {
  5969. "psr/container-implementation": "To instantiate the Security class",
  5970. "symfony/event-dispatcher": "",
  5971. "symfony/expression-language": "For using the expression voter",
  5972. "symfony/http-foundation": "",
  5973. "symfony/ldap": "For using LDAP integration",
  5974. "symfony/validator": "For using the user password constraint"
  5975. },
  5976. "type": "library",
  5977. "autoload": {
  5978. "psr-4": {
  5979. "Symfony\\Component\\Security\\Core\\": ""
  5980. },
  5981. "exclude-from-classmap": [
  5982. "/Tests/"
  5983. ]
  5984. },
  5985. "notification-url": "https://packagist.org/downloads/",
  5986. "license": [
  5987. "MIT"
  5988. ],
  5989. "authors": [
  5990. {
  5991. "name": "Fabien Potencier",
  5992. "email": "fabien@symfony.com"
  5993. },
  5994. {
  5995. "name": "Symfony Community",
  5996. "homepage": "https://symfony.com/contributors"
  5997. }
  5998. ],
  5999. "description": "Symfony Security Component - Core Library",
  6000. "homepage": "https://symfony.com",
  6001. "support": {
  6002. "source": "https://github.com/symfony/security-core/tree/v5.4.13"
  6003. },
  6004. "funding": [
  6005. {
  6006. "url": "https://symfony.com/sponsor",
  6007. "type": "custom"
  6008. },
  6009. {
  6010. "url": "https://github.com/fabpot",
  6011. "type": "github"
  6012. },
  6013. {
  6014. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6015. "type": "tidelift"
  6016. }
  6017. ],
  6018. "time": "2022-09-17T07:31:22+00:00"
  6019. },
  6020. {
  6021. "name": "symfony/security-csrf",
  6022. "version": "v5.4.11",
  6023. "source": {
  6024. "type": "git",
  6025. "url": "https://github.com/symfony/security-csrf.git",
  6026. "reference": "b97ab244b6dda80abb84a4a236d682871695db4a"
  6027. },
  6028. "dist": {
  6029. "type": "zip",
  6030. "url": "https://api.github.com/repos/symfony/security-csrf/zipball/b97ab244b6dda80abb84a4a236d682871695db4a",
  6031. "reference": "b97ab244b6dda80abb84a4a236d682871695db4a",
  6032. "shasum": ""
  6033. },
  6034. "require": {
  6035. "php": ">=7.2.5",
  6036. "symfony/polyfill-php80": "^1.16",
  6037. "symfony/security-core": "^4.4|^5.0|^6.0"
  6038. },
  6039. "conflict": {
  6040. "symfony/http-foundation": "<5.3"
  6041. },
  6042. "require-dev": {
  6043. "symfony/http-foundation": "^5.3|^6.0"
  6044. },
  6045. "suggest": {
  6046. "symfony/http-foundation": "For using the class SessionTokenStorage."
  6047. },
  6048. "type": "library",
  6049. "autoload": {
  6050. "psr-4": {
  6051. "Symfony\\Component\\Security\\Csrf\\": ""
  6052. },
  6053. "exclude-from-classmap": [
  6054. "/Tests/"
  6055. ]
  6056. },
  6057. "notification-url": "https://packagist.org/downloads/",
  6058. "license": [
  6059. "MIT"
  6060. ],
  6061. "authors": [
  6062. {
  6063. "name": "Fabien Potencier",
  6064. "email": "fabien@symfony.com"
  6065. },
  6066. {
  6067. "name": "Symfony Community",
  6068. "homepage": "https://symfony.com/contributors"
  6069. }
  6070. ],
  6071. "description": "Symfony Security Component - CSRF Library",
  6072. "homepage": "https://symfony.com",
  6073. "support": {
  6074. "source": "https://github.com/symfony/security-csrf/tree/v5.4.11"
  6075. },
  6076. "funding": [
  6077. {
  6078. "url": "https://symfony.com/sponsor",
  6079. "type": "custom"
  6080. },
  6081. {
  6082. "url": "https://github.com/fabpot",
  6083. "type": "github"
  6084. },
  6085. {
  6086. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6087. "type": "tidelift"
  6088. }
  6089. ],
  6090. "time": "2022-07-20T13:00:38+00:00"
  6091. },
  6092. {
  6093. "name": "symfony/security-guard",
  6094. "version": "v5.4.13",
  6095. "source": {
  6096. "type": "git",
  6097. "url": "https://github.com/symfony/security-guard.git",
  6098. "reference": "83f647fcdc17aa14908f0e02a302d3d9d0f63fbc"
  6099. },
  6100. "dist": {
  6101. "type": "zip",
  6102. "url": "https://api.github.com/repos/symfony/security-guard/zipball/83f647fcdc17aa14908f0e02a302d3d9d0f63fbc",
  6103. "reference": "83f647fcdc17aa14908f0e02a302d3d9d0f63fbc",
  6104. "shasum": ""
  6105. },
  6106. "require": {
  6107. "php": ">=7.2.5",
  6108. "symfony/polyfill-php80": "^1.15",
  6109. "symfony/security-core": "^5.0",
  6110. "symfony/security-http": "^5.3"
  6111. },
  6112. "require-dev": {
  6113. "psr/log": "^1|^2|^3"
  6114. },
  6115. "type": "library",
  6116. "autoload": {
  6117. "psr-4": {
  6118. "Symfony\\Component\\Security\\Guard\\": ""
  6119. },
  6120. "exclude-from-classmap": [
  6121. "/Tests/"
  6122. ]
  6123. },
  6124. "notification-url": "https://packagist.org/downloads/",
  6125. "license": [
  6126. "MIT"
  6127. ],
  6128. "authors": [
  6129. {
  6130. "name": "Fabien Potencier",
  6131. "email": "fabien@symfony.com"
  6132. },
  6133. {
  6134. "name": "Symfony Community",
  6135. "homepage": "https://symfony.com/contributors"
  6136. }
  6137. ],
  6138. "description": "Symfony Security Component - Guard",
  6139. "homepage": "https://symfony.com",
  6140. "support": {
  6141. "source": "https://github.com/symfony/security-guard/tree/v5.4.13"
  6142. },
  6143. "funding": [
  6144. {
  6145. "url": "https://symfony.com/sponsor",
  6146. "type": "custom"
  6147. },
  6148. {
  6149. "url": "https://github.com/fabpot",
  6150. "type": "github"
  6151. },
  6152. {
  6153. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6154. "type": "tidelift"
  6155. }
  6156. ],
  6157. "time": "2022-09-28T13:19:49+00:00"
  6158. },
  6159. {
  6160. "name": "symfony/security-http",
  6161. "version": "v5.4.13",
  6162. "source": {
  6163. "type": "git",
  6164. "url": "https://github.com/symfony/security-http.git",
  6165. "reference": "64e9926b8ab8e4460e4dfdc53dc098fed2dad837"
  6166. },
  6167. "dist": {
  6168. "type": "zip",
  6169. "url": "https://api.github.com/repos/symfony/security-http/zipball/64e9926b8ab8e4460e4dfdc53dc098fed2dad837",
  6170. "reference": "64e9926b8ab8e4460e4dfdc53dc098fed2dad837",
  6171. "shasum": ""
  6172. },
  6173. "require": {
  6174. "php": ">=7.2.5",
  6175. "symfony/deprecation-contracts": "^2.1|^3",
  6176. "symfony/http-foundation": "^5.3|^6.0",
  6177. "symfony/http-kernel": "^5.3|^6.0",
  6178. "symfony/polyfill-mbstring": "~1.0",
  6179. "symfony/polyfill-php80": "^1.16",
  6180. "symfony/property-access": "^4.4|^5.0|^6.0",
  6181. "symfony/security-core": "^5.4|^6.0"
  6182. },
  6183. "conflict": {
  6184. "symfony/event-dispatcher": "<4.3",
  6185. "symfony/security-bundle": "<5.3",
  6186. "symfony/security-csrf": "<4.4"
  6187. },
  6188. "require-dev": {
  6189. "psr/log": "^1|^2|^3",
  6190. "symfony/cache": "^4.4|^5.0|^6.0",
  6191. "symfony/rate-limiter": "^5.2|^6.0",
  6192. "symfony/routing": "^4.4|^5.0|^6.0",
  6193. "symfony/security-csrf": "^4.4|^5.0|^6.0",
  6194. "symfony/translation": "^4.4|^5.0|^6.0"
  6195. },
  6196. "suggest": {
  6197. "symfony/routing": "For using the HttpUtils class to create sub-requests, redirect the user, and match URLs",
  6198. "symfony/security-csrf": "For using tokens to protect authentication/logout attempts"
  6199. },
  6200. "type": "library",
  6201. "autoload": {
  6202. "psr-4": {
  6203. "Symfony\\Component\\Security\\Http\\": ""
  6204. },
  6205. "exclude-from-classmap": [
  6206. "/Tests/"
  6207. ]
  6208. },
  6209. "notification-url": "https://packagist.org/downloads/",
  6210. "license": [
  6211. "MIT"
  6212. ],
  6213. "authors": [
  6214. {
  6215. "name": "Fabien Potencier",
  6216. "email": "fabien@symfony.com"
  6217. },
  6218. {
  6219. "name": "Symfony Community",
  6220. "homepage": "https://symfony.com/contributors"
  6221. }
  6222. ],
  6223. "description": "Symfony Security Component - HTTP Integration",
  6224. "homepage": "https://symfony.com",
  6225. "support": {
  6226. "source": "https://github.com/symfony/security-http/tree/v5.4.13"
  6227. },
  6228. "funding": [
  6229. {
  6230. "url": "https://symfony.com/sponsor",
  6231. "type": "custom"
  6232. },
  6233. {
  6234. "url": "https://github.com/fabpot",
  6235. "type": "github"
  6236. },
  6237. {
  6238. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6239. "type": "tidelift"
  6240. }
  6241. ],
  6242. "time": "2022-09-29T19:14:22+00:00"
  6243. },
  6244. {
  6245. "name": "symfony/serializer",
  6246. "version": "v5.4.13",
  6247. "source": {
  6248. "type": "git",
  6249. "url": "https://github.com/symfony/serializer.git",
  6250. "reference": "f8c32e94c8656c17a7360d88d6d486bc8ce23b2d"
  6251. },
  6252. "dist": {
  6253. "type": "zip",
  6254. "url": "https://api.github.com/repos/symfony/serializer/zipball/f8c32e94c8656c17a7360d88d6d486bc8ce23b2d",
  6255. "reference": "f8c32e94c8656c17a7360d88d6d486bc8ce23b2d",
  6256. "shasum": ""
  6257. },
  6258. "require": {
  6259. "php": ">=7.2.5",
  6260. "symfony/deprecation-contracts": "^2.1|^3",
  6261. "symfony/polyfill-ctype": "~1.8",
  6262. "symfony/polyfill-php80": "^1.16"
  6263. },
  6264. "conflict": {
  6265. "doctrine/annotations": "<1.12",
  6266. "phpdocumentor/reflection-docblock": "<3.2.2",
  6267. "phpdocumentor/type-resolver": "<1.4.0",
  6268. "symfony/dependency-injection": "<4.4",
  6269. "symfony/property-access": "<5.4",
  6270. "symfony/property-info": "<5.3.13",
  6271. "symfony/uid": "<5.3",
  6272. "symfony/yaml": "<4.4"
  6273. },
  6274. "require-dev": {
  6275. "doctrine/annotations": "^1.12",
  6276. "phpdocumentor/reflection-docblock": "^3.2|^4.0|^5.0",
  6277. "symfony/cache": "^4.4|^5.0|^6.0",
  6278. "symfony/config": "^4.4|^5.0|^6.0",
  6279. "symfony/dependency-injection": "^4.4|^5.0|^6.0",
  6280. "symfony/error-handler": "^4.4|^5.0|^6.0",
  6281. "symfony/filesystem": "^4.4|^5.0|^6.0",
  6282. "symfony/form": "^4.4|^5.0|^6.0",
  6283. "symfony/http-foundation": "^4.4|^5.0|^6.0",
  6284. "symfony/http-kernel": "^4.4|^5.0|^6.0",
  6285. "symfony/mime": "^4.4|^5.0|^6.0",
  6286. "symfony/property-access": "^5.4|^6.0",
  6287. "symfony/property-info": "^5.3.13|^6.0",
  6288. "symfony/uid": "^5.3|^6.0",
  6289. "symfony/validator": "^4.4|^5.0|^6.0",
  6290. "symfony/var-dumper": "^4.4|^5.0|^6.0",
  6291. "symfony/var-exporter": "^4.4|^5.0|^6.0",
  6292. "symfony/yaml": "^4.4|^5.0|^6.0"
  6293. },
  6294. "suggest": {
  6295. "psr/cache-implementation": "For using the metadata cache.",
  6296. "symfony/config": "For using the XML mapping loader.",
  6297. "symfony/mime": "For using a MIME type guesser within the DataUriNormalizer.",
  6298. "symfony/property-access": "For using the ObjectNormalizer.",
  6299. "symfony/property-info": "To deserialize relations.",
  6300. "symfony/var-exporter": "For using the metadata compiler.",
  6301. "symfony/yaml": "For using the default YAML mapping loader."
  6302. },
  6303. "type": "library",
  6304. "autoload": {
  6305. "psr-4": {
  6306. "Symfony\\Component\\Serializer\\": ""
  6307. },
  6308. "exclude-from-classmap": [
  6309. "/Tests/"
  6310. ]
  6311. },
  6312. "notification-url": "https://packagist.org/downloads/",
  6313. "license": [
  6314. "MIT"
  6315. ],
  6316. "authors": [
  6317. {
  6318. "name": "Fabien Potencier",
  6319. "email": "fabien@symfony.com"
  6320. },
  6321. {
  6322. "name": "Symfony Community",
  6323. "homepage": "https://symfony.com/contributors"
  6324. }
  6325. ],
  6326. "description": "Handles serializing and deserializing data structures, including object graphs, into array structures or other formats like XML and JSON.",
  6327. "homepage": "https://symfony.com",
  6328. "support": {
  6329. "source": "https://github.com/symfony/serializer/tree/v5.4.13"
  6330. },
  6331. "funding": [
  6332. {
  6333. "url": "https://symfony.com/sponsor",
  6334. "type": "custom"
  6335. },
  6336. {
  6337. "url": "https://github.com/fabpot",
  6338. "type": "github"
  6339. },
  6340. {
  6341. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6342. "type": "tidelift"
  6343. }
  6344. ],
  6345. "time": "2022-09-29T09:26:59+00:00"
  6346. },
  6347. {
  6348. "name": "symfony/service-contracts",
  6349. "version": "v2.5.2",
  6350. "source": {
  6351. "type": "git",
  6352. "url": "https://github.com/symfony/service-contracts.git",
  6353. "reference": "4b426aac47d6427cc1a1d0f7e2ac724627f5966c"
  6354. },
  6355. "dist": {
  6356. "type": "zip",
  6357. "url": "https://api.github.com/repos/symfony/service-contracts/zipball/4b426aac47d6427cc1a1d0f7e2ac724627f5966c",
  6358. "reference": "4b426aac47d6427cc1a1d0f7e2ac724627f5966c",
  6359. "shasum": ""
  6360. },
  6361. "require": {
  6362. "php": ">=7.2.5",
  6363. "psr/container": "^1.1",
  6364. "symfony/deprecation-contracts": "^2.1|^3"
  6365. },
  6366. "conflict": {
  6367. "ext-psr": "<1.1|>=2"
  6368. },
  6369. "suggest": {
  6370. "symfony/service-implementation": ""
  6371. },
  6372. "type": "library",
  6373. "extra": {
  6374. "branch-alias": {
  6375. "dev-main": "2.5-dev"
  6376. },
  6377. "thanks": {
  6378. "name": "symfony/contracts",
  6379. "url": "https://github.com/symfony/contracts"
  6380. }
  6381. },
  6382. "autoload": {
  6383. "psr-4": {
  6384. "Symfony\\Contracts\\Service\\": ""
  6385. }
  6386. },
  6387. "notification-url": "https://packagist.org/downloads/",
  6388. "license": [
  6389. "MIT"
  6390. ],
  6391. "authors": [
  6392. {
  6393. "name": "Nicolas Grekas",
  6394. "email": "p@tchwork.com"
  6395. },
  6396. {
  6397. "name": "Symfony Community",
  6398. "homepage": "https://symfony.com/contributors"
  6399. }
  6400. ],
  6401. "description": "Generic abstractions related to writing services",
  6402. "homepage": "https://symfony.com",
  6403. "keywords": [
  6404. "abstractions",
  6405. "contracts",
  6406. "decoupling",
  6407. "interfaces",
  6408. "interoperability",
  6409. "standards"
  6410. ],
  6411. "support": {
  6412. "source": "https://github.com/symfony/service-contracts/tree/v2.5.2"
  6413. },
  6414. "funding": [
  6415. {
  6416. "url": "https://symfony.com/sponsor",
  6417. "type": "custom"
  6418. },
  6419. {
  6420. "url": "https://github.com/fabpot",
  6421. "type": "github"
  6422. },
  6423. {
  6424. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6425. "type": "tidelift"
  6426. }
  6427. ],
  6428. "time": "2022-05-30T19:17:29+00:00"
  6429. },
  6430. {
  6431. "name": "symfony/stopwatch",
  6432. "version": "v5.4.13",
  6433. "source": {
  6434. "type": "git",
  6435. "url": "https://github.com/symfony/stopwatch.git",
  6436. "reference": "6df7a3effde34d81717bbef4591e5ffe32226d69"
  6437. },
  6438. "dist": {
  6439. "type": "zip",
  6440. "url": "https://api.github.com/repos/symfony/stopwatch/zipball/6df7a3effde34d81717bbef4591e5ffe32226d69",
  6441. "reference": "6df7a3effde34d81717bbef4591e5ffe32226d69",
  6442. "shasum": ""
  6443. },
  6444. "require": {
  6445. "php": ">=7.2.5",
  6446. "symfony/service-contracts": "^1|^2|^3"
  6447. },
  6448. "type": "library",
  6449. "autoload": {
  6450. "psr-4": {
  6451. "Symfony\\Component\\Stopwatch\\": ""
  6452. },
  6453. "exclude-from-classmap": [
  6454. "/Tests/"
  6455. ]
  6456. },
  6457. "notification-url": "https://packagist.org/downloads/",
  6458. "license": [
  6459. "MIT"
  6460. ],
  6461. "authors": [
  6462. {
  6463. "name": "Fabien Potencier",
  6464. "email": "fabien@symfony.com"
  6465. },
  6466. {
  6467. "name": "Symfony Community",
  6468. "homepage": "https://symfony.com/contributors"
  6469. }
  6470. ],
  6471. "description": "Provides a way to profile code",
  6472. "homepage": "https://symfony.com",
  6473. "support": {
  6474. "source": "https://github.com/symfony/stopwatch/tree/v5.4.13"
  6475. },
  6476. "funding": [
  6477. {
  6478. "url": "https://symfony.com/sponsor",
  6479. "type": "custom"
  6480. },
  6481. {
  6482. "url": "https://github.com/fabpot",
  6483. "type": "github"
  6484. },
  6485. {
  6486. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6487. "type": "tidelift"
  6488. }
  6489. ],
  6490. "time": "2022-09-28T13:19:49+00:00"
  6491. },
  6492. {
  6493. "name": "symfony/string",
  6494. "version": "v5.4.13",
  6495. "source": {
  6496. "type": "git",
  6497. "url": "https://github.com/symfony/string.git",
  6498. "reference": "2900c668a32138a34118740de3e4d5a701801f53"
  6499. },
  6500. "dist": {
  6501. "type": "zip",
  6502. "url": "https://api.github.com/repos/symfony/string/zipball/2900c668a32138a34118740de3e4d5a701801f53",
  6503. "reference": "2900c668a32138a34118740de3e4d5a701801f53",
  6504. "shasum": ""
  6505. },
  6506. "require": {
  6507. "php": ">=7.2.5",
  6508. "symfony/polyfill-ctype": "~1.8",
  6509. "symfony/polyfill-intl-grapheme": "~1.0",
  6510. "symfony/polyfill-intl-normalizer": "~1.0",
  6511. "symfony/polyfill-mbstring": "~1.0",
  6512. "symfony/polyfill-php80": "~1.15"
  6513. },
  6514. "conflict": {
  6515. "symfony/translation-contracts": ">=3.0"
  6516. },
  6517. "require-dev": {
  6518. "symfony/error-handler": "^4.4|^5.0|^6.0",
  6519. "symfony/http-client": "^4.4|^5.0|^6.0",
  6520. "symfony/translation-contracts": "^1.1|^2",
  6521. "symfony/var-exporter": "^4.4|^5.0|^6.0"
  6522. },
  6523. "type": "library",
  6524. "autoload": {
  6525. "files": [
  6526. "Resources/functions.php"
  6527. ],
  6528. "psr-4": {
  6529. "Symfony\\Component\\String\\": ""
  6530. },
  6531. "exclude-from-classmap": [
  6532. "/Tests/"
  6533. ]
  6534. },
  6535. "notification-url": "https://packagist.org/downloads/",
  6536. "license": [
  6537. "MIT"
  6538. ],
  6539. "authors": [
  6540. {
  6541. "name": "Nicolas Grekas",
  6542. "email": "p@tchwork.com"
  6543. },
  6544. {
  6545. "name": "Symfony Community",
  6546. "homepage": "https://symfony.com/contributors"
  6547. }
  6548. ],
  6549. "description": "Provides an object-oriented API to strings and deals with bytes, UTF-8 code points and grapheme clusters in a unified way",
  6550. "homepage": "https://symfony.com",
  6551. "keywords": [
  6552. "grapheme",
  6553. "i18n",
  6554. "string",
  6555. "unicode",
  6556. "utf-8",
  6557. "utf8"
  6558. ],
  6559. "support": {
  6560. "source": "https://github.com/symfony/string/tree/v5.4.13"
  6561. },
  6562. "funding": [
  6563. {
  6564. "url": "https://symfony.com/sponsor",
  6565. "type": "custom"
  6566. },
  6567. {
  6568. "url": "https://github.com/fabpot",
  6569. "type": "github"
  6570. },
  6571. {
  6572. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6573. "type": "tidelift"
  6574. }
  6575. ],
  6576. "time": "2022-09-01T01:52:16+00:00"
  6577. },
  6578. {
  6579. "name": "symfony/translation",
  6580. "version": "v5.4.12",
  6581. "source": {
  6582. "type": "git",
  6583. "url": "https://github.com/symfony/translation.git",
  6584. "reference": "42ecc77eb4f229ce2df702a648ec93b8478d76ae"
  6585. },
  6586. "dist": {
  6587. "type": "zip",
  6588. "url": "https://api.github.com/repos/symfony/translation/zipball/42ecc77eb4f229ce2df702a648ec93b8478d76ae",
  6589. "reference": "42ecc77eb4f229ce2df702a648ec93b8478d76ae",
  6590. "shasum": ""
  6591. },
  6592. "require": {
  6593. "php": ">=7.2.5",
  6594. "symfony/deprecation-contracts": "^2.1|^3",
  6595. "symfony/polyfill-mbstring": "~1.0",
  6596. "symfony/polyfill-php80": "^1.16",
  6597. "symfony/translation-contracts": "^2.3"
  6598. },
  6599. "conflict": {
  6600. "symfony/config": "<4.4",
  6601. "symfony/console": "<5.3",
  6602. "symfony/dependency-injection": "<5.0",
  6603. "symfony/http-kernel": "<5.0",
  6604. "symfony/twig-bundle": "<5.0",
  6605. "symfony/yaml": "<4.4"
  6606. },
  6607. "provide": {
  6608. "symfony/translation-implementation": "2.3"
  6609. },
  6610. "require-dev": {
  6611. "psr/log": "^1|^2|^3",
  6612. "symfony/config": "^4.4|^5.0|^6.0",
  6613. "symfony/console": "^5.4|^6.0",
  6614. "symfony/dependency-injection": "^5.0|^6.0",
  6615. "symfony/finder": "^4.4|^5.0|^6.0",
  6616. "symfony/http-client-contracts": "^1.1|^2.0|^3.0",
  6617. "symfony/http-kernel": "^5.0|^6.0",
  6618. "symfony/intl": "^4.4|^5.0|^6.0",
  6619. "symfony/polyfill-intl-icu": "^1.21",
  6620. "symfony/service-contracts": "^1.1.2|^2|^3",
  6621. "symfony/yaml": "^4.4|^5.0|^6.0"
  6622. },
  6623. "suggest": {
  6624. "psr/log-implementation": "To use logging capability in translator",
  6625. "symfony/config": "",
  6626. "symfony/yaml": ""
  6627. },
  6628. "type": "library",
  6629. "autoload": {
  6630. "files": [
  6631. "Resources/functions.php"
  6632. ],
  6633. "psr-4": {
  6634. "Symfony\\Component\\Translation\\": ""
  6635. },
  6636. "exclude-from-classmap": [
  6637. "/Tests/"
  6638. ]
  6639. },
  6640. "notification-url": "https://packagist.org/downloads/",
  6641. "license": [
  6642. "MIT"
  6643. ],
  6644. "authors": [
  6645. {
  6646. "name": "Fabien Potencier",
  6647. "email": "fabien@symfony.com"
  6648. },
  6649. {
  6650. "name": "Symfony Community",
  6651. "homepage": "https://symfony.com/contributors"
  6652. }
  6653. ],
  6654. "description": "Provides tools to internationalize your application",
  6655. "homepage": "https://symfony.com",
  6656. "support": {
  6657. "source": "https://github.com/symfony/translation/tree/v5.4.12"
  6658. },
  6659. "funding": [
  6660. {
  6661. "url": "https://symfony.com/sponsor",
  6662. "type": "custom"
  6663. },
  6664. {
  6665. "url": "https://github.com/fabpot",
  6666. "type": "github"
  6667. },
  6668. {
  6669. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6670. "type": "tidelift"
  6671. }
  6672. ],
  6673. "time": "2022-08-02T15:52:22+00:00"
  6674. },
  6675. {
  6676. "name": "symfony/translation-contracts",
  6677. "version": "v2.5.2",
  6678. "source": {
  6679. "type": "git",
  6680. "url": "https://github.com/symfony/translation-contracts.git",
  6681. "reference": "136b19dd05cdf0709db6537d058bcab6dd6e2dbe"
  6682. },
  6683. "dist": {
  6684. "type": "zip",
  6685. "url": "https://api.github.com/repos/symfony/translation-contracts/zipball/136b19dd05cdf0709db6537d058bcab6dd6e2dbe",
  6686. "reference": "136b19dd05cdf0709db6537d058bcab6dd6e2dbe",
  6687. "shasum": ""
  6688. },
  6689. "require": {
  6690. "php": ">=7.2.5"
  6691. },
  6692. "suggest": {
  6693. "symfony/translation-implementation": ""
  6694. },
  6695. "type": "library",
  6696. "extra": {
  6697. "branch-alias": {
  6698. "dev-main": "2.5-dev"
  6699. },
  6700. "thanks": {
  6701. "name": "symfony/contracts",
  6702. "url": "https://github.com/symfony/contracts"
  6703. }
  6704. },
  6705. "autoload": {
  6706. "psr-4": {
  6707. "Symfony\\Contracts\\Translation\\": ""
  6708. }
  6709. },
  6710. "notification-url": "https://packagist.org/downloads/",
  6711. "license": [
  6712. "MIT"
  6713. ],
  6714. "authors": [
  6715. {
  6716. "name": "Nicolas Grekas",
  6717. "email": "p@tchwork.com"
  6718. },
  6719. {
  6720. "name": "Symfony Community",
  6721. "homepage": "https://symfony.com/contributors"
  6722. }
  6723. ],
  6724. "description": "Generic abstractions related to translation",
  6725. "homepage": "https://symfony.com",
  6726. "keywords": [
  6727. "abstractions",
  6728. "contracts",
  6729. "decoupling",
  6730. "interfaces",
  6731. "interoperability",
  6732. "standards"
  6733. ],
  6734. "support": {
  6735. "source": "https://github.com/symfony/translation-contracts/tree/v2.5.2"
  6736. },
  6737. "funding": [
  6738. {
  6739. "url": "https://symfony.com/sponsor",
  6740. "type": "custom"
  6741. },
  6742. {
  6743. "url": "https://github.com/fabpot",
  6744. "type": "github"
  6745. },
  6746. {
  6747. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6748. "type": "tidelift"
  6749. }
  6750. ],
  6751. "time": "2022-06-27T16:58:25+00:00"
  6752. },
  6753. {
  6754. "name": "symfony/twig-bridge",
  6755. "version": "v5.4.12",
  6756. "source": {
  6757. "type": "git",
  6758. "url": "https://github.com/symfony/twig-bridge.git",
  6759. "reference": "94c3b38514c953e3e84719c96d4e578a01ca1819"
  6760. },
  6761. "dist": {
  6762. "type": "zip",
  6763. "url": "https://api.github.com/repos/symfony/twig-bridge/zipball/94c3b38514c953e3e84719c96d4e578a01ca1819",
  6764. "reference": "94c3b38514c953e3e84719c96d4e578a01ca1819",
  6765. "shasum": ""
  6766. },
  6767. "require": {
  6768. "php": ">=7.2.5",
  6769. "symfony/polyfill-php80": "^1.16",
  6770. "symfony/translation-contracts": "^1.1|^2|^3",
  6771. "twig/twig": "^2.13|^3.0.4"
  6772. },
  6773. "conflict": {
  6774. "phpdocumentor/reflection-docblock": "<3.2.2",
  6775. "phpdocumentor/type-resolver": "<1.4.0",
  6776. "symfony/console": "<5.3",
  6777. "symfony/form": "<5.3",
  6778. "symfony/http-foundation": "<5.3",
  6779. "symfony/http-kernel": "<4.4",
  6780. "symfony/translation": "<5.2",
  6781. "symfony/workflow": "<5.2"
  6782. },
  6783. "require-dev": {
  6784. "doctrine/annotations": "^1.12",
  6785. "egulias/email-validator": "^2.1.10|^3",
  6786. "phpdocumentor/reflection-docblock": "^3.0|^4.0|^5.0",
  6787. "symfony/asset": "^4.4|^5.0|^6.0",
  6788. "symfony/console": "^5.3|^6.0",
  6789. "symfony/dependency-injection": "^4.4|^5.0|^6.0",
  6790. "symfony/expression-language": "^4.4|^5.0|^6.0",
  6791. "symfony/finder": "^4.4|^5.0|^6.0",
  6792. "symfony/form": "^5.3|^6.0",
  6793. "symfony/http-foundation": "^5.3|^6.0",
  6794. "symfony/http-kernel": "^4.4|^5.0|^6.0",
  6795. "symfony/intl": "^4.4|^5.0|^6.0",
  6796. "symfony/mime": "^5.2|^6.0",
  6797. "symfony/polyfill-intl-icu": "~1.0",
  6798. "symfony/property-info": "^4.4|^5.1|^6.0",
  6799. "symfony/routing": "^4.4|^5.0|^6.0",
  6800. "symfony/security-acl": "^2.8|^3.0",
  6801. "symfony/security-core": "^4.4|^5.0|^6.0",
  6802. "symfony/security-csrf": "^4.4|^5.0|^6.0",
  6803. "symfony/security-http": "^4.4|^5.0|^6.0",
  6804. "symfony/serializer": "^5.2|^6.0",
  6805. "symfony/stopwatch": "^4.4|^5.0|^6.0",
  6806. "symfony/translation": "^5.2|^6.0",
  6807. "symfony/web-link": "^4.4|^5.0|^6.0",
  6808. "symfony/workflow": "^5.2|^6.0",
  6809. "symfony/yaml": "^4.4|^5.0|^6.0",
  6810. "twig/cssinliner-extra": "^2.12|^3",
  6811. "twig/inky-extra": "^2.12|^3",
  6812. "twig/markdown-extra": "^2.12|^3"
  6813. },
  6814. "suggest": {
  6815. "symfony/asset": "For using the AssetExtension",
  6816. "symfony/expression-language": "For using the ExpressionExtension",
  6817. "symfony/finder": "",
  6818. "symfony/form": "For using the FormExtension",
  6819. "symfony/http-kernel": "For using the HttpKernelExtension",
  6820. "symfony/routing": "For using the RoutingExtension",
  6821. "symfony/security-core": "For using the SecurityExtension",
  6822. "symfony/security-csrf": "For using the CsrfExtension",
  6823. "symfony/security-http": "For using the LogoutUrlExtension",
  6824. "symfony/stopwatch": "For using the StopwatchExtension",
  6825. "symfony/translation": "For using the TranslationExtension",
  6826. "symfony/var-dumper": "For using the DumpExtension",
  6827. "symfony/web-link": "For using the WebLinkExtension",
  6828. "symfony/yaml": "For using the YamlExtension"
  6829. },
  6830. "type": "symfony-bridge",
  6831. "autoload": {
  6832. "psr-4": {
  6833. "Symfony\\Bridge\\Twig\\": ""
  6834. },
  6835. "exclude-from-classmap": [
  6836. "/Tests/"
  6837. ]
  6838. },
  6839. "notification-url": "https://packagist.org/downloads/",
  6840. "license": [
  6841. "MIT"
  6842. ],
  6843. "authors": [
  6844. {
  6845. "name": "Fabien Potencier",
  6846. "email": "fabien@symfony.com"
  6847. },
  6848. {
  6849. "name": "Symfony Community",
  6850. "homepage": "https://symfony.com/contributors"
  6851. }
  6852. ],
  6853. "description": "Provides integration for Twig with various Symfony components",
  6854. "homepage": "https://symfony.com",
  6855. "support": {
  6856. "source": "https://github.com/symfony/twig-bridge/tree/v5.4.12"
  6857. },
  6858. "funding": [
  6859. {
  6860. "url": "https://symfony.com/sponsor",
  6861. "type": "custom"
  6862. },
  6863. {
  6864. "url": "https://github.com/fabpot",
  6865. "type": "github"
  6866. },
  6867. {
  6868. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6869. "type": "tidelift"
  6870. }
  6871. ],
  6872. "time": "2022-08-03T13:09:21+00:00"
  6873. },
  6874. {
  6875. "name": "symfony/twig-bundle",
  6876. "version": "v5.4.8",
  6877. "source": {
  6878. "type": "git",
  6879. "url": "https://github.com/symfony/twig-bundle.git",
  6880. "reference": "c992b4474c3a31f3c40a1ca593d213833f91b818"
  6881. },
  6882. "dist": {
  6883. "type": "zip",
  6884. "url": "https://api.github.com/repos/symfony/twig-bundle/zipball/c992b4474c3a31f3c40a1ca593d213833f91b818",
  6885. "reference": "c992b4474c3a31f3c40a1ca593d213833f91b818",
  6886. "shasum": ""
  6887. },
  6888. "require": {
  6889. "php": ">=7.2.5",
  6890. "symfony/config": "^4.4|^5.0|^6.0",
  6891. "symfony/http-foundation": "^4.4|^5.0|^6.0",
  6892. "symfony/http-kernel": "^5.0|^6.0",
  6893. "symfony/polyfill-ctype": "~1.8",
  6894. "symfony/polyfill-php80": "^1.16",
  6895. "symfony/twig-bridge": "^5.3|^6.0",
  6896. "twig/twig": "^2.13|^3.0.4"
  6897. },
  6898. "conflict": {
  6899. "symfony/dependency-injection": "<5.3",
  6900. "symfony/framework-bundle": "<5.0",
  6901. "symfony/service-contracts": ">=3.0",
  6902. "symfony/translation": "<5.0"
  6903. },
  6904. "require-dev": {
  6905. "doctrine/annotations": "^1.10.4",
  6906. "doctrine/cache": "^1.0|^2.0",
  6907. "symfony/asset": "^4.4|^5.0|^6.0",
  6908. "symfony/dependency-injection": "^5.3|^6.0",
  6909. "symfony/expression-language": "^4.4|^5.0|^6.0",
  6910. "symfony/finder": "^4.4|^5.0|^6.0",
  6911. "symfony/form": "^4.4|^5.0|^6.0",
  6912. "symfony/framework-bundle": "^5.0|^6.0",
  6913. "symfony/routing": "^4.4|^5.0|^6.0",
  6914. "symfony/stopwatch": "^4.4|^5.0|^6.0",
  6915. "symfony/translation": "^5.0|^6.0",
  6916. "symfony/web-link": "^4.4|^5.0|^6.0",
  6917. "symfony/yaml": "^4.4|^5.0|^6.0"
  6918. },
  6919. "type": "symfony-bundle",
  6920. "autoload": {
  6921. "psr-4": {
  6922. "Symfony\\Bundle\\TwigBundle\\": ""
  6923. },
  6924. "exclude-from-classmap": [
  6925. "/Tests/"
  6926. ]
  6927. },
  6928. "notification-url": "https://packagist.org/downloads/",
  6929. "license": [
  6930. "MIT"
  6931. ],
  6932. "authors": [
  6933. {
  6934. "name": "Fabien Potencier",
  6935. "email": "fabien@symfony.com"
  6936. },
  6937. {
  6938. "name": "Symfony Community",
  6939. "homepage": "https://symfony.com/contributors"
  6940. }
  6941. ],
  6942. "description": "Provides a tight integration of Twig into the Symfony full-stack framework",
  6943. "homepage": "https://symfony.com",
  6944. "support": {
  6945. "source": "https://github.com/symfony/twig-bundle/tree/v5.4.8"
  6946. },
  6947. "funding": [
  6948. {
  6949. "url": "https://symfony.com/sponsor",
  6950. "type": "custom"
  6951. },
  6952. {
  6953. "url": "https://github.com/fabpot",
  6954. "type": "github"
  6955. },
  6956. {
  6957. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6958. "type": "tidelift"
  6959. }
  6960. ],
  6961. "time": "2022-04-03T13:03:10+00:00"
  6962. },
  6963. {
  6964. "name": "symfony/validator",
  6965. "version": "v5.4.13",
  6966. "source": {
  6967. "type": "git",
  6968. "url": "https://github.com/symfony/validator.git",
  6969. "reference": "8fba40ed3c21054cb9a543ccecd4f3175b6a011b"
  6970. },
  6971. "dist": {
  6972. "type": "zip",
  6973. "url": "https://api.github.com/repos/symfony/validator/zipball/8fba40ed3c21054cb9a543ccecd4f3175b6a011b",
  6974. "reference": "8fba40ed3c21054cb9a543ccecd4f3175b6a011b",
  6975. "shasum": ""
  6976. },
  6977. "require": {
  6978. "php": ">=7.2.5",
  6979. "symfony/deprecation-contracts": "^2.1|^3",
  6980. "symfony/polyfill-ctype": "~1.8",
  6981. "symfony/polyfill-mbstring": "~1.0",
  6982. "symfony/polyfill-php73": "~1.0",
  6983. "symfony/polyfill-php80": "^1.16",
  6984. "symfony/polyfill-php81": "^1.22",
  6985. "symfony/translation-contracts": "^1.1|^2|^3"
  6986. },
  6987. "conflict": {
  6988. "doctrine/annotations": "<1.13",
  6989. "doctrine/cache": "<1.11",
  6990. "doctrine/lexer": "<1.1",
  6991. "phpunit/phpunit": "<5.4.3",
  6992. "symfony/dependency-injection": "<4.4",
  6993. "symfony/expression-language": "<5.1",
  6994. "symfony/http-kernel": "<4.4",
  6995. "symfony/intl": "<4.4",
  6996. "symfony/property-info": "<5.3",
  6997. "symfony/translation": "<4.4",
  6998. "symfony/yaml": "<4.4"
  6999. },
  7000. "require-dev": {
  7001. "doctrine/annotations": "^1.13",
  7002. "doctrine/cache": "^1.11|^2.0",
  7003. "egulias/email-validator": "^2.1.10|^3",
  7004. "symfony/cache": "^4.4|^5.0|^6.0",
  7005. "symfony/config": "^4.4|^5.0|^6.0",
  7006. "symfony/console": "^4.4|^5.0|^6.0",
  7007. "symfony/dependency-injection": "^4.4|^5.0|^6.0",
  7008. "symfony/expression-language": "^5.1|^6.0",
  7009. "symfony/finder": "^4.4|^5.0|^6.0",
  7010. "symfony/http-client": "^4.4|^5.0|^6.0",
  7011. "symfony/http-foundation": "^4.4|^5.0|^6.0",
  7012. "symfony/http-kernel": "^4.4|^5.0|^6.0",
  7013. "symfony/intl": "^4.4|^5.0|^6.0",
  7014. "symfony/mime": "^4.4|^5.0|^6.0",
  7015. "symfony/property-access": "^4.4|^5.0|^6.0",
  7016. "symfony/property-info": "^5.3|^6.0",
  7017. "symfony/translation": "^4.4|^5.0|^6.0",
  7018. "symfony/yaml": "^4.4|^5.0|^6.0"
  7019. },
  7020. "suggest": {
  7021. "egulias/email-validator": "Strict (RFC compliant) email validation",
  7022. "psr/cache-implementation": "For using the mapping cache.",
  7023. "symfony/config": "",
  7024. "symfony/expression-language": "For using the Expression validator and the ExpressionLanguageSyntax constraints",
  7025. "symfony/http-foundation": "",
  7026. "symfony/intl": "",
  7027. "symfony/property-access": "For accessing properties within comparison constraints",
  7028. "symfony/property-info": "To automatically add NotNull and Type constraints",
  7029. "symfony/translation": "For translating validation errors.",
  7030. "symfony/yaml": ""
  7031. },
  7032. "type": "library",
  7033. "autoload": {
  7034. "psr-4": {
  7035. "Symfony\\Component\\Validator\\": ""
  7036. },
  7037. "exclude-from-classmap": [
  7038. "/Tests/"
  7039. ]
  7040. },
  7041. "notification-url": "https://packagist.org/downloads/",
  7042. "license": [
  7043. "MIT"
  7044. ],
  7045. "authors": [
  7046. {
  7047. "name": "Fabien Potencier",
  7048. "email": "fabien@symfony.com"
  7049. },
  7050. {
  7051. "name": "Symfony Community",
  7052. "homepage": "https://symfony.com/contributors"
  7053. }
  7054. ],
  7055. "description": "Provides tools to validate values",
  7056. "homepage": "https://symfony.com",
  7057. "support": {
  7058. "source": "https://github.com/symfony/validator/tree/v5.4.13"
  7059. },
  7060. "funding": [
  7061. {
  7062. "url": "https://symfony.com/sponsor",
  7063. "type": "custom"
  7064. },
  7065. {
  7066. "url": "https://github.com/fabpot",
  7067. "type": "github"
  7068. },
  7069. {
  7070. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7071. "type": "tidelift"
  7072. }
  7073. ],
  7074. "time": "2022-09-17T07:31:22+00:00"
  7075. },
  7076. {
  7077. "name": "symfony/var-dumper",
  7078. "version": "v5.4.13",
  7079. "source": {
  7080. "type": "git",
  7081. "url": "https://github.com/symfony/var-dumper.git",
  7082. "reference": "2bf2ccab581bec363191672f0df40e0c85569e1c"
  7083. },
  7084. "dist": {
  7085. "type": "zip",
  7086. "url": "https://api.github.com/repos/symfony/var-dumper/zipball/2bf2ccab581bec363191672f0df40e0c85569e1c",
  7087. "reference": "2bf2ccab581bec363191672f0df40e0c85569e1c",
  7088. "shasum": ""
  7089. },
  7090. "require": {
  7091. "php": ">=7.2.5",
  7092. "symfony/polyfill-mbstring": "~1.0",
  7093. "symfony/polyfill-php80": "^1.16"
  7094. },
  7095. "conflict": {
  7096. "phpunit/phpunit": "<5.4.3",
  7097. "symfony/console": "<4.4"
  7098. },
  7099. "require-dev": {
  7100. "ext-iconv": "*",
  7101. "symfony/console": "^4.4|^5.0|^6.0",
  7102. "symfony/process": "^4.4|^5.0|^6.0",
  7103. "symfony/uid": "^5.1|^6.0",
  7104. "twig/twig": "^2.13|^3.0.4"
  7105. },
  7106. "suggest": {
  7107. "ext-iconv": "To convert non-UTF-8 strings to UTF-8 (or symfony/polyfill-iconv in case ext-iconv cannot be used).",
  7108. "ext-intl": "To show region name in time zone dump",
  7109. "symfony/console": "To use the ServerDumpCommand and/or the bin/var-dump-server script"
  7110. },
  7111. "bin": [
  7112. "Resources/bin/var-dump-server"
  7113. ],
  7114. "type": "library",
  7115. "autoload": {
  7116. "files": [
  7117. "Resources/functions/dump.php"
  7118. ],
  7119. "psr-4": {
  7120. "Symfony\\Component\\VarDumper\\": ""
  7121. },
  7122. "exclude-from-classmap": [
  7123. "/Tests/"
  7124. ]
  7125. },
  7126. "notification-url": "https://packagist.org/downloads/",
  7127. "license": [
  7128. "MIT"
  7129. ],
  7130. "authors": [
  7131. {
  7132. "name": "Nicolas Grekas",
  7133. "email": "p@tchwork.com"
  7134. },
  7135. {
  7136. "name": "Symfony Community",
  7137. "homepage": "https://symfony.com/contributors"
  7138. }
  7139. ],
  7140. "description": "Provides mechanisms for walking through any arbitrary PHP variable",
  7141. "homepage": "https://symfony.com",
  7142. "keywords": [
  7143. "debug",
  7144. "dump"
  7145. ],
  7146. "support": {
  7147. "source": "https://github.com/symfony/var-dumper/tree/v5.4.13"
  7148. },
  7149. "funding": [
  7150. {
  7151. "url": "https://symfony.com/sponsor",
  7152. "type": "custom"
  7153. },
  7154. {
  7155. "url": "https://github.com/fabpot",
  7156. "type": "github"
  7157. },
  7158. {
  7159. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7160. "type": "tidelift"
  7161. }
  7162. ],
  7163. "time": "2022-09-06T13:23:31+00:00"
  7164. },
  7165. {
  7166. "name": "symfony/var-exporter",
  7167. "version": "v5.4.10",
  7168. "source": {
  7169. "type": "git",
  7170. "url": "https://github.com/symfony/var-exporter.git",
  7171. "reference": "8fc03ee75eeece3d9be1ef47d26d79bea1afb340"
  7172. },
  7173. "dist": {
  7174. "type": "zip",
  7175. "url": "https://api.github.com/repos/symfony/var-exporter/zipball/8fc03ee75eeece3d9be1ef47d26d79bea1afb340",
  7176. "reference": "8fc03ee75eeece3d9be1ef47d26d79bea1afb340",
  7177. "shasum": ""
  7178. },
  7179. "require": {
  7180. "php": ">=7.2.5",
  7181. "symfony/polyfill-php80": "^1.16"
  7182. },
  7183. "require-dev": {
  7184. "symfony/var-dumper": "^4.4.9|^5.0.9|^6.0"
  7185. },
  7186. "type": "library",
  7187. "autoload": {
  7188. "psr-4": {
  7189. "Symfony\\Component\\VarExporter\\": ""
  7190. },
  7191. "exclude-from-classmap": [
  7192. "/Tests/"
  7193. ]
  7194. },
  7195. "notification-url": "https://packagist.org/downloads/",
  7196. "license": [
  7197. "MIT"
  7198. ],
  7199. "authors": [
  7200. {
  7201. "name": "Nicolas Grekas",
  7202. "email": "p@tchwork.com"
  7203. },
  7204. {
  7205. "name": "Symfony Community",
  7206. "homepage": "https://symfony.com/contributors"
  7207. }
  7208. ],
  7209. "description": "Allows exporting any serializable PHP data structure to plain PHP code",
  7210. "homepage": "https://symfony.com",
  7211. "keywords": [
  7212. "clone",
  7213. "construct",
  7214. "export",
  7215. "hydrate",
  7216. "instantiate",
  7217. "serialize"
  7218. ],
  7219. "support": {
  7220. "source": "https://github.com/symfony/var-exporter/tree/v5.4.10"
  7221. },
  7222. "funding": [
  7223. {
  7224. "url": "https://symfony.com/sponsor",
  7225. "type": "custom"
  7226. },
  7227. {
  7228. "url": "https://github.com/fabpot",
  7229. "type": "github"
  7230. },
  7231. {
  7232. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7233. "type": "tidelift"
  7234. }
  7235. ],
  7236. "time": "2022-05-27T12:56:18+00:00"
  7237. },
  7238. {
  7239. "name": "symfony/web-link",
  7240. "version": "v5.4.3",
  7241. "source": {
  7242. "type": "git",
  7243. "url": "https://github.com/symfony/web-link.git",
  7244. "reference": "8b9b073390359549fec5f5d797f23bbe9e2997a5"
  7245. },
  7246. "dist": {
  7247. "type": "zip",
  7248. "url": "https://api.github.com/repos/symfony/web-link/zipball/8b9b073390359549fec5f5d797f23bbe9e2997a5",
  7249. "reference": "8b9b073390359549fec5f5d797f23bbe9e2997a5",
  7250. "shasum": ""
  7251. },
  7252. "require": {
  7253. "php": ">=7.2.5",
  7254. "psr/link": "^1.0",
  7255. "symfony/polyfill-php80": "^1.16"
  7256. },
  7257. "conflict": {
  7258. "symfony/http-kernel": "<5.3"
  7259. },
  7260. "provide": {
  7261. "psr/link-implementation": "1.0"
  7262. },
  7263. "require-dev": {
  7264. "symfony/http-kernel": "^5.3|^6.0"
  7265. },
  7266. "suggest": {
  7267. "symfony/http-kernel": ""
  7268. },
  7269. "type": "library",
  7270. "autoload": {
  7271. "psr-4": {
  7272. "Symfony\\Component\\WebLink\\": ""
  7273. },
  7274. "exclude-from-classmap": [
  7275. "/Tests/"
  7276. ]
  7277. },
  7278. "notification-url": "https://packagist.org/downloads/",
  7279. "license": [
  7280. "MIT"
  7281. ],
  7282. "authors": [
  7283. {
  7284. "name": "Kévin Dunglas",
  7285. "email": "dunglas@gmail.com"
  7286. },
  7287. {
  7288. "name": "Symfony Community",
  7289. "homepage": "https://symfony.com/contributors"
  7290. }
  7291. ],
  7292. "description": "Manages links between resources",
  7293. "homepage": "https://symfony.com",
  7294. "keywords": [
  7295. "dns-prefetch",
  7296. "http",
  7297. "http2",
  7298. "link",
  7299. "performance",
  7300. "prefetch",
  7301. "preload",
  7302. "prerender",
  7303. "psr13",
  7304. "push"
  7305. ],
  7306. "support": {
  7307. "source": "https://github.com/symfony/web-link/tree/v5.4.3"
  7308. },
  7309. "funding": [
  7310. {
  7311. "url": "https://symfony.com/sponsor",
  7312. "type": "custom"
  7313. },
  7314. {
  7315. "url": "https://github.com/fabpot",
  7316. "type": "github"
  7317. },
  7318. {
  7319. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7320. "type": "tidelift"
  7321. }
  7322. ],
  7323. "time": "2022-01-02T09:53:40+00:00"
  7324. },
  7325. {
  7326. "name": "symfony/webpack-encore-bundle",
  7327. "version": "v1.15.1",
  7328. "source": {
  7329. "type": "git",
  7330. "url": "https://github.com/symfony/webpack-encore-bundle.git",
  7331. "reference": "718673b1e758533614190ae74d07305a72bc66a9"
  7332. },
  7333. "dist": {
  7334. "type": "zip",
  7335. "url": "https://api.github.com/repos/symfony/webpack-encore-bundle/zipball/718673b1e758533614190ae74d07305a72bc66a9",
  7336. "reference": "718673b1e758533614190ae74d07305a72bc66a9",
  7337. "shasum": ""
  7338. },
  7339. "require": {
  7340. "php": ">=7.1.3",
  7341. "symfony/asset": "^4.4 || ^5.0 || ^6.0",
  7342. "symfony/config": "^4.4 || ^5.0 || ^6.0",
  7343. "symfony/dependency-injection": "^4.4 || ^5.0 || ^6.0",
  7344. "symfony/deprecation-contracts": "^2.1 || ^3.0",
  7345. "symfony/http-kernel": "^4.4 || ^5.0 || ^6.0",
  7346. "symfony/polyfill-php80": "^1.25.0",
  7347. "symfony/service-contracts": "^1.0 || ^2.0 || ^3.0"
  7348. },
  7349. "require-dev": {
  7350. "symfony/framework-bundle": "^4.4 || ^5.0 || ^6.0",
  7351. "symfony/phpunit-bridge": "^5.3 || ^6.0",
  7352. "symfony/twig-bundle": "^4.4 || ^5.0 || ^6.0",
  7353. "symfony/web-link": "^4.4 || ^5.0 || ^6.0"
  7354. },
  7355. "type": "symfony-bundle",
  7356. "extra": {
  7357. "thanks": {
  7358. "name": "symfony/webpack-encore",
  7359. "url": "https://github.com/symfony/webpack-encore"
  7360. }
  7361. },
  7362. "autoload": {
  7363. "psr-4": {
  7364. "Symfony\\WebpackEncoreBundle\\": "src"
  7365. }
  7366. },
  7367. "notification-url": "https://packagist.org/downloads/",
  7368. "license": [
  7369. "MIT"
  7370. ],
  7371. "authors": [
  7372. {
  7373. "name": "Symfony Community",
  7374. "homepage": "https://symfony.com/contributors"
  7375. }
  7376. ],
  7377. "description": "Integration with your Symfony app & Webpack Encore!",
  7378. "support": {
  7379. "issues": "https://github.com/symfony/webpack-encore-bundle/issues",
  7380. "source": "https://github.com/symfony/webpack-encore-bundle/tree/v1.15.1"
  7381. },
  7382. "funding": [
  7383. {
  7384. "url": "https://symfony.com/sponsor",
  7385. "type": "custom"
  7386. },
  7387. {
  7388. "url": "https://github.com/fabpot",
  7389. "type": "github"
  7390. },
  7391. {
  7392. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7393. "type": "tidelift"
  7394. }
  7395. ],
  7396. "time": "2022-07-13T17:07:35+00:00"
  7397. },
  7398. {
  7399. "name": "symfony/yaml",
  7400. "version": "v5.4.12",
  7401. "source": {
  7402. "type": "git",
  7403. "url": "https://github.com/symfony/yaml.git",
  7404. "reference": "7a3aa21ac8ab1a96cc6de5bbcab4bc9fc943b18c"
  7405. },
  7406. "dist": {
  7407. "type": "zip",
  7408. "url": "https://api.github.com/repos/symfony/yaml/zipball/7a3aa21ac8ab1a96cc6de5bbcab4bc9fc943b18c",
  7409. "reference": "7a3aa21ac8ab1a96cc6de5bbcab4bc9fc943b18c",
  7410. "shasum": ""
  7411. },
  7412. "require": {
  7413. "php": ">=7.2.5",
  7414. "symfony/deprecation-contracts": "^2.1|^3",
  7415. "symfony/polyfill-ctype": "^1.8"
  7416. },
  7417. "conflict": {
  7418. "symfony/console": "<5.3"
  7419. },
  7420. "require-dev": {
  7421. "symfony/console": "^5.3|^6.0"
  7422. },
  7423. "suggest": {
  7424. "symfony/console": "For validating YAML files using the lint command"
  7425. },
  7426. "bin": [
  7427. "Resources/bin/yaml-lint"
  7428. ],
  7429. "type": "library",
  7430. "autoload": {
  7431. "psr-4": {
  7432. "Symfony\\Component\\Yaml\\": ""
  7433. },
  7434. "exclude-from-classmap": [
  7435. "/Tests/"
  7436. ]
  7437. },
  7438. "notification-url": "https://packagist.org/downloads/",
  7439. "license": [
  7440. "MIT"
  7441. ],
  7442. "authors": [
  7443. {
  7444. "name": "Fabien Potencier",
  7445. "email": "fabien@symfony.com"
  7446. },
  7447. {
  7448. "name": "Symfony Community",
  7449. "homepage": "https://symfony.com/contributors"
  7450. }
  7451. ],
  7452. "description": "Loads and dumps YAML files",
  7453. "homepage": "https://symfony.com",
  7454. "support": {
  7455. "source": "https://github.com/symfony/yaml/tree/v5.4.12"
  7456. },
  7457. "funding": [
  7458. {
  7459. "url": "https://symfony.com/sponsor",
  7460. "type": "custom"
  7461. },
  7462. {
  7463. "url": "https://github.com/fabpot",
  7464. "type": "github"
  7465. },
  7466. {
  7467. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7468. "type": "tidelift"
  7469. }
  7470. ],
  7471. "time": "2022-08-02T15:52:22+00:00"
  7472. },
  7473. {
  7474. "name": "twig/extra-bundle",
  7475. "version": "v3.4.0",
  7476. "source": {
  7477. "type": "git",
  7478. "url": "https://github.com/twigphp/twig-extra-bundle.git",
  7479. "reference": "2e58256b0e9fe52f30149347c0547e4633304765"
  7480. },
  7481. "dist": {
  7482. "type": "zip",
  7483. "url": "https://api.github.com/repos/twigphp/twig-extra-bundle/zipball/2e58256b0e9fe52f30149347c0547e4633304765",
  7484. "reference": "2e58256b0e9fe52f30149347c0547e4633304765",
  7485. "shasum": ""
  7486. },
  7487. "require": {
  7488. "php": ">=7.2.5",
  7489. "symfony/framework-bundle": "^4.4|^5.0|^6.0",
  7490. "symfony/twig-bundle": "^4.4|^5.0|^6.0",
  7491. "twig/twig": "^2.7|^3.0"
  7492. },
  7493. "require-dev": {
  7494. "league/commonmark": "^1.0|^2.0",
  7495. "symfony/phpunit-bridge": "^4.4.9|^5.0.9|^6.0",
  7496. "twig/cache-extra": "^3.0",
  7497. "twig/cssinliner-extra": "^2.12|^3.0",
  7498. "twig/html-extra": "^2.12|^3.0",
  7499. "twig/inky-extra": "^2.12|^3.0",
  7500. "twig/intl-extra": "^2.12|^3.0",
  7501. "twig/markdown-extra": "^2.12|^3.0",
  7502. "twig/string-extra": "^2.12|^3.0"
  7503. },
  7504. "type": "symfony-bundle",
  7505. "extra": {
  7506. "branch-alias": {
  7507. "dev-master": "3.2-dev"
  7508. }
  7509. },
  7510. "autoload": {
  7511. "psr-4": {
  7512. "Twig\\Extra\\TwigExtraBundle\\": ""
  7513. },
  7514. "exclude-from-classmap": [
  7515. "/Tests/"
  7516. ]
  7517. },
  7518. "notification-url": "https://packagist.org/downloads/",
  7519. "license": [
  7520. "MIT"
  7521. ],
  7522. "authors": [
  7523. {
  7524. "name": "Fabien Potencier",
  7525. "email": "fabien@symfony.com",
  7526. "homepage": "http://fabien.potencier.org",
  7527. "role": "Lead Developer"
  7528. }
  7529. ],
  7530. "description": "A Symfony bundle for extra Twig extensions",
  7531. "homepage": "https://twig.symfony.com",
  7532. "keywords": [
  7533. "bundle",
  7534. "extra",
  7535. "twig"
  7536. ],
  7537. "support": {
  7538. "source": "https://github.com/twigphp/twig-extra-bundle/tree/v3.4.0"
  7539. },
  7540. "funding": [
  7541. {
  7542. "url": "https://github.com/fabpot",
  7543. "type": "github"
  7544. },
  7545. {
  7546. "url": "https://tidelift.com/funding/github/packagist/twig/twig",
  7547. "type": "tidelift"
  7548. }
  7549. ],
  7550. "time": "2022-01-04T13:58:53+00:00"
  7551. },
  7552. {
  7553. "name": "twig/twig",
  7554. "version": "v3.4.3",
  7555. "source": {
  7556. "type": "git",
  7557. "url": "https://github.com/twigphp/Twig.git",
  7558. "reference": "c38fd6b0b7f370c198db91ffd02e23b517426b58"
  7559. },
  7560. "dist": {
  7561. "type": "zip",
  7562. "url": "https://api.github.com/repos/twigphp/Twig/zipball/c38fd6b0b7f370c198db91ffd02e23b517426b58",
  7563. "reference": "c38fd6b0b7f370c198db91ffd02e23b517426b58",
  7564. "shasum": ""
  7565. },
  7566. "require": {
  7567. "php": ">=7.2.5",
  7568. "symfony/polyfill-ctype": "^1.8",
  7569. "symfony/polyfill-mbstring": "^1.3"
  7570. },
  7571. "require-dev": {
  7572. "psr/container": "^1.0",
  7573. "symfony/phpunit-bridge": "^4.4.9|^5.0.9|^6.0"
  7574. },
  7575. "type": "library",
  7576. "extra": {
  7577. "branch-alias": {
  7578. "dev-master": "3.4-dev"
  7579. }
  7580. },
  7581. "autoload": {
  7582. "psr-4": {
  7583. "Twig\\": "src/"
  7584. }
  7585. },
  7586. "notification-url": "https://packagist.org/downloads/",
  7587. "license": [
  7588. "BSD-3-Clause"
  7589. ],
  7590. "authors": [
  7591. {
  7592. "name": "Fabien Potencier",
  7593. "email": "fabien@symfony.com",
  7594. "homepage": "http://fabien.potencier.org",
  7595. "role": "Lead Developer"
  7596. },
  7597. {
  7598. "name": "Twig Team",
  7599. "role": "Contributors"
  7600. },
  7601. {
  7602. "name": "Armin Ronacher",
  7603. "email": "armin.ronacher@active-4.com",
  7604. "role": "Project Founder"
  7605. }
  7606. ],
  7607. "description": "Twig, the flexible, fast, and secure template language for PHP",
  7608. "homepage": "https://twig.symfony.com",
  7609. "keywords": [
  7610. "templating"
  7611. ],
  7612. "support": {
  7613. "issues": "https://github.com/twigphp/Twig/issues",
  7614. "source": "https://github.com/twigphp/Twig/tree/v3.4.3"
  7615. },
  7616. "funding": [
  7617. {
  7618. "url": "https://github.com/fabpot",
  7619. "type": "github"
  7620. },
  7621. {
  7622. "url": "https://tidelift.com/funding/github/packagist/twig/twig",
  7623. "type": "tidelift"
  7624. }
  7625. ],
  7626. "time": "2022-09-28T08:42:51+00:00"
  7627. },
  7628. {
  7629. "name": "webmozart/assert",
  7630. "version": "1.11.0",
  7631. "source": {
  7632. "type": "git",
  7633. "url": "https://github.com/webmozarts/assert.git",
  7634. "reference": "11cb2199493b2f8a3b53e7f19068fc6aac760991"
  7635. },
  7636. "dist": {
  7637. "type": "zip",
  7638. "url": "https://api.github.com/repos/webmozarts/assert/zipball/11cb2199493b2f8a3b53e7f19068fc6aac760991",
  7639. "reference": "11cb2199493b2f8a3b53e7f19068fc6aac760991",
  7640. "shasum": ""
  7641. },
  7642. "require": {
  7643. "ext-ctype": "*",
  7644. "php": "^7.2 || ^8.0"
  7645. },
  7646. "conflict": {
  7647. "phpstan/phpstan": "<0.12.20",
  7648. "vimeo/psalm": "<4.6.1 || 4.6.2"
  7649. },
  7650. "require-dev": {
  7651. "phpunit/phpunit": "^8.5.13"
  7652. },
  7653. "type": "library",
  7654. "extra": {
  7655. "branch-alias": {
  7656. "dev-master": "1.10-dev"
  7657. }
  7658. },
  7659. "autoload": {
  7660. "psr-4": {
  7661. "Webmozart\\Assert\\": "src/"
  7662. }
  7663. },
  7664. "notification-url": "https://packagist.org/downloads/",
  7665. "license": [
  7666. "MIT"
  7667. ],
  7668. "authors": [
  7669. {
  7670. "name": "Bernhard Schussek",
  7671. "email": "bschussek@gmail.com"
  7672. }
  7673. ],
  7674. "description": "Assertions to validate method input/output with nice error messages.",
  7675. "keywords": [
  7676. "assert",
  7677. "check",
  7678. "validate"
  7679. ],
  7680. "support": {
  7681. "issues": "https://github.com/webmozarts/assert/issues",
  7682. "source": "https://github.com/webmozarts/assert/tree/1.11.0"
  7683. },
  7684. "time": "2022-06-03T18:03:27+00:00"
  7685. }
  7686. ],
  7687. "packages-dev": [
  7688. {
  7689. "name": "myclabs/deep-copy",
  7690. "version": "1.11.0",
  7691. "source": {
  7692. "type": "git",
  7693. "url": "https://github.com/myclabs/DeepCopy.git",
  7694. "reference": "14daed4296fae74d9e3201d2c4925d1acb7aa614"
  7695. },
  7696. "dist": {
  7697. "type": "zip",
  7698. "url": "https://api.github.com/repos/myclabs/DeepCopy/zipball/14daed4296fae74d9e3201d2c4925d1acb7aa614",
  7699. "reference": "14daed4296fae74d9e3201d2c4925d1acb7aa614",
  7700. "shasum": ""
  7701. },
  7702. "require": {
  7703. "php": "^7.1 || ^8.0"
  7704. },
  7705. "conflict": {
  7706. "doctrine/collections": "<1.6.8",
  7707. "doctrine/common": "<2.13.3 || >=3,<3.2.2"
  7708. },
  7709. "require-dev": {
  7710. "doctrine/collections": "^1.6.8",
  7711. "doctrine/common": "^2.13.3 || ^3.2.2",
  7712. "phpunit/phpunit": "^7.5.20 || ^8.5.23 || ^9.5.13"
  7713. },
  7714. "type": "library",
  7715. "autoload": {
  7716. "files": [
  7717. "src/DeepCopy/deep_copy.php"
  7718. ],
  7719. "psr-4": {
  7720. "DeepCopy\\": "src/DeepCopy/"
  7721. }
  7722. },
  7723. "notification-url": "https://packagist.org/downloads/",
  7724. "license": [
  7725. "MIT"
  7726. ],
  7727. "description": "Create deep copies (clones) of your objects",
  7728. "keywords": [
  7729. "clone",
  7730. "copy",
  7731. "duplicate",
  7732. "object",
  7733. "object graph"
  7734. ],
  7735. "support": {
  7736. "issues": "https://github.com/myclabs/DeepCopy/issues",
  7737. "source": "https://github.com/myclabs/DeepCopy/tree/1.11.0"
  7738. },
  7739. "funding": [
  7740. {
  7741. "url": "https://tidelift.com/funding/github/packagist/myclabs/deep-copy",
  7742. "type": "tidelift"
  7743. }
  7744. ],
  7745. "time": "2022-03-03T13:19:32+00:00"
  7746. },
  7747. {
  7748. "name": "nikic/php-parser",
  7749. "version": "v4.15.1",
  7750. "source": {
  7751. "type": "git",
  7752. "url": "https://github.com/nikic/PHP-Parser.git",
  7753. "reference": "0ef6c55a3f47f89d7a374e6f835197a0b5fcf900"
  7754. },
  7755. "dist": {
  7756. "type": "zip",
  7757. "url": "https://api.github.com/repos/nikic/PHP-Parser/zipball/0ef6c55a3f47f89d7a374e6f835197a0b5fcf900",
  7758. "reference": "0ef6c55a3f47f89d7a374e6f835197a0b5fcf900",
  7759. "shasum": ""
  7760. },
  7761. "require": {
  7762. "ext-tokenizer": "*",
  7763. "php": ">=7.0"
  7764. },
  7765. "require-dev": {
  7766. "ircmaxell/php-yacc": "^0.0.7",
  7767. "phpunit/phpunit": "^6.5 || ^7.0 || ^8.0 || ^9.0"
  7768. },
  7769. "bin": [
  7770. "bin/php-parse"
  7771. ],
  7772. "type": "library",
  7773. "extra": {
  7774. "branch-alias": {
  7775. "dev-master": "4.9-dev"
  7776. }
  7777. },
  7778. "autoload": {
  7779. "psr-4": {
  7780. "PhpParser\\": "lib/PhpParser"
  7781. }
  7782. },
  7783. "notification-url": "https://packagist.org/downloads/",
  7784. "license": [
  7785. "BSD-3-Clause"
  7786. ],
  7787. "authors": [
  7788. {
  7789. "name": "Nikita Popov"
  7790. }
  7791. ],
  7792. "description": "A PHP parser written in PHP",
  7793. "keywords": [
  7794. "parser",
  7795. "php"
  7796. ],
  7797. "support": {
  7798. "issues": "https://github.com/nikic/PHP-Parser/issues",
  7799. "source": "https://github.com/nikic/PHP-Parser/tree/v4.15.1"
  7800. },
  7801. "time": "2022-09-04T07:30:47+00:00"
  7802. },
  7803. {
  7804. "name": "phar-io/manifest",
  7805. "version": "2.0.3",
  7806. "source": {
  7807. "type": "git",
  7808. "url": "https://github.com/phar-io/manifest.git",
  7809. "reference": "97803eca37d319dfa7826cc2437fc020857acb53"
  7810. },
  7811. "dist": {
  7812. "type": "zip",
  7813. "url": "https://api.github.com/repos/phar-io/manifest/zipball/97803eca37d319dfa7826cc2437fc020857acb53",
  7814. "reference": "97803eca37d319dfa7826cc2437fc020857acb53",
  7815. "shasum": ""
  7816. },
  7817. "require": {
  7818. "ext-dom": "*",
  7819. "ext-phar": "*",
  7820. "ext-xmlwriter": "*",
  7821. "phar-io/version": "^3.0.1",
  7822. "php": "^7.2 || ^8.0"
  7823. },
  7824. "type": "library",
  7825. "extra": {
  7826. "branch-alias": {
  7827. "dev-master": "2.0.x-dev"
  7828. }
  7829. },
  7830. "autoload": {
  7831. "classmap": [
  7832. "src/"
  7833. ]
  7834. },
  7835. "notification-url": "https://packagist.org/downloads/",
  7836. "license": [
  7837. "BSD-3-Clause"
  7838. ],
  7839. "authors": [
  7840. {
  7841. "name": "Arne Blankerts",
  7842. "email": "arne@blankerts.de",
  7843. "role": "Developer"
  7844. },
  7845. {
  7846. "name": "Sebastian Heuer",
  7847. "email": "sebastian@phpeople.de",
  7848. "role": "Developer"
  7849. },
  7850. {
  7851. "name": "Sebastian Bergmann",
  7852. "email": "sebastian@phpunit.de",
  7853. "role": "Developer"
  7854. }
  7855. ],
  7856. "description": "Component for reading phar.io manifest information from a PHP Archive (PHAR)",
  7857. "support": {
  7858. "issues": "https://github.com/phar-io/manifest/issues",
  7859. "source": "https://github.com/phar-io/manifest/tree/2.0.3"
  7860. },
  7861. "time": "2021-07-20T11:28:43+00:00"
  7862. },
  7863. {
  7864. "name": "phar-io/version",
  7865. "version": "3.2.1",
  7866. "source": {
  7867. "type": "git",
  7868. "url": "https://github.com/phar-io/version.git",
  7869. "reference": "4f7fd7836c6f332bb2933569e566a0d6c4cbed74"
  7870. },
  7871. "dist": {
  7872. "type": "zip",
  7873. "url": "https://api.github.com/repos/phar-io/version/zipball/4f7fd7836c6f332bb2933569e566a0d6c4cbed74",
  7874. "reference": "4f7fd7836c6f332bb2933569e566a0d6c4cbed74",
  7875. "shasum": ""
  7876. },
  7877. "require": {
  7878. "php": "^7.2 || ^8.0"
  7879. },
  7880. "type": "library",
  7881. "autoload": {
  7882. "classmap": [
  7883. "src/"
  7884. ]
  7885. },
  7886. "notification-url": "https://packagist.org/downloads/",
  7887. "license": [
  7888. "BSD-3-Clause"
  7889. ],
  7890. "authors": [
  7891. {
  7892. "name": "Arne Blankerts",
  7893. "email": "arne@blankerts.de",
  7894. "role": "Developer"
  7895. },
  7896. {
  7897. "name": "Sebastian Heuer",
  7898. "email": "sebastian@phpeople.de",
  7899. "role": "Developer"
  7900. },
  7901. {
  7902. "name": "Sebastian Bergmann",
  7903. "email": "sebastian@phpunit.de",
  7904. "role": "Developer"
  7905. }
  7906. ],
  7907. "description": "Library for handling version information and constraints",
  7908. "support": {
  7909. "issues": "https://github.com/phar-io/version/issues",
  7910. "source": "https://github.com/phar-io/version/tree/3.2.1"
  7911. },
  7912. "time": "2022-02-21T01:04:05+00:00"
  7913. },
  7914. {
  7915. "name": "phpunit/php-code-coverage",
  7916. "version": "9.2.17",
  7917. "source": {
  7918. "type": "git",
  7919. "url": "https://github.com/sebastianbergmann/php-code-coverage.git",
  7920. "reference": "aa94dc41e8661fe90c7316849907cba3007b10d8"
  7921. },
  7922. "dist": {
  7923. "type": "zip",
  7924. "url": "https://api.github.com/repos/sebastianbergmann/php-code-coverage/zipball/aa94dc41e8661fe90c7316849907cba3007b10d8",
  7925. "reference": "aa94dc41e8661fe90c7316849907cba3007b10d8",
  7926. "shasum": ""
  7927. },
  7928. "require": {
  7929. "ext-dom": "*",
  7930. "ext-libxml": "*",
  7931. "ext-xmlwriter": "*",
  7932. "nikic/php-parser": "^4.14",
  7933. "php": ">=7.3",
  7934. "phpunit/php-file-iterator": "^3.0.3",
  7935. "phpunit/php-text-template": "^2.0.2",
  7936. "sebastian/code-unit-reverse-lookup": "^2.0.2",
  7937. "sebastian/complexity": "^2.0",
  7938. "sebastian/environment": "^5.1.2",
  7939. "sebastian/lines-of-code": "^1.0.3",
  7940. "sebastian/version": "^3.0.1",
  7941. "theseer/tokenizer": "^1.2.0"
  7942. },
  7943. "require-dev": {
  7944. "phpunit/phpunit": "^9.3"
  7945. },
  7946. "suggest": {
  7947. "ext-pcov": "*",
  7948. "ext-xdebug": "*"
  7949. },
  7950. "type": "library",
  7951. "extra": {
  7952. "branch-alias": {
  7953. "dev-master": "9.2-dev"
  7954. }
  7955. },
  7956. "autoload": {
  7957. "classmap": [
  7958. "src/"
  7959. ]
  7960. },
  7961. "notification-url": "https://packagist.org/downloads/",
  7962. "license": [
  7963. "BSD-3-Clause"
  7964. ],
  7965. "authors": [
  7966. {
  7967. "name": "Sebastian Bergmann",
  7968. "email": "sebastian@phpunit.de",
  7969. "role": "lead"
  7970. }
  7971. ],
  7972. "description": "Library that provides collection, processing, and rendering functionality for PHP code coverage information.",
  7973. "homepage": "https://github.com/sebastianbergmann/php-code-coverage",
  7974. "keywords": [
  7975. "coverage",
  7976. "testing",
  7977. "xunit"
  7978. ],
  7979. "support": {
  7980. "issues": "https://github.com/sebastianbergmann/php-code-coverage/issues",
  7981. "source": "https://github.com/sebastianbergmann/php-code-coverage/tree/9.2.17"
  7982. },
  7983. "funding": [
  7984. {
  7985. "url": "https://github.com/sebastianbergmann",
  7986. "type": "github"
  7987. }
  7988. ],
  7989. "time": "2022-08-30T12:24:04+00:00"
  7990. },
  7991. {
  7992. "name": "phpunit/php-file-iterator",
  7993. "version": "3.0.6",
  7994. "source": {
  7995. "type": "git",
  7996. "url": "https://github.com/sebastianbergmann/php-file-iterator.git",
  7997. "reference": "cf1c2e7c203ac650e352f4cc675a7021e7d1b3cf"
  7998. },
  7999. "dist": {
  8000. "type": "zip",
  8001. "url": "https://api.github.com/repos/sebastianbergmann/php-file-iterator/zipball/cf1c2e7c203ac650e352f4cc675a7021e7d1b3cf",
  8002. "reference": "cf1c2e7c203ac650e352f4cc675a7021e7d1b3cf",
  8003. "shasum": ""
  8004. },
  8005. "require": {
  8006. "php": ">=7.3"
  8007. },
  8008. "require-dev": {
  8009. "phpunit/phpunit": "^9.3"
  8010. },
  8011. "type": "library",
  8012. "extra": {
  8013. "branch-alias": {
  8014. "dev-master": "3.0-dev"
  8015. }
  8016. },
  8017. "autoload": {
  8018. "classmap": [
  8019. "src/"
  8020. ]
  8021. },
  8022. "notification-url": "https://packagist.org/downloads/",
  8023. "license": [
  8024. "BSD-3-Clause"
  8025. ],
  8026. "authors": [
  8027. {
  8028. "name": "Sebastian Bergmann",
  8029. "email": "sebastian@phpunit.de",
  8030. "role": "lead"
  8031. }
  8032. ],
  8033. "description": "FilterIterator implementation that filters files based on a list of suffixes.",
  8034. "homepage": "https://github.com/sebastianbergmann/php-file-iterator/",
  8035. "keywords": [
  8036. "filesystem",
  8037. "iterator"
  8038. ],
  8039. "support": {
  8040. "issues": "https://github.com/sebastianbergmann/php-file-iterator/issues",
  8041. "source": "https://github.com/sebastianbergmann/php-file-iterator/tree/3.0.6"
  8042. },
  8043. "funding": [
  8044. {
  8045. "url": "https://github.com/sebastianbergmann",
  8046. "type": "github"
  8047. }
  8048. ],
  8049. "time": "2021-12-02T12:48:52+00:00"
  8050. },
  8051. {
  8052. "name": "phpunit/php-invoker",
  8053. "version": "3.1.1",
  8054. "source": {
  8055. "type": "git",
  8056. "url": "https://github.com/sebastianbergmann/php-invoker.git",
  8057. "reference": "5a10147d0aaf65b58940a0b72f71c9ac0423cc67"
  8058. },
  8059. "dist": {
  8060. "type": "zip",
  8061. "url": "https://api.github.com/repos/sebastianbergmann/php-invoker/zipball/5a10147d0aaf65b58940a0b72f71c9ac0423cc67",
  8062. "reference": "5a10147d0aaf65b58940a0b72f71c9ac0423cc67",
  8063. "shasum": ""
  8064. },
  8065. "require": {
  8066. "php": ">=7.3"
  8067. },
  8068. "require-dev": {
  8069. "ext-pcntl": "*",
  8070. "phpunit/phpunit": "^9.3"
  8071. },
  8072. "suggest": {
  8073. "ext-pcntl": "*"
  8074. },
  8075. "type": "library",
  8076. "extra": {
  8077. "branch-alias": {
  8078. "dev-master": "3.1-dev"
  8079. }
  8080. },
  8081. "autoload": {
  8082. "classmap": [
  8083. "src/"
  8084. ]
  8085. },
  8086. "notification-url": "https://packagist.org/downloads/",
  8087. "license": [
  8088. "BSD-3-Clause"
  8089. ],
  8090. "authors": [
  8091. {
  8092. "name": "Sebastian Bergmann",
  8093. "email": "sebastian@phpunit.de",
  8094. "role": "lead"
  8095. }
  8096. ],
  8097. "description": "Invoke callables with a timeout",
  8098. "homepage": "https://github.com/sebastianbergmann/php-invoker/",
  8099. "keywords": [
  8100. "process"
  8101. ],
  8102. "support": {
  8103. "issues": "https://github.com/sebastianbergmann/php-invoker/issues",
  8104. "source": "https://github.com/sebastianbergmann/php-invoker/tree/3.1.1"
  8105. },
  8106. "funding": [
  8107. {
  8108. "url": "https://github.com/sebastianbergmann",
  8109. "type": "github"
  8110. }
  8111. ],
  8112. "time": "2020-09-28T05:58:55+00:00"
  8113. },
  8114. {
  8115. "name": "phpunit/php-text-template",
  8116. "version": "2.0.4",
  8117. "source": {
  8118. "type": "git",
  8119. "url": "https://github.com/sebastianbergmann/php-text-template.git",
  8120. "reference": "5da5f67fc95621df9ff4c4e5a84d6a8a2acf7c28"
  8121. },
  8122. "dist": {
  8123. "type": "zip",
  8124. "url": "https://api.github.com/repos/sebastianbergmann/php-text-template/zipball/5da5f67fc95621df9ff4c4e5a84d6a8a2acf7c28",
  8125. "reference": "5da5f67fc95621df9ff4c4e5a84d6a8a2acf7c28",
  8126. "shasum": ""
  8127. },
  8128. "require": {
  8129. "php": ">=7.3"
  8130. },
  8131. "require-dev": {
  8132. "phpunit/phpunit": "^9.3"
  8133. },
  8134. "type": "library",
  8135. "extra": {
  8136. "branch-alias": {
  8137. "dev-master": "2.0-dev"
  8138. }
  8139. },
  8140. "autoload": {
  8141. "classmap": [
  8142. "src/"
  8143. ]
  8144. },
  8145. "notification-url": "https://packagist.org/downloads/",
  8146. "license": [
  8147. "BSD-3-Clause"
  8148. ],
  8149. "authors": [
  8150. {
  8151. "name": "Sebastian Bergmann",
  8152. "email": "sebastian@phpunit.de",
  8153. "role": "lead"
  8154. }
  8155. ],
  8156. "description": "Simple template engine.",
  8157. "homepage": "https://github.com/sebastianbergmann/php-text-template/",
  8158. "keywords": [
  8159. "template"
  8160. ],
  8161. "support": {
  8162. "issues": "https://github.com/sebastianbergmann/php-text-template/issues",
  8163. "source": "https://github.com/sebastianbergmann/php-text-template/tree/2.0.4"
  8164. },
  8165. "funding": [
  8166. {
  8167. "url": "https://github.com/sebastianbergmann",
  8168. "type": "github"
  8169. }
  8170. ],
  8171. "time": "2020-10-26T05:33:50+00:00"
  8172. },
  8173. {
  8174. "name": "phpunit/php-timer",
  8175. "version": "5.0.3",
  8176. "source": {
  8177. "type": "git",
  8178. "url": "https://github.com/sebastianbergmann/php-timer.git",
  8179. "reference": "5a63ce20ed1b5bf577850e2c4e87f4aa902afbd2"
  8180. },
  8181. "dist": {
  8182. "type": "zip",
  8183. "url": "https://api.github.com/repos/sebastianbergmann/php-timer/zipball/5a63ce20ed1b5bf577850e2c4e87f4aa902afbd2",
  8184. "reference": "5a63ce20ed1b5bf577850e2c4e87f4aa902afbd2",
  8185. "shasum": ""
  8186. },
  8187. "require": {
  8188. "php": ">=7.3"
  8189. },
  8190. "require-dev": {
  8191. "phpunit/phpunit": "^9.3"
  8192. },
  8193. "type": "library",
  8194. "extra": {
  8195. "branch-alias": {
  8196. "dev-master": "5.0-dev"
  8197. }
  8198. },
  8199. "autoload": {
  8200. "classmap": [
  8201. "src/"
  8202. ]
  8203. },
  8204. "notification-url": "https://packagist.org/downloads/",
  8205. "license": [
  8206. "BSD-3-Clause"
  8207. ],
  8208. "authors": [
  8209. {
  8210. "name": "Sebastian Bergmann",
  8211. "email": "sebastian@phpunit.de",
  8212. "role": "lead"
  8213. }
  8214. ],
  8215. "description": "Utility class for timing",
  8216. "homepage": "https://github.com/sebastianbergmann/php-timer/",
  8217. "keywords": [
  8218. "timer"
  8219. ],
  8220. "support": {
  8221. "issues": "https://github.com/sebastianbergmann/php-timer/issues",
  8222. "source": "https://github.com/sebastianbergmann/php-timer/tree/5.0.3"
  8223. },
  8224. "funding": [
  8225. {
  8226. "url": "https://github.com/sebastianbergmann",
  8227. "type": "github"
  8228. }
  8229. ],
  8230. "time": "2020-10-26T13:16:10+00:00"
  8231. },
  8232. {
  8233. "name": "phpunit/phpunit",
  8234. "version": "9.5.25",
  8235. "source": {
  8236. "type": "git",
  8237. "url": "https://github.com/sebastianbergmann/phpunit.git",
  8238. "reference": "3e6f90ca7e3d02025b1d147bd8d4a89fd4ca8a1d"
  8239. },
  8240. "dist": {
  8241. "type": "zip",
  8242. "url": "https://api.github.com/repos/sebastianbergmann/phpunit/zipball/3e6f90ca7e3d02025b1d147bd8d4a89fd4ca8a1d",
  8243. "reference": "3e6f90ca7e3d02025b1d147bd8d4a89fd4ca8a1d",
  8244. "shasum": ""
  8245. },
  8246. "require": {
  8247. "doctrine/instantiator": "^1.3.1",
  8248. "ext-dom": "*",
  8249. "ext-json": "*",
  8250. "ext-libxml": "*",
  8251. "ext-mbstring": "*",
  8252. "ext-xml": "*",
  8253. "ext-xmlwriter": "*",
  8254. "myclabs/deep-copy": "^1.10.1",
  8255. "phar-io/manifest": "^2.0.3",
  8256. "phar-io/version": "^3.0.2",
  8257. "php": ">=7.3",
  8258. "phpunit/php-code-coverage": "^9.2.13",
  8259. "phpunit/php-file-iterator": "^3.0.5",
  8260. "phpunit/php-invoker": "^3.1.1",
  8261. "phpunit/php-text-template": "^2.0.3",
  8262. "phpunit/php-timer": "^5.0.2",
  8263. "sebastian/cli-parser": "^1.0.1",
  8264. "sebastian/code-unit": "^1.0.6",
  8265. "sebastian/comparator": "^4.0.8",
  8266. "sebastian/diff": "^4.0.3",
  8267. "sebastian/environment": "^5.1.3",
  8268. "sebastian/exporter": "^4.0.5",
  8269. "sebastian/global-state": "^5.0.1",
  8270. "sebastian/object-enumerator": "^4.0.3",
  8271. "sebastian/resource-operations": "^3.0.3",
  8272. "sebastian/type": "^3.2",
  8273. "sebastian/version": "^3.0.2"
  8274. },
  8275. "suggest": {
  8276. "ext-soap": "*",
  8277. "ext-xdebug": "*"
  8278. },
  8279. "bin": [
  8280. "phpunit"
  8281. ],
  8282. "type": "library",
  8283. "extra": {
  8284. "branch-alias": {
  8285. "dev-master": "9.5-dev"
  8286. }
  8287. },
  8288. "autoload": {
  8289. "files": [
  8290. "src/Framework/Assert/Functions.php"
  8291. ],
  8292. "classmap": [
  8293. "src/"
  8294. ]
  8295. },
  8296. "notification-url": "https://packagist.org/downloads/",
  8297. "license": [
  8298. "BSD-3-Clause"
  8299. ],
  8300. "authors": [
  8301. {
  8302. "name": "Sebastian Bergmann",
  8303. "email": "sebastian@phpunit.de",
  8304. "role": "lead"
  8305. }
  8306. ],
  8307. "description": "The PHP Unit Testing framework.",
  8308. "homepage": "https://phpunit.de/",
  8309. "keywords": [
  8310. "phpunit",
  8311. "testing",
  8312. "xunit"
  8313. ],
  8314. "support": {
  8315. "issues": "https://github.com/sebastianbergmann/phpunit/issues",
  8316. "source": "https://github.com/sebastianbergmann/phpunit/tree/9.5.25"
  8317. },
  8318. "funding": [
  8319. {
  8320. "url": "https://phpunit.de/sponsors.html",
  8321. "type": "custom"
  8322. },
  8323. {
  8324. "url": "https://github.com/sebastianbergmann",
  8325. "type": "github"
  8326. },
  8327. {
  8328. "url": "https://tidelift.com/funding/github/packagist/phpunit/phpunit",
  8329. "type": "tidelift"
  8330. }
  8331. ],
  8332. "time": "2022-09-25T03:44:45+00:00"
  8333. },
  8334. {
  8335. "name": "sebastian/cli-parser",
  8336. "version": "1.0.1",
  8337. "source": {
  8338. "type": "git",
  8339. "url": "https://github.com/sebastianbergmann/cli-parser.git",
  8340. "reference": "442e7c7e687e42adc03470c7b668bc4b2402c0b2"
  8341. },
  8342. "dist": {
  8343. "type": "zip",
  8344. "url": "https://api.github.com/repos/sebastianbergmann/cli-parser/zipball/442e7c7e687e42adc03470c7b668bc4b2402c0b2",
  8345. "reference": "442e7c7e687e42adc03470c7b668bc4b2402c0b2",
  8346. "shasum": ""
  8347. },
  8348. "require": {
  8349. "php": ">=7.3"
  8350. },
  8351. "require-dev": {
  8352. "phpunit/phpunit": "^9.3"
  8353. },
  8354. "type": "library",
  8355. "extra": {
  8356. "branch-alias": {
  8357. "dev-master": "1.0-dev"
  8358. }
  8359. },
  8360. "autoload": {
  8361. "classmap": [
  8362. "src/"
  8363. ]
  8364. },
  8365. "notification-url": "https://packagist.org/downloads/",
  8366. "license": [
  8367. "BSD-3-Clause"
  8368. ],
  8369. "authors": [
  8370. {
  8371. "name": "Sebastian Bergmann",
  8372. "email": "sebastian@phpunit.de",
  8373. "role": "lead"
  8374. }
  8375. ],
  8376. "description": "Library for parsing CLI options",
  8377. "homepage": "https://github.com/sebastianbergmann/cli-parser",
  8378. "support": {
  8379. "issues": "https://github.com/sebastianbergmann/cli-parser/issues",
  8380. "source": "https://github.com/sebastianbergmann/cli-parser/tree/1.0.1"
  8381. },
  8382. "funding": [
  8383. {
  8384. "url": "https://github.com/sebastianbergmann",
  8385. "type": "github"
  8386. }
  8387. ],
  8388. "time": "2020-09-28T06:08:49+00:00"
  8389. },
  8390. {
  8391. "name": "sebastian/code-unit",
  8392. "version": "1.0.8",
  8393. "source": {
  8394. "type": "git",
  8395. "url": "https://github.com/sebastianbergmann/code-unit.git",
  8396. "reference": "1fc9f64c0927627ef78ba436c9b17d967e68e120"
  8397. },
  8398. "dist": {
  8399. "type": "zip",
  8400. "url": "https://api.github.com/repos/sebastianbergmann/code-unit/zipball/1fc9f64c0927627ef78ba436c9b17d967e68e120",
  8401. "reference": "1fc9f64c0927627ef78ba436c9b17d967e68e120",
  8402. "shasum": ""
  8403. },
  8404. "require": {
  8405. "php": ">=7.3"
  8406. },
  8407. "require-dev": {
  8408. "phpunit/phpunit": "^9.3"
  8409. },
  8410. "type": "library",
  8411. "extra": {
  8412. "branch-alias": {
  8413. "dev-master": "1.0-dev"
  8414. }
  8415. },
  8416. "autoload": {
  8417. "classmap": [
  8418. "src/"
  8419. ]
  8420. },
  8421. "notification-url": "https://packagist.org/downloads/",
  8422. "license": [
  8423. "BSD-3-Clause"
  8424. ],
  8425. "authors": [
  8426. {
  8427. "name": "Sebastian Bergmann",
  8428. "email": "sebastian@phpunit.de",
  8429. "role": "lead"
  8430. }
  8431. ],
  8432. "description": "Collection of value objects that represent the PHP code units",
  8433. "homepage": "https://github.com/sebastianbergmann/code-unit",
  8434. "support": {
  8435. "issues": "https://github.com/sebastianbergmann/code-unit/issues",
  8436. "source": "https://github.com/sebastianbergmann/code-unit/tree/1.0.8"
  8437. },
  8438. "funding": [
  8439. {
  8440. "url": "https://github.com/sebastianbergmann",
  8441. "type": "github"
  8442. }
  8443. ],
  8444. "time": "2020-10-26T13:08:54+00:00"
  8445. },
  8446. {
  8447. "name": "sebastian/code-unit-reverse-lookup",
  8448. "version": "2.0.3",
  8449. "source": {
  8450. "type": "git",
  8451. "url": "https://github.com/sebastianbergmann/code-unit-reverse-lookup.git",
  8452. "reference": "ac91f01ccec49fb77bdc6fd1e548bc70f7faa3e5"
  8453. },
  8454. "dist": {
  8455. "type": "zip",
  8456. "url": "https://api.github.com/repos/sebastianbergmann/code-unit-reverse-lookup/zipball/ac91f01ccec49fb77bdc6fd1e548bc70f7faa3e5",
  8457. "reference": "ac91f01ccec49fb77bdc6fd1e548bc70f7faa3e5",
  8458. "shasum": ""
  8459. },
  8460. "require": {
  8461. "php": ">=7.3"
  8462. },
  8463. "require-dev": {
  8464. "phpunit/phpunit": "^9.3"
  8465. },
  8466. "type": "library",
  8467. "extra": {
  8468. "branch-alias": {
  8469. "dev-master": "2.0-dev"
  8470. }
  8471. },
  8472. "autoload": {
  8473. "classmap": [
  8474. "src/"
  8475. ]
  8476. },
  8477. "notification-url": "https://packagist.org/downloads/",
  8478. "license": [
  8479. "BSD-3-Clause"
  8480. ],
  8481. "authors": [
  8482. {
  8483. "name": "Sebastian Bergmann",
  8484. "email": "sebastian@phpunit.de"
  8485. }
  8486. ],
  8487. "description": "Looks up which function or method a line of code belongs to",
  8488. "homepage": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/",
  8489. "support": {
  8490. "issues": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/issues",
  8491. "source": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/tree/2.0.3"
  8492. },
  8493. "funding": [
  8494. {
  8495. "url": "https://github.com/sebastianbergmann",
  8496. "type": "github"
  8497. }
  8498. ],
  8499. "time": "2020-09-28T05:30:19+00:00"
  8500. },
  8501. {
  8502. "name": "sebastian/comparator",
  8503. "version": "4.0.8",
  8504. "source": {
  8505. "type": "git",
  8506. "url": "https://github.com/sebastianbergmann/comparator.git",
  8507. "reference": "fa0f136dd2334583309d32b62544682ee972b51a"
  8508. },
  8509. "dist": {
  8510. "type": "zip",
  8511. "url": "https://api.github.com/repos/sebastianbergmann/comparator/zipball/fa0f136dd2334583309d32b62544682ee972b51a",
  8512. "reference": "fa0f136dd2334583309d32b62544682ee972b51a",
  8513. "shasum": ""
  8514. },
  8515. "require": {
  8516. "php": ">=7.3",
  8517. "sebastian/diff": "^4.0",
  8518. "sebastian/exporter": "^4.0"
  8519. },
  8520. "require-dev": {
  8521. "phpunit/phpunit": "^9.3"
  8522. },
  8523. "type": "library",
  8524. "extra": {
  8525. "branch-alias": {
  8526. "dev-master": "4.0-dev"
  8527. }
  8528. },
  8529. "autoload": {
  8530. "classmap": [
  8531. "src/"
  8532. ]
  8533. },
  8534. "notification-url": "https://packagist.org/downloads/",
  8535. "license": [
  8536. "BSD-3-Clause"
  8537. ],
  8538. "authors": [
  8539. {
  8540. "name": "Sebastian Bergmann",
  8541. "email": "sebastian@phpunit.de"
  8542. },
  8543. {
  8544. "name": "Jeff Welch",
  8545. "email": "whatthejeff@gmail.com"
  8546. },
  8547. {
  8548. "name": "Volker Dusch",
  8549. "email": "github@wallbash.com"
  8550. },
  8551. {
  8552. "name": "Bernhard Schussek",
  8553. "email": "bschussek@2bepublished.at"
  8554. }
  8555. ],
  8556. "description": "Provides the functionality to compare PHP values for equality",
  8557. "homepage": "https://github.com/sebastianbergmann/comparator",
  8558. "keywords": [
  8559. "comparator",
  8560. "compare",
  8561. "equality"
  8562. ],
  8563. "support": {
  8564. "issues": "https://github.com/sebastianbergmann/comparator/issues",
  8565. "source": "https://github.com/sebastianbergmann/comparator/tree/4.0.8"
  8566. },
  8567. "funding": [
  8568. {
  8569. "url": "https://github.com/sebastianbergmann",
  8570. "type": "github"
  8571. }
  8572. ],
  8573. "time": "2022-09-14T12:41:17+00:00"
  8574. },
  8575. {
  8576. "name": "sebastian/complexity",
  8577. "version": "2.0.2",
  8578. "source": {
  8579. "type": "git",
  8580. "url": "https://github.com/sebastianbergmann/complexity.git",
  8581. "reference": "739b35e53379900cc9ac327b2147867b8b6efd88"
  8582. },
  8583. "dist": {
  8584. "type": "zip",
  8585. "url": "https://api.github.com/repos/sebastianbergmann/complexity/zipball/739b35e53379900cc9ac327b2147867b8b6efd88",
  8586. "reference": "739b35e53379900cc9ac327b2147867b8b6efd88",
  8587. "shasum": ""
  8588. },
  8589. "require": {
  8590. "nikic/php-parser": "^4.7",
  8591. "php": ">=7.3"
  8592. },
  8593. "require-dev": {
  8594. "phpunit/phpunit": "^9.3"
  8595. },
  8596. "type": "library",
  8597. "extra": {
  8598. "branch-alias": {
  8599. "dev-master": "2.0-dev"
  8600. }
  8601. },
  8602. "autoload": {
  8603. "classmap": [
  8604. "src/"
  8605. ]
  8606. },
  8607. "notification-url": "https://packagist.org/downloads/",
  8608. "license": [
  8609. "BSD-3-Clause"
  8610. ],
  8611. "authors": [
  8612. {
  8613. "name": "Sebastian Bergmann",
  8614. "email": "sebastian@phpunit.de",
  8615. "role": "lead"
  8616. }
  8617. ],
  8618. "description": "Library for calculating the complexity of PHP code units",
  8619. "homepage": "https://github.com/sebastianbergmann/complexity",
  8620. "support": {
  8621. "issues": "https://github.com/sebastianbergmann/complexity/issues",
  8622. "source": "https://github.com/sebastianbergmann/complexity/tree/2.0.2"
  8623. },
  8624. "funding": [
  8625. {
  8626. "url": "https://github.com/sebastianbergmann",
  8627. "type": "github"
  8628. }
  8629. ],
  8630. "time": "2020-10-26T15:52:27+00:00"
  8631. },
  8632. {
  8633. "name": "sebastian/diff",
  8634. "version": "4.0.4",
  8635. "source": {
  8636. "type": "git",
  8637. "url": "https://github.com/sebastianbergmann/diff.git",
  8638. "reference": "3461e3fccc7cfdfc2720be910d3bd73c69be590d"
  8639. },
  8640. "dist": {
  8641. "type": "zip",
  8642. "url": "https://api.github.com/repos/sebastianbergmann/diff/zipball/3461e3fccc7cfdfc2720be910d3bd73c69be590d",
  8643. "reference": "3461e3fccc7cfdfc2720be910d3bd73c69be590d",
  8644. "shasum": ""
  8645. },
  8646. "require": {
  8647. "php": ">=7.3"
  8648. },
  8649. "require-dev": {
  8650. "phpunit/phpunit": "^9.3",
  8651. "symfony/process": "^4.2 || ^5"
  8652. },
  8653. "type": "library",
  8654. "extra": {
  8655. "branch-alias": {
  8656. "dev-master": "4.0-dev"
  8657. }
  8658. },
  8659. "autoload": {
  8660. "classmap": [
  8661. "src/"
  8662. ]
  8663. },
  8664. "notification-url": "https://packagist.org/downloads/",
  8665. "license": [
  8666. "BSD-3-Clause"
  8667. ],
  8668. "authors": [
  8669. {
  8670. "name": "Sebastian Bergmann",
  8671. "email": "sebastian@phpunit.de"
  8672. },
  8673. {
  8674. "name": "Kore Nordmann",
  8675. "email": "mail@kore-nordmann.de"
  8676. }
  8677. ],
  8678. "description": "Diff implementation",
  8679. "homepage": "https://github.com/sebastianbergmann/diff",
  8680. "keywords": [
  8681. "diff",
  8682. "udiff",
  8683. "unidiff",
  8684. "unified diff"
  8685. ],
  8686. "support": {
  8687. "issues": "https://github.com/sebastianbergmann/diff/issues",
  8688. "source": "https://github.com/sebastianbergmann/diff/tree/4.0.4"
  8689. },
  8690. "funding": [
  8691. {
  8692. "url": "https://github.com/sebastianbergmann",
  8693. "type": "github"
  8694. }
  8695. ],
  8696. "time": "2020-10-26T13:10:38+00:00"
  8697. },
  8698. {
  8699. "name": "sebastian/environment",
  8700. "version": "5.1.4",
  8701. "source": {
  8702. "type": "git",
  8703. "url": "https://github.com/sebastianbergmann/environment.git",
  8704. "reference": "1b5dff7bb151a4db11d49d90e5408e4e938270f7"
  8705. },
  8706. "dist": {
  8707. "type": "zip",
  8708. "url": "https://api.github.com/repos/sebastianbergmann/environment/zipball/1b5dff7bb151a4db11d49d90e5408e4e938270f7",
  8709. "reference": "1b5dff7bb151a4db11d49d90e5408e4e938270f7",
  8710. "shasum": ""
  8711. },
  8712. "require": {
  8713. "php": ">=7.3"
  8714. },
  8715. "require-dev": {
  8716. "phpunit/phpunit": "^9.3"
  8717. },
  8718. "suggest": {
  8719. "ext-posix": "*"
  8720. },
  8721. "type": "library",
  8722. "extra": {
  8723. "branch-alias": {
  8724. "dev-master": "5.1-dev"
  8725. }
  8726. },
  8727. "autoload": {
  8728. "classmap": [
  8729. "src/"
  8730. ]
  8731. },
  8732. "notification-url": "https://packagist.org/downloads/",
  8733. "license": [
  8734. "BSD-3-Clause"
  8735. ],
  8736. "authors": [
  8737. {
  8738. "name": "Sebastian Bergmann",
  8739. "email": "sebastian@phpunit.de"
  8740. }
  8741. ],
  8742. "description": "Provides functionality to handle HHVM/PHP environments",
  8743. "homepage": "http://www.github.com/sebastianbergmann/environment",
  8744. "keywords": [
  8745. "Xdebug",
  8746. "environment",
  8747. "hhvm"
  8748. ],
  8749. "support": {
  8750. "issues": "https://github.com/sebastianbergmann/environment/issues",
  8751. "source": "https://github.com/sebastianbergmann/environment/tree/5.1.4"
  8752. },
  8753. "funding": [
  8754. {
  8755. "url": "https://github.com/sebastianbergmann",
  8756. "type": "github"
  8757. }
  8758. ],
  8759. "time": "2022-04-03T09:37:03+00:00"
  8760. },
  8761. {
  8762. "name": "sebastian/exporter",
  8763. "version": "4.0.5",
  8764. "source": {
  8765. "type": "git",
  8766. "url": "https://github.com/sebastianbergmann/exporter.git",
  8767. "reference": "ac230ed27f0f98f597c8a2b6eb7ac563af5e5b9d"
  8768. },
  8769. "dist": {
  8770. "type": "zip",
  8771. "url": "https://api.github.com/repos/sebastianbergmann/exporter/zipball/ac230ed27f0f98f597c8a2b6eb7ac563af5e5b9d",
  8772. "reference": "ac230ed27f0f98f597c8a2b6eb7ac563af5e5b9d",
  8773. "shasum": ""
  8774. },
  8775. "require": {
  8776. "php": ">=7.3",
  8777. "sebastian/recursion-context": "^4.0"
  8778. },
  8779. "require-dev": {
  8780. "ext-mbstring": "*",
  8781. "phpunit/phpunit": "^9.3"
  8782. },
  8783. "type": "library",
  8784. "extra": {
  8785. "branch-alias": {
  8786. "dev-master": "4.0-dev"
  8787. }
  8788. },
  8789. "autoload": {
  8790. "classmap": [
  8791. "src/"
  8792. ]
  8793. },
  8794. "notification-url": "https://packagist.org/downloads/",
  8795. "license": [
  8796. "BSD-3-Clause"
  8797. ],
  8798. "authors": [
  8799. {
  8800. "name": "Sebastian Bergmann",
  8801. "email": "sebastian@phpunit.de"
  8802. },
  8803. {
  8804. "name": "Jeff Welch",
  8805. "email": "whatthejeff@gmail.com"
  8806. },
  8807. {
  8808. "name": "Volker Dusch",
  8809. "email": "github@wallbash.com"
  8810. },
  8811. {
  8812. "name": "Adam Harvey",
  8813. "email": "aharvey@php.net"
  8814. },
  8815. {
  8816. "name": "Bernhard Schussek",
  8817. "email": "bschussek@gmail.com"
  8818. }
  8819. ],
  8820. "description": "Provides the functionality to export PHP variables for visualization",
  8821. "homepage": "https://www.github.com/sebastianbergmann/exporter",
  8822. "keywords": [
  8823. "export",
  8824. "exporter"
  8825. ],
  8826. "support": {
  8827. "issues": "https://github.com/sebastianbergmann/exporter/issues",
  8828. "source": "https://github.com/sebastianbergmann/exporter/tree/4.0.5"
  8829. },
  8830. "funding": [
  8831. {
  8832. "url": "https://github.com/sebastianbergmann",
  8833. "type": "github"
  8834. }
  8835. ],
  8836. "time": "2022-09-14T06:03:37+00:00"
  8837. },
  8838. {
  8839. "name": "sebastian/global-state",
  8840. "version": "5.0.5",
  8841. "source": {
  8842. "type": "git",
  8843. "url": "https://github.com/sebastianbergmann/global-state.git",
  8844. "reference": "0ca8db5a5fc9c8646244e629625ac486fa286bf2"
  8845. },
  8846. "dist": {
  8847. "type": "zip",
  8848. "url": "https://api.github.com/repos/sebastianbergmann/global-state/zipball/0ca8db5a5fc9c8646244e629625ac486fa286bf2",
  8849. "reference": "0ca8db5a5fc9c8646244e629625ac486fa286bf2",
  8850. "shasum": ""
  8851. },
  8852. "require": {
  8853. "php": ">=7.3",
  8854. "sebastian/object-reflector": "^2.0",
  8855. "sebastian/recursion-context": "^4.0"
  8856. },
  8857. "require-dev": {
  8858. "ext-dom": "*",
  8859. "phpunit/phpunit": "^9.3"
  8860. },
  8861. "suggest": {
  8862. "ext-uopz": "*"
  8863. },
  8864. "type": "library",
  8865. "extra": {
  8866. "branch-alias": {
  8867. "dev-master": "5.0-dev"
  8868. }
  8869. },
  8870. "autoload": {
  8871. "classmap": [
  8872. "src/"
  8873. ]
  8874. },
  8875. "notification-url": "https://packagist.org/downloads/",
  8876. "license": [
  8877. "BSD-3-Clause"
  8878. ],
  8879. "authors": [
  8880. {
  8881. "name": "Sebastian Bergmann",
  8882. "email": "sebastian@phpunit.de"
  8883. }
  8884. ],
  8885. "description": "Snapshotting of global state",
  8886. "homepage": "http://www.github.com/sebastianbergmann/global-state",
  8887. "keywords": [
  8888. "global state"
  8889. ],
  8890. "support": {
  8891. "issues": "https://github.com/sebastianbergmann/global-state/issues",
  8892. "source": "https://github.com/sebastianbergmann/global-state/tree/5.0.5"
  8893. },
  8894. "funding": [
  8895. {
  8896. "url": "https://github.com/sebastianbergmann",
  8897. "type": "github"
  8898. }
  8899. ],
  8900. "time": "2022-02-14T08:28:10+00:00"
  8901. },
  8902. {
  8903. "name": "sebastian/lines-of-code",
  8904. "version": "1.0.3",
  8905. "source": {
  8906. "type": "git",
  8907. "url": "https://github.com/sebastianbergmann/lines-of-code.git",
  8908. "reference": "c1c2e997aa3146983ed888ad08b15470a2e22ecc"
  8909. },
  8910. "dist": {
  8911. "type": "zip",
  8912. "url": "https://api.github.com/repos/sebastianbergmann/lines-of-code/zipball/c1c2e997aa3146983ed888ad08b15470a2e22ecc",
  8913. "reference": "c1c2e997aa3146983ed888ad08b15470a2e22ecc",
  8914. "shasum": ""
  8915. },
  8916. "require": {
  8917. "nikic/php-parser": "^4.6",
  8918. "php": ">=7.3"
  8919. },
  8920. "require-dev": {
  8921. "phpunit/phpunit": "^9.3"
  8922. },
  8923. "type": "library",
  8924. "extra": {
  8925. "branch-alias": {
  8926. "dev-master": "1.0-dev"
  8927. }
  8928. },
  8929. "autoload": {
  8930. "classmap": [
  8931. "src/"
  8932. ]
  8933. },
  8934. "notification-url": "https://packagist.org/downloads/",
  8935. "license": [
  8936. "BSD-3-Clause"
  8937. ],
  8938. "authors": [
  8939. {
  8940. "name": "Sebastian Bergmann",
  8941. "email": "sebastian@phpunit.de",
  8942. "role": "lead"
  8943. }
  8944. ],
  8945. "description": "Library for counting the lines of code in PHP source code",
  8946. "homepage": "https://github.com/sebastianbergmann/lines-of-code",
  8947. "support": {
  8948. "issues": "https://github.com/sebastianbergmann/lines-of-code/issues",
  8949. "source": "https://github.com/sebastianbergmann/lines-of-code/tree/1.0.3"
  8950. },
  8951. "funding": [
  8952. {
  8953. "url": "https://github.com/sebastianbergmann",
  8954. "type": "github"
  8955. }
  8956. ],
  8957. "time": "2020-11-28T06:42:11+00:00"
  8958. },
  8959. {
  8960. "name": "sebastian/object-enumerator",
  8961. "version": "4.0.4",
  8962. "source": {
  8963. "type": "git",
  8964. "url": "https://github.com/sebastianbergmann/object-enumerator.git",
  8965. "reference": "5c9eeac41b290a3712d88851518825ad78f45c71"
  8966. },
  8967. "dist": {
  8968. "type": "zip",
  8969. "url": "https://api.github.com/repos/sebastianbergmann/object-enumerator/zipball/5c9eeac41b290a3712d88851518825ad78f45c71",
  8970. "reference": "5c9eeac41b290a3712d88851518825ad78f45c71",
  8971. "shasum": ""
  8972. },
  8973. "require": {
  8974. "php": ">=7.3",
  8975. "sebastian/object-reflector": "^2.0",
  8976. "sebastian/recursion-context": "^4.0"
  8977. },
  8978. "require-dev": {
  8979. "phpunit/phpunit": "^9.3"
  8980. },
  8981. "type": "library",
  8982. "extra": {
  8983. "branch-alias": {
  8984. "dev-master": "4.0-dev"
  8985. }
  8986. },
  8987. "autoload": {
  8988. "classmap": [
  8989. "src/"
  8990. ]
  8991. },
  8992. "notification-url": "https://packagist.org/downloads/",
  8993. "license": [
  8994. "BSD-3-Clause"
  8995. ],
  8996. "authors": [
  8997. {
  8998. "name": "Sebastian Bergmann",
  8999. "email": "sebastian@phpunit.de"
  9000. }
  9001. ],
  9002. "description": "Traverses array structures and object graphs to enumerate all referenced objects",
  9003. "homepage": "https://github.com/sebastianbergmann/object-enumerator/",
  9004. "support": {
  9005. "issues": "https://github.com/sebastianbergmann/object-enumerator/issues",
  9006. "source": "https://github.com/sebastianbergmann/object-enumerator/tree/4.0.4"
  9007. },
  9008. "funding": [
  9009. {
  9010. "url": "https://github.com/sebastianbergmann",
  9011. "type": "github"
  9012. }
  9013. ],
  9014. "time": "2020-10-26T13:12:34+00:00"
  9015. },
  9016. {
  9017. "name": "sebastian/object-reflector",
  9018. "version": "2.0.4",
  9019. "source": {
  9020. "type": "git",
  9021. "url": "https://github.com/sebastianbergmann/object-reflector.git",
  9022. "reference": "b4f479ebdbf63ac605d183ece17d8d7fe49c15c7"
  9023. },
  9024. "dist": {
  9025. "type": "zip",
  9026. "url": "https://api.github.com/repos/sebastianbergmann/object-reflector/zipball/b4f479ebdbf63ac605d183ece17d8d7fe49c15c7",
  9027. "reference": "b4f479ebdbf63ac605d183ece17d8d7fe49c15c7",
  9028. "shasum": ""
  9029. },
  9030. "require": {
  9031. "php": ">=7.3"
  9032. },
  9033. "require-dev": {
  9034. "phpunit/phpunit": "^9.3"
  9035. },
  9036. "type": "library",
  9037. "extra": {
  9038. "branch-alias": {
  9039. "dev-master": "2.0-dev"
  9040. }
  9041. },
  9042. "autoload": {
  9043. "classmap": [
  9044. "src/"
  9045. ]
  9046. },
  9047. "notification-url": "https://packagist.org/downloads/",
  9048. "license": [
  9049. "BSD-3-Clause"
  9050. ],
  9051. "authors": [
  9052. {
  9053. "name": "Sebastian Bergmann",
  9054. "email": "sebastian@phpunit.de"
  9055. }
  9056. ],
  9057. "description": "Allows reflection of object attributes, including inherited and non-public ones",
  9058. "homepage": "https://github.com/sebastianbergmann/object-reflector/",
  9059. "support": {
  9060. "issues": "https://github.com/sebastianbergmann/object-reflector/issues",
  9061. "source": "https://github.com/sebastianbergmann/object-reflector/tree/2.0.4"
  9062. },
  9063. "funding": [
  9064. {
  9065. "url": "https://github.com/sebastianbergmann",
  9066. "type": "github"
  9067. }
  9068. ],
  9069. "time": "2020-10-26T13:14:26+00:00"
  9070. },
  9071. {
  9072. "name": "sebastian/recursion-context",
  9073. "version": "4.0.4",
  9074. "source": {
  9075. "type": "git",
  9076. "url": "https://github.com/sebastianbergmann/recursion-context.git",
  9077. "reference": "cd9d8cf3c5804de4341c283ed787f099f5506172"
  9078. },
  9079. "dist": {
  9080. "type": "zip",
  9081. "url": "https://api.github.com/repos/sebastianbergmann/recursion-context/zipball/cd9d8cf3c5804de4341c283ed787f099f5506172",
  9082. "reference": "cd9d8cf3c5804de4341c283ed787f099f5506172",
  9083. "shasum": ""
  9084. },
  9085. "require": {
  9086. "php": ">=7.3"
  9087. },
  9088. "require-dev": {
  9089. "phpunit/phpunit": "^9.3"
  9090. },
  9091. "type": "library",
  9092. "extra": {
  9093. "branch-alias": {
  9094. "dev-master": "4.0-dev"
  9095. }
  9096. },
  9097. "autoload": {
  9098. "classmap": [
  9099. "src/"
  9100. ]
  9101. },
  9102. "notification-url": "https://packagist.org/downloads/",
  9103. "license": [
  9104. "BSD-3-Clause"
  9105. ],
  9106. "authors": [
  9107. {
  9108. "name": "Sebastian Bergmann",
  9109. "email": "sebastian@phpunit.de"
  9110. },
  9111. {
  9112. "name": "Jeff Welch",
  9113. "email": "whatthejeff@gmail.com"
  9114. },
  9115. {
  9116. "name": "Adam Harvey",
  9117. "email": "aharvey@php.net"
  9118. }
  9119. ],
  9120. "description": "Provides functionality to recursively process PHP variables",
  9121. "homepage": "http://www.github.com/sebastianbergmann/recursion-context",
  9122. "support": {
  9123. "issues": "https://github.com/sebastianbergmann/recursion-context/issues",
  9124. "source": "https://github.com/sebastianbergmann/recursion-context/tree/4.0.4"
  9125. },
  9126. "funding": [
  9127. {
  9128. "url": "https://github.com/sebastianbergmann",
  9129. "type": "github"
  9130. }
  9131. ],
  9132. "time": "2020-10-26T13:17:30+00:00"
  9133. },
  9134. {
  9135. "name": "sebastian/resource-operations",
  9136. "version": "3.0.3",
  9137. "source": {
  9138. "type": "git",
  9139. "url": "https://github.com/sebastianbergmann/resource-operations.git",
  9140. "reference": "0f4443cb3a1d92ce809899753bc0d5d5a8dd19a8"
  9141. },
  9142. "dist": {
  9143. "type": "zip",
  9144. "url": "https://api.github.com/repos/sebastianbergmann/resource-operations/zipball/0f4443cb3a1d92ce809899753bc0d5d5a8dd19a8",
  9145. "reference": "0f4443cb3a1d92ce809899753bc0d5d5a8dd19a8",
  9146. "shasum": ""
  9147. },
  9148. "require": {
  9149. "php": ">=7.3"
  9150. },
  9151. "require-dev": {
  9152. "phpunit/phpunit": "^9.0"
  9153. },
  9154. "type": "library",
  9155. "extra": {
  9156. "branch-alias": {
  9157. "dev-master": "3.0-dev"
  9158. }
  9159. },
  9160. "autoload": {
  9161. "classmap": [
  9162. "src/"
  9163. ]
  9164. },
  9165. "notification-url": "https://packagist.org/downloads/",
  9166. "license": [
  9167. "BSD-3-Clause"
  9168. ],
  9169. "authors": [
  9170. {
  9171. "name": "Sebastian Bergmann",
  9172. "email": "sebastian@phpunit.de"
  9173. }
  9174. ],
  9175. "description": "Provides a list of PHP built-in functions that operate on resources",
  9176. "homepage": "https://www.github.com/sebastianbergmann/resource-operations",
  9177. "support": {
  9178. "issues": "https://github.com/sebastianbergmann/resource-operations/issues",
  9179. "source": "https://github.com/sebastianbergmann/resource-operations/tree/3.0.3"
  9180. },
  9181. "funding": [
  9182. {
  9183. "url": "https://github.com/sebastianbergmann",
  9184. "type": "github"
  9185. }
  9186. ],
  9187. "time": "2020-09-28T06:45:17+00:00"
  9188. },
  9189. {
  9190. "name": "sebastian/type",
  9191. "version": "3.2.0",
  9192. "source": {
  9193. "type": "git",
  9194. "url": "https://github.com/sebastianbergmann/type.git",
  9195. "reference": "fb3fe09c5f0bae6bc27ef3ce933a1e0ed9464b6e"
  9196. },
  9197. "dist": {
  9198. "type": "zip",
  9199. "url": "https://api.github.com/repos/sebastianbergmann/type/zipball/fb3fe09c5f0bae6bc27ef3ce933a1e0ed9464b6e",
  9200. "reference": "fb3fe09c5f0bae6bc27ef3ce933a1e0ed9464b6e",
  9201. "shasum": ""
  9202. },
  9203. "require": {
  9204. "php": ">=7.3"
  9205. },
  9206. "require-dev": {
  9207. "phpunit/phpunit": "^9.5"
  9208. },
  9209. "type": "library",
  9210. "extra": {
  9211. "branch-alias": {
  9212. "dev-master": "3.2-dev"
  9213. }
  9214. },
  9215. "autoload": {
  9216. "classmap": [
  9217. "src/"
  9218. ]
  9219. },
  9220. "notification-url": "https://packagist.org/downloads/",
  9221. "license": [
  9222. "BSD-3-Clause"
  9223. ],
  9224. "authors": [
  9225. {
  9226. "name": "Sebastian Bergmann",
  9227. "email": "sebastian@phpunit.de",
  9228. "role": "lead"
  9229. }
  9230. ],
  9231. "description": "Collection of value objects that represent the types of the PHP type system",
  9232. "homepage": "https://github.com/sebastianbergmann/type",
  9233. "support": {
  9234. "issues": "https://github.com/sebastianbergmann/type/issues",
  9235. "source": "https://github.com/sebastianbergmann/type/tree/3.2.0"
  9236. },
  9237. "funding": [
  9238. {
  9239. "url": "https://github.com/sebastianbergmann",
  9240. "type": "github"
  9241. }
  9242. ],
  9243. "time": "2022-09-12T14:47:03+00:00"
  9244. },
  9245. {
  9246. "name": "sebastian/version",
  9247. "version": "3.0.2",
  9248. "source": {
  9249. "type": "git",
  9250. "url": "https://github.com/sebastianbergmann/version.git",
  9251. "reference": "c6c1022351a901512170118436c764e473f6de8c"
  9252. },
  9253. "dist": {
  9254. "type": "zip",
  9255. "url": "https://api.github.com/repos/sebastianbergmann/version/zipball/c6c1022351a901512170118436c764e473f6de8c",
  9256. "reference": "c6c1022351a901512170118436c764e473f6de8c",
  9257. "shasum": ""
  9258. },
  9259. "require": {
  9260. "php": ">=7.3"
  9261. },
  9262. "type": "library",
  9263. "extra": {
  9264. "branch-alias": {
  9265. "dev-master": "3.0-dev"
  9266. }
  9267. },
  9268. "autoload": {
  9269. "classmap": [
  9270. "src/"
  9271. ]
  9272. },
  9273. "notification-url": "https://packagist.org/downloads/",
  9274. "license": [
  9275. "BSD-3-Clause"
  9276. ],
  9277. "authors": [
  9278. {
  9279. "name": "Sebastian Bergmann",
  9280. "email": "sebastian@phpunit.de",
  9281. "role": "lead"
  9282. }
  9283. ],
  9284. "description": "Library that helps with managing the version number of Git-hosted PHP projects",
  9285. "homepage": "https://github.com/sebastianbergmann/version",
  9286. "support": {
  9287. "issues": "https://github.com/sebastianbergmann/version/issues",
  9288. "source": "https://github.com/sebastianbergmann/version/tree/3.0.2"
  9289. },
  9290. "funding": [
  9291. {
  9292. "url": "https://github.com/sebastianbergmann",
  9293. "type": "github"
  9294. }
  9295. ],
  9296. "time": "2020-09-28T06:39:44+00:00"
  9297. },
  9298. {
  9299. "name": "symfony/browser-kit",
  9300. "version": "v5.4.11",
  9301. "source": {
  9302. "type": "git",
  9303. "url": "https://github.com/symfony/browser-kit.git",
  9304. "reference": "081fe28a26b6bd671dea85ef3a4b5003f3c88027"
  9305. },
  9306. "dist": {
  9307. "type": "zip",
  9308. "url": "https://api.github.com/repos/symfony/browser-kit/zipball/081fe28a26b6bd671dea85ef3a4b5003f3c88027",
  9309. "reference": "081fe28a26b6bd671dea85ef3a4b5003f3c88027",
  9310. "shasum": ""
  9311. },
  9312. "require": {
  9313. "php": ">=7.2.5",
  9314. "symfony/dom-crawler": "^4.4|^5.0|^6.0",
  9315. "symfony/polyfill-php80": "^1.16"
  9316. },
  9317. "require-dev": {
  9318. "symfony/css-selector": "^4.4|^5.0|^6.0",
  9319. "symfony/http-client": "^4.4|^5.0|^6.0",
  9320. "symfony/mime": "^4.4|^5.0|^6.0",
  9321. "symfony/process": "^4.4|^5.0|^6.0"
  9322. },
  9323. "suggest": {
  9324. "symfony/process": ""
  9325. },
  9326. "type": "library",
  9327. "autoload": {
  9328. "psr-4": {
  9329. "Symfony\\Component\\BrowserKit\\": ""
  9330. },
  9331. "exclude-from-classmap": [
  9332. "/Tests/"
  9333. ]
  9334. },
  9335. "notification-url": "https://packagist.org/downloads/",
  9336. "license": [
  9337. "MIT"
  9338. ],
  9339. "authors": [
  9340. {
  9341. "name": "Fabien Potencier",
  9342. "email": "fabien@symfony.com"
  9343. },
  9344. {
  9345. "name": "Symfony Community",
  9346. "homepage": "https://symfony.com/contributors"
  9347. }
  9348. ],
  9349. "description": "Simulates the behavior of a web browser, allowing you to make requests, click on links and submit forms programmatically",
  9350. "homepage": "https://symfony.com",
  9351. "support": {
  9352. "source": "https://github.com/symfony/browser-kit/tree/v5.4.11"
  9353. },
  9354. "funding": [
  9355. {
  9356. "url": "https://symfony.com/sponsor",
  9357. "type": "custom"
  9358. },
  9359. {
  9360. "url": "https://github.com/fabpot",
  9361. "type": "github"
  9362. },
  9363. {
  9364. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  9365. "type": "tidelift"
  9366. }
  9367. ],
  9368. "time": "2022-07-27T15:50:05+00:00"
  9369. },
  9370. {
  9371. "name": "symfony/css-selector",
  9372. "version": "v5.4.11",
  9373. "source": {
  9374. "type": "git",
  9375. "url": "https://github.com/symfony/css-selector.git",
  9376. "reference": "c1681789f059ab756001052164726ae88512ae3d"
  9377. },
  9378. "dist": {
  9379. "type": "zip",
  9380. "url": "https://api.github.com/repos/symfony/css-selector/zipball/c1681789f059ab756001052164726ae88512ae3d",
  9381. "reference": "c1681789f059ab756001052164726ae88512ae3d",
  9382. "shasum": ""
  9383. },
  9384. "require": {
  9385. "php": ">=7.2.5",
  9386. "symfony/polyfill-php80": "^1.16"
  9387. },
  9388. "type": "library",
  9389. "autoload": {
  9390. "psr-4": {
  9391. "Symfony\\Component\\CssSelector\\": ""
  9392. },
  9393. "exclude-from-classmap": [
  9394. "/Tests/"
  9395. ]
  9396. },
  9397. "notification-url": "https://packagist.org/downloads/",
  9398. "license": [
  9399. "MIT"
  9400. ],
  9401. "authors": [
  9402. {
  9403. "name": "Fabien Potencier",
  9404. "email": "fabien@symfony.com"
  9405. },
  9406. {
  9407. "name": "Jean-François Simon",
  9408. "email": "jeanfrancois.simon@sensiolabs.com"
  9409. },
  9410. {
  9411. "name": "Symfony Community",
  9412. "homepage": "https://symfony.com/contributors"
  9413. }
  9414. ],
  9415. "description": "Converts CSS selectors to XPath expressions",
  9416. "homepage": "https://symfony.com",
  9417. "support": {
  9418. "source": "https://github.com/symfony/css-selector/tree/v5.4.11"
  9419. },
  9420. "funding": [
  9421. {
  9422. "url": "https://symfony.com/sponsor",
  9423. "type": "custom"
  9424. },
  9425. {
  9426. "url": "https://github.com/fabpot",
  9427. "type": "github"
  9428. },
  9429. {
  9430. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  9431. "type": "tidelift"
  9432. }
  9433. ],
  9434. "time": "2022-06-27T16:58:25+00:00"
  9435. },
  9436. {
  9437. "name": "symfony/debug-bundle",
  9438. "version": "v5.4.11",
  9439. "source": {
  9440. "type": "git",
  9441. "url": "https://github.com/symfony/debug-bundle.git",
  9442. "reference": "ec73a8bb7b966ccbe9e76be3c7dc413d8ae84f47"
  9443. },
  9444. "dist": {
  9445. "type": "zip",
  9446. "url": "https://api.github.com/repos/symfony/debug-bundle/zipball/ec73a8bb7b966ccbe9e76be3c7dc413d8ae84f47",
  9447. "reference": "ec73a8bb7b966ccbe9e76be3c7dc413d8ae84f47",
  9448. "shasum": ""
  9449. },
  9450. "require": {
  9451. "ext-xml": "*",
  9452. "php": ">=7.2.5",
  9453. "symfony/http-kernel": "^4.4|^5.0|^6.0",
  9454. "symfony/polyfill-php80": "^1.16",
  9455. "symfony/twig-bridge": "^4.4|^5.0|^6.0",
  9456. "symfony/var-dumper": "^4.4|^5.0|^6.0"
  9457. },
  9458. "conflict": {
  9459. "symfony/config": "<4.4",
  9460. "symfony/dependency-injection": "<5.2"
  9461. },
  9462. "require-dev": {
  9463. "symfony/config": "^4.4|^5.0|^6.0",
  9464. "symfony/dependency-injection": "^4.4|^5.0|^6.0",
  9465. "symfony/web-profiler-bundle": "^4.4|^5.0|^6.0"
  9466. },
  9467. "suggest": {
  9468. "symfony/config": "For service container configuration",
  9469. "symfony/dependency-injection": "For using as a service from the container"
  9470. },
  9471. "type": "symfony-bundle",
  9472. "autoload": {
  9473. "psr-4": {
  9474. "Symfony\\Bundle\\DebugBundle\\": ""
  9475. },
  9476. "exclude-from-classmap": [
  9477. "/Tests/"
  9478. ]
  9479. },
  9480. "notification-url": "https://packagist.org/downloads/",
  9481. "license": [
  9482. "MIT"
  9483. ],
  9484. "authors": [
  9485. {
  9486. "name": "Fabien Potencier",
  9487. "email": "fabien@symfony.com"
  9488. },
  9489. {
  9490. "name": "Symfony Community",
  9491. "homepage": "https://symfony.com/contributors"
  9492. }
  9493. ],
  9494. "description": "Provides a tight integration of the Symfony VarDumper component and the ServerLogCommand from MonologBridge into the Symfony full-stack framework",
  9495. "homepage": "https://symfony.com",
  9496. "support": {
  9497. "source": "https://github.com/symfony/debug-bundle/tree/v5.4.11"
  9498. },
  9499. "funding": [
  9500. {
  9501. "url": "https://symfony.com/sponsor",
  9502. "type": "custom"
  9503. },
  9504. {
  9505. "url": "https://github.com/fabpot",
  9506. "type": "github"
  9507. },
  9508. {
  9509. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  9510. "type": "tidelift"
  9511. }
  9512. ],
  9513. "time": "2022-07-20T13:00:38+00:00"
  9514. },
  9515. {
  9516. "name": "symfony/dom-crawler",
  9517. "version": "v5.4.12",
  9518. "source": {
  9519. "type": "git",
  9520. "url": "https://github.com/symfony/dom-crawler.git",
  9521. "reference": "291c1e92281a09152dda089f782e23dedd34bd4f"
  9522. },
  9523. "dist": {
  9524. "type": "zip",
  9525. "url": "https://api.github.com/repos/symfony/dom-crawler/zipball/291c1e92281a09152dda089f782e23dedd34bd4f",
  9526. "reference": "291c1e92281a09152dda089f782e23dedd34bd4f",
  9527. "shasum": ""
  9528. },
  9529. "require": {
  9530. "php": ">=7.2.5",
  9531. "symfony/deprecation-contracts": "^2.1|^3",
  9532. "symfony/polyfill-ctype": "~1.8",
  9533. "symfony/polyfill-mbstring": "~1.0",
  9534. "symfony/polyfill-php80": "^1.16"
  9535. },
  9536. "conflict": {
  9537. "masterminds/html5": "<2.6"
  9538. },
  9539. "require-dev": {
  9540. "masterminds/html5": "^2.6",
  9541. "symfony/css-selector": "^4.4|^5.0|^6.0"
  9542. },
  9543. "suggest": {
  9544. "symfony/css-selector": ""
  9545. },
  9546. "type": "library",
  9547. "autoload": {
  9548. "psr-4": {
  9549. "Symfony\\Component\\DomCrawler\\": ""
  9550. },
  9551. "exclude-from-classmap": [
  9552. "/Tests/"
  9553. ]
  9554. },
  9555. "notification-url": "https://packagist.org/downloads/",
  9556. "license": [
  9557. "MIT"
  9558. ],
  9559. "authors": [
  9560. {
  9561. "name": "Fabien Potencier",
  9562. "email": "fabien@symfony.com"
  9563. },
  9564. {
  9565. "name": "Symfony Community",
  9566. "homepage": "https://symfony.com/contributors"
  9567. }
  9568. ],
  9569. "description": "Eases DOM navigation for HTML and XML documents",
  9570. "homepage": "https://symfony.com",
  9571. "support": {
  9572. "source": "https://github.com/symfony/dom-crawler/tree/v5.4.12"
  9573. },
  9574. "funding": [
  9575. {
  9576. "url": "https://symfony.com/sponsor",
  9577. "type": "custom"
  9578. },
  9579. {
  9580. "url": "https://github.com/fabpot",
  9581. "type": "github"
  9582. },
  9583. {
  9584. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  9585. "type": "tidelift"
  9586. }
  9587. ],
  9588. "time": "2022-08-03T13:09:21+00:00"
  9589. },
  9590. {
  9591. "name": "symfony/maker-bundle",
  9592. "version": "v1.47.0",
  9593. "source": {
  9594. "type": "git",
  9595. "url": "https://github.com/symfony/maker-bundle.git",
  9596. "reference": "e607f129d29a6c1e9a9e1ef3d229d653311d58f3"
  9597. },
  9598. "dist": {
  9599. "type": "zip",
  9600. "url": "https://api.github.com/repos/symfony/maker-bundle/zipball/e607f129d29a6c1e9a9e1ef3d229d653311d58f3",
  9601. "reference": "e607f129d29a6c1e9a9e1ef3d229d653311d58f3",
  9602. "shasum": ""
  9603. },
  9604. "require": {
  9605. "doctrine/inflector": "^2.0",
  9606. "nikic/php-parser": "^4.11",
  9607. "php": ">=8.0",
  9608. "symfony/config": "^5.4.7|^6.0",
  9609. "symfony/console": "^5.4.7|^6.0",
  9610. "symfony/dependency-injection": "^5.4.7|^6.0",
  9611. "symfony/deprecation-contracts": "^2.2|^3",
  9612. "symfony/filesystem": "^5.4.7|^6.0",
  9613. "symfony/finder": "^5.4.3|^6.0",
  9614. "symfony/framework-bundle": "^5.4.7|^6.0",
  9615. "symfony/http-kernel": "^5.4.7|^6.0"
  9616. },
  9617. "conflict": {
  9618. "doctrine/doctrine-bundle": "<2.4",
  9619. "doctrine/orm": "<2.10",
  9620. "symfony/doctrine-bridge": "<5.4"
  9621. },
  9622. "require-dev": {
  9623. "composer/semver": "^3.0",
  9624. "doctrine/doctrine-bundle": "^2.4",
  9625. "doctrine/orm": "^2.10.0",
  9626. "symfony/http-client": "^5.4.7|^6.0",
  9627. "symfony/phpunit-bridge": "^5.4.7|^6.0",
  9628. "symfony/polyfill-php80": "^1.16.0",
  9629. "symfony/process": "^5.4.7|^6.0",
  9630. "symfony/security-core": "^5.4.7|^6.0",
  9631. "symfony/yaml": "^5.4.3|^6.0",
  9632. "twig/twig": "^2.0|^3.0"
  9633. },
  9634. "type": "symfony-bundle",
  9635. "extra": {
  9636. "branch-alias": {
  9637. "dev-main": "1.0-dev"
  9638. }
  9639. },
  9640. "autoload": {
  9641. "psr-4": {
  9642. "Symfony\\Bundle\\MakerBundle\\": "src/"
  9643. }
  9644. },
  9645. "notification-url": "https://packagist.org/downloads/",
  9646. "license": [
  9647. "MIT"
  9648. ],
  9649. "authors": [
  9650. {
  9651. "name": "Symfony Community",
  9652. "homepage": "https://symfony.com/contributors"
  9653. }
  9654. ],
  9655. "description": "Symfony Maker helps you create empty commands, controllers, form classes, tests and more so you can forget about writing boilerplate code.",
  9656. "homepage": "https://symfony.com/doc/current/bundles/SymfonyMakerBundle/index.html",
  9657. "keywords": [
  9658. "code generator",
  9659. "generator",
  9660. "scaffold",
  9661. "scaffolding"
  9662. ],
  9663. "support": {
  9664. "issues": "https://github.com/symfony/maker-bundle/issues",
  9665. "source": "https://github.com/symfony/maker-bundle/tree/v1.47.0"
  9666. },
  9667. "funding": [
  9668. {
  9669. "url": "https://symfony.com/sponsor",
  9670. "type": "custom"
  9671. },
  9672. {
  9673. "url": "https://github.com/fabpot",
  9674. "type": "github"
  9675. },
  9676. {
  9677. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  9678. "type": "tidelift"
  9679. }
  9680. ],
  9681. "time": "2022-10-04T15:05:10+00:00"
  9682. },
  9683. {
  9684. "name": "symfony/phpunit-bridge",
  9685. "version": "v5.4.11",
  9686. "source": {
  9687. "type": "git",
  9688. "url": "https://github.com/symfony/phpunit-bridge.git",
  9689. "reference": "31b1549f54b1a1890e725a0c1c8c2de6ef2205b3"
  9690. },
  9691. "dist": {
  9692. "type": "zip",
  9693. "url": "https://api.github.com/repos/symfony/phpunit-bridge/zipball/31b1549f54b1a1890e725a0c1c8c2de6ef2205b3",
  9694. "reference": "31b1549f54b1a1890e725a0c1c8c2de6ef2205b3",
  9695. "shasum": ""
  9696. },
  9697. "require": {
  9698. "php": ">=7.1.3",
  9699. "symfony/deprecation-contracts": "^2.1|^3"
  9700. },
  9701. "conflict": {
  9702. "phpunit/phpunit": "<7.5|9.1.2"
  9703. },
  9704. "require-dev": {
  9705. "symfony/error-handler": "^4.4|^5.0|^6.0"
  9706. },
  9707. "suggest": {
  9708. "symfony/error-handler": "For tracking deprecated interfaces usages at runtime with DebugClassLoader"
  9709. },
  9710. "bin": [
  9711. "bin/simple-phpunit"
  9712. ],
  9713. "type": "symfony-bridge",
  9714. "extra": {
  9715. "thanks": {
  9716. "name": "phpunit/phpunit",
  9717. "url": "https://github.com/sebastianbergmann/phpunit"
  9718. }
  9719. },
  9720. "autoload": {
  9721. "files": [
  9722. "bootstrap.php"
  9723. ],
  9724. "psr-4": {
  9725. "Symfony\\Bridge\\PhpUnit\\": ""
  9726. },
  9727. "exclude-from-classmap": [
  9728. "/Tests/"
  9729. ]
  9730. },
  9731. "notification-url": "https://packagist.org/downloads/",
  9732. "license": [
  9733. "MIT"
  9734. ],
  9735. "authors": [
  9736. {
  9737. "name": "Nicolas Grekas",
  9738. "email": "p@tchwork.com"
  9739. },
  9740. {
  9741. "name": "Symfony Community",
  9742. "homepage": "https://symfony.com/contributors"
  9743. }
  9744. ],
  9745. "description": "Provides utilities for PHPUnit, especially user deprecation notices management",
  9746. "homepage": "https://symfony.com",
  9747. "support": {
  9748. "source": "https://github.com/symfony/phpunit-bridge/tree/v5.4.11"
  9749. },
  9750. "funding": [
  9751. {
  9752. "url": "https://symfony.com/sponsor",
  9753. "type": "custom"
  9754. },
  9755. {
  9756. "url": "https://github.com/fabpot",
  9757. "type": "github"
  9758. },
  9759. {
  9760. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  9761. "type": "tidelift"
  9762. }
  9763. ],
  9764. "time": "2022-07-28T13:33:28+00:00"
  9765. },
  9766. {
  9767. "name": "symfony/web-profiler-bundle",
  9768. "version": "v5.4.13",
  9769. "source": {
  9770. "type": "git",
  9771. "url": "https://github.com/symfony/web-profiler-bundle.git",
  9772. "reference": "6fefe0a7761a35b33c616e199c19f0c0d069e282"
  9773. },
  9774. "dist": {
  9775. "type": "zip",
  9776. "url": "https://api.github.com/repos/symfony/web-profiler-bundle/zipball/6fefe0a7761a35b33c616e199c19f0c0d069e282",
  9777. "reference": "6fefe0a7761a35b33c616e199c19f0c0d069e282",
  9778. "shasum": ""
  9779. },
  9780. "require": {
  9781. "php": ">=7.2.5",
  9782. "symfony/config": "^4.4|^5.0|^6.0",
  9783. "symfony/framework-bundle": "^5.3|^6.0",
  9784. "symfony/http-kernel": "^5.3|^6.0",
  9785. "symfony/polyfill-php80": "^1.16",
  9786. "symfony/routing": "^4.4|^5.0|^6.0",
  9787. "symfony/twig-bundle": "^4.4|^5.0|^6.0",
  9788. "twig/twig": "^2.13|^3.0.4"
  9789. },
  9790. "conflict": {
  9791. "symfony/dependency-injection": "<5.2",
  9792. "symfony/form": "<4.4",
  9793. "symfony/mailer": "<5.4",
  9794. "symfony/messenger": "<4.4"
  9795. },
  9796. "require-dev": {
  9797. "symfony/browser-kit": "^4.4|^5.0|^6.0",
  9798. "symfony/console": "^4.4|^5.0|^6.0",
  9799. "symfony/css-selector": "^4.4|^5.0|^6.0",
  9800. "symfony/stopwatch": "^4.4|^5.0|^6.0"
  9801. },
  9802. "type": "symfony-bundle",
  9803. "autoload": {
  9804. "psr-4": {
  9805. "Symfony\\Bundle\\WebProfilerBundle\\": ""
  9806. },
  9807. "exclude-from-classmap": [
  9808. "/Tests/"
  9809. ]
  9810. },
  9811. "notification-url": "https://packagist.org/downloads/",
  9812. "license": [
  9813. "MIT"
  9814. ],
  9815. "authors": [
  9816. {
  9817. "name": "Fabien Potencier",
  9818. "email": "fabien@symfony.com"
  9819. },
  9820. {
  9821. "name": "Symfony Community",
  9822. "homepage": "https://symfony.com/contributors"
  9823. }
  9824. ],
  9825. "description": "Provides a development tool that gives detailed information about the execution of any request",
  9826. "homepage": "https://symfony.com",
  9827. "support": {
  9828. "source": "https://github.com/symfony/web-profiler-bundle/tree/v5.4.13"
  9829. },
  9830. "funding": [
  9831. {
  9832. "url": "https://symfony.com/sponsor",
  9833. "type": "custom"
  9834. },
  9835. {
  9836. "url": "https://github.com/fabpot",
  9837. "type": "github"
  9838. },
  9839. {
  9840. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  9841. "type": "tidelift"
  9842. }
  9843. ],
  9844. "time": "2022-08-28T23:24:00+00:00"
  9845. },
  9846. {
  9847. "name": "theseer/tokenizer",
  9848. "version": "1.2.1",
  9849. "source": {
  9850. "type": "git",
  9851. "url": "https://github.com/theseer/tokenizer.git",
  9852. "reference": "34a41e998c2183e22995f158c581e7b5e755ab9e"
  9853. },
  9854. "dist": {
  9855. "type": "zip",
  9856. "url": "https://api.github.com/repos/theseer/tokenizer/zipball/34a41e998c2183e22995f158c581e7b5e755ab9e",
  9857. "reference": "34a41e998c2183e22995f158c581e7b5e755ab9e",
  9858. "shasum": ""
  9859. },
  9860. "require": {
  9861. "ext-dom": "*",
  9862. "ext-tokenizer": "*",
  9863. "ext-xmlwriter": "*",
  9864. "php": "^7.2 || ^8.0"
  9865. },
  9866. "type": "library",
  9867. "autoload": {
  9868. "classmap": [
  9869. "src/"
  9870. ]
  9871. },
  9872. "notification-url": "https://packagist.org/downloads/",
  9873. "license": [
  9874. "BSD-3-Clause"
  9875. ],
  9876. "authors": [
  9877. {
  9878. "name": "Arne Blankerts",
  9879. "email": "arne@blankerts.de",
  9880. "role": "Developer"
  9881. }
  9882. ],
  9883. "description": "A small library for converting tokenized PHP source code into XML and potentially other formats",
  9884. "support": {
  9885. "issues": "https://github.com/theseer/tokenizer/issues",
  9886. "source": "https://github.com/theseer/tokenizer/tree/1.2.1"
  9887. },
  9888. "funding": [
  9889. {
  9890. "url": "https://github.com/theseer",
  9891. "type": "github"
  9892. }
  9893. ],
  9894. "time": "2021-07-28T10:34:58+00:00"
  9895. }
  9896. ],
  9897. "aliases": [],
  9898. "minimum-stability": "stable",
  9899. "stability-flags": [],
  9900. "prefer-stable": false,
  9901. "prefer-lowest": false,
  9902. "platform": {
  9903. "php": "^8.1",
  9904. "ext-ctype": "*",
  9905. "ext-iconv": "*"
  9906. },
  9907. "platform-dev": [],
  9908. "platform-overrides": {
  9909. "php": "8.1"
  9910. },
  9911. "plugin-api-version": "2.3.0"
  9912. }