composer.lock 380 KB

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