composer.lock 357 KB

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