composer.lock 389 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298529953005301530253035304530553065307530853095310531153125313531453155316531753185319532053215322532353245325532653275328532953305331533253335334533553365337533853395340534153425343534453455346534753485349535053515352535353545355535653575358535953605361536253635364536553665367536853695370537153725373537453755376537753785379538053815382538353845385538653875388538953905391539253935394539553965397539853995400540154025403540454055406540754085409541054115412541354145415541654175418541954205421542254235424542554265427542854295430543154325433543454355436543754385439544054415442544354445445544654475448544954505451545254535454545554565457545854595460546154625463546454655466546754685469547054715472547354745475547654775478547954805481548254835484548554865487548854895490549154925493549454955496549754985499550055015502550355045505550655075508550955105511551255135514551555165517551855195520552155225523552455255526552755285529553055315532553355345535553655375538553955405541554255435544554555465547554855495550555155525553555455555556555755585559556055615562556355645565556655675568556955705571557255735574557555765577557855795580558155825583558455855586558755885589559055915592559355945595559655975598559956005601560256035604560556065607560856095610561156125613561456155616561756185619562056215622562356245625562656275628562956305631563256335634563556365637563856395640564156425643564456455646564756485649565056515652565356545655565656575658565956605661566256635664566556665667566856695670567156725673567456755676567756785679568056815682568356845685568656875688568956905691569256935694569556965697569856995700570157025703570457055706570757085709571057115712571357145715571657175718571957205721572257235724572557265727572857295730573157325733573457355736573757385739574057415742574357445745574657475748574957505751575257535754575557565757575857595760576157625763576457655766576757685769577057715772577357745775577657775778577957805781578257835784578557865787578857895790579157925793579457955796579757985799580058015802580358045805580658075808580958105811581258135814581558165817581858195820582158225823582458255826582758285829583058315832583358345835583658375838583958405841584258435844584558465847584858495850585158525853585458555856585758585859586058615862586358645865586658675868586958705871587258735874587558765877587858795880588158825883588458855886588758885889589058915892589358945895589658975898589959005901590259035904590559065907590859095910591159125913591459155916591759185919592059215922592359245925592659275928592959305931593259335934593559365937593859395940594159425943594459455946594759485949595059515952595359545955595659575958595959605961596259635964596559665967596859695970597159725973597459755976597759785979598059815982598359845985598659875988598959905991599259935994599559965997599859996000600160026003600460056006600760086009601060116012601360146015601660176018601960206021602260236024602560266027602860296030603160326033603460356036603760386039604060416042604360446045604660476048604960506051605260536054605560566057605860596060606160626063606460656066606760686069607060716072607360746075607660776078607960806081608260836084608560866087608860896090609160926093609460956096609760986099610061016102610361046105610661076108610961106111611261136114611561166117611861196120612161226123612461256126612761286129613061316132613361346135613661376138613961406141614261436144614561466147614861496150615161526153615461556156615761586159616061616162616361646165616661676168616961706171617261736174617561766177617861796180618161826183618461856186618761886189619061916192619361946195619661976198619962006201620262036204620562066207620862096210621162126213621462156216621762186219622062216222622362246225622662276228622962306231623262336234623562366237623862396240624162426243624462456246624762486249625062516252625362546255625662576258625962606261626262636264626562666267626862696270627162726273627462756276627762786279628062816282628362846285628662876288628962906291629262936294629562966297629862996300630163026303630463056306630763086309631063116312631363146315631663176318631963206321632263236324632563266327632863296330633163326333633463356336633763386339634063416342634363446345634663476348634963506351635263536354635563566357635863596360636163626363636463656366636763686369637063716372637363746375637663776378637963806381638263836384638563866387638863896390639163926393639463956396639763986399640064016402640364046405640664076408640964106411641264136414641564166417641864196420642164226423642464256426642764286429643064316432643364346435643664376438643964406441644264436444644564466447644864496450645164526453645464556456645764586459646064616462646364646465646664676468646964706471647264736474647564766477647864796480648164826483648464856486648764886489649064916492649364946495649664976498649965006501650265036504650565066507650865096510651165126513651465156516651765186519652065216522652365246525652665276528652965306531653265336534653565366537653865396540654165426543654465456546654765486549655065516552655365546555655665576558655965606561656265636564656565666567656865696570657165726573657465756576657765786579658065816582658365846585658665876588658965906591659265936594659565966597659865996600660166026603660466056606660766086609661066116612661366146615661666176618661966206621662266236624662566266627662866296630663166326633663466356636663766386639664066416642664366446645664666476648664966506651665266536654665566566657665866596660666166626663666466656666666766686669667066716672667366746675667666776678667966806681668266836684668566866687668866896690669166926693669466956696669766986699670067016702670367046705670667076708670967106711671267136714671567166717671867196720672167226723672467256726672767286729673067316732673367346735673667376738673967406741674267436744674567466747674867496750675167526753675467556756675767586759676067616762676367646765676667676768676967706771677267736774677567766777677867796780678167826783678467856786678767886789679067916792679367946795679667976798679968006801680268036804680568066807680868096810681168126813681468156816681768186819682068216822682368246825682668276828682968306831683268336834683568366837683868396840684168426843684468456846684768486849685068516852685368546855685668576858685968606861686268636864686568666867686868696870687168726873687468756876687768786879688068816882688368846885688668876888688968906891689268936894689568966897689868996900690169026903690469056906690769086909691069116912691369146915691669176918691969206921692269236924692569266927692869296930693169326933693469356936693769386939694069416942694369446945694669476948694969506951695269536954695569566957695869596960696169626963696469656966696769686969697069716972697369746975697669776978697969806981698269836984698569866987698869896990699169926993699469956996699769986999700070017002700370047005700670077008700970107011701270137014701570167017701870197020702170227023702470257026702770287029703070317032703370347035703670377038703970407041704270437044704570467047704870497050705170527053705470557056705770587059706070617062706370647065706670677068706970707071707270737074707570767077707870797080708170827083708470857086708770887089709070917092709370947095709670977098709971007101710271037104710571067107710871097110711171127113711471157116711771187119712071217122712371247125712671277128712971307131713271337134713571367137713871397140714171427143714471457146714771487149715071517152715371547155715671577158715971607161716271637164716571667167716871697170717171727173717471757176717771787179718071817182718371847185718671877188718971907191719271937194719571967197719871997200720172027203720472057206720772087209721072117212721372147215721672177218721972207221722272237224722572267227722872297230723172327233723472357236723772387239724072417242724372447245724672477248724972507251725272537254725572567257725872597260726172627263726472657266726772687269727072717272727372747275727672777278727972807281728272837284728572867287728872897290729172927293729472957296729772987299730073017302730373047305730673077308730973107311731273137314731573167317731873197320732173227323732473257326732773287329733073317332733373347335733673377338733973407341734273437344734573467347734873497350735173527353735473557356735773587359736073617362736373647365736673677368736973707371737273737374737573767377737873797380738173827383738473857386738773887389739073917392739373947395739673977398739974007401740274037404740574067407740874097410741174127413741474157416741774187419742074217422742374247425742674277428742974307431743274337434743574367437743874397440744174427443744474457446744774487449745074517452745374547455745674577458745974607461746274637464746574667467746874697470747174727473747474757476747774787479748074817482748374847485748674877488748974907491749274937494749574967497749874997500750175027503750475057506750775087509751075117512751375147515751675177518751975207521752275237524752575267527752875297530753175327533753475357536753775387539754075417542754375447545754675477548754975507551755275537554755575567557755875597560756175627563756475657566756775687569757075717572757375747575757675777578757975807581758275837584758575867587758875897590759175927593759475957596759775987599760076017602760376047605760676077608760976107611761276137614761576167617761876197620762176227623762476257626762776287629763076317632763376347635763676377638763976407641764276437644764576467647764876497650765176527653765476557656765776587659766076617662766376647665766676677668766976707671767276737674767576767677767876797680768176827683768476857686768776887689769076917692769376947695769676977698769977007701770277037704770577067707770877097710771177127713771477157716771777187719772077217722772377247725772677277728772977307731773277337734773577367737773877397740774177427743774477457746774777487749775077517752775377547755775677577758775977607761776277637764776577667767776877697770777177727773777477757776777777787779778077817782778377847785778677877788778977907791779277937794779577967797779877997800780178027803780478057806780778087809781078117812781378147815781678177818781978207821782278237824782578267827782878297830783178327833783478357836783778387839784078417842784378447845784678477848784978507851785278537854785578567857785878597860786178627863786478657866786778687869787078717872787378747875787678777878787978807881788278837884788578867887788878897890789178927893789478957896789778987899790079017902790379047905790679077908790979107911791279137914791579167917791879197920792179227923792479257926792779287929793079317932793379347935793679377938793979407941794279437944794579467947794879497950795179527953795479557956795779587959796079617962796379647965796679677968796979707971797279737974797579767977797879797980798179827983798479857986798779887989799079917992799379947995799679977998799980008001800280038004800580068007800880098010801180128013801480158016801780188019802080218022802380248025802680278028802980308031803280338034803580368037803880398040804180428043804480458046804780488049805080518052805380548055805680578058805980608061806280638064806580668067806880698070807180728073807480758076807780788079808080818082808380848085808680878088808980908091809280938094809580968097809880998100810181028103810481058106810781088109811081118112811381148115811681178118811981208121812281238124812581268127812881298130813181328133813481358136813781388139814081418142814381448145814681478148814981508151815281538154815581568157815881598160816181628163816481658166816781688169817081718172817381748175817681778178817981808181818281838184818581868187818881898190819181928193819481958196819781988199820082018202820382048205820682078208820982108211821282138214821582168217821882198220822182228223822482258226822782288229823082318232823382348235823682378238823982408241824282438244824582468247824882498250825182528253825482558256825782588259826082618262826382648265826682678268826982708271827282738274827582768277827882798280828182828283828482858286828782888289829082918292829382948295829682978298829983008301830283038304830583068307830883098310831183128313831483158316831783188319832083218322832383248325832683278328832983308331833283338334833583368337833883398340834183428343834483458346834783488349835083518352835383548355835683578358835983608361836283638364836583668367836883698370837183728373837483758376837783788379838083818382838383848385838683878388838983908391839283938394839583968397839883998400840184028403840484058406840784088409841084118412841384148415841684178418841984208421842284238424842584268427842884298430843184328433843484358436843784388439844084418442844384448445844684478448844984508451845284538454845584568457845884598460846184628463846484658466846784688469847084718472847384748475847684778478847984808481848284838484848584868487848884898490849184928493849484958496849784988499850085018502850385048505850685078508850985108511851285138514851585168517851885198520852185228523852485258526852785288529853085318532853385348535853685378538853985408541854285438544854585468547854885498550855185528553855485558556855785588559856085618562856385648565856685678568856985708571857285738574857585768577857885798580858185828583858485858586858785888589859085918592859385948595859685978598859986008601860286038604860586068607860886098610861186128613861486158616861786188619862086218622862386248625862686278628862986308631863286338634863586368637863886398640864186428643864486458646864786488649865086518652865386548655865686578658865986608661866286638664866586668667866886698670867186728673867486758676867786788679868086818682868386848685868686878688868986908691869286938694869586968697869886998700870187028703870487058706870787088709871087118712871387148715871687178718871987208721872287238724872587268727872887298730873187328733873487358736873787388739874087418742874387448745874687478748874987508751875287538754875587568757875887598760876187628763876487658766876787688769877087718772877387748775877687778778877987808781878287838784878587868787878887898790879187928793879487958796879787988799880088018802880388048805880688078808880988108811881288138814881588168817881888198820882188228823882488258826882788288829883088318832883388348835883688378838883988408841884288438844884588468847884888498850885188528853885488558856885788588859886088618862886388648865886688678868886988708871887288738874887588768877887888798880888188828883888488858886888788888889889088918892889388948895889688978898889989008901890289038904890589068907890889098910891189128913891489158916891789188919892089218922892389248925892689278928892989308931893289338934893589368937893889398940894189428943894489458946894789488949895089518952895389548955895689578958895989608961896289638964896589668967896889698970897189728973897489758976897789788979898089818982898389848985898689878988898989908991899289938994899589968997899889999000900190029003900490059006900790089009901090119012901390149015901690179018901990209021902290239024902590269027902890299030903190329033903490359036903790389039904090419042904390449045904690479048904990509051905290539054905590569057905890599060906190629063906490659066906790689069907090719072907390749075907690779078907990809081908290839084908590869087908890899090909190929093909490959096909790989099910091019102910391049105910691079108910991109111911291139114911591169117911891199120912191229123912491259126912791289129913091319132913391349135913691379138913991409141914291439144914591469147914891499150915191529153915491559156915791589159916091619162916391649165916691679168916991709171917291739174917591769177917891799180918191829183918491859186918791889189919091919192919391949195919691979198919992009201920292039204920592069207920892099210921192129213921492159216921792189219922092219222922392249225922692279228922992309231923292339234923592369237923892399240924192429243924492459246924792489249925092519252925392549255925692579258925992609261926292639264926592669267926892699270927192729273927492759276927792789279928092819282928392849285928692879288928992909291929292939294929592969297929892999300930193029303930493059306930793089309931093119312931393149315931693179318931993209321932293239324932593269327932893299330933193329333933493359336933793389339934093419342934393449345934693479348934993509351935293539354935593569357935893599360936193629363936493659366936793689369937093719372937393749375937693779378937993809381938293839384938593869387938893899390939193929393939493959396939793989399940094019402940394049405940694079408940994109411941294139414941594169417941894199420942194229423942494259426942794289429943094319432943394349435943694379438943994409441944294439444944594469447944894499450945194529453945494559456945794589459946094619462946394649465946694679468946994709471947294739474947594769477947894799480948194829483948494859486948794889489949094919492949394949495949694979498949995009501950295039504950595069507950895099510951195129513951495159516951795189519952095219522952395249525952695279528952995309531953295339534953595369537953895399540954195429543954495459546954795489549955095519552955395549555955695579558955995609561956295639564956595669567956895699570957195729573957495759576957795789579958095819582958395849585958695879588958995909591959295939594959595969597959895999600960196029603960496059606960796089609961096119612961396149615961696179618961996209621962296239624962596269627962896299630963196329633963496359636963796389639964096419642964396449645964696479648964996509651965296539654965596569657965896599660966196629663966496659666966796689669967096719672967396749675967696779678967996809681968296839684968596869687968896899690969196929693969496959696969796989699970097019702970397049705970697079708970997109711971297139714971597169717971897199720972197229723972497259726972797289729973097319732973397349735973697379738973997409741974297439744974597469747974897499750975197529753975497559756975797589759976097619762976397649765976697679768976997709771977297739774977597769777977897799780978197829783978497859786978797889789979097919792979397949795979697979798979998009801980298039804980598069807980898099810981198129813981498159816981798189819982098219822982398249825982698279828982998309831983298339834983598369837983898399840984198429843984498459846984798489849985098519852985398549855985698579858985998609861986298639864986598669867986898699870987198729873987498759876987798789879988098819882988398849885988698879888988998909891989298939894989598969897989898999900990199029903990499059906990799089909991099119912991399149915991699179918991999209921992299239924992599269927992899299930993199329933993499359936993799389939994099419942994399449945994699479948994999509951995299539954995599569957995899599960996199629963996499659966996799689969997099719972997399749975997699779978997999809981998299839984998599869987998899899990999199929993999499959996999799989999100001000110002100031000410005100061000710008100091001010011100121001310014100151001610017100181001910020100211002210023100241002510026100271002810029100301003110032100331003410035100361003710038100391004010041100421004310044100451004610047100481004910050100511005210053100541005510056100571005810059100601006110062100631006410065100661006710068100691007010071100721007310074100751007610077100781007910080100811008210083100841008510086100871008810089100901009110092100931009410095100961009710098100991010010101101021010310104101051010610107101081010910110101111011210113101141011510116101171011810119101201012110122101231012410125101261012710128101291013010131101321013310134101351013610137101381013910140101411014210143101441014510146101471014810149101501015110152101531015410155101561015710158101591016010161101621016310164101651016610167101681016910170101711017210173101741017510176101771017810179101801018110182101831018410185101861018710188101891019010191101921019310194101951019610197101981019910200102011020210203102041020510206102071020810209102101021110212102131021410215102161021710218102191022010221102221022310224102251022610227102281022910230102311023210233102341023510236102371023810239102401024110242102431024410245102461024710248102491025010251102521025310254102551025610257102581025910260102611026210263102641026510266102671026810269102701027110272102731027410275102761027710278102791028010281102821028310284102851028610287102881028910290102911029210293102941029510296102971029810299103001030110302103031030410305103061030710308103091031010311103121031310314103151031610317103181031910320103211032210323103241032510326103271032810329103301033110332103331033410335103361033710338103391034010341103421034310344103451034610347103481034910350103511035210353103541035510356103571035810359103601036110362103631036410365103661036710368103691037010371103721037310374103751037610377103781037910380103811038210383103841038510386103871038810389103901039110392103931039410395103961039710398103991040010401104021040310404104051040610407104081040910410104111041210413104141041510416104171041810419104201042110422104231042410425104261042710428104291043010431104321043310434104351043610437104381043910440104411044210443104441044510446104471044810449104501045110452104531045410455104561045710458104591046010461104621046310464104651046610467104681046910470104711047210473104741047510476104771047810479104801048110482104831048410485104861048710488104891049010491104921049310494104951049610497104981049910500105011050210503105041050510506105071050810509105101051110512105131051410515105161051710518105191052010521105221052310524105251052610527105281052910530105311053210533105341053510536105371053810539105401054110542105431054410545105461054710548105491055010551105521055310554105551055610557105581055910560105611056210563105641056510566105671056810569105701057110572105731057410575105761057710578105791058010581105821058310584105851058610587105881058910590105911059210593105941059510596105971059810599106001060110602106031060410605106061060710608106091061010611106121061310614106151061610617106181061910620106211062210623106241062510626106271062810629106301063110632106331063410635106361063710638106391064010641106421064310644106451064610647106481064910650106511065210653106541065510656106571065810659106601066110662106631066410665106661066710668106691067010671106721067310674106751067610677106781067910680106811068210683106841068510686106871068810689106901069110692106931069410695106961069710698106991070010701107021070310704107051070610707107081070910710107111071210713107141071510716107171071810719107201072110722107231072410725107261072710728107291073010731107321073310734107351073610737107381073910740
  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": "bf18cc20376273b95b84fe3128b6c8cc",
  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.9.0",
  661. "source": {
  662. "type": "git",
  663. "url": "https://github.com/doctrine/DoctrineBundle.git",
  664. "reference": "9819c00c2eea750b99902f244309b824911b72b2"
  665. },
  666. "dist": {
  667. "type": "zip",
  668. "url": "https://api.github.com/repos/doctrine/DoctrineBundle/zipball/9819c00c2eea750b99902f244309b824911b72b2",
  669. "reference": "9819c00c2eea750b99902f244309b824911b72b2",
  670. "shasum": ""
  671. },
  672. "require": {
  673. "doctrine/cache": "^1.11 || ^2.0",
  674. "doctrine/dbal": "^3.6.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/deprecations": "^1.0",
  696. "doctrine/orm": "^2.11 || ^3.0",
  697. "friendsofphp/proxy-manager-lts": "^1.0",
  698. "phpunit/phpunit": "^9.5.26 || ^10.0",
  699. "psalm/plugin-phpunit": "^0.18.4",
  700. "psalm/plugin-symfony": "^4",
  701. "psr/log": "^1.1.4 || ^2.0 || ^3.0",
  702. "symfony/phpunit-bridge": "^6.1",
  703. "symfony/property-info": "^5.4 || ^6.0",
  704. "symfony/proxy-manager-bridge": "^5.4 || ^6.0",
  705. "symfony/security-bundle": "^5.4 || ^6.0",
  706. "symfony/twig-bridge": "^5.4 || ^6.0",
  707. "symfony/validator": "^5.4 || ^6.0",
  708. "symfony/web-profiler-bundle": "^5.4 || ^6.0",
  709. "symfony/yaml": "^5.4 || ^6.0",
  710. "twig/twig": "^1.34 || ^2.12 || ^3.0",
  711. "vimeo/psalm": "^4.30"
  712. },
  713. "suggest": {
  714. "doctrine/orm": "The Doctrine ORM integration is optional in the bundle.",
  715. "ext-pdo": "*",
  716. "symfony/web-profiler-bundle": "To use the data collector."
  717. },
  718. "type": "symfony-bundle",
  719. "autoload": {
  720. "psr-4": {
  721. "Doctrine\\Bundle\\DoctrineBundle\\": ""
  722. }
  723. },
  724. "notification-url": "https://packagist.org/downloads/",
  725. "license": [
  726. "MIT"
  727. ],
  728. "authors": [
  729. {
  730. "name": "Fabien Potencier",
  731. "email": "fabien@symfony.com"
  732. },
  733. {
  734. "name": "Benjamin Eberlei",
  735. "email": "kontakt@beberlei.de"
  736. },
  737. {
  738. "name": "Symfony Community",
  739. "homepage": "https://symfony.com/contributors"
  740. },
  741. {
  742. "name": "Doctrine Project",
  743. "homepage": "https://www.doctrine-project.org/"
  744. }
  745. ],
  746. "description": "Symfony DoctrineBundle",
  747. "homepage": "https://www.doctrine-project.org",
  748. "keywords": [
  749. "database",
  750. "dbal",
  751. "orm",
  752. "persistence"
  753. ],
  754. "support": {
  755. "issues": "https://github.com/doctrine/DoctrineBundle/issues",
  756. "source": "https://github.com/doctrine/DoctrineBundle/tree/2.9.0"
  757. },
  758. "funding": [
  759. {
  760. "url": "https://www.doctrine-project.org/sponsorship.html",
  761. "type": "custom"
  762. },
  763. {
  764. "url": "https://www.patreon.com/phpdoctrine",
  765. "type": "patreon"
  766. },
  767. {
  768. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fdoctrine-bundle",
  769. "type": "tidelift"
  770. }
  771. ],
  772. "time": "2023-03-23T20:02:57+00:00"
  773. },
  774. {
  775. "name": "doctrine/doctrine-migrations-bundle",
  776. "version": "3.2.2",
  777. "source": {
  778. "type": "git",
  779. "url": "https://github.com/doctrine/DoctrineMigrationsBundle.git",
  780. "reference": "3393f411ba25ade21969c33f2053220044854d01"
  781. },
  782. "dist": {
  783. "type": "zip",
  784. "url": "https://api.github.com/repos/doctrine/DoctrineMigrationsBundle/zipball/3393f411ba25ade21969c33f2053220044854d01",
  785. "reference": "3393f411ba25ade21969c33f2053220044854d01",
  786. "shasum": ""
  787. },
  788. "require": {
  789. "doctrine/doctrine-bundle": "~1.0|~2.0",
  790. "doctrine/migrations": "^3.2",
  791. "php": "^7.2|^8.0",
  792. "symfony/framework-bundle": "~3.4|~4.0|~5.0|~6.0"
  793. },
  794. "require-dev": {
  795. "doctrine/coding-standard": "^8.0",
  796. "doctrine/orm": "^2.6",
  797. "doctrine/persistence": "^1.3||^2.0",
  798. "phpstan/phpstan": "^0.12",
  799. "phpstan/phpstan-deprecation-rules": "^0.12",
  800. "phpstan/phpstan-phpunit": "^0.12",
  801. "phpstan/phpstan-strict-rules": "^0.12",
  802. "phpunit/phpunit": "^8.0|^9.0",
  803. "vimeo/psalm": "^4.11"
  804. },
  805. "type": "symfony-bundle",
  806. "autoload": {
  807. "psr-4": {
  808. "Doctrine\\Bundle\\MigrationsBundle\\": ""
  809. },
  810. "exclude-from-classmap": [
  811. "/Tests/"
  812. ]
  813. },
  814. "notification-url": "https://packagist.org/downloads/",
  815. "license": [
  816. "MIT"
  817. ],
  818. "authors": [
  819. {
  820. "name": "Fabien Potencier",
  821. "email": "fabien@symfony.com"
  822. },
  823. {
  824. "name": "Doctrine Project",
  825. "homepage": "https://www.doctrine-project.org"
  826. },
  827. {
  828. "name": "Symfony Community",
  829. "homepage": "https://symfony.com/contributors"
  830. }
  831. ],
  832. "description": "Symfony DoctrineMigrationsBundle",
  833. "homepage": "https://www.doctrine-project.org",
  834. "keywords": [
  835. "dbal",
  836. "migrations",
  837. "schema"
  838. ],
  839. "support": {
  840. "issues": "https://github.com/doctrine/DoctrineMigrationsBundle/issues",
  841. "source": "https://github.com/doctrine/DoctrineMigrationsBundle/tree/3.2.2"
  842. },
  843. "funding": [
  844. {
  845. "url": "https://www.doctrine-project.org/sponsorship.html",
  846. "type": "custom"
  847. },
  848. {
  849. "url": "https://www.patreon.com/phpdoctrine",
  850. "type": "patreon"
  851. },
  852. {
  853. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fdoctrine-migrations-bundle",
  854. "type": "tidelift"
  855. }
  856. ],
  857. "time": "2022-02-01T18:08:07+00:00"
  858. },
  859. {
  860. "name": "doctrine/event-manager",
  861. "version": "2.0.0",
  862. "source": {
  863. "type": "git",
  864. "url": "https://github.com/doctrine/event-manager.git",
  865. "reference": "750671534e0241a7c50ea5b43f67e23eb5c96f32"
  866. },
  867. "dist": {
  868. "type": "zip",
  869. "url": "https://api.github.com/repos/doctrine/event-manager/zipball/750671534e0241a7c50ea5b43f67e23eb5c96f32",
  870. "reference": "750671534e0241a7c50ea5b43f67e23eb5c96f32",
  871. "shasum": ""
  872. },
  873. "require": {
  874. "php": "^8.1"
  875. },
  876. "conflict": {
  877. "doctrine/common": "<2.9"
  878. },
  879. "require-dev": {
  880. "doctrine/coding-standard": "^10",
  881. "phpstan/phpstan": "^1.8.8",
  882. "phpunit/phpunit": "^9.5",
  883. "vimeo/psalm": "^4.28"
  884. },
  885. "type": "library",
  886. "autoload": {
  887. "psr-4": {
  888. "Doctrine\\Common\\": "src"
  889. }
  890. },
  891. "notification-url": "https://packagist.org/downloads/",
  892. "license": [
  893. "MIT"
  894. ],
  895. "authors": [
  896. {
  897. "name": "Guilherme Blanco",
  898. "email": "guilhermeblanco@gmail.com"
  899. },
  900. {
  901. "name": "Roman Borschel",
  902. "email": "roman@code-factory.org"
  903. },
  904. {
  905. "name": "Benjamin Eberlei",
  906. "email": "kontakt@beberlei.de"
  907. },
  908. {
  909. "name": "Jonathan Wage",
  910. "email": "jonwage@gmail.com"
  911. },
  912. {
  913. "name": "Johannes Schmitt",
  914. "email": "schmittjoh@gmail.com"
  915. },
  916. {
  917. "name": "Marco Pivetta",
  918. "email": "ocramius@gmail.com"
  919. }
  920. ],
  921. "description": "The Doctrine Event Manager is a simple PHP event system that was built to be used with the various Doctrine projects.",
  922. "homepage": "https://www.doctrine-project.org/projects/event-manager.html",
  923. "keywords": [
  924. "event",
  925. "event dispatcher",
  926. "event manager",
  927. "event system",
  928. "events"
  929. ],
  930. "support": {
  931. "issues": "https://github.com/doctrine/event-manager/issues",
  932. "source": "https://github.com/doctrine/event-manager/tree/2.0.0"
  933. },
  934. "funding": [
  935. {
  936. "url": "https://www.doctrine-project.org/sponsorship.html",
  937. "type": "custom"
  938. },
  939. {
  940. "url": "https://www.patreon.com/phpdoctrine",
  941. "type": "patreon"
  942. },
  943. {
  944. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fevent-manager",
  945. "type": "tidelift"
  946. }
  947. ],
  948. "time": "2022-10-12T20:59:15+00:00"
  949. },
  950. {
  951. "name": "doctrine/inflector",
  952. "version": "2.0.6",
  953. "source": {
  954. "type": "git",
  955. "url": "https://github.com/doctrine/inflector.git",
  956. "reference": "d9d313a36c872fd6ee06d9a6cbcf713eaa40f024"
  957. },
  958. "dist": {
  959. "type": "zip",
  960. "url": "https://api.github.com/repos/doctrine/inflector/zipball/d9d313a36c872fd6ee06d9a6cbcf713eaa40f024",
  961. "reference": "d9d313a36c872fd6ee06d9a6cbcf713eaa40f024",
  962. "shasum": ""
  963. },
  964. "require": {
  965. "php": "^7.2 || ^8.0"
  966. },
  967. "require-dev": {
  968. "doctrine/coding-standard": "^10",
  969. "phpstan/phpstan": "^1.8",
  970. "phpstan/phpstan-phpunit": "^1.1",
  971. "phpstan/phpstan-strict-rules": "^1.3",
  972. "phpunit/phpunit": "^8.5 || ^9.5",
  973. "vimeo/psalm": "^4.25"
  974. },
  975. "type": "library",
  976. "autoload": {
  977. "psr-4": {
  978. "Doctrine\\Inflector\\": "lib/Doctrine/Inflector"
  979. }
  980. },
  981. "notification-url": "https://packagist.org/downloads/",
  982. "license": [
  983. "MIT"
  984. ],
  985. "authors": [
  986. {
  987. "name": "Guilherme Blanco",
  988. "email": "guilhermeblanco@gmail.com"
  989. },
  990. {
  991. "name": "Roman Borschel",
  992. "email": "roman@code-factory.org"
  993. },
  994. {
  995. "name": "Benjamin Eberlei",
  996. "email": "kontakt@beberlei.de"
  997. },
  998. {
  999. "name": "Jonathan Wage",
  1000. "email": "jonwage@gmail.com"
  1001. },
  1002. {
  1003. "name": "Johannes Schmitt",
  1004. "email": "schmittjoh@gmail.com"
  1005. }
  1006. ],
  1007. "description": "PHP Doctrine Inflector is a small library that can perform string manipulations with regard to upper/lowercase and singular/plural forms of words.",
  1008. "homepage": "https://www.doctrine-project.org/projects/inflector.html",
  1009. "keywords": [
  1010. "inflection",
  1011. "inflector",
  1012. "lowercase",
  1013. "manipulation",
  1014. "php",
  1015. "plural",
  1016. "singular",
  1017. "strings",
  1018. "uppercase",
  1019. "words"
  1020. ],
  1021. "support": {
  1022. "issues": "https://github.com/doctrine/inflector/issues",
  1023. "source": "https://github.com/doctrine/inflector/tree/2.0.6"
  1024. },
  1025. "funding": [
  1026. {
  1027. "url": "https://www.doctrine-project.org/sponsorship.html",
  1028. "type": "custom"
  1029. },
  1030. {
  1031. "url": "https://www.patreon.com/phpdoctrine",
  1032. "type": "patreon"
  1033. },
  1034. {
  1035. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Finflector",
  1036. "type": "tidelift"
  1037. }
  1038. ],
  1039. "time": "2022-10-20T09:10:12+00:00"
  1040. },
  1041. {
  1042. "name": "doctrine/instantiator",
  1043. "version": "1.5.0",
  1044. "source": {
  1045. "type": "git",
  1046. "url": "https://github.com/doctrine/instantiator.git",
  1047. "reference": "0a0fa9780f5d4e507415a065172d26a98d02047b"
  1048. },
  1049. "dist": {
  1050. "type": "zip",
  1051. "url": "https://api.github.com/repos/doctrine/instantiator/zipball/0a0fa9780f5d4e507415a065172d26a98d02047b",
  1052. "reference": "0a0fa9780f5d4e507415a065172d26a98d02047b",
  1053. "shasum": ""
  1054. },
  1055. "require": {
  1056. "php": "^7.1 || ^8.0"
  1057. },
  1058. "require-dev": {
  1059. "doctrine/coding-standard": "^9 || ^11",
  1060. "ext-pdo": "*",
  1061. "ext-phar": "*",
  1062. "phpbench/phpbench": "^0.16 || ^1",
  1063. "phpstan/phpstan": "^1.4",
  1064. "phpstan/phpstan-phpunit": "^1",
  1065. "phpunit/phpunit": "^7.5 || ^8.5 || ^9.5",
  1066. "vimeo/psalm": "^4.30 || ^5.4"
  1067. },
  1068. "type": "library",
  1069. "autoload": {
  1070. "psr-4": {
  1071. "Doctrine\\Instantiator\\": "src/Doctrine/Instantiator/"
  1072. }
  1073. },
  1074. "notification-url": "https://packagist.org/downloads/",
  1075. "license": [
  1076. "MIT"
  1077. ],
  1078. "authors": [
  1079. {
  1080. "name": "Marco Pivetta",
  1081. "email": "ocramius@gmail.com",
  1082. "homepage": "https://ocramius.github.io/"
  1083. }
  1084. ],
  1085. "description": "A small, lightweight utility to instantiate objects in PHP without invoking their constructors",
  1086. "homepage": "https://www.doctrine-project.org/projects/instantiator.html",
  1087. "keywords": [
  1088. "constructor",
  1089. "instantiate"
  1090. ],
  1091. "support": {
  1092. "issues": "https://github.com/doctrine/instantiator/issues",
  1093. "source": "https://github.com/doctrine/instantiator/tree/1.5.0"
  1094. },
  1095. "funding": [
  1096. {
  1097. "url": "https://www.doctrine-project.org/sponsorship.html",
  1098. "type": "custom"
  1099. },
  1100. {
  1101. "url": "https://www.patreon.com/phpdoctrine",
  1102. "type": "patreon"
  1103. },
  1104. {
  1105. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Finstantiator",
  1106. "type": "tidelift"
  1107. }
  1108. ],
  1109. "time": "2022-12-30T00:15:36+00:00"
  1110. },
  1111. {
  1112. "name": "doctrine/lexer",
  1113. "version": "2.1.0",
  1114. "source": {
  1115. "type": "git",
  1116. "url": "https://github.com/doctrine/lexer.git",
  1117. "reference": "39ab8fcf5a51ce4b85ca97c7a7d033eb12831124"
  1118. },
  1119. "dist": {
  1120. "type": "zip",
  1121. "url": "https://api.github.com/repos/doctrine/lexer/zipball/39ab8fcf5a51ce4b85ca97c7a7d033eb12831124",
  1122. "reference": "39ab8fcf5a51ce4b85ca97c7a7d033eb12831124",
  1123. "shasum": ""
  1124. },
  1125. "require": {
  1126. "doctrine/deprecations": "^1.0",
  1127. "php": "^7.1 || ^8.0"
  1128. },
  1129. "require-dev": {
  1130. "doctrine/coding-standard": "^9 || ^10",
  1131. "phpstan/phpstan": "^1.3",
  1132. "phpunit/phpunit": "^7.5 || ^8.5 || ^9.5",
  1133. "psalm/plugin-phpunit": "^0.18.3",
  1134. "vimeo/psalm": "^4.11 || ^5.0"
  1135. },
  1136. "type": "library",
  1137. "autoload": {
  1138. "psr-4": {
  1139. "Doctrine\\Common\\Lexer\\": "src"
  1140. }
  1141. },
  1142. "notification-url": "https://packagist.org/downloads/",
  1143. "license": [
  1144. "MIT"
  1145. ],
  1146. "authors": [
  1147. {
  1148. "name": "Guilherme Blanco",
  1149. "email": "guilhermeblanco@gmail.com"
  1150. },
  1151. {
  1152. "name": "Roman Borschel",
  1153. "email": "roman@code-factory.org"
  1154. },
  1155. {
  1156. "name": "Johannes Schmitt",
  1157. "email": "schmittjoh@gmail.com"
  1158. }
  1159. ],
  1160. "description": "PHP Doctrine Lexer parser library that can be used in Top-Down, Recursive Descent Parsers.",
  1161. "homepage": "https://www.doctrine-project.org/projects/lexer.html",
  1162. "keywords": [
  1163. "annotations",
  1164. "docblock",
  1165. "lexer",
  1166. "parser",
  1167. "php"
  1168. ],
  1169. "support": {
  1170. "issues": "https://github.com/doctrine/lexer/issues",
  1171. "source": "https://github.com/doctrine/lexer/tree/2.1.0"
  1172. },
  1173. "funding": [
  1174. {
  1175. "url": "https://www.doctrine-project.org/sponsorship.html",
  1176. "type": "custom"
  1177. },
  1178. {
  1179. "url": "https://www.patreon.com/phpdoctrine",
  1180. "type": "patreon"
  1181. },
  1182. {
  1183. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Flexer",
  1184. "type": "tidelift"
  1185. }
  1186. ],
  1187. "time": "2022-12-14T08:49:07+00:00"
  1188. },
  1189. {
  1190. "name": "doctrine/migrations",
  1191. "version": "3.6.0",
  1192. "source": {
  1193. "type": "git",
  1194. "url": "https://github.com/doctrine/migrations.git",
  1195. "reference": "e542ad8bcd606d7a18d0875babb8a6d963c9c059"
  1196. },
  1197. "dist": {
  1198. "type": "zip",
  1199. "url": "https://api.github.com/repos/doctrine/migrations/zipball/e542ad8bcd606d7a18d0875babb8a6d963c9c059",
  1200. "reference": "e542ad8bcd606d7a18d0875babb8a6d963c9c059",
  1201. "shasum": ""
  1202. },
  1203. "require": {
  1204. "composer-runtime-api": "^2",
  1205. "doctrine/dbal": "^3.5.1",
  1206. "doctrine/deprecations": "^0.5.3 || ^1",
  1207. "doctrine/event-manager": "^1.2 || ^2.0",
  1208. "php": "^8.1",
  1209. "psr/log": "^1.1.3 || ^2 || ^3",
  1210. "symfony/console": "^4.4.16 || ^5.4 || ^6.0",
  1211. "symfony/stopwatch": "^4.4 || ^5.4 || ^6.0",
  1212. "symfony/var-exporter": "^6.2"
  1213. },
  1214. "conflict": {
  1215. "doctrine/orm": "<2.12"
  1216. },
  1217. "require-dev": {
  1218. "doctrine/coding-standard": "^9",
  1219. "doctrine/orm": "^2.13",
  1220. "doctrine/persistence": "^2 || ^3",
  1221. "doctrine/sql-formatter": "^1.0",
  1222. "ext-pdo_sqlite": "*",
  1223. "phpstan/phpstan": "^1.5",
  1224. "phpstan/phpstan-deprecation-rules": "^1",
  1225. "phpstan/phpstan-phpunit": "^1.1",
  1226. "phpstan/phpstan-strict-rules": "^1.1",
  1227. "phpstan/phpstan-symfony": "^1.1",
  1228. "phpunit/phpunit": "^9.5.24",
  1229. "symfony/cache": "^4.4 || ^5.4 || ^6.0",
  1230. "symfony/process": "^4.4 || ^5.4 || ^6.0",
  1231. "symfony/yaml": "^4.4 || ^5.4 || ^6.0"
  1232. },
  1233. "suggest": {
  1234. "doctrine/sql-formatter": "Allows to generate formatted SQL with the diff command.",
  1235. "symfony/yaml": "Allows the use of yaml for migration configuration files."
  1236. },
  1237. "bin": [
  1238. "bin/doctrine-migrations"
  1239. ],
  1240. "type": "library",
  1241. "autoload": {
  1242. "psr-4": {
  1243. "Doctrine\\Migrations\\": "lib/Doctrine/Migrations"
  1244. }
  1245. },
  1246. "notification-url": "https://packagist.org/downloads/",
  1247. "license": [
  1248. "MIT"
  1249. ],
  1250. "authors": [
  1251. {
  1252. "name": "Benjamin Eberlei",
  1253. "email": "kontakt@beberlei.de"
  1254. },
  1255. {
  1256. "name": "Jonathan Wage",
  1257. "email": "jonwage@gmail.com"
  1258. },
  1259. {
  1260. "name": "Michael Simonson",
  1261. "email": "contact@mikesimonson.com"
  1262. }
  1263. ],
  1264. "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.",
  1265. "homepage": "https://www.doctrine-project.org/projects/migrations.html",
  1266. "keywords": [
  1267. "database",
  1268. "dbal",
  1269. "migrations"
  1270. ],
  1271. "support": {
  1272. "issues": "https://github.com/doctrine/migrations/issues",
  1273. "source": "https://github.com/doctrine/migrations/tree/3.6.0"
  1274. },
  1275. "funding": [
  1276. {
  1277. "url": "https://www.doctrine-project.org/sponsorship.html",
  1278. "type": "custom"
  1279. },
  1280. {
  1281. "url": "https://www.patreon.com/phpdoctrine",
  1282. "type": "patreon"
  1283. },
  1284. {
  1285. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fmigrations",
  1286. "type": "tidelift"
  1287. }
  1288. ],
  1289. "time": "2023-02-15T18:49:46+00:00"
  1290. },
  1291. {
  1292. "name": "doctrine/orm",
  1293. "version": "2.14.2",
  1294. "source": {
  1295. "type": "git",
  1296. "url": "https://github.com/doctrine/orm.git",
  1297. "reference": "e5fb1a4a8f5aa4e37612f66a22aac10291bcbb52"
  1298. },
  1299. "dist": {
  1300. "type": "zip",
  1301. "url": "https://api.github.com/repos/doctrine/orm/zipball/e5fb1a4a8f5aa4e37612f66a22aac10291bcbb52",
  1302. "reference": "e5fb1a4a8f5aa4e37612f66a22aac10291bcbb52",
  1303. "shasum": ""
  1304. },
  1305. "require": {
  1306. "composer-runtime-api": "^2",
  1307. "doctrine/cache": "^1.12.1 || ^2.1.1",
  1308. "doctrine/collections": "^1.5 || ^2.0",
  1309. "doctrine/common": "^3.0.3",
  1310. "doctrine/dbal": "^2.13.1 || ^3.2",
  1311. "doctrine/deprecations": "^0.5.3 || ^1",
  1312. "doctrine/event-manager": "^1.2 || ^2",
  1313. "doctrine/inflector": "^1.4 || ^2.0",
  1314. "doctrine/instantiator": "^1.3",
  1315. "doctrine/lexer": "^1.2.3 || ^2",
  1316. "doctrine/persistence": "^2.4 || ^3",
  1317. "ext-ctype": "*",
  1318. "php": "^7.1 || ^8.0",
  1319. "psr/cache": "^1 || ^2 || ^3",
  1320. "symfony/console": "^4.2 || ^5.0 || ^6.0",
  1321. "symfony/polyfill-php72": "^1.23",
  1322. "symfony/polyfill-php80": "^1.16"
  1323. },
  1324. "conflict": {
  1325. "doctrine/annotations": "<1.13 || >= 3.0"
  1326. },
  1327. "require-dev": {
  1328. "doctrine/annotations": "^1.13 || ^2",
  1329. "doctrine/coding-standard": "^9.0.2 || ^11.0",
  1330. "phpbench/phpbench": "^0.16.10 || ^1.0",
  1331. "phpstan/phpstan": "~1.4.10 || 1.10.6",
  1332. "phpunit/phpunit": "^7.5 || ^8.5 || ^9.6",
  1333. "psr/log": "^1 || ^2 || ^3",
  1334. "squizlabs/php_codesniffer": "3.7.2",
  1335. "symfony/cache": "^4.4 || ^5.4 || ^6.0",
  1336. "symfony/var-exporter": "^4.4 || ^5.4 || ^6.2",
  1337. "symfony/yaml": "^3.4 || ^4.0 || ^5.0 || ^6.0",
  1338. "vimeo/psalm": "4.30.0 || 5.9.0"
  1339. },
  1340. "suggest": {
  1341. "ext-dom": "Provides support for XSD validation for XML mapping files",
  1342. "symfony/cache": "Provides cache support for Setup Tool with doctrine/cache 2.0",
  1343. "symfony/yaml": "If you want to use YAML Metadata Mapping Driver"
  1344. },
  1345. "bin": [
  1346. "bin/doctrine"
  1347. ],
  1348. "type": "library",
  1349. "autoload": {
  1350. "psr-4": {
  1351. "Doctrine\\ORM\\": "lib/Doctrine/ORM"
  1352. }
  1353. },
  1354. "notification-url": "https://packagist.org/downloads/",
  1355. "license": [
  1356. "MIT"
  1357. ],
  1358. "authors": [
  1359. {
  1360. "name": "Guilherme Blanco",
  1361. "email": "guilhermeblanco@gmail.com"
  1362. },
  1363. {
  1364. "name": "Roman Borschel",
  1365. "email": "roman@code-factory.org"
  1366. },
  1367. {
  1368. "name": "Benjamin Eberlei",
  1369. "email": "kontakt@beberlei.de"
  1370. },
  1371. {
  1372. "name": "Jonathan Wage",
  1373. "email": "jonwage@gmail.com"
  1374. },
  1375. {
  1376. "name": "Marco Pivetta",
  1377. "email": "ocramius@gmail.com"
  1378. }
  1379. ],
  1380. "description": "Object-Relational-Mapper for PHP",
  1381. "homepage": "https://www.doctrine-project.org/projects/orm.html",
  1382. "keywords": [
  1383. "database",
  1384. "orm"
  1385. ],
  1386. "support": {
  1387. "issues": "https://github.com/doctrine/orm/issues",
  1388. "source": "https://github.com/doctrine/orm/tree/2.14.2"
  1389. },
  1390. "time": "2023-03-30T15:18:54+00:00"
  1391. },
  1392. {
  1393. "name": "doctrine/persistence",
  1394. "version": "3.1.4",
  1395. "source": {
  1396. "type": "git",
  1397. "url": "https://github.com/doctrine/persistence.git",
  1398. "reference": "8bf8ab15960787f1a49d405f6eb8c787b4841119"
  1399. },
  1400. "dist": {
  1401. "type": "zip",
  1402. "url": "https://api.github.com/repos/doctrine/persistence/zipball/8bf8ab15960787f1a49d405f6eb8c787b4841119",
  1403. "reference": "8bf8ab15960787f1a49d405f6eb8c787b4841119",
  1404. "shasum": ""
  1405. },
  1406. "require": {
  1407. "doctrine/event-manager": "^1 || ^2",
  1408. "php": "^7.2 || ^8.0",
  1409. "psr/cache": "^1.0 || ^2.0 || ^3.0"
  1410. },
  1411. "conflict": {
  1412. "doctrine/common": "<2.10"
  1413. },
  1414. "require-dev": {
  1415. "composer/package-versions-deprecated": "^1.11",
  1416. "doctrine/coding-standard": "^11",
  1417. "doctrine/common": "^3.0",
  1418. "phpstan/phpstan": "1.9.4",
  1419. "phpstan/phpstan-phpunit": "^1",
  1420. "phpstan/phpstan-strict-rules": "^1.1",
  1421. "phpunit/phpunit": "^8.5 || ^9.5",
  1422. "symfony/cache": "^4.4 || ^5.4 || ^6.0",
  1423. "vimeo/psalm": "4.30.0 || 5.3.0"
  1424. },
  1425. "type": "library",
  1426. "autoload": {
  1427. "psr-4": {
  1428. "Doctrine\\Persistence\\": "src/Persistence"
  1429. }
  1430. },
  1431. "notification-url": "https://packagist.org/downloads/",
  1432. "license": [
  1433. "MIT"
  1434. ],
  1435. "authors": [
  1436. {
  1437. "name": "Guilherme Blanco",
  1438. "email": "guilhermeblanco@gmail.com"
  1439. },
  1440. {
  1441. "name": "Roman Borschel",
  1442. "email": "roman@code-factory.org"
  1443. },
  1444. {
  1445. "name": "Benjamin Eberlei",
  1446. "email": "kontakt@beberlei.de"
  1447. },
  1448. {
  1449. "name": "Jonathan Wage",
  1450. "email": "jonwage@gmail.com"
  1451. },
  1452. {
  1453. "name": "Johannes Schmitt",
  1454. "email": "schmittjoh@gmail.com"
  1455. },
  1456. {
  1457. "name": "Marco Pivetta",
  1458. "email": "ocramius@gmail.com"
  1459. }
  1460. ],
  1461. "description": "The Doctrine Persistence project is a set of shared interfaces and functionality that the different Doctrine object mappers share.",
  1462. "homepage": "https://www.doctrine-project.org/projects/persistence.html",
  1463. "keywords": [
  1464. "mapper",
  1465. "object",
  1466. "odm",
  1467. "orm",
  1468. "persistence"
  1469. ],
  1470. "support": {
  1471. "issues": "https://github.com/doctrine/persistence/issues",
  1472. "source": "https://github.com/doctrine/persistence/tree/3.1.4"
  1473. },
  1474. "funding": [
  1475. {
  1476. "url": "https://www.doctrine-project.org/sponsorship.html",
  1477. "type": "custom"
  1478. },
  1479. {
  1480. "url": "https://www.patreon.com/phpdoctrine",
  1481. "type": "patreon"
  1482. },
  1483. {
  1484. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fpersistence",
  1485. "type": "tidelift"
  1486. }
  1487. ],
  1488. "time": "2023-02-03T11:13:07+00:00"
  1489. },
  1490. {
  1491. "name": "doctrine/sql-formatter",
  1492. "version": "1.1.3",
  1493. "source": {
  1494. "type": "git",
  1495. "url": "https://github.com/doctrine/sql-formatter.git",
  1496. "reference": "25a06c7bf4c6b8218f47928654252863ffc890a5"
  1497. },
  1498. "dist": {
  1499. "type": "zip",
  1500. "url": "https://api.github.com/repos/doctrine/sql-formatter/zipball/25a06c7bf4c6b8218f47928654252863ffc890a5",
  1501. "reference": "25a06c7bf4c6b8218f47928654252863ffc890a5",
  1502. "shasum": ""
  1503. },
  1504. "require": {
  1505. "php": "^7.1 || ^8.0"
  1506. },
  1507. "require-dev": {
  1508. "bamarni/composer-bin-plugin": "^1.4"
  1509. },
  1510. "bin": [
  1511. "bin/sql-formatter"
  1512. ],
  1513. "type": "library",
  1514. "autoload": {
  1515. "psr-4": {
  1516. "Doctrine\\SqlFormatter\\": "src"
  1517. }
  1518. },
  1519. "notification-url": "https://packagist.org/downloads/",
  1520. "license": [
  1521. "MIT"
  1522. ],
  1523. "authors": [
  1524. {
  1525. "name": "Jeremy Dorn",
  1526. "email": "jeremy@jeremydorn.com",
  1527. "homepage": "https://jeremydorn.com/"
  1528. }
  1529. ],
  1530. "description": "a PHP SQL highlighting library",
  1531. "homepage": "https://github.com/doctrine/sql-formatter/",
  1532. "keywords": [
  1533. "highlight",
  1534. "sql"
  1535. ],
  1536. "support": {
  1537. "issues": "https://github.com/doctrine/sql-formatter/issues",
  1538. "source": "https://github.com/doctrine/sql-formatter/tree/1.1.3"
  1539. },
  1540. "time": "2022-05-23T21:33:49+00:00"
  1541. },
  1542. {
  1543. "name": "egulias/email-validator",
  1544. "version": "4.0.1",
  1545. "source": {
  1546. "type": "git",
  1547. "url": "https://github.com/egulias/EmailValidator.git",
  1548. "reference": "3a85486b709bc384dae8eb78fb2eec649bdb64ff"
  1549. },
  1550. "dist": {
  1551. "type": "zip",
  1552. "url": "https://api.github.com/repos/egulias/EmailValidator/zipball/3a85486b709bc384dae8eb78fb2eec649bdb64ff",
  1553. "reference": "3a85486b709bc384dae8eb78fb2eec649bdb64ff",
  1554. "shasum": ""
  1555. },
  1556. "require": {
  1557. "doctrine/lexer": "^2.0 || ^3.0",
  1558. "php": ">=8.1",
  1559. "symfony/polyfill-intl-idn": "^1.26"
  1560. },
  1561. "require-dev": {
  1562. "phpunit/phpunit": "^9.5.27",
  1563. "vimeo/psalm": "^4.30"
  1564. },
  1565. "suggest": {
  1566. "ext-intl": "PHP Internationalization Libraries are required to use the SpoofChecking validation"
  1567. },
  1568. "type": "library",
  1569. "extra": {
  1570. "branch-alias": {
  1571. "dev-master": "4.0.x-dev"
  1572. }
  1573. },
  1574. "autoload": {
  1575. "psr-4": {
  1576. "Egulias\\EmailValidator\\": "src"
  1577. }
  1578. },
  1579. "notification-url": "https://packagist.org/downloads/",
  1580. "license": [
  1581. "MIT"
  1582. ],
  1583. "authors": [
  1584. {
  1585. "name": "Eduardo Gulias Davis"
  1586. }
  1587. ],
  1588. "description": "A library for validating emails against several RFCs",
  1589. "homepage": "https://github.com/egulias/EmailValidator",
  1590. "keywords": [
  1591. "email",
  1592. "emailvalidation",
  1593. "emailvalidator",
  1594. "validation",
  1595. "validator"
  1596. ],
  1597. "support": {
  1598. "issues": "https://github.com/egulias/EmailValidator/issues",
  1599. "source": "https://github.com/egulias/EmailValidator/tree/4.0.1"
  1600. },
  1601. "funding": [
  1602. {
  1603. "url": "https://github.com/egulias",
  1604. "type": "github"
  1605. }
  1606. ],
  1607. "time": "2023-01-14T14:17:03+00:00"
  1608. },
  1609. {
  1610. "name": "friendsofphp/proxy-manager-lts",
  1611. "version": "v1.0.14",
  1612. "source": {
  1613. "type": "git",
  1614. "url": "https://github.com/FriendsOfPHP/proxy-manager-lts.git",
  1615. "reference": "a527c9d9d5348e012bd24482d83a5cd643bcbc9e"
  1616. },
  1617. "dist": {
  1618. "type": "zip",
  1619. "url": "https://api.github.com/repos/FriendsOfPHP/proxy-manager-lts/zipball/a527c9d9d5348e012bd24482d83a5cd643bcbc9e",
  1620. "reference": "a527c9d9d5348e012bd24482d83a5cd643bcbc9e",
  1621. "shasum": ""
  1622. },
  1623. "require": {
  1624. "laminas/laminas-code": "~3.4.1|^4.0",
  1625. "php": ">=7.1",
  1626. "symfony/filesystem": "^4.4.17|^5.0|^6.0"
  1627. },
  1628. "conflict": {
  1629. "laminas/laminas-stdlib": "<3.2.1",
  1630. "zendframework/zend-stdlib": "<3.2.1"
  1631. },
  1632. "replace": {
  1633. "ocramius/proxy-manager": "^2.1"
  1634. },
  1635. "require-dev": {
  1636. "ext-phar": "*",
  1637. "symfony/phpunit-bridge": "^5.4|^6.0"
  1638. },
  1639. "type": "library",
  1640. "extra": {
  1641. "thanks": {
  1642. "name": "ocramius/proxy-manager",
  1643. "url": "https://github.com/Ocramius/ProxyManager"
  1644. }
  1645. },
  1646. "autoload": {
  1647. "psr-4": {
  1648. "ProxyManager\\": "src/ProxyManager"
  1649. }
  1650. },
  1651. "notification-url": "https://packagist.org/downloads/",
  1652. "license": [
  1653. "MIT"
  1654. ],
  1655. "authors": [
  1656. {
  1657. "name": "Marco Pivetta",
  1658. "email": "ocramius@gmail.com",
  1659. "homepage": "https://ocramius.github.io/"
  1660. },
  1661. {
  1662. "name": "Nicolas Grekas",
  1663. "email": "p@tchwork.com"
  1664. }
  1665. ],
  1666. "description": "Adding support for a wider range of PHP versions to ocramius/proxy-manager",
  1667. "homepage": "https://github.com/FriendsOfPHP/proxy-manager-lts",
  1668. "keywords": [
  1669. "aop",
  1670. "lazy loading",
  1671. "proxy",
  1672. "proxy pattern",
  1673. "service proxies"
  1674. ],
  1675. "support": {
  1676. "issues": "https://github.com/FriendsOfPHP/proxy-manager-lts/issues",
  1677. "source": "https://github.com/FriendsOfPHP/proxy-manager-lts/tree/v1.0.14"
  1678. },
  1679. "funding": [
  1680. {
  1681. "url": "https://github.com/Ocramius",
  1682. "type": "github"
  1683. },
  1684. {
  1685. "url": "https://tidelift.com/funding/github/packagist/ocramius/proxy-manager",
  1686. "type": "tidelift"
  1687. }
  1688. ],
  1689. "time": "2023-01-30T10:40:19+00:00"
  1690. },
  1691. {
  1692. "name": "laminas/laminas-code",
  1693. "version": "4.10.0",
  1694. "source": {
  1695. "type": "git",
  1696. "url": "https://github.com/laminas/laminas-code.git",
  1697. "reference": "ad8b36073f9ac792716478befadca0798cc15635"
  1698. },
  1699. "dist": {
  1700. "type": "zip",
  1701. "url": "https://api.github.com/repos/laminas/laminas-code/zipball/ad8b36073f9ac792716478befadca0798cc15635",
  1702. "reference": "ad8b36073f9ac792716478befadca0798cc15635",
  1703. "shasum": ""
  1704. },
  1705. "require": {
  1706. "php": "~8.1.0 || ~8.2.0"
  1707. },
  1708. "require-dev": {
  1709. "doctrine/annotations": "^2.0.0",
  1710. "ext-phar": "*",
  1711. "laminas/laminas-coding-standard": "^2.3.0",
  1712. "laminas/laminas-stdlib": "^3.6.1",
  1713. "phpunit/phpunit": "^10.0.9",
  1714. "psalm/plugin-phpunit": "^0.18.4",
  1715. "vimeo/psalm": "^5.7.1"
  1716. },
  1717. "suggest": {
  1718. "doctrine/annotations": "Doctrine\\Common\\Annotations >=1.0 for annotation features",
  1719. "laminas/laminas-stdlib": "Laminas\\Stdlib component"
  1720. },
  1721. "type": "library",
  1722. "autoload": {
  1723. "psr-4": {
  1724. "Laminas\\Code\\": "src/"
  1725. }
  1726. },
  1727. "notification-url": "https://packagist.org/downloads/",
  1728. "license": [
  1729. "BSD-3-Clause"
  1730. ],
  1731. "description": "Extensions to the PHP Reflection API, static code scanning, and code generation",
  1732. "homepage": "https://laminas.dev",
  1733. "keywords": [
  1734. "code",
  1735. "laminas",
  1736. "laminasframework"
  1737. ],
  1738. "support": {
  1739. "chat": "https://laminas.dev/chat",
  1740. "docs": "https://docs.laminas.dev/laminas-code/",
  1741. "forum": "https://discourse.laminas.dev",
  1742. "issues": "https://github.com/laminas/laminas-code/issues",
  1743. "rss": "https://github.com/laminas/laminas-code/releases.atom",
  1744. "source": "https://github.com/laminas/laminas-code"
  1745. },
  1746. "funding": [
  1747. {
  1748. "url": "https://funding.communitybridge.org/projects/laminas-project",
  1749. "type": "community_bridge"
  1750. }
  1751. ],
  1752. "time": "2023-03-08T11:55:01+00:00"
  1753. },
  1754. {
  1755. "name": "league/commonmark",
  1756. "version": "2.4.0",
  1757. "source": {
  1758. "type": "git",
  1759. "url": "https://github.com/thephpleague/commonmark.git",
  1760. "reference": "d44a24690f16b8c1808bf13b1bd54ae4c63ea048"
  1761. },
  1762. "dist": {
  1763. "type": "zip",
  1764. "url": "https://api.github.com/repos/thephpleague/commonmark/zipball/d44a24690f16b8c1808bf13b1bd54ae4c63ea048",
  1765. "reference": "d44a24690f16b8c1808bf13b1bd54ae4c63ea048",
  1766. "shasum": ""
  1767. },
  1768. "require": {
  1769. "ext-mbstring": "*",
  1770. "league/config": "^1.1.1",
  1771. "php": "^7.4 || ^8.0",
  1772. "psr/event-dispatcher": "^1.0",
  1773. "symfony/deprecation-contracts": "^2.1 || ^3.0",
  1774. "symfony/polyfill-php80": "^1.16"
  1775. },
  1776. "require-dev": {
  1777. "cebe/markdown": "^1.0",
  1778. "commonmark/cmark": "0.30.0",
  1779. "commonmark/commonmark.js": "0.30.0",
  1780. "composer/package-versions-deprecated": "^1.8",
  1781. "embed/embed": "^4.4",
  1782. "erusev/parsedown": "^1.0",
  1783. "ext-json": "*",
  1784. "github/gfm": "0.29.0",
  1785. "michelf/php-markdown": "^1.4 || ^2.0",
  1786. "nyholm/psr7": "^1.5",
  1787. "phpstan/phpstan": "^1.8.2",
  1788. "phpunit/phpunit": "^9.5.21",
  1789. "scrutinizer/ocular": "^1.8.1",
  1790. "symfony/finder": "^5.3 | ^6.0",
  1791. "symfony/yaml": "^2.3 | ^3.0 | ^4.0 | ^5.0 | ^6.0",
  1792. "unleashedtech/php-coding-standard": "^3.1.1",
  1793. "vimeo/psalm": "^4.24.0 || ^5.0.0"
  1794. },
  1795. "suggest": {
  1796. "symfony/yaml": "v2.3+ required if using the Front Matter extension"
  1797. },
  1798. "type": "library",
  1799. "extra": {
  1800. "branch-alias": {
  1801. "dev-main": "2.5-dev"
  1802. }
  1803. },
  1804. "autoload": {
  1805. "psr-4": {
  1806. "League\\CommonMark\\": "src"
  1807. }
  1808. },
  1809. "notification-url": "https://packagist.org/downloads/",
  1810. "license": [
  1811. "BSD-3-Clause"
  1812. ],
  1813. "authors": [
  1814. {
  1815. "name": "Colin O'Dell",
  1816. "email": "colinodell@gmail.com",
  1817. "homepage": "https://www.colinodell.com",
  1818. "role": "Lead Developer"
  1819. }
  1820. ],
  1821. "description": "Highly-extensible PHP Markdown parser which fully supports the CommonMark spec and GitHub-Flavored Markdown (GFM)",
  1822. "homepage": "https://commonmark.thephpleague.com",
  1823. "keywords": [
  1824. "commonmark",
  1825. "flavored",
  1826. "gfm",
  1827. "github",
  1828. "github-flavored",
  1829. "markdown",
  1830. "md",
  1831. "parser"
  1832. ],
  1833. "support": {
  1834. "docs": "https://commonmark.thephpleague.com/",
  1835. "forum": "https://github.com/thephpleague/commonmark/discussions",
  1836. "issues": "https://github.com/thephpleague/commonmark/issues",
  1837. "rss": "https://github.com/thephpleague/commonmark/releases.atom",
  1838. "source": "https://github.com/thephpleague/commonmark"
  1839. },
  1840. "funding": [
  1841. {
  1842. "url": "https://www.colinodell.com/sponsor",
  1843. "type": "custom"
  1844. },
  1845. {
  1846. "url": "https://www.paypal.me/colinpodell/10.00",
  1847. "type": "custom"
  1848. },
  1849. {
  1850. "url": "https://github.com/colinodell",
  1851. "type": "github"
  1852. },
  1853. {
  1854. "url": "https://tidelift.com/funding/github/packagist/league/commonmark",
  1855. "type": "tidelift"
  1856. }
  1857. ],
  1858. "time": "2023-03-24T15:16:10+00:00"
  1859. },
  1860. {
  1861. "name": "league/config",
  1862. "version": "v1.2.0",
  1863. "source": {
  1864. "type": "git",
  1865. "url": "https://github.com/thephpleague/config.git",
  1866. "reference": "754b3604fb2984c71f4af4a9cbe7b57f346ec1f3"
  1867. },
  1868. "dist": {
  1869. "type": "zip",
  1870. "url": "https://api.github.com/repos/thephpleague/config/zipball/754b3604fb2984c71f4af4a9cbe7b57f346ec1f3",
  1871. "reference": "754b3604fb2984c71f4af4a9cbe7b57f346ec1f3",
  1872. "shasum": ""
  1873. },
  1874. "require": {
  1875. "dflydev/dot-access-data": "^3.0.1",
  1876. "nette/schema": "^1.2",
  1877. "php": "^7.4 || ^8.0"
  1878. },
  1879. "require-dev": {
  1880. "phpstan/phpstan": "^1.8.2",
  1881. "phpunit/phpunit": "^9.5.5",
  1882. "scrutinizer/ocular": "^1.8.1",
  1883. "unleashedtech/php-coding-standard": "^3.1",
  1884. "vimeo/psalm": "^4.7.3"
  1885. },
  1886. "type": "library",
  1887. "extra": {
  1888. "branch-alias": {
  1889. "dev-main": "1.2-dev"
  1890. }
  1891. },
  1892. "autoload": {
  1893. "psr-4": {
  1894. "League\\Config\\": "src"
  1895. }
  1896. },
  1897. "notification-url": "https://packagist.org/downloads/",
  1898. "license": [
  1899. "BSD-3-Clause"
  1900. ],
  1901. "authors": [
  1902. {
  1903. "name": "Colin O'Dell",
  1904. "email": "colinodell@gmail.com",
  1905. "homepage": "https://www.colinodell.com",
  1906. "role": "Lead Developer"
  1907. }
  1908. ],
  1909. "description": "Define configuration arrays with strict schemas and access values with dot notation",
  1910. "homepage": "https://config.thephpleague.com",
  1911. "keywords": [
  1912. "array",
  1913. "config",
  1914. "configuration",
  1915. "dot",
  1916. "dot-access",
  1917. "nested",
  1918. "schema"
  1919. ],
  1920. "support": {
  1921. "docs": "https://config.thephpleague.com/",
  1922. "issues": "https://github.com/thephpleague/config/issues",
  1923. "rss": "https://github.com/thephpleague/config/releases.atom",
  1924. "source": "https://github.com/thephpleague/config"
  1925. },
  1926. "funding": [
  1927. {
  1928. "url": "https://www.colinodell.com/sponsor",
  1929. "type": "custom"
  1930. },
  1931. {
  1932. "url": "https://www.paypal.me/colinpodell/10.00",
  1933. "type": "custom"
  1934. },
  1935. {
  1936. "url": "https://github.com/colinodell",
  1937. "type": "github"
  1938. }
  1939. ],
  1940. "time": "2022-12-11T20:36:23+00:00"
  1941. },
  1942. {
  1943. "name": "league/uri",
  1944. "version": "6.8.0",
  1945. "source": {
  1946. "type": "git",
  1947. "url": "https://github.com/thephpleague/uri.git",
  1948. "reference": "a700b4656e4c54371b799ac61e300ab25a2d1d39"
  1949. },
  1950. "dist": {
  1951. "type": "zip",
  1952. "url": "https://api.github.com/repos/thephpleague/uri/zipball/a700b4656e4c54371b799ac61e300ab25a2d1d39",
  1953. "reference": "a700b4656e4c54371b799ac61e300ab25a2d1d39",
  1954. "shasum": ""
  1955. },
  1956. "require": {
  1957. "ext-json": "*",
  1958. "league/uri-interfaces": "^2.3",
  1959. "php": "^8.1",
  1960. "psr/http-message": "^1.0.1"
  1961. },
  1962. "conflict": {
  1963. "league/uri-schemes": "^1.0"
  1964. },
  1965. "require-dev": {
  1966. "friendsofphp/php-cs-fixer": "^v3.9.5",
  1967. "nyholm/psr7": "^1.5.1",
  1968. "php-http/psr7-integration-tests": "^1.1.1",
  1969. "phpbench/phpbench": "^1.2.6",
  1970. "phpstan/phpstan": "^1.8.5",
  1971. "phpstan/phpstan-deprecation-rules": "^1.0",
  1972. "phpstan/phpstan-phpunit": "^1.1.1",
  1973. "phpstan/phpstan-strict-rules": "^1.4.3",
  1974. "phpunit/phpunit": "^9.5.24",
  1975. "psr/http-factory": "^1.0.1"
  1976. },
  1977. "suggest": {
  1978. "ext-fileinfo": "Needed to create Data URI from a filepath",
  1979. "ext-intl": "Needed to improve host validation",
  1980. "league/uri-components": "Needed to easily manipulate URI objects",
  1981. "psr/http-factory": "Needed to use the URI factory"
  1982. },
  1983. "type": "library",
  1984. "extra": {
  1985. "branch-alias": {
  1986. "dev-master": "6.x-dev"
  1987. }
  1988. },
  1989. "autoload": {
  1990. "psr-4": {
  1991. "League\\Uri\\": "src"
  1992. }
  1993. },
  1994. "notification-url": "https://packagist.org/downloads/",
  1995. "license": [
  1996. "MIT"
  1997. ],
  1998. "authors": [
  1999. {
  2000. "name": "Ignace Nyamagana Butera",
  2001. "email": "nyamsprod@gmail.com",
  2002. "homepage": "https://nyamsprod.com"
  2003. }
  2004. ],
  2005. "description": "URI manipulation library",
  2006. "homepage": "https://uri.thephpleague.com",
  2007. "keywords": [
  2008. "data-uri",
  2009. "file-uri",
  2010. "ftp",
  2011. "hostname",
  2012. "http",
  2013. "https",
  2014. "middleware",
  2015. "parse_str",
  2016. "parse_url",
  2017. "psr-7",
  2018. "query-string",
  2019. "querystring",
  2020. "rfc3986",
  2021. "rfc3987",
  2022. "rfc6570",
  2023. "uri",
  2024. "uri-template",
  2025. "url",
  2026. "ws"
  2027. ],
  2028. "support": {
  2029. "docs": "https://uri.thephpleague.com",
  2030. "forum": "https://thephpleague.slack.com",
  2031. "issues": "https://github.com/thephpleague/uri/issues",
  2032. "source": "https://github.com/thephpleague/uri/tree/6.8.0"
  2033. },
  2034. "funding": [
  2035. {
  2036. "url": "https://github.com/sponsors/nyamsprod",
  2037. "type": "github"
  2038. }
  2039. ],
  2040. "time": "2022-09-13T19:58:47+00:00"
  2041. },
  2042. {
  2043. "name": "league/uri-interfaces",
  2044. "version": "2.3.0",
  2045. "source": {
  2046. "type": "git",
  2047. "url": "https://github.com/thephpleague/uri-interfaces.git",
  2048. "reference": "00e7e2943f76d8cb50c7dfdc2f6dee356e15e383"
  2049. },
  2050. "dist": {
  2051. "type": "zip",
  2052. "url": "https://api.github.com/repos/thephpleague/uri-interfaces/zipball/00e7e2943f76d8cb50c7dfdc2f6dee356e15e383",
  2053. "reference": "00e7e2943f76d8cb50c7dfdc2f6dee356e15e383",
  2054. "shasum": ""
  2055. },
  2056. "require": {
  2057. "ext-json": "*",
  2058. "php": "^7.2 || ^8.0"
  2059. },
  2060. "require-dev": {
  2061. "friendsofphp/php-cs-fixer": "^2.19",
  2062. "phpstan/phpstan": "^0.12.90",
  2063. "phpstan/phpstan-phpunit": "^0.12.19",
  2064. "phpstan/phpstan-strict-rules": "^0.12.9",
  2065. "phpunit/phpunit": "^8.5.15 || ^9.5"
  2066. },
  2067. "suggest": {
  2068. "ext-intl": "to use the IDNA feature",
  2069. "symfony/intl": "to use the IDNA feature via Symfony Polyfill"
  2070. },
  2071. "type": "library",
  2072. "extra": {
  2073. "branch-alias": {
  2074. "dev-master": "2.x-dev"
  2075. }
  2076. },
  2077. "autoload": {
  2078. "psr-4": {
  2079. "League\\Uri\\": "src/"
  2080. }
  2081. },
  2082. "notification-url": "https://packagist.org/downloads/",
  2083. "license": [
  2084. "MIT"
  2085. ],
  2086. "authors": [
  2087. {
  2088. "name": "Ignace Nyamagana Butera",
  2089. "email": "nyamsprod@gmail.com",
  2090. "homepage": "https://nyamsprod.com"
  2091. }
  2092. ],
  2093. "description": "Common interface for URI representation",
  2094. "homepage": "http://github.com/thephpleague/uri-interfaces",
  2095. "keywords": [
  2096. "rfc3986",
  2097. "rfc3987",
  2098. "uri",
  2099. "url"
  2100. ],
  2101. "support": {
  2102. "issues": "https://github.com/thephpleague/uri-interfaces/issues",
  2103. "source": "https://github.com/thephpleague/uri-interfaces/tree/2.3.0"
  2104. },
  2105. "funding": [
  2106. {
  2107. "url": "https://github.com/sponsors/nyamsprod",
  2108. "type": "github"
  2109. }
  2110. ],
  2111. "time": "2021-06-28T04:27:21+00:00"
  2112. },
  2113. {
  2114. "name": "masterminds/html5",
  2115. "version": "2.7.6",
  2116. "source": {
  2117. "type": "git",
  2118. "url": "https://github.com/Masterminds/html5-php.git",
  2119. "reference": "897eb517a343a2281f11bc5556d6548db7d93947"
  2120. },
  2121. "dist": {
  2122. "type": "zip",
  2123. "url": "https://api.github.com/repos/Masterminds/html5-php/zipball/897eb517a343a2281f11bc5556d6548db7d93947",
  2124. "reference": "897eb517a343a2281f11bc5556d6548db7d93947",
  2125. "shasum": ""
  2126. },
  2127. "require": {
  2128. "ext-ctype": "*",
  2129. "ext-dom": "*",
  2130. "ext-libxml": "*",
  2131. "php": ">=5.3.0"
  2132. },
  2133. "require-dev": {
  2134. "phpunit/phpunit": "^4.8.35 || ^5.7.21 || ^6 || ^7"
  2135. },
  2136. "type": "library",
  2137. "extra": {
  2138. "branch-alias": {
  2139. "dev-master": "2.7-dev"
  2140. }
  2141. },
  2142. "autoload": {
  2143. "psr-4": {
  2144. "Masterminds\\": "src"
  2145. }
  2146. },
  2147. "notification-url": "https://packagist.org/downloads/",
  2148. "license": [
  2149. "MIT"
  2150. ],
  2151. "authors": [
  2152. {
  2153. "name": "Matt Butcher",
  2154. "email": "technosophos@gmail.com"
  2155. },
  2156. {
  2157. "name": "Matt Farina",
  2158. "email": "matt@mattfarina.com"
  2159. },
  2160. {
  2161. "name": "Asmir Mustafic",
  2162. "email": "goetas@gmail.com"
  2163. }
  2164. ],
  2165. "description": "An HTML5 parser and serializer.",
  2166. "homepage": "http://masterminds.github.io/html5-php",
  2167. "keywords": [
  2168. "HTML5",
  2169. "dom",
  2170. "html",
  2171. "parser",
  2172. "querypath",
  2173. "serializer",
  2174. "xml"
  2175. ],
  2176. "support": {
  2177. "issues": "https://github.com/Masterminds/html5-php/issues",
  2178. "source": "https://github.com/Masterminds/html5-php/tree/2.7.6"
  2179. },
  2180. "time": "2022-08-18T16:18:26+00:00"
  2181. },
  2182. {
  2183. "name": "monolog/monolog",
  2184. "version": "3.3.1",
  2185. "source": {
  2186. "type": "git",
  2187. "url": "https://github.com/Seldaek/monolog.git",
  2188. "reference": "9b5daeaffce5b926cac47923798bba91059e60e2"
  2189. },
  2190. "dist": {
  2191. "type": "zip",
  2192. "url": "https://api.github.com/repos/Seldaek/monolog/zipball/9b5daeaffce5b926cac47923798bba91059e60e2",
  2193. "reference": "9b5daeaffce5b926cac47923798bba91059e60e2",
  2194. "shasum": ""
  2195. },
  2196. "require": {
  2197. "php": ">=8.1",
  2198. "psr/log": "^2.0 || ^3.0"
  2199. },
  2200. "provide": {
  2201. "psr/log-implementation": "3.0.0"
  2202. },
  2203. "require-dev": {
  2204. "aws/aws-sdk-php": "^3.0",
  2205. "doctrine/couchdb": "~1.0@dev",
  2206. "elasticsearch/elasticsearch": "^7 || ^8",
  2207. "ext-json": "*",
  2208. "graylog2/gelf-php": "^1.4.2 || ^2@dev",
  2209. "guzzlehttp/guzzle": "^7.4.5",
  2210. "guzzlehttp/psr7": "^2.2",
  2211. "mongodb/mongodb": "^1.8",
  2212. "php-amqplib/php-amqplib": "~2.4 || ^3",
  2213. "phpstan/phpstan": "^1.9",
  2214. "phpstan/phpstan-deprecation-rules": "^1.0",
  2215. "phpstan/phpstan-strict-rules": "^1.4",
  2216. "phpunit/phpunit": "^9.5.26",
  2217. "predis/predis": "^1.1 || ^2",
  2218. "ruflin/elastica": "^7",
  2219. "symfony/mailer": "^5.4 || ^6",
  2220. "symfony/mime": "^5.4 || ^6"
  2221. },
  2222. "suggest": {
  2223. "aws/aws-sdk-php": "Allow sending log messages to AWS services like DynamoDB",
  2224. "doctrine/couchdb": "Allow sending log messages to a CouchDB server",
  2225. "elasticsearch/elasticsearch": "Allow sending log messages to an Elasticsearch server via official client",
  2226. "ext-amqp": "Allow sending log messages to an AMQP server (1.0+ required)",
  2227. "ext-curl": "Required to send log messages using the IFTTTHandler, the LogglyHandler, the SendGridHandler, the SlackWebhookHandler or the TelegramBotHandler",
  2228. "ext-mbstring": "Allow to work properly with unicode symbols",
  2229. "ext-mongodb": "Allow sending log messages to a MongoDB server (via driver)",
  2230. "ext-openssl": "Required to send log messages using SSL",
  2231. "ext-sockets": "Allow sending log messages to a Syslog server (via UDP driver)",
  2232. "graylog2/gelf-php": "Allow sending log messages to a GrayLog2 server",
  2233. "mongodb/mongodb": "Allow sending log messages to a MongoDB server (via library)",
  2234. "php-amqplib/php-amqplib": "Allow sending log messages to an AMQP server using php-amqplib",
  2235. "rollbar/rollbar": "Allow sending log messages to Rollbar",
  2236. "ruflin/elastica": "Allow sending log messages to an Elastic Search server"
  2237. },
  2238. "type": "library",
  2239. "extra": {
  2240. "branch-alias": {
  2241. "dev-main": "3.x-dev"
  2242. }
  2243. },
  2244. "autoload": {
  2245. "psr-4": {
  2246. "Monolog\\": "src/Monolog"
  2247. }
  2248. },
  2249. "notification-url": "https://packagist.org/downloads/",
  2250. "license": [
  2251. "MIT"
  2252. ],
  2253. "authors": [
  2254. {
  2255. "name": "Jordi Boggiano",
  2256. "email": "j.boggiano@seld.be",
  2257. "homepage": "https://seld.be"
  2258. }
  2259. ],
  2260. "description": "Sends your logs to files, sockets, inboxes, databases and various web services",
  2261. "homepage": "https://github.com/Seldaek/monolog",
  2262. "keywords": [
  2263. "log",
  2264. "logging",
  2265. "psr-3"
  2266. ],
  2267. "support": {
  2268. "issues": "https://github.com/Seldaek/monolog/issues",
  2269. "source": "https://github.com/Seldaek/monolog/tree/3.3.1"
  2270. },
  2271. "funding": [
  2272. {
  2273. "url": "https://github.com/Seldaek",
  2274. "type": "github"
  2275. },
  2276. {
  2277. "url": "https://tidelift.com/funding/github/packagist/monolog/monolog",
  2278. "type": "tidelift"
  2279. }
  2280. ],
  2281. "time": "2023-02-06T13:46:10+00:00"
  2282. },
  2283. {
  2284. "name": "nette/schema",
  2285. "version": "v1.2.3",
  2286. "source": {
  2287. "type": "git",
  2288. "url": "https://github.com/nette/schema.git",
  2289. "reference": "abbdbb70e0245d5f3bf77874cea1dfb0c930d06f"
  2290. },
  2291. "dist": {
  2292. "type": "zip",
  2293. "url": "https://api.github.com/repos/nette/schema/zipball/abbdbb70e0245d5f3bf77874cea1dfb0c930d06f",
  2294. "reference": "abbdbb70e0245d5f3bf77874cea1dfb0c930d06f",
  2295. "shasum": ""
  2296. },
  2297. "require": {
  2298. "nette/utils": "^2.5.7 || ^3.1.5 || ^4.0",
  2299. "php": ">=7.1 <8.3"
  2300. },
  2301. "require-dev": {
  2302. "nette/tester": "^2.3 || ^2.4",
  2303. "phpstan/phpstan-nette": "^1.0",
  2304. "tracy/tracy": "^2.7"
  2305. },
  2306. "type": "library",
  2307. "extra": {
  2308. "branch-alias": {
  2309. "dev-master": "1.2-dev"
  2310. }
  2311. },
  2312. "autoload": {
  2313. "classmap": [
  2314. "src/"
  2315. ]
  2316. },
  2317. "notification-url": "https://packagist.org/downloads/",
  2318. "license": [
  2319. "BSD-3-Clause",
  2320. "GPL-2.0-only",
  2321. "GPL-3.0-only"
  2322. ],
  2323. "authors": [
  2324. {
  2325. "name": "David Grudl",
  2326. "homepage": "https://davidgrudl.com"
  2327. },
  2328. {
  2329. "name": "Nette Community",
  2330. "homepage": "https://nette.org/contributors"
  2331. }
  2332. ],
  2333. "description": "📐 Nette Schema: validating data structures against a given Schema.",
  2334. "homepage": "https://nette.org",
  2335. "keywords": [
  2336. "config",
  2337. "nette"
  2338. ],
  2339. "support": {
  2340. "issues": "https://github.com/nette/schema/issues",
  2341. "source": "https://github.com/nette/schema/tree/v1.2.3"
  2342. },
  2343. "time": "2022-10-13T01:24:26+00:00"
  2344. },
  2345. {
  2346. "name": "nette/utils",
  2347. "version": "v4.0.0",
  2348. "source": {
  2349. "type": "git",
  2350. "url": "https://github.com/nette/utils.git",
  2351. "reference": "cacdbf5a91a657ede665c541eda28941d4b09c1e"
  2352. },
  2353. "dist": {
  2354. "type": "zip",
  2355. "url": "https://api.github.com/repos/nette/utils/zipball/cacdbf5a91a657ede665c541eda28941d4b09c1e",
  2356. "reference": "cacdbf5a91a657ede665c541eda28941d4b09c1e",
  2357. "shasum": ""
  2358. },
  2359. "require": {
  2360. "php": ">=8.0 <8.3"
  2361. },
  2362. "conflict": {
  2363. "nette/finder": "<3",
  2364. "nette/schema": "<1.2.2"
  2365. },
  2366. "require-dev": {
  2367. "jetbrains/phpstorm-attributes": "dev-master",
  2368. "nette/tester": "^2.4",
  2369. "phpstan/phpstan": "^1.0",
  2370. "tracy/tracy": "^2.9"
  2371. },
  2372. "suggest": {
  2373. "ext-gd": "to use Image",
  2374. "ext-iconv": "to use Strings::webalize(), toAscii(), chr() and reverse()",
  2375. "ext-intl": "to use Strings::webalize(), toAscii(), normalize() and compare()",
  2376. "ext-json": "to use Nette\\Utils\\Json",
  2377. "ext-mbstring": "to use Strings::lower() etc...",
  2378. "ext-tokenizer": "to use Nette\\Utils\\Reflection::getUseStatements()",
  2379. "ext-xml": "to use Strings::length() etc. when mbstring is not available"
  2380. },
  2381. "type": "library",
  2382. "extra": {
  2383. "branch-alias": {
  2384. "dev-master": "4.0-dev"
  2385. }
  2386. },
  2387. "autoload": {
  2388. "classmap": [
  2389. "src/"
  2390. ]
  2391. },
  2392. "notification-url": "https://packagist.org/downloads/",
  2393. "license": [
  2394. "BSD-3-Clause",
  2395. "GPL-2.0-only",
  2396. "GPL-3.0-only"
  2397. ],
  2398. "authors": [
  2399. {
  2400. "name": "David Grudl",
  2401. "homepage": "https://davidgrudl.com"
  2402. },
  2403. {
  2404. "name": "Nette Community",
  2405. "homepage": "https://nette.org/contributors"
  2406. }
  2407. ],
  2408. "description": "🛠 Nette Utils: lightweight utilities for string & array manipulation, image handling, safe JSON encoding/decoding, validation, slug or strong password generating etc.",
  2409. "homepage": "https://nette.org",
  2410. "keywords": [
  2411. "array",
  2412. "core",
  2413. "datetime",
  2414. "images",
  2415. "json",
  2416. "nette",
  2417. "paginator",
  2418. "password",
  2419. "slugify",
  2420. "string",
  2421. "unicode",
  2422. "utf-8",
  2423. "utility",
  2424. "validation"
  2425. ],
  2426. "support": {
  2427. "issues": "https://github.com/nette/utils/issues",
  2428. "source": "https://github.com/nette/utils/tree/v4.0.0"
  2429. },
  2430. "time": "2023-02-02T10:41:53+00:00"
  2431. },
  2432. {
  2433. "name": "phpdocumentor/reflection-common",
  2434. "version": "2.2.0",
  2435. "source": {
  2436. "type": "git",
  2437. "url": "https://github.com/phpDocumentor/ReflectionCommon.git",
  2438. "reference": "1d01c49d4ed62f25aa84a747ad35d5a16924662b"
  2439. },
  2440. "dist": {
  2441. "type": "zip",
  2442. "url": "https://api.github.com/repos/phpDocumentor/ReflectionCommon/zipball/1d01c49d4ed62f25aa84a747ad35d5a16924662b",
  2443. "reference": "1d01c49d4ed62f25aa84a747ad35d5a16924662b",
  2444. "shasum": ""
  2445. },
  2446. "require": {
  2447. "php": "^7.2 || ^8.0"
  2448. },
  2449. "type": "library",
  2450. "extra": {
  2451. "branch-alias": {
  2452. "dev-2.x": "2.x-dev"
  2453. }
  2454. },
  2455. "autoload": {
  2456. "psr-4": {
  2457. "phpDocumentor\\Reflection\\": "src/"
  2458. }
  2459. },
  2460. "notification-url": "https://packagist.org/downloads/",
  2461. "license": [
  2462. "MIT"
  2463. ],
  2464. "authors": [
  2465. {
  2466. "name": "Jaap van Otterdijk",
  2467. "email": "opensource@ijaap.nl"
  2468. }
  2469. ],
  2470. "description": "Common reflection classes used by phpdocumentor to reflect the code structure",
  2471. "homepage": "http://www.phpdoc.org",
  2472. "keywords": [
  2473. "FQSEN",
  2474. "phpDocumentor",
  2475. "phpdoc",
  2476. "reflection",
  2477. "static analysis"
  2478. ],
  2479. "support": {
  2480. "issues": "https://github.com/phpDocumentor/ReflectionCommon/issues",
  2481. "source": "https://github.com/phpDocumentor/ReflectionCommon/tree/2.x"
  2482. },
  2483. "time": "2020-06-27T09:03:43+00:00"
  2484. },
  2485. {
  2486. "name": "phpdocumentor/reflection-docblock",
  2487. "version": "5.3.0",
  2488. "source": {
  2489. "type": "git",
  2490. "url": "https://github.com/phpDocumentor/ReflectionDocBlock.git",
  2491. "reference": "622548b623e81ca6d78b721c5e029f4ce664f170"
  2492. },
  2493. "dist": {
  2494. "type": "zip",
  2495. "url": "https://api.github.com/repos/phpDocumentor/ReflectionDocBlock/zipball/622548b623e81ca6d78b721c5e029f4ce664f170",
  2496. "reference": "622548b623e81ca6d78b721c5e029f4ce664f170",
  2497. "shasum": ""
  2498. },
  2499. "require": {
  2500. "ext-filter": "*",
  2501. "php": "^7.2 || ^8.0",
  2502. "phpdocumentor/reflection-common": "^2.2",
  2503. "phpdocumentor/type-resolver": "^1.3",
  2504. "webmozart/assert": "^1.9.1"
  2505. },
  2506. "require-dev": {
  2507. "mockery/mockery": "~1.3.2",
  2508. "psalm/phar": "^4.8"
  2509. },
  2510. "type": "library",
  2511. "extra": {
  2512. "branch-alias": {
  2513. "dev-master": "5.x-dev"
  2514. }
  2515. },
  2516. "autoload": {
  2517. "psr-4": {
  2518. "phpDocumentor\\Reflection\\": "src"
  2519. }
  2520. },
  2521. "notification-url": "https://packagist.org/downloads/",
  2522. "license": [
  2523. "MIT"
  2524. ],
  2525. "authors": [
  2526. {
  2527. "name": "Mike van Riel",
  2528. "email": "me@mikevanriel.com"
  2529. },
  2530. {
  2531. "name": "Jaap van Otterdijk",
  2532. "email": "account@ijaap.nl"
  2533. }
  2534. ],
  2535. "description": "With this component, a library can provide support for annotations via DocBlocks or otherwise retrieve information that is embedded in a DocBlock.",
  2536. "support": {
  2537. "issues": "https://github.com/phpDocumentor/ReflectionDocBlock/issues",
  2538. "source": "https://github.com/phpDocumentor/ReflectionDocBlock/tree/5.3.0"
  2539. },
  2540. "time": "2021-10-19T17:43:47+00:00"
  2541. },
  2542. {
  2543. "name": "phpdocumentor/type-resolver",
  2544. "version": "1.7.1",
  2545. "source": {
  2546. "type": "git",
  2547. "url": "https://github.com/phpDocumentor/TypeResolver.git",
  2548. "reference": "dfc078e8af9c99210337325ff5aa152872c98714"
  2549. },
  2550. "dist": {
  2551. "type": "zip",
  2552. "url": "https://api.github.com/repos/phpDocumentor/TypeResolver/zipball/dfc078e8af9c99210337325ff5aa152872c98714",
  2553. "reference": "dfc078e8af9c99210337325ff5aa152872c98714",
  2554. "shasum": ""
  2555. },
  2556. "require": {
  2557. "doctrine/deprecations": "^1.0",
  2558. "php": "^7.4 || ^8.0",
  2559. "phpdocumentor/reflection-common": "^2.0",
  2560. "phpstan/phpdoc-parser": "^1.13"
  2561. },
  2562. "require-dev": {
  2563. "ext-tokenizer": "*",
  2564. "phpbench/phpbench": "^1.2",
  2565. "phpstan/extension-installer": "^1.1",
  2566. "phpstan/phpstan": "^1.8",
  2567. "phpstan/phpstan-phpunit": "^1.1",
  2568. "phpunit/phpunit": "^9.5",
  2569. "rector/rector": "^0.13.9",
  2570. "vimeo/psalm": "^4.25"
  2571. },
  2572. "type": "library",
  2573. "extra": {
  2574. "branch-alias": {
  2575. "dev-1.x": "1.x-dev"
  2576. }
  2577. },
  2578. "autoload": {
  2579. "psr-4": {
  2580. "phpDocumentor\\Reflection\\": "src"
  2581. }
  2582. },
  2583. "notification-url": "https://packagist.org/downloads/",
  2584. "license": [
  2585. "MIT"
  2586. ],
  2587. "authors": [
  2588. {
  2589. "name": "Mike van Riel",
  2590. "email": "me@mikevanriel.com"
  2591. }
  2592. ],
  2593. "description": "A PSR-5 based resolver of Class names, Types and Structural Element Names",
  2594. "support": {
  2595. "issues": "https://github.com/phpDocumentor/TypeResolver/issues",
  2596. "source": "https://github.com/phpDocumentor/TypeResolver/tree/1.7.1"
  2597. },
  2598. "time": "2023-03-27T19:02:04+00:00"
  2599. },
  2600. {
  2601. "name": "phpstan/phpdoc-parser",
  2602. "version": "1.18.1",
  2603. "source": {
  2604. "type": "git",
  2605. "url": "https://github.com/phpstan/phpdoc-parser.git",
  2606. "reference": "22dcdfd725ddf99583bfe398fc624ad6c5004a0f"
  2607. },
  2608. "dist": {
  2609. "type": "zip",
  2610. "url": "https://api.github.com/repos/phpstan/phpdoc-parser/zipball/22dcdfd725ddf99583bfe398fc624ad6c5004a0f",
  2611. "reference": "22dcdfd725ddf99583bfe398fc624ad6c5004a0f",
  2612. "shasum": ""
  2613. },
  2614. "require": {
  2615. "php": "^7.2 || ^8.0"
  2616. },
  2617. "require-dev": {
  2618. "php-parallel-lint/php-parallel-lint": "^1.2",
  2619. "phpstan/extension-installer": "^1.0",
  2620. "phpstan/phpstan": "^1.5",
  2621. "phpstan/phpstan-phpunit": "^1.1",
  2622. "phpstan/phpstan-strict-rules": "^1.0",
  2623. "phpunit/phpunit": "^9.5",
  2624. "symfony/process": "^5.2"
  2625. },
  2626. "type": "library",
  2627. "autoload": {
  2628. "psr-4": {
  2629. "PHPStan\\PhpDocParser\\": [
  2630. "src/"
  2631. ]
  2632. }
  2633. },
  2634. "notification-url": "https://packagist.org/downloads/",
  2635. "license": [
  2636. "MIT"
  2637. ],
  2638. "description": "PHPDoc parser with support for nullable, intersection and generic types",
  2639. "support": {
  2640. "issues": "https://github.com/phpstan/phpdoc-parser/issues",
  2641. "source": "https://github.com/phpstan/phpdoc-parser/tree/1.18.1"
  2642. },
  2643. "time": "2023-04-07T11:51:11+00:00"
  2644. },
  2645. {
  2646. "name": "psr/cache",
  2647. "version": "3.0.0",
  2648. "source": {
  2649. "type": "git",
  2650. "url": "https://github.com/php-fig/cache.git",
  2651. "reference": "aa5030cfa5405eccfdcb1083ce040c2cb8d253bf"
  2652. },
  2653. "dist": {
  2654. "type": "zip",
  2655. "url": "https://api.github.com/repos/php-fig/cache/zipball/aa5030cfa5405eccfdcb1083ce040c2cb8d253bf",
  2656. "reference": "aa5030cfa5405eccfdcb1083ce040c2cb8d253bf",
  2657. "shasum": ""
  2658. },
  2659. "require": {
  2660. "php": ">=8.0.0"
  2661. },
  2662. "type": "library",
  2663. "extra": {
  2664. "branch-alias": {
  2665. "dev-master": "1.0.x-dev"
  2666. }
  2667. },
  2668. "autoload": {
  2669. "psr-4": {
  2670. "Psr\\Cache\\": "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 interface for caching libraries",
  2684. "keywords": [
  2685. "cache",
  2686. "psr",
  2687. "psr-6"
  2688. ],
  2689. "support": {
  2690. "source": "https://github.com/php-fig/cache/tree/3.0.0"
  2691. },
  2692. "time": "2021-02-03T23:26:27+00:00"
  2693. },
  2694. {
  2695. "name": "psr/container",
  2696. "version": "2.0.2",
  2697. "source": {
  2698. "type": "git",
  2699. "url": "https://github.com/php-fig/container.git",
  2700. "reference": "c71ecc56dfe541dbd90c5360474fbc405f8d5963"
  2701. },
  2702. "dist": {
  2703. "type": "zip",
  2704. "url": "https://api.github.com/repos/php-fig/container/zipball/c71ecc56dfe541dbd90c5360474fbc405f8d5963",
  2705. "reference": "c71ecc56dfe541dbd90c5360474fbc405f8d5963",
  2706. "shasum": ""
  2707. },
  2708. "require": {
  2709. "php": ">=7.4.0"
  2710. },
  2711. "type": "library",
  2712. "extra": {
  2713. "branch-alias": {
  2714. "dev-master": "2.0.x-dev"
  2715. }
  2716. },
  2717. "autoload": {
  2718. "psr-4": {
  2719. "Psr\\Container\\": "src/"
  2720. }
  2721. },
  2722. "notification-url": "https://packagist.org/downloads/",
  2723. "license": [
  2724. "MIT"
  2725. ],
  2726. "authors": [
  2727. {
  2728. "name": "PHP-FIG",
  2729. "homepage": "https://www.php-fig.org/"
  2730. }
  2731. ],
  2732. "description": "Common Container Interface (PHP FIG PSR-11)",
  2733. "homepage": "https://github.com/php-fig/container",
  2734. "keywords": [
  2735. "PSR-11",
  2736. "container",
  2737. "container-interface",
  2738. "container-interop",
  2739. "psr"
  2740. ],
  2741. "support": {
  2742. "issues": "https://github.com/php-fig/container/issues",
  2743. "source": "https://github.com/php-fig/container/tree/2.0.2"
  2744. },
  2745. "time": "2021-11-05T16:47:00+00:00"
  2746. },
  2747. {
  2748. "name": "psr/event-dispatcher",
  2749. "version": "1.0.0",
  2750. "source": {
  2751. "type": "git",
  2752. "url": "https://github.com/php-fig/event-dispatcher.git",
  2753. "reference": "dbefd12671e8a14ec7f180cab83036ed26714bb0"
  2754. },
  2755. "dist": {
  2756. "type": "zip",
  2757. "url": "https://api.github.com/repos/php-fig/event-dispatcher/zipball/dbefd12671e8a14ec7f180cab83036ed26714bb0",
  2758. "reference": "dbefd12671e8a14ec7f180cab83036ed26714bb0",
  2759. "shasum": ""
  2760. },
  2761. "require": {
  2762. "php": ">=7.2.0"
  2763. },
  2764. "type": "library",
  2765. "extra": {
  2766. "branch-alias": {
  2767. "dev-master": "1.0.x-dev"
  2768. }
  2769. },
  2770. "autoload": {
  2771. "psr-4": {
  2772. "Psr\\EventDispatcher\\": "src/"
  2773. }
  2774. },
  2775. "notification-url": "https://packagist.org/downloads/",
  2776. "license": [
  2777. "MIT"
  2778. ],
  2779. "authors": [
  2780. {
  2781. "name": "PHP-FIG",
  2782. "homepage": "http://www.php-fig.org/"
  2783. }
  2784. ],
  2785. "description": "Standard interfaces for event handling.",
  2786. "keywords": [
  2787. "events",
  2788. "psr",
  2789. "psr-14"
  2790. ],
  2791. "support": {
  2792. "issues": "https://github.com/php-fig/event-dispatcher/issues",
  2793. "source": "https://github.com/php-fig/event-dispatcher/tree/1.0.0"
  2794. },
  2795. "time": "2019-01-08T18:20:26+00:00"
  2796. },
  2797. {
  2798. "name": "psr/http-message",
  2799. "version": "1.1",
  2800. "source": {
  2801. "type": "git",
  2802. "url": "https://github.com/php-fig/http-message.git",
  2803. "reference": "cb6ce4845ce34a8ad9e68117c10ee90a29919eba"
  2804. },
  2805. "dist": {
  2806. "type": "zip",
  2807. "url": "https://api.github.com/repos/php-fig/http-message/zipball/cb6ce4845ce34a8ad9e68117c10ee90a29919eba",
  2808. "reference": "cb6ce4845ce34a8ad9e68117c10ee90a29919eba",
  2809. "shasum": ""
  2810. },
  2811. "require": {
  2812. "php": "^7.2 || ^8.0"
  2813. },
  2814. "type": "library",
  2815. "extra": {
  2816. "branch-alias": {
  2817. "dev-master": "1.1.x-dev"
  2818. }
  2819. },
  2820. "autoload": {
  2821. "psr-4": {
  2822. "Psr\\Http\\Message\\": "src/"
  2823. }
  2824. },
  2825. "notification-url": "https://packagist.org/downloads/",
  2826. "license": [
  2827. "MIT"
  2828. ],
  2829. "authors": [
  2830. {
  2831. "name": "PHP-FIG",
  2832. "homepage": "http://www.php-fig.org/"
  2833. }
  2834. ],
  2835. "description": "Common interface for HTTP messages",
  2836. "homepage": "https://github.com/php-fig/http-message",
  2837. "keywords": [
  2838. "http",
  2839. "http-message",
  2840. "psr",
  2841. "psr-7",
  2842. "request",
  2843. "response"
  2844. ],
  2845. "support": {
  2846. "source": "https://github.com/php-fig/http-message/tree/1.1"
  2847. },
  2848. "time": "2023-04-04T09:50:52+00:00"
  2849. },
  2850. {
  2851. "name": "psr/link",
  2852. "version": "2.0.1",
  2853. "source": {
  2854. "type": "git",
  2855. "url": "https://github.com/php-fig/link.git",
  2856. "reference": "84b159194ecfd7eaa472280213976e96415433f7"
  2857. },
  2858. "dist": {
  2859. "type": "zip",
  2860. "url": "https://api.github.com/repos/php-fig/link/zipball/84b159194ecfd7eaa472280213976e96415433f7",
  2861. "reference": "84b159194ecfd7eaa472280213976e96415433f7",
  2862. "shasum": ""
  2863. },
  2864. "require": {
  2865. "php": ">=8.0.0"
  2866. },
  2867. "suggest": {
  2868. "fig/link-util": "Provides some useful PSR-13 utilities"
  2869. },
  2870. "type": "library",
  2871. "extra": {
  2872. "branch-alias": {
  2873. "dev-master": "2.0.x-dev"
  2874. }
  2875. },
  2876. "autoload": {
  2877. "psr-4": {
  2878. "Psr\\Link\\": "src/"
  2879. }
  2880. },
  2881. "notification-url": "https://packagist.org/downloads/",
  2882. "license": [
  2883. "MIT"
  2884. ],
  2885. "authors": [
  2886. {
  2887. "name": "PHP-FIG",
  2888. "homepage": "http://www.php-fig.org/"
  2889. }
  2890. ],
  2891. "description": "Common interfaces for HTTP links",
  2892. "homepage": "https://github.com/php-fig/link",
  2893. "keywords": [
  2894. "http",
  2895. "http-link",
  2896. "link",
  2897. "psr",
  2898. "psr-13",
  2899. "rest"
  2900. ],
  2901. "support": {
  2902. "source": "https://github.com/php-fig/link/tree/2.0.1"
  2903. },
  2904. "time": "2021-03-11T23:00:27+00:00"
  2905. },
  2906. {
  2907. "name": "psr/log",
  2908. "version": "3.0.0",
  2909. "source": {
  2910. "type": "git",
  2911. "url": "https://github.com/php-fig/log.git",
  2912. "reference": "fe5ea303b0887d5caefd3d431c3e61ad47037001"
  2913. },
  2914. "dist": {
  2915. "type": "zip",
  2916. "url": "https://api.github.com/repos/php-fig/log/zipball/fe5ea303b0887d5caefd3d431c3e61ad47037001",
  2917. "reference": "fe5ea303b0887d5caefd3d431c3e61ad47037001",
  2918. "shasum": ""
  2919. },
  2920. "require": {
  2921. "php": ">=8.0.0"
  2922. },
  2923. "type": "library",
  2924. "extra": {
  2925. "branch-alias": {
  2926. "dev-master": "3.x-dev"
  2927. }
  2928. },
  2929. "autoload": {
  2930. "psr-4": {
  2931. "Psr\\Log\\": "src"
  2932. }
  2933. },
  2934. "notification-url": "https://packagist.org/downloads/",
  2935. "license": [
  2936. "MIT"
  2937. ],
  2938. "authors": [
  2939. {
  2940. "name": "PHP-FIG",
  2941. "homepage": "https://www.php-fig.org/"
  2942. }
  2943. ],
  2944. "description": "Common interface for logging libraries",
  2945. "homepage": "https://github.com/php-fig/log",
  2946. "keywords": [
  2947. "log",
  2948. "psr",
  2949. "psr-3"
  2950. ],
  2951. "support": {
  2952. "source": "https://github.com/php-fig/log/tree/3.0.0"
  2953. },
  2954. "time": "2021-07-14T16:46:02+00:00"
  2955. },
  2956. {
  2957. "name": "sensio/framework-extra-bundle",
  2958. "version": "v6.2.10",
  2959. "source": {
  2960. "type": "git",
  2961. "url": "https://github.com/sensiolabs/SensioFrameworkExtraBundle.git",
  2962. "reference": "2f886f4b31f23c76496901acaedfedb6936ba61f"
  2963. },
  2964. "dist": {
  2965. "type": "zip",
  2966. "url": "https://api.github.com/repos/sensiolabs/SensioFrameworkExtraBundle/zipball/2f886f4b31f23c76496901acaedfedb6936ba61f",
  2967. "reference": "2f886f4b31f23c76496901acaedfedb6936ba61f",
  2968. "shasum": ""
  2969. },
  2970. "require": {
  2971. "doctrine/annotations": "^1.0|^2.0",
  2972. "php": ">=7.2.5",
  2973. "symfony/config": "^4.4|^5.0|^6.0",
  2974. "symfony/dependency-injection": "^4.4|^5.0|^6.0",
  2975. "symfony/framework-bundle": "^4.4|^5.0|^6.0",
  2976. "symfony/http-kernel": "^4.4|^5.0|^6.0"
  2977. },
  2978. "conflict": {
  2979. "doctrine/doctrine-cache-bundle": "<1.3.1",
  2980. "doctrine/persistence": "<1.3"
  2981. },
  2982. "require-dev": {
  2983. "doctrine/dbal": "^2.10|^3.0",
  2984. "doctrine/doctrine-bundle": "^1.11|^2.0",
  2985. "doctrine/orm": "^2.5",
  2986. "symfony/browser-kit": "^4.4|^5.0|^6.0",
  2987. "symfony/doctrine-bridge": "^4.4|^5.0|^6.0",
  2988. "symfony/dom-crawler": "^4.4|^5.0|^6.0",
  2989. "symfony/expression-language": "^4.4|^5.0|^6.0",
  2990. "symfony/finder": "^4.4|^5.0|^6.0",
  2991. "symfony/monolog-bridge": "^4.0|^5.0|^6.0",
  2992. "symfony/monolog-bundle": "^3.2",
  2993. "symfony/phpunit-bridge": "^4.4.9|^5.0.9|^6.0",
  2994. "symfony/security-bundle": "^4.4|^5.0|^6.0",
  2995. "symfony/twig-bundle": "^4.4|^5.0|^6.0",
  2996. "symfony/yaml": "^4.4|^5.0|^6.0",
  2997. "twig/twig": "^1.34|^2.4|^3.0"
  2998. },
  2999. "type": "symfony-bundle",
  3000. "extra": {
  3001. "branch-alias": {
  3002. "dev-master": "6.1.x-dev"
  3003. }
  3004. },
  3005. "autoload": {
  3006. "psr-4": {
  3007. "Sensio\\Bundle\\FrameworkExtraBundle\\": "src/"
  3008. },
  3009. "exclude-from-classmap": [
  3010. "/tests/"
  3011. ]
  3012. },
  3013. "notification-url": "https://packagist.org/downloads/",
  3014. "license": [
  3015. "MIT"
  3016. ],
  3017. "authors": [
  3018. {
  3019. "name": "Fabien Potencier",
  3020. "email": "fabien@symfony.com"
  3021. }
  3022. ],
  3023. "description": "This bundle provides a way to configure your controllers with annotations",
  3024. "keywords": [
  3025. "annotations",
  3026. "controllers"
  3027. ],
  3028. "support": {
  3029. "source": "https://github.com/sensiolabs/SensioFrameworkExtraBundle/tree/v6.2.10"
  3030. },
  3031. "abandoned": "Symfony",
  3032. "time": "2023-02-24T14:57:12+00:00"
  3033. },
  3034. {
  3035. "name": "symfony/apache-pack",
  3036. "version": "v1.0.1",
  3037. "source": {
  3038. "type": "git",
  3039. "url": "https://github.com/symfony/apache-pack.git",
  3040. "reference": "3aa5818d73ad2551281fc58a75afd9ca82622e6c"
  3041. },
  3042. "dist": {
  3043. "type": "zip",
  3044. "url": "https://api.github.com/repos/symfony/apache-pack/zipball/3aa5818d73ad2551281fc58a75afd9ca82622e6c",
  3045. "reference": "3aa5818d73ad2551281fc58a75afd9ca82622e6c",
  3046. "shasum": ""
  3047. },
  3048. "type": "symfony-pack",
  3049. "notification-url": "https://packagist.org/downloads/",
  3050. "license": [
  3051. "MIT"
  3052. ],
  3053. "description": "A pack for Apache support in Symfony",
  3054. "support": {
  3055. "issues": "https://github.com/symfony/apache-pack/issues",
  3056. "source": "https://github.com/symfony/apache-pack/tree/master"
  3057. },
  3058. "time": "2017-12-12T01:46:35+00:00"
  3059. },
  3060. {
  3061. "name": "symfony/asset",
  3062. "version": "v6.2.7",
  3063. "source": {
  3064. "type": "git",
  3065. "url": "https://github.com/symfony/asset.git",
  3066. "reference": "223df790e684ecc7bc37323c2d1e265129ca02de"
  3067. },
  3068. "dist": {
  3069. "type": "zip",
  3070. "url": "https://api.github.com/repos/symfony/asset/zipball/223df790e684ecc7bc37323c2d1e265129ca02de",
  3071. "reference": "223df790e684ecc7bc37323c2d1e265129ca02de",
  3072. "shasum": ""
  3073. },
  3074. "require": {
  3075. "php": ">=8.1"
  3076. },
  3077. "conflict": {
  3078. "symfony/http-foundation": "<5.4"
  3079. },
  3080. "require-dev": {
  3081. "symfony/http-client": "^5.4|^6.0",
  3082. "symfony/http-foundation": "^5.4|^6.0",
  3083. "symfony/http-kernel": "^5.4|^6.0"
  3084. },
  3085. "suggest": {
  3086. "symfony/http-foundation": ""
  3087. },
  3088. "type": "library",
  3089. "autoload": {
  3090. "psr-4": {
  3091. "Symfony\\Component\\Asset\\": ""
  3092. },
  3093. "exclude-from-classmap": [
  3094. "/Tests/"
  3095. ]
  3096. },
  3097. "notification-url": "https://packagist.org/downloads/",
  3098. "license": [
  3099. "MIT"
  3100. ],
  3101. "authors": [
  3102. {
  3103. "name": "Fabien Potencier",
  3104. "email": "fabien@symfony.com"
  3105. },
  3106. {
  3107. "name": "Symfony Community",
  3108. "homepage": "https://symfony.com/contributors"
  3109. }
  3110. ],
  3111. "description": "Manages URL generation and versioning of web assets such as CSS stylesheets, JavaScript files and image files",
  3112. "homepage": "https://symfony.com",
  3113. "support": {
  3114. "source": "https://github.com/symfony/asset/tree/v6.2.7"
  3115. },
  3116. "funding": [
  3117. {
  3118. "url": "https://symfony.com/sponsor",
  3119. "type": "custom"
  3120. },
  3121. {
  3122. "url": "https://github.com/fabpot",
  3123. "type": "github"
  3124. },
  3125. {
  3126. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3127. "type": "tidelift"
  3128. }
  3129. ],
  3130. "time": "2023-02-14T08:44:56+00:00"
  3131. },
  3132. {
  3133. "name": "symfony/cache",
  3134. "version": "v6.2.8",
  3135. "source": {
  3136. "type": "git",
  3137. "url": "https://github.com/symfony/cache.git",
  3138. "reference": "76babfd82f6bfd8f6cbe851a153b95dd074ffc53"
  3139. },
  3140. "dist": {
  3141. "type": "zip",
  3142. "url": "https://api.github.com/repos/symfony/cache/zipball/76babfd82f6bfd8f6cbe851a153b95dd074ffc53",
  3143. "reference": "76babfd82f6bfd8f6cbe851a153b95dd074ffc53",
  3144. "shasum": ""
  3145. },
  3146. "require": {
  3147. "php": ">=8.1",
  3148. "psr/cache": "^2.0|^3.0",
  3149. "psr/log": "^1.1|^2|^3",
  3150. "symfony/cache-contracts": "^1.1.7|^2|^3",
  3151. "symfony/service-contracts": "^1.1|^2|^3",
  3152. "symfony/var-exporter": "^6.2.7"
  3153. },
  3154. "conflict": {
  3155. "doctrine/dbal": "<2.13.1",
  3156. "symfony/dependency-injection": "<5.4",
  3157. "symfony/http-kernel": "<5.4",
  3158. "symfony/var-dumper": "<5.4"
  3159. },
  3160. "provide": {
  3161. "psr/cache-implementation": "2.0|3.0",
  3162. "psr/simple-cache-implementation": "1.0|2.0|3.0",
  3163. "symfony/cache-implementation": "1.1|2.0|3.0"
  3164. },
  3165. "require-dev": {
  3166. "cache/integration-tests": "dev-master",
  3167. "doctrine/dbal": "^2.13.1|^3.0",
  3168. "predis/predis": "^1.1",
  3169. "psr/simple-cache": "^1.0|^2.0|^3.0",
  3170. "symfony/config": "^5.4|^6.0",
  3171. "symfony/dependency-injection": "^5.4|^6.0",
  3172. "symfony/filesystem": "^5.4|^6.0",
  3173. "symfony/http-kernel": "^5.4|^6.0",
  3174. "symfony/messenger": "^5.4|^6.0",
  3175. "symfony/var-dumper": "^5.4|^6.0"
  3176. },
  3177. "type": "library",
  3178. "autoload": {
  3179. "psr-4": {
  3180. "Symfony\\Component\\Cache\\": ""
  3181. },
  3182. "classmap": [
  3183. "Traits/ValueWrapper.php"
  3184. ],
  3185. "exclude-from-classmap": [
  3186. "/Tests/"
  3187. ]
  3188. },
  3189. "notification-url": "https://packagist.org/downloads/",
  3190. "license": [
  3191. "MIT"
  3192. ],
  3193. "authors": [
  3194. {
  3195. "name": "Nicolas Grekas",
  3196. "email": "p@tchwork.com"
  3197. },
  3198. {
  3199. "name": "Symfony Community",
  3200. "homepage": "https://symfony.com/contributors"
  3201. }
  3202. ],
  3203. "description": "Provides extended PSR-6, PSR-16 (and tags) implementations",
  3204. "homepage": "https://symfony.com",
  3205. "keywords": [
  3206. "caching",
  3207. "psr6"
  3208. ],
  3209. "support": {
  3210. "source": "https://github.com/symfony/cache/tree/v6.2.8"
  3211. },
  3212. "funding": [
  3213. {
  3214. "url": "https://symfony.com/sponsor",
  3215. "type": "custom"
  3216. },
  3217. {
  3218. "url": "https://github.com/fabpot",
  3219. "type": "github"
  3220. },
  3221. {
  3222. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3223. "type": "tidelift"
  3224. }
  3225. ],
  3226. "time": "2023-03-30T07:37:32+00:00"
  3227. },
  3228. {
  3229. "name": "symfony/cache-contracts",
  3230. "version": "v3.2.1",
  3231. "source": {
  3232. "type": "git",
  3233. "url": "https://github.com/symfony/cache-contracts.git",
  3234. "reference": "eeb71f04b6f7f34ca6d15633df82e014528b1632"
  3235. },
  3236. "dist": {
  3237. "type": "zip",
  3238. "url": "https://api.github.com/repos/symfony/cache-contracts/zipball/eeb71f04b6f7f34ca6d15633df82e014528b1632",
  3239. "reference": "eeb71f04b6f7f34ca6d15633df82e014528b1632",
  3240. "shasum": ""
  3241. },
  3242. "require": {
  3243. "php": ">=8.1",
  3244. "psr/cache": "^3.0"
  3245. },
  3246. "suggest": {
  3247. "symfony/cache-implementation": ""
  3248. },
  3249. "type": "library",
  3250. "extra": {
  3251. "branch-alias": {
  3252. "dev-main": "3.3-dev"
  3253. },
  3254. "thanks": {
  3255. "name": "symfony/contracts",
  3256. "url": "https://github.com/symfony/contracts"
  3257. }
  3258. },
  3259. "autoload": {
  3260. "psr-4": {
  3261. "Symfony\\Contracts\\Cache\\": ""
  3262. }
  3263. },
  3264. "notification-url": "https://packagist.org/downloads/",
  3265. "license": [
  3266. "MIT"
  3267. ],
  3268. "authors": [
  3269. {
  3270. "name": "Nicolas Grekas",
  3271. "email": "p@tchwork.com"
  3272. },
  3273. {
  3274. "name": "Symfony Community",
  3275. "homepage": "https://symfony.com/contributors"
  3276. }
  3277. ],
  3278. "description": "Generic abstractions related to caching",
  3279. "homepage": "https://symfony.com",
  3280. "keywords": [
  3281. "abstractions",
  3282. "contracts",
  3283. "decoupling",
  3284. "interfaces",
  3285. "interoperability",
  3286. "standards"
  3287. ],
  3288. "support": {
  3289. "source": "https://github.com/symfony/cache-contracts/tree/v3.2.1"
  3290. },
  3291. "funding": [
  3292. {
  3293. "url": "https://symfony.com/sponsor",
  3294. "type": "custom"
  3295. },
  3296. {
  3297. "url": "https://github.com/fabpot",
  3298. "type": "github"
  3299. },
  3300. {
  3301. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3302. "type": "tidelift"
  3303. }
  3304. ],
  3305. "time": "2023-03-01T10:32:47+00:00"
  3306. },
  3307. {
  3308. "name": "symfony/config",
  3309. "version": "v6.2.7",
  3310. "source": {
  3311. "type": "git",
  3312. "url": "https://github.com/symfony/config.git",
  3313. "reference": "249271da6f545d6579e0663374f8249a80be2893"
  3314. },
  3315. "dist": {
  3316. "type": "zip",
  3317. "url": "https://api.github.com/repos/symfony/config/zipball/249271da6f545d6579e0663374f8249a80be2893",
  3318. "reference": "249271da6f545d6579e0663374f8249a80be2893",
  3319. "shasum": ""
  3320. },
  3321. "require": {
  3322. "php": ">=8.1",
  3323. "symfony/deprecation-contracts": "^2.1|^3",
  3324. "symfony/filesystem": "^5.4|^6.0",
  3325. "symfony/polyfill-ctype": "~1.8"
  3326. },
  3327. "conflict": {
  3328. "symfony/finder": "<5.4"
  3329. },
  3330. "require-dev": {
  3331. "symfony/event-dispatcher": "^5.4|^6.0",
  3332. "symfony/finder": "^5.4|^6.0",
  3333. "symfony/messenger": "^5.4|^6.0",
  3334. "symfony/service-contracts": "^1.1|^2|^3",
  3335. "symfony/yaml": "^5.4|^6.0"
  3336. },
  3337. "suggest": {
  3338. "symfony/yaml": "To use the yaml reference dumper"
  3339. },
  3340. "type": "library",
  3341. "autoload": {
  3342. "psr-4": {
  3343. "Symfony\\Component\\Config\\": ""
  3344. },
  3345. "exclude-from-classmap": [
  3346. "/Tests/"
  3347. ]
  3348. },
  3349. "notification-url": "https://packagist.org/downloads/",
  3350. "license": [
  3351. "MIT"
  3352. ],
  3353. "authors": [
  3354. {
  3355. "name": "Fabien Potencier",
  3356. "email": "fabien@symfony.com"
  3357. },
  3358. {
  3359. "name": "Symfony Community",
  3360. "homepage": "https://symfony.com/contributors"
  3361. }
  3362. ],
  3363. "description": "Helps you find, load, combine, autofill and validate configuration values of any kind",
  3364. "homepage": "https://symfony.com",
  3365. "support": {
  3366. "source": "https://github.com/symfony/config/tree/v6.2.7"
  3367. },
  3368. "funding": [
  3369. {
  3370. "url": "https://symfony.com/sponsor",
  3371. "type": "custom"
  3372. },
  3373. {
  3374. "url": "https://github.com/fabpot",
  3375. "type": "github"
  3376. },
  3377. {
  3378. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3379. "type": "tidelift"
  3380. }
  3381. ],
  3382. "time": "2023-02-14T08:44:56+00:00"
  3383. },
  3384. {
  3385. "name": "symfony/console",
  3386. "version": "v6.2.8",
  3387. "source": {
  3388. "type": "git",
  3389. "url": "https://github.com/symfony/console.git",
  3390. "reference": "3582d68a64a86ec25240aaa521ec8bc2342b369b"
  3391. },
  3392. "dist": {
  3393. "type": "zip",
  3394. "url": "https://api.github.com/repos/symfony/console/zipball/3582d68a64a86ec25240aaa521ec8bc2342b369b",
  3395. "reference": "3582d68a64a86ec25240aaa521ec8bc2342b369b",
  3396. "shasum": ""
  3397. },
  3398. "require": {
  3399. "php": ">=8.1",
  3400. "symfony/deprecation-contracts": "^2.1|^3",
  3401. "symfony/polyfill-mbstring": "~1.0",
  3402. "symfony/service-contracts": "^1.1|^2|^3",
  3403. "symfony/string": "^5.4|^6.0"
  3404. },
  3405. "conflict": {
  3406. "symfony/dependency-injection": "<5.4",
  3407. "symfony/dotenv": "<5.4",
  3408. "symfony/event-dispatcher": "<5.4",
  3409. "symfony/lock": "<5.4",
  3410. "symfony/process": "<5.4"
  3411. },
  3412. "provide": {
  3413. "psr/log-implementation": "1.0|2.0|3.0"
  3414. },
  3415. "require-dev": {
  3416. "psr/log": "^1|^2|^3",
  3417. "symfony/config": "^5.4|^6.0",
  3418. "symfony/dependency-injection": "^5.4|^6.0",
  3419. "symfony/event-dispatcher": "^5.4|^6.0",
  3420. "symfony/lock": "^5.4|^6.0",
  3421. "symfony/process": "^5.4|^6.0",
  3422. "symfony/var-dumper": "^5.4|^6.0"
  3423. },
  3424. "suggest": {
  3425. "psr/log": "For using the console logger",
  3426. "symfony/event-dispatcher": "",
  3427. "symfony/lock": "",
  3428. "symfony/process": ""
  3429. },
  3430. "type": "library",
  3431. "autoload": {
  3432. "psr-4": {
  3433. "Symfony\\Component\\Console\\": ""
  3434. },
  3435. "exclude-from-classmap": [
  3436. "/Tests/"
  3437. ]
  3438. },
  3439. "notification-url": "https://packagist.org/downloads/",
  3440. "license": [
  3441. "MIT"
  3442. ],
  3443. "authors": [
  3444. {
  3445. "name": "Fabien Potencier",
  3446. "email": "fabien@symfony.com"
  3447. },
  3448. {
  3449. "name": "Symfony Community",
  3450. "homepage": "https://symfony.com/contributors"
  3451. }
  3452. ],
  3453. "description": "Eases the creation of beautiful and testable command line interfaces",
  3454. "homepage": "https://symfony.com",
  3455. "keywords": [
  3456. "cli",
  3457. "command-line",
  3458. "console",
  3459. "terminal"
  3460. ],
  3461. "support": {
  3462. "source": "https://github.com/symfony/console/tree/v6.2.8"
  3463. },
  3464. "funding": [
  3465. {
  3466. "url": "https://symfony.com/sponsor",
  3467. "type": "custom"
  3468. },
  3469. {
  3470. "url": "https://github.com/fabpot",
  3471. "type": "github"
  3472. },
  3473. {
  3474. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3475. "type": "tidelift"
  3476. }
  3477. ],
  3478. "time": "2023-03-29T21:42:15+00:00"
  3479. },
  3480. {
  3481. "name": "symfony/dependency-injection",
  3482. "version": "v6.2.8",
  3483. "source": {
  3484. "type": "git",
  3485. "url": "https://github.com/symfony/dependency-injection.git",
  3486. "reference": "b6195feacceb88fc58a02b69522b569e4c6188ac"
  3487. },
  3488. "dist": {
  3489. "type": "zip",
  3490. "url": "https://api.github.com/repos/symfony/dependency-injection/zipball/b6195feacceb88fc58a02b69522b569e4c6188ac",
  3491. "reference": "b6195feacceb88fc58a02b69522b569e4c6188ac",
  3492. "shasum": ""
  3493. },
  3494. "require": {
  3495. "php": ">=8.1",
  3496. "psr/container": "^1.1|^2.0",
  3497. "symfony/deprecation-contracts": "^2.1|^3",
  3498. "symfony/service-contracts": "^1.1.6|^2.0|^3.0",
  3499. "symfony/var-exporter": "^6.2.7"
  3500. },
  3501. "conflict": {
  3502. "ext-psr": "<1.1|>=2",
  3503. "symfony/config": "<6.1",
  3504. "symfony/finder": "<5.4",
  3505. "symfony/proxy-manager-bridge": "<6.2",
  3506. "symfony/yaml": "<5.4"
  3507. },
  3508. "provide": {
  3509. "psr/container-implementation": "1.1|2.0",
  3510. "symfony/service-implementation": "1.1|2.0|3.0"
  3511. },
  3512. "require-dev": {
  3513. "symfony/config": "^6.1",
  3514. "symfony/expression-language": "^5.4|^6.0",
  3515. "symfony/yaml": "^5.4|^6.0"
  3516. },
  3517. "suggest": {
  3518. "symfony/config": "",
  3519. "symfony/expression-language": "For using expressions in service container configuration",
  3520. "symfony/finder": "For using double-star glob patterns or when GLOB_BRACE portability is required",
  3521. "symfony/yaml": ""
  3522. },
  3523. "type": "library",
  3524. "autoload": {
  3525. "psr-4": {
  3526. "Symfony\\Component\\DependencyInjection\\": ""
  3527. },
  3528. "exclude-from-classmap": [
  3529. "/Tests/"
  3530. ]
  3531. },
  3532. "notification-url": "https://packagist.org/downloads/",
  3533. "license": [
  3534. "MIT"
  3535. ],
  3536. "authors": [
  3537. {
  3538. "name": "Fabien Potencier",
  3539. "email": "fabien@symfony.com"
  3540. },
  3541. {
  3542. "name": "Symfony Community",
  3543. "homepage": "https://symfony.com/contributors"
  3544. }
  3545. ],
  3546. "description": "Allows you to standardize and centralize the way objects are constructed in your application",
  3547. "homepage": "https://symfony.com",
  3548. "support": {
  3549. "source": "https://github.com/symfony/dependency-injection/tree/v6.2.8"
  3550. },
  3551. "funding": [
  3552. {
  3553. "url": "https://symfony.com/sponsor",
  3554. "type": "custom"
  3555. },
  3556. {
  3557. "url": "https://github.com/fabpot",
  3558. "type": "github"
  3559. },
  3560. {
  3561. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3562. "type": "tidelift"
  3563. }
  3564. ],
  3565. "time": "2023-03-30T13:35:57+00:00"
  3566. },
  3567. {
  3568. "name": "symfony/deprecation-contracts",
  3569. "version": "v3.2.1",
  3570. "source": {
  3571. "type": "git",
  3572. "url": "https://github.com/symfony/deprecation-contracts.git",
  3573. "reference": "e2d1534420bd723d0ef5aec58a22c5fe60ce6f5e"
  3574. },
  3575. "dist": {
  3576. "type": "zip",
  3577. "url": "https://api.github.com/repos/symfony/deprecation-contracts/zipball/e2d1534420bd723d0ef5aec58a22c5fe60ce6f5e",
  3578. "reference": "e2d1534420bd723d0ef5aec58a22c5fe60ce6f5e",
  3579. "shasum": ""
  3580. },
  3581. "require": {
  3582. "php": ">=8.1"
  3583. },
  3584. "type": "library",
  3585. "extra": {
  3586. "branch-alias": {
  3587. "dev-main": "3.3-dev"
  3588. },
  3589. "thanks": {
  3590. "name": "symfony/contracts",
  3591. "url": "https://github.com/symfony/contracts"
  3592. }
  3593. },
  3594. "autoload": {
  3595. "files": [
  3596. "function.php"
  3597. ]
  3598. },
  3599. "notification-url": "https://packagist.org/downloads/",
  3600. "license": [
  3601. "MIT"
  3602. ],
  3603. "authors": [
  3604. {
  3605. "name": "Nicolas Grekas",
  3606. "email": "p@tchwork.com"
  3607. },
  3608. {
  3609. "name": "Symfony Community",
  3610. "homepage": "https://symfony.com/contributors"
  3611. }
  3612. ],
  3613. "description": "A generic function and convention to trigger deprecation notices",
  3614. "homepage": "https://symfony.com",
  3615. "support": {
  3616. "source": "https://github.com/symfony/deprecation-contracts/tree/v3.2.1"
  3617. },
  3618. "funding": [
  3619. {
  3620. "url": "https://symfony.com/sponsor",
  3621. "type": "custom"
  3622. },
  3623. {
  3624. "url": "https://github.com/fabpot",
  3625. "type": "github"
  3626. },
  3627. {
  3628. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3629. "type": "tidelift"
  3630. }
  3631. ],
  3632. "time": "2023-03-01T10:25:55+00:00"
  3633. },
  3634. {
  3635. "name": "symfony/doctrine-bridge",
  3636. "version": "v6.2.9",
  3637. "source": {
  3638. "type": "git",
  3639. "url": "https://github.com/symfony/doctrine-bridge.git",
  3640. "reference": "4b3aeaa90d41c5527d7ba211d12102cedf06936e"
  3641. },
  3642. "dist": {
  3643. "type": "zip",
  3644. "url": "https://api.github.com/repos/symfony/doctrine-bridge/zipball/4b3aeaa90d41c5527d7ba211d12102cedf06936e",
  3645. "reference": "4b3aeaa90d41c5527d7ba211d12102cedf06936e",
  3646. "shasum": ""
  3647. },
  3648. "require": {
  3649. "doctrine/event-manager": "^1.2|^2",
  3650. "doctrine/persistence": "^2|^3",
  3651. "php": ">=8.1",
  3652. "symfony/deprecation-contracts": "^2.1|^3",
  3653. "symfony/polyfill-ctype": "~1.8",
  3654. "symfony/polyfill-mbstring": "~1.0",
  3655. "symfony/service-contracts": "^1.1|^2|^3"
  3656. },
  3657. "conflict": {
  3658. "doctrine/dbal": "<2.13.1",
  3659. "doctrine/lexer": "<1.1",
  3660. "doctrine/orm": "<2.7.4",
  3661. "phpunit/phpunit": "<5.4.3",
  3662. "symfony/cache": "<5.4",
  3663. "symfony/dependency-injection": "<5.4",
  3664. "symfony/form": "<5.4.21|>=6,<6.2.7",
  3665. "symfony/http-kernel": "<6.2",
  3666. "symfony/messenger": "<5.4",
  3667. "symfony/property-info": "<5.4",
  3668. "symfony/security-bundle": "<5.4",
  3669. "symfony/security-core": "<6.0",
  3670. "symfony/validator": "<5.4"
  3671. },
  3672. "require-dev": {
  3673. "doctrine/annotations": "^1.10.4|^2",
  3674. "doctrine/collections": "^1.0|^2.0",
  3675. "doctrine/data-fixtures": "^1.1",
  3676. "doctrine/dbal": "^2.13.1|^3.0",
  3677. "doctrine/orm": "^2.7.4",
  3678. "psr/log": "^1|^2|^3",
  3679. "symfony/cache": "^5.4|^6.0",
  3680. "symfony/config": "^5.4|^6.0",
  3681. "symfony/dependency-injection": "^5.4|^6.0",
  3682. "symfony/doctrine-messenger": "^5.4|^6.0",
  3683. "symfony/expression-language": "^5.4|^6.0",
  3684. "symfony/form": "^5.4.21|^6.2.7",
  3685. "symfony/http-kernel": "^6.2",
  3686. "symfony/messenger": "^5.4|^6.0",
  3687. "symfony/property-access": "^5.4|^6.0",
  3688. "symfony/property-info": "^5.4|^6.0",
  3689. "symfony/proxy-manager-bridge": "^5.4|^6.0",
  3690. "symfony/security-core": "^6.0",
  3691. "symfony/stopwatch": "^5.4|^6.0",
  3692. "symfony/translation": "^5.4|^6.0",
  3693. "symfony/uid": "^5.4|^6.0",
  3694. "symfony/validator": "^5.4|^6.0",
  3695. "symfony/var-dumper": "^5.4|^6.0"
  3696. },
  3697. "suggest": {
  3698. "doctrine/data-fixtures": "",
  3699. "doctrine/dbal": "",
  3700. "doctrine/orm": "",
  3701. "symfony/form": "",
  3702. "symfony/property-info": "",
  3703. "symfony/validator": ""
  3704. },
  3705. "type": "symfony-bridge",
  3706. "autoload": {
  3707. "psr-4": {
  3708. "Symfony\\Bridge\\Doctrine\\": ""
  3709. },
  3710. "exclude-from-classmap": [
  3711. "/Tests/"
  3712. ]
  3713. },
  3714. "notification-url": "https://packagist.org/downloads/",
  3715. "license": [
  3716. "MIT"
  3717. ],
  3718. "authors": [
  3719. {
  3720. "name": "Fabien Potencier",
  3721. "email": "fabien@symfony.com"
  3722. },
  3723. {
  3724. "name": "Symfony Community",
  3725. "homepage": "https://symfony.com/contributors"
  3726. }
  3727. ],
  3728. "description": "Provides integration for Doctrine with various Symfony components",
  3729. "homepage": "https://symfony.com",
  3730. "support": {
  3731. "source": "https://github.com/symfony/doctrine-bridge/tree/v6.2.9"
  3732. },
  3733. "funding": [
  3734. {
  3735. "url": "https://symfony.com/sponsor",
  3736. "type": "custom"
  3737. },
  3738. {
  3739. "url": "https://github.com/fabpot",
  3740. "type": "github"
  3741. },
  3742. {
  3743. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3744. "type": "tidelift"
  3745. }
  3746. ],
  3747. "time": "2023-04-11T16:08:35+00:00"
  3748. },
  3749. {
  3750. "name": "symfony/dotenv",
  3751. "version": "v6.2.8",
  3752. "source": {
  3753. "type": "git",
  3754. "url": "https://github.com/symfony/dotenv.git",
  3755. "reference": "4481aa45be7a11d2335c1d5b5bbe2f0c6199b105"
  3756. },
  3757. "dist": {
  3758. "type": "zip",
  3759. "url": "https://api.github.com/repos/symfony/dotenv/zipball/4481aa45be7a11d2335c1d5b5bbe2f0c6199b105",
  3760. "reference": "4481aa45be7a11d2335c1d5b5bbe2f0c6199b105",
  3761. "shasum": ""
  3762. },
  3763. "require": {
  3764. "php": ">=8.1"
  3765. },
  3766. "conflict": {
  3767. "symfony/console": "<5.4",
  3768. "symfony/process": "<5.4"
  3769. },
  3770. "require-dev": {
  3771. "symfony/console": "^5.4|^6.0",
  3772. "symfony/process": "^5.4|^6.0"
  3773. },
  3774. "type": "library",
  3775. "autoload": {
  3776. "psr-4": {
  3777. "Symfony\\Component\\Dotenv\\": ""
  3778. },
  3779. "exclude-from-classmap": [
  3780. "/Tests/"
  3781. ]
  3782. },
  3783. "notification-url": "https://packagist.org/downloads/",
  3784. "license": [
  3785. "MIT"
  3786. ],
  3787. "authors": [
  3788. {
  3789. "name": "Fabien Potencier",
  3790. "email": "fabien@symfony.com"
  3791. },
  3792. {
  3793. "name": "Symfony Community",
  3794. "homepage": "https://symfony.com/contributors"
  3795. }
  3796. ],
  3797. "description": "Registers environment variables from a .env file",
  3798. "homepage": "https://symfony.com",
  3799. "keywords": [
  3800. "dotenv",
  3801. "env",
  3802. "environment"
  3803. ],
  3804. "support": {
  3805. "source": "https://github.com/symfony/dotenv/tree/v6.2.8"
  3806. },
  3807. "funding": [
  3808. {
  3809. "url": "https://symfony.com/sponsor",
  3810. "type": "custom"
  3811. },
  3812. {
  3813. "url": "https://github.com/fabpot",
  3814. "type": "github"
  3815. },
  3816. {
  3817. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3818. "type": "tidelift"
  3819. }
  3820. ],
  3821. "time": "2023-03-10T10:06:03+00:00"
  3822. },
  3823. {
  3824. "name": "symfony/error-handler",
  3825. "version": "v6.2.9",
  3826. "source": {
  3827. "type": "git",
  3828. "url": "https://github.com/symfony/error-handler.git",
  3829. "reference": "e95f1273b3953c3b5e5341172dae838bacee11ee"
  3830. },
  3831. "dist": {
  3832. "type": "zip",
  3833. "url": "https://api.github.com/repos/symfony/error-handler/zipball/e95f1273b3953c3b5e5341172dae838bacee11ee",
  3834. "reference": "e95f1273b3953c3b5e5341172dae838bacee11ee",
  3835. "shasum": ""
  3836. },
  3837. "require": {
  3838. "php": ">=8.1",
  3839. "psr/log": "^1|^2|^3",
  3840. "symfony/var-dumper": "^5.4|^6.0"
  3841. },
  3842. "require-dev": {
  3843. "symfony/deprecation-contracts": "^2.1|^3",
  3844. "symfony/http-kernel": "^5.4|^6.0",
  3845. "symfony/serializer": "^5.4|^6.0"
  3846. },
  3847. "bin": [
  3848. "Resources/bin/patch-type-declarations"
  3849. ],
  3850. "type": "library",
  3851. "autoload": {
  3852. "psr-4": {
  3853. "Symfony\\Component\\ErrorHandler\\": ""
  3854. },
  3855. "exclude-from-classmap": [
  3856. "/Tests/"
  3857. ]
  3858. },
  3859. "notification-url": "https://packagist.org/downloads/",
  3860. "license": [
  3861. "MIT"
  3862. ],
  3863. "authors": [
  3864. {
  3865. "name": "Fabien Potencier",
  3866. "email": "fabien@symfony.com"
  3867. },
  3868. {
  3869. "name": "Symfony Community",
  3870. "homepage": "https://symfony.com/contributors"
  3871. }
  3872. ],
  3873. "description": "Provides tools to manage errors and ease debugging PHP code",
  3874. "homepage": "https://symfony.com",
  3875. "support": {
  3876. "source": "https://github.com/symfony/error-handler/tree/v6.2.9"
  3877. },
  3878. "funding": [
  3879. {
  3880. "url": "https://symfony.com/sponsor",
  3881. "type": "custom"
  3882. },
  3883. {
  3884. "url": "https://github.com/fabpot",
  3885. "type": "github"
  3886. },
  3887. {
  3888. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3889. "type": "tidelift"
  3890. }
  3891. ],
  3892. "time": "2023-04-11T16:03:19+00:00"
  3893. },
  3894. {
  3895. "name": "symfony/event-dispatcher",
  3896. "version": "v6.2.8",
  3897. "source": {
  3898. "type": "git",
  3899. "url": "https://github.com/symfony/event-dispatcher.git",
  3900. "reference": "04046f35fd7d72f9646e721fc2ecb8f9c67d3339"
  3901. },
  3902. "dist": {
  3903. "type": "zip",
  3904. "url": "https://api.github.com/repos/symfony/event-dispatcher/zipball/04046f35fd7d72f9646e721fc2ecb8f9c67d3339",
  3905. "reference": "04046f35fd7d72f9646e721fc2ecb8f9c67d3339",
  3906. "shasum": ""
  3907. },
  3908. "require": {
  3909. "php": ">=8.1",
  3910. "symfony/event-dispatcher-contracts": "^2|^3"
  3911. },
  3912. "conflict": {
  3913. "symfony/dependency-injection": "<5.4"
  3914. },
  3915. "provide": {
  3916. "psr/event-dispatcher-implementation": "1.0",
  3917. "symfony/event-dispatcher-implementation": "2.0|3.0"
  3918. },
  3919. "require-dev": {
  3920. "psr/log": "^1|^2|^3",
  3921. "symfony/config": "^5.4|^6.0",
  3922. "symfony/dependency-injection": "^5.4|^6.0",
  3923. "symfony/error-handler": "^5.4|^6.0",
  3924. "symfony/expression-language": "^5.4|^6.0",
  3925. "symfony/http-foundation": "^5.4|^6.0",
  3926. "symfony/service-contracts": "^1.1|^2|^3",
  3927. "symfony/stopwatch": "^5.4|^6.0"
  3928. },
  3929. "suggest": {
  3930. "symfony/dependency-injection": "",
  3931. "symfony/http-kernel": ""
  3932. },
  3933. "type": "library",
  3934. "autoload": {
  3935. "psr-4": {
  3936. "Symfony\\Component\\EventDispatcher\\": ""
  3937. },
  3938. "exclude-from-classmap": [
  3939. "/Tests/"
  3940. ]
  3941. },
  3942. "notification-url": "https://packagist.org/downloads/",
  3943. "license": [
  3944. "MIT"
  3945. ],
  3946. "authors": [
  3947. {
  3948. "name": "Fabien Potencier",
  3949. "email": "fabien@symfony.com"
  3950. },
  3951. {
  3952. "name": "Symfony Community",
  3953. "homepage": "https://symfony.com/contributors"
  3954. }
  3955. ],
  3956. "description": "Provides tools that allow your application components to communicate with each other by dispatching events and listening to them",
  3957. "homepage": "https://symfony.com",
  3958. "support": {
  3959. "source": "https://github.com/symfony/event-dispatcher/tree/v6.2.8"
  3960. },
  3961. "funding": [
  3962. {
  3963. "url": "https://symfony.com/sponsor",
  3964. "type": "custom"
  3965. },
  3966. {
  3967. "url": "https://github.com/fabpot",
  3968. "type": "github"
  3969. },
  3970. {
  3971. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3972. "type": "tidelift"
  3973. }
  3974. ],
  3975. "time": "2023-03-20T16:06:02+00:00"
  3976. },
  3977. {
  3978. "name": "symfony/event-dispatcher-contracts",
  3979. "version": "v3.2.1",
  3980. "source": {
  3981. "type": "git",
  3982. "url": "https://github.com/symfony/event-dispatcher-contracts.git",
  3983. "reference": "0ad3b6f1e4e2da5690fefe075cd53a238646d8dd"
  3984. },
  3985. "dist": {
  3986. "type": "zip",
  3987. "url": "https://api.github.com/repos/symfony/event-dispatcher-contracts/zipball/0ad3b6f1e4e2da5690fefe075cd53a238646d8dd",
  3988. "reference": "0ad3b6f1e4e2da5690fefe075cd53a238646d8dd",
  3989. "shasum": ""
  3990. },
  3991. "require": {
  3992. "php": ">=8.1",
  3993. "psr/event-dispatcher": "^1"
  3994. },
  3995. "suggest": {
  3996. "symfony/event-dispatcher-implementation": ""
  3997. },
  3998. "type": "library",
  3999. "extra": {
  4000. "branch-alias": {
  4001. "dev-main": "3.3-dev"
  4002. },
  4003. "thanks": {
  4004. "name": "symfony/contracts",
  4005. "url": "https://github.com/symfony/contracts"
  4006. }
  4007. },
  4008. "autoload": {
  4009. "psr-4": {
  4010. "Symfony\\Contracts\\EventDispatcher\\": ""
  4011. }
  4012. },
  4013. "notification-url": "https://packagist.org/downloads/",
  4014. "license": [
  4015. "MIT"
  4016. ],
  4017. "authors": [
  4018. {
  4019. "name": "Nicolas Grekas",
  4020. "email": "p@tchwork.com"
  4021. },
  4022. {
  4023. "name": "Symfony Community",
  4024. "homepage": "https://symfony.com/contributors"
  4025. }
  4026. ],
  4027. "description": "Generic abstractions related to dispatching event",
  4028. "homepage": "https://symfony.com",
  4029. "keywords": [
  4030. "abstractions",
  4031. "contracts",
  4032. "decoupling",
  4033. "interfaces",
  4034. "interoperability",
  4035. "standards"
  4036. ],
  4037. "support": {
  4038. "source": "https://github.com/symfony/event-dispatcher-contracts/tree/v3.2.1"
  4039. },
  4040. "funding": [
  4041. {
  4042. "url": "https://symfony.com/sponsor",
  4043. "type": "custom"
  4044. },
  4045. {
  4046. "url": "https://github.com/fabpot",
  4047. "type": "github"
  4048. },
  4049. {
  4050. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4051. "type": "tidelift"
  4052. }
  4053. ],
  4054. "time": "2023-03-01T10:32:47+00:00"
  4055. },
  4056. {
  4057. "name": "symfony/expression-language",
  4058. "version": "v6.2.7",
  4059. "source": {
  4060. "type": "git",
  4061. "url": "https://github.com/symfony/expression-language.git",
  4062. "reference": "83e1fee4c018aa60bcbbecd585a2c54af6aca905"
  4063. },
  4064. "dist": {
  4065. "type": "zip",
  4066. "url": "https://api.github.com/repos/symfony/expression-language/zipball/83e1fee4c018aa60bcbbecd585a2c54af6aca905",
  4067. "reference": "83e1fee4c018aa60bcbbecd585a2c54af6aca905",
  4068. "shasum": ""
  4069. },
  4070. "require": {
  4071. "php": ">=8.1",
  4072. "symfony/cache": "^5.4|^6.0",
  4073. "symfony/service-contracts": "^1.1|^2|^3"
  4074. },
  4075. "type": "library",
  4076. "autoload": {
  4077. "psr-4": {
  4078. "Symfony\\Component\\ExpressionLanguage\\": ""
  4079. },
  4080. "exclude-from-classmap": [
  4081. "/Tests/"
  4082. ]
  4083. },
  4084. "notification-url": "https://packagist.org/downloads/",
  4085. "license": [
  4086. "MIT"
  4087. ],
  4088. "authors": [
  4089. {
  4090. "name": "Fabien Potencier",
  4091. "email": "fabien@symfony.com"
  4092. },
  4093. {
  4094. "name": "Symfony Community",
  4095. "homepage": "https://symfony.com/contributors"
  4096. }
  4097. ],
  4098. "description": "Provides an engine that can compile and evaluate expressions",
  4099. "homepage": "https://symfony.com",
  4100. "support": {
  4101. "source": "https://github.com/symfony/expression-language/tree/v6.2.7"
  4102. },
  4103. "funding": [
  4104. {
  4105. "url": "https://symfony.com/sponsor",
  4106. "type": "custom"
  4107. },
  4108. {
  4109. "url": "https://github.com/fabpot",
  4110. "type": "github"
  4111. },
  4112. {
  4113. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4114. "type": "tidelift"
  4115. }
  4116. ],
  4117. "time": "2023-02-16T09:57:23+00:00"
  4118. },
  4119. {
  4120. "name": "symfony/filesystem",
  4121. "version": "v6.2.7",
  4122. "source": {
  4123. "type": "git",
  4124. "url": "https://github.com/symfony/filesystem.git",
  4125. "reference": "82b6c62b959f642d000456f08c6d219d749215b3"
  4126. },
  4127. "dist": {
  4128. "type": "zip",
  4129. "url": "https://api.github.com/repos/symfony/filesystem/zipball/82b6c62b959f642d000456f08c6d219d749215b3",
  4130. "reference": "82b6c62b959f642d000456f08c6d219d749215b3",
  4131. "shasum": ""
  4132. },
  4133. "require": {
  4134. "php": ">=8.1",
  4135. "symfony/polyfill-ctype": "~1.8",
  4136. "symfony/polyfill-mbstring": "~1.8"
  4137. },
  4138. "type": "library",
  4139. "autoload": {
  4140. "psr-4": {
  4141. "Symfony\\Component\\Filesystem\\": ""
  4142. },
  4143. "exclude-from-classmap": [
  4144. "/Tests/"
  4145. ]
  4146. },
  4147. "notification-url": "https://packagist.org/downloads/",
  4148. "license": [
  4149. "MIT"
  4150. ],
  4151. "authors": [
  4152. {
  4153. "name": "Fabien Potencier",
  4154. "email": "fabien@symfony.com"
  4155. },
  4156. {
  4157. "name": "Symfony Community",
  4158. "homepage": "https://symfony.com/contributors"
  4159. }
  4160. ],
  4161. "description": "Provides basic utilities for the filesystem",
  4162. "homepage": "https://symfony.com",
  4163. "support": {
  4164. "source": "https://github.com/symfony/filesystem/tree/v6.2.7"
  4165. },
  4166. "funding": [
  4167. {
  4168. "url": "https://symfony.com/sponsor",
  4169. "type": "custom"
  4170. },
  4171. {
  4172. "url": "https://github.com/fabpot",
  4173. "type": "github"
  4174. },
  4175. {
  4176. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4177. "type": "tidelift"
  4178. }
  4179. ],
  4180. "time": "2023-02-14T08:44:56+00:00"
  4181. },
  4182. {
  4183. "name": "symfony/finder",
  4184. "version": "v6.2.7",
  4185. "source": {
  4186. "type": "git",
  4187. "url": "https://github.com/symfony/finder.git",
  4188. "reference": "20808dc6631aecafbe67c186af5dcb370be3a0eb"
  4189. },
  4190. "dist": {
  4191. "type": "zip",
  4192. "url": "https://api.github.com/repos/symfony/finder/zipball/20808dc6631aecafbe67c186af5dcb370be3a0eb",
  4193. "reference": "20808dc6631aecafbe67c186af5dcb370be3a0eb",
  4194. "shasum": ""
  4195. },
  4196. "require": {
  4197. "php": ">=8.1"
  4198. },
  4199. "require-dev": {
  4200. "symfony/filesystem": "^6.0"
  4201. },
  4202. "type": "library",
  4203. "autoload": {
  4204. "psr-4": {
  4205. "Symfony\\Component\\Finder\\": ""
  4206. },
  4207. "exclude-from-classmap": [
  4208. "/Tests/"
  4209. ]
  4210. },
  4211. "notification-url": "https://packagist.org/downloads/",
  4212. "license": [
  4213. "MIT"
  4214. ],
  4215. "authors": [
  4216. {
  4217. "name": "Fabien Potencier",
  4218. "email": "fabien@symfony.com"
  4219. },
  4220. {
  4221. "name": "Symfony Community",
  4222. "homepage": "https://symfony.com/contributors"
  4223. }
  4224. ],
  4225. "description": "Finds files and directories via an intuitive fluent interface",
  4226. "homepage": "https://symfony.com",
  4227. "support": {
  4228. "source": "https://github.com/symfony/finder/tree/v6.2.7"
  4229. },
  4230. "funding": [
  4231. {
  4232. "url": "https://symfony.com/sponsor",
  4233. "type": "custom"
  4234. },
  4235. {
  4236. "url": "https://github.com/fabpot",
  4237. "type": "github"
  4238. },
  4239. {
  4240. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4241. "type": "tidelift"
  4242. }
  4243. ],
  4244. "time": "2023-02-16T09:57:23+00:00"
  4245. },
  4246. {
  4247. "name": "symfony/flex",
  4248. "version": "v2.2.5",
  4249. "source": {
  4250. "type": "git",
  4251. "url": "https://github.com/symfony/flex.git",
  4252. "reference": "2ff8465e7172790a47ab3c129f2b514eb2d8a286"
  4253. },
  4254. "dist": {
  4255. "type": "zip",
  4256. "url": "https://api.github.com/repos/symfony/flex/zipball/2ff8465e7172790a47ab3c129f2b514eb2d8a286",
  4257. "reference": "2ff8465e7172790a47ab3c129f2b514eb2d8a286",
  4258. "shasum": ""
  4259. },
  4260. "require": {
  4261. "composer-plugin-api": "^2.1",
  4262. "php": ">=8.0"
  4263. },
  4264. "require-dev": {
  4265. "composer/composer": "^2.1",
  4266. "symfony/dotenv": "^5.4|^6.0",
  4267. "symfony/filesystem": "^5.4|^6.0",
  4268. "symfony/phpunit-bridge": "^5.4|^6.0",
  4269. "symfony/process": "^5.4|^6.0"
  4270. },
  4271. "type": "composer-plugin",
  4272. "extra": {
  4273. "class": "Symfony\\Flex\\Flex"
  4274. },
  4275. "autoload": {
  4276. "psr-4": {
  4277. "Symfony\\Flex\\": "src"
  4278. }
  4279. },
  4280. "notification-url": "https://packagist.org/downloads/",
  4281. "license": [
  4282. "MIT"
  4283. ],
  4284. "authors": [
  4285. {
  4286. "name": "Fabien Potencier",
  4287. "email": "fabien.potencier@gmail.com"
  4288. }
  4289. ],
  4290. "description": "Composer plugin for Symfony",
  4291. "support": {
  4292. "issues": "https://github.com/symfony/flex/issues",
  4293. "source": "https://github.com/symfony/flex/tree/v2.2.5"
  4294. },
  4295. "funding": [
  4296. {
  4297. "url": "https://symfony.com/sponsor",
  4298. "type": "custom"
  4299. },
  4300. {
  4301. "url": "https://github.com/fabpot",
  4302. "type": "github"
  4303. },
  4304. {
  4305. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4306. "type": "tidelift"
  4307. }
  4308. ],
  4309. "time": "2023-02-18T08:03:15+00:00"
  4310. },
  4311. {
  4312. "name": "symfony/form",
  4313. "version": "v6.2.8",
  4314. "source": {
  4315. "type": "git",
  4316. "url": "https://github.com/symfony/form.git",
  4317. "reference": "751efa84f868337c63e29560c02cff7ae27d874b"
  4318. },
  4319. "dist": {
  4320. "type": "zip",
  4321. "url": "https://api.github.com/repos/symfony/form/zipball/751efa84f868337c63e29560c02cff7ae27d874b",
  4322. "reference": "751efa84f868337c63e29560c02cff7ae27d874b",
  4323. "shasum": ""
  4324. },
  4325. "require": {
  4326. "php": ">=8.1",
  4327. "symfony/deprecation-contracts": "^2.1|^3",
  4328. "symfony/event-dispatcher": "^5.4|^6.0",
  4329. "symfony/options-resolver": "^5.4|^6.0",
  4330. "symfony/polyfill-ctype": "~1.8",
  4331. "symfony/polyfill-intl-icu": "^1.21",
  4332. "symfony/polyfill-mbstring": "~1.0",
  4333. "symfony/property-access": "^5.4|^6.0",
  4334. "symfony/service-contracts": "^1.1|^2|^3"
  4335. },
  4336. "conflict": {
  4337. "phpunit/phpunit": "<5.4.3",
  4338. "symfony/console": "<5.4",
  4339. "symfony/dependency-injection": "<5.4",
  4340. "symfony/doctrine-bridge": "<5.4.21|>=6,<6.2.7",
  4341. "symfony/error-handler": "<5.4",
  4342. "symfony/framework-bundle": "<5.4",
  4343. "symfony/http-kernel": "<5.4",
  4344. "symfony/translation": "<5.4",
  4345. "symfony/translation-contracts": "<1.1.7",
  4346. "symfony/twig-bridge": "<5.4.21|>=6,<6.2.7"
  4347. },
  4348. "require-dev": {
  4349. "doctrine/collections": "^1.0|^2.0",
  4350. "symfony/config": "^5.4|^6.0",
  4351. "symfony/console": "^5.4|^6.0",
  4352. "symfony/dependency-injection": "^5.4|^6.0",
  4353. "symfony/expression-language": "^5.4|^6.0",
  4354. "symfony/html-sanitizer": "^6.1",
  4355. "symfony/http-foundation": "^5.4|^6.0",
  4356. "symfony/http-kernel": "^5.4|^6.0",
  4357. "symfony/intl": "^5.4|^6.0",
  4358. "symfony/security-core": "^6.2",
  4359. "symfony/security-csrf": "^5.4|^6.0",
  4360. "symfony/translation": "^5.4|^6.0",
  4361. "symfony/uid": "^5.4|^6.0",
  4362. "symfony/validator": "^5.4|^6.0",
  4363. "symfony/var-dumper": "^5.4|^6.0"
  4364. },
  4365. "suggest": {
  4366. "symfony/security-core": "For hashing users passwords.",
  4367. "symfony/security-csrf": "For protecting forms against CSRF attacks.",
  4368. "symfony/twig-bridge": "For templating with Twig.",
  4369. "symfony/validator": "For form validation."
  4370. },
  4371. "type": "library",
  4372. "autoload": {
  4373. "psr-4": {
  4374. "Symfony\\Component\\Form\\": ""
  4375. },
  4376. "exclude-from-classmap": [
  4377. "/Tests/"
  4378. ]
  4379. },
  4380. "notification-url": "https://packagist.org/downloads/",
  4381. "license": [
  4382. "MIT"
  4383. ],
  4384. "authors": [
  4385. {
  4386. "name": "Fabien Potencier",
  4387. "email": "fabien@symfony.com"
  4388. },
  4389. {
  4390. "name": "Symfony Community",
  4391. "homepage": "https://symfony.com/contributors"
  4392. }
  4393. ],
  4394. "description": "Allows to easily create, process and reuse HTML forms",
  4395. "homepage": "https://symfony.com",
  4396. "support": {
  4397. "source": "https://github.com/symfony/form/tree/v6.2.8"
  4398. },
  4399. "funding": [
  4400. {
  4401. "url": "https://symfony.com/sponsor",
  4402. "type": "custom"
  4403. },
  4404. {
  4405. "url": "https://github.com/fabpot",
  4406. "type": "github"
  4407. },
  4408. {
  4409. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4410. "type": "tidelift"
  4411. }
  4412. ],
  4413. "time": "2023-03-31T11:20:06+00:00"
  4414. },
  4415. {
  4416. "name": "symfony/framework-bundle",
  4417. "version": "v6.2.9",
  4418. "source": {
  4419. "type": "git",
  4420. "url": "https://github.com/symfony/framework-bundle.git",
  4421. "reference": "df1899b6e9e52fc495daad6b4e307801860a66da"
  4422. },
  4423. "dist": {
  4424. "type": "zip",
  4425. "url": "https://api.github.com/repos/symfony/framework-bundle/zipball/df1899b6e9e52fc495daad6b4e307801860a66da",
  4426. "reference": "df1899b6e9e52fc495daad6b4e307801860a66da",
  4427. "shasum": ""
  4428. },
  4429. "require": {
  4430. "composer-runtime-api": ">=2.1",
  4431. "ext-xml": "*",
  4432. "php": ">=8.1",
  4433. "symfony/cache": "^5.4|^6.0",
  4434. "symfony/config": "^6.1",
  4435. "symfony/dependency-injection": "^6.2.8",
  4436. "symfony/deprecation-contracts": "^2.1|^3",
  4437. "symfony/error-handler": "^6.1",
  4438. "symfony/event-dispatcher": "^5.4|^6.0",
  4439. "symfony/filesystem": "^5.4|^6.0",
  4440. "symfony/finder": "^5.4|^6.0",
  4441. "symfony/http-foundation": "^6.2",
  4442. "symfony/http-kernel": "^6.2.1",
  4443. "symfony/polyfill-mbstring": "~1.0",
  4444. "symfony/routing": "^5.4|^6.0"
  4445. },
  4446. "conflict": {
  4447. "doctrine/annotations": "<1.13.1",
  4448. "doctrine/persistence": "<1.3",
  4449. "phpdocumentor/reflection-docblock": "<3.2.2",
  4450. "phpdocumentor/type-resolver": "<1.4.0",
  4451. "phpunit/phpunit": "<5.4.3",
  4452. "symfony/asset": "<5.4",
  4453. "symfony/console": "<5.4",
  4454. "symfony/dom-crawler": "<5.4",
  4455. "symfony/dotenv": "<5.4",
  4456. "symfony/form": "<5.4",
  4457. "symfony/http-client": "<5.4",
  4458. "symfony/lock": "<5.4",
  4459. "symfony/mailer": "<5.4",
  4460. "symfony/messenger": "<6.2",
  4461. "symfony/mime": "<6.2",
  4462. "symfony/property-access": "<5.4",
  4463. "symfony/property-info": "<5.4",
  4464. "symfony/security-core": "<5.4",
  4465. "symfony/security-csrf": "<5.4",
  4466. "symfony/serializer": "<6.1",
  4467. "symfony/stopwatch": "<5.4",
  4468. "symfony/translation": "<6.2.8",
  4469. "symfony/twig-bridge": "<5.4",
  4470. "symfony/twig-bundle": "<5.4",
  4471. "symfony/validator": "<5.4",
  4472. "symfony/web-profiler-bundle": "<5.4",
  4473. "symfony/workflow": "<5.4"
  4474. },
  4475. "require-dev": {
  4476. "doctrine/annotations": "^1.13.1|^2",
  4477. "doctrine/persistence": "^1.3|^2|^3",
  4478. "phpdocumentor/reflection-docblock": "^3.0|^4.0|^5.0",
  4479. "symfony/asset": "^5.4|^6.0",
  4480. "symfony/browser-kit": "^5.4|^6.0",
  4481. "symfony/console": "^5.4.9|^6.0.9",
  4482. "symfony/css-selector": "^5.4|^6.0",
  4483. "symfony/dom-crawler": "^5.4|^6.0",
  4484. "symfony/dotenv": "^5.4|^6.0",
  4485. "symfony/expression-language": "^5.4|^6.0",
  4486. "symfony/form": "^5.4|^6.0",
  4487. "symfony/html-sanitizer": "^6.1",
  4488. "symfony/http-client": "^5.4|^6.0",
  4489. "symfony/lock": "^5.4|^6.0",
  4490. "symfony/mailer": "^5.4|^6.0",
  4491. "symfony/messenger": "^6.2",
  4492. "symfony/mime": "^6.2",
  4493. "symfony/notifier": "^5.4|^6.0",
  4494. "symfony/polyfill-intl-icu": "~1.0",
  4495. "symfony/process": "^5.4|^6.0",
  4496. "symfony/property-info": "^5.4|^6.0",
  4497. "symfony/rate-limiter": "^5.4|^6.0",
  4498. "symfony/security-bundle": "^5.4|^6.0",
  4499. "symfony/semaphore": "^5.4|^6.0",
  4500. "symfony/serializer": "^6.1",
  4501. "symfony/stopwatch": "^5.4|^6.0",
  4502. "symfony/string": "^5.4|^6.0",
  4503. "symfony/translation": "^6.2.8",
  4504. "symfony/twig-bundle": "^5.4|^6.0",
  4505. "symfony/uid": "^5.4|^6.0",
  4506. "symfony/validator": "^5.4|^6.0",
  4507. "symfony/web-link": "^5.4|^6.0",
  4508. "symfony/workflow": "^5.4|^6.0",
  4509. "symfony/yaml": "^5.4|^6.0",
  4510. "twig/twig": "^2.10|^3.0"
  4511. },
  4512. "suggest": {
  4513. "ext-apcu": "For best performance of the system caches",
  4514. "symfony/console": "For using the console commands",
  4515. "symfony/form": "For using forms",
  4516. "symfony/property-info": "For using the property_info service",
  4517. "symfony/serializer": "For using the serializer service",
  4518. "symfony/validator": "For using validation",
  4519. "symfony/web-link": "For using web links, features such as preloading, prefetching or prerendering",
  4520. "symfony/yaml": "For using the debug:config and lint:yaml commands"
  4521. },
  4522. "type": "symfony-bundle",
  4523. "autoload": {
  4524. "psr-4": {
  4525. "Symfony\\Bundle\\FrameworkBundle\\": ""
  4526. },
  4527. "exclude-from-classmap": [
  4528. "/Tests/"
  4529. ]
  4530. },
  4531. "notification-url": "https://packagist.org/downloads/",
  4532. "license": [
  4533. "MIT"
  4534. ],
  4535. "authors": [
  4536. {
  4537. "name": "Fabien Potencier",
  4538. "email": "fabien@symfony.com"
  4539. },
  4540. {
  4541. "name": "Symfony Community",
  4542. "homepage": "https://symfony.com/contributors"
  4543. }
  4544. ],
  4545. "description": "Provides a tight integration between Symfony components and the Symfony full-stack framework",
  4546. "homepage": "https://symfony.com",
  4547. "support": {
  4548. "source": "https://github.com/symfony/framework-bundle/tree/v6.2.9"
  4549. },
  4550. "funding": [
  4551. {
  4552. "url": "https://symfony.com/sponsor",
  4553. "type": "custom"
  4554. },
  4555. {
  4556. "url": "https://github.com/fabpot",
  4557. "type": "github"
  4558. },
  4559. {
  4560. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4561. "type": "tidelift"
  4562. }
  4563. ],
  4564. "time": "2023-04-01T11:12:43+00:00"
  4565. },
  4566. {
  4567. "name": "symfony/html-sanitizer",
  4568. "version": "v6.2.7",
  4569. "source": {
  4570. "type": "git",
  4571. "url": "https://github.com/symfony/html-sanitizer.git",
  4572. "reference": "211e36bbb20a5e5db2b940399ab1d2b421a08068"
  4573. },
  4574. "dist": {
  4575. "type": "zip",
  4576. "url": "https://api.github.com/repos/symfony/html-sanitizer/zipball/211e36bbb20a5e5db2b940399ab1d2b421a08068",
  4577. "reference": "211e36bbb20a5e5db2b940399ab1d2b421a08068",
  4578. "shasum": ""
  4579. },
  4580. "require": {
  4581. "ext-dom": "*",
  4582. "league/uri": "^6.5",
  4583. "masterminds/html5": "^2.7.2",
  4584. "php": ">=8.1"
  4585. },
  4586. "type": "library",
  4587. "autoload": {
  4588. "psr-4": {
  4589. "Symfony\\Component\\HtmlSanitizer\\": ""
  4590. },
  4591. "exclude-from-classmap": [
  4592. "/Tests/"
  4593. ]
  4594. },
  4595. "notification-url": "https://packagist.org/downloads/",
  4596. "license": [
  4597. "MIT"
  4598. ],
  4599. "authors": [
  4600. {
  4601. "name": "Titouan Galopin",
  4602. "email": "galopintitouan@gmail.com"
  4603. },
  4604. {
  4605. "name": "Symfony Community",
  4606. "homepage": "https://symfony.com/contributors"
  4607. }
  4608. ],
  4609. "description": "Provides an object-oriented API to sanitize untrusted HTML input for safe insertion into a document's DOM.",
  4610. "homepage": "https://symfony.com",
  4611. "keywords": [
  4612. "Purifier",
  4613. "html",
  4614. "sanitizer"
  4615. ],
  4616. "support": {
  4617. "source": "https://github.com/symfony/html-sanitizer/tree/v6.2.7"
  4618. },
  4619. "funding": [
  4620. {
  4621. "url": "https://symfony.com/sponsor",
  4622. "type": "custom"
  4623. },
  4624. {
  4625. "url": "https://github.com/fabpot",
  4626. "type": "github"
  4627. },
  4628. {
  4629. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4630. "type": "tidelift"
  4631. }
  4632. ],
  4633. "time": "2023-02-14T08:44:56+00:00"
  4634. },
  4635. {
  4636. "name": "symfony/http-client",
  4637. "version": "v6.2.9",
  4638. "source": {
  4639. "type": "git",
  4640. "url": "https://github.com/symfony/http-client.git",
  4641. "reference": "7daf5d24c21a683164688b95bb73b7a4bd3b32fc"
  4642. },
  4643. "dist": {
  4644. "type": "zip",
  4645. "url": "https://api.github.com/repos/symfony/http-client/zipball/7daf5d24c21a683164688b95bb73b7a4bd3b32fc",
  4646. "reference": "7daf5d24c21a683164688b95bb73b7a4bd3b32fc",
  4647. "shasum": ""
  4648. },
  4649. "require": {
  4650. "php": ">=8.1",
  4651. "psr/log": "^1|^2|^3",
  4652. "symfony/deprecation-contracts": "^2.1|^3",
  4653. "symfony/http-client-contracts": "^3",
  4654. "symfony/service-contracts": "^1.0|^2|^3"
  4655. },
  4656. "provide": {
  4657. "php-http/async-client-implementation": "*",
  4658. "php-http/client-implementation": "*",
  4659. "psr/http-client-implementation": "1.0",
  4660. "symfony/http-client-implementation": "3.0"
  4661. },
  4662. "require-dev": {
  4663. "amphp/amp": "^2.5",
  4664. "amphp/http-client": "^4.2.1",
  4665. "amphp/http-tunnel": "^1.0",
  4666. "amphp/socket": "^1.1",
  4667. "guzzlehttp/promises": "^1.4",
  4668. "nyholm/psr7": "^1.0",
  4669. "php-http/httplug": "^1.0|^2.0",
  4670. "psr/http-client": "^1.0",
  4671. "symfony/dependency-injection": "^5.4|^6.0",
  4672. "symfony/http-kernel": "^5.4|^6.0",
  4673. "symfony/process": "^5.4|^6.0",
  4674. "symfony/stopwatch": "^5.4|^6.0"
  4675. },
  4676. "type": "library",
  4677. "autoload": {
  4678. "psr-4": {
  4679. "Symfony\\Component\\HttpClient\\": ""
  4680. },
  4681. "exclude-from-classmap": [
  4682. "/Tests/"
  4683. ]
  4684. },
  4685. "notification-url": "https://packagist.org/downloads/",
  4686. "license": [
  4687. "MIT"
  4688. ],
  4689. "authors": [
  4690. {
  4691. "name": "Nicolas Grekas",
  4692. "email": "p@tchwork.com"
  4693. },
  4694. {
  4695. "name": "Symfony Community",
  4696. "homepage": "https://symfony.com/contributors"
  4697. }
  4698. ],
  4699. "description": "Provides powerful methods to fetch HTTP resources synchronously or asynchronously",
  4700. "homepage": "https://symfony.com",
  4701. "keywords": [
  4702. "http"
  4703. ],
  4704. "support": {
  4705. "source": "https://github.com/symfony/http-client/tree/v6.2.9"
  4706. },
  4707. "funding": [
  4708. {
  4709. "url": "https://symfony.com/sponsor",
  4710. "type": "custom"
  4711. },
  4712. {
  4713. "url": "https://github.com/fabpot",
  4714. "type": "github"
  4715. },
  4716. {
  4717. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4718. "type": "tidelift"
  4719. }
  4720. ],
  4721. "time": "2023-04-11T16:03:19+00:00"
  4722. },
  4723. {
  4724. "name": "symfony/http-client-contracts",
  4725. "version": "v3.2.1",
  4726. "source": {
  4727. "type": "git",
  4728. "url": "https://github.com/symfony/http-client-contracts.git",
  4729. "reference": "df2ecd6cb70e73c1080e6478aea85f5f4da2c48b"
  4730. },
  4731. "dist": {
  4732. "type": "zip",
  4733. "url": "https://api.github.com/repos/symfony/http-client-contracts/zipball/df2ecd6cb70e73c1080e6478aea85f5f4da2c48b",
  4734. "reference": "df2ecd6cb70e73c1080e6478aea85f5f4da2c48b",
  4735. "shasum": ""
  4736. },
  4737. "require": {
  4738. "php": ">=8.1"
  4739. },
  4740. "suggest": {
  4741. "symfony/http-client-implementation": ""
  4742. },
  4743. "type": "library",
  4744. "extra": {
  4745. "branch-alias": {
  4746. "dev-main": "3.3-dev"
  4747. },
  4748. "thanks": {
  4749. "name": "symfony/contracts",
  4750. "url": "https://github.com/symfony/contracts"
  4751. }
  4752. },
  4753. "autoload": {
  4754. "psr-4": {
  4755. "Symfony\\Contracts\\HttpClient\\": ""
  4756. },
  4757. "exclude-from-classmap": [
  4758. "/Test/"
  4759. ]
  4760. },
  4761. "notification-url": "https://packagist.org/downloads/",
  4762. "license": [
  4763. "MIT"
  4764. ],
  4765. "authors": [
  4766. {
  4767. "name": "Nicolas Grekas",
  4768. "email": "p@tchwork.com"
  4769. },
  4770. {
  4771. "name": "Symfony Community",
  4772. "homepage": "https://symfony.com/contributors"
  4773. }
  4774. ],
  4775. "description": "Generic abstractions related to HTTP clients",
  4776. "homepage": "https://symfony.com",
  4777. "keywords": [
  4778. "abstractions",
  4779. "contracts",
  4780. "decoupling",
  4781. "interfaces",
  4782. "interoperability",
  4783. "standards"
  4784. ],
  4785. "support": {
  4786. "source": "https://github.com/symfony/http-client-contracts/tree/v3.2.1"
  4787. },
  4788. "funding": [
  4789. {
  4790. "url": "https://symfony.com/sponsor",
  4791. "type": "custom"
  4792. },
  4793. {
  4794. "url": "https://github.com/fabpot",
  4795. "type": "github"
  4796. },
  4797. {
  4798. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4799. "type": "tidelift"
  4800. }
  4801. ],
  4802. "time": "2023-03-01T10:32:47+00:00"
  4803. },
  4804. {
  4805. "name": "symfony/http-foundation",
  4806. "version": "v6.2.8",
  4807. "source": {
  4808. "type": "git",
  4809. "url": "https://github.com/symfony/http-foundation.git",
  4810. "reference": "511a524affeefc191939348823ac75e9921c2112"
  4811. },
  4812. "dist": {
  4813. "type": "zip",
  4814. "url": "https://api.github.com/repos/symfony/http-foundation/zipball/511a524affeefc191939348823ac75e9921c2112",
  4815. "reference": "511a524affeefc191939348823ac75e9921c2112",
  4816. "shasum": ""
  4817. },
  4818. "require": {
  4819. "php": ">=8.1",
  4820. "symfony/deprecation-contracts": "^2.1|^3",
  4821. "symfony/polyfill-mbstring": "~1.1"
  4822. },
  4823. "conflict": {
  4824. "symfony/cache": "<6.2"
  4825. },
  4826. "require-dev": {
  4827. "predis/predis": "~1.0",
  4828. "symfony/cache": "^5.4|^6.0",
  4829. "symfony/dependency-injection": "^5.4|^6.0",
  4830. "symfony/expression-language": "^5.4|^6.0",
  4831. "symfony/http-kernel": "^5.4.12|^6.0.12|^6.1.4",
  4832. "symfony/mime": "^5.4|^6.0",
  4833. "symfony/rate-limiter": "^5.2|^6.0"
  4834. },
  4835. "suggest": {
  4836. "symfony/mime": "To use the file extension guesser"
  4837. },
  4838. "type": "library",
  4839. "autoload": {
  4840. "psr-4": {
  4841. "Symfony\\Component\\HttpFoundation\\": ""
  4842. },
  4843. "exclude-from-classmap": [
  4844. "/Tests/"
  4845. ]
  4846. },
  4847. "notification-url": "https://packagist.org/downloads/",
  4848. "license": [
  4849. "MIT"
  4850. ],
  4851. "authors": [
  4852. {
  4853. "name": "Fabien Potencier",
  4854. "email": "fabien@symfony.com"
  4855. },
  4856. {
  4857. "name": "Symfony Community",
  4858. "homepage": "https://symfony.com/contributors"
  4859. }
  4860. ],
  4861. "description": "Defines an object-oriented layer for the HTTP specification",
  4862. "homepage": "https://symfony.com",
  4863. "support": {
  4864. "source": "https://github.com/symfony/http-foundation/tree/v6.2.8"
  4865. },
  4866. "funding": [
  4867. {
  4868. "url": "https://symfony.com/sponsor",
  4869. "type": "custom"
  4870. },
  4871. {
  4872. "url": "https://github.com/fabpot",
  4873. "type": "github"
  4874. },
  4875. {
  4876. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4877. "type": "tidelift"
  4878. }
  4879. ],
  4880. "time": "2023-03-29T21:42:15+00:00"
  4881. },
  4882. {
  4883. "name": "symfony/http-kernel",
  4884. "version": "v6.2.9",
  4885. "source": {
  4886. "type": "git",
  4887. "url": "https://github.com/symfony/http-kernel.git",
  4888. "reference": "02246510cf7031726f7237138d61b796b95799b3"
  4889. },
  4890. "dist": {
  4891. "type": "zip",
  4892. "url": "https://api.github.com/repos/symfony/http-kernel/zipball/02246510cf7031726f7237138d61b796b95799b3",
  4893. "reference": "02246510cf7031726f7237138d61b796b95799b3",
  4894. "shasum": ""
  4895. },
  4896. "require": {
  4897. "php": ">=8.1",
  4898. "psr/log": "^1|^2|^3",
  4899. "symfony/deprecation-contracts": "^2.1|^3",
  4900. "symfony/error-handler": "^6.1",
  4901. "symfony/event-dispatcher": "^5.4|^6.0",
  4902. "symfony/http-foundation": "^5.4.21|^6.2.7",
  4903. "symfony/polyfill-ctype": "^1.8"
  4904. },
  4905. "conflict": {
  4906. "symfony/browser-kit": "<5.4",
  4907. "symfony/cache": "<5.4",
  4908. "symfony/config": "<6.1",
  4909. "symfony/console": "<5.4",
  4910. "symfony/dependency-injection": "<6.2",
  4911. "symfony/doctrine-bridge": "<5.4",
  4912. "symfony/form": "<5.4",
  4913. "symfony/http-client": "<5.4",
  4914. "symfony/mailer": "<5.4",
  4915. "symfony/messenger": "<5.4",
  4916. "symfony/translation": "<5.4",
  4917. "symfony/twig-bridge": "<5.4",
  4918. "symfony/validator": "<5.4",
  4919. "twig/twig": "<2.13"
  4920. },
  4921. "provide": {
  4922. "psr/log-implementation": "1.0|2.0|3.0"
  4923. },
  4924. "require-dev": {
  4925. "psr/cache": "^1.0|^2.0|^3.0",
  4926. "symfony/browser-kit": "^5.4|^6.0",
  4927. "symfony/config": "^6.1",
  4928. "symfony/console": "^5.4|^6.0",
  4929. "symfony/css-selector": "^5.4|^6.0",
  4930. "symfony/dependency-injection": "^6.2",
  4931. "symfony/dom-crawler": "^5.4|^6.0",
  4932. "symfony/expression-language": "^5.4|^6.0",
  4933. "symfony/finder": "^5.4|^6.0",
  4934. "symfony/http-client-contracts": "^1.1|^2|^3",
  4935. "symfony/process": "^5.4|^6.0",
  4936. "symfony/routing": "^5.4|^6.0",
  4937. "symfony/stopwatch": "^5.4|^6.0",
  4938. "symfony/translation": "^5.4|^6.0",
  4939. "symfony/translation-contracts": "^1.1|^2|^3",
  4940. "symfony/uid": "^5.4|^6.0",
  4941. "twig/twig": "^2.13|^3.0.4"
  4942. },
  4943. "suggest": {
  4944. "symfony/browser-kit": "",
  4945. "symfony/config": "",
  4946. "symfony/console": "",
  4947. "symfony/dependency-injection": ""
  4948. },
  4949. "type": "library",
  4950. "autoload": {
  4951. "psr-4": {
  4952. "Symfony\\Component\\HttpKernel\\": ""
  4953. },
  4954. "exclude-from-classmap": [
  4955. "/Tests/"
  4956. ]
  4957. },
  4958. "notification-url": "https://packagist.org/downloads/",
  4959. "license": [
  4960. "MIT"
  4961. ],
  4962. "authors": [
  4963. {
  4964. "name": "Fabien Potencier",
  4965. "email": "fabien@symfony.com"
  4966. },
  4967. {
  4968. "name": "Symfony Community",
  4969. "homepage": "https://symfony.com/contributors"
  4970. }
  4971. ],
  4972. "description": "Provides a structured process for converting a Request into a Response",
  4973. "homepage": "https://symfony.com",
  4974. "support": {
  4975. "source": "https://github.com/symfony/http-kernel/tree/v6.2.9"
  4976. },
  4977. "funding": [
  4978. {
  4979. "url": "https://symfony.com/sponsor",
  4980. "type": "custom"
  4981. },
  4982. {
  4983. "url": "https://github.com/fabpot",
  4984. "type": "github"
  4985. },
  4986. {
  4987. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4988. "type": "tidelift"
  4989. }
  4990. ],
  4991. "time": "2023-04-13T16:41:43+00:00"
  4992. },
  4993. {
  4994. "name": "symfony/mailer",
  4995. "version": "v6.2.8",
  4996. "source": {
  4997. "type": "git",
  4998. "url": "https://github.com/symfony/mailer.git",
  4999. "reference": "bfcfa015c67e19c6fdb7ca6fe70700af1e740a17"
  5000. },
  5001. "dist": {
  5002. "type": "zip",
  5003. "url": "https://api.github.com/repos/symfony/mailer/zipball/bfcfa015c67e19c6fdb7ca6fe70700af1e740a17",
  5004. "reference": "bfcfa015c67e19c6fdb7ca6fe70700af1e740a17",
  5005. "shasum": ""
  5006. },
  5007. "require": {
  5008. "egulias/email-validator": "^2.1.10|^3|^4",
  5009. "php": ">=8.1",
  5010. "psr/event-dispatcher": "^1",
  5011. "psr/log": "^1|^2|^3",
  5012. "symfony/event-dispatcher": "^5.4|^6.0",
  5013. "symfony/mime": "^6.2",
  5014. "symfony/service-contracts": "^1.1|^2|^3"
  5015. },
  5016. "conflict": {
  5017. "symfony/http-kernel": "<5.4",
  5018. "symfony/messenger": "<6.2",
  5019. "symfony/mime": "<6.2",
  5020. "symfony/twig-bridge": "<6.2.1"
  5021. },
  5022. "require-dev": {
  5023. "symfony/console": "^5.4|^6.0",
  5024. "symfony/http-client": "^5.4|^6.0",
  5025. "symfony/messenger": "^6.2",
  5026. "symfony/twig-bridge": "^6.2"
  5027. },
  5028. "type": "library",
  5029. "autoload": {
  5030. "psr-4": {
  5031. "Symfony\\Component\\Mailer\\": ""
  5032. },
  5033. "exclude-from-classmap": [
  5034. "/Tests/"
  5035. ]
  5036. },
  5037. "notification-url": "https://packagist.org/downloads/",
  5038. "license": [
  5039. "MIT"
  5040. ],
  5041. "authors": [
  5042. {
  5043. "name": "Fabien Potencier",
  5044. "email": "fabien@symfony.com"
  5045. },
  5046. {
  5047. "name": "Symfony Community",
  5048. "homepage": "https://symfony.com/contributors"
  5049. }
  5050. ],
  5051. "description": "Helps sending emails",
  5052. "homepage": "https://symfony.com",
  5053. "support": {
  5054. "source": "https://github.com/symfony/mailer/tree/v6.2.8"
  5055. },
  5056. "funding": [
  5057. {
  5058. "url": "https://symfony.com/sponsor",
  5059. "type": "custom"
  5060. },
  5061. {
  5062. "url": "https://github.com/fabpot",
  5063. "type": "github"
  5064. },
  5065. {
  5066. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5067. "type": "tidelift"
  5068. }
  5069. ],
  5070. "time": "2023-03-14T15:00:05+00:00"
  5071. },
  5072. {
  5073. "name": "symfony/mime",
  5074. "version": "v6.2.7",
  5075. "source": {
  5076. "type": "git",
  5077. "url": "https://github.com/symfony/mime.git",
  5078. "reference": "62e341f80699badb0ad70b31149c8df89a2d778e"
  5079. },
  5080. "dist": {
  5081. "type": "zip",
  5082. "url": "https://api.github.com/repos/symfony/mime/zipball/62e341f80699badb0ad70b31149c8df89a2d778e",
  5083. "reference": "62e341f80699badb0ad70b31149c8df89a2d778e",
  5084. "shasum": ""
  5085. },
  5086. "require": {
  5087. "php": ">=8.1",
  5088. "symfony/polyfill-intl-idn": "^1.10",
  5089. "symfony/polyfill-mbstring": "^1.0"
  5090. },
  5091. "conflict": {
  5092. "egulias/email-validator": "~3.0.0",
  5093. "phpdocumentor/reflection-docblock": "<3.2.2",
  5094. "phpdocumentor/type-resolver": "<1.4.0",
  5095. "symfony/mailer": "<5.4",
  5096. "symfony/serializer": "<6.2"
  5097. },
  5098. "require-dev": {
  5099. "egulias/email-validator": "^2.1.10|^3.1|^4",
  5100. "league/html-to-markdown": "^5.0",
  5101. "phpdocumentor/reflection-docblock": "^3.0|^4.0|^5.0",
  5102. "symfony/dependency-injection": "^5.4|^6.0",
  5103. "symfony/property-access": "^5.4|^6.0",
  5104. "symfony/property-info": "^5.4|^6.0",
  5105. "symfony/serializer": "^6.2"
  5106. },
  5107. "type": "library",
  5108. "autoload": {
  5109. "psr-4": {
  5110. "Symfony\\Component\\Mime\\": ""
  5111. },
  5112. "exclude-from-classmap": [
  5113. "/Tests/"
  5114. ]
  5115. },
  5116. "notification-url": "https://packagist.org/downloads/",
  5117. "license": [
  5118. "MIT"
  5119. ],
  5120. "authors": [
  5121. {
  5122. "name": "Fabien Potencier",
  5123. "email": "fabien@symfony.com"
  5124. },
  5125. {
  5126. "name": "Symfony Community",
  5127. "homepage": "https://symfony.com/contributors"
  5128. }
  5129. ],
  5130. "description": "Allows manipulating MIME messages",
  5131. "homepage": "https://symfony.com",
  5132. "keywords": [
  5133. "mime",
  5134. "mime-type"
  5135. ],
  5136. "support": {
  5137. "source": "https://github.com/symfony/mime/tree/v6.2.7"
  5138. },
  5139. "funding": [
  5140. {
  5141. "url": "https://symfony.com/sponsor",
  5142. "type": "custom"
  5143. },
  5144. {
  5145. "url": "https://github.com/fabpot",
  5146. "type": "github"
  5147. },
  5148. {
  5149. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5150. "type": "tidelift"
  5151. }
  5152. ],
  5153. "time": "2023-02-24T10:42:00+00:00"
  5154. },
  5155. {
  5156. "name": "symfony/monolog-bridge",
  5157. "version": "v6.2.8",
  5158. "source": {
  5159. "type": "git",
  5160. "url": "https://github.com/symfony/monolog-bridge.git",
  5161. "reference": "34700f2e5c7e9eae78f8e59fc02399dd8f110cae"
  5162. },
  5163. "dist": {
  5164. "type": "zip",
  5165. "url": "https://api.github.com/repos/symfony/monolog-bridge/zipball/34700f2e5c7e9eae78f8e59fc02399dd8f110cae",
  5166. "reference": "34700f2e5c7e9eae78f8e59fc02399dd8f110cae",
  5167. "shasum": ""
  5168. },
  5169. "require": {
  5170. "monolog/monolog": "^1.25.1|^2|^3",
  5171. "php": ">=8.1",
  5172. "symfony/http-kernel": "^5.4|^6.0",
  5173. "symfony/service-contracts": "^1.1|^2|^3"
  5174. },
  5175. "conflict": {
  5176. "symfony/console": "<5.4",
  5177. "symfony/http-foundation": "<5.4",
  5178. "symfony/security-core": "<6.0"
  5179. },
  5180. "require-dev": {
  5181. "symfony/console": "^5.4|^6.0",
  5182. "symfony/http-client": "^5.4|^6.0",
  5183. "symfony/mailer": "^5.4|^6.0",
  5184. "symfony/messenger": "^5.4|^6.0",
  5185. "symfony/mime": "^5.4|^6.0",
  5186. "symfony/security-core": "^6.0",
  5187. "symfony/var-dumper": "^5.4|^6.0"
  5188. },
  5189. "suggest": {
  5190. "symfony/console": "For the possibility to show log messages in console commands depending on verbosity settings.",
  5191. "symfony/http-kernel": "For using the debugging handlers together with the response life cycle of the HTTP kernel.",
  5192. "symfony/var-dumper": "For using the debugging handlers like the console handler or the log server handler."
  5193. },
  5194. "type": "symfony-bridge",
  5195. "autoload": {
  5196. "psr-4": {
  5197. "Symfony\\Bridge\\Monolog\\": ""
  5198. },
  5199. "exclude-from-classmap": [
  5200. "/Tests/"
  5201. ]
  5202. },
  5203. "notification-url": "https://packagist.org/downloads/",
  5204. "license": [
  5205. "MIT"
  5206. ],
  5207. "authors": [
  5208. {
  5209. "name": "Fabien Potencier",
  5210. "email": "fabien@symfony.com"
  5211. },
  5212. {
  5213. "name": "Symfony Community",
  5214. "homepage": "https://symfony.com/contributors"
  5215. }
  5216. ],
  5217. "description": "Provides integration for Monolog with various Symfony components",
  5218. "homepage": "https://symfony.com",
  5219. "support": {
  5220. "source": "https://github.com/symfony/monolog-bridge/tree/v6.2.8"
  5221. },
  5222. "funding": [
  5223. {
  5224. "url": "https://symfony.com/sponsor",
  5225. "type": "custom"
  5226. },
  5227. {
  5228. "url": "https://github.com/fabpot",
  5229. "type": "github"
  5230. },
  5231. {
  5232. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5233. "type": "tidelift"
  5234. }
  5235. ],
  5236. "time": "2023-03-09T16:20:02+00:00"
  5237. },
  5238. {
  5239. "name": "symfony/monolog-bundle",
  5240. "version": "v3.8.0",
  5241. "source": {
  5242. "type": "git",
  5243. "url": "https://github.com/symfony/monolog-bundle.git",
  5244. "reference": "a41bbcdc1105603b6d73a7d9a43a3788f8e0fb7d"
  5245. },
  5246. "dist": {
  5247. "type": "zip",
  5248. "url": "https://api.github.com/repos/symfony/monolog-bundle/zipball/a41bbcdc1105603b6d73a7d9a43a3788f8e0fb7d",
  5249. "reference": "a41bbcdc1105603b6d73a7d9a43a3788f8e0fb7d",
  5250. "shasum": ""
  5251. },
  5252. "require": {
  5253. "monolog/monolog": "^1.22 || ^2.0 || ^3.0",
  5254. "php": ">=7.1.3",
  5255. "symfony/config": "~4.4 || ^5.0 || ^6.0",
  5256. "symfony/dependency-injection": "^4.4 || ^5.0 || ^6.0",
  5257. "symfony/http-kernel": "~4.4 || ^5.0 || ^6.0",
  5258. "symfony/monolog-bridge": "~4.4 || ^5.0 || ^6.0"
  5259. },
  5260. "require-dev": {
  5261. "symfony/console": "~4.4 || ^5.0 || ^6.0",
  5262. "symfony/phpunit-bridge": "^5.2 || ^6.0",
  5263. "symfony/yaml": "~4.4 || ^5.0 || ^6.0"
  5264. },
  5265. "type": "symfony-bundle",
  5266. "extra": {
  5267. "branch-alias": {
  5268. "dev-master": "3.x-dev"
  5269. }
  5270. },
  5271. "autoload": {
  5272. "psr-4": {
  5273. "Symfony\\Bundle\\MonologBundle\\": ""
  5274. },
  5275. "exclude-from-classmap": [
  5276. "/Tests/"
  5277. ]
  5278. },
  5279. "notification-url": "https://packagist.org/downloads/",
  5280. "license": [
  5281. "MIT"
  5282. ],
  5283. "authors": [
  5284. {
  5285. "name": "Fabien Potencier",
  5286. "email": "fabien@symfony.com"
  5287. },
  5288. {
  5289. "name": "Symfony Community",
  5290. "homepage": "https://symfony.com/contributors"
  5291. }
  5292. ],
  5293. "description": "Symfony MonologBundle",
  5294. "homepage": "https://symfony.com",
  5295. "keywords": [
  5296. "log",
  5297. "logging"
  5298. ],
  5299. "support": {
  5300. "issues": "https://github.com/symfony/monolog-bundle/issues",
  5301. "source": "https://github.com/symfony/monolog-bundle/tree/v3.8.0"
  5302. },
  5303. "funding": [
  5304. {
  5305. "url": "https://symfony.com/sponsor",
  5306. "type": "custom"
  5307. },
  5308. {
  5309. "url": "https://github.com/fabpot",
  5310. "type": "github"
  5311. },
  5312. {
  5313. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5314. "type": "tidelift"
  5315. }
  5316. ],
  5317. "time": "2022-05-10T14:24:36+00:00"
  5318. },
  5319. {
  5320. "name": "symfony/options-resolver",
  5321. "version": "v6.2.7",
  5322. "source": {
  5323. "type": "git",
  5324. "url": "https://github.com/symfony/options-resolver.git",
  5325. "reference": "aa0e85b53bbb2b4951960efd61d295907eacd629"
  5326. },
  5327. "dist": {
  5328. "type": "zip",
  5329. "url": "https://api.github.com/repos/symfony/options-resolver/zipball/aa0e85b53bbb2b4951960efd61d295907eacd629",
  5330. "reference": "aa0e85b53bbb2b4951960efd61d295907eacd629",
  5331. "shasum": ""
  5332. },
  5333. "require": {
  5334. "php": ">=8.1",
  5335. "symfony/deprecation-contracts": "^2.1|^3"
  5336. },
  5337. "type": "library",
  5338. "autoload": {
  5339. "psr-4": {
  5340. "Symfony\\Component\\OptionsResolver\\": ""
  5341. },
  5342. "exclude-from-classmap": [
  5343. "/Tests/"
  5344. ]
  5345. },
  5346. "notification-url": "https://packagist.org/downloads/",
  5347. "license": [
  5348. "MIT"
  5349. ],
  5350. "authors": [
  5351. {
  5352. "name": "Fabien Potencier",
  5353. "email": "fabien@symfony.com"
  5354. },
  5355. {
  5356. "name": "Symfony Community",
  5357. "homepage": "https://symfony.com/contributors"
  5358. }
  5359. ],
  5360. "description": "Provides an improved replacement for the array_replace PHP function",
  5361. "homepage": "https://symfony.com",
  5362. "keywords": [
  5363. "config",
  5364. "configuration",
  5365. "options"
  5366. ],
  5367. "support": {
  5368. "source": "https://github.com/symfony/options-resolver/tree/v6.2.7"
  5369. },
  5370. "funding": [
  5371. {
  5372. "url": "https://symfony.com/sponsor",
  5373. "type": "custom"
  5374. },
  5375. {
  5376. "url": "https://github.com/fabpot",
  5377. "type": "github"
  5378. },
  5379. {
  5380. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5381. "type": "tidelift"
  5382. }
  5383. ],
  5384. "time": "2023-02-14T08:44:56+00:00"
  5385. },
  5386. {
  5387. "name": "symfony/password-hasher",
  5388. "version": "v6.2.7",
  5389. "source": {
  5390. "type": "git",
  5391. "url": "https://github.com/symfony/password-hasher.git",
  5392. "reference": "67820d8570bf1c2c2cd87cb76d9d12a9d52ab808"
  5393. },
  5394. "dist": {
  5395. "type": "zip",
  5396. "url": "https://api.github.com/repos/symfony/password-hasher/zipball/67820d8570bf1c2c2cd87cb76d9d12a9d52ab808",
  5397. "reference": "67820d8570bf1c2c2cd87cb76d9d12a9d52ab808",
  5398. "shasum": ""
  5399. },
  5400. "require": {
  5401. "php": ">=8.1"
  5402. },
  5403. "conflict": {
  5404. "symfony/security-core": "<5.4"
  5405. },
  5406. "require-dev": {
  5407. "symfony/console": "^5.4|^6.0",
  5408. "symfony/security-core": "^5.4|^6.0"
  5409. },
  5410. "type": "library",
  5411. "autoload": {
  5412. "psr-4": {
  5413. "Symfony\\Component\\PasswordHasher\\": ""
  5414. },
  5415. "exclude-from-classmap": [
  5416. "/Tests/"
  5417. ]
  5418. },
  5419. "notification-url": "https://packagist.org/downloads/",
  5420. "license": [
  5421. "MIT"
  5422. ],
  5423. "authors": [
  5424. {
  5425. "name": "Robin Chalas",
  5426. "email": "robin.chalas@gmail.com"
  5427. },
  5428. {
  5429. "name": "Symfony Community",
  5430. "homepage": "https://symfony.com/contributors"
  5431. }
  5432. ],
  5433. "description": "Provides password hashing utilities",
  5434. "homepage": "https://symfony.com",
  5435. "keywords": [
  5436. "hashing",
  5437. "password"
  5438. ],
  5439. "support": {
  5440. "source": "https://github.com/symfony/password-hasher/tree/v6.2.7"
  5441. },
  5442. "funding": [
  5443. {
  5444. "url": "https://symfony.com/sponsor",
  5445. "type": "custom"
  5446. },
  5447. {
  5448. "url": "https://github.com/fabpot",
  5449. "type": "github"
  5450. },
  5451. {
  5452. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5453. "type": "tidelift"
  5454. }
  5455. ],
  5456. "time": "2023-02-14T08:44:56+00:00"
  5457. },
  5458. {
  5459. "name": "symfony/polyfill-intl-grapheme",
  5460. "version": "v1.27.0",
  5461. "source": {
  5462. "type": "git",
  5463. "url": "https://github.com/symfony/polyfill-intl-grapheme.git",
  5464. "reference": "511a08c03c1960e08a883f4cffcacd219b758354"
  5465. },
  5466. "dist": {
  5467. "type": "zip",
  5468. "url": "https://api.github.com/repos/symfony/polyfill-intl-grapheme/zipball/511a08c03c1960e08a883f4cffcacd219b758354",
  5469. "reference": "511a08c03c1960e08a883f4cffcacd219b758354",
  5470. "shasum": ""
  5471. },
  5472. "require": {
  5473. "php": ">=7.1"
  5474. },
  5475. "suggest": {
  5476. "ext-intl": "For best performance"
  5477. },
  5478. "type": "library",
  5479. "extra": {
  5480. "branch-alias": {
  5481. "dev-main": "1.27-dev"
  5482. },
  5483. "thanks": {
  5484. "name": "symfony/polyfill",
  5485. "url": "https://github.com/symfony/polyfill"
  5486. }
  5487. },
  5488. "autoload": {
  5489. "files": [
  5490. "bootstrap.php"
  5491. ],
  5492. "psr-4": {
  5493. "Symfony\\Polyfill\\Intl\\Grapheme\\": ""
  5494. }
  5495. },
  5496. "notification-url": "https://packagist.org/downloads/",
  5497. "license": [
  5498. "MIT"
  5499. ],
  5500. "authors": [
  5501. {
  5502. "name": "Nicolas Grekas",
  5503. "email": "p@tchwork.com"
  5504. },
  5505. {
  5506. "name": "Symfony Community",
  5507. "homepage": "https://symfony.com/contributors"
  5508. }
  5509. ],
  5510. "description": "Symfony polyfill for intl's grapheme_* functions",
  5511. "homepage": "https://symfony.com",
  5512. "keywords": [
  5513. "compatibility",
  5514. "grapheme",
  5515. "intl",
  5516. "polyfill",
  5517. "portable",
  5518. "shim"
  5519. ],
  5520. "support": {
  5521. "source": "https://github.com/symfony/polyfill-intl-grapheme/tree/v1.27.0"
  5522. },
  5523. "funding": [
  5524. {
  5525. "url": "https://symfony.com/sponsor",
  5526. "type": "custom"
  5527. },
  5528. {
  5529. "url": "https://github.com/fabpot",
  5530. "type": "github"
  5531. },
  5532. {
  5533. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5534. "type": "tidelift"
  5535. }
  5536. ],
  5537. "time": "2022-11-03T14:55:06+00:00"
  5538. },
  5539. {
  5540. "name": "symfony/polyfill-intl-icu",
  5541. "version": "v1.27.0",
  5542. "source": {
  5543. "type": "git",
  5544. "url": "https://github.com/symfony/polyfill-intl-icu.git",
  5545. "reference": "a3d9148e2c363588e05abbdd4ee4f971f0a5330c"
  5546. },
  5547. "dist": {
  5548. "type": "zip",
  5549. "url": "https://api.github.com/repos/symfony/polyfill-intl-icu/zipball/a3d9148e2c363588e05abbdd4ee4f971f0a5330c",
  5550. "reference": "a3d9148e2c363588e05abbdd4ee4f971f0a5330c",
  5551. "shasum": ""
  5552. },
  5553. "require": {
  5554. "php": ">=7.1"
  5555. },
  5556. "suggest": {
  5557. "ext-intl": "For best performance and support of other locales than \"en\""
  5558. },
  5559. "type": "library",
  5560. "extra": {
  5561. "branch-alias": {
  5562. "dev-main": "1.27-dev"
  5563. },
  5564. "thanks": {
  5565. "name": "symfony/polyfill",
  5566. "url": "https://github.com/symfony/polyfill"
  5567. }
  5568. },
  5569. "autoload": {
  5570. "files": [
  5571. "bootstrap.php"
  5572. ],
  5573. "psr-4": {
  5574. "Symfony\\Polyfill\\Intl\\Icu\\": ""
  5575. },
  5576. "classmap": [
  5577. "Resources/stubs"
  5578. ],
  5579. "exclude-from-classmap": [
  5580. "/Tests/"
  5581. ]
  5582. },
  5583. "notification-url": "https://packagist.org/downloads/",
  5584. "license": [
  5585. "MIT"
  5586. ],
  5587. "authors": [
  5588. {
  5589. "name": "Nicolas Grekas",
  5590. "email": "p@tchwork.com"
  5591. },
  5592. {
  5593. "name": "Symfony Community",
  5594. "homepage": "https://symfony.com/contributors"
  5595. }
  5596. ],
  5597. "description": "Symfony polyfill for intl's ICU-related data and classes",
  5598. "homepage": "https://symfony.com",
  5599. "keywords": [
  5600. "compatibility",
  5601. "icu",
  5602. "intl",
  5603. "polyfill",
  5604. "portable",
  5605. "shim"
  5606. ],
  5607. "support": {
  5608. "source": "https://github.com/symfony/polyfill-intl-icu/tree/v1.27.0"
  5609. },
  5610. "funding": [
  5611. {
  5612. "url": "https://symfony.com/sponsor",
  5613. "type": "custom"
  5614. },
  5615. {
  5616. "url": "https://github.com/fabpot",
  5617. "type": "github"
  5618. },
  5619. {
  5620. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5621. "type": "tidelift"
  5622. }
  5623. ],
  5624. "time": "2022-11-03T14:55:06+00:00"
  5625. },
  5626. {
  5627. "name": "symfony/polyfill-intl-idn",
  5628. "version": "v1.27.0",
  5629. "source": {
  5630. "type": "git",
  5631. "url": "https://github.com/symfony/polyfill-intl-idn.git",
  5632. "reference": "639084e360537a19f9ee352433b84ce831f3d2da"
  5633. },
  5634. "dist": {
  5635. "type": "zip",
  5636. "url": "https://api.github.com/repos/symfony/polyfill-intl-idn/zipball/639084e360537a19f9ee352433b84ce831f3d2da",
  5637. "reference": "639084e360537a19f9ee352433b84ce831f3d2da",
  5638. "shasum": ""
  5639. },
  5640. "require": {
  5641. "php": ">=7.1",
  5642. "symfony/polyfill-intl-normalizer": "^1.10",
  5643. "symfony/polyfill-php72": "^1.10"
  5644. },
  5645. "suggest": {
  5646. "ext-intl": "For best performance"
  5647. },
  5648. "type": "library",
  5649. "extra": {
  5650. "branch-alias": {
  5651. "dev-main": "1.27-dev"
  5652. },
  5653. "thanks": {
  5654. "name": "symfony/polyfill",
  5655. "url": "https://github.com/symfony/polyfill"
  5656. }
  5657. },
  5658. "autoload": {
  5659. "files": [
  5660. "bootstrap.php"
  5661. ],
  5662. "psr-4": {
  5663. "Symfony\\Polyfill\\Intl\\Idn\\": ""
  5664. }
  5665. },
  5666. "notification-url": "https://packagist.org/downloads/",
  5667. "license": [
  5668. "MIT"
  5669. ],
  5670. "authors": [
  5671. {
  5672. "name": "Laurent Bassin",
  5673. "email": "laurent@bassin.info"
  5674. },
  5675. {
  5676. "name": "Trevor Rowbotham",
  5677. "email": "trevor.rowbotham@pm.me"
  5678. },
  5679. {
  5680. "name": "Symfony Community",
  5681. "homepage": "https://symfony.com/contributors"
  5682. }
  5683. ],
  5684. "description": "Symfony polyfill for intl's idn_to_ascii and idn_to_utf8 functions",
  5685. "homepage": "https://symfony.com",
  5686. "keywords": [
  5687. "compatibility",
  5688. "idn",
  5689. "intl",
  5690. "polyfill",
  5691. "portable",
  5692. "shim"
  5693. ],
  5694. "support": {
  5695. "source": "https://github.com/symfony/polyfill-intl-idn/tree/v1.27.0"
  5696. },
  5697. "funding": [
  5698. {
  5699. "url": "https://symfony.com/sponsor",
  5700. "type": "custom"
  5701. },
  5702. {
  5703. "url": "https://github.com/fabpot",
  5704. "type": "github"
  5705. },
  5706. {
  5707. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5708. "type": "tidelift"
  5709. }
  5710. ],
  5711. "time": "2022-11-03T14:55:06+00:00"
  5712. },
  5713. {
  5714. "name": "symfony/polyfill-intl-normalizer",
  5715. "version": "v1.27.0",
  5716. "source": {
  5717. "type": "git",
  5718. "url": "https://github.com/symfony/polyfill-intl-normalizer.git",
  5719. "reference": "19bd1e4fcd5b91116f14d8533c57831ed00571b6"
  5720. },
  5721. "dist": {
  5722. "type": "zip",
  5723. "url": "https://api.github.com/repos/symfony/polyfill-intl-normalizer/zipball/19bd1e4fcd5b91116f14d8533c57831ed00571b6",
  5724. "reference": "19bd1e4fcd5b91116f14d8533c57831ed00571b6",
  5725. "shasum": ""
  5726. },
  5727. "require": {
  5728. "php": ">=7.1"
  5729. },
  5730. "suggest": {
  5731. "ext-intl": "For best performance"
  5732. },
  5733. "type": "library",
  5734. "extra": {
  5735. "branch-alias": {
  5736. "dev-main": "1.27-dev"
  5737. },
  5738. "thanks": {
  5739. "name": "symfony/polyfill",
  5740. "url": "https://github.com/symfony/polyfill"
  5741. }
  5742. },
  5743. "autoload": {
  5744. "files": [
  5745. "bootstrap.php"
  5746. ],
  5747. "psr-4": {
  5748. "Symfony\\Polyfill\\Intl\\Normalizer\\": ""
  5749. },
  5750. "classmap": [
  5751. "Resources/stubs"
  5752. ]
  5753. },
  5754. "notification-url": "https://packagist.org/downloads/",
  5755. "license": [
  5756. "MIT"
  5757. ],
  5758. "authors": [
  5759. {
  5760. "name": "Nicolas Grekas",
  5761. "email": "p@tchwork.com"
  5762. },
  5763. {
  5764. "name": "Symfony Community",
  5765. "homepage": "https://symfony.com/contributors"
  5766. }
  5767. ],
  5768. "description": "Symfony polyfill for intl's Normalizer class and related functions",
  5769. "homepage": "https://symfony.com",
  5770. "keywords": [
  5771. "compatibility",
  5772. "intl",
  5773. "normalizer",
  5774. "polyfill",
  5775. "portable",
  5776. "shim"
  5777. ],
  5778. "support": {
  5779. "source": "https://github.com/symfony/polyfill-intl-normalizer/tree/v1.27.0"
  5780. },
  5781. "funding": [
  5782. {
  5783. "url": "https://symfony.com/sponsor",
  5784. "type": "custom"
  5785. },
  5786. {
  5787. "url": "https://github.com/fabpot",
  5788. "type": "github"
  5789. },
  5790. {
  5791. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5792. "type": "tidelift"
  5793. }
  5794. ],
  5795. "time": "2022-11-03T14:55:06+00:00"
  5796. },
  5797. {
  5798. "name": "symfony/polyfill-mbstring",
  5799. "version": "v1.27.0",
  5800. "source": {
  5801. "type": "git",
  5802. "url": "https://github.com/symfony/polyfill-mbstring.git",
  5803. "reference": "8ad114f6b39e2c98a8b0e3bd907732c207c2b534"
  5804. },
  5805. "dist": {
  5806. "type": "zip",
  5807. "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/8ad114f6b39e2c98a8b0e3bd907732c207c2b534",
  5808. "reference": "8ad114f6b39e2c98a8b0e3bd907732c207c2b534",
  5809. "shasum": ""
  5810. },
  5811. "require": {
  5812. "php": ">=7.1"
  5813. },
  5814. "provide": {
  5815. "ext-mbstring": "*"
  5816. },
  5817. "suggest": {
  5818. "ext-mbstring": "For best performance"
  5819. },
  5820. "type": "library",
  5821. "extra": {
  5822. "branch-alias": {
  5823. "dev-main": "1.27-dev"
  5824. },
  5825. "thanks": {
  5826. "name": "symfony/polyfill",
  5827. "url": "https://github.com/symfony/polyfill"
  5828. }
  5829. },
  5830. "autoload": {
  5831. "files": [
  5832. "bootstrap.php"
  5833. ],
  5834. "psr-4": {
  5835. "Symfony\\Polyfill\\Mbstring\\": ""
  5836. }
  5837. },
  5838. "notification-url": "https://packagist.org/downloads/",
  5839. "license": [
  5840. "MIT"
  5841. ],
  5842. "authors": [
  5843. {
  5844. "name": "Nicolas Grekas",
  5845. "email": "p@tchwork.com"
  5846. },
  5847. {
  5848. "name": "Symfony Community",
  5849. "homepage": "https://symfony.com/contributors"
  5850. }
  5851. ],
  5852. "description": "Symfony polyfill for the Mbstring extension",
  5853. "homepage": "https://symfony.com",
  5854. "keywords": [
  5855. "compatibility",
  5856. "mbstring",
  5857. "polyfill",
  5858. "portable",
  5859. "shim"
  5860. ],
  5861. "support": {
  5862. "source": "https://github.com/symfony/polyfill-mbstring/tree/v1.27.0"
  5863. },
  5864. "funding": [
  5865. {
  5866. "url": "https://symfony.com/sponsor",
  5867. "type": "custom"
  5868. },
  5869. {
  5870. "url": "https://github.com/fabpot",
  5871. "type": "github"
  5872. },
  5873. {
  5874. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5875. "type": "tidelift"
  5876. }
  5877. ],
  5878. "time": "2022-11-03T14:55:06+00:00"
  5879. },
  5880. {
  5881. "name": "symfony/polyfill-php72",
  5882. "version": "v1.27.0",
  5883. "source": {
  5884. "type": "git",
  5885. "url": "https://github.com/symfony/polyfill-php72.git",
  5886. "reference": "869329b1e9894268a8a61dabb69153029b7a8c97"
  5887. },
  5888. "dist": {
  5889. "type": "zip",
  5890. "url": "https://api.github.com/repos/symfony/polyfill-php72/zipball/869329b1e9894268a8a61dabb69153029b7a8c97",
  5891. "reference": "869329b1e9894268a8a61dabb69153029b7a8c97",
  5892. "shasum": ""
  5893. },
  5894. "require": {
  5895. "php": ">=7.1"
  5896. },
  5897. "type": "library",
  5898. "extra": {
  5899. "branch-alias": {
  5900. "dev-main": "1.27-dev"
  5901. },
  5902. "thanks": {
  5903. "name": "symfony/polyfill",
  5904. "url": "https://github.com/symfony/polyfill"
  5905. }
  5906. },
  5907. "autoload": {
  5908. "files": [
  5909. "bootstrap.php"
  5910. ],
  5911. "psr-4": {
  5912. "Symfony\\Polyfill\\Php72\\": ""
  5913. }
  5914. },
  5915. "notification-url": "https://packagist.org/downloads/",
  5916. "license": [
  5917. "MIT"
  5918. ],
  5919. "authors": [
  5920. {
  5921. "name": "Nicolas Grekas",
  5922. "email": "p@tchwork.com"
  5923. },
  5924. {
  5925. "name": "Symfony Community",
  5926. "homepage": "https://symfony.com/contributors"
  5927. }
  5928. ],
  5929. "description": "Symfony polyfill backporting some PHP 7.2+ features to lower PHP versions",
  5930. "homepage": "https://symfony.com",
  5931. "keywords": [
  5932. "compatibility",
  5933. "polyfill",
  5934. "portable",
  5935. "shim"
  5936. ],
  5937. "support": {
  5938. "source": "https://github.com/symfony/polyfill-php72/tree/v1.27.0"
  5939. },
  5940. "funding": [
  5941. {
  5942. "url": "https://symfony.com/sponsor",
  5943. "type": "custom"
  5944. },
  5945. {
  5946. "url": "https://github.com/fabpot",
  5947. "type": "github"
  5948. },
  5949. {
  5950. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5951. "type": "tidelift"
  5952. }
  5953. ],
  5954. "time": "2022-11-03T14:55:06+00:00"
  5955. },
  5956. {
  5957. "name": "symfony/polyfill-php80",
  5958. "version": "v1.27.0",
  5959. "source": {
  5960. "type": "git",
  5961. "url": "https://github.com/symfony/polyfill-php80.git",
  5962. "reference": "7a6ff3f1959bb01aefccb463a0f2cd3d3d2fd936"
  5963. },
  5964. "dist": {
  5965. "type": "zip",
  5966. "url": "https://api.github.com/repos/symfony/polyfill-php80/zipball/7a6ff3f1959bb01aefccb463a0f2cd3d3d2fd936",
  5967. "reference": "7a6ff3f1959bb01aefccb463a0f2cd3d3d2fd936",
  5968. "shasum": ""
  5969. },
  5970. "require": {
  5971. "php": ">=7.1"
  5972. },
  5973. "type": "library",
  5974. "extra": {
  5975. "branch-alias": {
  5976. "dev-main": "1.27-dev"
  5977. },
  5978. "thanks": {
  5979. "name": "symfony/polyfill",
  5980. "url": "https://github.com/symfony/polyfill"
  5981. }
  5982. },
  5983. "autoload": {
  5984. "files": [
  5985. "bootstrap.php"
  5986. ],
  5987. "psr-4": {
  5988. "Symfony\\Polyfill\\Php80\\": ""
  5989. },
  5990. "classmap": [
  5991. "Resources/stubs"
  5992. ]
  5993. },
  5994. "notification-url": "https://packagist.org/downloads/",
  5995. "license": [
  5996. "MIT"
  5997. ],
  5998. "authors": [
  5999. {
  6000. "name": "Ion Bazan",
  6001. "email": "ion.bazan@gmail.com"
  6002. },
  6003. {
  6004. "name": "Nicolas Grekas",
  6005. "email": "p@tchwork.com"
  6006. },
  6007. {
  6008. "name": "Symfony Community",
  6009. "homepage": "https://symfony.com/contributors"
  6010. }
  6011. ],
  6012. "description": "Symfony polyfill backporting some PHP 8.0+ features to lower PHP versions",
  6013. "homepage": "https://symfony.com",
  6014. "keywords": [
  6015. "compatibility",
  6016. "polyfill",
  6017. "portable",
  6018. "shim"
  6019. ],
  6020. "support": {
  6021. "source": "https://github.com/symfony/polyfill-php80/tree/v1.27.0"
  6022. },
  6023. "funding": [
  6024. {
  6025. "url": "https://symfony.com/sponsor",
  6026. "type": "custom"
  6027. },
  6028. {
  6029. "url": "https://github.com/fabpot",
  6030. "type": "github"
  6031. },
  6032. {
  6033. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6034. "type": "tidelift"
  6035. }
  6036. ],
  6037. "time": "2022-11-03T14:55:06+00:00"
  6038. },
  6039. {
  6040. "name": "symfony/process",
  6041. "version": "v6.2.8",
  6042. "source": {
  6043. "type": "git",
  6044. "url": "https://github.com/symfony/process.git",
  6045. "reference": "75ed64103df4f6615e15a7fe38b8111099f47416"
  6046. },
  6047. "dist": {
  6048. "type": "zip",
  6049. "url": "https://api.github.com/repos/symfony/process/zipball/75ed64103df4f6615e15a7fe38b8111099f47416",
  6050. "reference": "75ed64103df4f6615e15a7fe38b8111099f47416",
  6051. "shasum": ""
  6052. },
  6053. "require": {
  6054. "php": ">=8.1"
  6055. },
  6056. "type": "library",
  6057. "autoload": {
  6058. "psr-4": {
  6059. "Symfony\\Component\\Process\\": ""
  6060. },
  6061. "exclude-from-classmap": [
  6062. "/Tests/"
  6063. ]
  6064. },
  6065. "notification-url": "https://packagist.org/downloads/",
  6066. "license": [
  6067. "MIT"
  6068. ],
  6069. "authors": [
  6070. {
  6071. "name": "Fabien Potencier",
  6072. "email": "fabien@symfony.com"
  6073. },
  6074. {
  6075. "name": "Symfony Community",
  6076. "homepage": "https://symfony.com/contributors"
  6077. }
  6078. ],
  6079. "description": "Executes commands in sub-processes",
  6080. "homepage": "https://symfony.com",
  6081. "support": {
  6082. "source": "https://github.com/symfony/process/tree/v6.2.8"
  6083. },
  6084. "funding": [
  6085. {
  6086. "url": "https://symfony.com/sponsor",
  6087. "type": "custom"
  6088. },
  6089. {
  6090. "url": "https://github.com/fabpot",
  6091. "type": "github"
  6092. },
  6093. {
  6094. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6095. "type": "tidelift"
  6096. }
  6097. ],
  6098. "time": "2023-03-09T16:20:02+00:00"
  6099. },
  6100. {
  6101. "name": "symfony/property-access",
  6102. "version": "v6.2.8",
  6103. "source": {
  6104. "type": "git",
  6105. "url": "https://github.com/symfony/property-access.git",
  6106. "reference": "2ad1e0a07b8cab3e09905659d14f3b248e916374"
  6107. },
  6108. "dist": {
  6109. "type": "zip",
  6110. "url": "https://api.github.com/repos/symfony/property-access/zipball/2ad1e0a07b8cab3e09905659d14f3b248e916374",
  6111. "reference": "2ad1e0a07b8cab3e09905659d14f3b248e916374",
  6112. "shasum": ""
  6113. },
  6114. "require": {
  6115. "php": ">=8.1",
  6116. "symfony/deprecation-contracts": "^2.1|^3",
  6117. "symfony/property-info": "^5.4|^6.0"
  6118. },
  6119. "require-dev": {
  6120. "symfony/cache": "^5.4|^6.0"
  6121. },
  6122. "suggest": {
  6123. "psr/cache-implementation": "To cache access methods."
  6124. },
  6125. "type": "library",
  6126. "autoload": {
  6127. "psr-4": {
  6128. "Symfony\\Component\\PropertyAccess\\": ""
  6129. },
  6130. "exclude-from-classmap": [
  6131. "/Tests/"
  6132. ]
  6133. },
  6134. "notification-url": "https://packagist.org/downloads/",
  6135. "license": [
  6136. "MIT"
  6137. ],
  6138. "authors": [
  6139. {
  6140. "name": "Fabien Potencier",
  6141. "email": "fabien@symfony.com"
  6142. },
  6143. {
  6144. "name": "Symfony Community",
  6145. "homepage": "https://symfony.com/contributors"
  6146. }
  6147. ],
  6148. "description": "Provides functions to read and write from/to an object or array using a simple string notation",
  6149. "homepage": "https://symfony.com",
  6150. "keywords": [
  6151. "access",
  6152. "array",
  6153. "extraction",
  6154. "index",
  6155. "injection",
  6156. "object",
  6157. "property",
  6158. "property-path",
  6159. "reflection"
  6160. ],
  6161. "support": {
  6162. "source": "https://github.com/symfony/property-access/tree/v6.2.8"
  6163. },
  6164. "funding": [
  6165. {
  6166. "url": "https://symfony.com/sponsor",
  6167. "type": "custom"
  6168. },
  6169. {
  6170. "url": "https://github.com/fabpot",
  6171. "type": "github"
  6172. },
  6173. {
  6174. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6175. "type": "tidelift"
  6176. }
  6177. ],
  6178. "time": "2023-03-14T15:00:05+00:00"
  6179. },
  6180. {
  6181. "name": "symfony/property-info",
  6182. "version": "v6.2.8",
  6183. "source": {
  6184. "type": "git",
  6185. "url": "https://github.com/symfony/property-info.git",
  6186. "reference": "400a019b7c05030599fd15f02b3d4ce287631732"
  6187. },
  6188. "dist": {
  6189. "type": "zip",
  6190. "url": "https://api.github.com/repos/symfony/property-info/zipball/400a019b7c05030599fd15f02b3d4ce287631732",
  6191. "reference": "400a019b7c05030599fd15f02b3d4ce287631732",
  6192. "shasum": ""
  6193. },
  6194. "require": {
  6195. "php": ">=8.1",
  6196. "symfony/string": "^5.4|^6.0"
  6197. },
  6198. "conflict": {
  6199. "phpdocumentor/reflection-docblock": "<5.2",
  6200. "phpdocumentor/type-resolver": "<1.5.1",
  6201. "symfony/dependency-injection": "<5.4"
  6202. },
  6203. "require-dev": {
  6204. "doctrine/annotations": "^1.10.4|^2",
  6205. "phpdocumentor/reflection-docblock": "^5.2",
  6206. "phpstan/phpdoc-parser": "^1.0",
  6207. "symfony/cache": "^5.4|^6.0",
  6208. "symfony/dependency-injection": "^5.4|^6.0",
  6209. "symfony/serializer": "^5.4|^6.0"
  6210. },
  6211. "suggest": {
  6212. "phpdocumentor/reflection-docblock": "To use the PHPDoc",
  6213. "psr/cache-implementation": "To cache results",
  6214. "symfony/doctrine-bridge": "To use Doctrine metadata",
  6215. "symfony/serializer": "To use Serializer metadata"
  6216. },
  6217. "type": "library",
  6218. "autoload": {
  6219. "psr-4": {
  6220. "Symfony\\Component\\PropertyInfo\\": ""
  6221. },
  6222. "exclude-from-classmap": [
  6223. "/Tests/"
  6224. ]
  6225. },
  6226. "notification-url": "https://packagist.org/downloads/",
  6227. "license": [
  6228. "MIT"
  6229. ],
  6230. "authors": [
  6231. {
  6232. "name": "Kévin Dunglas",
  6233. "email": "dunglas@gmail.com"
  6234. },
  6235. {
  6236. "name": "Symfony Community",
  6237. "homepage": "https://symfony.com/contributors"
  6238. }
  6239. ],
  6240. "description": "Extracts information about PHP class' properties using metadata of popular sources",
  6241. "homepage": "https://symfony.com",
  6242. "keywords": [
  6243. "doctrine",
  6244. "phpdoc",
  6245. "property",
  6246. "symfony",
  6247. "type",
  6248. "validator"
  6249. ],
  6250. "support": {
  6251. "source": "https://github.com/symfony/property-info/tree/v6.2.8"
  6252. },
  6253. "funding": [
  6254. {
  6255. "url": "https://symfony.com/sponsor",
  6256. "type": "custom"
  6257. },
  6258. {
  6259. "url": "https://github.com/fabpot",
  6260. "type": "github"
  6261. },
  6262. {
  6263. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6264. "type": "tidelift"
  6265. }
  6266. ],
  6267. "time": "2023-03-14T15:00:05+00:00"
  6268. },
  6269. {
  6270. "name": "symfony/proxy-manager-bridge",
  6271. "version": "v6.2.7",
  6272. "source": {
  6273. "type": "git",
  6274. "url": "https://github.com/symfony/proxy-manager-bridge.git",
  6275. "reference": "534119513ce1d06faa6d55b6717f237e980b4e91"
  6276. },
  6277. "dist": {
  6278. "type": "zip",
  6279. "url": "https://api.github.com/repos/symfony/proxy-manager-bridge/zipball/534119513ce1d06faa6d55b6717f237e980b4e91",
  6280. "reference": "534119513ce1d06faa6d55b6717f237e980b4e91",
  6281. "shasum": ""
  6282. },
  6283. "require": {
  6284. "friendsofphp/proxy-manager-lts": "^1.0.2",
  6285. "php": ">=8.1",
  6286. "symfony/dependency-injection": "^6.2"
  6287. },
  6288. "require-dev": {
  6289. "symfony/config": "^6.1"
  6290. },
  6291. "type": "symfony-bridge",
  6292. "autoload": {
  6293. "psr-4": {
  6294. "Symfony\\Bridge\\ProxyManager\\": ""
  6295. },
  6296. "exclude-from-classmap": [
  6297. "/Tests/"
  6298. ]
  6299. },
  6300. "notification-url": "https://packagist.org/downloads/",
  6301. "license": [
  6302. "MIT"
  6303. ],
  6304. "authors": [
  6305. {
  6306. "name": "Fabien Potencier",
  6307. "email": "fabien@symfony.com"
  6308. },
  6309. {
  6310. "name": "Symfony Community",
  6311. "homepage": "https://symfony.com/contributors"
  6312. }
  6313. ],
  6314. "description": "Provides integration for ProxyManager with various Symfony components",
  6315. "homepage": "https://symfony.com",
  6316. "support": {
  6317. "source": "https://github.com/symfony/proxy-manager-bridge/tree/v6.2.7"
  6318. },
  6319. "funding": [
  6320. {
  6321. "url": "https://symfony.com/sponsor",
  6322. "type": "custom"
  6323. },
  6324. {
  6325. "url": "https://github.com/fabpot",
  6326. "type": "github"
  6327. },
  6328. {
  6329. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6330. "type": "tidelift"
  6331. }
  6332. ],
  6333. "time": "2023-02-16T09:57:23+00:00"
  6334. },
  6335. {
  6336. "name": "symfony/routing",
  6337. "version": "v6.2.8",
  6338. "source": {
  6339. "type": "git",
  6340. "url": "https://github.com/symfony/routing.git",
  6341. "reference": "69062e2823f03b82265d73a966999660f0e1e404"
  6342. },
  6343. "dist": {
  6344. "type": "zip",
  6345. "url": "https://api.github.com/repos/symfony/routing/zipball/69062e2823f03b82265d73a966999660f0e1e404",
  6346. "reference": "69062e2823f03b82265d73a966999660f0e1e404",
  6347. "shasum": ""
  6348. },
  6349. "require": {
  6350. "php": ">=8.1"
  6351. },
  6352. "conflict": {
  6353. "doctrine/annotations": "<1.12",
  6354. "symfony/config": "<6.2",
  6355. "symfony/dependency-injection": "<5.4",
  6356. "symfony/yaml": "<5.4"
  6357. },
  6358. "require-dev": {
  6359. "doctrine/annotations": "^1.12|^2",
  6360. "psr/log": "^1|^2|^3",
  6361. "symfony/config": "^6.2",
  6362. "symfony/dependency-injection": "^5.4|^6.0",
  6363. "symfony/expression-language": "^5.4|^6.0",
  6364. "symfony/http-foundation": "^5.4|^6.0",
  6365. "symfony/yaml": "^5.4|^6.0"
  6366. },
  6367. "suggest": {
  6368. "symfony/config": "For using the all-in-one router or any loader",
  6369. "symfony/expression-language": "For using expression matching",
  6370. "symfony/http-foundation": "For using a Symfony Request object",
  6371. "symfony/yaml": "For using the YAML loader"
  6372. },
  6373. "type": "library",
  6374. "autoload": {
  6375. "psr-4": {
  6376. "Symfony\\Component\\Routing\\": ""
  6377. },
  6378. "exclude-from-classmap": [
  6379. "/Tests/"
  6380. ]
  6381. },
  6382. "notification-url": "https://packagist.org/downloads/",
  6383. "license": [
  6384. "MIT"
  6385. ],
  6386. "authors": [
  6387. {
  6388. "name": "Fabien Potencier",
  6389. "email": "fabien@symfony.com"
  6390. },
  6391. {
  6392. "name": "Symfony Community",
  6393. "homepage": "https://symfony.com/contributors"
  6394. }
  6395. ],
  6396. "description": "Maps an HTTP request to a set of configuration variables",
  6397. "homepage": "https://symfony.com",
  6398. "keywords": [
  6399. "router",
  6400. "routing",
  6401. "uri",
  6402. "url"
  6403. ],
  6404. "support": {
  6405. "source": "https://github.com/symfony/routing/tree/v6.2.8"
  6406. },
  6407. "funding": [
  6408. {
  6409. "url": "https://symfony.com/sponsor",
  6410. "type": "custom"
  6411. },
  6412. {
  6413. "url": "https://github.com/fabpot",
  6414. "type": "github"
  6415. },
  6416. {
  6417. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6418. "type": "tidelift"
  6419. }
  6420. ],
  6421. "time": "2023-03-14T15:00:05+00:00"
  6422. },
  6423. {
  6424. "name": "symfony/runtime",
  6425. "version": "v6.2.8",
  6426. "source": {
  6427. "type": "git",
  6428. "url": "https://github.com/symfony/runtime.git",
  6429. "reference": "f8b0751b33888329be8f8f0481bb81d279ec4157"
  6430. },
  6431. "dist": {
  6432. "type": "zip",
  6433. "url": "https://api.github.com/repos/symfony/runtime/zipball/f8b0751b33888329be8f8f0481bb81d279ec4157",
  6434. "reference": "f8b0751b33888329be8f8f0481bb81d279ec4157",
  6435. "shasum": ""
  6436. },
  6437. "require": {
  6438. "composer-plugin-api": "^1.0|^2.0",
  6439. "php": ">=8.1"
  6440. },
  6441. "conflict": {
  6442. "symfony/dotenv": "<5.4"
  6443. },
  6444. "require-dev": {
  6445. "composer/composer": "^1.0.2|^2.0",
  6446. "symfony/console": "^5.4|^6.0",
  6447. "symfony/dotenv": "^5.4|^6.0",
  6448. "symfony/http-foundation": "^5.4|^6.0",
  6449. "symfony/http-kernel": "^5.4|^6.0"
  6450. },
  6451. "type": "composer-plugin",
  6452. "extra": {
  6453. "class": "Symfony\\Component\\Runtime\\Internal\\ComposerPlugin"
  6454. },
  6455. "autoload": {
  6456. "psr-4": {
  6457. "Symfony\\Component\\Runtime\\": "",
  6458. "Symfony\\Runtime\\Symfony\\Component\\": "Internal/"
  6459. },
  6460. "exclude-from-classmap": [
  6461. "/Tests/"
  6462. ]
  6463. },
  6464. "notification-url": "https://packagist.org/downloads/",
  6465. "license": [
  6466. "MIT"
  6467. ],
  6468. "authors": [
  6469. {
  6470. "name": "Nicolas Grekas",
  6471. "email": "p@tchwork.com"
  6472. },
  6473. {
  6474. "name": "Symfony Community",
  6475. "homepage": "https://symfony.com/contributors"
  6476. }
  6477. ],
  6478. "description": "Enables decoupling PHP applications from global state",
  6479. "homepage": "https://symfony.com",
  6480. "keywords": [
  6481. "runtime"
  6482. ],
  6483. "support": {
  6484. "source": "https://github.com/symfony/runtime/tree/v6.2.8"
  6485. },
  6486. "funding": [
  6487. {
  6488. "url": "https://symfony.com/sponsor",
  6489. "type": "custom"
  6490. },
  6491. {
  6492. "url": "https://github.com/fabpot",
  6493. "type": "github"
  6494. },
  6495. {
  6496. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6497. "type": "tidelift"
  6498. }
  6499. ],
  6500. "time": "2023-03-14T15:48:35+00:00"
  6501. },
  6502. {
  6503. "name": "symfony/security-bundle",
  6504. "version": "v6.2.8",
  6505. "source": {
  6506. "type": "git",
  6507. "url": "https://github.com/symfony/security-bundle.git",
  6508. "reference": "c781ba5ab5f71a5c8bd5fce5b4c8b6ad9eb7f3d5"
  6509. },
  6510. "dist": {
  6511. "type": "zip",
  6512. "url": "https://api.github.com/repos/symfony/security-bundle/zipball/c781ba5ab5f71a5c8bd5fce5b4c8b6ad9eb7f3d5",
  6513. "reference": "c781ba5ab5f71a5c8bd5fce5b4c8b6ad9eb7f3d5",
  6514. "shasum": ""
  6515. },
  6516. "require": {
  6517. "composer-runtime-api": ">=2.1",
  6518. "ext-xml": "*",
  6519. "php": ">=8.1",
  6520. "symfony/config": "^6.1",
  6521. "symfony/dependency-injection": "^6.2",
  6522. "symfony/event-dispatcher": "^5.4|^6.0",
  6523. "symfony/http-foundation": "^6.2",
  6524. "symfony/http-kernel": "^6.2",
  6525. "symfony/password-hasher": "^5.4|^6.0",
  6526. "symfony/security-core": "^6.2",
  6527. "symfony/security-csrf": "^5.4|^6.0",
  6528. "symfony/security-http": "^6.2.6"
  6529. },
  6530. "conflict": {
  6531. "symfony/browser-kit": "<5.4",
  6532. "symfony/console": "<5.4",
  6533. "symfony/framework-bundle": "<5.4",
  6534. "symfony/ldap": "<5.4",
  6535. "symfony/twig-bundle": "<5.4"
  6536. },
  6537. "require-dev": {
  6538. "doctrine/annotations": "^1.10.4|^2",
  6539. "symfony/asset": "^5.4|^6.0",
  6540. "symfony/browser-kit": "^5.4|^6.0",
  6541. "symfony/console": "^5.4|^6.0",
  6542. "symfony/css-selector": "^5.4|^6.0",
  6543. "symfony/dom-crawler": "^5.4|^6.0",
  6544. "symfony/expression-language": "^5.4|^6.0",
  6545. "symfony/form": "^5.4|^6.0",
  6546. "symfony/framework-bundle": "^5.4|^6.0",
  6547. "symfony/ldap": "^5.4|^6.0",
  6548. "symfony/process": "^5.4|^6.0",
  6549. "symfony/rate-limiter": "^5.4|^6.0",
  6550. "symfony/serializer": "^5.4|^6.0",
  6551. "symfony/translation": "^5.4|^6.0",
  6552. "symfony/twig-bridge": "^5.4|^6.0",
  6553. "symfony/twig-bundle": "^5.4|^6.0",
  6554. "symfony/validator": "^5.4|^6.0",
  6555. "symfony/yaml": "^5.4|^6.0",
  6556. "twig/twig": "^2.13|^3.0.4"
  6557. },
  6558. "type": "symfony-bundle",
  6559. "autoload": {
  6560. "psr-4": {
  6561. "Symfony\\Bundle\\SecurityBundle\\": ""
  6562. },
  6563. "exclude-from-classmap": [
  6564. "/Tests/"
  6565. ]
  6566. },
  6567. "notification-url": "https://packagist.org/downloads/",
  6568. "license": [
  6569. "MIT"
  6570. ],
  6571. "authors": [
  6572. {
  6573. "name": "Fabien Potencier",
  6574. "email": "fabien@symfony.com"
  6575. },
  6576. {
  6577. "name": "Symfony Community",
  6578. "homepage": "https://symfony.com/contributors"
  6579. }
  6580. ],
  6581. "description": "Provides a tight integration of the Security component into the Symfony full-stack framework",
  6582. "homepage": "https://symfony.com",
  6583. "support": {
  6584. "source": "https://github.com/symfony/security-bundle/tree/v6.2.8"
  6585. },
  6586. "funding": [
  6587. {
  6588. "url": "https://symfony.com/sponsor",
  6589. "type": "custom"
  6590. },
  6591. {
  6592. "url": "https://github.com/fabpot",
  6593. "type": "github"
  6594. },
  6595. {
  6596. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6597. "type": "tidelift"
  6598. }
  6599. ],
  6600. "time": "2023-03-10T10:06:03+00:00"
  6601. },
  6602. {
  6603. "name": "symfony/security-core",
  6604. "version": "v6.2.8",
  6605. "source": {
  6606. "type": "git",
  6607. "url": "https://github.com/symfony/security-core.git",
  6608. "reference": "c141337bc7451f9a9e464733f1e536bf38d1d2fb"
  6609. },
  6610. "dist": {
  6611. "type": "zip",
  6612. "url": "https://api.github.com/repos/symfony/security-core/zipball/c141337bc7451f9a9e464733f1e536bf38d1d2fb",
  6613. "reference": "c141337bc7451f9a9e464733f1e536bf38d1d2fb",
  6614. "shasum": ""
  6615. },
  6616. "require": {
  6617. "php": ">=8.1",
  6618. "symfony/event-dispatcher-contracts": "^1.1|^2|^3",
  6619. "symfony/password-hasher": "^5.4|^6.0",
  6620. "symfony/service-contracts": "^1.1.6|^2|^3"
  6621. },
  6622. "conflict": {
  6623. "symfony/event-dispatcher": "<5.4",
  6624. "symfony/http-foundation": "<5.4",
  6625. "symfony/ldap": "<5.4",
  6626. "symfony/security-guard": "<5.4",
  6627. "symfony/validator": "<5.4"
  6628. },
  6629. "require-dev": {
  6630. "psr/cache": "^1.0|^2.0|^3.0",
  6631. "psr/container": "^1.1|^2.0",
  6632. "psr/log": "^1|^2|^3",
  6633. "symfony/cache": "^5.4|^6.0",
  6634. "symfony/event-dispatcher": "^5.4|^6.0",
  6635. "symfony/expression-language": "^5.4|^6.0",
  6636. "symfony/http-foundation": "^5.4|^6.0",
  6637. "symfony/ldap": "^5.4|^6.0",
  6638. "symfony/translation": "^5.4|^6.0",
  6639. "symfony/validator": "^5.4|^6.0"
  6640. },
  6641. "suggest": {
  6642. "psr/container-implementation": "To instantiate the Security class",
  6643. "symfony/event-dispatcher": "",
  6644. "symfony/expression-language": "For using the expression voter",
  6645. "symfony/http-foundation": "",
  6646. "symfony/ldap": "For using LDAP integration",
  6647. "symfony/validator": "For using the user password constraint"
  6648. },
  6649. "type": "library",
  6650. "autoload": {
  6651. "psr-4": {
  6652. "Symfony\\Component\\Security\\Core\\": ""
  6653. },
  6654. "exclude-from-classmap": [
  6655. "/Tests/"
  6656. ]
  6657. },
  6658. "notification-url": "https://packagist.org/downloads/",
  6659. "license": [
  6660. "MIT"
  6661. ],
  6662. "authors": [
  6663. {
  6664. "name": "Fabien Potencier",
  6665. "email": "fabien@symfony.com"
  6666. },
  6667. {
  6668. "name": "Symfony Community",
  6669. "homepage": "https://symfony.com/contributors"
  6670. }
  6671. ],
  6672. "description": "Symfony Security Component - Core Library",
  6673. "homepage": "https://symfony.com",
  6674. "support": {
  6675. "source": "https://github.com/symfony/security-core/tree/v6.2.8"
  6676. },
  6677. "funding": [
  6678. {
  6679. "url": "https://symfony.com/sponsor",
  6680. "type": "custom"
  6681. },
  6682. {
  6683. "url": "https://github.com/fabpot",
  6684. "type": "github"
  6685. },
  6686. {
  6687. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6688. "type": "tidelift"
  6689. }
  6690. ],
  6691. "time": "2023-03-10T10:06:03+00:00"
  6692. },
  6693. {
  6694. "name": "symfony/security-csrf",
  6695. "version": "v6.2.7",
  6696. "source": {
  6697. "type": "git",
  6698. "url": "https://github.com/symfony/security-csrf.git",
  6699. "reference": "6cce7efdce68e0670d2f19acebc21dcd0798e333"
  6700. },
  6701. "dist": {
  6702. "type": "zip",
  6703. "url": "https://api.github.com/repos/symfony/security-csrf/zipball/6cce7efdce68e0670d2f19acebc21dcd0798e333",
  6704. "reference": "6cce7efdce68e0670d2f19acebc21dcd0798e333",
  6705. "shasum": ""
  6706. },
  6707. "require": {
  6708. "php": ">=8.1",
  6709. "symfony/security-core": "^5.4|^6.0"
  6710. },
  6711. "conflict": {
  6712. "symfony/http-foundation": "<5.4"
  6713. },
  6714. "require-dev": {
  6715. "symfony/http-foundation": "^5.4|^6.0"
  6716. },
  6717. "suggest": {
  6718. "symfony/http-foundation": "For using the class SessionTokenStorage."
  6719. },
  6720. "type": "library",
  6721. "autoload": {
  6722. "psr-4": {
  6723. "Symfony\\Component\\Security\\Csrf\\": ""
  6724. },
  6725. "exclude-from-classmap": [
  6726. "/Tests/"
  6727. ]
  6728. },
  6729. "notification-url": "https://packagist.org/downloads/",
  6730. "license": [
  6731. "MIT"
  6732. ],
  6733. "authors": [
  6734. {
  6735. "name": "Fabien Potencier",
  6736. "email": "fabien@symfony.com"
  6737. },
  6738. {
  6739. "name": "Symfony Community",
  6740. "homepage": "https://symfony.com/contributors"
  6741. }
  6742. ],
  6743. "description": "Symfony Security Component - CSRF Library",
  6744. "homepage": "https://symfony.com",
  6745. "support": {
  6746. "source": "https://github.com/symfony/security-csrf/tree/v6.2.7"
  6747. },
  6748. "funding": [
  6749. {
  6750. "url": "https://symfony.com/sponsor",
  6751. "type": "custom"
  6752. },
  6753. {
  6754. "url": "https://github.com/fabpot",
  6755. "type": "github"
  6756. },
  6757. {
  6758. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6759. "type": "tidelift"
  6760. }
  6761. ],
  6762. "time": "2023-02-16T09:57:23+00:00"
  6763. },
  6764. {
  6765. "name": "symfony/security-http",
  6766. "version": "v6.2.8",
  6767. "source": {
  6768. "type": "git",
  6769. "url": "https://github.com/symfony/security-http.git",
  6770. "reference": "6d47056ee9f394aeace1799e73ead5a2107f581d"
  6771. },
  6772. "dist": {
  6773. "type": "zip",
  6774. "url": "https://api.github.com/repos/symfony/security-http/zipball/6d47056ee9f394aeace1799e73ead5a2107f581d",
  6775. "reference": "6d47056ee9f394aeace1799e73ead5a2107f581d",
  6776. "shasum": ""
  6777. },
  6778. "require": {
  6779. "php": ">=8.1",
  6780. "symfony/deprecation-contracts": "^2.1|^3",
  6781. "symfony/http-foundation": "^5.4|^6.0",
  6782. "symfony/http-kernel": "^6.2",
  6783. "symfony/polyfill-mbstring": "~1.0",
  6784. "symfony/property-access": "^5.4|^6.0",
  6785. "symfony/security-core": "~6.0.19|~6.1.11|^6.2.5"
  6786. },
  6787. "conflict": {
  6788. "symfony/event-dispatcher": "<5.4.9|>=6,<6.0.9",
  6789. "symfony/security-bundle": "<5.4",
  6790. "symfony/security-csrf": "<5.4"
  6791. },
  6792. "require-dev": {
  6793. "psr/log": "^1|^2|^3",
  6794. "symfony/cache": "^5.4|^6.0",
  6795. "symfony/expression-language": "^5.4|^6.0",
  6796. "symfony/rate-limiter": "^5.4|^6.0",
  6797. "symfony/routing": "^5.4|^6.0",
  6798. "symfony/security-csrf": "^5.4|^6.0",
  6799. "symfony/translation": "^5.4|^6.0"
  6800. },
  6801. "suggest": {
  6802. "symfony/routing": "For using the HttpUtils class to create sub-requests, redirect the user, and match URLs",
  6803. "symfony/security-csrf": "For using tokens to protect authentication/logout attempts"
  6804. },
  6805. "type": "library",
  6806. "autoload": {
  6807. "psr-4": {
  6808. "Symfony\\Component\\Security\\Http\\": ""
  6809. },
  6810. "exclude-from-classmap": [
  6811. "/Tests/"
  6812. ]
  6813. },
  6814. "notification-url": "https://packagist.org/downloads/",
  6815. "license": [
  6816. "MIT"
  6817. ],
  6818. "authors": [
  6819. {
  6820. "name": "Fabien Potencier",
  6821. "email": "fabien@symfony.com"
  6822. },
  6823. {
  6824. "name": "Symfony Community",
  6825. "homepage": "https://symfony.com/contributors"
  6826. }
  6827. ],
  6828. "description": "Symfony Security Component - HTTP Integration",
  6829. "homepage": "https://symfony.com",
  6830. "support": {
  6831. "source": "https://github.com/symfony/security-http/tree/v6.2.8"
  6832. },
  6833. "funding": [
  6834. {
  6835. "url": "https://symfony.com/sponsor",
  6836. "type": "custom"
  6837. },
  6838. {
  6839. "url": "https://github.com/fabpot",
  6840. "type": "github"
  6841. },
  6842. {
  6843. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6844. "type": "tidelift"
  6845. }
  6846. ],
  6847. "time": "2023-03-10T10:06:03+00:00"
  6848. },
  6849. {
  6850. "name": "symfony/serializer",
  6851. "version": "v6.2.8",
  6852. "source": {
  6853. "type": "git",
  6854. "url": "https://github.com/symfony/serializer.git",
  6855. "reference": "db9d36470bf0990990fda9320b8b001bb582f075"
  6856. },
  6857. "dist": {
  6858. "type": "zip",
  6859. "url": "https://api.github.com/repos/symfony/serializer/zipball/db9d36470bf0990990fda9320b8b001bb582f075",
  6860. "reference": "db9d36470bf0990990fda9320b8b001bb582f075",
  6861. "shasum": ""
  6862. },
  6863. "require": {
  6864. "php": ">=8.1",
  6865. "symfony/polyfill-ctype": "~1.8"
  6866. },
  6867. "conflict": {
  6868. "doctrine/annotations": "<1.12",
  6869. "phpdocumentor/reflection-docblock": "<3.2.2",
  6870. "phpdocumentor/type-resolver": "<1.4.0",
  6871. "symfony/dependency-injection": "<5.4",
  6872. "symfony/property-access": "<5.4",
  6873. "symfony/property-info": "<5.4",
  6874. "symfony/uid": "<5.4",
  6875. "symfony/yaml": "<5.4"
  6876. },
  6877. "require-dev": {
  6878. "doctrine/annotations": "^1.12|^2",
  6879. "phpdocumentor/reflection-docblock": "^3.2|^4.0|^5.0",
  6880. "symfony/cache": "^5.4|^6.0",
  6881. "symfony/config": "^5.4|^6.0",
  6882. "symfony/dependency-injection": "^5.4|^6.0",
  6883. "symfony/error-handler": "^5.4|^6.0",
  6884. "symfony/filesystem": "^5.4|^6.0",
  6885. "symfony/form": "^5.4|^6.0",
  6886. "symfony/http-foundation": "^5.4|^6.0",
  6887. "symfony/http-kernel": "^5.4|^6.0",
  6888. "symfony/mime": "^5.4|^6.0",
  6889. "symfony/property-access": "^5.4|^6.0",
  6890. "symfony/property-info": "^5.4|^6.0",
  6891. "symfony/uid": "^5.4|^6.0",
  6892. "symfony/validator": "^5.4|^6.0",
  6893. "symfony/var-dumper": "^5.4|^6.0",
  6894. "symfony/var-exporter": "^5.4|^6.0",
  6895. "symfony/yaml": "^5.4|^6.0"
  6896. },
  6897. "suggest": {
  6898. "psr/cache-implementation": "For using the metadata cache.",
  6899. "symfony/config": "For using the XML mapping loader.",
  6900. "symfony/mime": "For using a MIME type guesser within the DataUriNormalizer.",
  6901. "symfony/property-access": "For using the ObjectNormalizer.",
  6902. "symfony/property-info": "To deserialize relations.",
  6903. "symfony/var-exporter": "For using the metadata compiler.",
  6904. "symfony/yaml": "For using the default YAML mapping loader."
  6905. },
  6906. "type": "library",
  6907. "autoload": {
  6908. "psr-4": {
  6909. "Symfony\\Component\\Serializer\\": ""
  6910. },
  6911. "exclude-from-classmap": [
  6912. "/Tests/"
  6913. ]
  6914. },
  6915. "notification-url": "https://packagist.org/downloads/",
  6916. "license": [
  6917. "MIT"
  6918. ],
  6919. "authors": [
  6920. {
  6921. "name": "Fabien Potencier",
  6922. "email": "fabien@symfony.com"
  6923. },
  6924. {
  6925. "name": "Symfony Community",
  6926. "homepage": "https://symfony.com/contributors"
  6927. }
  6928. ],
  6929. "description": "Handles serializing and deserializing data structures, including object graphs, into array structures or other formats like XML and JSON.",
  6930. "homepage": "https://symfony.com",
  6931. "support": {
  6932. "source": "https://github.com/symfony/serializer/tree/v6.2.8"
  6933. },
  6934. "funding": [
  6935. {
  6936. "url": "https://symfony.com/sponsor",
  6937. "type": "custom"
  6938. },
  6939. {
  6940. "url": "https://github.com/fabpot",
  6941. "type": "github"
  6942. },
  6943. {
  6944. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6945. "type": "tidelift"
  6946. }
  6947. ],
  6948. "time": "2023-03-31T09:14:44+00:00"
  6949. },
  6950. {
  6951. "name": "symfony/service-contracts",
  6952. "version": "v3.2.1",
  6953. "source": {
  6954. "type": "git",
  6955. "url": "https://github.com/symfony/service-contracts.git",
  6956. "reference": "a8c9cedf55f314f3a186041d19537303766df09a"
  6957. },
  6958. "dist": {
  6959. "type": "zip",
  6960. "url": "https://api.github.com/repos/symfony/service-contracts/zipball/a8c9cedf55f314f3a186041d19537303766df09a",
  6961. "reference": "a8c9cedf55f314f3a186041d19537303766df09a",
  6962. "shasum": ""
  6963. },
  6964. "require": {
  6965. "php": ">=8.1",
  6966. "psr/container": "^2.0"
  6967. },
  6968. "conflict": {
  6969. "ext-psr": "<1.1|>=2"
  6970. },
  6971. "suggest": {
  6972. "symfony/service-implementation": ""
  6973. },
  6974. "type": "library",
  6975. "extra": {
  6976. "branch-alias": {
  6977. "dev-main": "3.3-dev"
  6978. },
  6979. "thanks": {
  6980. "name": "symfony/contracts",
  6981. "url": "https://github.com/symfony/contracts"
  6982. }
  6983. },
  6984. "autoload": {
  6985. "psr-4": {
  6986. "Symfony\\Contracts\\Service\\": ""
  6987. },
  6988. "exclude-from-classmap": [
  6989. "/Test/"
  6990. ]
  6991. },
  6992. "notification-url": "https://packagist.org/downloads/",
  6993. "license": [
  6994. "MIT"
  6995. ],
  6996. "authors": [
  6997. {
  6998. "name": "Nicolas Grekas",
  6999. "email": "p@tchwork.com"
  7000. },
  7001. {
  7002. "name": "Symfony Community",
  7003. "homepage": "https://symfony.com/contributors"
  7004. }
  7005. ],
  7006. "description": "Generic abstractions related to writing services",
  7007. "homepage": "https://symfony.com",
  7008. "keywords": [
  7009. "abstractions",
  7010. "contracts",
  7011. "decoupling",
  7012. "interfaces",
  7013. "interoperability",
  7014. "standards"
  7015. ],
  7016. "support": {
  7017. "source": "https://github.com/symfony/service-contracts/tree/v3.2.1"
  7018. },
  7019. "funding": [
  7020. {
  7021. "url": "https://symfony.com/sponsor",
  7022. "type": "custom"
  7023. },
  7024. {
  7025. "url": "https://github.com/fabpot",
  7026. "type": "github"
  7027. },
  7028. {
  7029. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7030. "type": "tidelift"
  7031. }
  7032. ],
  7033. "time": "2023-03-01T10:32:47+00:00"
  7034. },
  7035. {
  7036. "name": "symfony/stopwatch",
  7037. "version": "v6.2.7",
  7038. "source": {
  7039. "type": "git",
  7040. "url": "https://github.com/symfony/stopwatch.git",
  7041. "reference": "f3adc98c1061875dd2edcd45e5b04e63d0e29f8f"
  7042. },
  7043. "dist": {
  7044. "type": "zip",
  7045. "url": "https://api.github.com/repos/symfony/stopwatch/zipball/f3adc98c1061875dd2edcd45e5b04e63d0e29f8f",
  7046. "reference": "f3adc98c1061875dd2edcd45e5b04e63d0e29f8f",
  7047. "shasum": ""
  7048. },
  7049. "require": {
  7050. "php": ">=8.1",
  7051. "symfony/service-contracts": "^1|^2|^3"
  7052. },
  7053. "type": "library",
  7054. "autoload": {
  7055. "psr-4": {
  7056. "Symfony\\Component\\Stopwatch\\": ""
  7057. },
  7058. "exclude-from-classmap": [
  7059. "/Tests/"
  7060. ]
  7061. },
  7062. "notification-url": "https://packagist.org/downloads/",
  7063. "license": [
  7064. "MIT"
  7065. ],
  7066. "authors": [
  7067. {
  7068. "name": "Fabien Potencier",
  7069. "email": "fabien@symfony.com"
  7070. },
  7071. {
  7072. "name": "Symfony Community",
  7073. "homepage": "https://symfony.com/contributors"
  7074. }
  7075. ],
  7076. "description": "Provides a way to profile code",
  7077. "homepage": "https://symfony.com",
  7078. "support": {
  7079. "source": "https://github.com/symfony/stopwatch/tree/v6.2.7"
  7080. },
  7081. "funding": [
  7082. {
  7083. "url": "https://symfony.com/sponsor",
  7084. "type": "custom"
  7085. },
  7086. {
  7087. "url": "https://github.com/fabpot",
  7088. "type": "github"
  7089. },
  7090. {
  7091. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7092. "type": "tidelift"
  7093. }
  7094. ],
  7095. "time": "2023-02-14T08:44:56+00:00"
  7096. },
  7097. {
  7098. "name": "symfony/string",
  7099. "version": "v6.2.8",
  7100. "source": {
  7101. "type": "git",
  7102. "url": "https://github.com/symfony/string.git",
  7103. "reference": "193e83bbd6617d6b2151c37fff10fa7168ebddef"
  7104. },
  7105. "dist": {
  7106. "type": "zip",
  7107. "url": "https://api.github.com/repos/symfony/string/zipball/193e83bbd6617d6b2151c37fff10fa7168ebddef",
  7108. "reference": "193e83bbd6617d6b2151c37fff10fa7168ebddef",
  7109. "shasum": ""
  7110. },
  7111. "require": {
  7112. "php": ">=8.1",
  7113. "symfony/polyfill-ctype": "~1.8",
  7114. "symfony/polyfill-intl-grapheme": "~1.0",
  7115. "symfony/polyfill-intl-normalizer": "~1.0",
  7116. "symfony/polyfill-mbstring": "~1.0"
  7117. },
  7118. "conflict": {
  7119. "symfony/translation-contracts": "<2.0"
  7120. },
  7121. "require-dev": {
  7122. "symfony/error-handler": "^5.4|^6.0",
  7123. "symfony/http-client": "^5.4|^6.0",
  7124. "symfony/intl": "^6.2",
  7125. "symfony/translation-contracts": "^2.0|^3.0",
  7126. "symfony/var-exporter": "^5.4|^6.0"
  7127. },
  7128. "type": "library",
  7129. "autoload": {
  7130. "files": [
  7131. "Resources/functions.php"
  7132. ],
  7133. "psr-4": {
  7134. "Symfony\\Component\\String\\": ""
  7135. },
  7136. "exclude-from-classmap": [
  7137. "/Tests/"
  7138. ]
  7139. },
  7140. "notification-url": "https://packagist.org/downloads/",
  7141. "license": [
  7142. "MIT"
  7143. ],
  7144. "authors": [
  7145. {
  7146. "name": "Nicolas Grekas",
  7147. "email": "p@tchwork.com"
  7148. },
  7149. {
  7150. "name": "Symfony Community",
  7151. "homepage": "https://symfony.com/contributors"
  7152. }
  7153. ],
  7154. "description": "Provides an object-oriented API to strings and deals with bytes, UTF-8 code points and grapheme clusters in a unified way",
  7155. "homepage": "https://symfony.com",
  7156. "keywords": [
  7157. "grapheme",
  7158. "i18n",
  7159. "string",
  7160. "unicode",
  7161. "utf-8",
  7162. "utf8"
  7163. ],
  7164. "support": {
  7165. "source": "https://github.com/symfony/string/tree/v6.2.8"
  7166. },
  7167. "funding": [
  7168. {
  7169. "url": "https://symfony.com/sponsor",
  7170. "type": "custom"
  7171. },
  7172. {
  7173. "url": "https://github.com/fabpot",
  7174. "type": "github"
  7175. },
  7176. {
  7177. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7178. "type": "tidelift"
  7179. }
  7180. ],
  7181. "time": "2023-03-20T16:06:02+00:00"
  7182. },
  7183. {
  7184. "name": "symfony/translation",
  7185. "version": "v6.2.8",
  7186. "source": {
  7187. "type": "git",
  7188. "url": "https://github.com/symfony/translation.git",
  7189. "reference": "817535dbb1721df8b3a8f2489dc7e50bcd6209b5"
  7190. },
  7191. "dist": {
  7192. "type": "zip",
  7193. "url": "https://api.github.com/repos/symfony/translation/zipball/817535dbb1721df8b3a8f2489dc7e50bcd6209b5",
  7194. "reference": "817535dbb1721df8b3a8f2489dc7e50bcd6209b5",
  7195. "shasum": ""
  7196. },
  7197. "require": {
  7198. "php": ">=8.1",
  7199. "symfony/polyfill-mbstring": "~1.0",
  7200. "symfony/translation-contracts": "^2.3|^3.0"
  7201. },
  7202. "conflict": {
  7203. "symfony/config": "<5.4",
  7204. "symfony/console": "<5.4",
  7205. "symfony/dependency-injection": "<5.4",
  7206. "symfony/http-kernel": "<5.4",
  7207. "symfony/twig-bundle": "<5.4",
  7208. "symfony/yaml": "<5.4"
  7209. },
  7210. "provide": {
  7211. "symfony/translation-implementation": "2.3|3.0"
  7212. },
  7213. "require-dev": {
  7214. "nikic/php-parser": "^4.13",
  7215. "psr/log": "^1|^2|^3",
  7216. "symfony/config": "^5.4|^6.0",
  7217. "symfony/console": "^5.4|^6.0",
  7218. "symfony/dependency-injection": "^5.4|^6.0",
  7219. "symfony/finder": "^5.4|^6.0",
  7220. "symfony/http-client-contracts": "^1.1|^2.0|^3.0",
  7221. "symfony/http-kernel": "^5.4|^6.0",
  7222. "symfony/intl": "^5.4|^6.0",
  7223. "symfony/polyfill-intl-icu": "^1.21",
  7224. "symfony/routing": "^5.4|^6.0",
  7225. "symfony/service-contracts": "^1.1.2|^2|^3",
  7226. "symfony/yaml": "^5.4|^6.0"
  7227. },
  7228. "suggest": {
  7229. "nikic/php-parser": "To use PhpAstExtractor",
  7230. "psr/log-implementation": "To use logging capability in translator",
  7231. "symfony/config": "",
  7232. "symfony/yaml": ""
  7233. },
  7234. "type": "library",
  7235. "autoload": {
  7236. "files": [
  7237. "Resources/functions.php"
  7238. ],
  7239. "psr-4": {
  7240. "Symfony\\Component\\Translation\\": ""
  7241. },
  7242. "exclude-from-classmap": [
  7243. "/Tests/"
  7244. ]
  7245. },
  7246. "notification-url": "https://packagist.org/downloads/",
  7247. "license": [
  7248. "MIT"
  7249. ],
  7250. "authors": [
  7251. {
  7252. "name": "Fabien Potencier",
  7253. "email": "fabien@symfony.com"
  7254. },
  7255. {
  7256. "name": "Symfony Community",
  7257. "homepage": "https://symfony.com/contributors"
  7258. }
  7259. ],
  7260. "description": "Provides tools to internationalize your application",
  7261. "homepage": "https://symfony.com",
  7262. "support": {
  7263. "source": "https://github.com/symfony/translation/tree/v6.2.8"
  7264. },
  7265. "funding": [
  7266. {
  7267. "url": "https://symfony.com/sponsor",
  7268. "type": "custom"
  7269. },
  7270. {
  7271. "url": "https://github.com/fabpot",
  7272. "type": "github"
  7273. },
  7274. {
  7275. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7276. "type": "tidelift"
  7277. }
  7278. ],
  7279. "time": "2023-03-31T09:14:44+00:00"
  7280. },
  7281. {
  7282. "name": "symfony/translation-contracts",
  7283. "version": "v3.2.1",
  7284. "source": {
  7285. "type": "git",
  7286. "url": "https://github.com/symfony/translation-contracts.git",
  7287. "reference": "dfec258b9dd17a6b24420d464c43bffe347441c8"
  7288. },
  7289. "dist": {
  7290. "type": "zip",
  7291. "url": "https://api.github.com/repos/symfony/translation-contracts/zipball/dfec258b9dd17a6b24420d464c43bffe347441c8",
  7292. "reference": "dfec258b9dd17a6b24420d464c43bffe347441c8",
  7293. "shasum": ""
  7294. },
  7295. "require": {
  7296. "php": ">=8.1"
  7297. },
  7298. "suggest": {
  7299. "symfony/translation-implementation": ""
  7300. },
  7301. "type": "library",
  7302. "extra": {
  7303. "branch-alias": {
  7304. "dev-main": "3.3-dev"
  7305. },
  7306. "thanks": {
  7307. "name": "symfony/contracts",
  7308. "url": "https://github.com/symfony/contracts"
  7309. }
  7310. },
  7311. "autoload": {
  7312. "psr-4": {
  7313. "Symfony\\Contracts\\Translation\\": ""
  7314. },
  7315. "exclude-from-classmap": [
  7316. "/Test/"
  7317. ]
  7318. },
  7319. "notification-url": "https://packagist.org/downloads/",
  7320. "license": [
  7321. "MIT"
  7322. ],
  7323. "authors": [
  7324. {
  7325. "name": "Nicolas Grekas",
  7326. "email": "p@tchwork.com"
  7327. },
  7328. {
  7329. "name": "Symfony Community",
  7330. "homepage": "https://symfony.com/contributors"
  7331. }
  7332. ],
  7333. "description": "Generic abstractions related to translation",
  7334. "homepage": "https://symfony.com",
  7335. "keywords": [
  7336. "abstractions",
  7337. "contracts",
  7338. "decoupling",
  7339. "interfaces",
  7340. "interoperability",
  7341. "standards"
  7342. ],
  7343. "support": {
  7344. "source": "https://github.com/symfony/translation-contracts/tree/v3.2.1"
  7345. },
  7346. "funding": [
  7347. {
  7348. "url": "https://symfony.com/sponsor",
  7349. "type": "custom"
  7350. },
  7351. {
  7352. "url": "https://github.com/fabpot",
  7353. "type": "github"
  7354. },
  7355. {
  7356. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7357. "type": "tidelift"
  7358. }
  7359. ],
  7360. "time": "2023-03-01T10:32:47+00:00"
  7361. },
  7362. {
  7363. "name": "symfony/twig-bridge",
  7364. "version": "v6.2.8",
  7365. "source": {
  7366. "type": "git",
  7367. "url": "https://github.com/symfony/twig-bridge.git",
  7368. "reference": "30e3ad6ae749b2d2700ecf9b4a1a9d5c96b18927"
  7369. },
  7370. "dist": {
  7371. "type": "zip",
  7372. "url": "https://api.github.com/repos/symfony/twig-bridge/zipball/30e3ad6ae749b2d2700ecf9b4a1a9d5c96b18927",
  7373. "reference": "30e3ad6ae749b2d2700ecf9b4a1a9d5c96b18927",
  7374. "shasum": ""
  7375. },
  7376. "require": {
  7377. "php": ">=8.1",
  7378. "symfony/translation-contracts": "^1.1|^2|^3",
  7379. "twig/twig": "^2.13|^3.0.4"
  7380. },
  7381. "conflict": {
  7382. "phpdocumentor/reflection-docblock": "<3.2.2",
  7383. "phpdocumentor/type-resolver": "<1.4.0",
  7384. "symfony/console": "<5.4",
  7385. "symfony/form": "<6.2.7",
  7386. "symfony/http-foundation": "<5.4",
  7387. "symfony/http-kernel": "<6.2",
  7388. "symfony/mime": "<6.2",
  7389. "symfony/translation": "<5.4",
  7390. "symfony/workflow": "<5.4"
  7391. },
  7392. "require-dev": {
  7393. "doctrine/annotations": "^1.12|^2",
  7394. "egulias/email-validator": "^2.1.10|^3|^4",
  7395. "league/html-to-markdown": "^5.0",
  7396. "phpdocumentor/reflection-docblock": "^3.0|^4.0|^5.0",
  7397. "symfony/asset": "^5.4|^6.0",
  7398. "symfony/console": "^5.4|^6.0",
  7399. "symfony/dependency-injection": "^5.4|^6.0",
  7400. "symfony/expression-language": "^5.4|^6.0",
  7401. "symfony/finder": "^5.4|^6.0",
  7402. "symfony/form": "^6.2.7",
  7403. "symfony/html-sanitizer": "^6.1",
  7404. "symfony/http-foundation": "^5.4|^6.0",
  7405. "symfony/http-kernel": "^6.2",
  7406. "symfony/intl": "^5.4|^6.0",
  7407. "symfony/mime": "^6.2",
  7408. "symfony/polyfill-intl-icu": "~1.0",
  7409. "symfony/property-info": "^5.4|^6.0",
  7410. "symfony/routing": "^5.4|^6.0",
  7411. "symfony/security-acl": "^2.8|^3.0",
  7412. "symfony/security-core": "^5.4|^6.0",
  7413. "symfony/security-csrf": "^5.4|^6.0",
  7414. "symfony/security-http": "^5.4|^6.0",
  7415. "symfony/serializer": "^6.2",
  7416. "symfony/stopwatch": "^5.4|^6.0",
  7417. "symfony/translation": "^5.4|^6.0",
  7418. "symfony/web-link": "^5.4|^6.0",
  7419. "symfony/workflow": "^5.4|^6.0",
  7420. "symfony/yaml": "^5.4|^6.0",
  7421. "twig/cssinliner-extra": "^2.12|^3",
  7422. "twig/inky-extra": "^2.12|^3",
  7423. "twig/markdown-extra": "^2.12|^3"
  7424. },
  7425. "suggest": {
  7426. "symfony/asset": "For using the AssetExtension",
  7427. "symfony/expression-language": "For using the ExpressionExtension",
  7428. "symfony/finder": "",
  7429. "symfony/form": "For using the FormExtension",
  7430. "symfony/html-sanitizer": "For using the HtmlSanitizerExtension",
  7431. "symfony/http-kernel": "For using the HttpKernelExtension",
  7432. "symfony/routing": "For using the RoutingExtension",
  7433. "symfony/security-core": "For using the SecurityExtension",
  7434. "symfony/security-csrf": "For using the CsrfExtension",
  7435. "symfony/security-http": "For using the LogoutUrlExtension",
  7436. "symfony/stopwatch": "For using the StopwatchExtension",
  7437. "symfony/translation": "For using the TranslationExtension",
  7438. "symfony/var-dumper": "For using the DumpExtension",
  7439. "symfony/web-link": "For using the WebLinkExtension",
  7440. "symfony/yaml": "For using the YamlExtension"
  7441. },
  7442. "type": "symfony-bridge",
  7443. "autoload": {
  7444. "psr-4": {
  7445. "Symfony\\Bridge\\Twig\\": ""
  7446. },
  7447. "exclude-from-classmap": [
  7448. "/Tests/"
  7449. ]
  7450. },
  7451. "notification-url": "https://packagist.org/downloads/",
  7452. "license": [
  7453. "MIT"
  7454. ],
  7455. "authors": [
  7456. {
  7457. "name": "Fabien Potencier",
  7458. "email": "fabien@symfony.com"
  7459. },
  7460. {
  7461. "name": "Symfony Community",
  7462. "homepage": "https://symfony.com/contributors"
  7463. }
  7464. ],
  7465. "description": "Provides integration for Twig with various Symfony components",
  7466. "homepage": "https://symfony.com",
  7467. "support": {
  7468. "source": "https://github.com/symfony/twig-bridge/tree/v6.2.8"
  7469. },
  7470. "funding": [
  7471. {
  7472. "url": "https://symfony.com/sponsor",
  7473. "type": "custom"
  7474. },
  7475. {
  7476. "url": "https://github.com/fabpot",
  7477. "type": "github"
  7478. },
  7479. {
  7480. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7481. "type": "tidelift"
  7482. }
  7483. ],
  7484. "time": "2023-03-31T09:14:44+00:00"
  7485. },
  7486. {
  7487. "name": "symfony/twig-bundle",
  7488. "version": "v6.2.7",
  7489. "source": {
  7490. "type": "git",
  7491. "url": "https://github.com/symfony/twig-bundle.git",
  7492. "reference": "8bb562655c6ae4b8fae9cf72077591f38b961566"
  7493. },
  7494. "dist": {
  7495. "type": "zip",
  7496. "url": "https://api.github.com/repos/symfony/twig-bundle/zipball/8bb562655c6ae4b8fae9cf72077591f38b961566",
  7497. "reference": "8bb562655c6ae4b8fae9cf72077591f38b961566",
  7498. "shasum": ""
  7499. },
  7500. "require": {
  7501. "composer-runtime-api": ">=2.1",
  7502. "php": ">=8.1",
  7503. "symfony/config": "^6.1",
  7504. "symfony/dependency-injection": "^6.1",
  7505. "symfony/http-foundation": "^5.4|^6.0",
  7506. "symfony/http-kernel": "^6.2",
  7507. "symfony/twig-bridge": "^6.2",
  7508. "twig/twig": "^2.13|^3.0.4"
  7509. },
  7510. "conflict": {
  7511. "symfony/framework-bundle": "<5.4",
  7512. "symfony/translation": "<5.4"
  7513. },
  7514. "require-dev": {
  7515. "doctrine/annotations": "^1.10.4|^2",
  7516. "symfony/asset": "^5.4|^6.0",
  7517. "symfony/expression-language": "^5.4|^6.0",
  7518. "symfony/finder": "^5.4|^6.0",
  7519. "symfony/form": "^5.4|^6.0",
  7520. "symfony/framework-bundle": "^5.4|^6.0",
  7521. "symfony/routing": "^5.4|^6.0",
  7522. "symfony/stopwatch": "^5.4|^6.0",
  7523. "symfony/translation": "^5.4|^6.0",
  7524. "symfony/web-link": "^5.4|^6.0",
  7525. "symfony/yaml": "^5.4|^6.0"
  7526. },
  7527. "type": "symfony-bundle",
  7528. "autoload": {
  7529. "psr-4": {
  7530. "Symfony\\Bundle\\TwigBundle\\": ""
  7531. },
  7532. "exclude-from-classmap": [
  7533. "/Tests/"
  7534. ]
  7535. },
  7536. "notification-url": "https://packagist.org/downloads/",
  7537. "license": [
  7538. "MIT"
  7539. ],
  7540. "authors": [
  7541. {
  7542. "name": "Fabien Potencier",
  7543. "email": "fabien@symfony.com"
  7544. },
  7545. {
  7546. "name": "Symfony Community",
  7547. "homepage": "https://symfony.com/contributors"
  7548. }
  7549. ],
  7550. "description": "Provides a tight integration of Twig into the Symfony full-stack framework",
  7551. "homepage": "https://symfony.com",
  7552. "support": {
  7553. "source": "https://github.com/symfony/twig-bundle/tree/v6.2.7"
  7554. },
  7555. "funding": [
  7556. {
  7557. "url": "https://symfony.com/sponsor",
  7558. "type": "custom"
  7559. },
  7560. {
  7561. "url": "https://github.com/fabpot",
  7562. "type": "github"
  7563. },
  7564. {
  7565. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7566. "type": "tidelift"
  7567. }
  7568. ],
  7569. "time": "2023-02-14T08:44:56+00:00"
  7570. },
  7571. {
  7572. "name": "symfony/ux-live-component",
  7573. "version": "v2.7.1",
  7574. "source": {
  7575. "type": "git",
  7576. "url": "https://github.com/symfony/ux-live-component.git",
  7577. "reference": "79066fbf5e3e178bddc8cf2a847ce427f6bd9327"
  7578. },
  7579. "dist": {
  7580. "type": "zip",
  7581. "url": "https://api.github.com/repos/symfony/ux-live-component/zipball/79066fbf5e3e178bddc8cf2a847ce427f6bd9327",
  7582. "reference": "79066fbf5e3e178bddc8cf2a847ce427f6bd9327",
  7583. "shasum": ""
  7584. },
  7585. "require": {
  7586. "php": ">=8.0",
  7587. "symfony/property-access": "^5.4|^6.0",
  7588. "symfony/serializer": "^5.4|^6.0",
  7589. "symfony/ux-twig-component": "^2.5"
  7590. },
  7591. "conflict": {
  7592. "symfony/config": "<5.4.0"
  7593. },
  7594. "require-dev": {
  7595. "doctrine/annotations": "^1.0",
  7596. "doctrine/doctrine-bundle": "^2.0",
  7597. "doctrine/orm": "^2.7",
  7598. "symfony/dependency-injection": "^5.4|^6.0",
  7599. "symfony/form": "^5.4|^6.0",
  7600. "symfony/framework-bundle": "^5.4|^6.0",
  7601. "symfony/phpunit-bridge": "^6.0",
  7602. "symfony/security-csrf": "^5.4|^6.0",
  7603. "symfony/twig-bundle": "^5.4|^6.0",
  7604. "symfony/validator": "^5.4|^6.0",
  7605. "zenstruck/browser": "^1.2.0",
  7606. "zenstruck/foundry": "^1.10"
  7607. },
  7608. "type": "symfony-bundle",
  7609. "extra": {
  7610. "thanks": {
  7611. "name": "symfony/ux",
  7612. "url": "https://github.com/symfony/ux"
  7613. }
  7614. },
  7615. "autoload": {
  7616. "psr-4": {
  7617. "Symfony\\UX\\LiveComponent\\": "src/"
  7618. }
  7619. },
  7620. "notification-url": "https://packagist.org/downloads/",
  7621. "license": [
  7622. "MIT"
  7623. ],
  7624. "authors": [
  7625. {
  7626. "name": "Symfony Community",
  7627. "homepage": "https://symfony.com/contributors"
  7628. }
  7629. ],
  7630. "description": "Live components for Symfony",
  7631. "homepage": "https://symfony.com",
  7632. "keywords": [
  7633. "components",
  7634. "symfony-ux",
  7635. "twig"
  7636. ],
  7637. "support": {
  7638. "source": "https://github.com/symfony/ux-live-component/tree/v2.7.1"
  7639. },
  7640. "funding": [
  7641. {
  7642. "url": "https://symfony.com/sponsor",
  7643. "type": "custom"
  7644. },
  7645. {
  7646. "url": "https://github.com/fabpot",
  7647. "type": "github"
  7648. },
  7649. {
  7650. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7651. "type": "tidelift"
  7652. }
  7653. ],
  7654. "time": "2023-01-24T15:57:44+00:00"
  7655. },
  7656. {
  7657. "name": "symfony/ux-twig-component",
  7658. "version": "v2.7.1",
  7659. "source": {
  7660. "type": "git",
  7661. "url": "https://github.com/symfony/ux-twig-component.git",
  7662. "reference": "d304d6b8b27821f7d7e62cbdff21e417636d87bc"
  7663. },
  7664. "dist": {
  7665. "type": "zip",
  7666. "url": "https://api.github.com/repos/symfony/ux-twig-component/zipball/d304d6b8b27821f7d7e62cbdff21e417636d87bc",
  7667. "reference": "d304d6b8b27821f7d7e62cbdff21e417636d87bc",
  7668. "shasum": ""
  7669. },
  7670. "require": {
  7671. "php": ">=8.0",
  7672. "symfony/dependency-injection": "^5.4|^6.0",
  7673. "symfony/event-dispatcher": "^5.4|^6.0",
  7674. "symfony/property-access": "^5.4|^6.0",
  7675. "twig/twig": "^2.0|^3.0"
  7676. },
  7677. "conflict": {
  7678. "symfony/config": "<5.4.0"
  7679. },
  7680. "require-dev": {
  7681. "symfony/framework-bundle": "^5.4|^6.0",
  7682. "symfony/phpunit-bridge": "^6.0",
  7683. "symfony/twig-bundle": "^5.4|^6.0",
  7684. "symfony/webpack-encore-bundle": "^1.15"
  7685. },
  7686. "type": "symfony-bundle",
  7687. "extra": {
  7688. "thanks": {
  7689. "name": "symfony/ux",
  7690. "url": "https://github.com/symfony/ux"
  7691. }
  7692. },
  7693. "autoload": {
  7694. "psr-4": {
  7695. "Symfony\\UX\\TwigComponent\\": "src/"
  7696. }
  7697. },
  7698. "notification-url": "https://packagist.org/downloads/",
  7699. "license": [
  7700. "MIT"
  7701. ],
  7702. "authors": [
  7703. {
  7704. "name": "Symfony Community",
  7705. "homepage": "https://symfony.com/contributors"
  7706. }
  7707. ],
  7708. "description": "Twig components for Symfony",
  7709. "homepage": "https://symfony.com",
  7710. "keywords": [
  7711. "components",
  7712. "symfony-ux",
  7713. "twig"
  7714. ],
  7715. "support": {
  7716. "source": "https://github.com/symfony/ux-twig-component/tree/v2.7.1"
  7717. },
  7718. "funding": [
  7719. {
  7720. "url": "https://symfony.com/sponsor",
  7721. "type": "custom"
  7722. },
  7723. {
  7724. "url": "https://github.com/fabpot",
  7725. "type": "github"
  7726. },
  7727. {
  7728. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7729. "type": "tidelift"
  7730. }
  7731. ],
  7732. "time": "2023-01-19T15:55:42+00:00"
  7733. },
  7734. {
  7735. "name": "symfony/validator",
  7736. "version": "v6.2.8",
  7737. "source": {
  7738. "type": "git",
  7739. "url": "https://github.com/symfony/validator.git",
  7740. "reference": "c63584f84edbdba9d2519f888350dd90615abe35"
  7741. },
  7742. "dist": {
  7743. "type": "zip",
  7744. "url": "https://api.github.com/repos/symfony/validator/zipball/c63584f84edbdba9d2519f888350dd90615abe35",
  7745. "reference": "c63584f84edbdba9d2519f888350dd90615abe35",
  7746. "shasum": ""
  7747. },
  7748. "require": {
  7749. "php": ">=8.1",
  7750. "symfony/deprecation-contracts": "^2.1|^3",
  7751. "symfony/polyfill-ctype": "~1.8",
  7752. "symfony/polyfill-mbstring": "~1.0",
  7753. "symfony/translation-contracts": "^1.1|^2|^3"
  7754. },
  7755. "conflict": {
  7756. "doctrine/annotations": "<1.13",
  7757. "doctrine/lexer": "<1.1",
  7758. "phpunit/phpunit": "<5.4.3",
  7759. "symfony/dependency-injection": "<5.4",
  7760. "symfony/expression-language": "<5.4",
  7761. "symfony/http-kernel": "<5.4",
  7762. "symfony/intl": "<5.4",
  7763. "symfony/property-info": "<5.4",
  7764. "symfony/translation": "<5.4",
  7765. "symfony/yaml": "<5.4"
  7766. },
  7767. "require-dev": {
  7768. "doctrine/annotations": "^1.13|^2",
  7769. "egulias/email-validator": "^2.1.10|^3|^4",
  7770. "symfony/cache": "^5.4|^6.0",
  7771. "symfony/config": "^5.4|^6.0",
  7772. "symfony/console": "^5.4|^6.0",
  7773. "symfony/dependency-injection": "^5.4|^6.0",
  7774. "symfony/expression-language": "^5.4|^6.0",
  7775. "symfony/finder": "^5.4|^6.0",
  7776. "symfony/http-client": "^5.4|^6.0",
  7777. "symfony/http-foundation": "^5.4|^6.0",
  7778. "symfony/http-kernel": "^5.4|^6.0",
  7779. "symfony/intl": "^5.4|^6.0",
  7780. "symfony/mime": "^5.4|^6.0",
  7781. "symfony/property-access": "^5.4|^6.0",
  7782. "symfony/property-info": "^5.4|^6.0",
  7783. "symfony/translation": "^5.4|^6.0",
  7784. "symfony/yaml": "^5.4|^6.0"
  7785. },
  7786. "suggest": {
  7787. "egulias/email-validator": "Strict (RFC compliant) email validation",
  7788. "psr/cache-implementation": "For using the mapping cache.",
  7789. "symfony/config": "",
  7790. "symfony/expression-language": "For using the Expression validator and the ExpressionLanguageSyntax constraints",
  7791. "symfony/http-foundation": "",
  7792. "symfony/intl": "",
  7793. "symfony/property-access": "For accessing properties within comparison constraints",
  7794. "symfony/property-info": "To automatically add NotNull and Type constraints",
  7795. "symfony/translation": "For translating validation errors.",
  7796. "symfony/yaml": ""
  7797. },
  7798. "type": "library",
  7799. "autoload": {
  7800. "psr-4": {
  7801. "Symfony\\Component\\Validator\\": ""
  7802. },
  7803. "exclude-from-classmap": [
  7804. "/Tests/"
  7805. ]
  7806. },
  7807. "notification-url": "https://packagist.org/downloads/",
  7808. "license": [
  7809. "MIT"
  7810. ],
  7811. "authors": [
  7812. {
  7813. "name": "Fabien Potencier",
  7814. "email": "fabien@symfony.com"
  7815. },
  7816. {
  7817. "name": "Symfony Community",
  7818. "homepage": "https://symfony.com/contributors"
  7819. }
  7820. ],
  7821. "description": "Provides tools to validate values",
  7822. "homepage": "https://symfony.com",
  7823. "support": {
  7824. "source": "https://github.com/symfony/validator/tree/v6.2.8"
  7825. },
  7826. "funding": [
  7827. {
  7828. "url": "https://symfony.com/sponsor",
  7829. "type": "custom"
  7830. },
  7831. {
  7832. "url": "https://github.com/fabpot",
  7833. "type": "github"
  7834. },
  7835. {
  7836. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7837. "type": "tidelift"
  7838. }
  7839. ],
  7840. "time": "2023-03-20T16:06:02+00:00"
  7841. },
  7842. {
  7843. "name": "symfony/var-dumper",
  7844. "version": "v6.2.8",
  7845. "source": {
  7846. "type": "git",
  7847. "url": "https://github.com/symfony/var-dumper.git",
  7848. "reference": "d37ab6787be2db993747b6218fcc96e8e3bb4bd0"
  7849. },
  7850. "dist": {
  7851. "type": "zip",
  7852. "url": "https://api.github.com/repos/symfony/var-dumper/zipball/d37ab6787be2db993747b6218fcc96e8e3bb4bd0",
  7853. "reference": "d37ab6787be2db993747b6218fcc96e8e3bb4bd0",
  7854. "shasum": ""
  7855. },
  7856. "require": {
  7857. "php": ">=8.1",
  7858. "symfony/polyfill-mbstring": "~1.0"
  7859. },
  7860. "conflict": {
  7861. "phpunit/phpunit": "<5.4.3",
  7862. "symfony/console": "<5.4"
  7863. },
  7864. "require-dev": {
  7865. "ext-iconv": "*",
  7866. "symfony/console": "^5.4|^6.0",
  7867. "symfony/process": "^5.4|^6.0",
  7868. "symfony/uid": "^5.4|^6.0",
  7869. "twig/twig": "^2.13|^3.0.4"
  7870. },
  7871. "suggest": {
  7872. "ext-iconv": "To convert non-UTF-8 strings to UTF-8 (or symfony/polyfill-iconv in case ext-iconv cannot be used).",
  7873. "ext-intl": "To show region name in time zone dump",
  7874. "symfony/console": "To use the ServerDumpCommand and/or the bin/var-dump-server script"
  7875. },
  7876. "bin": [
  7877. "Resources/bin/var-dump-server"
  7878. ],
  7879. "type": "library",
  7880. "autoload": {
  7881. "files": [
  7882. "Resources/functions/dump.php"
  7883. ],
  7884. "psr-4": {
  7885. "Symfony\\Component\\VarDumper\\": ""
  7886. },
  7887. "exclude-from-classmap": [
  7888. "/Tests/"
  7889. ]
  7890. },
  7891. "notification-url": "https://packagist.org/downloads/",
  7892. "license": [
  7893. "MIT"
  7894. ],
  7895. "authors": [
  7896. {
  7897. "name": "Nicolas Grekas",
  7898. "email": "p@tchwork.com"
  7899. },
  7900. {
  7901. "name": "Symfony Community",
  7902. "homepage": "https://symfony.com/contributors"
  7903. }
  7904. ],
  7905. "description": "Provides mechanisms for walking through any arbitrary PHP variable",
  7906. "homepage": "https://symfony.com",
  7907. "keywords": [
  7908. "debug",
  7909. "dump"
  7910. ],
  7911. "support": {
  7912. "source": "https://github.com/symfony/var-dumper/tree/v6.2.8"
  7913. },
  7914. "funding": [
  7915. {
  7916. "url": "https://symfony.com/sponsor",
  7917. "type": "custom"
  7918. },
  7919. {
  7920. "url": "https://github.com/fabpot",
  7921. "type": "github"
  7922. },
  7923. {
  7924. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7925. "type": "tidelift"
  7926. }
  7927. ],
  7928. "time": "2023-03-29T21:42:15+00:00"
  7929. },
  7930. {
  7931. "name": "symfony/var-exporter",
  7932. "version": "v6.2.8",
  7933. "source": {
  7934. "type": "git",
  7935. "url": "https://github.com/symfony/var-exporter.git",
  7936. "reference": "8302bb670204500d492c6b8c595ee9a27da62cd6"
  7937. },
  7938. "dist": {
  7939. "type": "zip",
  7940. "url": "https://api.github.com/repos/symfony/var-exporter/zipball/8302bb670204500d492c6b8c595ee9a27da62cd6",
  7941. "reference": "8302bb670204500d492c6b8c595ee9a27da62cd6",
  7942. "shasum": ""
  7943. },
  7944. "require": {
  7945. "php": ">=8.1"
  7946. },
  7947. "require-dev": {
  7948. "symfony/var-dumper": "^5.4|^6.0"
  7949. },
  7950. "type": "library",
  7951. "autoload": {
  7952. "psr-4": {
  7953. "Symfony\\Component\\VarExporter\\": ""
  7954. },
  7955. "exclude-from-classmap": [
  7956. "/Tests/"
  7957. ]
  7958. },
  7959. "notification-url": "https://packagist.org/downloads/",
  7960. "license": [
  7961. "MIT"
  7962. ],
  7963. "authors": [
  7964. {
  7965. "name": "Nicolas Grekas",
  7966. "email": "p@tchwork.com"
  7967. },
  7968. {
  7969. "name": "Symfony Community",
  7970. "homepage": "https://symfony.com/contributors"
  7971. }
  7972. ],
  7973. "description": "Allows exporting any serializable PHP data structure to plain PHP code",
  7974. "homepage": "https://symfony.com",
  7975. "keywords": [
  7976. "clone",
  7977. "construct",
  7978. "export",
  7979. "hydrate",
  7980. "instantiate",
  7981. "lazy-loading",
  7982. "proxy",
  7983. "serialize"
  7984. ],
  7985. "support": {
  7986. "source": "https://github.com/symfony/var-exporter/tree/v6.2.8"
  7987. },
  7988. "funding": [
  7989. {
  7990. "url": "https://symfony.com/sponsor",
  7991. "type": "custom"
  7992. },
  7993. {
  7994. "url": "https://github.com/fabpot",
  7995. "type": "github"
  7996. },
  7997. {
  7998. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7999. "type": "tidelift"
  8000. }
  8001. ],
  8002. "time": "2023-03-14T15:48:45+00:00"
  8003. },
  8004. {
  8005. "name": "symfony/web-link",
  8006. "version": "v6.2.7",
  8007. "source": {
  8008. "type": "git",
  8009. "url": "https://github.com/symfony/web-link.git",
  8010. "reference": "410aac2034608ac661cdca1968e3c56d4164abc8"
  8011. },
  8012. "dist": {
  8013. "type": "zip",
  8014. "url": "https://api.github.com/repos/symfony/web-link/zipball/410aac2034608ac661cdca1968e3c56d4164abc8",
  8015. "reference": "410aac2034608ac661cdca1968e3c56d4164abc8",
  8016. "shasum": ""
  8017. },
  8018. "require": {
  8019. "php": ">=8.1",
  8020. "psr/link": "^1.1|^2.0"
  8021. },
  8022. "conflict": {
  8023. "symfony/http-kernel": "<5.4"
  8024. },
  8025. "provide": {
  8026. "psr/link-implementation": "1.0|2.0"
  8027. },
  8028. "require-dev": {
  8029. "symfony/http-kernel": "^5.4|^6.0"
  8030. },
  8031. "suggest": {
  8032. "symfony/http-kernel": ""
  8033. },
  8034. "type": "library",
  8035. "autoload": {
  8036. "psr-4": {
  8037. "Symfony\\Component\\WebLink\\": ""
  8038. },
  8039. "exclude-from-classmap": [
  8040. "/Tests/"
  8041. ]
  8042. },
  8043. "notification-url": "https://packagist.org/downloads/",
  8044. "license": [
  8045. "MIT"
  8046. ],
  8047. "authors": [
  8048. {
  8049. "name": "Kévin Dunglas",
  8050. "email": "dunglas@gmail.com"
  8051. },
  8052. {
  8053. "name": "Symfony Community",
  8054. "homepage": "https://symfony.com/contributors"
  8055. }
  8056. ],
  8057. "description": "Manages links between resources",
  8058. "homepage": "https://symfony.com",
  8059. "keywords": [
  8060. "dns-prefetch",
  8061. "http",
  8062. "http2",
  8063. "link",
  8064. "performance",
  8065. "prefetch",
  8066. "preload",
  8067. "prerender",
  8068. "psr13",
  8069. "push"
  8070. ],
  8071. "support": {
  8072. "source": "https://github.com/symfony/web-link/tree/v6.2.7"
  8073. },
  8074. "funding": [
  8075. {
  8076. "url": "https://symfony.com/sponsor",
  8077. "type": "custom"
  8078. },
  8079. {
  8080. "url": "https://github.com/fabpot",
  8081. "type": "github"
  8082. },
  8083. {
  8084. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8085. "type": "tidelift"
  8086. }
  8087. ],
  8088. "time": "2023-02-14T08:44:56+00:00"
  8089. },
  8090. {
  8091. "name": "symfony/webpack-encore-bundle",
  8092. "version": "v1.16.1",
  8093. "source": {
  8094. "type": "git",
  8095. "url": "https://github.com/symfony/webpack-encore-bundle.git",
  8096. "reference": "1862d71e483769b40278548a30e756ce13ef9d4c"
  8097. },
  8098. "dist": {
  8099. "type": "zip",
  8100. "url": "https://api.github.com/repos/symfony/webpack-encore-bundle/zipball/1862d71e483769b40278548a30e756ce13ef9d4c",
  8101. "reference": "1862d71e483769b40278548a30e756ce13ef9d4c",
  8102. "shasum": ""
  8103. },
  8104. "require": {
  8105. "php": ">=7.1.3",
  8106. "symfony/asset": "^4.4 || ^5.0 || ^6.0",
  8107. "symfony/config": "^4.4 || ^5.0 || ^6.0",
  8108. "symfony/dependency-injection": "^4.4 || ^5.0 || ^6.0",
  8109. "symfony/deprecation-contracts": "^2.1 || ^3.0",
  8110. "symfony/http-kernel": "^4.4 || ^5.0 || ^6.0",
  8111. "symfony/polyfill-php80": "^1.25.0",
  8112. "symfony/service-contracts": "^1.0 || ^2.0 || ^3.0"
  8113. },
  8114. "require-dev": {
  8115. "symfony/framework-bundle": "^4.4 || ^5.0 || ^6.0",
  8116. "symfony/phpunit-bridge": "^5.3 || ^6.0",
  8117. "symfony/twig-bundle": "^4.4 || ^5.0 || ^6.0",
  8118. "symfony/web-link": "^4.4 || ^5.0 || ^6.0"
  8119. },
  8120. "type": "symfony-bundle",
  8121. "extra": {
  8122. "thanks": {
  8123. "name": "symfony/webpack-encore",
  8124. "url": "https://github.com/symfony/webpack-encore"
  8125. }
  8126. },
  8127. "autoload": {
  8128. "psr-4": {
  8129. "Symfony\\WebpackEncoreBundle\\": "src"
  8130. }
  8131. },
  8132. "notification-url": "https://packagist.org/downloads/",
  8133. "license": [
  8134. "MIT"
  8135. ],
  8136. "authors": [
  8137. {
  8138. "name": "Symfony Community",
  8139. "homepage": "https://symfony.com/contributors"
  8140. }
  8141. ],
  8142. "description": "Integration with your Symfony app & Webpack Encore!",
  8143. "support": {
  8144. "issues": "https://github.com/symfony/webpack-encore-bundle/issues",
  8145. "source": "https://github.com/symfony/webpack-encore-bundle/tree/v1.16.1"
  8146. },
  8147. "funding": [
  8148. {
  8149. "url": "https://symfony.com/sponsor",
  8150. "type": "custom"
  8151. },
  8152. {
  8153. "url": "https://github.com/fabpot",
  8154. "type": "github"
  8155. },
  8156. {
  8157. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8158. "type": "tidelift"
  8159. }
  8160. ],
  8161. "time": "2023-01-18T19:37:55+00:00"
  8162. },
  8163. {
  8164. "name": "symfony/yaml",
  8165. "version": "v6.2.7",
  8166. "source": {
  8167. "type": "git",
  8168. "url": "https://github.com/symfony/yaml.git",
  8169. "reference": "e8e6a1d59e050525f27a1f530aa9703423cb7f57"
  8170. },
  8171. "dist": {
  8172. "type": "zip",
  8173. "url": "https://api.github.com/repos/symfony/yaml/zipball/e8e6a1d59e050525f27a1f530aa9703423cb7f57",
  8174. "reference": "e8e6a1d59e050525f27a1f530aa9703423cb7f57",
  8175. "shasum": ""
  8176. },
  8177. "require": {
  8178. "php": ">=8.1",
  8179. "symfony/polyfill-ctype": "^1.8"
  8180. },
  8181. "conflict": {
  8182. "symfony/console": "<5.4"
  8183. },
  8184. "require-dev": {
  8185. "symfony/console": "^5.4|^6.0"
  8186. },
  8187. "suggest": {
  8188. "symfony/console": "For validating YAML files using the lint command"
  8189. },
  8190. "bin": [
  8191. "Resources/bin/yaml-lint"
  8192. ],
  8193. "type": "library",
  8194. "autoload": {
  8195. "psr-4": {
  8196. "Symfony\\Component\\Yaml\\": ""
  8197. },
  8198. "exclude-from-classmap": [
  8199. "/Tests/"
  8200. ]
  8201. },
  8202. "notification-url": "https://packagist.org/downloads/",
  8203. "license": [
  8204. "MIT"
  8205. ],
  8206. "authors": [
  8207. {
  8208. "name": "Fabien Potencier",
  8209. "email": "fabien@symfony.com"
  8210. },
  8211. {
  8212. "name": "Symfony Community",
  8213. "homepage": "https://symfony.com/contributors"
  8214. }
  8215. ],
  8216. "description": "Loads and dumps YAML files",
  8217. "homepage": "https://symfony.com",
  8218. "support": {
  8219. "source": "https://github.com/symfony/yaml/tree/v6.2.7"
  8220. },
  8221. "funding": [
  8222. {
  8223. "url": "https://symfony.com/sponsor",
  8224. "type": "custom"
  8225. },
  8226. {
  8227. "url": "https://github.com/fabpot",
  8228. "type": "github"
  8229. },
  8230. {
  8231. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8232. "type": "tidelift"
  8233. }
  8234. ],
  8235. "time": "2023-02-16T09:57:23+00:00"
  8236. },
  8237. {
  8238. "name": "twig/extra-bundle",
  8239. "version": "v3.5.1",
  8240. "source": {
  8241. "type": "git",
  8242. "url": "https://github.com/twigphp/twig-extra-bundle.git",
  8243. "reference": "a961e553a624eebdbd423ad5ab931497ca6d87cd"
  8244. },
  8245. "dist": {
  8246. "type": "zip",
  8247. "url": "https://api.github.com/repos/twigphp/twig-extra-bundle/zipball/a961e553a624eebdbd423ad5ab931497ca6d87cd",
  8248. "reference": "a961e553a624eebdbd423ad5ab931497ca6d87cd",
  8249. "shasum": ""
  8250. },
  8251. "require": {
  8252. "php": ">=7.2.5",
  8253. "symfony/framework-bundle": "^4.4|^5.0|^6.0",
  8254. "symfony/twig-bundle": "^4.4|^5.0|^6.0",
  8255. "twig/twig": "^2.7|^3.0"
  8256. },
  8257. "require-dev": {
  8258. "league/commonmark": "^1.0|^2.0",
  8259. "symfony/phpunit-bridge": "^4.4.9|^5.0.9|^6.0",
  8260. "twig/cache-extra": "^3.0",
  8261. "twig/cssinliner-extra": "^2.12|^3.0",
  8262. "twig/html-extra": "^2.12|^3.0",
  8263. "twig/inky-extra": "^2.12|^3.0",
  8264. "twig/intl-extra": "^2.12|^3.0",
  8265. "twig/markdown-extra": "^2.12|^3.0",
  8266. "twig/string-extra": "^2.12|^3.0"
  8267. },
  8268. "type": "symfony-bundle",
  8269. "extra": {
  8270. "branch-alias": {
  8271. "dev-master": "3.5-dev"
  8272. }
  8273. },
  8274. "autoload": {
  8275. "psr-4": {
  8276. "Twig\\Extra\\TwigExtraBundle\\": ""
  8277. },
  8278. "exclude-from-classmap": [
  8279. "/Tests/"
  8280. ]
  8281. },
  8282. "notification-url": "https://packagist.org/downloads/",
  8283. "license": [
  8284. "MIT"
  8285. ],
  8286. "authors": [
  8287. {
  8288. "name": "Fabien Potencier",
  8289. "email": "fabien@symfony.com",
  8290. "homepage": "http://fabien.potencier.org",
  8291. "role": "Lead Developer"
  8292. }
  8293. ],
  8294. "description": "A Symfony bundle for extra Twig extensions",
  8295. "homepage": "https://twig.symfony.com",
  8296. "keywords": [
  8297. "bundle",
  8298. "extra",
  8299. "twig"
  8300. ],
  8301. "support": {
  8302. "source": "https://github.com/twigphp/twig-extra-bundle/tree/v3.5.1"
  8303. },
  8304. "funding": [
  8305. {
  8306. "url": "https://github.com/fabpot",
  8307. "type": "github"
  8308. },
  8309. {
  8310. "url": "https://tidelift.com/funding/github/packagist/twig/twig",
  8311. "type": "tidelift"
  8312. }
  8313. ],
  8314. "time": "2023-02-08T07:44:55+00:00"
  8315. },
  8316. {
  8317. "name": "twig/markdown-extra",
  8318. "version": "v3.5.1",
  8319. "source": {
  8320. "type": "git",
  8321. "url": "https://github.com/twigphp/markdown-extra.git",
  8322. "reference": "9474c89fd2787187a3809e5e964dfce2395ae5f0"
  8323. },
  8324. "dist": {
  8325. "type": "zip",
  8326. "url": "https://api.github.com/repos/twigphp/markdown-extra/zipball/9474c89fd2787187a3809e5e964dfce2395ae5f0",
  8327. "reference": "9474c89fd2787187a3809e5e964dfce2395ae5f0",
  8328. "shasum": ""
  8329. },
  8330. "require": {
  8331. "php": ">=7.1.3",
  8332. "twig/twig": "^2.7|^3.0"
  8333. },
  8334. "require-dev": {
  8335. "erusev/parsedown": "^1.7",
  8336. "league/commonmark": "^1.0|^2.0",
  8337. "league/html-to-markdown": "^4.8|^5.0",
  8338. "michelf/php-markdown": "^1.8|^2.0",
  8339. "symfony/phpunit-bridge": "^4.4.9|^5.0.9|^6.0"
  8340. },
  8341. "type": "library",
  8342. "extra": {
  8343. "branch-alias": {
  8344. "dev-master": "3.5-dev"
  8345. }
  8346. },
  8347. "autoload": {
  8348. "psr-4": {
  8349. "Twig\\Extra\\Markdown\\": ""
  8350. },
  8351. "exclude-from-classmap": [
  8352. "/Tests/"
  8353. ]
  8354. },
  8355. "notification-url": "https://packagist.org/downloads/",
  8356. "license": [
  8357. "MIT"
  8358. ],
  8359. "authors": [
  8360. {
  8361. "name": "Fabien Potencier",
  8362. "email": "fabien@symfony.com",
  8363. "homepage": "http://fabien.potencier.org",
  8364. "role": "Lead Developer"
  8365. }
  8366. ],
  8367. "description": "A Twig extension for Markdown",
  8368. "homepage": "https://twig.symfony.com",
  8369. "keywords": [
  8370. "html",
  8371. "markdown",
  8372. "twig"
  8373. ],
  8374. "support": {
  8375. "source": "https://github.com/twigphp/markdown-extra/tree/v3.5.1"
  8376. },
  8377. "funding": [
  8378. {
  8379. "url": "https://github.com/fabpot",
  8380. "type": "github"
  8381. },
  8382. {
  8383. "url": "https://tidelift.com/funding/github/packagist/twig/twig",
  8384. "type": "tidelift"
  8385. }
  8386. ],
  8387. "time": "2023-02-08T07:44:55+00:00"
  8388. },
  8389. {
  8390. "name": "twig/twig",
  8391. "version": "v3.5.1",
  8392. "source": {
  8393. "type": "git",
  8394. "url": "https://github.com/twigphp/Twig.git",
  8395. "reference": "a6e0510cc793912b451fd40ab983a1d28f611c15"
  8396. },
  8397. "dist": {
  8398. "type": "zip",
  8399. "url": "https://api.github.com/repos/twigphp/Twig/zipball/a6e0510cc793912b451fd40ab983a1d28f611c15",
  8400. "reference": "a6e0510cc793912b451fd40ab983a1d28f611c15",
  8401. "shasum": ""
  8402. },
  8403. "require": {
  8404. "php": ">=7.2.5",
  8405. "symfony/polyfill-ctype": "^1.8",
  8406. "symfony/polyfill-mbstring": "^1.3"
  8407. },
  8408. "require-dev": {
  8409. "psr/container": "^1.0",
  8410. "symfony/phpunit-bridge": "^4.4.9|^5.0.9|^6.0"
  8411. },
  8412. "type": "library",
  8413. "extra": {
  8414. "branch-alias": {
  8415. "dev-master": "3.5-dev"
  8416. }
  8417. },
  8418. "autoload": {
  8419. "psr-4": {
  8420. "Twig\\": "src/"
  8421. }
  8422. },
  8423. "notification-url": "https://packagist.org/downloads/",
  8424. "license": [
  8425. "BSD-3-Clause"
  8426. ],
  8427. "authors": [
  8428. {
  8429. "name": "Fabien Potencier",
  8430. "email": "fabien@symfony.com",
  8431. "homepage": "http://fabien.potencier.org",
  8432. "role": "Lead Developer"
  8433. },
  8434. {
  8435. "name": "Twig Team",
  8436. "role": "Contributors"
  8437. },
  8438. {
  8439. "name": "Armin Ronacher",
  8440. "email": "armin.ronacher@active-4.com",
  8441. "role": "Project Founder"
  8442. }
  8443. ],
  8444. "description": "Twig, the flexible, fast, and secure template language for PHP",
  8445. "homepage": "https://twig.symfony.com",
  8446. "keywords": [
  8447. "templating"
  8448. ],
  8449. "support": {
  8450. "issues": "https://github.com/twigphp/Twig/issues",
  8451. "source": "https://github.com/twigphp/Twig/tree/v3.5.1"
  8452. },
  8453. "funding": [
  8454. {
  8455. "url": "https://github.com/fabpot",
  8456. "type": "github"
  8457. },
  8458. {
  8459. "url": "https://tidelift.com/funding/github/packagist/twig/twig",
  8460. "type": "tidelift"
  8461. }
  8462. ],
  8463. "time": "2023-02-08T07:49:20+00:00"
  8464. },
  8465. {
  8466. "name": "webmozart/assert",
  8467. "version": "1.11.0",
  8468. "source": {
  8469. "type": "git",
  8470. "url": "https://github.com/webmozarts/assert.git",
  8471. "reference": "11cb2199493b2f8a3b53e7f19068fc6aac760991"
  8472. },
  8473. "dist": {
  8474. "type": "zip",
  8475. "url": "https://api.github.com/repos/webmozarts/assert/zipball/11cb2199493b2f8a3b53e7f19068fc6aac760991",
  8476. "reference": "11cb2199493b2f8a3b53e7f19068fc6aac760991",
  8477. "shasum": ""
  8478. },
  8479. "require": {
  8480. "ext-ctype": "*",
  8481. "php": "^7.2 || ^8.0"
  8482. },
  8483. "conflict": {
  8484. "phpstan/phpstan": "<0.12.20",
  8485. "vimeo/psalm": "<4.6.1 || 4.6.2"
  8486. },
  8487. "require-dev": {
  8488. "phpunit/phpunit": "^8.5.13"
  8489. },
  8490. "type": "library",
  8491. "extra": {
  8492. "branch-alias": {
  8493. "dev-master": "1.10-dev"
  8494. }
  8495. },
  8496. "autoload": {
  8497. "psr-4": {
  8498. "Webmozart\\Assert\\": "src/"
  8499. }
  8500. },
  8501. "notification-url": "https://packagist.org/downloads/",
  8502. "license": [
  8503. "MIT"
  8504. ],
  8505. "authors": [
  8506. {
  8507. "name": "Bernhard Schussek",
  8508. "email": "bschussek@gmail.com"
  8509. }
  8510. ],
  8511. "description": "Assertions to validate method input/output with nice error messages.",
  8512. "keywords": [
  8513. "assert",
  8514. "check",
  8515. "validate"
  8516. ],
  8517. "support": {
  8518. "issues": "https://github.com/webmozarts/assert/issues",
  8519. "source": "https://github.com/webmozarts/assert/tree/1.11.0"
  8520. },
  8521. "time": "2022-06-03T18:03:27+00:00"
  8522. }
  8523. ],
  8524. "packages-dev": [
  8525. {
  8526. "name": "myclabs/deep-copy",
  8527. "version": "1.11.1",
  8528. "source": {
  8529. "type": "git",
  8530. "url": "https://github.com/myclabs/DeepCopy.git",
  8531. "reference": "7284c22080590fb39f2ffa3e9057f10a4ddd0e0c"
  8532. },
  8533. "dist": {
  8534. "type": "zip",
  8535. "url": "https://api.github.com/repos/myclabs/DeepCopy/zipball/7284c22080590fb39f2ffa3e9057f10a4ddd0e0c",
  8536. "reference": "7284c22080590fb39f2ffa3e9057f10a4ddd0e0c",
  8537. "shasum": ""
  8538. },
  8539. "require": {
  8540. "php": "^7.1 || ^8.0"
  8541. },
  8542. "conflict": {
  8543. "doctrine/collections": "<1.6.8",
  8544. "doctrine/common": "<2.13.3 || >=3,<3.2.2"
  8545. },
  8546. "require-dev": {
  8547. "doctrine/collections": "^1.6.8",
  8548. "doctrine/common": "^2.13.3 || ^3.2.2",
  8549. "phpunit/phpunit": "^7.5.20 || ^8.5.23 || ^9.5.13"
  8550. },
  8551. "type": "library",
  8552. "autoload": {
  8553. "files": [
  8554. "src/DeepCopy/deep_copy.php"
  8555. ],
  8556. "psr-4": {
  8557. "DeepCopy\\": "src/DeepCopy/"
  8558. }
  8559. },
  8560. "notification-url": "https://packagist.org/downloads/",
  8561. "license": [
  8562. "MIT"
  8563. ],
  8564. "description": "Create deep copies (clones) of your objects",
  8565. "keywords": [
  8566. "clone",
  8567. "copy",
  8568. "duplicate",
  8569. "object",
  8570. "object graph"
  8571. ],
  8572. "support": {
  8573. "issues": "https://github.com/myclabs/DeepCopy/issues",
  8574. "source": "https://github.com/myclabs/DeepCopy/tree/1.11.1"
  8575. },
  8576. "funding": [
  8577. {
  8578. "url": "https://tidelift.com/funding/github/packagist/myclabs/deep-copy",
  8579. "type": "tidelift"
  8580. }
  8581. ],
  8582. "time": "2023-03-08T13:26:56+00:00"
  8583. },
  8584. {
  8585. "name": "nikic/php-parser",
  8586. "version": "v4.15.4",
  8587. "source": {
  8588. "type": "git",
  8589. "url": "https://github.com/nikic/PHP-Parser.git",
  8590. "reference": "6bb5176bc4af8bcb7d926f88718db9b96a2d4290"
  8591. },
  8592. "dist": {
  8593. "type": "zip",
  8594. "url": "https://api.github.com/repos/nikic/PHP-Parser/zipball/6bb5176bc4af8bcb7d926f88718db9b96a2d4290",
  8595. "reference": "6bb5176bc4af8bcb7d926f88718db9b96a2d4290",
  8596. "shasum": ""
  8597. },
  8598. "require": {
  8599. "ext-tokenizer": "*",
  8600. "php": ">=7.0"
  8601. },
  8602. "require-dev": {
  8603. "ircmaxell/php-yacc": "^0.0.7",
  8604. "phpunit/phpunit": "^6.5 || ^7.0 || ^8.0 || ^9.0"
  8605. },
  8606. "bin": [
  8607. "bin/php-parse"
  8608. ],
  8609. "type": "library",
  8610. "extra": {
  8611. "branch-alias": {
  8612. "dev-master": "4.9-dev"
  8613. }
  8614. },
  8615. "autoload": {
  8616. "psr-4": {
  8617. "PhpParser\\": "lib/PhpParser"
  8618. }
  8619. },
  8620. "notification-url": "https://packagist.org/downloads/",
  8621. "license": [
  8622. "BSD-3-Clause"
  8623. ],
  8624. "authors": [
  8625. {
  8626. "name": "Nikita Popov"
  8627. }
  8628. ],
  8629. "description": "A PHP parser written in PHP",
  8630. "keywords": [
  8631. "parser",
  8632. "php"
  8633. ],
  8634. "support": {
  8635. "issues": "https://github.com/nikic/PHP-Parser/issues",
  8636. "source": "https://github.com/nikic/PHP-Parser/tree/v4.15.4"
  8637. },
  8638. "time": "2023-03-05T19:49:14+00:00"
  8639. },
  8640. {
  8641. "name": "phar-io/manifest",
  8642. "version": "2.0.3",
  8643. "source": {
  8644. "type": "git",
  8645. "url": "https://github.com/phar-io/manifest.git",
  8646. "reference": "97803eca37d319dfa7826cc2437fc020857acb53"
  8647. },
  8648. "dist": {
  8649. "type": "zip",
  8650. "url": "https://api.github.com/repos/phar-io/manifest/zipball/97803eca37d319dfa7826cc2437fc020857acb53",
  8651. "reference": "97803eca37d319dfa7826cc2437fc020857acb53",
  8652. "shasum": ""
  8653. },
  8654. "require": {
  8655. "ext-dom": "*",
  8656. "ext-phar": "*",
  8657. "ext-xmlwriter": "*",
  8658. "phar-io/version": "^3.0.1",
  8659. "php": "^7.2 || ^8.0"
  8660. },
  8661. "type": "library",
  8662. "extra": {
  8663. "branch-alias": {
  8664. "dev-master": "2.0.x-dev"
  8665. }
  8666. },
  8667. "autoload": {
  8668. "classmap": [
  8669. "src/"
  8670. ]
  8671. },
  8672. "notification-url": "https://packagist.org/downloads/",
  8673. "license": [
  8674. "BSD-3-Clause"
  8675. ],
  8676. "authors": [
  8677. {
  8678. "name": "Arne Blankerts",
  8679. "email": "arne@blankerts.de",
  8680. "role": "Developer"
  8681. },
  8682. {
  8683. "name": "Sebastian Heuer",
  8684. "email": "sebastian@phpeople.de",
  8685. "role": "Developer"
  8686. },
  8687. {
  8688. "name": "Sebastian Bergmann",
  8689. "email": "sebastian@phpunit.de",
  8690. "role": "Developer"
  8691. }
  8692. ],
  8693. "description": "Component for reading phar.io manifest information from a PHP Archive (PHAR)",
  8694. "support": {
  8695. "issues": "https://github.com/phar-io/manifest/issues",
  8696. "source": "https://github.com/phar-io/manifest/tree/2.0.3"
  8697. },
  8698. "time": "2021-07-20T11:28:43+00:00"
  8699. },
  8700. {
  8701. "name": "phar-io/version",
  8702. "version": "3.2.1",
  8703. "source": {
  8704. "type": "git",
  8705. "url": "https://github.com/phar-io/version.git",
  8706. "reference": "4f7fd7836c6f332bb2933569e566a0d6c4cbed74"
  8707. },
  8708. "dist": {
  8709. "type": "zip",
  8710. "url": "https://api.github.com/repos/phar-io/version/zipball/4f7fd7836c6f332bb2933569e566a0d6c4cbed74",
  8711. "reference": "4f7fd7836c6f332bb2933569e566a0d6c4cbed74",
  8712. "shasum": ""
  8713. },
  8714. "require": {
  8715. "php": "^7.2 || ^8.0"
  8716. },
  8717. "type": "library",
  8718. "autoload": {
  8719. "classmap": [
  8720. "src/"
  8721. ]
  8722. },
  8723. "notification-url": "https://packagist.org/downloads/",
  8724. "license": [
  8725. "BSD-3-Clause"
  8726. ],
  8727. "authors": [
  8728. {
  8729. "name": "Arne Blankerts",
  8730. "email": "arne@blankerts.de",
  8731. "role": "Developer"
  8732. },
  8733. {
  8734. "name": "Sebastian Heuer",
  8735. "email": "sebastian@phpeople.de",
  8736. "role": "Developer"
  8737. },
  8738. {
  8739. "name": "Sebastian Bergmann",
  8740. "email": "sebastian@phpunit.de",
  8741. "role": "Developer"
  8742. }
  8743. ],
  8744. "description": "Library for handling version information and constraints",
  8745. "support": {
  8746. "issues": "https://github.com/phar-io/version/issues",
  8747. "source": "https://github.com/phar-io/version/tree/3.2.1"
  8748. },
  8749. "time": "2022-02-21T01:04:05+00:00"
  8750. },
  8751. {
  8752. "name": "phpunit/php-code-coverage",
  8753. "version": "9.2.26",
  8754. "source": {
  8755. "type": "git",
  8756. "url": "https://github.com/sebastianbergmann/php-code-coverage.git",
  8757. "reference": "443bc6912c9bd5b409254a40f4b0f4ced7c80ea1"
  8758. },
  8759. "dist": {
  8760. "type": "zip",
  8761. "url": "https://api.github.com/repos/sebastianbergmann/php-code-coverage/zipball/443bc6912c9bd5b409254a40f4b0f4ced7c80ea1",
  8762. "reference": "443bc6912c9bd5b409254a40f4b0f4ced7c80ea1",
  8763. "shasum": ""
  8764. },
  8765. "require": {
  8766. "ext-dom": "*",
  8767. "ext-libxml": "*",
  8768. "ext-xmlwriter": "*",
  8769. "nikic/php-parser": "^4.15",
  8770. "php": ">=7.3",
  8771. "phpunit/php-file-iterator": "^3.0.3",
  8772. "phpunit/php-text-template": "^2.0.2",
  8773. "sebastian/code-unit-reverse-lookup": "^2.0.2",
  8774. "sebastian/complexity": "^2.0",
  8775. "sebastian/environment": "^5.1.2",
  8776. "sebastian/lines-of-code": "^1.0.3",
  8777. "sebastian/version": "^3.0.1",
  8778. "theseer/tokenizer": "^1.2.0"
  8779. },
  8780. "require-dev": {
  8781. "phpunit/phpunit": "^9.3"
  8782. },
  8783. "suggest": {
  8784. "ext-pcov": "PHP extension that provides line coverage",
  8785. "ext-xdebug": "PHP extension that provides line coverage as well as branch and path coverage"
  8786. },
  8787. "type": "library",
  8788. "extra": {
  8789. "branch-alias": {
  8790. "dev-master": "9.2-dev"
  8791. }
  8792. },
  8793. "autoload": {
  8794. "classmap": [
  8795. "src/"
  8796. ]
  8797. },
  8798. "notification-url": "https://packagist.org/downloads/",
  8799. "license": [
  8800. "BSD-3-Clause"
  8801. ],
  8802. "authors": [
  8803. {
  8804. "name": "Sebastian Bergmann",
  8805. "email": "sebastian@phpunit.de",
  8806. "role": "lead"
  8807. }
  8808. ],
  8809. "description": "Library that provides collection, processing, and rendering functionality for PHP code coverage information.",
  8810. "homepage": "https://github.com/sebastianbergmann/php-code-coverage",
  8811. "keywords": [
  8812. "coverage",
  8813. "testing",
  8814. "xunit"
  8815. ],
  8816. "support": {
  8817. "issues": "https://github.com/sebastianbergmann/php-code-coverage/issues",
  8818. "source": "https://github.com/sebastianbergmann/php-code-coverage/tree/9.2.26"
  8819. },
  8820. "funding": [
  8821. {
  8822. "url": "https://github.com/sebastianbergmann",
  8823. "type": "github"
  8824. }
  8825. ],
  8826. "time": "2023-03-06T12:58:08+00:00"
  8827. },
  8828. {
  8829. "name": "phpunit/php-file-iterator",
  8830. "version": "3.0.6",
  8831. "source": {
  8832. "type": "git",
  8833. "url": "https://github.com/sebastianbergmann/php-file-iterator.git",
  8834. "reference": "cf1c2e7c203ac650e352f4cc675a7021e7d1b3cf"
  8835. },
  8836. "dist": {
  8837. "type": "zip",
  8838. "url": "https://api.github.com/repos/sebastianbergmann/php-file-iterator/zipball/cf1c2e7c203ac650e352f4cc675a7021e7d1b3cf",
  8839. "reference": "cf1c2e7c203ac650e352f4cc675a7021e7d1b3cf",
  8840. "shasum": ""
  8841. },
  8842. "require": {
  8843. "php": ">=7.3"
  8844. },
  8845. "require-dev": {
  8846. "phpunit/phpunit": "^9.3"
  8847. },
  8848. "type": "library",
  8849. "extra": {
  8850. "branch-alias": {
  8851. "dev-master": "3.0-dev"
  8852. }
  8853. },
  8854. "autoload": {
  8855. "classmap": [
  8856. "src/"
  8857. ]
  8858. },
  8859. "notification-url": "https://packagist.org/downloads/",
  8860. "license": [
  8861. "BSD-3-Clause"
  8862. ],
  8863. "authors": [
  8864. {
  8865. "name": "Sebastian Bergmann",
  8866. "email": "sebastian@phpunit.de",
  8867. "role": "lead"
  8868. }
  8869. ],
  8870. "description": "FilterIterator implementation that filters files based on a list of suffixes.",
  8871. "homepage": "https://github.com/sebastianbergmann/php-file-iterator/",
  8872. "keywords": [
  8873. "filesystem",
  8874. "iterator"
  8875. ],
  8876. "support": {
  8877. "issues": "https://github.com/sebastianbergmann/php-file-iterator/issues",
  8878. "source": "https://github.com/sebastianbergmann/php-file-iterator/tree/3.0.6"
  8879. },
  8880. "funding": [
  8881. {
  8882. "url": "https://github.com/sebastianbergmann",
  8883. "type": "github"
  8884. }
  8885. ],
  8886. "time": "2021-12-02T12:48:52+00:00"
  8887. },
  8888. {
  8889. "name": "phpunit/php-invoker",
  8890. "version": "3.1.1",
  8891. "source": {
  8892. "type": "git",
  8893. "url": "https://github.com/sebastianbergmann/php-invoker.git",
  8894. "reference": "5a10147d0aaf65b58940a0b72f71c9ac0423cc67"
  8895. },
  8896. "dist": {
  8897. "type": "zip",
  8898. "url": "https://api.github.com/repos/sebastianbergmann/php-invoker/zipball/5a10147d0aaf65b58940a0b72f71c9ac0423cc67",
  8899. "reference": "5a10147d0aaf65b58940a0b72f71c9ac0423cc67",
  8900. "shasum": ""
  8901. },
  8902. "require": {
  8903. "php": ">=7.3"
  8904. },
  8905. "require-dev": {
  8906. "ext-pcntl": "*",
  8907. "phpunit/phpunit": "^9.3"
  8908. },
  8909. "suggest": {
  8910. "ext-pcntl": "*"
  8911. },
  8912. "type": "library",
  8913. "extra": {
  8914. "branch-alias": {
  8915. "dev-master": "3.1-dev"
  8916. }
  8917. },
  8918. "autoload": {
  8919. "classmap": [
  8920. "src/"
  8921. ]
  8922. },
  8923. "notification-url": "https://packagist.org/downloads/",
  8924. "license": [
  8925. "BSD-3-Clause"
  8926. ],
  8927. "authors": [
  8928. {
  8929. "name": "Sebastian Bergmann",
  8930. "email": "sebastian@phpunit.de",
  8931. "role": "lead"
  8932. }
  8933. ],
  8934. "description": "Invoke callables with a timeout",
  8935. "homepage": "https://github.com/sebastianbergmann/php-invoker/",
  8936. "keywords": [
  8937. "process"
  8938. ],
  8939. "support": {
  8940. "issues": "https://github.com/sebastianbergmann/php-invoker/issues",
  8941. "source": "https://github.com/sebastianbergmann/php-invoker/tree/3.1.1"
  8942. },
  8943. "funding": [
  8944. {
  8945. "url": "https://github.com/sebastianbergmann",
  8946. "type": "github"
  8947. }
  8948. ],
  8949. "time": "2020-09-28T05:58:55+00:00"
  8950. },
  8951. {
  8952. "name": "phpunit/php-text-template",
  8953. "version": "2.0.4",
  8954. "source": {
  8955. "type": "git",
  8956. "url": "https://github.com/sebastianbergmann/php-text-template.git",
  8957. "reference": "5da5f67fc95621df9ff4c4e5a84d6a8a2acf7c28"
  8958. },
  8959. "dist": {
  8960. "type": "zip",
  8961. "url": "https://api.github.com/repos/sebastianbergmann/php-text-template/zipball/5da5f67fc95621df9ff4c4e5a84d6a8a2acf7c28",
  8962. "reference": "5da5f67fc95621df9ff4c4e5a84d6a8a2acf7c28",
  8963. "shasum": ""
  8964. },
  8965. "require": {
  8966. "php": ">=7.3"
  8967. },
  8968. "require-dev": {
  8969. "phpunit/phpunit": "^9.3"
  8970. },
  8971. "type": "library",
  8972. "extra": {
  8973. "branch-alias": {
  8974. "dev-master": "2.0-dev"
  8975. }
  8976. },
  8977. "autoload": {
  8978. "classmap": [
  8979. "src/"
  8980. ]
  8981. },
  8982. "notification-url": "https://packagist.org/downloads/",
  8983. "license": [
  8984. "BSD-3-Clause"
  8985. ],
  8986. "authors": [
  8987. {
  8988. "name": "Sebastian Bergmann",
  8989. "email": "sebastian@phpunit.de",
  8990. "role": "lead"
  8991. }
  8992. ],
  8993. "description": "Simple template engine.",
  8994. "homepage": "https://github.com/sebastianbergmann/php-text-template/",
  8995. "keywords": [
  8996. "template"
  8997. ],
  8998. "support": {
  8999. "issues": "https://github.com/sebastianbergmann/php-text-template/issues",
  9000. "source": "https://github.com/sebastianbergmann/php-text-template/tree/2.0.4"
  9001. },
  9002. "funding": [
  9003. {
  9004. "url": "https://github.com/sebastianbergmann",
  9005. "type": "github"
  9006. }
  9007. ],
  9008. "time": "2020-10-26T05:33:50+00:00"
  9009. },
  9010. {
  9011. "name": "phpunit/php-timer",
  9012. "version": "5.0.3",
  9013. "source": {
  9014. "type": "git",
  9015. "url": "https://github.com/sebastianbergmann/php-timer.git",
  9016. "reference": "5a63ce20ed1b5bf577850e2c4e87f4aa902afbd2"
  9017. },
  9018. "dist": {
  9019. "type": "zip",
  9020. "url": "https://api.github.com/repos/sebastianbergmann/php-timer/zipball/5a63ce20ed1b5bf577850e2c4e87f4aa902afbd2",
  9021. "reference": "5a63ce20ed1b5bf577850e2c4e87f4aa902afbd2",
  9022. "shasum": ""
  9023. },
  9024. "require": {
  9025. "php": ">=7.3"
  9026. },
  9027. "require-dev": {
  9028. "phpunit/phpunit": "^9.3"
  9029. },
  9030. "type": "library",
  9031. "extra": {
  9032. "branch-alias": {
  9033. "dev-master": "5.0-dev"
  9034. }
  9035. },
  9036. "autoload": {
  9037. "classmap": [
  9038. "src/"
  9039. ]
  9040. },
  9041. "notification-url": "https://packagist.org/downloads/",
  9042. "license": [
  9043. "BSD-3-Clause"
  9044. ],
  9045. "authors": [
  9046. {
  9047. "name": "Sebastian Bergmann",
  9048. "email": "sebastian@phpunit.de",
  9049. "role": "lead"
  9050. }
  9051. ],
  9052. "description": "Utility class for timing",
  9053. "homepage": "https://github.com/sebastianbergmann/php-timer/",
  9054. "keywords": [
  9055. "timer"
  9056. ],
  9057. "support": {
  9058. "issues": "https://github.com/sebastianbergmann/php-timer/issues",
  9059. "source": "https://github.com/sebastianbergmann/php-timer/tree/5.0.3"
  9060. },
  9061. "funding": [
  9062. {
  9063. "url": "https://github.com/sebastianbergmann",
  9064. "type": "github"
  9065. }
  9066. ],
  9067. "time": "2020-10-26T13:16:10+00:00"
  9068. },
  9069. {
  9070. "name": "phpunit/phpunit",
  9071. "version": "9.6.6",
  9072. "source": {
  9073. "type": "git",
  9074. "url": "https://github.com/sebastianbergmann/phpunit.git",
  9075. "reference": "b65d59a059d3004a040c16a82e07bbdf6cfdd115"
  9076. },
  9077. "dist": {
  9078. "type": "zip",
  9079. "url": "https://api.github.com/repos/sebastianbergmann/phpunit/zipball/b65d59a059d3004a040c16a82e07bbdf6cfdd115",
  9080. "reference": "b65d59a059d3004a040c16a82e07bbdf6cfdd115",
  9081. "shasum": ""
  9082. },
  9083. "require": {
  9084. "doctrine/instantiator": "^1.3.1 || ^2",
  9085. "ext-dom": "*",
  9086. "ext-json": "*",
  9087. "ext-libxml": "*",
  9088. "ext-mbstring": "*",
  9089. "ext-xml": "*",
  9090. "ext-xmlwriter": "*",
  9091. "myclabs/deep-copy": "^1.10.1",
  9092. "phar-io/manifest": "^2.0.3",
  9093. "phar-io/version": "^3.0.2",
  9094. "php": ">=7.3",
  9095. "phpunit/php-code-coverage": "^9.2.13",
  9096. "phpunit/php-file-iterator": "^3.0.5",
  9097. "phpunit/php-invoker": "^3.1.1",
  9098. "phpunit/php-text-template": "^2.0.3",
  9099. "phpunit/php-timer": "^5.0.2",
  9100. "sebastian/cli-parser": "^1.0.1",
  9101. "sebastian/code-unit": "^1.0.6",
  9102. "sebastian/comparator": "^4.0.8",
  9103. "sebastian/diff": "^4.0.3",
  9104. "sebastian/environment": "^5.1.3",
  9105. "sebastian/exporter": "^4.0.5",
  9106. "sebastian/global-state": "^5.0.1",
  9107. "sebastian/object-enumerator": "^4.0.3",
  9108. "sebastian/resource-operations": "^3.0.3",
  9109. "sebastian/type": "^3.2",
  9110. "sebastian/version": "^3.0.2"
  9111. },
  9112. "suggest": {
  9113. "ext-soap": "To be able to generate mocks based on WSDL files",
  9114. "ext-xdebug": "PHP extension that provides line coverage as well as branch and path coverage"
  9115. },
  9116. "bin": [
  9117. "phpunit"
  9118. ],
  9119. "type": "library",
  9120. "extra": {
  9121. "branch-alias": {
  9122. "dev-master": "9.6-dev"
  9123. }
  9124. },
  9125. "autoload": {
  9126. "files": [
  9127. "src/Framework/Assert/Functions.php"
  9128. ],
  9129. "classmap": [
  9130. "src/"
  9131. ]
  9132. },
  9133. "notification-url": "https://packagist.org/downloads/",
  9134. "license": [
  9135. "BSD-3-Clause"
  9136. ],
  9137. "authors": [
  9138. {
  9139. "name": "Sebastian Bergmann",
  9140. "email": "sebastian@phpunit.de",
  9141. "role": "lead"
  9142. }
  9143. ],
  9144. "description": "The PHP Unit Testing framework.",
  9145. "homepage": "https://phpunit.de/",
  9146. "keywords": [
  9147. "phpunit",
  9148. "testing",
  9149. "xunit"
  9150. ],
  9151. "support": {
  9152. "issues": "https://github.com/sebastianbergmann/phpunit/issues",
  9153. "security": "https://github.com/sebastianbergmann/phpunit/security/policy",
  9154. "source": "https://github.com/sebastianbergmann/phpunit/tree/9.6.6"
  9155. },
  9156. "funding": [
  9157. {
  9158. "url": "https://phpunit.de/sponsors.html",
  9159. "type": "custom"
  9160. },
  9161. {
  9162. "url": "https://github.com/sebastianbergmann",
  9163. "type": "github"
  9164. },
  9165. {
  9166. "url": "https://tidelift.com/funding/github/packagist/phpunit/phpunit",
  9167. "type": "tidelift"
  9168. }
  9169. ],
  9170. "time": "2023-03-27T11:43:46+00:00"
  9171. },
  9172. {
  9173. "name": "sebastian/cli-parser",
  9174. "version": "1.0.1",
  9175. "source": {
  9176. "type": "git",
  9177. "url": "https://github.com/sebastianbergmann/cli-parser.git",
  9178. "reference": "442e7c7e687e42adc03470c7b668bc4b2402c0b2"
  9179. },
  9180. "dist": {
  9181. "type": "zip",
  9182. "url": "https://api.github.com/repos/sebastianbergmann/cli-parser/zipball/442e7c7e687e42adc03470c7b668bc4b2402c0b2",
  9183. "reference": "442e7c7e687e42adc03470c7b668bc4b2402c0b2",
  9184. "shasum": ""
  9185. },
  9186. "require": {
  9187. "php": ">=7.3"
  9188. },
  9189. "require-dev": {
  9190. "phpunit/phpunit": "^9.3"
  9191. },
  9192. "type": "library",
  9193. "extra": {
  9194. "branch-alias": {
  9195. "dev-master": "1.0-dev"
  9196. }
  9197. },
  9198. "autoload": {
  9199. "classmap": [
  9200. "src/"
  9201. ]
  9202. },
  9203. "notification-url": "https://packagist.org/downloads/",
  9204. "license": [
  9205. "BSD-3-Clause"
  9206. ],
  9207. "authors": [
  9208. {
  9209. "name": "Sebastian Bergmann",
  9210. "email": "sebastian@phpunit.de",
  9211. "role": "lead"
  9212. }
  9213. ],
  9214. "description": "Library for parsing CLI options",
  9215. "homepage": "https://github.com/sebastianbergmann/cli-parser",
  9216. "support": {
  9217. "issues": "https://github.com/sebastianbergmann/cli-parser/issues",
  9218. "source": "https://github.com/sebastianbergmann/cli-parser/tree/1.0.1"
  9219. },
  9220. "funding": [
  9221. {
  9222. "url": "https://github.com/sebastianbergmann",
  9223. "type": "github"
  9224. }
  9225. ],
  9226. "time": "2020-09-28T06:08:49+00:00"
  9227. },
  9228. {
  9229. "name": "sebastian/code-unit",
  9230. "version": "1.0.8",
  9231. "source": {
  9232. "type": "git",
  9233. "url": "https://github.com/sebastianbergmann/code-unit.git",
  9234. "reference": "1fc9f64c0927627ef78ba436c9b17d967e68e120"
  9235. },
  9236. "dist": {
  9237. "type": "zip",
  9238. "url": "https://api.github.com/repos/sebastianbergmann/code-unit/zipball/1fc9f64c0927627ef78ba436c9b17d967e68e120",
  9239. "reference": "1fc9f64c0927627ef78ba436c9b17d967e68e120",
  9240. "shasum": ""
  9241. },
  9242. "require": {
  9243. "php": ">=7.3"
  9244. },
  9245. "require-dev": {
  9246. "phpunit/phpunit": "^9.3"
  9247. },
  9248. "type": "library",
  9249. "extra": {
  9250. "branch-alias": {
  9251. "dev-master": "1.0-dev"
  9252. }
  9253. },
  9254. "autoload": {
  9255. "classmap": [
  9256. "src/"
  9257. ]
  9258. },
  9259. "notification-url": "https://packagist.org/downloads/",
  9260. "license": [
  9261. "BSD-3-Clause"
  9262. ],
  9263. "authors": [
  9264. {
  9265. "name": "Sebastian Bergmann",
  9266. "email": "sebastian@phpunit.de",
  9267. "role": "lead"
  9268. }
  9269. ],
  9270. "description": "Collection of value objects that represent the PHP code units",
  9271. "homepage": "https://github.com/sebastianbergmann/code-unit",
  9272. "support": {
  9273. "issues": "https://github.com/sebastianbergmann/code-unit/issues",
  9274. "source": "https://github.com/sebastianbergmann/code-unit/tree/1.0.8"
  9275. },
  9276. "funding": [
  9277. {
  9278. "url": "https://github.com/sebastianbergmann",
  9279. "type": "github"
  9280. }
  9281. ],
  9282. "time": "2020-10-26T13:08:54+00:00"
  9283. },
  9284. {
  9285. "name": "sebastian/code-unit-reverse-lookup",
  9286. "version": "2.0.3",
  9287. "source": {
  9288. "type": "git",
  9289. "url": "https://github.com/sebastianbergmann/code-unit-reverse-lookup.git",
  9290. "reference": "ac91f01ccec49fb77bdc6fd1e548bc70f7faa3e5"
  9291. },
  9292. "dist": {
  9293. "type": "zip",
  9294. "url": "https://api.github.com/repos/sebastianbergmann/code-unit-reverse-lookup/zipball/ac91f01ccec49fb77bdc6fd1e548bc70f7faa3e5",
  9295. "reference": "ac91f01ccec49fb77bdc6fd1e548bc70f7faa3e5",
  9296. "shasum": ""
  9297. },
  9298. "require": {
  9299. "php": ">=7.3"
  9300. },
  9301. "require-dev": {
  9302. "phpunit/phpunit": "^9.3"
  9303. },
  9304. "type": "library",
  9305. "extra": {
  9306. "branch-alias": {
  9307. "dev-master": "2.0-dev"
  9308. }
  9309. },
  9310. "autoload": {
  9311. "classmap": [
  9312. "src/"
  9313. ]
  9314. },
  9315. "notification-url": "https://packagist.org/downloads/",
  9316. "license": [
  9317. "BSD-3-Clause"
  9318. ],
  9319. "authors": [
  9320. {
  9321. "name": "Sebastian Bergmann",
  9322. "email": "sebastian@phpunit.de"
  9323. }
  9324. ],
  9325. "description": "Looks up which function or method a line of code belongs to",
  9326. "homepage": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/",
  9327. "support": {
  9328. "issues": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/issues",
  9329. "source": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/tree/2.0.3"
  9330. },
  9331. "funding": [
  9332. {
  9333. "url": "https://github.com/sebastianbergmann",
  9334. "type": "github"
  9335. }
  9336. ],
  9337. "time": "2020-09-28T05:30:19+00:00"
  9338. },
  9339. {
  9340. "name": "sebastian/comparator",
  9341. "version": "4.0.8",
  9342. "source": {
  9343. "type": "git",
  9344. "url": "https://github.com/sebastianbergmann/comparator.git",
  9345. "reference": "fa0f136dd2334583309d32b62544682ee972b51a"
  9346. },
  9347. "dist": {
  9348. "type": "zip",
  9349. "url": "https://api.github.com/repos/sebastianbergmann/comparator/zipball/fa0f136dd2334583309d32b62544682ee972b51a",
  9350. "reference": "fa0f136dd2334583309d32b62544682ee972b51a",
  9351. "shasum": ""
  9352. },
  9353. "require": {
  9354. "php": ">=7.3",
  9355. "sebastian/diff": "^4.0",
  9356. "sebastian/exporter": "^4.0"
  9357. },
  9358. "require-dev": {
  9359. "phpunit/phpunit": "^9.3"
  9360. },
  9361. "type": "library",
  9362. "extra": {
  9363. "branch-alias": {
  9364. "dev-master": "4.0-dev"
  9365. }
  9366. },
  9367. "autoload": {
  9368. "classmap": [
  9369. "src/"
  9370. ]
  9371. },
  9372. "notification-url": "https://packagist.org/downloads/",
  9373. "license": [
  9374. "BSD-3-Clause"
  9375. ],
  9376. "authors": [
  9377. {
  9378. "name": "Sebastian Bergmann",
  9379. "email": "sebastian@phpunit.de"
  9380. },
  9381. {
  9382. "name": "Jeff Welch",
  9383. "email": "whatthejeff@gmail.com"
  9384. },
  9385. {
  9386. "name": "Volker Dusch",
  9387. "email": "github@wallbash.com"
  9388. },
  9389. {
  9390. "name": "Bernhard Schussek",
  9391. "email": "bschussek@2bepublished.at"
  9392. }
  9393. ],
  9394. "description": "Provides the functionality to compare PHP values for equality",
  9395. "homepage": "https://github.com/sebastianbergmann/comparator",
  9396. "keywords": [
  9397. "comparator",
  9398. "compare",
  9399. "equality"
  9400. ],
  9401. "support": {
  9402. "issues": "https://github.com/sebastianbergmann/comparator/issues",
  9403. "source": "https://github.com/sebastianbergmann/comparator/tree/4.0.8"
  9404. },
  9405. "funding": [
  9406. {
  9407. "url": "https://github.com/sebastianbergmann",
  9408. "type": "github"
  9409. }
  9410. ],
  9411. "time": "2022-09-14T12:41:17+00:00"
  9412. },
  9413. {
  9414. "name": "sebastian/complexity",
  9415. "version": "2.0.2",
  9416. "source": {
  9417. "type": "git",
  9418. "url": "https://github.com/sebastianbergmann/complexity.git",
  9419. "reference": "739b35e53379900cc9ac327b2147867b8b6efd88"
  9420. },
  9421. "dist": {
  9422. "type": "zip",
  9423. "url": "https://api.github.com/repos/sebastianbergmann/complexity/zipball/739b35e53379900cc9ac327b2147867b8b6efd88",
  9424. "reference": "739b35e53379900cc9ac327b2147867b8b6efd88",
  9425. "shasum": ""
  9426. },
  9427. "require": {
  9428. "nikic/php-parser": "^4.7",
  9429. "php": ">=7.3"
  9430. },
  9431. "require-dev": {
  9432. "phpunit/phpunit": "^9.3"
  9433. },
  9434. "type": "library",
  9435. "extra": {
  9436. "branch-alias": {
  9437. "dev-master": "2.0-dev"
  9438. }
  9439. },
  9440. "autoload": {
  9441. "classmap": [
  9442. "src/"
  9443. ]
  9444. },
  9445. "notification-url": "https://packagist.org/downloads/",
  9446. "license": [
  9447. "BSD-3-Clause"
  9448. ],
  9449. "authors": [
  9450. {
  9451. "name": "Sebastian Bergmann",
  9452. "email": "sebastian@phpunit.de",
  9453. "role": "lead"
  9454. }
  9455. ],
  9456. "description": "Library for calculating the complexity of PHP code units",
  9457. "homepage": "https://github.com/sebastianbergmann/complexity",
  9458. "support": {
  9459. "issues": "https://github.com/sebastianbergmann/complexity/issues",
  9460. "source": "https://github.com/sebastianbergmann/complexity/tree/2.0.2"
  9461. },
  9462. "funding": [
  9463. {
  9464. "url": "https://github.com/sebastianbergmann",
  9465. "type": "github"
  9466. }
  9467. ],
  9468. "time": "2020-10-26T15:52:27+00:00"
  9469. },
  9470. {
  9471. "name": "sebastian/diff",
  9472. "version": "4.0.4",
  9473. "source": {
  9474. "type": "git",
  9475. "url": "https://github.com/sebastianbergmann/diff.git",
  9476. "reference": "3461e3fccc7cfdfc2720be910d3bd73c69be590d"
  9477. },
  9478. "dist": {
  9479. "type": "zip",
  9480. "url": "https://api.github.com/repos/sebastianbergmann/diff/zipball/3461e3fccc7cfdfc2720be910d3bd73c69be590d",
  9481. "reference": "3461e3fccc7cfdfc2720be910d3bd73c69be590d",
  9482. "shasum": ""
  9483. },
  9484. "require": {
  9485. "php": ">=7.3"
  9486. },
  9487. "require-dev": {
  9488. "phpunit/phpunit": "^9.3",
  9489. "symfony/process": "^4.2 || ^5"
  9490. },
  9491. "type": "library",
  9492. "extra": {
  9493. "branch-alias": {
  9494. "dev-master": "4.0-dev"
  9495. }
  9496. },
  9497. "autoload": {
  9498. "classmap": [
  9499. "src/"
  9500. ]
  9501. },
  9502. "notification-url": "https://packagist.org/downloads/",
  9503. "license": [
  9504. "BSD-3-Clause"
  9505. ],
  9506. "authors": [
  9507. {
  9508. "name": "Sebastian Bergmann",
  9509. "email": "sebastian@phpunit.de"
  9510. },
  9511. {
  9512. "name": "Kore Nordmann",
  9513. "email": "mail@kore-nordmann.de"
  9514. }
  9515. ],
  9516. "description": "Diff implementation",
  9517. "homepage": "https://github.com/sebastianbergmann/diff",
  9518. "keywords": [
  9519. "diff",
  9520. "udiff",
  9521. "unidiff",
  9522. "unified diff"
  9523. ],
  9524. "support": {
  9525. "issues": "https://github.com/sebastianbergmann/diff/issues",
  9526. "source": "https://github.com/sebastianbergmann/diff/tree/4.0.4"
  9527. },
  9528. "funding": [
  9529. {
  9530. "url": "https://github.com/sebastianbergmann",
  9531. "type": "github"
  9532. }
  9533. ],
  9534. "time": "2020-10-26T13:10:38+00:00"
  9535. },
  9536. {
  9537. "name": "sebastian/environment",
  9538. "version": "5.1.5",
  9539. "source": {
  9540. "type": "git",
  9541. "url": "https://github.com/sebastianbergmann/environment.git",
  9542. "reference": "830c43a844f1f8d5b7a1f6d6076b784454d8b7ed"
  9543. },
  9544. "dist": {
  9545. "type": "zip",
  9546. "url": "https://api.github.com/repos/sebastianbergmann/environment/zipball/830c43a844f1f8d5b7a1f6d6076b784454d8b7ed",
  9547. "reference": "830c43a844f1f8d5b7a1f6d6076b784454d8b7ed",
  9548. "shasum": ""
  9549. },
  9550. "require": {
  9551. "php": ">=7.3"
  9552. },
  9553. "require-dev": {
  9554. "phpunit/phpunit": "^9.3"
  9555. },
  9556. "suggest": {
  9557. "ext-posix": "*"
  9558. },
  9559. "type": "library",
  9560. "extra": {
  9561. "branch-alias": {
  9562. "dev-master": "5.1-dev"
  9563. }
  9564. },
  9565. "autoload": {
  9566. "classmap": [
  9567. "src/"
  9568. ]
  9569. },
  9570. "notification-url": "https://packagist.org/downloads/",
  9571. "license": [
  9572. "BSD-3-Clause"
  9573. ],
  9574. "authors": [
  9575. {
  9576. "name": "Sebastian Bergmann",
  9577. "email": "sebastian@phpunit.de"
  9578. }
  9579. ],
  9580. "description": "Provides functionality to handle HHVM/PHP environments",
  9581. "homepage": "http://www.github.com/sebastianbergmann/environment",
  9582. "keywords": [
  9583. "Xdebug",
  9584. "environment",
  9585. "hhvm"
  9586. ],
  9587. "support": {
  9588. "issues": "https://github.com/sebastianbergmann/environment/issues",
  9589. "source": "https://github.com/sebastianbergmann/environment/tree/5.1.5"
  9590. },
  9591. "funding": [
  9592. {
  9593. "url": "https://github.com/sebastianbergmann",
  9594. "type": "github"
  9595. }
  9596. ],
  9597. "time": "2023-02-03T06:03:51+00:00"
  9598. },
  9599. {
  9600. "name": "sebastian/exporter",
  9601. "version": "4.0.5",
  9602. "source": {
  9603. "type": "git",
  9604. "url": "https://github.com/sebastianbergmann/exporter.git",
  9605. "reference": "ac230ed27f0f98f597c8a2b6eb7ac563af5e5b9d"
  9606. },
  9607. "dist": {
  9608. "type": "zip",
  9609. "url": "https://api.github.com/repos/sebastianbergmann/exporter/zipball/ac230ed27f0f98f597c8a2b6eb7ac563af5e5b9d",
  9610. "reference": "ac230ed27f0f98f597c8a2b6eb7ac563af5e5b9d",
  9611. "shasum": ""
  9612. },
  9613. "require": {
  9614. "php": ">=7.3",
  9615. "sebastian/recursion-context": "^4.0"
  9616. },
  9617. "require-dev": {
  9618. "ext-mbstring": "*",
  9619. "phpunit/phpunit": "^9.3"
  9620. },
  9621. "type": "library",
  9622. "extra": {
  9623. "branch-alias": {
  9624. "dev-master": "4.0-dev"
  9625. }
  9626. },
  9627. "autoload": {
  9628. "classmap": [
  9629. "src/"
  9630. ]
  9631. },
  9632. "notification-url": "https://packagist.org/downloads/",
  9633. "license": [
  9634. "BSD-3-Clause"
  9635. ],
  9636. "authors": [
  9637. {
  9638. "name": "Sebastian Bergmann",
  9639. "email": "sebastian@phpunit.de"
  9640. },
  9641. {
  9642. "name": "Jeff Welch",
  9643. "email": "whatthejeff@gmail.com"
  9644. },
  9645. {
  9646. "name": "Volker Dusch",
  9647. "email": "github@wallbash.com"
  9648. },
  9649. {
  9650. "name": "Adam Harvey",
  9651. "email": "aharvey@php.net"
  9652. },
  9653. {
  9654. "name": "Bernhard Schussek",
  9655. "email": "bschussek@gmail.com"
  9656. }
  9657. ],
  9658. "description": "Provides the functionality to export PHP variables for visualization",
  9659. "homepage": "https://www.github.com/sebastianbergmann/exporter",
  9660. "keywords": [
  9661. "export",
  9662. "exporter"
  9663. ],
  9664. "support": {
  9665. "issues": "https://github.com/sebastianbergmann/exporter/issues",
  9666. "source": "https://github.com/sebastianbergmann/exporter/tree/4.0.5"
  9667. },
  9668. "funding": [
  9669. {
  9670. "url": "https://github.com/sebastianbergmann",
  9671. "type": "github"
  9672. }
  9673. ],
  9674. "time": "2022-09-14T06:03:37+00:00"
  9675. },
  9676. {
  9677. "name": "sebastian/global-state",
  9678. "version": "5.0.5",
  9679. "source": {
  9680. "type": "git",
  9681. "url": "https://github.com/sebastianbergmann/global-state.git",
  9682. "reference": "0ca8db5a5fc9c8646244e629625ac486fa286bf2"
  9683. },
  9684. "dist": {
  9685. "type": "zip",
  9686. "url": "https://api.github.com/repos/sebastianbergmann/global-state/zipball/0ca8db5a5fc9c8646244e629625ac486fa286bf2",
  9687. "reference": "0ca8db5a5fc9c8646244e629625ac486fa286bf2",
  9688. "shasum": ""
  9689. },
  9690. "require": {
  9691. "php": ">=7.3",
  9692. "sebastian/object-reflector": "^2.0",
  9693. "sebastian/recursion-context": "^4.0"
  9694. },
  9695. "require-dev": {
  9696. "ext-dom": "*",
  9697. "phpunit/phpunit": "^9.3"
  9698. },
  9699. "suggest": {
  9700. "ext-uopz": "*"
  9701. },
  9702. "type": "library",
  9703. "extra": {
  9704. "branch-alias": {
  9705. "dev-master": "5.0-dev"
  9706. }
  9707. },
  9708. "autoload": {
  9709. "classmap": [
  9710. "src/"
  9711. ]
  9712. },
  9713. "notification-url": "https://packagist.org/downloads/",
  9714. "license": [
  9715. "BSD-3-Clause"
  9716. ],
  9717. "authors": [
  9718. {
  9719. "name": "Sebastian Bergmann",
  9720. "email": "sebastian@phpunit.de"
  9721. }
  9722. ],
  9723. "description": "Snapshotting of global state",
  9724. "homepage": "http://www.github.com/sebastianbergmann/global-state",
  9725. "keywords": [
  9726. "global state"
  9727. ],
  9728. "support": {
  9729. "issues": "https://github.com/sebastianbergmann/global-state/issues",
  9730. "source": "https://github.com/sebastianbergmann/global-state/tree/5.0.5"
  9731. },
  9732. "funding": [
  9733. {
  9734. "url": "https://github.com/sebastianbergmann",
  9735. "type": "github"
  9736. }
  9737. ],
  9738. "time": "2022-02-14T08:28:10+00:00"
  9739. },
  9740. {
  9741. "name": "sebastian/lines-of-code",
  9742. "version": "1.0.3",
  9743. "source": {
  9744. "type": "git",
  9745. "url": "https://github.com/sebastianbergmann/lines-of-code.git",
  9746. "reference": "c1c2e997aa3146983ed888ad08b15470a2e22ecc"
  9747. },
  9748. "dist": {
  9749. "type": "zip",
  9750. "url": "https://api.github.com/repos/sebastianbergmann/lines-of-code/zipball/c1c2e997aa3146983ed888ad08b15470a2e22ecc",
  9751. "reference": "c1c2e997aa3146983ed888ad08b15470a2e22ecc",
  9752. "shasum": ""
  9753. },
  9754. "require": {
  9755. "nikic/php-parser": "^4.6",
  9756. "php": ">=7.3"
  9757. },
  9758. "require-dev": {
  9759. "phpunit/phpunit": "^9.3"
  9760. },
  9761. "type": "library",
  9762. "extra": {
  9763. "branch-alias": {
  9764. "dev-master": "1.0-dev"
  9765. }
  9766. },
  9767. "autoload": {
  9768. "classmap": [
  9769. "src/"
  9770. ]
  9771. },
  9772. "notification-url": "https://packagist.org/downloads/",
  9773. "license": [
  9774. "BSD-3-Clause"
  9775. ],
  9776. "authors": [
  9777. {
  9778. "name": "Sebastian Bergmann",
  9779. "email": "sebastian@phpunit.de",
  9780. "role": "lead"
  9781. }
  9782. ],
  9783. "description": "Library for counting the lines of code in PHP source code",
  9784. "homepage": "https://github.com/sebastianbergmann/lines-of-code",
  9785. "support": {
  9786. "issues": "https://github.com/sebastianbergmann/lines-of-code/issues",
  9787. "source": "https://github.com/sebastianbergmann/lines-of-code/tree/1.0.3"
  9788. },
  9789. "funding": [
  9790. {
  9791. "url": "https://github.com/sebastianbergmann",
  9792. "type": "github"
  9793. }
  9794. ],
  9795. "time": "2020-11-28T06:42:11+00:00"
  9796. },
  9797. {
  9798. "name": "sebastian/object-enumerator",
  9799. "version": "4.0.4",
  9800. "source": {
  9801. "type": "git",
  9802. "url": "https://github.com/sebastianbergmann/object-enumerator.git",
  9803. "reference": "5c9eeac41b290a3712d88851518825ad78f45c71"
  9804. },
  9805. "dist": {
  9806. "type": "zip",
  9807. "url": "https://api.github.com/repos/sebastianbergmann/object-enumerator/zipball/5c9eeac41b290a3712d88851518825ad78f45c71",
  9808. "reference": "5c9eeac41b290a3712d88851518825ad78f45c71",
  9809. "shasum": ""
  9810. },
  9811. "require": {
  9812. "php": ">=7.3",
  9813. "sebastian/object-reflector": "^2.0",
  9814. "sebastian/recursion-context": "^4.0"
  9815. },
  9816. "require-dev": {
  9817. "phpunit/phpunit": "^9.3"
  9818. },
  9819. "type": "library",
  9820. "extra": {
  9821. "branch-alias": {
  9822. "dev-master": "4.0-dev"
  9823. }
  9824. },
  9825. "autoload": {
  9826. "classmap": [
  9827. "src/"
  9828. ]
  9829. },
  9830. "notification-url": "https://packagist.org/downloads/",
  9831. "license": [
  9832. "BSD-3-Clause"
  9833. ],
  9834. "authors": [
  9835. {
  9836. "name": "Sebastian Bergmann",
  9837. "email": "sebastian@phpunit.de"
  9838. }
  9839. ],
  9840. "description": "Traverses array structures and object graphs to enumerate all referenced objects",
  9841. "homepage": "https://github.com/sebastianbergmann/object-enumerator/",
  9842. "support": {
  9843. "issues": "https://github.com/sebastianbergmann/object-enumerator/issues",
  9844. "source": "https://github.com/sebastianbergmann/object-enumerator/tree/4.0.4"
  9845. },
  9846. "funding": [
  9847. {
  9848. "url": "https://github.com/sebastianbergmann",
  9849. "type": "github"
  9850. }
  9851. ],
  9852. "time": "2020-10-26T13:12:34+00:00"
  9853. },
  9854. {
  9855. "name": "sebastian/object-reflector",
  9856. "version": "2.0.4",
  9857. "source": {
  9858. "type": "git",
  9859. "url": "https://github.com/sebastianbergmann/object-reflector.git",
  9860. "reference": "b4f479ebdbf63ac605d183ece17d8d7fe49c15c7"
  9861. },
  9862. "dist": {
  9863. "type": "zip",
  9864. "url": "https://api.github.com/repos/sebastianbergmann/object-reflector/zipball/b4f479ebdbf63ac605d183ece17d8d7fe49c15c7",
  9865. "reference": "b4f479ebdbf63ac605d183ece17d8d7fe49c15c7",
  9866. "shasum": ""
  9867. },
  9868. "require": {
  9869. "php": ">=7.3"
  9870. },
  9871. "require-dev": {
  9872. "phpunit/phpunit": "^9.3"
  9873. },
  9874. "type": "library",
  9875. "extra": {
  9876. "branch-alias": {
  9877. "dev-master": "2.0-dev"
  9878. }
  9879. },
  9880. "autoload": {
  9881. "classmap": [
  9882. "src/"
  9883. ]
  9884. },
  9885. "notification-url": "https://packagist.org/downloads/",
  9886. "license": [
  9887. "BSD-3-Clause"
  9888. ],
  9889. "authors": [
  9890. {
  9891. "name": "Sebastian Bergmann",
  9892. "email": "sebastian@phpunit.de"
  9893. }
  9894. ],
  9895. "description": "Allows reflection of object attributes, including inherited and non-public ones",
  9896. "homepage": "https://github.com/sebastianbergmann/object-reflector/",
  9897. "support": {
  9898. "issues": "https://github.com/sebastianbergmann/object-reflector/issues",
  9899. "source": "https://github.com/sebastianbergmann/object-reflector/tree/2.0.4"
  9900. },
  9901. "funding": [
  9902. {
  9903. "url": "https://github.com/sebastianbergmann",
  9904. "type": "github"
  9905. }
  9906. ],
  9907. "time": "2020-10-26T13:14:26+00:00"
  9908. },
  9909. {
  9910. "name": "sebastian/recursion-context",
  9911. "version": "4.0.5",
  9912. "source": {
  9913. "type": "git",
  9914. "url": "https://github.com/sebastianbergmann/recursion-context.git",
  9915. "reference": "e75bd0f07204fec2a0af9b0f3cfe97d05f92efc1"
  9916. },
  9917. "dist": {
  9918. "type": "zip",
  9919. "url": "https://api.github.com/repos/sebastianbergmann/recursion-context/zipball/e75bd0f07204fec2a0af9b0f3cfe97d05f92efc1",
  9920. "reference": "e75bd0f07204fec2a0af9b0f3cfe97d05f92efc1",
  9921. "shasum": ""
  9922. },
  9923. "require": {
  9924. "php": ">=7.3"
  9925. },
  9926. "require-dev": {
  9927. "phpunit/phpunit": "^9.3"
  9928. },
  9929. "type": "library",
  9930. "extra": {
  9931. "branch-alias": {
  9932. "dev-master": "4.0-dev"
  9933. }
  9934. },
  9935. "autoload": {
  9936. "classmap": [
  9937. "src/"
  9938. ]
  9939. },
  9940. "notification-url": "https://packagist.org/downloads/",
  9941. "license": [
  9942. "BSD-3-Clause"
  9943. ],
  9944. "authors": [
  9945. {
  9946. "name": "Sebastian Bergmann",
  9947. "email": "sebastian@phpunit.de"
  9948. },
  9949. {
  9950. "name": "Jeff Welch",
  9951. "email": "whatthejeff@gmail.com"
  9952. },
  9953. {
  9954. "name": "Adam Harvey",
  9955. "email": "aharvey@php.net"
  9956. }
  9957. ],
  9958. "description": "Provides functionality to recursively process PHP variables",
  9959. "homepage": "https://github.com/sebastianbergmann/recursion-context",
  9960. "support": {
  9961. "issues": "https://github.com/sebastianbergmann/recursion-context/issues",
  9962. "source": "https://github.com/sebastianbergmann/recursion-context/tree/4.0.5"
  9963. },
  9964. "funding": [
  9965. {
  9966. "url": "https://github.com/sebastianbergmann",
  9967. "type": "github"
  9968. }
  9969. ],
  9970. "time": "2023-02-03T06:07:39+00:00"
  9971. },
  9972. {
  9973. "name": "sebastian/resource-operations",
  9974. "version": "3.0.3",
  9975. "source": {
  9976. "type": "git",
  9977. "url": "https://github.com/sebastianbergmann/resource-operations.git",
  9978. "reference": "0f4443cb3a1d92ce809899753bc0d5d5a8dd19a8"
  9979. },
  9980. "dist": {
  9981. "type": "zip",
  9982. "url": "https://api.github.com/repos/sebastianbergmann/resource-operations/zipball/0f4443cb3a1d92ce809899753bc0d5d5a8dd19a8",
  9983. "reference": "0f4443cb3a1d92ce809899753bc0d5d5a8dd19a8",
  9984. "shasum": ""
  9985. },
  9986. "require": {
  9987. "php": ">=7.3"
  9988. },
  9989. "require-dev": {
  9990. "phpunit/phpunit": "^9.0"
  9991. },
  9992. "type": "library",
  9993. "extra": {
  9994. "branch-alias": {
  9995. "dev-master": "3.0-dev"
  9996. }
  9997. },
  9998. "autoload": {
  9999. "classmap": [
  10000. "src/"
  10001. ]
  10002. },
  10003. "notification-url": "https://packagist.org/downloads/",
  10004. "license": [
  10005. "BSD-3-Clause"
  10006. ],
  10007. "authors": [
  10008. {
  10009. "name": "Sebastian Bergmann",
  10010. "email": "sebastian@phpunit.de"
  10011. }
  10012. ],
  10013. "description": "Provides a list of PHP built-in functions that operate on resources",
  10014. "homepage": "https://www.github.com/sebastianbergmann/resource-operations",
  10015. "support": {
  10016. "issues": "https://github.com/sebastianbergmann/resource-operations/issues",
  10017. "source": "https://github.com/sebastianbergmann/resource-operations/tree/3.0.3"
  10018. },
  10019. "funding": [
  10020. {
  10021. "url": "https://github.com/sebastianbergmann",
  10022. "type": "github"
  10023. }
  10024. ],
  10025. "time": "2020-09-28T06:45:17+00:00"
  10026. },
  10027. {
  10028. "name": "sebastian/type",
  10029. "version": "3.2.1",
  10030. "source": {
  10031. "type": "git",
  10032. "url": "https://github.com/sebastianbergmann/type.git",
  10033. "reference": "75e2c2a32f5e0b3aef905b9ed0b179b953b3d7c7"
  10034. },
  10035. "dist": {
  10036. "type": "zip",
  10037. "url": "https://api.github.com/repos/sebastianbergmann/type/zipball/75e2c2a32f5e0b3aef905b9ed0b179b953b3d7c7",
  10038. "reference": "75e2c2a32f5e0b3aef905b9ed0b179b953b3d7c7",
  10039. "shasum": ""
  10040. },
  10041. "require": {
  10042. "php": ">=7.3"
  10043. },
  10044. "require-dev": {
  10045. "phpunit/phpunit": "^9.5"
  10046. },
  10047. "type": "library",
  10048. "extra": {
  10049. "branch-alias": {
  10050. "dev-master": "3.2-dev"
  10051. }
  10052. },
  10053. "autoload": {
  10054. "classmap": [
  10055. "src/"
  10056. ]
  10057. },
  10058. "notification-url": "https://packagist.org/downloads/",
  10059. "license": [
  10060. "BSD-3-Clause"
  10061. ],
  10062. "authors": [
  10063. {
  10064. "name": "Sebastian Bergmann",
  10065. "email": "sebastian@phpunit.de",
  10066. "role": "lead"
  10067. }
  10068. ],
  10069. "description": "Collection of value objects that represent the types of the PHP type system",
  10070. "homepage": "https://github.com/sebastianbergmann/type",
  10071. "support": {
  10072. "issues": "https://github.com/sebastianbergmann/type/issues",
  10073. "source": "https://github.com/sebastianbergmann/type/tree/3.2.1"
  10074. },
  10075. "funding": [
  10076. {
  10077. "url": "https://github.com/sebastianbergmann",
  10078. "type": "github"
  10079. }
  10080. ],
  10081. "time": "2023-02-03T06:13:03+00:00"
  10082. },
  10083. {
  10084. "name": "sebastian/version",
  10085. "version": "3.0.2",
  10086. "source": {
  10087. "type": "git",
  10088. "url": "https://github.com/sebastianbergmann/version.git",
  10089. "reference": "c6c1022351a901512170118436c764e473f6de8c"
  10090. },
  10091. "dist": {
  10092. "type": "zip",
  10093. "url": "https://api.github.com/repos/sebastianbergmann/version/zipball/c6c1022351a901512170118436c764e473f6de8c",
  10094. "reference": "c6c1022351a901512170118436c764e473f6de8c",
  10095. "shasum": ""
  10096. },
  10097. "require": {
  10098. "php": ">=7.3"
  10099. },
  10100. "type": "library",
  10101. "extra": {
  10102. "branch-alias": {
  10103. "dev-master": "3.0-dev"
  10104. }
  10105. },
  10106. "autoload": {
  10107. "classmap": [
  10108. "src/"
  10109. ]
  10110. },
  10111. "notification-url": "https://packagist.org/downloads/",
  10112. "license": [
  10113. "BSD-3-Clause"
  10114. ],
  10115. "authors": [
  10116. {
  10117. "name": "Sebastian Bergmann",
  10118. "email": "sebastian@phpunit.de",
  10119. "role": "lead"
  10120. }
  10121. ],
  10122. "description": "Library that helps with managing the version number of Git-hosted PHP projects",
  10123. "homepage": "https://github.com/sebastianbergmann/version",
  10124. "support": {
  10125. "issues": "https://github.com/sebastianbergmann/version/issues",
  10126. "source": "https://github.com/sebastianbergmann/version/tree/3.0.2"
  10127. },
  10128. "funding": [
  10129. {
  10130. "url": "https://github.com/sebastianbergmann",
  10131. "type": "github"
  10132. }
  10133. ],
  10134. "time": "2020-09-28T06:39:44+00:00"
  10135. },
  10136. {
  10137. "name": "symfony/browser-kit",
  10138. "version": "v6.2.7",
  10139. "source": {
  10140. "type": "git",
  10141. "url": "https://github.com/symfony/browser-kit.git",
  10142. "reference": "87bd43240e6cc855f70ea1c7a448ab3bd442633c"
  10143. },
  10144. "dist": {
  10145. "type": "zip",
  10146. "url": "https://api.github.com/repos/symfony/browser-kit/zipball/87bd43240e6cc855f70ea1c7a448ab3bd442633c",
  10147. "reference": "87bd43240e6cc855f70ea1c7a448ab3bd442633c",
  10148. "shasum": ""
  10149. },
  10150. "require": {
  10151. "php": ">=8.1",
  10152. "symfony/dom-crawler": "^5.4|^6.0"
  10153. },
  10154. "require-dev": {
  10155. "symfony/css-selector": "^5.4|^6.0",
  10156. "symfony/http-client": "^5.4|^6.0",
  10157. "symfony/mime": "^5.4|^6.0",
  10158. "symfony/process": "^5.4|^6.0"
  10159. },
  10160. "suggest": {
  10161. "symfony/process": ""
  10162. },
  10163. "type": "library",
  10164. "autoload": {
  10165. "psr-4": {
  10166. "Symfony\\Component\\BrowserKit\\": ""
  10167. },
  10168. "exclude-from-classmap": [
  10169. "/Tests/"
  10170. ]
  10171. },
  10172. "notification-url": "https://packagist.org/downloads/",
  10173. "license": [
  10174. "MIT"
  10175. ],
  10176. "authors": [
  10177. {
  10178. "name": "Fabien Potencier",
  10179. "email": "fabien@symfony.com"
  10180. },
  10181. {
  10182. "name": "Symfony Community",
  10183. "homepage": "https://symfony.com/contributors"
  10184. }
  10185. ],
  10186. "description": "Simulates the behavior of a web browser, allowing you to make requests, click on links and submit forms programmatically",
  10187. "homepage": "https://symfony.com",
  10188. "support": {
  10189. "source": "https://github.com/symfony/browser-kit/tree/v6.2.7"
  10190. },
  10191. "funding": [
  10192. {
  10193. "url": "https://symfony.com/sponsor",
  10194. "type": "custom"
  10195. },
  10196. {
  10197. "url": "https://github.com/fabpot",
  10198. "type": "github"
  10199. },
  10200. {
  10201. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  10202. "type": "tidelift"
  10203. }
  10204. ],
  10205. "time": "2023-02-14T08:44:56+00:00"
  10206. },
  10207. {
  10208. "name": "symfony/css-selector",
  10209. "version": "v6.2.7",
  10210. "source": {
  10211. "type": "git",
  10212. "url": "https://github.com/symfony/css-selector.git",
  10213. "reference": "aedf3cb0f5b929ec255d96bbb4909e9932c769e0"
  10214. },
  10215. "dist": {
  10216. "type": "zip",
  10217. "url": "https://api.github.com/repos/symfony/css-selector/zipball/aedf3cb0f5b929ec255d96bbb4909e9932c769e0",
  10218. "reference": "aedf3cb0f5b929ec255d96bbb4909e9932c769e0",
  10219. "shasum": ""
  10220. },
  10221. "require": {
  10222. "php": ">=8.1"
  10223. },
  10224. "type": "library",
  10225. "autoload": {
  10226. "psr-4": {
  10227. "Symfony\\Component\\CssSelector\\": ""
  10228. },
  10229. "exclude-from-classmap": [
  10230. "/Tests/"
  10231. ]
  10232. },
  10233. "notification-url": "https://packagist.org/downloads/",
  10234. "license": [
  10235. "MIT"
  10236. ],
  10237. "authors": [
  10238. {
  10239. "name": "Fabien Potencier",
  10240. "email": "fabien@symfony.com"
  10241. },
  10242. {
  10243. "name": "Jean-François Simon",
  10244. "email": "jeanfrancois.simon@sensiolabs.com"
  10245. },
  10246. {
  10247. "name": "Symfony Community",
  10248. "homepage": "https://symfony.com/contributors"
  10249. }
  10250. ],
  10251. "description": "Converts CSS selectors to XPath expressions",
  10252. "homepage": "https://symfony.com",
  10253. "support": {
  10254. "source": "https://github.com/symfony/css-selector/tree/v6.2.7"
  10255. },
  10256. "funding": [
  10257. {
  10258. "url": "https://symfony.com/sponsor",
  10259. "type": "custom"
  10260. },
  10261. {
  10262. "url": "https://github.com/fabpot",
  10263. "type": "github"
  10264. },
  10265. {
  10266. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  10267. "type": "tidelift"
  10268. }
  10269. ],
  10270. "time": "2023-02-14T08:44:56+00:00"
  10271. },
  10272. {
  10273. "name": "symfony/debug-bundle",
  10274. "version": "v6.2.7",
  10275. "source": {
  10276. "type": "git",
  10277. "url": "https://github.com/symfony/debug-bundle.git",
  10278. "reference": "8ff6c96d09c462beade7512137899e400c76d994"
  10279. },
  10280. "dist": {
  10281. "type": "zip",
  10282. "url": "https://api.github.com/repos/symfony/debug-bundle/zipball/8ff6c96d09c462beade7512137899e400c76d994",
  10283. "reference": "8ff6c96d09c462beade7512137899e400c76d994",
  10284. "shasum": ""
  10285. },
  10286. "require": {
  10287. "ext-xml": "*",
  10288. "php": ">=8.1",
  10289. "symfony/dependency-injection": "^5.4|^6.0",
  10290. "symfony/http-kernel": "^5.4|^6.0",
  10291. "symfony/twig-bridge": "^5.4|^6.0",
  10292. "symfony/var-dumper": "^5.4|^6.0"
  10293. },
  10294. "conflict": {
  10295. "symfony/config": "<5.4",
  10296. "symfony/dependency-injection": "<5.4"
  10297. },
  10298. "require-dev": {
  10299. "symfony/config": "^5.4|^6.0",
  10300. "symfony/web-profiler-bundle": "^5.4|^6.0"
  10301. },
  10302. "suggest": {
  10303. "symfony/config": "For service container configuration",
  10304. "symfony/dependency-injection": "For using as a service from the container"
  10305. },
  10306. "type": "symfony-bundle",
  10307. "autoload": {
  10308. "psr-4": {
  10309. "Symfony\\Bundle\\DebugBundle\\": ""
  10310. },
  10311. "exclude-from-classmap": [
  10312. "/Tests/"
  10313. ]
  10314. },
  10315. "notification-url": "https://packagist.org/downloads/",
  10316. "license": [
  10317. "MIT"
  10318. ],
  10319. "authors": [
  10320. {
  10321. "name": "Fabien Potencier",
  10322. "email": "fabien@symfony.com"
  10323. },
  10324. {
  10325. "name": "Symfony Community",
  10326. "homepage": "https://symfony.com/contributors"
  10327. }
  10328. ],
  10329. "description": "Provides a tight integration of the Symfony VarDumper component and the ServerLogCommand from MonologBridge into the Symfony full-stack framework",
  10330. "homepage": "https://symfony.com",
  10331. "support": {
  10332. "source": "https://github.com/symfony/debug-bundle/tree/v6.2.7"
  10333. },
  10334. "funding": [
  10335. {
  10336. "url": "https://symfony.com/sponsor",
  10337. "type": "custom"
  10338. },
  10339. {
  10340. "url": "https://github.com/fabpot",
  10341. "type": "github"
  10342. },
  10343. {
  10344. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  10345. "type": "tidelift"
  10346. }
  10347. ],
  10348. "time": "2023-02-14T08:44:56+00:00"
  10349. },
  10350. {
  10351. "name": "symfony/dom-crawler",
  10352. "version": "v6.2.9",
  10353. "source": {
  10354. "type": "git",
  10355. "url": "https://github.com/symfony/dom-crawler.git",
  10356. "reference": "328bc3795059651d2d4e462e8febdf7ec2d7a626"
  10357. },
  10358. "dist": {
  10359. "type": "zip",
  10360. "url": "https://api.github.com/repos/symfony/dom-crawler/zipball/328bc3795059651d2d4e462e8febdf7ec2d7a626",
  10361. "reference": "328bc3795059651d2d4e462e8febdf7ec2d7a626",
  10362. "shasum": ""
  10363. },
  10364. "require": {
  10365. "masterminds/html5": "^2.6",
  10366. "php": ">=8.1",
  10367. "symfony/polyfill-ctype": "~1.8",
  10368. "symfony/polyfill-mbstring": "~1.0"
  10369. },
  10370. "require-dev": {
  10371. "symfony/css-selector": "^5.4|^6.0"
  10372. },
  10373. "suggest": {
  10374. "symfony/css-selector": ""
  10375. },
  10376. "type": "library",
  10377. "autoload": {
  10378. "psr-4": {
  10379. "Symfony\\Component\\DomCrawler\\": ""
  10380. },
  10381. "exclude-from-classmap": [
  10382. "/Tests/"
  10383. ]
  10384. },
  10385. "notification-url": "https://packagist.org/downloads/",
  10386. "license": [
  10387. "MIT"
  10388. ],
  10389. "authors": [
  10390. {
  10391. "name": "Fabien Potencier",
  10392. "email": "fabien@symfony.com"
  10393. },
  10394. {
  10395. "name": "Symfony Community",
  10396. "homepage": "https://symfony.com/contributors"
  10397. }
  10398. ],
  10399. "description": "Eases DOM navigation for HTML and XML documents",
  10400. "homepage": "https://symfony.com",
  10401. "support": {
  10402. "source": "https://github.com/symfony/dom-crawler/tree/v6.2.9"
  10403. },
  10404. "funding": [
  10405. {
  10406. "url": "https://symfony.com/sponsor",
  10407. "type": "custom"
  10408. },
  10409. {
  10410. "url": "https://github.com/fabpot",
  10411. "type": "github"
  10412. },
  10413. {
  10414. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  10415. "type": "tidelift"
  10416. }
  10417. ],
  10418. "time": "2023-04-11T16:03:19+00:00"
  10419. },
  10420. {
  10421. "name": "symfony/maker-bundle",
  10422. "version": "v1.48.0",
  10423. "source": {
  10424. "type": "git",
  10425. "url": "https://github.com/symfony/maker-bundle.git",
  10426. "reference": "2e428e8432e9879187672fe08f1cc335e2a31dd6"
  10427. },
  10428. "dist": {
  10429. "type": "zip",
  10430. "url": "https://api.github.com/repos/symfony/maker-bundle/zipball/2e428e8432e9879187672fe08f1cc335e2a31dd6",
  10431. "reference": "2e428e8432e9879187672fe08f1cc335e2a31dd6",
  10432. "shasum": ""
  10433. },
  10434. "require": {
  10435. "doctrine/inflector": "^2.0",
  10436. "nikic/php-parser": "^4.11",
  10437. "php": ">=8.0",
  10438. "symfony/config": "^5.4.7|^6.0",
  10439. "symfony/console": "^5.4.7|^6.0",
  10440. "symfony/dependency-injection": "^5.4.7|^6.0",
  10441. "symfony/deprecation-contracts": "^2.2|^3",
  10442. "symfony/filesystem": "^5.4.7|^6.0",
  10443. "symfony/finder": "^5.4.3|^6.0",
  10444. "symfony/framework-bundle": "^5.4.7|^6.0",
  10445. "symfony/http-kernel": "^5.4.7|^6.0"
  10446. },
  10447. "conflict": {
  10448. "doctrine/doctrine-bundle": "<2.4",
  10449. "doctrine/orm": "<2.10",
  10450. "symfony/doctrine-bridge": "<5.4"
  10451. },
  10452. "require-dev": {
  10453. "composer/semver": "^3.0",
  10454. "doctrine/doctrine-bundle": "^2.4",
  10455. "doctrine/orm": "^2.10.0",
  10456. "symfony/http-client": "^5.4.7|^6.0",
  10457. "symfony/phpunit-bridge": "^5.4.7|^6.0",
  10458. "symfony/polyfill-php80": "^1.16.0",
  10459. "symfony/process": "^5.4.7|^6.0",
  10460. "symfony/security-core": "^5.4.7|^6.0",
  10461. "symfony/yaml": "^5.4.3|^6.0",
  10462. "twig/twig": "^2.0|^3.0"
  10463. },
  10464. "type": "symfony-bundle",
  10465. "extra": {
  10466. "branch-alias": {
  10467. "dev-main": "1.0-dev"
  10468. }
  10469. },
  10470. "autoload": {
  10471. "psr-4": {
  10472. "Symfony\\Bundle\\MakerBundle\\": "src/"
  10473. }
  10474. },
  10475. "notification-url": "https://packagist.org/downloads/",
  10476. "license": [
  10477. "MIT"
  10478. ],
  10479. "authors": [
  10480. {
  10481. "name": "Symfony Community",
  10482. "homepage": "https://symfony.com/contributors"
  10483. }
  10484. ],
  10485. "description": "Symfony Maker helps you create empty commands, controllers, form classes, tests and more so you can forget about writing boilerplate code.",
  10486. "homepage": "https://symfony.com/doc/current/bundles/SymfonyMakerBundle/index.html",
  10487. "keywords": [
  10488. "code generator",
  10489. "generator",
  10490. "scaffold",
  10491. "scaffolding"
  10492. ],
  10493. "support": {
  10494. "issues": "https://github.com/symfony/maker-bundle/issues",
  10495. "source": "https://github.com/symfony/maker-bundle/tree/v1.48.0"
  10496. },
  10497. "funding": [
  10498. {
  10499. "url": "https://symfony.com/sponsor",
  10500. "type": "custom"
  10501. },
  10502. {
  10503. "url": "https://github.com/fabpot",
  10504. "type": "github"
  10505. },
  10506. {
  10507. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  10508. "type": "tidelift"
  10509. }
  10510. ],
  10511. "time": "2022-11-14T10:48:46+00:00"
  10512. },
  10513. {
  10514. "name": "symfony/phpunit-bridge",
  10515. "version": "v6.2.7",
  10516. "source": {
  10517. "type": "git",
  10518. "url": "https://github.com/symfony/phpunit-bridge.git",
  10519. "reference": "56965fae0b6b8d271015990eff5240ffff02e185"
  10520. },
  10521. "dist": {
  10522. "type": "zip",
  10523. "url": "https://api.github.com/repos/symfony/phpunit-bridge/zipball/56965fae0b6b8d271015990eff5240ffff02e185",
  10524. "reference": "56965fae0b6b8d271015990eff5240ffff02e185",
  10525. "shasum": ""
  10526. },
  10527. "require": {
  10528. "php": ">=7.1.3"
  10529. },
  10530. "conflict": {
  10531. "phpunit/phpunit": "<7.5|9.1.2"
  10532. },
  10533. "require-dev": {
  10534. "symfony/deprecation-contracts": "^2.1|^3.0",
  10535. "symfony/error-handler": "^5.4|^6.0"
  10536. },
  10537. "suggest": {
  10538. "symfony/error-handler": "For tracking deprecated interfaces usages at runtime with DebugClassLoader"
  10539. },
  10540. "bin": [
  10541. "bin/simple-phpunit"
  10542. ],
  10543. "type": "symfony-bridge",
  10544. "extra": {
  10545. "thanks": {
  10546. "name": "phpunit/phpunit",
  10547. "url": "https://github.com/sebastianbergmann/phpunit"
  10548. }
  10549. },
  10550. "autoload": {
  10551. "files": [
  10552. "bootstrap.php"
  10553. ],
  10554. "psr-4": {
  10555. "Symfony\\Bridge\\PhpUnit\\": ""
  10556. },
  10557. "exclude-from-classmap": [
  10558. "/Tests/"
  10559. ]
  10560. },
  10561. "notification-url": "https://packagist.org/downloads/",
  10562. "license": [
  10563. "MIT"
  10564. ],
  10565. "authors": [
  10566. {
  10567. "name": "Nicolas Grekas",
  10568. "email": "p@tchwork.com"
  10569. },
  10570. {
  10571. "name": "Symfony Community",
  10572. "homepage": "https://symfony.com/contributors"
  10573. }
  10574. ],
  10575. "description": "Provides utilities for PHPUnit, especially user deprecation notices management",
  10576. "homepage": "https://symfony.com",
  10577. "support": {
  10578. "source": "https://github.com/symfony/phpunit-bridge/tree/v6.2.7"
  10579. },
  10580. "funding": [
  10581. {
  10582. "url": "https://symfony.com/sponsor",
  10583. "type": "custom"
  10584. },
  10585. {
  10586. "url": "https://github.com/fabpot",
  10587. "type": "github"
  10588. },
  10589. {
  10590. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  10591. "type": "tidelift"
  10592. }
  10593. ],
  10594. "time": "2023-02-16T09:57:23+00:00"
  10595. },
  10596. {
  10597. "name": "symfony/web-profiler-bundle",
  10598. "version": "v6.2.7",
  10599. "source": {
  10600. "type": "git",
  10601. "url": "https://github.com/symfony/web-profiler-bundle.git",
  10602. "reference": "0d183e0a69652e348007e97ffff8d3ded9cc6d2d"
  10603. },
  10604. "dist": {
  10605. "type": "zip",
  10606. "url": "https://api.github.com/repos/symfony/web-profiler-bundle/zipball/0d183e0a69652e348007e97ffff8d3ded9cc6d2d",
  10607. "reference": "0d183e0a69652e348007e97ffff8d3ded9cc6d2d",
  10608. "shasum": ""
  10609. },
  10610. "require": {
  10611. "php": ">=8.1",
  10612. "symfony/config": "^5.4|^6.0",
  10613. "symfony/framework-bundle": "^5.4|^6.0",
  10614. "symfony/http-kernel": "^6.1",
  10615. "symfony/routing": "^5.4|^6.0",
  10616. "symfony/twig-bundle": "^5.4|^6.0",
  10617. "twig/twig": "^2.13|^3.0.4"
  10618. },
  10619. "conflict": {
  10620. "symfony/form": "<5.4",
  10621. "symfony/mailer": "<5.4",
  10622. "symfony/messenger": "<5.4"
  10623. },
  10624. "require-dev": {
  10625. "symfony/browser-kit": "^5.4|^6.0",
  10626. "symfony/console": "^5.4|^6.0",
  10627. "symfony/css-selector": "^5.4|^6.0",
  10628. "symfony/stopwatch": "^5.4|^6.0"
  10629. },
  10630. "type": "symfony-bundle",
  10631. "autoload": {
  10632. "psr-4": {
  10633. "Symfony\\Bundle\\WebProfilerBundle\\": ""
  10634. },
  10635. "exclude-from-classmap": [
  10636. "/Tests/"
  10637. ]
  10638. },
  10639. "notification-url": "https://packagist.org/downloads/",
  10640. "license": [
  10641. "MIT"
  10642. ],
  10643. "authors": [
  10644. {
  10645. "name": "Fabien Potencier",
  10646. "email": "fabien@symfony.com"
  10647. },
  10648. {
  10649. "name": "Symfony Community",
  10650. "homepage": "https://symfony.com/contributors"
  10651. }
  10652. ],
  10653. "description": "Provides a development tool that gives detailed information about the execution of any request",
  10654. "homepage": "https://symfony.com",
  10655. "support": {
  10656. "source": "https://github.com/symfony/web-profiler-bundle/tree/v6.2.7"
  10657. },
  10658. "funding": [
  10659. {
  10660. "url": "https://symfony.com/sponsor",
  10661. "type": "custom"
  10662. },
  10663. {
  10664. "url": "https://github.com/fabpot",
  10665. "type": "github"
  10666. },
  10667. {
  10668. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  10669. "type": "tidelift"
  10670. }
  10671. ],
  10672. "time": "2023-02-21T16:32:03+00:00"
  10673. },
  10674. {
  10675. "name": "theseer/tokenizer",
  10676. "version": "1.2.1",
  10677. "source": {
  10678. "type": "git",
  10679. "url": "https://github.com/theseer/tokenizer.git",
  10680. "reference": "34a41e998c2183e22995f158c581e7b5e755ab9e"
  10681. },
  10682. "dist": {
  10683. "type": "zip",
  10684. "url": "https://api.github.com/repos/theseer/tokenizer/zipball/34a41e998c2183e22995f158c581e7b5e755ab9e",
  10685. "reference": "34a41e998c2183e22995f158c581e7b5e755ab9e",
  10686. "shasum": ""
  10687. },
  10688. "require": {
  10689. "ext-dom": "*",
  10690. "ext-tokenizer": "*",
  10691. "ext-xmlwriter": "*",
  10692. "php": "^7.2 || ^8.0"
  10693. },
  10694. "type": "library",
  10695. "autoload": {
  10696. "classmap": [
  10697. "src/"
  10698. ]
  10699. },
  10700. "notification-url": "https://packagist.org/downloads/",
  10701. "license": [
  10702. "BSD-3-Clause"
  10703. ],
  10704. "authors": [
  10705. {
  10706. "name": "Arne Blankerts",
  10707. "email": "arne@blankerts.de",
  10708. "role": "Developer"
  10709. }
  10710. ],
  10711. "description": "A small library for converting tokenized PHP source code into XML and potentially other formats",
  10712. "support": {
  10713. "issues": "https://github.com/theseer/tokenizer/issues",
  10714. "source": "https://github.com/theseer/tokenizer/tree/1.2.1"
  10715. },
  10716. "funding": [
  10717. {
  10718. "url": "https://github.com/theseer",
  10719. "type": "github"
  10720. }
  10721. ],
  10722. "time": "2021-07-28T10:34:58+00:00"
  10723. }
  10724. ],
  10725. "aliases": [],
  10726. "minimum-stability": "stable",
  10727. "stability-flags": [],
  10728. "prefer-stable": false,
  10729. "prefer-lowest": false,
  10730. "platform": {
  10731. "php": "^8.1",
  10732. "ext-ctype": "*",
  10733. "ext-iconv": "*"
  10734. },
  10735. "platform-dev": [],
  10736. "platform-overrides": {
  10737. "php": "8.1"
  10738. },
  10739. "plugin-api-version": "2.3.0"
  10740. }