composer.lock 381 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298529953005301530253035304530553065307530853095310531153125313531453155316531753185319532053215322532353245325532653275328532953305331533253335334533553365337533853395340534153425343534453455346534753485349535053515352535353545355535653575358535953605361536253635364536553665367536853695370537153725373537453755376537753785379538053815382538353845385538653875388538953905391539253935394539553965397539853995400540154025403540454055406540754085409541054115412541354145415541654175418541954205421542254235424542554265427542854295430543154325433543454355436543754385439544054415442544354445445544654475448544954505451545254535454545554565457545854595460546154625463546454655466546754685469547054715472547354745475547654775478547954805481548254835484548554865487548854895490549154925493549454955496549754985499550055015502550355045505550655075508550955105511551255135514551555165517551855195520552155225523552455255526552755285529553055315532553355345535553655375538553955405541554255435544554555465547554855495550555155525553555455555556555755585559556055615562556355645565556655675568556955705571557255735574557555765577557855795580558155825583558455855586558755885589559055915592559355945595559655975598559956005601560256035604560556065607560856095610561156125613561456155616561756185619562056215622562356245625562656275628562956305631563256335634563556365637563856395640564156425643564456455646564756485649565056515652565356545655565656575658565956605661566256635664566556665667566856695670567156725673567456755676567756785679568056815682568356845685568656875688568956905691569256935694569556965697569856995700570157025703570457055706570757085709571057115712571357145715571657175718571957205721572257235724572557265727572857295730573157325733573457355736573757385739574057415742574357445745574657475748574957505751575257535754575557565757575857595760576157625763576457655766576757685769577057715772577357745775577657775778577957805781578257835784578557865787578857895790579157925793579457955796579757985799580058015802580358045805580658075808580958105811581258135814581558165817581858195820582158225823582458255826582758285829583058315832583358345835583658375838583958405841584258435844584558465847584858495850585158525853585458555856585758585859586058615862586358645865586658675868586958705871587258735874587558765877587858795880588158825883588458855886588758885889589058915892589358945895589658975898589959005901590259035904590559065907590859095910591159125913591459155916591759185919592059215922592359245925592659275928592959305931593259335934593559365937593859395940594159425943594459455946594759485949595059515952595359545955595659575958595959605961596259635964596559665967596859695970597159725973597459755976597759785979598059815982598359845985598659875988598959905991599259935994599559965997599859996000600160026003600460056006600760086009601060116012601360146015601660176018601960206021602260236024602560266027602860296030603160326033603460356036603760386039604060416042604360446045604660476048604960506051605260536054605560566057605860596060606160626063606460656066606760686069607060716072607360746075607660776078607960806081608260836084608560866087608860896090609160926093609460956096609760986099610061016102610361046105610661076108610961106111611261136114611561166117611861196120612161226123612461256126612761286129613061316132613361346135613661376138613961406141614261436144614561466147614861496150615161526153615461556156615761586159616061616162616361646165616661676168616961706171617261736174617561766177617861796180618161826183618461856186618761886189619061916192619361946195619661976198619962006201620262036204620562066207620862096210621162126213621462156216621762186219622062216222622362246225622662276228622962306231623262336234623562366237623862396240624162426243624462456246624762486249625062516252625362546255625662576258625962606261626262636264626562666267626862696270627162726273627462756276627762786279628062816282628362846285628662876288628962906291629262936294629562966297629862996300630163026303630463056306630763086309631063116312631363146315631663176318631963206321632263236324632563266327632863296330633163326333633463356336633763386339634063416342634363446345634663476348634963506351635263536354635563566357635863596360636163626363636463656366636763686369637063716372637363746375637663776378637963806381638263836384638563866387638863896390639163926393639463956396639763986399640064016402640364046405640664076408640964106411641264136414641564166417641864196420642164226423642464256426642764286429643064316432643364346435643664376438643964406441644264436444644564466447644864496450645164526453645464556456645764586459646064616462646364646465646664676468646964706471647264736474647564766477647864796480648164826483648464856486648764886489649064916492649364946495649664976498649965006501650265036504650565066507650865096510651165126513651465156516651765186519652065216522652365246525652665276528652965306531653265336534653565366537653865396540654165426543654465456546654765486549655065516552655365546555655665576558655965606561656265636564656565666567656865696570657165726573657465756576657765786579658065816582658365846585658665876588658965906591659265936594659565966597659865996600660166026603660466056606660766086609661066116612661366146615661666176618661966206621662266236624662566266627662866296630663166326633663466356636663766386639664066416642664366446645664666476648664966506651665266536654665566566657665866596660666166626663666466656666666766686669667066716672667366746675667666776678667966806681668266836684668566866687668866896690669166926693669466956696669766986699670067016702670367046705670667076708670967106711671267136714671567166717671867196720672167226723672467256726672767286729673067316732673367346735673667376738673967406741674267436744674567466747674867496750675167526753675467556756675767586759676067616762676367646765676667676768676967706771677267736774677567766777677867796780678167826783678467856786678767886789679067916792679367946795679667976798679968006801680268036804680568066807680868096810681168126813681468156816681768186819682068216822682368246825682668276828682968306831683268336834683568366837683868396840684168426843684468456846684768486849685068516852685368546855685668576858685968606861686268636864686568666867686868696870687168726873687468756876687768786879688068816882688368846885688668876888688968906891689268936894689568966897689868996900690169026903690469056906690769086909691069116912691369146915691669176918691969206921692269236924692569266927692869296930693169326933693469356936693769386939694069416942694369446945694669476948694969506951695269536954695569566957695869596960696169626963696469656966696769686969697069716972697369746975697669776978697969806981698269836984698569866987698869896990699169926993699469956996699769986999700070017002700370047005700670077008700970107011701270137014701570167017701870197020702170227023702470257026702770287029703070317032703370347035703670377038703970407041704270437044704570467047704870497050705170527053705470557056705770587059706070617062706370647065706670677068706970707071707270737074707570767077707870797080708170827083708470857086708770887089709070917092709370947095709670977098709971007101710271037104710571067107710871097110711171127113711471157116711771187119712071217122712371247125712671277128712971307131713271337134713571367137713871397140714171427143714471457146714771487149715071517152715371547155715671577158715971607161716271637164716571667167716871697170717171727173717471757176717771787179718071817182718371847185718671877188718971907191719271937194719571967197719871997200720172027203720472057206720772087209721072117212721372147215721672177218721972207221722272237224722572267227722872297230723172327233723472357236723772387239724072417242724372447245724672477248724972507251725272537254725572567257725872597260726172627263726472657266726772687269727072717272727372747275727672777278727972807281728272837284728572867287728872897290729172927293729472957296729772987299730073017302730373047305730673077308730973107311731273137314731573167317731873197320732173227323732473257326732773287329733073317332733373347335733673377338733973407341734273437344734573467347734873497350735173527353735473557356735773587359736073617362736373647365736673677368736973707371737273737374737573767377737873797380738173827383738473857386738773887389739073917392739373947395739673977398739974007401740274037404740574067407740874097410741174127413741474157416741774187419742074217422742374247425742674277428742974307431743274337434743574367437743874397440744174427443744474457446744774487449745074517452745374547455745674577458745974607461746274637464746574667467746874697470747174727473747474757476747774787479748074817482748374847485748674877488748974907491749274937494749574967497749874997500750175027503750475057506750775087509751075117512751375147515751675177518751975207521752275237524752575267527752875297530753175327533753475357536753775387539754075417542754375447545754675477548754975507551755275537554755575567557755875597560756175627563756475657566756775687569757075717572757375747575757675777578757975807581758275837584758575867587758875897590759175927593759475957596759775987599760076017602760376047605760676077608760976107611761276137614761576167617761876197620762176227623762476257626762776287629763076317632763376347635763676377638763976407641764276437644764576467647764876497650765176527653765476557656765776587659766076617662766376647665766676677668766976707671767276737674767576767677767876797680768176827683768476857686768776887689769076917692769376947695769676977698769977007701770277037704770577067707770877097710771177127713771477157716771777187719772077217722772377247725772677277728772977307731773277337734773577367737773877397740774177427743774477457746774777487749775077517752775377547755775677577758775977607761776277637764776577667767776877697770777177727773777477757776777777787779778077817782778377847785778677877788778977907791779277937794779577967797779877997800780178027803780478057806780778087809781078117812781378147815781678177818781978207821782278237824782578267827782878297830783178327833783478357836783778387839784078417842784378447845784678477848784978507851785278537854785578567857785878597860786178627863786478657866786778687869787078717872787378747875787678777878787978807881788278837884788578867887788878897890789178927893789478957896789778987899790079017902790379047905790679077908790979107911791279137914791579167917791879197920792179227923792479257926792779287929793079317932793379347935793679377938793979407941794279437944794579467947794879497950795179527953795479557956795779587959796079617962796379647965796679677968796979707971797279737974797579767977797879797980798179827983798479857986798779887989799079917992799379947995799679977998799980008001800280038004800580068007800880098010801180128013801480158016801780188019802080218022802380248025802680278028802980308031803280338034803580368037803880398040804180428043804480458046804780488049805080518052805380548055805680578058805980608061806280638064806580668067806880698070807180728073807480758076807780788079808080818082808380848085808680878088808980908091809280938094809580968097809880998100810181028103810481058106810781088109811081118112811381148115811681178118811981208121812281238124812581268127812881298130813181328133813481358136813781388139814081418142814381448145814681478148814981508151815281538154815581568157815881598160816181628163816481658166816781688169817081718172817381748175817681778178817981808181818281838184818581868187818881898190819181928193819481958196819781988199820082018202820382048205820682078208820982108211821282138214821582168217821882198220822182228223822482258226822782288229823082318232823382348235823682378238823982408241824282438244824582468247824882498250825182528253825482558256825782588259826082618262826382648265826682678268826982708271827282738274827582768277827882798280828182828283828482858286828782888289829082918292829382948295829682978298829983008301830283038304830583068307830883098310831183128313831483158316831783188319832083218322832383248325832683278328832983308331833283338334833583368337833883398340834183428343834483458346834783488349835083518352835383548355835683578358835983608361836283638364836583668367836883698370837183728373837483758376837783788379838083818382838383848385838683878388838983908391839283938394839583968397839883998400840184028403840484058406840784088409841084118412841384148415841684178418841984208421842284238424842584268427842884298430843184328433843484358436843784388439844084418442844384448445844684478448844984508451845284538454845584568457845884598460846184628463846484658466846784688469847084718472847384748475847684778478847984808481848284838484848584868487848884898490849184928493849484958496849784988499850085018502850385048505850685078508850985108511851285138514851585168517851885198520852185228523852485258526852785288529853085318532853385348535853685378538853985408541854285438544854585468547854885498550855185528553855485558556855785588559856085618562856385648565856685678568856985708571857285738574857585768577857885798580858185828583858485858586858785888589859085918592859385948595859685978598859986008601860286038604860586068607860886098610861186128613861486158616861786188619862086218622862386248625862686278628862986308631863286338634863586368637863886398640864186428643864486458646864786488649865086518652865386548655865686578658865986608661866286638664866586668667866886698670867186728673867486758676867786788679868086818682868386848685868686878688868986908691869286938694869586968697869886998700870187028703870487058706870787088709871087118712871387148715871687178718871987208721872287238724872587268727872887298730873187328733873487358736873787388739874087418742874387448745874687478748874987508751875287538754875587568757875887598760876187628763876487658766876787688769877087718772877387748775877687778778877987808781878287838784878587868787878887898790879187928793879487958796879787988799880088018802880388048805880688078808880988108811881288138814881588168817881888198820882188228823882488258826882788288829883088318832883388348835883688378838883988408841884288438844884588468847884888498850885188528853885488558856885788588859886088618862886388648865886688678868886988708871887288738874887588768877887888798880888188828883888488858886888788888889889088918892889388948895889688978898889989008901890289038904890589068907890889098910891189128913891489158916891789188919892089218922892389248925892689278928892989308931893289338934893589368937893889398940894189428943894489458946894789488949895089518952895389548955895689578958895989608961896289638964896589668967896889698970897189728973897489758976897789788979898089818982898389848985898689878988898989908991899289938994899589968997899889999000900190029003900490059006900790089009901090119012901390149015901690179018901990209021902290239024902590269027902890299030903190329033903490359036903790389039904090419042904390449045904690479048904990509051905290539054905590569057905890599060906190629063906490659066906790689069907090719072907390749075907690779078907990809081908290839084908590869087908890899090909190929093909490959096909790989099910091019102910391049105910691079108910991109111911291139114911591169117911891199120912191229123912491259126912791289129913091319132913391349135913691379138913991409141914291439144914591469147914891499150915191529153915491559156915791589159916091619162916391649165916691679168916991709171917291739174917591769177917891799180918191829183918491859186918791889189919091919192919391949195919691979198919992009201920292039204920592069207920892099210921192129213921492159216921792189219922092219222922392249225922692279228922992309231923292339234923592369237923892399240924192429243924492459246924792489249925092519252925392549255925692579258925992609261926292639264926592669267926892699270927192729273927492759276927792789279928092819282928392849285928692879288928992909291929292939294929592969297929892999300930193029303930493059306930793089309931093119312931393149315931693179318931993209321932293239324932593269327932893299330933193329333933493359336933793389339934093419342934393449345934693479348934993509351935293539354935593569357935893599360936193629363936493659366936793689369937093719372937393749375937693779378937993809381938293839384938593869387938893899390939193929393939493959396939793989399940094019402940394049405940694079408940994109411941294139414941594169417941894199420942194229423942494259426942794289429943094319432943394349435943694379438943994409441944294439444944594469447944894499450945194529453945494559456945794589459946094619462946394649465946694679468946994709471947294739474947594769477947894799480948194829483948494859486948794889489949094919492949394949495949694979498949995009501950295039504950595069507950895099510951195129513951495159516951795189519952095219522952395249525952695279528952995309531953295339534953595369537953895399540954195429543954495459546954795489549955095519552955395549555955695579558955995609561956295639564956595669567956895699570957195729573957495759576957795789579958095819582958395849585958695879588958995909591959295939594959595969597959895999600960196029603960496059606960796089609961096119612961396149615961696179618961996209621962296239624962596269627962896299630963196329633963496359636963796389639964096419642964396449645964696479648964996509651965296539654965596569657965896599660966196629663966496659666966796689669967096719672967396749675967696779678967996809681968296839684968596869687968896899690969196929693969496959696969796989699970097019702970397049705970697079708970997109711971297139714971597169717971897199720972197229723972497259726972797289729973097319732973397349735973697379738973997409741974297439744974597469747974897499750975197529753975497559756975797589759976097619762976397649765976697679768976997709771977297739774977597769777977897799780978197829783978497859786978797889789979097919792979397949795979697979798979998009801980298039804980598069807980898099810981198129813981498159816981798189819982098219822982398249825982698279828982998309831983298339834983598369837983898399840984198429843984498459846984798489849985098519852985398549855985698579858985998609861986298639864986598669867986898699870987198729873987498759876987798789879988098819882988398849885988698879888988998909891989298939894989598969897989898999900990199029903990499059906990799089909991099119912991399149915991699179918991999209921992299239924992599269927992899299930993199329933993499359936993799389939994099419942994399449945994699479948994999509951995299539954995599569957995899599960996199629963996499659966996799689969997099719972997399749975997699779978997999809981998299839984998599869987998899899990999199929993999499959996999799989999100001000110002100031000410005100061000710008100091001010011100121001310014100151001610017100181001910020100211002210023100241002510026100271002810029100301003110032100331003410035100361003710038100391004010041100421004310044100451004610047100481004910050100511005210053100541005510056100571005810059100601006110062100631006410065100661006710068100691007010071100721007310074100751007610077100781007910080100811008210083100841008510086100871008810089100901009110092100931009410095100961009710098100991010010101101021010310104101051010610107101081010910110101111011210113101141011510116101171011810119101201012110122101231012410125101261012710128101291013010131101321013310134101351013610137101381013910140101411014210143101441014510146101471014810149101501015110152101531015410155101561015710158101591016010161101621016310164101651016610167101681016910170101711017210173101741017510176101771017810179101801018110182101831018410185101861018710188101891019010191101921019310194101951019610197101981019910200102011020210203102041020510206102071020810209102101021110212102131021410215102161021710218102191022010221102221022310224102251022610227102281022910230102311023210233102341023510236102371023810239102401024110242102431024410245102461024710248102491025010251102521025310254102551025610257102581025910260102611026210263102641026510266102671026810269102701027110272102731027410275102761027710278102791028010281102821028310284102851028610287102881028910290102911029210293102941029510296102971029810299103001030110302103031030410305103061030710308103091031010311103121031310314103151031610317103181031910320103211032210323103241032510326103271032810329103301033110332103331033410335103361033710338103391034010341103421034310344103451034610347103481034910350103511035210353103541035510356103571035810359103601036110362103631036410365103661036710368103691037010371103721037310374103751037610377103781037910380103811038210383103841038510386103871038810389103901039110392103931039410395103961039710398103991040010401104021040310404104051040610407104081040910410104111041210413104141041510416104171041810419104201042110422104231042410425104261042710428104291043010431104321043310434104351043610437104381043910440104411044210443104441044510446104471044810449104501045110452104531045410455104561045710458104591046010461104621046310464104651046610467104681046910470104711047210473104741047510476104771047810479104801048110482104831048410485104861048710488104891049010491104921049310494104951049610497104981049910500105011050210503105041050510506105071050810509105101051110512105131051410515105161051710518105191052010521
  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": "39e043a805f59582386d250efc1b6e90",
  8. "packages": [
  9. {
  10. "name": "composer/package-versions-deprecated",
  11. "version": "1.11.99.5",
  12. "source": {
  13. "type": "git",
  14. "url": "https://github.com/composer/package-versions-deprecated.git",
  15. "reference": "b4f54f74ef3453349c24a845d22392cd31e65f1d"
  16. },
  17. "dist": {
  18. "type": "zip",
  19. "url": "https://api.github.com/repos/composer/package-versions-deprecated/zipball/b4f54f74ef3453349c24a845d22392cd31e65f1d",
  20. "reference": "b4f54f74ef3453349c24a845d22392cd31e65f1d",
  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.5"
  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": "2022-01-17T14:14:24+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": "2.0.1",
  160. "source": {
  161. "type": "git",
  162. "url": "https://github.com/doctrine/annotations.git",
  163. "reference": "e157ef3f3124bbf6fe7ce0ffd109e8a8ef284e7f"
  164. },
  165. "dist": {
  166. "type": "zip",
  167. "url": "https://api.github.com/repos/doctrine/annotations/zipball/e157ef3f3124bbf6fe7ce0ffd109e8a8ef284e7f",
  168. "reference": "e157ef3f3124bbf6fe7ce0ffd109e8a8ef284e7f",
  169. "shasum": ""
  170. },
  171. "require": {
  172. "doctrine/lexer": "^2 || ^3",
  173. "ext-tokenizer": "*",
  174. "php": "^7.2 || ^8.0",
  175. "psr/cache": "^1 || ^2 || ^3"
  176. },
  177. "require-dev": {
  178. "doctrine/cache": "^2.0",
  179. "doctrine/coding-standard": "^10",
  180. "phpstan/phpstan": "^1.8.0",
  181. "phpunit/phpunit": "^7.5 || ^8.5 || ^9.5",
  182. "symfony/cache": "^5.4 || ^6",
  183. "vimeo/psalm": "^4.10"
  184. },
  185. "suggest": {
  186. "php": "PHP 8.0 or higher comes with attributes, a native replacement for annotations"
  187. },
  188. "type": "library",
  189. "autoload": {
  190. "psr-4": {
  191. "Doctrine\\Common\\Annotations\\": "lib/Doctrine/Common/Annotations"
  192. }
  193. },
  194. "notification-url": "https://packagist.org/downloads/",
  195. "license": [
  196. "MIT"
  197. ],
  198. "authors": [
  199. {
  200. "name": "Guilherme Blanco",
  201. "email": "guilhermeblanco@gmail.com"
  202. },
  203. {
  204. "name": "Roman Borschel",
  205. "email": "roman@code-factory.org"
  206. },
  207. {
  208. "name": "Benjamin Eberlei",
  209. "email": "kontakt@beberlei.de"
  210. },
  211. {
  212. "name": "Jonathan Wage",
  213. "email": "jonwage@gmail.com"
  214. },
  215. {
  216. "name": "Johannes Schmitt",
  217. "email": "schmittjoh@gmail.com"
  218. }
  219. ],
  220. "description": "Docblock Annotations Parser",
  221. "homepage": "https://www.doctrine-project.org/projects/annotations.html",
  222. "keywords": [
  223. "annotations",
  224. "docblock",
  225. "parser"
  226. ],
  227. "support": {
  228. "issues": "https://github.com/doctrine/annotations/issues",
  229. "source": "https://github.com/doctrine/annotations/tree/2.0.1"
  230. },
  231. "time": "2023-02-02T22:02:53+00:00"
  232. },
  233. {
  234. "name": "doctrine/cache",
  235. "version": "2.2.0",
  236. "source": {
  237. "type": "git",
  238. "url": "https://github.com/doctrine/cache.git",
  239. "reference": "1ca8f21980e770095a31456042471a57bc4c68fb"
  240. },
  241. "dist": {
  242. "type": "zip",
  243. "url": "https://api.github.com/repos/doctrine/cache/zipball/1ca8f21980e770095a31456042471a57bc4c68fb",
  244. "reference": "1ca8f21980e770095a31456042471a57bc4c68fb",
  245. "shasum": ""
  246. },
  247. "require": {
  248. "php": "~7.1 || ^8.0"
  249. },
  250. "conflict": {
  251. "doctrine/common": ">2.2,<2.4"
  252. },
  253. "require-dev": {
  254. "cache/integration-tests": "dev-master",
  255. "doctrine/coding-standard": "^9",
  256. "phpunit/phpunit": "^7.5 || ^8.5 || ^9.5",
  257. "psr/cache": "^1.0 || ^2.0 || ^3.0",
  258. "symfony/cache": "^4.4 || ^5.4 || ^6",
  259. "symfony/var-exporter": "^4.4 || ^5.4 || ^6"
  260. },
  261. "type": "library",
  262. "autoload": {
  263. "psr-4": {
  264. "Doctrine\\Common\\Cache\\": "lib/Doctrine/Common/Cache"
  265. }
  266. },
  267. "notification-url": "https://packagist.org/downloads/",
  268. "license": [
  269. "MIT"
  270. ],
  271. "authors": [
  272. {
  273. "name": "Guilherme Blanco",
  274. "email": "guilhermeblanco@gmail.com"
  275. },
  276. {
  277. "name": "Roman Borschel",
  278. "email": "roman@code-factory.org"
  279. },
  280. {
  281. "name": "Benjamin Eberlei",
  282. "email": "kontakt@beberlei.de"
  283. },
  284. {
  285. "name": "Jonathan Wage",
  286. "email": "jonwage@gmail.com"
  287. },
  288. {
  289. "name": "Johannes Schmitt",
  290. "email": "schmittjoh@gmail.com"
  291. }
  292. ],
  293. "description": "PHP Doctrine Cache library is a popular cache implementation that supports many different drivers such as redis, memcache, apc, mongodb and others.",
  294. "homepage": "https://www.doctrine-project.org/projects/cache.html",
  295. "keywords": [
  296. "abstraction",
  297. "apcu",
  298. "cache",
  299. "caching",
  300. "couchdb",
  301. "memcached",
  302. "php",
  303. "redis",
  304. "xcache"
  305. ],
  306. "support": {
  307. "issues": "https://github.com/doctrine/cache/issues",
  308. "source": "https://github.com/doctrine/cache/tree/2.2.0"
  309. },
  310. "funding": [
  311. {
  312. "url": "https://www.doctrine-project.org/sponsorship.html",
  313. "type": "custom"
  314. },
  315. {
  316. "url": "https://www.patreon.com/phpdoctrine",
  317. "type": "patreon"
  318. },
  319. {
  320. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fcache",
  321. "type": "tidelift"
  322. }
  323. ],
  324. "time": "2022-05-20T20:07:39+00:00"
  325. },
  326. {
  327. "name": "doctrine/collections",
  328. "version": "2.1.2",
  329. "source": {
  330. "type": "git",
  331. "url": "https://github.com/doctrine/collections.git",
  332. "reference": "db8cda536a034337f7dd63febecc713d4957f9ee"
  333. },
  334. "dist": {
  335. "type": "zip",
  336. "url": "https://api.github.com/repos/doctrine/collections/zipball/db8cda536a034337f7dd63febecc713d4957f9ee",
  337. "reference": "db8cda536a034337f7dd63febecc713d4957f9ee",
  338. "shasum": ""
  339. },
  340. "require": {
  341. "doctrine/deprecations": "^1",
  342. "php": "^8.1"
  343. },
  344. "require-dev": {
  345. "doctrine/coding-standard": "^10.0",
  346. "ext-json": "*",
  347. "phpstan/phpstan": "^1.8",
  348. "phpstan/phpstan-phpunit": "^1.0",
  349. "phpunit/phpunit": "^9.5",
  350. "vimeo/psalm": "^4.22"
  351. },
  352. "type": "library",
  353. "autoload": {
  354. "psr-4": {
  355. "Doctrine\\Common\\Collections\\": "src"
  356. }
  357. },
  358. "notification-url": "https://packagist.org/downloads/",
  359. "license": [
  360. "MIT"
  361. ],
  362. "authors": [
  363. {
  364. "name": "Guilherme Blanco",
  365. "email": "guilhermeblanco@gmail.com"
  366. },
  367. {
  368. "name": "Roman Borschel",
  369. "email": "roman@code-factory.org"
  370. },
  371. {
  372. "name": "Benjamin Eberlei",
  373. "email": "kontakt@beberlei.de"
  374. },
  375. {
  376. "name": "Jonathan Wage",
  377. "email": "jonwage@gmail.com"
  378. },
  379. {
  380. "name": "Johannes Schmitt",
  381. "email": "schmittjoh@gmail.com"
  382. }
  383. ],
  384. "description": "PHP Doctrine Collections library that adds additional functionality on top of PHP arrays.",
  385. "homepage": "https://www.doctrine-project.org/projects/collections.html",
  386. "keywords": [
  387. "array",
  388. "collections",
  389. "iterators",
  390. "php"
  391. ],
  392. "support": {
  393. "issues": "https://github.com/doctrine/collections/issues",
  394. "source": "https://github.com/doctrine/collections/tree/2.1.2"
  395. },
  396. "funding": [
  397. {
  398. "url": "https://www.doctrine-project.org/sponsorship.html",
  399. "type": "custom"
  400. },
  401. {
  402. "url": "https://www.patreon.com/phpdoctrine",
  403. "type": "patreon"
  404. },
  405. {
  406. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fcollections",
  407. "type": "tidelift"
  408. }
  409. ],
  410. "time": "2022-12-27T23:41:38+00:00"
  411. },
  412. {
  413. "name": "doctrine/common",
  414. "version": "3.4.3",
  415. "source": {
  416. "type": "git",
  417. "url": "https://github.com/doctrine/common.git",
  418. "reference": "8b5e5650391f851ed58910b3e3d48a71062eeced"
  419. },
  420. "dist": {
  421. "type": "zip",
  422. "url": "https://api.github.com/repos/doctrine/common/zipball/8b5e5650391f851ed58910b3e3d48a71062eeced",
  423. "reference": "8b5e5650391f851ed58910b3e3d48a71062eeced",
  424. "shasum": ""
  425. },
  426. "require": {
  427. "doctrine/persistence": "^2.0 || ^3.0",
  428. "php": "^7.1 || ^8.0"
  429. },
  430. "require-dev": {
  431. "doctrine/coding-standard": "^9.0 || ^10.0",
  432. "doctrine/collections": "^1",
  433. "phpstan/phpstan": "^1.4.1",
  434. "phpstan/phpstan-phpunit": "^1",
  435. "phpunit/phpunit": "^7.5.20 || ^8.5 || ^9.0",
  436. "squizlabs/php_codesniffer": "^3.0",
  437. "symfony/phpunit-bridge": "^6.1",
  438. "vimeo/psalm": "^4.4"
  439. },
  440. "type": "library",
  441. "autoload": {
  442. "psr-4": {
  443. "Doctrine\\Common\\": "src"
  444. }
  445. },
  446. "notification-url": "https://packagist.org/downloads/",
  447. "license": [
  448. "MIT"
  449. ],
  450. "authors": [
  451. {
  452. "name": "Guilherme Blanco",
  453. "email": "guilhermeblanco@gmail.com"
  454. },
  455. {
  456. "name": "Roman Borschel",
  457. "email": "roman@code-factory.org"
  458. },
  459. {
  460. "name": "Benjamin Eberlei",
  461. "email": "kontakt@beberlei.de"
  462. },
  463. {
  464. "name": "Jonathan Wage",
  465. "email": "jonwage@gmail.com"
  466. },
  467. {
  468. "name": "Johannes Schmitt",
  469. "email": "schmittjoh@gmail.com"
  470. },
  471. {
  472. "name": "Marco Pivetta",
  473. "email": "ocramius@gmail.com"
  474. }
  475. ],
  476. "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.",
  477. "homepage": "https://www.doctrine-project.org/projects/common.html",
  478. "keywords": [
  479. "common",
  480. "doctrine",
  481. "php"
  482. ],
  483. "support": {
  484. "issues": "https://github.com/doctrine/common/issues",
  485. "source": "https://github.com/doctrine/common/tree/3.4.3"
  486. },
  487. "funding": [
  488. {
  489. "url": "https://www.doctrine-project.org/sponsorship.html",
  490. "type": "custom"
  491. },
  492. {
  493. "url": "https://www.patreon.com/phpdoctrine",
  494. "type": "patreon"
  495. },
  496. {
  497. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fcommon",
  498. "type": "tidelift"
  499. }
  500. ],
  501. "time": "2022-10-09T11:47:59+00:00"
  502. },
  503. {
  504. "name": "doctrine/dbal",
  505. "version": "3.6.1",
  506. "source": {
  507. "type": "git",
  508. "url": "https://github.com/doctrine/dbal.git",
  509. "reference": "57815c7bbcda3cd18871d253c1dd8cbe56f8526e"
  510. },
  511. "dist": {
  512. "type": "zip",
  513. "url": "https://api.github.com/repos/doctrine/dbal/zipball/57815c7bbcda3cd18871d253c1dd8cbe56f8526e",
  514. "reference": "57815c7bbcda3cd18871d253c1dd8cbe56f8526e",
  515. "shasum": ""
  516. },
  517. "require": {
  518. "composer-runtime-api": "^2",
  519. "doctrine/cache": "^1.11|^2.0",
  520. "doctrine/deprecations": "^0.5.3|^1",
  521. "doctrine/event-manager": "^1|^2",
  522. "php": "^7.4 || ^8.0",
  523. "psr/cache": "^1|^2|^3",
  524. "psr/log": "^1|^2|^3"
  525. },
  526. "require-dev": {
  527. "doctrine/coding-standard": "11.1.0",
  528. "fig/log-test": "^1",
  529. "jetbrains/phpstorm-stubs": "2022.3",
  530. "phpstan/phpstan": "1.10.3",
  531. "phpstan/phpstan-strict-rules": "^1.5",
  532. "phpunit/phpunit": "9.6.4",
  533. "psalm/plugin-phpunit": "0.18.4",
  534. "squizlabs/php_codesniffer": "3.7.2",
  535. "symfony/cache": "^5.4|^6.0",
  536. "symfony/console": "^4.4|^5.4|^6.0",
  537. "vimeo/psalm": "4.30.0"
  538. },
  539. "suggest": {
  540. "symfony/console": "For helpful console commands such as SQL execution and import of files."
  541. },
  542. "bin": [
  543. "bin/doctrine-dbal"
  544. ],
  545. "type": "library",
  546. "autoload": {
  547. "psr-4": {
  548. "Doctrine\\DBAL\\": "src"
  549. }
  550. },
  551. "notification-url": "https://packagist.org/downloads/",
  552. "license": [
  553. "MIT"
  554. ],
  555. "authors": [
  556. {
  557. "name": "Guilherme Blanco",
  558. "email": "guilhermeblanco@gmail.com"
  559. },
  560. {
  561. "name": "Roman Borschel",
  562. "email": "roman@code-factory.org"
  563. },
  564. {
  565. "name": "Benjamin Eberlei",
  566. "email": "kontakt@beberlei.de"
  567. },
  568. {
  569. "name": "Jonathan Wage",
  570. "email": "jonwage@gmail.com"
  571. }
  572. ],
  573. "description": "Powerful PHP database abstraction layer (DBAL) with many features for database schema introspection and management.",
  574. "homepage": "https://www.doctrine-project.org/projects/dbal.html",
  575. "keywords": [
  576. "abstraction",
  577. "database",
  578. "db2",
  579. "dbal",
  580. "mariadb",
  581. "mssql",
  582. "mysql",
  583. "oci8",
  584. "oracle",
  585. "pdo",
  586. "pgsql",
  587. "postgresql",
  588. "queryobject",
  589. "sasql",
  590. "sql",
  591. "sqlite",
  592. "sqlserver",
  593. "sqlsrv"
  594. ],
  595. "support": {
  596. "issues": "https://github.com/doctrine/dbal/issues",
  597. "source": "https://github.com/doctrine/dbal/tree/3.6.1"
  598. },
  599. "funding": [
  600. {
  601. "url": "https://www.doctrine-project.org/sponsorship.html",
  602. "type": "custom"
  603. },
  604. {
  605. "url": "https://www.patreon.com/phpdoctrine",
  606. "type": "patreon"
  607. },
  608. {
  609. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fdbal",
  610. "type": "tidelift"
  611. }
  612. ],
  613. "time": "2023-03-02T19:26:24+00:00"
  614. },
  615. {
  616. "name": "doctrine/deprecations",
  617. "version": "v1.0.0",
  618. "source": {
  619. "type": "git",
  620. "url": "https://github.com/doctrine/deprecations.git",
  621. "reference": "0e2a4f1f8cdfc7a92ec3b01c9334898c806b30de"
  622. },
  623. "dist": {
  624. "type": "zip",
  625. "url": "https://api.github.com/repos/doctrine/deprecations/zipball/0e2a4f1f8cdfc7a92ec3b01c9334898c806b30de",
  626. "reference": "0e2a4f1f8cdfc7a92ec3b01c9334898c806b30de",
  627. "shasum": ""
  628. },
  629. "require": {
  630. "php": "^7.1|^8.0"
  631. },
  632. "require-dev": {
  633. "doctrine/coding-standard": "^9",
  634. "phpunit/phpunit": "^7.5|^8.5|^9.5",
  635. "psr/log": "^1|^2|^3"
  636. },
  637. "suggest": {
  638. "psr/log": "Allows logging deprecations via PSR-3 logger implementation"
  639. },
  640. "type": "library",
  641. "autoload": {
  642. "psr-4": {
  643. "Doctrine\\Deprecations\\": "lib/Doctrine/Deprecations"
  644. }
  645. },
  646. "notification-url": "https://packagist.org/downloads/",
  647. "license": [
  648. "MIT"
  649. ],
  650. "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.",
  651. "homepage": "https://www.doctrine-project.org/",
  652. "support": {
  653. "issues": "https://github.com/doctrine/deprecations/issues",
  654. "source": "https://github.com/doctrine/deprecations/tree/v1.0.0"
  655. },
  656. "time": "2022-05-02T15:47:09+00:00"
  657. },
  658. {
  659. "name": "doctrine/doctrine-bundle",
  660. "version": "2.8.3",
  661. "source": {
  662. "type": "git",
  663. "url": "https://github.com/doctrine/DoctrineBundle.git",
  664. "reference": "fd67ba64db3c806f626a33dcab15a4db0c77652e"
  665. },
  666. "dist": {
  667. "type": "zip",
  668. "url": "https://api.github.com/repos/doctrine/DoctrineBundle/zipball/fd67ba64db3c806f626a33dcab15a4db0c77652e",
  669. "reference": "fd67ba64db3c806f626a33dcab15a4db0c77652e",
  670. "shasum": ""
  671. },
  672. "require": {
  673. "doctrine/cache": "^1.11 || ^2.0",
  674. "doctrine/dbal": "^3.4.0",
  675. "doctrine/persistence": "^2.2 || ^3",
  676. "doctrine/sql-formatter": "^1.0.1",
  677. "php": "^7.4 || ^8.0",
  678. "symfony/cache": "^5.4 || ^6.0",
  679. "symfony/config": "^5.4 || ^6.0",
  680. "symfony/console": "^5.4 || ^6.0",
  681. "symfony/dependency-injection": "^5.4 || ^6.0",
  682. "symfony/deprecation-contracts": "^2.1 || ^3",
  683. "symfony/doctrine-bridge": "^5.4.19 || ^6.0.7",
  684. "symfony/framework-bundle": "^5.4 || ^6.0",
  685. "symfony/service-contracts": "^1.1.1 || ^2.0 || ^3"
  686. },
  687. "conflict": {
  688. "doctrine/annotations": ">=3.0",
  689. "doctrine/orm": "<2.11 || >=3.0",
  690. "twig/twig": "<1.34 || >=2.0,<2.4"
  691. },
  692. "require-dev": {
  693. "doctrine/annotations": "^1 || ^2",
  694. "doctrine/coding-standard": "^9.0",
  695. "doctrine/orm": "^2.11 || ^3.0",
  696. "friendsofphp/proxy-manager-lts": "^1.0",
  697. "phpunit/phpunit": "^9.5.26 || ^10.0",
  698. "psalm/plugin-phpunit": "^0.18.4",
  699. "psalm/plugin-symfony": "^4",
  700. "psr/log": "^1.1.4 || ^2.0 || ^3.0",
  701. "symfony/phpunit-bridge": "^6.1",
  702. "symfony/property-info": "^5.4 || ^6.0",
  703. "symfony/proxy-manager-bridge": "^5.4 || ^6.0",
  704. "symfony/security-bundle": "^5.4 || ^6.0",
  705. "symfony/twig-bridge": "^5.4 || ^6.0",
  706. "symfony/validator": "^5.4 || ^6.0",
  707. "symfony/web-profiler-bundle": "^5.4 || ^6.0",
  708. "symfony/yaml": "^5.4 || ^6.0",
  709. "twig/twig": "^1.34 || ^2.12 || ^3.0",
  710. "vimeo/psalm": "^4.30"
  711. },
  712. "suggest": {
  713. "doctrine/orm": "The Doctrine ORM integration is optional in the bundle.",
  714. "ext-pdo": "*",
  715. "symfony/web-profiler-bundle": "To use the data collector."
  716. },
  717. "type": "symfony-bundle",
  718. "autoload": {
  719. "psr-4": {
  720. "Doctrine\\Bundle\\DoctrineBundle\\": ""
  721. }
  722. },
  723. "notification-url": "https://packagist.org/downloads/",
  724. "license": [
  725. "MIT"
  726. ],
  727. "authors": [
  728. {
  729. "name": "Fabien Potencier",
  730. "email": "fabien@symfony.com"
  731. },
  732. {
  733. "name": "Benjamin Eberlei",
  734. "email": "kontakt@beberlei.de"
  735. },
  736. {
  737. "name": "Symfony Community",
  738. "homepage": "https://symfony.com/contributors"
  739. },
  740. {
  741. "name": "Doctrine Project",
  742. "homepage": "https://www.doctrine-project.org/"
  743. }
  744. ],
  745. "description": "Symfony DoctrineBundle",
  746. "homepage": "https://www.doctrine-project.org",
  747. "keywords": [
  748. "database",
  749. "dbal",
  750. "orm",
  751. "persistence"
  752. ],
  753. "support": {
  754. "issues": "https://github.com/doctrine/DoctrineBundle/issues",
  755. "source": "https://github.com/doctrine/DoctrineBundle/tree/2.8.3"
  756. },
  757. "funding": [
  758. {
  759. "url": "https://www.doctrine-project.org/sponsorship.html",
  760. "type": "custom"
  761. },
  762. {
  763. "url": "https://www.patreon.com/phpdoctrine",
  764. "type": "patreon"
  765. },
  766. {
  767. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fdoctrine-bundle",
  768. "type": "tidelift"
  769. }
  770. ],
  771. "time": "2023-02-03T09:32:42+00:00"
  772. },
  773. {
  774. "name": "doctrine/doctrine-migrations-bundle",
  775. "version": "3.2.2",
  776. "source": {
  777. "type": "git",
  778. "url": "https://github.com/doctrine/DoctrineMigrationsBundle.git",
  779. "reference": "3393f411ba25ade21969c33f2053220044854d01"
  780. },
  781. "dist": {
  782. "type": "zip",
  783. "url": "https://api.github.com/repos/doctrine/DoctrineMigrationsBundle/zipball/3393f411ba25ade21969c33f2053220044854d01",
  784. "reference": "3393f411ba25ade21969c33f2053220044854d01",
  785. "shasum": ""
  786. },
  787. "require": {
  788. "doctrine/doctrine-bundle": "~1.0|~2.0",
  789. "doctrine/migrations": "^3.2",
  790. "php": "^7.2|^8.0",
  791. "symfony/framework-bundle": "~3.4|~4.0|~5.0|~6.0"
  792. },
  793. "require-dev": {
  794. "doctrine/coding-standard": "^8.0",
  795. "doctrine/orm": "^2.6",
  796. "doctrine/persistence": "^1.3||^2.0",
  797. "phpstan/phpstan": "^0.12",
  798. "phpstan/phpstan-deprecation-rules": "^0.12",
  799. "phpstan/phpstan-phpunit": "^0.12",
  800. "phpstan/phpstan-strict-rules": "^0.12",
  801. "phpunit/phpunit": "^8.0|^9.0",
  802. "vimeo/psalm": "^4.11"
  803. },
  804. "type": "symfony-bundle",
  805. "autoload": {
  806. "psr-4": {
  807. "Doctrine\\Bundle\\MigrationsBundle\\": ""
  808. },
  809. "exclude-from-classmap": [
  810. "/Tests/"
  811. ]
  812. },
  813. "notification-url": "https://packagist.org/downloads/",
  814. "license": [
  815. "MIT"
  816. ],
  817. "authors": [
  818. {
  819. "name": "Fabien Potencier",
  820. "email": "fabien@symfony.com"
  821. },
  822. {
  823. "name": "Doctrine Project",
  824. "homepage": "https://www.doctrine-project.org"
  825. },
  826. {
  827. "name": "Symfony Community",
  828. "homepage": "https://symfony.com/contributors"
  829. }
  830. ],
  831. "description": "Symfony DoctrineMigrationsBundle",
  832. "homepage": "https://www.doctrine-project.org",
  833. "keywords": [
  834. "dbal",
  835. "migrations",
  836. "schema"
  837. ],
  838. "support": {
  839. "issues": "https://github.com/doctrine/DoctrineMigrationsBundle/issues",
  840. "source": "https://github.com/doctrine/DoctrineMigrationsBundle/tree/3.2.2"
  841. },
  842. "funding": [
  843. {
  844. "url": "https://www.doctrine-project.org/sponsorship.html",
  845. "type": "custom"
  846. },
  847. {
  848. "url": "https://www.patreon.com/phpdoctrine",
  849. "type": "patreon"
  850. },
  851. {
  852. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fdoctrine-migrations-bundle",
  853. "type": "tidelift"
  854. }
  855. ],
  856. "time": "2022-02-01T18:08:07+00:00"
  857. },
  858. {
  859. "name": "doctrine/event-manager",
  860. "version": "2.0.0",
  861. "source": {
  862. "type": "git",
  863. "url": "https://github.com/doctrine/event-manager.git",
  864. "reference": "750671534e0241a7c50ea5b43f67e23eb5c96f32"
  865. },
  866. "dist": {
  867. "type": "zip",
  868. "url": "https://api.github.com/repos/doctrine/event-manager/zipball/750671534e0241a7c50ea5b43f67e23eb5c96f32",
  869. "reference": "750671534e0241a7c50ea5b43f67e23eb5c96f32",
  870. "shasum": ""
  871. },
  872. "require": {
  873. "php": "^8.1"
  874. },
  875. "conflict": {
  876. "doctrine/common": "<2.9"
  877. },
  878. "require-dev": {
  879. "doctrine/coding-standard": "^10",
  880. "phpstan/phpstan": "^1.8.8",
  881. "phpunit/phpunit": "^9.5",
  882. "vimeo/psalm": "^4.28"
  883. },
  884. "type": "library",
  885. "autoload": {
  886. "psr-4": {
  887. "Doctrine\\Common\\": "src"
  888. }
  889. },
  890. "notification-url": "https://packagist.org/downloads/",
  891. "license": [
  892. "MIT"
  893. ],
  894. "authors": [
  895. {
  896. "name": "Guilherme Blanco",
  897. "email": "guilhermeblanco@gmail.com"
  898. },
  899. {
  900. "name": "Roman Borschel",
  901. "email": "roman@code-factory.org"
  902. },
  903. {
  904. "name": "Benjamin Eberlei",
  905. "email": "kontakt@beberlei.de"
  906. },
  907. {
  908. "name": "Jonathan Wage",
  909. "email": "jonwage@gmail.com"
  910. },
  911. {
  912. "name": "Johannes Schmitt",
  913. "email": "schmittjoh@gmail.com"
  914. },
  915. {
  916. "name": "Marco Pivetta",
  917. "email": "ocramius@gmail.com"
  918. }
  919. ],
  920. "description": "The Doctrine Event Manager is a simple PHP event system that was built to be used with the various Doctrine projects.",
  921. "homepage": "https://www.doctrine-project.org/projects/event-manager.html",
  922. "keywords": [
  923. "event",
  924. "event dispatcher",
  925. "event manager",
  926. "event system",
  927. "events"
  928. ],
  929. "support": {
  930. "issues": "https://github.com/doctrine/event-manager/issues",
  931. "source": "https://github.com/doctrine/event-manager/tree/2.0.0"
  932. },
  933. "funding": [
  934. {
  935. "url": "https://www.doctrine-project.org/sponsorship.html",
  936. "type": "custom"
  937. },
  938. {
  939. "url": "https://www.patreon.com/phpdoctrine",
  940. "type": "patreon"
  941. },
  942. {
  943. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fevent-manager",
  944. "type": "tidelift"
  945. }
  946. ],
  947. "time": "2022-10-12T20:59:15+00:00"
  948. },
  949. {
  950. "name": "doctrine/inflector",
  951. "version": "2.0.6",
  952. "source": {
  953. "type": "git",
  954. "url": "https://github.com/doctrine/inflector.git",
  955. "reference": "d9d313a36c872fd6ee06d9a6cbcf713eaa40f024"
  956. },
  957. "dist": {
  958. "type": "zip",
  959. "url": "https://api.github.com/repos/doctrine/inflector/zipball/d9d313a36c872fd6ee06d9a6cbcf713eaa40f024",
  960. "reference": "d9d313a36c872fd6ee06d9a6cbcf713eaa40f024",
  961. "shasum": ""
  962. },
  963. "require": {
  964. "php": "^7.2 || ^8.0"
  965. },
  966. "require-dev": {
  967. "doctrine/coding-standard": "^10",
  968. "phpstan/phpstan": "^1.8",
  969. "phpstan/phpstan-phpunit": "^1.1",
  970. "phpstan/phpstan-strict-rules": "^1.3",
  971. "phpunit/phpunit": "^8.5 || ^9.5",
  972. "vimeo/psalm": "^4.25"
  973. },
  974. "type": "library",
  975. "autoload": {
  976. "psr-4": {
  977. "Doctrine\\Inflector\\": "lib/Doctrine/Inflector"
  978. }
  979. },
  980. "notification-url": "https://packagist.org/downloads/",
  981. "license": [
  982. "MIT"
  983. ],
  984. "authors": [
  985. {
  986. "name": "Guilherme Blanco",
  987. "email": "guilhermeblanco@gmail.com"
  988. },
  989. {
  990. "name": "Roman Borschel",
  991. "email": "roman@code-factory.org"
  992. },
  993. {
  994. "name": "Benjamin Eberlei",
  995. "email": "kontakt@beberlei.de"
  996. },
  997. {
  998. "name": "Jonathan Wage",
  999. "email": "jonwage@gmail.com"
  1000. },
  1001. {
  1002. "name": "Johannes Schmitt",
  1003. "email": "schmittjoh@gmail.com"
  1004. }
  1005. ],
  1006. "description": "PHP Doctrine Inflector is a small library that can perform string manipulations with regard to upper/lowercase and singular/plural forms of words.",
  1007. "homepage": "https://www.doctrine-project.org/projects/inflector.html",
  1008. "keywords": [
  1009. "inflection",
  1010. "inflector",
  1011. "lowercase",
  1012. "manipulation",
  1013. "php",
  1014. "plural",
  1015. "singular",
  1016. "strings",
  1017. "uppercase",
  1018. "words"
  1019. ],
  1020. "support": {
  1021. "issues": "https://github.com/doctrine/inflector/issues",
  1022. "source": "https://github.com/doctrine/inflector/tree/2.0.6"
  1023. },
  1024. "funding": [
  1025. {
  1026. "url": "https://www.doctrine-project.org/sponsorship.html",
  1027. "type": "custom"
  1028. },
  1029. {
  1030. "url": "https://www.patreon.com/phpdoctrine",
  1031. "type": "patreon"
  1032. },
  1033. {
  1034. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Finflector",
  1035. "type": "tidelift"
  1036. }
  1037. ],
  1038. "time": "2022-10-20T09:10:12+00:00"
  1039. },
  1040. {
  1041. "name": "doctrine/instantiator",
  1042. "version": "1.5.0",
  1043. "source": {
  1044. "type": "git",
  1045. "url": "https://github.com/doctrine/instantiator.git",
  1046. "reference": "0a0fa9780f5d4e507415a065172d26a98d02047b"
  1047. },
  1048. "dist": {
  1049. "type": "zip",
  1050. "url": "https://api.github.com/repos/doctrine/instantiator/zipball/0a0fa9780f5d4e507415a065172d26a98d02047b",
  1051. "reference": "0a0fa9780f5d4e507415a065172d26a98d02047b",
  1052. "shasum": ""
  1053. },
  1054. "require": {
  1055. "php": "^7.1 || ^8.0"
  1056. },
  1057. "require-dev": {
  1058. "doctrine/coding-standard": "^9 || ^11",
  1059. "ext-pdo": "*",
  1060. "ext-phar": "*",
  1061. "phpbench/phpbench": "^0.16 || ^1",
  1062. "phpstan/phpstan": "^1.4",
  1063. "phpstan/phpstan-phpunit": "^1",
  1064. "phpunit/phpunit": "^7.5 || ^8.5 || ^9.5",
  1065. "vimeo/psalm": "^4.30 || ^5.4"
  1066. },
  1067. "type": "library",
  1068. "autoload": {
  1069. "psr-4": {
  1070. "Doctrine\\Instantiator\\": "src/Doctrine/Instantiator/"
  1071. }
  1072. },
  1073. "notification-url": "https://packagist.org/downloads/",
  1074. "license": [
  1075. "MIT"
  1076. ],
  1077. "authors": [
  1078. {
  1079. "name": "Marco Pivetta",
  1080. "email": "ocramius@gmail.com",
  1081. "homepage": "https://ocramius.github.io/"
  1082. }
  1083. ],
  1084. "description": "A small, lightweight utility to instantiate objects in PHP without invoking their constructors",
  1085. "homepage": "https://www.doctrine-project.org/projects/instantiator.html",
  1086. "keywords": [
  1087. "constructor",
  1088. "instantiate"
  1089. ],
  1090. "support": {
  1091. "issues": "https://github.com/doctrine/instantiator/issues",
  1092. "source": "https://github.com/doctrine/instantiator/tree/1.5.0"
  1093. },
  1094. "funding": [
  1095. {
  1096. "url": "https://www.doctrine-project.org/sponsorship.html",
  1097. "type": "custom"
  1098. },
  1099. {
  1100. "url": "https://www.patreon.com/phpdoctrine",
  1101. "type": "patreon"
  1102. },
  1103. {
  1104. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Finstantiator",
  1105. "type": "tidelift"
  1106. }
  1107. ],
  1108. "time": "2022-12-30T00:15:36+00:00"
  1109. },
  1110. {
  1111. "name": "doctrine/lexer",
  1112. "version": "2.1.0",
  1113. "source": {
  1114. "type": "git",
  1115. "url": "https://github.com/doctrine/lexer.git",
  1116. "reference": "39ab8fcf5a51ce4b85ca97c7a7d033eb12831124"
  1117. },
  1118. "dist": {
  1119. "type": "zip",
  1120. "url": "https://api.github.com/repos/doctrine/lexer/zipball/39ab8fcf5a51ce4b85ca97c7a7d033eb12831124",
  1121. "reference": "39ab8fcf5a51ce4b85ca97c7a7d033eb12831124",
  1122. "shasum": ""
  1123. },
  1124. "require": {
  1125. "doctrine/deprecations": "^1.0",
  1126. "php": "^7.1 || ^8.0"
  1127. },
  1128. "require-dev": {
  1129. "doctrine/coding-standard": "^9 || ^10",
  1130. "phpstan/phpstan": "^1.3",
  1131. "phpunit/phpunit": "^7.5 || ^8.5 || ^9.5",
  1132. "psalm/plugin-phpunit": "^0.18.3",
  1133. "vimeo/psalm": "^4.11 || ^5.0"
  1134. },
  1135. "type": "library",
  1136. "autoload": {
  1137. "psr-4": {
  1138. "Doctrine\\Common\\Lexer\\": "src"
  1139. }
  1140. },
  1141. "notification-url": "https://packagist.org/downloads/",
  1142. "license": [
  1143. "MIT"
  1144. ],
  1145. "authors": [
  1146. {
  1147. "name": "Guilherme Blanco",
  1148. "email": "guilhermeblanco@gmail.com"
  1149. },
  1150. {
  1151. "name": "Roman Borschel",
  1152. "email": "roman@code-factory.org"
  1153. },
  1154. {
  1155. "name": "Johannes Schmitt",
  1156. "email": "schmittjoh@gmail.com"
  1157. }
  1158. ],
  1159. "description": "PHP Doctrine Lexer parser library that can be used in Top-Down, Recursive Descent Parsers.",
  1160. "homepage": "https://www.doctrine-project.org/projects/lexer.html",
  1161. "keywords": [
  1162. "annotations",
  1163. "docblock",
  1164. "lexer",
  1165. "parser",
  1166. "php"
  1167. ],
  1168. "support": {
  1169. "issues": "https://github.com/doctrine/lexer/issues",
  1170. "source": "https://github.com/doctrine/lexer/tree/2.1.0"
  1171. },
  1172. "funding": [
  1173. {
  1174. "url": "https://www.doctrine-project.org/sponsorship.html",
  1175. "type": "custom"
  1176. },
  1177. {
  1178. "url": "https://www.patreon.com/phpdoctrine",
  1179. "type": "patreon"
  1180. },
  1181. {
  1182. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Flexer",
  1183. "type": "tidelift"
  1184. }
  1185. ],
  1186. "time": "2022-12-14T08:49:07+00:00"
  1187. },
  1188. {
  1189. "name": "doctrine/migrations",
  1190. "version": "3.6.0",
  1191. "source": {
  1192. "type": "git",
  1193. "url": "https://github.com/doctrine/migrations.git",
  1194. "reference": "e542ad8bcd606d7a18d0875babb8a6d963c9c059"
  1195. },
  1196. "dist": {
  1197. "type": "zip",
  1198. "url": "https://api.github.com/repos/doctrine/migrations/zipball/e542ad8bcd606d7a18d0875babb8a6d963c9c059",
  1199. "reference": "e542ad8bcd606d7a18d0875babb8a6d963c9c059",
  1200. "shasum": ""
  1201. },
  1202. "require": {
  1203. "composer-runtime-api": "^2",
  1204. "doctrine/dbal": "^3.5.1",
  1205. "doctrine/deprecations": "^0.5.3 || ^1",
  1206. "doctrine/event-manager": "^1.2 || ^2.0",
  1207. "php": "^8.1",
  1208. "psr/log": "^1.1.3 || ^2 || ^3",
  1209. "symfony/console": "^4.4.16 || ^5.4 || ^6.0",
  1210. "symfony/stopwatch": "^4.4 || ^5.4 || ^6.0",
  1211. "symfony/var-exporter": "^6.2"
  1212. },
  1213. "conflict": {
  1214. "doctrine/orm": "<2.12"
  1215. },
  1216. "require-dev": {
  1217. "doctrine/coding-standard": "^9",
  1218. "doctrine/orm": "^2.13",
  1219. "doctrine/persistence": "^2 || ^3",
  1220. "doctrine/sql-formatter": "^1.0",
  1221. "ext-pdo_sqlite": "*",
  1222. "phpstan/phpstan": "^1.5",
  1223. "phpstan/phpstan-deprecation-rules": "^1",
  1224. "phpstan/phpstan-phpunit": "^1.1",
  1225. "phpstan/phpstan-strict-rules": "^1.1",
  1226. "phpstan/phpstan-symfony": "^1.1",
  1227. "phpunit/phpunit": "^9.5.24",
  1228. "symfony/cache": "^4.4 || ^5.4 || ^6.0",
  1229. "symfony/process": "^4.4 || ^5.4 || ^6.0",
  1230. "symfony/yaml": "^4.4 || ^5.4 || ^6.0"
  1231. },
  1232. "suggest": {
  1233. "doctrine/sql-formatter": "Allows to generate formatted SQL with the diff command.",
  1234. "symfony/yaml": "Allows the use of yaml for migration configuration files."
  1235. },
  1236. "bin": [
  1237. "bin/doctrine-migrations"
  1238. ],
  1239. "type": "library",
  1240. "autoload": {
  1241. "psr-4": {
  1242. "Doctrine\\Migrations\\": "lib/Doctrine/Migrations"
  1243. }
  1244. },
  1245. "notification-url": "https://packagist.org/downloads/",
  1246. "license": [
  1247. "MIT"
  1248. ],
  1249. "authors": [
  1250. {
  1251. "name": "Benjamin Eberlei",
  1252. "email": "kontakt@beberlei.de"
  1253. },
  1254. {
  1255. "name": "Jonathan Wage",
  1256. "email": "jonwage@gmail.com"
  1257. },
  1258. {
  1259. "name": "Michael Simonson",
  1260. "email": "contact@mikesimonson.com"
  1261. }
  1262. ],
  1263. "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.",
  1264. "homepage": "https://www.doctrine-project.org/projects/migrations.html",
  1265. "keywords": [
  1266. "database",
  1267. "dbal",
  1268. "migrations"
  1269. ],
  1270. "support": {
  1271. "issues": "https://github.com/doctrine/migrations/issues",
  1272. "source": "https://github.com/doctrine/migrations/tree/3.6.0"
  1273. },
  1274. "funding": [
  1275. {
  1276. "url": "https://www.doctrine-project.org/sponsorship.html",
  1277. "type": "custom"
  1278. },
  1279. {
  1280. "url": "https://www.patreon.com/phpdoctrine",
  1281. "type": "patreon"
  1282. },
  1283. {
  1284. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fmigrations",
  1285. "type": "tidelift"
  1286. }
  1287. ],
  1288. "time": "2023-02-15T18:49:46+00:00"
  1289. },
  1290. {
  1291. "name": "doctrine/orm",
  1292. "version": "2.14.1",
  1293. "source": {
  1294. "type": "git",
  1295. "url": "https://github.com/doctrine/orm.git",
  1296. "reference": "de7eee5ed7b1b35c99b118f26f210a8281e6db8e"
  1297. },
  1298. "dist": {
  1299. "type": "zip",
  1300. "url": "https://api.github.com/repos/doctrine/orm/zipball/de7eee5ed7b1b35c99b118f26f210a8281e6db8e",
  1301. "reference": "de7eee5ed7b1b35c99b118f26f210a8281e6db8e",
  1302. "shasum": ""
  1303. },
  1304. "require": {
  1305. "composer-runtime-api": "^2",
  1306. "doctrine/cache": "^1.12.1 || ^2.1.1",
  1307. "doctrine/collections": "^1.5 || ^2.0",
  1308. "doctrine/common": "^3.0.3",
  1309. "doctrine/dbal": "^2.13.1 || ^3.2",
  1310. "doctrine/deprecations": "^0.5.3 || ^1",
  1311. "doctrine/event-manager": "^1.2 || ^2",
  1312. "doctrine/inflector": "^1.4 || ^2.0",
  1313. "doctrine/instantiator": "^1.3",
  1314. "doctrine/lexer": "^1.2.3 || ^2",
  1315. "doctrine/persistence": "^2.4 || ^3",
  1316. "ext-ctype": "*",
  1317. "php": "^7.1 || ^8.0",
  1318. "psr/cache": "^1 || ^2 || ^3",
  1319. "symfony/console": "^4.2 || ^5.0 || ^6.0",
  1320. "symfony/polyfill-php72": "^1.23",
  1321. "symfony/polyfill-php80": "^1.16"
  1322. },
  1323. "conflict": {
  1324. "doctrine/annotations": "<1.13 || >= 3.0"
  1325. },
  1326. "require-dev": {
  1327. "doctrine/annotations": "^1.13 || ^2",
  1328. "doctrine/coding-standard": "^9.0.2 || ^11.0",
  1329. "phpbench/phpbench": "^0.16.10 || ^1.0",
  1330. "phpstan/phpstan": "~1.4.10 || 1.9.8",
  1331. "phpunit/phpunit": "^7.5 || ^8.5 || ^9.5",
  1332. "psr/log": "^1 || ^2 || ^3",
  1333. "squizlabs/php_codesniffer": "3.7.1",
  1334. "symfony/cache": "^4.4 || ^5.4 || ^6.0",
  1335. "symfony/var-exporter": "^4.4 || ^5.4 || ^6.2",
  1336. "symfony/yaml": "^3.4 || ^4.0 || ^5.0 || ^6.0",
  1337. "vimeo/psalm": "4.30.0 || 5.4.0"
  1338. },
  1339. "suggest": {
  1340. "ext-dom": "Provides support for XSD validation for XML mapping files",
  1341. "symfony/cache": "Provides cache support for Setup Tool with doctrine/cache 2.0",
  1342. "symfony/yaml": "If you want to use YAML Metadata Mapping Driver"
  1343. },
  1344. "bin": [
  1345. "bin/doctrine"
  1346. ],
  1347. "type": "library",
  1348. "autoload": {
  1349. "psr-4": {
  1350. "Doctrine\\ORM\\": "lib/Doctrine/ORM"
  1351. }
  1352. },
  1353. "notification-url": "https://packagist.org/downloads/",
  1354. "license": [
  1355. "MIT"
  1356. ],
  1357. "authors": [
  1358. {
  1359. "name": "Guilherme Blanco",
  1360. "email": "guilhermeblanco@gmail.com"
  1361. },
  1362. {
  1363. "name": "Roman Borschel",
  1364. "email": "roman@code-factory.org"
  1365. },
  1366. {
  1367. "name": "Benjamin Eberlei",
  1368. "email": "kontakt@beberlei.de"
  1369. },
  1370. {
  1371. "name": "Jonathan Wage",
  1372. "email": "jonwage@gmail.com"
  1373. },
  1374. {
  1375. "name": "Marco Pivetta",
  1376. "email": "ocramius@gmail.com"
  1377. }
  1378. ],
  1379. "description": "Object-Relational-Mapper for PHP",
  1380. "homepage": "https://www.doctrine-project.org/projects/orm.html",
  1381. "keywords": [
  1382. "database",
  1383. "orm"
  1384. ],
  1385. "support": {
  1386. "issues": "https://github.com/doctrine/orm/issues",
  1387. "source": "https://github.com/doctrine/orm/tree/2.14.1"
  1388. },
  1389. "time": "2023-01-16T18:36:59+00:00"
  1390. },
  1391. {
  1392. "name": "doctrine/persistence",
  1393. "version": "3.1.4",
  1394. "source": {
  1395. "type": "git",
  1396. "url": "https://github.com/doctrine/persistence.git",
  1397. "reference": "8bf8ab15960787f1a49d405f6eb8c787b4841119"
  1398. },
  1399. "dist": {
  1400. "type": "zip",
  1401. "url": "https://api.github.com/repos/doctrine/persistence/zipball/8bf8ab15960787f1a49d405f6eb8c787b4841119",
  1402. "reference": "8bf8ab15960787f1a49d405f6eb8c787b4841119",
  1403. "shasum": ""
  1404. },
  1405. "require": {
  1406. "doctrine/event-manager": "^1 || ^2",
  1407. "php": "^7.2 || ^8.0",
  1408. "psr/cache": "^1.0 || ^2.0 || ^3.0"
  1409. },
  1410. "conflict": {
  1411. "doctrine/common": "<2.10"
  1412. },
  1413. "require-dev": {
  1414. "composer/package-versions-deprecated": "^1.11",
  1415. "doctrine/coding-standard": "^11",
  1416. "doctrine/common": "^3.0",
  1417. "phpstan/phpstan": "1.9.4",
  1418. "phpstan/phpstan-phpunit": "^1",
  1419. "phpstan/phpstan-strict-rules": "^1.1",
  1420. "phpunit/phpunit": "^8.5 || ^9.5",
  1421. "symfony/cache": "^4.4 || ^5.4 || ^6.0",
  1422. "vimeo/psalm": "4.30.0 || 5.3.0"
  1423. },
  1424. "type": "library",
  1425. "autoload": {
  1426. "psr-4": {
  1427. "Doctrine\\Persistence\\": "src/Persistence"
  1428. }
  1429. },
  1430. "notification-url": "https://packagist.org/downloads/",
  1431. "license": [
  1432. "MIT"
  1433. ],
  1434. "authors": [
  1435. {
  1436. "name": "Guilherme Blanco",
  1437. "email": "guilhermeblanco@gmail.com"
  1438. },
  1439. {
  1440. "name": "Roman Borschel",
  1441. "email": "roman@code-factory.org"
  1442. },
  1443. {
  1444. "name": "Benjamin Eberlei",
  1445. "email": "kontakt@beberlei.de"
  1446. },
  1447. {
  1448. "name": "Jonathan Wage",
  1449. "email": "jonwage@gmail.com"
  1450. },
  1451. {
  1452. "name": "Johannes Schmitt",
  1453. "email": "schmittjoh@gmail.com"
  1454. },
  1455. {
  1456. "name": "Marco Pivetta",
  1457. "email": "ocramius@gmail.com"
  1458. }
  1459. ],
  1460. "description": "The Doctrine Persistence project is a set of shared interfaces and functionality that the different Doctrine object mappers share.",
  1461. "homepage": "https://www.doctrine-project.org/projects/persistence.html",
  1462. "keywords": [
  1463. "mapper",
  1464. "object",
  1465. "odm",
  1466. "orm",
  1467. "persistence"
  1468. ],
  1469. "support": {
  1470. "issues": "https://github.com/doctrine/persistence/issues",
  1471. "source": "https://github.com/doctrine/persistence/tree/3.1.4"
  1472. },
  1473. "funding": [
  1474. {
  1475. "url": "https://www.doctrine-project.org/sponsorship.html",
  1476. "type": "custom"
  1477. },
  1478. {
  1479. "url": "https://www.patreon.com/phpdoctrine",
  1480. "type": "patreon"
  1481. },
  1482. {
  1483. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fpersistence",
  1484. "type": "tidelift"
  1485. }
  1486. ],
  1487. "time": "2023-02-03T11:13:07+00:00"
  1488. },
  1489. {
  1490. "name": "doctrine/sql-formatter",
  1491. "version": "1.1.3",
  1492. "source": {
  1493. "type": "git",
  1494. "url": "https://github.com/doctrine/sql-formatter.git",
  1495. "reference": "25a06c7bf4c6b8218f47928654252863ffc890a5"
  1496. },
  1497. "dist": {
  1498. "type": "zip",
  1499. "url": "https://api.github.com/repos/doctrine/sql-formatter/zipball/25a06c7bf4c6b8218f47928654252863ffc890a5",
  1500. "reference": "25a06c7bf4c6b8218f47928654252863ffc890a5",
  1501. "shasum": ""
  1502. },
  1503. "require": {
  1504. "php": "^7.1 || ^8.0"
  1505. },
  1506. "require-dev": {
  1507. "bamarni/composer-bin-plugin": "^1.4"
  1508. },
  1509. "bin": [
  1510. "bin/sql-formatter"
  1511. ],
  1512. "type": "library",
  1513. "autoload": {
  1514. "psr-4": {
  1515. "Doctrine\\SqlFormatter\\": "src"
  1516. }
  1517. },
  1518. "notification-url": "https://packagist.org/downloads/",
  1519. "license": [
  1520. "MIT"
  1521. ],
  1522. "authors": [
  1523. {
  1524. "name": "Jeremy Dorn",
  1525. "email": "jeremy@jeremydorn.com",
  1526. "homepage": "https://jeremydorn.com/"
  1527. }
  1528. ],
  1529. "description": "a PHP SQL highlighting library",
  1530. "homepage": "https://github.com/doctrine/sql-formatter/",
  1531. "keywords": [
  1532. "highlight",
  1533. "sql"
  1534. ],
  1535. "support": {
  1536. "issues": "https://github.com/doctrine/sql-formatter/issues",
  1537. "source": "https://github.com/doctrine/sql-formatter/tree/1.1.3"
  1538. },
  1539. "time": "2022-05-23T21:33:49+00:00"
  1540. },
  1541. {
  1542. "name": "egulias/email-validator",
  1543. "version": "4.0.1",
  1544. "source": {
  1545. "type": "git",
  1546. "url": "https://github.com/egulias/EmailValidator.git",
  1547. "reference": "3a85486b709bc384dae8eb78fb2eec649bdb64ff"
  1548. },
  1549. "dist": {
  1550. "type": "zip",
  1551. "url": "https://api.github.com/repos/egulias/EmailValidator/zipball/3a85486b709bc384dae8eb78fb2eec649bdb64ff",
  1552. "reference": "3a85486b709bc384dae8eb78fb2eec649bdb64ff",
  1553. "shasum": ""
  1554. },
  1555. "require": {
  1556. "doctrine/lexer": "^2.0 || ^3.0",
  1557. "php": ">=8.1",
  1558. "symfony/polyfill-intl-idn": "^1.26"
  1559. },
  1560. "require-dev": {
  1561. "phpunit/phpunit": "^9.5.27",
  1562. "vimeo/psalm": "^4.30"
  1563. },
  1564. "suggest": {
  1565. "ext-intl": "PHP Internationalization Libraries are required to use the SpoofChecking validation"
  1566. },
  1567. "type": "library",
  1568. "extra": {
  1569. "branch-alias": {
  1570. "dev-master": "4.0.x-dev"
  1571. }
  1572. },
  1573. "autoload": {
  1574. "psr-4": {
  1575. "Egulias\\EmailValidator\\": "src"
  1576. }
  1577. },
  1578. "notification-url": "https://packagist.org/downloads/",
  1579. "license": [
  1580. "MIT"
  1581. ],
  1582. "authors": [
  1583. {
  1584. "name": "Eduardo Gulias Davis"
  1585. }
  1586. ],
  1587. "description": "A library for validating emails against several RFCs",
  1588. "homepage": "https://github.com/egulias/EmailValidator",
  1589. "keywords": [
  1590. "email",
  1591. "emailvalidation",
  1592. "emailvalidator",
  1593. "validation",
  1594. "validator"
  1595. ],
  1596. "support": {
  1597. "issues": "https://github.com/egulias/EmailValidator/issues",
  1598. "source": "https://github.com/egulias/EmailValidator/tree/4.0.1"
  1599. },
  1600. "funding": [
  1601. {
  1602. "url": "https://github.com/egulias",
  1603. "type": "github"
  1604. }
  1605. ],
  1606. "time": "2023-01-14T14:17:03+00:00"
  1607. },
  1608. {
  1609. "name": "friendsofphp/proxy-manager-lts",
  1610. "version": "v1.0.14",
  1611. "source": {
  1612. "type": "git",
  1613. "url": "https://github.com/FriendsOfPHP/proxy-manager-lts.git",
  1614. "reference": "a527c9d9d5348e012bd24482d83a5cd643bcbc9e"
  1615. },
  1616. "dist": {
  1617. "type": "zip",
  1618. "url": "https://api.github.com/repos/FriendsOfPHP/proxy-manager-lts/zipball/a527c9d9d5348e012bd24482d83a5cd643bcbc9e",
  1619. "reference": "a527c9d9d5348e012bd24482d83a5cd643bcbc9e",
  1620. "shasum": ""
  1621. },
  1622. "require": {
  1623. "laminas/laminas-code": "~3.4.1|^4.0",
  1624. "php": ">=7.1",
  1625. "symfony/filesystem": "^4.4.17|^5.0|^6.0"
  1626. },
  1627. "conflict": {
  1628. "laminas/laminas-stdlib": "<3.2.1",
  1629. "zendframework/zend-stdlib": "<3.2.1"
  1630. },
  1631. "replace": {
  1632. "ocramius/proxy-manager": "^2.1"
  1633. },
  1634. "require-dev": {
  1635. "ext-phar": "*",
  1636. "symfony/phpunit-bridge": "^5.4|^6.0"
  1637. },
  1638. "type": "library",
  1639. "extra": {
  1640. "thanks": {
  1641. "name": "ocramius/proxy-manager",
  1642. "url": "https://github.com/Ocramius/ProxyManager"
  1643. }
  1644. },
  1645. "autoload": {
  1646. "psr-4": {
  1647. "ProxyManager\\": "src/ProxyManager"
  1648. }
  1649. },
  1650. "notification-url": "https://packagist.org/downloads/",
  1651. "license": [
  1652. "MIT"
  1653. ],
  1654. "authors": [
  1655. {
  1656. "name": "Marco Pivetta",
  1657. "email": "ocramius@gmail.com",
  1658. "homepage": "https://ocramius.github.io/"
  1659. },
  1660. {
  1661. "name": "Nicolas Grekas",
  1662. "email": "p@tchwork.com"
  1663. }
  1664. ],
  1665. "description": "Adding support for a wider range of PHP versions to ocramius/proxy-manager",
  1666. "homepage": "https://github.com/FriendsOfPHP/proxy-manager-lts",
  1667. "keywords": [
  1668. "aop",
  1669. "lazy loading",
  1670. "proxy",
  1671. "proxy pattern",
  1672. "service proxies"
  1673. ],
  1674. "support": {
  1675. "issues": "https://github.com/FriendsOfPHP/proxy-manager-lts/issues",
  1676. "source": "https://github.com/FriendsOfPHP/proxy-manager-lts/tree/v1.0.14"
  1677. },
  1678. "funding": [
  1679. {
  1680. "url": "https://github.com/Ocramius",
  1681. "type": "github"
  1682. },
  1683. {
  1684. "url": "https://tidelift.com/funding/github/packagist/ocramius/proxy-manager",
  1685. "type": "tidelift"
  1686. }
  1687. ],
  1688. "time": "2023-01-30T10:40:19+00:00"
  1689. },
  1690. {
  1691. "name": "laminas/laminas-code",
  1692. "version": "4.10.0",
  1693. "source": {
  1694. "type": "git",
  1695. "url": "https://github.com/laminas/laminas-code.git",
  1696. "reference": "ad8b36073f9ac792716478befadca0798cc15635"
  1697. },
  1698. "dist": {
  1699. "type": "zip",
  1700. "url": "https://api.github.com/repos/laminas/laminas-code/zipball/ad8b36073f9ac792716478befadca0798cc15635",
  1701. "reference": "ad8b36073f9ac792716478befadca0798cc15635",
  1702. "shasum": ""
  1703. },
  1704. "require": {
  1705. "php": "~8.1.0 || ~8.2.0"
  1706. },
  1707. "require-dev": {
  1708. "doctrine/annotations": "^2.0.0",
  1709. "ext-phar": "*",
  1710. "laminas/laminas-coding-standard": "^2.3.0",
  1711. "laminas/laminas-stdlib": "^3.6.1",
  1712. "phpunit/phpunit": "^10.0.9",
  1713. "psalm/plugin-phpunit": "^0.18.4",
  1714. "vimeo/psalm": "^5.7.1"
  1715. },
  1716. "suggest": {
  1717. "doctrine/annotations": "Doctrine\\Common\\Annotations >=1.0 for annotation features",
  1718. "laminas/laminas-stdlib": "Laminas\\Stdlib component"
  1719. },
  1720. "type": "library",
  1721. "autoload": {
  1722. "psr-4": {
  1723. "Laminas\\Code\\": "src/"
  1724. }
  1725. },
  1726. "notification-url": "https://packagist.org/downloads/",
  1727. "license": [
  1728. "BSD-3-Clause"
  1729. ],
  1730. "description": "Extensions to the PHP Reflection API, static code scanning, and code generation",
  1731. "homepage": "https://laminas.dev",
  1732. "keywords": [
  1733. "code",
  1734. "laminas",
  1735. "laminasframework"
  1736. ],
  1737. "support": {
  1738. "chat": "https://laminas.dev/chat",
  1739. "docs": "https://docs.laminas.dev/laminas-code/",
  1740. "forum": "https://discourse.laminas.dev",
  1741. "issues": "https://github.com/laminas/laminas-code/issues",
  1742. "rss": "https://github.com/laminas/laminas-code/releases.atom",
  1743. "source": "https://github.com/laminas/laminas-code"
  1744. },
  1745. "funding": [
  1746. {
  1747. "url": "https://funding.communitybridge.org/projects/laminas-project",
  1748. "type": "community_bridge"
  1749. }
  1750. ],
  1751. "time": "2023-03-08T11:55:01+00:00"
  1752. },
  1753. {
  1754. "name": "league/commonmark",
  1755. "version": "2.3.9",
  1756. "source": {
  1757. "type": "git",
  1758. "url": "https://github.com/thephpleague/commonmark.git",
  1759. "reference": "c1e114f74e518daca2729ea8c4bf1167038fa4b5"
  1760. },
  1761. "dist": {
  1762. "type": "zip",
  1763. "url": "https://api.github.com/repos/thephpleague/commonmark/zipball/c1e114f74e518daca2729ea8c4bf1167038fa4b5",
  1764. "reference": "c1e114f74e518daca2729ea8c4bf1167038fa4b5",
  1765. "shasum": ""
  1766. },
  1767. "require": {
  1768. "ext-mbstring": "*",
  1769. "league/config": "^1.1.1",
  1770. "php": "^7.4 || ^8.0",
  1771. "psr/event-dispatcher": "^1.0",
  1772. "symfony/deprecation-contracts": "^2.1 || ^3.0",
  1773. "symfony/polyfill-php80": "^1.16"
  1774. },
  1775. "require-dev": {
  1776. "cebe/markdown": "^1.0",
  1777. "commonmark/cmark": "0.30.0",
  1778. "commonmark/commonmark.js": "0.30.0",
  1779. "composer/package-versions-deprecated": "^1.8",
  1780. "embed/embed": "^4.4",
  1781. "erusev/parsedown": "^1.0",
  1782. "ext-json": "*",
  1783. "github/gfm": "0.29.0",
  1784. "michelf/php-markdown": "^1.4 || ^2.0",
  1785. "nyholm/psr7": "^1.5",
  1786. "phpstan/phpstan": "^1.8.2",
  1787. "phpunit/phpunit": "^9.5.21",
  1788. "scrutinizer/ocular": "^1.8.1",
  1789. "symfony/finder": "^5.3 | ^6.0",
  1790. "symfony/yaml": "^2.3 | ^3.0 | ^4.0 | ^5.0 | ^6.0",
  1791. "unleashedtech/php-coding-standard": "^3.1.1",
  1792. "vimeo/psalm": "^4.24.0 || ^5.0.0"
  1793. },
  1794. "suggest": {
  1795. "symfony/yaml": "v2.3+ required if using the Front Matter extension"
  1796. },
  1797. "type": "library",
  1798. "extra": {
  1799. "branch-alias": {
  1800. "dev-main": "2.4-dev"
  1801. }
  1802. },
  1803. "autoload": {
  1804. "psr-4": {
  1805. "League\\CommonMark\\": "src"
  1806. }
  1807. },
  1808. "notification-url": "https://packagist.org/downloads/",
  1809. "license": [
  1810. "BSD-3-Clause"
  1811. ],
  1812. "authors": [
  1813. {
  1814. "name": "Colin O'Dell",
  1815. "email": "colinodell@gmail.com",
  1816. "homepage": "https://www.colinodell.com",
  1817. "role": "Lead Developer"
  1818. }
  1819. ],
  1820. "description": "Highly-extensible PHP Markdown parser which fully supports the CommonMark spec and GitHub-Flavored Markdown (GFM)",
  1821. "homepage": "https://commonmark.thephpleague.com",
  1822. "keywords": [
  1823. "commonmark",
  1824. "flavored",
  1825. "gfm",
  1826. "github",
  1827. "github-flavored",
  1828. "markdown",
  1829. "md",
  1830. "parser"
  1831. ],
  1832. "support": {
  1833. "docs": "https://commonmark.thephpleague.com/",
  1834. "forum": "https://github.com/thephpleague/commonmark/discussions",
  1835. "issues": "https://github.com/thephpleague/commonmark/issues",
  1836. "rss": "https://github.com/thephpleague/commonmark/releases.atom",
  1837. "source": "https://github.com/thephpleague/commonmark"
  1838. },
  1839. "funding": [
  1840. {
  1841. "url": "https://www.colinodell.com/sponsor",
  1842. "type": "custom"
  1843. },
  1844. {
  1845. "url": "https://www.paypal.me/colinpodell/10.00",
  1846. "type": "custom"
  1847. },
  1848. {
  1849. "url": "https://github.com/colinodell",
  1850. "type": "github"
  1851. },
  1852. {
  1853. "url": "https://tidelift.com/funding/github/packagist/league/commonmark",
  1854. "type": "tidelift"
  1855. }
  1856. ],
  1857. "time": "2023-02-15T14:07:24+00:00"
  1858. },
  1859. {
  1860. "name": "league/config",
  1861. "version": "v1.2.0",
  1862. "source": {
  1863. "type": "git",
  1864. "url": "https://github.com/thephpleague/config.git",
  1865. "reference": "754b3604fb2984c71f4af4a9cbe7b57f346ec1f3"
  1866. },
  1867. "dist": {
  1868. "type": "zip",
  1869. "url": "https://api.github.com/repos/thephpleague/config/zipball/754b3604fb2984c71f4af4a9cbe7b57f346ec1f3",
  1870. "reference": "754b3604fb2984c71f4af4a9cbe7b57f346ec1f3",
  1871. "shasum": ""
  1872. },
  1873. "require": {
  1874. "dflydev/dot-access-data": "^3.0.1",
  1875. "nette/schema": "^1.2",
  1876. "php": "^7.4 || ^8.0"
  1877. },
  1878. "require-dev": {
  1879. "phpstan/phpstan": "^1.8.2",
  1880. "phpunit/phpunit": "^9.5.5",
  1881. "scrutinizer/ocular": "^1.8.1",
  1882. "unleashedtech/php-coding-standard": "^3.1",
  1883. "vimeo/psalm": "^4.7.3"
  1884. },
  1885. "type": "library",
  1886. "extra": {
  1887. "branch-alias": {
  1888. "dev-main": "1.2-dev"
  1889. }
  1890. },
  1891. "autoload": {
  1892. "psr-4": {
  1893. "League\\Config\\": "src"
  1894. }
  1895. },
  1896. "notification-url": "https://packagist.org/downloads/",
  1897. "license": [
  1898. "BSD-3-Clause"
  1899. ],
  1900. "authors": [
  1901. {
  1902. "name": "Colin O'Dell",
  1903. "email": "colinodell@gmail.com",
  1904. "homepage": "https://www.colinodell.com",
  1905. "role": "Lead Developer"
  1906. }
  1907. ],
  1908. "description": "Define configuration arrays with strict schemas and access values with dot notation",
  1909. "homepage": "https://config.thephpleague.com",
  1910. "keywords": [
  1911. "array",
  1912. "config",
  1913. "configuration",
  1914. "dot",
  1915. "dot-access",
  1916. "nested",
  1917. "schema"
  1918. ],
  1919. "support": {
  1920. "docs": "https://config.thephpleague.com/",
  1921. "issues": "https://github.com/thephpleague/config/issues",
  1922. "rss": "https://github.com/thephpleague/config/releases.atom",
  1923. "source": "https://github.com/thephpleague/config"
  1924. },
  1925. "funding": [
  1926. {
  1927. "url": "https://www.colinodell.com/sponsor",
  1928. "type": "custom"
  1929. },
  1930. {
  1931. "url": "https://www.paypal.me/colinpodell/10.00",
  1932. "type": "custom"
  1933. },
  1934. {
  1935. "url": "https://github.com/colinodell",
  1936. "type": "github"
  1937. }
  1938. ],
  1939. "time": "2022-12-11T20:36:23+00:00"
  1940. },
  1941. {
  1942. "name": "league/uri",
  1943. "version": "6.8.0",
  1944. "source": {
  1945. "type": "git",
  1946. "url": "https://github.com/thephpleague/uri.git",
  1947. "reference": "a700b4656e4c54371b799ac61e300ab25a2d1d39"
  1948. },
  1949. "dist": {
  1950. "type": "zip",
  1951. "url": "https://api.github.com/repos/thephpleague/uri/zipball/a700b4656e4c54371b799ac61e300ab25a2d1d39",
  1952. "reference": "a700b4656e4c54371b799ac61e300ab25a2d1d39",
  1953. "shasum": ""
  1954. },
  1955. "require": {
  1956. "ext-json": "*",
  1957. "league/uri-interfaces": "^2.3",
  1958. "php": "^8.1",
  1959. "psr/http-message": "^1.0.1"
  1960. },
  1961. "conflict": {
  1962. "league/uri-schemes": "^1.0"
  1963. },
  1964. "require-dev": {
  1965. "friendsofphp/php-cs-fixer": "^v3.9.5",
  1966. "nyholm/psr7": "^1.5.1",
  1967. "php-http/psr7-integration-tests": "^1.1.1",
  1968. "phpbench/phpbench": "^1.2.6",
  1969. "phpstan/phpstan": "^1.8.5",
  1970. "phpstan/phpstan-deprecation-rules": "^1.0",
  1971. "phpstan/phpstan-phpunit": "^1.1.1",
  1972. "phpstan/phpstan-strict-rules": "^1.4.3",
  1973. "phpunit/phpunit": "^9.5.24",
  1974. "psr/http-factory": "^1.0.1"
  1975. },
  1976. "suggest": {
  1977. "ext-fileinfo": "Needed to create Data URI from a filepath",
  1978. "ext-intl": "Needed to improve host validation",
  1979. "league/uri-components": "Needed to easily manipulate URI objects",
  1980. "psr/http-factory": "Needed to use the URI factory"
  1981. },
  1982. "type": "library",
  1983. "extra": {
  1984. "branch-alias": {
  1985. "dev-master": "6.x-dev"
  1986. }
  1987. },
  1988. "autoload": {
  1989. "psr-4": {
  1990. "League\\Uri\\": "src"
  1991. }
  1992. },
  1993. "notification-url": "https://packagist.org/downloads/",
  1994. "license": [
  1995. "MIT"
  1996. ],
  1997. "authors": [
  1998. {
  1999. "name": "Ignace Nyamagana Butera",
  2000. "email": "nyamsprod@gmail.com",
  2001. "homepage": "https://nyamsprod.com"
  2002. }
  2003. ],
  2004. "description": "URI manipulation library",
  2005. "homepage": "https://uri.thephpleague.com",
  2006. "keywords": [
  2007. "data-uri",
  2008. "file-uri",
  2009. "ftp",
  2010. "hostname",
  2011. "http",
  2012. "https",
  2013. "middleware",
  2014. "parse_str",
  2015. "parse_url",
  2016. "psr-7",
  2017. "query-string",
  2018. "querystring",
  2019. "rfc3986",
  2020. "rfc3987",
  2021. "rfc6570",
  2022. "uri",
  2023. "uri-template",
  2024. "url",
  2025. "ws"
  2026. ],
  2027. "support": {
  2028. "docs": "https://uri.thephpleague.com",
  2029. "forum": "https://thephpleague.slack.com",
  2030. "issues": "https://github.com/thephpleague/uri/issues",
  2031. "source": "https://github.com/thephpleague/uri/tree/6.8.0"
  2032. },
  2033. "funding": [
  2034. {
  2035. "url": "https://github.com/sponsors/nyamsprod",
  2036. "type": "github"
  2037. }
  2038. ],
  2039. "time": "2022-09-13T19:58:47+00:00"
  2040. },
  2041. {
  2042. "name": "league/uri-interfaces",
  2043. "version": "2.3.0",
  2044. "source": {
  2045. "type": "git",
  2046. "url": "https://github.com/thephpleague/uri-interfaces.git",
  2047. "reference": "00e7e2943f76d8cb50c7dfdc2f6dee356e15e383"
  2048. },
  2049. "dist": {
  2050. "type": "zip",
  2051. "url": "https://api.github.com/repos/thephpleague/uri-interfaces/zipball/00e7e2943f76d8cb50c7dfdc2f6dee356e15e383",
  2052. "reference": "00e7e2943f76d8cb50c7dfdc2f6dee356e15e383",
  2053. "shasum": ""
  2054. },
  2055. "require": {
  2056. "ext-json": "*",
  2057. "php": "^7.2 || ^8.0"
  2058. },
  2059. "require-dev": {
  2060. "friendsofphp/php-cs-fixer": "^2.19",
  2061. "phpstan/phpstan": "^0.12.90",
  2062. "phpstan/phpstan-phpunit": "^0.12.19",
  2063. "phpstan/phpstan-strict-rules": "^0.12.9",
  2064. "phpunit/phpunit": "^8.5.15 || ^9.5"
  2065. },
  2066. "suggest": {
  2067. "ext-intl": "to use the IDNA feature",
  2068. "symfony/intl": "to use the IDNA feature via Symfony Polyfill"
  2069. },
  2070. "type": "library",
  2071. "extra": {
  2072. "branch-alias": {
  2073. "dev-master": "2.x-dev"
  2074. }
  2075. },
  2076. "autoload": {
  2077. "psr-4": {
  2078. "League\\Uri\\": "src/"
  2079. }
  2080. },
  2081. "notification-url": "https://packagist.org/downloads/",
  2082. "license": [
  2083. "MIT"
  2084. ],
  2085. "authors": [
  2086. {
  2087. "name": "Ignace Nyamagana Butera",
  2088. "email": "nyamsprod@gmail.com",
  2089. "homepage": "https://nyamsprod.com"
  2090. }
  2091. ],
  2092. "description": "Common interface for URI representation",
  2093. "homepage": "http://github.com/thephpleague/uri-interfaces",
  2094. "keywords": [
  2095. "rfc3986",
  2096. "rfc3987",
  2097. "uri",
  2098. "url"
  2099. ],
  2100. "support": {
  2101. "issues": "https://github.com/thephpleague/uri-interfaces/issues",
  2102. "source": "https://github.com/thephpleague/uri-interfaces/tree/2.3.0"
  2103. },
  2104. "funding": [
  2105. {
  2106. "url": "https://github.com/sponsors/nyamsprod",
  2107. "type": "github"
  2108. }
  2109. ],
  2110. "time": "2021-06-28T04:27:21+00:00"
  2111. },
  2112. {
  2113. "name": "masterminds/html5",
  2114. "version": "2.7.6",
  2115. "source": {
  2116. "type": "git",
  2117. "url": "https://github.com/Masterminds/html5-php.git",
  2118. "reference": "897eb517a343a2281f11bc5556d6548db7d93947"
  2119. },
  2120. "dist": {
  2121. "type": "zip",
  2122. "url": "https://api.github.com/repos/Masterminds/html5-php/zipball/897eb517a343a2281f11bc5556d6548db7d93947",
  2123. "reference": "897eb517a343a2281f11bc5556d6548db7d93947",
  2124. "shasum": ""
  2125. },
  2126. "require": {
  2127. "ext-ctype": "*",
  2128. "ext-dom": "*",
  2129. "ext-libxml": "*",
  2130. "php": ">=5.3.0"
  2131. },
  2132. "require-dev": {
  2133. "phpunit/phpunit": "^4.8.35 || ^5.7.21 || ^6 || ^7"
  2134. },
  2135. "type": "library",
  2136. "extra": {
  2137. "branch-alias": {
  2138. "dev-master": "2.7-dev"
  2139. }
  2140. },
  2141. "autoload": {
  2142. "psr-4": {
  2143. "Masterminds\\": "src"
  2144. }
  2145. },
  2146. "notification-url": "https://packagist.org/downloads/",
  2147. "license": [
  2148. "MIT"
  2149. ],
  2150. "authors": [
  2151. {
  2152. "name": "Matt Butcher",
  2153. "email": "technosophos@gmail.com"
  2154. },
  2155. {
  2156. "name": "Matt Farina",
  2157. "email": "matt@mattfarina.com"
  2158. },
  2159. {
  2160. "name": "Asmir Mustafic",
  2161. "email": "goetas@gmail.com"
  2162. }
  2163. ],
  2164. "description": "An HTML5 parser and serializer.",
  2165. "homepage": "http://masterminds.github.io/html5-php",
  2166. "keywords": [
  2167. "HTML5",
  2168. "dom",
  2169. "html",
  2170. "parser",
  2171. "querypath",
  2172. "serializer",
  2173. "xml"
  2174. ],
  2175. "support": {
  2176. "issues": "https://github.com/Masterminds/html5-php/issues",
  2177. "source": "https://github.com/Masterminds/html5-php/tree/2.7.6"
  2178. },
  2179. "time": "2022-08-18T16:18:26+00:00"
  2180. },
  2181. {
  2182. "name": "monolog/monolog",
  2183. "version": "3.3.1",
  2184. "source": {
  2185. "type": "git",
  2186. "url": "https://github.com/Seldaek/monolog.git",
  2187. "reference": "9b5daeaffce5b926cac47923798bba91059e60e2"
  2188. },
  2189. "dist": {
  2190. "type": "zip",
  2191. "url": "https://api.github.com/repos/Seldaek/monolog/zipball/9b5daeaffce5b926cac47923798bba91059e60e2",
  2192. "reference": "9b5daeaffce5b926cac47923798bba91059e60e2",
  2193. "shasum": ""
  2194. },
  2195. "require": {
  2196. "php": ">=8.1",
  2197. "psr/log": "^2.0 || ^3.0"
  2198. },
  2199. "provide": {
  2200. "psr/log-implementation": "3.0.0"
  2201. },
  2202. "require-dev": {
  2203. "aws/aws-sdk-php": "^3.0",
  2204. "doctrine/couchdb": "~1.0@dev",
  2205. "elasticsearch/elasticsearch": "^7 || ^8",
  2206. "ext-json": "*",
  2207. "graylog2/gelf-php": "^1.4.2 || ^2@dev",
  2208. "guzzlehttp/guzzle": "^7.4.5",
  2209. "guzzlehttp/psr7": "^2.2",
  2210. "mongodb/mongodb": "^1.8",
  2211. "php-amqplib/php-amqplib": "~2.4 || ^3",
  2212. "phpstan/phpstan": "^1.9",
  2213. "phpstan/phpstan-deprecation-rules": "^1.0",
  2214. "phpstan/phpstan-strict-rules": "^1.4",
  2215. "phpunit/phpunit": "^9.5.26",
  2216. "predis/predis": "^1.1 || ^2",
  2217. "ruflin/elastica": "^7",
  2218. "symfony/mailer": "^5.4 || ^6",
  2219. "symfony/mime": "^5.4 || ^6"
  2220. },
  2221. "suggest": {
  2222. "aws/aws-sdk-php": "Allow sending log messages to AWS services like DynamoDB",
  2223. "doctrine/couchdb": "Allow sending log messages to a CouchDB server",
  2224. "elasticsearch/elasticsearch": "Allow sending log messages to an Elasticsearch server via official client",
  2225. "ext-amqp": "Allow sending log messages to an AMQP server (1.0+ required)",
  2226. "ext-curl": "Required to send log messages using the IFTTTHandler, the LogglyHandler, the SendGridHandler, the SlackWebhookHandler or the TelegramBotHandler",
  2227. "ext-mbstring": "Allow to work properly with unicode symbols",
  2228. "ext-mongodb": "Allow sending log messages to a MongoDB server (via driver)",
  2229. "ext-openssl": "Required to send log messages using SSL",
  2230. "ext-sockets": "Allow sending log messages to a Syslog server (via UDP driver)",
  2231. "graylog2/gelf-php": "Allow sending log messages to a GrayLog2 server",
  2232. "mongodb/mongodb": "Allow sending log messages to a MongoDB server (via library)",
  2233. "php-amqplib/php-amqplib": "Allow sending log messages to an AMQP server using php-amqplib",
  2234. "rollbar/rollbar": "Allow sending log messages to Rollbar",
  2235. "ruflin/elastica": "Allow sending log messages to an Elastic Search server"
  2236. },
  2237. "type": "library",
  2238. "extra": {
  2239. "branch-alias": {
  2240. "dev-main": "3.x-dev"
  2241. }
  2242. },
  2243. "autoload": {
  2244. "psr-4": {
  2245. "Monolog\\": "src/Monolog"
  2246. }
  2247. },
  2248. "notification-url": "https://packagist.org/downloads/",
  2249. "license": [
  2250. "MIT"
  2251. ],
  2252. "authors": [
  2253. {
  2254. "name": "Jordi Boggiano",
  2255. "email": "j.boggiano@seld.be",
  2256. "homepage": "https://seld.be"
  2257. }
  2258. ],
  2259. "description": "Sends your logs to files, sockets, inboxes, databases and various web services",
  2260. "homepage": "https://github.com/Seldaek/monolog",
  2261. "keywords": [
  2262. "log",
  2263. "logging",
  2264. "psr-3"
  2265. ],
  2266. "support": {
  2267. "issues": "https://github.com/Seldaek/monolog/issues",
  2268. "source": "https://github.com/Seldaek/monolog/tree/3.3.1"
  2269. },
  2270. "funding": [
  2271. {
  2272. "url": "https://github.com/Seldaek",
  2273. "type": "github"
  2274. },
  2275. {
  2276. "url": "https://tidelift.com/funding/github/packagist/monolog/monolog",
  2277. "type": "tidelift"
  2278. }
  2279. ],
  2280. "time": "2023-02-06T13:46:10+00:00"
  2281. },
  2282. {
  2283. "name": "nette/schema",
  2284. "version": "v1.2.3",
  2285. "source": {
  2286. "type": "git",
  2287. "url": "https://github.com/nette/schema.git",
  2288. "reference": "abbdbb70e0245d5f3bf77874cea1dfb0c930d06f"
  2289. },
  2290. "dist": {
  2291. "type": "zip",
  2292. "url": "https://api.github.com/repos/nette/schema/zipball/abbdbb70e0245d5f3bf77874cea1dfb0c930d06f",
  2293. "reference": "abbdbb70e0245d5f3bf77874cea1dfb0c930d06f",
  2294. "shasum": ""
  2295. },
  2296. "require": {
  2297. "nette/utils": "^2.5.7 || ^3.1.5 || ^4.0",
  2298. "php": ">=7.1 <8.3"
  2299. },
  2300. "require-dev": {
  2301. "nette/tester": "^2.3 || ^2.4",
  2302. "phpstan/phpstan-nette": "^1.0",
  2303. "tracy/tracy": "^2.7"
  2304. },
  2305. "type": "library",
  2306. "extra": {
  2307. "branch-alias": {
  2308. "dev-master": "1.2-dev"
  2309. }
  2310. },
  2311. "autoload": {
  2312. "classmap": [
  2313. "src/"
  2314. ]
  2315. },
  2316. "notification-url": "https://packagist.org/downloads/",
  2317. "license": [
  2318. "BSD-3-Clause",
  2319. "GPL-2.0-only",
  2320. "GPL-3.0-only"
  2321. ],
  2322. "authors": [
  2323. {
  2324. "name": "David Grudl",
  2325. "homepage": "https://davidgrudl.com"
  2326. },
  2327. {
  2328. "name": "Nette Community",
  2329. "homepage": "https://nette.org/contributors"
  2330. }
  2331. ],
  2332. "description": "📐 Nette Schema: validating data structures against a given Schema.",
  2333. "homepage": "https://nette.org",
  2334. "keywords": [
  2335. "config",
  2336. "nette"
  2337. ],
  2338. "support": {
  2339. "issues": "https://github.com/nette/schema/issues",
  2340. "source": "https://github.com/nette/schema/tree/v1.2.3"
  2341. },
  2342. "time": "2022-10-13T01:24:26+00:00"
  2343. },
  2344. {
  2345. "name": "nette/utils",
  2346. "version": "v4.0.0",
  2347. "source": {
  2348. "type": "git",
  2349. "url": "https://github.com/nette/utils.git",
  2350. "reference": "cacdbf5a91a657ede665c541eda28941d4b09c1e"
  2351. },
  2352. "dist": {
  2353. "type": "zip",
  2354. "url": "https://api.github.com/repos/nette/utils/zipball/cacdbf5a91a657ede665c541eda28941d4b09c1e",
  2355. "reference": "cacdbf5a91a657ede665c541eda28941d4b09c1e",
  2356. "shasum": ""
  2357. },
  2358. "require": {
  2359. "php": ">=8.0 <8.3"
  2360. },
  2361. "conflict": {
  2362. "nette/finder": "<3",
  2363. "nette/schema": "<1.2.2"
  2364. },
  2365. "require-dev": {
  2366. "jetbrains/phpstorm-attributes": "dev-master",
  2367. "nette/tester": "^2.4",
  2368. "phpstan/phpstan": "^1.0",
  2369. "tracy/tracy": "^2.9"
  2370. },
  2371. "suggest": {
  2372. "ext-gd": "to use Image",
  2373. "ext-iconv": "to use Strings::webalize(), toAscii(), chr() and reverse()",
  2374. "ext-intl": "to use Strings::webalize(), toAscii(), normalize() and compare()",
  2375. "ext-json": "to use Nette\\Utils\\Json",
  2376. "ext-mbstring": "to use Strings::lower() etc...",
  2377. "ext-tokenizer": "to use Nette\\Utils\\Reflection::getUseStatements()",
  2378. "ext-xml": "to use Strings::length() etc. when mbstring is not available"
  2379. },
  2380. "type": "library",
  2381. "extra": {
  2382. "branch-alias": {
  2383. "dev-master": "4.0-dev"
  2384. }
  2385. },
  2386. "autoload": {
  2387. "classmap": [
  2388. "src/"
  2389. ]
  2390. },
  2391. "notification-url": "https://packagist.org/downloads/",
  2392. "license": [
  2393. "BSD-3-Clause",
  2394. "GPL-2.0-only",
  2395. "GPL-3.0-only"
  2396. ],
  2397. "authors": [
  2398. {
  2399. "name": "David Grudl",
  2400. "homepage": "https://davidgrudl.com"
  2401. },
  2402. {
  2403. "name": "Nette Community",
  2404. "homepage": "https://nette.org/contributors"
  2405. }
  2406. ],
  2407. "description": "🛠 Nette Utils: lightweight utilities for string & array manipulation, image handling, safe JSON encoding/decoding, validation, slug or strong password generating etc.",
  2408. "homepage": "https://nette.org",
  2409. "keywords": [
  2410. "array",
  2411. "core",
  2412. "datetime",
  2413. "images",
  2414. "json",
  2415. "nette",
  2416. "paginator",
  2417. "password",
  2418. "slugify",
  2419. "string",
  2420. "unicode",
  2421. "utf-8",
  2422. "utility",
  2423. "validation"
  2424. ],
  2425. "support": {
  2426. "issues": "https://github.com/nette/utils/issues",
  2427. "source": "https://github.com/nette/utils/tree/v4.0.0"
  2428. },
  2429. "time": "2023-02-02T10:41:53+00:00"
  2430. },
  2431. {
  2432. "name": "phpdocumentor/reflection-common",
  2433. "version": "2.2.0",
  2434. "source": {
  2435. "type": "git",
  2436. "url": "https://github.com/phpDocumentor/ReflectionCommon.git",
  2437. "reference": "1d01c49d4ed62f25aa84a747ad35d5a16924662b"
  2438. },
  2439. "dist": {
  2440. "type": "zip",
  2441. "url": "https://api.github.com/repos/phpDocumentor/ReflectionCommon/zipball/1d01c49d4ed62f25aa84a747ad35d5a16924662b",
  2442. "reference": "1d01c49d4ed62f25aa84a747ad35d5a16924662b",
  2443. "shasum": ""
  2444. },
  2445. "require": {
  2446. "php": "^7.2 || ^8.0"
  2447. },
  2448. "type": "library",
  2449. "extra": {
  2450. "branch-alias": {
  2451. "dev-2.x": "2.x-dev"
  2452. }
  2453. },
  2454. "autoload": {
  2455. "psr-4": {
  2456. "phpDocumentor\\Reflection\\": "src/"
  2457. }
  2458. },
  2459. "notification-url": "https://packagist.org/downloads/",
  2460. "license": [
  2461. "MIT"
  2462. ],
  2463. "authors": [
  2464. {
  2465. "name": "Jaap van Otterdijk",
  2466. "email": "opensource@ijaap.nl"
  2467. }
  2468. ],
  2469. "description": "Common reflection classes used by phpdocumentor to reflect the code structure",
  2470. "homepage": "http://www.phpdoc.org",
  2471. "keywords": [
  2472. "FQSEN",
  2473. "phpDocumentor",
  2474. "phpdoc",
  2475. "reflection",
  2476. "static analysis"
  2477. ],
  2478. "support": {
  2479. "issues": "https://github.com/phpDocumentor/ReflectionCommon/issues",
  2480. "source": "https://github.com/phpDocumentor/ReflectionCommon/tree/2.x"
  2481. },
  2482. "time": "2020-06-27T09:03:43+00:00"
  2483. },
  2484. {
  2485. "name": "phpdocumentor/reflection-docblock",
  2486. "version": "5.3.0",
  2487. "source": {
  2488. "type": "git",
  2489. "url": "https://github.com/phpDocumentor/ReflectionDocBlock.git",
  2490. "reference": "622548b623e81ca6d78b721c5e029f4ce664f170"
  2491. },
  2492. "dist": {
  2493. "type": "zip",
  2494. "url": "https://api.github.com/repos/phpDocumentor/ReflectionDocBlock/zipball/622548b623e81ca6d78b721c5e029f4ce664f170",
  2495. "reference": "622548b623e81ca6d78b721c5e029f4ce664f170",
  2496. "shasum": ""
  2497. },
  2498. "require": {
  2499. "ext-filter": "*",
  2500. "php": "^7.2 || ^8.0",
  2501. "phpdocumentor/reflection-common": "^2.2",
  2502. "phpdocumentor/type-resolver": "^1.3",
  2503. "webmozart/assert": "^1.9.1"
  2504. },
  2505. "require-dev": {
  2506. "mockery/mockery": "~1.3.2",
  2507. "psalm/phar": "^4.8"
  2508. },
  2509. "type": "library",
  2510. "extra": {
  2511. "branch-alias": {
  2512. "dev-master": "5.x-dev"
  2513. }
  2514. },
  2515. "autoload": {
  2516. "psr-4": {
  2517. "phpDocumentor\\Reflection\\": "src"
  2518. }
  2519. },
  2520. "notification-url": "https://packagist.org/downloads/",
  2521. "license": [
  2522. "MIT"
  2523. ],
  2524. "authors": [
  2525. {
  2526. "name": "Mike van Riel",
  2527. "email": "me@mikevanriel.com"
  2528. },
  2529. {
  2530. "name": "Jaap van Otterdijk",
  2531. "email": "account@ijaap.nl"
  2532. }
  2533. ],
  2534. "description": "With this component, a library can provide support for annotations via DocBlocks or otherwise retrieve information that is embedded in a DocBlock.",
  2535. "support": {
  2536. "issues": "https://github.com/phpDocumentor/ReflectionDocBlock/issues",
  2537. "source": "https://github.com/phpDocumentor/ReflectionDocBlock/tree/5.3.0"
  2538. },
  2539. "time": "2021-10-19T17:43:47+00:00"
  2540. },
  2541. {
  2542. "name": "phpdocumentor/type-resolver",
  2543. "version": "1.6.2",
  2544. "source": {
  2545. "type": "git",
  2546. "url": "https://github.com/phpDocumentor/TypeResolver.git",
  2547. "reference": "48f445a408c131e38cab1c235aa6d2bb7a0bb20d"
  2548. },
  2549. "dist": {
  2550. "type": "zip",
  2551. "url": "https://api.github.com/repos/phpDocumentor/TypeResolver/zipball/48f445a408c131e38cab1c235aa6d2bb7a0bb20d",
  2552. "reference": "48f445a408c131e38cab1c235aa6d2bb7a0bb20d",
  2553. "shasum": ""
  2554. },
  2555. "require": {
  2556. "php": "^7.4 || ^8.0",
  2557. "phpdocumentor/reflection-common": "^2.0"
  2558. },
  2559. "require-dev": {
  2560. "ext-tokenizer": "*",
  2561. "phpstan/extension-installer": "^1.1",
  2562. "phpstan/phpstan": "^1.8",
  2563. "phpstan/phpstan-phpunit": "^1.1",
  2564. "phpunit/phpunit": "^9.5",
  2565. "rector/rector": "^0.13.9",
  2566. "vimeo/psalm": "^4.25"
  2567. },
  2568. "type": "library",
  2569. "extra": {
  2570. "branch-alias": {
  2571. "dev-1.x": "1.x-dev"
  2572. }
  2573. },
  2574. "autoload": {
  2575. "psr-4": {
  2576. "phpDocumentor\\Reflection\\": "src"
  2577. }
  2578. },
  2579. "notification-url": "https://packagist.org/downloads/",
  2580. "license": [
  2581. "MIT"
  2582. ],
  2583. "authors": [
  2584. {
  2585. "name": "Mike van Riel",
  2586. "email": "me@mikevanriel.com"
  2587. }
  2588. ],
  2589. "description": "A PSR-5 based resolver of Class names, Types and Structural Element Names",
  2590. "support": {
  2591. "issues": "https://github.com/phpDocumentor/TypeResolver/issues",
  2592. "source": "https://github.com/phpDocumentor/TypeResolver/tree/1.6.2"
  2593. },
  2594. "time": "2022-10-14T12:47:21+00:00"
  2595. },
  2596. {
  2597. "name": "psr/cache",
  2598. "version": "3.0.0",
  2599. "source": {
  2600. "type": "git",
  2601. "url": "https://github.com/php-fig/cache.git",
  2602. "reference": "aa5030cfa5405eccfdcb1083ce040c2cb8d253bf"
  2603. },
  2604. "dist": {
  2605. "type": "zip",
  2606. "url": "https://api.github.com/repos/php-fig/cache/zipball/aa5030cfa5405eccfdcb1083ce040c2cb8d253bf",
  2607. "reference": "aa5030cfa5405eccfdcb1083ce040c2cb8d253bf",
  2608. "shasum": ""
  2609. },
  2610. "require": {
  2611. "php": ">=8.0.0"
  2612. },
  2613. "type": "library",
  2614. "extra": {
  2615. "branch-alias": {
  2616. "dev-master": "1.0.x-dev"
  2617. }
  2618. },
  2619. "autoload": {
  2620. "psr-4": {
  2621. "Psr\\Cache\\": "src/"
  2622. }
  2623. },
  2624. "notification-url": "https://packagist.org/downloads/",
  2625. "license": [
  2626. "MIT"
  2627. ],
  2628. "authors": [
  2629. {
  2630. "name": "PHP-FIG",
  2631. "homepage": "https://www.php-fig.org/"
  2632. }
  2633. ],
  2634. "description": "Common interface for caching libraries",
  2635. "keywords": [
  2636. "cache",
  2637. "psr",
  2638. "psr-6"
  2639. ],
  2640. "support": {
  2641. "source": "https://github.com/php-fig/cache/tree/3.0.0"
  2642. },
  2643. "time": "2021-02-03T23:26:27+00:00"
  2644. },
  2645. {
  2646. "name": "psr/container",
  2647. "version": "2.0.2",
  2648. "source": {
  2649. "type": "git",
  2650. "url": "https://github.com/php-fig/container.git",
  2651. "reference": "c71ecc56dfe541dbd90c5360474fbc405f8d5963"
  2652. },
  2653. "dist": {
  2654. "type": "zip",
  2655. "url": "https://api.github.com/repos/php-fig/container/zipball/c71ecc56dfe541dbd90c5360474fbc405f8d5963",
  2656. "reference": "c71ecc56dfe541dbd90c5360474fbc405f8d5963",
  2657. "shasum": ""
  2658. },
  2659. "require": {
  2660. "php": ">=7.4.0"
  2661. },
  2662. "type": "library",
  2663. "extra": {
  2664. "branch-alias": {
  2665. "dev-master": "2.0.x-dev"
  2666. }
  2667. },
  2668. "autoload": {
  2669. "psr-4": {
  2670. "Psr\\Container\\": "src/"
  2671. }
  2672. },
  2673. "notification-url": "https://packagist.org/downloads/",
  2674. "license": [
  2675. "MIT"
  2676. ],
  2677. "authors": [
  2678. {
  2679. "name": "PHP-FIG",
  2680. "homepage": "https://www.php-fig.org/"
  2681. }
  2682. ],
  2683. "description": "Common Container Interface (PHP FIG PSR-11)",
  2684. "homepage": "https://github.com/php-fig/container",
  2685. "keywords": [
  2686. "PSR-11",
  2687. "container",
  2688. "container-interface",
  2689. "container-interop",
  2690. "psr"
  2691. ],
  2692. "support": {
  2693. "issues": "https://github.com/php-fig/container/issues",
  2694. "source": "https://github.com/php-fig/container/tree/2.0.2"
  2695. },
  2696. "time": "2021-11-05T16:47:00+00:00"
  2697. },
  2698. {
  2699. "name": "psr/event-dispatcher",
  2700. "version": "1.0.0",
  2701. "source": {
  2702. "type": "git",
  2703. "url": "https://github.com/php-fig/event-dispatcher.git",
  2704. "reference": "dbefd12671e8a14ec7f180cab83036ed26714bb0"
  2705. },
  2706. "dist": {
  2707. "type": "zip",
  2708. "url": "https://api.github.com/repos/php-fig/event-dispatcher/zipball/dbefd12671e8a14ec7f180cab83036ed26714bb0",
  2709. "reference": "dbefd12671e8a14ec7f180cab83036ed26714bb0",
  2710. "shasum": ""
  2711. },
  2712. "require": {
  2713. "php": ">=7.2.0"
  2714. },
  2715. "type": "library",
  2716. "extra": {
  2717. "branch-alias": {
  2718. "dev-master": "1.0.x-dev"
  2719. }
  2720. },
  2721. "autoload": {
  2722. "psr-4": {
  2723. "Psr\\EventDispatcher\\": "src/"
  2724. }
  2725. },
  2726. "notification-url": "https://packagist.org/downloads/",
  2727. "license": [
  2728. "MIT"
  2729. ],
  2730. "authors": [
  2731. {
  2732. "name": "PHP-FIG",
  2733. "homepage": "http://www.php-fig.org/"
  2734. }
  2735. ],
  2736. "description": "Standard interfaces for event handling.",
  2737. "keywords": [
  2738. "events",
  2739. "psr",
  2740. "psr-14"
  2741. ],
  2742. "support": {
  2743. "issues": "https://github.com/php-fig/event-dispatcher/issues",
  2744. "source": "https://github.com/php-fig/event-dispatcher/tree/1.0.0"
  2745. },
  2746. "time": "2019-01-08T18:20:26+00:00"
  2747. },
  2748. {
  2749. "name": "psr/http-message",
  2750. "version": "1.0.1",
  2751. "source": {
  2752. "type": "git",
  2753. "url": "https://github.com/php-fig/http-message.git",
  2754. "reference": "f6561bf28d520154e4b0ec72be95418abe6d9363"
  2755. },
  2756. "dist": {
  2757. "type": "zip",
  2758. "url": "https://api.github.com/repos/php-fig/http-message/zipball/f6561bf28d520154e4b0ec72be95418abe6d9363",
  2759. "reference": "f6561bf28d520154e4b0ec72be95418abe6d9363",
  2760. "shasum": ""
  2761. },
  2762. "require": {
  2763. "php": ">=5.3.0"
  2764. },
  2765. "type": "library",
  2766. "extra": {
  2767. "branch-alias": {
  2768. "dev-master": "1.0.x-dev"
  2769. }
  2770. },
  2771. "autoload": {
  2772. "psr-4": {
  2773. "Psr\\Http\\Message\\": "src/"
  2774. }
  2775. },
  2776. "notification-url": "https://packagist.org/downloads/",
  2777. "license": [
  2778. "MIT"
  2779. ],
  2780. "authors": [
  2781. {
  2782. "name": "PHP-FIG",
  2783. "homepage": "http://www.php-fig.org/"
  2784. }
  2785. ],
  2786. "description": "Common interface for HTTP messages",
  2787. "homepage": "https://github.com/php-fig/http-message",
  2788. "keywords": [
  2789. "http",
  2790. "http-message",
  2791. "psr",
  2792. "psr-7",
  2793. "request",
  2794. "response"
  2795. ],
  2796. "support": {
  2797. "source": "https://github.com/php-fig/http-message/tree/master"
  2798. },
  2799. "time": "2016-08-06T14:39:51+00:00"
  2800. },
  2801. {
  2802. "name": "psr/link",
  2803. "version": "2.0.1",
  2804. "source": {
  2805. "type": "git",
  2806. "url": "https://github.com/php-fig/link.git",
  2807. "reference": "84b159194ecfd7eaa472280213976e96415433f7"
  2808. },
  2809. "dist": {
  2810. "type": "zip",
  2811. "url": "https://api.github.com/repos/php-fig/link/zipball/84b159194ecfd7eaa472280213976e96415433f7",
  2812. "reference": "84b159194ecfd7eaa472280213976e96415433f7",
  2813. "shasum": ""
  2814. },
  2815. "require": {
  2816. "php": ">=8.0.0"
  2817. },
  2818. "suggest": {
  2819. "fig/link-util": "Provides some useful PSR-13 utilities"
  2820. },
  2821. "type": "library",
  2822. "extra": {
  2823. "branch-alias": {
  2824. "dev-master": "2.0.x-dev"
  2825. }
  2826. },
  2827. "autoload": {
  2828. "psr-4": {
  2829. "Psr\\Link\\": "src/"
  2830. }
  2831. },
  2832. "notification-url": "https://packagist.org/downloads/",
  2833. "license": [
  2834. "MIT"
  2835. ],
  2836. "authors": [
  2837. {
  2838. "name": "PHP-FIG",
  2839. "homepage": "http://www.php-fig.org/"
  2840. }
  2841. ],
  2842. "description": "Common interfaces for HTTP links",
  2843. "homepage": "https://github.com/php-fig/link",
  2844. "keywords": [
  2845. "http",
  2846. "http-link",
  2847. "link",
  2848. "psr",
  2849. "psr-13",
  2850. "rest"
  2851. ],
  2852. "support": {
  2853. "source": "https://github.com/php-fig/link/tree/2.0.1"
  2854. },
  2855. "time": "2021-03-11T23:00:27+00:00"
  2856. },
  2857. {
  2858. "name": "psr/log",
  2859. "version": "3.0.0",
  2860. "source": {
  2861. "type": "git",
  2862. "url": "https://github.com/php-fig/log.git",
  2863. "reference": "fe5ea303b0887d5caefd3d431c3e61ad47037001"
  2864. },
  2865. "dist": {
  2866. "type": "zip",
  2867. "url": "https://api.github.com/repos/php-fig/log/zipball/fe5ea303b0887d5caefd3d431c3e61ad47037001",
  2868. "reference": "fe5ea303b0887d5caefd3d431c3e61ad47037001",
  2869. "shasum": ""
  2870. },
  2871. "require": {
  2872. "php": ">=8.0.0"
  2873. },
  2874. "type": "library",
  2875. "extra": {
  2876. "branch-alias": {
  2877. "dev-master": "3.x-dev"
  2878. }
  2879. },
  2880. "autoload": {
  2881. "psr-4": {
  2882. "Psr\\Log\\": "src"
  2883. }
  2884. },
  2885. "notification-url": "https://packagist.org/downloads/",
  2886. "license": [
  2887. "MIT"
  2888. ],
  2889. "authors": [
  2890. {
  2891. "name": "PHP-FIG",
  2892. "homepage": "https://www.php-fig.org/"
  2893. }
  2894. ],
  2895. "description": "Common interface for logging libraries",
  2896. "homepage": "https://github.com/php-fig/log",
  2897. "keywords": [
  2898. "log",
  2899. "psr",
  2900. "psr-3"
  2901. ],
  2902. "support": {
  2903. "source": "https://github.com/php-fig/log/tree/3.0.0"
  2904. },
  2905. "time": "2021-07-14T16:46:02+00:00"
  2906. },
  2907. {
  2908. "name": "sensio/framework-extra-bundle",
  2909. "version": "v6.2.10",
  2910. "source": {
  2911. "type": "git",
  2912. "url": "https://github.com/sensiolabs/SensioFrameworkExtraBundle.git",
  2913. "reference": "2f886f4b31f23c76496901acaedfedb6936ba61f"
  2914. },
  2915. "dist": {
  2916. "type": "zip",
  2917. "url": "https://api.github.com/repos/sensiolabs/SensioFrameworkExtraBundle/zipball/2f886f4b31f23c76496901acaedfedb6936ba61f",
  2918. "reference": "2f886f4b31f23c76496901acaedfedb6936ba61f",
  2919. "shasum": ""
  2920. },
  2921. "require": {
  2922. "doctrine/annotations": "^1.0|^2.0",
  2923. "php": ">=7.2.5",
  2924. "symfony/config": "^4.4|^5.0|^6.0",
  2925. "symfony/dependency-injection": "^4.4|^5.0|^6.0",
  2926. "symfony/framework-bundle": "^4.4|^5.0|^6.0",
  2927. "symfony/http-kernel": "^4.4|^5.0|^6.0"
  2928. },
  2929. "conflict": {
  2930. "doctrine/doctrine-cache-bundle": "<1.3.1",
  2931. "doctrine/persistence": "<1.3"
  2932. },
  2933. "require-dev": {
  2934. "doctrine/dbal": "^2.10|^3.0",
  2935. "doctrine/doctrine-bundle": "^1.11|^2.0",
  2936. "doctrine/orm": "^2.5",
  2937. "symfony/browser-kit": "^4.4|^5.0|^6.0",
  2938. "symfony/doctrine-bridge": "^4.4|^5.0|^6.0",
  2939. "symfony/dom-crawler": "^4.4|^5.0|^6.0",
  2940. "symfony/expression-language": "^4.4|^5.0|^6.0",
  2941. "symfony/finder": "^4.4|^5.0|^6.0",
  2942. "symfony/monolog-bridge": "^4.0|^5.0|^6.0",
  2943. "symfony/monolog-bundle": "^3.2",
  2944. "symfony/phpunit-bridge": "^4.4.9|^5.0.9|^6.0",
  2945. "symfony/security-bundle": "^4.4|^5.0|^6.0",
  2946. "symfony/twig-bundle": "^4.4|^5.0|^6.0",
  2947. "symfony/yaml": "^4.4|^5.0|^6.0",
  2948. "twig/twig": "^1.34|^2.4|^3.0"
  2949. },
  2950. "type": "symfony-bundle",
  2951. "extra": {
  2952. "branch-alias": {
  2953. "dev-master": "6.1.x-dev"
  2954. }
  2955. },
  2956. "autoload": {
  2957. "psr-4": {
  2958. "Sensio\\Bundle\\FrameworkExtraBundle\\": "src/"
  2959. },
  2960. "exclude-from-classmap": [
  2961. "/tests/"
  2962. ]
  2963. },
  2964. "notification-url": "https://packagist.org/downloads/",
  2965. "license": [
  2966. "MIT"
  2967. ],
  2968. "authors": [
  2969. {
  2970. "name": "Fabien Potencier",
  2971. "email": "fabien@symfony.com"
  2972. }
  2973. ],
  2974. "description": "This bundle provides a way to configure your controllers with annotations",
  2975. "keywords": [
  2976. "annotations",
  2977. "controllers"
  2978. ],
  2979. "support": {
  2980. "source": "https://github.com/sensiolabs/SensioFrameworkExtraBundle/tree/v6.2.10"
  2981. },
  2982. "abandoned": "Symfony",
  2983. "time": "2023-02-24T14:57:12+00:00"
  2984. },
  2985. {
  2986. "name": "symfony/apache-pack",
  2987. "version": "v1.0.1",
  2988. "source": {
  2989. "type": "git",
  2990. "url": "https://github.com/symfony/apache-pack.git",
  2991. "reference": "3aa5818d73ad2551281fc58a75afd9ca82622e6c"
  2992. },
  2993. "dist": {
  2994. "type": "zip",
  2995. "url": "https://api.github.com/repos/symfony/apache-pack/zipball/3aa5818d73ad2551281fc58a75afd9ca82622e6c",
  2996. "reference": "3aa5818d73ad2551281fc58a75afd9ca82622e6c",
  2997. "shasum": ""
  2998. },
  2999. "type": "symfony-pack",
  3000. "notification-url": "https://packagist.org/downloads/",
  3001. "license": [
  3002. "MIT"
  3003. ],
  3004. "description": "A pack for Apache support in Symfony",
  3005. "support": {
  3006. "issues": "https://github.com/symfony/apache-pack/issues",
  3007. "source": "https://github.com/symfony/apache-pack/tree/master"
  3008. },
  3009. "time": "2017-12-12T01:46:35+00:00"
  3010. },
  3011. {
  3012. "name": "symfony/asset",
  3013. "version": "v6.2.7",
  3014. "source": {
  3015. "type": "git",
  3016. "url": "https://github.com/symfony/asset.git",
  3017. "reference": "223df790e684ecc7bc37323c2d1e265129ca02de"
  3018. },
  3019. "dist": {
  3020. "type": "zip",
  3021. "url": "https://api.github.com/repos/symfony/asset/zipball/223df790e684ecc7bc37323c2d1e265129ca02de",
  3022. "reference": "223df790e684ecc7bc37323c2d1e265129ca02de",
  3023. "shasum": ""
  3024. },
  3025. "require": {
  3026. "php": ">=8.1"
  3027. },
  3028. "conflict": {
  3029. "symfony/http-foundation": "<5.4"
  3030. },
  3031. "require-dev": {
  3032. "symfony/http-client": "^5.4|^6.0",
  3033. "symfony/http-foundation": "^5.4|^6.0",
  3034. "symfony/http-kernel": "^5.4|^6.0"
  3035. },
  3036. "suggest": {
  3037. "symfony/http-foundation": ""
  3038. },
  3039. "type": "library",
  3040. "autoload": {
  3041. "psr-4": {
  3042. "Symfony\\Component\\Asset\\": ""
  3043. },
  3044. "exclude-from-classmap": [
  3045. "/Tests/"
  3046. ]
  3047. },
  3048. "notification-url": "https://packagist.org/downloads/",
  3049. "license": [
  3050. "MIT"
  3051. ],
  3052. "authors": [
  3053. {
  3054. "name": "Fabien Potencier",
  3055. "email": "fabien@symfony.com"
  3056. },
  3057. {
  3058. "name": "Symfony Community",
  3059. "homepage": "https://symfony.com/contributors"
  3060. }
  3061. ],
  3062. "description": "Manages URL generation and versioning of web assets such as CSS stylesheets, JavaScript files and image files",
  3063. "homepage": "https://symfony.com",
  3064. "support": {
  3065. "source": "https://github.com/symfony/asset/tree/v6.2.7"
  3066. },
  3067. "funding": [
  3068. {
  3069. "url": "https://symfony.com/sponsor",
  3070. "type": "custom"
  3071. },
  3072. {
  3073. "url": "https://github.com/fabpot",
  3074. "type": "github"
  3075. },
  3076. {
  3077. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3078. "type": "tidelift"
  3079. }
  3080. ],
  3081. "time": "2023-02-14T08:44:56+00:00"
  3082. },
  3083. {
  3084. "name": "symfony/cache",
  3085. "version": "v6.2.7",
  3086. "source": {
  3087. "type": "git",
  3088. "url": "https://github.com/symfony/cache.git",
  3089. "reference": "01a36b32f930018764bcbde006fbbe421fa6b61e"
  3090. },
  3091. "dist": {
  3092. "type": "zip",
  3093. "url": "https://api.github.com/repos/symfony/cache/zipball/01a36b32f930018764bcbde006fbbe421fa6b61e",
  3094. "reference": "01a36b32f930018764bcbde006fbbe421fa6b61e",
  3095. "shasum": ""
  3096. },
  3097. "require": {
  3098. "php": ">=8.1",
  3099. "psr/cache": "^2.0|^3.0",
  3100. "psr/log": "^1.1|^2|^3",
  3101. "symfony/cache-contracts": "^1.1.7|^2|^3",
  3102. "symfony/service-contracts": "^1.1|^2|^3",
  3103. "symfony/var-exporter": "^6.2.7"
  3104. },
  3105. "conflict": {
  3106. "doctrine/dbal": "<2.13.1",
  3107. "symfony/dependency-injection": "<5.4",
  3108. "symfony/http-kernel": "<5.4",
  3109. "symfony/var-dumper": "<5.4"
  3110. },
  3111. "provide": {
  3112. "psr/cache-implementation": "2.0|3.0",
  3113. "psr/simple-cache-implementation": "1.0|2.0|3.0",
  3114. "symfony/cache-implementation": "1.1|2.0|3.0"
  3115. },
  3116. "require-dev": {
  3117. "cache/integration-tests": "dev-master",
  3118. "doctrine/dbal": "^2.13.1|^3.0",
  3119. "predis/predis": "^1.1",
  3120. "psr/simple-cache": "^1.0|^2.0|^3.0",
  3121. "symfony/config": "^5.4|^6.0",
  3122. "symfony/dependency-injection": "^5.4|^6.0",
  3123. "symfony/filesystem": "^5.4|^6.0",
  3124. "symfony/http-kernel": "^5.4|^6.0",
  3125. "symfony/messenger": "^5.4|^6.0",
  3126. "symfony/var-dumper": "^5.4|^6.0"
  3127. },
  3128. "type": "library",
  3129. "autoload": {
  3130. "psr-4": {
  3131. "Symfony\\Component\\Cache\\": ""
  3132. },
  3133. "classmap": [
  3134. "Traits/ValueWrapper.php"
  3135. ],
  3136. "exclude-from-classmap": [
  3137. "/Tests/"
  3138. ]
  3139. },
  3140. "notification-url": "https://packagist.org/downloads/",
  3141. "license": [
  3142. "MIT"
  3143. ],
  3144. "authors": [
  3145. {
  3146. "name": "Nicolas Grekas",
  3147. "email": "p@tchwork.com"
  3148. },
  3149. {
  3150. "name": "Symfony Community",
  3151. "homepage": "https://symfony.com/contributors"
  3152. }
  3153. ],
  3154. "description": "Provides extended PSR-6, PSR-16 (and tags) implementations",
  3155. "homepage": "https://symfony.com",
  3156. "keywords": [
  3157. "caching",
  3158. "psr6"
  3159. ],
  3160. "support": {
  3161. "source": "https://github.com/symfony/cache/tree/v6.2.7"
  3162. },
  3163. "funding": [
  3164. {
  3165. "url": "https://symfony.com/sponsor",
  3166. "type": "custom"
  3167. },
  3168. {
  3169. "url": "https://github.com/fabpot",
  3170. "type": "github"
  3171. },
  3172. {
  3173. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3174. "type": "tidelift"
  3175. }
  3176. ],
  3177. "time": "2023-02-21T16:15:44+00:00"
  3178. },
  3179. {
  3180. "name": "symfony/cache-contracts",
  3181. "version": "v3.2.1",
  3182. "source": {
  3183. "type": "git",
  3184. "url": "https://github.com/symfony/cache-contracts.git",
  3185. "reference": "eeb71f04b6f7f34ca6d15633df82e014528b1632"
  3186. },
  3187. "dist": {
  3188. "type": "zip",
  3189. "url": "https://api.github.com/repos/symfony/cache-contracts/zipball/eeb71f04b6f7f34ca6d15633df82e014528b1632",
  3190. "reference": "eeb71f04b6f7f34ca6d15633df82e014528b1632",
  3191. "shasum": ""
  3192. },
  3193. "require": {
  3194. "php": ">=8.1",
  3195. "psr/cache": "^3.0"
  3196. },
  3197. "suggest": {
  3198. "symfony/cache-implementation": ""
  3199. },
  3200. "type": "library",
  3201. "extra": {
  3202. "branch-alias": {
  3203. "dev-main": "3.3-dev"
  3204. },
  3205. "thanks": {
  3206. "name": "symfony/contracts",
  3207. "url": "https://github.com/symfony/contracts"
  3208. }
  3209. },
  3210. "autoload": {
  3211. "psr-4": {
  3212. "Symfony\\Contracts\\Cache\\": ""
  3213. }
  3214. },
  3215. "notification-url": "https://packagist.org/downloads/",
  3216. "license": [
  3217. "MIT"
  3218. ],
  3219. "authors": [
  3220. {
  3221. "name": "Nicolas Grekas",
  3222. "email": "p@tchwork.com"
  3223. },
  3224. {
  3225. "name": "Symfony Community",
  3226. "homepage": "https://symfony.com/contributors"
  3227. }
  3228. ],
  3229. "description": "Generic abstractions related to caching",
  3230. "homepage": "https://symfony.com",
  3231. "keywords": [
  3232. "abstractions",
  3233. "contracts",
  3234. "decoupling",
  3235. "interfaces",
  3236. "interoperability",
  3237. "standards"
  3238. ],
  3239. "support": {
  3240. "source": "https://github.com/symfony/cache-contracts/tree/v3.2.1"
  3241. },
  3242. "funding": [
  3243. {
  3244. "url": "https://symfony.com/sponsor",
  3245. "type": "custom"
  3246. },
  3247. {
  3248. "url": "https://github.com/fabpot",
  3249. "type": "github"
  3250. },
  3251. {
  3252. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3253. "type": "tidelift"
  3254. }
  3255. ],
  3256. "time": "2023-03-01T10:32:47+00:00"
  3257. },
  3258. {
  3259. "name": "symfony/config",
  3260. "version": "v6.2.7",
  3261. "source": {
  3262. "type": "git",
  3263. "url": "https://github.com/symfony/config.git",
  3264. "reference": "249271da6f545d6579e0663374f8249a80be2893"
  3265. },
  3266. "dist": {
  3267. "type": "zip",
  3268. "url": "https://api.github.com/repos/symfony/config/zipball/249271da6f545d6579e0663374f8249a80be2893",
  3269. "reference": "249271da6f545d6579e0663374f8249a80be2893",
  3270. "shasum": ""
  3271. },
  3272. "require": {
  3273. "php": ">=8.1",
  3274. "symfony/deprecation-contracts": "^2.1|^3",
  3275. "symfony/filesystem": "^5.4|^6.0",
  3276. "symfony/polyfill-ctype": "~1.8"
  3277. },
  3278. "conflict": {
  3279. "symfony/finder": "<5.4"
  3280. },
  3281. "require-dev": {
  3282. "symfony/event-dispatcher": "^5.4|^6.0",
  3283. "symfony/finder": "^5.4|^6.0",
  3284. "symfony/messenger": "^5.4|^6.0",
  3285. "symfony/service-contracts": "^1.1|^2|^3",
  3286. "symfony/yaml": "^5.4|^6.0"
  3287. },
  3288. "suggest": {
  3289. "symfony/yaml": "To use the yaml reference dumper"
  3290. },
  3291. "type": "library",
  3292. "autoload": {
  3293. "psr-4": {
  3294. "Symfony\\Component\\Config\\": ""
  3295. },
  3296. "exclude-from-classmap": [
  3297. "/Tests/"
  3298. ]
  3299. },
  3300. "notification-url": "https://packagist.org/downloads/",
  3301. "license": [
  3302. "MIT"
  3303. ],
  3304. "authors": [
  3305. {
  3306. "name": "Fabien Potencier",
  3307. "email": "fabien@symfony.com"
  3308. },
  3309. {
  3310. "name": "Symfony Community",
  3311. "homepage": "https://symfony.com/contributors"
  3312. }
  3313. ],
  3314. "description": "Helps you find, load, combine, autofill and validate configuration values of any kind",
  3315. "homepage": "https://symfony.com",
  3316. "support": {
  3317. "source": "https://github.com/symfony/config/tree/v6.2.7"
  3318. },
  3319. "funding": [
  3320. {
  3321. "url": "https://symfony.com/sponsor",
  3322. "type": "custom"
  3323. },
  3324. {
  3325. "url": "https://github.com/fabpot",
  3326. "type": "github"
  3327. },
  3328. {
  3329. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3330. "type": "tidelift"
  3331. }
  3332. ],
  3333. "time": "2023-02-14T08:44:56+00:00"
  3334. },
  3335. {
  3336. "name": "symfony/console",
  3337. "version": "v6.2.7",
  3338. "source": {
  3339. "type": "git",
  3340. "url": "https://github.com/symfony/console.git",
  3341. "reference": "cbad09eb8925b6ad4fb721c7a179344dc4a19d45"
  3342. },
  3343. "dist": {
  3344. "type": "zip",
  3345. "url": "https://api.github.com/repos/symfony/console/zipball/cbad09eb8925b6ad4fb721c7a179344dc4a19d45",
  3346. "reference": "cbad09eb8925b6ad4fb721c7a179344dc4a19d45",
  3347. "shasum": ""
  3348. },
  3349. "require": {
  3350. "php": ">=8.1",
  3351. "symfony/deprecation-contracts": "^2.1|^3",
  3352. "symfony/polyfill-mbstring": "~1.0",
  3353. "symfony/service-contracts": "^1.1|^2|^3",
  3354. "symfony/string": "^5.4|^6.0"
  3355. },
  3356. "conflict": {
  3357. "symfony/dependency-injection": "<5.4",
  3358. "symfony/dotenv": "<5.4",
  3359. "symfony/event-dispatcher": "<5.4",
  3360. "symfony/lock": "<5.4",
  3361. "symfony/process": "<5.4"
  3362. },
  3363. "provide": {
  3364. "psr/log-implementation": "1.0|2.0|3.0"
  3365. },
  3366. "require-dev": {
  3367. "psr/log": "^1|^2|^3",
  3368. "symfony/config": "^5.4|^6.0",
  3369. "symfony/dependency-injection": "^5.4|^6.0",
  3370. "symfony/event-dispatcher": "^5.4|^6.0",
  3371. "symfony/lock": "^5.4|^6.0",
  3372. "symfony/process": "^5.4|^6.0",
  3373. "symfony/var-dumper": "^5.4|^6.0"
  3374. },
  3375. "suggest": {
  3376. "psr/log": "For using the console logger",
  3377. "symfony/event-dispatcher": "",
  3378. "symfony/lock": "",
  3379. "symfony/process": ""
  3380. },
  3381. "type": "library",
  3382. "autoload": {
  3383. "psr-4": {
  3384. "Symfony\\Component\\Console\\": ""
  3385. },
  3386. "exclude-from-classmap": [
  3387. "/Tests/"
  3388. ]
  3389. },
  3390. "notification-url": "https://packagist.org/downloads/",
  3391. "license": [
  3392. "MIT"
  3393. ],
  3394. "authors": [
  3395. {
  3396. "name": "Fabien Potencier",
  3397. "email": "fabien@symfony.com"
  3398. },
  3399. {
  3400. "name": "Symfony Community",
  3401. "homepage": "https://symfony.com/contributors"
  3402. }
  3403. ],
  3404. "description": "Eases the creation of beautiful and testable command line interfaces",
  3405. "homepage": "https://symfony.com",
  3406. "keywords": [
  3407. "cli",
  3408. "command line",
  3409. "console",
  3410. "terminal"
  3411. ],
  3412. "support": {
  3413. "source": "https://github.com/symfony/console/tree/v6.2.7"
  3414. },
  3415. "funding": [
  3416. {
  3417. "url": "https://symfony.com/sponsor",
  3418. "type": "custom"
  3419. },
  3420. {
  3421. "url": "https://github.com/fabpot",
  3422. "type": "github"
  3423. },
  3424. {
  3425. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3426. "type": "tidelift"
  3427. }
  3428. ],
  3429. "time": "2023-02-25T17:00:03+00:00"
  3430. },
  3431. {
  3432. "name": "symfony/dependency-injection",
  3433. "version": "v6.2.7",
  3434. "source": {
  3435. "type": "git",
  3436. "url": "https://github.com/symfony/dependency-injection.git",
  3437. "reference": "83369dd4ec84bba9673524d25b79dfbde9e6e84c"
  3438. },
  3439. "dist": {
  3440. "type": "zip",
  3441. "url": "https://api.github.com/repos/symfony/dependency-injection/zipball/83369dd4ec84bba9673524d25b79dfbde9e6e84c",
  3442. "reference": "83369dd4ec84bba9673524d25b79dfbde9e6e84c",
  3443. "shasum": ""
  3444. },
  3445. "require": {
  3446. "php": ">=8.1",
  3447. "psr/container": "^1.1|^2.0",
  3448. "symfony/deprecation-contracts": "^2.1|^3",
  3449. "symfony/service-contracts": "^1.1.6|^2.0|^3.0",
  3450. "symfony/var-exporter": "^6.2.7"
  3451. },
  3452. "conflict": {
  3453. "ext-psr": "<1.1|>=2",
  3454. "symfony/config": "<6.1",
  3455. "symfony/finder": "<5.4",
  3456. "symfony/proxy-manager-bridge": "<6.2",
  3457. "symfony/yaml": "<5.4"
  3458. },
  3459. "provide": {
  3460. "psr/container-implementation": "1.1|2.0",
  3461. "symfony/service-implementation": "1.1|2.0|3.0"
  3462. },
  3463. "require-dev": {
  3464. "symfony/config": "^6.1",
  3465. "symfony/expression-language": "^5.4|^6.0",
  3466. "symfony/yaml": "^5.4|^6.0"
  3467. },
  3468. "suggest": {
  3469. "symfony/config": "",
  3470. "symfony/expression-language": "For using expressions in service container configuration",
  3471. "symfony/finder": "For using double-star glob patterns or when GLOB_BRACE portability is required",
  3472. "symfony/yaml": ""
  3473. },
  3474. "type": "library",
  3475. "autoload": {
  3476. "psr-4": {
  3477. "Symfony\\Component\\DependencyInjection\\": ""
  3478. },
  3479. "exclude-from-classmap": [
  3480. "/Tests/"
  3481. ]
  3482. },
  3483. "notification-url": "https://packagist.org/downloads/",
  3484. "license": [
  3485. "MIT"
  3486. ],
  3487. "authors": [
  3488. {
  3489. "name": "Fabien Potencier",
  3490. "email": "fabien@symfony.com"
  3491. },
  3492. {
  3493. "name": "Symfony Community",
  3494. "homepage": "https://symfony.com/contributors"
  3495. }
  3496. ],
  3497. "description": "Allows you to standardize and centralize the way objects are constructed in your application",
  3498. "homepage": "https://symfony.com",
  3499. "support": {
  3500. "source": "https://github.com/symfony/dependency-injection/tree/v6.2.7"
  3501. },
  3502. "funding": [
  3503. {
  3504. "url": "https://symfony.com/sponsor",
  3505. "type": "custom"
  3506. },
  3507. {
  3508. "url": "https://github.com/fabpot",
  3509. "type": "github"
  3510. },
  3511. {
  3512. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3513. "type": "tidelift"
  3514. }
  3515. ],
  3516. "time": "2023-02-16T14:11:02+00:00"
  3517. },
  3518. {
  3519. "name": "symfony/deprecation-contracts",
  3520. "version": "v3.2.1",
  3521. "source": {
  3522. "type": "git",
  3523. "url": "https://github.com/symfony/deprecation-contracts.git",
  3524. "reference": "e2d1534420bd723d0ef5aec58a22c5fe60ce6f5e"
  3525. },
  3526. "dist": {
  3527. "type": "zip",
  3528. "url": "https://api.github.com/repos/symfony/deprecation-contracts/zipball/e2d1534420bd723d0ef5aec58a22c5fe60ce6f5e",
  3529. "reference": "e2d1534420bd723d0ef5aec58a22c5fe60ce6f5e",
  3530. "shasum": ""
  3531. },
  3532. "require": {
  3533. "php": ">=8.1"
  3534. },
  3535. "type": "library",
  3536. "extra": {
  3537. "branch-alias": {
  3538. "dev-main": "3.3-dev"
  3539. },
  3540. "thanks": {
  3541. "name": "symfony/contracts",
  3542. "url": "https://github.com/symfony/contracts"
  3543. }
  3544. },
  3545. "autoload": {
  3546. "files": [
  3547. "function.php"
  3548. ]
  3549. },
  3550. "notification-url": "https://packagist.org/downloads/",
  3551. "license": [
  3552. "MIT"
  3553. ],
  3554. "authors": [
  3555. {
  3556. "name": "Nicolas Grekas",
  3557. "email": "p@tchwork.com"
  3558. },
  3559. {
  3560. "name": "Symfony Community",
  3561. "homepage": "https://symfony.com/contributors"
  3562. }
  3563. ],
  3564. "description": "A generic function and convention to trigger deprecation notices",
  3565. "homepage": "https://symfony.com",
  3566. "support": {
  3567. "source": "https://github.com/symfony/deprecation-contracts/tree/v3.2.1"
  3568. },
  3569. "funding": [
  3570. {
  3571. "url": "https://symfony.com/sponsor",
  3572. "type": "custom"
  3573. },
  3574. {
  3575. "url": "https://github.com/fabpot",
  3576. "type": "github"
  3577. },
  3578. {
  3579. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3580. "type": "tidelift"
  3581. }
  3582. ],
  3583. "time": "2023-03-01T10:25:55+00:00"
  3584. },
  3585. {
  3586. "name": "symfony/doctrine-bridge",
  3587. "version": "v6.2.7",
  3588. "source": {
  3589. "type": "git",
  3590. "url": "https://github.com/symfony/doctrine-bridge.git",
  3591. "reference": "35cb5045e15bf6bd89fd1353d9b03ff61dc1feaf"
  3592. },
  3593. "dist": {
  3594. "type": "zip",
  3595. "url": "https://api.github.com/repos/symfony/doctrine-bridge/zipball/35cb5045e15bf6bd89fd1353d9b03ff61dc1feaf",
  3596. "reference": "35cb5045e15bf6bd89fd1353d9b03ff61dc1feaf",
  3597. "shasum": ""
  3598. },
  3599. "require": {
  3600. "doctrine/event-manager": "^1.2|^2",
  3601. "doctrine/persistence": "^2|^3",
  3602. "php": ">=8.1",
  3603. "symfony/deprecation-contracts": "^2.1|^3",
  3604. "symfony/polyfill-ctype": "~1.8",
  3605. "symfony/polyfill-mbstring": "~1.0",
  3606. "symfony/service-contracts": "^1.1|^2|^3"
  3607. },
  3608. "conflict": {
  3609. "doctrine/dbal": "<2.13.1",
  3610. "doctrine/lexer": "<1.1",
  3611. "doctrine/orm": "<2.7.4",
  3612. "phpunit/phpunit": "<5.4.3",
  3613. "symfony/cache": "<5.4",
  3614. "symfony/dependency-injection": "<5.4",
  3615. "symfony/form": "<5.4.21|>=6,<6.2.7",
  3616. "symfony/http-kernel": "<6.2",
  3617. "symfony/messenger": "<5.4",
  3618. "symfony/property-info": "<5.4",
  3619. "symfony/security-bundle": "<5.4",
  3620. "symfony/security-core": "<6.0",
  3621. "symfony/validator": "<5.4"
  3622. },
  3623. "require-dev": {
  3624. "doctrine/annotations": "^1.10.4|^2",
  3625. "doctrine/collections": "^1.0|^2.0",
  3626. "doctrine/data-fixtures": "^1.1",
  3627. "doctrine/dbal": "^2.13.1|^3.0",
  3628. "doctrine/orm": "^2.7.4",
  3629. "psr/log": "^1|^2|^3",
  3630. "symfony/cache": "^5.4|^6.0",
  3631. "symfony/config": "^5.4|^6.0",
  3632. "symfony/dependency-injection": "^5.4|^6.0",
  3633. "symfony/doctrine-messenger": "^5.4|^6.0",
  3634. "symfony/expression-language": "^5.4|^6.0",
  3635. "symfony/form": "^5.4.21|^6.2.7",
  3636. "symfony/http-kernel": "^6.2",
  3637. "symfony/messenger": "^5.4|^6.0",
  3638. "symfony/property-access": "^5.4|^6.0",
  3639. "symfony/property-info": "^5.4|^6.0",
  3640. "symfony/proxy-manager-bridge": "^5.4|^6.0",
  3641. "symfony/security-core": "^6.0",
  3642. "symfony/stopwatch": "^5.4|^6.0",
  3643. "symfony/translation": "^5.4|^6.0",
  3644. "symfony/uid": "^5.4|^6.0",
  3645. "symfony/validator": "^5.4|^6.0",
  3646. "symfony/var-dumper": "^5.4|^6.0"
  3647. },
  3648. "suggest": {
  3649. "doctrine/data-fixtures": "",
  3650. "doctrine/dbal": "",
  3651. "doctrine/orm": "",
  3652. "symfony/form": "",
  3653. "symfony/property-info": "",
  3654. "symfony/validator": ""
  3655. },
  3656. "type": "symfony-bridge",
  3657. "autoload": {
  3658. "psr-4": {
  3659. "Symfony\\Bridge\\Doctrine\\": ""
  3660. },
  3661. "exclude-from-classmap": [
  3662. "/Tests/"
  3663. ]
  3664. },
  3665. "notification-url": "https://packagist.org/downloads/",
  3666. "license": [
  3667. "MIT"
  3668. ],
  3669. "authors": [
  3670. {
  3671. "name": "Fabien Potencier",
  3672. "email": "fabien@symfony.com"
  3673. },
  3674. {
  3675. "name": "Symfony Community",
  3676. "homepage": "https://symfony.com/contributors"
  3677. }
  3678. ],
  3679. "description": "Provides integration for Doctrine with various Symfony components",
  3680. "homepage": "https://symfony.com",
  3681. "support": {
  3682. "source": "https://github.com/symfony/doctrine-bridge/tree/v6.2.7"
  3683. },
  3684. "funding": [
  3685. {
  3686. "url": "https://symfony.com/sponsor",
  3687. "type": "custom"
  3688. },
  3689. {
  3690. "url": "https://github.com/fabpot",
  3691. "type": "github"
  3692. },
  3693. {
  3694. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3695. "type": "tidelift"
  3696. }
  3697. ],
  3698. "time": "2023-02-14T08:44:56+00:00"
  3699. },
  3700. {
  3701. "name": "symfony/dotenv",
  3702. "version": "v6.2.7",
  3703. "source": {
  3704. "type": "git",
  3705. "url": "https://github.com/symfony/dotenv.git",
  3706. "reference": "f2b09b7ee21458779df000bd24020b6e9955b393"
  3707. },
  3708. "dist": {
  3709. "type": "zip",
  3710. "url": "https://api.github.com/repos/symfony/dotenv/zipball/f2b09b7ee21458779df000bd24020b6e9955b393",
  3711. "reference": "f2b09b7ee21458779df000bd24020b6e9955b393",
  3712. "shasum": ""
  3713. },
  3714. "require": {
  3715. "php": ">=8.1"
  3716. },
  3717. "conflict": {
  3718. "symfony/console": "<5.4",
  3719. "symfony/process": "<5.4"
  3720. },
  3721. "require-dev": {
  3722. "symfony/console": "^5.4|^6.0",
  3723. "symfony/process": "^5.4|^6.0"
  3724. },
  3725. "type": "library",
  3726. "autoload": {
  3727. "psr-4": {
  3728. "Symfony\\Component\\Dotenv\\": ""
  3729. },
  3730. "exclude-from-classmap": [
  3731. "/Tests/"
  3732. ]
  3733. },
  3734. "notification-url": "https://packagist.org/downloads/",
  3735. "license": [
  3736. "MIT"
  3737. ],
  3738. "authors": [
  3739. {
  3740. "name": "Fabien Potencier",
  3741. "email": "fabien@symfony.com"
  3742. },
  3743. {
  3744. "name": "Symfony Community",
  3745. "homepage": "https://symfony.com/contributors"
  3746. }
  3747. ],
  3748. "description": "Registers environment variables from a .env file",
  3749. "homepage": "https://symfony.com",
  3750. "keywords": [
  3751. "dotenv",
  3752. "env",
  3753. "environment"
  3754. ],
  3755. "support": {
  3756. "source": "https://github.com/symfony/dotenv/tree/v6.2.7"
  3757. },
  3758. "funding": [
  3759. {
  3760. "url": "https://symfony.com/sponsor",
  3761. "type": "custom"
  3762. },
  3763. {
  3764. "url": "https://github.com/fabpot",
  3765. "type": "github"
  3766. },
  3767. {
  3768. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3769. "type": "tidelift"
  3770. }
  3771. ],
  3772. "time": "2023-02-14T08:44:56+00:00"
  3773. },
  3774. {
  3775. "name": "symfony/error-handler",
  3776. "version": "v6.2.7",
  3777. "source": {
  3778. "type": "git",
  3779. "url": "https://github.com/symfony/error-handler.git",
  3780. "reference": "61e90f94eb014054000bc902257d2763fac09166"
  3781. },
  3782. "dist": {
  3783. "type": "zip",
  3784. "url": "https://api.github.com/repos/symfony/error-handler/zipball/61e90f94eb014054000bc902257d2763fac09166",
  3785. "reference": "61e90f94eb014054000bc902257d2763fac09166",
  3786. "shasum": ""
  3787. },
  3788. "require": {
  3789. "php": ">=8.1",
  3790. "psr/log": "^1|^2|^3",
  3791. "symfony/var-dumper": "^5.4|^6.0"
  3792. },
  3793. "require-dev": {
  3794. "symfony/deprecation-contracts": "^2.1|^3",
  3795. "symfony/http-kernel": "^5.4|^6.0",
  3796. "symfony/serializer": "^5.4|^6.0"
  3797. },
  3798. "bin": [
  3799. "Resources/bin/patch-type-declarations"
  3800. ],
  3801. "type": "library",
  3802. "autoload": {
  3803. "psr-4": {
  3804. "Symfony\\Component\\ErrorHandler\\": ""
  3805. },
  3806. "exclude-from-classmap": [
  3807. "/Tests/"
  3808. ]
  3809. },
  3810. "notification-url": "https://packagist.org/downloads/",
  3811. "license": [
  3812. "MIT"
  3813. ],
  3814. "authors": [
  3815. {
  3816. "name": "Fabien Potencier",
  3817. "email": "fabien@symfony.com"
  3818. },
  3819. {
  3820. "name": "Symfony Community",
  3821. "homepage": "https://symfony.com/contributors"
  3822. }
  3823. ],
  3824. "description": "Provides tools to manage errors and ease debugging PHP code",
  3825. "homepage": "https://symfony.com",
  3826. "support": {
  3827. "source": "https://github.com/symfony/error-handler/tree/v6.2.7"
  3828. },
  3829. "funding": [
  3830. {
  3831. "url": "https://symfony.com/sponsor",
  3832. "type": "custom"
  3833. },
  3834. {
  3835. "url": "https://github.com/fabpot",
  3836. "type": "github"
  3837. },
  3838. {
  3839. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3840. "type": "tidelift"
  3841. }
  3842. ],
  3843. "time": "2023-02-14T08:44:56+00:00"
  3844. },
  3845. {
  3846. "name": "symfony/event-dispatcher",
  3847. "version": "v6.2.7",
  3848. "source": {
  3849. "type": "git",
  3850. "url": "https://github.com/symfony/event-dispatcher.git",
  3851. "reference": "404b307de426c1c488e5afad64403e5f145e82a5"
  3852. },
  3853. "dist": {
  3854. "type": "zip",
  3855. "url": "https://api.github.com/repos/symfony/event-dispatcher/zipball/404b307de426c1c488e5afad64403e5f145e82a5",
  3856. "reference": "404b307de426c1c488e5afad64403e5f145e82a5",
  3857. "shasum": ""
  3858. },
  3859. "require": {
  3860. "php": ">=8.1",
  3861. "symfony/event-dispatcher-contracts": "^2|^3"
  3862. },
  3863. "conflict": {
  3864. "symfony/dependency-injection": "<5.4"
  3865. },
  3866. "provide": {
  3867. "psr/event-dispatcher-implementation": "1.0",
  3868. "symfony/event-dispatcher-implementation": "2.0|3.0"
  3869. },
  3870. "require-dev": {
  3871. "psr/log": "^1|^2|^3",
  3872. "symfony/config": "^5.4|^6.0",
  3873. "symfony/dependency-injection": "^5.4|^6.0",
  3874. "symfony/error-handler": "^5.4|^6.0",
  3875. "symfony/expression-language": "^5.4|^6.0",
  3876. "symfony/http-foundation": "^5.4|^6.0",
  3877. "symfony/service-contracts": "^1.1|^2|^3",
  3878. "symfony/stopwatch": "^5.4|^6.0"
  3879. },
  3880. "suggest": {
  3881. "symfony/dependency-injection": "",
  3882. "symfony/http-kernel": ""
  3883. },
  3884. "type": "library",
  3885. "autoload": {
  3886. "psr-4": {
  3887. "Symfony\\Component\\EventDispatcher\\": ""
  3888. },
  3889. "exclude-from-classmap": [
  3890. "/Tests/"
  3891. ]
  3892. },
  3893. "notification-url": "https://packagist.org/downloads/",
  3894. "license": [
  3895. "MIT"
  3896. ],
  3897. "authors": [
  3898. {
  3899. "name": "Fabien Potencier",
  3900. "email": "fabien@symfony.com"
  3901. },
  3902. {
  3903. "name": "Symfony Community",
  3904. "homepage": "https://symfony.com/contributors"
  3905. }
  3906. ],
  3907. "description": "Provides tools that allow your application components to communicate with each other by dispatching events and listening to them",
  3908. "homepage": "https://symfony.com",
  3909. "support": {
  3910. "source": "https://github.com/symfony/event-dispatcher/tree/v6.2.7"
  3911. },
  3912. "funding": [
  3913. {
  3914. "url": "https://symfony.com/sponsor",
  3915. "type": "custom"
  3916. },
  3917. {
  3918. "url": "https://github.com/fabpot",
  3919. "type": "github"
  3920. },
  3921. {
  3922. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3923. "type": "tidelift"
  3924. }
  3925. ],
  3926. "time": "2023-02-14T08:44:56+00:00"
  3927. },
  3928. {
  3929. "name": "symfony/event-dispatcher-contracts",
  3930. "version": "v3.2.1",
  3931. "source": {
  3932. "type": "git",
  3933. "url": "https://github.com/symfony/event-dispatcher-contracts.git",
  3934. "reference": "0ad3b6f1e4e2da5690fefe075cd53a238646d8dd"
  3935. },
  3936. "dist": {
  3937. "type": "zip",
  3938. "url": "https://api.github.com/repos/symfony/event-dispatcher-contracts/zipball/0ad3b6f1e4e2da5690fefe075cd53a238646d8dd",
  3939. "reference": "0ad3b6f1e4e2da5690fefe075cd53a238646d8dd",
  3940. "shasum": ""
  3941. },
  3942. "require": {
  3943. "php": ">=8.1",
  3944. "psr/event-dispatcher": "^1"
  3945. },
  3946. "suggest": {
  3947. "symfony/event-dispatcher-implementation": ""
  3948. },
  3949. "type": "library",
  3950. "extra": {
  3951. "branch-alias": {
  3952. "dev-main": "3.3-dev"
  3953. },
  3954. "thanks": {
  3955. "name": "symfony/contracts",
  3956. "url": "https://github.com/symfony/contracts"
  3957. }
  3958. },
  3959. "autoload": {
  3960. "psr-4": {
  3961. "Symfony\\Contracts\\EventDispatcher\\": ""
  3962. }
  3963. },
  3964. "notification-url": "https://packagist.org/downloads/",
  3965. "license": [
  3966. "MIT"
  3967. ],
  3968. "authors": [
  3969. {
  3970. "name": "Nicolas Grekas",
  3971. "email": "p@tchwork.com"
  3972. },
  3973. {
  3974. "name": "Symfony Community",
  3975. "homepage": "https://symfony.com/contributors"
  3976. }
  3977. ],
  3978. "description": "Generic abstractions related to dispatching event",
  3979. "homepage": "https://symfony.com",
  3980. "keywords": [
  3981. "abstractions",
  3982. "contracts",
  3983. "decoupling",
  3984. "interfaces",
  3985. "interoperability",
  3986. "standards"
  3987. ],
  3988. "support": {
  3989. "source": "https://github.com/symfony/event-dispatcher-contracts/tree/v3.2.1"
  3990. },
  3991. "funding": [
  3992. {
  3993. "url": "https://symfony.com/sponsor",
  3994. "type": "custom"
  3995. },
  3996. {
  3997. "url": "https://github.com/fabpot",
  3998. "type": "github"
  3999. },
  4000. {
  4001. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4002. "type": "tidelift"
  4003. }
  4004. ],
  4005. "time": "2023-03-01T10:32:47+00:00"
  4006. },
  4007. {
  4008. "name": "symfony/expression-language",
  4009. "version": "v6.2.7",
  4010. "source": {
  4011. "type": "git",
  4012. "url": "https://github.com/symfony/expression-language.git",
  4013. "reference": "83e1fee4c018aa60bcbbecd585a2c54af6aca905"
  4014. },
  4015. "dist": {
  4016. "type": "zip",
  4017. "url": "https://api.github.com/repos/symfony/expression-language/zipball/83e1fee4c018aa60bcbbecd585a2c54af6aca905",
  4018. "reference": "83e1fee4c018aa60bcbbecd585a2c54af6aca905",
  4019. "shasum": ""
  4020. },
  4021. "require": {
  4022. "php": ">=8.1",
  4023. "symfony/cache": "^5.4|^6.0",
  4024. "symfony/service-contracts": "^1.1|^2|^3"
  4025. },
  4026. "type": "library",
  4027. "autoload": {
  4028. "psr-4": {
  4029. "Symfony\\Component\\ExpressionLanguage\\": ""
  4030. },
  4031. "exclude-from-classmap": [
  4032. "/Tests/"
  4033. ]
  4034. },
  4035. "notification-url": "https://packagist.org/downloads/",
  4036. "license": [
  4037. "MIT"
  4038. ],
  4039. "authors": [
  4040. {
  4041. "name": "Fabien Potencier",
  4042. "email": "fabien@symfony.com"
  4043. },
  4044. {
  4045. "name": "Symfony Community",
  4046. "homepage": "https://symfony.com/contributors"
  4047. }
  4048. ],
  4049. "description": "Provides an engine that can compile and evaluate expressions",
  4050. "homepage": "https://symfony.com",
  4051. "support": {
  4052. "source": "https://github.com/symfony/expression-language/tree/v6.2.7"
  4053. },
  4054. "funding": [
  4055. {
  4056. "url": "https://symfony.com/sponsor",
  4057. "type": "custom"
  4058. },
  4059. {
  4060. "url": "https://github.com/fabpot",
  4061. "type": "github"
  4062. },
  4063. {
  4064. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4065. "type": "tidelift"
  4066. }
  4067. ],
  4068. "time": "2023-02-16T09:57:23+00:00"
  4069. },
  4070. {
  4071. "name": "symfony/filesystem",
  4072. "version": "v6.2.7",
  4073. "source": {
  4074. "type": "git",
  4075. "url": "https://github.com/symfony/filesystem.git",
  4076. "reference": "82b6c62b959f642d000456f08c6d219d749215b3"
  4077. },
  4078. "dist": {
  4079. "type": "zip",
  4080. "url": "https://api.github.com/repos/symfony/filesystem/zipball/82b6c62b959f642d000456f08c6d219d749215b3",
  4081. "reference": "82b6c62b959f642d000456f08c6d219d749215b3",
  4082. "shasum": ""
  4083. },
  4084. "require": {
  4085. "php": ">=8.1",
  4086. "symfony/polyfill-ctype": "~1.8",
  4087. "symfony/polyfill-mbstring": "~1.8"
  4088. },
  4089. "type": "library",
  4090. "autoload": {
  4091. "psr-4": {
  4092. "Symfony\\Component\\Filesystem\\": ""
  4093. },
  4094. "exclude-from-classmap": [
  4095. "/Tests/"
  4096. ]
  4097. },
  4098. "notification-url": "https://packagist.org/downloads/",
  4099. "license": [
  4100. "MIT"
  4101. ],
  4102. "authors": [
  4103. {
  4104. "name": "Fabien Potencier",
  4105. "email": "fabien@symfony.com"
  4106. },
  4107. {
  4108. "name": "Symfony Community",
  4109. "homepage": "https://symfony.com/contributors"
  4110. }
  4111. ],
  4112. "description": "Provides basic utilities for the filesystem",
  4113. "homepage": "https://symfony.com",
  4114. "support": {
  4115. "source": "https://github.com/symfony/filesystem/tree/v6.2.7"
  4116. },
  4117. "funding": [
  4118. {
  4119. "url": "https://symfony.com/sponsor",
  4120. "type": "custom"
  4121. },
  4122. {
  4123. "url": "https://github.com/fabpot",
  4124. "type": "github"
  4125. },
  4126. {
  4127. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4128. "type": "tidelift"
  4129. }
  4130. ],
  4131. "time": "2023-02-14T08:44:56+00:00"
  4132. },
  4133. {
  4134. "name": "symfony/finder",
  4135. "version": "v6.2.7",
  4136. "source": {
  4137. "type": "git",
  4138. "url": "https://github.com/symfony/finder.git",
  4139. "reference": "20808dc6631aecafbe67c186af5dcb370be3a0eb"
  4140. },
  4141. "dist": {
  4142. "type": "zip",
  4143. "url": "https://api.github.com/repos/symfony/finder/zipball/20808dc6631aecafbe67c186af5dcb370be3a0eb",
  4144. "reference": "20808dc6631aecafbe67c186af5dcb370be3a0eb",
  4145. "shasum": ""
  4146. },
  4147. "require": {
  4148. "php": ">=8.1"
  4149. },
  4150. "require-dev": {
  4151. "symfony/filesystem": "^6.0"
  4152. },
  4153. "type": "library",
  4154. "autoload": {
  4155. "psr-4": {
  4156. "Symfony\\Component\\Finder\\": ""
  4157. },
  4158. "exclude-from-classmap": [
  4159. "/Tests/"
  4160. ]
  4161. },
  4162. "notification-url": "https://packagist.org/downloads/",
  4163. "license": [
  4164. "MIT"
  4165. ],
  4166. "authors": [
  4167. {
  4168. "name": "Fabien Potencier",
  4169. "email": "fabien@symfony.com"
  4170. },
  4171. {
  4172. "name": "Symfony Community",
  4173. "homepage": "https://symfony.com/contributors"
  4174. }
  4175. ],
  4176. "description": "Finds files and directories via an intuitive fluent interface",
  4177. "homepage": "https://symfony.com",
  4178. "support": {
  4179. "source": "https://github.com/symfony/finder/tree/v6.2.7"
  4180. },
  4181. "funding": [
  4182. {
  4183. "url": "https://symfony.com/sponsor",
  4184. "type": "custom"
  4185. },
  4186. {
  4187. "url": "https://github.com/fabpot",
  4188. "type": "github"
  4189. },
  4190. {
  4191. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4192. "type": "tidelift"
  4193. }
  4194. ],
  4195. "time": "2023-02-16T09:57:23+00:00"
  4196. },
  4197. {
  4198. "name": "symfony/flex",
  4199. "version": "v2.2.5",
  4200. "source": {
  4201. "type": "git",
  4202. "url": "https://github.com/symfony/flex.git",
  4203. "reference": "2ff8465e7172790a47ab3c129f2b514eb2d8a286"
  4204. },
  4205. "dist": {
  4206. "type": "zip",
  4207. "url": "https://api.github.com/repos/symfony/flex/zipball/2ff8465e7172790a47ab3c129f2b514eb2d8a286",
  4208. "reference": "2ff8465e7172790a47ab3c129f2b514eb2d8a286",
  4209. "shasum": ""
  4210. },
  4211. "require": {
  4212. "composer-plugin-api": "^2.1",
  4213. "php": ">=8.0"
  4214. },
  4215. "require-dev": {
  4216. "composer/composer": "^2.1",
  4217. "symfony/dotenv": "^5.4|^6.0",
  4218. "symfony/filesystem": "^5.4|^6.0",
  4219. "symfony/phpunit-bridge": "^5.4|^6.0",
  4220. "symfony/process": "^5.4|^6.0"
  4221. },
  4222. "type": "composer-plugin",
  4223. "extra": {
  4224. "class": "Symfony\\Flex\\Flex"
  4225. },
  4226. "autoload": {
  4227. "psr-4": {
  4228. "Symfony\\Flex\\": "src"
  4229. }
  4230. },
  4231. "notification-url": "https://packagist.org/downloads/",
  4232. "license": [
  4233. "MIT"
  4234. ],
  4235. "authors": [
  4236. {
  4237. "name": "Fabien Potencier",
  4238. "email": "fabien.potencier@gmail.com"
  4239. }
  4240. ],
  4241. "description": "Composer plugin for Symfony",
  4242. "support": {
  4243. "issues": "https://github.com/symfony/flex/issues",
  4244. "source": "https://github.com/symfony/flex/tree/v2.2.5"
  4245. },
  4246. "funding": [
  4247. {
  4248. "url": "https://symfony.com/sponsor",
  4249. "type": "custom"
  4250. },
  4251. {
  4252. "url": "https://github.com/fabpot",
  4253. "type": "github"
  4254. },
  4255. {
  4256. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4257. "type": "tidelift"
  4258. }
  4259. ],
  4260. "time": "2023-02-18T08:03:15+00:00"
  4261. },
  4262. {
  4263. "name": "symfony/form",
  4264. "version": "v6.2.7",
  4265. "source": {
  4266. "type": "git",
  4267. "url": "https://github.com/symfony/form.git",
  4268. "reference": "92379f5cf423c64e32be41897a65072ec972936e"
  4269. },
  4270. "dist": {
  4271. "type": "zip",
  4272. "url": "https://api.github.com/repos/symfony/form/zipball/92379f5cf423c64e32be41897a65072ec972936e",
  4273. "reference": "92379f5cf423c64e32be41897a65072ec972936e",
  4274. "shasum": ""
  4275. },
  4276. "require": {
  4277. "php": ">=8.1",
  4278. "symfony/deprecation-contracts": "^2.1|^3",
  4279. "symfony/event-dispatcher": "^5.4|^6.0",
  4280. "symfony/options-resolver": "^5.4|^6.0",
  4281. "symfony/polyfill-ctype": "~1.8",
  4282. "symfony/polyfill-intl-icu": "^1.21",
  4283. "symfony/polyfill-mbstring": "~1.0",
  4284. "symfony/property-access": "^5.4|^6.0",
  4285. "symfony/service-contracts": "^1.1|^2|^3"
  4286. },
  4287. "conflict": {
  4288. "phpunit/phpunit": "<5.4.3",
  4289. "symfony/console": "<5.4",
  4290. "symfony/dependency-injection": "<5.4",
  4291. "symfony/doctrine-bridge": "<5.4.21|>=6,<6.2.7",
  4292. "symfony/error-handler": "<5.4",
  4293. "symfony/framework-bundle": "<5.4",
  4294. "symfony/http-kernel": "<5.4",
  4295. "symfony/translation": "<5.4",
  4296. "symfony/translation-contracts": "<1.1.7",
  4297. "symfony/twig-bridge": "<5.4.21|>=6,<6.2.7"
  4298. },
  4299. "require-dev": {
  4300. "doctrine/collections": "^1.0|^2.0",
  4301. "symfony/config": "^5.4|^6.0",
  4302. "symfony/console": "^5.4|^6.0",
  4303. "symfony/dependency-injection": "^5.4|^6.0",
  4304. "symfony/expression-language": "^5.4|^6.0",
  4305. "symfony/html-sanitizer": "^6.1",
  4306. "symfony/http-foundation": "^5.4|^6.0",
  4307. "symfony/http-kernel": "^5.4|^6.0",
  4308. "symfony/intl": "^5.4|^6.0",
  4309. "symfony/security-core": "^6.2",
  4310. "symfony/security-csrf": "^5.4|^6.0",
  4311. "symfony/translation": "^5.4|^6.0",
  4312. "symfony/uid": "^5.4|^6.0",
  4313. "symfony/validator": "^5.4|^6.0",
  4314. "symfony/var-dumper": "^5.4|^6.0"
  4315. },
  4316. "suggest": {
  4317. "symfony/security-core": "For hashing users passwords.",
  4318. "symfony/security-csrf": "For protecting forms against CSRF attacks.",
  4319. "symfony/twig-bridge": "For templating with Twig.",
  4320. "symfony/validator": "For form validation."
  4321. },
  4322. "type": "library",
  4323. "autoload": {
  4324. "psr-4": {
  4325. "Symfony\\Component\\Form\\": ""
  4326. },
  4327. "exclude-from-classmap": [
  4328. "/Tests/"
  4329. ]
  4330. },
  4331. "notification-url": "https://packagist.org/downloads/",
  4332. "license": [
  4333. "MIT"
  4334. ],
  4335. "authors": [
  4336. {
  4337. "name": "Fabien Potencier",
  4338. "email": "fabien@symfony.com"
  4339. },
  4340. {
  4341. "name": "Symfony Community",
  4342. "homepage": "https://symfony.com/contributors"
  4343. }
  4344. ],
  4345. "description": "Allows to easily create, process and reuse HTML forms",
  4346. "homepage": "https://symfony.com",
  4347. "support": {
  4348. "source": "https://github.com/symfony/form/tree/v6.2.7"
  4349. },
  4350. "funding": [
  4351. {
  4352. "url": "https://symfony.com/sponsor",
  4353. "type": "custom"
  4354. },
  4355. {
  4356. "url": "https://github.com/fabpot",
  4357. "type": "github"
  4358. },
  4359. {
  4360. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4361. "type": "tidelift"
  4362. }
  4363. ],
  4364. "time": "2023-02-24T10:42:00+00:00"
  4365. },
  4366. {
  4367. "name": "symfony/framework-bundle",
  4368. "version": "v6.2.7",
  4369. "source": {
  4370. "type": "git",
  4371. "url": "https://github.com/symfony/framework-bundle.git",
  4372. "reference": "01b1caa34ae121a192580acd38f66b7cb8b9ecce"
  4373. },
  4374. "dist": {
  4375. "type": "zip",
  4376. "url": "https://api.github.com/repos/symfony/framework-bundle/zipball/01b1caa34ae121a192580acd38f66b7cb8b9ecce",
  4377. "reference": "01b1caa34ae121a192580acd38f66b7cb8b9ecce",
  4378. "shasum": ""
  4379. },
  4380. "require": {
  4381. "composer-runtime-api": ">=2.1",
  4382. "ext-xml": "*",
  4383. "php": ">=8.1",
  4384. "symfony/cache": "^5.4|^6.0",
  4385. "symfony/config": "^6.1",
  4386. "symfony/dependency-injection": "^6.2",
  4387. "symfony/deprecation-contracts": "^2.1|^3",
  4388. "symfony/error-handler": "^6.1",
  4389. "symfony/event-dispatcher": "^5.4|^6.0",
  4390. "symfony/filesystem": "^5.4|^6.0",
  4391. "symfony/finder": "^5.4|^6.0",
  4392. "symfony/http-foundation": "^6.2",
  4393. "symfony/http-kernel": "^6.2.1",
  4394. "symfony/polyfill-mbstring": "~1.0",
  4395. "symfony/routing": "^5.4|^6.0"
  4396. },
  4397. "conflict": {
  4398. "doctrine/annotations": "<1.13.1",
  4399. "doctrine/persistence": "<1.3",
  4400. "phpdocumentor/reflection-docblock": "<3.2.2",
  4401. "phpdocumentor/type-resolver": "<1.4.0",
  4402. "phpunit/phpunit": "<5.4.3",
  4403. "symfony/asset": "<5.4",
  4404. "symfony/console": "<5.4",
  4405. "symfony/dom-crawler": "<5.4",
  4406. "symfony/dotenv": "<5.4",
  4407. "symfony/form": "<5.4",
  4408. "symfony/http-client": "<5.4",
  4409. "symfony/lock": "<5.4",
  4410. "symfony/mailer": "<5.4",
  4411. "symfony/messenger": "<6.2",
  4412. "symfony/mime": "<6.2",
  4413. "symfony/property-access": "<5.4",
  4414. "symfony/property-info": "<5.4",
  4415. "symfony/security-core": "<5.4",
  4416. "symfony/security-csrf": "<5.4",
  4417. "symfony/serializer": "<6.1",
  4418. "symfony/stopwatch": "<5.4",
  4419. "symfony/translation": "<5.4",
  4420. "symfony/twig-bridge": "<5.4",
  4421. "symfony/twig-bundle": "<5.4",
  4422. "symfony/validator": "<5.4",
  4423. "symfony/web-profiler-bundle": "<5.4",
  4424. "symfony/workflow": "<5.4"
  4425. },
  4426. "require-dev": {
  4427. "doctrine/annotations": "^1.13.1|^2",
  4428. "doctrine/persistence": "^1.3|^2|^3",
  4429. "phpdocumentor/reflection-docblock": "^3.0|^4.0|^5.0",
  4430. "symfony/asset": "^5.4|^6.0",
  4431. "symfony/browser-kit": "^5.4|^6.0",
  4432. "symfony/console": "^5.4.9|^6.0.9",
  4433. "symfony/css-selector": "^5.4|^6.0",
  4434. "symfony/dom-crawler": "^5.4|^6.0",
  4435. "symfony/dotenv": "^5.4|^6.0",
  4436. "symfony/expression-language": "^5.4|^6.0",
  4437. "symfony/form": "^5.4|^6.0",
  4438. "symfony/html-sanitizer": "^6.1",
  4439. "symfony/http-client": "^5.4|^6.0",
  4440. "symfony/lock": "^5.4|^6.0",
  4441. "symfony/mailer": "^5.4|^6.0",
  4442. "symfony/messenger": "^6.2",
  4443. "symfony/mime": "^6.2",
  4444. "symfony/notifier": "^5.4|^6.0",
  4445. "symfony/polyfill-intl-icu": "~1.0",
  4446. "symfony/process": "^5.4|^6.0",
  4447. "symfony/property-info": "^5.4|^6.0",
  4448. "symfony/rate-limiter": "^5.4|^6.0",
  4449. "symfony/security-bundle": "^5.4|^6.0",
  4450. "symfony/semaphore": "^5.4|^6.0",
  4451. "symfony/serializer": "^6.1",
  4452. "symfony/stopwatch": "^5.4|^6.0",
  4453. "symfony/string": "^5.4|^6.0",
  4454. "symfony/translation": "^5.4|^6.0",
  4455. "symfony/twig-bundle": "^5.4|^6.0",
  4456. "symfony/uid": "^5.4|^6.0",
  4457. "symfony/validator": "^5.4|^6.0",
  4458. "symfony/web-link": "^5.4|^6.0",
  4459. "symfony/workflow": "^5.4|^6.0",
  4460. "symfony/yaml": "^5.4|^6.0",
  4461. "twig/twig": "^2.10|^3.0"
  4462. },
  4463. "suggest": {
  4464. "ext-apcu": "For best performance of the system caches",
  4465. "symfony/console": "For using the console commands",
  4466. "symfony/form": "For using forms",
  4467. "symfony/property-info": "For using the property_info service",
  4468. "symfony/serializer": "For using the serializer service",
  4469. "symfony/validator": "For using validation",
  4470. "symfony/web-link": "For using web links, features such as preloading, prefetching or prerendering",
  4471. "symfony/yaml": "For using the debug:config and lint:yaml commands"
  4472. },
  4473. "type": "symfony-bundle",
  4474. "autoload": {
  4475. "psr-4": {
  4476. "Symfony\\Bundle\\FrameworkBundle\\": ""
  4477. },
  4478. "exclude-from-classmap": [
  4479. "/Tests/"
  4480. ]
  4481. },
  4482. "notification-url": "https://packagist.org/downloads/",
  4483. "license": [
  4484. "MIT"
  4485. ],
  4486. "authors": [
  4487. {
  4488. "name": "Fabien Potencier",
  4489. "email": "fabien@symfony.com"
  4490. },
  4491. {
  4492. "name": "Symfony Community",
  4493. "homepage": "https://symfony.com/contributors"
  4494. }
  4495. ],
  4496. "description": "Provides a tight integration between Symfony components and the Symfony full-stack framework",
  4497. "homepage": "https://symfony.com",
  4498. "support": {
  4499. "source": "https://github.com/symfony/framework-bundle/tree/v6.2.7"
  4500. },
  4501. "funding": [
  4502. {
  4503. "url": "https://symfony.com/sponsor",
  4504. "type": "custom"
  4505. },
  4506. {
  4507. "url": "https://github.com/fabpot",
  4508. "type": "github"
  4509. },
  4510. {
  4511. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4512. "type": "tidelift"
  4513. }
  4514. ],
  4515. "time": "2023-02-24T10:42:00+00:00"
  4516. },
  4517. {
  4518. "name": "symfony/html-sanitizer",
  4519. "version": "v6.2.7",
  4520. "source": {
  4521. "type": "git",
  4522. "url": "https://github.com/symfony/html-sanitizer.git",
  4523. "reference": "211e36bbb20a5e5db2b940399ab1d2b421a08068"
  4524. },
  4525. "dist": {
  4526. "type": "zip",
  4527. "url": "https://api.github.com/repos/symfony/html-sanitizer/zipball/211e36bbb20a5e5db2b940399ab1d2b421a08068",
  4528. "reference": "211e36bbb20a5e5db2b940399ab1d2b421a08068",
  4529. "shasum": ""
  4530. },
  4531. "require": {
  4532. "ext-dom": "*",
  4533. "league/uri": "^6.5",
  4534. "masterminds/html5": "^2.7.2",
  4535. "php": ">=8.1"
  4536. },
  4537. "type": "library",
  4538. "autoload": {
  4539. "psr-4": {
  4540. "Symfony\\Component\\HtmlSanitizer\\": ""
  4541. },
  4542. "exclude-from-classmap": [
  4543. "/Tests/"
  4544. ]
  4545. },
  4546. "notification-url": "https://packagist.org/downloads/",
  4547. "license": [
  4548. "MIT"
  4549. ],
  4550. "authors": [
  4551. {
  4552. "name": "Titouan Galopin",
  4553. "email": "galopintitouan@gmail.com"
  4554. },
  4555. {
  4556. "name": "Symfony Community",
  4557. "homepage": "https://symfony.com/contributors"
  4558. }
  4559. ],
  4560. "description": "Provides an object-oriented API to sanitize untrusted HTML input for safe insertion into a document's DOM.",
  4561. "homepage": "https://symfony.com",
  4562. "keywords": [
  4563. "Purifier",
  4564. "html",
  4565. "sanitizer"
  4566. ],
  4567. "support": {
  4568. "source": "https://github.com/symfony/html-sanitizer/tree/v6.2.7"
  4569. },
  4570. "funding": [
  4571. {
  4572. "url": "https://symfony.com/sponsor",
  4573. "type": "custom"
  4574. },
  4575. {
  4576. "url": "https://github.com/fabpot",
  4577. "type": "github"
  4578. },
  4579. {
  4580. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4581. "type": "tidelift"
  4582. }
  4583. ],
  4584. "time": "2023-02-14T08:44:56+00:00"
  4585. },
  4586. {
  4587. "name": "symfony/http-client",
  4588. "version": "v6.2.7",
  4589. "source": {
  4590. "type": "git",
  4591. "url": "https://github.com/symfony/http-client.git",
  4592. "reference": "0a5be6cbc570ae23b51b49d67341f378629d78e4"
  4593. },
  4594. "dist": {
  4595. "type": "zip",
  4596. "url": "https://api.github.com/repos/symfony/http-client/zipball/0a5be6cbc570ae23b51b49d67341f378629d78e4",
  4597. "reference": "0a5be6cbc570ae23b51b49d67341f378629d78e4",
  4598. "shasum": ""
  4599. },
  4600. "require": {
  4601. "php": ">=8.1",
  4602. "psr/log": "^1|^2|^3",
  4603. "symfony/deprecation-contracts": "^2.1|^3",
  4604. "symfony/http-client-contracts": "^3",
  4605. "symfony/service-contracts": "^1.0|^2|^3"
  4606. },
  4607. "provide": {
  4608. "php-http/async-client-implementation": "*",
  4609. "php-http/client-implementation": "*",
  4610. "psr/http-client-implementation": "1.0",
  4611. "symfony/http-client-implementation": "3.0"
  4612. },
  4613. "require-dev": {
  4614. "amphp/amp": "^2.5",
  4615. "amphp/http-client": "^4.2.1",
  4616. "amphp/http-tunnel": "^1.0",
  4617. "amphp/socket": "^1.1",
  4618. "guzzlehttp/promises": "^1.4",
  4619. "nyholm/psr7": "^1.0",
  4620. "php-http/httplug": "^1.0|^2.0",
  4621. "psr/http-client": "^1.0",
  4622. "symfony/dependency-injection": "^5.4|^6.0",
  4623. "symfony/http-kernel": "^5.4|^6.0",
  4624. "symfony/process": "^5.4|^6.0",
  4625. "symfony/stopwatch": "^5.4|^6.0"
  4626. },
  4627. "type": "library",
  4628. "autoload": {
  4629. "psr-4": {
  4630. "Symfony\\Component\\HttpClient\\": ""
  4631. },
  4632. "exclude-from-classmap": [
  4633. "/Tests/"
  4634. ]
  4635. },
  4636. "notification-url": "https://packagist.org/downloads/",
  4637. "license": [
  4638. "MIT"
  4639. ],
  4640. "authors": [
  4641. {
  4642. "name": "Nicolas Grekas",
  4643. "email": "p@tchwork.com"
  4644. },
  4645. {
  4646. "name": "Symfony Community",
  4647. "homepage": "https://symfony.com/contributors"
  4648. }
  4649. ],
  4650. "description": "Provides powerful methods to fetch HTTP resources synchronously or asynchronously",
  4651. "homepage": "https://symfony.com",
  4652. "support": {
  4653. "source": "https://github.com/symfony/http-client/tree/v6.2.7"
  4654. },
  4655. "funding": [
  4656. {
  4657. "url": "https://symfony.com/sponsor",
  4658. "type": "custom"
  4659. },
  4660. {
  4661. "url": "https://github.com/fabpot",
  4662. "type": "github"
  4663. },
  4664. {
  4665. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4666. "type": "tidelift"
  4667. }
  4668. ],
  4669. "time": "2023-02-21T10:54:55+00:00"
  4670. },
  4671. {
  4672. "name": "symfony/http-client-contracts",
  4673. "version": "v3.2.1",
  4674. "source": {
  4675. "type": "git",
  4676. "url": "https://github.com/symfony/http-client-contracts.git",
  4677. "reference": "df2ecd6cb70e73c1080e6478aea85f5f4da2c48b"
  4678. },
  4679. "dist": {
  4680. "type": "zip",
  4681. "url": "https://api.github.com/repos/symfony/http-client-contracts/zipball/df2ecd6cb70e73c1080e6478aea85f5f4da2c48b",
  4682. "reference": "df2ecd6cb70e73c1080e6478aea85f5f4da2c48b",
  4683. "shasum": ""
  4684. },
  4685. "require": {
  4686. "php": ">=8.1"
  4687. },
  4688. "suggest": {
  4689. "symfony/http-client-implementation": ""
  4690. },
  4691. "type": "library",
  4692. "extra": {
  4693. "branch-alias": {
  4694. "dev-main": "3.3-dev"
  4695. },
  4696. "thanks": {
  4697. "name": "symfony/contracts",
  4698. "url": "https://github.com/symfony/contracts"
  4699. }
  4700. },
  4701. "autoload": {
  4702. "psr-4": {
  4703. "Symfony\\Contracts\\HttpClient\\": ""
  4704. },
  4705. "exclude-from-classmap": [
  4706. "/Test/"
  4707. ]
  4708. },
  4709. "notification-url": "https://packagist.org/downloads/",
  4710. "license": [
  4711. "MIT"
  4712. ],
  4713. "authors": [
  4714. {
  4715. "name": "Nicolas Grekas",
  4716. "email": "p@tchwork.com"
  4717. },
  4718. {
  4719. "name": "Symfony Community",
  4720. "homepage": "https://symfony.com/contributors"
  4721. }
  4722. ],
  4723. "description": "Generic abstractions related to HTTP clients",
  4724. "homepage": "https://symfony.com",
  4725. "keywords": [
  4726. "abstractions",
  4727. "contracts",
  4728. "decoupling",
  4729. "interfaces",
  4730. "interoperability",
  4731. "standards"
  4732. ],
  4733. "support": {
  4734. "source": "https://github.com/symfony/http-client-contracts/tree/v3.2.1"
  4735. },
  4736. "funding": [
  4737. {
  4738. "url": "https://symfony.com/sponsor",
  4739. "type": "custom"
  4740. },
  4741. {
  4742. "url": "https://github.com/fabpot",
  4743. "type": "github"
  4744. },
  4745. {
  4746. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4747. "type": "tidelift"
  4748. }
  4749. ],
  4750. "time": "2023-03-01T10:32:47+00:00"
  4751. },
  4752. {
  4753. "name": "symfony/http-foundation",
  4754. "version": "v6.2.7",
  4755. "source": {
  4756. "type": "git",
  4757. "url": "https://github.com/symfony/http-foundation.git",
  4758. "reference": "5fc3038d4a594223f9ea42e4e985548f3fcc9a3b"
  4759. },
  4760. "dist": {
  4761. "type": "zip",
  4762. "url": "https://api.github.com/repos/symfony/http-foundation/zipball/5fc3038d4a594223f9ea42e4e985548f3fcc9a3b",
  4763. "reference": "5fc3038d4a594223f9ea42e4e985548f3fcc9a3b",
  4764. "shasum": ""
  4765. },
  4766. "require": {
  4767. "php": ">=8.1",
  4768. "symfony/deprecation-contracts": "^2.1|^3",
  4769. "symfony/polyfill-mbstring": "~1.1"
  4770. },
  4771. "conflict": {
  4772. "symfony/cache": "<6.2"
  4773. },
  4774. "require-dev": {
  4775. "predis/predis": "~1.0",
  4776. "symfony/cache": "^5.4|^6.0",
  4777. "symfony/dependency-injection": "^5.4|^6.0",
  4778. "symfony/expression-language": "^5.4|^6.0",
  4779. "symfony/http-kernel": "^5.4.12|^6.0.12|^6.1.4",
  4780. "symfony/mime": "^5.4|^6.0",
  4781. "symfony/rate-limiter": "^5.2|^6.0"
  4782. },
  4783. "suggest": {
  4784. "symfony/mime": "To use the file extension guesser"
  4785. },
  4786. "type": "library",
  4787. "autoload": {
  4788. "psr-4": {
  4789. "Symfony\\Component\\HttpFoundation\\": ""
  4790. },
  4791. "exclude-from-classmap": [
  4792. "/Tests/"
  4793. ]
  4794. },
  4795. "notification-url": "https://packagist.org/downloads/",
  4796. "license": [
  4797. "MIT"
  4798. ],
  4799. "authors": [
  4800. {
  4801. "name": "Fabien Potencier",
  4802. "email": "fabien@symfony.com"
  4803. },
  4804. {
  4805. "name": "Symfony Community",
  4806. "homepage": "https://symfony.com/contributors"
  4807. }
  4808. ],
  4809. "description": "Defines an object-oriented layer for the HTTP specification",
  4810. "homepage": "https://symfony.com",
  4811. "support": {
  4812. "source": "https://github.com/symfony/http-foundation/tree/v6.2.7"
  4813. },
  4814. "funding": [
  4815. {
  4816. "url": "https://symfony.com/sponsor",
  4817. "type": "custom"
  4818. },
  4819. {
  4820. "url": "https://github.com/fabpot",
  4821. "type": "github"
  4822. },
  4823. {
  4824. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4825. "type": "tidelift"
  4826. }
  4827. ],
  4828. "time": "2023-02-21T10:54:55+00:00"
  4829. },
  4830. {
  4831. "name": "symfony/http-kernel",
  4832. "version": "v6.2.7",
  4833. "source": {
  4834. "type": "git",
  4835. "url": "https://github.com/symfony/http-kernel.git",
  4836. "reference": "ca0680ad1e2d678536cc20e0ae33f9e4e5d2becd"
  4837. },
  4838. "dist": {
  4839. "type": "zip",
  4840. "url": "https://api.github.com/repos/symfony/http-kernel/zipball/ca0680ad1e2d678536cc20e0ae33f9e4e5d2becd",
  4841. "reference": "ca0680ad1e2d678536cc20e0ae33f9e4e5d2becd",
  4842. "shasum": ""
  4843. },
  4844. "require": {
  4845. "php": ">=8.1",
  4846. "psr/log": "^1|^2|^3",
  4847. "symfony/deprecation-contracts": "^2.1|^3",
  4848. "symfony/error-handler": "^6.1",
  4849. "symfony/event-dispatcher": "^5.4|^6.0",
  4850. "symfony/http-foundation": "^5.4.21|^6.2.7",
  4851. "symfony/polyfill-ctype": "^1.8"
  4852. },
  4853. "conflict": {
  4854. "symfony/browser-kit": "<5.4",
  4855. "symfony/cache": "<5.4",
  4856. "symfony/config": "<6.1",
  4857. "symfony/console": "<5.4",
  4858. "symfony/dependency-injection": "<6.2",
  4859. "symfony/doctrine-bridge": "<5.4",
  4860. "symfony/form": "<5.4",
  4861. "symfony/http-client": "<5.4",
  4862. "symfony/mailer": "<5.4",
  4863. "symfony/messenger": "<5.4",
  4864. "symfony/translation": "<5.4",
  4865. "symfony/twig-bridge": "<5.4",
  4866. "symfony/validator": "<5.4",
  4867. "twig/twig": "<2.13"
  4868. },
  4869. "provide": {
  4870. "psr/log-implementation": "1.0|2.0|3.0"
  4871. },
  4872. "require-dev": {
  4873. "psr/cache": "^1.0|^2.0|^3.0",
  4874. "symfony/browser-kit": "^5.4|^6.0",
  4875. "symfony/config": "^6.1",
  4876. "symfony/console": "^5.4|^6.0",
  4877. "symfony/css-selector": "^5.4|^6.0",
  4878. "symfony/dependency-injection": "^6.2",
  4879. "symfony/dom-crawler": "^5.4|^6.0",
  4880. "symfony/expression-language": "^5.4|^6.0",
  4881. "symfony/finder": "^5.4|^6.0",
  4882. "symfony/http-client-contracts": "^1.1|^2|^3",
  4883. "symfony/process": "^5.4|^6.0",
  4884. "symfony/routing": "^5.4|^6.0",
  4885. "symfony/stopwatch": "^5.4|^6.0",
  4886. "symfony/translation": "^5.4|^6.0",
  4887. "symfony/translation-contracts": "^1.1|^2|^3",
  4888. "symfony/uid": "^5.4|^6.0",
  4889. "twig/twig": "^2.13|^3.0.4"
  4890. },
  4891. "suggest": {
  4892. "symfony/browser-kit": "",
  4893. "symfony/config": "",
  4894. "symfony/console": "",
  4895. "symfony/dependency-injection": ""
  4896. },
  4897. "type": "library",
  4898. "autoload": {
  4899. "psr-4": {
  4900. "Symfony\\Component\\HttpKernel\\": ""
  4901. },
  4902. "exclude-from-classmap": [
  4903. "/Tests/"
  4904. ]
  4905. },
  4906. "notification-url": "https://packagist.org/downloads/",
  4907. "license": [
  4908. "MIT"
  4909. ],
  4910. "authors": [
  4911. {
  4912. "name": "Fabien Potencier",
  4913. "email": "fabien@symfony.com"
  4914. },
  4915. {
  4916. "name": "Symfony Community",
  4917. "homepage": "https://symfony.com/contributors"
  4918. }
  4919. ],
  4920. "description": "Provides a structured process for converting a Request into a Response",
  4921. "homepage": "https://symfony.com",
  4922. "support": {
  4923. "source": "https://github.com/symfony/http-kernel/tree/v6.2.7"
  4924. },
  4925. "funding": [
  4926. {
  4927. "url": "https://symfony.com/sponsor",
  4928. "type": "custom"
  4929. },
  4930. {
  4931. "url": "https://github.com/fabpot",
  4932. "type": "github"
  4933. },
  4934. {
  4935. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4936. "type": "tidelift"
  4937. }
  4938. ],
  4939. "time": "2023-02-28T13:26:41+00:00"
  4940. },
  4941. {
  4942. "name": "symfony/mailer",
  4943. "version": "v6.2.7",
  4944. "source": {
  4945. "type": "git",
  4946. "url": "https://github.com/symfony/mailer.git",
  4947. "reference": "e4f84c633b72ec70efc50b8016871c3bc43e691e"
  4948. },
  4949. "dist": {
  4950. "type": "zip",
  4951. "url": "https://api.github.com/repos/symfony/mailer/zipball/e4f84c633b72ec70efc50b8016871c3bc43e691e",
  4952. "reference": "e4f84c633b72ec70efc50b8016871c3bc43e691e",
  4953. "shasum": ""
  4954. },
  4955. "require": {
  4956. "egulias/email-validator": "^2.1.10|^3|^4",
  4957. "php": ">=8.1",
  4958. "psr/event-dispatcher": "^1",
  4959. "psr/log": "^1|^2|^3",
  4960. "symfony/event-dispatcher": "^5.4|^6.0",
  4961. "symfony/mime": "^6.2",
  4962. "symfony/service-contracts": "^1.1|^2|^3"
  4963. },
  4964. "conflict": {
  4965. "symfony/http-kernel": "<5.4",
  4966. "symfony/messenger": "<6.2",
  4967. "symfony/mime": "<6.2",
  4968. "symfony/twig-bridge": "<6.2.1"
  4969. },
  4970. "require-dev": {
  4971. "symfony/console": "^5.4|^6.0",
  4972. "symfony/http-client": "^5.4|^6.0",
  4973. "symfony/messenger": "^6.2",
  4974. "symfony/twig-bridge": "^6.2"
  4975. },
  4976. "type": "library",
  4977. "autoload": {
  4978. "psr-4": {
  4979. "Symfony\\Component\\Mailer\\": ""
  4980. },
  4981. "exclude-from-classmap": [
  4982. "/Tests/"
  4983. ]
  4984. },
  4985. "notification-url": "https://packagist.org/downloads/",
  4986. "license": [
  4987. "MIT"
  4988. ],
  4989. "authors": [
  4990. {
  4991. "name": "Fabien Potencier",
  4992. "email": "fabien@symfony.com"
  4993. },
  4994. {
  4995. "name": "Symfony Community",
  4996. "homepage": "https://symfony.com/contributors"
  4997. }
  4998. ],
  4999. "description": "Helps sending emails",
  5000. "homepage": "https://symfony.com",
  5001. "support": {
  5002. "source": "https://github.com/symfony/mailer/tree/v6.2.7"
  5003. },
  5004. "funding": [
  5005. {
  5006. "url": "https://symfony.com/sponsor",
  5007. "type": "custom"
  5008. },
  5009. {
  5010. "url": "https://github.com/fabpot",
  5011. "type": "github"
  5012. },
  5013. {
  5014. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5015. "type": "tidelift"
  5016. }
  5017. ],
  5018. "time": "2023-02-21T10:35:38+00:00"
  5019. },
  5020. {
  5021. "name": "symfony/mime",
  5022. "version": "v6.2.7",
  5023. "source": {
  5024. "type": "git",
  5025. "url": "https://github.com/symfony/mime.git",
  5026. "reference": "62e341f80699badb0ad70b31149c8df89a2d778e"
  5027. },
  5028. "dist": {
  5029. "type": "zip",
  5030. "url": "https://api.github.com/repos/symfony/mime/zipball/62e341f80699badb0ad70b31149c8df89a2d778e",
  5031. "reference": "62e341f80699badb0ad70b31149c8df89a2d778e",
  5032. "shasum": ""
  5033. },
  5034. "require": {
  5035. "php": ">=8.1",
  5036. "symfony/polyfill-intl-idn": "^1.10",
  5037. "symfony/polyfill-mbstring": "^1.0"
  5038. },
  5039. "conflict": {
  5040. "egulias/email-validator": "~3.0.0",
  5041. "phpdocumentor/reflection-docblock": "<3.2.2",
  5042. "phpdocumentor/type-resolver": "<1.4.0",
  5043. "symfony/mailer": "<5.4",
  5044. "symfony/serializer": "<6.2"
  5045. },
  5046. "require-dev": {
  5047. "egulias/email-validator": "^2.1.10|^3.1|^4",
  5048. "league/html-to-markdown": "^5.0",
  5049. "phpdocumentor/reflection-docblock": "^3.0|^4.0|^5.0",
  5050. "symfony/dependency-injection": "^5.4|^6.0",
  5051. "symfony/property-access": "^5.4|^6.0",
  5052. "symfony/property-info": "^5.4|^6.0",
  5053. "symfony/serializer": "^6.2"
  5054. },
  5055. "type": "library",
  5056. "autoload": {
  5057. "psr-4": {
  5058. "Symfony\\Component\\Mime\\": ""
  5059. },
  5060. "exclude-from-classmap": [
  5061. "/Tests/"
  5062. ]
  5063. },
  5064. "notification-url": "https://packagist.org/downloads/",
  5065. "license": [
  5066. "MIT"
  5067. ],
  5068. "authors": [
  5069. {
  5070. "name": "Fabien Potencier",
  5071. "email": "fabien@symfony.com"
  5072. },
  5073. {
  5074. "name": "Symfony Community",
  5075. "homepage": "https://symfony.com/contributors"
  5076. }
  5077. ],
  5078. "description": "Allows manipulating MIME messages",
  5079. "homepage": "https://symfony.com",
  5080. "keywords": [
  5081. "mime",
  5082. "mime-type"
  5083. ],
  5084. "support": {
  5085. "source": "https://github.com/symfony/mime/tree/v6.2.7"
  5086. },
  5087. "funding": [
  5088. {
  5089. "url": "https://symfony.com/sponsor",
  5090. "type": "custom"
  5091. },
  5092. {
  5093. "url": "https://github.com/fabpot",
  5094. "type": "github"
  5095. },
  5096. {
  5097. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5098. "type": "tidelift"
  5099. }
  5100. ],
  5101. "time": "2023-02-24T10:42:00+00:00"
  5102. },
  5103. {
  5104. "name": "symfony/monolog-bridge",
  5105. "version": "v6.2.7",
  5106. "source": {
  5107. "type": "git",
  5108. "url": "https://github.com/symfony/monolog-bridge.git",
  5109. "reference": "c611e34f9e7b075f3af6d89d7cd10c6a80ab6a74"
  5110. },
  5111. "dist": {
  5112. "type": "zip",
  5113. "url": "https://api.github.com/repos/symfony/monolog-bridge/zipball/c611e34f9e7b075f3af6d89d7cd10c6a80ab6a74",
  5114. "reference": "c611e34f9e7b075f3af6d89d7cd10c6a80ab6a74",
  5115. "shasum": ""
  5116. },
  5117. "require": {
  5118. "monolog/monolog": "^1.25.1|^2|^3",
  5119. "php": ">=8.1",
  5120. "symfony/http-kernel": "^5.4|^6.0",
  5121. "symfony/service-contracts": "^1.1|^2|^3"
  5122. },
  5123. "conflict": {
  5124. "symfony/console": "<5.4",
  5125. "symfony/http-foundation": "<5.4",
  5126. "symfony/security-core": "<6.0"
  5127. },
  5128. "require-dev": {
  5129. "symfony/console": "^5.4|^6.0",
  5130. "symfony/http-client": "^5.4|^6.0",
  5131. "symfony/mailer": "^5.4|^6.0",
  5132. "symfony/messenger": "^5.4|^6.0",
  5133. "symfony/mime": "^5.4|^6.0",
  5134. "symfony/security-core": "^6.0",
  5135. "symfony/var-dumper": "^5.4|^6.0"
  5136. },
  5137. "suggest": {
  5138. "symfony/console": "For the possibility to show log messages in console commands depending on verbosity settings.",
  5139. "symfony/http-kernel": "For using the debugging handlers together with the response life cycle of the HTTP kernel.",
  5140. "symfony/var-dumper": "For using the debugging handlers like the console handler or the log server handler."
  5141. },
  5142. "type": "symfony-bridge",
  5143. "autoload": {
  5144. "psr-4": {
  5145. "Symfony\\Bridge\\Monolog\\": ""
  5146. },
  5147. "exclude-from-classmap": [
  5148. "/Tests/"
  5149. ]
  5150. },
  5151. "notification-url": "https://packagist.org/downloads/",
  5152. "license": [
  5153. "MIT"
  5154. ],
  5155. "authors": [
  5156. {
  5157. "name": "Fabien Potencier",
  5158. "email": "fabien@symfony.com"
  5159. },
  5160. {
  5161. "name": "Symfony Community",
  5162. "homepage": "https://symfony.com/contributors"
  5163. }
  5164. ],
  5165. "description": "Provides integration for Monolog with various Symfony components",
  5166. "homepage": "https://symfony.com",
  5167. "support": {
  5168. "source": "https://github.com/symfony/monolog-bridge/tree/v6.2.7"
  5169. },
  5170. "funding": [
  5171. {
  5172. "url": "https://symfony.com/sponsor",
  5173. "type": "custom"
  5174. },
  5175. {
  5176. "url": "https://github.com/fabpot",
  5177. "type": "github"
  5178. },
  5179. {
  5180. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5181. "type": "tidelift"
  5182. }
  5183. ],
  5184. "time": "2023-02-21T16:15:44+00:00"
  5185. },
  5186. {
  5187. "name": "symfony/monolog-bundle",
  5188. "version": "v3.8.0",
  5189. "source": {
  5190. "type": "git",
  5191. "url": "https://github.com/symfony/monolog-bundle.git",
  5192. "reference": "a41bbcdc1105603b6d73a7d9a43a3788f8e0fb7d"
  5193. },
  5194. "dist": {
  5195. "type": "zip",
  5196. "url": "https://api.github.com/repos/symfony/monolog-bundle/zipball/a41bbcdc1105603b6d73a7d9a43a3788f8e0fb7d",
  5197. "reference": "a41bbcdc1105603b6d73a7d9a43a3788f8e0fb7d",
  5198. "shasum": ""
  5199. },
  5200. "require": {
  5201. "monolog/monolog": "^1.22 || ^2.0 || ^3.0",
  5202. "php": ">=7.1.3",
  5203. "symfony/config": "~4.4 || ^5.0 || ^6.0",
  5204. "symfony/dependency-injection": "^4.4 || ^5.0 || ^6.0",
  5205. "symfony/http-kernel": "~4.4 || ^5.0 || ^6.0",
  5206. "symfony/monolog-bridge": "~4.4 || ^5.0 || ^6.0"
  5207. },
  5208. "require-dev": {
  5209. "symfony/console": "~4.4 || ^5.0 || ^6.0",
  5210. "symfony/phpunit-bridge": "^5.2 || ^6.0",
  5211. "symfony/yaml": "~4.4 || ^5.0 || ^6.0"
  5212. },
  5213. "type": "symfony-bundle",
  5214. "extra": {
  5215. "branch-alias": {
  5216. "dev-master": "3.x-dev"
  5217. }
  5218. },
  5219. "autoload": {
  5220. "psr-4": {
  5221. "Symfony\\Bundle\\MonologBundle\\": ""
  5222. },
  5223. "exclude-from-classmap": [
  5224. "/Tests/"
  5225. ]
  5226. },
  5227. "notification-url": "https://packagist.org/downloads/",
  5228. "license": [
  5229. "MIT"
  5230. ],
  5231. "authors": [
  5232. {
  5233. "name": "Fabien Potencier",
  5234. "email": "fabien@symfony.com"
  5235. },
  5236. {
  5237. "name": "Symfony Community",
  5238. "homepage": "https://symfony.com/contributors"
  5239. }
  5240. ],
  5241. "description": "Symfony MonologBundle",
  5242. "homepage": "https://symfony.com",
  5243. "keywords": [
  5244. "log",
  5245. "logging"
  5246. ],
  5247. "support": {
  5248. "issues": "https://github.com/symfony/monolog-bundle/issues",
  5249. "source": "https://github.com/symfony/monolog-bundle/tree/v3.8.0"
  5250. },
  5251. "funding": [
  5252. {
  5253. "url": "https://symfony.com/sponsor",
  5254. "type": "custom"
  5255. },
  5256. {
  5257. "url": "https://github.com/fabpot",
  5258. "type": "github"
  5259. },
  5260. {
  5261. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5262. "type": "tidelift"
  5263. }
  5264. ],
  5265. "time": "2022-05-10T14:24:36+00:00"
  5266. },
  5267. {
  5268. "name": "symfony/options-resolver",
  5269. "version": "v6.2.7",
  5270. "source": {
  5271. "type": "git",
  5272. "url": "https://github.com/symfony/options-resolver.git",
  5273. "reference": "aa0e85b53bbb2b4951960efd61d295907eacd629"
  5274. },
  5275. "dist": {
  5276. "type": "zip",
  5277. "url": "https://api.github.com/repos/symfony/options-resolver/zipball/aa0e85b53bbb2b4951960efd61d295907eacd629",
  5278. "reference": "aa0e85b53bbb2b4951960efd61d295907eacd629",
  5279. "shasum": ""
  5280. },
  5281. "require": {
  5282. "php": ">=8.1",
  5283. "symfony/deprecation-contracts": "^2.1|^3"
  5284. },
  5285. "type": "library",
  5286. "autoload": {
  5287. "psr-4": {
  5288. "Symfony\\Component\\OptionsResolver\\": ""
  5289. },
  5290. "exclude-from-classmap": [
  5291. "/Tests/"
  5292. ]
  5293. },
  5294. "notification-url": "https://packagist.org/downloads/",
  5295. "license": [
  5296. "MIT"
  5297. ],
  5298. "authors": [
  5299. {
  5300. "name": "Fabien Potencier",
  5301. "email": "fabien@symfony.com"
  5302. },
  5303. {
  5304. "name": "Symfony Community",
  5305. "homepage": "https://symfony.com/contributors"
  5306. }
  5307. ],
  5308. "description": "Provides an improved replacement for the array_replace PHP function",
  5309. "homepage": "https://symfony.com",
  5310. "keywords": [
  5311. "config",
  5312. "configuration",
  5313. "options"
  5314. ],
  5315. "support": {
  5316. "source": "https://github.com/symfony/options-resolver/tree/v6.2.7"
  5317. },
  5318. "funding": [
  5319. {
  5320. "url": "https://symfony.com/sponsor",
  5321. "type": "custom"
  5322. },
  5323. {
  5324. "url": "https://github.com/fabpot",
  5325. "type": "github"
  5326. },
  5327. {
  5328. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5329. "type": "tidelift"
  5330. }
  5331. ],
  5332. "time": "2023-02-14T08:44:56+00:00"
  5333. },
  5334. {
  5335. "name": "symfony/password-hasher",
  5336. "version": "v6.2.7",
  5337. "source": {
  5338. "type": "git",
  5339. "url": "https://github.com/symfony/password-hasher.git",
  5340. "reference": "67820d8570bf1c2c2cd87cb76d9d12a9d52ab808"
  5341. },
  5342. "dist": {
  5343. "type": "zip",
  5344. "url": "https://api.github.com/repos/symfony/password-hasher/zipball/67820d8570bf1c2c2cd87cb76d9d12a9d52ab808",
  5345. "reference": "67820d8570bf1c2c2cd87cb76d9d12a9d52ab808",
  5346. "shasum": ""
  5347. },
  5348. "require": {
  5349. "php": ">=8.1"
  5350. },
  5351. "conflict": {
  5352. "symfony/security-core": "<5.4"
  5353. },
  5354. "require-dev": {
  5355. "symfony/console": "^5.4|^6.0",
  5356. "symfony/security-core": "^5.4|^6.0"
  5357. },
  5358. "type": "library",
  5359. "autoload": {
  5360. "psr-4": {
  5361. "Symfony\\Component\\PasswordHasher\\": ""
  5362. },
  5363. "exclude-from-classmap": [
  5364. "/Tests/"
  5365. ]
  5366. },
  5367. "notification-url": "https://packagist.org/downloads/",
  5368. "license": [
  5369. "MIT"
  5370. ],
  5371. "authors": [
  5372. {
  5373. "name": "Robin Chalas",
  5374. "email": "robin.chalas@gmail.com"
  5375. },
  5376. {
  5377. "name": "Symfony Community",
  5378. "homepage": "https://symfony.com/contributors"
  5379. }
  5380. ],
  5381. "description": "Provides password hashing utilities",
  5382. "homepage": "https://symfony.com",
  5383. "keywords": [
  5384. "hashing",
  5385. "password"
  5386. ],
  5387. "support": {
  5388. "source": "https://github.com/symfony/password-hasher/tree/v6.2.7"
  5389. },
  5390. "funding": [
  5391. {
  5392. "url": "https://symfony.com/sponsor",
  5393. "type": "custom"
  5394. },
  5395. {
  5396. "url": "https://github.com/fabpot",
  5397. "type": "github"
  5398. },
  5399. {
  5400. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5401. "type": "tidelift"
  5402. }
  5403. ],
  5404. "time": "2023-02-14T08:44:56+00:00"
  5405. },
  5406. {
  5407. "name": "symfony/polyfill-intl-grapheme",
  5408. "version": "v1.27.0",
  5409. "source": {
  5410. "type": "git",
  5411. "url": "https://github.com/symfony/polyfill-intl-grapheme.git",
  5412. "reference": "511a08c03c1960e08a883f4cffcacd219b758354"
  5413. },
  5414. "dist": {
  5415. "type": "zip",
  5416. "url": "https://api.github.com/repos/symfony/polyfill-intl-grapheme/zipball/511a08c03c1960e08a883f4cffcacd219b758354",
  5417. "reference": "511a08c03c1960e08a883f4cffcacd219b758354",
  5418. "shasum": ""
  5419. },
  5420. "require": {
  5421. "php": ">=7.1"
  5422. },
  5423. "suggest": {
  5424. "ext-intl": "For best performance"
  5425. },
  5426. "type": "library",
  5427. "extra": {
  5428. "branch-alias": {
  5429. "dev-main": "1.27-dev"
  5430. },
  5431. "thanks": {
  5432. "name": "symfony/polyfill",
  5433. "url": "https://github.com/symfony/polyfill"
  5434. }
  5435. },
  5436. "autoload": {
  5437. "files": [
  5438. "bootstrap.php"
  5439. ],
  5440. "psr-4": {
  5441. "Symfony\\Polyfill\\Intl\\Grapheme\\": ""
  5442. }
  5443. },
  5444. "notification-url": "https://packagist.org/downloads/",
  5445. "license": [
  5446. "MIT"
  5447. ],
  5448. "authors": [
  5449. {
  5450. "name": "Nicolas Grekas",
  5451. "email": "p@tchwork.com"
  5452. },
  5453. {
  5454. "name": "Symfony Community",
  5455. "homepage": "https://symfony.com/contributors"
  5456. }
  5457. ],
  5458. "description": "Symfony polyfill for intl's grapheme_* functions",
  5459. "homepage": "https://symfony.com",
  5460. "keywords": [
  5461. "compatibility",
  5462. "grapheme",
  5463. "intl",
  5464. "polyfill",
  5465. "portable",
  5466. "shim"
  5467. ],
  5468. "support": {
  5469. "source": "https://github.com/symfony/polyfill-intl-grapheme/tree/v1.27.0"
  5470. },
  5471. "funding": [
  5472. {
  5473. "url": "https://symfony.com/sponsor",
  5474. "type": "custom"
  5475. },
  5476. {
  5477. "url": "https://github.com/fabpot",
  5478. "type": "github"
  5479. },
  5480. {
  5481. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5482. "type": "tidelift"
  5483. }
  5484. ],
  5485. "time": "2022-11-03T14:55:06+00:00"
  5486. },
  5487. {
  5488. "name": "symfony/polyfill-intl-icu",
  5489. "version": "v1.27.0",
  5490. "source": {
  5491. "type": "git",
  5492. "url": "https://github.com/symfony/polyfill-intl-icu.git",
  5493. "reference": "a3d9148e2c363588e05abbdd4ee4f971f0a5330c"
  5494. },
  5495. "dist": {
  5496. "type": "zip",
  5497. "url": "https://api.github.com/repos/symfony/polyfill-intl-icu/zipball/a3d9148e2c363588e05abbdd4ee4f971f0a5330c",
  5498. "reference": "a3d9148e2c363588e05abbdd4ee4f971f0a5330c",
  5499. "shasum": ""
  5500. },
  5501. "require": {
  5502. "php": ">=7.1"
  5503. },
  5504. "suggest": {
  5505. "ext-intl": "For best performance and support of other locales than \"en\""
  5506. },
  5507. "type": "library",
  5508. "extra": {
  5509. "branch-alias": {
  5510. "dev-main": "1.27-dev"
  5511. },
  5512. "thanks": {
  5513. "name": "symfony/polyfill",
  5514. "url": "https://github.com/symfony/polyfill"
  5515. }
  5516. },
  5517. "autoload": {
  5518. "files": [
  5519. "bootstrap.php"
  5520. ],
  5521. "psr-4": {
  5522. "Symfony\\Polyfill\\Intl\\Icu\\": ""
  5523. },
  5524. "classmap": [
  5525. "Resources/stubs"
  5526. ],
  5527. "exclude-from-classmap": [
  5528. "/Tests/"
  5529. ]
  5530. },
  5531. "notification-url": "https://packagist.org/downloads/",
  5532. "license": [
  5533. "MIT"
  5534. ],
  5535. "authors": [
  5536. {
  5537. "name": "Nicolas Grekas",
  5538. "email": "p@tchwork.com"
  5539. },
  5540. {
  5541. "name": "Symfony Community",
  5542. "homepage": "https://symfony.com/contributors"
  5543. }
  5544. ],
  5545. "description": "Symfony polyfill for intl's ICU-related data and classes",
  5546. "homepage": "https://symfony.com",
  5547. "keywords": [
  5548. "compatibility",
  5549. "icu",
  5550. "intl",
  5551. "polyfill",
  5552. "portable",
  5553. "shim"
  5554. ],
  5555. "support": {
  5556. "source": "https://github.com/symfony/polyfill-intl-icu/tree/v1.27.0"
  5557. },
  5558. "funding": [
  5559. {
  5560. "url": "https://symfony.com/sponsor",
  5561. "type": "custom"
  5562. },
  5563. {
  5564. "url": "https://github.com/fabpot",
  5565. "type": "github"
  5566. },
  5567. {
  5568. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5569. "type": "tidelift"
  5570. }
  5571. ],
  5572. "time": "2022-11-03T14:55:06+00:00"
  5573. },
  5574. {
  5575. "name": "symfony/polyfill-intl-idn",
  5576. "version": "v1.27.0",
  5577. "source": {
  5578. "type": "git",
  5579. "url": "https://github.com/symfony/polyfill-intl-idn.git",
  5580. "reference": "639084e360537a19f9ee352433b84ce831f3d2da"
  5581. },
  5582. "dist": {
  5583. "type": "zip",
  5584. "url": "https://api.github.com/repos/symfony/polyfill-intl-idn/zipball/639084e360537a19f9ee352433b84ce831f3d2da",
  5585. "reference": "639084e360537a19f9ee352433b84ce831f3d2da",
  5586. "shasum": ""
  5587. },
  5588. "require": {
  5589. "php": ">=7.1",
  5590. "symfony/polyfill-intl-normalizer": "^1.10",
  5591. "symfony/polyfill-php72": "^1.10"
  5592. },
  5593. "suggest": {
  5594. "ext-intl": "For best performance"
  5595. },
  5596. "type": "library",
  5597. "extra": {
  5598. "branch-alias": {
  5599. "dev-main": "1.27-dev"
  5600. },
  5601. "thanks": {
  5602. "name": "symfony/polyfill",
  5603. "url": "https://github.com/symfony/polyfill"
  5604. }
  5605. },
  5606. "autoload": {
  5607. "files": [
  5608. "bootstrap.php"
  5609. ],
  5610. "psr-4": {
  5611. "Symfony\\Polyfill\\Intl\\Idn\\": ""
  5612. }
  5613. },
  5614. "notification-url": "https://packagist.org/downloads/",
  5615. "license": [
  5616. "MIT"
  5617. ],
  5618. "authors": [
  5619. {
  5620. "name": "Laurent Bassin",
  5621. "email": "laurent@bassin.info"
  5622. },
  5623. {
  5624. "name": "Trevor Rowbotham",
  5625. "email": "trevor.rowbotham@pm.me"
  5626. },
  5627. {
  5628. "name": "Symfony Community",
  5629. "homepage": "https://symfony.com/contributors"
  5630. }
  5631. ],
  5632. "description": "Symfony polyfill for intl's idn_to_ascii and idn_to_utf8 functions",
  5633. "homepage": "https://symfony.com",
  5634. "keywords": [
  5635. "compatibility",
  5636. "idn",
  5637. "intl",
  5638. "polyfill",
  5639. "portable",
  5640. "shim"
  5641. ],
  5642. "support": {
  5643. "source": "https://github.com/symfony/polyfill-intl-idn/tree/v1.27.0"
  5644. },
  5645. "funding": [
  5646. {
  5647. "url": "https://symfony.com/sponsor",
  5648. "type": "custom"
  5649. },
  5650. {
  5651. "url": "https://github.com/fabpot",
  5652. "type": "github"
  5653. },
  5654. {
  5655. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5656. "type": "tidelift"
  5657. }
  5658. ],
  5659. "time": "2022-11-03T14:55:06+00:00"
  5660. },
  5661. {
  5662. "name": "symfony/polyfill-intl-normalizer",
  5663. "version": "v1.27.0",
  5664. "source": {
  5665. "type": "git",
  5666. "url": "https://github.com/symfony/polyfill-intl-normalizer.git",
  5667. "reference": "19bd1e4fcd5b91116f14d8533c57831ed00571b6"
  5668. },
  5669. "dist": {
  5670. "type": "zip",
  5671. "url": "https://api.github.com/repos/symfony/polyfill-intl-normalizer/zipball/19bd1e4fcd5b91116f14d8533c57831ed00571b6",
  5672. "reference": "19bd1e4fcd5b91116f14d8533c57831ed00571b6",
  5673. "shasum": ""
  5674. },
  5675. "require": {
  5676. "php": ">=7.1"
  5677. },
  5678. "suggest": {
  5679. "ext-intl": "For best performance"
  5680. },
  5681. "type": "library",
  5682. "extra": {
  5683. "branch-alias": {
  5684. "dev-main": "1.27-dev"
  5685. },
  5686. "thanks": {
  5687. "name": "symfony/polyfill",
  5688. "url": "https://github.com/symfony/polyfill"
  5689. }
  5690. },
  5691. "autoload": {
  5692. "files": [
  5693. "bootstrap.php"
  5694. ],
  5695. "psr-4": {
  5696. "Symfony\\Polyfill\\Intl\\Normalizer\\": ""
  5697. },
  5698. "classmap": [
  5699. "Resources/stubs"
  5700. ]
  5701. },
  5702. "notification-url": "https://packagist.org/downloads/",
  5703. "license": [
  5704. "MIT"
  5705. ],
  5706. "authors": [
  5707. {
  5708. "name": "Nicolas Grekas",
  5709. "email": "p@tchwork.com"
  5710. },
  5711. {
  5712. "name": "Symfony Community",
  5713. "homepage": "https://symfony.com/contributors"
  5714. }
  5715. ],
  5716. "description": "Symfony polyfill for intl's Normalizer class and related functions",
  5717. "homepage": "https://symfony.com",
  5718. "keywords": [
  5719. "compatibility",
  5720. "intl",
  5721. "normalizer",
  5722. "polyfill",
  5723. "portable",
  5724. "shim"
  5725. ],
  5726. "support": {
  5727. "source": "https://github.com/symfony/polyfill-intl-normalizer/tree/v1.27.0"
  5728. },
  5729. "funding": [
  5730. {
  5731. "url": "https://symfony.com/sponsor",
  5732. "type": "custom"
  5733. },
  5734. {
  5735. "url": "https://github.com/fabpot",
  5736. "type": "github"
  5737. },
  5738. {
  5739. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5740. "type": "tidelift"
  5741. }
  5742. ],
  5743. "time": "2022-11-03T14:55:06+00:00"
  5744. },
  5745. {
  5746. "name": "symfony/polyfill-mbstring",
  5747. "version": "v1.27.0",
  5748. "source": {
  5749. "type": "git",
  5750. "url": "https://github.com/symfony/polyfill-mbstring.git",
  5751. "reference": "8ad114f6b39e2c98a8b0e3bd907732c207c2b534"
  5752. },
  5753. "dist": {
  5754. "type": "zip",
  5755. "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/8ad114f6b39e2c98a8b0e3bd907732c207c2b534",
  5756. "reference": "8ad114f6b39e2c98a8b0e3bd907732c207c2b534",
  5757. "shasum": ""
  5758. },
  5759. "require": {
  5760. "php": ">=7.1"
  5761. },
  5762. "provide": {
  5763. "ext-mbstring": "*"
  5764. },
  5765. "suggest": {
  5766. "ext-mbstring": "For best performance"
  5767. },
  5768. "type": "library",
  5769. "extra": {
  5770. "branch-alias": {
  5771. "dev-main": "1.27-dev"
  5772. },
  5773. "thanks": {
  5774. "name": "symfony/polyfill",
  5775. "url": "https://github.com/symfony/polyfill"
  5776. }
  5777. },
  5778. "autoload": {
  5779. "files": [
  5780. "bootstrap.php"
  5781. ],
  5782. "psr-4": {
  5783. "Symfony\\Polyfill\\Mbstring\\": ""
  5784. }
  5785. },
  5786. "notification-url": "https://packagist.org/downloads/",
  5787. "license": [
  5788. "MIT"
  5789. ],
  5790. "authors": [
  5791. {
  5792. "name": "Nicolas Grekas",
  5793. "email": "p@tchwork.com"
  5794. },
  5795. {
  5796. "name": "Symfony Community",
  5797. "homepage": "https://symfony.com/contributors"
  5798. }
  5799. ],
  5800. "description": "Symfony polyfill for the Mbstring extension",
  5801. "homepage": "https://symfony.com",
  5802. "keywords": [
  5803. "compatibility",
  5804. "mbstring",
  5805. "polyfill",
  5806. "portable",
  5807. "shim"
  5808. ],
  5809. "support": {
  5810. "source": "https://github.com/symfony/polyfill-mbstring/tree/v1.27.0"
  5811. },
  5812. "funding": [
  5813. {
  5814. "url": "https://symfony.com/sponsor",
  5815. "type": "custom"
  5816. },
  5817. {
  5818. "url": "https://github.com/fabpot",
  5819. "type": "github"
  5820. },
  5821. {
  5822. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5823. "type": "tidelift"
  5824. }
  5825. ],
  5826. "time": "2022-11-03T14:55:06+00:00"
  5827. },
  5828. {
  5829. "name": "symfony/polyfill-php72",
  5830. "version": "v1.27.0",
  5831. "source": {
  5832. "type": "git",
  5833. "url": "https://github.com/symfony/polyfill-php72.git",
  5834. "reference": "869329b1e9894268a8a61dabb69153029b7a8c97"
  5835. },
  5836. "dist": {
  5837. "type": "zip",
  5838. "url": "https://api.github.com/repos/symfony/polyfill-php72/zipball/869329b1e9894268a8a61dabb69153029b7a8c97",
  5839. "reference": "869329b1e9894268a8a61dabb69153029b7a8c97",
  5840. "shasum": ""
  5841. },
  5842. "require": {
  5843. "php": ">=7.1"
  5844. },
  5845. "type": "library",
  5846. "extra": {
  5847. "branch-alias": {
  5848. "dev-main": "1.27-dev"
  5849. },
  5850. "thanks": {
  5851. "name": "symfony/polyfill",
  5852. "url": "https://github.com/symfony/polyfill"
  5853. }
  5854. },
  5855. "autoload": {
  5856. "files": [
  5857. "bootstrap.php"
  5858. ],
  5859. "psr-4": {
  5860. "Symfony\\Polyfill\\Php72\\": ""
  5861. }
  5862. },
  5863. "notification-url": "https://packagist.org/downloads/",
  5864. "license": [
  5865. "MIT"
  5866. ],
  5867. "authors": [
  5868. {
  5869. "name": "Nicolas Grekas",
  5870. "email": "p@tchwork.com"
  5871. },
  5872. {
  5873. "name": "Symfony Community",
  5874. "homepage": "https://symfony.com/contributors"
  5875. }
  5876. ],
  5877. "description": "Symfony polyfill backporting some PHP 7.2+ features to lower PHP versions",
  5878. "homepage": "https://symfony.com",
  5879. "keywords": [
  5880. "compatibility",
  5881. "polyfill",
  5882. "portable",
  5883. "shim"
  5884. ],
  5885. "support": {
  5886. "source": "https://github.com/symfony/polyfill-php72/tree/v1.27.0"
  5887. },
  5888. "funding": [
  5889. {
  5890. "url": "https://symfony.com/sponsor",
  5891. "type": "custom"
  5892. },
  5893. {
  5894. "url": "https://github.com/fabpot",
  5895. "type": "github"
  5896. },
  5897. {
  5898. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5899. "type": "tidelift"
  5900. }
  5901. ],
  5902. "time": "2022-11-03T14:55:06+00:00"
  5903. },
  5904. {
  5905. "name": "symfony/polyfill-php80",
  5906. "version": "v1.27.0",
  5907. "source": {
  5908. "type": "git",
  5909. "url": "https://github.com/symfony/polyfill-php80.git",
  5910. "reference": "7a6ff3f1959bb01aefccb463a0f2cd3d3d2fd936"
  5911. },
  5912. "dist": {
  5913. "type": "zip",
  5914. "url": "https://api.github.com/repos/symfony/polyfill-php80/zipball/7a6ff3f1959bb01aefccb463a0f2cd3d3d2fd936",
  5915. "reference": "7a6ff3f1959bb01aefccb463a0f2cd3d3d2fd936",
  5916. "shasum": ""
  5917. },
  5918. "require": {
  5919. "php": ">=7.1"
  5920. },
  5921. "type": "library",
  5922. "extra": {
  5923. "branch-alias": {
  5924. "dev-main": "1.27-dev"
  5925. },
  5926. "thanks": {
  5927. "name": "symfony/polyfill",
  5928. "url": "https://github.com/symfony/polyfill"
  5929. }
  5930. },
  5931. "autoload": {
  5932. "files": [
  5933. "bootstrap.php"
  5934. ],
  5935. "psr-4": {
  5936. "Symfony\\Polyfill\\Php80\\": ""
  5937. },
  5938. "classmap": [
  5939. "Resources/stubs"
  5940. ]
  5941. },
  5942. "notification-url": "https://packagist.org/downloads/",
  5943. "license": [
  5944. "MIT"
  5945. ],
  5946. "authors": [
  5947. {
  5948. "name": "Ion Bazan",
  5949. "email": "ion.bazan@gmail.com"
  5950. },
  5951. {
  5952. "name": "Nicolas Grekas",
  5953. "email": "p@tchwork.com"
  5954. },
  5955. {
  5956. "name": "Symfony Community",
  5957. "homepage": "https://symfony.com/contributors"
  5958. }
  5959. ],
  5960. "description": "Symfony polyfill backporting some PHP 8.0+ features to lower PHP versions",
  5961. "homepage": "https://symfony.com",
  5962. "keywords": [
  5963. "compatibility",
  5964. "polyfill",
  5965. "portable",
  5966. "shim"
  5967. ],
  5968. "support": {
  5969. "source": "https://github.com/symfony/polyfill-php80/tree/v1.27.0"
  5970. },
  5971. "funding": [
  5972. {
  5973. "url": "https://symfony.com/sponsor",
  5974. "type": "custom"
  5975. },
  5976. {
  5977. "url": "https://github.com/fabpot",
  5978. "type": "github"
  5979. },
  5980. {
  5981. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5982. "type": "tidelift"
  5983. }
  5984. ],
  5985. "time": "2022-11-03T14:55:06+00:00"
  5986. },
  5987. {
  5988. "name": "symfony/process",
  5989. "version": "v6.2.7",
  5990. "source": {
  5991. "type": "git",
  5992. "url": "https://github.com/symfony/process.git",
  5993. "reference": "680e8a2ea6b3f87aecc07a6a65a203ae573d1902"
  5994. },
  5995. "dist": {
  5996. "type": "zip",
  5997. "url": "https://api.github.com/repos/symfony/process/zipball/680e8a2ea6b3f87aecc07a6a65a203ae573d1902",
  5998. "reference": "680e8a2ea6b3f87aecc07a6a65a203ae573d1902",
  5999. "shasum": ""
  6000. },
  6001. "require": {
  6002. "php": ">=8.1"
  6003. },
  6004. "type": "library",
  6005. "autoload": {
  6006. "psr-4": {
  6007. "Symfony\\Component\\Process\\": ""
  6008. },
  6009. "exclude-from-classmap": [
  6010. "/Tests/"
  6011. ]
  6012. },
  6013. "notification-url": "https://packagist.org/downloads/",
  6014. "license": [
  6015. "MIT"
  6016. ],
  6017. "authors": [
  6018. {
  6019. "name": "Fabien Potencier",
  6020. "email": "fabien@symfony.com"
  6021. },
  6022. {
  6023. "name": "Symfony Community",
  6024. "homepage": "https://symfony.com/contributors"
  6025. }
  6026. ],
  6027. "description": "Executes commands in sub-processes",
  6028. "homepage": "https://symfony.com",
  6029. "support": {
  6030. "source": "https://github.com/symfony/process/tree/v6.2.7"
  6031. },
  6032. "funding": [
  6033. {
  6034. "url": "https://symfony.com/sponsor",
  6035. "type": "custom"
  6036. },
  6037. {
  6038. "url": "https://github.com/fabpot",
  6039. "type": "github"
  6040. },
  6041. {
  6042. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6043. "type": "tidelift"
  6044. }
  6045. ],
  6046. "time": "2023-02-24T10:42:00+00:00"
  6047. },
  6048. {
  6049. "name": "symfony/property-access",
  6050. "version": "v6.2.7",
  6051. "source": {
  6052. "type": "git",
  6053. "url": "https://github.com/symfony/property-access.git",
  6054. "reference": "5a389172011e2c37b47c896d0b156549126690a1"
  6055. },
  6056. "dist": {
  6057. "type": "zip",
  6058. "url": "https://api.github.com/repos/symfony/property-access/zipball/5a389172011e2c37b47c896d0b156549126690a1",
  6059. "reference": "5a389172011e2c37b47c896d0b156549126690a1",
  6060. "shasum": ""
  6061. },
  6062. "require": {
  6063. "php": ">=8.1",
  6064. "symfony/deprecation-contracts": "^2.1|^3",
  6065. "symfony/property-info": "^5.4|^6.0"
  6066. },
  6067. "require-dev": {
  6068. "symfony/cache": "^5.4|^6.0"
  6069. },
  6070. "suggest": {
  6071. "psr/cache-implementation": "To cache access methods."
  6072. },
  6073. "type": "library",
  6074. "autoload": {
  6075. "psr-4": {
  6076. "Symfony\\Component\\PropertyAccess\\": ""
  6077. },
  6078. "exclude-from-classmap": [
  6079. "/Tests/"
  6080. ]
  6081. },
  6082. "notification-url": "https://packagist.org/downloads/",
  6083. "license": [
  6084. "MIT"
  6085. ],
  6086. "authors": [
  6087. {
  6088. "name": "Fabien Potencier",
  6089. "email": "fabien@symfony.com"
  6090. },
  6091. {
  6092. "name": "Symfony Community",
  6093. "homepage": "https://symfony.com/contributors"
  6094. }
  6095. ],
  6096. "description": "Provides functions to read and write from/to an object or array using a simple string notation",
  6097. "homepage": "https://symfony.com",
  6098. "keywords": [
  6099. "access",
  6100. "array",
  6101. "extraction",
  6102. "index",
  6103. "injection",
  6104. "object",
  6105. "property",
  6106. "property path",
  6107. "reflection"
  6108. ],
  6109. "support": {
  6110. "source": "https://github.com/symfony/property-access/tree/v6.2.7"
  6111. },
  6112. "funding": [
  6113. {
  6114. "url": "https://symfony.com/sponsor",
  6115. "type": "custom"
  6116. },
  6117. {
  6118. "url": "https://github.com/fabpot",
  6119. "type": "github"
  6120. },
  6121. {
  6122. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6123. "type": "tidelift"
  6124. }
  6125. ],
  6126. "time": "2023-02-14T08:44:56+00:00"
  6127. },
  6128. {
  6129. "name": "symfony/property-info",
  6130. "version": "v6.2.7",
  6131. "source": {
  6132. "type": "git",
  6133. "url": "https://github.com/symfony/property-info.git",
  6134. "reference": "5cf906918ea0f74032ffc5c0b85def246ce409df"
  6135. },
  6136. "dist": {
  6137. "type": "zip",
  6138. "url": "https://api.github.com/repos/symfony/property-info/zipball/5cf906918ea0f74032ffc5c0b85def246ce409df",
  6139. "reference": "5cf906918ea0f74032ffc5c0b85def246ce409df",
  6140. "shasum": ""
  6141. },
  6142. "require": {
  6143. "php": ">=8.1",
  6144. "symfony/string": "^5.4|^6.0"
  6145. },
  6146. "conflict": {
  6147. "phpdocumentor/reflection-docblock": "<5.2",
  6148. "phpdocumentor/type-resolver": "<1.5.1",
  6149. "symfony/dependency-injection": "<5.4"
  6150. },
  6151. "require-dev": {
  6152. "doctrine/annotations": "^1.10.4|^2",
  6153. "phpdocumentor/reflection-docblock": "^5.2",
  6154. "phpstan/phpdoc-parser": "^1.0",
  6155. "symfony/cache": "^5.4|^6.0",
  6156. "symfony/dependency-injection": "^5.4|^6.0",
  6157. "symfony/serializer": "^5.4|^6.0"
  6158. },
  6159. "suggest": {
  6160. "phpdocumentor/reflection-docblock": "To use the PHPDoc",
  6161. "psr/cache-implementation": "To cache results",
  6162. "symfony/doctrine-bridge": "To use Doctrine metadata",
  6163. "symfony/serializer": "To use Serializer metadata"
  6164. },
  6165. "type": "library",
  6166. "autoload": {
  6167. "psr-4": {
  6168. "Symfony\\Component\\PropertyInfo\\": ""
  6169. },
  6170. "exclude-from-classmap": [
  6171. "/Tests/"
  6172. ]
  6173. },
  6174. "notification-url": "https://packagist.org/downloads/",
  6175. "license": [
  6176. "MIT"
  6177. ],
  6178. "authors": [
  6179. {
  6180. "name": "Kévin Dunglas",
  6181. "email": "dunglas@gmail.com"
  6182. },
  6183. {
  6184. "name": "Symfony Community",
  6185. "homepage": "https://symfony.com/contributors"
  6186. }
  6187. ],
  6188. "description": "Extracts information about PHP class' properties using metadata of popular sources",
  6189. "homepage": "https://symfony.com",
  6190. "keywords": [
  6191. "doctrine",
  6192. "phpdoc",
  6193. "property",
  6194. "symfony",
  6195. "type",
  6196. "validator"
  6197. ],
  6198. "support": {
  6199. "source": "https://github.com/symfony/property-info/tree/v6.2.7"
  6200. },
  6201. "funding": [
  6202. {
  6203. "url": "https://symfony.com/sponsor",
  6204. "type": "custom"
  6205. },
  6206. {
  6207. "url": "https://github.com/fabpot",
  6208. "type": "github"
  6209. },
  6210. {
  6211. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6212. "type": "tidelift"
  6213. }
  6214. ],
  6215. "time": "2023-02-14T08:53:37+00:00"
  6216. },
  6217. {
  6218. "name": "symfony/proxy-manager-bridge",
  6219. "version": "v6.2.7",
  6220. "source": {
  6221. "type": "git",
  6222. "url": "https://github.com/symfony/proxy-manager-bridge.git",
  6223. "reference": "534119513ce1d06faa6d55b6717f237e980b4e91"
  6224. },
  6225. "dist": {
  6226. "type": "zip",
  6227. "url": "https://api.github.com/repos/symfony/proxy-manager-bridge/zipball/534119513ce1d06faa6d55b6717f237e980b4e91",
  6228. "reference": "534119513ce1d06faa6d55b6717f237e980b4e91",
  6229. "shasum": ""
  6230. },
  6231. "require": {
  6232. "friendsofphp/proxy-manager-lts": "^1.0.2",
  6233. "php": ">=8.1",
  6234. "symfony/dependency-injection": "^6.2"
  6235. },
  6236. "require-dev": {
  6237. "symfony/config": "^6.1"
  6238. },
  6239. "type": "symfony-bridge",
  6240. "autoload": {
  6241. "psr-4": {
  6242. "Symfony\\Bridge\\ProxyManager\\": ""
  6243. },
  6244. "exclude-from-classmap": [
  6245. "/Tests/"
  6246. ]
  6247. },
  6248. "notification-url": "https://packagist.org/downloads/",
  6249. "license": [
  6250. "MIT"
  6251. ],
  6252. "authors": [
  6253. {
  6254. "name": "Fabien Potencier",
  6255. "email": "fabien@symfony.com"
  6256. },
  6257. {
  6258. "name": "Symfony Community",
  6259. "homepage": "https://symfony.com/contributors"
  6260. }
  6261. ],
  6262. "description": "Provides integration for ProxyManager with various Symfony components",
  6263. "homepage": "https://symfony.com",
  6264. "support": {
  6265. "source": "https://github.com/symfony/proxy-manager-bridge/tree/v6.2.7"
  6266. },
  6267. "funding": [
  6268. {
  6269. "url": "https://symfony.com/sponsor",
  6270. "type": "custom"
  6271. },
  6272. {
  6273. "url": "https://github.com/fabpot",
  6274. "type": "github"
  6275. },
  6276. {
  6277. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6278. "type": "tidelift"
  6279. }
  6280. ],
  6281. "time": "2023-02-16T09:57:23+00:00"
  6282. },
  6283. {
  6284. "name": "symfony/routing",
  6285. "version": "v6.2.7",
  6286. "source": {
  6287. "type": "git",
  6288. "url": "https://github.com/symfony/routing.git",
  6289. "reference": "fa643fa4c56de161f8bc8c0492a76a60140b50e4"
  6290. },
  6291. "dist": {
  6292. "type": "zip",
  6293. "url": "https://api.github.com/repos/symfony/routing/zipball/fa643fa4c56de161f8bc8c0492a76a60140b50e4",
  6294. "reference": "fa643fa4c56de161f8bc8c0492a76a60140b50e4",
  6295. "shasum": ""
  6296. },
  6297. "require": {
  6298. "php": ">=8.1"
  6299. },
  6300. "conflict": {
  6301. "doctrine/annotations": "<1.12",
  6302. "symfony/config": "<6.2",
  6303. "symfony/dependency-injection": "<5.4",
  6304. "symfony/yaml": "<5.4"
  6305. },
  6306. "require-dev": {
  6307. "doctrine/annotations": "^1.12|^2",
  6308. "psr/log": "^1|^2|^3",
  6309. "symfony/config": "^6.2",
  6310. "symfony/dependency-injection": "^5.4|^6.0",
  6311. "symfony/expression-language": "^5.4|^6.0",
  6312. "symfony/http-foundation": "^5.4|^6.0",
  6313. "symfony/yaml": "^5.4|^6.0"
  6314. },
  6315. "suggest": {
  6316. "symfony/config": "For using the all-in-one router or any loader",
  6317. "symfony/expression-language": "For using expression matching",
  6318. "symfony/http-foundation": "For using a Symfony Request object",
  6319. "symfony/yaml": "For using the YAML loader"
  6320. },
  6321. "type": "library",
  6322. "autoload": {
  6323. "psr-4": {
  6324. "Symfony\\Component\\Routing\\": ""
  6325. },
  6326. "exclude-from-classmap": [
  6327. "/Tests/"
  6328. ]
  6329. },
  6330. "notification-url": "https://packagist.org/downloads/",
  6331. "license": [
  6332. "MIT"
  6333. ],
  6334. "authors": [
  6335. {
  6336. "name": "Fabien Potencier",
  6337. "email": "fabien@symfony.com"
  6338. },
  6339. {
  6340. "name": "Symfony Community",
  6341. "homepage": "https://symfony.com/contributors"
  6342. }
  6343. ],
  6344. "description": "Maps an HTTP request to a set of configuration variables",
  6345. "homepage": "https://symfony.com",
  6346. "keywords": [
  6347. "router",
  6348. "routing",
  6349. "uri",
  6350. "url"
  6351. ],
  6352. "support": {
  6353. "source": "https://github.com/symfony/routing/tree/v6.2.7"
  6354. },
  6355. "funding": [
  6356. {
  6357. "url": "https://symfony.com/sponsor",
  6358. "type": "custom"
  6359. },
  6360. {
  6361. "url": "https://github.com/fabpot",
  6362. "type": "github"
  6363. },
  6364. {
  6365. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6366. "type": "tidelift"
  6367. }
  6368. ],
  6369. "time": "2023-02-14T08:53:37+00:00"
  6370. },
  6371. {
  6372. "name": "symfony/runtime",
  6373. "version": "v6.2.7",
  6374. "source": {
  6375. "type": "git",
  6376. "url": "https://github.com/symfony/runtime.git",
  6377. "reference": "111b9d617d0cfc71d44baf01eb9951517fd8b739"
  6378. },
  6379. "dist": {
  6380. "type": "zip",
  6381. "url": "https://api.github.com/repos/symfony/runtime/zipball/111b9d617d0cfc71d44baf01eb9951517fd8b739",
  6382. "reference": "111b9d617d0cfc71d44baf01eb9951517fd8b739",
  6383. "shasum": ""
  6384. },
  6385. "require": {
  6386. "composer-plugin-api": "^1.0|^2.0",
  6387. "php": ">=8.1"
  6388. },
  6389. "conflict": {
  6390. "symfony/dotenv": "<5.4"
  6391. },
  6392. "require-dev": {
  6393. "composer/composer": "^1.0.2|^2.0",
  6394. "symfony/console": "^5.4|^6.0",
  6395. "symfony/dotenv": "^5.4|^6.0",
  6396. "symfony/http-foundation": "^5.4|^6.0",
  6397. "symfony/http-kernel": "^5.4|^6.0"
  6398. },
  6399. "type": "composer-plugin",
  6400. "extra": {
  6401. "class": "Symfony\\Component\\Runtime\\Internal\\ComposerPlugin"
  6402. },
  6403. "autoload": {
  6404. "psr-4": {
  6405. "Symfony\\Component\\Runtime\\": "",
  6406. "Symfony\\Runtime\\Symfony\\Component\\": "Internal/"
  6407. },
  6408. "exclude-from-classmap": [
  6409. "/Tests/"
  6410. ]
  6411. },
  6412. "notification-url": "https://packagist.org/downloads/",
  6413. "license": [
  6414. "MIT"
  6415. ],
  6416. "authors": [
  6417. {
  6418. "name": "Nicolas Grekas",
  6419. "email": "p@tchwork.com"
  6420. },
  6421. {
  6422. "name": "Symfony Community",
  6423. "homepage": "https://symfony.com/contributors"
  6424. }
  6425. ],
  6426. "description": "Enables decoupling PHP applications from global state",
  6427. "homepage": "https://symfony.com",
  6428. "support": {
  6429. "source": "https://github.com/symfony/runtime/tree/v6.2.7"
  6430. },
  6431. "funding": [
  6432. {
  6433. "url": "https://symfony.com/sponsor",
  6434. "type": "custom"
  6435. },
  6436. {
  6437. "url": "https://github.com/fabpot",
  6438. "type": "github"
  6439. },
  6440. {
  6441. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6442. "type": "tidelift"
  6443. }
  6444. ],
  6445. "time": "2023-02-02T07:44:01+00:00"
  6446. },
  6447. {
  6448. "name": "symfony/security-bundle",
  6449. "version": "v6.2.7",
  6450. "source": {
  6451. "type": "git",
  6452. "url": "https://github.com/symfony/security-bundle.git",
  6453. "reference": "601bcc14b6e8c168dc5985d31cfdfd11bd07b50b"
  6454. },
  6455. "dist": {
  6456. "type": "zip",
  6457. "url": "https://api.github.com/repos/symfony/security-bundle/zipball/601bcc14b6e8c168dc5985d31cfdfd11bd07b50b",
  6458. "reference": "601bcc14b6e8c168dc5985d31cfdfd11bd07b50b",
  6459. "shasum": ""
  6460. },
  6461. "require": {
  6462. "composer-runtime-api": ">=2.1",
  6463. "ext-xml": "*",
  6464. "php": ">=8.1",
  6465. "symfony/config": "^6.1",
  6466. "symfony/dependency-injection": "^6.2",
  6467. "symfony/event-dispatcher": "^5.4|^6.0",
  6468. "symfony/http-foundation": "^6.2",
  6469. "symfony/http-kernel": "^6.2",
  6470. "symfony/password-hasher": "^5.4|^6.0",
  6471. "symfony/security-core": "^6.2",
  6472. "symfony/security-csrf": "^5.4|^6.0",
  6473. "symfony/security-http": "^6.2.6"
  6474. },
  6475. "conflict": {
  6476. "symfony/browser-kit": "<5.4",
  6477. "symfony/console": "<5.4",
  6478. "symfony/framework-bundle": "<5.4",
  6479. "symfony/ldap": "<5.4",
  6480. "symfony/twig-bundle": "<5.4"
  6481. },
  6482. "require-dev": {
  6483. "doctrine/annotations": "^1.10.4|^2",
  6484. "symfony/asset": "^5.4|^6.0",
  6485. "symfony/browser-kit": "^5.4|^6.0",
  6486. "symfony/console": "^5.4|^6.0",
  6487. "symfony/css-selector": "^5.4|^6.0",
  6488. "symfony/dom-crawler": "^5.4|^6.0",
  6489. "symfony/expression-language": "^5.4|^6.0",
  6490. "symfony/form": "^5.4|^6.0",
  6491. "symfony/framework-bundle": "^5.4|^6.0",
  6492. "symfony/ldap": "^5.4|^6.0",
  6493. "symfony/process": "^5.4|^6.0",
  6494. "symfony/rate-limiter": "^5.4|^6.0",
  6495. "symfony/serializer": "^5.4|^6.0",
  6496. "symfony/translation": "^5.4|^6.0",
  6497. "symfony/twig-bridge": "^5.4|^6.0",
  6498. "symfony/twig-bundle": "^5.4|^6.0",
  6499. "symfony/validator": "^5.4|^6.0",
  6500. "symfony/yaml": "^5.4|^6.0",
  6501. "twig/twig": "^2.13|^3.0.4"
  6502. },
  6503. "type": "symfony-bundle",
  6504. "autoload": {
  6505. "psr-4": {
  6506. "Symfony\\Bundle\\SecurityBundle\\": ""
  6507. },
  6508. "exclude-from-classmap": [
  6509. "/Tests/"
  6510. ]
  6511. },
  6512. "notification-url": "https://packagist.org/downloads/",
  6513. "license": [
  6514. "MIT"
  6515. ],
  6516. "authors": [
  6517. {
  6518. "name": "Fabien Potencier",
  6519. "email": "fabien@symfony.com"
  6520. },
  6521. {
  6522. "name": "Symfony Community",
  6523. "homepage": "https://symfony.com/contributors"
  6524. }
  6525. ],
  6526. "description": "Provides a tight integration of the Security component into the Symfony full-stack framework",
  6527. "homepage": "https://symfony.com",
  6528. "support": {
  6529. "source": "https://github.com/symfony/security-bundle/tree/v6.2.7"
  6530. },
  6531. "funding": [
  6532. {
  6533. "url": "https://symfony.com/sponsor",
  6534. "type": "custom"
  6535. },
  6536. {
  6537. "url": "https://github.com/fabpot",
  6538. "type": "github"
  6539. },
  6540. {
  6541. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6542. "type": "tidelift"
  6543. }
  6544. ],
  6545. "time": "2023-02-21T12:32:47+00:00"
  6546. },
  6547. {
  6548. "name": "symfony/security-core",
  6549. "version": "v6.2.7",
  6550. "source": {
  6551. "type": "git",
  6552. "url": "https://github.com/symfony/security-core.git",
  6553. "reference": "5dd5509ec58bf30c98811681870f58e7f5918bbe"
  6554. },
  6555. "dist": {
  6556. "type": "zip",
  6557. "url": "https://api.github.com/repos/symfony/security-core/zipball/5dd5509ec58bf30c98811681870f58e7f5918bbe",
  6558. "reference": "5dd5509ec58bf30c98811681870f58e7f5918bbe",
  6559. "shasum": ""
  6560. },
  6561. "require": {
  6562. "php": ">=8.1",
  6563. "symfony/event-dispatcher-contracts": "^1.1|^2|^3",
  6564. "symfony/password-hasher": "^5.4|^6.0",
  6565. "symfony/service-contracts": "^1.1.6|^2|^3"
  6566. },
  6567. "conflict": {
  6568. "symfony/event-dispatcher": "<5.4",
  6569. "symfony/http-foundation": "<5.4",
  6570. "symfony/ldap": "<5.4",
  6571. "symfony/security-guard": "<5.4",
  6572. "symfony/validator": "<5.4"
  6573. },
  6574. "require-dev": {
  6575. "psr/cache": "^1.0|^2.0|^3.0",
  6576. "psr/container": "^1.1|^2.0",
  6577. "psr/log": "^1|^2|^3",
  6578. "symfony/cache": "^5.4|^6.0",
  6579. "symfony/event-dispatcher": "^5.4|^6.0",
  6580. "symfony/expression-language": "^5.4|^6.0",
  6581. "symfony/http-foundation": "^5.4|^6.0",
  6582. "symfony/ldap": "^5.4|^6.0",
  6583. "symfony/translation": "^5.4|^6.0",
  6584. "symfony/validator": "^5.4|^6.0"
  6585. },
  6586. "suggest": {
  6587. "psr/container-implementation": "To instantiate the Security class",
  6588. "symfony/event-dispatcher": "",
  6589. "symfony/expression-language": "For using the expression voter",
  6590. "symfony/http-foundation": "",
  6591. "symfony/ldap": "For using LDAP integration",
  6592. "symfony/validator": "For using the user password constraint"
  6593. },
  6594. "type": "library",
  6595. "autoload": {
  6596. "psr-4": {
  6597. "Symfony\\Component\\Security\\Core\\": ""
  6598. },
  6599. "exclude-from-classmap": [
  6600. "/Tests/"
  6601. ]
  6602. },
  6603. "notification-url": "https://packagist.org/downloads/",
  6604. "license": [
  6605. "MIT"
  6606. ],
  6607. "authors": [
  6608. {
  6609. "name": "Fabien Potencier",
  6610. "email": "fabien@symfony.com"
  6611. },
  6612. {
  6613. "name": "Symfony Community",
  6614. "homepage": "https://symfony.com/contributors"
  6615. }
  6616. ],
  6617. "description": "Symfony Security Component - Core Library",
  6618. "homepage": "https://symfony.com",
  6619. "support": {
  6620. "source": "https://github.com/symfony/security-core/tree/v6.2.7"
  6621. },
  6622. "funding": [
  6623. {
  6624. "url": "https://symfony.com/sponsor",
  6625. "type": "custom"
  6626. },
  6627. {
  6628. "url": "https://github.com/fabpot",
  6629. "type": "github"
  6630. },
  6631. {
  6632. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6633. "type": "tidelift"
  6634. }
  6635. ],
  6636. "time": "2023-02-17T11:05:34+00:00"
  6637. },
  6638. {
  6639. "name": "symfony/security-csrf",
  6640. "version": "v6.2.7",
  6641. "source": {
  6642. "type": "git",
  6643. "url": "https://github.com/symfony/security-csrf.git",
  6644. "reference": "6cce7efdce68e0670d2f19acebc21dcd0798e333"
  6645. },
  6646. "dist": {
  6647. "type": "zip",
  6648. "url": "https://api.github.com/repos/symfony/security-csrf/zipball/6cce7efdce68e0670d2f19acebc21dcd0798e333",
  6649. "reference": "6cce7efdce68e0670d2f19acebc21dcd0798e333",
  6650. "shasum": ""
  6651. },
  6652. "require": {
  6653. "php": ">=8.1",
  6654. "symfony/security-core": "^5.4|^6.0"
  6655. },
  6656. "conflict": {
  6657. "symfony/http-foundation": "<5.4"
  6658. },
  6659. "require-dev": {
  6660. "symfony/http-foundation": "^5.4|^6.0"
  6661. },
  6662. "suggest": {
  6663. "symfony/http-foundation": "For using the class SessionTokenStorage."
  6664. },
  6665. "type": "library",
  6666. "autoload": {
  6667. "psr-4": {
  6668. "Symfony\\Component\\Security\\Csrf\\": ""
  6669. },
  6670. "exclude-from-classmap": [
  6671. "/Tests/"
  6672. ]
  6673. },
  6674. "notification-url": "https://packagist.org/downloads/",
  6675. "license": [
  6676. "MIT"
  6677. ],
  6678. "authors": [
  6679. {
  6680. "name": "Fabien Potencier",
  6681. "email": "fabien@symfony.com"
  6682. },
  6683. {
  6684. "name": "Symfony Community",
  6685. "homepage": "https://symfony.com/contributors"
  6686. }
  6687. ],
  6688. "description": "Symfony Security Component - CSRF Library",
  6689. "homepage": "https://symfony.com",
  6690. "support": {
  6691. "source": "https://github.com/symfony/security-csrf/tree/v6.2.7"
  6692. },
  6693. "funding": [
  6694. {
  6695. "url": "https://symfony.com/sponsor",
  6696. "type": "custom"
  6697. },
  6698. {
  6699. "url": "https://github.com/fabpot",
  6700. "type": "github"
  6701. },
  6702. {
  6703. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6704. "type": "tidelift"
  6705. }
  6706. ],
  6707. "time": "2023-02-16T09:57:23+00:00"
  6708. },
  6709. {
  6710. "name": "symfony/security-http",
  6711. "version": "v6.2.7",
  6712. "source": {
  6713. "type": "git",
  6714. "url": "https://github.com/symfony/security-http.git",
  6715. "reference": "0b96e76243877b53e9ff1418f9e538ecf480dd69"
  6716. },
  6717. "dist": {
  6718. "type": "zip",
  6719. "url": "https://api.github.com/repos/symfony/security-http/zipball/0b96e76243877b53e9ff1418f9e538ecf480dd69",
  6720. "reference": "0b96e76243877b53e9ff1418f9e538ecf480dd69",
  6721. "shasum": ""
  6722. },
  6723. "require": {
  6724. "php": ">=8.1",
  6725. "symfony/deprecation-contracts": "^2.1|^3",
  6726. "symfony/http-foundation": "^5.4|^6.0",
  6727. "symfony/http-kernel": "^6.2",
  6728. "symfony/polyfill-mbstring": "~1.0",
  6729. "symfony/property-access": "^5.4|^6.0",
  6730. "symfony/security-core": "~6.0.19|~6.1.11|^6.2.5"
  6731. },
  6732. "conflict": {
  6733. "symfony/event-dispatcher": "<5.4.9|>=6,<6.0.9",
  6734. "symfony/security-bundle": "<5.4",
  6735. "symfony/security-csrf": "<5.4"
  6736. },
  6737. "require-dev": {
  6738. "psr/log": "^1|^2|^3",
  6739. "symfony/cache": "^5.4|^6.0",
  6740. "symfony/expression-language": "^5.4|^6.0",
  6741. "symfony/rate-limiter": "^5.4|^6.0",
  6742. "symfony/routing": "^5.4|^6.0",
  6743. "symfony/security-csrf": "^5.4|^6.0",
  6744. "symfony/translation": "^5.4|^6.0"
  6745. },
  6746. "suggest": {
  6747. "symfony/routing": "For using the HttpUtils class to create sub-requests, redirect the user, and match URLs",
  6748. "symfony/security-csrf": "For using tokens to protect authentication/logout attempts"
  6749. },
  6750. "type": "library",
  6751. "autoload": {
  6752. "psr-4": {
  6753. "Symfony\\Component\\Security\\Http\\": ""
  6754. },
  6755. "exclude-from-classmap": [
  6756. "/Tests/"
  6757. ]
  6758. },
  6759. "notification-url": "https://packagist.org/downloads/",
  6760. "license": [
  6761. "MIT"
  6762. ],
  6763. "authors": [
  6764. {
  6765. "name": "Fabien Potencier",
  6766. "email": "fabien@symfony.com"
  6767. },
  6768. {
  6769. "name": "Symfony Community",
  6770. "homepage": "https://symfony.com/contributors"
  6771. }
  6772. ],
  6773. "description": "Symfony Security Component - HTTP Integration",
  6774. "homepage": "https://symfony.com",
  6775. "support": {
  6776. "source": "https://github.com/symfony/security-http/tree/v6.2.7"
  6777. },
  6778. "funding": [
  6779. {
  6780. "url": "https://symfony.com/sponsor",
  6781. "type": "custom"
  6782. },
  6783. {
  6784. "url": "https://github.com/fabpot",
  6785. "type": "github"
  6786. },
  6787. {
  6788. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6789. "type": "tidelift"
  6790. }
  6791. ],
  6792. "time": "2023-02-28T10:56:03+00:00"
  6793. },
  6794. {
  6795. "name": "symfony/serializer",
  6796. "version": "v6.2.7",
  6797. "source": {
  6798. "type": "git",
  6799. "url": "https://github.com/symfony/serializer.git",
  6800. "reference": "df9599873fdc2540e6f4291f49be4fcc167e9cbf"
  6801. },
  6802. "dist": {
  6803. "type": "zip",
  6804. "url": "https://api.github.com/repos/symfony/serializer/zipball/df9599873fdc2540e6f4291f49be4fcc167e9cbf",
  6805. "reference": "df9599873fdc2540e6f4291f49be4fcc167e9cbf",
  6806. "shasum": ""
  6807. },
  6808. "require": {
  6809. "php": ">=8.1",
  6810. "symfony/polyfill-ctype": "~1.8"
  6811. },
  6812. "conflict": {
  6813. "doctrine/annotations": "<1.12",
  6814. "phpdocumentor/reflection-docblock": "<3.2.2",
  6815. "phpdocumentor/type-resolver": "<1.4.0|>=1.7.0",
  6816. "symfony/dependency-injection": "<5.4",
  6817. "symfony/property-access": "<5.4",
  6818. "symfony/property-info": "<5.4",
  6819. "symfony/uid": "<5.4",
  6820. "symfony/yaml": "<5.4"
  6821. },
  6822. "require-dev": {
  6823. "doctrine/annotations": "^1.12|^2",
  6824. "phpdocumentor/reflection-docblock": "^3.2|^4.0|^5.0",
  6825. "symfony/cache": "^5.4|^6.0",
  6826. "symfony/config": "^5.4|^6.0",
  6827. "symfony/dependency-injection": "^5.4|^6.0",
  6828. "symfony/error-handler": "^5.4|^6.0",
  6829. "symfony/filesystem": "^5.4|^6.0",
  6830. "symfony/form": "^5.4|^6.0",
  6831. "symfony/http-foundation": "^5.4|^6.0",
  6832. "symfony/http-kernel": "^5.4|^6.0",
  6833. "symfony/mime": "^5.4|^6.0",
  6834. "symfony/property-access": "^5.4|^6.0",
  6835. "symfony/property-info": "^5.4|^6.0",
  6836. "symfony/uid": "^5.4|^6.0",
  6837. "symfony/validator": "^5.4|^6.0",
  6838. "symfony/var-dumper": "^5.4|^6.0",
  6839. "symfony/var-exporter": "^5.4|^6.0",
  6840. "symfony/yaml": "^5.4|^6.0"
  6841. },
  6842. "suggest": {
  6843. "psr/cache-implementation": "For using the metadata cache.",
  6844. "symfony/config": "For using the XML mapping loader.",
  6845. "symfony/mime": "For using a MIME type guesser within the DataUriNormalizer.",
  6846. "symfony/property-access": "For using the ObjectNormalizer.",
  6847. "symfony/property-info": "To deserialize relations.",
  6848. "symfony/var-exporter": "For using the metadata compiler.",
  6849. "symfony/yaml": "For using the default YAML mapping loader."
  6850. },
  6851. "type": "library",
  6852. "autoload": {
  6853. "psr-4": {
  6854. "Symfony\\Component\\Serializer\\": ""
  6855. },
  6856. "exclude-from-classmap": [
  6857. "/Tests/"
  6858. ]
  6859. },
  6860. "notification-url": "https://packagist.org/downloads/",
  6861. "license": [
  6862. "MIT"
  6863. ],
  6864. "authors": [
  6865. {
  6866. "name": "Fabien Potencier",
  6867. "email": "fabien@symfony.com"
  6868. },
  6869. {
  6870. "name": "Symfony Community",
  6871. "homepage": "https://symfony.com/contributors"
  6872. }
  6873. ],
  6874. "description": "Handles serializing and deserializing data structures, including object graphs, into array structures or other formats like XML and JSON.",
  6875. "homepage": "https://symfony.com",
  6876. "support": {
  6877. "source": "https://github.com/symfony/serializer/tree/v6.2.7"
  6878. },
  6879. "funding": [
  6880. {
  6881. "url": "https://symfony.com/sponsor",
  6882. "type": "custom"
  6883. },
  6884. {
  6885. "url": "https://github.com/fabpot",
  6886. "type": "github"
  6887. },
  6888. {
  6889. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6890. "type": "tidelift"
  6891. }
  6892. ],
  6893. "time": "2023-02-24T10:42:00+00:00"
  6894. },
  6895. {
  6896. "name": "symfony/service-contracts",
  6897. "version": "v3.2.1",
  6898. "source": {
  6899. "type": "git",
  6900. "url": "https://github.com/symfony/service-contracts.git",
  6901. "reference": "a8c9cedf55f314f3a186041d19537303766df09a"
  6902. },
  6903. "dist": {
  6904. "type": "zip",
  6905. "url": "https://api.github.com/repos/symfony/service-contracts/zipball/a8c9cedf55f314f3a186041d19537303766df09a",
  6906. "reference": "a8c9cedf55f314f3a186041d19537303766df09a",
  6907. "shasum": ""
  6908. },
  6909. "require": {
  6910. "php": ">=8.1",
  6911. "psr/container": "^2.0"
  6912. },
  6913. "conflict": {
  6914. "ext-psr": "<1.1|>=2"
  6915. },
  6916. "suggest": {
  6917. "symfony/service-implementation": ""
  6918. },
  6919. "type": "library",
  6920. "extra": {
  6921. "branch-alias": {
  6922. "dev-main": "3.3-dev"
  6923. },
  6924. "thanks": {
  6925. "name": "symfony/contracts",
  6926. "url": "https://github.com/symfony/contracts"
  6927. }
  6928. },
  6929. "autoload": {
  6930. "psr-4": {
  6931. "Symfony\\Contracts\\Service\\": ""
  6932. },
  6933. "exclude-from-classmap": [
  6934. "/Test/"
  6935. ]
  6936. },
  6937. "notification-url": "https://packagist.org/downloads/",
  6938. "license": [
  6939. "MIT"
  6940. ],
  6941. "authors": [
  6942. {
  6943. "name": "Nicolas Grekas",
  6944. "email": "p@tchwork.com"
  6945. },
  6946. {
  6947. "name": "Symfony Community",
  6948. "homepage": "https://symfony.com/contributors"
  6949. }
  6950. ],
  6951. "description": "Generic abstractions related to writing services",
  6952. "homepage": "https://symfony.com",
  6953. "keywords": [
  6954. "abstractions",
  6955. "contracts",
  6956. "decoupling",
  6957. "interfaces",
  6958. "interoperability",
  6959. "standards"
  6960. ],
  6961. "support": {
  6962. "source": "https://github.com/symfony/service-contracts/tree/v3.2.1"
  6963. },
  6964. "funding": [
  6965. {
  6966. "url": "https://symfony.com/sponsor",
  6967. "type": "custom"
  6968. },
  6969. {
  6970. "url": "https://github.com/fabpot",
  6971. "type": "github"
  6972. },
  6973. {
  6974. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6975. "type": "tidelift"
  6976. }
  6977. ],
  6978. "time": "2023-03-01T10:32:47+00:00"
  6979. },
  6980. {
  6981. "name": "symfony/stopwatch",
  6982. "version": "v6.2.7",
  6983. "source": {
  6984. "type": "git",
  6985. "url": "https://github.com/symfony/stopwatch.git",
  6986. "reference": "f3adc98c1061875dd2edcd45e5b04e63d0e29f8f"
  6987. },
  6988. "dist": {
  6989. "type": "zip",
  6990. "url": "https://api.github.com/repos/symfony/stopwatch/zipball/f3adc98c1061875dd2edcd45e5b04e63d0e29f8f",
  6991. "reference": "f3adc98c1061875dd2edcd45e5b04e63d0e29f8f",
  6992. "shasum": ""
  6993. },
  6994. "require": {
  6995. "php": ">=8.1",
  6996. "symfony/service-contracts": "^1|^2|^3"
  6997. },
  6998. "type": "library",
  6999. "autoload": {
  7000. "psr-4": {
  7001. "Symfony\\Component\\Stopwatch\\": ""
  7002. },
  7003. "exclude-from-classmap": [
  7004. "/Tests/"
  7005. ]
  7006. },
  7007. "notification-url": "https://packagist.org/downloads/",
  7008. "license": [
  7009. "MIT"
  7010. ],
  7011. "authors": [
  7012. {
  7013. "name": "Fabien Potencier",
  7014. "email": "fabien@symfony.com"
  7015. },
  7016. {
  7017. "name": "Symfony Community",
  7018. "homepage": "https://symfony.com/contributors"
  7019. }
  7020. ],
  7021. "description": "Provides a way to profile code",
  7022. "homepage": "https://symfony.com",
  7023. "support": {
  7024. "source": "https://github.com/symfony/stopwatch/tree/v6.2.7"
  7025. },
  7026. "funding": [
  7027. {
  7028. "url": "https://symfony.com/sponsor",
  7029. "type": "custom"
  7030. },
  7031. {
  7032. "url": "https://github.com/fabpot",
  7033. "type": "github"
  7034. },
  7035. {
  7036. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7037. "type": "tidelift"
  7038. }
  7039. ],
  7040. "time": "2023-02-14T08:44:56+00:00"
  7041. },
  7042. {
  7043. "name": "symfony/string",
  7044. "version": "v6.2.7",
  7045. "source": {
  7046. "type": "git",
  7047. "url": "https://github.com/symfony/string.git",
  7048. "reference": "67b8c1eec78296b85dc1c7d9743830160218993d"
  7049. },
  7050. "dist": {
  7051. "type": "zip",
  7052. "url": "https://api.github.com/repos/symfony/string/zipball/67b8c1eec78296b85dc1c7d9743830160218993d",
  7053. "reference": "67b8c1eec78296b85dc1c7d9743830160218993d",
  7054. "shasum": ""
  7055. },
  7056. "require": {
  7057. "php": ">=8.1",
  7058. "symfony/polyfill-ctype": "~1.8",
  7059. "symfony/polyfill-intl-grapheme": "~1.0",
  7060. "symfony/polyfill-intl-normalizer": "~1.0",
  7061. "symfony/polyfill-mbstring": "~1.0"
  7062. },
  7063. "conflict": {
  7064. "symfony/translation-contracts": "<2.0"
  7065. },
  7066. "require-dev": {
  7067. "symfony/error-handler": "^5.4|^6.0",
  7068. "symfony/http-client": "^5.4|^6.0",
  7069. "symfony/intl": "^6.2",
  7070. "symfony/translation-contracts": "^2.0|^3.0",
  7071. "symfony/var-exporter": "^5.4|^6.0"
  7072. },
  7073. "type": "library",
  7074. "autoload": {
  7075. "files": [
  7076. "Resources/functions.php"
  7077. ],
  7078. "psr-4": {
  7079. "Symfony\\Component\\String\\": ""
  7080. },
  7081. "exclude-from-classmap": [
  7082. "/Tests/"
  7083. ]
  7084. },
  7085. "notification-url": "https://packagist.org/downloads/",
  7086. "license": [
  7087. "MIT"
  7088. ],
  7089. "authors": [
  7090. {
  7091. "name": "Nicolas Grekas",
  7092. "email": "p@tchwork.com"
  7093. },
  7094. {
  7095. "name": "Symfony Community",
  7096. "homepage": "https://symfony.com/contributors"
  7097. }
  7098. ],
  7099. "description": "Provides an object-oriented API to strings and deals with bytes, UTF-8 code points and grapheme clusters in a unified way",
  7100. "homepage": "https://symfony.com",
  7101. "keywords": [
  7102. "grapheme",
  7103. "i18n",
  7104. "string",
  7105. "unicode",
  7106. "utf-8",
  7107. "utf8"
  7108. ],
  7109. "support": {
  7110. "source": "https://github.com/symfony/string/tree/v6.2.7"
  7111. },
  7112. "funding": [
  7113. {
  7114. "url": "https://symfony.com/sponsor",
  7115. "type": "custom"
  7116. },
  7117. {
  7118. "url": "https://github.com/fabpot",
  7119. "type": "github"
  7120. },
  7121. {
  7122. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7123. "type": "tidelift"
  7124. }
  7125. ],
  7126. "time": "2023-02-24T10:42:00+00:00"
  7127. },
  7128. {
  7129. "name": "symfony/translation",
  7130. "version": "v6.2.7",
  7131. "source": {
  7132. "type": "git",
  7133. "url": "https://github.com/symfony/translation.git",
  7134. "reference": "90db1c6138c90527917671cd9ffa9e8b359e3a73"
  7135. },
  7136. "dist": {
  7137. "type": "zip",
  7138. "url": "https://api.github.com/repos/symfony/translation/zipball/90db1c6138c90527917671cd9ffa9e8b359e3a73",
  7139. "reference": "90db1c6138c90527917671cd9ffa9e8b359e3a73",
  7140. "shasum": ""
  7141. },
  7142. "require": {
  7143. "php": ">=8.1",
  7144. "symfony/polyfill-mbstring": "~1.0",
  7145. "symfony/translation-contracts": "^2.3|^3.0"
  7146. },
  7147. "conflict": {
  7148. "symfony/config": "<5.4",
  7149. "symfony/console": "<5.4",
  7150. "symfony/dependency-injection": "<5.4",
  7151. "symfony/http-kernel": "<5.4",
  7152. "symfony/twig-bundle": "<5.4",
  7153. "symfony/yaml": "<5.4"
  7154. },
  7155. "provide": {
  7156. "symfony/translation-implementation": "2.3|3.0"
  7157. },
  7158. "require-dev": {
  7159. "nikic/php-parser": "^4.13",
  7160. "psr/log": "^1|^2|^3",
  7161. "symfony/config": "^5.4|^6.0",
  7162. "symfony/console": "^5.4|^6.0",
  7163. "symfony/dependency-injection": "^5.4|^6.0",
  7164. "symfony/finder": "^5.4|^6.0",
  7165. "symfony/http-client-contracts": "^1.1|^2.0|^3.0",
  7166. "symfony/http-kernel": "^5.4|^6.0",
  7167. "symfony/intl": "^5.4|^6.0",
  7168. "symfony/polyfill-intl-icu": "^1.21",
  7169. "symfony/routing": "^5.4|^6.0",
  7170. "symfony/service-contracts": "^1.1.2|^2|^3",
  7171. "symfony/yaml": "^5.4|^6.0"
  7172. },
  7173. "suggest": {
  7174. "nikic/php-parser": "To use PhpAstExtractor",
  7175. "psr/log-implementation": "To use logging capability in translator",
  7176. "symfony/config": "",
  7177. "symfony/yaml": ""
  7178. },
  7179. "type": "library",
  7180. "autoload": {
  7181. "files": [
  7182. "Resources/functions.php"
  7183. ],
  7184. "psr-4": {
  7185. "Symfony\\Component\\Translation\\": ""
  7186. },
  7187. "exclude-from-classmap": [
  7188. "/Tests/"
  7189. ]
  7190. },
  7191. "notification-url": "https://packagist.org/downloads/",
  7192. "license": [
  7193. "MIT"
  7194. ],
  7195. "authors": [
  7196. {
  7197. "name": "Fabien Potencier",
  7198. "email": "fabien@symfony.com"
  7199. },
  7200. {
  7201. "name": "Symfony Community",
  7202. "homepage": "https://symfony.com/contributors"
  7203. }
  7204. ],
  7205. "description": "Provides tools to internationalize your application",
  7206. "homepage": "https://symfony.com",
  7207. "support": {
  7208. "source": "https://github.com/symfony/translation/tree/v6.2.7"
  7209. },
  7210. "funding": [
  7211. {
  7212. "url": "https://symfony.com/sponsor",
  7213. "type": "custom"
  7214. },
  7215. {
  7216. "url": "https://github.com/fabpot",
  7217. "type": "github"
  7218. },
  7219. {
  7220. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7221. "type": "tidelift"
  7222. }
  7223. ],
  7224. "time": "2023-02-24T10:42:00+00:00"
  7225. },
  7226. {
  7227. "name": "symfony/translation-contracts",
  7228. "version": "v3.2.1",
  7229. "source": {
  7230. "type": "git",
  7231. "url": "https://github.com/symfony/translation-contracts.git",
  7232. "reference": "dfec258b9dd17a6b24420d464c43bffe347441c8"
  7233. },
  7234. "dist": {
  7235. "type": "zip",
  7236. "url": "https://api.github.com/repos/symfony/translation-contracts/zipball/dfec258b9dd17a6b24420d464c43bffe347441c8",
  7237. "reference": "dfec258b9dd17a6b24420d464c43bffe347441c8",
  7238. "shasum": ""
  7239. },
  7240. "require": {
  7241. "php": ">=8.1"
  7242. },
  7243. "suggest": {
  7244. "symfony/translation-implementation": ""
  7245. },
  7246. "type": "library",
  7247. "extra": {
  7248. "branch-alias": {
  7249. "dev-main": "3.3-dev"
  7250. },
  7251. "thanks": {
  7252. "name": "symfony/contracts",
  7253. "url": "https://github.com/symfony/contracts"
  7254. }
  7255. },
  7256. "autoload": {
  7257. "psr-4": {
  7258. "Symfony\\Contracts\\Translation\\": ""
  7259. },
  7260. "exclude-from-classmap": [
  7261. "/Test/"
  7262. ]
  7263. },
  7264. "notification-url": "https://packagist.org/downloads/",
  7265. "license": [
  7266. "MIT"
  7267. ],
  7268. "authors": [
  7269. {
  7270. "name": "Nicolas Grekas",
  7271. "email": "p@tchwork.com"
  7272. },
  7273. {
  7274. "name": "Symfony Community",
  7275. "homepage": "https://symfony.com/contributors"
  7276. }
  7277. ],
  7278. "description": "Generic abstractions related to translation",
  7279. "homepage": "https://symfony.com",
  7280. "keywords": [
  7281. "abstractions",
  7282. "contracts",
  7283. "decoupling",
  7284. "interfaces",
  7285. "interoperability",
  7286. "standards"
  7287. ],
  7288. "support": {
  7289. "source": "https://github.com/symfony/translation-contracts/tree/v3.2.1"
  7290. },
  7291. "funding": [
  7292. {
  7293. "url": "https://symfony.com/sponsor",
  7294. "type": "custom"
  7295. },
  7296. {
  7297. "url": "https://github.com/fabpot",
  7298. "type": "github"
  7299. },
  7300. {
  7301. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7302. "type": "tidelift"
  7303. }
  7304. ],
  7305. "time": "2023-03-01T10:32:47+00:00"
  7306. },
  7307. {
  7308. "name": "symfony/twig-bridge",
  7309. "version": "v6.2.7",
  7310. "source": {
  7311. "type": "git",
  7312. "url": "https://github.com/symfony/twig-bridge.git",
  7313. "reference": "f1899fd3b8a29f9544440a716a1ed7d1121c4615"
  7314. },
  7315. "dist": {
  7316. "type": "zip",
  7317. "url": "https://api.github.com/repos/symfony/twig-bridge/zipball/f1899fd3b8a29f9544440a716a1ed7d1121c4615",
  7318. "reference": "f1899fd3b8a29f9544440a716a1ed7d1121c4615",
  7319. "shasum": ""
  7320. },
  7321. "require": {
  7322. "php": ">=8.1",
  7323. "symfony/translation-contracts": "^1.1|^2|^3",
  7324. "twig/twig": "^2.13|^3.0.4"
  7325. },
  7326. "conflict": {
  7327. "phpdocumentor/reflection-docblock": "<3.2.2",
  7328. "phpdocumentor/type-resolver": "<1.4.0",
  7329. "symfony/console": "<5.4",
  7330. "symfony/form": "<6.2.7",
  7331. "symfony/http-foundation": "<5.4",
  7332. "symfony/http-kernel": "<6.2",
  7333. "symfony/mime": "<6.2",
  7334. "symfony/translation": "<5.4",
  7335. "symfony/workflow": "<5.4"
  7336. },
  7337. "require-dev": {
  7338. "doctrine/annotations": "^1.12|^2",
  7339. "egulias/email-validator": "^2.1.10|^3|^4",
  7340. "league/html-to-markdown": "^5.0",
  7341. "phpdocumentor/reflection-docblock": "^3.0|^4.0|^5.0",
  7342. "symfony/asset": "^5.4|^6.0",
  7343. "symfony/console": "^5.4|^6.0",
  7344. "symfony/dependency-injection": "^5.4|^6.0",
  7345. "symfony/expression-language": "^5.4|^6.0",
  7346. "symfony/finder": "^5.4|^6.0",
  7347. "symfony/form": "^6.2.7",
  7348. "symfony/html-sanitizer": "^6.1",
  7349. "symfony/http-foundation": "^5.4|^6.0",
  7350. "symfony/http-kernel": "^6.2",
  7351. "symfony/intl": "^5.4|^6.0",
  7352. "symfony/mime": "^6.2",
  7353. "symfony/polyfill-intl-icu": "~1.0",
  7354. "symfony/property-info": "^5.4|^6.0",
  7355. "symfony/routing": "^5.4|^6.0",
  7356. "symfony/security-acl": "^2.8|^3.0",
  7357. "symfony/security-core": "^5.4|^6.0",
  7358. "symfony/security-csrf": "^5.4|^6.0",
  7359. "symfony/security-http": "^5.4|^6.0",
  7360. "symfony/serializer": "^6.2",
  7361. "symfony/stopwatch": "^5.4|^6.0",
  7362. "symfony/translation": "^5.4|^6.0",
  7363. "symfony/web-link": "^5.4|^6.0",
  7364. "symfony/workflow": "^5.4|^6.0",
  7365. "symfony/yaml": "^5.4|^6.0",
  7366. "twig/cssinliner-extra": "^2.12|^3",
  7367. "twig/inky-extra": "^2.12|^3",
  7368. "twig/markdown-extra": "^2.12|^3"
  7369. },
  7370. "suggest": {
  7371. "symfony/asset": "For using the AssetExtension",
  7372. "symfony/expression-language": "For using the ExpressionExtension",
  7373. "symfony/finder": "",
  7374. "symfony/form": "For using the FormExtension",
  7375. "symfony/html-sanitizer": "For using the HtmlSanitizerExtension",
  7376. "symfony/http-kernel": "For using the HttpKernelExtension",
  7377. "symfony/routing": "For using the RoutingExtension",
  7378. "symfony/security-core": "For using the SecurityExtension",
  7379. "symfony/security-csrf": "For using the CsrfExtension",
  7380. "symfony/security-http": "For using the LogoutUrlExtension",
  7381. "symfony/stopwatch": "For using the StopwatchExtension",
  7382. "symfony/translation": "For using the TranslationExtension",
  7383. "symfony/var-dumper": "For using the DumpExtension",
  7384. "symfony/web-link": "For using the WebLinkExtension",
  7385. "symfony/yaml": "For using the YamlExtension"
  7386. },
  7387. "type": "symfony-bridge",
  7388. "autoload": {
  7389. "psr-4": {
  7390. "Symfony\\Bridge\\Twig\\": ""
  7391. },
  7392. "exclude-from-classmap": [
  7393. "/Tests/"
  7394. ]
  7395. },
  7396. "notification-url": "https://packagist.org/downloads/",
  7397. "license": [
  7398. "MIT"
  7399. ],
  7400. "authors": [
  7401. {
  7402. "name": "Fabien Potencier",
  7403. "email": "fabien@symfony.com"
  7404. },
  7405. {
  7406. "name": "Symfony Community",
  7407. "homepage": "https://symfony.com/contributors"
  7408. }
  7409. ],
  7410. "description": "Provides integration for Twig with various Symfony components",
  7411. "homepage": "https://symfony.com",
  7412. "support": {
  7413. "source": "https://github.com/symfony/twig-bridge/tree/v6.2.7"
  7414. },
  7415. "funding": [
  7416. {
  7417. "url": "https://symfony.com/sponsor",
  7418. "type": "custom"
  7419. },
  7420. {
  7421. "url": "https://github.com/fabpot",
  7422. "type": "github"
  7423. },
  7424. {
  7425. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7426. "type": "tidelift"
  7427. }
  7428. ],
  7429. "time": "2023-02-24T10:42:00+00:00"
  7430. },
  7431. {
  7432. "name": "symfony/twig-bundle",
  7433. "version": "v6.2.7",
  7434. "source": {
  7435. "type": "git",
  7436. "url": "https://github.com/symfony/twig-bundle.git",
  7437. "reference": "8bb562655c6ae4b8fae9cf72077591f38b961566"
  7438. },
  7439. "dist": {
  7440. "type": "zip",
  7441. "url": "https://api.github.com/repos/symfony/twig-bundle/zipball/8bb562655c6ae4b8fae9cf72077591f38b961566",
  7442. "reference": "8bb562655c6ae4b8fae9cf72077591f38b961566",
  7443. "shasum": ""
  7444. },
  7445. "require": {
  7446. "composer-runtime-api": ">=2.1",
  7447. "php": ">=8.1",
  7448. "symfony/config": "^6.1",
  7449. "symfony/dependency-injection": "^6.1",
  7450. "symfony/http-foundation": "^5.4|^6.0",
  7451. "symfony/http-kernel": "^6.2",
  7452. "symfony/twig-bridge": "^6.2",
  7453. "twig/twig": "^2.13|^3.0.4"
  7454. },
  7455. "conflict": {
  7456. "symfony/framework-bundle": "<5.4",
  7457. "symfony/translation": "<5.4"
  7458. },
  7459. "require-dev": {
  7460. "doctrine/annotations": "^1.10.4|^2",
  7461. "symfony/asset": "^5.4|^6.0",
  7462. "symfony/expression-language": "^5.4|^6.0",
  7463. "symfony/finder": "^5.4|^6.0",
  7464. "symfony/form": "^5.4|^6.0",
  7465. "symfony/framework-bundle": "^5.4|^6.0",
  7466. "symfony/routing": "^5.4|^6.0",
  7467. "symfony/stopwatch": "^5.4|^6.0",
  7468. "symfony/translation": "^5.4|^6.0",
  7469. "symfony/web-link": "^5.4|^6.0",
  7470. "symfony/yaml": "^5.4|^6.0"
  7471. },
  7472. "type": "symfony-bundle",
  7473. "autoload": {
  7474. "psr-4": {
  7475. "Symfony\\Bundle\\TwigBundle\\": ""
  7476. },
  7477. "exclude-from-classmap": [
  7478. "/Tests/"
  7479. ]
  7480. },
  7481. "notification-url": "https://packagist.org/downloads/",
  7482. "license": [
  7483. "MIT"
  7484. ],
  7485. "authors": [
  7486. {
  7487. "name": "Fabien Potencier",
  7488. "email": "fabien@symfony.com"
  7489. },
  7490. {
  7491. "name": "Symfony Community",
  7492. "homepage": "https://symfony.com/contributors"
  7493. }
  7494. ],
  7495. "description": "Provides a tight integration of Twig into the Symfony full-stack framework",
  7496. "homepage": "https://symfony.com",
  7497. "support": {
  7498. "source": "https://github.com/symfony/twig-bundle/tree/v6.2.7"
  7499. },
  7500. "funding": [
  7501. {
  7502. "url": "https://symfony.com/sponsor",
  7503. "type": "custom"
  7504. },
  7505. {
  7506. "url": "https://github.com/fabpot",
  7507. "type": "github"
  7508. },
  7509. {
  7510. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7511. "type": "tidelift"
  7512. }
  7513. ],
  7514. "time": "2023-02-14T08:44:56+00:00"
  7515. },
  7516. {
  7517. "name": "symfony/validator",
  7518. "version": "v6.2.7",
  7519. "source": {
  7520. "type": "git",
  7521. "url": "https://github.com/symfony/validator.git",
  7522. "reference": "4b3bd0a9545bdf7ebc84f0a494c05219010bb403"
  7523. },
  7524. "dist": {
  7525. "type": "zip",
  7526. "url": "https://api.github.com/repos/symfony/validator/zipball/4b3bd0a9545bdf7ebc84f0a494c05219010bb403",
  7527. "reference": "4b3bd0a9545bdf7ebc84f0a494c05219010bb403",
  7528. "shasum": ""
  7529. },
  7530. "require": {
  7531. "php": ">=8.1",
  7532. "symfony/deprecation-contracts": "^2.1|^3",
  7533. "symfony/polyfill-ctype": "~1.8",
  7534. "symfony/polyfill-mbstring": "~1.0",
  7535. "symfony/translation-contracts": "^1.1|^2|^3"
  7536. },
  7537. "conflict": {
  7538. "doctrine/annotations": "<1.13",
  7539. "doctrine/lexer": "<1.1",
  7540. "phpunit/phpunit": "<5.4.3",
  7541. "symfony/dependency-injection": "<5.4",
  7542. "symfony/expression-language": "<5.4",
  7543. "symfony/http-kernel": "<5.4",
  7544. "symfony/intl": "<5.4",
  7545. "symfony/property-info": "<5.4",
  7546. "symfony/translation": "<5.4",
  7547. "symfony/yaml": "<5.4"
  7548. },
  7549. "require-dev": {
  7550. "doctrine/annotations": "^1.13|^2",
  7551. "egulias/email-validator": "^2.1.10|^3|^4",
  7552. "symfony/cache": "^5.4|^6.0",
  7553. "symfony/config": "^5.4|^6.0",
  7554. "symfony/console": "^5.4|^6.0",
  7555. "symfony/dependency-injection": "^5.4|^6.0",
  7556. "symfony/expression-language": "^5.4|^6.0",
  7557. "symfony/finder": "^5.4|^6.0",
  7558. "symfony/http-client": "^5.4|^6.0",
  7559. "symfony/http-foundation": "^5.4|^6.0",
  7560. "symfony/http-kernel": "^5.4|^6.0",
  7561. "symfony/intl": "^5.4|^6.0",
  7562. "symfony/mime": "^5.4|^6.0",
  7563. "symfony/property-access": "^5.4|^6.0",
  7564. "symfony/property-info": "^5.4|^6.0",
  7565. "symfony/translation": "^5.4|^6.0",
  7566. "symfony/yaml": "^5.4|^6.0"
  7567. },
  7568. "suggest": {
  7569. "egulias/email-validator": "Strict (RFC compliant) email validation",
  7570. "psr/cache-implementation": "For using the mapping cache.",
  7571. "symfony/config": "",
  7572. "symfony/expression-language": "For using the Expression validator and the ExpressionLanguageSyntax constraints",
  7573. "symfony/http-foundation": "",
  7574. "symfony/intl": "",
  7575. "symfony/property-access": "For accessing properties within comparison constraints",
  7576. "symfony/property-info": "To automatically add NotNull and Type constraints",
  7577. "symfony/translation": "For translating validation errors.",
  7578. "symfony/yaml": ""
  7579. },
  7580. "type": "library",
  7581. "autoload": {
  7582. "psr-4": {
  7583. "Symfony\\Component\\Validator\\": ""
  7584. },
  7585. "exclude-from-classmap": [
  7586. "/Tests/"
  7587. ]
  7588. },
  7589. "notification-url": "https://packagist.org/downloads/",
  7590. "license": [
  7591. "MIT"
  7592. ],
  7593. "authors": [
  7594. {
  7595. "name": "Fabien Potencier",
  7596. "email": "fabien@symfony.com"
  7597. },
  7598. {
  7599. "name": "Symfony Community",
  7600. "homepage": "https://symfony.com/contributors"
  7601. }
  7602. ],
  7603. "description": "Provides tools to validate values",
  7604. "homepage": "https://symfony.com",
  7605. "support": {
  7606. "source": "https://github.com/symfony/validator/tree/v6.2.7"
  7607. },
  7608. "funding": [
  7609. {
  7610. "url": "https://symfony.com/sponsor",
  7611. "type": "custom"
  7612. },
  7613. {
  7614. "url": "https://github.com/fabpot",
  7615. "type": "github"
  7616. },
  7617. {
  7618. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7619. "type": "tidelift"
  7620. }
  7621. ],
  7622. "time": "2023-02-24T10:42:00+00:00"
  7623. },
  7624. {
  7625. "name": "symfony/var-dumper",
  7626. "version": "v6.2.7",
  7627. "source": {
  7628. "type": "git",
  7629. "url": "https://github.com/symfony/var-dumper.git",
  7630. "reference": "cf8d4ca1ddc1e3cc242375deb8fc23e54f5e2a1e"
  7631. },
  7632. "dist": {
  7633. "type": "zip",
  7634. "url": "https://api.github.com/repos/symfony/var-dumper/zipball/cf8d4ca1ddc1e3cc242375deb8fc23e54f5e2a1e",
  7635. "reference": "cf8d4ca1ddc1e3cc242375deb8fc23e54f5e2a1e",
  7636. "shasum": ""
  7637. },
  7638. "require": {
  7639. "php": ">=8.1",
  7640. "symfony/polyfill-mbstring": "~1.0"
  7641. },
  7642. "conflict": {
  7643. "phpunit/phpunit": "<5.4.3",
  7644. "symfony/console": "<5.4"
  7645. },
  7646. "require-dev": {
  7647. "ext-iconv": "*",
  7648. "symfony/console": "^5.4|^6.0",
  7649. "symfony/process": "^5.4|^6.0",
  7650. "symfony/uid": "^5.4|^6.0",
  7651. "twig/twig": "^2.13|^3.0.4"
  7652. },
  7653. "suggest": {
  7654. "ext-iconv": "To convert non-UTF-8 strings to UTF-8 (or symfony/polyfill-iconv in case ext-iconv cannot be used).",
  7655. "ext-intl": "To show region name in time zone dump",
  7656. "symfony/console": "To use the ServerDumpCommand and/or the bin/var-dump-server script"
  7657. },
  7658. "bin": [
  7659. "Resources/bin/var-dump-server"
  7660. ],
  7661. "type": "library",
  7662. "autoload": {
  7663. "files": [
  7664. "Resources/functions/dump.php"
  7665. ],
  7666. "psr-4": {
  7667. "Symfony\\Component\\VarDumper\\": ""
  7668. },
  7669. "exclude-from-classmap": [
  7670. "/Tests/"
  7671. ]
  7672. },
  7673. "notification-url": "https://packagist.org/downloads/",
  7674. "license": [
  7675. "MIT"
  7676. ],
  7677. "authors": [
  7678. {
  7679. "name": "Nicolas Grekas",
  7680. "email": "p@tchwork.com"
  7681. },
  7682. {
  7683. "name": "Symfony Community",
  7684. "homepage": "https://symfony.com/contributors"
  7685. }
  7686. ],
  7687. "description": "Provides mechanisms for walking through any arbitrary PHP variable",
  7688. "homepage": "https://symfony.com",
  7689. "keywords": [
  7690. "debug",
  7691. "dump"
  7692. ],
  7693. "support": {
  7694. "source": "https://github.com/symfony/var-dumper/tree/v6.2.7"
  7695. },
  7696. "funding": [
  7697. {
  7698. "url": "https://symfony.com/sponsor",
  7699. "type": "custom"
  7700. },
  7701. {
  7702. "url": "https://github.com/fabpot",
  7703. "type": "github"
  7704. },
  7705. {
  7706. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7707. "type": "tidelift"
  7708. }
  7709. ],
  7710. "time": "2023-02-24T10:42:00+00:00"
  7711. },
  7712. {
  7713. "name": "symfony/var-exporter",
  7714. "version": "v6.2.7",
  7715. "source": {
  7716. "type": "git",
  7717. "url": "https://github.com/symfony/var-exporter.git",
  7718. "reference": "86062dd0103530e151588c8f60f5b85a139f1442"
  7719. },
  7720. "dist": {
  7721. "type": "zip",
  7722. "url": "https://api.github.com/repos/symfony/var-exporter/zipball/86062dd0103530e151588c8f60f5b85a139f1442",
  7723. "reference": "86062dd0103530e151588c8f60f5b85a139f1442",
  7724. "shasum": ""
  7725. },
  7726. "require": {
  7727. "php": ">=8.1"
  7728. },
  7729. "require-dev": {
  7730. "symfony/var-dumper": "^5.4|^6.0"
  7731. },
  7732. "type": "library",
  7733. "autoload": {
  7734. "psr-4": {
  7735. "Symfony\\Component\\VarExporter\\": ""
  7736. },
  7737. "exclude-from-classmap": [
  7738. "/Tests/"
  7739. ]
  7740. },
  7741. "notification-url": "https://packagist.org/downloads/",
  7742. "license": [
  7743. "MIT"
  7744. ],
  7745. "authors": [
  7746. {
  7747. "name": "Nicolas Grekas",
  7748. "email": "p@tchwork.com"
  7749. },
  7750. {
  7751. "name": "Symfony Community",
  7752. "homepage": "https://symfony.com/contributors"
  7753. }
  7754. ],
  7755. "description": "Allows exporting any serializable PHP data structure to plain PHP code",
  7756. "homepage": "https://symfony.com",
  7757. "keywords": [
  7758. "clone",
  7759. "construct",
  7760. "export",
  7761. "hydrate",
  7762. "instantiate",
  7763. "lazy loading",
  7764. "proxy",
  7765. "serialize"
  7766. ],
  7767. "support": {
  7768. "source": "https://github.com/symfony/var-exporter/tree/v6.2.7"
  7769. },
  7770. "funding": [
  7771. {
  7772. "url": "https://symfony.com/sponsor",
  7773. "type": "custom"
  7774. },
  7775. {
  7776. "url": "https://github.com/fabpot",
  7777. "type": "github"
  7778. },
  7779. {
  7780. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7781. "type": "tidelift"
  7782. }
  7783. ],
  7784. "time": "2023-02-24T10:42:00+00:00"
  7785. },
  7786. {
  7787. "name": "symfony/web-link",
  7788. "version": "v6.2.7",
  7789. "source": {
  7790. "type": "git",
  7791. "url": "https://github.com/symfony/web-link.git",
  7792. "reference": "410aac2034608ac661cdca1968e3c56d4164abc8"
  7793. },
  7794. "dist": {
  7795. "type": "zip",
  7796. "url": "https://api.github.com/repos/symfony/web-link/zipball/410aac2034608ac661cdca1968e3c56d4164abc8",
  7797. "reference": "410aac2034608ac661cdca1968e3c56d4164abc8",
  7798. "shasum": ""
  7799. },
  7800. "require": {
  7801. "php": ">=8.1",
  7802. "psr/link": "^1.1|^2.0"
  7803. },
  7804. "conflict": {
  7805. "symfony/http-kernel": "<5.4"
  7806. },
  7807. "provide": {
  7808. "psr/link-implementation": "1.0|2.0"
  7809. },
  7810. "require-dev": {
  7811. "symfony/http-kernel": "^5.4|^6.0"
  7812. },
  7813. "suggest": {
  7814. "symfony/http-kernel": ""
  7815. },
  7816. "type": "library",
  7817. "autoload": {
  7818. "psr-4": {
  7819. "Symfony\\Component\\WebLink\\": ""
  7820. },
  7821. "exclude-from-classmap": [
  7822. "/Tests/"
  7823. ]
  7824. },
  7825. "notification-url": "https://packagist.org/downloads/",
  7826. "license": [
  7827. "MIT"
  7828. ],
  7829. "authors": [
  7830. {
  7831. "name": "Kévin Dunglas",
  7832. "email": "dunglas@gmail.com"
  7833. },
  7834. {
  7835. "name": "Symfony Community",
  7836. "homepage": "https://symfony.com/contributors"
  7837. }
  7838. ],
  7839. "description": "Manages links between resources",
  7840. "homepage": "https://symfony.com",
  7841. "keywords": [
  7842. "dns-prefetch",
  7843. "http",
  7844. "http2",
  7845. "link",
  7846. "performance",
  7847. "prefetch",
  7848. "preload",
  7849. "prerender",
  7850. "psr13",
  7851. "push"
  7852. ],
  7853. "support": {
  7854. "source": "https://github.com/symfony/web-link/tree/v6.2.7"
  7855. },
  7856. "funding": [
  7857. {
  7858. "url": "https://symfony.com/sponsor",
  7859. "type": "custom"
  7860. },
  7861. {
  7862. "url": "https://github.com/fabpot",
  7863. "type": "github"
  7864. },
  7865. {
  7866. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7867. "type": "tidelift"
  7868. }
  7869. ],
  7870. "time": "2023-02-14T08:44:56+00:00"
  7871. },
  7872. {
  7873. "name": "symfony/webpack-encore-bundle",
  7874. "version": "v1.16.1",
  7875. "source": {
  7876. "type": "git",
  7877. "url": "https://github.com/symfony/webpack-encore-bundle.git",
  7878. "reference": "1862d71e483769b40278548a30e756ce13ef9d4c"
  7879. },
  7880. "dist": {
  7881. "type": "zip",
  7882. "url": "https://api.github.com/repos/symfony/webpack-encore-bundle/zipball/1862d71e483769b40278548a30e756ce13ef9d4c",
  7883. "reference": "1862d71e483769b40278548a30e756ce13ef9d4c",
  7884. "shasum": ""
  7885. },
  7886. "require": {
  7887. "php": ">=7.1.3",
  7888. "symfony/asset": "^4.4 || ^5.0 || ^6.0",
  7889. "symfony/config": "^4.4 || ^5.0 || ^6.0",
  7890. "symfony/dependency-injection": "^4.4 || ^5.0 || ^6.0",
  7891. "symfony/deprecation-contracts": "^2.1 || ^3.0",
  7892. "symfony/http-kernel": "^4.4 || ^5.0 || ^6.0",
  7893. "symfony/polyfill-php80": "^1.25.0",
  7894. "symfony/service-contracts": "^1.0 || ^2.0 || ^3.0"
  7895. },
  7896. "require-dev": {
  7897. "symfony/framework-bundle": "^4.4 || ^5.0 || ^6.0",
  7898. "symfony/phpunit-bridge": "^5.3 || ^6.0",
  7899. "symfony/twig-bundle": "^4.4 || ^5.0 || ^6.0",
  7900. "symfony/web-link": "^4.4 || ^5.0 || ^6.0"
  7901. },
  7902. "type": "symfony-bundle",
  7903. "extra": {
  7904. "thanks": {
  7905. "name": "symfony/webpack-encore",
  7906. "url": "https://github.com/symfony/webpack-encore"
  7907. }
  7908. },
  7909. "autoload": {
  7910. "psr-4": {
  7911. "Symfony\\WebpackEncoreBundle\\": "src"
  7912. }
  7913. },
  7914. "notification-url": "https://packagist.org/downloads/",
  7915. "license": [
  7916. "MIT"
  7917. ],
  7918. "authors": [
  7919. {
  7920. "name": "Symfony Community",
  7921. "homepage": "https://symfony.com/contributors"
  7922. }
  7923. ],
  7924. "description": "Integration with your Symfony app & Webpack Encore!",
  7925. "support": {
  7926. "issues": "https://github.com/symfony/webpack-encore-bundle/issues",
  7927. "source": "https://github.com/symfony/webpack-encore-bundle/tree/v1.16.1"
  7928. },
  7929. "funding": [
  7930. {
  7931. "url": "https://symfony.com/sponsor",
  7932. "type": "custom"
  7933. },
  7934. {
  7935. "url": "https://github.com/fabpot",
  7936. "type": "github"
  7937. },
  7938. {
  7939. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7940. "type": "tidelift"
  7941. }
  7942. ],
  7943. "time": "2023-01-18T19:37:55+00:00"
  7944. },
  7945. {
  7946. "name": "symfony/yaml",
  7947. "version": "v6.2.7",
  7948. "source": {
  7949. "type": "git",
  7950. "url": "https://github.com/symfony/yaml.git",
  7951. "reference": "e8e6a1d59e050525f27a1f530aa9703423cb7f57"
  7952. },
  7953. "dist": {
  7954. "type": "zip",
  7955. "url": "https://api.github.com/repos/symfony/yaml/zipball/e8e6a1d59e050525f27a1f530aa9703423cb7f57",
  7956. "reference": "e8e6a1d59e050525f27a1f530aa9703423cb7f57",
  7957. "shasum": ""
  7958. },
  7959. "require": {
  7960. "php": ">=8.1",
  7961. "symfony/polyfill-ctype": "^1.8"
  7962. },
  7963. "conflict": {
  7964. "symfony/console": "<5.4"
  7965. },
  7966. "require-dev": {
  7967. "symfony/console": "^5.4|^6.0"
  7968. },
  7969. "suggest": {
  7970. "symfony/console": "For validating YAML files using the lint command"
  7971. },
  7972. "bin": [
  7973. "Resources/bin/yaml-lint"
  7974. ],
  7975. "type": "library",
  7976. "autoload": {
  7977. "psr-4": {
  7978. "Symfony\\Component\\Yaml\\": ""
  7979. },
  7980. "exclude-from-classmap": [
  7981. "/Tests/"
  7982. ]
  7983. },
  7984. "notification-url": "https://packagist.org/downloads/",
  7985. "license": [
  7986. "MIT"
  7987. ],
  7988. "authors": [
  7989. {
  7990. "name": "Fabien Potencier",
  7991. "email": "fabien@symfony.com"
  7992. },
  7993. {
  7994. "name": "Symfony Community",
  7995. "homepage": "https://symfony.com/contributors"
  7996. }
  7997. ],
  7998. "description": "Loads and dumps YAML files",
  7999. "homepage": "https://symfony.com",
  8000. "support": {
  8001. "source": "https://github.com/symfony/yaml/tree/v6.2.7"
  8002. },
  8003. "funding": [
  8004. {
  8005. "url": "https://symfony.com/sponsor",
  8006. "type": "custom"
  8007. },
  8008. {
  8009. "url": "https://github.com/fabpot",
  8010. "type": "github"
  8011. },
  8012. {
  8013. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8014. "type": "tidelift"
  8015. }
  8016. ],
  8017. "time": "2023-02-16T09:57:23+00:00"
  8018. },
  8019. {
  8020. "name": "twig/extra-bundle",
  8021. "version": "v3.5.1",
  8022. "source": {
  8023. "type": "git",
  8024. "url": "https://github.com/twigphp/twig-extra-bundle.git",
  8025. "reference": "a961e553a624eebdbd423ad5ab931497ca6d87cd"
  8026. },
  8027. "dist": {
  8028. "type": "zip",
  8029. "url": "https://api.github.com/repos/twigphp/twig-extra-bundle/zipball/a961e553a624eebdbd423ad5ab931497ca6d87cd",
  8030. "reference": "a961e553a624eebdbd423ad5ab931497ca6d87cd",
  8031. "shasum": ""
  8032. },
  8033. "require": {
  8034. "php": ">=7.2.5",
  8035. "symfony/framework-bundle": "^4.4|^5.0|^6.0",
  8036. "symfony/twig-bundle": "^4.4|^5.0|^6.0",
  8037. "twig/twig": "^2.7|^3.0"
  8038. },
  8039. "require-dev": {
  8040. "league/commonmark": "^1.0|^2.0",
  8041. "symfony/phpunit-bridge": "^4.4.9|^5.0.9|^6.0",
  8042. "twig/cache-extra": "^3.0",
  8043. "twig/cssinliner-extra": "^2.12|^3.0",
  8044. "twig/html-extra": "^2.12|^3.0",
  8045. "twig/inky-extra": "^2.12|^3.0",
  8046. "twig/intl-extra": "^2.12|^3.0",
  8047. "twig/markdown-extra": "^2.12|^3.0",
  8048. "twig/string-extra": "^2.12|^3.0"
  8049. },
  8050. "type": "symfony-bundle",
  8051. "extra": {
  8052. "branch-alias": {
  8053. "dev-master": "3.5-dev"
  8054. }
  8055. },
  8056. "autoload": {
  8057. "psr-4": {
  8058. "Twig\\Extra\\TwigExtraBundle\\": ""
  8059. },
  8060. "exclude-from-classmap": [
  8061. "/Tests/"
  8062. ]
  8063. },
  8064. "notification-url": "https://packagist.org/downloads/",
  8065. "license": [
  8066. "MIT"
  8067. ],
  8068. "authors": [
  8069. {
  8070. "name": "Fabien Potencier",
  8071. "email": "fabien@symfony.com",
  8072. "homepage": "http://fabien.potencier.org",
  8073. "role": "Lead Developer"
  8074. }
  8075. ],
  8076. "description": "A Symfony bundle for extra Twig extensions",
  8077. "homepage": "https://twig.symfony.com",
  8078. "keywords": [
  8079. "bundle",
  8080. "extra",
  8081. "twig"
  8082. ],
  8083. "support": {
  8084. "source": "https://github.com/twigphp/twig-extra-bundle/tree/v3.5.1"
  8085. },
  8086. "funding": [
  8087. {
  8088. "url": "https://github.com/fabpot",
  8089. "type": "github"
  8090. },
  8091. {
  8092. "url": "https://tidelift.com/funding/github/packagist/twig/twig",
  8093. "type": "tidelift"
  8094. }
  8095. ],
  8096. "time": "2023-02-08T07:44:55+00:00"
  8097. },
  8098. {
  8099. "name": "twig/markdown-extra",
  8100. "version": "v3.5.1",
  8101. "source": {
  8102. "type": "git",
  8103. "url": "https://github.com/twigphp/markdown-extra.git",
  8104. "reference": "9474c89fd2787187a3809e5e964dfce2395ae5f0"
  8105. },
  8106. "dist": {
  8107. "type": "zip",
  8108. "url": "https://api.github.com/repos/twigphp/markdown-extra/zipball/9474c89fd2787187a3809e5e964dfce2395ae5f0",
  8109. "reference": "9474c89fd2787187a3809e5e964dfce2395ae5f0",
  8110. "shasum": ""
  8111. },
  8112. "require": {
  8113. "php": ">=7.1.3",
  8114. "twig/twig": "^2.7|^3.0"
  8115. },
  8116. "require-dev": {
  8117. "erusev/parsedown": "^1.7",
  8118. "league/commonmark": "^1.0|^2.0",
  8119. "league/html-to-markdown": "^4.8|^5.0",
  8120. "michelf/php-markdown": "^1.8|^2.0",
  8121. "symfony/phpunit-bridge": "^4.4.9|^5.0.9|^6.0"
  8122. },
  8123. "type": "library",
  8124. "extra": {
  8125. "branch-alias": {
  8126. "dev-master": "3.5-dev"
  8127. }
  8128. },
  8129. "autoload": {
  8130. "psr-4": {
  8131. "Twig\\Extra\\Markdown\\": ""
  8132. },
  8133. "exclude-from-classmap": [
  8134. "/Tests/"
  8135. ]
  8136. },
  8137. "notification-url": "https://packagist.org/downloads/",
  8138. "license": [
  8139. "MIT"
  8140. ],
  8141. "authors": [
  8142. {
  8143. "name": "Fabien Potencier",
  8144. "email": "fabien@symfony.com",
  8145. "homepage": "http://fabien.potencier.org",
  8146. "role": "Lead Developer"
  8147. }
  8148. ],
  8149. "description": "A Twig extension for Markdown",
  8150. "homepage": "https://twig.symfony.com",
  8151. "keywords": [
  8152. "html",
  8153. "markdown",
  8154. "twig"
  8155. ],
  8156. "support": {
  8157. "source": "https://github.com/twigphp/markdown-extra/tree/v3.5.1"
  8158. },
  8159. "funding": [
  8160. {
  8161. "url": "https://github.com/fabpot",
  8162. "type": "github"
  8163. },
  8164. {
  8165. "url": "https://tidelift.com/funding/github/packagist/twig/twig",
  8166. "type": "tidelift"
  8167. }
  8168. ],
  8169. "time": "2023-02-08T07:44:55+00:00"
  8170. },
  8171. {
  8172. "name": "twig/twig",
  8173. "version": "v3.5.1",
  8174. "source": {
  8175. "type": "git",
  8176. "url": "https://github.com/twigphp/Twig.git",
  8177. "reference": "a6e0510cc793912b451fd40ab983a1d28f611c15"
  8178. },
  8179. "dist": {
  8180. "type": "zip",
  8181. "url": "https://api.github.com/repos/twigphp/Twig/zipball/a6e0510cc793912b451fd40ab983a1d28f611c15",
  8182. "reference": "a6e0510cc793912b451fd40ab983a1d28f611c15",
  8183. "shasum": ""
  8184. },
  8185. "require": {
  8186. "php": ">=7.2.5",
  8187. "symfony/polyfill-ctype": "^1.8",
  8188. "symfony/polyfill-mbstring": "^1.3"
  8189. },
  8190. "require-dev": {
  8191. "psr/container": "^1.0",
  8192. "symfony/phpunit-bridge": "^4.4.9|^5.0.9|^6.0"
  8193. },
  8194. "type": "library",
  8195. "extra": {
  8196. "branch-alias": {
  8197. "dev-master": "3.5-dev"
  8198. }
  8199. },
  8200. "autoload": {
  8201. "psr-4": {
  8202. "Twig\\": "src/"
  8203. }
  8204. },
  8205. "notification-url": "https://packagist.org/downloads/",
  8206. "license": [
  8207. "BSD-3-Clause"
  8208. ],
  8209. "authors": [
  8210. {
  8211. "name": "Fabien Potencier",
  8212. "email": "fabien@symfony.com",
  8213. "homepage": "http://fabien.potencier.org",
  8214. "role": "Lead Developer"
  8215. },
  8216. {
  8217. "name": "Twig Team",
  8218. "role": "Contributors"
  8219. },
  8220. {
  8221. "name": "Armin Ronacher",
  8222. "email": "armin.ronacher@active-4.com",
  8223. "role": "Project Founder"
  8224. }
  8225. ],
  8226. "description": "Twig, the flexible, fast, and secure template language for PHP",
  8227. "homepage": "https://twig.symfony.com",
  8228. "keywords": [
  8229. "templating"
  8230. ],
  8231. "support": {
  8232. "issues": "https://github.com/twigphp/Twig/issues",
  8233. "source": "https://github.com/twigphp/Twig/tree/v3.5.1"
  8234. },
  8235. "funding": [
  8236. {
  8237. "url": "https://github.com/fabpot",
  8238. "type": "github"
  8239. },
  8240. {
  8241. "url": "https://tidelift.com/funding/github/packagist/twig/twig",
  8242. "type": "tidelift"
  8243. }
  8244. ],
  8245. "time": "2023-02-08T07:49:20+00:00"
  8246. },
  8247. {
  8248. "name": "webmozart/assert",
  8249. "version": "1.11.0",
  8250. "source": {
  8251. "type": "git",
  8252. "url": "https://github.com/webmozarts/assert.git",
  8253. "reference": "11cb2199493b2f8a3b53e7f19068fc6aac760991"
  8254. },
  8255. "dist": {
  8256. "type": "zip",
  8257. "url": "https://api.github.com/repos/webmozarts/assert/zipball/11cb2199493b2f8a3b53e7f19068fc6aac760991",
  8258. "reference": "11cb2199493b2f8a3b53e7f19068fc6aac760991",
  8259. "shasum": ""
  8260. },
  8261. "require": {
  8262. "ext-ctype": "*",
  8263. "php": "^7.2 || ^8.0"
  8264. },
  8265. "conflict": {
  8266. "phpstan/phpstan": "<0.12.20",
  8267. "vimeo/psalm": "<4.6.1 || 4.6.2"
  8268. },
  8269. "require-dev": {
  8270. "phpunit/phpunit": "^8.5.13"
  8271. },
  8272. "type": "library",
  8273. "extra": {
  8274. "branch-alias": {
  8275. "dev-master": "1.10-dev"
  8276. }
  8277. },
  8278. "autoload": {
  8279. "psr-4": {
  8280. "Webmozart\\Assert\\": "src/"
  8281. }
  8282. },
  8283. "notification-url": "https://packagist.org/downloads/",
  8284. "license": [
  8285. "MIT"
  8286. ],
  8287. "authors": [
  8288. {
  8289. "name": "Bernhard Schussek",
  8290. "email": "bschussek@gmail.com"
  8291. }
  8292. ],
  8293. "description": "Assertions to validate method input/output with nice error messages.",
  8294. "keywords": [
  8295. "assert",
  8296. "check",
  8297. "validate"
  8298. ],
  8299. "support": {
  8300. "issues": "https://github.com/webmozarts/assert/issues",
  8301. "source": "https://github.com/webmozarts/assert/tree/1.11.0"
  8302. },
  8303. "time": "2022-06-03T18:03:27+00:00"
  8304. }
  8305. ],
  8306. "packages-dev": [
  8307. {
  8308. "name": "myclabs/deep-copy",
  8309. "version": "1.11.1",
  8310. "source": {
  8311. "type": "git",
  8312. "url": "https://github.com/myclabs/DeepCopy.git",
  8313. "reference": "7284c22080590fb39f2ffa3e9057f10a4ddd0e0c"
  8314. },
  8315. "dist": {
  8316. "type": "zip",
  8317. "url": "https://api.github.com/repos/myclabs/DeepCopy/zipball/7284c22080590fb39f2ffa3e9057f10a4ddd0e0c",
  8318. "reference": "7284c22080590fb39f2ffa3e9057f10a4ddd0e0c",
  8319. "shasum": ""
  8320. },
  8321. "require": {
  8322. "php": "^7.1 || ^8.0"
  8323. },
  8324. "conflict": {
  8325. "doctrine/collections": "<1.6.8",
  8326. "doctrine/common": "<2.13.3 || >=3,<3.2.2"
  8327. },
  8328. "require-dev": {
  8329. "doctrine/collections": "^1.6.8",
  8330. "doctrine/common": "^2.13.3 || ^3.2.2",
  8331. "phpunit/phpunit": "^7.5.20 || ^8.5.23 || ^9.5.13"
  8332. },
  8333. "type": "library",
  8334. "autoload": {
  8335. "files": [
  8336. "src/DeepCopy/deep_copy.php"
  8337. ],
  8338. "psr-4": {
  8339. "DeepCopy\\": "src/DeepCopy/"
  8340. }
  8341. },
  8342. "notification-url": "https://packagist.org/downloads/",
  8343. "license": [
  8344. "MIT"
  8345. ],
  8346. "description": "Create deep copies (clones) of your objects",
  8347. "keywords": [
  8348. "clone",
  8349. "copy",
  8350. "duplicate",
  8351. "object",
  8352. "object graph"
  8353. ],
  8354. "support": {
  8355. "issues": "https://github.com/myclabs/DeepCopy/issues",
  8356. "source": "https://github.com/myclabs/DeepCopy/tree/1.11.1"
  8357. },
  8358. "funding": [
  8359. {
  8360. "url": "https://tidelift.com/funding/github/packagist/myclabs/deep-copy",
  8361. "type": "tidelift"
  8362. }
  8363. ],
  8364. "time": "2023-03-08T13:26:56+00:00"
  8365. },
  8366. {
  8367. "name": "nikic/php-parser",
  8368. "version": "v4.15.4",
  8369. "source": {
  8370. "type": "git",
  8371. "url": "https://github.com/nikic/PHP-Parser.git",
  8372. "reference": "6bb5176bc4af8bcb7d926f88718db9b96a2d4290"
  8373. },
  8374. "dist": {
  8375. "type": "zip",
  8376. "url": "https://api.github.com/repos/nikic/PHP-Parser/zipball/6bb5176bc4af8bcb7d926f88718db9b96a2d4290",
  8377. "reference": "6bb5176bc4af8bcb7d926f88718db9b96a2d4290",
  8378. "shasum": ""
  8379. },
  8380. "require": {
  8381. "ext-tokenizer": "*",
  8382. "php": ">=7.0"
  8383. },
  8384. "require-dev": {
  8385. "ircmaxell/php-yacc": "^0.0.7",
  8386. "phpunit/phpunit": "^6.5 || ^7.0 || ^8.0 || ^9.0"
  8387. },
  8388. "bin": [
  8389. "bin/php-parse"
  8390. ],
  8391. "type": "library",
  8392. "extra": {
  8393. "branch-alias": {
  8394. "dev-master": "4.9-dev"
  8395. }
  8396. },
  8397. "autoload": {
  8398. "psr-4": {
  8399. "PhpParser\\": "lib/PhpParser"
  8400. }
  8401. },
  8402. "notification-url": "https://packagist.org/downloads/",
  8403. "license": [
  8404. "BSD-3-Clause"
  8405. ],
  8406. "authors": [
  8407. {
  8408. "name": "Nikita Popov"
  8409. }
  8410. ],
  8411. "description": "A PHP parser written in PHP",
  8412. "keywords": [
  8413. "parser",
  8414. "php"
  8415. ],
  8416. "support": {
  8417. "issues": "https://github.com/nikic/PHP-Parser/issues",
  8418. "source": "https://github.com/nikic/PHP-Parser/tree/v4.15.4"
  8419. },
  8420. "time": "2023-03-05T19:49:14+00:00"
  8421. },
  8422. {
  8423. "name": "phar-io/manifest",
  8424. "version": "2.0.3",
  8425. "source": {
  8426. "type": "git",
  8427. "url": "https://github.com/phar-io/manifest.git",
  8428. "reference": "97803eca37d319dfa7826cc2437fc020857acb53"
  8429. },
  8430. "dist": {
  8431. "type": "zip",
  8432. "url": "https://api.github.com/repos/phar-io/manifest/zipball/97803eca37d319dfa7826cc2437fc020857acb53",
  8433. "reference": "97803eca37d319dfa7826cc2437fc020857acb53",
  8434. "shasum": ""
  8435. },
  8436. "require": {
  8437. "ext-dom": "*",
  8438. "ext-phar": "*",
  8439. "ext-xmlwriter": "*",
  8440. "phar-io/version": "^3.0.1",
  8441. "php": "^7.2 || ^8.0"
  8442. },
  8443. "type": "library",
  8444. "extra": {
  8445. "branch-alias": {
  8446. "dev-master": "2.0.x-dev"
  8447. }
  8448. },
  8449. "autoload": {
  8450. "classmap": [
  8451. "src/"
  8452. ]
  8453. },
  8454. "notification-url": "https://packagist.org/downloads/",
  8455. "license": [
  8456. "BSD-3-Clause"
  8457. ],
  8458. "authors": [
  8459. {
  8460. "name": "Arne Blankerts",
  8461. "email": "arne@blankerts.de",
  8462. "role": "Developer"
  8463. },
  8464. {
  8465. "name": "Sebastian Heuer",
  8466. "email": "sebastian@phpeople.de",
  8467. "role": "Developer"
  8468. },
  8469. {
  8470. "name": "Sebastian Bergmann",
  8471. "email": "sebastian@phpunit.de",
  8472. "role": "Developer"
  8473. }
  8474. ],
  8475. "description": "Component for reading phar.io manifest information from a PHP Archive (PHAR)",
  8476. "support": {
  8477. "issues": "https://github.com/phar-io/manifest/issues",
  8478. "source": "https://github.com/phar-io/manifest/tree/2.0.3"
  8479. },
  8480. "time": "2021-07-20T11:28:43+00:00"
  8481. },
  8482. {
  8483. "name": "phar-io/version",
  8484. "version": "3.2.1",
  8485. "source": {
  8486. "type": "git",
  8487. "url": "https://github.com/phar-io/version.git",
  8488. "reference": "4f7fd7836c6f332bb2933569e566a0d6c4cbed74"
  8489. },
  8490. "dist": {
  8491. "type": "zip",
  8492. "url": "https://api.github.com/repos/phar-io/version/zipball/4f7fd7836c6f332bb2933569e566a0d6c4cbed74",
  8493. "reference": "4f7fd7836c6f332bb2933569e566a0d6c4cbed74",
  8494. "shasum": ""
  8495. },
  8496. "require": {
  8497. "php": "^7.2 || ^8.0"
  8498. },
  8499. "type": "library",
  8500. "autoload": {
  8501. "classmap": [
  8502. "src/"
  8503. ]
  8504. },
  8505. "notification-url": "https://packagist.org/downloads/",
  8506. "license": [
  8507. "BSD-3-Clause"
  8508. ],
  8509. "authors": [
  8510. {
  8511. "name": "Arne Blankerts",
  8512. "email": "arne@blankerts.de",
  8513. "role": "Developer"
  8514. },
  8515. {
  8516. "name": "Sebastian Heuer",
  8517. "email": "sebastian@phpeople.de",
  8518. "role": "Developer"
  8519. },
  8520. {
  8521. "name": "Sebastian Bergmann",
  8522. "email": "sebastian@phpunit.de",
  8523. "role": "Developer"
  8524. }
  8525. ],
  8526. "description": "Library for handling version information and constraints",
  8527. "support": {
  8528. "issues": "https://github.com/phar-io/version/issues",
  8529. "source": "https://github.com/phar-io/version/tree/3.2.1"
  8530. },
  8531. "time": "2022-02-21T01:04:05+00:00"
  8532. },
  8533. {
  8534. "name": "phpunit/php-code-coverage",
  8535. "version": "9.2.26",
  8536. "source": {
  8537. "type": "git",
  8538. "url": "https://github.com/sebastianbergmann/php-code-coverage.git",
  8539. "reference": "443bc6912c9bd5b409254a40f4b0f4ced7c80ea1"
  8540. },
  8541. "dist": {
  8542. "type": "zip",
  8543. "url": "https://api.github.com/repos/sebastianbergmann/php-code-coverage/zipball/443bc6912c9bd5b409254a40f4b0f4ced7c80ea1",
  8544. "reference": "443bc6912c9bd5b409254a40f4b0f4ced7c80ea1",
  8545. "shasum": ""
  8546. },
  8547. "require": {
  8548. "ext-dom": "*",
  8549. "ext-libxml": "*",
  8550. "ext-xmlwriter": "*",
  8551. "nikic/php-parser": "^4.15",
  8552. "php": ">=7.3",
  8553. "phpunit/php-file-iterator": "^3.0.3",
  8554. "phpunit/php-text-template": "^2.0.2",
  8555. "sebastian/code-unit-reverse-lookup": "^2.0.2",
  8556. "sebastian/complexity": "^2.0",
  8557. "sebastian/environment": "^5.1.2",
  8558. "sebastian/lines-of-code": "^1.0.3",
  8559. "sebastian/version": "^3.0.1",
  8560. "theseer/tokenizer": "^1.2.0"
  8561. },
  8562. "require-dev": {
  8563. "phpunit/phpunit": "^9.3"
  8564. },
  8565. "suggest": {
  8566. "ext-pcov": "PHP extension that provides line coverage",
  8567. "ext-xdebug": "PHP extension that provides line coverage as well as branch and path coverage"
  8568. },
  8569. "type": "library",
  8570. "extra": {
  8571. "branch-alias": {
  8572. "dev-master": "9.2-dev"
  8573. }
  8574. },
  8575. "autoload": {
  8576. "classmap": [
  8577. "src/"
  8578. ]
  8579. },
  8580. "notification-url": "https://packagist.org/downloads/",
  8581. "license": [
  8582. "BSD-3-Clause"
  8583. ],
  8584. "authors": [
  8585. {
  8586. "name": "Sebastian Bergmann",
  8587. "email": "sebastian@phpunit.de",
  8588. "role": "lead"
  8589. }
  8590. ],
  8591. "description": "Library that provides collection, processing, and rendering functionality for PHP code coverage information.",
  8592. "homepage": "https://github.com/sebastianbergmann/php-code-coverage",
  8593. "keywords": [
  8594. "coverage",
  8595. "testing",
  8596. "xunit"
  8597. ],
  8598. "support": {
  8599. "issues": "https://github.com/sebastianbergmann/php-code-coverage/issues",
  8600. "source": "https://github.com/sebastianbergmann/php-code-coverage/tree/9.2.26"
  8601. },
  8602. "funding": [
  8603. {
  8604. "url": "https://github.com/sebastianbergmann",
  8605. "type": "github"
  8606. }
  8607. ],
  8608. "time": "2023-03-06T12:58:08+00:00"
  8609. },
  8610. {
  8611. "name": "phpunit/php-file-iterator",
  8612. "version": "3.0.6",
  8613. "source": {
  8614. "type": "git",
  8615. "url": "https://github.com/sebastianbergmann/php-file-iterator.git",
  8616. "reference": "cf1c2e7c203ac650e352f4cc675a7021e7d1b3cf"
  8617. },
  8618. "dist": {
  8619. "type": "zip",
  8620. "url": "https://api.github.com/repos/sebastianbergmann/php-file-iterator/zipball/cf1c2e7c203ac650e352f4cc675a7021e7d1b3cf",
  8621. "reference": "cf1c2e7c203ac650e352f4cc675a7021e7d1b3cf",
  8622. "shasum": ""
  8623. },
  8624. "require": {
  8625. "php": ">=7.3"
  8626. },
  8627. "require-dev": {
  8628. "phpunit/phpunit": "^9.3"
  8629. },
  8630. "type": "library",
  8631. "extra": {
  8632. "branch-alias": {
  8633. "dev-master": "3.0-dev"
  8634. }
  8635. },
  8636. "autoload": {
  8637. "classmap": [
  8638. "src/"
  8639. ]
  8640. },
  8641. "notification-url": "https://packagist.org/downloads/",
  8642. "license": [
  8643. "BSD-3-Clause"
  8644. ],
  8645. "authors": [
  8646. {
  8647. "name": "Sebastian Bergmann",
  8648. "email": "sebastian@phpunit.de",
  8649. "role": "lead"
  8650. }
  8651. ],
  8652. "description": "FilterIterator implementation that filters files based on a list of suffixes.",
  8653. "homepage": "https://github.com/sebastianbergmann/php-file-iterator/",
  8654. "keywords": [
  8655. "filesystem",
  8656. "iterator"
  8657. ],
  8658. "support": {
  8659. "issues": "https://github.com/sebastianbergmann/php-file-iterator/issues",
  8660. "source": "https://github.com/sebastianbergmann/php-file-iterator/tree/3.0.6"
  8661. },
  8662. "funding": [
  8663. {
  8664. "url": "https://github.com/sebastianbergmann",
  8665. "type": "github"
  8666. }
  8667. ],
  8668. "time": "2021-12-02T12:48:52+00:00"
  8669. },
  8670. {
  8671. "name": "phpunit/php-invoker",
  8672. "version": "3.1.1",
  8673. "source": {
  8674. "type": "git",
  8675. "url": "https://github.com/sebastianbergmann/php-invoker.git",
  8676. "reference": "5a10147d0aaf65b58940a0b72f71c9ac0423cc67"
  8677. },
  8678. "dist": {
  8679. "type": "zip",
  8680. "url": "https://api.github.com/repos/sebastianbergmann/php-invoker/zipball/5a10147d0aaf65b58940a0b72f71c9ac0423cc67",
  8681. "reference": "5a10147d0aaf65b58940a0b72f71c9ac0423cc67",
  8682. "shasum": ""
  8683. },
  8684. "require": {
  8685. "php": ">=7.3"
  8686. },
  8687. "require-dev": {
  8688. "ext-pcntl": "*",
  8689. "phpunit/phpunit": "^9.3"
  8690. },
  8691. "suggest": {
  8692. "ext-pcntl": "*"
  8693. },
  8694. "type": "library",
  8695. "extra": {
  8696. "branch-alias": {
  8697. "dev-master": "3.1-dev"
  8698. }
  8699. },
  8700. "autoload": {
  8701. "classmap": [
  8702. "src/"
  8703. ]
  8704. },
  8705. "notification-url": "https://packagist.org/downloads/",
  8706. "license": [
  8707. "BSD-3-Clause"
  8708. ],
  8709. "authors": [
  8710. {
  8711. "name": "Sebastian Bergmann",
  8712. "email": "sebastian@phpunit.de",
  8713. "role": "lead"
  8714. }
  8715. ],
  8716. "description": "Invoke callables with a timeout",
  8717. "homepage": "https://github.com/sebastianbergmann/php-invoker/",
  8718. "keywords": [
  8719. "process"
  8720. ],
  8721. "support": {
  8722. "issues": "https://github.com/sebastianbergmann/php-invoker/issues",
  8723. "source": "https://github.com/sebastianbergmann/php-invoker/tree/3.1.1"
  8724. },
  8725. "funding": [
  8726. {
  8727. "url": "https://github.com/sebastianbergmann",
  8728. "type": "github"
  8729. }
  8730. ],
  8731. "time": "2020-09-28T05:58:55+00:00"
  8732. },
  8733. {
  8734. "name": "phpunit/php-text-template",
  8735. "version": "2.0.4",
  8736. "source": {
  8737. "type": "git",
  8738. "url": "https://github.com/sebastianbergmann/php-text-template.git",
  8739. "reference": "5da5f67fc95621df9ff4c4e5a84d6a8a2acf7c28"
  8740. },
  8741. "dist": {
  8742. "type": "zip",
  8743. "url": "https://api.github.com/repos/sebastianbergmann/php-text-template/zipball/5da5f67fc95621df9ff4c4e5a84d6a8a2acf7c28",
  8744. "reference": "5da5f67fc95621df9ff4c4e5a84d6a8a2acf7c28",
  8745. "shasum": ""
  8746. },
  8747. "require": {
  8748. "php": ">=7.3"
  8749. },
  8750. "require-dev": {
  8751. "phpunit/phpunit": "^9.3"
  8752. },
  8753. "type": "library",
  8754. "extra": {
  8755. "branch-alias": {
  8756. "dev-master": "2.0-dev"
  8757. }
  8758. },
  8759. "autoload": {
  8760. "classmap": [
  8761. "src/"
  8762. ]
  8763. },
  8764. "notification-url": "https://packagist.org/downloads/",
  8765. "license": [
  8766. "BSD-3-Clause"
  8767. ],
  8768. "authors": [
  8769. {
  8770. "name": "Sebastian Bergmann",
  8771. "email": "sebastian@phpunit.de",
  8772. "role": "lead"
  8773. }
  8774. ],
  8775. "description": "Simple template engine.",
  8776. "homepage": "https://github.com/sebastianbergmann/php-text-template/",
  8777. "keywords": [
  8778. "template"
  8779. ],
  8780. "support": {
  8781. "issues": "https://github.com/sebastianbergmann/php-text-template/issues",
  8782. "source": "https://github.com/sebastianbergmann/php-text-template/tree/2.0.4"
  8783. },
  8784. "funding": [
  8785. {
  8786. "url": "https://github.com/sebastianbergmann",
  8787. "type": "github"
  8788. }
  8789. ],
  8790. "time": "2020-10-26T05:33:50+00:00"
  8791. },
  8792. {
  8793. "name": "phpunit/php-timer",
  8794. "version": "5.0.3",
  8795. "source": {
  8796. "type": "git",
  8797. "url": "https://github.com/sebastianbergmann/php-timer.git",
  8798. "reference": "5a63ce20ed1b5bf577850e2c4e87f4aa902afbd2"
  8799. },
  8800. "dist": {
  8801. "type": "zip",
  8802. "url": "https://api.github.com/repos/sebastianbergmann/php-timer/zipball/5a63ce20ed1b5bf577850e2c4e87f4aa902afbd2",
  8803. "reference": "5a63ce20ed1b5bf577850e2c4e87f4aa902afbd2",
  8804. "shasum": ""
  8805. },
  8806. "require": {
  8807. "php": ">=7.3"
  8808. },
  8809. "require-dev": {
  8810. "phpunit/phpunit": "^9.3"
  8811. },
  8812. "type": "library",
  8813. "extra": {
  8814. "branch-alias": {
  8815. "dev-master": "5.0-dev"
  8816. }
  8817. },
  8818. "autoload": {
  8819. "classmap": [
  8820. "src/"
  8821. ]
  8822. },
  8823. "notification-url": "https://packagist.org/downloads/",
  8824. "license": [
  8825. "BSD-3-Clause"
  8826. ],
  8827. "authors": [
  8828. {
  8829. "name": "Sebastian Bergmann",
  8830. "email": "sebastian@phpunit.de",
  8831. "role": "lead"
  8832. }
  8833. ],
  8834. "description": "Utility class for timing",
  8835. "homepage": "https://github.com/sebastianbergmann/php-timer/",
  8836. "keywords": [
  8837. "timer"
  8838. ],
  8839. "support": {
  8840. "issues": "https://github.com/sebastianbergmann/php-timer/issues",
  8841. "source": "https://github.com/sebastianbergmann/php-timer/tree/5.0.3"
  8842. },
  8843. "funding": [
  8844. {
  8845. "url": "https://github.com/sebastianbergmann",
  8846. "type": "github"
  8847. }
  8848. ],
  8849. "time": "2020-10-26T13:16:10+00:00"
  8850. },
  8851. {
  8852. "name": "phpunit/phpunit",
  8853. "version": "9.6.5",
  8854. "source": {
  8855. "type": "git",
  8856. "url": "https://github.com/sebastianbergmann/phpunit.git",
  8857. "reference": "86e761949019ae83f49240b2f2123fb5ab3b2fc5"
  8858. },
  8859. "dist": {
  8860. "type": "zip",
  8861. "url": "https://api.github.com/repos/sebastianbergmann/phpunit/zipball/86e761949019ae83f49240b2f2123fb5ab3b2fc5",
  8862. "reference": "86e761949019ae83f49240b2f2123fb5ab3b2fc5",
  8863. "shasum": ""
  8864. },
  8865. "require": {
  8866. "doctrine/instantiator": "^1.3.1 || ^2",
  8867. "ext-dom": "*",
  8868. "ext-json": "*",
  8869. "ext-libxml": "*",
  8870. "ext-mbstring": "*",
  8871. "ext-xml": "*",
  8872. "ext-xmlwriter": "*",
  8873. "myclabs/deep-copy": "^1.10.1",
  8874. "phar-io/manifest": "^2.0.3",
  8875. "phar-io/version": "^3.0.2",
  8876. "php": ">=7.3",
  8877. "phpunit/php-code-coverage": "^9.2.13",
  8878. "phpunit/php-file-iterator": "^3.0.5",
  8879. "phpunit/php-invoker": "^3.1.1",
  8880. "phpunit/php-text-template": "^2.0.3",
  8881. "phpunit/php-timer": "^5.0.2",
  8882. "sebastian/cli-parser": "^1.0.1",
  8883. "sebastian/code-unit": "^1.0.6",
  8884. "sebastian/comparator": "^4.0.8",
  8885. "sebastian/diff": "^4.0.3",
  8886. "sebastian/environment": "^5.1.3",
  8887. "sebastian/exporter": "^4.0.5",
  8888. "sebastian/global-state": "^5.0.1",
  8889. "sebastian/object-enumerator": "^4.0.3",
  8890. "sebastian/resource-operations": "^3.0.3",
  8891. "sebastian/type": "^3.2",
  8892. "sebastian/version": "^3.0.2"
  8893. },
  8894. "suggest": {
  8895. "ext-soap": "To be able to generate mocks based on WSDL files",
  8896. "ext-xdebug": "PHP extension that provides line coverage as well as branch and path coverage"
  8897. },
  8898. "bin": [
  8899. "phpunit"
  8900. ],
  8901. "type": "library",
  8902. "extra": {
  8903. "branch-alias": {
  8904. "dev-master": "9.6-dev"
  8905. }
  8906. },
  8907. "autoload": {
  8908. "files": [
  8909. "src/Framework/Assert/Functions.php"
  8910. ],
  8911. "classmap": [
  8912. "src/"
  8913. ]
  8914. },
  8915. "notification-url": "https://packagist.org/downloads/",
  8916. "license": [
  8917. "BSD-3-Clause"
  8918. ],
  8919. "authors": [
  8920. {
  8921. "name": "Sebastian Bergmann",
  8922. "email": "sebastian@phpunit.de",
  8923. "role": "lead"
  8924. }
  8925. ],
  8926. "description": "The PHP Unit Testing framework.",
  8927. "homepage": "https://phpunit.de/",
  8928. "keywords": [
  8929. "phpunit",
  8930. "testing",
  8931. "xunit"
  8932. ],
  8933. "support": {
  8934. "issues": "https://github.com/sebastianbergmann/phpunit/issues",
  8935. "source": "https://github.com/sebastianbergmann/phpunit/tree/9.6.5"
  8936. },
  8937. "funding": [
  8938. {
  8939. "url": "https://phpunit.de/sponsors.html",
  8940. "type": "custom"
  8941. },
  8942. {
  8943. "url": "https://github.com/sebastianbergmann",
  8944. "type": "github"
  8945. },
  8946. {
  8947. "url": "https://tidelift.com/funding/github/packagist/phpunit/phpunit",
  8948. "type": "tidelift"
  8949. }
  8950. ],
  8951. "time": "2023-03-09T06:34:10+00:00"
  8952. },
  8953. {
  8954. "name": "sebastian/cli-parser",
  8955. "version": "1.0.1",
  8956. "source": {
  8957. "type": "git",
  8958. "url": "https://github.com/sebastianbergmann/cli-parser.git",
  8959. "reference": "442e7c7e687e42adc03470c7b668bc4b2402c0b2"
  8960. },
  8961. "dist": {
  8962. "type": "zip",
  8963. "url": "https://api.github.com/repos/sebastianbergmann/cli-parser/zipball/442e7c7e687e42adc03470c7b668bc4b2402c0b2",
  8964. "reference": "442e7c7e687e42adc03470c7b668bc4b2402c0b2",
  8965. "shasum": ""
  8966. },
  8967. "require": {
  8968. "php": ">=7.3"
  8969. },
  8970. "require-dev": {
  8971. "phpunit/phpunit": "^9.3"
  8972. },
  8973. "type": "library",
  8974. "extra": {
  8975. "branch-alias": {
  8976. "dev-master": "1.0-dev"
  8977. }
  8978. },
  8979. "autoload": {
  8980. "classmap": [
  8981. "src/"
  8982. ]
  8983. },
  8984. "notification-url": "https://packagist.org/downloads/",
  8985. "license": [
  8986. "BSD-3-Clause"
  8987. ],
  8988. "authors": [
  8989. {
  8990. "name": "Sebastian Bergmann",
  8991. "email": "sebastian@phpunit.de",
  8992. "role": "lead"
  8993. }
  8994. ],
  8995. "description": "Library for parsing CLI options",
  8996. "homepage": "https://github.com/sebastianbergmann/cli-parser",
  8997. "support": {
  8998. "issues": "https://github.com/sebastianbergmann/cli-parser/issues",
  8999. "source": "https://github.com/sebastianbergmann/cli-parser/tree/1.0.1"
  9000. },
  9001. "funding": [
  9002. {
  9003. "url": "https://github.com/sebastianbergmann",
  9004. "type": "github"
  9005. }
  9006. ],
  9007. "time": "2020-09-28T06:08:49+00:00"
  9008. },
  9009. {
  9010. "name": "sebastian/code-unit",
  9011. "version": "1.0.8",
  9012. "source": {
  9013. "type": "git",
  9014. "url": "https://github.com/sebastianbergmann/code-unit.git",
  9015. "reference": "1fc9f64c0927627ef78ba436c9b17d967e68e120"
  9016. },
  9017. "dist": {
  9018. "type": "zip",
  9019. "url": "https://api.github.com/repos/sebastianbergmann/code-unit/zipball/1fc9f64c0927627ef78ba436c9b17d967e68e120",
  9020. "reference": "1fc9f64c0927627ef78ba436c9b17d967e68e120",
  9021. "shasum": ""
  9022. },
  9023. "require": {
  9024. "php": ">=7.3"
  9025. },
  9026. "require-dev": {
  9027. "phpunit/phpunit": "^9.3"
  9028. },
  9029. "type": "library",
  9030. "extra": {
  9031. "branch-alias": {
  9032. "dev-master": "1.0-dev"
  9033. }
  9034. },
  9035. "autoload": {
  9036. "classmap": [
  9037. "src/"
  9038. ]
  9039. },
  9040. "notification-url": "https://packagist.org/downloads/",
  9041. "license": [
  9042. "BSD-3-Clause"
  9043. ],
  9044. "authors": [
  9045. {
  9046. "name": "Sebastian Bergmann",
  9047. "email": "sebastian@phpunit.de",
  9048. "role": "lead"
  9049. }
  9050. ],
  9051. "description": "Collection of value objects that represent the PHP code units",
  9052. "homepage": "https://github.com/sebastianbergmann/code-unit",
  9053. "support": {
  9054. "issues": "https://github.com/sebastianbergmann/code-unit/issues",
  9055. "source": "https://github.com/sebastianbergmann/code-unit/tree/1.0.8"
  9056. },
  9057. "funding": [
  9058. {
  9059. "url": "https://github.com/sebastianbergmann",
  9060. "type": "github"
  9061. }
  9062. ],
  9063. "time": "2020-10-26T13:08:54+00:00"
  9064. },
  9065. {
  9066. "name": "sebastian/code-unit-reverse-lookup",
  9067. "version": "2.0.3",
  9068. "source": {
  9069. "type": "git",
  9070. "url": "https://github.com/sebastianbergmann/code-unit-reverse-lookup.git",
  9071. "reference": "ac91f01ccec49fb77bdc6fd1e548bc70f7faa3e5"
  9072. },
  9073. "dist": {
  9074. "type": "zip",
  9075. "url": "https://api.github.com/repos/sebastianbergmann/code-unit-reverse-lookup/zipball/ac91f01ccec49fb77bdc6fd1e548bc70f7faa3e5",
  9076. "reference": "ac91f01ccec49fb77bdc6fd1e548bc70f7faa3e5",
  9077. "shasum": ""
  9078. },
  9079. "require": {
  9080. "php": ">=7.3"
  9081. },
  9082. "require-dev": {
  9083. "phpunit/phpunit": "^9.3"
  9084. },
  9085. "type": "library",
  9086. "extra": {
  9087. "branch-alias": {
  9088. "dev-master": "2.0-dev"
  9089. }
  9090. },
  9091. "autoload": {
  9092. "classmap": [
  9093. "src/"
  9094. ]
  9095. },
  9096. "notification-url": "https://packagist.org/downloads/",
  9097. "license": [
  9098. "BSD-3-Clause"
  9099. ],
  9100. "authors": [
  9101. {
  9102. "name": "Sebastian Bergmann",
  9103. "email": "sebastian@phpunit.de"
  9104. }
  9105. ],
  9106. "description": "Looks up which function or method a line of code belongs to",
  9107. "homepage": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/",
  9108. "support": {
  9109. "issues": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/issues",
  9110. "source": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/tree/2.0.3"
  9111. },
  9112. "funding": [
  9113. {
  9114. "url": "https://github.com/sebastianbergmann",
  9115. "type": "github"
  9116. }
  9117. ],
  9118. "time": "2020-09-28T05:30:19+00:00"
  9119. },
  9120. {
  9121. "name": "sebastian/comparator",
  9122. "version": "4.0.8",
  9123. "source": {
  9124. "type": "git",
  9125. "url": "https://github.com/sebastianbergmann/comparator.git",
  9126. "reference": "fa0f136dd2334583309d32b62544682ee972b51a"
  9127. },
  9128. "dist": {
  9129. "type": "zip",
  9130. "url": "https://api.github.com/repos/sebastianbergmann/comparator/zipball/fa0f136dd2334583309d32b62544682ee972b51a",
  9131. "reference": "fa0f136dd2334583309d32b62544682ee972b51a",
  9132. "shasum": ""
  9133. },
  9134. "require": {
  9135. "php": ">=7.3",
  9136. "sebastian/diff": "^4.0",
  9137. "sebastian/exporter": "^4.0"
  9138. },
  9139. "require-dev": {
  9140. "phpunit/phpunit": "^9.3"
  9141. },
  9142. "type": "library",
  9143. "extra": {
  9144. "branch-alias": {
  9145. "dev-master": "4.0-dev"
  9146. }
  9147. },
  9148. "autoload": {
  9149. "classmap": [
  9150. "src/"
  9151. ]
  9152. },
  9153. "notification-url": "https://packagist.org/downloads/",
  9154. "license": [
  9155. "BSD-3-Clause"
  9156. ],
  9157. "authors": [
  9158. {
  9159. "name": "Sebastian Bergmann",
  9160. "email": "sebastian@phpunit.de"
  9161. },
  9162. {
  9163. "name": "Jeff Welch",
  9164. "email": "whatthejeff@gmail.com"
  9165. },
  9166. {
  9167. "name": "Volker Dusch",
  9168. "email": "github@wallbash.com"
  9169. },
  9170. {
  9171. "name": "Bernhard Schussek",
  9172. "email": "bschussek@2bepublished.at"
  9173. }
  9174. ],
  9175. "description": "Provides the functionality to compare PHP values for equality",
  9176. "homepage": "https://github.com/sebastianbergmann/comparator",
  9177. "keywords": [
  9178. "comparator",
  9179. "compare",
  9180. "equality"
  9181. ],
  9182. "support": {
  9183. "issues": "https://github.com/sebastianbergmann/comparator/issues",
  9184. "source": "https://github.com/sebastianbergmann/comparator/tree/4.0.8"
  9185. },
  9186. "funding": [
  9187. {
  9188. "url": "https://github.com/sebastianbergmann",
  9189. "type": "github"
  9190. }
  9191. ],
  9192. "time": "2022-09-14T12:41:17+00:00"
  9193. },
  9194. {
  9195. "name": "sebastian/complexity",
  9196. "version": "2.0.2",
  9197. "source": {
  9198. "type": "git",
  9199. "url": "https://github.com/sebastianbergmann/complexity.git",
  9200. "reference": "739b35e53379900cc9ac327b2147867b8b6efd88"
  9201. },
  9202. "dist": {
  9203. "type": "zip",
  9204. "url": "https://api.github.com/repos/sebastianbergmann/complexity/zipball/739b35e53379900cc9ac327b2147867b8b6efd88",
  9205. "reference": "739b35e53379900cc9ac327b2147867b8b6efd88",
  9206. "shasum": ""
  9207. },
  9208. "require": {
  9209. "nikic/php-parser": "^4.7",
  9210. "php": ">=7.3"
  9211. },
  9212. "require-dev": {
  9213. "phpunit/phpunit": "^9.3"
  9214. },
  9215. "type": "library",
  9216. "extra": {
  9217. "branch-alias": {
  9218. "dev-master": "2.0-dev"
  9219. }
  9220. },
  9221. "autoload": {
  9222. "classmap": [
  9223. "src/"
  9224. ]
  9225. },
  9226. "notification-url": "https://packagist.org/downloads/",
  9227. "license": [
  9228. "BSD-3-Clause"
  9229. ],
  9230. "authors": [
  9231. {
  9232. "name": "Sebastian Bergmann",
  9233. "email": "sebastian@phpunit.de",
  9234. "role": "lead"
  9235. }
  9236. ],
  9237. "description": "Library for calculating the complexity of PHP code units",
  9238. "homepage": "https://github.com/sebastianbergmann/complexity",
  9239. "support": {
  9240. "issues": "https://github.com/sebastianbergmann/complexity/issues",
  9241. "source": "https://github.com/sebastianbergmann/complexity/tree/2.0.2"
  9242. },
  9243. "funding": [
  9244. {
  9245. "url": "https://github.com/sebastianbergmann",
  9246. "type": "github"
  9247. }
  9248. ],
  9249. "time": "2020-10-26T15:52:27+00:00"
  9250. },
  9251. {
  9252. "name": "sebastian/diff",
  9253. "version": "4.0.4",
  9254. "source": {
  9255. "type": "git",
  9256. "url": "https://github.com/sebastianbergmann/diff.git",
  9257. "reference": "3461e3fccc7cfdfc2720be910d3bd73c69be590d"
  9258. },
  9259. "dist": {
  9260. "type": "zip",
  9261. "url": "https://api.github.com/repos/sebastianbergmann/diff/zipball/3461e3fccc7cfdfc2720be910d3bd73c69be590d",
  9262. "reference": "3461e3fccc7cfdfc2720be910d3bd73c69be590d",
  9263. "shasum": ""
  9264. },
  9265. "require": {
  9266. "php": ">=7.3"
  9267. },
  9268. "require-dev": {
  9269. "phpunit/phpunit": "^9.3",
  9270. "symfony/process": "^4.2 || ^5"
  9271. },
  9272. "type": "library",
  9273. "extra": {
  9274. "branch-alias": {
  9275. "dev-master": "4.0-dev"
  9276. }
  9277. },
  9278. "autoload": {
  9279. "classmap": [
  9280. "src/"
  9281. ]
  9282. },
  9283. "notification-url": "https://packagist.org/downloads/",
  9284. "license": [
  9285. "BSD-3-Clause"
  9286. ],
  9287. "authors": [
  9288. {
  9289. "name": "Sebastian Bergmann",
  9290. "email": "sebastian@phpunit.de"
  9291. },
  9292. {
  9293. "name": "Kore Nordmann",
  9294. "email": "mail@kore-nordmann.de"
  9295. }
  9296. ],
  9297. "description": "Diff implementation",
  9298. "homepage": "https://github.com/sebastianbergmann/diff",
  9299. "keywords": [
  9300. "diff",
  9301. "udiff",
  9302. "unidiff",
  9303. "unified diff"
  9304. ],
  9305. "support": {
  9306. "issues": "https://github.com/sebastianbergmann/diff/issues",
  9307. "source": "https://github.com/sebastianbergmann/diff/tree/4.0.4"
  9308. },
  9309. "funding": [
  9310. {
  9311. "url": "https://github.com/sebastianbergmann",
  9312. "type": "github"
  9313. }
  9314. ],
  9315. "time": "2020-10-26T13:10:38+00:00"
  9316. },
  9317. {
  9318. "name": "sebastian/environment",
  9319. "version": "5.1.5",
  9320. "source": {
  9321. "type": "git",
  9322. "url": "https://github.com/sebastianbergmann/environment.git",
  9323. "reference": "830c43a844f1f8d5b7a1f6d6076b784454d8b7ed"
  9324. },
  9325. "dist": {
  9326. "type": "zip",
  9327. "url": "https://api.github.com/repos/sebastianbergmann/environment/zipball/830c43a844f1f8d5b7a1f6d6076b784454d8b7ed",
  9328. "reference": "830c43a844f1f8d5b7a1f6d6076b784454d8b7ed",
  9329. "shasum": ""
  9330. },
  9331. "require": {
  9332. "php": ">=7.3"
  9333. },
  9334. "require-dev": {
  9335. "phpunit/phpunit": "^9.3"
  9336. },
  9337. "suggest": {
  9338. "ext-posix": "*"
  9339. },
  9340. "type": "library",
  9341. "extra": {
  9342. "branch-alias": {
  9343. "dev-master": "5.1-dev"
  9344. }
  9345. },
  9346. "autoload": {
  9347. "classmap": [
  9348. "src/"
  9349. ]
  9350. },
  9351. "notification-url": "https://packagist.org/downloads/",
  9352. "license": [
  9353. "BSD-3-Clause"
  9354. ],
  9355. "authors": [
  9356. {
  9357. "name": "Sebastian Bergmann",
  9358. "email": "sebastian@phpunit.de"
  9359. }
  9360. ],
  9361. "description": "Provides functionality to handle HHVM/PHP environments",
  9362. "homepage": "http://www.github.com/sebastianbergmann/environment",
  9363. "keywords": [
  9364. "Xdebug",
  9365. "environment",
  9366. "hhvm"
  9367. ],
  9368. "support": {
  9369. "issues": "https://github.com/sebastianbergmann/environment/issues",
  9370. "source": "https://github.com/sebastianbergmann/environment/tree/5.1.5"
  9371. },
  9372. "funding": [
  9373. {
  9374. "url": "https://github.com/sebastianbergmann",
  9375. "type": "github"
  9376. }
  9377. ],
  9378. "time": "2023-02-03T06:03:51+00:00"
  9379. },
  9380. {
  9381. "name": "sebastian/exporter",
  9382. "version": "4.0.5",
  9383. "source": {
  9384. "type": "git",
  9385. "url": "https://github.com/sebastianbergmann/exporter.git",
  9386. "reference": "ac230ed27f0f98f597c8a2b6eb7ac563af5e5b9d"
  9387. },
  9388. "dist": {
  9389. "type": "zip",
  9390. "url": "https://api.github.com/repos/sebastianbergmann/exporter/zipball/ac230ed27f0f98f597c8a2b6eb7ac563af5e5b9d",
  9391. "reference": "ac230ed27f0f98f597c8a2b6eb7ac563af5e5b9d",
  9392. "shasum": ""
  9393. },
  9394. "require": {
  9395. "php": ">=7.3",
  9396. "sebastian/recursion-context": "^4.0"
  9397. },
  9398. "require-dev": {
  9399. "ext-mbstring": "*",
  9400. "phpunit/phpunit": "^9.3"
  9401. },
  9402. "type": "library",
  9403. "extra": {
  9404. "branch-alias": {
  9405. "dev-master": "4.0-dev"
  9406. }
  9407. },
  9408. "autoload": {
  9409. "classmap": [
  9410. "src/"
  9411. ]
  9412. },
  9413. "notification-url": "https://packagist.org/downloads/",
  9414. "license": [
  9415. "BSD-3-Clause"
  9416. ],
  9417. "authors": [
  9418. {
  9419. "name": "Sebastian Bergmann",
  9420. "email": "sebastian@phpunit.de"
  9421. },
  9422. {
  9423. "name": "Jeff Welch",
  9424. "email": "whatthejeff@gmail.com"
  9425. },
  9426. {
  9427. "name": "Volker Dusch",
  9428. "email": "github@wallbash.com"
  9429. },
  9430. {
  9431. "name": "Adam Harvey",
  9432. "email": "aharvey@php.net"
  9433. },
  9434. {
  9435. "name": "Bernhard Schussek",
  9436. "email": "bschussek@gmail.com"
  9437. }
  9438. ],
  9439. "description": "Provides the functionality to export PHP variables for visualization",
  9440. "homepage": "https://www.github.com/sebastianbergmann/exporter",
  9441. "keywords": [
  9442. "export",
  9443. "exporter"
  9444. ],
  9445. "support": {
  9446. "issues": "https://github.com/sebastianbergmann/exporter/issues",
  9447. "source": "https://github.com/sebastianbergmann/exporter/tree/4.0.5"
  9448. },
  9449. "funding": [
  9450. {
  9451. "url": "https://github.com/sebastianbergmann",
  9452. "type": "github"
  9453. }
  9454. ],
  9455. "time": "2022-09-14T06:03:37+00:00"
  9456. },
  9457. {
  9458. "name": "sebastian/global-state",
  9459. "version": "5.0.5",
  9460. "source": {
  9461. "type": "git",
  9462. "url": "https://github.com/sebastianbergmann/global-state.git",
  9463. "reference": "0ca8db5a5fc9c8646244e629625ac486fa286bf2"
  9464. },
  9465. "dist": {
  9466. "type": "zip",
  9467. "url": "https://api.github.com/repos/sebastianbergmann/global-state/zipball/0ca8db5a5fc9c8646244e629625ac486fa286bf2",
  9468. "reference": "0ca8db5a5fc9c8646244e629625ac486fa286bf2",
  9469. "shasum": ""
  9470. },
  9471. "require": {
  9472. "php": ">=7.3",
  9473. "sebastian/object-reflector": "^2.0",
  9474. "sebastian/recursion-context": "^4.0"
  9475. },
  9476. "require-dev": {
  9477. "ext-dom": "*",
  9478. "phpunit/phpunit": "^9.3"
  9479. },
  9480. "suggest": {
  9481. "ext-uopz": "*"
  9482. },
  9483. "type": "library",
  9484. "extra": {
  9485. "branch-alias": {
  9486. "dev-master": "5.0-dev"
  9487. }
  9488. },
  9489. "autoload": {
  9490. "classmap": [
  9491. "src/"
  9492. ]
  9493. },
  9494. "notification-url": "https://packagist.org/downloads/",
  9495. "license": [
  9496. "BSD-3-Clause"
  9497. ],
  9498. "authors": [
  9499. {
  9500. "name": "Sebastian Bergmann",
  9501. "email": "sebastian@phpunit.de"
  9502. }
  9503. ],
  9504. "description": "Snapshotting of global state",
  9505. "homepage": "http://www.github.com/sebastianbergmann/global-state",
  9506. "keywords": [
  9507. "global state"
  9508. ],
  9509. "support": {
  9510. "issues": "https://github.com/sebastianbergmann/global-state/issues",
  9511. "source": "https://github.com/sebastianbergmann/global-state/tree/5.0.5"
  9512. },
  9513. "funding": [
  9514. {
  9515. "url": "https://github.com/sebastianbergmann",
  9516. "type": "github"
  9517. }
  9518. ],
  9519. "time": "2022-02-14T08:28:10+00:00"
  9520. },
  9521. {
  9522. "name": "sebastian/lines-of-code",
  9523. "version": "1.0.3",
  9524. "source": {
  9525. "type": "git",
  9526. "url": "https://github.com/sebastianbergmann/lines-of-code.git",
  9527. "reference": "c1c2e997aa3146983ed888ad08b15470a2e22ecc"
  9528. },
  9529. "dist": {
  9530. "type": "zip",
  9531. "url": "https://api.github.com/repos/sebastianbergmann/lines-of-code/zipball/c1c2e997aa3146983ed888ad08b15470a2e22ecc",
  9532. "reference": "c1c2e997aa3146983ed888ad08b15470a2e22ecc",
  9533. "shasum": ""
  9534. },
  9535. "require": {
  9536. "nikic/php-parser": "^4.6",
  9537. "php": ">=7.3"
  9538. },
  9539. "require-dev": {
  9540. "phpunit/phpunit": "^9.3"
  9541. },
  9542. "type": "library",
  9543. "extra": {
  9544. "branch-alias": {
  9545. "dev-master": "1.0-dev"
  9546. }
  9547. },
  9548. "autoload": {
  9549. "classmap": [
  9550. "src/"
  9551. ]
  9552. },
  9553. "notification-url": "https://packagist.org/downloads/",
  9554. "license": [
  9555. "BSD-3-Clause"
  9556. ],
  9557. "authors": [
  9558. {
  9559. "name": "Sebastian Bergmann",
  9560. "email": "sebastian@phpunit.de",
  9561. "role": "lead"
  9562. }
  9563. ],
  9564. "description": "Library for counting the lines of code in PHP source code",
  9565. "homepage": "https://github.com/sebastianbergmann/lines-of-code",
  9566. "support": {
  9567. "issues": "https://github.com/sebastianbergmann/lines-of-code/issues",
  9568. "source": "https://github.com/sebastianbergmann/lines-of-code/tree/1.0.3"
  9569. },
  9570. "funding": [
  9571. {
  9572. "url": "https://github.com/sebastianbergmann",
  9573. "type": "github"
  9574. }
  9575. ],
  9576. "time": "2020-11-28T06:42:11+00:00"
  9577. },
  9578. {
  9579. "name": "sebastian/object-enumerator",
  9580. "version": "4.0.4",
  9581. "source": {
  9582. "type": "git",
  9583. "url": "https://github.com/sebastianbergmann/object-enumerator.git",
  9584. "reference": "5c9eeac41b290a3712d88851518825ad78f45c71"
  9585. },
  9586. "dist": {
  9587. "type": "zip",
  9588. "url": "https://api.github.com/repos/sebastianbergmann/object-enumerator/zipball/5c9eeac41b290a3712d88851518825ad78f45c71",
  9589. "reference": "5c9eeac41b290a3712d88851518825ad78f45c71",
  9590. "shasum": ""
  9591. },
  9592. "require": {
  9593. "php": ">=7.3",
  9594. "sebastian/object-reflector": "^2.0",
  9595. "sebastian/recursion-context": "^4.0"
  9596. },
  9597. "require-dev": {
  9598. "phpunit/phpunit": "^9.3"
  9599. },
  9600. "type": "library",
  9601. "extra": {
  9602. "branch-alias": {
  9603. "dev-master": "4.0-dev"
  9604. }
  9605. },
  9606. "autoload": {
  9607. "classmap": [
  9608. "src/"
  9609. ]
  9610. },
  9611. "notification-url": "https://packagist.org/downloads/",
  9612. "license": [
  9613. "BSD-3-Clause"
  9614. ],
  9615. "authors": [
  9616. {
  9617. "name": "Sebastian Bergmann",
  9618. "email": "sebastian@phpunit.de"
  9619. }
  9620. ],
  9621. "description": "Traverses array structures and object graphs to enumerate all referenced objects",
  9622. "homepage": "https://github.com/sebastianbergmann/object-enumerator/",
  9623. "support": {
  9624. "issues": "https://github.com/sebastianbergmann/object-enumerator/issues",
  9625. "source": "https://github.com/sebastianbergmann/object-enumerator/tree/4.0.4"
  9626. },
  9627. "funding": [
  9628. {
  9629. "url": "https://github.com/sebastianbergmann",
  9630. "type": "github"
  9631. }
  9632. ],
  9633. "time": "2020-10-26T13:12:34+00:00"
  9634. },
  9635. {
  9636. "name": "sebastian/object-reflector",
  9637. "version": "2.0.4",
  9638. "source": {
  9639. "type": "git",
  9640. "url": "https://github.com/sebastianbergmann/object-reflector.git",
  9641. "reference": "b4f479ebdbf63ac605d183ece17d8d7fe49c15c7"
  9642. },
  9643. "dist": {
  9644. "type": "zip",
  9645. "url": "https://api.github.com/repos/sebastianbergmann/object-reflector/zipball/b4f479ebdbf63ac605d183ece17d8d7fe49c15c7",
  9646. "reference": "b4f479ebdbf63ac605d183ece17d8d7fe49c15c7",
  9647. "shasum": ""
  9648. },
  9649. "require": {
  9650. "php": ">=7.3"
  9651. },
  9652. "require-dev": {
  9653. "phpunit/phpunit": "^9.3"
  9654. },
  9655. "type": "library",
  9656. "extra": {
  9657. "branch-alias": {
  9658. "dev-master": "2.0-dev"
  9659. }
  9660. },
  9661. "autoload": {
  9662. "classmap": [
  9663. "src/"
  9664. ]
  9665. },
  9666. "notification-url": "https://packagist.org/downloads/",
  9667. "license": [
  9668. "BSD-3-Clause"
  9669. ],
  9670. "authors": [
  9671. {
  9672. "name": "Sebastian Bergmann",
  9673. "email": "sebastian@phpunit.de"
  9674. }
  9675. ],
  9676. "description": "Allows reflection of object attributes, including inherited and non-public ones",
  9677. "homepage": "https://github.com/sebastianbergmann/object-reflector/",
  9678. "support": {
  9679. "issues": "https://github.com/sebastianbergmann/object-reflector/issues",
  9680. "source": "https://github.com/sebastianbergmann/object-reflector/tree/2.0.4"
  9681. },
  9682. "funding": [
  9683. {
  9684. "url": "https://github.com/sebastianbergmann",
  9685. "type": "github"
  9686. }
  9687. ],
  9688. "time": "2020-10-26T13:14:26+00:00"
  9689. },
  9690. {
  9691. "name": "sebastian/recursion-context",
  9692. "version": "4.0.5",
  9693. "source": {
  9694. "type": "git",
  9695. "url": "https://github.com/sebastianbergmann/recursion-context.git",
  9696. "reference": "e75bd0f07204fec2a0af9b0f3cfe97d05f92efc1"
  9697. },
  9698. "dist": {
  9699. "type": "zip",
  9700. "url": "https://api.github.com/repos/sebastianbergmann/recursion-context/zipball/e75bd0f07204fec2a0af9b0f3cfe97d05f92efc1",
  9701. "reference": "e75bd0f07204fec2a0af9b0f3cfe97d05f92efc1",
  9702. "shasum": ""
  9703. },
  9704. "require": {
  9705. "php": ">=7.3"
  9706. },
  9707. "require-dev": {
  9708. "phpunit/phpunit": "^9.3"
  9709. },
  9710. "type": "library",
  9711. "extra": {
  9712. "branch-alias": {
  9713. "dev-master": "4.0-dev"
  9714. }
  9715. },
  9716. "autoload": {
  9717. "classmap": [
  9718. "src/"
  9719. ]
  9720. },
  9721. "notification-url": "https://packagist.org/downloads/",
  9722. "license": [
  9723. "BSD-3-Clause"
  9724. ],
  9725. "authors": [
  9726. {
  9727. "name": "Sebastian Bergmann",
  9728. "email": "sebastian@phpunit.de"
  9729. },
  9730. {
  9731. "name": "Jeff Welch",
  9732. "email": "whatthejeff@gmail.com"
  9733. },
  9734. {
  9735. "name": "Adam Harvey",
  9736. "email": "aharvey@php.net"
  9737. }
  9738. ],
  9739. "description": "Provides functionality to recursively process PHP variables",
  9740. "homepage": "https://github.com/sebastianbergmann/recursion-context",
  9741. "support": {
  9742. "issues": "https://github.com/sebastianbergmann/recursion-context/issues",
  9743. "source": "https://github.com/sebastianbergmann/recursion-context/tree/4.0.5"
  9744. },
  9745. "funding": [
  9746. {
  9747. "url": "https://github.com/sebastianbergmann",
  9748. "type": "github"
  9749. }
  9750. ],
  9751. "time": "2023-02-03T06:07:39+00:00"
  9752. },
  9753. {
  9754. "name": "sebastian/resource-operations",
  9755. "version": "3.0.3",
  9756. "source": {
  9757. "type": "git",
  9758. "url": "https://github.com/sebastianbergmann/resource-operations.git",
  9759. "reference": "0f4443cb3a1d92ce809899753bc0d5d5a8dd19a8"
  9760. },
  9761. "dist": {
  9762. "type": "zip",
  9763. "url": "https://api.github.com/repos/sebastianbergmann/resource-operations/zipball/0f4443cb3a1d92ce809899753bc0d5d5a8dd19a8",
  9764. "reference": "0f4443cb3a1d92ce809899753bc0d5d5a8dd19a8",
  9765. "shasum": ""
  9766. },
  9767. "require": {
  9768. "php": ">=7.3"
  9769. },
  9770. "require-dev": {
  9771. "phpunit/phpunit": "^9.0"
  9772. },
  9773. "type": "library",
  9774. "extra": {
  9775. "branch-alias": {
  9776. "dev-master": "3.0-dev"
  9777. }
  9778. },
  9779. "autoload": {
  9780. "classmap": [
  9781. "src/"
  9782. ]
  9783. },
  9784. "notification-url": "https://packagist.org/downloads/",
  9785. "license": [
  9786. "BSD-3-Clause"
  9787. ],
  9788. "authors": [
  9789. {
  9790. "name": "Sebastian Bergmann",
  9791. "email": "sebastian@phpunit.de"
  9792. }
  9793. ],
  9794. "description": "Provides a list of PHP built-in functions that operate on resources",
  9795. "homepage": "https://www.github.com/sebastianbergmann/resource-operations",
  9796. "support": {
  9797. "issues": "https://github.com/sebastianbergmann/resource-operations/issues",
  9798. "source": "https://github.com/sebastianbergmann/resource-operations/tree/3.0.3"
  9799. },
  9800. "funding": [
  9801. {
  9802. "url": "https://github.com/sebastianbergmann",
  9803. "type": "github"
  9804. }
  9805. ],
  9806. "time": "2020-09-28T06:45:17+00:00"
  9807. },
  9808. {
  9809. "name": "sebastian/type",
  9810. "version": "3.2.1",
  9811. "source": {
  9812. "type": "git",
  9813. "url": "https://github.com/sebastianbergmann/type.git",
  9814. "reference": "75e2c2a32f5e0b3aef905b9ed0b179b953b3d7c7"
  9815. },
  9816. "dist": {
  9817. "type": "zip",
  9818. "url": "https://api.github.com/repos/sebastianbergmann/type/zipball/75e2c2a32f5e0b3aef905b9ed0b179b953b3d7c7",
  9819. "reference": "75e2c2a32f5e0b3aef905b9ed0b179b953b3d7c7",
  9820. "shasum": ""
  9821. },
  9822. "require": {
  9823. "php": ">=7.3"
  9824. },
  9825. "require-dev": {
  9826. "phpunit/phpunit": "^9.5"
  9827. },
  9828. "type": "library",
  9829. "extra": {
  9830. "branch-alias": {
  9831. "dev-master": "3.2-dev"
  9832. }
  9833. },
  9834. "autoload": {
  9835. "classmap": [
  9836. "src/"
  9837. ]
  9838. },
  9839. "notification-url": "https://packagist.org/downloads/",
  9840. "license": [
  9841. "BSD-3-Clause"
  9842. ],
  9843. "authors": [
  9844. {
  9845. "name": "Sebastian Bergmann",
  9846. "email": "sebastian@phpunit.de",
  9847. "role": "lead"
  9848. }
  9849. ],
  9850. "description": "Collection of value objects that represent the types of the PHP type system",
  9851. "homepage": "https://github.com/sebastianbergmann/type",
  9852. "support": {
  9853. "issues": "https://github.com/sebastianbergmann/type/issues",
  9854. "source": "https://github.com/sebastianbergmann/type/tree/3.2.1"
  9855. },
  9856. "funding": [
  9857. {
  9858. "url": "https://github.com/sebastianbergmann",
  9859. "type": "github"
  9860. }
  9861. ],
  9862. "time": "2023-02-03T06:13:03+00:00"
  9863. },
  9864. {
  9865. "name": "sebastian/version",
  9866. "version": "3.0.2",
  9867. "source": {
  9868. "type": "git",
  9869. "url": "https://github.com/sebastianbergmann/version.git",
  9870. "reference": "c6c1022351a901512170118436c764e473f6de8c"
  9871. },
  9872. "dist": {
  9873. "type": "zip",
  9874. "url": "https://api.github.com/repos/sebastianbergmann/version/zipball/c6c1022351a901512170118436c764e473f6de8c",
  9875. "reference": "c6c1022351a901512170118436c764e473f6de8c",
  9876. "shasum": ""
  9877. },
  9878. "require": {
  9879. "php": ">=7.3"
  9880. },
  9881. "type": "library",
  9882. "extra": {
  9883. "branch-alias": {
  9884. "dev-master": "3.0-dev"
  9885. }
  9886. },
  9887. "autoload": {
  9888. "classmap": [
  9889. "src/"
  9890. ]
  9891. },
  9892. "notification-url": "https://packagist.org/downloads/",
  9893. "license": [
  9894. "BSD-3-Clause"
  9895. ],
  9896. "authors": [
  9897. {
  9898. "name": "Sebastian Bergmann",
  9899. "email": "sebastian@phpunit.de",
  9900. "role": "lead"
  9901. }
  9902. ],
  9903. "description": "Library that helps with managing the version number of Git-hosted PHP projects",
  9904. "homepage": "https://github.com/sebastianbergmann/version",
  9905. "support": {
  9906. "issues": "https://github.com/sebastianbergmann/version/issues",
  9907. "source": "https://github.com/sebastianbergmann/version/tree/3.0.2"
  9908. },
  9909. "funding": [
  9910. {
  9911. "url": "https://github.com/sebastianbergmann",
  9912. "type": "github"
  9913. }
  9914. ],
  9915. "time": "2020-09-28T06:39:44+00:00"
  9916. },
  9917. {
  9918. "name": "symfony/browser-kit",
  9919. "version": "v6.2.7",
  9920. "source": {
  9921. "type": "git",
  9922. "url": "https://github.com/symfony/browser-kit.git",
  9923. "reference": "87bd43240e6cc855f70ea1c7a448ab3bd442633c"
  9924. },
  9925. "dist": {
  9926. "type": "zip",
  9927. "url": "https://api.github.com/repos/symfony/browser-kit/zipball/87bd43240e6cc855f70ea1c7a448ab3bd442633c",
  9928. "reference": "87bd43240e6cc855f70ea1c7a448ab3bd442633c",
  9929. "shasum": ""
  9930. },
  9931. "require": {
  9932. "php": ">=8.1",
  9933. "symfony/dom-crawler": "^5.4|^6.0"
  9934. },
  9935. "require-dev": {
  9936. "symfony/css-selector": "^5.4|^6.0",
  9937. "symfony/http-client": "^5.4|^6.0",
  9938. "symfony/mime": "^5.4|^6.0",
  9939. "symfony/process": "^5.4|^6.0"
  9940. },
  9941. "suggest": {
  9942. "symfony/process": ""
  9943. },
  9944. "type": "library",
  9945. "autoload": {
  9946. "psr-4": {
  9947. "Symfony\\Component\\BrowserKit\\": ""
  9948. },
  9949. "exclude-from-classmap": [
  9950. "/Tests/"
  9951. ]
  9952. },
  9953. "notification-url": "https://packagist.org/downloads/",
  9954. "license": [
  9955. "MIT"
  9956. ],
  9957. "authors": [
  9958. {
  9959. "name": "Fabien Potencier",
  9960. "email": "fabien@symfony.com"
  9961. },
  9962. {
  9963. "name": "Symfony Community",
  9964. "homepage": "https://symfony.com/contributors"
  9965. }
  9966. ],
  9967. "description": "Simulates the behavior of a web browser, allowing you to make requests, click on links and submit forms programmatically",
  9968. "homepage": "https://symfony.com",
  9969. "support": {
  9970. "source": "https://github.com/symfony/browser-kit/tree/v6.2.7"
  9971. },
  9972. "funding": [
  9973. {
  9974. "url": "https://symfony.com/sponsor",
  9975. "type": "custom"
  9976. },
  9977. {
  9978. "url": "https://github.com/fabpot",
  9979. "type": "github"
  9980. },
  9981. {
  9982. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  9983. "type": "tidelift"
  9984. }
  9985. ],
  9986. "time": "2023-02-14T08:44:56+00:00"
  9987. },
  9988. {
  9989. "name": "symfony/css-selector",
  9990. "version": "v6.2.7",
  9991. "source": {
  9992. "type": "git",
  9993. "url": "https://github.com/symfony/css-selector.git",
  9994. "reference": "aedf3cb0f5b929ec255d96bbb4909e9932c769e0"
  9995. },
  9996. "dist": {
  9997. "type": "zip",
  9998. "url": "https://api.github.com/repos/symfony/css-selector/zipball/aedf3cb0f5b929ec255d96bbb4909e9932c769e0",
  9999. "reference": "aedf3cb0f5b929ec255d96bbb4909e9932c769e0",
  10000. "shasum": ""
  10001. },
  10002. "require": {
  10003. "php": ">=8.1"
  10004. },
  10005. "type": "library",
  10006. "autoload": {
  10007. "psr-4": {
  10008. "Symfony\\Component\\CssSelector\\": ""
  10009. },
  10010. "exclude-from-classmap": [
  10011. "/Tests/"
  10012. ]
  10013. },
  10014. "notification-url": "https://packagist.org/downloads/",
  10015. "license": [
  10016. "MIT"
  10017. ],
  10018. "authors": [
  10019. {
  10020. "name": "Fabien Potencier",
  10021. "email": "fabien@symfony.com"
  10022. },
  10023. {
  10024. "name": "Jean-François Simon",
  10025. "email": "jeanfrancois.simon@sensiolabs.com"
  10026. },
  10027. {
  10028. "name": "Symfony Community",
  10029. "homepage": "https://symfony.com/contributors"
  10030. }
  10031. ],
  10032. "description": "Converts CSS selectors to XPath expressions",
  10033. "homepage": "https://symfony.com",
  10034. "support": {
  10035. "source": "https://github.com/symfony/css-selector/tree/v6.2.7"
  10036. },
  10037. "funding": [
  10038. {
  10039. "url": "https://symfony.com/sponsor",
  10040. "type": "custom"
  10041. },
  10042. {
  10043. "url": "https://github.com/fabpot",
  10044. "type": "github"
  10045. },
  10046. {
  10047. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  10048. "type": "tidelift"
  10049. }
  10050. ],
  10051. "time": "2023-02-14T08:44:56+00:00"
  10052. },
  10053. {
  10054. "name": "symfony/debug-bundle",
  10055. "version": "v6.2.7",
  10056. "source": {
  10057. "type": "git",
  10058. "url": "https://github.com/symfony/debug-bundle.git",
  10059. "reference": "8ff6c96d09c462beade7512137899e400c76d994"
  10060. },
  10061. "dist": {
  10062. "type": "zip",
  10063. "url": "https://api.github.com/repos/symfony/debug-bundle/zipball/8ff6c96d09c462beade7512137899e400c76d994",
  10064. "reference": "8ff6c96d09c462beade7512137899e400c76d994",
  10065. "shasum": ""
  10066. },
  10067. "require": {
  10068. "ext-xml": "*",
  10069. "php": ">=8.1",
  10070. "symfony/dependency-injection": "^5.4|^6.0",
  10071. "symfony/http-kernel": "^5.4|^6.0",
  10072. "symfony/twig-bridge": "^5.4|^6.0",
  10073. "symfony/var-dumper": "^5.4|^6.0"
  10074. },
  10075. "conflict": {
  10076. "symfony/config": "<5.4",
  10077. "symfony/dependency-injection": "<5.4"
  10078. },
  10079. "require-dev": {
  10080. "symfony/config": "^5.4|^6.0",
  10081. "symfony/web-profiler-bundle": "^5.4|^6.0"
  10082. },
  10083. "suggest": {
  10084. "symfony/config": "For service container configuration",
  10085. "symfony/dependency-injection": "For using as a service from the container"
  10086. },
  10087. "type": "symfony-bundle",
  10088. "autoload": {
  10089. "psr-4": {
  10090. "Symfony\\Bundle\\DebugBundle\\": ""
  10091. },
  10092. "exclude-from-classmap": [
  10093. "/Tests/"
  10094. ]
  10095. },
  10096. "notification-url": "https://packagist.org/downloads/",
  10097. "license": [
  10098. "MIT"
  10099. ],
  10100. "authors": [
  10101. {
  10102. "name": "Fabien Potencier",
  10103. "email": "fabien@symfony.com"
  10104. },
  10105. {
  10106. "name": "Symfony Community",
  10107. "homepage": "https://symfony.com/contributors"
  10108. }
  10109. ],
  10110. "description": "Provides a tight integration of the Symfony VarDumper component and the ServerLogCommand from MonologBridge into the Symfony full-stack framework",
  10111. "homepage": "https://symfony.com",
  10112. "support": {
  10113. "source": "https://github.com/symfony/debug-bundle/tree/v6.2.7"
  10114. },
  10115. "funding": [
  10116. {
  10117. "url": "https://symfony.com/sponsor",
  10118. "type": "custom"
  10119. },
  10120. {
  10121. "url": "https://github.com/fabpot",
  10122. "type": "github"
  10123. },
  10124. {
  10125. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  10126. "type": "tidelift"
  10127. }
  10128. ],
  10129. "time": "2023-02-14T08:44:56+00:00"
  10130. },
  10131. {
  10132. "name": "symfony/dom-crawler",
  10133. "version": "v6.2.7",
  10134. "source": {
  10135. "type": "git",
  10136. "url": "https://github.com/symfony/dom-crawler.git",
  10137. "reference": "65a906f5141ff2d3aef1b01c128fba78f5e9f921"
  10138. },
  10139. "dist": {
  10140. "type": "zip",
  10141. "url": "https://api.github.com/repos/symfony/dom-crawler/zipball/65a906f5141ff2d3aef1b01c128fba78f5e9f921",
  10142. "reference": "65a906f5141ff2d3aef1b01c128fba78f5e9f921",
  10143. "shasum": ""
  10144. },
  10145. "require": {
  10146. "masterminds/html5": "^2.6",
  10147. "php": ">=8.1",
  10148. "symfony/polyfill-ctype": "~1.8",
  10149. "symfony/polyfill-mbstring": "~1.0"
  10150. },
  10151. "require-dev": {
  10152. "symfony/css-selector": "^5.4|^6.0"
  10153. },
  10154. "suggest": {
  10155. "symfony/css-selector": ""
  10156. },
  10157. "type": "library",
  10158. "autoload": {
  10159. "psr-4": {
  10160. "Symfony\\Component\\DomCrawler\\": ""
  10161. },
  10162. "exclude-from-classmap": [
  10163. "/Tests/"
  10164. ]
  10165. },
  10166. "notification-url": "https://packagist.org/downloads/",
  10167. "license": [
  10168. "MIT"
  10169. ],
  10170. "authors": [
  10171. {
  10172. "name": "Fabien Potencier",
  10173. "email": "fabien@symfony.com"
  10174. },
  10175. {
  10176. "name": "Symfony Community",
  10177. "homepage": "https://symfony.com/contributors"
  10178. }
  10179. ],
  10180. "description": "Eases DOM navigation for HTML and XML documents",
  10181. "homepage": "https://symfony.com",
  10182. "support": {
  10183. "source": "https://github.com/symfony/dom-crawler/tree/v6.2.7"
  10184. },
  10185. "funding": [
  10186. {
  10187. "url": "https://symfony.com/sponsor",
  10188. "type": "custom"
  10189. },
  10190. {
  10191. "url": "https://github.com/fabpot",
  10192. "type": "github"
  10193. },
  10194. {
  10195. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  10196. "type": "tidelift"
  10197. }
  10198. ],
  10199. "time": "2023-02-14T08:44:56+00:00"
  10200. },
  10201. {
  10202. "name": "symfony/maker-bundle",
  10203. "version": "v1.48.0",
  10204. "source": {
  10205. "type": "git",
  10206. "url": "https://github.com/symfony/maker-bundle.git",
  10207. "reference": "2e428e8432e9879187672fe08f1cc335e2a31dd6"
  10208. },
  10209. "dist": {
  10210. "type": "zip",
  10211. "url": "https://api.github.com/repos/symfony/maker-bundle/zipball/2e428e8432e9879187672fe08f1cc335e2a31dd6",
  10212. "reference": "2e428e8432e9879187672fe08f1cc335e2a31dd6",
  10213. "shasum": ""
  10214. },
  10215. "require": {
  10216. "doctrine/inflector": "^2.0",
  10217. "nikic/php-parser": "^4.11",
  10218. "php": ">=8.0",
  10219. "symfony/config": "^5.4.7|^6.0",
  10220. "symfony/console": "^5.4.7|^6.0",
  10221. "symfony/dependency-injection": "^5.4.7|^6.0",
  10222. "symfony/deprecation-contracts": "^2.2|^3",
  10223. "symfony/filesystem": "^5.4.7|^6.0",
  10224. "symfony/finder": "^5.4.3|^6.0",
  10225. "symfony/framework-bundle": "^5.4.7|^6.0",
  10226. "symfony/http-kernel": "^5.4.7|^6.0"
  10227. },
  10228. "conflict": {
  10229. "doctrine/doctrine-bundle": "<2.4",
  10230. "doctrine/orm": "<2.10",
  10231. "symfony/doctrine-bridge": "<5.4"
  10232. },
  10233. "require-dev": {
  10234. "composer/semver": "^3.0",
  10235. "doctrine/doctrine-bundle": "^2.4",
  10236. "doctrine/orm": "^2.10.0",
  10237. "symfony/http-client": "^5.4.7|^6.0",
  10238. "symfony/phpunit-bridge": "^5.4.7|^6.0",
  10239. "symfony/polyfill-php80": "^1.16.0",
  10240. "symfony/process": "^5.4.7|^6.0",
  10241. "symfony/security-core": "^5.4.7|^6.0",
  10242. "symfony/yaml": "^5.4.3|^6.0",
  10243. "twig/twig": "^2.0|^3.0"
  10244. },
  10245. "type": "symfony-bundle",
  10246. "extra": {
  10247. "branch-alias": {
  10248. "dev-main": "1.0-dev"
  10249. }
  10250. },
  10251. "autoload": {
  10252. "psr-4": {
  10253. "Symfony\\Bundle\\MakerBundle\\": "src/"
  10254. }
  10255. },
  10256. "notification-url": "https://packagist.org/downloads/",
  10257. "license": [
  10258. "MIT"
  10259. ],
  10260. "authors": [
  10261. {
  10262. "name": "Symfony Community",
  10263. "homepage": "https://symfony.com/contributors"
  10264. }
  10265. ],
  10266. "description": "Symfony Maker helps you create empty commands, controllers, form classes, tests and more so you can forget about writing boilerplate code.",
  10267. "homepage": "https://symfony.com/doc/current/bundles/SymfonyMakerBundle/index.html",
  10268. "keywords": [
  10269. "code generator",
  10270. "generator",
  10271. "scaffold",
  10272. "scaffolding"
  10273. ],
  10274. "support": {
  10275. "issues": "https://github.com/symfony/maker-bundle/issues",
  10276. "source": "https://github.com/symfony/maker-bundle/tree/v1.48.0"
  10277. },
  10278. "funding": [
  10279. {
  10280. "url": "https://symfony.com/sponsor",
  10281. "type": "custom"
  10282. },
  10283. {
  10284. "url": "https://github.com/fabpot",
  10285. "type": "github"
  10286. },
  10287. {
  10288. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  10289. "type": "tidelift"
  10290. }
  10291. ],
  10292. "time": "2022-11-14T10:48:46+00:00"
  10293. },
  10294. {
  10295. "name": "symfony/phpunit-bridge",
  10296. "version": "v6.2.7",
  10297. "source": {
  10298. "type": "git",
  10299. "url": "https://github.com/symfony/phpunit-bridge.git",
  10300. "reference": "56965fae0b6b8d271015990eff5240ffff02e185"
  10301. },
  10302. "dist": {
  10303. "type": "zip",
  10304. "url": "https://api.github.com/repos/symfony/phpunit-bridge/zipball/56965fae0b6b8d271015990eff5240ffff02e185",
  10305. "reference": "56965fae0b6b8d271015990eff5240ffff02e185",
  10306. "shasum": ""
  10307. },
  10308. "require": {
  10309. "php": ">=7.1.3"
  10310. },
  10311. "conflict": {
  10312. "phpunit/phpunit": "<7.5|9.1.2"
  10313. },
  10314. "require-dev": {
  10315. "symfony/deprecation-contracts": "^2.1|^3.0",
  10316. "symfony/error-handler": "^5.4|^6.0"
  10317. },
  10318. "suggest": {
  10319. "symfony/error-handler": "For tracking deprecated interfaces usages at runtime with DebugClassLoader"
  10320. },
  10321. "bin": [
  10322. "bin/simple-phpunit"
  10323. ],
  10324. "type": "symfony-bridge",
  10325. "extra": {
  10326. "thanks": {
  10327. "name": "phpunit/phpunit",
  10328. "url": "https://github.com/sebastianbergmann/phpunit"
  10329. }
  10330. },
  10331. "autoload": {
  10332. "files": [
  10333. "bootstrap.php"
  10334. ],
  10335. "psr-4": {
  10336. "Symfony\\Bridge\\PhpUnit\\": ""
  10337. },
  10338. "exclude-from-classmap": [
  10339. "/Tests/"
  10340. ]
  10341. },
  10342. "notification-url": "https://packagist.org/downloads/",
  10343. "license": [
  10344. "MIT"
  10345. ],
  10346. "authors": [
  10347. {
  10348. "name": "Nicolas Grekas",
  10349. "email": "p@tchwork.com"
  10350. },
  10351. {
  10352. "name": "Symfony Community",
  10353. "homepage": "https://symfony.com/contributors"
  10354. }
  10355. ],
  10356. "description": "Provides utilities for PHPUnit, especially user deprecation notices management",
  10357. "homepage": "https://symfony.com",
  10358. "support": {
  10359. "source": "https://github.com/symfony/phpunit-bridge/tree/v6.2.7"
  10360. },
  10361. "funding": [
  10362. {
  10363. "url": "https://symfony.com/sponsor",
  10364. "type": "custom"
  10365. },
  10366. {
  10367. "url": "https://github.com/fabpot",
  10368. "type": "github"
  10369. },
  10370. {
  10371. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  10372. "type": "tidelift"
  10373. }
  10374. ],
  10375. "time": "2023-02-16T09:57:23+00:00"
  10376. },
  10377. {
  10378. "name": "symfony/web-profiler-bundle",
  10379. "version": "v6.2.7",
  10380. "source": {
  10381. "type": "git",
  10382. "url": "https://github.com/symfony/web-profiler-bundle.git",
  10383. "reference": "0d183e0a69652e348007e97ffff8d3ded9cc6d2d"
  10384. },
  10385. "dist": {
  10386. "type": "zip",
  10387. "url": "https://api.github.com/repos/symfony/web-profiler-bundle/zipball/0d183e0a69652e348007e97ffff8d3ded9cc6d2d",
  10388. "reference": "0d183e0a69652e348007e97ffff8d3ded9cc6d2d",
  10389. "shasum": ""
  10390. },
  10391. "require": {
  10392. "php": ">=8.1",
  10393. "symfony/config": "^5.4|^6.0",
  10394. "symfony/framework-bundle": "^5.4|^6.0",
  10395. "symfony/http-kernel": "^6.1",
  10396. "symfony/routing": "^5.4|^6.0",
  10397. "symfony/twig-bundle": "^5.4|^6.0",
  10398. "twig/twig": "^2.13|^3.0.4"
  10399. },
  10400. "conflict": {
  10401. "symfony/form": "<5.4",
  10402. "symfony/mailer": "<5.4",
  10403. "symfony/messenger": "<5.4"
  10404. },
  10405. "require-dev": {
  10406. "symfony/browser-kit": "^5.4|^6.0",
  10407. "symfony/console": "^5.4|^6.0",
  10408. "symfony/css-selector": "^5.4|^6.0",
  10409. "symfony/stopwatch": "^5.4|^6.0"
  10410. },
  10411. "type": "symfony-bundle",
  10412. "autoload": {
  10413. "psr-4": {
  10414. "Symfony\\Bundle\\WebProfilerBundle\\": ""
  10415. },
  10416. "exclude-from-classmap": [
  10417. "/Tests/"
  10418. ]
  10419. },
  10420. "notification-url": "https://packagist.org/downloads/",
  10421. "license": [
  10422. "MIT"
  10423. ],
  10424. "authors": [
  10425. {
  10426. "name": "Fabien Potencier",
  10427. "email": "fabien@symfony.com"
  10428. },
  10429. {
  10430. "name": "Symfony Community",
  10431. "homepage": "https://symfony.com/contributors"
  10432. }
  10433. ],
  10434. "description": "Provides a development tool that gives detailed information about the execution of any request",
  10435. "homepage": "https://symfony.com",
  10436. "support": {
  10437. "source": "https://github.com/symfony/web-profiler-bundle/tree/v6.2.7"
  10438. },
  10439. "funding": [
  10440. {
  10441. "url": "https://symfony.com/sponsor",
  10442. "type": "custom"
  10443. },
  10444. {
  10445. "url": "https://github.com/fabpot",
  10446. "type": "github"
  10447. },
  10448. {
  10449. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  10450. "type": "tidelift"
  10451. }
  10452. ],
  10453. "time": "2023-02-21T16:32:03+00:00"
  10454. },
  10455. {
  10456. "name": "theseer/tokenizer",
  10457. "version": "1.2.1",
  10458. "source": {
  10459. "type": "git",
  10460. "url": "https://github.com/theseer/tokenizer.git",
  10461. "reference": "34a41e998c2183e22995f158c581e7b5e755ab9e"
  10462. },
  10463. "dist": {
  10464. "type": "zip",
  10465. "url": "https://api.github.com/repos/theseer/tokenizer/zipball/34a41e998c2183e22995f158c581e7b5e755ab9e",
  10466. "reference": "34a41e998c2183e22995f158c581e7b5e755ab9e",
  10467. "shasum": ""
  10468. },
  10469. "require": {
  10470. "ext-dom": "*",
  10471. "ext-tokenizer": "*",
  10472. "ext-xmlwriter": "*",
  10473. "php": "^7.2 || ^8.0"
  10474. },
  10475. "type": "library",
  10476. "autoload": {
  10477. "classmap": [
  10478. "src/"
  10479. ]
  10480. },
  10481. "notification-url": "https://packagist.org/downloads/",
  10482. "license": [
  10483. "BSD-3-Clause"
  10484. ],
  10485. "authors": [
  10486. {
  10487. "name": "Arne Blankerts",
  10488. "email": "arne@blankerts.de",
  10489. "role": "Developer"
  10490. }
  10491. ],
  10492. "description": "A small library for converting tokenized PHP source code into XML and potentially other formats",
  10493. "support": {
  10494. "issues": "https://github.com/theseer/tokenizer/issues",
  10495. "source": "https://github.com/theseer/tokenizer/tree/1.2.1"
  10496. },
  10497. "funding": [
  10498. {
  10499. "url": "https://github.com/theseer",
  10500. "type": "github"
  10501. }
  10502. ],
  10503. "time": "2021-07-28T10:34:58+00:00"
  10504. }
  10505. ],
  10506. "aliases": [],
  10507. "minimum-stability": "stable",
  10508. "stability-flags": [],
  10509. "prefer-stable": false,
  10510. "prefer-lowest": false,
  10511. "platform": {
  10512. "php": "^8.1",
  10513. "ext-ctype": "*",
  10514. "ext-iconv": "*"
  10515. },
  10516. "platform-dev": [],
  10517. "platform-overrides": {
  10518. "php": "8.1"
  10519. },
  10520. "plugin-api-version": "2.3.0"
  10521. }