composer.lock 379 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298529953005301530253035304530553065307530853095310531153125313531453155316531753185319532053215322532353245325532653275328532953305331533253335334533553365337533853395340534153425343534453455346534753485349535053515352535353545355535653575358535953605361536253635364536553665367536853695370537153725373537453755376537753785379538053815382538353845385538653875388538953905391539253935394539553965397539853995400540154025403540454055406540754085409541054115412541354145415541654175418541954205421542254235424542554265427542854295430543154325433543454355436543754385439544054415442544354445445544654475448544954505451545254535454545554565457545854595460546154625463546454655466546754685469547054715472547354745475547654775478547954805481548254835484548554865487548854895490549154925493549454955496549754985499550055015502550355045505550655075508550955105511551255135514551555165517551855195520552155225523552455255526552755285529553055315532553355345535553655375538553955405541554255435544554555465547554855495550555155525553555455555556555755585559556055615562556355645565556655675568556955705571557255735574557555765577557855795580558155825583558455855586558755885589559055915592559355945595559655975598559956005601560256035604560556065607560856095610561156125613561456155616561756185619562056215622562356245625562656275628562956305631563256335634563556365637563856395640564156425643564456455646564756485649565056515652565356545655565656575658565956605661566256635664566556665667566856695670567156725673567456755676567756785679568056815682568356845685568656875688568956905691569256935694569556965697569856995700570157025703570457055706570757085709571057115712571357145715571657175718571957205721572257235724572557265727572857295730573157325733573457355736573757385739574057415742574357445745574657475748574957505751575257535754575557565757575857595760576157625763576457655766576757685769577057715772577357745775577657775778577957805781578257835784578557865787578857895790579157925793579457955796579757985799580058015802580358045805580658075808580958105811581258135814581558165817581858195820582158225823582458255826582758285829583058315832583358345835583658375838583958405841584258435844584558465847584858495850585158525853585458555856585758585859586058615862586358645865586658675868586958705871587258735874587558765877587858795880588158825883588458855886588758885889589058915892589358945895589658975898589959005901590259035904590559065907590859095910591159125913591459155916591759185919592059215922592359245925592659275928592959305931593259335934593559365937593859395940594159425943594459455946594759485949595059515952595359545955595659575958595959605961596259635964596559665967596859695970597159725973597459755976597759785979598059815982598359845985598659875988598959905991599259935994599559965997599859996000600160026003600460056006600760086009601060116012601360146015601660176018601960206021602260236024602560266027602860296030603160326033603460356036603760386039604060416042604360446045604660476048604960506051605260536054605560566057605860596060606160626063606460656066606760686069607060716072607360746075607660776078607960806081608260836084608560866087608860896090609160926093609460956096609760986099610061016102610361046105610661076108610961106111611261136114611561166117611861196120612161226123612461256126612761286129613061316132613361346135613661376138613961406141614261436144614561466147614861496150615161526153615461556156615761586159616061616162616361646165616661676168616961706171617261736174617561766177617861796180618161826183618461856186618761886189619061916192619361946195619661976198619962006201620262036204620562066207620862096210621162126213621462156216621762186219622062216222622362246225622662276228622962306231623262336234623562366237623862396240624162426243624462456246624762486249625062516252625362546255625662576258625962606261626262636264626562666267626862696270627162726273627462756276627762786279628062816282628362846285628662876288628962906291629262936294629562966297629862996300630163026303630463056306630763086309631063116312631363146315631663176318631963206321632263236324632563266327632863296330633163326333633463356336633763386339634063416342634363446345634663476348634963506351635263536354635563566357635863596360636163626363636463656366636763686369637063716372637363746375637663776378637963806381638263836384638563866387638863896390639163926393639463956396639763986399640064016402640364046405640664076408640964106411641264136414641564166417641864196420642164226423642464256426642764286429643064316432643364346435643664376438643964406441644264436444644564466447644864496450645164526453645464556456645764586459646064616462646364646465646664676468646964706471647264736474647564766477647864796480648164826483648464856486648764886489649064916492649364946495649664976498649965006501650265036504650565066507650865096510651165126513651465156516651765186519652065216522652365246525652665276528652965306531653265336534653565366537653865396540654165426543654465456546654765486549655065516552655365546555655665576558655965606561656265636564656565666567656865696570657165726573657465756576657765786579658065816582658365846585658665876588658965906591659265936594659565966597659865996600660166026603660466056606660766086609661066116612661366146615661666176618661966206621662266236624662566266627662866296630663166326633663466356636663766386639664066416642664366446645664666476648664966506651665266536654665566566657665866596660666166626663666466656666666766686669667066716672667366746675667666776678667966806681668266836684668566866687668866896690669166926693669466956696669766986699670067016702670367046705670667076708670967106711671267136714671567166717671867196720672167226723672467256726672767286729673067316732673367346735673667376738673967406741674267436744674567466747674867496750675167526753675467556756675767586759676067616762676367646765676667676768676967706771677267736774677567766777677867796780678167826783678467856786678767886789679067916792679367946795679667976798679968006801680268036804680568066807680868096810681168126813681468156816681768186819682068216822682368246825682668276828682968306831683268336834683568366837683868396840684168426843684468456846684768486849685068516852685368546855685668576858685968606861686268636864686568666867686868696870687168726873687468756876687768786879688068816882688368846885688668876888688968906891689268936894689568966897689868996900690169026903690469056906690769086909691069116912691369146915691669176918691969206921692269236924692569266927692869296930693169326933693469356936693769386939694069416942694369446945694669476948694969506951695269536954695569566957695869596960696169626963696469656966696769686969697069716972697369746975697669776978697969806981698269836984698569866987698869896990699169926993699469956996699769986999700070017002700370047005700670077008700970107011701270137014701570167017701870197020702170227023702470257026702770287029703070317032703370347035703670377038703970407041704270437044704570467047704870497050705170527053705470557056705770587059706070617062706370647065706670677068706970707071707270737074707570767077707870797080708170827083708470857086708770887089709070917092709370947095709670977098709971007101710271037104710571067107710871097110711171127113711471157116711771187119712071217122712371247125712671277128712971307131713271337134713571367137713871397140714171427143714471457146714771487149715071517152715371547155715671577158715971607161716271637164716571667167716871697170717171727173717471757176717771787179718071817182718371847185718671877188718971907191719271937194719571967197719871997200720172027203720472057206720772087209721072117212721372147215721672177218721972207221722272237224722572267227722872297230723172327233723472357236723772387239724072417242724372447245724672477248724972507251725272537254725572567257725872597260726172627263726472657266726772687269727072717272727372747275727672777278727972807281728272837284728572867287728872897290729172927293729472957296729772987299730073017302730373047305730673077308730973107311731273137314731573167317731873197320732173227323732473257326732773287329733073317332733373347335733673377338733973407341734273437344734573467347734873497350735173527353735473557356735773587359736073617362736373647365736673677368736973707371737273737374737573767377737873797380738173827383738473857386738773887389739073917392739373947395739673977398739974007401740274037404740574067407740874097410741174127413741474157416741774187419742074217422742374247425742674277428742974307431743274337434743574367437743874397440744174427443744474457446744774487449745074517452745374547455745674577458745974607461746274637464746574667467746874697470747174727473747474757476747774787479748074817482748374847485748674877488748974907491749274937494749574967497749874997500750175027503750475057506750775087509751075117512751375147515751675177518751975207521752275237524752575267527752875297530753175327533753475357536753775387539754075417542754375447545754675477548754975507551755275537554755575567557755875597560756175627563756475657566756775687569757075717572757375747575757675777578757975807581758275837584758575867587758875897590759175927593759475957596759775987599760076017602760376047605760676077608760976107611761276137614761576167617761876197620762176227623762476257626762776287629763076317632763376347635763676377638763976407641764276437644764576467647764876497650765176527653765476557656765776587659766076617662766376647665766676677668766976707671767276737674767576767677767876797680768176827683768476857686768776887689769076917692769376947695769676977698769977007701770277037704770577067707770877097710771177127713771477157716771777187719772077217722772377247725772677277728772977307731773277337734773577367737773877397740774177427743774477457746774777487749775077517752775377547755775677577758775977607761776277637764776577667767776877697770777177727773777477757776777777787779778077817782778377847785778677877788778977907791779277937794779577967797779877997800780178027803780478057806780778087809781078117812781378147815781678177818781978207821782278237824782578267827782878297830783178327833783478357836783778387839784078417842784378447845784678477848784978507851785278537854785578567857785878597860786178627863786478657866786778687869787078717872787378747875787678777878787978807881788278837884788578867887788878897890789178927893789478957896789778987899790079017902790379047905790679077908790979107911791279137914791579167917791879197920792179227923792479257926792779287929793079317932793379347935793679377938793979407941794279437944794579467947794879497950795179527953795479557956795779587959796079617962796379647965796679677968796979707971797279737974797579767977797879797980798179827983798479857986798779887989799079917992799379947995799679977998799980008001800280038004800580068007800880098010801180128013801480158016801780188019802080218022802380248025802680278028802980308031803280338034803580368037803880398040804180428043804480458046804780488049805080518052805380548055805680578058805980608061806280638064806580668067806880698070807180728073807480758076807780788079808080818082808380848085808680878088808980908091809280938094809580968097809880998100810181028103810481058106810781088109811081118112811381148115811681178118811981208121812281238124812581268127812881298130813181328133813481358136813781388139814081418142814381448145814681478148814981508151815281538154815581568157815881598160816181628163816481658166816781688169817081718172817381748175817681778178817981808181818281838184818581868187818881898190819181928193819481958196819781988199820082018202820382048205820682078208820982108211821282138214821582168217821882198220822182228223822482258226822782288229823082318232823382348235823682378238823982408241824282438244824582468247824882498250825182528253825482558256825782588259826082618262826382648265826682678268826982708271827282738274827582768277827882798280828182828283828482858286828782888289829082918292829382948295829682978298829983008301830283038304830583068307830883098310831183128313831483158316831783188319832083218322832383248325832683278328832983308331833283338334833583368337833883398340834183428343834483458346834783488349835083518352835383548355835683578358835983608361836283638364836583668367836883698370837183728373837483758376837783788379838083818382838383848385838683878388838983908391839283938394839583968397839883998400840184028403840484058406840784088409841084118412841384148415841684178418841984208421842284238424842584268427842884298430843184328433843484358436843784388439844084418442844384448445844684478448844984508451845284538454845584568457845884598460846184628463846484658466846784688469847084718472847384748475847684778478847984808481848284838484848584868487848884898490849184928493849484958496849784988499850085018502850385048505850685078508850985108511851285138514851585168517851885198520852185228523852485258526852785288529853085318532853385348535853685378538853985408541854285438544854585468547854885498550855185528553855485558556855785588559856085618562856385648565856685678568856985708571857285738574857585768577857885798580858185828583858485858586858785888589859085918592859385948595859685978598859986008601860286038604860586068607860886098610861186128613861486158616861786188619862086218622862386248625862686278628862986308631863286338634863586368637863886398640864186428643864486458646864786488649865086518652865386548655865686578658865986608661866286638664866586668667866886698670867186728673867486758676867786788679868086818682868386848685868686878688868986908691869286938694869586968697869886998700870187028703870487058706870787088709871087118712871387148715871687178718871987208721872287238724872587268727872887298730873187328733873487358736873787388739874087418742874387448745874687478748874987508751875287538754875587568757875887598760876187628763876487658766876787688769877087718772877387748775877687778778877987808781878287838784878587868787878887898790879187928793879487958796879787988799880088018802880388048805880688078808880988108811881288138814881588168817881888198820882188228823882488258826882788288829883088318832883388348835883688378838883988408841884288438844884588468847884888498850885188528853885488558856885788588859886088618862886388648865886688678868886988708871887288738874887588768877887888798880888188828883888488858886888788888889889088918892889388948895889688978898889989008901890289038904890589068907890889098910891189128913891489158916891789188919892089218922892389248925892689278928892989308931893289338934893589368937893889398940894189428943894489458946894789488949895089518952895389548955895689578958895989608961896289638964896589668967896889698970897189728973897489758976897789788979898089818982898389848985898689878988898989908991899289938994899589968997899889999000900190029003900490059006900790089009901090119012901390149015901690179018901990209021902290239024902590269027902890299030903190329033903490359036903790389039904090419042904390449045904690479048904990509051905290539054905590569057905890599060906190629063906490659066906790689069907090719072907390749075907690779078907990809081908290839084908590869087908890899090909190929093909490959096909790989099910091019102910391049105910691079108910991109111911291139114911591169117911891199120912191229123912491259126912791289129913091319132913391349135913691379138913991409141914291439144914591469147914891499150915191529153915491559156915791589159916091619162916391649165916691679168916991709171917291739174917591769177917891799180918191829183918491859186918791889189919091919192919391949195919691979198919992009201920292039204920592069207920892099210921192129213921492159216921792189219922092219222922392249225922692279228922992309231923292339234923592369237923892399240924192429243924492459246924792489249925092519252925392549255925692579258925992609261926292639264926592669267926892699270927192729273927492759276927792789279928092819282928392849285928692879288928992909291929292939294929592969297929892999300930193029303930493059306930793089309931093119312931393149315931693179318931993209321932293239324932593269327932893299330933193329333933493359336933793389339934093419342934393449345934693479348934993509351935293539354935593569357935893599360936193629363936493659366936793689369937093719372937393749375937693779378937993809381938293839384938593869387938893899390939193929393939493959396939793989399940094019402940394049405940694079408940994109411941294139414941594169417941894199420942194229423942494259426942794289429943094319432943394349435943694379438943994409441944294439444944594469447944894499450945194529453945494559456945794589459946094619462946394649465946694679468946994709471947294739474947594769477947894799480948194829483948494859486948794889489949094919492949394949495949694979498949995009501950295039504950595069507950895099510951195129513951495159516951795189519952095219522952395249525952695279528952995309531953295339534953595369537953895399540954195429543954495459546954795489549955095519552955395549555955695579558955995609561956295639564956595669567956895699570957195729573957495759576957795789579958095819582958395849585958695879588958995909591959295939594959595969597959895999600960196029603960496059606960796089609961096119612961396149615961696179618961996209621962296239624962596269627962896299630963196329633963496359636963796389639964096419642964396449645964696479648964996509651965296539654965596569657965896599660966196629663966496659666966796689669967096719672967396749675967696779678967996809681968296839684968596869687968896899690969196929693969496959696969796989699970097019702970397049705970697079708970997109711971297139714971597169717971897199720972197229723972497259726972797289729973097319732973397349735973697379738973997409741974297439744974597469747974897499750975197529753975497559756975797589759976097619762976397649765976697679768976997709771977297739774977597769777977897799780978197829783978497859786978797889789979097919792979397949795979697979798979998009801980298039804980598069807980898099810981198129813981498159816981798189819982098219822982398249825982698279828982998309831983298339834983598369837983898399840984198429843984498459846984798489849985098519852985398549855985698579858985998609861986298639864986598669867986898699870987198729873987498759876987798789879988098819882988398849885988698879888988998909891989298939894989598969897989898999900990199029903990499059906990799089909991099119912991399149915991699179918991999209921992299239924992599269927992899299930993199329933993499359936993799389939994099419942994399449945994699479948994999509951995299539954995599569957995899599960996199629963996499659966996799689969997099719972997399749975997699779978997999809981998299839984998599869987998899899990999199929993999499959996999799989999100001000110002100031000410005100061000710008100091001010011100121001310014100151001610017100181001910020100211002210023100241002510026100271002810029100301003110032100331003410035100361003710038100391004010041100421004310044100451004610047100481004910050100511005210053100541005510056100571005810059100601006110062100631006410065100661006710068100691007010071100721007310074100751007610077100781007910080100811008210083100841008510086100871008810089100901009110092100931009410095100961009710098100991010010101101021010310104101051010610107101081010910110101111011210113101141011510116101171011810119101201012110122101231012410125101261012710128101291013010131101321013310134101351013610137101381013910140101411014210143101441014510146101471014810149101501015110152101531015410155101561015710158101591016010161101621016310164101651016610167101681016910170101711017210173101741017510176101771017810179101801018110182101831018410185101861018710188101891019010191101921019310194101951019610197101981019910200102011020210203102041020510206102071020810209102101021110212102131021410215102161021710218102191022010221102221022310224102251022610227102281022910230102311023210233102341023510236102371023810239102401024110242102431024410245102461024710248102491025010251102521025310254102551025610257102581025910260102611026210263102641026510266102671026810269102701027110272102731027410275102761027710278102791028010281102821028310284102851028610287102881028910290102911029210293102941029510296102971029810299103001030110302103031030410305103061030710308103091031010311103121031310314103151031610317103181031910320103211032210323103241032510326103271032810329103301033110332103331033410335103361033710338103391034010341103421034310344103451034610347103481034910350103511035210353103541035510356103571035810359103601036110362103631036410365103661036710368103691037010371103721037310374103751037610377103781037910380103811038210383103841038510386103871038810389103901039110392103931039410395
  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": "5f8be235a81117a49ff41c06703d3700",
  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": "dflydev/dot-access-data",
  84. "version": "v3.0.2",
  85. "source": {
  86. "type": "git",
  87. "url": "https://github.com/dflydev/dflydev-dot-access-data.git",
  88. "reference": "f41715465d65213d644d3141a6a93081be5d3549"
  89. },
  90. "dist": {
  91. "type": "zip",
  92. "url": "https://api.github.com/repos/dflydev/dflydev-dot-access-data/zipball/f41715465d65213d644d3141a6a93081be5d3549",
  93. "reference": "f41715465d65213d644d3141a6a93081be5d3549",
  94. "shasum": ""
  95. },
  96. "require": {
  97. "php": "^7.1 || ^8.0"
  98. },
  99. "require-dev": {
  100. "phpstan/phpstan": "^0.12.42",
  101. "phpunit/phpunit": "^7.5 || ^8.5 || ^9.3",
  102. "scrutinizer/ocular": "1.6.0",
  103. "squizlabs/php_codesniffer": "^3.5",
  104. "vimeo/psalm": "^4.0.0"
  105. },
  106. "type": "library",
  107. "extra": {
  108. "branch-alias": {
  109. "dev-main": "3.x-dev"
  110. }
  111. },
  112. "autoload": {
  113. "psr-4": {
  114. "Dflydev\\DotAccessData\\": "src/"
  115. }
  116. },
  117. "notification-url": "https://packagist.org/downloads/",
  118. "license": [
  119. "MIT"
  120. ],
  121. "authors": [
  122. {
  123. "name": "Dragonfly Development Inc.",
  124. "email": "info@dflydev.com",
  125. "homepage": "http://dflydev.com"
  126. },
  127. {
  128. "name": "Beau Simensen",
  129. "email": "beau@dflydev.com",
  130. "homepage": "http://beausimensen.com"
  131. },
  132. {
  133. "name": "Carlos Frutos",
  134. "email": "carlos@kiwing.it",
  135. "homepage": "https://github.com/cfrutos"
  136. },
  137. {
  138. "name": "Colin O'Dell",
  139. "email": "colinodell@gmail.com",
  140. "homepage": "https://www.colinodell.com"
  141. }
  142. ],
  143. "description": "Given a deep data structure, access data by dot notation.",
  144. "homepage": "https://github.com/dflydev/dflydev-dot-access-data",
  145. "keywords": [
  146. "access",
  147. "data",
  148. "dot",
  149. "notation"
  150. ],
  151. "support": {
  152. "issues": "https://github.com/dflydev/dflydev-dot-access-data/issues",
  153. "source": "https://github.com/dflydev/dflydev-dot-access-data/tree/v3.0.2"
  154. },
  155. "time": "2022-10-27T11:44:00+00:00"
  156. },
  157. {
  158. "name": "doctrine/annotations",
  159. "version": "1.13.3",
  160. "source": {
  161. "type": "git",
  162. "url": "https://github.com/doctrine/annotations.git",
  163. "reference": "648b0343343565c4a056bfc8392201385e8d89f0"
  164. },
  165. "dist": {
  166. "type": "zip",
  167. "url": "https://api.github.com/repos/doctrine/annotations/zipball/648b0343343565c4a056bfc8392201385e8d89f0",
  168. "reference": "648b0343343565c4a056bfc8392201385e8d89f0",
  169. "shasum": ""
  170. },
  171. "require": {
  172. "doctrine/lexer": "1.*",
  173. "ext-tokenizer": "*",
  174. "php": "^7.1 || ^8.0",
  175. "psr/cache": "^1 || ^2 || ^3"
  176. },
  177. "require-dev": {
  178. "doctrine/cache": "^1.11 || ^2.0",
  179. "doctrine/coding-standard": "^6.0 || ^8.1",
  180. "phpstan/phpstan": "^1.4.10 || ^1.8.0",
  181. "phpunit/phpunit": "^7.5 || ^8.0 || ^9.1.5",
  182. "symfony/cache": "^4.4 || ^5.2",
  183. "vimeo/psalm": "^4.10"
  184. },
  185. "type": "library",
  186. "autoload": {
  187. "psr-4": {
  188. "Doctrine\\Common\\Annotations\\": "lib/Doctrine/Common/Annotations"
  189. }
  190. },
  191. "notification-url": "https://packagist.org/downloads/",
  192. "license": [
  193. "MIT"
  194. ],
  195. "authors": [
  196. {
  197. "name": "Guilherme Blanco",
  198. "email": "guilhermeblanco@gmail.com"
  199. },
  200. {
  201. "name": "Roman Borschel",
  202. "email": "roman@code-factory.org"
  203. },
  204. {
  205. "name": "Benjamin Eberlei",
  206. "email": "kontakt@beberlei.de"
  207. },
  208. {
  209. "name": "Jonathan Wage",
  210. "email": "jonwage@gmail.com"
  211. },
  212. {
  213. "name": "Johannes Schmitt",
  214. "email": "schmittjoh@gmail.com"
  215. }
  216. ],
  217. "description": "Docblock Annotations Parser",
  218. "homepage": "https://www.doctrine-project.org/projects/annotations.html",
  219. "keywords": [
  220. "annotations",
  221. "docblock",
  222. "parser"
  223. ],
  224. "support": {
  225. "issues": "https://github.com/doctrine/annotations/issues",
  226. "source": "https://github.com/doctrine/annotations/tree/1.13.3"
  227. },
  228. "time": "2022-07-02T10:48:51+00:00"
  229. },
  230. {
  231. "name": "doctrine/cache",
  232. "version": "2.2.0",
  233. "source": {
  234. "type": "git",
  235. "url": "https://github.com/doctrine/cache.git",
  236. "reference": "1ca8f21980e770095a31456042471a57bc4c68fb"
  237. },
  238. "dist": {
  239. "type": "zip",
  240. "url": "https://api.github.com/repos/doctrine/cache/zipball/1ca8f21980e770095a31456042471a57bc4c68fb",
  241. "reference": "1ca8f21980e770095a31456042471a57bc4c68fb",
  242. "shasum": ""
  243. },
  244. "require": {
  245. "php": "~7.1 || ^8.0"
  246. },
  247. "conflict": {
  248. "doctrine/common": ">2.2,<2.4"
  249. },
  250. "require-dev": {
  251. "cache/integration-tests": "dev-master",
  252. "doctrine/coding-standard": "^9",
  253. "phpunit/phpunit": "^7.5 || ^8.5 || ^9.5",
  254. "psr/cache": "^1.0 || ^2.0 || ^3.0",
  255. "symfony/cache": "^4.4 || ^5.4 || ^6",
  256. "symfony/var-exporter": "^4.4 || ^5.4 || ^6"
  257. },
  258. "type": "library",
  259. "autoload": {
  260. "psr-4": {
  261. "Doctrine\\Common\\Cache\\": "lib/Doctrine/Common/Cache"
  262. }
  263. },
  264. "notification-url": "https://packagist.org/downloads/",
  265. "license": [
  266. "MIT"
  267. ],
  268. "authors": [
  269. {
  270. "name": "Guilherme Blanco",
  271. "email": "guilhermeblanco@gmail.com"
  272. },
  273. {
  274. "name": "Roman Borschel",
  275. "email": "roman@code-factory.org"
  276. },
  277. {
  278. "name": "Benjamin Eberlei",
  279. "email": "kontakt@beberlei.de"
  280. },
  281. {
  282. "name": "Jonathan Wage",
  283. "email": "jonwage@gmail.com"
  284. },
  285. {
  286. "name": "Johannes Schmitt",
  287. "email": "schmittjoh@gmail.com"
  288. }
  289. ],
  290. "description": "PHP Doctrine Cache library is a popular cache implementation that supports many different drivers such as redis, memcache, apc, mongodb and others.",
  291. "homepage": "https://www.doctrine-project.org/projects/cache.html",
  292. "keywords": [
  293. "abstraction",
  294. "apcu",
  295. "cache",
  296. "caching",
  297. "couchdb",
  298. "memcached",
  299. "php",
  300. "redis",
  301. "xcache"
  302. ],
  303. "support": {
  304. "issues": "https://github.com/doctrine/cache/issues",
  305. "source": "https://github.com/doctrine/cache/tree/2.2.0"
  306. },
  307. "funding": [
  308. {
  309. "url": "https://www.doctrine-project.org/sponsorship.html",
  310. "type": "custom"
  311. },
  312. {
  313. "url": "https://www.patreon.com/phpdoctrine",
  314. "type": "patreon"
  315. },
  316. {
  317. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fcache",
  318. "type": "tidelift"
  319. }
  320. ],
  321. "time": "2022-05-20T20:07:39+00:00"
  322. },
  323. {
  324. "name": "doctrine/collections",
  325. "version": "1.8.0",
  326. "source": {
  327. "type": "git",
  328. "url": "https://github.com/doctrine/collections.git",
  329. "reference": "2b44dd4cbca8b5744327de78bafef5945c7e7b5e"
  330. },
  331. "dist": {
  332. "type": "zip",
  333. "url": "https://api.github.com/repos/doctrine/collections/zipball/2b44dd4cbca8b5744327de78bafef5945c7e7b5e",
  334. "reference": "2b44dd4cbca8b5744327de78bafef5945c7e7b5e",
  335. "shasum": ""
  336. },
  337. "require": {
  338. "doctrine/deprecations": "^0.5.3 || ^1",
  339. "php": "^7.1.3 || ^8.0"
  340. },
  341. "require-dev": {
  342. "doctrine/coding-standard": "^9.0 || ^10.0",
  343. "phpstan/phpstan": "^1.4.8",
  344. "phpunit/phpunit": "^7.5 || ^8.5 || ^9.1.5",
  345. "vimeo/psalm": "^4.22"
  346. },
  347. "type": "library",
  348. "autoload": {
  349. "psr-4": {
  350. "Doctrine\\Common\\Collections\\": "lib/Doctrine/Common/Collections"
  351. }
  352. },
  353. "notification-url": "https://packagist.org/downloads/",
  354. "license": [
  355. "MIT"
  356. ],
  357. "authors": [
  358. {
  359. "name": "Guilherme Blanco",
  360. "email": "guilhermeblanco@gmail.com"
  361. },
  362. {
  363. "name": "Roman Borschel",
  364. "email": "roman@code-factory.org"
  365. },
  366. {
  367. "name": "Benjamin Eberlei",
  368. "email": "kontakt@beberlei.de"
  369. },
  370. {
  371. "name": "Jonathan Wage",
  372. "email": "jonwage@gmail.com"
  373. },
  374. {
  375. "name": "Johannes Schmitt",
  376. "email": "schmittjoh@gmail.com"
  377. }
  378. ],
  379. "description": "PHP Doctrine Collections library that adds additional functionality on top of PHP arrays.",
  380. "homepage": "https://www.doctrine-project.org/projects/collections.html",
  381. "keywords": [
  382. "array",
  383. "collections",
  384. "iterators",
  385. "php"
  386. ],
  387. "support": {
  388. "issues": "https://github.com/doctrine/collections/issues",
  389. "source": "https://github.com/doctrine/collections/tree/1.8.0"
  390. },
  391. "time": "2022-09-01T20:12:10+00:00"
  392. },
  393. {
  394. "name": "doctrine/common",
  395. "version": "3.4.3",
  396. "source": {
  397. "type": "git",
  398. "url": "https://github.com/doctrine/common.git",
  399. "reference": "8b5e5650391f851ed58910b3e3d48a71062eeced"
  400. },
  401. "dist": {
  402. "type": "zip",
  403. "url": "https://api.github.com/repos/doctrine/common/zipball/8b5e5650391f851ed58910b3e3d48a71062eeced",
  404. "reference": "8b5e5650391f851ed58910b3e3d48a71062eeced",
  405. "shasum": ""
  406. },
  407. "require": {
  408. "doctrine/persistence": "^2.0 || ^3.0",
  409. "php": "^7.1 || ^8.0"
  410. },
  411. "require-dev": {
  412. "doctrine/coding-standard": "^9.0 || ^10.0",
  413. "doctrine/collections": "^1",
  414. "phpstan/phpstan": "^1.4.1",
  415. "phpstan/phpstan-phpunit": "^1",
  416. "phpunit/phpunit": "^7.5.20 || ^8.5 || ^9.0",
  417. "squizlabs/php_codesniffer": "^3.0",
  418. "symfony/phpunit-bridge": "^6.1",
  419. "vimeo/psalm": "^4.4"
  420. },
  421. "type": "library",
  422. "autoload": {
  423. "psr-4": {
  424. "Doctrine\\Common\\": "src"
  425. }
  426. },
  427. "notification-url": "https://packagist.org/downloads/",
  428. "license": [
  429. "MIT"
  430. ],
  431. "authors": [
  432. {
  433. "name": "Guilherme Blanco",
  434. "email": "guilhermeblanco@gmail.com"
  435. },
  436. {
  437. "name": "Roman Borschel",
  438. "email": "roman@code-factory.org"
  439. },
  440. {
  441. "name": "Benjamin Eberlei",
  442. "email": "kontakt@beberlei.de"
  443. },
  444. {
  445. "name": "Jonathan Wage",
  446. "email": "jonwage@gmail.com"
  447. },
  448. {
  449. "name": "Johannes Schmitt",
  450. "email": "schmittjoh@gmail.com"
  451. },
  452. {
  453. "name": "Marco Pivetta",
  454. "email": "ocramius@gmail.com"
  455. }
  456. ],
  457. "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.",
  458. "homepage": "https://www.doctrine-project.org/projects/common.html",
  459. "keywords": [
  460. "common",
  461. "doctrine",
  462. "php"
  463. ],
  464. "support": {
  465. "issues": "https://github.com/doctrine/common/issues",
  466. "source": "https://github.com/doctrine/common/tree/3.4.3"
  467. },
  468. "funding": [
  469. {
  470. "url": "https://www.doctrine-project.org/sponsorship.html",
  471. "type": "custom"
  472. },
  473. {
  474. "url": "https://www.patreon.com/phpdoctrine",
  475. "type": "patreon"
  476. },
  477. {
  478. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fcommon",
  479. "type": "tidelift"
  480. }
  481. ],
  482. "time": "2022-10-09T11:47:59+00:00"
  483. },
  484. {
  485. "name": "doctrine/dbal",
  486. "version": "3.4.5",
  487. "source": {
  488. "type": "git",
  489. "url": "https://github.com/doctrine/dbal.git",
  490. "reference": "a5a58773109c0abb13e658c8ccd92aeec8d07f9e"
  491. },
  492. "dist": {
  493. "type": "zip",
  494. "url": "https://api.github.com/repos/doctrine/dbal/zipball/a5a58773109c0abb13e658c8ccd92aeec8d07f9e",
  495. "reference": "a5a58773109c0abb13e658c8ccd92aeec8d07f9e",
  496. "shasum": ""
  497. },
  498. "require": {
  499. "composer-runtime-api": "^2",
  500. "doctrine/cache": "^1.11|^2.0",
  501. "doctrine/deprecations": "^0.5.3|^1",
  502. "doctrine/event-manager": "^1.0",
  503. "php": "^7.4 || ^8.0",
  504. "psr/cache": "^1|^2|^3",
  505. "psr/log": "^1|^2|^3"
  506. },
  507. "require-dev": {
  508. "doctrine/coding-standard": "10.0.0",
  509. "jetbrains/phpstorm-stubs": "2022.2",
  510. "phpstan/phpstan": "1.8.3",
  511. "phpstan/phpstan-strict-rules": "^1.3",
  512. "phpunit/phpunit": "9.5.24",
  513. "psalm/plugin-phpunit": "0.17.0",
  514. "squizlabs/php_codesniffer": "3.7.1",
  515. "symfony/cache": "^5.4|^6.0",
  516. "symfony/console": "^4.4|^5.4|^6.0",
  517. "vimeo/psalm": "4.27.0"
  518. },
  519. "suggest": {
  520. "symfony/console": "For helpful console commands such as SQL execution and import of files."
  521. },
  522. "bin": [
  523. "bin/doctrine-dbal"
  524. ],
  525. "type": "library",
  526. "autoload": {
  527. "psr-4": {
  528. "Doctrine\\DBAL\\": "src"
  529. }
  530. },
  531. "notification-url": "https://packagist.org/downloads/",
  532. "license": [
  533. "MIT"
  534. ],
  535. "authors": [
  536. {
  537. "name": "Guilherme Blanco",
  538. "email": "guilhermeblanco@gmail.com"
  539. },
  540. {
  541. "name": "Roman Borschel",
  542. "email": "roman@code-factory.org"
  543. },
  544. {
  545. "name": "Benjamin Eberlei",
  546. "email": "kontakt@beberlei.de"
  547. },
  548. {
  549. "name": "Jonathan Wage",
  550. "email": "jonwage@gmail.com"
  551. }
  552. ],
  553. "description": "Powerful PHP database abstraction layer (DBAL) with many features for database schema introspection and management.",
  554. "homepage": "https://www.doctrine-project.org/projects/dbal.html",
  555. "keywords": [
  556. "abstraction",
  557. "database",
  558. "db2",
  559. "dbal",
  560. "mariadb",
  561. "mssql",
  562. "mysql",
  563. "oci8",
  564. "oracle",
  565. "pdo",
  566. "pgsql",
  567. "postgresql",
  568. "queryobject",
  569. "sasql",
  570. "sql",
  571. "sqlite",
  572. "sqlserver",
  573. "sqlsrv"
  574. ],
  575. "support": {
  576. "issues": "https://github.com/doctrine/dbal/issues",
  577. "source": "https://github.com/doctrine/dbal/tree/3.4.5"
  578. },
  579. "funding": [
  580. {
  581. "url": "https://www.doctrine-project.org/sponsorship.html",
  582. "type": "custom"
  583. },
  584. {
  585. "url": "https://www.patreon.com/phpdoctrine",
  586. "type": "patreon"
  587. },
  588. {
  589. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fdbal",
  590. "type": "tidelift"
  591. }
  592. ],
  593. "time": "2022-09-23T17:48:57+00:00"
  594. },
  595. {
  596. "name": "doctrine/deprecations",
  597. "version": "v1.0.0",
  598. "source": {
  599. "type": "git",
  600. "url": "https://github.com/doctrine/deprecations.git",
  601. "reference": "0e2a4f1f8cdfc7a92ec3b01c9334898c806b30de"
  602. },
  603. "dist": {
  604. "type": "zip",
  605. "url": "https://api.github.com/repos/doctrine/deprecations/zipball/0e2a4f1f8cdfc7a92ec3b01c9334898c806b30de",
  606. "reference": "0e2a4f1f8cdfc7a92ec3b01c9334898c806b30de",
  607. "shasum": ""
  608. },
  609. "require": {
  610. "php": "^7.1|^8.0"
  611. },
  612. "require-dev": {
  613. "doctrine/coding-standard": "^9",
  614. "phpunit/phpunit": "^7.5|^8.5|^9.5",
  615. "psr/log": "^1|^2|^3"
  616. },
  617. "suggest": {
  618. "psr/log": "Allows logging deprecations via PSR-3 logger implementation"
  619. },
  620. "type": "library",
  621. "autoload": {
  622. "psr-4": {
  623. "Doctrine\\Deprecations\\": "lib/Doctrine/Deprecations"
  624. }
  625. },
  626. "notification-url": "https://packagist.org/downloads/",
  627. "license": [
  628. "MIT"
  629. ],
  630. "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.",
  631. "homepage": "https://www.doctrine-project.org/",
  632. "support": {
  633. "issues": "https://github.com/doctrine/deprecations/issues",
  634. "source": "https://github.com/doctrine/deprecations/tree/v1.0.0"
  635. },
  636. "time": "2022-05-02T15:47:09+00:00"
  637. },
  638. {
  639. "name": "doctrine/doctrine-bundle",
  640. "version": "2.7.0",
  641. "source": {
  642. "type": "git",
  643. "url": "https://github.com/doctrine/DoctrineBundle.git",
  644. "reference": "d2088fc50494e4e7441fecca54732245a613eeb6"
  645. },
  646. "dist": {
  647. "type": "zip",
  648. "url": "https://api.github.com/repos/doctrine/DoctrineBundle/zipball/d2088fc50494e4e7441fecca54732245a613eeb6",
  649. "reference": "d2088fc50494e4e7441fecca54732245a613eeb6",
  650. "shasum": ""
  651. },
  652. "require": {
  653. "doctrine/annotations": "^1",
  654. "doctrine/cache": "^1.11 || ^2.0",
  655. "doctrine/dbal": "^2.13.1|^3.3.2",
  656. "doctrine/persistence": "^2.2|^3",
  657. "doctrine/sql-formatter": "^1.0.1",
  658. "php": "^7.1 || ^8.0",
  659. "symfony/cache": "^4.3.3|^5.0|^6.0",
  660. "symfony/config": "^4.4.3|^5.0|^6.0",
  661. "symfony/console": "^3.4.30|^4.3.3|^5.0|^6.0",
  662. "symfony/dependency-injection": "^4.4.18|^5.0|^6.0",
  663. "symfony/deprecation-contracts": "^2.1|^3",
  664. "symfony/doctrine-bridge": "^4.4.22|^5.2.7|^6.0",
  665. "symfony/framework-bundle": "^3.4.30|^4.3.3|^5.0|^6.0",
  666. "symfony/service-contracts": "^1.1.1|^2.0|^3"
  667. },
  668. "conflict": {
  669. "doctrine/orm": "<2.10|>=3.0",
  670. "twig/twig": "<1.34|>=2.0,<2.4"
  671. },
  672. "require-dev": {
  673. "doctrine/coding-standard": "^9.0",
  674. "doctrine/orm": "^2.11 || ^3.0",
  675. "friendsofphp/proxy-manager-lts": "^1.0",
  676. "phpunit/phpunit": "^7.5 || ^8.0 || ^9.3 || ^10.0",
  677. "psalm/plugin-phpunit": "^0.16.1",
  678. "psalm/plugin-symfony": "^3",
  679. "psr/log": "^1.1.4|^2.0|^3.0",
  680. "symfony/phpunit-bridge": "^5.2|^6.0",
  681. "symfony/property-info": "^4.3.3|^5.0|^6.0",
  682. "symfony/proxy-manager-bridge": "^3.4|^4.3.3|^5.0|^6.0",
  683. "symfony/security-bundle": "^4.4|^5.0|^6.0",
  684. "symfony/twig-bridge": "^3.4.30|^4.3.3|^5.0|^6.0",
  685. "symfony/validator": "^3.4.30|^4.3.3|^5.0|^6.0",
  686. "symfony/web-profiler-bundle": "^3.4.30|^4.3.3|^5.0|^6.0",
  687. "symfony/yaml": "^3.4.30|^4.3.3|^5.0|^6.0",
  688. "twig/twig": "^1.34|^2.12|^3.0",
  689. "vimeo/psalm": "^4.7"
  690. },
  691. "suggest": {
  692. "doctrine/orm": "The Doctrine ORM integration is optional in the bundle.",
  693. "ext-pdo": "*",
  694. "symfony/web-profiler-bundle": "To use the data collector."
  695. },
  696. "type": "symfony-bundle",
  697. "autoload": {
  698. "psr-4": {
  699. "Doctrine\\Bundle\\DoctrineBundle\\": ""
  700. }
  701. },
  702. "notification-url": "https://packagist.org/downloads/",
  703. "license": [
  704. "MIT"
  705. ],
  706. "authors": [
  707. {
  708. "name": "Fabien Potencier",
  709. "email": "fabien@symfony.com"
  710. },
  711. {
  712. "name": "Benjamin Eberlei",
  713. "email": "kontakt@beberlei.de"
  714. },
  715. {
  716. "name": "Symfony Community",
  717. "homepage": "https://symfony.com/contributors"
  718. },
  719. {
  720. "name": "Doctrine Project",
  721. "homepage": "https://www.doctrine-project.org/"
  722. }
  723. ],
  724. "description": "Symfony DoctrineBundle",
  725. "homepage": "https://www.doctrine-project.org",
  726. "keywords": [
  727. "database",
  728. "dbal",
  729. "orm",
  730. "persistence"
  731. ],
  732. "support": {
  733. "issues": "https://github.com/doctrine/DoctrineBundle/issues",
  734. "source": "https://github.com/doctrine/DoctrineBundle/tree/2.7.0"
  735. },
  736. "funding": [
  737. {
  738. "url": "https://www.doctrine-project.org/sponsorship.html",
  739. "type": "custom"
  740. },
  741. {
  742. "url": "https://www.patreon.com/phpdoctrine",
  743. "type": "patreon"
  744. },
  745. {
  746. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fdoctrine-bundle",
  747. "type": "tidelift"
  748. }
  749. ],
  750. "time": "2022-06-10T10:55:26+00:00"
  751. },
  752. {
  753. "name": "doctrine/doctrine-migrations-bundle",
  754. "version": "3.2.2",
  755. "source": {
  756. "type": "git",
  757. "url": "https://github.com/doctrine/DoctrineMigrationsBundle.git",
  758. "reference": "3393f411ba25ade21969c33f2053220044854d01"
  759. },
  760. "dist": {
  761. "type": "zip",
  762. "url": "https://api.github.com/repos/doctrine/DoctrineMigrationsBundle/zipball/3393f411ba25ade21969c33f2053220044854d01",
  763. "reference": "3393f411ba25ade21969c33f2053220044854d01",
  764. "shasum": ""
  765. },
  766. "require": {
  767. "doctrine/doctrine-bundle": "~1.0|~2.0",
  768. "doctrine/migrations": "^3.2",
  769. "php": "^7.2|^8.0",
  770. "symfony/framework-bundle": "~3.4|~4.0|~5.0|~6.0"
  771. },
  772. "require-dev": {
  773. "doctrine/coding-standard": "^8.0",
  774. "doctrine/orm": "^2.6",
  775. "doctrine/persistence": "^1.3||^2.0",
  776. "phpstan/phpstan": "^0.12",
  777. "phpstan/phpstan-deprecation-rules": "^0.12",
  778. "phpstan/phpstan-phpunit": "^0.12",
  779. "phpstan/phpstan-strict-rules": "^0.12",
  780. "phpunit/phpunit": "^8.0|^9.0",
  781. "vimeo/psalm": "^4.11"
  782. },
  783. "type": "symfony-bundle",
  784. "autoload": {
  785. "psr-4": {
  786. "Doctrine\\Bundle\\MigrationsBundle\\": ""
  787. },
  788. "exclude-from-classmap": [
  789. "/Tests/"
  790. ]
  791. },
  792. "notification-url": "https://packagist.org/downloads/",
  793. "license": [
  794. "MIT"
  795. ],
  796. "authors": [
  797. {
  798. "name": "Fabien Potencier",
  799. "email": "fabien@symfony.com"
  800. },
  801. {
  802. "name": "Doctrine Project",
  803. "homepage": "https://www.doctrine-project.org"
  804. },
  805. {
  806. "name": "Symfony Community",
  807. "homepage": "https://symfony.com/contributors"
  808. }
  809. ],
  810. "description": "Symfony DoctrineMigrationsBundle",
  811. "homepage": "https://www.doctrine-project.org",
  812. "keywords": [
  813. "dbal",
  814. "migrations",
  815. "schema"
  816. ],
  817. "support": {
  818. "issues": "https://github.com/doctrine/DoctrineMigrationsBundle/issues",
  819. "source": "https://github.com/doctrine/DoctrineMigrationsBundle/tree/3.2.2"
  820. },
  821. "funding": [
  822. {
  823. "url": "https://www.doctrine-project.org/sponsorship.html",
  824. "type": "custom"
  825. },
  826. {
  827. "url": "https://www.patreon.com/phpdoctrine",
  828. "type": "patreon"
  829. },
  830. {
  831. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fdoctrine-migrations-bundle",
  832. "type": "tidelift"
  833. }
  834. ],
  835. "time": "2022-02-01T18:08:07+00:00"
  836. },
  837. {
  838. "name": "doctrine/event-manager",
  839. "version": "1.1.2",
  840. "source": {
  841. "type": "git",
  842. "url": "https://github.com/doctrine/event-manager.git",
  843. "reference": "eb2ecf80e3093e8f3c2769ac838e27d8ede8e683"
  844. },
  845. "dist": {
  846. "type": "zip",
  847. "url": "https://api.github.com/repos/doctrine/event-manager/zipball/eb2ecf80e3093e8f3c2769ac838e27d8ede8e683",
  848. "reference": "eb2ecf80e3093e8f3c2769ac838e27d8ede8e683",
  849. "shasum": ""
  850. },
  851. "require": {
  852. "php": "^7.1 || ^8.0"
  853. },
  854. "conflict": {
  855. "doctrine/common": "<2.9"
  856. },
  857. "require-dev": {
  858. "doctrine/coding-standard": "^9",
  859. "phpstan/phpstan": "~1.4.10 || ^1.5.4",
  860. "phpunit/phpunit": "^7.5 || ^8.5 || ^9.5",
  861. "vimeo/psalm": "^4.22"
  862. },
  863. "type": "library",
  864. "autoload": {
  865. "psr-4": {
  866. "Doctrine\\Common\\": "lib/Doctrine/Common"
  867. }
  868. },
  869. "notification-url": "https://packagist.org/downloads/",
  870. "license": [
  871. "MIT"
  872. ],
  873. "authors": [
  874. {
  875. "name": "Guilherme Blanco",
  876. "email": "guilhermeblanco@gmail.com"
  877. },
  878. {
  879. "name": "Roman Borschel",
  880. "email": "roman@code-factory.org"
  881. },
  882. {
  883. "name": "Benjamin Eberlei",
  884. "email": "kontakt@beberlei.de"
  885. },
  886. {
  887. "name": "Jonathan Wage",
  888. "email": "jonwage@gmail.com"
  889. },
  890. {
  891. "name": "Johannes Schmitt",
  892. "email": "schmittjoh@gmail.com"
  893. },
  894. {
  895. "name": "Marco Pivetta",
  896. "email": "ocramius@gmail.com"
  897. }
  898. ],
  899. "description": "The Doctrine Event Manager is a simple PHP event system that was built to be used with the various Doctrine projects.",
  900. "homepage": "https://www.doctrine-project.org/projects/event-manager.html",
  901. "keywords": [
  902. "event",
  903. "event dispatcher",
  904. "event manager",
  905. "event system",
  906. "events"
  907. ],
  908. "support": {
  909. "issues": "https://github.com/doctrine/event-manager/issues",
  910. "source": "https://github.com/doctrine/event-manager/tree/1.1.2"
  911. },
  912. "funding": [
  913. {
  914. "url": "https://www.doctrine-project.org/sponsorship.html",
  915. "type": "custom"
  916. },
  917. {
  918. "url": "https://www.patreon.com/phpdoctrine",
  919. "type": "patreon"
  920. },
  921. {
  922. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fevent-manager",
  923. "type": "tidelift"
  924. }
  925. ],
  926. "time": "2022-07-27T22:18:11+00:00"
  927. },
  928. {
  929. "name": "doctrine/inflector",
  930. "version": "2.0.5",
  931. "source": {
  932. "type": "git",
  933. "url": "https://github.com/doctrine/inflector.git",
  934. "reference": "ade2b3bbfb776f27f0558e26eed43b5d9fe1b392"
  935. },
  936. "dist": {
  937. "type": "zip",
  938. "url": "https://api.github.com/repos/doctrine/inflector/zipball/ade2b3bbfb776f27f0558e26eed43b5d9fe1b392",
  939. "reference": "ade2b3bbfb776f27f0558e26eed43b5d9fe1b392",
  940. "shasum": ""
  941. },
  942. "require": {
  943. "php": "^7.2 || ^8.0"
  944. },
  945. "require-dev": {
  946. "doctrine/coding-standard": "^9",
  947. "phpstan/phpstan": "^1.8",
  948. "phpstan/phpstan-phpunit": "^1.1",
  949. "phpstan/phpstan-strict-rules": "^1.3",
  950. "phpunit/phpunit": "^8.5 || ^9.5",
  951. "vimeo/psalm": "^4.25"
  952. },
  953. "type": "library",
  954. "autoload": {
  955. "psr-4": {
  956. "Doctrine\\Inflector\\": "lib/Doctrine/Inflector"
  957. }
  958. },
  959. "notification-url": "https://packagist.org/downloads/",
  960. "license": [
  961. "MIT"
  962. ],
  963. "authors": [
  964. {
  965. "name": "Guilherme Blanco",
  966. "email": "guilhermeblanco@gmail.com"
  967. },
  968. {
  969. "name": "Roman Borschel",
  970. "email": "roman@code-factory.org"
  971. },
  972. {
  973. "name": "Benjamin Eberlei",
  974. "email": "kontakt@beberlei.de"
  975. },
  976. {
  977. "name": "Jonathan Wage",
  978. "email": "jonwage@gmail.com"
  979. },
  980. {
  981. "name": "Johannes Schmitt",
  982. "email": "schmittjoh@gmail.com"
  983. }
  984. ],
  985. "description": "PHP Doctrine Inflector is a small library that can perform string manipulations with regard to upper/lowercase and singular/plural forms of words.",
  986. "homepage": "https://www.doctrine-project.org/projects/inflector.html",
  987. "keywords": [
  988. "inflection",
  989. "inflector",
  990. "lowercase",
  991. "manipulation",
  992. "php",
  993. "plural",
  994. "singular",
  995. "strings",
  996. "uppercase",
  997. "words"
  998. ],
  999. "support": {
  1000. "issues": "https://github.com/doctrine/inflector/issues",
  1001. "source": "https://github.com/doctrine/inflector/tree/2.0.5"
  1002. },
  1003. "funding": [
  1004. {
  1005. "url": "https://www.doctrine-project.org/sponsorship.html",
  1006. "type": "custom"
  1007. },
  1008. {
  1009. "url": "https://www.patreon.com/phpdoctrine",
  1010. "type": "patreon"
  1011. },
  1012. {
  1013. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Finflector",
  1014. "type": "tidelift"
  1015. }
  1016. ],
  1017. "time": "2022-09-07T09:01:28+00:00"
  1018. },
  1019. {
  1020. "name": "doctrine/instantiator",
  1021. "version": "1.4.1",
  1022. "source": {
  1023. "type": "git",
  1024. "url": "https://github.com/doctrine/instantiator.git",
  1025. "reference": "10dcfce151b967d20fde1b34ae6640712c3891bc"
  1026. },
  1027. "dist": {
  1028. "type": "zip",
  1029. "url": "https://api.github.com/repos/doctrine/instantiator/zipball/10dcfce151b967d20fde1b34ae6640712c3891bc",
  1030. "reference": "10dcfce151b967d20fde1b34ae6640712c3891bc",
  1031. "shasum": ""
  1032. },
  1033. "require": {
  1034. "php": "^7.1 || ^8.0"
  1035. },
  1036. "require-dev": {
  1037. "doctrine/coding-standard": "^9",
  1038. "ext-pdo": "*",
  1039. "ext-phar": "*",
  1040. "phpbench/phpbench": "^0.16 || ^1",
  1041. "phpstan/phpstan": "^1.4",
  1042. "phpstan/phpstan-phpunit": "^1",
  1043. "phpunit/phpunit": "^7.5 || ^8.5 || ^9.5",
  1044. "vimeo/psalm": "^4.22"
  1045. },
  1046. "type": "library",
  1047. "autoload": {
  1048. "psr-4": {
  1049. "Doctrine\\Instantiator\\": "src/Doctrine/Instantiator/"
  1050. }
  1051. },
  1052. "notification-url": "https://packagist.org/downloads/",
  1053. "license": [
  1054. "MIT"
  1055. ],
  1056. "authors": [
  1057. {
  1058. "name": "Marco Pivetta",
  1059. "email": "ocramius@gmail.com",
  1060. "homepage": "https://ocramius.github.io/"
  1061. }
  1062. ],
  1063. "description": "A small, lightweight utility to instantiate objects in PHP without invoking their constructors",
  1064. "homepage": "https://www.doctrine-project.org/projects/instantiator.html",
  1065. "keywords": [
  1066. "constructor",
  1067. "instantiate"
  1068. ],
  1069. "support": {
  1070. "issues": "https://github.com/doctrine/instantiator/issues",
  1071. "source": "https://github.com/doctrine/instantiator/tree/1.4.1"
  1072. },
  1073. "funding": [
  1074. {
  1075. "url": "https://www.doctrine-project.org/sponsorship.html",
  1076. "type": "custom"
  1077. },
  1078. {
  1079. "url": "https://www.patreon.com/phpdoctrine",
  1080. "type": "patreon"
  1081. },
  1082. {
  1083. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Finstantiator",
  1084. "type": "tidelift"
  1085. }
  1086. ],
  1087. "time": "2022-03-03T08:28:38+00:00"
  1088. },
  1089. {
  1090. "name": "doctrine/lexer",
  1091. "version": "1.2.3",
  1092. "source": {
  1093. "type": "git",
  1094. "url": "https://github.com/doctrine/lexer.git",
  1095. "reference": "c268e882d4dbdd85e36e4ad69e02dc284f89d229"
  1096. },
  1097. "dist": {
  1098. "type": "zip",
  1099. "url": "https://api.github.com/repos/doctrine/lexer/zipball/c268e882d4dbdd85e36e4ad69e02dc284f89d229",
  1100. "reference": "c268e882d4dbdd85e36e4ad69e02dc284f89d229",
  1101. "shasum": ""
  1102. },
  1103. "require": {
  1104. "php": "^7.1 || ^8.0"
  1105. },
  1106. "require-dev": {
  1107. "doctrine/coding-standard": "^9.0",
  1108. "phpstan/phpstan": "^1.3",
  1109. "phpunit/phpunit": "^7.5 || ^8.5 || ^9.5",
  1110. "vimeo/psalm": "^4.11"
  1111. },
  1112. "type": "library",
  1113. "autoload": {
  1114. "psr-4": {
  1115. "Doctrine\\Common\\Lexer\\": "lib/Doctrine/Common/Lexer"
  1116. }
  1117. },
  1118. "notification-url": "https://packagist.org/downloads/",
  1119. "license": [
  1120. "MIT"
  1121. ],
  1122. "authors": [
  1123. {
  1124. "name": "Guilherme Blanco",
  1125. "email": "guilhermeblanco@gmail.com"
  1126. },
  1127. {
  1128. "name": "Roman Borschel",
  1129. "email": "roman@code-factory.org"
  1130. },
  1131. {
  1132. "name": "Johannes Schmitt",
  1133. "email": "schmittjoh@gmail.com"
  1134. }
  1135. ],
  1136. "description": "PHP Doctrine Lexer parser library that can be used in Top-Down, Recursive Descent Parsers.",
  1137. "homepage": "https://www.doctrine-project.org/projects/lexer.html",
  1138. "keywords": [
  1139. "annotations",
  1140. "docblock",
  1141. "lexer",
  1142. "parser",
  1143. "php"
  1144. ],
  1145. "support": {
  1146. "issues": "https://github.com/doctrine/lexer/issues",
  1147. "source": "https://github.com/doctrine/lexer/tree/1.2.3"
  1148. },
  1149. "funding": [
  1150. {
  1151. "url": "https://www.doctrine-project.org/sponsorship.html",
  1152. "type": "custom"
  1153. },
  1154. {
  1155. "url": "https://www.patreon.com/phpdoctrine",
  1156. "type": "patreon"
  1157. },
  1158. {
  1159. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Flexer",
  1160. "type": "tidelift"
  1161. }
  1162. ],
  1163. "time": "2022-02-28T11:07:21+00:00"
  1164. },
  1165. {
  1166. "name": "doctrine/migrations",
  1167. "version": "3.5.2",
  1168. "source": {
  1169. "type": "git",
  1170. "url": "https://github.com/doctrine/migrations.git",
  1171. "reference": "61c6ef3a10b7df43c3b6388a184754f26e58700a"
  1172. },
  1173. "dist": {
  1174. "type": "zip",
  1175. "url": "https://api.github.com/repos/doctrine/migrations/zipball/61c6ef3a10b7df43c3b6388a184754f26e58700a",
  1176. "reference": "61c6ef3a10b7df43c3b6388a184754f26e58700a",
  1177. "shasum": ""
  1178. },
  1179. "require": {
  1180. "composer-runtime-api": "^2",
  1181. "doctrine/dbal": "^3.3",
  1182. "doctrine/deprecations": "^0.5.3 || ^1",
  1183. "doctrine/event-manager": "^1.0",
  1184. "friendsofphp/proxy-manager-lts": "^1.0",
  1185. "php": "^7.4 || ^8.0",
  1186. "psr/log": "^1.1.3 || ^2 || ^3",
  1187. "symfony/console": "^4.4.16 || ^5.4 || ^6.0",
  1188. "symfony/stopwatch": "^4.4 || ^5.4 || ^6.0"
  1189. },
  1190. "conflict": {
  1191. "doctrine/orm": "<2.12"
  1192. },
  1193. "require-dev": {
  1194. "doctrine/coding-standard": "^9",
  1195. "doctrine/orm": "^2.12",
  1196. "doctrine/persistence": "^2 || ^3",
  1197. "doctrine/sql-formatter": "^1.0",
  1198. "ergebnis/composer-normalize": "^2.9",
  1199. "ext-pdo_sqlite": "*",
  1200. "phpstan/phpstan": "^1.5",
  1201. "phpstan/phpstan-deprecation-rules": "^1",
  1202. "phpstan/phpstan-phpunit": "^1.1",
  1203. "phpstan/phpstan-strict-rules": "^1.1",
  1204. "phpstan/phpstan-symfony": "^1.1",
  1205. "phpunit/phpunit": "^9.5",
  1206. "symfony/cache": "^4.4 || ^5.4 || ^6.0",
  1207. "symfony/process": "^4.4 || ^5.4 || ^6.0",
  1208. "symfony/yaml": "^4.4 || ^5.4 || ^6.0"
  1209. },
  1210. "suggest": {
  1211. "doctrine/sql-formatter": "Allows to generate formatted SQL with the diff command.",
  1212. "symfony/yaml": "Allows the use of yaml for migration configuration files."
  1213. },
  1214. "bin": [
  1215. "bin/doctrine-migrations"
  1216. ],
  1217. "type": "library",
  1218. "extra": {
  1219. "composer-normalize": {
  1220. "indent-size": 4,
  1221. "indent-style": "space"
  1222. }
  1223. },
  1224. "autoload": {
  1225. "psr-4": {
  1226. "Doctrine\\Migrations\\": "lib/Doctrine/Migrations"
  1227. }
  1228. },
  1229. "notification-url": "https://packagist.org/downloads/",
  1230. "license": [
  1231. "MIT"
  1232. ],
  1233. "authors": [
  1234. {
  1235. "name": "Benjamin Eberlei",
  1236. "email": "kontakt@beberlei.de"
  1237. },
  1238. {
  1239. "name": "Jonathan Wage",
  1240. "email": "jonwage@gmail.com"
  1241. },
  1242. {
  1243. "name": "Michael Simonson",
  1244. "email": "contact@mikesimonson.com"
  1245. }
  1246. ],
  1247. "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.",
  1248. "homepage": "https://www.doctrine-project.org/projects/migrations.html",
  1249. "keywords": [
  1250. "database",
  1251. "dbal",
  1252. "migrations"
  1253. ],
  1254. "support": {
  1255. "issues": "https://github.com/doctrine/migrations/issues",
  1256. "source": "https://github.com/doctrine/migrations/tree/3.5.2"
  1257. },
  1258. "funding": [
  1259. {
  1260. "url": "https://www.doctrine-project.org/sponsorship.html",
  1261. "type": "custom"
  1262. },
  1263. {
  1264. "url": "https://www.patreon.com/phpdoctrine",
  1265. "type": "patreon"
  1266. },
  1267. {
  1268. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fmigrations",
  1269. "type": "tidelift"
  1270. }
  1271. ],
  1272. "time": "2022-08-04T14:29:49+00:00"
  1273. },
  1274. {
  1275. "name": "doctrine/orm",
  1276. "version": "2.13.3",
  1277. "source": {
  1278. "type": "git",
  1279. "url": "https://github.com/doctrine/orm.git",
  1280. "reference": "e750360bd52b080c4cbaaee1b48b80f7dc873b36"
  1281. },
  1282. "dist": {
  1283. "type": "zip",
  1284. "url": "https://api.github.com/repos/doctrine/orm/zipball/e750360bd52b080c4cbaaee1b48b80f7dc873b36",
  1285. "reference": "e750360bd52b080c4cbaaee1b48b80f7dc873b36",
  1286. "shasum": ""
  1287. },
  1288. "require": {
  1289. "composer-runtime-api": "^2",
  1290. "doctrine/cache": "^1.12.1 || ^2.1.1",
  1291. "doctrine/collections": "^1.5",
  1292. "doctrine/common": "^3.0.3",
  1293. "doctrine/dbal": "^2.13.1 || ^3.2",
  1294. "doctrine/deprecations": "^0.5.3 || ^1",
  1295. "doctrine/event-manager": "^1.1",
  1296. "doctrine/inflector": "^1.4 || ^2.0",
  1297. "doctrine/instantiator": "^1.3",
  1298. "doctrine/lexer": "^1.2.3",
  1299. "doctrine/persistence": "^2.4 || ^3",
  1300. "ext-ctype": "*",
  1301. "php": "^7.1 || ^8.0",
  1302. "psr/cache": "^1 || ^2 || ^3",
  1303. "symfony/console": "^3.0 || ^4.0 || ^5.0 || ^6.0",
  1304. "symfony/polyfill-php72": "^1.23",
  1305. "symfony/polyfill-php80": "^1.16"
  1306. },
  1307. "conflict": {
  1308. "doctrine/annotations": "<1.13 || >= 2.0"
  1309. },
  1310. "require-dev": {
  1311. "doctrine/annotations": "^1.13",
  1312. "doctrine/coding-standard": "^9.0.2 || ^10.0",
  1313. "phpbench/phpbench": "^0.16.10 || ^1.0",
  1314. "phpstan/phpstan": "~1.4.10 || 1.8.5",
  1315. "phpunit/phpunit": "^7.5 || ^8.5 || ^9.5",
  1316. "psr/log": "^1 || ^2 || ^3",
  1317. "squizlabs/php_codesniffer": "3.7.1",
  1318. "symfony/cache": "^4.4 || ^5.4 || ^6.0",
  1319. "symfony/yaml": "^3.4 || ^4.0 || ^5.0 || ^6.0",
  1320. "vimeo/psalm": "4.27.0"
  1321. },
  1322. "suggest": {
  1323. "ext-dom": "Provides support for XSD validation for XML mapping files",
  1324. "symfony/cache": "Provides cache support for Setup Tool with doctrine/cache 2.0",
  1325. "symfony/yaml": "If you want to use YAML Metadata Mapping Driver"
  1326. },
  1327. "bin": [
  1328. "bin/doctrine"
  1329. ],
  1330. "type": "library",
  1331. "autoload": {
  1332. "psr-4": {
  1333. "Doctrine\\ORM\\": "lib/Doctrine/ORM"
  1334. }
  1335. },
  1336. "notification-url": "https://packagist.org/downloads/",
  1337. "license": [
  1338. "MIT"
  1339. ],
  1340. "authors": [
  1341. {
  1342. "name": "Guilherme Blanco",
  1343. "email": "guilhermeblanco@gmail.com"
  1344. },
  1345. {
  1346. "name": "Roman Borschel",
  1347. "email": "roman@code-factory.org"
  1348. },
  1349. {
  1350. "name": "Benjamin Eberlei",
  1351. "email": "kontakt@beberlei.de"
  1352. },
  1353. {
  1354. "name": "Jonathan Wage",
  1355. "email": "jonwage@gmail.com"
  1356. },
  1357. {
  1358. "name": "Marco Pivetta",
  1359. "email": "ocramius@gmail.com"
  1360. }
  1361. ],
  1362. "description": "Object-Relational-Mapper for PHP",
  1363. "homepage": "https://www.doctrine-project.org/projects/orm.html",
  1364. "keywords": [
  1365. "database",
  1366. "orm"
  1367. ],
  1368. "support": {
  1369. "issues": "https://github.com/doctrine/orm/issues",
  1370. "source": "https://github.com/doctrine/orm/tree/2.13.3"
  1371. },
  1372. "time": "2022-10-07T06:37:17+00:00"
  1373. },
  1374. {
  1375. "name": "doctrine/persistence",
  1376. "version": "3.0.3",
  1377. "source": {
  1378. "type": "git",
  1379. "url": "https://github.com/doctrine/persistence.git",
  1380. "reference": "ac6fce61f037d7e54dbb2435f5b5648d86548e23"
  1381. },
  1382. "dist": {
  1383. "type": "zip",
  1384. "url": "https://api.github.com/repos/doctrine/persistence/zipball/ac6fce61f037d7e54dbb2435f5b5648d86548e23",
  1385. "reference": "ac6fce61f037d7e54dbb2435f5b5648d86548e23",
  1386. "shasum": ""
  1387. },
  1388. "require": {
  1389. "doctrine/event-manager": "^1.0",
  1390. "php": "^7.2 || ^8.0",
  1391. "psr/cache": "^1.0 || ^2.0 || ^3.0"
  1392. },
  1393. "conflict": {
  1394. "doctrine/annotations": "<1.7 || >=2.0",
  1395. "doctrine/common": "<2.10"
  1396. },
  1397. "require-dev": {
  1398. "composer/package-versions-deprecated": "^1.11",
  1399. "doctrine/annotations": "^1.7",
  1400. "doctrine/coding-standard": "^9.0",
  1401. "doctrine/common": "^3.0",
  1402. "phpstan/phpstan": "1.5.0",
  1403. "phpstan/phpstan-phpunit": "^1",
  1404. "phpstan/phpstan-strict-rules": "^1.1",
  1405. "phpunit/phpunit": "^8.5 || ^9.5",
  1406. "symfony/cache": "^4.4 || ^5.4 || ^6.0",
  1407. "vimeo/psalm": "4.22.0"
  1408. },
  1409. "type": "library",
  1410. "autoload": {
  1411. "psr-4": {
  1412. "Doctrine\\Persistence\\": "src/Persistence"
  1413. }
  1414. },
  1415. "notification-url": "https://packagist.org/downloads/",
  1416. "license": [
  1417. "MIT"
  1418. ],
  1419. "authors": [
  1420. {
  1421. "name": "Guilherme Blanco",
  1422. "email": "guilhermeblanco@gmail.com"
  1423. },
  1424. {
  1425. "name": "Roman Borschel",
  1426. "email": "roman@code-factory.org"
  1427. },
  1428. {
  1429. "name": "Benjamin Eberlei",
  1430. "email": "kontakt@beberlei.de"
  1431. },
  1432. {
  1433. "name": "Jonathan Wage",
  1434. "email": "jonwage@gmail.com"
  1435. },
  1436. {
  1437. "name": "Johannes Schmitt",
  1438. "email": "schmittjoh@gmail.com"
  1439. },
  1440. {
  1441. "name": "Marco Pivetta",
  1442. "email": "ocramius@gmail.com"
  1443. }
  1444. ],
  1445. "description": "The Doctrine Persistence project is a set of shared interfaces and functionality that the different Doctrine object mappers share.",
  1446. "homepage": "https://www.doctrine-project.org/projects/persistence.html",
  1447. "keywords": [
  1448. "mapper",
  1449. "object",
  1450. "odm",
  1451. "orm",
  1452. "persistence"
  1453. ],
  1454. "support": {
  1455. "issues": "https://github.com/doctrine/persistence/issues",
  1456. "source": "https://github.com/doctrine/persistence/tree/3.0.3"
  1457. },
  1458. "funding": [
  1459. {
  1460. "url": "https://www.doctrine-project.org/sponsorship.html",
  1461. "type": "custom"
  1462. },
  1463. {
  1464. "url": "https://www.patreon.com/phpdoctrine",
  1465. "type": "patreon"
  1466. },
  1467. {
  1468. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fpersistence",
  1469. "type": "tidelift"
  1470. }
  1471. ],
  1472. "time": "2022-08-04T21:14:21+00:00"
  1473. },
  1474. {
  1475. "name": "doctrine/sql-formatter",
  1476. "version": "1.1.3",
  1477. "source": {
  1478. "type": "git",
  1479. "url": "https://github.com/doctrine/sql-formatter.git",
  1480. "reference": "25a06c7bf4c6b8218f47928654252863ffc890a5"
  1481. },
  1482. "dist": {
  1483. "type": "zip",
  1484. "url": "https://api.github.com/repos/doctrine/sql-formatter/zipball/25a06c7bf4c6b8218f47928654252863ffc890a5",
  1485. "reference": "25a06c7bf4c6b8218f47928654252863ffc890a5",
  1486. "shasum": ""
  1487. },
  1488. "require": {
  1489. "php": "^7.1 || ^8.0"
  1490. },
  1491. "require-dev": {
  1492. "bamarni/composer-bin-plugin": "^1.4"
  1493. },
  1494. "bin": [
  1495. "bin/sql-formatter"
  1496. ],
  1497. "type": "library",
  1498. "autoload": {
  1499. "psr-4": {
  1500. "Doctrine\\SqlFormatter\\": "src"
  1501. }
  1502. },
  1503. "notification-url": "https://packagist.org/downloads/",
  1504. "license": [
  1505. "MIT"
  1506. ],
  1507. "authors": [
  1508. {
  1509. "name": "Jeremy Dorn",
  1510. "email": "jeremy@jeremydorn.com",
  1511. "homepage": "https://jeremydorn.com/"
  1512. }
  1513. ],
  1514. "description": "a PHP SQL highlighting library",
  1515. "homepage": "https://github.com/doctrine/sql-formatter/",
  1516. "keywords": [
  1517. "highlight",
  1518. "sql"
  1519. ],
  1520. "support": {
  1521. "issues": "https://github.com/doctrine/sql-formatter/issues",
  1522. "source": "https://github.com/doctrine/sql-formatter/tree/1.1.3"
  1523. },
  1524. "time": "2022-05-23T21:33:49+00:00"
  1525. },
  1526. {
  1527. "name": "egulias/email-validator",
  1528. "version": "3.2.1",
  1529. "source": {
  1530. "type": "git",
  1531. "url": "https://github.com/egulias/EmailValidator.git",
  1532. "reference": "f88dcf4b14af14a98ad96b14b2b317969eab6715"
  1533. },
  1534. "dist": {
  1535. "type": "zip",
  1536. "url": "https://api.github.com/repos/egulias/EmailValidator/zipball/f88dcf4b14af14a98ad96b14b2b317969eab6715",
  1537. "reference": "f88dcf4b14af14a98ad96b14b2b317969eab6715",
  1538. "shasum": ""
  1539. },
  1540. "require": {
  1541. "doctrine/lexer": "^1.2",
  1542. "php": ">=7.2",
  1543. "symfony/polyfill-intl-idn": "^1.15"
  1544. },
  1545. "require-dev": {
  1546. "php-coveralls/php-coveralls": "^2.2",
  1547. "phpunit/phpunit": "^8.5.8|^9.3.3",
  1548. "vimeo/psalm": "^4"
  1549. },
  1550. "suggest": {
  1551. "ext-intl": "PHP Internationalization Libraries are required to use the SpoofChecking validation"
  1552. },
  1553. "type": "library",
  1554. "extra": {
  1555. "branch-alias": {
  1556. "dev-master": "3.0.x-dev"
  1557. }
  1558. },
  1559. "autoload": {
  1560. "psr-4": {
  1561. "Egulias\\EmailValidator\\": "src"
  1562. }
  1563. },
  1564. "notification-url": "https://packagist.org/downloads/",
  1565. "license": [
  1566. "MIT"
  1567. ],
  1568. "authors": [
  1569. {
  1570. "name": "Eduardo Gulias Davis"
  1571. }
  1572. ],
  1573. "description": "A library for validating emails against several RFCs",
  1574. "homepage": "https://github.com/egulias/EmailValidator",
  1575. "keywords": [
  1576. "email",
  1577. "emailvalidation",
  1578. "emailvalidator",
  1579. "validation",
  1580. "validator"
  1581. ],
  1582. "support": {
  1583. "issues": "https://github.com/egulias/EmailValidator/issues",
  1584. "source": "https://github.com/egulias/EmailValidator/tree/3.2.1"
  1585. },
  1586. "funding": [
  1587. {
  1588. "url": "https://github.com/egulias",
  1589. "type": "github"
  1590. }
  1591. ],
  1592. "time": "2022-06-18T20:57:19+00:00"
  1593. },
  1594. {
  1595. "name": "friendsofphp/proxy-manager-lts",
  1596. "version": "v1.0.12",
  1597. "source": {
  1598. "type": "git",
  1599. "url": "https://github.com/FriendsOfPHP/proxy-manager-lts.git",
  1600. "reference": "8419f0158715b30d4b99a5bd37c6a39671994ad7"
  1601. },
  1602. "dist": {
  1603. "type": "zip",
  1604. "url": "https://api.github.com/repos/FriendsOfPHP/proxy-manager-lts/zipball/8419f0158715b30d4b99a5bd37c6a39671994ad7",
  1605. "reference": "8419f0158715b30d4b99a5bd37c6a39671994ad7",
  1606. "shasum": ""
  1607. },
  1608. "require": {
  1609. "laminas/laminas-code": "~3.4.1|^4.0",
  1610. "php": ">=7.1",
  1611. "symfony/filesystem": "^4.4.17|^5.0|^6.0"
  1612. },
  1613. "conflict": {
  1614. "laminas/laminas-stdlib": "<3.2.1",
  1615. "zendframework/zend-stdlib": "<3.2.1"
  1616. },
  1617. "replace": {
  1618. "ocramius/proxy-manager": "^2.1"
  1619. },
  1620. "require-dev": {
  1621. "ext-phar": "*",
  1622. "symfony/phpunit-bridge": "^5.4|^6.0"
  1623. },
  1624. "type": "library",
  1625. "extra": {
  1626. "thanks": {
  1627. "name": "ocramius/proxy-manager",
  1628. "url": "https://github.com/Ocramius/ProxyManager"
  1629. }
  1630. },
  1631. "autoload": {
  1632. "psr-4": {
  1633. "ProxyManager\\": "src/ProxyManager"
  1634. }
  1635. },
  1636. "notification-url": "https://packagist.org/downloads/",
  1637. "license": [
  1638. "MIT"
  1639. ],
  1640. "authors": [
  1641. {
  1642. "name": "Marco Pivetta",
  1643. "email": "ocramius@gmail.com",
  1644. "homepage": "https://ocramius.github.io/"
  1645. },
  1646. {
  1647. "name": "Nicolas Grekas",
  1648. "email": "p@tchwork.com"
  1649. }
  1650. ],
  1651. "description": "Adding support for a wider range of PHP versions to ocramius/proxy-manager",
  1652. "homepage": "https://github.com/FriendsOfPHP/proxy-manager-lts",
  1653. "keywords": [
  1654. "aop",
  1655. "lazy loading",
  1656. "proxy",
  1657. "proxy pattern",
  1658. "service proxies"
  1659. ],
  1660. "support": {
  1661. "issues": "https://github.com/FriendsOfPHP/proxy-manager-lts/issues",
  1662. "source": "https://github.com/FriendsOfPHP/proxy-manager-lts/tree/v1.0.12"
  1663. },
  1664. "funding": [
  1665. {
  1666. "url": "https://github.com/Ocramius",
  1667. "type": "github"
  1668. },
  1669. {
  1670. "url": "https://tidelift.com/funding/github/packagist/ocramius/proxy-manager",
  1671. "type": "tidelift"
  1672. }
  1673. ],
  1674. "time": "2022-05-05T09:31:05+00:00"
  1675. },
  1676. {
  1677. "name": "laminas/laminas-code",
  1678. "version": "4.7.0",
  1679. "source": {
  1680. "type": "git",
  1681. "url": "https://github.com/laminas/laminas-code.git",
  1682. "reference": "0337d9265bc2e6376babad8c511500821620cb30"
  1683. },
  1684. "dist": {
  1685. "type": "zip",
  1686. "url": "https://api.github.com/repos/laminas/laminas-code/zipball/0337d9265bc2e6376babad8c511500821620cb30",
  1687. "reference": "0337d9265bc2e6376babad8c511500821620cb30",
  1688. "shasum": ""
  1689. },
  1690. "require": {
  1691. "php": ">=7.4, <8.2"
  1692. },
  1693. "require-dev": {
  1694. "doctrine/annotations": "^1.13.2",
  1695. "ext-phar": "*",
  1696. "laminas/laminas-coding-standard": "^2.3.0",
  1697. "laminas/laminas-stdlib": "^3.6.1",
  1698. "phpunit/phpunit": "^9.5.10",
  1699. "psalm/plugin-phpunit": "^0.17.0",
  1700. "vimeo/psalm": "^4.13.1"
  1701. },
  1702. "suggest": {
  1703. "doctrine/annotations": "Doctrine\\Common\\Annotations >=1.0 for annotation features",
  1704. "laminas/laminas-stdlib": "Laminas\\Stdlib component"
  1705. },
  1706. "type": "library",
  1707. "autoload": {
  1708. "files": [
  1709. "polyfill/ReflectionEnumPolyfill.php"
  1710. ],
  1711. "psr-4": {
  1712. "Laminas\\Code\\": "src/"
  1713. }
  1714. },
  1715. "notification-url": "https://packagist.org/downloads/",
  1716. "license": [
  1717. "BSD-3-Clause"
  1718. ],
  1719. "description": "Extensions to the PHP Reflection API, static code scanning, and code generation",
  1720. "homepage": "https://laminas.dev",
  1721. "keywords": [
  1722. "code",
  1723. "laminas",
  1724. "laminasframework"
  1725. ],
  1726. "support": {
  1727. "chat": "https://laminas.dev/chat",
  1728. "docs": "https://docs.laminas.dev/laminas-code/",
  1729. "forum": "https://discourse.laminas.dev",
  1730. "issues": "https://github.com/laminas/laminas-code/issues",
  1731. "rss": "https://github.com/laminas/laminas-code/releases.atom",
  1732. "source": "https://github.com/laminas/laminas-code"
  1733. },
  1734. "funding": [
  1735. {
  1736. "url": "https://funding.communitybridge.org/projects/laminas-project",
  1737. "type": "community_bridge"
  1738. }
  1739. ],
  1740. "time": "2022-09-13T10:33:30+00:00"
  1741. },
  1742. {
  1743. "name": "league/commonmark",
  1744. "version": "2.3.7",
  1745. "source": {
  1746. "type": "git",
  1747. "url": "https://github.com/thephpleague/commonmark.git",
  1748. "reference": "a36bd2be4f5387c0f3a8792a0d76b7d68865abbf"
  1749. },
  1750. "dist": {
  1751. "type": "zip",
  1752. "url": "https://api.github.com/repos/thephpleague/commonmark/zipball/a36bd2be4f5387c0f3a8792a0d76b7d68865abbf",
  1753. "reference": "a36bd2be4f5387c0f3a8792a0d76b7d68865abbf",
  1754. "shasum": ""
  1755. },
  1756. "require": {
  1757. "ext-mbstring": "*",
  1758. "league/config": "^1.1.1",
  1759. "php": "^7.4 || ^8.0",
  1760. "psr/event-dispatcher": "^1.0",
  1761. "symfony/deprecation-contracts": "^2.1 || ^3.0",
  1762. "symfony/polyfill-php80": "^1.16"
  1763. },
  1764. "require-dev": {
  1765. "cebe/markdown": "^1.0",
  1766. "commonmark/cmark": "0.30.0",
  1767. "commonmark/commonmark.js": "0.30.0",
  1768. "composer/package-versions-deprecated": "^1.8",
  1769. "embed/embed": "^4.4",
  1770. "erusev/parsedown": "^1.0",
  1771. "ext-json": "*",
  1772. "github/gfm": "0.29.0",
  1773. "michelf/php-markdown": "^1.4 || ^2.0",
  1774. "nyholm/psr7": "^1.5",
  1775. "phpstan/phpstan": "^1.8.2",
  1776. "phpunit/phpunit": "^9.5.21",
  1777. "scrutinizer/ocular": "^1.8.1",
  1778. "symfony/finder": "^5.3 | ^6.0",
  1779. "symfony/yaml": "^2.3 | ^3.0 | ^4.0 | ^5.0 | ^6.0",
  1780. "unleashedtech/php-coding-standard": "^3.1.1",
  1781. "vimeo/psalm": "^4.24.0"
  1782. },
  1783. "suggest": {
  1784. "symfony/yaml": "v2.3+ required if using the Front Matter extension"
  1785. },
  1786. "type": "library",
  1787. "extra": {
  1788. "branch-alias": {
  1789. "dev-main": "2.4-dev"
  1790. }
  1791. },
  1792. "autoload": {
  1793. "psr-4": {
  1794. "League\\CommonMark\\": "src"
  1795. }
  1796. },
  1797. "notification-url": "https://packagist.org/downloads/",
  1798. "license": [
  1799. "BSD-3-Clause"
  1800. ],
  1801. "authors": [
  1802. {
  1803. "name": "Colin O'Dell",
  1804. "email": "colinodell@gmail.com",
  1805. "homepage": "https://www.colinodell.com",
  1806. "role": "Lead Developer"
  1807. }
  1808. ],
  1809. "description": "Highly-extensible PHP Markdown parser which fully supports the CommonMark spec and GitHub-Flavored Markdown (GFM)",
  1810. "homepage": "https://commonmark.thephpleague.com",
  1811. "keywords": [
  1812. "commonmark",
  1813. "flavored",
  1814. "gfm",
  1815. "github",
  1816. "github-flavored",
  1817. "markdown",
  1818. "md",
  1819. "parser"
  1820. ],
  1821. "support": {
  1822. "docs": "https://commonmark.thephpleague.com/",
  1823. "forum": "https://github.com/thephpleague/commonmark/discussions",
  1824. "issues": "https://github.com/thephpleague/commonmark/issues",
  1825. "rss": "https://github.com/thephpleague/commonmark/releases.atom",
  1826. "source": "https://github.com/thephpleague/commonmark"
  1827. },
  1828. "funding": [
  1829. {
  1830. "url": "https://www.colinodell.com/sponsor",
  1831. "type": "custom"
  1832. },
  1833. {
  1834. "url": "https://www.paypal.me/colinpodell/10.00",
  1835. "type": "custom"
  1836. },
  1837. {
  1838. "url": "https://github.com/colinodell",
  1839. "type": "github"
  1840. },
  1841. {
  1842. "url": "https://tidelift.com/funding/github/packagist/league/commonmark",
  1843. "type": "tidelift"
  1844. }
  1845. ],
  1846. "time": "2022-11-03T17:29:46+00:00"
  1847. },
  1848. {
  1849. "name": "league/config",
  1850. "version": "v1.1.1",
  1851. "source": {
  1852. "type": "git",
  1853. "url": "https://github.com/thephpleague/config.git",
  1854. "reference": "a9d39eeeb6cc49d10a6e6c36f22c4c1f4a767f3e"
  1855. },
  1856. "dist": {
  1857. "type": "zip",
  1858. "url": "https://api.github.com/repos/thephpleague/config/zipball/a9d39eeeb6cc49d10a6e6c36f22c4c1f4a767f3e",
  1859. "reference": "a9d39eeeb6cc49d10a6e6c36f22c4c1f4a767f3e",
  1860. "shasum": ""
  1861. },
  1862. "require": {
  1863. "dflydev/dot-access-data": "^3.0.1",
  1864. "nette/schema": "^1.2",
  1865. "php": "^7.4 || ^8.0"
  1866. },
  1867. "require-dev": {
  1868. "phpstan/phpstan": "^0.12.90",
  1869. "phpunit/phpunit": "^9.5.5",
  1870. "scrutinizer/ocular": "^1.8.1",
  1871. "unleashedtech/php-coding-standard": "^3.1",
  1872. "vimeo/psalm": "^4.7.3"
  1873. },
  1874. "type": "library",
  1875. "extra": {
  1876. "branch-alias": {
  1877. "dev-main": "1.2-dev"
  1878. }
  1879. },
  1880. "autoload": {
  1881. "psr-4": {
  1882. "League\\Config\\": "src"
  1883. }
  1884. },
  1885. "notification-url": "https://packagist.org/downloads/",
  1886. "license": [
  1887. "BSD-3-Clause"
  1888. ],
  1889. "authors": [
  1890. {
  1891. "name": "Colin O'Dell",
  1892. "email": "colinodell@gmail.com",
  1893. "homepage": "https://www.colinodell.com",
  1894. "role": "Lead Developer"
  1895. }
  1896. ],
  1897. "description": "Define configuration arrays with strict schemas and access values with dot notation",
  1898. "homepage": "https://config.thephpleague.com",
  1899. "keywords": [
  1900. "array",
  1901. "config",
  1902. "configuration",
  1903. "dot",
  1904. "dot-access",
  1905. "nested",
  1906. "schema"
  1907. ],
  1908. "support": {
  1909. "docs": "https://config.thephpleague.com/",
  1910. "issues": "https://github.com/thephpleague/config/issues",
  1911. "rss": "https://github.com/thephpleague/config/releases.atom",
  1912. "source": "https://github.com/thephpleague/config"
  1913. },
  1914. "funding": [
  1915. {
  1916. "url": "https://www.colinodell.com/sponsor",
  1917. "type": "custom"
  1918. },
  1919. {
  1920. "url": "https://www.paypal.me/colinpodell/10.00",
  1921. "type": "custom"
  1922. },
  1923. {
  1924. "url": "https://github.com/colinodell",
  1925. "type": "github"
  1926. }
  1927. ],
  1928. "time": "2021-08-14T12:15:32+00:00"
  1929. },
  1930. {
  1931. "name": "monolog/monolog",
  1932. "version": "2.8.0",
  1933. "source": {
  1934. "type": "git",
  1935. "url": "https://github.com/Seldaek/monolog.git",
  1936. "reference": "720488632c590286b88b80e62aa3d3d551ad4a50"
  1937. },
  1938. "dist": {
  1939. "type": "zip",
  1940. "url": "https://api.github.com/repos/Seldaek/monolog/zipball/720488632c590286b88b80e62aa3d3d551ad4a50",
  1941. "reference": "720488632c590286b88b80e62aa3d3d551ad4a50",
  1942. "shasum": ""
  1943. },
  1944. "require": {
  1945. "php": ">=7.2",
  1946. "psr/log": "^1.0.1 || ^2.0 || ^3.0"
  1947. },
  1948. "provide": {
  1949. "psr/log-implementation": "1.0.0 || 2.0.0 || 3.0.0"
  1950. },
  1951. "require-dev": {
  1952. "aws/aws-sdk-php": "^2.4.9 || ^3.0",
  1953. "doctrine/couchdb": "~1.0@dev",
  1954. "elasticsearch/elasticsearch": "^7 || ^8",
  1955. "ext-json": "*",
  1956. "graylog2/gelf-php": "^1.4.2",
  1957. "guzzlehttp/guzzle": "^7.4",
  1958. "guzzlehttp/psr7": "^2.2",
  1959. "mongodb/mongodb": "^1.8",
  1960. "php-amqplib/php-amqplib": "~2.4 || ^3",
  1961. "phpspec/prophecy": "^1.15",
  1962. "phpstan/phpstan": "^0.12.91",
  1963. "phpunit/phpunit": "^8.5.14",
  1964. "predis/predis": "^1.1 || ^2.0",
  1965. "rollbar/rollbar": "^1.3 || ^2 || ^3",
  1966. "ruflin/elastica": "^7",
  1967. "swiftmailer/swiftmailer": "^5.3|^6.0",
  1968. "symfony/mailer": "^5.4 || ^6",
  1969. "symfony/mime": "^5.4 || ^6"
  1970. },
  1971. "suggest": {
  1972. "aws/aws-sdk-php": "Allow sending log messages to AWS services like DynamoDB",
  1973. "doctrine/couchdb": "Allow sending log messages to a CouchDB server",
  1974. "elasticsearch/elasticsearch": "Allow sending log messages to an Elasticsearch server via official client",
  1975. "ext-amqp": "Allow sending log messages to an AMQP server (1.0+ required)",
  1976. "ext-curl": "Required to send log messages using the IFTTTHandler, the LogglyHandler, the SendGridHandler, the SlackWebhookHandler or the TelegramBotHandler",
  1977. "ext-mbstring": "Allow to work properly with unicode symbols",
  1978. "ext-mongodb": "Allow sending log messages to a MongoDB server (via driver)",
  1979. "ext-openssl": "Required to send log messages using SSL",
  1980. "ext-sockets": "Allow sending log messages to a Syslog server (via UDP driver)",
  1981. "graylog2/gelf-php": "Allow sending log messages to a GrayLog2 server",
  1982. "mongodb/mongodb": "Allow sending log messages to a MongoDB server (via library)",
  1983. "php-amqplib/php-amqplib": "Allow sending log messages to an AMQP server using php-amqplib",
  1984. "rollbar/rollbar": "Allow sending log messages to Rollbar",
  1985. "ruflin/elastica": "Allow sending log messages to an Elastic Search server"
  1986. },
  1987. "type": "library",
  1988. "extra": {
  1989. "branch-alias": {
  1990. "dev-main": "2.x-dev"
  1991. }
  1992. },
  1993. "autoload": {
  1994. "psr-4": {
  1995. "Monolog\\": "src/Monolog"
  1996. }
  1997. },
  1998. "notification-url": "https://packagist.org/downloads/",
  1999. "license": [
  2000. "MIT"
  2001. ],
  2002. "authors": [
  2003. {
  2004. "name": "Jordi Boggiano",
  2005. "email": "j.boggiano@seld.be",
  2006. "homepage": "https://seld.be"
  2007. }
  2008. ],
  2009. "description": "Sends your logs to files, sockets, inboxes, databases and various web services",
  2010. "homepage": "https://github.com/Seldaek/monolog",
  2011. "keywords": [
  2012. "log",
  2013. "logging",
  2014. "psr-3"
  2015. ],
  2016. "support": {
  2017. "issues": "https://github.com/Seldaek/monolog/issues",
  2018. "source": "https://github.com/Seldaek/monolog/tree/2.8.0"
  2019. },
  2020. "funding": [
  2021. {
  2022. "url": "https://github.com/Seldaek",
  2023. "type": "github"
  2024. },
  2025. {
  2026. "url": "https://tidelift.com/funding/github/packagist/monolog/monolog",
  2027. "type": "tidelift"
  2028. }
  2029. ],
  2030. "time": "2022-07-24T11:55:47+00:00"
  2031. },
  2032. {
  2033. "name": "nette/schema",
  2034. "version": "v1.2.2",
  2035. "source": {
  2036. "type": "git",
  2037. "url": "https://github.com/nette/schema.git",
  2038. "reference": "9a39cef03a5b34c7de64f551538cbba05c2be5df"
  2039. },
  2040. "dist": {
  2041. "type": "zip",
  2042. "url": "https://api.github.com/repos/nette/schema/zipball/9a39cef03a5b34c7de64f551538cbba05c2be5df",
  2043. "reference": "9a39cef03a5b34c7de64f551538cbba05c2be5df",
  2044. "shasum": ""
  2045. },
  2046. "require": {
  2047. "nette/utils": "^2.5.7 || ^3.1.5 || ^4.0",
  2048. "php": ">=7.1 <8.2"
  2049. },
  2050. "require-dev": {
  2051. "nette/tester": "^2.3 || ^2.4",
  2052. "phpstan/phpstan-nette": "^0.12",
  2053. "tracy/tracy": "^2.7"
  2054. },
  2055. "type": "library",
  2056. "extra": {
  2057. "branch-alias": {
  2058. "dev-master": "1.2-dev"
  2059. }
  2060. },
  2061. "autoload": {
  2062. "classmap": [
  2063. "src/"
  2064. ]
  2065. },
  2066. "notification-url": "https://packagist.org/downloads/",
  2067. "license": [
  2068. "BSD-3-Clause",
  2069. "GPL-2.0-only",
  2070. "GPL-3.0-only"
  2071. ],
  2072. "authors": [
  2073. {
  2074. "name": "David Grudl",
  2075. "homepage": "https://davidgrudl.com"
  2076. },
  2077. {
  2078. "name": "Nette Community",
  2079. "homepage": "https://nette.org/contributors"
  2080. }
  2081. ],
  2082. "description": "📐 Nette Schema: validating data structures against a given Schema.",
  2083. "homepage": "https://nette.org",
  2084. "keywords": [
  2085. "config",
  2086. "nette"
  2087. ],
  2088. "support": {
  2089. "issues": "https://github.com/nette/schema/issues",
  2090. "source": "https://github.com/nette/schema/tree/v1.2.2"
  2091. },
  2092. "time": "2021-10-15T11:40:02+00:00"
  2093. },
  2094. {
  2095. "name": "nette/utils",
  2096. "version": "v3.2.8",
  2097. "source": {
  2098. "type": "git",
  2099. "url": "https://github.com/nette/utils.git",
  2100. "reference": "02a54c4c872b99e4ec05c4aec54b5a06eb0f6368"
  2101. },
  2102. "dist": {
  2103. "type": "zip",
  2104. "url": "https://api.github.com/repos/nette/utils/zipball/02a54c4c872b99e4ec05c4aec54b5a06eb0f6368",
  2105. "reference": "02a54c4c872b99e4ec05c4aec54b5a06eb0f6368",
  2106. "shasum": ""
  2107. },
  2108. "require": {
  2109. "php": ">=7.2 <8.3"
  2110. },
  2111. "conflict": {
  2112. "nette/di": "<3.0.6"
  2113. },
  2114. "require-dev": {
  2115. "nette/tester": "~2.0",
  2116. "phpstan/phpstan": "^1.0",
  2117. "tracy/tracy": "^2.3"
  2118. },
  2119. "suggest": {
  2120. "ext-gd": "to use Image",
  2121. "ext-iconv": "to use Strings::webalize(), toAscii(), chr() and reverse()",
  2122. "ext-intl": "to use Strings::webalize(), toAscii(), normalize() and compare()",
  2123. "ext-json": "to use Nette\\Utils\\Json",
  2124. "ext-mbstring": "to use Strings::lower() etc...",
  2125. "ext-tokenizer": "to use Nette\\Utils\\Reflection::getUseStatements()",
  2126. "ext-xml": "to use Strings::length() etc. when mbstring is not available"
  2127. },
  2128. "type": "library",
  2129. "extra": {
  2130. "branch-alias": {
  2131. "dev-master": "3.2-dev"
  2132. }
  2133. },
  2134. "autoload": {
  2135. "classmap": [
  2136. "src/"
  2137. ]
  2138. },
  2139. "notification-url": "https://packagist.org/downloads/",
  2140. "license": [
  2141. "BSD-3-Clause",
  2142. "GPL-2.0-only",
  2143. "GPL-3.0-only"
  2144. ],
  2145. "authors": [
  2146. {
  2147. "name": "David Grudl",
  2148. "homepage": "https://davidgrudl.com"
  2149. },
  2150. {
  2151. "name": "Nette Community",
  2152. "homepage": "https://nette.org/contributors"
  2153. }
  2154. ],
  2155. "description": "🛠 Nette Utils: lightweight utilities for string & array manipulation, image handling, safe JSON encoding/decoding, validation, slug or strong password generating etc.",
  2156. "homepage": "https://nette.org",
  2157. "keywords": [
  2158. "array",
  2159. "core",
  2160. "datetime",
  2161. "images",
  2162. "json",
  2163. "nette",
  2164. "paginator",
  2165. "password",
  2166. "slugify",
  2167. "string",
  2168. "unicode",
  2169. "utf-8",
  2170. "utility",
  2171. "validation"
  2172. ],
  2173. "support": {
  2174. "issues": "https://github.com/nette/utils/issues",
  2175. "source": "https://github.com/nette/utils/tree/v3.2.8"
  2176. },
  2177. "time": "2022-09-12T23:36:20+00:00"
  2178. },
  2179. {
  2180. "name": "phpdocumentor/reflection-common",
  2181. "version": "2.2.0",
  2182. "source": {
  2183. "type": "git",
  2184. "url": "https://github.com/phpDocumentor/ReflectionCommon.git",
  2185. "reference": "1d01c49d4ed62f25aa84a747ad35d5a16924662b"
  2186. },
  2187. "dist": {
  2188. "type": "zip",
  2189. "url": "https://api.github.com/repos/phpDocumentor/ReflectionCommon/zipball/1d01c49d4ed62f25aa84a747ad35d5a16924662b",
  2190. "reference": "1d01c49d4ed62f25aa84a747ad35d5a16924662b",
  2191. "shasum": ""
  2192. },
  2193. "require": {
  2194. "php": "^7.2 || ^8.0"
  2195. },
  2196. "type": "library",
  2197. "extra": {
  2198. "branch-alias": {
  2199. "dev-2.x": "2.x-dev"
  2200. }
  2201. },
  2202. "autoload": {
  2203. "psr-4": {
  2204. "phpDocumentor\\Reflection\\": "src/"
  2205. }
  2206. },
  2207. "notification-url": "https://packagist.org/downloads/",
  2208. "license": [
  2209. "MIT"
  2210. ],
  2211. "authors": [
  2212. {
  2213. "name": "Jaap van Otterdijk",
  2214. "email": "opensource@ijaap.nl"
  2215. }
  2216. ],
  2217. "description": "Common reflection classes used by phpdocumentor to reflect the code structure",
  2218. "homepage": "http://www.phpdoc.org",
  2219. "keywords": [
  2220. "FQSEN",
  2221. "phpDocumentor",
  2222. "phpdoc",
  2223. "reflection",
  2224. "static analysis"
  2225. ],
  2226. "support": {
  2227. "issues": "https://github.com/phpDocumentor/ReflectionCommon/issues",
  2228. "source": "https://github.com/phpDocumentor/ReflectionCommon/tree/2.x"
  2229. },
  2230. "time": "2020-06-27T09:03:43+00:00"
  2231. },
  2232. {
  2233. "name": "phpdocumentor/reflection-docblock",
  2234. "version": "5.3.0",
  2235. "source": {
  2236. "type": "git",
  2237. "url": "https://github.com/phpDocumentor/ReflectionDocBlock.git",
  2238. "reference": "622548b623e81ca6d78b721c5e029f4ce664f170"
  2239. },
  2240. "dist": {
  2241. "type": "zip",
  2242. "url": "https://api.github.com/repos/phpDocumentor/ReflectionDocBlock/zipball/622548b623e81ca6d78b721c5e029f4ce664f170",
  2243. "reference": "622548b623e81ca6d78b721c5e029f4ce664f170",
  2244. "shasum": ""
  2245. },
  2246. "require": {
  2247. "ext-filter": "*",
  2248. "php": "^7.2 || ^8.0",
  2249. "phpdocumentor/reflection-common": "^2.2",
  2250. "phpdocumentor/type-resolver": "^1.3",
  2251. "webmozart/assert": "^1.9.1"
  2252. },
  2253. "require-dev": {
  2254. "mockery/mockery": "~1.3.2",
  2255. "psalm/phar": "^4.8"
  2256. },
  2257. "type": "library",
  2258. "extra": {
  2259. "branch-alias": {
  2260. "dev-master": "5.x-dev"
  2261. }
  2262. },
  2263. "autoload": {
  2264. "psr-4": {
  2265. "phpDocumentor\\Reflection\\": "src"
  2266. }
  2267. },
  2268. "notification-url": "https://packagist.org/downloads/",
  2269. "license": [
  2270. "MIT"
  2271. ],
  2272. "authors": [
  2273. {
  2274. "name": "Mike van Riel",
  2275. "email": "me@mikevanriel.com"
  2276. },
  2277. {
  2278. "name": "Jaap van Otterdijk",
  2279. "email": "account@ijaap.nl"
  2280. }
  2281. ],
  2282. "description": "With this component, a library can provide support for annotations via DocBlocks or otherwise retrieve information that is embedded in a DocBlock.",
  2283. "support": {
  2284. "issues": "https://github.com/phpDocumentor/ReflectionDocBlock/issues",
  2285. "source": "https://github.com/phpDocumentor/ReflectionDocBlock/tree/5.3.0"
  2286. },
  2287. "time": "2021-10-19T17:43:47+00:00"
  2288. },
  2289. {
  2290. "name": "phpdocumentor/type-resolver",
  2291. "version": "1.6.1",
  2292. "source": {
  2293. "type": "git",
  2294. "url": "https://github.com/phpDocumentor/TypeResolver.git",
  2295. "reference": "77a32518733312af16a44300404e945338981de3"
  2296. },
  2297. "dist": {
  2298. "type": "zip",
  2299. "url": "https://api.github.com/repos/phpDocumentor/TypeResolver/zipball/77a32518733312af16a44300404e945338981de3",
  2300. "reference": "77a32518733312af16a44300404e945338981de3",
  2301. "shasum": ""
  2302. },
  2303. "require": {
  2304. "php": "^7.2 || ^8.0",
  2305. "phpdocumentor/reflection-common": "^2.0"
  2306. },
  2307. "require-dev": {
  2308. "ext-tokenizer": "*",
  2309. "psalm/phar": "^4.8"
  2310. },
  2311. "type": "library",
  2312. "extra": {
  2313. "branch-alias": {
  2314. "dev-1.x": "1.x-dev"
  2315. }
  2316. },
  2317. "autoload": {
  2318. "psr-4": {
  2319. "phpDocumentor\\Reflection\\": "src"
  2320. }
  2321. },
  2322. "notification-url": "https://packagist.org/downloads/",
  2323. "license": [
  2324. "MIT"
  2325. ],
  2326. "authors": [
  2327. {
  2328. "name": "Mike van Riel",
  2329. "email": "me@mikevanriel.com"
  2330. }
  2331. ],
  2332. "description": "A PSR-5 based resolver of Class names, Types and Structural Element Names",
  2333. "support": {
  2334. "issues": "https://github.com/phpDocumentor/TypeResolver/issues",
  2335. "source": "https://github.com/phpDocumentor/TypeResolver/tree/1.6.1"
  2336. },
  2337. "time": "2022-03-15T21:29:03+00:00"
  2338. },
  2339. {
  2340. "name": "psr/cache",
  2341. "version": "2.0.0",
  2342. "source": {
  2343. "type": "git",
  2344. "url": "https://github.com/php-fig/cache.git",
  2345. "reference": "213f9dbc5b9bfbc4f8db86d2838dc968752ce13b"
  2346. },
  2347. "dist": {
  2348. "type": "zip",
  2349. "url": "https://api.github.com/repos/php-fig/cache/zipball/213f9dbc5b9bfbc4f8db86d2838dc968752ce13b",
  2350. "reference": "213f9dbc5b9bfbc4f8db86d2838dc968752ce13b",
  2351. "shasum": ""
  2352. },
  2353. "require": {
  2354. "php": ">=8.0.0"
  2355. },
  2356. "type": "library",
  2357. "extra": {
  2358. "branch-alias": {
  2359. "dev-master": "1.0.x-dev"
  2360. }
  2361. },
  2362. "autoload": {
  2363. "psr-4": {
  2364. "Psr\\Cache\\": "src/"
  2365. }
  2366. },
  2367. "notification-url": "https://packagist.org/downloads/",
  2368. "license": [
  2369. "MIT"
  2370. ],
  2371. "authors": [
  2372. {
  2373. "name": "PHP-FIG",
  2374. "homepage": "https://www.php-fig.org/"
  2375. }
  2376. ],
  2377. "description": "Common interface for caching libraries",
  2378. "keywords": [
  2379. "cache",
  2380. "psr",
  2381. "psr-6"
  2382. ],
  2383. "support": {
  2384. "source": "https://github.com/php-fig/cache/tree/2.0.0"
  2385. },
  2386. "time": "2021-02-03T23:23:37+00:00"
  2387. },
  2388. {
  2389. "name": "psr/container",
  2390. "version": "1.1.2",
  2391. "source": {
  2392. "type": "git",
  2393. "url": "https://github.com/php-fig/container.git",
  2394. "reference": "513e0666f7216c7459170d56df27dfcefe1689ea"
  2395. },
  2396. "dist": {
  2397. "type": "zip",
  2398. "url": "https://api.github.com/repos/php-fig/container/zipball/513e0666f7216c7459170d56df27dfcefe1689ea",
  2399. "reference": "513e0666f7216c7459170d56df27dfcefe1689ea",
  2400. "shasum": ""
  2401. },
  2402. "require": {
  2403. "php": ">=7.4.0"
  2404. },
  2405. "type": "library",
  2406. "autoload": {
  2407. "psr-4": {
  2408. "Psr\\Container\\": "src/"
  2409. }
  2410. },
  2411. "notification-url": "https://packagist.org/downloads/",
  2412. "license": [
  2413. "MIT"
  2414. ],
  2415. "authors": [
  2416. {
  2417. "name": "PHP-FIG",
  2418. "homepage": "https://www.php-fig.org/"
  2419. }
  2420. ],
  2421. "description": "Common Container Interface (PHP FIG PSR-11)",
  2422. "homepage": "https://github.com/php-fig/container",
  2423. "keywords": [
  2424. "PSR-11",
  2425. "container",
  2426. "container-interface",
  2427. "container-interop",
  2428. "psr"
  2429. ],
  2430. "support": {
  2431. "issues": "https://github.com/php-fig/container/issues",
  2432. "source": "https://github.com/php-fig/container/tree/1.1.2"
  2433. },
  2434. "time": "2021-11-05T16:50:12+00:00"
  2435. },
  2436. {
  2437. "name": "psr/event-dispatcher",
  2438. "version": "1.0.0",
  2439. "source": {
  2440. "type": "git",
  2441. "url": "https://github.com/php-fig/event-dispatcher.git",
  2442. "reference": "dbefd12671e8a14ec7f180cab83036ed26714bb0"
  2443. },
  2444. "dist": {
  2445. "type": "zip",
  2446. "url": "https://api.github.com/repos/php-fig/event-dispatcher/zipball/dbefd12671e8a14ec7f180cab83036ed26714bb0",
  2447. "reference": "dbefd12671e8a14ec7f180cab83036ed26714bb0",
  2448. "shasum": ""
  2449. },
  2450. "require": {
  2451. "php": ">=7.2.0"
  2452. },
  2453. "type": "library",
  2454. "extra": {
  2455. "branch-alias": {
  2456. "dev-master": "1.0.x-dev"
  2457. }
  2458. },
  2459. "autoload": {
  2460. "psr-4": {
  2461. "Psr\\EventDispatcher\\": "src/"
  2462. }
  2463. },
  2464. "notification-url": "https://packagist.org/downloads/",
  2465. "license": [
  2466. "MIT"
  2467. ],
  2468. "authors": [
  2469. {
  2470. "name": "PHP-FIG",
  2471. "homepage": "http://www.php-fig.org/"
  2472. }
  2473. ],
  2474. "description": "Standard interfaces for event handling.",
  2475. "keywords": [
  2476. "events",
  2477. "psr",
  2478. "psr-14"
  2479. ],
  2480. "support": {
  2481. "issues": "https://github.com/php-fig/event-dispatcher/issues",
  2482. "source": "https://github.com/php-fig/event-dispatcher/tree/1.0.0"
  2483. },
  2484. "time": "2019-01-08T18:20:26+00:00"
  2485. },
  2486. {
  2487. "name": "psr/link",
  2488. "version": "1.1.1",
  2489. "source": {
  2490. "type": "git",
  2491. "url": "https://github.com/php-fig/link.git",
  2492. "reference": "846c25f58a1f02b93a00f2404e3626b6bf9b7807"
  2493. },
  2494. "dist": {
  2495. "type": "zip",
  2496. "url": "https://api.github.com/repos/php-fig/link/zipball/846c25f58a1f02b93a00f2404e3626b6bf9b7807",
  2497. "reference": "846c25f58a1f02b93a00f2404e3626b6bf9b7807",
  2498. "shasum": ""
  2499. },
  2500. "require": {
  2501. "php": ">=8.0.0"
  2502. },
  2503. "type": "library",
  2504. "extra": {
  2505. "branch-alias": {
  2506. "dev-master": "1.0.x-dev"
  2507. }
  2508. },
  2509. "autoload": {
  2510. "psr-4": {
  2511. "Psr\\Link\\": "src/"
  2512. }
  2513. },
  2514. "notification-url": "https://packagist.org/downloads/",
  2515. "license": [
  2516. "MIT"
  2517. ],
  2518. "authors": [
  2519. {
  2520. "name": "PHP-FIG",
  2521. "homepage": "http://www.php-fig.org/"
  2522. }
  2523. ],
  2524. "description": "Common interfaces for HTTP links",
  2525. "homepage": "https://github.com/php-fig/link",
  2526. "keywords": [
  2527. "http",
  2528. "http-link",
  2529. "link",
  2530. "psr",
  2531. "psr-13",
  2532. "rest"
  2533. ],
  2534. "support": {
  2535. "source": "https://github.com/php-fig/link/tree/1.1.1"
  2536. },
  2537. "time": "2021-03-11T22:59:13+00:00"
  2538. },
  2539. {
  2540. "name": "psr/log",
  2541. "version": "2.0.0",
  2542. "source": {
  2543. "type": "git",
  2544. "url": "https://github.com/php-fig/log.git",
  2545. "reference": "ef29f6d262798707a9edd554e2b82517ef3a9376"
  2546. },
  2547. "dist": {
  2548. "type": "zip",
  2549. "url": "https://api.github.com/repos/php-fig/log/zipball/ef29f6d262798707a9edd554e2b82517ef3a9376",
  2550. "reference": "ef29f6d262798707a9edd554e2b82517ef3a9376",
  2551. "shasum": ""
  2552. },
  2553. "require": {
  2554. "php": ">=8.0.0"
  2555. },
  2556. "type": "library",
  2557. "extra": {
  2558. "branch-alias": {
  2559. "dev-master": "2.0.x-dev"
  2560. }
  2561. },
  2562. "autoload": {
  2563. "psr-4": {
  2564. "Psr\\Log\\": "src"
  2565. }
  2566. },
  2567. "notification-url": "https://packagist.org/downloads/",
  2568. "license": [
  2569. "MIT"
  2570. ],
  2571. "authors": [
  2572. {
  2573. "name": "PHP-FIG",
  2574. "homepage": "https://www.php-fig.org/"
  2575. }
  2576. ],
  2577. "description": "Common interface for logging libraries",
  2578. "homepage": "https://github.com/php-fig/log",
  2579. "keywords": [
  2580. "log",
  2581. "psr",
  2582. "psr-3"
  2583. ],
  2584. "support": {
  2585. "source": "https://github.com/php-fig/log/tree/2.0.0"
  2586. },
  2587. "time": "2021-07-14T16:41:46+00:00"
  2588. },
  2589. {
  2590. "name": "sensio/framework-extra-bundle",
  2591. "version": "v6.2.8",
  2592. "source": {
  2593. "type": "git",
  2594. "url": "https://github.com/sensiolabs/SensioFrameworkExtraBundle.git",
  2595. "reference": "bb962f8aed09e60b0942545f6e4842ffeee4aafd"
  2596. },
  2597. "dist": {
  2598. "type": "zip",
  2599. "url": "https://api.github.com/repos/sensiolabs/SensioFrameworkExtraBundle/zipball/bb962f8aed09e60b0942545f6e4842ffeee4aafd",
  2600. "reference": "bb962f8aed09e60b0942545f6e4842ffeee4aafd",
  2601. "shasum": ""
  2602. },
  2603. "require": {
  2604. "doctrine/annotations": "^1.0",
  2605. "php": ">=7.2.5",
  2606. "symfony/config": "^4.4|^5.0|^6.0",
  2607. "symfony/dependency-injection": "^4.4|^5.0|^6.0",
  2608. "symfony/framework-bundle": "^4.4|^5.0|^6.0",
  2609. "symfony/http-kernel": "^4.4|^5.0|^6.0"
  2610. },
  2611. "conflict": {
  2612. "doctrine/doctrine-cache-bundle": "<1.3.1",
  2613. "doctrine/persistence": "<1.3"
  2614. },
  2615. "require-dev": {
  2616. "doctrine/dbal": "^2.10|^3.0",
  2617. "doctrine/doctrine-bundle": "^1.11|^2.0",
  2618. "doctrine/orm": "^2.5",
  2619. "symfony/browser-kit": "^4.4|^5.0|^6.0",
  2620. "symfony/doctrine-bridge": "^4.4|^5.0|^6.0",
  2621. "symfony/dom-crawler": "^4.4|^5.0|^6.0",
  2622. "symfony/expression-language": "^4.4|^5.0|^6.0",
  2623. "symfony/finder": "^4.4|^5.0|^6.0",
  2624. "symfony/monolog-bridge": "^4.0|^5.0|^6.0",
  2625. "symfony/monolog-bundle": "^3.2",
  2626. "symfony/phpunit-bridge": "^4.4.9|^5.0.9|^6.0",
  2627. "symfony/security-bundle": "^4.4|^5.0|^6.0",
  2628. "symfony/twig-bundle": "^4.4|^5.0|^6.0",
  2629. "symfony/yaml": "^4.4|^5.0|^6.0",
  2630. "twig/twig": "^1.34|^2.4|^3.0"
  2631. },
  2632. "type": "symfony-bundle",
  2633. "extra": {
  2634. "branch-alias": {
  2635. "dev-master": "6.1.x-dev"
  2636. }
  2637. },
  2638. "autoload": {
  2639. "psr-4": {
  2640. "Sensio\\Bundle\\FrameworkExtraBundle\\": "src/"
  2641. },
  2642. "exclude-from-classmap": [
  2643. "/tests/"
  2644. ]
  2645. },
  2646. "notification-url": "https://packagist.org/downloads/",
  2647. "license": [
  2648. "MIT"
  2649. ],
  2650. "authors": [
  2651. {
  2652. "name": "Fabien Potencier",
  2653. "email": "fabien@symfony.com"
  2654. }
  2655. ],
  2656. "description": "This bundle provides a way to configure your controllers with annotations",
  2657. "keywords": [
  2658. "annotations",
  2659. "controllers"
  2660. ],
  2661. "support": {
  2662. "issues": "https://github.com/sensiolabs/SensioFrameworkExtraBundle/issues",
  2663. "source": "https://github.com/sensiolabs/SensioFrameworkExtraBundle/tree/v6.2.8"
  2664. },
  2665. "time": "2022-09-05T16:44:56+00:00"
  2666. },
  2667. {
  2668. "name": "symfony/apache-pack",
  2669. "version": "v1.0.1",
  2670. "source": {
  2671. "type": "git",
  2672. "url": "https://github.com/symfony/apache-pack.git",
  2673. "reference": "3aa5818d73ad2551281fc58a75afd9ca82622e6c"
  2674. },
  2675. "dist": {
  2676. "type": "zip",
  2677. "url": "https://api.github.com/repos/symfony/apache-pack/zipball/3aa5818d73ad2551281fc58a75afd9ca82622e6c",
  2678. "reference": "3aa5818d73ad2551281fc58a75afd9ca82622e6c",
  2679. "shasum": ""
  2680. },
  2681. "type": "symfony-pack",
  2682. "notification-url": "https://packagist.org/downloads/",
  2683. "license": [
  2684. "MIT"
  2685. ],
  2686. "description": "A pack for Apache support in Symfony",
  2687. "support": {
  2688. "issues": "https://github.com/symfony/apache-pack/issues",
  2689. "source": "https://github.com/symfony/apache-pack/tree/master"
  2690. },
  2691. "time": "2017-12-12T01:46:35+00:00"
  2692. },
  2693. {
  2694. "name": "symfony/asset",
  2695. "version": "v5.4.13",
  2696. "source": {
  2697. "type": "git",
  2698. "url": "https://github.com/symfony/asset.git",
  2699. "reference": "9aa867206711cb6fcca51ef127ba52a018170be9"
  2700. },
  2701. "dist": {
  2702. "type": "zip",
  2703. "url": "https://api.github.com/repos/symfony/asset/zipball/9aa867206711cb6fcca51ef127ba52a018170be9",
  2704. "reference": "9aa867206711cb6fcca51ef127ba52a018170be9",
  2705. "shasum": ""
  2706. },
  2707. "require": {
  2708. "php": ">=7.2.5",
  2709. "symfony/deprecation-contracts": "^2.1|^3",
  2710. "symfony/polyfill-php80": "^1.16"
  2711. },
  2712. "conflict": {
  2713. "symfony/http-foundation": "<5.3"
  2714. },
  2715. "require-dev": {
  2716. "symfony/http-client": "^4.4|^5.0|^6.0",
  2717. "symfony/http-foundation": "^5.3|^6.0",
  2718. "symfony/http-kernel": "^4.4|^5.0|^6.0"
  2719. },
  2720. "suggest": {
  2721. "symfony/http-foundation": ""
  2722. },
  2723. "type": "library",
  2724. "autoload": {
  2725. "psr-4": {
  2726. "Symfony\\Component\\Asset\\": ""
  2727. },
  2728. "exclude-from-classmap": [
  2729. "/Tests/"
  2730. ]
  2731. },
  2732. "notification-url": "https://packagist.org/downloads/",
  2733. "license": [
  2734. "MIT"
  2735. ],
  2736. "authors": [
  2737. {
  2738. "name": "Fabien Potencier",
  2739. "email": "fabien@symfony.com"
  2740. },
  2741. {
  2742. "name": "Symfony Community",
  2743. "homepage": "https://symfony.com/contributors"
  2744. }
  2745. ],
  2746. "description": "Manages URL generation and versioning of web assets such as CSS stylesheets, JavaScript files and image files",
  2747. "homepage": "https://symfony.com",
  2748. "support": {
  2749. "source": "https://github.com/symfony/asset/tree/v5.4.13"
  2750. },
  2751. "funding": [
  2752. {
  2753. "url": "https://symfony.com/sponsor",
  2754. "type": "custom"
  2755. },
  2756. {
  2757. "url": "https://github.com/fabpot",
  2758. "type": "github"
  2759. },
  2760. {
  2761. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  2762. "type": "tidelift"
  2763. }
  2764. ],
  2765. "time": "2022-08-31T08:17:19+00:00"
  2766. },
  2767. {
  2768. "name": "symfony/cache",
  2769. "version": "v5.4.13",
  2770. "source": {
  2771. "type": "git",
  2772. "url": "https://github.com/symfony/cache.git",
  2773. "reference": "89bb6a0fe27205636d80e568ffaf9bbb52f691e3"
  2774. },
  2775. "dist": {
  2776. "type": "zip",
  2777. "url": "https://api.github.com/repos/symfony/cache/zipball/89bb6a0fe27205636d80e568ffaf9bbb52f691e3",
  2778. "reference": "89bb6a0fe27205636d80e568ffaf9bbb52f691e3",
  2779. "shasum": ""
  2780. },
  2781. "require": {
  2782. "php": ">=7.2.5",
  2783. "psr/cache": "^1.0|^2.0",
  2784. "psr/log": "^1.1|^2|^3",
  2785. "symfony/cache-contracts": "^1.1.7|^2",
  2786. "symfony/deprecation-contracts": "^2.1|^3",
  2787. "symfony/polyfill-php73": "^1.9",
  2788. "symfony/polyfill-php80": "^1.16",
  2789. "symfony/service-contracts": "^1.1|^2|^3",
  2790. "symfony/var-exporter": "^4.4|^5.0|^6.0"
  2791. },
  2792. "conflict": {
  2793. "doctrine/dbal": "<2.13.1",
  2794. "symfony/dependency-injection": "<4.4",
  2795. "symfony/http-kernel": "<4.4",
  2796. "symfony/var-dumper": "<4.4"
  2797. },
  2798. "provide": {
  2799. "psr/cache-implementation": "1.0|2.0",
  2800. "psr/simple-cache-implementation": "1.0|2.0",
  2801. "symfony/cache-implementation": "1.0|2.0"
  2802. },
  2803. "require-dev": {
  2804. "cache/integration-tests": "dev-master",
  2805. "doctrine/cache": "^1.6|^2.0",
  2806. "doctrine/dbal": "^2.13.1|^3.0",
  2807. "predis/predis": "^1.1",
  2808. "psr/simple-cache": "^1.0|^2.0",
  2809. "symfony/config": "^4.4|^5.0|^6.0",
  2810. "symfony/dependency-injection": "^4.4|^5.0|^6.0",
  2811. "symfony/filesystem": "^4.4|^5.0|^6.0",
  2812. "symfony/http-kernel": "^4.4|^5.0|^6.0",
  2813. "symfony/messenger": "^4.4|^5.0|^6.0",
  2814. "symfony/var-dumper": "^4.4|^5.0|^6.0"
  2815. },
  2816. "type": "library",
  2817. "autoload": {
  2818. "psr-4": {
  2819. "Symfony\\Component\\Cache\\": ""
  2820. },
  2821. "exclude-from-classmap": [
  2822. "/Tests/"
  2823. ]
  2824. },
  2825. "notification-url": "https://packagist.org/downloads/",
  2826. "license": [
  2827. "MIT"
  2828. ],
  2829. "authors": [
  2830. {
  2831. "name": "Nicolas Grekas",
  2832. "email": "p@tchwork.com"
  2833. },
  2834. {
  2835. "name": "Symfony Community",
  2836. "homepage": "https://symfony.com/contributors"
  2837. }
  2838. ],
  2839. "description": "Provides extended PSR-6, PSR-16 (and tags) implementations",
  2840. "homepage": "https://symfony.com",
  2841. "keywords": [
  2842. "caching",
  2843. "psr6"
  2844. ],
  2845. "support": {
  2846. "source": "https://github.com/symfony/cache/tree/v5.4.13"
  2847. },
  2848. "funding": [
  2849. {
  2850. "url": "https://symfony.com/sponsor",
  2851. "type": "custom"
  2852. },
  2853. {
  2854. "url": "https://github.com/fabpot",
  2855. "type": "github"
  2856. },
  2857. {
  2858. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  2859. "type": "tidelift"
  2860. }
  2861. ],
  2862. "time": "2022-09-06T13:23:31+00:00"
  2863. },
  2864. {
  2865. "name": "symfony/cache-contracts",
  2866. "version": "v2.5.2",
  2867. "source": {
  2868. "type": "git",
  2869. "url": "https://github.com/symfony/cache-contracts.git",
  2870. "reference": "64be4a7acb83b6f2bf6de9a02cee6dad41277ebc"
  2871. },
  2872. "dist": {
  2873. "type": "zip",
  2874. "url": "https://api.github.com/repos/symfony/cache-contracts/zipball/64be4a7acb83b6f2bf6de9a02cee6dad41277ebc",
  2875. "reference": "64be4a7acb83b6f2bf6de9a02cee6dad41277ebc",
  2876. "shasum": ""
  2877. },
  2878. "require": {
  2879. "php": ">=7.2.5",
  2880. "psr/cache": "^1.0|^2.0|^3.0"
  2881. },
  2882. "suggest": {
  2883. "symfony/cache-implementation": ""
  2884. },
  2885. "type": "library",
  2886. "extra": {
  2887. "branch-alias": {
  2888. "dev-main": "2.5-dev"
  2889. },
  2890. "thanks": {
  2891. "name": "symfony/contracts",
  2892. "url": "https://github.com/symfony/contracts"
  2893. }
  2894. },
  2895. "autoload": {
  2896. "psr-4": {
  2897. "Symfony\\Contracts\\Cache\\": ""
  2898. }
  2899. },
  2900. "notification-url": "https://packagist.org/downloads/",
  2901. "license": [
  2902. "MIT"
  2903. ],
  2904. "authors": [
  2905. {
  2906. "name": "Nicolas Grekas",
  2907. "email": "p@tchwork.com"
  2908. },
  2909. {
  2910. "name": "Symfony Community",
  2911. "homepage": "https://symfony.com/contributors"
  2912. }
  2913. ],
  2914. "description": "Generic abstractions related to caching",
  2915. "homepage": "https://symfony.com",
  2916. "keywords": [
  2917. "abstractions",
  2918. "contracts",
  2919. "decoupling",
  2920. "interfaces",
  2921. "interoperability",
  2922. "standards"
  2923. ],
  2924. "support": {
  2925. "source": "https://github.com/symfony/cache-contracts/tree/v2.5.2"
  2926. },
  2927. "funding": [
  2928. {
  2929. "url": "https://symfony.com/sponsor",
  2930. "type": "custom"
  2931. },
  2932. {
  2933. "url": "https://github.com/fabpot",
  2934. "type": "github"
  2935. },
  2936. {
  2937. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  2938. "type": "tidelift"
  2939. }
  2940. ],
  2941. "time": "2022-01-02T09:53:40+00:00"
  2942. },
  2943. {
  2944. "name": "symfony/config",
  2945. "version": "v5.4.11",
  2946. "source": {
  2947. "type": "git",
  2948. "url": "https://github.com/symfony/config.git",
  2949. "reference": "ec79e03125c1d2477e43dde8528535d90cc78379"
  2950. },
  2951. "dist": {
  2952. "type": "zip",
  2953. "url": "https://api.github.com/repos/symfony/config/zipball/ec79e03125c1d2477e43dde8528535d90cc78379",
  2954. "reference": "ec79e03125c1d2477e43dde8528535d90cc78379",
  2955. "shasum": ""
  2956. },
  2957. "require": {
  2958. "php": ">=7.2.5",
  2959. "symfony/deprecation-contracts": "^2.1|^3",
  2960. "symfony/filesystem": "^4.4|^5.0|^6.0",
  2961. "symfony/polyfill-ctype": "~1.8",
  2962. "symfony/polyfill-php80": "^1.16",
  2963. "symfony/polyfill-php81": "^1.22"
  2964. },
  2965. "conflict": {
  2966. "symfony/finder": "<4.4"
  2967. },
  2968. "require-dev": {
  2969. "symfony/event-dispatcher": "^4.4|^5.0|^6.0",
  2970. "symfony/finder": "^4.4|^5.0|^6.0",
  2971. "symfony/messenger": "^4.4|^5.0|^6.0",
  2972. "symfony/service-contracts": "^1.1|^2|^3",
  2973. "symfony/yaml": "^4.4|^5.0|^6.0"
  2974. },
  2975. "suggest": {
  2976. "symfony/yaml": "To use the yaml reference dumper"
  2977. },
  2978. "type": "library",
  2979. "autoload": {
  2980. "psr-4": {
  2981. "Symfony\\Component\\Config\\": ""
  2982. },
  2983. "exclude-from-classmap": [
  2984. "/Tests/"
  2985. ]
  2986. },
  2987. "notification-url": "https://packagist.org/downloads/",
  2988. "license": [
  2989. "MIT"
  2990. ],
  2991. "authors": [
  2992. {
  2993. "name": "Fabien Potencier",
  2994. "email": "fabien@symfony.com"
  2995. },
  2996. {
  2997. "name": "Symfony Community",
  2998. "homepage": "https://symfony.com/contributors"
  2999. }
  3000. ],
  3001. "description": "Helps you find, load, combine, autofill and validate configuration values of any kind",
  3002. "homepage": "https://symfony.com",
  3003. "support": {
  3004. "source": "https://github.com/symfony/config/tree/v5.4.11"
  3005. },
  3006. "funding": [
  3007. {
  3008. "url": "https://symfony.com/sponsor",
  3009. "type": "custom"
  3010. },
  3011. {
  3012. "url": "https://github.com/fabpot",
  3013. "type": "github"
  3014. },
  3015. {
  3016. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3017. "type": "tidelift"
  3018. }
  3019. ],
  3020. "time": "2022-07-20T13:00:38+00:00"
  3021. },
  3022. {
  3023. "name": "symfony/console",
  3024. "version": "v5.4.13",
  3025. "source": {
  3026. "type": "git",
  3027. "url": "https://github.com/symfony/console.git",
  3028. "reference": "3f97f6c7b7e26848a90c0c0cfb91eeb2bb8618be"
  3029. },
  3030. "dist": {
  3031. "type": "zip",
  3032. "url": "https://api.github.com/repos/symfony/console/zipball/3f97f6c7b7e26848a90c0c0cfb91eeb2bb8618be",
  3033. "reference": "3f97f6c7b7e26848a90c0c0cfb91eeb2bb8618be",
  3034. "shasum": ""
  3035. },
  3036. "require": {
  3037. "php": ">=7.2.5",
  3038. "symfony/deprecation-contracts": "^2.1|^3",
  3039. "symfony/polyfill-mbstring": "~1.0",
  3040. "symfony/polyfill-php73": "^1.9",
  3041. "symfony/polyfill-php80": "^1.16",
  3042. "symfony/service-contracts": "^1.1|^2|^3",
  3043. "symfony/string": "^5.1|^6.0"
  3044. },
  3045. "conflict": {
  3046. "psr/log": ">=3",
  3047. "symfony/dependency-injection": "<4.4",
  3048. "symfony/dotenv": "<5.1",
  3049. "symfony/event-dispatcher": "<4.4",
  3050. "symfony/lock": "<4.4",
  3051. "symfony/process": "<4.4"
  3052. },
  3053. "provide": {
  3054. "psr/log-implementation": "1.0|2.0"
  3055. },
  3056. "require-dev": {
  3057. "psr/log": "^1|^2",
  3058. "symfony/config": "^4.4|^5.0|^6.0",
  3059. "symfony/dependency-injection": "^4.4|^5.0|^6.0",
  3060. "symfony/event-dispatcher": "^4.4|^5.0|^6.0",
  3061. "symfony/lock": "^4.4|^5.0|^6.0",
  3062. "symfony/process": "^4.4|^5.0|^6.0",
  3063. "symfony/var-dumper": "^4.4|^5.0|^6.0"
  3064. },
  3065. "suggest": {
  3066. "psr/log": "For using the console logger",
  3067. "symfony/event-dispatcher": "",
  3068. "symfony/lock": "",
  3069. "symfony/process": ""
  3070. },
  3071. "type": "library",
  3072. "autoload": {
  3073. "psr-4": {
  3074. "Symfony\\Component\\Console\\": ""
  3075. },
  3076. "exclude-from-classmap": [
  3077. "/Tests/"
  3078. ]
  3079. },
  3080. "notification-url": "https://packagist.org/downloads/",
  3081. "license": [
  3082. "MIT"
  3083. ],
  3084. "authors": [
  3085. {
  3086. "name": "Fabien Potencier",
  3087. "email": "fabien@symfony.com"
  3088. },
  3089. {
  3090. "name": "Symfony Community",
  3091. "homepage": "https://symfony.com/contributors"
  3092. }
  3093. ],
  3094. "description": "Eases the creation of beautiful and testable command line interfaces",
  3095. "homepage": "https://symfony.com",
  3096. "keywords": [
  3097. "cli",
  3098. "command line",
  3099. "console",
  3100. "terminal"
  3101. ],
  3102. "support": {
  3103. "source": "https://github.com/symfony/console/tree/v5.4.13"
  3104. },
  3105. "funding": [
  3106. {
  3107. "url": "https://symfony.com/sponsor",
  3108. "type": "custom"
  3109. },
  3110. {
  3111. "url": "https://github.com/fabpot",
  3112. "type": "github"
  3113. },
  3114. {
  3115. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3116. "type": "tidelift"
  3117. }
  3118. ],
  3119. "time": "2022-08-26T13:50:20+00:00"
  3120. },
  3121. {
  3122. "name": "symfony/dependency-injection",
  3123. "version": "v5.4.13",
  3124. "source": {
  3125. "type": "git",
  3126. "url": "https://github.com/symfony/dependency-injection.git",
  3127. "reference": "24cf522668845391c0542bc1de496366072a6d0e"
  3128. },
  3129. "dist": {
  3130. "type": "zip",
  3131. "url": "https://api.github.com/repos/symfony/dependency-injection/zipball/24cf522668845391c0542bc1de496366072a6d0e",
  3132. "reference": "24cf522668845391c0542bc1de496366072a6d0e",
  3133. "shasum": ""
  3134. },
  3135. "require": {
  3136. "php": ">=7.2.5",
  3137. "psr/container": "^1.1.1",
  3138. "symfony/deprecation-contracts": "^2.1|^3",
  3139. "symfony/polyfill-php80": "^1.16",
  3140. "symfony/polyfill-php81": "^1.22",
  3141. "symfony/service-contracts": "^1.1.6|^2"
  3142. },
  3143. "conflict": {
  3144. "ext-psr": "<1.1|>=2",
  3145. "symfony/config": "<5.3",
  3146. "symfony/finder": "<4.4",
  3147. "symfony/proxy-manager-bridge": "<4.4",
  3148. "symfony/yaml": "<4.4.26"
  3149. },
  3150. "provide": {
  3151. "psr/container-implementation": "1.0",
  3152. "symfony/service-implementation": "1.0|2.0"
  3153. },
  3154. "require-dev": {
  3155. "symfony/config": "^5.3|^6.0",
  3156. "symfony/expression-language": "^4.4|^5.0|^6.0",
  3157. "symfony/yaml": "^4.4.26|^5.0|^6.0"
  3158. },
  3159. "suggest": {
  3160. "symfony/config": "",
  3161. "symfony/expression-language": "For using expressions in service container configuration",
  3162. "symfony/finder": "For using double-star glob patterns or when GLOB_BRACE portability is required",
  3163. "symfony/proxy-manager-bridge": "Generate service proxies to lazy load them",
  3164. "symfony/yaml": ""
  3165. },
  3166. "type": "library",
  3167. "autoload": {
  3168. "psr-4": {
  3169. "Symfony\\Component\\DependencyInjection\\": ""
  3170. },
  3171. "exclude-from-classmap": [
  3172. "/Tests/"
  3173. ]
  3174. },
  3175. "notification-url": "https://packagist.org/downloads/",
  3176. "license": [
  3177. "MIT"
  3178. ],
  3179. "authors": [
  3180. {
  3181. "name": "Fabien Potencier",
  3182. "email": "fabien@symfony.com"
  3183. },
  3184. {
  3185. "name": "Symfony Community",
  3186. "homepage": "https://symfony.com/contributors"
  3187. }
  3188. ],
  3189. "description": "Allows you to standardize and centralize the way objects are constructed in your application",
  3190. "homepage": "https://symfony.com",
  3191. "support": {
  3192. "source": "https://github.com/symfony/dependency-injection/tree/v5.4.13"
  3193. },
  3194. "funding": [
  3195. {
  3196. "url": "https://symfony.com/sponsor",
  3197. "type": "custom"
  3198. },
  3199. {
  3200. "url": "https://github.com/fabpot",
  3201. "type": "github"
  3202. },
  3203. {
  3204. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3205. "type": "tidelift"
  3206. }
  3207. ],
  3208. "time": "2022-08-30T19:10:13+00:00"
  3209. },
  3210. {
  3211. "name": "symfony/deprecation-contracts",
  3212. "version": "v3.1.1",
  3213. "source": {
  3214. "type": "git",
  3215. "url": "https://github.com/symfony/deprecation-contracts.git",
  3216. "reference": "07f1b9cc2ffee6aaafcf4b710fbc38ff736bd918"
  3217. },
  3218. "dist": {
  3219. "type": "zip",
  3220. "url": "https://api.github.com/repos/symfony/deprecation-contracts/zipball/07f1b9cc2ffee6aaafcf4b710fbc38ff736bd918",
  3221. "reference": "07f1b9cc2ffee6aaafcf4b710fbc38ff736bd918",
  3222. "shasum": ""
  3223. },
  3224. "require": {
  3225. "php": ">=8.1"
  3226. },
  3227. "type": "library",
  3228. "extra": {
  3229. "branch-alias": {
  3230. "dev-main": "3.1-dev"
  3231. },
  3232. "thanks": {
  3233. "name": "symfony/contracts",
  3234. "url": "https://github.com/symfony/contracts"
  3235. }
  3236. },
  3237. "autoload": {
  3238. "files": [
  3239. "function.php"
  3240. ]
  3241. },
  3242. "notification-url": "https://packagist.org/downloads/",
  3243. "license": [
  3244. "MIT"
  3245. ],
  3246. "authors": [
  3247. {
  3248. "name": "Nicolas Grekas",
  3249. "email": "p@tchwork.com"
  3250. },
  3251. {
  3252. "name": "Symfony Community",
  3253. "homepage": "https://symfony.com/contributors"
  3254. }
  3255. ],
  3256. "description": "A generic function and convention to trigger deprecation notices",
  3257. "homepage": "https://symfony.com",
  3258. "support": {
  3259. "source": "https://github.com/symfony/deprecation-contracts/tree/v3.1.1"
  3260. },
  3261. "funding": [
  3262. {
  3263. "url": "https://symfony.com/sponsor",
  3264. "type": "custom"
  3265. },
  3266. {
  3267. "url": "https://github.com/fabpot",
  3268. "type": "github"
  3269. },
  3270. {
  3271. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3272. "type": "tidelift"
  3273. }
  3274. ],
  3275. "time": "2022-02-25T11:15:52+00:00"
  3276. },
  3277. {
  3278. "name": "symfony/doctrine-bridge",
  3279. "version": "v5.4.13",
  3280. "source": {
  3281. "type": "git",
  3282. "url": "https://github.com/symfony/doctrine-bridge.git",
  3283. "reference": "6ac912989e0c31b178aa534eb9ed75f7fa485fae"
  3284. },
  3285. "dist": {
  3286. "type": "zip",
  3287. "url": "https://api.github.com/repos/symfony/doctrine-bridge/zipball/6ac912989e0c31b178aa534eb9ed75f7fa485fae",
  3288. "reference": "6ac912989e0c31b178aa534eb9ed75f7fa485fae",
  3289. "shasum": ""
  3290. },
  3291. "require": {
  3292. "doctrine/event-manager": "~1.0",
  3293. "doctrine/persistence": "^2|^3",
  3294. "php": ">=7.2.5",
  3295. "symfony/deprecation-contracts": "^2.1|^3",
  3296. "symfony/polyfill-ctype": "~1.8",
  3297. "symfony/polyfill-mbstring": "~1.0",
  3298. "symfony/polyfill-php80": "^1.16",
  3299. "symfony/service-contracts": "^1.1|^2|^3"
  3300. },
  3301. "conflict": {
  3302. "doctrine/dbal": "<2.13.1",
  3303. "doctrine/lexer": "<1.1",
  3304. "doctrine/orm": "<2.7.4",
  3305. "phpunit/phpunit": "<5.4.3",
  3306. "symfony/cache": "<5.4",
  3307. "symfony/dependency-injection": "<4.4",
  3308. "symfony/form": "<5.1",
  3309. "symfony/http-kernel": "<5",
  3310. "symfony/messenger": "<4.4",
  3311. "symfony/property-info": "<5",
  3312. "symfony/proxy-manager-bridge": "<4.4.19",
  3313. "symfony/security-bundle": "<5",
  3314. "symfony/security-core": "<5.3",
  3315. "symfony/validator": "<5.2"
  3316. },
  3317. "require-dev": {
  3318. "doctrine/annotations": "^1.10.4",
  3319. "doctrine/collections": "~1.0",
  3320. "doctrine/data-fixtures": "^1.1",
  3321. "doctrine/dbal": "^2.13.1|^3.0",
  3322. "doctrine/orm": "^2.7.4",
  3323. "psr/log": "^1|^2|^3",
  3324. "symfony/cache": "^5.4|^6.0",
  3325. "symfony/config": "^4.4|^5.0|^6.0",
  3326. "symfony/dependency-injection": "^4.4|^5.0|^6.0",
  3327. "symfony/doctrine-messenger": "^5.1|^6.0",
  3328. "symfony/expression-language": "^4.4|^5.0|^6.0",
  3329. "symfony/form": "^5.4.9|^6.0.9",
  3330. "symfony/http-kernel": "^5.0|^6.0",
  3331. "symfony/messenger": "^4.4|^5.0|^6.0",
  3332. "symfony/property-access": "^4.4|^5.0|^6.0",
  3333. "symfony/property-info": "^5.0|^6.0",
  3334. "symfony/proxy-manager-bridge": "^4.4|^5.0|^6.0",
  3335. "symfony/security-core": "^5.3|^6.0",
  3336. "symfony/stopwatch": "^4.4|^5.0|^6.0",
  3337. "symfony/translation": "^4.4|^5.0|^6.0",
  3338. "symfony/uid": "^5.1|^6.0",
  3339. "symfony/validator": "^5.2|^6.0",
  3340. "symfony/var-dumper": "^4.4|^5.0|^6.0"
  3341. },
  3342. "suggest": {
  3343. "doctrine/data-fixtures": "",
  3344. "doctrine/dbal": "",
  3345. "doctrine/orm": "",
  3346. "symfony/form": "",
  3347. "symfony/property-info": "",
  3348. "symfony/validator": ""
  3349. },
  3350. "type": "symfony-bridge",
  3351. "autoload": {
  3352. "psr-4": {
  3353. "Symfony\\Bridge\\Doctrine\\": ""
  3354. },
  3355. "exclude-from-classmap": [
  3356. "/Tests/"
  3357. ]
  3358. },
  3359. "notification-url": "https://packagist.org/downloads/",
  3360. "license": [
  3361. "MIT"
  3362. ],
  3363. "authors": [
  3364. {
  3365. "name": "Fabien Potencier",
  3366. "email": "fabien@symfony.com"
  3367. },
  3368. {
  3369. "name": "Symfony Community",
  3370. "homepage": "https://symfony.com/contributors"
  3371. }
  3372. ],
  3373. "description": "Provides integration for Doctrine with various Symfony components",
  3374. "homepage": "https://symfony.com",
  3375. "support": {
  3376. "source": "https://github.com/symfony/doctrine-bridge/tree/v5.4.13"
  3377. },
  3378. "funding": [
  3379. {
  3380. "url": "https://symfony.com/sponsor",
  3381. "type": "custom"
  3382. },
  3383. {
  3384. "url": "https://github.com/fabpot",
  3385. "type": "github"
  3386. },
  3387. {
  3388. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3389. "type": "tidelift"
  3390. }
  3391. ],
  3392. "time": "2022-09-06T13:23:31+00:00"
  3393. },
  3394. {
  3395. "name": "symfony/dotenv",
  3396. "version": "v5.4.5",
  3397. "source": {
  3398. "type": "git",
  3399. "url": "https://github.com/symfony/dotenv.git",
  3400. "reference": "83a2310904a4f5d4f42526227b5a578ac82232a9"
  3401. },
  3402. "dist": {
  3403. "type": "zip",
  3404. "url": "https://api.github.com/repos/symfony/dotenv/zipball/83a2310904a4f5d4f42526227b5a578ac82232a9",
  3405. "reference": "83a2310904a4f5d4f42526227b5a578ac82232a9",
  3406. "shasum": ""
  3407. },
  3408. "require": {
  3409. "php": ">=7.2.5",
  3410. "symfony/deprecation-contracts": "^2.1|^3"
  3411. },
  3412. "require-dev": {
  3413. "symfony/console": "^4.4|^5.0|^6.0",
  3414. "symfony/process": "^4.4|^5.0|^6.0"
  3415. },
  3416. "type": "library",
  3417. "autoload": {
  3418. "psr-4": {
  3419. "Symfony\\Component\\Dotenv\\": ""
  3420. },
  3421. "exclude-from-classmap": [
  3422. "/Tests/"
  3423. ]
  3424. },
  3425. "notification-url": "https://packagist.org/downloads/",
  3426. "license": [
  3427. "MIT"
  3428. ],
  3429. "authors": [
  3430. {
  3431. "name": "Fabien Potencier",
  3432. "email": "fabien@symfony.com"
  3433. },
  3434. {
  3435. "name": "Symfony Community",
  3436. "homepage": "https://symfony.com/contributors"
  3437. }
  3438. ],
  3439. "description": "Registers environment variables from a .env file",
  3440. "homepage": "https://symfony.com",
  3441. "keywords": [
  3442. "dotenv",
  3443. "env",
  3444. "environment"
  3445. ],
  3446. "support": {
  3447. "source": "https://github.com/symfony/dotenv/tree/v5.4.5"
  3448. },
  3449. "funding": [
  3450. {
  3451. "url": "https://symfony.com/sponsor",
  3452. "type": "custom"
  3453. },
  3454. {
  3455. "url": "https://github.com/fabpot",
  3456. "type": "github"
  3457. },
  3458. {
  3459. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3460. "type": "tidelift"
  3461. }
  3462. ],
  3463. "time": "2022-02-15T17:04:12+00:00"
  3464. },
  3465. {
  3466. "name": "symfony/error-handler",
  3467. "version": "v5.4.11",
  3468. "source": {
  3469. "type": "git",
  3470. "url": "https://github.com/symfony/error-handler.git",
  3471. "reference": "f75d17cb4769eb38cd5fccbda95cd80a054d35c8"
  3472. },
  3473. "dist": {
  3474. "type": "zip",
  3475. "url": "https://api.github.com/repos/symfony/error-handler/zipball/f75d17cb4769eb38cd5fccbda95cd80a054d35c8",
  3476. "reference": "f75d17cb4769eb38cd5fccbda95cd80a054d35c8",
  3477. "shasum": ""
  3478. },
  3479. "require": {
  3480. "php": ">=7.2.5",
  3481. "psr/log": "^1|^2|^3",
  3482. "symfony/var-dumper": "^4.4|^5.0|^6.0"
  3483. },
  3484. "require-dev": {
  3485. "symfony/deprecation-contracts": "^2.1|^3",
  3486. "symfony/http-kernel": "^4.4|^5.0|^6.0",
  3487. "symfony/serializer": "^4.4|^5.0|^6.0"
  3488. },
  3489. "bin": [
  3490. "Resources/bin/patch-type-declarations"
  3491. ],
  3492. "type": "library",
  3493. "autoload": {
  3494. "psr-4": {
  3495. "Symfony\\Component\\ErrorHandler\\": ""
  3496. },
  3497. "exclude-from-classmap": [
  3498. "/Tests/"
  3499. ]
  3500. },
  3501. "notification-url": "https://packagist.org/downloads/",
  3502. "license": [
  3503. "MIT"
  3504. ],
  3505. "authors": [
  3506. {
  3507. "name": "Fabien Potencier",
  3508. "email": "fabien@symfony.com"
  3509. },
  3510. {
  3511. "name": "Symfony Community",
  3512. "homepage": "https://symfony.com/contributors"
  3513. }
  3514. ],
  3515. "description": "Provides tools to manage errors and ease debugging PHP code",
  3516. "homepage": "https://symfony.com",
  3517. "support": {
  3518. "source": "https://github.com/symfony/error-handler/tree/v5.4.11"
  3519. },
  3520. "funding": [
  3521. {
  3522. "url": "https://symfony.com/sponsor",
  3523. "type": "custom"
  3524. },
  3525. {
  3526. "url": "https://github.com/fabpot",
  3527. "type": "github"
  3528. },
  3529. {
  3530. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3531. "type": "tidelift"
  3532. }
  3533. ],
  3534. "time": "2022-07-29T07:37:50+00:00"
  3535. },
  3536. {
  3537. "name": "symfony/event-dispatcher",
  3538. "version": "v5.4.9",
  3539. "source": {
  3540. "type": "git",
  3541. "url": "https://github.com/symfony/event-dispatcher.git",
  3542. "reference": "8e6ce1cc0279e3ff3c8ff0f43813bc88d21ca1bc"
  3543. },
  3544. "dist": {
  3545. "type": "zip",
  3546. "url": "https://api.github.com/repos/symfony/event-dispatcher/zipball/8e6ce1cc0279e3ff3c8ff0f43813bc88d21ca1bc",
  3547. "reference": "8e6ce1cc0279e3ff3c8ff0f43813bc88d21ca1bc",
  3548. "shasum": ""
  3549. },
  3550. "require": {
  3551. "php": ">=7.2.5",
  3552. "symfony/deprecation-contracts": "^2.1|^3",
  3553. "symfony/event-dispatcher-contracts": "^2|^3",
  3554. "symfony/polyfill-php80": "^1.16"
  3555. },
  3556. "conflict": {
  3557. "symfony/dependency-injection": "<4.4"
  3558. },
  3559. "provide": {
  3560. "psr/event-dispatcher-implementation": "1.0",
  3561. "symfony/event-dispatcher-implementation": "2.0"
  3562. },
  3563. "require-dev": {
  3564. "psr/log": "^1|^2|^3",
  3565. "symfony/config": "^4.4|^5.0|^6.0",
  3566. "symfony/dependency-injection": "^4.4|^5.0|^6.0",
  3567. "symfony/error-handler": "^4.4|^5.0|^6.0",
  3568. "symfony/expression-language": "^4.4|^5.0|^6.0",
  3569. "symfony/http-foundation": "^4.4|^5.0|^6.0",
  3570. "symfony/service-contracts": "^1.1|^2|^3",
  3571. "symfony/stopwatch": "^4.4|^5.0|^6.0"
  3572. },
  3573. "suggest": {
  3574. "symfony/dependency-injection": "",
  3575. "symfony/http-kernel": ""
  3576. },
  3577. "type": "library",
  3578. "autoload": {
  3579. "psr-4": {
  3580. "Symfony\\Component\\EventDispatcher\\": ""
  3581. },
  3582. "exclude-from-classmap": [
  3583. "/Tests/"
  3584. ]
  3585. },
  3586. "notification-url": "https://packagist.org/downloads/",
  3587. "license": [
  3588. "MIT"
  3589. ],
  3590. "authors": [
  3591. {
  3592. "name": "Fabien Potencier",
  3593. "email": "fabien@symfony.com"
  3594. },
  3595. {
  3596. "name": "Symfony Community",
  3597. "homepage": "https://symfony.com/contributors"
  3598. }
  3599. ],
  3600. "description": "Provides tools that allow your application components to communicate with each other by dispatching events and listening to them",
  3601. "homepage": "https://symfony.com",
  3602. "support": {
  3603. "source": "https://github.com/symfony/event-dispatcher/tree/v5.4.9"
  3604. },
  3605. "funding": [
  3606. {
  3607. "url": "https://symfony.com/sponsor",
  3608. "type": "custom"
  3609. },
  3610. {
  3611. "url": "https://github.com/fabpot",
  3612. "type": "github"
  3613. },
  3614. {
  3615. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3616. "type": "tidelift"
  3617. }
  3618. ],
  3619. "time": "2022-05-05T16:45:39+00:00"
  3620. },
  3621. {
  3622. "name": "symfony/event-dispatcher-contracts",
  3623. "version": "v3.1.1",
  3624. "source": {
  3625. "type": "git",
  3626. "url": "https://github.com/symfony/event-dispatcher-contracts.git",
  3627. "reference": "02ff5eea2f453731cfbc6bc215e456b781480448"
  3628. },
  3629. "dist": {
  3630. "type": "zip",
  3631. "url": "https://api.github.com/repos/symfony/event-dispatcher-contracts/zipball/02ff5eea2f453731cfbc6bc215e456b781480448",
  3632. "reference": "02ff5eea2f453731cfbc6bc215e456b781480448",
  3633. "shasum": ""
  3634. },
  3635. "require": {
  3636. "php": ">=8.1",
  3637. "psr/event-dispatcher": "^1"
  3638. },
  3639. "suggest": {
  3640. "symfony/event-dispatcher-implementation": ""
  3641. },
  3642. "type": "library",
  3643. "extra": {
  3644. "branch-alias": {
  3645. "dev-main": "3.1-dev"
  3646. },
  3647. "thanks": {
  3648. "name": "symfony/contracts",
  3649. "url": "https://github.com/symfony/contracts"
  3650. }
  3651. },
  3652. "autoload": {
  3653. "psr-4": {
  3654. "Symfony\\Contracts\\EventDispatcher\\": ""
  3655. }
  3656. },
  3657. "notification-url": "https://packagist.org/downloads/",
  3658. "license": [
  3659. "MIT"
  3660. ],
  3661. "authors": [
  3662. {
  3663. "name": "Nicolas Grekas",
  3664. "email": "p@tchwork.com"
  3665. },
  3666. {
  3667. "name": "Symfony Community",
  3668. "homepage": "https://symfony.com/contributors"
  3669. }
  3670. ],
  3671. "description": "Generic abstractions related to dispatching event",
  3672. "homepage": "https://symfony.com",
  3673. "keywords": [
  3674. "abstractions",
  3675. "contracts",
  3676. "decoupling",
  3677. "interfaces",
  3678. "interoperability",
  3679. "standards"
  3680. ],
  3681. "support": {
  3682. "source": "https://github.com/symfony/event-dispatcher-contracts/tree/v3.1.1"
  3683. },
  3684. "funding": [
  3685. {
  3686. "url": "https://symfony.com/sponsor",
  3687. "type": "custom"
  3688. },
  3689. {
  3690. "url": "https://github.com/fabpot",
  3691. "type": "github"
  3692. },
  3693. {
  3694. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3695. "type": "tidelift"
  3696. }
  3697. ],
  3698. "time": "2022-02-25T11:15:52+00:00"
  3699. },
  3700. {
  3701. "name": "symfony/expression-language",
  3702. "version": "v5.4.11",
  3703. "source": {
  3704. "type": "git",
  3705. "url": "https://github.com/symfony/expression-language.git",
  3706. "reference": "eb59000eb72c9681502cb501af3c666be42d215e"
  3707. },
  3708. "dist": {
  3709. "type": "zip",
  3710. "url": "https://api.github.com/repos/symfony/expression-language/zipball/eb59000eb72c9681502cb501af3c666be42d215e",
  3711. "reference": "eb59000eb72c9681502cb501af3c666be42d215e",
  3712. "shasum": ""
  3713. },
  3714. "require": {
  3715. "php": ">=7.2.5",
  3716. "symfony/cache": "^4.4|^5.0|^6.0",
  3717. "symfony/service-contracts": "^1.1|^2|^3"
  3718. },
  3719. "type": "library",
  3720. "autoload": {
  3721. "psr-4": {
  3722. "Symfony\\Component\\ExpressionLanguage\\": ""
  3723. },
  3724. "exclude-from-classmap": [
  3725. "/Tests/"
  3726. ]
  3727. },
  3728. "notification-url": "https://packagist.org/downloads/",
  3729. "license": [
  3730. "MIT"
  3731. ],
  3732. "authors": [
  3733. {
  3734. "name": "Fabien Potencier",
  3735. "email": "fabien@symfony.com"
  3736. },
  3737. {
  3738. "name": "Symfony Community",
  3739. "homepage": "https://symfony.com/contributors"
  3740. }
  3741. ],
  3742. "description": "Provides an engine that can compile and evaluate expressions",
  3743. "homepage": "https://symfony.com",
  3744. "support": {
  3745. "source": "https://github.com/symfony/expression-language/tree/v5.4.11"
  3746. },
  3747. "funding": [
  3748. {
  3749. "url": "https://symfony.com/sponsor",
  3750. "type": "custom"
  3751. },
  3752. {
  3753. "url": "https://github.com/fabpot",
  3754. "type": "github"
  3755. },
  3756. {
  3757. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3758. "type": "tidelift"
  3759. }
  3760. ],
  3761. "time": "2022-07-20T11:34:24+00:00"
  3762. },
  3763. {
  3764. "name": "symfony/filesystem",
  3765. "version": "v5.4.13",
  3766. "source": {
  3767. "type": "git",
  3768. "url": "https://github.com/symfony/filesystem.git",
  3769. "reference": "ac09569844a9109a5966b9438fc29113ce77cf51"
  3770. },
  3771. "dist": {
  3772. "type": "zip",
  3773. "url": "https://api.github.com/repos/symfony/filesystem/zipball/ac09569844a9109a5966b9438fc29113ce77cf51",
  3774. "reference": "ac09569844a9109a5966b9438fc29113ce77cf51",
  3775. "shasum": ""
  3776. },
  3777. "require": {
  3778. "php": ">=7.2.5",
  3779. "symfony/polyfill-ctype": "~1.8",
  3780. "symfony/polyfill-mbstring": "~1.8",
  3781. "symfony/polyfill-php80": "^1.16"
  3782. },
  3783. "type": "library",
  3784. "autoload": {
  3785. "psr-4": {
  3786. "Symfony\\Component\\Filesystem\\": ""
  3787. },
  3788. "exclude-from-classmap": [
  3789. "/Tests/"
  3790. ]
  3791. },
  3792. "notification-url": "https://packagist.org/downloads/",
  3793. "license": [
  3794. "MIT"
  3795. ],
  3796. "authors": [
  3797. {
  3798. "name": "Fabien Potencier",
  3799. "email": "fabien@symfony.com"
  3800. },
  3801. {
  3802. "name": "Symfony Community",
  3803. "homepage": "https://symfony.com/contributors"
  3804. }
  3805. ],
  3806. "description": "Provides basic utilities for the filesystem",
  3807. "homepage": "https://symfony.com",
  3808. "support": {
  3809. "source": "https://github.com/symfony/filesystem/tree/v5.4.13"
  3810. },
  3811. "funding": [
  3812. {
  3813. "url": "https://symfony.com/sponsor",
  3814. "type": "custom"
  3815. },
  3816. {
  3817. "url": "https://github.com/fabpot",
  3818. "type": "github"
  3819. },
  3820. {
  3821. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3822. "type": "tidelift"
  3823. }
  3824. ],
  3825. "time": "2022-09-21T19:53:16+00:00"
  3826. },
  3827. {
  3828. "name": "symfony/finder",
  3829. "version": "v5.4.11",
  3830. "source": {
  3831. "type": "git",
  3832. "url": "https://github.com/symfony/finder.git",
  3833. "reference": "7872a66f57caffa2916a584db1aa7f12adc76f8c"
  3834. },
  3835. "dist": {
  3836. "type": "zip",
  3837. "url": "https://api.github.com/repos/symfony/finder/zipball/7872a66f57caffa2916a584db1aa7f12adc76f8c",
  3838. "reference": "7872a66f57caffa2916a584db1aa7f12adc76f8c",
  3839. "shasum": ""
  3840. },
  3841. "require": {
  3842. "php": ">=7.2.5",
  3843. "symfony/deprecation-contracts": "^2.1|^3",
  3844. "symfony/polyfill-php80": "^1.16"
  3845. },
  3846. "type": "library",
  3847. "autoload": {
  3848. "psr-4": {
  3849. "Symfony\\Component\\Finder\\": ""
  3850. },
  3851. "exclude-from-classmap": [
  3852. "/Tests/"
  3853. ]
  3854. },
  3855. "notification-url": "https://packagist.org/downloads/",
  3856. "license": [
  3857. "MIT"
  3858. ],
  3859. "authors": [
  3860. {
  3861. "name": "Fabien Potencier",
  3862. "email": "fabien@symfony.com"
  3863. },
  3864. {
  3865. "name": "Symfony Community",
  3866. "homepage": "https://symfony.com/contributors"
  3867. }
  3868. ],
  3869. "description": "Finds files and directories via an intuitive fluent interface",
  3870. "homepage": "https://symfony.com",
  3871. "support": {
  3872. "source": "https://github.com/symfony/finder/tree/v5.4.11"
  3873. },
  3874. "funding": [
  3875. {
  3876. "url": "https://symfony.com/sponsor",
  3877. "type": "custom"
  3878. },
  3879. {
  3880. "url": "https://github.com/fabpot",
  3881. "type": "github"
  3882. },
  3883. {
  3884. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3885. "type": "tidelift"
  3886. }
  3887. ],
  3888. "time": "2022-07-29T07:37:50+00:00"
  3889. },
  3890. {
  3891. "name": "symfony/flex",
  3892. "version": "v2.2.3",
  3893. "source": {
  3894. "type": "git",
  3895. "url": "https://github.com/symfony/flex.git",
  3896. "reference": "0763da1bdcce1d48c06778d48249905c26d34a72"
  3897. },
  3898. "dist": {
  3899. "type": "zip",
  3900. "url": "https://api.github.com/repos/symfony/flex/zipball/0763da1bdcce1d48c06778d48249905c26d34a72",
  3901. "reference": "0763da1bdcce1d48c06778d48249905c26d34a72",
  3902. "shasum": ""
  3903. },
  3904. "require": {
  3905. "composer-plugin-api": "^2.1",
  3906. "php": ">=8.0"
  3907. },
  3908. "require-dev": {
  3909. "composer/composer": "^2.1",
  3910. "symfony/dotenv": "^5.4|^6.0",
  3911. "symfony/filesystem": "^5.4|^6.0",
  3912. "symfony/phpunit-bridge": "^5.4|^6.0",
  3913. "symfony/process": "^5.4|^6.0"
  3914. },
  3915. "type": "composer-plugin",
  3916. "extra": {
  3917. "class": "Symfony\\Flex\\Flex"
  3918. },
  3919. "autoload": {
  3920. "psr-4": {
  3921. "Symfony\\Flex\\": "src"
  3922. }
  3923. },
  3924. "notification-url": "https://packagist.org/downloads/",
  3925. "license": [
  3926. "MIT"
  3927. ],
  3928. "authors": [
  3929. {
  3930. "name": "Fabien Potencier",
  3931. "email": "fabien.potencier@gmail.com"
  3932. }
  3933. ],
  3934. "description": "Composer plugin for Symfony",
  3935. "support": {
  3936. "issues": "https://github.com/symfony/flex/issues",
  3937. "source": "https://github.com/symfony/flex/tree/v2.2.3"
  3938. },
  3939. "funding": [
  3940. {
  3941. "url": "https://symfony.com/sponsor",
  3942. "type": "custom"
  3943. },
  3944. {
  3945. "url": "https://github.com/fabpot",
  3946. "type": "github"
  3947. },
  3948. {
  3949. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3950. "type": "tidelift"
  3951. }
  3952. ],
  3953. "time": "2022-08-07T09:39:47+00:00"
  3954. },
  3955. {
  3956. "name": "symfony/form",
  3957. "version": "v5.4.13",
  3958. "source": {
  3959. "type": "git",
  3960. "url": "https://github.com/symfony/form.git",
  3961. "reference": "d9d661776636ce689bc879b66fb06c6a6895f1a7"
  3962. },
  3963. "dist": {
  3964. "type": "zip",
  3965. "url": "https://api.github.com/repos/symfony/form/zipball/d9d661776636ce689bc879b66fb06c6a6895f1a7",
  3966. "reference": "d9d661776636ce689bc879b66fb06c6a6895f1a7",
  3967. "shasum": ""
  3968. },
  3969. "require": {
  3970. "php": ">=7.2.5",
  3971. "symfony/deprecation-contracts": "^2.1|^3",
  3972. "symfony/event-dispatcher": "^4.4|^5.0|^6.0",
  3973. "symfony/options-resolver": "^5.1|^6.0",
  3974. "symfony/polyfill-ctype": "~1.8",
  3975. "symfony/polyfill-intl-icu": "^1.21",
  3976. "symfony/polyfill-mbstring": "~1.0",
  3977. "symfony/polyfill-php80": "^1.16",
  3978. "symfony/polyfill-php81": "^1.23",
  3979. "symfony/property-access": "^5.0.8|^6.0",
  3980. "symfony/service-contracts": "^1.1|^2|^3"
  3981. },
  3982. "conflict": {
  3983. "phpunit/phpunit": "<5.4.3",
  3984. "symfony/console": "<4.4",
  3985. "symfony/dependency-injection": "<4.4",
  3986. "symfony/doctrine-bridge": "<4.4",
  3987. "symfony/error-handler": "<4.4.5",
  3988. "symfony/framework-bundle": "<4.4",
  3989. "symfony/http-kernel": "<4.4",
  3990. "symfony/translation": "<4.4",
  3991. "symfony/translation-contracts": "<1.1.7",
  3992. "symfony/twig-bridge": "<4.4"
  3993. },
  3994. "require-dev": {
  3995. "doctrine/collections": "~1.0",
  3996. "symfony/config": "^4.4|^5.0|^6.0",
  3997. "symfony/console": "^5.4|^6.0",
  3998. "symfony/dependency-injection": "^4.4|^5.0|^6.0",
  3999. "symfony/expression-language": "^4.4|^5.0|^6.0",
  4000. "symfony/http-foundation": "^4.4|^5.0|^6.0",
  4001. "symfony/http-kernel": "^4.4|^5.0|^6.0",
  4002. "symfony/intl": "^4.4|^5.0|^6.0",
  4003. "symfony/security-csrf": "^4.4|^5.0|^6.0",
  4004. "symfony/translation": "^4.4|^5.0|^6.0",
  4005. "symfony/uid": "^5.1|^6.0",
  4006. "symfony/validator": "^4.4.17|^5.1.9|^6.0",
  4007. "symfony/var-dumper": "^4.4|^5.0|^6.0"
  4008. },
  4009. "suggest": {
  4010. "symfony/security-csrf": "For protecting forms against CSRF attacks.",
  4011. "symfony/twig-bridge": "For templating with Twig.",
  4012. "symfony/validator": "For form validation."
  4013. },
  4014. "type": "library",
  4015. "autoload": {
  4016. "psr-4": {
  4017. "Symfony\\Component\\Form\\": ""
  4018. },
  4019. "exclude-from-classmap": [
  4020. "/Tests/"
  4021. ]
  4022. },
  4023. "notification-url": "https://packagist.org/downloads/",
  4024. "license": [
  4025. "MIT"
  4026. ],
  4027. "authors": [
  4028. {
  4029. "name": "Fabien Potencier",
  4030. "email": "fabien@symfony.com"
  4031. },
  4032. {
  4033. "name": "Symfony Community",
  4034. "homepage": "https://symfony.com/contributors"
  4035. }
  4036. ],
  4037. "description": "Allows to easily create, process and reuse HTML forms",
  4038. "homepage": "https://symfony.com",
  4039. "support": {
  4040. "source": "https://github.com/symfony/form/tree/v5.4.13"
  4041. },
  4042. "funding": [
  4043. {
  4044. "url": "https://symfony.com/sponsor",
  4045. "type": "custom"
  4046. },
  4047. {
  4048. "url": "https://github.com/fabpot",
  4049. "type": "github"
  4050. },
  4051. {
  4052. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4053. "type": "tidelift"
  4054. }
  4055. ],
  4056. "time": "2022-09-28T15:33:58+00:00"
  4057. },
  4058. {
  4059. "name": "symfony/framework-bundle",
  4060. "version": "v5.4.13",
  4061. "source": {
  4062. "type": "git",
  4063. "url": "https://github.com/symfony/framework-bundle.git",
  4064. "reference": "394866c2cb8bb189b9bd5ebd043b66f89c800363"
  4065. },
  4066. "dist": {
  4067. "type": "zip",
  4068. "url": "https://api.github.com/repos/symfony/framework-bundle/zipball/394866c2cb8bb189b9bd5ebd043b66f89c800363",
  4069. "reference": "394866c2cb8bb189b9bd5ebd043b66f89c800363",
  4070. "shasum": ""
  4071. },
  4072. "require": {
  4073. "ext-xml": "*",
  4074. "php": ">=7.2.5",
  4075. "symfony/cache": "^5.2|^6.0",
  4076. "symfony/config": "^5.3|^6.0",
  4077. "symfony/dependency-injection": "^5.4.5|^6.0.5",
  4078. "symfony/deprecation-contracts": "^2.1|^3",
  4079. "symfony/error-handler": "^4.4.1|^5.0.1|^6.0",
  4080. "symfony/event-dispatcher": "^5.1|^6.0",
  4081. "symfony/filesystem": "^4.4|^5.0|^6.0",
  4082. "symfony/finder": "^4.4|^5.0|^6.0",
  4083. "symfony/http-foundation": "^5.3|^6.0",
  4084. "symfony/http-kernel": "^5.4|^6.0",
  4085. "symfony/polyfill-mbstring": "~1.0",
  4086. "symfony/polyfill-php80": "^1.16",
  4087. "symfony/polyfill-php81": "^1.22",
  4088. "symfony/routing": "^5.3|^6.0"
  4089. },
  4090. "conflict": {
  4091. "doctrine/annotations": "<1.13.1",
  4092. "doctrine/cache": "<1.11",
  4093. "doctrine/persistence": "<1.3",
  4094. "phpdocumentor/reflection-docblock": "<3.2.2",
  4095. "phpdocumentor/type-resolver": "<1.4.0",
  4096. "phpunit/phpunit": "<5.4.3",
  4097. "symfony/asset": "<5.3",
  4098. "symfony/console": "<5.2.5",
  4099. "symfony/dom-crawler": "<4.4",
  4100. "symfony/dotenv": "<5.1",
  4101. "symfony/form": "<5.2",
  4102. "symfony/http-client": "<4.4",
  4103. "symfony/lock": "<4.4",
  4104. "symfony/mailer": "<5.2",
  4105. "symfony/messenger": "<5.4",
  4106. "symfony/mime": "<4.4",
  4107. "symfony/property-access": "<5.3",
  4108. "symfony/property-info": "<4.4",
  4109. "symfony/security-csrf": "<5.3",
  4110. "symfony/serializer": "<5.2",
  4111. "symfony/service-contracts": ">=3.0",
  4112. "symfony/stopwatch": "<4.4",
  4113. "symfony/translation": "<5.3",
  4114. "symfony/twig-bridge": "<4.4",
  4115. "symfony/twig-bundle": "<4.4",
  4116. "symfony/validator": "<5.2",
  4117. "symfony/web-profiler-bundle": "<4.4",
  4118. "symfony/workflow": "<5.2"
  4119. },
  4120. "require-dev": {
  4121. "doctrine/annotations": "^1.13.1",
  4122. "doctrine/cache": "^1.11|^2.0",
  4123. "doctrine/persistence": "^1.3|^2|^3",
  4124. "phpdocumentor/reflection-docblock": "^3.0|^4.0|^5.0",
  4125. "symfony/asset": "^5.3|^6.0",
  4126. "symfony/browser-kit": "^5.4|^6.0",
  4127. "symfony/console": "^5.4.9|^6.0.9",
  4128. "symfony/css-selector": "^4.4|^5.0|^6.0",
  4129. "symfony/dom-crawler": "^4.4.30|^5.3.7|^6.0",
  4130. "symfony/dotenv": "^5.1|^6.0",
  4131. "symfony/expression-language": "^4.4|^5.0|^6.0",
  4132. "symfony/form": "^5.2|^6.0",
  4133. "symfony/http-client": "^4.4|^5.0|^6.0",
  4134. "symfony/lock": "^4.4|^5.0|^6.0",
  4135. "symfony/mailer": "^5.2|^6.0",
  4136. "symfony/messenger": "^5.4|^6.0",
  4137. "symfony/mime": "^4.4|^5.0|^6.0",
  4138. "symfony/notifier": "^5.4|^6.0",
  4139. "symfony/polyfill-intl-icu": "~1.0",
  4140. "symfony/process": "^4.4|^5.0|^6.0",
  4141. "symfony/property-info": "^4.4|^5.0|^6.0",
  4142. "symfony/rate-limiter": "^5.2|^6.0",
  4143. "symfony/security-bundle": "^5.4|^6.0",
  4144. "symfony/serializer": "^5.4|^6.0",
  4145. "symfony/stopwatch": "^4.4|^5.0|^6.0",
  4146. "symfony/string": "^5.0|^6.0",
  4147. "symfony/translation": "^5.3|^6.0",
  4148. "symfony/twig-bundle": "^4.4|^5.0|^6.0",
  4149. "symfony/validator": "^5.2|^6.0",
  4150. "symfony/web-link": "^4.4|^5.0|^6.0",
  4151. "symfony/workflow": "^5.2|^6.0",
  4152. "symfony/yaml": "^4.4|^5.0|^6.0",
  4153. "twig/twig": "^2.10|^3.0"
  4154. },
  4155. "suggest": {
  4156. "ext-apcu": "For best performance of the system caches",
  4157. "symfony/console": "For using the console commands",
  4158. "symfony/form": "For using forms",
  4159. "symfony/property-info": "For using the property_info service",
  4160. "symfony/serializer": "For using the serializer service",
  4161. "symfony/validator": "For using validation",
  4162. "symfony/web-link": "For using web links, features such as preloading, prefetching or prerendering",
  4163. "symfony/yaml": "For using the debug:config and lint:yaml commands"
  4164. },
  4165. "type": "symfony-bundle",
  4166. "autoload": {
  4167. "psr-4": {
  4168. "Symfony\\Bundle\\FrameworkBundle\\": ""
  4169. },
  4170. "exclude-from-classmap": [
  4171. "/Tests/"
  4172. ]
  4173. },
  4174. "notification-url": "https://packagist.org/downloads/",
  4175. "license": [
  4176. "MIT"
  4177. ],
  4178. "authors": [
  4179. {
  4180. "name": "Fabien Potencier",
  4181. "email": "fabien@symfony.com"
  4182. },
  4183. {
  4184. "name": "Symfony Community",
  4185. "homepage": "https://symfony.com/contributors"
  4186. }
  4187. ],
  4188. "description": "Provides a tight integration between Symfony components and the Symfony full-stack framework",
  4189. "homepage": "https://symfony.com",
  4190. "support": {
  4191. "source": "https://github.com/symfony/framework-bundle/tree/v5.4.13"
  4192. },
  4193. "funding": [
  4194. {
  4195. "url": "https://symfony.com/sponsor",
  4196. "type": "custom"
  4197. },
  4198. {
  4199. "url": "https://github.com/fabpot",
  4200. "type": "github"
  4201. },
  4202. {
  4203. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4204. "type": "tidelift"
  4205. }
  4206. ],
  4207. "time": "2022-09-29T08:12:55+00:00"
  4208. },
  4209. {
  4210. "name": "symfony/http-client",
  4211. "version": "v5.4.13",
  4212. "source": {
  4213. "type": "git",
  4214. "url": "https://github.com/symfony/http-client.git",
  4215. "reference": "596fd752f00e0205d895cd6b184d135c27bb5d6a"
  4216. },
  4217. "dist": {
  4218. "type": "zip",
  4219. "url": "https://api.github.com/repos/symfony/http-client/zipball/596fd752f00e0205d895cd6b184d135c27bb5d6a",
  4220. "reference": "596fd752f00e0205d895cd6b184d135c27bb5d6a",
  4221. "shasum": ""
  4222. },
  4223. "require": {
  4224. "php": ">=7.2.5",
  4225. "psr/log": "^1|^2|^3",
  4226. "symfony/deprecation-contracts": "^2.1|^3",
  4227. "symfony/http-client-contracts": "^2.4",
  4228. "symfony/polyfill-php73": "^1.11",
  4229. "symfony/polyfill-php80": "^1.16",
  4230. "symfony/service-contracts": "^1.0|^2|^3"
  4231. },
  4232. "provide": {
  4233. "php-http/async-client-implementation": "*",
  4234. "php-http/client-implementation": "*",
  4235. "psr/http-client-implementation": "1.0",
  4236. "symfony/http-client-implementation": "2.4"
  4237. },
  4238. "require-dev": {
  4239. "amphp/amp": "^2.5",
  4240. "amphp/http-client": "^4.2.1",
  4241. "amphp/http-tunnel": "^1.0",
  4242. "amphp/socket": "^1.1",
  4243. "guzzlehttp/promises": "^1.4",
  4244. "nyholm/psr7": "^1.0",
  4245. "php-http/httplug": "^1.0|^2.0",
  4246. "psr/http-client": "^1.0",
  4247. "symfony/dependency-injection": "^4.4|^5.0|^6.0",
  4248. "symfony/http-kernel": "^4.4.13|^5.1.5|^6.0",
  4249. "symfony/process": "^4.4|^5.0|^6.0",
  4250. "symfony/stopwatch": "^4.4|^5.0|^6.0"
  4251. },
  4252. "type": "library",
  4253. "autoload": {
  4254. "psr-4": {
  4255. "Symfony\\Component\\HttpClient\\": ""
  4256. },
  4257. "exclude-from-classmap": [
  4258. "/Tests/"
  4259. ]
  4260. },
  4261. "notification-url": "https://packagist.org/downloads/",
  4262. "license": [
  4263. "MIT"
  4264. ],
  4265. "authors": [
  4266. {
  4267. "name": "Nicolas Grekas",
  4268. "email": "p@tchwork.com"
  4269. },
  4270. {
  4271. "name": "Symfony Community",
  4272. "homepage": "https://symfony.com/contributors"
  4273. }
  4274. ],
  4275. "description": "Provides powerful methods to fetch HTTP resources synchronously or asynchronously",
  4276. "homepage": "https://symfony.com",
  4277. "support": {
  4278. "source": "https://github.com/symfony/http-client/tree/v5.4.13"
  4279. },
  4280. "funding": [
  4281. {
  4282. "url": "https://symfony.com/sponsor",
  4283. "type": "custom"
  4284. },
  4285. {
  4286. "url": "https://github.com/fabpot",
  4287. "type": "github"
  4288. },
  4289. {
  4290. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4291. "type": "tidelift"
  4292. }
  4293. ],
  4294. "time": "2022-09-08T18:41:21+00:00"
  4295. },
  4296. {
  4297. "name": "symfony/http-client-contracts",
  4298. "version": "v2.5.2",
  4299. "source": {
  4300. "type": "git",
  4301. "url": "https://github.com/symfony/http-client-contracts.git",
  4302. "reference": "ba6a9f0e8f3edd190520ee3b9a958596b6ca2e70"
  4303. },
  4304. "dist": {
  4305. "type": "zip",
  4306. "url": "https://api.github.com/repos/symfony/http-client-contracts/zipball/ba6a9f0e8f3edd190520ee3b9a958596b6ca2e70",
  4307. "reference": "ba6a9f0e8f3edd190520ee3b9a958596b6ca2e70",
  4308. "shasum": ""
  4309. },
  4310. "require": {
  4311. "php": ">=7.2.5"
  4312. },
  4313. "suggest": {
  4314. "symfony/http-client-implementation": ""
  4315. },
  4316. "type": "library",
  4317. "extra": {
  4318. "branch-alias": {
  4319. "dev-main": "2.5-dev"
  4320. },
  4321. "thanks": {
  4322. "name": "symfony/contracts",
  4323. "url": "https://github.com/symfony/contracts"
  4324. }
  4325. },
  4326. "autoload": {
  4327. "psr-4": {
  4328. "Symfony\\Contracts\\HttpClient\\": ""
  4329. }
  4330. },
  4331. "notification-url": "https://packagist.org/downloads/",
  4332. "license": [
  4333. "MIT"
  4334. ],
  4335. "authors": [
  4336. {
  4337. "name": "Nicolas Grekas",
  4338. "email": "p@tchwork.com"
  4339. },
  4340. {
  4341. "name": "Symfony Community",
  4342. "homepage": "https://symfony.com/contributors"
  4343. }
  4344. ],
  4345. "description": "Generic abstractions related to HTTP clients",
  4346. "homepage": "https://symfony.com",
  4347. "keywords": [
  4348. "abstractions",
  4349. "contracts",
  4350. "decoupling",
  4351. "interfaces",
  4352. "interoperability",
  4353. "standards"
  4354. ],
  4355. "support": {
  4356. "source": "https://github.com/symfony/http-client-contracts/tree/v2.5.2"
  4357. },
  4358. "funding": [
  4359. {
  4360. "url": "https://symfony.com/sponsor",
  4361. "type": "custom"
  4362. },
  4363. {
  4364. "url": "https://github.com/fabpot",
  4365. "type": "github"
  4366. },
  4367. {
  4368. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4369. "type": "tidelift"
  4370. }
  4371. ],
  4372. "time": "2022-04-12T15:48:08+00:00"
  4373. },
  4374. {
  4375. "name": "symfony/http-foundation",
  4376. "version": "v5.4.13",
  4377. "source": {
  4378. "type": "git",
  4379. "url": "https://github.com/symfony/http-foundation.git",
  4380. "reference": "54be067587a4f2b7fffb7a699f9481ec3daf9379"
  4381. },
  4382. "dist": {
  4383. "type": "zip",
  4384. "url": "https://api.github.com/repos/symfony/http-foundation/zipball/54be067587a4f2b7fffb7a699f9481ec3daf9379",
  4385. "reference": "54be067587a4f2b7fffb7a699f9481ec3daf9379",
  4386. "shasum": ""
  4387. },
  4388. "require": {
  4389. "php": ">=7.2.5",
  4390. "symfony/deprecation-contracts": "^2.1|^3",
  4391. "symfony/polyfill-mbstring": "~1.1",
  4392. "symfony/polyfill-php80": "^1.16"
  4393. },
  4394. "require-dev": {
  4395. "predis/predis": "~1.0",
  4396. "symfony/cache": "^4.4|^5.0|^6.0",
  4397. "symfony/dependency-injection": "^5.4|^6.0",
  4398. "symfony/expression-language": "^4.4|^5.0|^6.0",
  4399. "symfony/http-kernel": "^5.4.12|^6.0.12|^6.1.4",
  4400. "symfony/mime": "^4.4|^5.0|^6.0",
  4401. "symfony/rate-limiter": "^5.2|^6.0"
  4402. },
  4403. "suggest": {
  4404. "symfony/mime": "To use the file extension guesser"
  4405. },
  4406. "type": "library",
  4407. "autoload": {
  4408. "psr-4": {
  4409. "Symfony\\Component\\HttpFoundation\\": ""
  4410. },
  4411. "exclude-from-classmap": [
  4412. "/Tests/"
  4413. ]
  4414. },
  4415. "notification-url": "https://packagist.org/downloads/",
  4416. "license": [
  4417. "MIT"
  4418. ],
  4419. "authors": [
  4420. {
  4421. "name": "Fabien Potencier",
  4422. "email": "fabien@symfony.com"
  4423. },
  4424. {
  4425. "name": "Symfony Community",
  4426. "homepage": "https://symfony.com/contributors"
  4427. }
  4428. ],
  4429. "description": "Defines an object-oriented layer for the HTTP specification",
  4430. "homepage": "https://symfony.com",
  4431. "support": {
  4432. "source": "https://github.com/symfony/http-foundation/tree/v5.4.13"
  4433. },
  4434. "funding": [
  4435. {
  4436. "url": "https://symfony.com/sponsor",
  4437. "type": "custom"
  4438. },
  4439. {
  4440. "url": "https://github.com/fabpot",
  4441. "type": "github"
  4442. },
  4443. {
  4444. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4445. "type": "tidelift"
  4446. }
  4447. ],
  4448. "time": "2022-09-17T07:31:22+00:00"
  4449. },
  4450. {
  4451. "name": "symfony/http-kernel",
  4452. "version": "v5.4.13",
  4453. "source": {
  4454. "type": "git",
  4455. "url": "https://github.com/symfony/http-kernel.git",
  4456. "reference": "4f25330c216b7bb178603b2e25fb7a9325015507"
  4457. },
  4458. "dist": {
  4459. "type": "zip",
  4460. "url": "https://api.github.com/repos/symfony/http-kernel/zipball/4f25330c216b7bb178603b2e25fb7a9325015507",
  4461. "reference": "4f25330c216b7bb178603b2e25fb7a9325015507",
  4462. "shasum": ""
  4463. },
  4464. "require": {
  4465. "php": ">=7.2.5",
  4466. "psr/log": "^1|^2",
  4467. "symfony/deprecation-contracts": "^2.1|^3",
  4468. "symfony/error-handler": "^4.4|^5.0|^6.0",
  4469. "symfony/event-dispatcher": "^5.0|^6.0",
  4470. "symfony/http-foundation": "^5.3.7|^6.0",
  4471. "symfony/polyfill-ctype": "^1.8",
  4472. "symfony/polyfill-php73": "^1.9",
  4473. "symfony/polyfill-php80": "^1.16"
  4474. },
  4475. "conflict": {
  4476. "symfony/browser-kit": "<5.4",
  4477. "symfony/cache": "<5.0",
  4478. "symfony/config": "<5.0",
  4479. "symfony/console": "<4.4",
  4480. "symfony/dependency-injection": "<5.3",
  4481. "symfony/doctrine-bridge": "<5.0",
  4482. "symfony/form": "<5.0",
  4483. "symfony/http-client": "<5.0",
  4484. "symfony/mailer": "<5.0",
  4485. "symfony/messenger": "<5.0",
  4486. "symfony/translation": "<5.0",
  4487. "symfony/twig-bridge": "<5.0",
  4488. "symfony/validator": "<5.0",
  4489. "twig/twig": "<2.13"
  4490. },
  4491. "provide": {
  4492. "psr/log-implementation": "1.0|2.0"
  4493. },
  4494. "require-dev": {
  4495. "psr/cache": "^1.0|^2.0|^3.0",
  4496. "symfony/browser-kit": "^5.4|^6.0",
  4497. "symfony/config": "^5.0|^6.0",
  4498. "symfony/console": "^4.4|^5.0|^6.0",
  4499. "symfony/css-selector": "^4.4|^5.0|^6.0",
  4500. "symfony/dependency-injection": "^5.3|^6.0",
  4501. "symfony/dom-crawler": "^4.4|^5.0|^6.0",
  4502. "symfony/expression-language": "^4.4|^5.0|^6.0",
  4503. "symfony/finder": "^4.4|^5.0|^6.0",
  4504. "symfony/http-client-contracts": "^1.1|^2|^3",
  4505. "symfony/process": "^4.4|^5.0|^6.0",
  4506. "symfony/routing": "^4.4|^5.0|^6.0",
  4507. "symfony/stopwatch": "^4.4|^5.0|^6.0",
  4508. "symfony/translation": "^4.4|^5.0|^6.0",
  4509. "symfony/translation-contracts": "^1.1|^2|^3",
  4510. "twig/twig": "^2.13|^3.0.4"
  4511. },
  4512. "suggest": {
  4513. "symfony/browser-kit": "",
  4514. "symfony/config": "",
  4515. "symfony/console": "",
  4516. "symfony/dependency-injection": ""
  4517. },
  4518. "type": "library",
  4519. "autoload": {
  4520. "psr-4": {
  4521. "Symfony\\Component\\HttpKernel\\": ""
  4522. },
  4523. "exclude-from-classmap": [
  4524. "/Tests/"
  4525. ]
  4526. },
  4527. "notification-url": "https://packagist.org/downloads/",
  4528. "license": [
  4529. "MIT"
  4530. ],
  4531. "authors": [
  4532. {
  4533. "name": "Fabien Potencier",
  4534. "email": "fabien@symfony.com"
  4535. },
  4536. {
  4537. "name": "Symfony Community",
  4538. "homepage": "https://symfony.com/contributors"
  4539. }
  4540. ],
  4541. "description": "Provides a structured process for converting a Request into a Response",
  4542. "homepage": "https://symfony.com",
  4543. "support": {
  4544. "source": "https://github.com/symfony/http-kernel/tree/v5.4.13"
  4545. },
  4546. "funding": [
  4547. {
  4548. "url": "https://symfony.com/sponsor",
  4549. "type": "custom"
  4550. },
  4551. {
  4552. "url": "https://github.com/fabpot",
  4553. "type": "github"
  4554. },
  4555. {
  4556. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4557. "type": "tidelift"
  4558. }
  4559. ],
  4560. "time": "2022-09-30T07:40:28+00:00"
  4561. },
  4562. {
  4563. "name": "symfony/mailer",
  4564. "version": "v5.4.13",
  4565. "source": {
  4566. "type": "git",
  4567. "url": "https://github.com/symfony/mailer.git",
  4568. "reference": "63bf36a5150ac0bfed1c4d0a4e0b114a57b77e11"
  4569. },
  4570. "dist": {
  4571. "type": "zip",
  4572. "url": "https://api.github.com/repos/symfony/mailer/zipball/63bf36a5150ac0bfed1c4d0a4e0b114a57b77e11",
  4573. "reference": "63bf36a5150ac0bfed1c4d0a4e0b114a57b77e11",
  4574. "shasum": ""
  4575. },
  4576. "require": {
  4577. "egulias/email-validator": "^2.1.10|^3",
  4578. "php": ">=7.2.5",
  4579. "psr/event-dispatcher": "^1",
  4580. "psr/log": "^1|^2|^3",
  4581. "symfony/deprecation-contracts": "^2.1|^3",
  4582. "symfony/event-dispatcher": "^4.4|^5.0|^6.0",
  4583. "symfony/mime": "^5.2.6|^6.0",
  4584. "symfony/polyfill-php80": "^1.16",
  4585. "symfony/service-contracts": "^1.1|^2|^3"
  4586. },
  4587. "conflict": {
  4588. "symfony/http-kernel": "<4.4"
  4589. },
  4590. "require-dev": {
  4591. "symfony/http-client-contracts": "^1.1|^2|^3",
  4592. "symfony/messenger": "^4.4|^5.0|^6.0"
  4593. },
  4594. "type": "library",
  4595. "autoload": {
  4596. "psr-4": {
  4597. "Symfony\\Component\\Mailer\\": ""
  4598. },
  4599. "exclude-from-classmap": [
  4600. "/Tests/"
  4601. ]
  4602. },
  4603. "notification-url": "https://packagist.org/downloads/",
  4604. "license": [
  4605. "MIT"
  4606. ],
  4607. "authors": [
  4608. {
  4609. "name": "Fabien Potencier",
  4610. "email": "fabien@symfony.com"
  4611. },
  4612. {
  4613. "name": "Symfony Community",
  4614. "homepage": "https://symfony.com/contributors"
  4615. }
  4616. ],
  4617. "description": "Helps sending emails",
  4618. "homepage": "https://symfony.com",
  4619. "support": {
  4620. "source": "https://github.com/symfony/mailer/tree/v5.4.13"
  4621. },
  4622. "funding": [
  4623. {
  4624. "url": "https://symfony.com/sponsor",
  4625. "type": "custom"
  4626. },
  4627. {
  4628. "url": "https://github.com/fabpot",
  4629. "type": "github"
  4630. },
  4631. {
  4632. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4633. "type": "tidelift"
  4634. }
  4635. ],
  4636. "time": "2022-08-29T06:47:07+00:00"
  4637. },
  4638. {
  4639. "name": "symfony/mime",
  4640. "version": "v5.4.13",
  4641. "source": {
  4642. "type": "git",
  4643. "url": "https://github.com/symfony/mime.git",
  4644. "reference": "bb2ccf759e2b967dcd11bdee5bdf30dddd2290bd"
  4645. },
  4646. "dist": {
  4647. "type": "zip",
  4648. "url": "https://api.github.com/repos/symfony/mime/zipball/bb2ccf759e2b967dcd11bdee5bdf30dddd2290bd",
  4649. "reference": "bb2ccf759e2b967dcd11bdee5bdf30dddd2290bd",
  4650. "shasum": ""
  4651. },
  4652. "require": {
  4653. "php": ">=7.2.5",
  4654. "symfony/deprecation-contracts": "^2.1|^3",
  4655. "symfony/polyfill-intl-idn": "^1.10",
  4656. "symfony/polyfill-mbstring": "^1.0",
  4657. "symfony/polyfill-php80": "^1.16"
  4658. },
  4659. "conflict": {
  4660. "egulias/email-validator": "~3.0.0",
  4661. "phpdocumentor/reflection-docblock": "<3.2.2",
  4662. "phpdocumentor/type-resolver": "<1.4.0",
  4663. "symfony/mailer": "<4.4"
  4664. },
  4665. "require-dev": {
  4666. "egulias/email-validator": "^2.1.10|^3.1",
  4667. "phpdocumentor/reflection-docblock": "^3.0|^4.0|^5.0",
  4668. "symfony/dependency-injection": "^4.4|^5.0|^6.0",
  4669. "symfony/property-access": "^4.4|^5.1|^6.0",
  4670. "symfony/property-info": "^4.4|^5.1|^6.0",
  4671. "symfony/serializer": "^5.2|^6.0"
  4672. },
  4673. "type": "library",
  4674. "autoload": {
  4675. "psr-4": {
  4676. "Symfony\\Component\\Mime\\": ""
  4677. },
  4678. "exclude-from-classmap": [
  4679. "/Tests/"
  4680. ]
  4681. },
  4682. "notification-url": "https://packagist.org/downloads/",
  4683. "license": [
  4684. "MIT"
  4685. ],
  4686. "authors": [
  4687. {
  4688. "name": "Fabien Potencier",
  4689. "email": "fabien@symfony.com"
  4690. },
  4691. {
  4692. "name": "Symfony Community",
  4693. "homepage": "https://symfony.com/contributors"
  4694. }
  4695. ],
  4696. "description": "Allows manipulating MIME messages",
  4697. "homepage": "https://symfony.com",
  4698. "keywords": [
  4699. "mime",
  4700. "mime-type"
  4701. ],
  4702. "support": {
  4703. "source": "https://github.com/symfony/mime/tree/v5.4.13"
  4704. },
  4705. "funding": [
  4706. {
  4707. "url": "https://symfony.com/sponsor",
  4708. "type": "custom"
  4709. },
  4710. {
  4711. "url": "https://github.com/fabpot",
  4712. "type": "github"
  4713. },
  4714. {
  4715. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4716. "type": "tidelift"
  4717. }
  4718. ],
  4719. "time": "2022-09-01T18:18:29+00:00"
  4720. },
  4721. {
  4722. "name": "symfony/monolog-bridge",
  4723. "version": "v5.4.10",
  4724. "source": {
  4725. "type": "git",
  4726. "url": "https://github.com/symfony/monolog-bridge.git",
  4727. "reference": "b3b0890e76e7eb626f27b165a5c501f2754dfbbd"
  4728. },
  4729. "dist": {
  4730. "type": "zip",
  4731. "url": "https://api.github.com/repos/symfony/monolog-bridge/zipball/b3b0890e76e7eb626f27b165a5c501f2754dfbbd",
  4732. "reference": "b3b0890e76e7eb626f27b165a5c501f2754dfbbd",
  4733. "shasum": ""
  4734. },
  4735. "require": {
  4736. "monolog/monolog": "^1.25.1|^2",
  4737. "php": ">=7.2.5",
  4738. "symfony/deprecation-contracts": "^2.1|^3",
  4739. "symfony/http-kernel": "^5.3|^6.0",
  4740. "symfony/polyfill-php80": "^1.16",
  4741. "symfony/service-contracts": "^1.1|^2|^3"
  4742. },
  4743. "conflict": {
  4744. "symfony/console": "<4.4",
  4745. "symfony/http-foundation": "<5.3"
  4746. },
  4747. "require-dev": {
  4748. "symfony/console": "^4.4|^5.0|^6.0",
  4749. "symfony/http-client": "^4.4|^5.0|^6.0",
  4750. "symfony/mailer": "^4.4|^5.0|^6.0",
  4751. "symfony/messenger": "^4.4|^5.0|^6.0",
  4752. "symfony/mime": "^4.4|^5.0|^6.0",
  4753. "symfony/security-core": "^4.4|^5.0|^6.0",
  4754. "symfony/var-dumper": "^4.4|^5.0|^6.0"
  4755. },
  4756. "suggest": {
  4757. "symfony/console": "For the possibility to show log messages in console commands depending on verbosity settings.",
  4758. "symfony/http-kernel": "For using the debugging handlers together with the response life cycle of the HTTP kernel.",
  4759. "symfony/var-dumper": "For using the debugging handlers like the console handler or the log server handler."
  4760. },
  4761. "type": "symfony-bridge",
  4762. "autoload": {
  4763. "psr-4": {
  4764. "Symfony\\Bridge\\Monolog\\": ""
  4765. },
  4766. "exclude-from-classmap": [
  4767. "/Tests/"
  4768. ]
  4769. },
  4770. "notification-url": "https://packagist.org/downloads/",
  4771. "license": [
  4772. "MIT"
  4773. ],
  4774. "authors": [
  4775. {
  4776. "name": "Fabien Potencier",
  4777. "email": "fabien@symfony.com"
  4778. },
  4779. {
  4780. "name": "Symfony Community",
  4781. "homepage": "https://symfony.com/contributors"
  4782. }
  4783. ],
  4784. "description": "Provides integration for Monolog with various Symfony components",
  4785. "homepage": "https://symfony.com",
  4786. "support": {
  4787. "source": "https://github.com/symfony/monolog-bridge/tree/v5.4.10"
  4788. },
  4789. "funding": [
  4790. {
  4791. "url": "https://symfony.com/sponsor",
  4792. "type": "custom"
  4793. },
  4794. {
  4795. "url": "https://github.com/fabpot",
  4796. "type": "github"
  4797. },
  4798. {
  4799. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4800. "type": "tidelift"
  4801. }
  4802. ],
  4803. "time": "2022-06-19T12:03:50+00:00"
  4804. },
  4805. {
  4806. "name": "symfony/monolog-bundle",
  4807. "version": "v3.8.0",
  4808. "source": {
  4809. "type": "git",
  4810. "url": "https://github.com/symfony/monolog-bundle.git",
  4811. "reference": "a41bbcdc1105603b6d73a7d9a43a3788f8e0fb7d"
  4812. },
  4813. "dist": {
  4814. "type": "zip",
  4815. "url": "https://api.github.com/repos/symfony/monolog-bundle/zipball/a41bbcdc1105603b6d73a7d9a43a3788f8e0fb7d",
  4816. "reference": "a41bbcdc1105603b6d73a7d9a43a3788f8e0fb7d",
  4817. "shasum": ""
  4818. },
  4819. "require": {
  4820. "monolog/monolog": "^1.22 || ^2.0 || ^3.0",
  4821. "php": ">=7.1.3",
  4822. "symfony/config": "~4.4 || ^5.0 || ^6.0",
  4823. "symfony/dependency-injection": "^4.4 || ^5.0 || ^6.0",
  4824. "symfony/http-kernel": "~4.4 || ^5.0 || ^6.0",
  4825. "symfony/monolog-bridge": "~4.4 || ^5.0 || ^6.0"
  4826. },
  4827. "require-dev": {
  4828. "symfony/console": "~4.4 || ^5.0 || ^6.0",
  4829. "symfony/phpunit-bridge": "^5.2 || ^6.0",
  4830. "symfony/yaml": "~4.4 || ^5.0 || ^6.0"
  4831. },
  4832. "type": "symfony-bundle",
  4833. "extra": {
  4834. "branch-alias": {
  4835. "dev-master": "3.x-dev"
  4836. }
  4837. },
  4838. "autoload": {
  4839. "psr-4": {
  4840. "Symfony\\Bundle\\MonologBundle\\": ""
  4841. },
  4842. "exclude-from-classmap": [
  4843. "/Tests/"
  4844. ]
  4845. },
  4846. "notification-url": "https://packagist.org/downloads/",
  4847. "license": [
  4848. "MIT"
  4849. ],
  4850. "authors": [
  4851. {
  4852. "name": "Fabien Potencier",
  4853. "email": "fabien@symfony.com"
  4854. },
  4855. {
  4856. "name": "Symfony Community",
  4857. "homepage": "https://symfony.com/contributors"
  4858. }
  4859. ],
  4860. "description": "Symfony MonologBundle",
  4861. "homepage": "https://symfony.com",
  4862. "keywords": [
  4863. "log",
  4864. "logging"
  4865. ],
  4866. "support": {
  4867. "issues": "https://github.com/symfony/monolog-bundle/issues",
  4868. "source": "https://github.com/symfony/monolog-bundle/tree/v3.8.0"
  4869. },
  4870. "funding": [
  4871. {
  4872. "url": "https://symfony.com/sponsor",
  4873. "type": "custom"
  4874. },
  4875. {
  4876. "url": "https://github.com/fabpot",
  4877. "type": "github"
  4878. },
  4879. {
  4880. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4881. "type": "tidelift"
  4882. }
  4883. ],
  4884. "time": "2022-05-10T14:24:36+00:00"
  4885. },
  4886. {
  4887. "name": "symfony/options-resolver",
  4888. "version": "v5.4.11",
  4889. "source": {
  4890. "type": "git",
  4891. "url": "https://github.com/symfony/options-resolver.git",
  4892. "reference": "54f14e36aa73cb8f7261d7686691fd4d75ea2690"
  4893. },
  4894. "dist": {
  4895. "type": "zip",
  4896. "url": "https://api.github.com/repos/symfony/options-resolver/zipball/54f14e36aa73cb8f7261d7686691fd4d75ea2690",
  4897. "reference": "54f14e36aa73cb8f7261d7686691fd4d75ea2690",
  4898. "shasum": ""
  4899. },
  4900. "require": {
  4901. "php": ">=7.2.5",
  4902. "symfony/deprecation-contracts": "^2.1|^3",
  4903. "symfony/polyfill-php73": "~1.0",
  4904. "symfony/polyfill-php80": "^1.16"
  4905. },
  4906. "type": "library",
  4907. "autoload": {
  4908. "psr-4": {
  4909. "Symfony\\Component\\OptionsResolver\\": ""
  4910. },
  4911. "exclude-from-classmap": [
  4912. "/Tests/"
  4913. ]
  4914. },
  4915. "notification-url": "https://packagist.org/downloads/",
  4916. "license": [
  4917. "MIT"
  4918. ],
  4919. "authors": [
  4920. {
  4921. "name": "Fabien Potencier",
  4922. "email": "fabien@symfony.com"
  4923. },
  4924. {
  4925. "name": "Symfony Community",
  4926. "homepage": "https://symfony.com/contributors"
  4927. }
  4928. ],
  4929. "description": "Provides an improved replacement for the array_replace PHP function",
  4930. "homepage": "https://symfony.com",
  4931. "keywords": [
  4932. "config",
  4933. "configuration",
  4934. "options"
  4935. ],
  4936. "support": {
  4937. "source": "https://github.com/symfony/options-resolver/tree/v5.4.11"
  4938. },
  4939. "funding": [
  4940. {
  4941. "url": "https://symfony.com/sponsor",
  4942. "type": "custom"
  4943. },
  4944. {
  4945. "url": "https://github.com/fabpot",
  4946. "type": "github"
  4947. },
  4948. {
  4949. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4950. "type": "tidelift"
  4951. }
  4952. ],
  4953. "time": "2022-07-20T13:00:38+00:00"
  4954. },
  4955. {
  4956. "name": "symfony/password-hasher",
  4957. "version": "v5.4.11",
  4958. "source": {
  4959. "type": "git",
  4960. "url": "https://github.com/symfony/password-hasher.git",
  4961. "reference": "b0169ed8f09a4ae39eb119218ea1685079a9b179"
  4962. },
  4963. "dist": {
  4964. "type": "zip",
  4965. "url": "https://api.github.com/repos/symfony/password-hasher/zipball/b0169ed8f09a4ae39eb119218ea1685079a9b179",
  4966. "reference": "b0169ed8f09a4ae39eb119218ea1685079a9b179",
  4967. "shasum": ""
  4968. },
  4969. "require": {
  4970. "php": ">=7.2.5",
  4971. "symfony/polyfill-php80": "^1.15"
  4972. },
  4973. "conflict": {
  4974. "symfony/security-core": "<5.3"
  4975. },
  4976. "require-dev": {
  4977. "symfony/console": "^5.3|^6.0",
  4978. "symfony/security-core": "^5.3|^6.0"
  4979. },
  4980. "type": "library",
  4981. "autoload": {
  4982. "psr-4": {
  4983. "Symfony\\Component\\PasswordHasher\\": ""
  4984. },
  4985. "exclude-from-classmap": [
  4986. "/Tests/"
  4987. ]
  4988. },
  4989. "notification-url": "https://packagist.org/downloads/",
  4990. "license": [
  4991. "MIT"
  4992. ],
  4993. "authors": [
  4994. {
  4995. "name": "Robin Chalas",
  4996. "email": "robin.chalas@gmail.com"
  4997. },
  4998. {
  4999. "name": "Symfony Community",
  5000. "homepage": "https://symfony.com/contributors"
  5001. }
  5002. ],
  5003. "description": "Provides password hashing utilities",
  5004. "homepage": "https://symfony.com",
  5005. "keywords": [
  5006. "hashing",
  5007. "password"
  5008. ],
  5009. "support": {
  5010. "source": "https://github.com/symfony/password-hasher/tree/v5.4.11"
  5011. },
  5012. "funding": [
  5013. {
  5014. "url": "https://symfony.com/sponsor",
  5015. "type": "custom"
  5016. },
  5017. {
  5018. "url": "https://github.com/fabpot",
  5019. "type": "github"
  5020. },
  5021. {
  5022. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5023. "type": "tidelift"
  5024. }
  5025. ],
  5026. "time": "2022-07-20T13:00:38+00:00"
  5027. },
  5028. {
  5029. "name": "symfony/polyfill-intl-grapheme",
  5030. "version": "v1.26.0",
  5031. "source": {
  5032. "type": "git",
  5033. "url": "https://github.com/symfony/polyfill-intl-grapheme.git",
  5034. "reference": "433d05519ce6990bf3530fba6957499d327395c2"
  5035. },
  5036. "dist": {
  5037. "type": "zip",
  5038. "url": "https://api.github.com/repos/symfony/polyfill-intl-grapheme/zipball/433d05519ce6990bf3530fba6957499d327395c2",
  5039. "reference": "433d05519ce6990bf3530fba6957499d327395c2",
  5040. "shasum": ""
  5041. },
  5042. "require": {
  5043. "php": ">=7.1"
  5044. },
  5045. "suggest": {
  5046. "ext-intl": "For best performance"
  5047. },
  5048. "type": "library",
  5049. "extra": {
  5050. "branch-alias": {
  5051. "dev-main": "1.26-dev"
  5052. },
  5053. "thanks": {
  5054. "name": "symfony/polyfill",
  5055. "url": "https://github.com/symfony/polyfill"
  5056. }
  5057. },
  5058. "autoload": {
  5059. "files": [
  5060. "bootstrap.php"
  5061. ],
  5062. "psr-4": {
  5063. "Symfony\\Polyfill\\Intl\\Grapheme\\": ""
  5064. }
  5065. },
  5066. "notification-url": "https://packagist.org/downloads/",
  5067. "license": [
  5068. "MIT"
  5069. ],
  5070. "authors": [
  5071. {
  5072. "name": "Nicolas Grekas",
  5073. "email": "p@tchwork.com"
  5074. },
  5075. {
  5076. "name": "Symfony Community",
  5077. "homepage": "https://symfony.com/contributors"
  5078. }
  5079. ],
  5080. "description": "Symfony polyfill for intl's grapheme_* functions",
  5081. "homepage": "https://symfony.com",
  5082. "keywords": [
  5083. "compatibility",
  5084. "grapheme",
  5085. "intl",
  5086. "polyfill",
  5087. "portable",
  5088. "shim"
  5089. ],
  5090. "support": {
  5091. "source": "https://github.com/symfony/polyfill-intl-grapheme/tree/v1.26.0"
  5092. },
  5093. "funding": [
  5094. {
  5095. "url": "https://symfony.com/sponsor",
  5096. "type": "custom"
  5097. },
  5098. {
  5099. "url": "https://github.com/fabpot",
  5100. "type": "github"
  5101. },
  5102. {
  5103. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5104. "type": "tidelift"
  5105. }
  5106. ],
  5107. "time": "2022-05-24T11:49:31+00:00"
  5108. },
  5109. {
  5110. "name": "symfony/polyfill-intl-icu",
  5111. "version": "v1.26.0",
  5112. "source": {
  5113. "type": "git",
  5114. "url": "https://github.com/symfony/polyfill-intl-icu.git",
  5115. "reference": "e407643d610e5f2c8a4b14189150f68934bf5e48"
  5116. },
  5117. "dist": {
  5118. "type": "zip",
  5119. "url": "https://api.github.com/repos/symfony/polyfill-intl-icu/zipball/e407643d610e5f2c8a4b14189150f68934bf5e48",
  5120. "reference": "e407643d610e5f2c8a4b14189150f68934bf5e48",
  5121. "shasum": ""
  5122. },
  5123. "require": {
  5124. "php": ">=7.1"
  5125. },
  5126. "suggest": {
  5127. "ext-intl": "For best performance and support of other locales than \"en\""
  5128. },
  5129. "type": "library",
  5130. "extra": {
  5131. "branch-alias": {
  5132. "dev-main": "1.26-dev"
  5133. },
  5134. "thanks": {
  5135. "name": "symfony/polyfill",
  5136. "url": "https://github.com/symfony/polyfill"
  5137. }
  5138. },
  5139. "autoload": {
  5140. "files": [
  5141. "bootstrap.php"
  5142. ],
  5143. "psr-4": {
  5144. "Symfony\\Polyfill\\Intl\\Icu\\": ""
  5145. },
  5146. "classmap": [
  5147. "Resources/stubs"
  5148. ],
  5149. "exclude-from-classmap": [
  5150. "/Tests/"
  5151. ]
  5152. },
  5153. "notification-url": "https://packagist.org/downloads/",
  5154. "license": [
  5155. "MIT"
  5156. ],
  5157. "authors": [
  5158. {
  5159. "name": "Nicolas Grekas",
  5160. "email": "p@tchwork.com"
  5161. },
  5162. {
  5163. "name": "Symfony Community",
  5164. "homepage": "https://symfony.com/contributors"
  5165. }
  5166. ],
  5167. "description": "Symfony polyfill for intl's ICU-related data and classes",
  5168. "homepage": "https://symfony.com",
  5169. "keywords": [
  5170. "compatibility",
  5171. "icu",
  5172. "intl",
  5173. "polyfill",
  5174. "portable",
  5175. "shim"
  5176. ],
  5177. "support": {
  5178. "source": "https://github.com/symfony/polyfill-intl-icu/tree/v1.26.0"
  5179. },
  5180. "funding": [
  5181. {
  5182. "url": "https://symfony.com/sponsor",
  5183. "type": "custom"
  5184. },
  5185. {
  5186. "url": "https://github.com/fabpot",
  5187. "type": "github"
  5188. },
  5189. {
  5190. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5191. "type": "tidelift"
  5192. }
  5193. ],
  5194. "time": "2022-05-24T11:49:31+00:00"
  5195. },
  5196. {
  5197. "name": "symfony/polyfill-intl-idn",
  5198. "version": "v1.26.0",
  5199. "source": {
  5200. "type": "git",
  5201. "url": "https://github.com/symfony/polyfill-intl-idn.git",
  5202. "reference": "59a8d271f00dd0e4c2e518104cc7963f655a1aa8"
  5203. },
  5204. "dist": {
  5205. "type": "zip",
  5206. "url": "https://api.github.com/repos/symfony/polyfill-intl-idn/zipball/59a8d271f00dd0e4c2e518104cc7963f655a1aa8",
  5207. "reference": "59a8d271f00dd0e4c2e518104cc7963f655a1aa8",
  5208. "shasum": ""
  5209. },
  5210. "require": {
  5211. "php": ">=7.1",
  5212. "symfony/polyfill-intl-normalizer": "^1.10",
  5213. "symfony/polyfill-php72": "^1.10"
  5214. },
  5215. "suggest": {
  5216. "ext-intl": "For best performance"
  5217. },
  5218. "type": "library",
  5219. "extra": {
  5220. "branch-alias": {
  5221. "dev-main": "1.26-dev"
  5222. },
  5223. "thanks": {
  5224. "name": "symfony/polyfill",
  5225. "url": "https://github.com/symfony/polyfill"
  5226. }
  5227. },
  5228. "autoload": {
  5229. "files": [
  5230. "bootstrap.php"
  5231. ],
  5232. "psr-4": {
  5233. "Symfony\\Polyfill\\Intl\\Idn\\": ""
  5234. }
  5235. },
  5236. "notification-url": "https://packagist.org/downloads/",
  5237. "license": [
  5238. "MIT"
  5239. ],
  5240. "authors": [
  5241. {
  5242. "name": "Laurent Bassin",
  5243. "email": "laurent@bassin.info"
  5244. },
  5245. {
  5246. "name": "Trevor Rowbotham",
  5247. "email": "trevor.rowbotham@pm.me"
  5248. },
  5249. {
  5250. "name": "Symfony Community",
  5251. "homepage": "https://symfony.com/contributors"
  5252. }
  5253. ],
  5254. "description": "Symfony polyfill for intl's idn_to_ascii and idn_to_utf8 functions",
  5255. "homepage": "https://symfony.com",
  5256. "keywords": [
  5257. "compatibility",
  5258. "idn",
  5259. "intl",
  5260. "polyfill",
  5261. "portable",
  5262. "shim"
  5263. ],
  5264. "support": {
  5265. "source": "https://github.com/symfony/polyfill-intl-idn/tree/v1.26.0"
  5266. },
  5267. "funding": [
  5268. {
  5269. "url": "https://symfony.com/sponsor",
  5270. "type": "custom"
  5271. },
  5272. {
  5273. "url": "https://github.com/fabpot",
  5274. "type": "github"
  5275. },
  5276. {
  5277. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5278. "type": "tidelift"
  5279. }
  5280. ],
  5281. "time": "2022-05-24T11:49:31+00:00"
  5282. },
  5283. {
  5284. "name": "symfony/polyfill-intl-normalizer",
  5285. "version": "v1.26.0",
  5286. "source": {
  5287. "type": "git",
  5288. "url": "https://github.com/symfony/polyfill-intl-normalizer.git",
  5289. "reference": "219aa369ceff116e673852dce47c3a41794c14bd"
  5290. },
  5291. "dist": {
  5292. "type": "zip",
  5293. "url": "https://api.github.com/repos/symfony/polyfill-intl-normalizer/zipball/219aa369ceff116e673852dce47c3a41794c14bd",
  5294. "reference": "219aa369ceff116e673852dce47c3a41794c14bd",
  5295. "shasum": ""
  5296. },
  5297. "require": {
  5298. "php": ">=7.1"
  5299. },
  5300. "suggest": {
  5301. "ext-intl": "For best performance"
  5302. },
  5303. "type": "library",
  5304. "extra": {
  5305. "branch-alias": {
  5306. "dev-main": "1.26-dev"
  5307. },
  5308. "thanks": {
  5309. "name": "symfony/polyfill",
  5310. "url": "https://github.com/symfony/polyfill"
  5311. }
  5312. },
  5313. "autoload": {
  5314. "files": [
  5315. "bootstrap.php"
  5316. ],
  5317. "psr-4": {
  5318. "Symfony\\Polyfill\\Intl\\Normalizer\\": ""
  5319. },
  5320. "classmap": [
  5321. "Resources/stubs"
  5322. ]
  5323. },
  5324. "notification-url": "https://packagist.org/downloads/",
  5325. "license": [
  5326. "MIT"
  5327. ],
  5328. "authors": [
  5329. {
  5330. "name": "Nicolas Grekas",
  5331. "email": "p@tchwork.com"
  5332. },
  5333. {
  5334. "name": "Symfony Community",
  5335. "homepage": "https://symfony.com/contributors"
  5336. }
  5337. ],
  5338. "description": "Symfony polyfill for intl's Normalizer class and related functions",
  5339. "homepage": "https://symfony.com",
  5340. "keywords": [
  5341. "compatibility",
  5342. "intl",
  5343. "normalizer",
  5344. "polyfill",
  5345. "portable",
  5346. "shim"
  5347. ],
  5348. "support": {
  5349. "source": "https://github.com/symfony/polyfill-intl-normalizer/tree/v1.26.0"
  5350. },
  5351. "funding": [
  5352. {
  5353. "url": "https://symfony.com/sponsor",
  5354. "type": "custom"
  5355. },
  5356. {
  5357. "url": "https://github.com/fabpot",
  5358. "type": "github"
  5359. },
  5360. {
  5361. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5362. "type": "tidelift"
  5363. }
  5364. ],
  5365. "time": "2022-05-24T11:49:31+00:00"
  5366. },
  5367. {
  5368. "name": "symfony/polyfill-mbstring",
  5369. "version": "v1.26.0",
  5370. "source": {
  5371. "type": "git",
  5372. "url": "https://github.com/symfony/polyfill-mbstring.git",
  5373. "reference": "9344f9cb97f3b19424af1a21a3b0e75b0a7d8d7e"
  5374. },
  5375. "dist": {
  5376. "type": "zip",
  5377. "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/9344f9cb97f3b19424af1a21a3b0e75b0a7d8d7e",
  5378. "reference": "9344f9cb97f3b19424af1a21a3b0e75b0a7d8d7e",
  5379. "shasum": ""
  5380. },
  5381. "require": {
  5382. "php": ">=7.1"
  5383. },
  5384. "provide": {
  5385. "ext-mbstring": "*"
  5386. },
  5387. "suggest": {
  5388. "ext-mbstring": "For best performance"
  5389. },
  5390. "type": "library",
  5391. "extra": {
  5392. "branch-alias": {
  5393. "dev-main": "1.26-dev"
  5394. },
  5395. "thanks": {
  5396. "name": "symfony/polyfill",
  5397. "url": "https://github.com/symfony/polyfill"
  5398. }
  5399. },
  5400. "autoload": {
  5401. "files": [
  5402. "bootstrap.php"
  5403. ],
  5404. "psr-4": {
  5405. "Symfony\\Polyfill\\Mbstring\\": ""
  5406. }
  5407. },
  5408. "notification-url": "https://packagist.org/downloads/",
  5409. "license": [
  5410. "MIT"
  5411. ],
  5412. "authors": [
  5413. {
  5414. "name": "Nicolas Grekas",
  5415. "email": "p@tchwork.com"
  5416. },
  5417. {
  5418. "name": "Symfony Community",
  5419. "homepage": "https://symfony.com/contributors"
  5420. }
  5421. ],
  5422. "description": "Symfony polyfill for the Mbstring extension",
  5423. "homepage": "https://symfony.com",
  5424. "keywords": [
  5425. "compatibility",
  5426. "mbstring",
  5427. "polyfill",
  5428. "portable",
  5429. "shim"
  5430. ],
  5431. "support": {
  5432. "source": "https://github.com/symfony/polyfill-mbstring/tree/v1.26.0"
  5433. },
  5434. "funding": [
  5435. {
  5436. "url": "https://symfony.com/sponsor",
  5437. "type": "custom"
  5438. },
  5439. {
  5440. "url": "https://github.com/fabpot",
  5441. "type": "github"
  5442. },
  5443. {
  5444. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5445. "type": "tidelift"
  5446. }
  5447. ],
  5448. "time": "2022-05-24T11:49:31+00:00"
  5449. },
  5450. {
  5451. "name": "symfony/polyfill-php72",
  5452. "version": "v1.26.0",
  5453. "source": {
  5454. "type": "git",
  5455. "url": "https://github.com/symfony/polyfill-php72.git",
  5456. "reference": "bf44a9fd41feaac72b074de600314a93e2ae78e2"
  5457. },
  5458. "dist": {
  5459. "type": "zip",
  5460. "url": "https://api.github.com/repos/symfony/polyfill-php72/zipball/bf44a9fd41feaac72b074de600314a93e2ae78e2",
  5461. "reference": "bf44a9fd41feaac72b074de600314a93e2ae78e2",
  5462. "shasum": ""
  5463. },
  5464. "require": {
  5465. "php": ">=7.1"
  5466. },
  5467. "type": "library",
  5468. "extra": {
  5469. "branch-alias": {
  5470. "dev-main": "1.26-dev"
  5471. },
  5472. "thanks": {
  5473. "name": "symfony/polyfill",
  5474. "url": "https://github.com/symfony/polyfill"
  5475. }
  5476. },
  5477. "autoload": {
  5478. "files": [
  5479. "bootstrap.php"
  5480. ],
  5481. "psr-4": {
  5482. "Symfony\\Polyfill\\Php72\\": ""
  5483. }
  5484. },
  5485. "notification-url": "https://packagist.org/downloads/",
  5486. "license": [
  5487. "MIT"
  5488. ],
  5489. "authors": [
  5490. {
  5491. "name": "Nicolas Grekas",
  5492. "email": "p@tchwork.com"
  5493. },
  5494. {
  5495. "name": "Symfony Community",
  5496. "homepage": "https://symfony.com/contributors"
  5497. }
  5498. ],
  5499. "description": "Symfony polyfill backporting some PHP 7.2+ features to lower PHP versions",
  5500. "homepage": "https://symfony.com",
  5501. "keywords": [
  5502. "compatibility",
  5503. "polyfill",
  5504. "portable",
  5505. "shim"
  5506. ],
  5507. "support": {
  5508. "source": "https://github.com/symfony/polyfill-php72/tree/v1.26.0"
  5509. },
  5510. "funding": [
  5511. {
  5512. "url": "https://symfony.com/sponsor",
  5513. "type": "custom"
  5514. },
  5515. {
  5516. "url": "https://github.com/fabpot",
  5517. "type": "github"
  5518. },
  5519. {
  5520. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5521. "type": "tidelift"
  5522. }
  5523. ],
  5524. "time": "2022-05-24T11:49:31+00:00"
  5525. },
  5526. {
  5527. "name": "symfony/polyfill-php73",
  5528. "version": "v1.26.0",
  5529. "source": {
  5530. "type": "git",
  5531. "url": "https://github.com/symfony/polyfill-php73.git",
  5532. "reference": "e440d35fa0286f77fb45b79a03fedbeda9307e85"
  5533. },
  5534. "dist": {
  5535. "type": "zip",
  5536. "url": "https://api.github.com/repos/symfony/polyfill-php73/zipball/e440d35fa0286f77fb45b79a03fedbeda9307e85",
  5537. "reference": "e440d35fa0286f77fb45b79a03fedbeda9307e85",
  5538. "shasum": ""
  5539. },
  5540. "require": {
  5541. "php": ">=7.1"
  5542. },
  5543. "type": "library",
  5544. "extra": {
  5545. "branch-alias": {
  5546. "dev-main": "1.26-dev"
  5547. },
  5548. "thanks": {
  5549. "name": "symfony/polyfill",
  5550. "url": "https://github.com/symfony/polyfill"
  5551. }
  5552. },
  5553. "autoload": {
  5554. "files": [
  5555. "bootstrap.php"
  5556. ],
  5557. "psr-4": {
  5558. "Symfony\\Polyfill\\Php73\\": ""
  5559. },
  5560. "classmap": [
  5561. "Resources/stubs"
  5562. ]
  5563. },
  5564. "notification-url": "https://packagist.org/downloads/",
  5565. "license": [
  5566. "MIT"
  5567. ],
  5568. "authors": [
  5569. {
  5570. "name": "Nicolas Grekas",
  5571. "email": "p@tchwork.com"
  5572. },
  5573. {
  5574. "name": "Symfony Community",
  5575. "homepage": "https://symfony.com/contributors"
  5576. }
  5577. ],
  5578. "description": "Symfony polyfill backporting some PHP 7.3+ features to lower PHP versions",
  5579. "homepage": "https://symfony.com",
  5580. "keywords": [
  5581. "compatibility",
  5582. "polyfill",
  5583. "portable",
  5584. "shim"
  5585. ],
  5586. "support": {
  5587. "source": "https://github.com/symfony/polyfill-php73/tree/v1.26.0"
  5588. },
  5589. "funding": [
  5590. {
  5591. "url": "https://symfony.com/sponsor",
  5592. "type": "custom"
  5593. },
  5594. {
  5595. "url": "https://github.com/fabpot",
  5596. "type": "github"
  5597. },
  5598. {
  5599. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5600. "type": "tidelift"
  5601. }
  5602. ],
  5603. "time": "2022-05-24T11:49:31+00:00"
  5604. },
  5605. {
  5606. "name": "symfony/polyfill-php80",
  5607. "version": "v1.26.0",
  5608. "source": {
  5609. "type": "git",
  5610. "url": "https://github.com/symfony/polyfill-php80.git",
  5611. "reference": "cfa0ae98841b9e461207c13ab093d76b0fa7bace"
  5612. },
  5613. "dist": {
  5614. "type": "zip",
  5615. "url": "https://api.github.com/repos/symfony/polyfill-php80/zipball/cfa0ae98841b9e461207c13ab093d76b0fa7bace",
  5616. "reference": "cfa0ae98841b9e461207c13ab093d76b0fa7bace",
  5617. "shasum": ""
  5618. },
  5619. "require": {
  5620. "php": ">=7.1"
  5621. },
  5622. "type": "library",
  5623. "extra": {
  5624. "branch-alias": {
  5625. "dev-main": "1.26-dev"
  5626. },
  5627. "thanks": {
  5628. "name": "symfony/polyfill",
  5629. "url": "https://github.com/symfony/polyfill"
  5630. }
  5631. },
  5632. "autoload": {
  5633. "files": [
  5634. "bootstrap.php"
  5635. ],
  5636. "psr-4": {
  5637. "Symfony\\Polyfill\\Php80\\": ""
  5638. },
  5639. "classmap": [
  5640. "Resources/stubs"
  5641. ]
  5642. },
  5643. "notification-url": "https://packagist.org/downloads/",
  5644. "license": [
  5645. "MIT"
  5646. ],
  5647. "authors": [
  5648. {
  5649. "name": "Ion Bazan",
  5650. "email": "ion.bazan@gmail.com"
  5651. },
  5652. {
  5653. "name": "Nicolas Grekas",
  5654. "email": "p@tchwork.com"
  5655. },
  5656. {
  5657. "name": "Symfony Community",
  5658. "homepage": "https://symfony.com/contributors"
  5659. }
  5660. ],
  5661. "description": "Symfony polyfill backporting some PHP 8.0+ features to lower PHP versions",
  5662. "homepage": "https://symfony.com",
  5663. "keywords": [
  5664. "compatibility",
  5665. "polyfill",
  5666. "portable",
  5667. "shim"
  5668. ],
  5669. "support": {
  5670. "source": "https://github.com/symfony/polyfill-php80/tree/v1.26.0"
  5671. },
  5672. "funding": [
  5673. {
  5674. "url": "https://symfony.com/sponsor",
  5675. "type": "custom"
  5676. },
  5677. {
  5678. "url": "https://github.com/fabpot",
  5679. "type": "github"
  5680. },
  5681. {
  5682. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5683. "type": "tidelift"
  5684. }
  5685. ],
  5686. "time": "2022-05-10T07:21:04+00:00"
  5687. },
  5688. {
  5689. "name": "symfony/polyfill-php81",
  5690. "version": "v1.26.0",
  5691. "source": {
  5692. "type": "git",
  5693. "url": "https://github.com/symfony/polyfill-php81.git",
  5694. "reference": "13f6d1271c663dc5ae9fb843a8f16521db7687a1"
  5695. },
  5696. "dist": {
  5697. "type": "zip",
  5698. "url": "https://api.github.com/repos/symfony/polyfill-php81/zipball/13f6d1271c663dc5ae9fb843a8f16521db7687a1",
  5699. "reference": "13f6d1271c663dc5ae9fb843a8f16521db7687a1",
  5700. "shasum": ""
  5701. },
  5702. "require": {
  5703. "php": ">=7.1"
  5704. },
  5705. "type": "library",
  5706. "extra": {
  5707. "branch-alias": {
  5708. "dev-main": "1.26-dev"
  5709. },
  5710. "thanks": {
  5711. "name": "symfony/polyfill",
  5712. "url": "https://github.com/symfony/polyfill"
  5713. }
  5714. },
  5715. "autoload": {
  5716. "files": [
  5717. "bootstrap.php"
  5718. ],
  5719. "psr-4": {
  5720. "Symfony\\Polyfill\\Php81\\": ""
  5721. },
  5722. "classmap": [
  5723. "Resources/stubs"
  5724. ]
  5725. },
  5726. "notification-url": "https://packagist.org/downloads/",
  5727. "license": [
  5728. "MIT"
  5729. ],
  5730. "authors": [
  5731. {
  5732. "name": "Nicolas Grekas",
  5733. "email": "p@tchwork.com"
  5734. },
  5735. {
  5736. "name": "Symfony Community",
  5737. "homepage": "https://symfony.com/contributors"
  5738. }
  5739. ],
  5740. "description": "Symfony polyfill backporting some PHP 8.1+ features to lower PHP versions",
  5741. "homepage": "https://symfony.com",
  5742. "keywords": [
  5743. "compatibility",
  5744. "polyfill",
  5745. "portable",
  5746. "shim"
  5747. ],
  5748. "support": {
  5749. "source": "https://github.com/symfony/polyfill-php81/tree/v1.26.0"
  5750. },
  5751. "funding": [
  5752. {
  5753. "url": "https://symfony.com/sponsor",
  5754. "type": "custom"
  5755. },
  5756. {
  5757. "url": "https://github.com/fabpot",
  5758. "type": "github"
  5759. },
  5760. {
  5761. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5762. "type": "tidelift"
  5763. }
  5764. ],
  5765. "time": "2022-05-24T11:49:31+00:00"
  5766. },
  5767. {
  5768. "name": "symfony/process",
  5769. "version": "v5.4.11",
  5770. "source": {
  5771. "type": "git",
  5772. "url": "https://github.com/symfony/process.git",
  5773. "reference": "6e75fe6874cbc7e4773d049616ab450eff537bf1"
  5774. },
  5775. "dist": {
  5776. "type": "zip",
  5777. "url": "https://api.github.com/repos/symfony/process/zipball/6e75fe6874cbc7e4773d049616ab450eff537bf1",
  5778. "reference": "6e75fe6874cbc7e4773d049616ab450eff537bf1",
  5779. "shasum": ""
  5780. },
  5781. "require": {
  5782. "php": ">=7.2.5",
  5783. "symfony/polyfill-php80": "^1.16"
  5784. },
  5785. "type": "library",
  5786. "autoload": {
  5787. "psr-4": {
  5788. "Symfony\\Component\\Process\\": ""
  5789. },
  5790. "exclude-from-classmap": [
  5791. "/Tests/"
  5792. ]
  5793. },
  5794. "notification-url": "https://packagist.org/downloads/",
  5795. "license": [
  5796. "MIT"
  5797. ],
  5798. "authors": [
  5799. {
  5800. "name": "Fabien Potencier",
  5801. "email": "fabien@symfony.com"
  5802. },
  5803. {
  5804. "name": "Symfony Community",
  5805. "homepage": "https://symfony.com/contributors"
  5806. }
  5807. ],
  5808. "description": "Executes commands in sub-processes",
  5809. "homepage": "https://symfony.com",
  5810. "support": {
  5811. "source": "https://github.com/symfony/process/tree/v5.4.11"
  5812. },
  5813. "funding": [
  5814. {
  5815. "url": "https://symfony.com/sponsor",
  5816. "type": "custom"
  5817. },
  5818. {
  5819. "url": "https://github.com/fabpot",
  5820. "type": "github"
  5821. },
  5822. {
  5823. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5824. "type": "tidelift"
  5825. }
  5826. ],
  5827. "time": "2022-06-27T16:58:25+00:00"
  5828. },
  5829. {
  5830. "name": "symfony/property-access",
  5831. "version": "v5.4.11",
  5832. "source": {
  5833. "type": "git",
  5834. "url": "https://github.com/symfony/property-access.git",
  5835. "reference": "c641d63e943ed31981bad4b4dcf29fe7da2ffa8c"
  5836. },
  5837. "dist": {
  5838. "type": "zip",
  5839. "url": "https://api.github.com/repos/symfony/property-access/zipball/c641d63e943ed31981bad4b4dcf29fe7da2ffa8c",
  5840. "reference": "c641d63e943ed31981bad4b4dcf29fe7da2ffa8c",
  5841. "shasum": ""
  5842. },
  5843. "require": {
  5844. "php": ">=7.2.5",
  5845. "symfony/deprecation-contracts": "^2.1|^3",
  5846. "symfony/polyfill-php80": "^1.16",
  5847. "symfony/property-info": "^5.2|^6.0"
  5848. },
  5849. "require-dev": {
  5850. "symfony/cache": "^4.4|^5.0|^6.0"
  5851. },
  5852. "suggest": {
  5853. "psr/cache-implementation": "To cache access methods."
  5854. },
  5855. "type": "library",
  5856. "autoload": {
  5857. "psr-4": {
  5858. "Symfony\\Component\\PropertyAccess\\": ""
  5859. },
  5860. "exclude-from-classmap": [
  5861. "/Tests/"
  5862. ]
  5863. },
  5864. "notification-url": "https://packagist.org/downloads/",
  5865. "license": [
  5866. "MIT"
  5867. ],
  5868. "authors": [
  5869. {
  5870. "name": "Fabien Potencier",
  5871. "email": "fabien@symfony.com"
  5872. },
  5873. {
  5874. "name": "Symfony Community",
  5875. "homepage": "https://symfony.com/contributors"
  5876. }
  5877. ],
  5878. "description": "Provides functions to read and write from/to an object or array using a simple string notation",
  5879. "homepage": "https://symfony.com",
  5880. "keywords": [
  5881. "access",
  5882. "array",
  5883. "extraction",
  5884. "index",
  5885. "injection",
  5886. "object",
  5887. "property",
  5888. "property path",
  5889. "reflection"
  5890. ],
  5891. "support": {
  5892. "source": "https://github.com/symfony/property-access/tree/v5.4.11"
  5893. },
  5894. "funding": [
  5895. {
  5896. "url": "https://symfony.com/sponsor",
  5897. "type": "custom"
  5898. },
  5899. {
  5900. "url": "https://github.com/fabpot",
  5901. "type": "github"
  5902. },
  5903. {
  5904. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5905. "type": "tidelift"
  5906. }
  5907. ],
  5908. "time": "2022-06-27T16:58:25+00:00"
  5909. },
  5910. {
  5911. "name": "symfony/property-info",
  5912. "version": "v5.4.11",
  5913. "source": {
  5914. "type": "git",
  5915. "url": "https://github.com/symfony/property-info.git",
  5916. "reference": "8a9a2b638a808cc92a2fbce185b9318e76b0e20c"
  5917. },
  5918. "dist": {
  5919. "type": "zip",
  5920. "url": "https://api.github.com/repos/symfony/property-info/zipball/8a9a2b638a808cc92a2fbce185b9318e76b0e20c",
  5921. "reference": "8a9a2b638a808cc92a2fbce185b9318e76b0e20c",
  5922. "shasum": ""
  5923. },
  5924. "require": {
  5925. "php": ">=7.2.5",
  5926. "symfony/deprecation-contracts": "^2.1|^3",
  5927. "symfony/polyfill-php80": "^1.16",
  5928. "symfony/string": "^5.1|^6.0"
  5929. },
  5930. "conflict": {
  5931. "phpdocumentor/reflection-docblock": "<3.2.2",
  5932. "phpdocumentor/type-resolver": "<1.4.0",
  5933. "symfony/dependency-injection": "<4.4"
  5934. },
  5935. "require-dev": {
  5936. "doctrine/annotations": "^1.10.4",
  5937. "phpdocumentor/reflection-docblock": "^3.0|^4.0|^5.0",
  5938. "phpstan/phpdoc-parser": "^1.0",
  5939. "symfony/cache": "^4.4|^5.0|^6.0",
  5940. "symfony/dependency-injection": "^4.4|^5.0|^6.0",
  5941. "symfony/serializer": "^4.4|^5.0|^6.0"
  5942. },
  5943. "suggest": {
  5944. "phpdocumentor/reflection-docblock": "To use the PHPDoc",
  5945. "psr/cache-implementation": "To cache results",
  5946. "symfony/doctrine-bridge": "To use Doctrine metadata",
  5947. "symfony/serializer": "To use Serializer metadata"
  5948. },
  5949. "type": "library",
  5950. "autoload": {
  5951. "psr-4": {
  5952. "Symfony\\Component\\PropertyInfo\\": ""
  5953. },
  5954. "exclude-from-classmap": [
  5955. "/Tests/"
  5956. ]
  5957. },
  5958. "notification-url": "https://packagist.org/downloads/",
  5959. "license": [
  5960. "MIT"
  5961. ],
  5962. "authors": [
  5963. {
  5964. "name": "Kévin Dunglas",
  5965. "email": "dunglas@gmail.com"
  5966. },
  5967. {
  5968. "name": "Symfony Community",
  5969. "homepage": "https://symfony.com/contributors"
  5970. }
  5971. ],
  5972. "description": "Extracts information about PHP class' properties using metadata of popular sources",
  5973. "homepage": "https://symfony.com",
  5974. "keywords": [
  5975. "doctrine",
  5976. "phpdoc",
  5977. "property",
  5978. "symfony",
  5979. "type",
  5980. "validator"
  5981. ],
  5982. "support": {
  5983. "source": "https://github.com/symfony/property-info/tree/v5.4.11"
  5984. },
  5985. "funding": [
  5986. {
  5987. "url": "https://symfony.com/sponsor",
  5988. "type": "custom"
  5989. },
  5990. {
  5991. "url": "https://github.com/fabpot",
  5992. "type": "github"
  5993. },
  5994. {
  5995. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5996. "type": "tidelift"
  5997. }
  5998. ],
  5999. "time": "2022-07-19T08:07:51+00:00"
  6000. },
  6001. {
  6002. "name": "symfony/proxy-manager-bridge",
  6003. "version": "v5.4.6",
  6004. "source": {
  6005. "type": "git",
  6006. "url": "https://github.com/symfony/proxy-manager-bridge.git",
  6007. "reference": "e6936de1cc8f4e6e3b2264aef186ca21695aee8e"
  6008. },
  6009. "dist": {
  6010. "type": "zip",
  6011. "url": "https://api.github.com/repos/symfony/proxy-manager-bridge/zipball/e6936de1cc8f4e6e3b2264aef186ca21695aee8e",
  6012. "reference": "e6936de1cc8f4e6e3b2264aef186ca21695aee8e",
  6013. "shasum": ""
  6014. },
  6015. "require": {
  6016. "friendsofphp/proxy-manager-lts": "^1.0.2",
  6017. "php": ">=7.2.5",
  6018. "symfony/dependency-injection": "^5.0|^6.0",
  6019. "symfony/polyfill-php80": "^1.16"
  6020. },
  6021. "require-dev": {
  6022. "symfony/config": "^4.4|^5.0|^6.0"
  6023. },
  6024. "type": "symfony-bridge",
  6025. "autoload": {
  6026. "psr-4": {
  6027. "Symfony\\Bridge\\ProxyManager\\": ""
  6028. },
  6029. "exclude-from-classmap": [
  6030. "/Tests/"
  6031. ]
  6032. },
  6033. "notification-url": "https://packagist.org/downloads/",
  6034. "license": [
  6035. "MIT"
  6036. ],
  6037. "authors": [
  6038. {
  6039. "name": "Fabien Potencier",
  6040. "email": "fabien@symfony.com"
  6041. },
  6042. {
  6043. "name": "Symfony Community",
  6044. "homepage": "https://symfony.com/contributors"
  6045. }
  6046. ],
  6047. "description": "Provides integration for ProxyManager with various Symfony components",
  6048. "homepage": "https://symfony.com",
  6049. "support": {
  6050. "source": "https://github.com/symfony/proxy-manager-bridge/tree/v5.4.6"
  6051. },
  6052. "funding": [
  6053. {
  6054. "url": "https://symfony.com/sponsor",
  6055. "type": "custom"
  6056. },
  6057. {
  6058. "url": "https://github.com/fabpot",
  6059. "type": "github"
  6060. },
  6061. {
  6062. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6063. "type": "tidelift"
  6064. }
  6065. ],
  6066. "time": "2022-03-02T12:42:23+00:00"
  6067. },
  6068. {
  6069. "name": "symfony/routing",
  6070. "version": "v5.4.11",
  6071. "source": {
  6072. "type": "git",
  6073. "url": "https://github.com/symfony/routing.git",
  6074. "reference": "3e01ccd9b2a3a4167ba2b3c53612762300300226"
  6075. },
  6076. "dist": {
  6077. "type": "zip",
  6078. "url": "https://api.github.com/repos/symfony/routing/zipball/3e01ccd9b2a3a4167ba2b3c53612762300300226",
  6079. "reference": "3e01ccd9b2a3a4167ba2b3c53612762300300226",
  6080. "shasum": ""
  6081. },
  6082. "require": {
  6083. "php": ">=7.2.5",
  6084. "symfony/deprecation-contracts": "^2.1|^3",
  6085. "symfony/polyfill-php80": "^1.16"
  6086. },
  6087. "conflict": {
  6088. "doctrine/annotations": "<1.12",
  6089. "symfony/config": "<5.3",
  6090. "symfony/dependency-injection": "<4.4",
  6091. "symfony/yaml": "<4.4"
  6092. },
  6093. "require-dev": {
  6094. "doctrine/annotations": "^1.12",
  6095. "psr/log": "^1|^2|^3",
  6096. "symfony/config": "^5.3|^6.0",
  6097. "symfony/dependency-injection": "^4.4|^5.0|^6.0",
  6098. "symfony/expression-language": "^4.4|^5.0|^6.0",
  6099. "symfony/http-foundation": "^4.4|^5.0|^6.0",
  6100. "symfony/yaml": "^4.4|^5.0|^6.0"
  6101. },
  6102. "suggest": {
  6103. "symfony/config": "For using the all-in-one router or any loader",
  6104. "symfony/expression-language": "For using expression matching",
  6105. "symfony/http-foundation": "For using a Symfony Request object",
  6106. "symfony/yaml": "For using the YAML loader"
  6107. },
  6108. "type": "library",
  6109. "autoload": {
  6110. "psr-4": {
  6111. "Symfony\\Component\\Routing\\": ""
  6112. },
  6113. "exclude-from-classmap": [
  6114. "/Tests/"
  6115. ]
  6116. },
  6117. "notification-url": "https://packagist.org/downloads/",
  6118. "license": [
  6119. "MIT"
  6120. ],
  6121. "authors": [
  6122. {
  6123. "name": "Fabien Potencier",
  6124. "email": "fabien@symfony.com"
  6125. },
  6126. {
  6127. "name": "Symfony Community",
  6128. "homepage": "https://symfony.com/contributors"
  6129. }
  6130. ],
  6131. "description": "Maps an HTTP request to a set of configuration variables",
  6132. "homepage": "https://symfony.com",
  6133. "keywords": [
  6134. "router",
  6135. "routing",
  6136. "uri",
  6137. "url"
  6138. ],
  6139. "support": {
  6140. "source": "https://github.com/symfony/routing/tree/v5.4.11"
  6141. },
  6142. "funding": [
  6143. {
  6144. "url": "https://symfony.com/sponsor",
  6145. "type": "custom"
  6146. },
  6147. {
  6148. "url": "https://github.com/fabpot",
  6149. "type": "github"
  6150. },
  6151. {
  6152. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6153. "type": "tidelift"
  6154. }
  6155. ],
  6156. "time": "2022-07-20T13:00:38+00:00"
  6157. },
  6158. {
  6159. "name": "symfony/runtime",
  6160. "version": "v5.4.11",
  6161. "source": {
  6162. "type": "git",
  6163. "url": "https://github.com/symfony/runtime.git",
  6164. "reference": "c32ac27a8abebe4e6375cd12a4f78ba78e9c742f"
  6165. },
  6166. "dist": {
  6167. "type": "zip",
  6168. "url": "https://api.github.com/repos/symfony/runtime/zipball/c32ac27a8abebe4e6375cd12a4f78ba78e9c742f",
  6169. "reference": "c32ac27a8abebe4e6375cd12a4f78ba78e9c742f",
  6170. "shasum": ""
  6171. },
  6172. "require": {
  6173. "composer-plugin-api": "^1.0|^2.0",
  6174. "php": ">=7.2.5",
  6175. "symfony/polyfill-php80": "^1.15"
  6176. },
  6177. "conflict": {
  6178. "symfony/dotenv": "<5.1"
  6179. },
  6180. "require-dev": {
  6181. "composer/composer": "^1.0.2|^2.0",
  6182. "symfony/console": "^4.4.30|^5.3.7|^6.0",
  6183. "symfony/dotenv": "^5.1|^6.0",
  6184. "symfony/http-foundation": "^4.4.30|^5.3.7|^6.0",
  6185. "symfony/http-kernel": "^4.4.30|^5.3.7|^6.0"
  6186. },
  6187. "type": "composer-plugin",
  6188. "extra": {
  6189. "class": "Symfony\\Component\\Runtime\\Internal\\ComposerPlugin"
  6190. },
  6191. "autoload": {
  6192. "psr-4": {
  6193. "Symfony\\Component\\Runtime\\": "",
  6194. "Symfony\\Runtime\\Symfony\\Component\\": "Internal/"
  6195. },
  6196. "exclude-from-classmap": [
  6197. "/Tests/"
  6198. ]
  6199. },
  6200. "notification-url": "https://packagist.org/downloads/",
  6201. "license": [
  6202. "MIT"
  6203. ],
  6204. "authors": [
  6205. {
  6206. "name": "Nicolas Grekas",
  6207. "email": "p@tchwork.com"
  6208. },
  6209. {
  6210. "name": "Symfony Community",
  6211. "homepage": "https://symfony.com/contributors"
  6212. }
  6213. ],
  6214. "description": "Enables decoupling PHP applications from global state",
  6215. "homepage": "https://symfony.com",
  6216. "support": {
  6217. "source": "https://github.com/symfony/runtime/tree/v5.4.11"
  6218. },
  6219. "funding": [
  6220. {
  6221. "url": "https://symfony.com/sponsor",
  6222. "type": "custom"
  6223. },
  6224. {
  6225. "url": "https://github.com/fabpot",
  6226. "type": "github"
  6227. },
  6228. {
  6229. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6230. "type": "tidelift"
  6231. }
  6232. ],
  6233. "time": "2022-06-27T16:58:25+00:00"
  6234. },
  6235. {
  6236. "name": "symfony/security-bundle",
  6237. "version": "v5.4.11",
  6238. "source": {
  6239. "type": "git",
  6240. "url": "https://github.com/symfony/security-bundle.git",
  6241. "reference": "86b49feb056b840f2b79a03fcfa2d378d6d34234"
  6242. },
  6243. "dist": {
  6244. "type": "zip",
  6245. "url": "https://api.github.com/repos/symfony/security-bundle/zipball/86b49feb056b840f2b79a03fcfa2d378d6d34234",
  6246. "reference": "86b49feb056b840f2b79a03fcfa2d378d6d34234",
  6247. "shasum": ""
  6248. },
  6249. "require": {
  6250. "ext-xml": "*",
  6251. "php": ">=7.2.5",
  6252. "symfony/config": "^4.4|^5.0|^6.0",
  6253. "symfony/dependency-injection": "^5.3|^6.0",
  6254. "symfony/deprecation-contracts": "^2.1|^3",
  6255. "symfony/event-dispatcher": "^5.1|^6.0",
  6256. "symfony/http-foundation": "^5.3|^6.0",
  6257. "symfony/http-kernel": "^5.3|^6.0",
  6258. "symfony/password-hasher": "^5.3|^6.0",
  6259. "symfony/polyfill-php80": "^1.16",
  6260. "symfony/security-core": "^5.4|^6.0",
  6261. "symfony/security-csrf": "^4.4|^5.0|^6.0",
  6262. "symfony/security-guard": "^5.3",
  6263. "symfony/security-http": "^5.4|^6.0"
  6264. },
  6265. "conflict": {
  6266. "symfony/browser-kit": "<4.4",
  6267. "symfony/console": "<4.4",
  6268. "symfony/framework-bundle": "<4.4",
  6269. "symfony/ldap": "<5.1",
  6270. "symfony/twig-bundle": "<4.4"
  6271. },
  6272. "require-dev": {
  6273. "doctrine/annotations": "^1.10.4",
  6274. "symfony/asset": "^4.4|^5.0|^6.0",
  6275. "symfony/browser-kit": "^4.4|^5.0|^6.0",
  6276. "symfony/console": "^4.4|^5.0|^6.0",
  6277. "symfony/css-selector": "^4.4|^5.0|^6.0",
  6278. "symfony/dom-crawler": "^4.4|^5.0|^6.0",
  6279. "symfony/expression-language": "^4.4|^5.0|^6.0",
  6280. "symfony/form": "^4.4|^5.0|^6.0",
  6281. "symfony/framework-bundle": "^5.3|^6.0",
  6282. "symfony/ldap": "^5.3|^6.0",
  6283. "symfony/process": "^4.4|^5.0|^6.0",
  6284. "symfony/rate-limiter": "^5.2|^6.0",
  6285. "symfony/serializer": "^4.4|^5.0|^6.0",
  6286. "symfony/translation": "^4.4|^5.0|^6.0",
  6287. "symfony/twig-bridge": "^4.4|^5.0|^6.0",
  6288. "symfony/twig-bundle": "^4.4|^5.0|^6.0",
  6289. "symfony/validator": "^4.4|^5.0|^6.0",
  6290. "symfony/yaml": "^4.4|^5.0|^6.0",
  6291. "twig/twig": "^2.13|^3.0.4"
  6292. },
  6293. "type": "symfony-bundle",
  6294. "autoload": {
  6295. "psr-4": {
  6296. "Symfony\\Bundle\\SecurityBundle\\": ""
  6297. },
  6298. "exclude-from-classmap": [
  6299. "/Tests/"
  6300. ]
  6301. },
  6302. "notification-url": "https://packagist.org/downloads/",
  6303. "license": [
  6304. "MIT"
  6305. ],
  6306. "authors": [
  6307. {
  6308. "name": "Fabien Potencier",
  6309. "email": "fabien@symfony.com"
  6310. },
  6311. {
  6312. "name": "Symfony Community",
  6313. "homepage": "https://symfony.com/contributors"
  6314. }
  6315. ],
  6316. "description": "Provides a tight integration of the Security component into the Symfony full-stack framework",
  6317. "homepage": "https://symfony.com",
  6318. "support": {
  6319. "source": "https://github.com/symfony/security-bundle/tree/v5.4.11"
  6320. },
  6321. "funding": [
  6322. {
  6323. "url": "https://symfony.com/sponsor",
  6324. "type": "custom"
  6325. },
  6326. {
  6327. "url": "https://github.com/fabpot",
  6328. "type": "github"
  6329. },
  6330. {
  6331. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6332. "type": "tidelift"
  6333. }
  6334. ],
  6335. "time": "2022-07-20T13:00:38+00:00"
  6336. },
  6337. {
  6338. "name": "symfony/security-core",
  6339. "version": "v5.4.13",
  6340. "source": {
  6341. "type": "git",
  6342. "url": "https://github.com/symfony/security-core.git",
  6343. "reference": "71bc477807d9afc9c904fd62b3b5d48f97308460"
  6344. },
  6345. "dist": {
  6346. "type": "zip",
  6347. "url": "https://api.github.com/repos/symfony/security-core/zipball/71bc477807d9afc9c904fd62b3b5d48f97308460",
  6348. "reference": "71bc477807d9afc9c904fd62b3b5d48f97308460",
  6349. "shasum": ""
  6350. },
  6351. "require": {
  6352. "php": ">=7.2.5",
  6353. "symfony/deprecation-contracts": "^2.1|^3",
  6354. "symfony/event-dispatcher-contracts": "^1.1|^2|^3",
  6355. "symfony/password-hasher": "^5.3|^6.0",
  6356. "symfony/polyfill-php80": "^1.16",
  6357. "symfony/service-contracts": "^1.1.6|^2|^3"
  6358. },
  6359. "conflict": {
  6360. "symfony/event-dispatcher": "<4.4",
  6361. "symfony/http-foundation": "<5.3",
  6362. "symfony/ldap": "<4.4",
  6363. "symfony/security-guard": "<4.4",
  6364. "symfony/validator": "<5.2"
  6365. },
  6366. "require-dev": {
  6367. "psr/cache": "^1.0|^2.0|^3.0",
  6368. "psr/container": "^1.0|^2.0",
  6369. "psr/log": "^1|^2|^3",
  6370. "symfony/cache": "^4.4|^5.0|^6.0",
  6371. "symfony/event-dispatcher": "^4.4|^5.0|^6.0",
  6372. "symfony/expression-language": "^4.4|^5.0|^6.0",
  6373. "symfony/http-foundation": "^5.3|^6.0",
  6374. "symfony/ldap": "^4.4|^5.0|^6.0",
  6375. "symfony/translation": "^4.4|^5.0|^6.0",
  6376. "symfony/validator": "^5.2|^6.0"
  6377. },
  6378. "suggest": {
  6379. "psr/container-implementation": "To instantiate the Security class",
  6380. "symfony/event-dispatcher": "",
  6381. "symfony/expression-language": "For using the expression voter",
  6382. "symfony/http-foundation": "",
  6383. "symfony/ldap": "For using LDAP integration",
  6384. "symfony/validator": "For using the user password constraint"
  6385. },
  6386. "type": "library",
  6387. "autoload": {
  6388. "psr-4": {
  6389. "Symfony\\Component\\Security\\Core\\": ""
  6390. },
  6391. "exclude-from-classmap": [
  6392. "/Tests/"
  6393. ]
  6394. },
  6395. "notification-url": "https://packagist.org/downloads/",
  6396. "license": [
  6397. "MIT"
  6398. ],
  6399. "authors": [
  6400. {
  6401. "name": "Fabien Potencier",
  6402. "email": "fabien@symfony.com"
  6403. },
  6404. {
  6405. "name": "Symfony Community",
  6406. "homepage": "https://symfony.com/contributors"
  6407. }
  6408. ],
  6409. "description": "Symfony Security Component - Core Library",
  6410. "homepage": "https://symfony.com",
  6411. "support": {
  6412. "source": "https://github.com/symfony/security-core/tree/v5.4.13"
  6413. },
  6414. "funding": [
  6415. {
  6416. "url": "https://symfony.com/sponsor",
  6417. "type": "custom"
  6418. },
  6419. {
  6420. "url": "https://github.com/fabpot",
  6421. "type": "github"
  6422. },
  6423. {
  6424. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6425. "type": "tidelift"
  6426. }
  6427. ],
  6428. "time": "2022-09-17T07:31:22+00:00"
  6429. },
  6430. {
  6431. "name": "symfony/security-csrf",
  6432. "version": "v5.4.11",
  6433. "source": {
  6434. "type": "git",
  6435. "url": "https://github.com/symfony/security-csrf.git",
  6436. "reference": "b97ab244b6dda80abb84a4a236d682871695db4a"
  6437. },
  6438. "dist": {
  6439. "type": "zip",
  6440. "url": "https://api.github.com/repos/symfony/security-csrf/zipball/b97ab244b6dda80abb84a4a236d682871695db4a",
  6441. "reference": "b97ab244b6dda80abb84a4a236d682871695db4a",
  6442. "shasum": ""
  6443. },
  6444. "require": {
  6445. "php": ">=7.2.5",
  6446. "symfony/polyfill-php80": "^1.16",
  6447. "symfony/security-core": "^4.4|^5.0|^6.0"
  6448. },
  6449. "conflict": {
  6450. "symfony/http-foundation": "<5.3"
  6451. },
  6452. "require-dev": {
  6453. "symfony/http-foundation": "^5.3|^6.0"
  6454. },
  6455. "suggest": {
  6456. "symfony/http-foundation": "For using the class SessionTokenStorage."
  6457. },
  6458. "type": "library",
  6459. "autoload": {
  6460. "psr-4": {
  6461. "Symfony\\Component\\Security\\Csrf\\": ""
  6462. },
  6463. "exclude-from-classmap": [
  6464. "/Tests/"
  6465. ]
  6466. },
  6467. "notification-url": "https://packagist.org/downloads/",
  6468. "license": [
  6469. "MIT"
  6470. ],
  6471. "authors": [
  6472. {
  6473. "name": "Fabien Potencier",
  6474. "email": "fabien@symfony.com"
  6475. },
  6476. {
  6477. "name": "Symfony Community",
  6478. "homepage": "https://symfony.com/contributors"
  6479. }
  6480. ],
  6481. "description": "Symfony Security Component - CSRF Library",
  6482. "homepage": "https://symfony.com",
  6483. "support": {
  6484. "source": "https://github.com/symfony/security-csrf/tree/v5.4.11"
  6485. },
  6486. "funding": [
  6487. {
  6488. "url": "https://symfony.com/sponsor",
  6489. "type": "custom"
  6490. },
  6491. {
  6492. "url": "https://github.com/fabpot",
  6493. "type": "github"
  6494. },
  6495. {
  6496. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6497. "type": "tidelift"
  6498. }
  6499. ],
  6500. "time": "2022-07-20T13:00:38+00:00"
  6501. },
  6502. {
  6503. "name": "symfony/security-guard",
  6504. "version": "v5.4.13",
  6505. "source": {
  6506. "type": "git",
  6507. "url": "https://github.com/symfony/security-guard.git",
  6508. "reference": "83f647fcdc17aa14908f0e02a302d3d9d0f63fbc"
  6509. },
  6510. "dist": {
  6511. "type": "zip",
  6512. "url": "https://api.github.com/repos/symfony/security-guard/zipball/83f647fcdc17aa14908f0e02a302d3d9d0f63fbc",
  6513. "reference": "83f647fcdc17aa14908f0e02a302d3d9d0f63fbc",
  6514. "shasum": ""
  6515. },
  6516. "require": {
  6517. "php": ">=7.2.5",
  6518. "symfony/polyfill-php80": "^1.15",
  6519. "symfony/security-core": "^5.0",
  6520. "symfony/security-http": "^5.3"
  6521. },
  6522. "require-dev": {
  6523. "psr/log": "^1|^2|^3"
  6524. },
  6525. "type": "library",
  6526. "autoload": {
  6527. "psr-4": {
  6528. "Symfony\\Component\\Security\\Guard\\": ""
  6529. },
  6530. "exclude-from-classmap": [
  6531. "/Tests/"
  6532. ]
  6533. },
  6534. "notification-url": "https://packagist.org/downloads/",
  6535. "license": [
  6536. "MIT"
  6537. ],
  6538. "authors": [
  6539. {
  6540. "name": "Fabien Potencier",
  6541. "email": "fabien@symfony.com"
  6542. },
  6543. {
  6544. "name": "Symfony Community",
  6545. "homepage": "https://symfony.com/contributors"
  6546. }
  6547. ],
  6548. "description": "Symfony Security Component - Guard",
  6549. "homepage": "https://symfony.com",
  6550. "support": {
  6551. "source": "https://github.com/symfony/security-guard/tree/v5.4.13"
  6552. },
  6553. "funding": [
  6554. {
  6555. "url": "https://symfony.com/sponsor",
  6556. "type": "custom"
  6557. },
  6558. {
  6559. "url": "https://github.com/fabpot",
  6560. "type": "github"
  6561. },
  6562. {
  6563. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6564. "type": "tidelift"
  6565. }
  6566. ],
  6567. "time": "2022-09-28T13:19:49+00:00"
  6568. },
  6569. {
  6570. "name": "symfony/security-http",
  6571. "version": "v5.4.13",
  6572. "source": {
  6573. "type": "git",
  6574. "url": "https://github.com/symfony/security-http.git",
  6575. "reference": "64e9926b8ab8e4460e4dfdc53dc098fed2dad837"
  6576. },
  6577. "dist": {
  6578. "type": "zip",
  6579. "url": "https://api.github.com/repos/symfony/security-http/zipball/64e9926b8ab8e4460e4dfdc53dc098fed2dad837",
  6580. "reference": "64e9926b8ab8e4460e4dfdc53dc098fed2dad837",
  6581. "shasum": ""
  6582. },
  6583. "require": {
  6584. "php": ">=7.2.5",
  6585. "symfony/deprecation-contracts": "^2.1|^3",
  6586. "symfony/http-foundation": "^5.3|^6.0",
  6587. "symfony/http-kernel": "^5.3|^6.0",
  6588. "symfony/polyfill-mbstring": "~1.0",
  6589. "symfony/polyfill-php80": "^1.16",
  6590. "symfony/property-access": "^4.4|^5.0|^6.0",
  6591. "symfony/security-core": "^5.4|^6.0"
  6592. },
  6593. "conflict": {
  6594. "symfony/event-dispatcher": "<4.3",
  6595. "symfony/security-bundle": "<5.3",
  6596. "symfony/security-csrf": "<4.4"
  6597. },
  6598. "require-dev": {
  6599. "psr/log": "^1|^2|^3",
  6600. "symfony/cache": "^4.4|^5.0|^6.0",
  6601. "symfony/rate-limiter": "^5.2|^6.0",
  6602. "symfony/routing": "^4.4|^5.0|^6.0",
  6603. "symfony/security-csrf": "^4.4|^5.0|^6.0",
  6604. "symfony/translation": "^4.4|^5.0|^6.0"
  6605. },
  6606. "suggest": {
  6607. "symfony/routing": "For using the HttpUtils class to create sub-requests, redirect the user, and match URLs",
  6608. "symfony/security-csrf": "For using tokens to protect authentication/logout attempts"
  6609. },
  6610. "type": "library",
  6611. "autoload": {
  6612. "psr-4": {
  6613. "Symfony\\Component\\Security\\Http\\": ""
  6614. },
  6615. "exclude-from-classmap": [
  6616. "/Tests/"
  6617. ]
  6618. },
  6619. "notification-url": "https://packagist.org/downloads/",
  6620. "license": [
  6621. "MIT"
  6622. ],
  6623. "authors": [
  6624. {
  6625. "name": "Fabien Potencier",
  6626. "email": "fabien@symfony.com"
  6627. },
  6628. {
  6629. "name": "Symfony Community",
  6630. "homepage": "https://symfony.com/contributors"
  6631. }
  6632. ],
  6633. "description": "Symfony Security Component - HTTP Integration",
  6634. "homepage": "https://symfony.com",
  6635. "support": {
  6636. "source": "https://github.com/symfony/security-http/tree/v5.4.13"
  6637. },
  6638. "funding": [
  6639. {
  6640. "url": "https://symfony.com/sponsor",
  6641. "type": "custom"
  6642. },
  6643. {
  6644. "url": "https://github.com/fabpot",
  6645. "type": "github"
  6646. },
  6647. {
  6648. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6649. "type": "tidelift"
  6650. }
  6651. ],
  6652. "time": "2022-09-29T19:14:22+00:00"
  6653. },
  6654. {
  6655. "name": "symfony/serializer",
  6656. "version": "v5.4.13",
  6657. "source": {
  6658. "type": "git",
  6659. "url": "https://github.com/symfony/serializer.git",
  6660. "reference": "f8c32e94c8656c17a7360d88d6d486bc8ce23b2d"
  6661. },
  6662. "dist": {
  6663. "type": "zip",
  6664. "url": "https://api.github.com/repos/symfony/serializer/zipball/f8c32e94c8656c17a7360d88d6d486bc8ce23b2d",
  6665. "reference": "f8c32e94c8656c17a7360d88d6d486bc8ce23b2d",
  6666. "shasum": ""
  6667. },
  6668. "require": {
  6669. "php": ">=7.2.5",
  6670. "symfony/deprecation-contracts": "^2.1|^3",
  6671. "symfony/polyfill-ctype": "~1.8",
  6672. "symfony/polyfill-php80": "^1.16"
  6673. },
  6674. "conflict": {
  6675. "doctrine/annotations": "<1.12",
  6676. "phpdocumentor/reflection-docblock": "<3.2.2",
  6677. "phpdocumentor/type-resolver": "<1.4.0",
  6678. "symfony/dependency-injection": "<4.4",
  6679. "symfony/property-access": "<5.4",
  6680. "symfony/property-info": "<5.3.13",
  6681. "symfony/uid": "<5.3",
  6682. "symfony/yaml": "<4.4"
  6683. },
  6684. "require-dev": {
  6685. "doctrine/annotations": "^1.12",
  6686. "phpdocumentor/reflection-docblock": "^3.2|^4.0|^5.0",
  6687. "symfony/cache": "^4.4|^5.0|^6.0",
  6688. "symfony/config": "^4.4|^5.0|^6.0",
  6689. "symfony/dependency-injection": "^4.4|^5.0|^6.0",
  6690. "symfony/error-handler": "^4.4|^5.0|^6.0",
  6691. "symfony/filesystem": "^4.4|^5.0|^6.0",
  6692. "symfony/form": "^4.4|^5.0|^6.0",
  6693. "symfony/http-foundation": "^4.4|^5.0|^6.0",
  6694. "symfony/http-kernel": "^4.4|^5.0|^6.0",
  6695. "symfony/mime": "^4.4|^5.0|^6.0",
  6696. "symfony/property-access": "^5.4|^6.0",
  6697. "symfony/property-info": "^5.3.13|^6.0",
  6698. "symfony/uid": "^5.3|^6.0",
  6699. "symfony/validator": "^4.4|^5.0|^6.0",
  6700. "symfony/var-dumper": "^4.4|^5.0|^6.0",
  6701. "symfony/var-exporter": "^4.4|^5.0|^6.0",
  6702. "symfony/yaml": "^4.4|^5.0|^6.0"
  6703. },
  6704. "suggest": {
  6705. "psr/cache-implementation": "For using the metadata cache.",
  6706. "symfony/config": "For using the XML mapping loader.",
  6707. "symfony/mime": "For using a MIME type guesser within the DataUriNormalizer.",
  6708. "symfony/property-access": "For using the ObjectNormalizer.",
  6709. "symfony/property-info": "To deserialize relations.",
  6710. "symfony/var-exporter": "For using the metadata compiler.",
  6711. "symfony/yaml": "For using the default YAML mapping loader."
  6712. },
  6713. "type": "library",
  6714. "autoload": {
  6715. "psr-4": {
  6716. "Symfony\\Component\\Serializer\\": ""
  6717. },
  6718. "exclude-from-classmap": [
  6719. "/Tests/"
  6720. ]
  6721. },
  6722. "notification-url": "https://packagist.org/downloads/",
  6723. "license": [
  6724. "MIT"
  6725. ],
  6726. "authors": [
  6727. {
  6728. "name": "Fabien Potencier",
  6729. "email": "fabien@symfony.com"
  6730. },
  6731. {
  6732. "name": "Symfony Community",
  6733. "homepage": "https://symfony.com/contributors"
  6734. }
  6735. ],
  6736. "description": "Handles serializing and deserializing data structures, including object graphs, into array structures or other formats like XML and JSON.",
  6737. "homepage": "https://symfony.com",
  6738. "support": {
  6739. "source": "https://github.com/symfony/serializer/tree/v5.4.13"
  6740. },
  6741. "funding": [
  6742. {
  6743. "url": "https://symfony.com/sponsor",
  6744. "type": "custom"
  6745. },
  6746. {
  6747. "url": "https://github.com/fabpot",
  6748. "type": "github"
  6749. },
  6750. {
  6751. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6752. "type": "tidelift"
  6753. }
  6754. ],
  6755. "time": "2022-09-29T09:26:59+00:00"
  6756. },
  6757. {
  6758. "name": "symfony/service-contracts",
  6759. "version": "v2.5.2",
  6760. "source": {
  6761. "type": "git",
  6762. "url": "https://github.com/symfony/service-contracts.git",
  6763. "reference": "4b426aac47d6427cc1a1d0f7e2ac724627f5966c"
  6764. },
  6765. "dist": {
  6766. "type": "zip",
  6767. "url": "https://api.github.com/repos/symfony/service-contracts/zipball/4b426aac47d6427cc1a1d0f7e2ac724627f5966c",
  6768. "reference": "4b426aac47d6427cc1a1d0f7e2ac724627f5966c",
  6769. "shasum": ""
  6770. },
  6771. "require": {
  6772. "php": ">=7.2.5",
  6773. "psr/container": "^1.1",
  6774. "symfony/deprecation-contracts": "^2.1|^3"
  6775. },
  6776. "conflict": {
  6777. "ext-psr": "<1.1|>=2"
  6778. },
  6779. "suggest": {
  6780. "symfony/service-implementation": ""
  6781. },
  6782. "type": "library",
  6783. "extra": {
  6784. "branch-alias": {
  6785. "dev-main": "2.5-dev"
  6786. },
  6787. "thanks": {
  6788. "name": "symfony/contracts",
  6789. "url": "https://github.com/symfony/contracts"
  6790. }
  6791. },
  6792. "autoload": {
  6793. "psr-4": {
  6794. "Symfony\\Contracts\\Service\\": ""
  6795. }
  6796. },
  6797. "notification-url": "https://packagist.org/downloads/",
  6798. "license": [
  6799. "MIT"
  6800. ],
  6801. "authors": [
  6802. {
  6803. "name": "Nicolas Grekas",
  6804. "email": "p@tchwork.com"
  6805. },
  6806. {
  6807. "name": "Symfony Community",
  6808. "homepage": "https://symfony.com/contributors"
  6809. }
  6810. ],
  6811. "description": "Generic abstractions related to writing services",
  6812. "homepage": "https://symfony.com",
  6813. "keywords": [
  6814. "abstractions",
  6815. "contracts",
  6816. "decoupling",
  6817. "interfaces",
  6818. "interoperability",
  6819. "standards"
  6820. ],
  6821. "support": {
  6822. "source": "https://github.com/symfony/service-contracts/tree/v2.5.2"
  6823. },
  6824. "funding": [
  6825. {
  6826. "url": "https://symfony.com/sponsor",
  6827. "type": "custom"
  6828. },
  6829. {
  6830. "url": "https://github.com/fabpot",
  6831. "type": "github"
  6832. },
  6833. {
  6834. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6835. "type": "tidelift"
  6836. }
  6837. ],
  6838. "time": "2022-05-30T19:17:29+00:00"
  6839. },
  6840. {
  6841. "name": "symfony/stopwatch",
  6842. "version": "v5.4.13",
  6843. "source": {
  6844. "type": "git",
  6845. "url": "https://github.com/symfony/stopwatch.git",
  6846. "reference": "6df7a3effde34d81717bbef4591e5ffe32226d69"
  6847. },
  6848. "dist": {
  6849. "type": "zip",
  6850. "url": "https://api.github.com/repos/symfony/stopwatch/zipball/6df7a3effde34d81717bbef4591e5ffe32226d69",
  6851. "reference": "6df7a3effde34d81717bbef4591e5ffe32226d69",
  6852. "shasum": ""
  6853. },
  6854. "require": {
  6855. "php": ">=7.2.5",
  6856. "symfony/service-contracts": "^1|^2|^3"
  6857. },
  6858. "type": "library",
  6859. "autoload": {
  6860. "psr-4": {
  6861. "Symfony\\Component\\Stopwatch\\": ""
  6862. },
  6863. "exclude-from-classmap": [
  6864. "/Tests/"
  6865. ]
  6866. },
  6867. "notification-url": "https://packagist.org/downloads/",
  6868. "license": [
  6869. "MIT"
  6870. ],
  6871. "authors": [
  6872. {
  6873. "name": "Fabien Potencier",
  6874. "email": "fabien@symfony.com"
  6875. },
  6876. {
  6877. "name": "Symfony Community",
  6878. "homepage": "https://symfony.com/contributors"
  6879. }
  6880. ],
  6881. "description": "Provides a way to profile code",
  6882. "homepage": "https://symfony.com",
  6883. "support": {
  6884. "source": "https://github.com/symfony/stopwatch/tree/v5.4.13"
  6885. },
  6886. "funding": [
  6887. {
  6888. "url": "https://symfony.com/sponsor",
  6889. "type": "custom"
  6890. },
  6891. {
  6892. "url": "https://github.com/fabpot",
  6893. "type": "github"
  6894. },
  6895. {
  6896. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6897. "type": "tidelift"
  6898. }
  6899. ],
  6900. "time": "2022-09-28T13:19:49+00:00"
  6901. },
  6902. {
  6903. "name": "symfony/string",
  6904. "version": "v5.4.13",
  6905. "source": {
  6906. "type": "git",
  6907. "url": "https://github.com/symfony/string.git",
  6908. "reference": "2900c668a32138a34118740de3e4d5a701801f53"
  6909. },
  6910. "dist": {
  6911. "type": "zip",
  6912. "url": "https://api.github.com/repos/symfony/string/zipball/2900c668a32138a34118740de3e4d5a701801f53",
  6913. "reference": "2900c668a32138a34118740de3e4d5a701801f53",
  6914. "shasum": ""
  6915. },
  6916. "require": {
  6917. "php": ">=7.2.5",
  6918. "symfony/polyfill-ctype": "~1.8",
  6919. "symfony/polyfill-intl-grapheme": "~1.0",
  6920. "symfony/polyfill-intl-normalizer": "~1.0",
  6921. "symfony/polyfill-mbstring": "~1.0",
  6922. "symfony/polyfill-php80": "~1.15"
  6923. },
  6924. "conflict": {
  6925. "symfony/translation-contracts": ">=3.0"
  6926. },
  6927. "require-dev": {
  6928. "symfony/error-handler": "^4.4|^5.0|^6.0",
  6929. "symfony/http-client": "^4.4|^5.0|^6.0",
  6930. "symfony/translation-contracts": "^1.1|^2",
  6931. "symfony/var-exporter": "^4.4|^5.0|^6.0"
  6932. },
  6933. "type": "library",
  6934. "autoload": {
  6935. "files": [
  6936. "Resources/functions.php"
  6937. ],
  6938. "psr-4": {
  6939. "Symfony\\Component\\String\\": ""
  6940. },
  6941. "exclude-from-classmap": [
  6942. "/Tests/"
  6943. ]
  6944. },
  6945. "notification-url": "https://packagist.org/downloads/",
  6946. "license": [
  6947. "MIT"
  6948. ],
  6949. "authors": [
  6950. {
  6951. "name": "Nicolas Grekas",
  6952. "email": "p@tchwork.com"
  6953. },
  6954. {
  6955. "name": "Symfony Community",
  6956. "homepage": "https://symfony.com/contributors"
  6957. }
  6958. ],
  6959. "description": "Provides an object-oriented API to strings and deals with bytes, UTF-8 code points and grapheme clusters in a unified way",
  6960. "homepage": "https://symfony.com",
  6961. "keywords": [
  6962. "grapheme",
  6963. "i18n",
  6964. "string",
  6965. "unicode",
  6966. "utf-8",
  6967. "utf8"
  6968. ],
  6969. "support": {
  6970. "source": "https://github.com/symfony/string/tree/v5.4.13"
  6971. },
  6972. "funding": [
  6973. {
  6974. "url": "https://symfony.com/sponsor",
  6975. "type": "custom"
  6976. },
  6977. {
  6978. "url": "https://github.com/fabpot",
  6979. "type": "github"
  6980. },
  6981. {
  6982. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6983. "type": "tidelift"
  6984. }
  6985. ],
  6986. "time": "2022-09-01T01:52:16+00:00"
  6987. },
  6988. {
  6989. "name": "symfony/translation",
  6990. "version": "v5.4.12",
  6991. "source": {
  6992. "type": "git",
  6993. "url": "https://github.com/symfony/translation.git",
  6994. "reference": "42ecc77eb4f229ce2df702a648ec93b8478d76ae"
  6995. },
  6996. "dist": {
  6997. "type": "zip",
  6998. "url": "https://api.github.com/repos/symfony/translation/zipball/42ecc77eb4f229ce2df702a648ec93b8478d76ae",
  6999. "reference": "42ecc77eb4f229ce2df702a648ec93b8478d76ae",
  7000. "shasum": ""
  7001. },
  7002. "require": {
  7003. "php": ">=7.2.5",
  7004. "symfony/deprecation-contracts": "^2.1|^3",
  7005. "symfony/polyfill-mbstring": "~1.0",
  7006. "symfony/polyfill-php80": "^1.16",
  7007. "symfony/translation-contracts": "^2.3"
  7008. },
  7009. "conflict": {
  7010. "symfony/config": "<4.4",
  7011. "symfony/console": "<5.3",
  7012. "symfony/dependency-injection": "<5.0",
  7013. "symfony/http-kernel": "<5.0",
  7014. "symfony/twig-bundle": "<5.0",
  7015. "symfony/yaml": "<4.4"
  7016. },
  7017. "provide": {
  7018. "symfony/translation-implementation": "2.3"
  7019. },
  7020. "require-dev": {
  7021. "psr/log": "^1|^2|^3",
  7022. "symfony/config": "^4.4|^5.0|^6.0",
  7023. "symfony/console": "^5.4|^6.0",
  7024. "symfony/dependency-injection": "^5.0|^6.0",
  7025. "symfony/finder": "^4.4|^5.0|^6.0",
  7026. "symfony/http-client-contracts": "^1.1|^2.0|^3.0",
  7027. "symfony/http-kernel": "^5.0|^6.0",
  7028. "symfony/intl": "^4.4|^5.0|^6.0",
  7029. "symfony/polyfill-intl-icu": "^1.21",
  7030. "symfony/service-contracts": "^1.1.2|^2|^3",
  7031. "symfony/yaml": "^4.4|^5.0|^6.0"
  7032. },
  7033. "suggest": {
  7034. "psr/log-implementation": "To use logging capability in translator",
  7035. "symfony/config": "",
  7036. "symfony/yaml": ""
  7037. },
  7038. "type": "library",
  7039. "autoload": {
  7040. "files": [
  7041. "Resources/functions.php"
  7042. ],
  7043. "psr-4": {
  7044. "Symfony\\Component\\Translation\\": ""
  7045. },
  7046. "exclude-from-classmap": [
  7047. "/Tests/"
  7048. ]
  7049. },
  7050. "notification-url": "https://packagist.org/downloads/",
  7051. "license": [
  7052. "MIT"
  7053. ],
  7054. "authors": [
  7055. {
  7056. "name": "Fabien Potencier",
  7057. "email": "fabien@symfony.com"
  7058. },
  7059. {
  7060. "name": "Symfony Community",
  7061. "homepage": "https://symfony.com/contributors"
  7062. }
  7063. ],
  7064. "description": "Provides tools to internationalize your application",
  7065. "homepage": "https://symfony.com",
  7066. "support": {
  7067. "source": "https://github.com/symfony/translation/tree/v5.4.12"
  7068. },
  7069. "funding": [
  7070. {
  7071. "url": "https://symfony.com/sponsor",
  7072. "type": "custom"
  7073. },
  7074. {
  7075. "url": "https://github.com/fabpot",
  7076. "type": "github"
  7077. },
  7078. {
  7079. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7080. "type": "tidelift"
  7081. }
  7082. ],
  7083. "time": "2022-08-02T15:52:22+00:00"
  7084. },
  7085. {
  7086. "name": "symfony/translation-contracts",
  7087. "version": "v2.5.2",
  7088. "source": {
  7089. "type": "git",
  7090. "url": "https://github.com/symfony/translation-contracts.git",
  7091. "reference": "136b19dd05cdf0709db6537d058bcab6dd6e2dbe"
  7092. },
  7093. "dist": {
  7094. "type": "zip",
  7095. "url": "https://api.github.com/repos/symfony/translation-contracts/zipball/136b19dd05cdf0709db6537d058bcab6dd6e2dbe",
  7096. "reference": "136b19dd05cdf0709db6537d058bcab6dd6e2dbe",
  7097. "shasum": ""
  7098. },
  7099. "require": {
  7100. "php": ">=7.2.5"
  7101. },
  7102. "suggest": {
  7103. "symfony/translation-implementation": ""
  7104. },
  7105. "type": "library",
  7106. "extra": {
  7107. "branch-alias": {
  7108. "dev-main": "2.5-dev"
  7109. },
  7110. "thanks": {
  7111. "name": "symfony/contracts",
  7112. "url": "https://github.com/symfony/contracts"
  7113. }
  7114. },
  7115. "autoload": {
  7116. "psr-4": {
  7117. "Symfony\\Contracts\\Translation\\": ""
  7118. }
  7119. },
  7120. "notification-url": "https://packagist.org/downloads/",
  7121. "license": [
  7122. "MIT"
  7123. ],
  7124. "authors": [
  7125. {
  7126. "name": "Nicolas Grekas",
  7127. "email": "p@tchwork.com"
  7128. },
  7129. {
  7130. "name": "Symfony Community",
  7131. "homepage": "https://symfony.com/contributors"
  7132. }
  7133. ],
  7134. "description": "Generic abstractions related to translation",
  7135. "homepage": "https://symfony.com",
  7136. "keywords": [
  7137. "abstractions",
  7138. "contracts",
  7139. "decoupling",
  7140. "interfaces",
  7141. "interoperability",
  7142. "standards"
  7143. ],
  7144. "support": {
  7145. "source": "https://github.com/symfony/translation-contracts/tree/v2.5.2"
  7146. },
  7147. "funding": [
  7148. {
  7149. "url": "https://symfony.com/sponsor",
  7150. "type": "custom"
  7151. },
  7152. {
  7153. "url": "https://github.com/fabpot",
  7154. "type": "github"
  7155. },
  7156. {
  7157. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7158. "type": "tidelift"
  7159. }
  7160. ],
  7161. "time": "2022-06-27T16:58:25+00:00"
  7162. },
  7163. {
  7164. "name": "symfony/twig-bridge",
  7165. "version": "v5.4.12",
  7166. "source": {
  7167. "type": "git",
  7168. "url": "https://github.com/symfony/twig-bridge.git",
  7169. "reference": "94c3b38514c953e3e84719c96d4e578a01ca1819"
  7170. },
  7171. "dist": {
  7172. "type": "zip",
  7173. "url": "https://api.github.com/repos/symfony/twig-bridge/zipball/94c3b38514c953e3e84719c96d4e578a01ca1819",
  7174. "reference": "94c3b38514c953e3e84719c96d4e578a01ca1819",
  7175. "shasum": ""
  7176. },
  7177. "require": {
  7178. "php": ">=7.2.5",
  7179. "symfony/polyfill-php80": "^1.16",
  7180. "symfony/translation-contracts": "^1.1|^2|^3",
  7181. "twig/twig": "^2.13|^3.0.4"
  7182. },
  7183. "conflict": {
  7184. "phpdocumentor/reflection-docblock": "<3.2.2",
  7185. "phpdocumentor/type-resolver": "<1.4.0",
  7186. "symfony/console": "<5.3",
  7187. "symfony/form": "<5.3",
  7188. "symfony/http-foundation": "<5.3",
  7189. "symfony/http-kernel": "<4.4",
  7190. "symfony/translation": "<5.2",
  7191. "symfony/workflow": "<5.2"
  7192. },
  7193. "require-dev": {
  7194. "doctrine/annotations": "^1.12",
  7195. "egulias/email-validator": "^2.1.10|^3",
  7196. "phpdocumentor/reflection-docblock": "^3.0|^4.0|^5.0",
  7197. "symfony/asset": "^4.4|^5.0|^6.0",
  7198. "symfony/console": "^5.3|^6.0",
  7199. "symfony/dependency-injection": "^4.4|^5.0|^6.0",
  7200. "symfony/expression-language": "^4.4|^5.0|^6.0",
  7201. "symfony/finder": "^4.4|^5.0|^6.0",
  7202. "symfony/form": "^5.3|^6.0",
  7203. "symfony/http-foundation": "^5.3|^6.0",
  7204. "symfony/http-kernel": "^4.4|^5.0|^6.0",
  7205. "symfony/intl": "^4.4|^5.0|^6.0",
  7206. "symfony/mime": "^5.2|^6.0",
  7207. "symfony/polyfill-intl-icu": "~1.0",
  7208. "symfony/property-info": "^4.4|^5.1|^6.0",
  7209. "symfony/routing": "^4.4|^5.0|^6.0",
  7210. "symfony/security-acl": "^2.8|^3.0",
  7211. "symfony/security-core": "^4.4|^5.0|^6.0",
  7212. "symfony/security-csrf": "^4.4|^5.0|^6.0",
  7213. "symfony/security-http": "^4.4|^5.0|^6.0",
  7214. "symfony/serializer": "^5.2|^6.0",
  7215. "symfony/stopwatch": "^4.4|^5.0|^6.0",
  7216. "symfony/translation": "^5.2|^6.0",
  7217. "symfony/web-link": "^4.4|^5.0|^6.0",
  7218. "symfony/workflow": "^5.2|^6.0",
  7219. "symfony/yaml": "^4.4|^5.0|^6.0",
  7220. "twig/cssinliner-extra": "^2.12|^3",
  7221. "twig/inky-extra": "^2.12|^3",
  7222. "twig/markdown-extra": "^2.12|^3"
  7223. },
  7224. "suggest": {
  7225. "symfony/asset": "For using the AssetExtension",
  7226. "symfony/expression-language": "For using the ExpressionExtension",
  7227. "symfony/finder": "",
  7228. "symfony/form": "For using the FormExtension",
  7229. "symfony/http-kernel": "For using the HttpKernelExtension",
  7230. "symfony/routing": "For using the RoutingExtension",
  7231. "symfony/security-core": "For using the SecurityExtension",
  7232. "symfony/security-csrf": "For using the CsrfExtension",
  7233. "symfony/security-http": "For using the LogoutUrlExtension",
  7234. "symfony/stopwatch": "For using the StopwatchExtension",
  7235. "symfony/translation": "For using the TranslationExtension",
  7236. "symfony/var-dumper": "For using the DumpExtension",
  7237. "symfony/web-link": "For using the WebLinkExtension",
  7238. "symfony/yaml": "For using the YamlExtension"
  7239. },
  7240. "type": "symfony-bridge",
  7241. "autoload": {
  7242. "psr-4": {
  7243. "Symfony\\Bridge\\Twig\\": ""
  7244. },
  7245. "exclude-from-classmap": [
  7246. "/Tests/"
  7247. ]
  7248. },
  7249. "notification-url": "https://packagist.org/downloads/",
  7250. "license": [
  7251. "MIT"
  7252. ],
  7253. "authors": [
  7254. {
  7255. "name": "Fabien Potencier",
  7256. "email": "fabien@symfony.com"
  7257. },
  7258. {
  7259. "name": "Symfony Community",
  7260. "homepage": "https://symfony.com/contributors"
  7261. }
  7262. ],
  7263. "description": "Provides integration for Twig with various Symfony components",
  7264. "homepage": "https://symfony.com",
  7265. "support": {
  7266. "source": "https://github.com/symfony/twig-bridge/tree/v5.4.12"
  7267. },
  7268. "funding": [
  7269. {
  7270. "url": "https://symfony.com/sponsor",
  7271. "type": "custom"
  7272. },
  7273. {
  7274. "url": "https://github.com/fabpot",
  7275. "type": "github"
  7276. },
  7277. {
  7278. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7279. "type": "tidelift"
  7280. }
  7281. ],
  7282. "time": "2022-08-03T13:09:21+00:00"
  7283. },
  7284. {
  7285. "name": "symfony/twig-bundle",
  7286. "version": "v5.4.8",
  7287. "source": {
  7288. "type": "git",
  7289. "url": "https://github.com/symfony/twig-bundle.git",
  7290. "reference": "c992b4474c3a31f3c40a1ca593d213833f91b818"
  7291. },
  7292. "dist": {
  7293. "type": "zip",
  7294. "url": "https://api.github.com/repos/symfony/twig-bundle/zipball/c992b4474c3a31f3c40a1ca593d213833f91b818",
  7295. "reference": "c992b4474c3a31f3c40a1ca593d213833f91b818",
  7296. "shasum": ""
  7297. },
  7298. "require": {
  7299. "php": ">=7.2.5",
  7300. "symfony/config": "^4.4|^5.0|^6.0",
  7301. "symfony/http-foundation": "^4.4|^5.0|^6.0",
  7302. "symfony/http-kernel": "^5.0|^6.0",
  7303. "symfony/polyfill-ctype": "~1.8",
  7304. "symfony/polyfill-php80": "^1.16",
  7305. "symfony/twig-bridge": "^5.3|^6.0",
  7306. "twig/twig": "^2.13|^3.0.4"
  7307. },
  7308. "conflict": {
  7309. "symfony/dependency-injection": "<5.3",
  7310. "symfony/framework-bundle": "<5.0",
  7311. "symfony/service-contracts": ">=3.0",
  7312. "symfony/translation": "<5.0"
  7313. },
  7314. "require-dev": {
  7315. "doctrine/annotations": "^1.10.4",
  7316. "doctrine/cache": "^1.0|^2.0",
  7317. "symfony/asset": "^4.4|^5.0|^6.0",
  7318. "symfony/dependency-injection": "^5.3|^6.0",
  7319. "symfony/expression-language": "^4.4|^5.0|^6.0",
  7320. "symfony/finder": "^4.4|^5.0|^6.0",
  7321. "symfony/form": "^4.4|^5.0|^6.0",
  7322. "symfony/framework-bundle": "^5.0|^6.0",
  7323. "symfony/routing": "^4.4|^5.0|^6.0",
  7324. "symfony/stopwatch": "^4.4|^5.0|^6.0",
  7325. "symfony/translation": "^5.0|^6.0",
  7326. "symfony/web-link": "^4.4|^5.0|^6.0",
  7327. "symfony/yaml": "^4.4|^5.0|^6.0"
  7328. },
  7329. "type": "symfony-bundle",
  7330. "autoload": {
  7331. "psr-4": {
  7332. "Symfony\\Bundle\\TwigBundle\\": ""
  7333. },
  7334. "exclude-from-classmap": [
  7335. "/Tests/"
  7336. ]
  7337. },
  7338. "notification-url": "https://packagist.org/downloads/",
  7339. "license": [
  7340. "MIT"
  7341. ],
  7342. "authors": [
  7343. {
  7344. "name": "Fabien Potencier",
  7345. "email": "fabien@symfony.com"
  7346. },
  7347. {
  7348. "name": "Symfony Community",
  7349. "homepage": "https://symfony.com/contributors"
  7350. }
  7351. ],
  7352. "description": "Provides a tight integration of Twig into the Symfony full-stack framework",
  7353. "homepage": "https://symfony.com",
  7354. "support": {
  7355. "source": "https://github.com/symfony/twig-bundle/tree/v5.4.8"
  7356. },
  7357. "funding": [
  7358. {
  7359. "url": "https://symfony.com/sponsor",
  7360. "type": "custom"
  7361. },
  7362. {
  7363. "url": "https://github.com/fabpot",
  7364. "type": "github"
  7365. },
  7366. {
  7367. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7368. "type": "tidelift"
  7369. }
  7370. ],
  7371. "time": "2022-04-03T13:03:10+00:00"
  7372. },
  7373. {
  7374. "name": "symfony/validator",
  7375. "version": "v5.4.13",
  7376. "source": {
  7377. "type": "git",
  7378. "url": "https://github.com/symfony/validator.git",
  7379. "reference": "8fba40ed3c21054cb9a543ccecd4f3175b6a011b"
  7380. },
  7381. "dist": {
  7382. "type": "zip",
  7383. "url": "https://api.github.com/repos/symfony/validator/zipball/8fba40ed3c21054cb9a543ccecd4f3175b6a011b",
  7384. "reference": "8fba40ed3c21054cb9a543ccecd4f3175b6a011b",
  7385. "shasum": ""
  7386. },
  7387. "require": {
  7388. "php": ">=7.2.5",
  7389. "symfony/deprecation-contracts": "^2.1|^3",
  7390. "symfony/polyfill-ctype": "~1.8",
  7391. "symfony/polyfill-mbstring": "~1.0",
  7392. "symfony/polyfill-php73": "~1.0",
  7393. "symfony/polyfill-php80": "^1.16",
  7394. "symfony/polyfill-php81": "^1.22",
  7395. "symfony/translation-contracts": "^1.1|^2|^3"
  7396. },
  7397. "conflict": {
  7398. "doctrine/annotations": "<1.13",
  7399. "doctrine/cache": "<1.11",
  7400. "doctrine/lexer": "<1.1",
  7401. "phpunit/phpunit": "<5.4.3",
  7402. "symfony/dependency-injection": "<4.4",
  7403. "symfony/expression-language": "<5.1",
  7404. "symfony/http-kernel": "<4.4",
  7405. "symfony/intl": "<4.4",
  7406. "symfony/property-info": "<5.3",
  7407. "symfony/translation": "<4.4",
  7408. "symfony/yaml": "<4.4"
  7409. },
  7410. "require-dev": {
  7411. "doctrine/annotations": "^1.13",
  7412. "doctrine/cache": "^1.11|^2.0",
  7413. "egulias/email-validator": "^2.1.10|^3",
  7414. "symfony/cache": "^4.4|^5.0|^6.0",
  7415. "symfony/config": "^4.4|^5.0|^6.0",
  7416. "symfony/console": "^4.4|^5.0|^6.0",
  7417. "symfony/dependency-injection": "^4.4|^5.0|^6.0",
  7418. "symfony/expression-language": "^5.1|^6.0",
  7419. "symfony/finder": "^4.4|^5.0|^6.0",
  7420. "symfony/http-client": "^4.4|^5.0|^6.0",
  7421. "symfony/http-foundation": "^4.4|^5.0|^6.0",
  7422. "symfony/http-kernel": "^4.4|^5.0|^6.0",
  7423. "symfony/intl": "^4.4|^5.0|^6.0",
  7424. "symfony/mime": "^4.4|^5.0|^6.0",
  7425. "symfony/property-access": "^4.4|^5.0|^6.0",
  7426. "symfony/property-info": "^5.3|^6.0",
  7427. "symfony/translation": "^4.4|^5.0|^6.0",
  7428. "symfony/yaml": "^4.4|^5.0|^6.0"
  7429. },
  7430. "suggest": {
  7431. "egulias/email-validator": "Strict (RFC compliant) email validation",
  7432. "psr/cache-implementation": "For using the mapping cache.",
  7433. "symfony/config": "",
  7434. "symfony/expression-language": "For using the Expression validator and the ExpressionLanguageSyntax constraints",
  7435. "symfony/http-foundation": "",
  7436. "symfony/intl": "",
  7437. "symfony/property-access": "For accessing properties within comparison constraints",
  7438. "symfony/property-info": "To automatically add NotNull and Type constraints",
  7439. "symfony/translation": "For translating validation errors.",
  7440. "symfony/yaml": ""
  7441. },
  7442. "type": "library",
  7443. "autoload": {
  7444. "psr-4": {
  7445. "Symfony\\Component\\Validator\\": ""
  7446. },
  7447. "exclude-from-classmap": [
  7448. "/Tests/"
  7449. ]
  7450. },
  7451. "notification-url": "https://packagist.org/downloads/",
  7452. "license": [
  7453. "MIT"
  7454. ],
  7455. "authors": [
  7456. {
  7457. "name": "Fabien Potencier",
  7458. "email": "fabien@symfony.com"
  7459. },
  7460. {
  7461. "name": "Symfony Community",
  7462. "homepage": "https://symfony.com/contributors"
  7463. }
  7464. ],
  7465. "description": "Provides tools to validate values",
  7466. "homepage": "https://symfony.com",
  7467. "support": {
  7468. "source": "https://github.com/symfony/validator/tree/v5.4.13"
  7469. },
  7470. "funding": [
  7471. {
  7472. "url": "https://symfony.com/sponsor",
  7473. "type": "custom"
  7474. },
  7475. {
  7476. "url": "https://github.com/fabpot",
  7477. "type": "github"
  7478. },
  7479. {
  7480. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7481. "type": "tidelift"
  7482. }
  7483. ],
  7484. "time": "2022-09-17T07:31:22+00:00"
  7485. },
  7486. {
  7487. "name": "symfony/var-dumper",
  7488. "version": "v5.4.13",
  7489. "source": {
  7490. "type": "git",
  7491. "url": "https://github.com/symfony/var-dumper.git",
  7492. "reference": "2bf2ccab581bec363191672f0df40e0c85569e1c"
  7493. },
  7494. "dist": {
  7495. "type": "zip",
  7496. "url": "https://api.github.com/repos/symfony/var-dumper/zipball/2bf2ccab581bec363191672f0df40e0c85569e1c",
  7497. "reference": "2bf2ccab581bec363191672f0df40e0c85569e1c",
  7498. "shasum": ""
  7499. },
  7500. "require": {
  7501. "php": ">=7.2.5",
  7502. "symfony/polyfill-mbstring": "~1.0",
  7503. "symfony/polyfill-php80": "^1.16"
  7504. },
  7505. "conflict": {
  7506. "phpunit/phpunit": "<5.4.3",
  7507. "symfony/console": "<4.4"
  7508. },
  7509. "require-dev": {
  7510. "ext-iconv": "*",
  7511. "symfony/console": "^4.4|^5.0|^6.0",
  7512. "symfony/process": "^4.4|^5.0|^6.0",
  7513. "symfony/uid": "^5.1|^6.0",
  7514. "twig/twig": "^2.13|^3.0.4"
  7515. },
  7516. "suggest": {
  7517. "ext-iconv": "To convert non-UTF-8 strings to UTF-8 (or symfony/polyfill-iconv in case ext-iconv cannot be used).",
  7518. "ext-intl": "To show region name in time zone dump",
  7519. "symfony/console": "To use the ServerDumpCommand and/or the bin/var-dump-server script"
  7520. },
  7521. "bin": [
  7522. "Resources/bin/var-dump-server"
  7523. ],
  7524. "type": "library",
  7525. "autoload": {
  7526. "files": [
  7527. "Resources/functions/dump.php"
  7528. ],
  7529. "psr-4": {
  7530. "Symfony\\Component\\VarDumper\\": ""
  7531. },
  7532. "exclude-from-classmap": [
  7533. "/Tests/"
  7534. ]
  7535. },
  7536. "notification-url": "https://packagist.org/downloads/",
  7537. "license": [
  7538. "MIT"
  7539. ],
  7540. "authors": [
  7541. {
  7542. "name": "Nicolas Grekas",
  7543. "email": "p@tchwork.com"
  7544. },
  7545. {
  7546. "name": "Symfony Community",
  7547. "homepage": "https://symfony.com/contributors"
  7548. }
  7549. ],
  7550. "description": "Provides mechanisms for walking through any arbitrary PHP variable",
  7551. "homepage": "https://symfony.com",
  7552. "keywords": [
  7553. "debug",
  7554. "dump"
  7555. ],
  7556. "support": {
  7557. "source": "https://github.com/symfony/var-dumper/tree/v5.4.13"
  7558. },
  7559. "funding": [
  7560. {
  7561. "url": "https://symfony.com/sponsor",
  7562. "type": "custom"
  7563. },
  7564. {
  7565. "url": "https://github.com/fabpot",
  7566. "type": "github"
  7567. },
  7568. {
  7569. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7570. "type": "tidelift"
  7571. }
  7572. ],
  7573. "time": "2022-09-06T13:23:31+00:00"
  7574. },
  7575. {
  7576. "name": "symfony/var-exporter",
  7577. "version": "v5.4.10",
  7578. "source": {
  7579. "type": "git",
  7580. "url": "https://github.com/symfony/var-exporter.git",
  7581. "reference": "8fc03ee75eeece3d9be1ef47d26d79bea1afb340"
  7582. },
  7583. "dist": {
  7584. "type": "zip",
  7585. "url": "https://api.github.com/repos/symfony/var-exporter/zipball/8fc03ee75eeece3d9be1ef47d26d79bea1afb340",
  7586. "reference": "8fc03ee75eeece3d9be1ef47d26d79bea1afb340",
  7587. "shasum": ""
  7588. },
  7589. "require": {
  7590. "php": ">=7.2.5",
  7591. "symfony/polyfill-php80": "^1.16"
  7592. },
  7593. "require-dev": {
  7594. "symfony/var-dumper": "^4.4.9|^5.0.9|^6.0"
  7595. },
  7596. "type": "library",
  7597. "autoload": {
  7598. "psr-4": {
  7599. "Symfony\\Component\\VarExporter\\": ""
  7600. },
  7601. "exclude-from-classmap": [
  7602. "/Tests/"
  7603. ]
  7604. },
  7605. "notification-url": "https://packagist.org/downloads/",
  7606. "license": [
  7607. "MIT"
  7608. ],
  7609. "authors": [
  7610. {
  7611. "name": "Nicolas Grekas",
  7612. "email": "p@tchwork.com"
  7613. },
  7614. {
  7615. "name": "Symfony Community",
  7616. "homepage": "https://symfony.com/contributors"
  7617. }
  7618. ],
  7619. "description": "Allows exporting any serializable PHP data structure to plain PHP code",
  7620. "homepage": "https://symfony.com",
  7621. "keywords": [
  7622. "clone",
  7623. "construct",
  7624. "export",
  7625. "hydrate",
  7626. "instantiate",
  7627. "serialize"
  7628. ],
  7629. "support": {
  7630. "source": "https://github.com/symfony/var-exporter/tree/v5.4.10"
  7631. },
  7632. "funding": [
  7633. {
  7634. "url": "https://symfony.com/sponsor",
  7635. "type": "custom"
  7636. },
  7637. {
  7638. "url": "https://github.com/fabpot",
  7639. "type": "github"
  7640. },
  7641. {
  7642. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7643. "type": "tidelift"
  7644. }
  7645. ],
  7646. "time": "2022-05-27T12:56:18+00:00"
  7647. },
  7648. {
  7649. "name": "symfony/web-link",
  7650. "version": "v5.4.3",
  7651. "source": {
  7652. "type": "git",
  7653. "url": "https://github.com/symfony/web-link.git",
  7654. "reference": "8b9b073390359549fec5f5d797f23bbe9e2997a5"
  7655. },
  7656. "dist": {
  7657. "type": "zip",
  7658. "url": "https://api.github.com/repos/symfony/web-link/zipball/8b9b073390359549fec5f5d797f23bbe9e2997a5",
  7659. "reference": "8b9b073390359549fec5f5d797f23bbe9e2997a5",
  7660. "shasum": ""
  7661. },
  7662. "require": {
  7663. "php": ">=7.2.5",
  7664. "psr/link": "^1.0",
  7665. "symfony/polyfill-php80": "^1.16"
  7666. },
  7667. "conflict": {
  7668. "symfony/http-kernel": "<5.3"
  7669. },
  7670. "provide": {
  7671. "psr/link-implementation": "1.0"
  7672. },
  7673. "require-dev": {
  7674. "symfony/http-kernel": "^5.3|^6.0"
  7675. },
  7676. "suggest": {
  7677. "symfony/http-kernel": ""
  7678. },
  7679. "type": "library",
  7680. "autoload": {
  7681. "psr-4": {
  7682. "Symfony\\Component\\WebLink\\": ""
  7683. },
  7684. "exclude-from-classmap": [
  7685. "/Tests/"
  7686. ]
  7687. },
  7688. "notification-url": "https://packagist.org/downloads/",
  7689. "license": [
  7690. "MIT"
  7691. ],
  7692. "authors": [
  7693. {
  7694. "name": "Kévin Dunglas",
  7695. "email": "dunglas@gmail.com"
  7696. },
  7697. {
  7698. "name": "Symfony Community",
  7699. "homepage": "https://symfony.com/contributors"
  7700. }
  7701. ],
  7702. "description": "Manages links between resources",
  7703. "homepage": "https://symfony.com",
  7704. "keywords": [
  7705. "dns-prefetch",
  7706. "http",
  7707. "http2",
  7708. "link",
  7709. "performance",
  7710. "prefetch",
  7711. "preload",
  7712. "prerender",
  7713. "psr13",
  7714. "push"
  7715. ],
  7716. "support": {
  7717. "source": "https://github.com/symfony/web-link/tree/v5.4.3"
  7718. },
  7719. "funding": [
  7720. {
  7721. "url": "https://symfony.com/sponsor",
  7722. "type": "custom"
  7723. },
  7724. {
  7725. "url": "https://github.com/fabpot",
  7726. "type": "github"
  7727. },
  7728. {
  7729. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7730. "type": "tidelift"
  7731. }
  7732. ],
  7733. "time": "2022-01-02T09:53:40+00:00"
  7734. },
  7735. {
  7736. "name": "symfony/webpack-encore-bundle",
  7737. "version": "v1.15.1",
  7738. "source": {
  7739. "type": "git",
  7740. "url": "https://github.com/symfony/webpack-encore-bundle.git",
  7741. "reference": "718673b1e758533614190ae74d07305a72bc66a9"
  7742. },
  7743. "dist": {
  7744. "type": "zip",
  7745. "url": "https://api.github.com/repos/symfony/webpack-encore-bundle/zipball/718673b1e758533614190ae74d07305a72bc66a9",
  7746. "reference": "718673b1e758533614190ae74d07305a72bc66a9",
  7747. "shasum": ""
  7748. },
  7749. "require": {
  7750. "php": ">=7.1.3",
  7751. "symfony/asset": "^4.4 || ^5.0 || ^6.0",
  7752. "symfony/config": "^4.4 || ^5.0 || ^6.0",
  7753. "symfony/dependency-injection": "^4.4 || ^5.0 || ^6.0",
  7754. "symfony/deprecation-contracts": "^2.1 || ^3.0",
  7755. "symfony/http-kernel": "^4.4 || ^5.0 || ^6.0",
  7756. "symfony/polyfill-php80": "^1.25.0",
  7757. "symfony/service-contracts": "^1.0 || ^2.0 || ^3.0"
  7758. },
  7759. "require-dev": {
  7760. "symfony/framework-bundle": "^4.4 || ^5.0 || ^6.0",
  7761. "symfony/phpunit-bridge": "^5.3 || ^6.0",
  7762. "symfony/twig-bundle": "^4.4 || ^5.0 || ^6.0",
  7763. "symfony/web-link": "^4.4 || ^5.0 || ^6.0"
  7764. },
  7765. "type": "symfony-bundle",
  7766. "extra": {
  7767. "thanks": {
  7768. "name": "symfony/webpack-encore",
  7769. "url": "https://github.com/symfony/webpack-encore"
  7770. }
  7771. },
  7772. "autoload": {
  7773. "psr-4": {
  7774. "Symfony\\WebpackEncoreBundle\\": "src"
  7775. }
  7776. },
  7777. "notification-url": "https://packagist.org/downloads/",
  7778. "license": [
  7779. "MIT"
  7780. ],
  7781. "authors": [
  7782. {
  7783. "name": "Symfony Community",
  7784. "homepage": "https://symfony.com/contributors"
  7785. }
  7786. ],
  7787. "description": "Integration with your Symfony app & Webpack Encore!",
  7788. "support": {
  7789. "issues": "https://github.com/symfony/webpack-encore-bundle/issues",
  7790. "source": "https://github.com/symfony/webpack-encore-bundle/tree/v1.15.1"
  7791. },
  7792. "funding": [
  7793. {
  7794. "url": "https://symfony.com/sponsor",
  7795. "type": "custom"
  7796. },
  7797. {
  7798. "url": "https://github.com/fabpot",
  7799. "type": "github"
  7800. },
  7801. {
  7802. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7803. "type": "tidelift"
  7804. }
  7805. ],
  7806. "time": "2022-07-13T17:07:35+00:00"
  7807. },
  7808. {
  7809. "name": "symfony/yaml",
  7810. "version": "v5.4.12",
  7811. "source": {
  7812. "type": "git",
  7813. "url": "https://github.com/symfony/yaml.git",
  7814. "reference": "7a3aa21ac8ab1a96cc6de5bbcab4bc9fc943b18c"
  7815. },
  7816. "dist": {
  7817. "type": "zip",
  7818. "url": "https://api.github.com/repos/symfony/yaml/zipball/7a3aa21ac8ab1a96cc6de5bbcab4bc9fc943b18c",
  7819. "reference": "7a3aa21ac8ab1a96cc6de5bbcab4bc9fc943b18c",
  7820. "shasum": ""
  7821. },
  7822. "require": {
  7823. "php": ">=7.2.5",
  7824. "symfony/deprecation-contracts": "^2.1|^3",
  7825. "symfony/polyfill-ctype": "^1.8"
  7826. },
  7827. "conflict": {
  7828. "symfony/console": "<5.3"
  7829. },
  7830. "require-dev": {
  7831. "symfony/console": "^5.3|^6.0"
  7832. },
  7833. "suggest": {
  7834. "symfony/console": "For validating YAML files using the lint command"
  7835. },
  7836. "bin": [
  7837. "Resources/bin/yaml-lint"
  7838. ],
  7839. "type": "library",
  7840. "autoload": {
  7841. "psr-4": {
  7842. "Symfony\\Component\\Yaml\\": ""
  7843. },
  7844. "exclude-from-classmap": [
  7845. "/Tests/"
  7846. ]
  7847. },
  7848. "notification-url": "https://packagist.org/downloads/",
  7849. "license": [
  7850. "MIT"
  7851. ],
  7852. "authors": [
  7853. {
  7854. "name": "Fabien Potencier",
  7855. "email": "fabien@symfony.com"
  7856. },
  7857. {
  7858. "name": "Symfony Community",
  7859. "homepage": "https://symfony.com/contributors"
  7860. }
  7861. ],
  7862. "description": "Loads and dumps YAML files",
  7863. "homepage": "https://symfony.com",
  7864. "support": {
  7865. "source": "https://github.com/symfony/yaml/tree/v5.4.12"
  7866. },
  7867. "funding": [
  7868. {
  7869. "url": "https://symfony.com/sponsor",
  7870. "type": "custom"
  7871. },
  7872. {
  7873. "url": "https://github.com/fabpot",
  7874. "type": "github"
  7875. },
  7876. {
  7877. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7878. "type": "tidelift"
  7879. }
  7880. ],
  7881. "time": "2022-08-02T15:52:22+00:00"
  7882. },
  7883. {
  7884. "name": "twig/extra-bundle",
  7885. "version": "v3.4.0",
  7886. "source": {
  7887. "type": "git",
  7888. "url": "https://github.com/twigphp/twig-extra-bundle.git",
  7889. "reference": "2e58256b0e9fe52f30149347c0547e4633304765"
  7890. },
  7891. "dist": {
  7892. "type": "zip",
  7893. "url": "https://api.github.com/repos/twigphp/twig-extra-bundle/zipball/2e58256b0e9fe52f30149347c0547e4633304765",
  7894. "reference": "2e58256b0e9fe52f30149347c0547e4633304765",
  7895. "shasum": ""
  7896. },
  7897. "require": {
  7898. "php": ">=7.2.5",
  7899. "symfony/framework-bundle": "^4.4|^5.0|^6.0",
  7900. "symfony/twig-bundle": "^4.4|^5.0|^6.0",
  7901. "twig/twig": "^2.7|^3.0"
  7902. },
  7903. "require-dev": {
  7904. "league/commonmark": "^1.0|^2.0",
  7905. "symfony/phpunit-bridge": "^4.4.9|^5.0.9|^6.0",
  7906. "twig/cache-extra": "^3.0",
  7907. "twig/cssinliner-extra": "^2.12|^3.0",
  7908. "twig/html-extra": "^2.12|^3.0",
  7909. "twig/inky-extra": "^2.12|^3.0",
  7910. "twig/intl-extra": "^2.12|^3.0",
  7911. "twig/markdown-extra": "^2.12|^3.0",
  7912. "twig/string-extra": "^2.12|^3.0"
  7913. },
  7914. "type": "symfony-bundle",
  7915. "extra": {
  7916. "branch-alias": {
  7917. "dev-master": "3.2-dev"
  7918. }
  7919. },
  7920. "autoload": {
  7921. "psr-4": {
  7922. "Twig\\Extra\\TwigExtraBundle\\": ""
  7923. },
  7924. "exclude-from-classmap": [
  7925. "/Tests/"
  7926. ]
  7927. },
  7928. "notification-url": "https://packagist.org/downloads/",
  7929. "license": [
  7930. "MIT"
  7931. ],
  7932. "authors": [
  7933. {
  7934. "name": "Fabien Potencier",
  7935. "email": "fabien@symfony.com",
  7936. "homepage": "http://fabien.potencier.org",
  7937. "role": "Lead Developer"
  7938. }
  7939. ],
  7940. "description": "A Symfony bundle for extra Twig extensions",
  7941. "homepage": "https://twig.symfony.com",
  7942. "keywords": [
  7943. "bundle",
  7944. "extra",
  7945. "twig"
  7946. ],
  7947. "support": {
  7948. "source": "https://github.com/twigphp/twig-extra-bundle/tree/v3.4.0"
  7949. },
  7950. "funding": [
  7951. {
  7952. "url": "https://github.com/fabpot",
  7953. "type": "github"
  7954. },
  7955. {
  7956. "url": "https://tidelift.com/funding/github/packagist/twig/twig",
  7957. "type": "tidelift"
  7958. }
  7959. ],
  7960. "time": "2022-01-04T13:58:53+00:00"
  7961. },
  7962. {
  7963. "name": "twig/markdown-extra",
  7964. "version": "v3.4.0",
  7965. "source": {
  7966. "type": "git",
  7967. "url": "https://github.com/twigphp/markdown-extra.git",
  7968. "reference": "25ed505b6ffd3b00f922ca682489dfbaf44eb1f7"
  7969. },
  7970. "dist": {
  7971. "type": "zip",
  7972. "url": "https://api.github.com/repos/twigphp/markdown-extra/zipball/25ed505b6ffd3b00f922ca682489dfbaf44eb1f7",
  7973. "reference": "25ed505b6ffd3b00f922ca682489dfbaf44eb1f7",
  7974. "shasum": ""
  7975. },
  7976. "require": {
  7977. "php": ">=7.1.3",
  7978. "twig/twig": "^2.7|^3.0"
  7979. },
  7980. "require-dev": {
  7981. "erusev/parsedown": "^1.7",
  7982. "league/commonmark": "^1.0|^2.0",
  7983. "league/html-to-markdown": "^4.8|^5.0",
  7984. "michelf/php-markdown": "^1.8",
  7985. "symfony/phpunit-bridge": "^4.4.9|^5.0.9|^6.0"
  7986. },
  7987. "type": "library",
  7988. "extra": {
  7989. "branch-alias": {
  7990. "dev-master": "3.2-dev"
  7991. }
  7992. },
  7993. "autoload": {
  7994. "psr-4": {
  7995. "Twig\\Extra\\Markdown\\": ""
  7996. },
  7997. "exclude-from-classmap": [
  7998. "/Tests/"
  7999. ]
  8000. },
  8001. "notification-url": "https://packagist.org/downloads/",
  8002. "license": [
  8003. "MIT"
  8004. ],
  8005. "authors": [
  8006. {
  8007. "name": "Fabien Potencier",
  8008. "email": "fabien@symfony.com",
  8009. "homepage": "http://fabien.potencier.org",
  8010. "role": "Lead Developer"
  8011. }
  8012. ],
  8013. "description": "A Twig extension for Markdown",
  8014. "homepage": "https://twig.symfony.com",
  8015. "keywords": [
  8016. "html",
  8017. "markdown",
  8018. "twig"
  8019. ],
  8020. "support": {
  8021. "source": "https://github.com/twigphp/markdown-extra/tree/v3.4.0"
  8022. },
  8023. "funding": [
  8024. {
  8025. "url": "https://github.com/fabpot",
  8026. "type": "github"
  8027. },
  8028. {
  8029. "url": "https://tidelift.com/funding/github/packagist/twig/twig",
  8030. "type": "tidelift"
  8031. }
  8032. ],
  8033. "time": "2022-01-29T15:34:05+00:00"
  8034. },
  8035. {
  8036. "name": "twig/twig",
  8037. "version": "v3.4.3",
  8038. "source": {
  8039. "type": "git",
  8040. "url": "https://github.com/twigphp/Twig.git",
  8041. "reference": "c38fd6b0b7f370c198db91ffd02e23b517426b58"
  8042. },
  8043. "dist": {
  8044. "type": "zip",
  8045. "url": "https://api.github.com/repos/twigphp/Twig/zipball/c38fd6b0b7f370c198db91ffd02e23b517426b58",
  8046. "reference": "c38fd6b0b7f370c198db91ffd02e23b517426b58",
  8047. "shasum": ""
  8048. },
  8049. "require": {
  8050. "php": ">=7.2.5",
  8051. "symfony/polyfill-ctype": "^1.8",
  8052. "symfony/polyfill-mbstring": "^1.3"
  8053. },
  8054. "require-dev": {
  8055. "psr/container": "^1.0",
  8056. "symfony/phpunit-bridge": "^4.4.9|^5.0.9|^6.0"
  8057. },
  8058. "type": "library",
  8059. "extra": {
  8060. "branch-alias": {
  8061. "dev-master": "3.4-dev"
  8062. }
  8063. },
  8064. "autoload": {
  8065. "psr-4": {
  8066. "Twig\\": "src/"
  8067. }
  8068. },
  8069. "notification-url": "https://packagist.org/downloads/",
  8070. "license": [
  8071. "BSD-3-Clause"
  8072. ],
  8073. "authors": [
  8074. {
  8075. "name": "Fabien Potencier",
  8076. "email": "fabien@symfony.com",
  8077. "homepage": "http://fabien.potencier.org",
  8078. "role": "Lead Developer"
  8079. },
  8080. {
  8081. "name": "Twig Team",
  8082. "role": "Contributors"
  8083. },
  8084. {
  8085. "name": "Armin Ronacher",
  8086. "email": "armin.ronacher@active-4.com",
  8087. "role": "Project Founder"
  8088. }
  8089. ],
  8090. "description": "Twig, the flexible, fast, and secure template language for PHP",
  8091. "homepage": "https://twig.symfony.com",
  8092. "keywords": [
  8093. "templating"
  8094. ],
  8095. "support": {
  8096. "issues": "https://github.com/twigphp/Twig/issues",
  8097. "source": "https://github.com/twigphp/Twig/tree/v3.4.3"
  8098. },
  8099. "funding": [
  8100. {
  8101. "url": "https://github.com/fabpot",
  8102. "type": "github"
  8103. },
  8104. {
  8105. "url": "https://tidelift.com/funding/github/packagist/twig/twig",
  8106. "type": "tidelift"
  8107. }
  8108. ],
  8109. "time": "2022-09-28T08:42:51+00:00"
  8110. },
  8111. {
  8112. "name": "webmozart/assert",
  8113. "version": "1.11.0",
  8114. "source": {
  8115. "type": "git",
  8116. "url": "https://github.com/webmozarts/assert.git",
  8117. "reference": "11cb2199493b2f8a3b53e7f19068fc6aac760991"
  8118. },
  8119. "dist": {
  8120. "type": "zip",
  8121. "url": "https://api.github.com/repos/webmozarts/assert/zipball/11cb2199493b2f8a3b53e7f19068fc6aac760991",
  8122. "reference": "11cb2199493b2f8a3b53e7f19068fc6aac760991",
  8123. "shasum": ""
  8124. },
  8125. "require": {
  8126. "ext-ctype": "*",
  8127. "php": "^7.2 || ^8.0"
  8128. },
  8129. "conflict": {
  8130. "phpstan/phpstan": "<0.12.20",
  8131. "vimeo/psalm": "<4.6.1 || 4.6.2"
  8132. },
  8133. "require-dev": {
  8134. "phpunit/phpunit": "^8.5.13"
  8135. },
  8136. "type": "library",
  8137. "extra": {
  8138. "branch-alias": {
  8139. "dev-master": "1.10-dev"
  8140. }
  8141. },
  8142. "autoload": {
  8143. "psr-4": {
  8144. "Webmozart\\Assert\\": "src/"
  8145. }
  8146. },
  8147. "notification-url": "https://packagist.org/downloads/",
  8148. "license": [
  8149. "MIT"
  8150. ],
  8151. "authors": [
  8152. {
  8153. "name": "Bernhard Schussek",
  8154. "email": "bschussek@gmail.com"
  8155. }
  8156. ],
  8157. "description": "Assertions to validate method input/output with nice error messages.",
  8158. "keywords": [
  8159. "assert",
  8160. "check",
  8161. "validate"
  8162. ],
  8163. "support": {
  8164. "issues": "https://github.com/webmozarts/assert/issues",
  8165. "source": "https://github.com/webmozarts/assert/tree/1.11.0"
  8166. },
  8167. "time": "2022-06-03T18:03:27+00:00"
  8168. }
  8169. ],
  8170. "packages-dev": [
  8171. {
  8172. "name": "myclabs/deep-copy",
  8173. "version": "1.11.0",
  8174. "source": {
  8175. "type": "git",
  8176. "url": "https://github.com/myclabs/DeepCopy.git",
  8177. "reference": "14daed4296fae74d9e3201d2c4925d1acb7aa614"
  8178. },
  8179. "dist": {
  8180. "type": "zip",
  8181. "url": "https://api.github.com/repos/myclabs/DeepCopy/zipball/14daed4296fae74d9e3201d2c4925d1acb7aa614",
  8182. "reference": "14daed4296fae74d9e3201d2c4925d1acb7aa614",
  8183. "shasum": ""
  8184. },
  8185. "require": {
  8186. "php": "^7.1 || ^8.0"
  8187. },
  8188. "conflict": {
  8189. "doctrine/collections": "<1.6.8",
  8190. "doctrine/common": "<2.13.3 || >=3,<3.2.2"
  8191. },
  8192. "require-dev": {
  8193. "doctrine/collections": "^1.6.8",
  8194. "doctrine/common": "^2.13.3 || ^3.2.2",
  8195. "phpunit/phpunit": "^7.5.20 || ^8.5.23 || ^9.5.13"
  8196. },
  8197. "type": "library",
  8198. "autoload": {
  8199. "files": [
  8200. "src/DeepCopy/deep_copy.php"
  8201. ],
  8202. "psr-4": {
  8203. "DeepCopy\\": "src/DeepCopy/"
  8204. }
  8205. },
  8206. "notification-url": "https://packagist.org/downloads/",
  8207. "license": [
  8208. "MIT"
  8209. ],
  8210. "description": "Create deep copies (clones) of your objects",
  8211. "keywords": [
  8212. "clone",
  8213. "copy",
  8214. "duplicate",
  8215. "object",
  8216. "object graph"
  8217. ],
  8218. "support": {
  8219. "issues": "https://github.com/myclabs/DeepCopy/issues",
  8220. "source": "https://github.com/myclabs/DeepCopy/tree/1.11.0"
  8221. },
  8222. "funding": [
  8223. {
  8224. "url": "https://tidelift.com/funding/github/packagist/myclabs/deep-copy",
  8225. "type": "tidelift"
  8226. }
  8227. ],
  8228. "time": "2022-03-03T13:19:32+00:00"
  8229. },
  8230. {
  8231. "name": "nikic/php-parser",
  8232. "version": "v4.15.1",
  8233. "source": {
  8234. "type": "git",
  8235. "url": "https://github.com/nikic/PHP-Parser.git",
  8236. "reference": "0ef6c55a3f47f89d7a374e6f835197a0b5fcf900"
  8237. },
  8238. "dist": {
  8239. "type": "zip",
  8240. "url": "https://api.github.com/repos/nikic/PHP-Parser/zipball/0ef6c55a3f47f89d7a374e6f835197a0b5fcf900",
  8241. "reference": "0ef6c55a3f47f89d7a374e6f835197a0b5fcf900",
  8242. "shasum": ""
  8243. },
  8244. "require": {
  8245. "ext-tokenizer": "*",
  8246. "php": ">=7.0"
  8247. },
  8248. "require-dev": {
  8249. "ircmaxell/php-yacc": "^0.0.7",
  8250. "phpunit/phpunit": "^6.5 || ^7.0 || ^8.0 || ^9.0"
  8251. },
  8252. "bin": [
  8253. "bin/php-parse"
  8254. ],
  8255. "type": "library",
  8256. "extra": {
  8257. "branch-alias": {
  8258. "dev-master": "4.9-dev"
  8259. }
  8260. },
  8261. "autoload": {
  8262. "psr-4": {
  8263. "PhpParser\\": "lib/PhpParser"
  8264. }
  8265. },
  8266. "notification-url": "https://packagist.org/downloads/",
  8267. "license": [
  8268. "BSD-3-Clause"
  8269. ],
  8270. "authors": [
  8271. {
  8272. "name": "Nikita Popov"
  8273. }
  8274. ],
  8275. "description": "A PHP parser written in PHP",
  8276. "keywords": [
  8277. "parser",
  8278. "php"
  8279. ],
  8280. "support": {
  8281. "issues": "https://github.com/nikic/PHP-Parser/issues",
  8282. "source": "https://github.com/nikic/PHP-Parser/tree/v4.15.1"
  8283. },
  8284. "time": "2022-09-04T07:30:47+00:00"
  8285. },
  8286. {
  8287. "name": "phar-io/manifest",
  8288. "version": "2.0.3",
  8289. "source": {
  8290. "type": "git",
  8291. "url": "https://github.com/phar-io/manifest.git",
  8292. "reference": "97803eca37d319dfa7826cc2437fc020857acb53"
  8293. },
  8294. "dist": {
  8295. "type": "zip",
  8296. "url": "https://api.github.com/repos/phar-io/manifest/zipball/97803eca37d319dfa7826cc2437fc020857acb53",
  8297. "reference": "97803eca37d319dfa7826cc2437fc020857acb53",
  8298. "shasum": ""
  8299. },
  8300. "require": {
  8301. "ext-dom": "*",
  8302. "ext-phar": "*",
  8303. "ext-xmlwriter": "*",
  8304. "phar-io/version": "^3.0.1",
  8305. "php": "^7.2 || ^8.0"
  8306. },
  8307. "type": "library",
  8308. "extra": {
  8309. "branch-alias": {
  8310. "dev-master": "2.0.x-dev"
  8311. }
  8312. },
  8313. "autoload": {
  8314. "classmap": [
  8315. "src/"
  8316. ]
  8317. },
  8318. "notification-url": "https://packagist.org/downloads/",
  8319. "license": [
  8320. "BSD-3-Clause"
  8321. ],
  8322. "authors": [
  8323. {
  8324. "name": "Arne Blankerts",
  8325. "email": "arne@blankerts.de",
  8326. "role": "Developer"
  8327. },
  8328. {
  8329. "name": "Sebastian Heuer",
  8330. "email": "sebastian@phpeople.de",
  8331. "role": "Developer"
  8332. },
  8333. {
  8334. "name": "Sebastian Bergmann",
  8335. "email": "sebastian@phpunit.de",
  8336. "role": "Developer"
  8337. }
  8338. ],
  8339. "description": "Component for reading phar.io manifest information from a PHP Archive (PHAR)",
  8340. "support": {
  8341. "issues": "https://github.com/phar-io/manifest/issues",
  8342. "source": "https://github.com/phar-io/manifest/tree/2.0.3"
  8343. },
  8344. "time": "2021-07-20T11:28:43+00:00"
  8345. },
  8346. {
  8347. "name": "phar-io/version",
  8348. "version": "3.2.1",
  8349. "source": {
  8350. "type": "git",
  8351. "url": "https://github.com/phar-io/version.git",
  8352. "reference": "4f7fd7836c6f332bb2933569e566a0d6c4cbed74"
  8353. },
  8354. "dist": {
  8355. "type": "zip",
  8356. "url": "https://api.github.com/repos/phar-io/version/zipball/4f7fd7836c6f332bb2933569e566a0d6c4cbed74",
  8357. "reference": "4f7fd7836c6f332bb2933569e566a0d6c4cbed74",
  8358. "shasum": ""
  8359. },
  8360. "require": {
  8361. "php": "^7.2 || ^8.0"
  8362. },
  8363. "type": "library",
  8364. "autoload": {
  8365. "classmap": [
  8366. "src/"
  8367. ]
  8368. },
  8369. "notification-url": "https://packagist.org/downloads/",
  8370. "license": [
  8371. "BSD-3-Clause"
  8372. ],
  8373. "authors": [
  8374. {
  8375. "name": "Arne Blankerts",
  8376. "email": "arne@blankerts.de",
  8377. "role": "Developer"
  8378. },
  8379. {
  8380. "name": "Sebastian Heuer",
  8381. "email": "sebastian@phpeople.de",
  8382. "role": "Developer"
  8383. },
  8384. {
  8385. "name": "Sebastian Bergmann",
  8386. "email": "sebastian@phpunit.de",
  8387. "role": "Developer"
  8388. }
  8389. ],
  8390. "description": "Library for handling version information and constraints",
  8391. "support": {
  8392. "issues": "https://github.com/phar-io/version/issues",
  8393. "source": "https://github.com/phar-io/version/tree/3.2.1"
  8394. },
  8395. "time": "2022-02-21T01:04:05+00:00"
  8396. },
  8397. {
  8398. "name": "phpunit/php-code-coverage",
  8399. "version": "9.2.17",
  8400. "source": {
  8401. "type": "git",
  8402. "url": "https://github.com/sebastianbergmann/php-code-coverage.git",
  8403. "reference": "aa94dc41e8661fe90c7316849907cba3007b10d8"
  8404. },
  8405. "dist": {
  8406. "type": "zip",
  8407. "url": "https://api.github.com/repos/sebastianbergmann/php-code-coverage/zipball/aa94dc41e8661fe90c7316849907cba3007b10d8",
  8408. "reference": "aa94dc41e8661fe90c7316849907cba3007b10d8",
  8409. "shasum": ""
  8410. },
  8411. "require": {
  8412. "ext-dom": "*",
  8413. "ext-libxml": "*",
  8414. "ext-xmlwriter": "*",
  8415. "nikic/php-parser": "^4.14",
  8416. "php": ">=7.3",
  8417. "phpunit/php-file-iterator": "^3.0.3",
  8418. "phpunit/php-text-template": "^2.0.2",
  8419. "sebastian/code-unit-reverse-lookup": "^2.0.2",
  8420. "sebastian/complexity": "^2.0",
  8421. "sebastian/environment": "^5.1.2",
  8422. "sebastian/lines-of-code": "^1.0.3",
  8423. "sebastian/version": "^3.0.1",
  8424. "theseer/tokenizer": "^1.2.0"
  8425. },
  8426. "require-dev": {
  8427. "phpunit/phpunit": "^9.3"
  8428. },
  8429. "suggest": {
  8430. "ext-pcov": "*",
  8431. "ext-xdebug": "*"
  8432. },
  8433. "type": "library",
  8434. "extra": {
  8435. "branch-alias": {
  8436. "dev-master": "9.2-dev"
  8437. }
  8438. },
  8439. "autoload": {
  8440. "classmap": [
  8441. "src/"
  8442. ]
  8443. },
  8444. "notification-url": "https://packagist.org/downloads/",
  8445. "license": [
  8446. "BSD-3-Clause"
  8447. ],
  8448. "authors": [
  8449. {
  8450. "name": "Sebastian Bergmann",
  8451. "email": "sebastian@phpunit.de",
  8452. "role": "lead"
  8453. }
  8454. ],
  8455. "description": "Library that provides collection, processing, and rendering functionality for PHP code coverage information.",
  8456. "homepage": "https://github.com/sebastianbergmann/php-code-coverage",
  8457. "keywords": [
  8458. "coverage",
  8459. "testing",
  8460. "xunit"
  8461. ],
  8462. "support": {
  8463. "issues": "https://github.com/sebastianbergmann/php-code-coverage/issues",
  8464. "source": "https://github.com/sebastianbergmann/php-code-coverage/tree/9.2.17"
  8465. },
  8466. "funding": [
  8467. {
  8468. "url": "https://github.com/sebastianbergmann",
  8469. "type": "github"
  8470. }
  8471. ],
  8472. "time": "2022-08-30T12:24:04+00:00"
  8473. },
  8474. {
  8475. "name": "phpunit/php-file-iterator",
  8476. "version": "3.0.6",
  8477. "source": {
  8478. "type": "git",
  8479. "url": "https://github.com/sebastianbergmann/php-file-iterator.git",
  8480. "reference": "cf1c2e7c203ac650e352f4cc675a7021e7d1b3cf"
  8481. },
  8482. "dist": {
  8483. "type": "zip",
  8484. "url": "https://api.github.com/repos/sebastianbergmann/php-file-iterator/zipball/cf1c2e7c203ac650e352f4cc675a7021e7d1b3cf",
  8485. "reference": "cf1c2e7c203ac650e352f4cc675a7021e7d1b3cf",
  8486. "shasum": ""
  8487. },
  8488. "require": {
  8489. "php": ">=7.3"
  8490. },
  8491. "require-dev": {
  8492. "phpunit/phpunit": "^9.3"
  8493. },
  8494. "type": "library",
  8495. "extra": {
  8496. "branch-alias": {
  8497. "dev-master": "3.0-dev"
  8498. }
  8499. },
  8500. "autoload": {
  8501. "classmap": [
  8502. "src/"
  8503. ]
  8504. },
  8505. "notification-url": "https://packagist.org/downloads/",
  8506. "license": [
  8507. "BSD-3-Clause"
  8508. ],
  8509. "authors": [
  8510. {
  8511. "name": "Sebastian Bergmann",
  8512. "email": "sebastian@phpunit.de",
  8513. "role": "lead"
  8514. }
  8515. ],
  8516. "description": "FilterIterator implementation that filters files based on a list of suffixes.",
  8517. "homepage": "https://github.com/sebastianbergmann/php-file-iterator/",
  8518. "keywords": [
  8519. "filesystem",
  8520. "iterator"
  8521. ],
  8522. "support": {
  8523. "issues": "https://github.com/sebastianbergmann/php-file-iterator/issues",
  8524. "source": "https://github.com/sebastianbergmann/php-file-iterator/tree/3.0.6"
  8525. },
  8526. "funding": [
  8527. {
  8528. "url": "https://github.com/sebastianbergmann",
  8529. "type": "github"
  8530. }
  8531. ],
  8532. "time": "2021-12-02T12:48:52+00:00"
  8533. },
  8534. {
  8535. "name": "phpunit/php-invoker",
  8536. "version": "3.1.1",
  8537. "source": {
  8538. "type": "git",
  8539. "url": "https://github.com/sebastianbergmann/php-invoker.git",
  8540. "reference": "5a10147d0aaf65b58940a0b72f71c9ac0423cc67"
  8541. },
  8542. "dist": {
  8543. "type": "zip",
  8544. "url": "https://api.github.com/repos/sebastianbergmann/php-invoker/zipball/5a10147d0aaf65b58940a0b72f71c9ac0423cc67",
  8545. "reference": "5a10147d0aaf65b58940a0b72f71c9ac0423cc67",
  8546. "shasum": ""
  8547. },
  8548. "require": {
  8549. "php": ">=7.3"
  8550. },
  8551. "require-dev": {
  8552. "ext-pcntl": "*",
  8553. "phpunit/phpunit": "^9.3"
  8554. },
  8555. "suggest": {
  8556. "ext-pcntl": "*"
  8557. },
  8558. "type": "library",
  8559. "extra": {
  8560. "branch-alias": {
  8561. "dev-master": "3.1-dev"
  8562. }
  8563. },
  8564. "autoload": {
  8565. "classmap": [
  8566. "src/"
  8567. ]
  8568. },
  8569. "notification-url": "https://packagist.org/downloads/",
  8570. "license": [
  8571. "BSD-3-Clause"
  8572. ],
  8573. "authors": [
  8574. {
  8575. "name": "Sebastian Bergmann",
  8576. "email": "sebastian@phpunit.de",
  8577. "role": "lead"
  8578. }
  8579. ],
  8580. "description": "Invoke callables with a timeout",
  8581. "homepage": "https://github.com/sebastianbergmann/php-invoker/",
  8582. "keywords": [
  8583. "process"
  8584. ],
  8585. "support": {
  8586. "issues": "https://github.com/sebastianbergmann/php-invoker/issues",
  8587. "source": "https://github.com/sebastianbergmann/php-invoker/tree/3.1.1"
  8588. },
  8589. "funding": [
  8590. {
  8591. "url": "https://github.com/sebastianbergmann",
  8592. "type": "github"
  8593. }
  8594. ],
  8595. "time": "2020-09-28T05:58:55+00:00"
  8596. },
  8597. {
  8598. "name": "phpunit/php-text-template",
  8599. "version": "2.0.4",
  8600. "source": {
  8601. "type": "git",
  8602. "url": "https://github.com/sebastianbergmann/php-text-template.git",
  8603. "reference": "5da5f67fc95621df9ff4c4e5a84d6a8a2acf7c28"
  8604. },
  8605. "dist": {
  8606. "type": "zip",
  8607. "url": "https://api.github.com/repos/sebastianbergmann/php-text-template/zipball/5da5f67fc95621df9ff4c4e5a84d6a8a2acf7c28",
  8608. "reference": "5da5f67fc95621df9ff4c4e5a84d6a8a2acf7c28",
  8609. "shasum": ""
  8610. },
  8611. "require": {
  8612. "php": ">=7.3"
  8613. },
  8614. "require-dev": {
  8615. "phpunit/phpunit": "^9.3"
  8616. },
  8617. "type": "library",
  8618. "extra": {
  8619. "branch-alias": {
  8620. "dev-master": "2.0-dev"
  8621. }
  8622. },
  8623. "autoload": {
  8624. "classmap": [
  8625. "src/"
  8626. ]
  8627. },
  8628. "notification-url": "https://packagist.org/downloads/",
  8629. "license": [
  8630. "BSD-3-Clause"
  8631. ],
  8632. "authors": [
  8633. {
  8634. "name": "Sebastian Bergmann",
  8635. "email": "sebastian@phpunit.de",
  8636. "role": "lead"
  8637. }
  8638. ],
  8639. "description": "Simple template engine.",
  8640. "homepage": "https://github.com/sebastianbergmann/php-text-template/",
  8641. "keywords": [
  8642. "template"
  8643. ],
  8644. "support": {
  8645. "issues": "https://github.com/sebastianbergmann/php-text-template/issues",
  8646. "source": "https://github.com/sebastianbergmann/php-text-template/tree/2.0.4"
  8647. },
  8648. "funding": [
  8649. {
  8650. "url": "https://github.com/sebastianbergmann",
  8651. "type": "github"
  8652. }
  8653. ],
  8654. "time": "2020-10-26T05:33:50+00:00"
  8655. },
  8656. {
  8657. "name": "phpunit/php-timer",
  8658. "version": "5.0.3",
  8659. "source": {
  8660. "type": "git",
  8661. "url": "https://github.com/sebastianbergmann/php-timer.git",
  8662. "reference": "5a63ce20ed1b5bf577850e2c4e87f4aa902afbd2"
  8663. },
  8664. "dist": {
  8665. "type": "zip",
  8666. "url": "https://api.github.com/repos/sebastianbergmann/php-timer/zipball/5a63ce20ed1b5bf577850e2c4e87f4aa902afbd2",
  8667. "reference": "5a63ce20ed1b5bf577850e2c4e87f4aa902afbd2",
  8668. "shasum": ""
  8669. },
  8670. "require": {
  8671. "php": ">=7.3"
  8672. },
  8673. "require-dev": {
  8674. "phpunit/phpunit": "^9.3"
  8675. },
  8676. "type": "library",
  8677. "extra": {
  8678. "branch-alias": {
  8679. "dev-master": "5.0-dev"
  8680. }
  8681. },
  8682. "autoload": {
  8683. "classmap": [
  8684. "src/"
  8685. ]
  8686. },
  8687. "notification-url": "https://packagist.org/downloads/",
  8688. "license": [
  8689. "BSD-3-Clause"
  8690. ],
  8691. "authors": [
  8692. {
  8693. "name": "Sebastian Bergmann",
  8694. "email": "sebastian@phpunit.de",
  8695. "role": "lead"
  8696. }
  8697. ],
  8698. "description": "Utility class for timing",
  8699. "homepage": "https://github.com/sebastianbergmann/php-timer/",
  8700. "keywords": [
  8701. "timer"
  8702. ],
  8703. "support": {
  8704. "issues": "https://github.com/sebastianbergmann/php-timer/issues",
  8705. "source": "https://github.com/sebastianbergmann/php-timer/tree/5.0.3"
  8706. },
  8707. "funding": [
  8708. {
  8709. "url": "https://github.com/sebastianbergmann",
  8710. "type": "github"
  8711. }
  8712. ],
  8713. "time": "2020-10-26T13:16:10+00:00"
  8714. },
  8715. {
  8716. "name": "phpunit/phpunit",
  8717. "version": "9.5.25",
  8718. "source": {
  8719. "type": "git",
  8720. "url": "https://github.com/sebastianbergmann/phpunit.git",
  8721. "reference": "3e6f90ca7e3d02025b1d147bd8d4a89fd4ca8a1d"
  8722. },
  8723. "dist": {
  8724. "type": "zip",
  8725. "url": "https://api.github.com/repos/sebastianbergmann/phpunit/zipball/3e6f90ca7e3d02025b1d147bd8d4a89fd4ca8a1d",
  8726. "reference": "3e6f90ca7e3d02025b1d147bd8d4a89fd4ca8a1d",
  8727. "shasum": ""
  8728. },
  8729. "require": {
  8730. "doctrine/instantiator": "^1.3.1",
  8731. "ext-dom": "*",
  8732. "ext-json": "*",
  8733. "ext-libxml": "*",
  8734. "ext-mbstring": "*",
  8735. "ext-xml": "*",
  8736. "ext-xmlwriter": "*",
  8737. "myclabs/deep-copy": "^1.10.1",
  8738. "phar-io/manifest": "^2.0.3",
  8739. "phar-io/version": "^3.0.2",
  8740. "php": ">=7.3",
  8741. "phpunit/php-code-coverage": "^9.2.13",
  8742. "phpunit/php-file-iterator": "^3.0.5",
  8743. "phpunit/php-invoker": "^3.1.1",
  8744. "phpunit/php-text-template": "^2.0.3",
  8745. "phpunit/php-timer": "^5.0.2",
  8746. "sebastian/cli-parser": "^1.0.1",
  8747. "sebastian/code-unit": "^1.0.6",
  8748. "sebastian/comparator": "^4.0.8",
  8749. "sebastian/diff": "^4.0.3",
  8750. "sebastian/environment": "^5.1.3",
  8751. "sebastian/exporter": "^4.0.5",
  8752. "sebastian/global-state": "^5.0.1",
  8753. "sebastian/object-enumerator": "^4.0.3",
  8754. "sebastian/resource-operations": "^3.0.3",
  8755. "sebastian/type": "^3.2",
  8756. "sebastian/version": "^3.0.2"
  8757. },
  8758. "suggest": {
  8759. "ext-soap": "*",
  8760. "ext-xdebug": "*"
  8761. },
  8762. "bin": [
  8763. "phpunit"
  8764. ],
  8765. "type": "library",
  8766. "extra": {
  8767. "branch-alias": {
  8768. "dev-master": "9.5-dev"
  8769. }
  8770. },
  8771. "autoload": {
  8772. "files": [
  8773. "src/Framework/Assert/Functions.php"
  8774. ],
  8775. "classmap": [
  8776. "src/"
  8777. ]
  8778. },
  8779. "notification-url": "https://packagist.org/downloads/",
  8780. "license": [
  8781. "BSD-3-Clause"
  8782. ],
  8783. "authors": [
  8784. {
  8785. "name": "Sebastian Bergmann",
  8786. "email": "sebastian@phpunit.de",
  8787. "role": "lead"
  8788. }
  8789. ],
  8790. "description": "The PHP Unit Testing framework.",
  8791. "homepage": "https://phpunit.de/",
  8792. "keywords": [
  8793. "phpunit",
  8794. "testing",
  8795. "xunit"
  8796. ],
  8797. "support": {
  8798. "issues": "https://github.com/sebastianbergmann/phpunit/issues",
  8799. "source": "https://github.com/sebastianbergmann/phpunit/tree/9.5.25"
  8800. },
  8801. "funding": [
  8802. {
  8803. "url": "https://phpunit.de/sponsors.html",
  8804. "type": "custom"
  8805. },
  8806. {
  8807. "url": "https://github.com/sebastianbergmann",
  8808. "type": "github"
  8809. },
  8810. {
  8811. "url": "https://tidelift.com/funding/github/packagist/phpunit/phpunit",
  8812. "type": "tidelift"
  8813. }
  8814. ],
  8815. "time": "2022-09-25T03:44:45+00:00"
  8816. },
  8817. {
  8818. "name": "sebastian/cli-parser",
  8819. "version": "1.0.1",
  8820. "source": {
  8821. "type": "git",
  8822. "url": "https://github.com/sebastianbergmann/cli-parser.git",
  8823. "reference": "442e7c7e687e42adc03470c7b668bc4b2402c0b2"
  8824. },
  8825. "dist": {
  8826. "type": "zip",
  8827. "url": "https://api.github.com/repos/sebastianbergmann/cli-parser/zipball/442e7c7e687e42adc03470c7b668bc4b2402c0b2",
  8828. "reference": "442e7c7e687e42adc03470c7b668bc4b2402c0b2",
  8829. "shasum": ""
  8830. },
  8831. "require": {
  8832. "php": ">=7.3"
  8833. },
  8834. "require-dev": {
  8835. "phpunit/phpunit": "^9.3"
  8836. },
  8837. "type": "library",
  8838. "extra": {
  8839. "branch-alias": {
  8840. "dev-master": "1.0-dev"
  8841. }
  8842. },
  8843. "autoload": {
  8844. "classmap": [
  8845. "src/"
  8846. ]
  8847. },
  8848. "notification-url": "https://packagist.org/downloads/",
  8849. "license": [
  8850. "BSD-3-Clause"
  8851. ],
  8852. "authors": [
  8853. {
  8854. "name": "Sebastian Bergmann",
  8855. "email": "sebastian@phpunit.de",
  8856. "role": "lead"
  8857. }
  8858. ],
  8859. "description": "Library for parsing CLI options",
  8860. "homepage": "https://github.com/sebastianbergmann/cli-parser",
  8861. "support": {
  8862. "issues": "https://github.com/sebastianbergmann/cli-parser/issues",
  8863. "source": "https://github.com/sebastianbergmann/cli-parser/tree/1.0.1"
  8864. },
  8865. "funding": [
  8866. {
  8867. "url": "https://github.com/sebastianbergmann",
  8868. "type": "github"
  8869. }
  8870. ],
  8871. "time": "2020-09-28T06:08:49+00:00"
  8872. },
  8873. {
  8874. "name": "sebastian/code-unit",
  8875. "version": "1.0.8",
  8876. "source": {
  8877. "type": "git",
  8878. "url": "https://github.com/sebastianbergmann/code-unit.git",
  8879. "reference": "1fc9f64c0927627ef78ba436c9b17d967e68e120"
  8880. },
  8881. "dist": {
  8882. "type": "zip",
  8883. "url": "https://api.github.com/repos/sebastianbergmann/code-unit/zipball/1fc9f64c0927627ef78ba436c9b17d967e68e120",
  8884. "reference": "1fc9f64c0927627ef78ba436c9b17d967e68e120",
  8885. "shasum": ""
  8886. },
  8887. "require": {
  8888. "php": ">=7.3"
  8889. },
  8890. "require-dev": {
  8891. "phpunit/phpunit": "^9.3"
  8892. },
  8893. "type": "library",
  8894. "extra": {
  8895. "branch-alias": {
  8896. "dev-master": "1.0-dev"
  8897. }
  8898. },
  8899. "autoload": {
  8900. "classmap": [
  8901. "src/"
  8902. ]
  8903. },
  8904. "notification-url": "https://packagist.org/downloads/",
  8905. "license": [
  8906. "BSD-3-Clause"
  8907. ],
  8908. "authors": [
  8909. {
  8910. "name": "Sebastian Bergmann",
  8911. "email": "sebastian@phpunit.de",
  8912. "role": "lead"
  8913. }
  8914. ],
  8915. "description": "Collection of value objects that represent the PHP code units",
  8916. "homepage": "https://github.com/sebastianbergmann/code-unit",
  8917. "support": {
  8918. "issues": "https://github.com/sebastianbergmann/code-unit/issues",
  8919. "source": "https://github.com/sebastianbergmann/code-unit/tree/1.0.8"
  8920. },
  8921. "funding": [
  8922. {
  8923. "url": "https://github.com/sebastianbergmann",
  8924. "type": "github"
  8925. }
  8926. ],
  8927. "time": "2020-10-26T13:08:54+00:00"
  8928. },
  8929. {
  8930. "name": "sebastian/code-unit-reverse-lookup",
  8931. "version": "2.0.3",
  8932. "source": {
  8933. "type": "git",
  8934. "url": "https://github.com/sebastianbergmann/code-unit-reverse-lookup.git",
  8935. "reference": "ac91f01ccec49fb77bdc6fd1e548bc70f7faa3e5"
  8936. },
  8937. "dist": {
  8938. "type": "zip",
  8939. "url": "https://api.github.com/repos/sebastianbergmann/code-unit-reverse-lookup/zipball/ac91f01ccec49fb77bdc6fd1e548bc70f7faa3e5",
  8940. "reference": "ac91f01ccec49fb77bdc6fd1e548bc70f7faa3e5",
  8941. "shasum": ""
  8942. },
  8943. "require": {
  8944. "php": ">=7.3"
  8945. },
  8946. "require-dev": {
  8947. "phpunit/phpunit": "^9.3"
  8948. },
  8949. "type": "library",
  8950. "extra": {
  8951. "branch-alias": {
  8952. "dev-master": "2.0-dev"
  8953. }
  8954. },
  8955. "autoload": {
  8956. "classmap": [
  8957. "src/"
  8958. ]
  8959. },
  8960. "notification-url": "https://packagist.org/downloads/",
  8961. "license": [
  8962. "BSD-3-Clause"
  8963. ],
  8964. "authors": [
  8965. {
  8966. "name": "Sebastian Bergmann",
  8967. "email": "sebastian@phpunit.de"
  8968. }
  8969. ],
  8970. "description": "Looks up which function or method a line of code belongs to",
  8971. "homepage": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/",
  8972. "support": {
  8973. "issues": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/issues",
  8974. "source": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/tree/2.0.3"
  8975. },
  8976. "funding": [
  8977. {
  8978. "url": "https://github.com/sebastianbergmann",
  8979. "type": "github"
  8980. }
  8981. ],
  8982. "time": "2020-09-28T05:30:19+00:00"
  8983. },
  8984. {
  8985. "name": "sebastian/comparator",
  8986. "version": "4.0.8",
  8987. "source": {
  8988. "type": "git",
  8989. "url": "https://github.com/sebastianbergmann/comparator.git",
  8990. "reference": "fa0f136dd2334583309d32b62544682ee972b51a"
  8991. },
  8992. "dist": {
  8993. "type": "zip",
  8994. "url": "https://api.github.com/repos/sebastianbergmann/comparator/zipball/fa0f136dd2334583309d32b62544682ee972b51a",
  8995. "reference": "fa0f136dd2334583309d32b62544682ee972b51a",
  8996. "shasum": ""
  8997. },
  8998. "require": {
  8999. "php": ">=7.3",
  9000. "sebastian/diff": "^4.0",
  9001. "sebastian/exporter": "^4.0"
  9002. },
  9003. "require-dev": {
  9004. "phpunit/phpunit": "^9.3"
  9005. },
  9006. "type": "library",
  9007. "extra": {
  9008. "branch-alias": {
  9009. "dev-master": "4.0-dev"
  9010. }
  9011. },
  9012. "autoload": {
  9013. "classmap": [
  9014. "src/"
  9015. ]
  9016. },
  9017. "notification-url": "https://packagist.org/downloads/",
  9018. "license": [
  9019. "BSD-3-Clause"
  9020. ],
  9021. "authors": [
  9022. {
  9023. "name": "Sebastian Bergmann",
  9024. "email": "sebastian@phpunit.de"
  9025. },
  9026. {
  9027. "name": "Jeff Welch",
  9028. "email": "whatthejeff@gmail.com"
  9029. },
  9030. {
  9031. "name": "Volker Dusch",
  9032. "email": "github@wallbash.com"
  9033. },
  9034. {
  9035. "name": "Bernhard Schussek",
  9036. "email": "bschussek@2bepublished.at"
  9037. }
  9038. ],
  9039. "description": "Provides the functionality to compare PHP values for equality",
  9040. "homepage": "https://github.com/sebastianbergmann/comparator",
  9041. "keywords": [
  9042. "comparator",
  9043. "compare",
  9044. "equality"
  9045. ],
  9046. "support": {
  9047. "issues": "https://github.com/sebastianbergmann/comparator/issues",
  9048. "source": "https://github.com/sebastianbergmann/comparator/tree/4.0.8"
  9049. },
  9050. "funding": [
  9051. {
  9052. "url": "https://github.com/sebastianbergmann",
  9053. "type": "github"
  9054. }
  9055. ],
  9056. "time": "2022-09-14T12:41:17+00:00"
  9057. },
  9058. {
  9059. "name": "sebastian/complexity",
  9060. "version": "2.0.2",
  9061. "source": {
  9062. "type": "git",
  9063. "url": "https://github.com/sebastianbergmann/complexity.git",
  9064. "reference": "739b35e53379900cc9ac327b2147867b8b6efd88"
  9065. },
  9066. "dist": {
  9067. "type": "zip",
  9068. "url": "https://api.github.com/repos/sebastianbergmann/complexity/zipball/739b35e53379900cc9ac327b2147867b8b6efd88",
  9069. "reference": "739b35e53379900cc9ac327b2147867b8b6efd88",
  9070. "shasum": ""
  9071. },
  9072. "require": {
  9073. "nikic/php-parser": "^4.7",
  9074. "php": ">=7.3"
  9075. },
  9076. "require-dev": {
  9077. "phpunit/phpunit": "^9.3"
  9078. },
  9079. "type": "library",
  9080. "extra": {
  9081. "branch-alias": {
  9082. "dev-master": "2.0-dev"
  9083. }
  9084. },
  9085. "autoload": {
  9086. "classmap": [
  9087. "src/"
  9088. ]
  9089. },
  9090. "notification-url": "https://packagist.org/downloads/",
  9091. "license": [
  9092. "BSD-3-Clause"
  9093. ],
  9094. "authors": [
  9095. {
  9096. "name": "Sebastian Bergmann",
  9097. "email": "sebastian@phpunit.de",
  9098. "role": "lead"
  9099. }
  9100. ],
  9101. "description": "Library for calculating the complexity of PHP code units",
  9102. "homepage": "https://github.com/sebastianbergmann/complexity",
  9103. "support": {
  9104. "issues": "https://github.com/sebastianbergmann/complexity/issues",
  9105. "source": "https://github.com/sebastianbergmann/complexity/tree/2.0.2"
  9106. },
  9107. "funding": [
  9108. {
  9109. "url": "https://github.com/sebastianbergmann",
  9110. "type": "github"
  9111. }
  9112. ],
  9113. "time": "2020-10-26T15:52:27+00:00"
  9114. },
  9115. {
  9116. "name": "sebastian/diff",
  9117. "version": "4.0.4",
  9118. "source": {
  9119. "type": "git",
  9120. "url": "https://github.com/sebastianbergmann/diff.git",
  9121. "reference": "3461e3fccc7cfdfc2720be910d3bd73c69be590d"
  9122. },
  9123. "dist": {
  9124. "type": "zip",
  9125. "url": "https://api.github.com/repos/sebastianbergmann/diff/zipball/3461e3fccc7cfdfc2720be910d3bd73c69be590d",
  9126. "reference": "3461e3fccc7cfdfc2720be910d3bd73c69be590d",
  9127. "shasum": ""
  9128. },
  9129. "require": {
  9130. "php": ">=7.3"
  9131. },
  9132. "require-dev": {
  9133. "phpunit/phpunit": "^9.3",
  9134. "symfony/process": "^4.2 || ^5"
  9135. },
  9136. "type": "library",
  9137. "extra": {
  9138. "branch-alias": {
  9139. "dev-master": "4.0-dev"
  9140. }
  9141. },
  9142. "autoload": {
  9143. "classmap": [
  9144. "src/"
  9145. ]
  9146. },
  9147. "notification-url": "https://packagist.org/downloads/",
  9148. "license": [
  9149. "BSD-3-Clause"
  9150. ],
  9151. "authors": [
  9152. {
  9153. "name": "Sebastian Bergmann",
  9154. "email": "sebastian@phpunit.de"
  9155. },
  9156. {
  9157. "name": "Kore Nordmann",
  9158. "email": "mail@kore-nordmann.de"
  9159. }
  9160. ],
  9161. "description": "Diff implementation",
  9162. "homepage": "https://github.com/sebastianbergmann/diff",
  9163. "keywords": [
  9164. "diff",
  9165. "udiff",
  9166. "unidiff",
  9167. "unified diff"
  9168. ],
  9169. "support": {
  9170. "issues": "https://github.com/sebastianbergmann/diff/issues",
  9171. "source": "https://github.com/sebastianbergmann/diff/tree/4.0.4"
  9172. },
  9173. "funding": [
  9174. {
  9175. "url": "https://github.com/sebastianbergmann",
  9176. "type": "github"
  9177. }
  9178. ],
  9179. "time": "2020-10-26T13:10:38+00:00"
  9180. },
  9181. {
  9182. "name": "sebastian/environment",
  9183. "version": "5.1.4",
  9184. "source": {
  9185. "type": "git",
  9186. "url": "https://github.com/sebastianbergmann/environment.git",
  9187. "reference": "1b5dff7bb151a4db11d49d90e5408e4e938270f7"
  9188. },
  9189. "dist": {
  9190. "type": "zip",
  9191. "url": "https://api.github.com/repos/sebastianbergmann/environment/zipball/1b5dff7bb151a4db11d49d90e5408e4e938270f7",
  9192. "reference": "1b5dff7bb151a4db11d49d90e5408e4e938270f7",
  9193. "shasum": ""
  9194. },
  9195. "require": {
  9196. "php": ">=7.3"
  9197. },
  9198. "require-dev": {
  9199. "phpunit/phpunit": "^9.3"
  9200. },
  9201. "suggest": {
  9202. "ext-posix": "*"
  9203. },
  9204. "type": "library",
  9205. "extra": {
  9206. "branch-alias": {
  9207. "dev-master": "5.1-dev"
  9208. }
  9209. },
  9210. "autoload": {
  9211. "classmap": [
  9212. "src/"
  9213. ]
  9214. },
  9215. "notification-url": "https://packagist.org/downloads/",
  9216. "license": [
  9217. "BSD-3-Clause"
  9218. ],
  9219. "authors": [
  9220. {
  9221. "name": "Sebastian Bergmann",
  9222. "email": "sebastian@phpunit.de"
  9223. }
  9224. ],
  9225. "description": "Provides functionality to handle HHVM/PHP environments",
  9226. "homepage": "http://www.github.com/sebastianbergmann/environment",
  9227. "keywords": [
  9228. "Xdebug",
  9229. "environment",
  9230. "hhvm"
  9231. ],
  9232. "support": {
  9233. "issues": "https://github.com/sebastianbergmann/environment/issues",
  9234. "source": "https://github.com/sebastianbergmann/environment/tree/5.1.4"
  9235. },
  9236. "funding": [
  9237. {
  9238. "url": "https://github.com/sebastianbergmann",
  9239. "type": "github"
  9240. }
  9241. ],
  9242. "time": "2022-04-03T09:37:03+00:00"
  9243. },
  9244. {
  9245. "name": "sebastian/exporter",
  9246. "version": "4.0.5",
  9247. "source": {
  9248. "type": "git",
  9249. "url": "https://github.com/sebastianbergmann/exporter.git",
  9250. "reference": "ac230ed27f0f98f597c8a2b6eb7ac563af5e5b9d"
  9251. },
  9252. "dist": {
  9253. "type": "zip",
  9254. "url": "https://api.github.com/repos/sebastianbergmann/exporter/zipball/ac230ed27f0f98f597c8a2b6eb7ac563af5e5b9d",
  9255. "reference": "ac230ed27f0f98f597c8a2b6eb7ac563af5e5b9d",
  9256. "shasum": ""
  9257. },
  9258. "require": {
  9259. "php": ">=7.3",
  9260. "sebastian/recursion-context": "^4.0"
  9261. },
  9262. "require-dev": {
  9263. "ext-mbstring": "*",
  9264. "phpunit/phpunit": "^9.3"
  9265. },
  9266. "type": "library",
  9267. "extra": {
  9268. "branch-alias": {
  9269. "dev-master": "4.0-dev"
  9270. }
  9271. },
  9272. "autoload": {
  9273. "classmap": [
  9274. "src/"
  9275. ]
  9276. },
  9277. "notification-url": "https://packagist.org/downloads/",
  9278. "license": [
  9279. "BSD-3-Clause"
  9280. ],
  9281. "authors": [
  9282. {
  9283. "name": "Sebastian Bergmann",
  9284. "email": "sebastian@phpunit.de"
  9285. },
  9286. {
  9287. "name": "Jeff Welch",
  9288. "email": "whatthejeff@gmail.com"
  9289. },
  9290. {
  9291. "name": "Volker Dusch",
  9292. "email": "github@wallbash.com"
  9293. },
  9294. {
  9295. "name": "Adam Harvey",
  9296. "email": "aharvey@php.net"
  9297. },
  9298. {
  9299. "name": "Bernhard Schussek",
  9300. "email": "bschussek@gmail.com"
  9301. }
  9302. ],
  9303. "description": "Provides the functionality to export PHP variables for visualization",
  9304. "homepage": "https://www.github.com/sebastianbergmann/exporter",
  9305. "keywords": [
  9306. "export",
  9307. "exporter"
  9308. ],
  9309. "support": {
  9310. "issues": "https://github.com/sebastianbergmann/exporter/issues",
  9311. "source": "https://github.com/sebastianbergmann/exporter/tree/4.0.5"
  9312. },
  9313. "funding": [
  9314. {
  9315. "url": "https://github.com/sebastianbergmann",
  9316. "type": "github"
  9317. }
  9318. ],
  9319. "time": "2022-09-14T06:03:37+00:00"
  9320. },
  9321. {
  9322. "name": "sebastian/global-state",
  9323. "version": "5.0.5",
  9324. "source": {
  9325. "type": "git",
  9326. "url": "https://github.com/sebastianbergmann/global-state.git",
  9327. "reference": "0ca8db5a5fc9c8646244e629625ac486fa286bf2"
  9328. },
  9329. "dist": {
  9330. "type": "zip",
  9331. "url": "https://api.github.com/repos/sebastianbergmann/global-state/zipball/0ca8db5a5fc9c8646244e629625ac486fa286bf2",
  9332. "reference": "0ca8db5a5fc9c8646244e629625ac486fa286bf2",
  9333. "shasum": ""
  9334. },
  9335. "require": {
  9336. "php": ">=7.3",
  9337. "sebastian/object-reflector": "^2.0",
  9338. "sebastian/recursion-context": "^4.0"
  9339. },
  9340. "require-dev": {
  9341. "ext-dom": "*",
  9342. "phpunit/phpunit": "^9.3"
  9343. },
  9344. "suggest": {
  9345. "ext-uopz": "*"
  9346. },
  9347. "type": "library",
  9348. "extra": {
  9349. "branch-alias": {
  9350. "dev-master": "5.0-dev"
  9351. }
  9352. },
  9353. "autoload": {
  9354. "classmap": [
  9355. "src/"
  9356. ]
  9357. },
  9358. "notification-url": "https://packagist.org/downloads/",
  9359. "license": [
  9360. "BSD-3-Clause"
  9361. ],
  9362. "authors": [
  9363. {
  9364. "name": "Sebastian Bergmann",
  9365. "email": "sebastian@phpunit.de"
  9366. }
  9367. ],
  9368. "description": "Snapshotting of global state",
  9369. "homepage": "http://www.github.com/sebastianbergmann/global-state",
  9370. "keywords": [
  9371. "global state"
  9372. ],
  9373. "support": {
  9374. "issues": "https://github.com/sebastianbergmann/global-state/issues",
  9375. "source": "https://github.com/sebastianbergmann/global-state/tree/5.0.5"
  9376. },
  9377. "funding": [
  9378. {
  9379. "url": "https://github.com/sebastianbergmann",
  9380. "type": "github"
  9381. }
  9382. ],
  9383. "time": "2022-02-14T08:28:10+00:00"
  9384. },
  9385. {
  9386. "name": "sebastian/lines-of-code",
  9387. "version": "1.0.3",
  9388. "source": {
  9389. "type": "git",
  9390. "url": "https://github.com/sebastianbergmann/lines-of-code.git",
  9391. "reference": "c1c2e997aa3146983ed888ad08b15470a2e22ecc"
  9392. },
  9393. "dist": {
  9394. "type": "zip",
  9395. "url": "https://api.github.com/repos/sebastianbergmann/lines-of-code/zipball/c1c2e997aa3146983ed888ad08b15470a2e22ecc",
  9396. "reference": "c1c2e997aa3146983ed888ad08b15470a2e22ecc",
  9397. "shasum": ""
  9398. },
  9399. "require": {
  9400. "nikic/php-parser": "^4.6",
  9401. "php": ">=7.3"
  9402. },
  9403. "require-dev": {
  9404. "phpunit/phpunit": "^9.3"
  9405. },
  9406. "type": "library",
  9407. "extra": {
  9408. "branch-alias": {
  9409. "dev-master": "1.0-dev"
  9410. }
  9411. },
  9412. "autoload": {
  9413. "classmap": [
  9414. "src/"
  9415. ]
  9416. },
  9417. "notification-url": "https://packagist.org/downloads/",
  9418. "license": [
  9419. "BSD-3-Clause"
  9420. ],
  9421. "authors": [
  9422. {
  9423. "name": "Sebastian Bergmann",
  9424. "email": "sebastian@phpunit.de",
  9425. "role": "lead"
  9426. }
  9427. ],
  9428. "description": "Library for counting the lines of code in PHP source code",
  9429. "homepage": "https://github.com/sebastianbergmann/lines-of-code",
  9430. "support": {
  9431. "issues": "https://github.com/sebastianbergmann/lines-of-code/issues",
  9432. "source": "https://github.com/sebastianbergmann/lines-of-code/tree/1.0.3"
  9433. },
  9434. "funding": [
  9435. {
  9436. "url": "https://github.com/sebastianbergmann",
  9437. "type": "github"
  9438. }
  9439. ],
  9440. "time": "2020-11-28T06:42:11+00:00"
  9441. },
  9442. {
  9443. "name": "sebastian/object-enumerator",
  9444. "version": "4.0.4",
  9445. "source": {
  9446. "type": "git",
  9447. "url": "https://github.com/sebastianbergmann/object-enumerator.git",
  9448. "reference": "5c9eeac41b290a3712d88851518825ad78f45c71"
  9449. },
  9450. "dist": {
  9451. "type": "zip",
  9452. "url": "https://api.github.com/repos/sebastianbergmann/object-enumerator/zipball/5c9eeac41b290a3712d88851518825ad78f45c71",
  9453. "reference": "5c9eeac41b290a3712d88851518825ad78f45c71",
  9454. "shasum": ""
  9455. },
  9456. "require": {
  9457. "php": ">=7.3",
  9458. "sebastian/object-reflector": "^2.0",
  9459. "sebastian/recursion-context": "^4.0"
  9460. },
  9461. "require-dev": {
  9462. "phpunit/phpunit": "^9.3"
  9463. },
  9464. "type": "library",
  9465. "extra": {
  9466. "branch-alias": {
  9467. "dev-master": "4.0-dev"
  9468. }
  9469. },
  9470. "autoload": {
  9471. "classmap": [
  9472. "src/"
  9473. ]
  9474. },
  9475. "notification-url": "https://packagist.org/downloads/",
  9476. "license": [
  9477. "BSD-3-Clause"
  9478. ],
  9479. "authors": [
  9480. {
  9481. "name": "Sebastian Bergmann",
  9482. "email": "sebastian@phpunit.de"
  9483. }
  9484. ],
  9485. "description": "Traverses array structures and object graphs to enumerate all referenced objects",
  9486. "homepage": "https://github.com/sebastianbergmann/object-enumerator/",
  9487. "support": {
  9488. "issues": "https://github.com/sebastianbergmann/object-enumerator/issues",
  9489. "source": "https://github.com/sebastianbergmann/object-enumerator/tree/4.0.4"
  9490. },
  9491. "funding": [
  9492. {
  9493. "url": "https://github.com/sebastianbergmann",
  9494. "type": "github"
  9495. }
  9496. ],
  9497. "time": "2020-10-26T13:12:34+00:00"
  9498. },
  9499. {
  9500. "name": "sebastian/object-reflector",
  9501. "version": "2.0.4",
  9502. "source": {
  9503. "type": "git",
  9504. "url": "https://github.com/sebastianbergmann/object-reflector.git",
  9505. "reference": "b4f479ebdbf63ac605d183ece17d8d7fe49c15c7"
  9506. },
  9507. "dist": {
  9508. "type": "zip",
  9509. "url": "https://api.github.com/repos/sebastianbergmann/object-reflector/zipball/b4f479ebdbf63ac605d183ece17d8d7fe49c15c7",
  9510. "reference": "b4f479ebdbf63ac605d183ece17d8d7fe49c15c7",
  9511. "shasum": ""
  9512. },
  9513. "require": {
  9514. "php": ">=7.3"
  9515. },
  9516. "require-dev": {
  9517. "phpunit/phpunit": "^9.3"
  9518. },
  9519. "type": "library",
  9520. "extra": {
  9521. "branch-alias": {
  9522. "dev-master": "2.0-dev"
  9523. }
  9524. },
  9525. "autoload": {
  9526. "classmap": [
  9527. "src/"
  9528. ]
  9529. },
  9530. "notification-url": "https://packagist.org/downloads/",
  9531. "license": [
  9532. "BSD-3-Clause"
  9533. ],
  9534. "authors": [
  9535. {
  9536. "name": "Sebastian Bergmann",
  9537. "email": "sebastian@phpunit.de"
  9538. }
  9539. ],
  9540. "description": "Allows reflection of object attributes, including inherited and non-public ones",
  9541. "homepage": "https://github.com/sebastianbergmann/object-reflector/",
  9542. "support": {
  9543. "issues": "https://github.com/sebastianbergmann/object-reflector/issues",
  9544. "source": "https://github.com/sebastianbergmann/object-reflector/tree/2.0.4"
  9545. },
  9546. "funding": [
  9547. {
  9548. "url": "https://github.com/sebastianbergmann",
  9549. "type": "github"
  9550. }
  9551. ],
  9552. "time": "2020-10-26T13:14:26+00:00"
  9553. },
  9554. {
  9555. "name": "sebastian/recursion-context",
  9556. "version": "4.0.4",
  9557. "source": {
  9558. "type": "git",
  9559. "url": "https://github.com/sebastianbergmann/recursion-context.git",
  9560. "reference": "cd9d8cf3c5804de4341c283ed787f099f5506172"
  9561. },
  9562. "dist": {
  9563. "type": "zip",
  9564. "url": "https://api.github.com/repos/sebastianbergmann/recursion-context/zipball/cd9d8cf3c5804de4341c283ed787f099f5506172",
  9565. "reference": "cd9d8cf3c5804de4341c283ed787f099f5506172",
  9566. "shasum": ""
  9567. },
  9568. "require": {
  9569. "php": ">=7.3"
  9570. },
  9571. "require-dev": {
  9572. "phpunit/phpunit": "^9.3"
  9573. },
  9574. "type": "library",
  9575. "extra": {
  9576. "branch-alias": {
  9577. "dev-master": "4.0-dev"
  9578. }
  9579. },
  9580. "autoload": {
  9581. "classmap": [
  9582. "src/"
  9583. ]
  9584. },
  9585. "notification-url": "https://packagist.org/downloads/",
  9586. "license": [
  9587. "BSD-3-Clause"
  9588. ],
  9589. "authors": [
  9590. {
  9591. "name": "Sebastian Bergmann",
  9592. "email": "sebastian@phpunit.de"
  9593. },
  9594. {
  9595. "name": "Jeff Welch",
  9596. "email": "whatthejeff@gmail.com"
  9597. },
  9598. {
  9599. "name": "Adam Harvey",
  9600. "email": "aharvey@php.net"
  9601. }
  9602. ],
  9603. "description": "Provides functionality to recursively process PHP variables",
  9604. "homepage": "http://www.github.com/sebastianbergmann/recursion-context",
  9605. "support": {
  9606. "issues": "https://github.com/sebastianbergmann/recursion-context/issues",
  9607. "source": "https://github.com/sebastianbergmann/recursion-context/tree/4.0.4"
  9608. },
  9609. "funding": [
  9610. {
  9611. "url": "https://github.com/sebastianbergmann",
  9612. "type": "github"
  9613. }
  9614. ],
  9615. "time": "2020-10-26T13:17:30+00:00"
  9616. },
  9617. {
  9618. "name": "sebastian/resource-operations",
  9619. "version": "3.0.3",
  9620. "source": {
  9621. "type": "git",
  9622. "url": "https://github.com/sebastianbergmann/resource-operations.git",
  9623. "reference": "0f4443cb3a1d92ce809899753bc0d5d5a8dd19a8"
  9624. },
  9625. "dist": {
  9626. "type": "zip",
  9627. "url": "https://api.github.com/repos/sebastianbergmann/resource-operations/zipball/0f4443cb3a1d92ce809899753bc0d5d5a8dd19a8",
  9628. "reference": "0f4443cb3a1d92ce809899753bc0d5d5a8dd19a8",
  9629. "shasum": ""
  9630. },
  9631. "require": {
  9632. "php": ">=7.3"
  9633. },
  9634. "require-dev": {
  9635. "phpunit/phpunit": "^9.0"
  9636. },
  9637. "type": "library",
  9638. "extra": {
  9639. "branch-alias": {
  9640. "dev-master": "3.0-dev"
  9641. }
  9642. },
  9643. "autoload": {
  9644. "classmap": [
  9645. "src/"
  9646. ]
  9647. },
  9648. "notification-url": "https://packagist.org/downloads/",
  9649. "license": [
  9650. "BSD-3-Clause"
  9651. ],
  9652. "authors": [
  9653. {
  9654. "name": "Sebastian Bergmann",
  9655. "email": "sebastian@phpunit.de"
  9656. }
  9657. ],
  9658. "description": "Provides a list of PHP built-in functions that operate on resources",
  9659. "homepage": "https://www.github.com/sebastianbergmann/resource-operations",
  9660. "support": {
  9661. "issues": "https://github.com/sebastianbergmann/resource-operations/issues",
  9662. "source": "https://github.com/sebastianbergmann/resource-operations/tree/3.0.3"
  9663. },
  9664. "funding": [
  9665. {
  9666. "url": "https://github.com/sebastianbergmann",
  9667. "type": "github"
  9668. }
  9669. ],
  9670. "time": "2020-09-28T06:45:17+00:00"
  9671. },
  9672. {
  9673. "name": "sebastian/type",
  9674. "version": "3.2.0",
  9675. "source": {
  9676. "type": "git",
  9677. "url": "https://github.com/sebastianbergmann/type.git",
  9678. "reference": "fb3fe09c5f0bae6bc27ef3ce933a1e0ed9464b6e"
  9679. },
  9680. "dist": {
  9681. "type": "zip",
  9682. "url": "https://api.github.com/repos/sebastianbergmann/type/zipball/fb3fe09c5f0bae6bc27ef3ce933a1e0ed9464b6e",
  9683. "reference": "fb3fe09c5f0bae6bc27ef3ce933a1e0ed9464b6e",
  9684. "shasum": ""
  9685. },
  9686. "require": {
  9687. "php": ">=7.3"
  9688. },
  9689. "require-dev": {
  9690. "phpunit/phpunit": "^9.5"
  9691. },
  9692. "type": "library",
  9693. "extra": {
  9694. "branch-alias": {
  9695. "dev-master": "3.2-dev"
  9696. }
  9697. },
  9698. "autoload": {
  9699. "classmap": [
  9700. "src/"
  9701. ]
  9702. },
  9703. "notification-url": "https://packagist.org/downloads/",
  9704. "license": [
  9705. "BSD-3-Clause"
  9706. ],
  9707. "authors": [
  9708. {
  9709. "name": "Sebastian Bergmann",
  9710. "email": "sebastian@phpunit.de",
  9711. "role": "lead"
  9712. }
  9713. ],
  9714. "description": "Collection of value objects that represent the types of the PHP type system",
  9715. "homepage": "https://github.com/sebastianbergmann/type",
  9716. "support": {
  9717. "issues": "https://github.com/sebastianbergmann/type/issues",
  9718. "source": "https://github.com/sebastianbergmann/type/tree/3.2.0"
  9719. },
  9720. "funding": [
  9721. {
  9722. "url": "https://github.com/sebastianbergmann",
  9723. "type": "github"
  9724. }
  9725. ],
  9726. "time": "2022-09-12T14:47:03+00:00"
  9727. },
  9728. {
  9729. "name": "sebastian/version",
  9730. "version": "3.0.2",
  9731. "source": {
  9732. "type": "git",
  9733. "url": "https://github.com/sebastianbergmann/version.git",
  9734. "reference": "c6c1022351a901512170118436c764e473f6de8c"
  9735. },
  9736. "dist": {
  9737. "type": "zip",
  9738. "url": "https://api.github.com/repos/sebastianbergmann/version/zipball/c6c1022351a901512170118436c764e473f6de8c",
  9739. "reference": "c6c1022351a901512170118436c764e473f6de8c",
  9740. "shasum": ""
  9741. },
  9742. "require": {
  9743. "php": ">=7.3"
  9744. },
  9745. "type": "library",
  9746. "extra": {
  9747. "branch-alias": {
  9748. "dev-master": "3.0-dev"
  9749. }
  9750. },
  9751. "autoload": {
  9752. "classmap": [
  9753. "src/"
  9754. ]
  9755. },
  9756. "notification-url": "https://packagist.org/downloads/",
  9757. "license": [
  9758. "BSD-3-Clause"
  9759. ],
  9760. "authors": [
  9761. {
  9762. "name": "Sebastian Bergmann",
  9763. "email": "sebastian@phpunit.de",
  9764. "role": "lead"
  9765. }
  9766. ],
  9767. "description": "Library that helps with managing the version number of Git-hosted PHP projects",
  9768. "homepage": "https://github.com/sebastianbergmann/version",
  9769. "support": {
  9770. "issues": "https://github.com/sebastianbergmann/version/issues",
  9771. "source": "https://github.com/sebastianbergmann/version/tree/3.0.2"
  9772. },
  9773. "funding": [
  9774. {
  9775. "url": "https://github.com/sebastianbergmann",
  9776. "type": "github"
  9777. }
  9778. ],
  9779. "time": "2020-09-28T06:39:44+00:00"
  9780. },
  9781. {
  9782. "name": "symfony/browser-kit",
  9783. "version": "v5.4.11",
  9784. "source": {
  9785. "type": "git",
  9786. "url": "https://github.com/symfony/browser-kit.git",
  9787. "reference": "081fe28a26b6bd671dea85ef3a4b5003f3c88027"
  9788. },
  9789. "dist": {
  9790. "type": "zip",
  9791. "url": "https://api.github.com/repos/symfony/browser-kit/zipball/081fe28a26b6bd671dea85ef3a4b5003f3c88027",
  9792. "reference": "081fe28a26b6bd671dea85ef3a4b5003f3c88027",
  9793. "shasum": ""
  9794. },
  9795. "require": {
  9796. "php": ">=7.2.5",
  9797. "symfony/dom-crawler": "^4.4|^5.0|^6.0",
  9798. "symfony/polyfill-php80": "^1.16"
  9799. },
  9800. "require-dev": {
  9801. "symfony/css-selector": "^4.4|^5.0|^6.0",
  9802. "symfony/http-client": "^4.4|^5.0|^6.0",
  9803. "symfony/mime": "^4.4|^5.0|^6.0",
  9804. "symfony/process": "^4.4|^5.0|^6.0"
  9805. },
  9806. "suggest": {
  9807. "symfony/process": ""
  9808. },
  9809. "type": "library",
  9810. "autoload": {
  9811. "psr-4": {
  9812. "Symfony\\Component\\BrowserKit\\": ""
  9813. },
  9814. "exclude-from-classmap": [
  9815. "/Tests/"
  9816. ]
  9817. },
  9818. "notification-url": "https://packagist.org/downloads/",
  9819. "license": [
  9820. "MIT"
  9821. ],
  9822. "authors": [
  9823. {
  9824. "name": "Fabien Potencier",
  9825. "email": "fabien@symfony.com"
  9826. },
  9827. {
  9828. "name": "Symfony Community",
  9829. "homepage": "https://symfony.com/contributors"
  9830. }
  9831. ],
  9832. "description": "Simulates the behavior of a web browser, allowing you to make requests, click on links and submit forms programmatically",
  9833. "homepage": "https://symfony.com",
  9834. "support": {
  9835. "source": "https://github.com/symfony/browser-kit/tree/v5.4.11"
  9836. },
  9837. "funding": [
  9838. {
  9839. "url": "https://symfony.com/sponsor",
  9840. "type": "custom"
  9841. },
  9842. {
  9843. "url": "https://github.com/fabpot",
  9844. "type": "github"
  9845. },
  9846. {
  9847. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  9848. "type": "tidelift"
  9849. }
  9850. ],
  9851. "time": "2022-07-27T15:50:05+00:00"
  9852. },
  9853. {
  9854. "name": "symfony/css-selector",
  9855. "version": "v5.4.11",
  9856. "source": {
  9857. "type": "git",
  9858. "url": "https://github.com/symfony/css-selector.git",
  9859. "reference": "c1681789f059ab756001052164726ae88512ae3d"
  9860. },
  9861. "dist": {
  9862. "type": "zip",
  9863. "url": "https://api.github.com/repos/symfony/css-selector/zipball/c1681789f059ab756001052164726ae88512ae3d",
  9864. "reference": "c1681789f059ab756001052164726ae88512ae3d",
  9865. "shasum": ""
  9866. },
  9867. "require": {
  9868. "php": ">=7.2.5",
  9869. "symfony/polyfill-php80": "^1.16"
  9870. },
  9871. "type": "library",
  9872. "autoload": {
  9873. "psr-4": {
  9874. "Symfony\\Component\\CssSelector\\": ""
  9875. },
  9876. "exclude-from-classmap": [
  9877. "/Tests/"
  9878. ]
  9879. },
  9880. "notification-url": "https://packagist.org/downloads/",
  9881. "license": [
  9882. "MIT"
  9883. ],
  9884. "authors": [
  9885. {
  9886. "name": "Fabien Potencier",
  9887. "email": "fabien@symfony.com"
  9888. },
  9889. {
  9890. "name": "Jean-François Simon",
  9891. "email": "jeanfrancois.simon@sensiolabs.com"
  9892. },
  9893. {
  9894. "name": "Symfony Community",
  9895. "homepage": "https://symfony.com/contributors"
  9896. }
  9897. ],
  9898. "description": "Converts CSS selectors to XPath expressions",
  9899. "homepage": "https://symfony.com",
  9900. "support": {
  9901. "source": "https://github.com/symfony/css-selector/tree/v5.4.11"
  9902. },
  9903. "funding": [
  9904. {
  9905. "url": "https://symfony.com/sponsor",
  9906. "type": "custom"
  9907. },
  9908. {
  9909. "url": "https://github.com/fabpot",
  9910. "type": "github"
  9911. },
  9912. {
  9913. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  9914. "type": "tidelift"
  9915. }
  9916. ],
  9917. "time": "2022-06-27T16:58:25+00:00"
  9918. },
  9919. {
  9920. "name": "symfony/debug-bundle",
  9921. "version": "v5.4.11",
  9922. "source": {
  9923. "type": "git",
  9924. "url": "https://github.com/symfony/debug-bundle.git",
  9925. "reference": "ec73a8bb7b966ccbe9e76be3c7dc413d8ae84f47"
  9926. },
  9927. "dist": {
  9928. "type": "zip",
  9929. "url": "https://api.github.com/repos/symfony/debug-bundle/zipball/ec73a8bb7b966ccbe9e76be3c7dc413d8ae84f47",
  9930. "reference": "ec73a8bb7b966ccbe9e76be3c7dc413d8ae84f47",
  9931. "shasum": ""
  9932. },
  9933. "require": {
  9934. "ext-xml": "*",
  9935. "php": ">=7.2.5",
  9936. "symfony/http-kernel": "^4.4|^5.0|^6.0",
  9937. "symfony/polyfill-php80": "^1.16",
  9938. "symfony/twig-bridge": "^4.4|^5.0|^6.0",
  9939. "symfony/var-dumper": "^4.4|^5.0|^6.0"
  9940. },
  9941. "conflict": {
  9942. "symfony/config": "<4.4",
  9943. "symfony/dependency-injection": "<5.2"
  9944. },
  9945. "require-dev": {
  9946. "symfony/config": "^4.4|^5.0|^6.0",
  9947. "symfony/dependency-injection": "^4.4|^5.0|^6.0",
  9948. "symfony/web-profiler-bundle": "^4.4|^5.0|^6.0"
  9949. },
  9950. "suggest": {
  9951. "symfony/config": "For service container configuration",
  9952. "symfony/dependency-injection": "For using as a service from the container"
  9953. },
  9954. "type": "symfony-bundle",
  9955. "autoload": {
  9956. "psr-4": {
  9957. "Symfony\\Bundle\\DebugBundle\\": ""
  9958. },
  9959. "exclude-from-classmap": [
  9960. "/Tests/"
  9961. ]
  9962. },
  9963. "notification-url": "https://packagist.org/downloads/",
  9964. "license": [
  9965. "MIT"
  9966. ],
  9967. "authors": [
  9968. {
  9969. "name": "Fabien Potencier",
  9970. "email": "fabien@symfony.com"
  9971. },
  9972. {
  9973. "name": "Symfony Community",
  9974. "homepage": "https://symfony.com/contributors"
  9975. }
  9976. ],
  9977. "description": "Provides a tight integration of the Symfony VarDumper component and the ServerLogCommand from MonologBridge into the Symfony full-stack framework",
  9978. "homepage": "https://symfony.com",
  9979. "support": {
  9980. "source": "https://github.com/symfony/debug-bundle/tree/v5.4.11"
  9981. },
  9982. "funding": [
  9983. {
  9984. "url": "https://symfony.com/sponsor",
  9985. "type": "custom"
  9986. },
  9987. {
  9988. "url": "https://github.com/fabpot",
  9989. "type": "github"
  9990. },
  9991. {
  9992. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  9993. "type": "tidelift"
  9994. }
  9995. ],
  9996. "time": "2022-07-20T13:00:38+00:00"
  9997. },
  9998. {
  9999. "name": "symfony/dom-crawler",
  10000. "version": "v5.4.12",
  10001. "source": {
  10002. "type": "git",
  10003. "url": "https://github.com/symfony/dom-crawler.git",
  10004. "reference": "291c1e92281a09152dda089f782e23dedd34bd4f"
  10005. },
  10006. "dist": {
  10007. "type": "zip",
  10008. "url": "https://api.github.com/repos/symfony/dom-crawler/zipball/291c1e92281a09152dda089f782e23dedd34bd4f",
  10009. "reference": "291c1e92281a09152dda089f782e23dedd34bd4f",
  10010. "shasum": ""
  10011. },
  10012. "require": {
  10013. "php": ">=7.2.5",
  10014. "symfony/deprecation-contracts": "^2.1|^3",
  10015. "symfony/polyfill-ctype": "~1.8",
  10016. "symfony/polyfill-mbstring": "~1.0",
  10017. "symfony/polyfill-php80": "^1.16"
  10018. },
  10019. "conflict": {
  10020. "masterminds/html5": "<2.6"
  10021. },
  10022. "require-dev": {
  10023. "masterminds/html5": "^2.6",
  10024. "symfony/css-selector": "^4.4|^5.0|^6.0"
  10025. },
  10026. "suggest": {
  10027. "symfony/css-selector": ""
  10028. },
  10029. "type": "library",
  10030. "autoload": {
  10031. "psr-4": {
  10032. "Symfony\\Component\\DomCrawler\\": ""
  10033. },
  10034. "exclude-from-classmap": [
  10035. "/Tests/"
  10036. ]
  10037. },
  10038. "notification-url": "https://packagist.org/downloads/",
  10039. "license": [
  10040. "MIT"
  10041. ],
  10042. "authors": [
  10043. {
  10044. "name": "Fabien Potencier",
  10045. "email": "fabien@symfony.com"
  10046. },
  10047. {
  10048. "name": "Symfony Community",
  10049. "homepage": "https://symfony.com/contributors"
  10050. }
  10051. ],
  10052. "description": "Eases DOM navigation for HTML and XML documents",
  10053. "homepage": "https://symfony.com",
  10054. "support": {
  10055. "source": "https://github.com/symfony/dom-crawler/tree/v5.4.12"
  10056. },
  10057. "funding": [
  10058. {
  10059. "url": "https://symfony.com/sponsor",
  10060. "type": "custom"
  10061. },
  10062. {
  10063. "url": "https://github.com/fabpot",
  10064. "type": "github"
  10065. },
  10066. {
  10067. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  10068. "type": "tidelift"
  10069. }
  10070. ],
  10071. "time": "2022-08-03T13:09:21+00:00"
  10072. },
  10073. {
  10074. "name": "symfony/maker-bundle",
  10075. "version": "v1.47.0",
  10076. "source": {
  10077. "type": "git",
  10078. "url": "https://github.com/symfony/maker-bundle.git",
  10079. "reference": "e607f129d29a6c1e9a9e1ef3d229d653311d58f3"
  10080. },
  10081. "dist": {
  10082. "type": "zip",
  10083. "url": "https://api.github.com/repos/symfony/maker-bundle/zipball/e607f129d29a6c1e9a9e1ef3d229d653311d58f3",
  10084. "reference": "e607f129d29a6c1e9a9e1ef3d229d653311d58f3",
  10085. "shasum": ""
  10086. },
  10087. "require": {
  10088. "doctrine/inflector": "^2.0",
  10089. "nikic/php-parser": "^4.11",
  10090. "php": ">=8.0",
  10091. "symfony/config": "^5.4.7|^6.0",
  10092. "symfony/console": "^5.4.7|^6.0",
  10093. "symfony/dependency-injection": "^5.4.7|^6.0",
  10094. "symfony/deprecation-contracts": "^2.2|^3",
  10095. "symfony/filesystem": "^5.4.7|^6.0",
  10096. "symfony/finder": "^5.4.3|^6.0",
  10097. "symfony/framework-bundle": "^5.4.7|^6.0",
  10098. "symfony/http-kernel": "^5.4.7|^6.0"
  10099. },
  10100. "conflict": {
  10101. "doctrine/doctrine-bundle": "<2.4",
  10102. "doctrine/orm": "<2.10",
  10103. "symfony/doctrine-bridge": "<5.4"
  10104. },
  10105. "require-dev": {
  10106. "composer/semver": "^3.0",
  10107. "doctrine/doctrine-bundle": "^2.4",
  10108. "doctrine/orm": "^2.10.0",
  10109. "symfony/http-client": "^5.4.7|^6.0",
  10110. "symfony/phpunit-bridge": "^5.4.7|^6.0",
  10111. "symfony/polyfill-php80": "^1.16.0",
  10112. "symfony/process": "^5.4.7|^6.0",
  10113. "symfony/security-core": "^5.4.7|^6.0",
  10114. "symfony/yaml": "^5.4.3|^6.0",
  10115. "twig/twig": "^2.0|^3.0"
  10116. },
  10117. "type": "symfony-bundle",
  10118. "extra": {
  10119. "branch-alias": {
  10120. "dev-main": "1.0-dev"
  10121. }
  10122. },
  10123. "autoload": {
  10124. "psr-4": {
  10125. "Symfony\\Bundle\\MakerBundle\\": "src/"
  10126. }
  10127. },
  10128. "notification-url": "https://packagist.org/downloads/",
  10129. "license": [
  10130. "MIT"
  10131. ],
  10132. "authors": [
  10133. {
  10134. "name": "Symfony Community",
  10135. "homepage": "https://symfony.com/contributors"
  10136. }
  10137. ],
  10138. "description": "Symfony Maker helps you create empty commands, controllers, form classes, tests and more so you can forget about writing boilerplate code.",
  10139. "homepage": "https://symfony.com/doc/current/bundles/SymfonyMakerBundle/index.html",
  10140. "keywords": [
  10141. "code generator",
  10142. "generator",
  10143. "scaffold",
  10144. "scaffolding"
  10145. ],
  10146. "support": {
  10147. "issues": "https://github.com/symfony/maker-bundle/issues",
  10148. "source": "https://github.com/symfony/maker-bundle/tree/v1.47.0"
  10149. },
  10150. "funding": [
  10151. {
  10152. "url": "https://symfony.com/sponsor",
  10153. "type": "custom"
  10154. },
  10155. {
  10156. "url": "https://github.com/fabpot",
  10157. "type": "github"
  10158. },
  10159. {
  10160. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  10161. "type": "tidelift"
  10162. }
  10163. ],
  10164. "time": "2022-10-04T15:05:10+00:00"
  10165. },
  10166. {
  10167. "name": "symfony/phpunit-bridge",
  10168. "version": "v5.4.11",
  10169. "source": {
  10170. "type": "git",
  10171. "url": "https://github.com/symfony/phpunit-bridge.git",
  10172. "reference": "31b1549f54b1a1890e725a0c1c8c2de6ef2205b3"
  10173. },
  10174. "dist": {
  10175. "type": "zip",
  10176. "url": "https://api.github.com/repos/symfony/phpunit-bridge/zipball/31b1549f54b1a1890e725a0c1c8c2de6ef2205b3",
  10177. "reference": "31b1549f54b1a1890e725a0c1c8c2de6ef2205b3",
  10178. "shasum": ""
  10179. },
  10180. "require": {
  10181. "php": ">=7.1.3",
  10182. "symfony/deprecation-contracts": "^2.1|^3"
  10183. },
  10184. "conflict": {
  10185. "phpunit/phpunit": "<7.5|9.1.2"
  10186. },
  10187. "require-dev": {
  10188. "symfony/error-handler": "^4.4|^5.0|^6.0"
  10189. },
  10190. "suggest": {
  10191. "symfony/error-handler": "For tracking deprecated interfaces usages at runtime with DebugClassLoader"
  10192. },
  10193. "bin": [
  10194. "bin/simple-phpunit"
  10195. ],
  10196. "type": "symfony-bridge",
  10197. "extra": {
  10198. "thanks": {
  10199. "name": "phpunit/phpunit",
  10200. "url": "https://github.com/sebastianbergmann/phpunit"
  10201. }
  10202. },
  10203. "autoload": {
  10204. "files": [
  10205. "bootstrap.php"
  10206. ],
  10207. "psr-4": {
  10208. "Symfony\\Bridge\\PhpUnit\\": ""
  10209. },
  10210. "exclude-from-classmap": [
  10211. "/Tests/"
  10212. ]
  10213. },
  10214. "notification-url": "https://packagist.org/downloads/",
  10215. "license": [
  10216. "MIT"
  10217. ],
  10218. "authors": [
  10219. {
  10220. "name": "Nicolas Grekas",
  10221. "email": "p@tchwork.com"
  10222. },
  10223. {
  10224. "name": "Symfony Community",
  10225. "homepage": "https://symfony.com/contributors"
  10226. }
  10227. ],
  10228. "description": "Provides utilities for PHPUnit, especially user deprecation notices management",
  10229. "homepage": "https://symfony.com",
  10230. "support": {
  10231. "source": "https://github.com/symfony/phpunit-bridge/tree/v5.4.11"
  10232. },
  10233. "funding": [
  10234. {
  10235. "url": "https://symfony.com/sponsor",
  10236. "type": "custom"
  10237. },
  10238. {
  10239. "url": "https://github.com/fabpot",
  10240. "type": "github"
  10241. },
  10242. {
  10243. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  10244. "type": "tidelift"
  10245. }
  10246. ],
  10247. "time": "2022-07-28T13:33:28+00:00"
  10248. },
  10249. {
  10250. "name": "symfony/web-profiler-bundle",
  10251. "version": "v5.4.13",
  10252. "source": {
  10253. "type": "git",
  10254. "url": "https://github.com/symfony/web-profiler-bundle.git",
  10255. "reference": "6fefe0a7761a35b33c616e199c19f0c0d069e282"
  10256. },
  10257. "dist": {
  10258. "type": "zip",
  10259. "url": "https://api.github.com/repos/symfony/web-profiler-bundle/zipball/6fefe0a7761a35b33c616e199c19f0c0d069e282",
  10260. "reference": "6fefe0a7761a35b33c616e199c19f0c0d069e282",
  10261. "shasum": ""
  10262. },
  10263. "require": {
  10264. "php": ">=7.2.5",
  10265. "symfony/config": "^4.4|^5.0|^6.0",
  10266. "symfony/framework-bundle": "^5.3|^6.0",
  10267. "symfony/http-kernel": "^5.3|^6.0",
  10268. "symfony/polyfill-php80": "^1.16",
  10269. "symfony/routing": "^4.4|^5.0|^6.0",
  10270. "symfony/twig-bundle": "^4.4|^5.0|^6.0",
  10271. "twig/twig": "^2.13|^3.0.4"
  10272. },
  10273. "conflict": {
  10274. "symfony/dependency-injection": "<5.2",
  10275. "symfony/form": "<4.4",
  10276. "symfony/mailer": "<5.4",
  10277. "symfony/messenger": "<4.4"
  10278. },
  10279. "require-dev": {
  10280. "symfony/browser-kit": "^4.4|^5.0|^6.0",
  10281. "symfony/console": "^4.4|^5.0|^6.0",
  10282. "symfony/css-selector": "^4.4|^5.0|^6.0",
  10283. "symfony/stopwatch": "^4.4|^5.0|^6.0"
  10284. },
  10285. "type": "symfony-bundle",
  10286. "autoload": {
  10287. "psr-4": {
  10288. "Symfony\\Bundle\\WebProfilerBundle\\": ""
  10289. },
  10290. "exclude-from-classmap": [
  10291. "/Tests/"
  10292. ]
  10293. },
  10294. "notification-url": "https://packagist.org/downloads/",
  10295. "license": [
  10296. "MIT"
  10297. ],
  10298. "authors": [
  10299. {
  10300. "name": "Fabien Potencier",
  10301. "email": "fabien@symfony.com"
  10302. },
  10303. {
  10304. "name": "Symfony Community",
  10305. "homepage": "https://symfony.com/contributors"
  10306. }
  10307. ],
  10308. "description": "Provides a development tool that gives detailed information about the execution of any request",
  10309. "homepage": "https://symfony.com",
  10310. "support": {
  10311. "source": "https://github.com/symfony/web-profiler-bundle/tree/v5.4.13"
  10312. },
  10313. "funding": [
  10314. {
  10315. "url": "https://symfony.com/sponsor",
  10316. "type": "custom"
  10317. },
  10318. {
  10319. "url": "https://github.com/fabpot",
  10320. "type": "github"
  10321. },
  10322. {
  10323. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  10324. "type": "tidelift"
  10325. }
  10326. ],
  10327. "time": "2022-08-28T23:24:00+00:00"
  10328. },
  10329. {
  10330. "name": "theseer/tokenizer",
  10331. "version": "1.2.1",
  10332. "source": {
  10333. "type": "git",
  10334. "url": "https://github.com/theseer/tokenizer.git",
  10335. "reference": "34a41e998c2183e22995f158c581e7b5e755ab9e"
  10336. },
  10337. "dist": {
  10338. "type": "zip",
  10339. "url": "https://api.github.com/repos/theseer/tokenizer/zipball/34a41e998c2183e22995f158c581e7b5e755ab9e",
  10340. "reference": "34a41e998c2183e22995f158c581e7b5e755ab9e",
  10341. "shasum": ""
  10342. },
  10343. "require": {
  10344. "ext-dom": "*",
  10345. "ext-tokenizer": "*",
  10346. "ext-xmlwriter": "*",
  10347. "php": "^7.2 || ^8.0"
  10348. },
  10349. "type": "library",
  10350. "autoload": {
  10351. "classmap": [
  10352. "src/"
  10353. ]
  10354. },
  10355. "notification-url": "https://packagist.org/downloads/",
  10356. "license": [
  10357. "BSD-3-Clause"
  10358. ],
  10359. "authors": [
  10360. {
  10361. "name": "Arne Blankerts",
  10362. "email": "arne@blankerts.de",
  10363. "role": "Developer"
  10364. }
  10365. ],
  10366. "description": "A small library for converting tokenized PHP source code into XML and potentially other formats",
  10367. "support": {
  10368. "issues": "https://github.com/theseer/tokenizer/issues",
  10369. "source": "https://github.com/theseer/tokenizer/tree/1.2.1"
  10370. },
  10371. "funding": [
  10372. {
  10373. "url": "https://github.com/theseer",
  10374. "type": "github"
  10375. }
  10376. ],
  10377. "time": "2021-07-28T10:34:58+00:00"
  10378. }
  10379. ],
  10380. "aliases": [],
  10381. "minimum-stability": "stable",
  10382. "stability-flags": [],
  10383. "prefer-stable": false,
  10384. "prefer-lowest": false,
  10385. "platform": {
  10386. "php": "^8.1",
  10387. "ext-ctype": "*",
  10388. "ext-iconv": "*"
  10389. },
  10390. "platform-dev": [],
  10391. "platform-overrides": {
  10392. "php": "8.1"
  10393. },
  10394. "plugin-api-version": "2.3.0"
  10395. }