composer.lock 357 KB

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