composer.lock 332 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298529953005301530253035304530553065307530853095310531153125313531453155316531753185319532053215322532353245325532653275328532953305331533253335334533553365337533853395340534153425343534453455346534753485349535053515352535353545355535653575358535953605361536253635364536553665367536853695370537153725373537453755376537753785379538053815382538353845385538653875388538953905391539253935394539553965397539853995400540154025403540454055406540754085409541054115412541354145415541654175418541954205421542254235424542554265427542854295430543154325433543454355436543754385439544054415442544354445445544654475448544954505451545254535454545554565457545854595460546154625463546454655466546754685469547054715472547354745475547654775478547954805481548254835484548554865487548854895490549154925493549454955496549754985499550055015502550355045505550655075508550955105511551255135514551555165517551855195520552155225523552455255526552755285529553055315532553355345535553655375538553955405541554255435544554555465547554855495550555155525553555455555556555755585559556055615562556355645565556655675568556955705571557255735574557555765577557855795580558155825583558455855586558755885589559055915592559355945595559655975598559956005601560256035604560556065607560856095610561156125613561456155616561756185619562056215622562356245625562656275628562956305631563256335634563556365637563856395640564156425643564456455646564756485649565056515652565356545655565656575658565956605661566256635664566556665667566856695670567156725673567456755676567756785679568056815682568356845685568656875688568956905691569256935694569556965697569856995700570157025703570457055706570757085709571057115712571357145715571657175718571957205721572257235724572557265727572857295730573157325733573457355736573757385739574057415742574357445745574657475748574957505751575257535754575557565757575857595760576157625763576457655766576757685769577057715772577357745775577657775778577957805781578257835784578557865787578857895790579157925793579457955796579757985799580058015802580358045805580658075808580958105811581258135814581558165817581858195820582158225823582458255826582758285829583058315832583358345835583658375838583958405841584258435844584558465847584858495850585158525853585458555856585758585859586058615862586358645865586658675868586958705871587258735874587558765877587858795880588158825883588458855886588758885889589058915892589358945895589658975898589959005901590259035904590559065907590859095910591159125913591459155916591759185919592059215922592359245925592659275928592959305931593259335934593559365937593859395940594159425943594459455946594759485949595059515952595359545955595659575958595959605961596259635964596559665967596859695970597159725973597459755976597759785979598059815982598359845985598659875988598959905991599259935994599559965997599859996000600160026003600460056006600760086009601060116012601360146015601660176018601960206021602260236024602560266027602860296030603160326033603460356036603760386039604060416042604360446045604660476048604960506051605260536054605560566057605860596060606160626063606460656066606760686069607060716072607360746075607660776078607960806081608260836084608560866087608860896090609160926093609460956096609760986099610061016102610361046105610661076108610961106111611261136114611561166117611861196120612161226123612461256126612761286129613061316132613361346135613661376138613961406141614261436144614561466147614861496150615161526153615461556156615761586159616061616162616361646165616661676168616961706171617261736174617561766177617861796180618161826183618461856186618761886189619061916192619361946195619661976198619962006201620262036204620562066207620862096210621162126213621462156216621762186219622062216222622362246225622662276228622962306231623262336234623562366237623862396240624162426243624462456246624762486249625062516252625362546255625662576258625962606261626262636264626562666267626862696270627162726273627462756276627762786279628062816282628362846285628662876288628962906291629262936294629562966297629862996300630163026303630463056306630763086309631063116312631363146315631663176318631963206321632263236324632563266327632863296330633163326333633463356336633763386339634063416342634363446345634663476348634963506351635263536354635563566357635863596360636163626363636463656366636763686369637063716372637363746375637663776378637963806381638263836384638563866387638863896390639163926393639463956396639763986399640064016402640364046405640664076408640964106411641264136414641564166417641864196420642164226423642464256426642764286429643064316432643364346435643664376438643964406441644264436444644564466447644864496450645164526453645464556456645764586459646064616462646364646465646664676468646964706471647264736474647564766477647864796480648164826483648464856486648764886489649064916492649364946495649664976498649965006501650265036504650565066507650865096510651165126513651465156516651765186519652065216522652365246525652665276528652965306531653265336534653565366537653865396540654165426543654465456546654765486549655065516552655365546555655665576558655965606561656265636564656565666567656865696570657165726573657465756576657765786579658065816582658365846585658665876588658965906591659265936594659565966597659865996600660166026603660466056606660766086609661066116612661366146615661666176618661966206621662266236624662566266627662866296630663166326633663466356636663766386639664066416642664366446645664666476648664966506651665266536654665566566657665866596660666166626663666466656666666766686669667066716672667366746675667666776678667966806681668266836684668566866687668866896690669166926693669466956696669766986699670067016702670367046705670667076708670967106711671267136714671567166717671867196720672167226723672467256726672767286729673067316732673367346735673667376738673967406741674267436744674567466747674867496750675167526753675467556756675767586759676067616762676367646765676667676768676967706771677267736774677567766777677867796780678167826783678467856786678767886789679067916792679367946795679667976798679968006801680268036804680568066807680868096810681168126813681468156816681768186819682068216822682368246825682668276828682968306831683268336834683568366837683868396840684168426843684468456846684768486849685068516852685368546855685668576858685968606861686268636864686568666867686868696870687168726873687468756876687768786879688068816882688368846885688668876888688968906891689268936894689568966897689868996900690169026903690469056906690769086909691069116912691369146915691669176918691969206921692269236924692569266927692869296930693169326933693469356936693769386939694069416942694369446945694669476948694969506951695269536954695569566957695869596960696169626963696469656966696769686969697069716972697369746975697669776978697969806981698269836984698569866987698869896990699169926993699469956996699769986999700070017002700370047005700670077008700970107011701270137014701570167017701870197020702170227023702470257026702770287029703070317032703370347035703670377038703970407041704270437044704570467047704870497050705170527053705470557056705770587059706070617062706370647065706670677068706970707071707270737074707570767077707870797080708170827083708470857086708770887089709070917092709370947095709670977098709971007101710271037104710571067107710871097110711171127113711471157116711771187119712071217122712371247125712671277128712971307131713271337134713571367137713871397140714171427143714471457146714771487149715071517152715371547155715671577158715971607161716271637164716571667167716871697170717171727173717471757176717771787179718071817182718371847185718671877188718971907191719271937194719571967197719871997200720172027203720472057206720772087209721072117212721372147215721672177218721972207221722272237224722572267227722872297230723172327233723472357236723772387239724072417242724372447245724672477248724972507251725272537254725572567257725872597260726172627263726472657266726772687269727072717272727372747275727672777278727972807281728272837284728572867287728872897290729172927293729472957296729772987299730073017302730373047305730673077308730973107311731273137314731573167317731873197320732173227323732473257326732773287329733073317332733373347335733673377338733973407341734273437344734573467347734873497350735173527353735473557356735773587359736073617362736373647365736673677368736973707371737273737374737573767377737873797380738173827383738473857386738773887389739073917392739373947395739673977398739974007401740274037404740574067407740874097410741174127413741474157416741774187419742074217422742374247425742674277428742974307431743274337434743574367437743874397440744174427443744474457446744774487449745074517452745374547455745674577458745974607461746274637464746574667467746874697470747174727473747474757476747774787479748074817482748374847485748674877488748974907491749274937494749574967497749874997500750175027503750475057506750775087509751075117512751375147515751675177518751975207521752275237524752575267527752875297530753175327533753475357536753775387539754075417542754375447545754675477548754975507551755275537554755575567557755875597560756175627563756475657566756775687569757075717572757375747575757675777578757975807581758275837584758575867587758875897590759175927593759475957596759775987599760076017602760376047605760676077608760976107611761276137614761576167617761876197620762176227623762476257626762776287629763076317632763376347635763676377638763976407641764276437644764576467647764876497650765176527653765476557656765776587659766076617662766376647665766676677668766976707671767276737674767576767677767876797680768176827683768476857686768776887689769076917692769376947695769676977698769977007701770277037704770577067707770877097710771177127713771477157716771777187719772077217722772377247725772677277728772977307731773277337734773577367737773877397740774177427743774477457746774777487749775077517752775377547755775677577758775977607761776277637764776577667767776877697770777177727773777477757776777777787779778077817782778377847785778677877788778977907791779277937794779577967797779877997800780178027803780478057806780778087809781078117812781378147815781678177818781978207821782278237824782578267827782878297830783178327833783478357836783778387839784078417842784378447845784678477848784978507851785278537854785578567857785878597860786178627863786478657866786778687869787078717872787378747875787678777878787978807881788278837884788578867887788878897890789178927893789478957896789778987899790079017902790379047905790679077908790979107911791279137914791579167917791879197920792179227923792479257926792779287929793079317932793379347935793679377938793979407941794279437944794579467947794879497950795179527953795479557956795779587959796079617962796379647965796679677968796979707971797279737974797579767977797879797980798179827983798479857986798779887989799079917992799379947995799679977998799980008001800280038004800580068007800880098010801180128013801480158016801780188019802080218022802380248025802680278028802980308031803280338034803580368037803880398040804180428043804480458046804780488049805080518052805380548055805680578058805980608061806280638064806580668067806880698070807180728073807480758076807780788079808080818082808380848085808680878088808980908091809280938094809580968097809880998100810181028103810481058106810781088109811081118112811381148115811681178118811981208121812281238124812581268127812881298130813181328133813481358136813781388139814081418142814381448145814681478148814981508151815281538154815581568157815881598160816181628163816481658166816781688169817081718172817381748175817681778178817981808181818281838184818581868187818881898190819181928193819481958196819781988199820082018202820382048205820682078208820982108211821282138214821582168217821882198220822182228223822482258226822782288229823082318232823382348235823682378238823982408241824282438244824582468247824882498250825182528253825482558256825782588259826082618262826382648265826682678268826982708271827282738274827582768277827882798280828182828283828482858286828782888289829082918292829382948295829682978298829983008301830283038304830583068307830883098310831183128313831483158316831783188319832083218322832383248325832683278328832983308331833283338334833583368337833883398340834183428343834483458346834783488349835083518352835383548355835683578358835983608361836283638364836583668367836883698370837183728373837483758376837783788379838083818382838383848385838683878388838983908391839283938394839583968397839883998400840184028403840484058406840784088409841084118412841384148415841684178418841984208421842284238424842584268427842884298430843184328433843484358436843784388439844084418442844384448445844684478448844984508451845284538454845584568457845884598460846184628463846484658466846784688469847084718472847384748475847684778478847984808481848284838484848584868487848884898490849184928493849484958496849784988499850085018502850385048505850685078508850985108511851285138514851585168517851885198520852185228523852485258526852785288529853085318532853385348535853685378538853985408541854285438544854585468547854885498550855185528553855485558556855785588559856085618562856385648565856685678568856985708571857285738574857585768577857885798580858185828583858485858586858785888589859085918592859385948595859685978598859986008601860286038604860586068607860886098610861186128613861486158616861786188619862086218622862386248625862686278628862986308631863286338634863586368637863886398640864186428643864486458646864786488649865086518652865386548655865686578658865986608661866286638664866586668667866886698670867186728673867486758676867786788679868086818682868386848685868686878688868986908691869286938694869586968697869886998700870187028703870487058706870787088709871087118712871387148715871687178718871987208721872287238724872587268727872887298730873187328733873487358736873787388739874087418742874387448745874687478748874987508751875287538754875587568757875887598760876187628763876487658766876787688769877087718772877387748775877687778778877987808781878287838784878587868787878887898790879187928793879487958796879787988799880088018802880388048805880688078808880988108811881288138814881588168817881888198820882188228823882488258826882788288829883088318832883388348835883688378838883988408841884288438844884588468847884888498850885188528853885488558856885788588859886088618862886388648865886688678868886988708871887288738874887588768877887888798880888188828883888488858886888788888889889088918892889388948895889688978898889989008901890289038904890589068907890889098910891189128913891489158916891789188919892089218922892389248925892689278928892989308931893289338934893589368937893889398940894189428943894489458946894789488949895089518952895389548955895689578958895989608961896289638964896589668967896889698970897189728973897489758976897789788979898089818982898389848985898689878988898989908991899289938994899589968997899889999000900190029003900490059006900790089009901090119012901390149015901690179018901990209021902290239024902590269027902890299030903190329033903490359036903790389039904090419042904390449045904690479048904990509051905290539054905590569057905890599060906190629063906490659066906790689069907090719072907390749075907690779078907990809081908290839084908590869087908890899090909190929093909490959096909790989099910091019102910391049105910691079108910991109111911291139114911591169117911891199120912191229123912491259126912791289129913091319132913391349135913691379138913991409141914291439144914591469147914891499150915191529153915491559156
  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": "9632d7ebb3a2142309e27ef825be606e",
  8. "packages": [
  9. {
  10. "name": "asm89/stack-cors",
  11. "version": "v2.2.0",
  12. "source": {
  13. "type": "git",
  14. "url": "https://github.com/asm89/stack-cors.git",
  15. "reference": "50f57105bad3d97a43ec4a485eb57daf347eafea"
  16. },
  17. "dist": {
  18. "type": "zip",
  19. "url": "https://api.github.com/repos/asm89/stack-cors/zipball/50f57105bad3d97a43ec4a485eb57daf347eafea",
  20. "reference": "50f57105bad3d97a43ec4a485eb57daf347eafea",
  21. "shasum": ""
  22. },
  23. "require": {
  24. "php": "^7.3|^8.0",
  25. "symfony/http-foundation": "^5.3|^6|^7",
  26. "symfony/http-kernel": "^5.3|^6|^7"
  27. },
  28. "require-dev": {
  29. "phpunit/phpunit": "^9",
  30. "squizlabs/php_codesniffer": "^3.5"
  31. },
  32. "type": "library",
  33. "extra": {
  34. "branch-alias": {
  35. "dev-master": "2.2-dev"
  36. }
  37. },
  38. "autoload": {
  39. "psr-4": {
  40. "Asm89\\Stack\\": "src/"
  41. }
  42. },
  43. "notification-url": "https://packagist.org/downloads/",
  44. "license": [
  45. "MIT"
  46. ],
  47. "authors": [
  48. {
  49. "name": "Alexander",
  50. "email": "iam.asm89@gmail.com"
  51. }
  52. ],
  53. "description": "Cross-origin resource sharing library and stack middleware",
  54. "homepage": "https://github.com/asm89/stack-cors",
  55. "keywords": [
  56. "cors",
  57. "stack"
  58. ],
  59. "support": {
  60. "issues": "https://github.com/asm89/stack-cors/issues",
  61. "source": "https://github.com/asm89/stack-cors/tree/v2.2.0"
  62. },
  63. "time": "2023-11-14T13:51:46+00:00"
  64. },
  65. {
  66. "name": "chi-teck/drupal-code-generator",
  67. "version": "3.3.0",
  68. "source": {
  69. "type": "git",
  70. "url": "https://github.com/Chi-teck/drupal-code-generator.git",
  71. "reference": "56da9209b24a5a5b5d27bec9e523f02bdd101770"
  72. },
  73. "dist": {
  74. "type": "zip",
  75. "url": "https://api.github.com/repos/Chi-teck/drupal-code-generator/zipball/56da9209b24a5a5b5d27bec9e523f02bdd101770",
  76. "reference": "56da9209b24a5a5b5d27bec9e523f02bdd101770",
  77. "shasum": ""
  78. },
  79. "require": {
  80. "ext-json": "*",
  81. "php": ">=8.1.0",
  82. "psr/event-dispatcher": "^1.0",
  83. "psr/log": "^3.0",
  84. "symfony/console": "^6.3",
  85. "symfony/dependency-injection": "^6.3.2",
  86. "symfony/filesystem": "^6.3",
  87. "symfony/string": "^6.3",
  88. "twig/twig": "^3.4"
  89. },
  90. "conflict": {
  91. "squizlabs/php_codesniffer": "<3.6"
  92. },
  93. "require-dev": {
  94. "chi-teck/drupal-coder-extension": "^2.0.0-alpha4",
  95. "drupal/coder": "8.3.22",
  96. "drupal/core": "10.1.x-dev",
  97. "ext-simplexml": "*",
  98. "phpspec/prophecy-phpunit": "^2.0",
  99. "phpunit/phpunit": "^9.5",
  100. "squizlabs/php_codesniffer": "^3.7",
  101. "symfony/var-dumper": "^6.3",
  102. "symfony/yaml": "^6.3",
  103. "vimeo/psalm": "^5.14.0"
  104. },
  105. "bin": [
  106. "bin/dcg"
  107. ],
  108. "type": "library",
  109. "autoload": {
  110. "psr-4": {
  111. "DrupalCodeGenerator\\": "src"
  112. }
  113. },
  114. "notification-url": "https://packagist.org/downloads/",
  115. "license": [
  116. "GPL-2.0-or-later"
  117. ],
  118. "description": "Drupal code generator",
  119. "support": {
  120. "issues": "https://github.com/Chi-teck/drupal-code-generator/issues",
  121. "source": "https://github.com/Chi-teck/drupal-code-generator/tree/3.3.0"
  122. },
  123. "time": "2023-10-21T12:57:05+00:00"
  124. },
  125. {
  126. "name": "commerceguys/addressing",
  127. "version": "v2.2.0",
  128. "source": {
  129. "type": "git",
  130. "url": "https://github.com/commerceguys/addressing.git",
  131. "reference": "a5af40bd4b6edee5101e182085e67b7ff5d4a89b"
  132. },
  133. "dist": {
  134. "type": "zip",
  135. "url": "https://api.github.com/repos/commerceguys/addressing/zipball/a5af40bd4b6edee5101e182085e67b7ff5d4a89b",
  136. "reference": "a5af40bd4b6edee5101e182085e67b7ff5d4a89b",
  137. "shasum": ""
  138. },
  139. "require": {
  140. "doctrine/collections": "^1.6 || ^2.0",
  141. "php": ">=8.0"
  142. },
  143. "require-dev": {
  144. "ext-json": "*",
  145. "mikey179/vfsstream": "^1.6.11",
  146. "phpunit/phpunit": "^9.6",
  147. "squizlabs/php_codesniffer": "^3.7",
  148. "symfony/validator": "^5.4 || ^6.3 || ^7.0"
  149. },
  150. "suggest": {
  151. "symfony/validator": "to validate addresses"
  152. },
  153. "type": "library",
  154. "extra": {
  155. "branch-alias": {
  156. "dev-master": "2.x-dev"
  157. }
  158. },
  159. "autoload": {
  160. "psr-4": {
  161. "CommerceGuys\\Addressing\\": "src"
  162. }
  163. },
  164. "notification-url": "https://packagist.org/downloads/",
  165. "license": [
  166. "MIT"
  167. ],
  168. "authors": [
  169. {
  170. "name": "Bojan Zivanovic"
  171. },
  172. {
  173. "name": "Damien Tournoud"
  174. }
  175. ],
  176. "description": "Addressing library powered by CLDR and Google's address data.",
  177. "keywords": [
  178. "address",
  179. "internationalization",
  180. "localization",
  181. "postal"
  182. ],
  183. "support": {
  184. "issues": "https://github.com/commerceguys/addressing/issues",
  185. "source": "https://github.com/commerceguys/addressing/tree/v2.2.0"
  186. },
  187. "time": "2024-02-25T11:22:16+00:00"
  188. },
  189. {
  190. "name": "composer/installers",
  191. "version": "v1.12.0",
  192. "source": {
  193. "type": "git",
  194. "url": "https://github.com/composer/installers.git",
  195. "reference": "d20a64ed3c94748397ff5973488761b22f6d3f19"
  196. },
  197. "dist": {
  198. "type": "zip",
  199. "url": "https://api.github.com/repos/composer/installers/zipball/d20a64ed3c94748397ff5973488761b22f6d3f19",
  200. "reference": "d20a64ed3c94748397ff5973488761b22f6d3f19",
  201. "shasum": ""
  202. },
  203. "require": {
  204. "composer-plugin-api": "^1.0 || ^2.0"
  205. },
  206. "replace": {
  207. "roundcube/plugin-installer": "*",
  208. "shama/baton": "*"
  209. },
  210. "require-dev": {
  211. "composer/composer": "1.6.* || ^2.0",
  212. "composer/semver": "^1 || ^3",
  213. "phpstan/phpstan": "^0.12.55",
  214. "phpstan/phpstan-phpunit": "^0.12.16",
  215. "symfony/phpunit-bridge": "^4.2 || ^5",
  216. "symfony/process": "^2.3"
  217. },
  218. "type": "composer-plugin",
  219. "extra": {
  220. "class": "Composer\\Installers\\Plugin",
  221. "branch-alias": {
  222. "dev-main": "1.x-dev"
  223. }
  224. },
  225. "autoload": {
  226. "psr-4": {
  227. "Composer\\Installers\\": "src/Composer/Installers"
  228. }
  229. },
  230. "notification-url": "https://packagist.org/downloads/",
  231. "license": [
  232. "MIT"
  233. ],
  234. "authors": [
  235. {
  236. "name": "Kyle Robinson Young",
  237. "email": "kyle@dontkry.com",
  238. "homepage": "https://github.com/shama"
  239. }
  240. ],
  241. "description": "A multi-framework Composer library installer",
  242. "homepage": "https://composer.github.io/installers/",
  243. "keywords": [
  244. "Craft",
  245. "Dolibarr",
  246. "Eliasis",
  247. "Hurad",
  248. "ImageCMS",
  249. "Kanboard",
  250. "Lan Management System",
  251. "MODX Evo",
  252. "MantisBT",
  253. "Mautic",
  254. "Maya",
  255. "OXID",
  256. "Plentymarkets",
  257. "Porto",
  258. "RadPHP",
  259. "SMF",
  260. "Starbug",
  261. "Thelia",
  262. "Whmcs",
  263. "WolfCMS",
  264. "agl",
  265. "aimeos",
  266. "annotatecms",
  267. "attogram",
  268. "bitrix",
  269. "cakephp",
  270. "chef",
  271. "cockpit",
  272. "codeigniter",
  273. "concrete5",
  274. "croogo",
  275. "dokuwiki",
  276. "drupal",
  277. "eZ Platform",
  278. "elgg",
  279. "expressionengine",
  280. "fuelphp",
  281. "grav",
  282. "installer",
  283. "itop",
  284. "joomla",
  285. "known",
  286. "kohana",
  287. "laravel",
  288. "lavalite",
  289. "lithium",
  290. "magento",
  291. "majima",
  292. "mako",
  293. "mediawiki",
  294. "miaoxing",
  295. "modulework",
  296. "modx",
  297. "moodle",
  298. "osclass",
  299. "pantheon",
  300. "phpbb",
  301. "piwik",
  302. "ppi",
  303. "processwire",
  304. "puppet",
  305. "pxcms",
  306. "reindex",
  307. "roundcube",
  308. "shopware",
  309. "silverstripe",
  310. "sydes",
  311. "sylius",
  312. "symfony",
  313. "tastyigniter",
  314. "typo3",
  315. "wordpress",
  316. "yawik",
  317. "zend",
  318. "zikula"
  319. ],
  320. "support": {
  321. "issues": "https://github.com/composer/installers/issues",
  322. "source": "https://github.com/composer/installers/tree/v1.12.0"
  323. },
  324. "funding": [
  325. {
  326. "url": "https://packagist.com",
  327. "type": "custom"
  328. },
  329. {
  330. "url": "https://github.com/composer",
  331. "type": "github"
  332. },
  333. {
  334. "url": "https://tidelift.com/funding/github/packagist/composer/composer",
  335. "type": "tidelift"
  336. }
  337. ],
  338. "time": "2021-09-13T08:19:44+00:00"
  339. },
  340. {
  341. "name": "composer/semver",
  342. "version": "3.4.0",
  343. "source": {
  344. "type": "git",
  345. "url": "https://github.com/composer/semver.git",
  346. "reference": "35e8d0af4486141bc745f23a29cc2091eb624a32"
  347. },
  348. "dist": {
  349. "type": "zip",
  350. "url": "https://api.github.com/repos/composer/semver/zipball/35e8d0af4486141bc745f23a29cc2091eb624a32",
  351. "reference": "35e8d0af4486141bc745f23a29cc2091eb624a32",
  352. "shasum": ""
  353. },
  354. "require": {
  355. "php": "^5.3.2 || ^7.0 || ^8.0"
  356. },
  357. "require-dev": {
  358. "phpstan/phpstan": "^1.4",
  359. "symfony/phpunit-bridge": "^4.2 || ^5"
  360. },
  361. "type": "library",
  362. "extra": {
  363. "branch-alias": {
  364. "dev-main": "3.x-dev"
  365. }
  366. },
  367. "autoload": {
  368. "psr-4": {
  369. "Composer\\Semver\\": "src"
  370. }
  371. },
  372. "notification-url": "https://packagist.org/downloads/",
  373. "license": [
  374. "MIT"
  375. ],
  376. "authors": [
  377. {
  378. "name": "Nils Adermann",
  379. "email": "naderman@naderman.de",
  380. "homepage": "http://www.naderman.de"
  381. },
  382. {
  383. "name": "Jordi Boggiano",
  384. "email": "j.boggiano@seld.be",
  385. "homepage": "http://seld.be"
  386. },
  387. {
  388. "name": "Rob Bast",
  389. "email": "rob.bast@gmail.com",
  390. "homepage": "http://robbast.nl"
  391. }
  392. ],
  393. "description": "Semver library that offers utilities, version constraint parsing and validation.",
  394. "keywords": [
  395. "semantic",
  396. "semver",
  397. "validation",
  398. "versioning"
  399. ],
  400. "support": {
  401. "irc": "ircs://irc.libera.chat:6697/composer",
  402. "issues": "https://github.com/composer/semver/issues",
  403. "source": "https://github.com/composer/semver/tree/3.4.0"
  404. },
  405. "funding": [
  406. {
  407. "url": "https://packagist.com",
  408. "type": "custom"
  409. },
  410. {
  411. "url": "https://github.com/composer",
  412. "type": "github"
  413. },
  414. {
  415. "url": "https://tidelift.com/funding/github/packagist/composer/composer",
  416. "type": "tidelift"
  417. }
  418. ],
  419. "time": "2023-08-31T09:50:34+00:00"
  420. },
  421. {
  422. "name": "consolidation/annotated-command",
  423. "version": "4.9.2",
  424. "source": {
  425. "type": "git",
  426. "url": "https://github.com/consolidation/annotated-command.git",
  427. "reference": "b5255dcbee1de95036185062a103dabc622224de"
  428. },
  429. "dist": {
  430. "type": "zip",
  431. "url": "https://api.github.com/repos/consolidation/annotated-command/zipball/b5255dcbee1de95036185062a103dabc622224de",
  432. "reference": "b5255dcbee1de95036185062a103dabc622224de",
  433. "shasum": ""
  434. },
  435. "require": {
  436. "consolidation/output-formatters": "^4.3.1",
  437. "php": ">=7.1.3",
  438. "psr/log": "^1 || ^2 || ^3",
  439. "symfony/console": "^4.4.8 || ^5 || ^6",
  440. "symfony/event-dispatcher": "^4.4.8 || ^5 || ^6",
  441. "symfony/finder": "^4.4.8 || ^5 || ^6"
  442. },
  443. "require-dev": {
  444. "composer-runtime-api": "^2.0",
  445. "phpunit/phpunit": "^7.5.20 || ^8 || ^9",
  446. "squizlabs/php_codesniffer": "^3",
  447. "yoast/phpunit-polyfills": "^0.2.0"
  448. },
  449. "type": "library",
  450. "extra": {
  451. "branch-alias": {
  452. "dev-main": "4.x-dev"
  453. }
  454. },
  455. "autoload": {
  456. "psr-4": {
  457. "Consolidation\\AnnotatedCommand\\": "src"
  458. }
  459. },
  460. "notification-url": "https://packagist.org/downloads/",
  461. "license": [
  462. "MIT"
  463. ],
  464. "authors": [
  465. {
  466. "name": "Greg Anderson",
  467. "email": "greg.1.anderson@greenknowe.org"
  468. }
  469. ],
  470. "description": "Initialize Symfony Console commands from annotated command class methods.",
  471. "support": {
  472. "issues": "https://github.com/consolidation/annotated-command/issues",
  473. "source": "https://github.com/consolidation/annotated-command/tree/4.9.2"
  474. },
  475. "time": "2023-12-26T14:30:50+00:00"
  476. },
  477. {
  478. "name": "consolidation/config",
  479. "version": "2.1.2",
  480. "source": {
  481. "type": "git",
  482. "url": "https://github.com/consolidation/config.git",
  483. "reference": "597f8d7fbeef801736250ec10c3e190569b1b0ae"
  484. },
  485. "dist": {
  486. "type": "zip",
  487. "url": "https://api.github.com/repos/consolidation/config/zipball/597f8d7fbeef801736250ec10c3e190569b1b0ae",
  488. "reference": "597f8d7fbeef801736250ec10c3e190569b1b0ae",
  489. "shasum": ""
  490. },
  491. "require": {
  492. "dflydev/dot-access-data": "^1.1.0 || ^2 || ^3",
  493. "grasmash/expander": "^2.0.1 || ^3",
  494. "php": ">=7.1.3",
  495. "symfony/event-dispatcher": "^4 || ^5 || ^6"
  496. },
  497. "require-dev": {
  498. "ext-json": "*",
  499. "phpunit/phpunit": ">=7.5.20",
  500. "squizlabs/php_codesniffer": "^3",
  501. "symfony/console": "^4 || ^5 || ^6",
  502. "symfony/yaml": "^4 || ^5 || ^6",
  503. "yoast/phpunit-polyfills": "^1"
  504. },
  505. "suggest": {
  506. "symfony/event-dispatcher": "Required to inject configuration into Command options",
  507. "symfony/yaml": "Required to use Consolidation\\Config\\Loader\\YamlConfigLoader"
  508. },
  509. "type": "library",
  510. "extra": {
  511. "branch-alias": {
  512. "dev-main": "2.x-dev"
  513. }
  514. },
  515. "autoload": {
  516. "psr-4": {
  517. "Consolidation\\Config\\": "src"
  518. }
  519. },
  520. "notification-url": "https://packagist.org/downloads/",
  521. "license": [
  522. "MIT"
  523. ],
  524. "authors": [
  525. {
  526. "name": "Greg Anderson",
  527. "email": "greg.1.anderson@greenknowe.org"
  528. }
  529. ],
  530. "description": "Provide configuration services for a commandline tool.",
  531. "support": {
  532. "issues": "https://github.com/consolidation/config/issues",
  533. "source": "https://github.com/consolidation/config/tree/2.1.2"
  534. },
  535. "time": "2022-10-06T17:48:03+00:00"
  536. },
  537. {
  538. "name": "consolidation/filter-via-dot-access-data",
  539. "version": "2.0.2",
  540. "source": {
  541. "type": "git",
  542. "url": "https://github.com/consolidation/filter-via-dot-access-data.git",
  543. "reference": "cb2eeba41f8e2e3c61698a5cf70ef048ff6c9d5b"
  544. },
  545. "dist": {
  546. "type": "zip",
  547. "url": "https://api.github.com/repos/consolidation/filter-via-dot-access-data/zipball/cb2eeba41f8e2e3c61698a5cf70ef048ff6c9d5b",
  548. "reference": "cb2eeba41f8e2e3c61698a5cf70ef048ff6c9d5b",
  549. "shasum": ""
  550. },
  551. "require": {
  552. "dflydev/dot-access-data": "^1.1.0 || ^2.0.0 || ^3.0.0",
  553. "php": ">=7.1.3"
  554. },
  555. "require-dev": {
  556. "phpunit/phpunit": "^7.5.20 || ^8 || ^9",
  557. "squizlabs/php_codesniffer": "^3",
  558. "yoast/phpunit-polyfills": "^0.2.0"
  559. },
  560. "type": "library",
  561. "extra": {
  562. "branch-alias": {
  563. "dev-main": "2.x-dev"
  564. }
  565. },
  566. "autoload": {
  567. "psr-4": {
  568. "Consolidation\\Filter\\": "src"
  569. }
  570. },
  571. "notification-url": "https://packagist.org/downloads/",
  572. "license": [
  573. "MIT"
  574. ],
  575. "authors": [
  576. {
  577. "name": "Greg Anderson",
  578. "email": "greg.1.anderson@greenknowe.org"
  579. }
  580. ],
  581. "description": "This project uses dflydev/dot-access-data to provide simple output filtering for applications built with annotated-command / Robo.",
  582. "support": {
  583. "source": "https://github.com/consolidation/filter-via-dot-access-data/tree/2.0.2"
  584. },
  585. "time": "2021-12-30T03:56:08+00:00"
  586. },
  587. {
  588. "name": "consolidation/log",
  589. "version": "3.0.0",
  590. "source": {
  591. "type": "git",
  592. "url": "https://github.com/consolidation/log.git",
  593. "reference": "caaad9d70dae54eb49002666f000e3c607066878"
  594. },
  595. "dist": {
  596. "type": "zip",
  597. "url": "https://api.github.com/repos/consolidation/log/zipball/caaad9d70dae54eb49002666f000e3c607066878",
  598. "reference": "caaad9d70dae54eb49002666f000e3c607066878",
  599. "shasum": ""
  600. },
  601. "require": {
  602. "php": ">=8.0.0",
  603. "psr/log": "^3",
  604. "symfony/console": "^5 || ^6"
  605. },
  606. "require-dev": {
  607. "phpunit/phpunit": ">=7.5.20",
  608. "squizlabs/php_codesniffer": "^3",
  609. "yoast/phpunit-polyfills": "^0.2.0"
  610. },
  611. "type": "library",
  612. "extra": {
  613. "branch-alias": {
  614. "dev-main": "2.x-dev"
  615. }
  616. },
  617. "autoload": {
  618. "psr-4": {
  619. "Consolidation\\Log\\": "src"
  620. }
  621. },
  622. "notification-url": "https://packagist.org/downloads/",
  623. "license": [
  624. "MIT"
  625. ],
  626. "authors": [
  627. {
  628. "name": "Greg Anderson",
  629. "email": "greg.1.anderson@greenknowe.org"
  630. }
  631. ],
  632. "description": "Improved Psr-3 / Psr\\Log logger based on Symfony Console components.",
  633. "support": {
  634. "issues": "https://github.com/consolidation/log/issues",
  635. "source": "https://github.com/consolidation/log/tree/3.0.0"
  636. },
  637. "time": "2022-04-05T16:53:32+00:00"
  638. },
  639. {
  640. "name": "consolidation/output-formatters",
  641. "version": "4.3.2",
  642. "source": {
  643. "type": "git",
  644. "url": "https://github.com/consolidation/output-formatters.git",
  645. "reference": "06711568b4cd169700ff7e8075db0a9a341ceb58"
  646. },
  647. "dist": {
  648. "type": "zip",
  649. "url": "https://api.github.com/repos/consolidation/output-formatters/zipball/06711568b4cd169700ff7e8075db0a9a341ceb58",
  650. "reference": "06711568b4cd169700ff7e8075db0a9a341ceb58",
  651. "shasum": ""
  652. },
  653. "require": {
  654. "dflydev/dot-access-data": "^1.1.0 || ^2 || ^3",
  655. "php": ">=7.1.3",
  656. "symfony/console": "^4 || ^5 || ^6",
  657. "symfony/finder": "^4 || ^5 || ^6"
  658. },
  659. "require-dev": {
  660. "php-coveralls/php-coveralls": "^2.4.2",
  661. "phpunit/phpunit": "^7 || ^8 || ^9",
  662. "squizlabs/php_codesniffer": "^3",
  663. "symfony/var-dumper": "^4 || ^5 || ^6",
  664. "symfony/yaml": "^4 || ^5 || ^6",
  665. "yoast/phpunit-polyfills": "^1"
  666. },
  667. "suggest": {
  668. "symfony/var-dumper": "For using the var_dump formatter"
  669. },
  670. "type": "library",
  671. "autoload": {
  672. "psr-4": {
  673. "Consolidation\\OutputFormatters\\": "src"
  674. }
  675. },
  676. "notification-url": "https://packagist.org/downloads/",
  677. "license": [
  678. "MIT"
  679. ],
  680. "authors": [
  681. {
  682. "name": "Greg Anderson",
  683. "email": "greg.1.anderson@greenknowe.org"
  684. }
  685. ],
  686. "description": "Format text by applying transformations provided by plug-in formatters.",
  687. "support": {
  688. "issues": "https://github.com/consolidation/output-formatters/issues",
  689. "source": "https://github.com/consolidation/output-formatters/tree/4.3.2"
  690. },
  691. "time": "2023-07-06T04:45:41+00:00"
  692. },
  693. {
  694. "name": "consolidation/robo",
  695. "version": "4.0.6",
  696. "source": {
  697. "type": "git",
  698. "url": "https://github.com/consolidation/robo.git",
  699. "reference": "55a272370940607649e5c46eb173c5c54f7c166d"
  700. },
  701. "dist": {
  702. "type": "zip",
  703. "url": "https://api.github.com/repos/consolidation/robo/zipball/55a272370940607649e5c46eb173c5c54f7c166d",
  704. "reference": "55a272370940607649e5c46eb173c5c54f7c166d",
  705. "shasum": ""
  706. },
  707. "require": {
  708. "consolidation/annotated-command": "^4.8.1",
  709. "consolidation/config": "^2.0.1",
  710. "consolidation/log": "^2.0.2 || ^3",
  711. "consolidation/output-formatters": "^4.1.2",
  712. "consolidation/self-update": "^2.0",
  713. "league/container": "^3.3.1 || ^4.0",
  714. "php": ">=8.0",
  715. "phpowermove/docblock": "^4.0",
  716. "symfony/console": "^6",
  717. "symfony/event-dispatcher": "^6",
  718. "symfony/filesystem": "^6",
  719. "symfony/finder": "^6",
  720. "symfony/process": "^6",
  721. "symfony/yaml": "^6"
  722. },
  723. "conflict": {
  724. "codegyre/robo": "*"
  725. },
  726. "require-dev": {
  727. "natxet/cssmin": "3.0.4",
  728. "patchwork/jsqueeze": "^2",
  729. "pear/archive_tar": "^1.4.4",
  730. "phpunit/phpunit": "^7.5.20 || ^8",
  731. "squizlabs/php_codesniffer": "^3.6",
  732. "yoast/phpunit-polyfills": "^0.2.0"
  733. },
  734. "suggest": {
  735. "natxet/cssmin": "For minifying CSS files in taskMinify",
  736. "patchwork/jsqueeze": "For minifying JS files in taskMinify",
  737. "pear/archive_tar": "Allows tar archives to be created and extracted in taskPack and taskExtract, respectively.",
  738. "totten/lurkerlite": "For monitoring filesystem changes in taskWatch"
  739. },
  740. "bin": [
  741. "robo"
  742. ],
  743. "type": "library",
  744. "autoload": {
  745. "psr-4": {
  746. "Robo\\": "src"
  747. }
  748. },
  749. "notification-url": "https://packagist.org/downloads/",
  750. "license": [
  751. "MIT"
  752. ],
  753. "authors": [
  754. {
  755. "name": "Davert",
  756. "email": "davert.php@resend.cc"
  757. }
  758. ],
  759. "description": "Modern task runner",
  760. "support": {
  761. "issues": "https://github.com/consolidation/robo/issues",
  762. "source": "https://github.com/consolidation/robo/tree/4.0.6"
  763. },
  764. "time": "2023-04-30T21:49:04+00:00"
  765. },
  766. {
  767. "name": "consolidation/self-update",
  768. "version": "2.2.0",
  769. "source": {
  770. "type": "git",
  771. "url": "https://github.com/consolidation/self-update.git",
  772. "reference": "972a1016761c9b63314e040836a12795dff6953a"
  773. },
  774. "dist": {
  775. "type": "zip",
  776. "url": "https://api.github.com/repos/consolidation/self-update/zipball/972a1016761c9b63314e040836a12795dff6953a",
  777. "reference": "972a1016761c9b63314e040836a12795dff6953a",
  778. "shasum": ""
  779. },
  780. "require": {
  781. "composer/semver": "^3.2",
  782. "php": ">=5.5.0",
  783. "symfony/console": "^2.8 || ^3 || ^4 || ^5 || ^6",
  784. "symfony/filesystem": "^2.5 || ^3 || ^4 || ^5 || ^6"
  785. },
  786. "bin": [
  787. "scripts/release"
  788. ],
  789. "type": "library",
  790. "extra": {
  791. "branch-alias": {
  792. "dev-main": "2.x-dev"
  793. }
  794. },
  795. "autoload": {
  796. "psr-4": {
  797. "SelfUpdate\\": "src"
  798. }
  799. },
  800. "notification-url": "https://packagist.org/downloads/",
  801. "license": [
  802. "MIT"
  803. ],
  804. "authors": [
  805. {
  806. "name": "Alexander Menk",
  807. "email": "menk@mestrona.net"
  808. },
  809. {
  810. "name": "Greg Anderson",
  811. "email": "greg.1.anderson@greenknowe.org"
  812. }
  813. ],
  814. "description": "Provides a self:update command for Symfony Console applications.",
  815. "support": {
  816. "issues": "https://github.com/consolidation/self-update/issues",
  817. "source": "https://github.com/consolidation/self-update/tree/2.2.0"
  818. },
  819. "time": "2023-03-18T01:37:41+00:00"
  820. },
  821. {
  822. "name": "consolidation/site-alias",
  823. "version": "4.0.1",
  824. "source": {
  825. "type": "git",
  826. "url": "https://github.com/consolidation/site-alias.git",
  827. "reference": "b0eeb8c8f3d54d072824ee31b5e00cb5181f91c5"
  828. },
  829. "dist": {
  830. "type": "zip",
  831. "url": "https://api.github.com/repos/consolidation/site-alias/zipball/b0eeb8c8f3d54d072824ee31b5e00cb5181f91c5",
  832. "reference": "b0eeb8c8f3d54d072824ee31b5e00cb5181f91c5",
  833. "shasum": ""
  834. },
  835. "require": {
  836. "consolidation/config": "^1.2.1 || ^2",
  837. "php": ">=7.4",
  838. "symfony/filesystem": "^5.4 || ^6",
  839. "symfony/finder": "^5 || ^6"
  840. },
  841. "require-dev": {
  842. "php-coveralls/php-coveralls": "^2.4.2",
  843. "phpunit/phpunit": ">=7",
  844. "squizlabs/php_codesniffer": "^3",
  845. "symfony/var-dumper": "^4",
  846. "yoast/phpunit-polyfills": "^0.2.0"
  847. },
  848. "type": "library",
  849. "extra": {
  850. "branch-alias": {
  851. "dev-main": "4.x-dev"
  852. }
  853. },
  854. "autoload": {
  855. "psr-4": {
  856. "Consolidation\\SiteAlias\\": "src"
  857. }
  858. },
  859. "notification-url": "https://packagist.org/downloads/",
  860. "license": [
  861. "MIT"
  862. ],
  863. "authors": [
  864. {
  865. "name": "Greg Anderson",
  866. "email": "greg.1.anderson@greenknowe.org"
  867. },
  868. {
  869. "name": "Moshe Weitzman",
  870. "email": "weitzman@tejasa.com"
  871. }
  872. ],
  873. "description": "Manage alias records for local and remote sites.",
  874. "support": {
  875. "issues": "https://github.com/consolidation/site-alias/issues",
  876. "source": "https://github.com/consolidation/site-alias/tree/4.0.1"
  877. },
  878. "time": "2023-04-29T17:18:10+00:00"
  879. },
  880. {
  881. "name": "consolidation/site-process",
  882. "version": "5.2.0",
  883. "source": {
  884. "type": "git",
  885. "url": "https://github.com/consolidation/site-process.git",
  886. "reference": "6c44638d7af8a8b4abe12c3180701243f480539d"
  887. },
  888. "dist": {
  889. "type": "zip",
  890. "url": "https://api.github.com/repos/consolidation/site-process/zipball/6c44638d7af8a8b4abe12c3180701243f480539d",
  891. "reference": "6c44638d7af8a8b4abe12c3180701243f480539d",
  892. "shasum": ""
  893. },
  894. "require": {
  895. "consolidation/config": "^2",
  896. "consolidation/site-alias": "^3 || ^4",
  897. "php": ">=8.0.14",
  898. "symfony/console": "^5.4 || ^6",
  899. "symfony/process": "^6"
  900. },
  901. "require-dev": {
  902. "phpunit/phpunit": "^9",
  903. "squizlabs/php_codesniffer": "^3"
  904. },
  905. "type": "library",
  906. "extra": {
  907. "branch-alias": {
  908. "dev-main": "5.x-dev"
  909. }
  910. },
  911. "autoload": {
  912. "psr-4": {
  913. "Consolidation\\SiteProcess\\": "src"
  914. }
  915. },
  916. "notification-url": "https://packagist.org/downloads/",
  917. "license": [
  918. "MIT"
  919. ],
  920. "authors": [
  921. {
  922. "name": "Greg Anderson",
  923. "email": "greg.1.anderson@greenknowe.org"
  924. },
  925. {
  926. "name": "Moshe Weitzman",
  927. "email": "weitzman@tejasa.com"
  928. }
  929. ],
  930. "description": "A thin wrapper around the Symfony Process Component that allows applications to use the Site Alias library to specify the target for a remote call.",
  931. "support": {
  932. "issues": "https://github.com/consolidation/site-process/issues",
  933. "source": "https://github.com/consolidation/site-process/tree/5.2.0"
  934. },
  935. "time": "2022-12-06T17:57:16+00:00"
  936. },
  937. {
  938. "name": "dflydev/dot-access-data",
  939. "version": "v3.0.2",
  940. "source": {
  941. "type": "git",
  942. "url": "https://github.com/dflydev/dflydev-dot-access-data.git",
  943. "reference": "f41715465d65213d644d3141a6a93081be5d3549"
  944. },
  945. "dist": {
  946. "type": "zip",
  947. "url": "https://api.github.com/repos/dflydev/dflydev-dot-access-data/zipball/f41715465d65213d644d3141a6a93081be5d3549",
  948. "reference": "f41715465d65213d644d3141a6a93081be5d3549",
  949. "shasum": ""
  950. },
  951. "require": {
  952. "php": "^7.1 || ^8.0"
  953. },
  954. "require-dev": {
  955. "phpstan/phpstan": "^0.12.42",
  956. "phpunit/phpunit": "^7.5 || ^8.5 || ^9.3",
  957. "scrutinizer/ocular": "1.6.0",
  958. "squizlabs/php_codesniffer": "^3.5",
  959. "vimeo/psalm": "^4.0.0"
  960. },
  961. "type": "library",
  962. "extra": {
  963. "branch-alias": {
  964. "dev-main": "3.x-dev"
  965. }
  966. },
  967. "autoload": {
  968. "psr-4": {
  969. "Dflydev\\DotAccessData\\": "src/"
  970. }
  971. },
  972. "notification-url": "https://packagist.org/downloads/",
  973. "license": [
  974. "MIT"
  975. ],
  976. "authors": [
  977. {
  978. "name": "Dragonfly Development Inc.",
  979. "email": "info@dflydev.com",
  980. "homepage": "http://dflydev.com"
  981. },
  982. {
  983. "name": "Beau Simensen",
  984. "email": "beau@dflydev.com",
  985. "homepage": "http://beausimensen.com"
  986. },
  987. {
  988. "name": "Carlos Frutos",
  989. "email": "carlos@kiwing.it",
  990. "homepage": "https://github.com/cfrutos"
  991. },
  992. {
  993. "name": "Colin O'Dell",
  994. "email": "colinodell@gmail.com",
  995. "homepage": "https://www.colinodell.com"
  996. }
  997. ],
  998. "description": "Given a deep data structure, access data by dot notation.",
  999. "homepage": "https://github.com/dflydev/dflydev-dot-access-data",
  1000. "keywords": [
  1001. "access",
  1002. "data",
  1003. "dot",
  1004. "notation"
  1005. ],
  1006. "support": {
  1007. "issues": "https://github.com/dflydev/dflydev-dot-access-data/issues",
  1008. "source": "https://github.com/dflydev/dflydev-dot-access-data/tree/v3.0.2"
  1009. },
  1010. "time": "2022-10-27T11:44:00+00:00"
  1011. },
  1012. {
  1013. "name": "doctrine/annotations",
  1014. "version": "1.14.3",
  1015. "source": {
  1016. "type": "git",
  1017. "url": "https://github.com/doctrine/annotations.git",
  1018. "reference": "fb0d71a7393298a7b232cbf4c8b1f73f3ec3d5af"
  1019. },
  1020. "dist": {
  1021. "type": "zip",
  1022. "url": "https://api.github.com/repos/doctrine/annotations/zipball/fb0d71a7393298a7b232cbf4c8b1f73f3ec3d5af",
  1023. "reference": "fb0d71a7393298a7b232cbf4c8b1f73f3ec3d5af",
  1024. "shasum": ""
  1025. },
  1026. "require": {
  1027. "doctrine/lexer": "^1 || ^2",
  1028. "ext-tokenizer": "*",
  1029. "php": "^7.1 || ^8.0",
  1030. "psr/cache": "^1 || ^2 || ^3"
  1031. },
  1032. "require-dev": {
  1033. "doctrine/cache": "^1.11 || ^2.0",
  1034. "doctrine/coding-standard": "^9 || ^10",
  1035. "phpstan/phpstan": "~1.4.10 || ^1.8.0",
  1036. "phpunit/phpunit": "^7.5 || ^8.5 || ^9.5",
  1037. "symfony/cache": "^4.4 || ^5.4 || ^6",
  1038. "vimeo/psalm": "^4.10"
  1039. },
  1040. "suggest": {
  1041. "php": "PHP 8.0 or higher comes with attributes, a native replacement for annotations"
  1042. },
  1043. "type": "library",
  1044. "autoload": {
  1045. "psr-4": {
  1046. "Doctrine\\Common\\Annotations\\": "lib/Doctrine/Common/Annotations"
  1047. }
  1048. },
  1049. "notification-url": "https://packagist.org/downloads/",
  1050. "license": [
  1051. "MIT"
  1052. ],
  1053. "authors": [
  1054. {
  1055. "name": "Guilherme Blanco",
  1056. "email": "guilhermeblanco@gmail.com"
  1057. },
  1058. {
  1059. "name": "Roman Borschel",
  1060. "email": "roman@code-factory.org"
  1061. },
  1062. {
  1063. "name": "Benjamin Eberlei",
  1064. "email": "kontakt@beberlei.de"
  1065. },
  1066. {
  1067. "name": "Jonathan Wage",
  1068. "email": "jonwage@gmail.com"
  1069. },
  1070. {
  1071. "name": "Johannes Schmitt",
  1072. "email": "schmittjoh@gmail.com"
  1073. }
  1074. ],
  1075. "description": "Docblock Annotations Parser",
  1076. "homepage": "https://www.doctrine-project.org/projects/annotations.html",
  1077. "keywords": [
  1078. "annotations",
  1079. "docblock",
  1080. "parser"
  1081. ],
  1082. "support": {
  1083. "issues": "https://github.com/doctrine/annotations/issues",
  1084. "source": "https://github.com/doctrine/annotations/tree/1.14.3"
  1085. },
  1086. "time": "2023-02-01T09:20:38+00:00"
  1087. },
  1088. {
  1089. "name": "doctrine/collections",
  1090. "version": "2.2.0",
  1091. "source": {
  1092. "type": "git",
  1093. "url": "https://github.com/doctrine/collections.git",
  1094. "reference": "07e16cd7b80a2cffed99e36b541876af172f0257"
  1095. },
  1096. "dist": {
  1097. "type": "zip",
  1098. "url": "https://api.github.com/repos/doctrine/collections/zipball/07e16cd7b80a2cffed99e36b541876af172f0257",
  1099. "reference": "07e16cd7b80a2cffed99e36b541876af172f0257",
  1100. "shasum": ""
  1101. },
  1102. "require": {
  1103. "doctrine/deprecations": "^1",
  1104. "php": "^8.1"
  1105. },
  1106. "require-dev": {
  1107. "doctrine/coding-standard": "^12",
  1108. "ext-json": "*",
  1109. "phpstan/phpstan": "^1.8",
  1110. "phpstan/phpstan-phpunit": "^1.0",
  1111. "phpunit/phpunit": "^10.5",
  1112. "vimeo/psalm": "^5.11"
  1113. },
  1114. "type": "library",
  1115. "autoload": {
  1116. "psr-4": {
  1117. "Doctrine\\Common\\Collections\\": "src"
  1118. }
  1119. },
  1120. "notification-url": "https://packagist.org/downloads/",
  1121. "license": [
  1122. "MIT"
  1123. ],
  1124. "authors": [
  1125. {
  1126. "name": "Guilherme Blanco",
  1127. "email": "guilhermeblanco@gmail.com"
  1128. },
  1129. {
  1130. "name": "Roman Borschel",
  1131. "email": "roman@code-factory.org"
  1132. },
  1133. {
  1134. "name": "Benjamin Eberlei",
  1135. "email": "kontakt@beberlei.de"
  1136. },
  1137. {
  1138. "name": "Jonathan Wage",
  1139. "email": "jonwage@gmail.com"
  1140. },
  1141. {
  1142. "name": "Johannes Schmitt",
  1143. "email": "schmittjoh@gmail.com"
  1144. }
  1145. ],
  1146. "description": "PHP Doctrine Collections library that adds additional functionality on top of PHP arrays.",
  1147. "homepage": "https://www.doctrine-project.org/projects/collections.html",
  1148. "keywords": [
  1149. "array",
  1150. "collections",
  1151. "iterators",
  1152. "php"
  1153. ],
  1154. "support": {
  1155. "issues": "https://github.com/doctrine/collections/issues",
  1156. "source": "https://github.com/doctrine/collections/tree/2.2.0"
  1157. },
  1158. "funding": [
  1159. {
  1160. "url": "https://www.doctrine-project.org/sponsorship.html",
  1161. "type": "custom"
  1162. },
  1163. {
  1164. "url": "https://www.patreon.com/phpdoctrine",
  1165. "type": "patreon"
  1166. },
  1167. {
  1168. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fcollections",
  1169. "type": "tidelift"
  1170. }
  1171. ],
  1172. "time": "2024-02-25T22:55:36+00:00"
  1173. },
  1174. {
  1175. "name": "doctrine/deprecations",
  1176. "version": "1.1.3",
  1177. "source": {
  1178. "type": "git",
  1179. "url": "https://github.com/doctrine/deprecations.git",
  1180. "reference": "dfbaa3c2d2e9a9df1118213f3b8b0c597bb99fab"
  1181. },
  1182. "dist": {
  1183. "type": "zip",
  1184. "url": "https://api.github.com/repos/doctrine/deprecations/zipball/dfbaa3c2d2e9a9df1118213f3b8b0c597bb99fab",
  1185. "reference": "dfbaa3c2d2e9a9df1118213f3b8b0c597bb99fab",
  1186. "shasum": ""
  1187. },
  1188. "require": {
  1189. "php": "^7.1 || ^8.0"
  1190. },
  1191. "require-dev": {
  1192. "doctrine/coding-standard": "^9",
  1193. "phpstan/phpstan": "1.4.10 || 1.10.15",
  1194. "phpstan/phpstan-phpunit": "^1.0",
  1195. "phpunit/phpunit": "^7.5 || ^8.5 || ^9.5",
  1196. "psalm/plugin-phpunit": "0.18.4",
  1197. "psr/log": "^1 || ^2 || ^3",
  1198. "vimeo/psalm": "4.30.0 || 5.12.0"
  1199. },
  1200. "suggest": {
  1201. "psr/log": "Allows logging deprecations via PSR-3 logger implementation"
  1202. },
  1203. "type": "library",
  1204. "autoload": {
  1205. "psr-4": {
  1206. "Doctrine\\Deprecations\\": "lib/Doctrine/Deprecations"
  1207. }
  1208. },
  1209. "notification-url": "https://packagist.org/downloads/",
  1210. "license": [
  1211. "MIT"
  1212. ],
  1213. "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.",
  1214. "homepage": "https://www.doctrine-project.org/",
  1215. "support": {
  1216. "issues": "https://github.com/doctrine/deprecations/issues",
  1217. "source": "https://github.com/doctrine/deprecations/tree/1.1.3"
  1218. },
  1219. "time": "2024-01-30T19:34:25+00:00"
  1220. },
  1221. {
  1222. "name": "doctrine/lexer",
  1223. "version": "2.1.1",
  1224. "source": {
  1225. "type": "git",
  1226. "url": "https://github.com/doctrine/lexer.git",
  1227. "reference": "861c870e8b75f7c8f69c146c7f89cc1c0f1b49b6"
  1228. },
  1229. "dist": {
  1230. "type": "zip",
  1231. "url": "https://api.github.com/repos/doctrine/lexer/zipball/861c870e8b75f7c8f69c146c7f89cc1c0f1b49b6",
  1232. "reference": "861c870e8b75f7c8f69c146c7f89cc1c0f1b49b6",
  1233. "shasum": ""
  1234. },
  1235. "require": {
  1236. "doctrine/deprecations": "^1.0",
  1237. "php": "^7.1 || ^8.0"
  1238. },
  1239. "require-dev": {
  1240. "doctrine/coding-standard": "^9 || ^12",
  1241. "phpstan/phpstan": "^1.3",
  1242. "phpunit/phpunit": "^7.5 || ^8.5 || ^9.6",
  1243. "psalm/plugin-phpunit": "^0.18.3",
  1244. "vimeo/psalm": "^4.11 || ^5.21"
  1245. },
  1246. "type": "library",
  1247. "autoload": {
  1248. "psr-4": {
  1249. "Doctrine\\Common\\Lexer\\": "src"
  1250. }
  1251. },
  1252. "notification-url": "https://packagist.org/downloads/",
  1253. "license": [
  1254. "MIT"
  1255. ],
  1256. "authors": [
  1257. {
  1258. "name": "Guilherme Blanco",
  1259. "email": "guilhermeblanco@gmail.com"
  1260. },
  1261. {
  1262. "name": "Roman Borschel",
  1263. "email": "roman@code-factory.org"
  1264. },
  1265. {
  1266. "name": "Johannes Schmitt",
  1267. "email": "schmittjoh@gmail.com"
  1268. }
  1269. ],
  1270. "description": "PHP Doctrine Lexer parser library that can be used in Top-Down, Recursive Descent Parsers.",
  1271. "homepage": "https://www.doctrine-project.org/projects/lexer.html",
  1272. "keywords": [
  1273. "annotations",
  1274. "docblock",
  1275. "lexer",
  1276. "parser",
  1277. "php"
  1278. ],
  1279. "support": {
  1280. "issues": "https://github.com/doctrine/lexer/issues",
  1281. "source": "https://github.com/doctrine/lexer/tree/2.1.1"
  1282. },
  1283. "funding": [
  1284. {
  1285. "url": "https://www.doctrine-project.org/sponsorship.html",
  1286. "type": "custom"
  1287. },
  1288. {
  1289. "url": "https://www.patreon.com/phpdoctrine",
  1290. "type": "patreon"
  1291. },
  1292. {
  1293. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Flexer",
  1294. "type": "tidelift"
  1295. }
  1296. ],
  1297. "time": "2024-02-05T11:35:39+00:00"
  1298. },
  1299. {
  1300. "name": "drupal/address",
  1301. "version": "2.0.1",
  1302. "source": {
  1303. "type": "git",
  1304. "url": "https://git.drupalcode.org/project/address.git",
  1305. "reference": "2.0.1"
  1306. },
  1307. "dist": {
  1308. "type": "zip",
  1309. "url": "https://ftp.drupal.org/files/projects/address-2.0.1.zip",
  1310. "reference": "2.0.1",
  1311. "shasum": "47e166dc46b1a2e17470738e8321bc20fa9e8e24"
  1312. },
  1313. "require": {
  1314. "commerceguys/addressing": "^2.1.1",
  1315. "drupal/core": "^9.5 || ^10",
  1316. "php": "^8.0"
  1317. },
  1318. "require-dev": {
  1319. "drupal/diff": "^1",
  1320. "drupal/feeds": "^3",
  1321. "drupal/token": "^1"
  1322. },
  1323. "type": "drupal-module",
  1324. "extra": {
  1325. "drupal": {
  1326. "version": "2.0.1",
  1327. "datestamp": "1708373992",
  1328. "security-coverage": {
  1329. "status": "covered",
  1330. "message": "Covered by Drupal's security advisory policy"
  1331. }
  1332. }
  1333. },
  1334. "notification-url": "https://packages.drupal.org/8/downloads",
  1335. "license": [
  1336. "GPL-2.0-or-later"
  1337. ],
  1338. "authors": [
  1339. {
  1340. "name": "bojanz",
  1341. "homepage": "https://www.drupal.org/user/86106"
  1342. },
  1343. {
  1344. "name": "Centarro",
  1345. "homepage": "https://www.drupal.org/user/3661446"
  1346. },
  1347. {
  1348. "name": "dww",
  1349. "homepage": "https://www.drupal.org/user/46549"
  1350. },
  1351. {
  1352. "name": "jsacksick",
  1353. "homepage": "https://www.drupal.org/user/972218"
  1354. },
  1355. {
  1356. "name": "rszrama",
  1357. "homepage": "https://www.drupal.org/user/49344"
  1358. }
  1359. ],
  1360. "description": "Provides functionality for storing, validating and displaying international postal addresses.",
  1361. "homepage": "http://drupal.org/project/address",
  1362. "support": {
  1363. "source": "https://git.drupalcode.org/project/address"
  1364. }
  1365. },
  1366. {
  1367. "name": "drupal/address_map_link",
  1368. "version": "1.4.0",
  1369. "source": {
  1370. "type": "git",
  1371. "url": "https://git.drupalcode.org/project/address_map_link.git",
  1372. "reference": "8.x-1.4"
  1373. },
  1374. "dist": {
  1375. "type": "zip",
  1376. "url": "https://ftp.drupal.org/files/projects/address_map_link-8.x-1.4.zip",
  1377. "reference": "8.x-1.4",
  1378. "shasum": "854c86a4e4ac6ef492e502659acf8eed89e56058"
  1379. },
  1380. "require": {
  1381. "drupal/address": "^1.0 || ^2.0",
  1382. "drupal/core": "^9.2 || ^10",
  1383. "php": "^7.3 || ^8.0"
  1384. },
  1385. "type": "drupal-module",
  1386. "extra": {
  1387. "drupal": {
  1388. "version": "8.x-1.4",
  1389. "datestamp": "1708441555",
  1390. "security-coverage": {
  1391. "status": "covered",
  1392. "message": "Covered by Drupal's security advisory policy"
  1393. }
  1394. }
  1395. },
  1396. "notification-url": "https://packages.drupal.org/8/downloads",
  1397. "license": [
  1398. "GPL-2.0-or-later"
  1399. ],
  1400. "authors": [
  1401. {
  1402. "name": "Chris Snyder",
  1403. "homepage": "https://www.drupal.org/u/chrissnyder",
  1404. "email": "chris@chrissnyder.org",
  1405. "role": "Maintainer"
  1406. }
  1407. ],
  1408. "description": "Provides a link to an external mapping site for an address field.",
  1409. "homepage": "https://www.drupal.org/project/address_map_link",
  1410. "keywords": [
  1411. "Drupal"
  1412. ],
  1413. "support": {
  1414. "source": "https://cgit.drupalcode.org/address_map_link",
  1415. "issues": "https://www.drupal.org/project/issues/address_map_link"
  1416. }
  1417. },
  1418. {
  1419. "name": "drupal/admin_toolbar",
  1420. "version": "3.4.2",
  1421. "source": {
  1422. "type": "git",
  1423. "url": "https://git.drupalcode.org/project/admin_toolbar.git",
  1424. "reference": "3.4.2"
  1425. },
  1426. "dist": {
  1427. "type": "zip",
  1428. "url": "https://ftp.drupal.org/files/projects/admin_toolbar-3.4.2.zip",
  1429. "reference": "3.4.2",
  1430. "shasum": "f5a008e5c73f5a11c6c8067c0ea6ebb76aa33854"
  1431. },
  1432. "require": {
  1433. "drupal/core": "^9.2 || ^10"
  1434. },
  1435. "require-dev": {
  1436. "drupal/admin_toolbar_tools": "*"
  1437. },
  1438. "type": "drupal-module",
  1439. "extra": {
  1440. "drupal": {
  1441. "version": "3.4.2",
  1442. "datestamp": "1696006195",
  1443. "security-coverage": {
  1444. "status": "covered",
  1445. "message": "Covered by Drupal's security advisory policy"
  1446. }
  1447. }
  1448. },
  1449. "notification-url": "https://packages.drupal.org/8/downloads",
  1450. "license": [
  1451. "GPL-2.0-or-later"
  1452. ],
  1453. "authors": [
  1454. {
  1455. "name": "Wilfrid Roze (eme)",
  1456. "homepage": "https://www.drupal.org/u/eme",
  1457. "role": "Maintainer"
  1458. },
  1459. {
  1460. "name": "Romain Jarraud (romainj)",
  1461. "homepage": "https://www.drupal.org/u/romainj",
  1462. "role": "Maintainer"
  1463. },
  1464. {
  1465. "name": "Adrian Cid Almaguer (adriancid)",
  1466. "homepage": "https://www.drupal.org/u/adriancid",
  1467. "email": "adriancid@gmail.com",
  1468. "role": "Maintainer"
  1469. },
  1470. {
  1471. "name": "Mohamed Anis Taktak (matio89)",
  1472. "homepage": "https://www.drupal.org/u/matio89",
  1473. "role": "Maintainer"
  1474. },
  1475. {
  1476. "name": "matio89",
  1477. "homepage": "https://www.drupal.org/user/2320090"
  1478. },
  1479. {
  1480. "name": "Musa.thomas",
  1481. "homepage": "https://www.drupal.org/user/1213824"
  1482. },
  1483. {
  1484. "name": "romainj",
  1485. "homepage": "https://www.drupal.org/user/370706"
  1486. }
  1487. ],
  1488. "description": "Provides a drop-down menu interface to the core Drupal Toolbar.",
  1489. "homepage": "http://drupal.org/project/admin_toolbar",
  1490. "keywords": [
  1491. "Drupal",
  1492. "Toolbar"
  1493. ],
  1494. "support": {
  1495. "source": "https://git.drupalcode.org/project/admin_toolbar",
  1496. "issues": "https://www.drupal.org/project/issues/admin_toolbar"
  1497. }
  1498. },
  1499. {
  1500. "name": "drupal/adminimal_theme",
  1501. "version": "1.7.0",
  1502. "source": {
  1503. "type": "git",
  1504. "url": "https://git.drupalcode.org/project/adminimal_theme.git",
  1505. "reference": "8.x-1.7"
  1506. },
  1507. "dist": {
  1508. "type": "zip",
  1509. "url": "https://ftp.drupal.org/files/projects/adminimal_theme-8.x-1.7.zip",
  1510. "reference": "8.x-1.7",
  1511. "shasum": "0fe020fecab6a1f6d877f2e622fb9f916ada52bb"
  1512. },
  1513. "require": {
  1514. "drupal/core": "^9.3 || ^10",
  1515. "drupal/seven": "~1.0"
  1516. },
  1517. "type": "drupal-theme",
  1518. "extra": {
  1519. "drupal": {
  1520. "version": "8.x-1.7",
  1521. "datestamp": "1691504486",
  1522. "security-coverage": {
  1523. "status": "covered",
  1524. "message": "Covered by Drupal's security advisory policy"
  1525. }
  1526. }
  1527. },
  1528. "notification-url": "https://packages.drupal.org/8/downloads",
  1529. "license": [
  1530. "GPL-2.0+"
  1531. ],
  1532. "authors": [
  1533. {
  1534. "name": "ANDiTKO",
  1535. "homepage": "https://www.drupal.org/user/1428124"
  1536. },
  1537. {
  1538. "name": "andrey.troeglazov",
  1539. "homepage": "https://www.drupal.org/user/3145389"
  1540. },
  1541. {
  1542. "name": "realityloop",
  1543. "homepage": "https://www.drupal.org/user/139189"
  1544. },
  1545. {
  1546. "name": "rjjakes",
  1547. "homepage": "https://www.drupal.org/user/3457245"
  1548. }
  1549. ],
  1550. "description": "Drupal administration theme with modern minimalist design.",
  1551. "homepage": "https://www.drupal.org/project/adminimal_theme",
  1552. "support": {
  1553. "source": "https://git.drupalcode.org/project/adminimal_theme",
  1554. "issues": "https://www.drupal.org/project/issues/adminimal_theme"
  1555. }
  1556. },
  1557. {
  1558. "name": "drupal/audiofield",
  1559. "version": "1.13.0",
  1560. "source": {
  1561. "type": "git",
  1562. "url": "https://git.drupalcode.org/project/audiofield.git",
  1563. "reference": "8.x-1.13"
  1564. },
  1565. "dist": {
  1566. "type": "zip",
  1567. "url": "https://ftp.drupal.org/files/projects/audiofield-8.x-1.13.zip",
  1568. "reference": "8.x-1.13",
  1569. "shasum": "85bb66d231b2f961728b559351d5dfd155b2c78c"
  1570. },
  1571. "require": {
  1572. "drupal/core": "^8 || ^9 || ^10"
  1573. },
  1574. "type": "drupal-module",
  1575. "extra": {
  1576. "drupal": {
  1577. "version": "8.x-1.13",
  1578. "datestamp": "1681143245",
  1579. "security-coverage": {
  1580. "status": "covered",
  1581. "message": "Covered by Drupal's security advisory policy"
  1582. }
  1583. },
  1584. "drush": {
  1585. "services": {
  1586. "drush.services.yml": "^9"
  1587. }
  1588. }
  1589. },
  1590. "notification-url": "https://packages.drupal.org/8/downloads",
  1591. "license": [
  1592. "GPL-2.0-or-later"
  1593. ],
  1594. "authors": [
  1595. {
  1596. "name": "Daniel Moberly",
  1597. "homepage": "https://www.drupal.org/u/danielmoberly",
  1598. "role": "Maintainer"
  1599. },
  1600. {
  1601. "name": "tamerzg",
  1602. "homepage": "https://www.drupal.org/user/464564"
  1603. }
  1604. ],
  1605. "description": "AudioField Module",
  1606. "homepage": "https://www.drupal.org/project/audiofield",
  1607. "support": {
  1608. "source": "https://git.drupalcode.org/project/audiofield",
  1609. "issues": "https://www.drupal.org/project/issues/audiofield"
  1610. }
  1611. },
  1612. {
  1613. "name": "drupal/backup_migrate",
  1614. "version": "5.0.3",
  1615. "source": {
  1616. "type": "git",
  1617. "url": "https://git.drupalcode.org/project/backup_migrate.git",
  1618. "reference": "5.0.3"
  1619. },
  1620. "dist": {
  1621. "type": "zip",
  1622. "url": "https://ftp.drupal.org/files/projects/backup_migrate-5.0.3.zip",
  1623. "reference": "5.0.3",
  1624. "shasum": "bc263f601f7a21248d4000a372d04a417df7e326"
  1625. },
  1626. "require": {
  1627. "drupal/core": "^9.3 || ^10"
  1628. },
  1629. "suggest": {
  1630. "defuse/php-encryption": "Optional encryption of saved backups."
  1631. },
  1632. "type": "drupal-module",
  1633. "extra": {
  1634. "drupal": {
  1635. "version": "5.0.3",
  1636. "datestamp": "1671366510",
  1637. "security-coverage": {
  1638. "status": "covered",
  1639. "message": "Covered by Drupal's security advisory policy"
  1640. }
  1641. }
  1642. },
  1643. "notification-url": "https://packages.drupal.org/8/downloads",
  1644. "license": [
  1645. "GPL-2.0-or-later"
  1646. ],
  1647. "authors": [
  1648. {
  1649. "name": "See contributors",
  1650. "homepage": "https://www.drupal.org/node/189065/committers",
  1651. "role": "Developer"
  1652. },
  1653. {
  1654. "name": "DamienMcKenna",
  1655. "homepage": "https://www.drupal.org/user/108450"
  1656. },
  1657. {
  1658. "name": "dgorton",
  1659. "homepage": "https://www.drupal.org/user/19044"
  1660. },
  1661. {
  1662. "name": "ikit-claw",
  1663. "homepage": "https://www.drupal.org/user/3285813"
  1664. },
  1665. {
  1666. "name": "ronan",
  1667. "homepage": "https://www.drupal.org/user/72815"
  1668. }
  1669. ],
  1670. "description": "Backup and Migrate Drupal Module",
  1671. "homepage": "https://www.drupal.org/project/backup_migrate",
  1672. "support": {
  1673. "source": "https://git.drupalcode.org/project/backup_migrate",
  1674. "issues": "https://www.drupal.org/project/issues/backup_migrate",
  1675. "slack": "https://drupal.slack.com/messages/C7C4M4QJV/details/"
  1676. }
  1677. },
  1678. {
  1679. "name": "drupal/charts",
  1680. "version": "5.0.11",
  1681. "source": {
  1682. "type": "git",
  1683. "url": "https://git.drupalcode.org/project/charts.git",
  1684. "reference": "5.0.11"
  1685. },
  1686. "dist": {
  1687. "type": "zip",
  1688. "url": "https://ftp.drupal.org/files/projects/charts-5.0.11.zip",
  1689. "reference": "5.0.11",
  1690. "shasum": "fcffd70c4bbaf74809528993ed42ad0fb6db2b75"
  1691. },
  1692. "require": {
  1693. "drupal/core": "^9.2 || ^10"
  1694. },
  1695. "type": "drupal-module",
  1696. "extra": {
  1697. "drupal": {
  1698. "version": "5.0.11",
  1699. "datestamp": "1706650372",
  1700. "security-coverage": {
  1701. "status": "covered",
  1702. "message": "Covered by Drupal's security advisory policy"
  1703. }
  1704. }
  1705. },
  1706. "notification-url": "https://packages.drupal.org/8/downloads",
  1707. "license": [
  1708. "GPL-2.0-or-later"
  1709. ],
  1710. "authors": [
  1711. {
  1712. "name": "andileco",
  1713. "homepage": "https://www.drupal.org/user/2054544"
  1714. },
  1715. {
  1716. "name": "nikathone",
  1717. "homepage": "https://www.drupal.org/user/2421800"
  1718. },
  1719. {
  1720. "name": "quicksketch",
  1721. "homepage": "https://www.drupal.org/user/35821"
  1722. }
  1723. ],
  1724. "description": "A charting API for Drupal that provides chart elements and integration with Views.",
  1725. "homepage": "https://www.drupal.org/project/charts",
  1726. "support": {
  1727. "source": "https://git.drupalcode.org/project/charts"
  1728. }
  1729. },
  1730. {
  1731. "name": "drupal/core",
  1732. "version": "10.2.3",
  1733. "source": {
  1734. "type": "git",
  1735. "url": "https://github.com/drupal/core.git",
  1736. "reference": "cc8c7952f7013795b735f5c15290e76937163bb7"
  1737. },
  1738. "dist": {
  1739. "type": "zip",
  1740. "url": "https://api.github.com/repos/drupal/core/zipball/cc8c7952f7013795b735f5c15290e76937163bb7",
  1741. "reference": "cc8c7952f7013795b735f5c15290e76937163bb7",
  1742. "shasum": ""
  1743. },
  1744. "require": {
  1745. "asm89/stack-cors": "^2.1",
  1746. "composer-runtime-api": "^2.1",
  1747. "composer/semver": "^3.3",
  1748. "doctrine/annotations": "^1.14",
  1749. "egulias/email-validator": "^3.2.1|^4.0",
  1750. "ext-date": "*",
  1751. "ext-dom": "*",
  1752. "ext-filter": "*",
  1753. "ext-gd": "*",
  1754. "ext-hash": "*",
  1755. "ext-json": "*",
  1756. "ext-pcre": "*",
  1757. "ext-pdo": "*",
  1758. "ext-session": "*",
  1759. "ext-simplexml": "*",
  1760. "ext-spl": "*",
  1761. "ext-tokenizer": "*",
  1762. "ext-xml": "*",
  1763. "guzzlehttp/guzzle": "^7.5",
  1764. "guzzlehttp/psr7": "^2.4.5",
  1765. "masterminds/html5": "^2.7",
  1766. "mck89/peast": "^1.14",
  1767. "pear/archive_tar": "^1.4.14",
  1768. "php": ">=8.1.0",
  1769. "psr/log": "^3.0",
  1770. "sebastian/diff": "^4",
  1771. "symfony/console": "^6.4",
  1772. "symfony/dependency-injection": "^6.4",
  1773. "symfony/event-dispatcher": "^6.4",
  1774. "symfony/filesystem": "^6.4",
  1775. "symfony/finder": "^6.4",
  1776. "symfony/http-foundation": "^6.4",
  1777. "symfony/http-kernel": "^6.4",
  1778. "symfony/mailer": "^6.4",
  1779. "symfony/mime": "^6.4",
  1780. "symfony/polyfill-iconv": "^1.26",
  1781. "symfony/process": "^6.4",
  1782. "symfony/psr-http-message-bridge": "^2.1|^6.4",
  1783. "symfony/routing": "^6.4",
  1784. "symfony/serializer": "^6.4",
  1785. "symfony/validator": "^6.4",
  1786. "symfony/yaml": "^6.4",
  1787. "twig/twig": "^3.5.0"
  1788. },
  1789. "conflict": {
  1790. "drush/drush": "<12.4.3"
  1791. },
  1792. "replace": {
  1793. "drupal/core-annotation": "self.version",
  1794. "drupal/core-assertion": "self.version",
  1795. "drupal/core-class-finder": "self.version",
  1796. "drupal/core-datetime": "self.version",
  1797. "drupal/core-dependency-injection": "self.version",
  1798. "drupal/core-diff": "self.version",
  1799. "drupal/core-discovery": "self.version",
  1800. "drupal/core-event-dispatcher": "self.version",
  1801. "drupal/core-file-cache": "self.version",
  1802. "drupal/core-file-security": "self.version",
  1803. "drupal/core-filesystem": "self.version",
  1804. "drupal/core-front-matter": "self.version",
  1805. "drupal/core-gettext": "self.version",
  1806. "drupal/core-graph": "self.version",
  1807. "drupal/core-http-foundation": "self.version",
  1808. "drupal/core-php-storage": "self.version",
  1809. "drupal/core-plugin": "self.version",
  1810. "drupal/core-proxy-builder": "self.version",
  1811. "drupal/core-render": "self.version",
  1812. "drupal/core-serialization": "self.version",
  1813. "drupal/core-transliteration": "self.version",
  1814. "drupal/core-utility": "self.version",
  1815. "drupal/core-uuid": "self.version",
  1816. "drupal/core-version": "self.version"
  1817. },
  1818. "suggest": {
  1819. "ext-zip": "Needed to extend the plugin.manager.archiver service capability with the handling of files in the ZIP format."
  1820. },
  1821. "type": "drupal-core",
  1822. "extra": {
  1823. "drupal-scaffold": {
  1824. "file-mapping": {
  1825. "[project-root]/.editorconfig": "assets/scaffold/files/editorconfig",
  1826. "[project-root]/.gitattributes": "assets/scaffold/files/gitattributes",
  1827. "[web-root]/.csslintrc": "assets/scaffold/files/csslintrc",
  1828. "[web-root]/.eslintignore": "assets/scaffold/files/eslintignore",
  1829. "[web-root]/.eslintrc.json": "assets/scaffold/files/eslintrc.json",
  1830. "[web-root]/.ht.router.php": "assets/scaffold/files/ht.router.php",
  1831. "[web-root]/.htaccess": "assets/scaffold/files/htaccess",
  1832. "[web-root]/example.gitignore": "assets/scaffold/files/example.gitignore",
  1833. "[web-root]/index.php": "assets/scaffold/files/index.php",
  1834. "[web-root]/INSTALL.txt": "assets/scaffold/files/drupal.INSTALL.txt",
  1835. "[web-root]/README.md": "assets/scaffold/files/drupal.README.md",
  1836. "[web-root]/robots.txt": "assets/scaffold/files/robots.txt",
  1837. "[web-root]/update.php": "assets/scaffold/files/update.php",
  1838. "[web-root]/web.config": "assets/scaffold/files/web.config",
  1839. "[web-root]/sites/README.txt": "assets/scaffold/files/sites.README.txt",
  1840. "[web-root]/sites/development.services.yml": "assets/scaffold/files/development.services.yml",
  1841. "[web-root]/sites/example.settings.local.php": "assets/scaffold/files/example.settings.local.php",
  1842. "[web-root]/sites/example.sites.php": "assets/scaffold/files/example.sites.php",
  1843. "[web-root]/sites/default/default.services.yml": "assets/scaffold/files/default.services.yml",
  1844. "[web-root]/sites/default/default.settings.php": "assets/scaffold/files/default.settings.php",
  1845. "[web-root]/modules/README.txt": "assets/scaffold/files/modules.README.txt",
  1846. "[web-root]/profiles/README.txt": "assets/scaffold/files/profiles.README.txt",
  1847. "[web-root]/themes/README.txt": "assets/scaffold/files/themes.README.txt"
  1848. }
  1849. }
  1850. },
  1851. "autoload": {
  1852. "files": [
  1853. "includes/bootstrap.inc"
  1854. ],
  1855. "psr-4": {
  1856. "Drupal\\Core\\": "lib/Drupal/Core",
  1857. "Drupal\\Component\\": "lib/Drupal/Component"
  1858. },
  1859. "classmap": [
  1860. "lib/Drupal.php",
  1861. "lib/Drupal/Component/DependencyInjection/Container.php",
  1862. "lib/Drupal/Component/DependencyInjection/PhpArrayContainer.php",
  1863. "lib/Drupal/Component/FileCache/FileCacheFactory.php",
  1864. "lib/Drupal/Component/Utility/Timer.php",
  1865. "lib/Drupal/Component/Utility/Unicode.php",
  1866. "lib/Drupal/Core/Cache/Cache.php",
  1867. "lib/Drupal/Core/Cache/CacheBackendInterface.php",
  1868. "lib/Drupal/Core/Cache/CacheTagsChecksumInterface.php",
  1869. "lib/Drupal/Core/Cache/CacheTagsChecksumTrait.php",
  1870. "lib/Drupal/Core/Cache/CacheTagsInvalidatorInterface.php",
  1871. "lib/Drupal/Core/Cache/DatabaseBackend.php",
  1872. "lib/Drupal/Core/Cache/DatabaseCacheTagsChecksum.php",
  1873. "lib/Drupal/Core/Database/Connection.php",
  1874. "lib/Drupal/Core/Database/Database.php",
  1875. "lib/Drupal/Core/Database/StatementInterface.php",
  1876. "lib/Drupal/Core/DependencyInjection/Container.php",
  1877. "lib/Drupal/Core/DrupalKernel.php",
  1878. "lib/Drupal/Core/DrupalKernelInterface.php",
  1879. "lib/Drupal/Core/Installer/InstallerRedirectTrait.php",
  1880. "lib/Drupal/Core/Site/Settings.php"
  1881. ]
  1882. },
  1883. "notification-url": "https://packagist.org/downloads/",
  1884. "license": [
  1885. "GPL-2.0-or-later"
  1886. ],
  1887. "description": "Drupal is an open source content management platform powering millions of websites and applications.",
  1888. "support": {
  1889. "source": "https://github.com/drupal/core/tree/10.2.3"
  1890. },
  1891. "time": "2024-02-07T22:44:48+00:00"
  1892. },
  1893. {
  1894. "name": "drupal/core-composer-scaffold",
  1895. "version": "10.2.3",
  1896. "source": {
  1897. "type": "git",
  1898. "url": "https://github.com/drupal/core-composer-scaffold.git",
  1899. "reference": "63effa1bc644e80a269e8b4415e627491d26fd3f"
  1900. },
  1901. "dist": {
  1902. "type": "zip",
  1903. "url": "https://api.github.com/repos/drupal/core-composer-scaffold/zipball/63effa1bc644e80a269e8b4415e627491d26fd3f",
  1904. "reference": "63effa1bc644e80a269e8b4415e627491d26fd3f",
  1905. "shasum": ""
  1906. },
  1907. "require": {
  1908. "composer-plugin-api": "^2",
  1909. "php": ">=7.3.0"
  1910. },
  1911. "conflict": {
  1912. "drupal-composer/drupal-scaffold": "*"
  1913. },
  1914. "require-dev": {
  1915. "composer/composer": "^1.8@stable"
  1916. },
  1917. "type": "composer-plugin",
  1918. "extra": {
  1919. "class": "Drupal\\Composer\\Plugin\\Scaffold\\Plugin",
  1920. "branch-alias": {
  1921. "dev-master": "1.0.x-dev"
  1922. }
  1923. },
  1924. "autoload": {
  1925. "psr-4": {
  1926. "Drupal\\Composer\\Plugin\\Scaffold\\": ""
  1927. }
  1928. },
  1929. "notification-url": "https://packagist.org/downloads/",
  1930. "license": [
  1931. "GPL-2.0-or-later"
  1932. ],
  1933. "description": "A flexible Composer project scaffold builder.",
  1934. "homepage": "https://www.drupal.org/project/drupal",
  1935. "keywords": [
  1936. "drupal"
  1937. ],
  1938. "support": {
  1939. "source": "https://github.com/drupal/core-composer-scaffold/tree/10.2.3"
  1940. },
  1941. "time": "2024-01-26T14:59:30+00:00"
  1942. },
  1943. {
  1944. "name": "drupal/core-project-message",
  1945. "version": "10.2.3",
  1946. "source": {
  1947. "type": "git",
  1948. "url": "https://github.com/drupal/core-project-message.git",
  1949. "reference": "d1da83722735cb0f7ccabf9fef7b5607b442c3a8"
  1950. },
  1951. "dist": {
  1952. "type": "zip",
  1953. "url": "https://api.github.com/repos/drupal/core-project-message/zipball/d1da83722735cb0f7ccabf9fef7b5607b442c3a8",
  1954. "reference": "d1da83722735cb0f7ccabf9fef7b5607b442c3a8",
  1955. "shasum": ""
  1956. },
  1957. "require": {
  1958. "composer-plugin-api": "^2",
  1959. "php": ">=7.3.0"
  1960. },
  1961. "type": "composer-plugin",
  1962. "extra": {
  1963. "class": "Drupal\\Composer\\Plugin\\ProjectMessage\\MessagePlugin"
  1964. },
  1965. "autoload": {
  1966. "psr-4": {
  1967. "Drupal\\Composer\\Plugin\\ProjectMessage\\": "."
  1968. }
  1969. },
  1970. "notification-url": "https://packagist.org/downloads/",
  1971. "license": [
  1972. "GPL-2.0-or-later"
  1973. ],
  1974. "description": "Adds a message after Composer installation.",
  1975. "homepage": "https://www.drupal.org/project/drupal",
  1976. "keywords": [
  1977. "drupal"
  1978. ],
  1979. "support": {
  1980. "source": "https://github.com/drupal/core-project-message/tree/10.2.3"
  1981. },
  1982. "time": "2023-07-24T07:55:25+00:00"
  1983. },
  1984. {
  1985. "name": "drupal/core-recommended",
  1986. "version": "10.2.3",
  1987. "source": {
  1988. "type": "git",
  1989. "url": "https://github.com/drupal/core-recommended.git",
  1990. "reference": "ee5d148455ca5792108a1fd007ae162ea2ffe859"
  1991. },
  1992. "dist": {
  1993. "type": "zip",
  1994. "url": "https://api.github.com/repos/drupal/core-recommended/zipball/ee5d148455ca5792108a1fd007ae162ea2ffe859",
  1995. "reference": "ee5d148455ca5792108a1fd007ae162ea2ffe859",
  1996. "shasum": ""
  1997. },
  1998. "require": {
  1999. "asm89/stack-cors": "~v2.2.0",
  2000. "composer/semver": "~3.4.0",
  2001. "doctrine/annotations": "~1.14.3",
  2002. "doctrine/deprecations": "~1.1.2",
  2003. "doctrine/lexer": "~2.1.0",
  2004. "drupal/core": "10.2.3",
  2005. "egulias/email-validator": "~4.0.2",
  2006. "guzzlehttp/guzzle": "~7.8.1",
  2007. "guzzlehttp/promises": "~2.0.2",
  2008. "guzzlehttp/psr7": "~2.6.2",
  2009. "masterminds/html5": "~2.8.1",
  2010. "mck89/peast": "~v1.15.4",
  2011. "pear/archive_tar": "~1.4.14",
  2012. "pear/console_getopt": "~v1.4.3",
  2013. "pear/pear-core-minimal": "~v1.10.14",
  2014. "pear/pear_exception": "~v1.0.2",
  2015. "psr/cache": "~3.0.0",
  2016. "psr/container": "~2.0.2",
  2017. "psr/event-dispatcher": "~1.0.0",
  2018. "psr/http-client": "~1.0.3",
  2019. "psr/http-factory": "~1.0.2",
  2020. "psr/log": "~3.0.0",
  2021. "ralouphie/getallheaders": "~3.0.3",
  2022. "sebastian/diff": "~4.0.5",
  2023. "symfony/console": "~v6.4.1",
  2024. "symfony/dependency-injection": "~v6.4.1",
  2025. "symfony/deprecation-contracts": "~v3.4.0",
  2026. "symfony/error-handler": "~v6.4.0",
  2027. "symfony/event-dispatcher": "~v6.4.0",
  2028. "symfony/event-dispatcher-contracts": "~v3.4.0",
  2029. "symfony/filesystem": "~v6.4.0",
  2030. "symfony/finder": "~v6.4.0",
  2031. "symfony/http-foundation": "~v6.4.0",
  2032. "symfony/http-kernel": "~v6.4.1",
  2033. "symfony/mailer": "~v6.4.0",
  2034. "symfony/mime": "~v6.4.0",
  2035. "symfony/polyfill-ctype": "~v1.28.0",
  2036. "symfony/polyfill-iconv": "~v1.28.0",
  2037. "symfony/polyfill-intl-grapheme": "~v1.28.0",
  2038. "symfony/polyfill-intl-idn": "~v1.28.0",
  2039. "symfony/polyfill-intl-normalizer": "~v1.28.0",
  2040. "symfony/polyfill-mbstring": "~v1.28.0",
  2041. "symfony/polyfill-php83": "~v1.28.0",
  2042. "symfony/process": "~v6.4.0",
  2043. "symfony/psr-http-message-bridge": "~v6.4.0",
  2044. "symfony/routing": "~v6.4.1",
  2045. "symfony/serializer": "~v6.4.1",
  2046. "symfony/service-contracts": "~v3.4.0",
  2047. "symfony/string": "~v6.4.0",
  2048. "symfony/translation-contracts": "~v3.4.0",
  2049. "symfony/validator": "~v6.4.0",
  2050. "symfony/var-dumper": "~v6.4.0",
  2051. "symfony/var-exporter": "~v6.4.1",
  2052. "symfony/yaml": "~v6.4.0",
  2053. "twig/twig": "~v3.8.0"
  2054. },
  2055. "conflict": {
  2056. "webflo/drupal-core-strict": "*"
  2057. },
  2058. "type": "metapackage",
  2059. "notification-url": "https://packagist.org/downloads/",
  2060. "license": [
  2061. "GPL-2.0-or-later"
  2062. ],
  2063. "description": "Core and its dependencies with known-compatible minor versions. Require this project INSTEAD OF drupal/core.",
  2064. "support": {
  2065. "source": "https://github.com/drupal/core-recommended/tree/10.2.3"
  2066. },
  2067. "time": "2024-02-07T22:44:48+00:00"
  2068. },
  2069. {
  2070. "name": "drupal/ctools",
  2071. "version": "4.0.4",
  2072. "source": {
  2073. "type": "git",
  2074. "url": "https://git.drupalcode.org/project/ctools.git",
  2075. "reference": "4.0.4"
  2076. },
  2077. "dist": {
  2078. "type": "zip",
  2079. "url": "https://ftp.drupal.org/files/projects/ctools-4.0.4.zip",
  2080. "reference": "4.0.4",
  2081. "shasum": "4a2474eb2fd525b2add2db0e855c135ba7f0fb70"
  2082. },
  2083. "require": {
  2084. "drupal/core": "^9.3 || ^10"
  2085. },
  2086. "type": "drupal-module",
  2087. "extra": {
  2088. "drupal": {
  2089. "version": "4.0.4",
  2090. "datestamp": "1684299878",
  2091. "security-coverage": {
  2092. "status": "covered",
  2093. "message": "Covered by Drupal's security advisory policy"
  2094. }
  2095. },
  2096. "branch-alias": {
  2097. "dev-8.x-3.x": "3.x-dev"
  2098. }
  2099. },
  2100. "notification-url": "https://packages.drupal.org/8/downloads",
  2101. "license": [
  2102. "GPL-2.0-or-later"
  2103. ],
  2104. "authors": [
  2105. {
  2106. "name": "Kris Vanderwater (EclipseGc)",
  2107. "homepage": "https://www.drupal.org/u/eclipsegc",
  2108. "role": "Maintainer"
  2109. },
  2110. {
  2111. "name": "Jakob Perry (japerry)",
  2112. "homepage": "https://www.drupal.org/u/japerry",
  2113. "role": "Maintainer"
  2114. },
  2115. {
  2116. "name": "Tim Plunkett (tim.plunkett)",
  2117. "homepage": "https://www.drupal.org/u/timplunkett",
  2118. "role": "Maintainer"
  2119. },
  2120. {
  2121. "name": "James Gilliland (neclimdul)",
  2122. "homepage": "https://www.drupal.org/u/neclimdul",
  2123. "role": "Maintainer"
  2124. },
  2125. {
  2126. "name": "Daniel Wehner (dawehner)",
  2127. "homepage": "https://www.drupal.org/u/dawehner",
  2128. "role": "Maintainer"
  2129. },
  2130. {
  2131. "name": "joelpittet",
  2132. "homepage": "https://www.drupal.org/user/160302"
  2133. },
  2134. {
  2135. "name": "merlinofchaos",
  2136. "homepage": "https://www.drupal.org/user/26979"
  2137. },
  2138. {
  2139. "name": "neclimdul",
  2140. "homepage": "https://www.drupal.org/user/48673"
  2141. },
  2142. {
  2143. "name": "sdboyer",
  2144. "homepage": "https://www.drupal.org/user/146719"
  2145. },
  2146. {
  2147. "name": "sun",
  2148. "homepage": "https://www.drupal.org/user/54136"
  2149. },
  2150. {
  2151. "name": "tim.plunkett",
  2152. "homepage": "https://www.drupal.org/user/241634"
  2153. }
  2154. ],
  2155. "description": "Provides a number of utility and helper APIs for Drupal developers and site builders.",
  2156. "homepage": "https://www.drupal.org/project/ctools",
  2157. "support": {
  2158. "source": "https://git.drupalcode.org/project/ctools",
  2159. "issues": "https://www.drupal.org/project/issues/ctools"
  2160. }
  2161. },
  2162. {
  2163. "name": "drupal/entity_browser",
  2164. "version": "2.10.0",
  2165. "source": {
  2166. "type": "git",
  2167. "url": "https://git.drupalcode.org/project/entity_browser.git",
  2168. "reference": "8.x-2.10"
  2169. },
  2170. "dist": {
  2171. "type": "zip",
  2172. "url": "https://ftp.drupal.org/files/projects/entity_browser-8.x-2.10.zip",
  2173. "reference": "8.x-2.10",
  2174. "shasum": "d52548ea66dc56108c2e211aeaff6e1cc0522e85"
  2175. },
  2176. "require": {
  2177. "drupal/core": "^9.5 || ^10"
  2178. },
  2179. "conflict": {
  2180. "drupal/media_entity": "1.*"
  2181. },
  2182. "require-dev": {
  2183. "drupal/ckeditor": "^1.0",
  2184. "drupal/embed": "^1.0",
  2185. "drupal/entity_embed": "^1.0",
  2186. "drupal/entity_reference_revisions": "^1.0",
  2187. "drupal/entityqueue": "^1.0",
  2188. "drupal/inline_entity_form": "^1.0@rc",
  2189. "drupal/paragraphs": "^1.0",
  2190. "drupal/token": "^1.0"
  2191. },
  2192. "type": "drupal-module",
  2193. "extra": {
  2194. "drupal": {
  2195. "version": "8.x-2.10",
  2196. "datestamp": "1702325310",
  2197. "security-coverage": {
  2198. "status": "covered",
  2199. "message": "Covered by Drupal's security advisory policy"
  2200. }
  2201. }
  2202. },
  2203. "notification-url": "https://packages.drupal.org/8/downloads",
  2204. "license": [
  2205. "GPL-2.0+"
  2206. ],
  2207. "authors": [
  2208. {
  2209. "name": "Janez Urevc",
  2210. "homepage": "https://github.com/slashrsm",
  2211. "role": "Maintainer"
  2212. },
  2213. {
  2214. "name": "Primoz Hmeljak",
  2215. "homepage": "https://github.com/primsi",
  2216. "role": "Maintainer"
  2217. },
  2218. {
  2219. "name": "See other contributors",
  2220. "homepage": "https://www.drupal.org/node/1943336/committers",
  2221. "role": "contributor"
  2222. },
  2223. {
  2224. "name": "Drupal Media Team",
  2225. "homepage": "https://www.drupal.org/user/3260690"
  2226. },
  2227. {
  2228. "name": "marcingy",
  2229. "homepage": "https://www.drupal.org/user/77320"
  2230. },
  2231. {
  2232. "name": "oknate",
  2233. "homepage": "https://www.drupal.org/user/471638"
  2234. },
  2235. {
  2236. "name": "Primsi",
  2237. "homepage": "https://www.drupal.org/user/282629"
  2238. },
  2239. {
  2240. "name": "samuel.mortenson",
  2241. "homepage": "https://www.drupal.org/user/2582268"
  2242. },
  2243. {
  2244. "name": "slashrsm",
  2245. "homepage": "https://www.drupal.org/user/744628"
  2246. }
  2247. ],
  2248. "description": "Entity browsing and selecting component.",
  2249. "homepage": "https://drupal.org/project/entity_browser",
  2250. "support": {
  2251. "source": "https://git.drupalcode.org/project/entity_browser",
  2252. "issues": "https://www.drupal.org/project/issues/entity_browser",
  2253. "irc": "irc://irc.freenode.org/drupal-contribute"
  2254. }
  2255. },
  2256. {
  2257. "name": "drupal/entity_browser_enhanced",
  2258. "version": "2.0.0",
  2259. "source": {
  2260. "type": "git",
  2261. "url": "https://git.drupalcode.org/project/entity_browser_enhanced.git",
  2262. "reference": "2.0.0"
  2263. },
  2264. "dist": {
  2265. "type": "zip",
  2266. "url": "https://ftp.drupal.org/files/projects/entity_browser_enhanced-2.0.0.zip",
  2267. "reference": "2.0.0",
  2268. "shasum": "2880829c847c1c4b06092ab5335adb6ea960317b"
  2269. },
  2270. "require": {
  2271. "drupal/core": "^9 || ^10",
  2272. "drupal/entity_browser": "~2.0"
  2273. },
  2274. "type": "drupal-module",
  2275. "extra": {
  2276. "drupal": {
  2277. "version": "2.0.0",
  2278. "datestamp": "1697211243",
  2279. "security-coverage": {
  2280. "status": "covered",
  2281. "message": "Covered by Drupal's security advisory policy"
  2282. }
  2283. }
  2284. },
  2285. "notification-url": "https://packages.drupal.org/8/downloads",
  2286. "license": [
  2287. "GPL-2.0-or-later"
  2288. ],
  2289. "authors": [
  2290. {
  2291. "name": "Vardot",
  2292. "homepage": "https://www.drupal.org/vardot",
  2293. "role": "Maintainer"
  2294. },
  2295. {
  2296. "name": "Rajab Natshah",
  2297. "homepage": "https://www.drupal.org/user/1414312"
  2298. }
  2299. ],
  2300. "description": "Provides some behavior and style enhancements to Entity Browsers, specifically for multiselect and image/media browsers.",
  2301. "homepage": "https://www.drupal.org/project/entity_browser_enhanced",
  2302. "support": {
  2303. "source": "http://cgit.drupalcode.org/entity_browser_enhanced",
  2304. "issues": "https://www.drupal.org/project/issues/entity_browser_enhanced"
  2305. }
  2306. },
  2307. {
  2308. "name": "drupal/entity_reference_revisions",
  2309. "version": "1.11.0",
  2310. "source": {
  2311. "type": "git",
  2312. "url": "https://git.drupalcode.org/project/entity_reference_revisions.git",
  2313. "reference": "8.x-1.11"
  2314. },
  2315. "dist": {
  2316. "type": "zip",
  2317. "url": "https://ftp.drupal.org/files/projects/entity_reference_revisions-8.x-1.11.zip",
  2318. "reference": "8.x-1.11",
  2319. "shasum": "de21cbb0d8a0344dc3496addcad4ed536747cec5"
  2320. },
  2321. "require": {
  2322. "drupal/core": "^9 || ^10"
  2323. },
  2324. "require-dev": {
  2325. "drupal/diff": "1.x-dev"
  2326. },
  2327. "type": "drupal-module",
  2328. "extra": {
  2329. "drupal": {
  2330. "version": "8.x-1.11",
  2331. "datestamp": "1705140721",
  2332. "security-coverage": {
  2333. "status": "covered",
  2334. "message": "Covered by Drupal's security advisory policy"
  2335. }
  2336. },
  2337. "drush": {
  2338. "services": {
  2339. "drush.services.yml": "^9 || ^10 || ^11"
  2340. }
  2341. }
  2342. },
  2343. "notification-url": "https://packages.drupal.org/8/downloads",
  2344. "license": [
  2345. "GPL-2.0-or-later"
  2346. ],
  2347. "authors": [
  2348. {
  2349. "name": "Berdir",
  2350. "homepage": "https://www.drupal.org/user/214652"
  2351. },
  2352. {
  2353. "name": "Frans",
  2354. "homepage": "https://www.drupal.org/user/514222"
  2355. },
  2356. {
  2357. "name": "jeroen.b",
  2358. "homepage": "https://www.drupal.org/user/1853532"
  2359. },
  2360. {
  2361. "name": "miro_dietiker",
  2362. "homepage": "https://www.drupal.org/user/227761"
  2363. }
  2364. ],
  2365. "description": "Entity Reference Revisions",
  2366. "homepage": "https://www.drupal.org/project/entity_reference_revisions",
  2367. "support": {
  2368. "source": "https://git.drupalcode.org/project/entity_reference_revisions"
  2369. }
  2370. },
  2371. {
  2372. "name": "drupal/field_group",
  2373. "version": "3.4.0",
  2374. "source": {
  2375. "type": "git",
  2376. "url": "https://git.drupalcode.org/project/field_group.git",
  2377. "reference": "8.x-3.4"
  2378. },
  2379. "dist": {
  2380. "type": "zip",
  2381. "url": "https://ftp.drupal.org/files/projects/field_group-8.x-3.4.zip",
  2382. "reference": "8.x-3.4",
  2383. "shasum": "80b937e1a11f8b29c69d853fc4bf798c057c6f94"
  2384. },
  2385. "require": {
  2386. "drupal/core": "^9.2 || ^10"
  2387. },
  2388. "type": "drupal-module",
  2389. "extra": {
  2390. "drupal": {
  2391. "version": "8.x-3.4",
  2392. "datestamp": "1667241979",
  2393. "security-coverage": {
  2394. "status": "covered",
  2395. "message": "Covered by Drupal's security advisory policy"
  2396. }
  2397. }
  2398. },
  2399. "notification-url": "https://packages.drupal.org/8/downloads",
  2400. "license": [
  2401. "GPL-2.0-or-later"
  2402. ],
  2403. "authors": [
  2404. {
  2405. "name": "Anybody",
  2406. "homepage": "https://www.drupal.org/user/291091"
  2407. },
  2408. {
  2409. "name": "Hydra",
  2410. "homepage": "https://www.drupal.org/user/647364"
  2411. },
  2412. {
  2413. "name": "jyve",
  2414. "homepage": "https://www.drupal.org/user/591438"
  2415. },
  2416. {
  2417. "name": "nils.destoop",
  2418. "homepage": "https://www.drupal.org/user/361625"
  2419. },
  2420. {
  2421. "name": "Stalski",
  2422. "homepage": "https://www.drupal.org/user/322618"
  2423. },
  2424. {
  2425. "name": "swentel",
  2426. "homepage": "https://www.drupal.org/user/107403"
  2427. }
  2428. ],
  2429. "description": "Provides the field_group module.",
  2430. "homepage": "https://www.drupal.org/project/field_group",
  2431. "support": {
  2432. "source": "https://git.drupalcode.org/project/field_group",
  2433. "issues": "https://www.drupal.org/project/issues/field_group"
  2434. }
  2435. },
  2436. {
  2437. "name": "drupal/field_pager",
  2438. "version": "2.0.0-beta2",
  2439. "source": {
  2440. "type": "git",
  2441. "url": "https://git.drupalcode.org/project/field_pager.git",
  2442. "reference": "2.0.0-beta2"
  2443. },
  2444. "dist": {
  2445. "type": "zip",
  2446. "url": "https://ftp.drupal.org/files/projects/field_pager-2.0.0-beta2.zip",
  2447. "reference": "2.0.0-beta2",
  2448. "shasum": "33a7589e908c5b86b928e8e0e4bb562d7337dc15"
  2449. },
  2450. "require": {
  2451. "drupal/core": "^8 || ^9 || ^10"
  2452. },
  2453. "type": "drupal-module",
  2454. "extra": {
  2455. "drupal": {
  2456. "version": "2.0.0-beta2",
  2457. "datestamp": "1678960516",
  2458. "security-coverage": {
  2459. "status": "not-covered",
  2460. "message": "Project has not opted into security advisory coverage!"
  2461. }
  2462. }
  2463. },
  2464. "notification-url": "https://packages.drupal.org/8/downloads",
  2465. "license": [
  2466. "GPL-2.0-or-later"
  2467. ],
  2468. "authors": [
  2469. {
  2470. "name": "NuWans",
  2471. "homepage": "https://www.drupal.org/user/3250178"
  2472. }
  2473. ],
  2474. "description": "Field Pager (field_pager) To use fields as multiple pages",
  2475. "homepage": "https://www.drupal.org/project/field_pager",
  2476. "support": {
  2477. "source": "https://git.drupalcode.org/project/field_pager"
  2478. }
  2479. },
  2480. {
  2481. "name": "drupal/field_token_value",
  2482. "version": "3.0.2",
  2483. "source": {
  2484. "type": "git",
  2485. "url": "https://git.drupalcode.org/project/field_token_value.git",
  2486. "reference": "3.0.2"
  2487. },
  2488. "dist": {
  2489. "type": "zip",
  2490. "url": "https://ftp.drupal.org/files/projects/field_token_value-3.0.2.zip",
  2491. "reference": "3.0.2",
  2492. "shasum": "91ad476dd57a95086fa51fbc8fa0eb6a1b99f1ad"
  2493. },
  2494. "require": {
  2495. "drupal/core": "^8 || ^9 || ^10",
  2496. "drupal/token": "*"
  2497. },
  2498. "type": "drupal-module",
  2499. "extra": {
  2500. "drupal": {
  2501. "version": "3.0.2",
  2502. "datestamp": "1696584829",
  2503. "security-coverage": {
  2504. "status": "covered",
  2505. "message": "Covered by Drupal's security advisory policy"
  2506. }
  2507. }
  2508. },
  2509. "notification-url": "https://packages.drupal.org/8/downloads",
  2510. "license": [
  2511. "GPL-2.0-or-later"
  2512. ],
  2513. "authors": [
  2514. {
  2515. "name": "haydent",
  2516. "homepage": "https://www.drupal.org/user/2763191"
  2517. }
  2518. ],
  2519. "description": "Provides a field allowing the value to be set using a string containing tokens.",
  2520. "homepage": "https://www.drupal.org/project/field_token_value",
  2521. "support": {
  2522. "source": "https://git.drupalcode.org/project/field_token_value"
  2523. }
  2524. },
  2525. {
  2526. "name": "drupal/geolocation",
  2527. "version": "3.12.0",
  2528. "source": {
  2529. "type": "git",
  2530. "url": "https://git.drupalcode.org/project/geolocation.git",
  2531. "reference": "8.x-3.12"
  2532. },
  2533. "dist": {
  2534. "type": "zip",
  2535. "url": "https://ftp.drupal.org/files/projects/geolocation-8.x-3.12.zip",
  2536. "reference": "8.x-3.12",
  2537. "shasum": "eb31fe9080e2e0dcf442fc9b0a859f326219db5a"
  2538. },
  2539. "require": {
  2540. "drupal/core": "^9.3 || ^10",
  2541. "drupal/jquery_ui": "*",
  2542. "drupal/jquery_ui_autocomplete": "^2.0",
  2543. "php": "^7.3 || ^8.0"
  2544. },
  2545. "require-dev": {
  2546. "drupal/address": "*",
  2547. "drupal/geofield": "*",
  2548. "drupal/geolocation_demo": "*",
  2549. "drupal/geolocation_geometry": "*",
  2550. "drupal/geolocation_geometry_data": "*",
  2551. "drupal/geolocation_google_maps": "*",
  2552. "drupal/geolocation_google_maps_demo": "*",
  2553. "drupal/geolocation_google_static_maps": "*",
  2554. "drupal/geolocation_leaflet": "*",
  2555. "drupal/geolocation_leaflet_demo": "*",
  2556. "drupal/search_api": "*",
  2557. "drupal/search_api_location": "*",
  2558. "drupal/search_api_location_views": "*"
  2559. },
  2560. "type": "drupal-module",
  2561. "extra": {
  2562. "drupal": {
  2563. "version": "8.x-3.12",
  2564. "datestamp": "1673282362",
  2565. "security-coverage": {
  2566. "status": "covered",
  2567. "message": "Covered by Drupal's security advisory policy"
  2568. }
  2569. }
  2570. },
  2571. "notification-url": "https://packages.drupal.org/8/downloads",
  2572. "license": [
  2573. "GPL-2.0-or-later"
  2574. ],
  2575. "authors": [
  2576. {
  2577. "name": "derjochenmeyer",
  2578. "homepage": "https://www.drupal.org/u/derjochenmeyer"
  2579. },
  2580. {
  2581. "name": "cadamski",
  2582. "homepage": "https://www.drupal.org/u/cadamski"
  2583. }
  2584. ],
  2585. "description": "Provides a simple geolocation Drupal field type to store and display location data (lat, lng).",
  2586. "homepage": "https://www.drupal.org/project/geolocation",
  2587. "support": {
  2588. "source": "https://git.drupal.org/project/geolocation.git",
  2589. "issues": "https://www.drupal.org/project/issues/geolocation"
  2590. }
  2591. },
  2592. {
  2593. "name": "drupal/jquery_ui",
  2594. "version": "1.6.0",
  2595. "source": {
  2596. "type": "git",
  2597. "url": "https://git.drupalcode.org/project/jquery_ui.git",
  2598. "reference": "8.x-1.6"
  2599. },
  2600. "dist": {
  2601. "type": "zip",
  2602. "url": "https://ftp.drupal.org/files/projects/jquery_ui-8.x-1.6.zip",
  2603. "reference": "8.x-1.6",
  2604. "shasum": "0ddccdcf35a066de1843e1d9670677ee1a2faac0"
  2605. },
  2606. "require": {
  2607. "drupal/core": "^9.2 || ^10"
  2608. },
  2609. "type": "drupal-module",
  2610. "extra": {
  2611. "drupal": {
  2612. "version": "8.x-1.6",
  2613. "datestamp": "1668521197",
  2614. "security-coverage": {
  2615. "status": "covered",
  2616. "message": "Covered by Drupal's security advisory policy"
  2617. }
  2618. }
  2619. },
  2620. "notification-url": "https://packages.drupal.org/8/downloads",
  2621. "license": [
  2622. "GPL-2.0-or-later"
  2623. ],
  2624. "authors": [
  2625. {
  2626. "name": "bnjmnm",
  2627. "homepage": "https://www.drupal.org/user/2369194"
  2628. },
  2629. {
  2630. "name": "jjeff",
  2631. "homepage": "https://www.drupal.org/user/17190"
  2632. },
  2633. {
  2634. "name": "lauriii",
  2635. "homepage": "https://www.drupal.org/user/1078742"
  2636. },
  2637. {
  2638. "name": "litwol",
  2639. "homepage": "https://www.drupal.org/user/78134"
  2640. },
  2641. {
  2642. "name": "mfb",
  2643. "homepage": "https://www.drupal.org/user/12302"
  2644. },
  2645. {
  2646. "name": "mfer",
  2647. "homepage": "https://www.drupal.org/user/25701"
  2648. },
  2649. {
  2650. "name": "mikelutz",
  2651. "homepage": "https://www.drupal.org/user/2972409"
  2652. },
  2653. {
  2654. "name": "nod_",
  2655. "homepage": "https://www.drupal.org/user/598310"
  2656. },
  2657. {
  2658. "name": "phenaproxima",
  2659. "homepage": "https://www.drupal.org/user/205645"
  2660. },
  2661. {
  2662. "name": "RobLoach",
  2663. "homepage": "https://www.drupal.org/user/61114"
  2664. },
  2665. {
  2666. "name": "sun",
  2667. "homepage": "https://www.drupal.org/user/54136"
  2668. },
  2669. {
  2670. "name": "webchick",
  2671. "homepage": "https://www.drupal.org/user/24967"
  2672. },
  2673. {
  2674. "name": "Wim Leers",
  2675. "homepage": "https://www.drupal.org/user/99777"
  2676. },
  2677. {
  2678. "name": "zrpnr",
  2679. "homepage": "https://www.drupal.org/user/1448368"
  2680. }
  2681. ],
  2682. "description": "Provides jQuery UI library.",
  2683. "homepage": "https://www.drupal.org/project/jquery_ui",
  2684. "support": {
  2685. "source": "https://git.drupalcode.org/project/jquery_ui"
  2686. }
  2687. },
  2688. {
  2689. "name": "drupal/jquery_ui_autocomplete",
  2690. "version": "2.0.0",
  2691. "source": {
  2692. "type": "git",
  2693. "url": "https://git.drupalcode.org/project/jquery_ui_autocomplete.git",
  2694. "reference": "2.0.0"
  2695. },
  2696. "dist": {
  2697. "type": "zip",
  2698. "url": "https://ftp.drupal.org/files/projects/jquery_ui_autocomplete-2.0.0.zip",
  2699. "reference": "2.0.0",
  2700. "shasum": "927d312a74002f99e1c971d3d268be1b0a532fc7"
  2701. },
  2702. "require": {
  2703. "drupal/core": "^9.2 || ^10",
  2704. "drupal/jquery_ui": "^1.6",
  2705. "drupal/jquery_ui_menu": "^2"
  2706. },
  2707. "type": "drupal-module",
  2708. "extra": {
  2709. "drupal": {
  2710. "version": "2.0.0",
  2711. "datestamp": "1670871461",
  2712. "security-coverage": {
  2713. "status": "covered",
  2714. "message": "Covered by Drupal's security advisory policy"
  2715. }
  2716. }
  2717. },
  2718. "notification-url": "https://packages.drupal.org/8/downloads",
  2719. "license": [
  2720. "GPL-2.0-or-later"
  2721. ],
  2722. "authors": [
  2723. {
  2724. "name": "bnjmnm",
  2725. "homepage": "https://www.drupal.org/user/2369194"
  2726. },
  2727. {
  2728. "name": "lauriii",
  2729. "homepage": "https://www.drupal.org/user/1078742"
  2730. },
  2731. {
  2732. "name": "nod_",
  2733. "homepage": "https://www.drupal.org/user/598310"
  2734. },
  2735. {
  2736. "name": "phenaproxima",
  2737. "homepage": "https://www.drupal.org/user/205645"
  2738. },
  2739. {
  2740. "name": "Wim Leers",
  2741. "homepage": "https://www.drupal.org/user/99777"
  2742. },
  2743. {
  2744. "name": "zrpnr",
  2745. "homepage": "https://www.drupal.org/user/1448368"
  2746. }
  2747. ],
  2748. "description": "Provides jQuery UI Autocomplete library.",
  2749. "homepage": "https://www.drupal.org/project/jquery_ui_autocomplete",
  2750. "support": {
  2751. "source": "https://git.drupalcode.org/project/jquery_ui_autocomplete"
  2752. }
  2753. },
  2754. {
  2755. "name": "drupal/jquery_ui_draggable",
  2756. "version": "2.0.0",
  2757. "source": {
  2758. "type": "git",
  2759. "url": "https://git.drupalcode.org/project/jquery_ui_draggable.git",
  2760. "reference": "2.0.0"
  2761. },
  2762. "dist": {
  2763. "type": "zip",
  2764. "url": "https://ftp.drupal.org/files/projects/jquery_ui_draggable-2.0.0.zip",
  2765. "reference": "2.0.0",
  2766. "shasum": "13a8f4bf037449cd176ddb967fc9cba9a466a705"
  2767. },
  2768. "require": {
  2769. "drupal/core": "^9.2 || ^10",
  2770. "drupal/jquery_ui": "^1.6"
  2771. },
  2772. "type": "drupal-module",
  2773. "extra": {
  2774. "drupal": {
  2775. "version": "2.0.0",
  2776. "datestamp": "1670871516",
  2777. "security-coverage": {
  2778. "status": "covered",
  2779. "message": "Covered by Drupal's security advisory policy"
  2780. }
  2781. }
  2782. },
  2783. "notification-url": "https://packages.drupal.org/8/downloads",
  2784. "license": [
  2785. "GPL-2.0-or-later"
  2786. ],
  2787. "authors": [
  2788. {
  2789. "name": "bnjmnm",
  2790. "homepage": "https://www.drupal.org/user/2369194"
  2791. },
  2792. {
  2793. "name": "lauriii",
  2794. "homepage": "https://www.drupal.org/user/1078742"
  2795. },
  2796. {
  2797. "name": "zrpnr",
  2798. "homepage": "https://www.drupal.org/user/1448368"
  2799. }
  2800. ],
  2801. "description": "Provides jQuery UI Draggable library.",
  2802. "homepage": "https://www.drupal.org/project/jquery_ui_draggable",
  2803. "support": {
  2804. "source": "https://git.drupalcode.org/project/jquery_ui_draggable"
  2805. }
  2806. },
  2807. {
  2808. "name": "drupal/jquery_ui_droppable",
  2809. "version": "2.0.0",
  2810. "source": {
  2811. "type": "git",
  2812. "url": "https://git.drupalcode.org/project/jquery_ui_droppable.git",
  2813. "reference": "2.0.0"
  2814. },
  2815. "dist": {
  2816. "type": "zip",
  2817. "url": "https://ftp.drupal.org/files/projects/jquery_ui_droppable-2.0.0.zip",
  2818. "reference": "2.0.0",
  2819. "shasum": "758f52e68b04e74f1a96240b22090fcae1945898"
  2820. },
  2821. "require": {
  2822. "drupal/core": "^9.2 || ^10",
  2823. "drupal/jquery_ui": "^1.6",
  2824. "drupal/jquery_ui_draggable": "^2"
  2825. },
  2826. "type": "drupal-module",
  2827. "extra": {
  2828. "drupal": {
  2829. "version": "2.0.0",
  2830. "datestamp": "1670871520",
  2831. "security-coverage": {
  2832. "status": "covered",
  2833. "message": "Covered by Drupal's security advisory policy"
  2834. }
  2835. }
  2836. },
  2837. "notification-url": "https://packages.drupal.org/8/downloads",
  2838. "license": [
  2839. "GPL-2.0-or-later"
  2840. ],
  2841. "authors": [
  2842. {
  2843. "name": "bnjmnm",
  2844. "homepage": "https://www.drupal.org/user/2369194"
  2845. },
  2846. {
  2847. "name": "lauriii",
  2848. "homepage": "https://www.drupal.org/user/1078742"
  2849. },
  2850. {
  2851. "name": "zrpnr",
  2852. "homepage": "https://www.drupal.org/user/1448368"
  2853. }
  2854. ],
  2855. "description": "Provides jQuery UI Droppable library.",
  2856. "homepage": "https://www.drupal.org/project/jquery_ui_droppable",
  2857. "support": {
  2858. "source": "https://git.drupalcode.org/project/jquery_ui_droppable"
  2859. }
  2860. },
  2861. {
  2862. "name": "drupal/jquery_ui_menu",
  2863. "version": "2.0.0",
  2864. "source": {
  2865. "type": "git",
  2866. "url": "https://git.drupalcode.org/project/jquery_ui_menu.git",
  2867. "reference": "2.0.0"
  2868. },
  2869. "dist": {
  2870. "type": "zip",
  2871. "url": "https://ftp.drupal.org/files/projects/jquery_ui_menu-2.0.0.zip",
  2872. "reference": "2.0.0",
  2873. "shasum": "5e1b56bf457669c7779a81784f49da63e3956854"
  2874. },
  2875. "require": {
  2876. "drupal/core": "^9.2 || ^10",
  2877. "drupal/jquery_ui": "^1.6"
  2878. },
  2879. "type": "drupal-module",
  2880. "extra": {
  2881. "drupal": {
  2882. "version": "2.0.0",
  2883. "datestamp": "1670871546",
  2884. "security-coverage": {
  2885. "status": "covered",
  2886. "message": "Covered by Drupal's security advisory policy"
  2887. }
  2888. }
  2889. },
  2890. "notification-url": "https://packages.drupal.org/8/downloads",
  2891. "license": [
  2892. "GPL-2.0-or-later"
  2893. ],
  2894. "authors": [
  2895. {
  2896. "name": "bnjmnm",
  2897. "homepage": "https://www.drupal.org/user/2369194"
  2898. },
  2899. {
  2900. "name": "lauriii",
  2901. "homepage": "https://www.drupal.org/user/1078742"
  2902. },
  2903. {
  2904. "name": "nod_",
  2905. "homepage": "https://www.drupal.org/user/598310"
  2906. },
  2907. {
  2908. "name": "phenaproxima",
  2909. "homepage": "https://www.drupal.org/user/205645"
  2910. },
  2911. {
  2912. "name": "Wim Leers",
  2913. "homepage": "https://www.drupal.org/user/99777"
  2914. },
  2915. {
  2916. "name": "zrpnr",
  2917. "homepage": "https://www.drupal.org/user/1448368"
  2918. }
  2919. ],
  2920. "description": "Provides jQuery UI Menu library.",
  2921. "homepage": "https://www.drupal.org/project/jquery_ui_menu",
  2922. "support": {
  2923. "source": "https://git.drupalcode.org/project/jquery_ui_menu"
  2924. }
  2925. },
  2926. {
  2927. "name": "drupal/linked_field",
  2928. "version": "1.5.0",
  2929. "source": {
  2930. "type": "git",
  2931. "url": "https://git.drupalcode.org/project/linked_field.git",
  2932. "reference": "8.x-1.5"
  2933. },
  2934. "dist": {
  2935. "type": "zip",
  2936. "url": "https://ftp.drupal.org/files/projects/linked_field-8.x-1.5.zip",
  2937. "reference": "8.x-1.5",
  2938. "shasum": "31ed8008d2f88c693334f6faad03112280820fe0"
  2939. },
  2940. "require": {
  2941. "drupal/core": "^8.8 || ^9 || ^10"
  2942. },
  2943. "type": "drupal-module",
  2944. "extra": {
  2945. "drupal": {
  2946. "version": "8.x-1.5",
  2947. "datestamp": "1677239525",
  2948. "security-coverage": {
  2949. "status": "covered",
  2950. "message": "Covered by Drupal's security advisory policy"
  2951. }
  2952. }
  2953. },
  2954. "notification-url": "https://packages.drupal.org/8/downloads",
  2955. "license": [
  2956. "GPL-2.0-or-later"
  2957. ],
  2958. "authors": [
  2959. {
  2960. "name": "jcnventura",
  2961. "homepage": "https://www.drupal.org/user/122464"
  2962. },
  2963. {
  2964. "name": "yannickoo",
  2965. "homepage": "https://www.drupal.org/user/531118"
  2966. }
  2967. ],
  2968. "description": "Adds the functionality to link fields to a specific destination.",
  2969. "homepage": "https://www.drupal.org/project/linked_field",
  2970. "support": {
  2971. "source": "https://git.drupalcode.org/project/linked_field"
  2972. }
  2973. },
  2974. {
  2975. "name": "drupal/linkit",
  2976. "version": "6.1.2",
  2977. "source": {
  2978. "type": "git",
  2979. "url": "https://git.drupalcode.org/project/linkit.git",
  2980. "reference": "6.1.2"
  2981. },
  2982. "dist": {
  2983. "type": "zip",
  2984. "url": "https://ftp.drupal.org/files/projects/linkit-6.1.2.zip",
  2985. "reference": "6.1.2",
  2986. "shasum": "63fb311d2b78df81a9a588330429b640ec7da0e8"
  2987. },
  2988. "require": {
  2989. "drupal/core": "^10.1"
  2990. },
  2991. "require-dev": {
  2992. "drupal/ckeditor": "*",
  2993. "drupal/imce": "*"
  2994. },
  2995. "type": "drupal-module",
  2996. "extra": {
  2997. "drupal": {
  2998. "version": "6.1.2",
  2999. "datestamp": "1696865478",
  3000. "security-coverage": {
  3001. "status": "covered",
  3002. "message": "Covered by Drupal's security advisory policy"
  3003. }
  3004. }
  3005. },
  3006. "notification-url": "https://packages.drupal.org/8/downloads",
  3007. "license": [
  3008. "GPL-2.0-or-later"
  3009. ],
  3010. "authors": [
  3011. {
  3012. "name": "Emil Stjerneman",
  3013. "homepage": "https://stjerneman.com",
  3014. "email": "emil@stjerneman.com",
  3015. "role": "Maintainer"
  3016. },
  3017. {
  3018. "name": "johnwebdev",
  3019. "homepage": "https://www.drupal.org/user/3331569"
  3020. },
  3021. {
  3022. "name": "mark_fullmer",
  3023. "homepage": "https://www.drupal.org/user/2612816"
  3024. }
  3025. ],
  3026. "description": "Linkit - Enriched linking experience",
  3027. "homepage": "http://drupal.org/project/linkit",
  3028. "support": {
  3029. "source": "http://cgit.drupalcode.org/linkit",
  3030. "issues": "http://drupal.org/project/linkit"
  3031. }
  3032. },
  3033. {
  3034. "name": "drupal/masonry",
  3035. "version": "4.0.0",
  3036. "source": {
  3037. "type": "git",
  3038. "url": "https://git.drupalcode.org/project/masonry.git",
  3039. "reference": "4.0.0"
  3040. },
  3041. "dist": {
  3042. "type": "zip",
  3043. "url": "https://ftp.drupal.org/files/projects/masonry-4.0.0.zip",
  3044. "reference": "4.0.0",
  3045. "shasum": "5062350d5f68d84077a393ce5b8cdc11ff66d0cd"
  3046. },
  3047. "require": {
  3048. "drupal/core": "^8 || ^9 || ^10"
  3049. },
  3050. "type": "drupal-module",
  3051. "extra": {
  3052. "drupal": {
  3053. "version": "4.0.0",
  3054. "datestamp": "1690017720",
  3055. "security-coverage": {
  3056. "status": "covered",
  3057. "message": "Covered by Drupal's security advisory policy"
  3058. }
  3059. }
  3060. },
  3061. "notification-url": "https://packages.drupal.org/8/downloads",
  3062. "license": [
  3063. "GPL-2.0-or-later"
  3064. ],
  3065. "authors": [
  3066. {
  3067. "name": "Dominique Clause (Dom.)",
  3068. "homepage": "https://www.drupal.org/u/dom",
  3069. "role": "Maintainer"
  3070. },
  3071. {
  3072. "name": "Dom.",
  3073. "homepage": "https://www.drupal.org/user/801982"
  3074. }
  3075. ],
  3076. "description": "Masonry integrates with Masonry library",
  3077. "homepage": "https://www.drupal.org/project/masonry",
  3078. "support": {
  3079. "source": "https://git.drupalcode.org/project/masonry",
  3080. "issues": "https://www.drupal.org/project/issues/masonry?version=8.x"
  3081. }
  3082. },
  3083. {
  3084. "name": "drupal/matomo",
  3085. "version": "1.23.0",
  3086. "source": {
  3087. "type": "git",
  3088. "url": "https://git.drupalcode.org/project/matomo.git",
  3089. "reference": "8.x-1.23"
  3090. },
  3091. "dist": {
  3092. "type": "zip",
  3093. "url": "https://ftp.drupal.org/files/projects/matomo-8.x-1.23.zip",
  3094. "reference": "8.x-1.23",
  3095. "shasum": "c2dbf12878388c5859e64f1e74a9ca5110d1623f"
  3096. },
  3097. "require": {
  3098. "drupal/core": "^9.0 || ^10"
  3099. },
  3100. "conflict": {
  3101. "drupal/csp": "<1.12"
  3102. },
  3103. "require-dev": {
  3104. "drupal/csp": "~1.12",
  3105. "drupal/php": "~1.1",
  3106. "drupal/token": "~1.9"
  3107. },
  3108. "type": "drupal-module",
  3109. "extra": {
  3110. "drupal": {
  3111. "version": "8.x-1.23",
  3112. "datestamp": "1700936102",
  3113. "security-coverage": {
  3114. "status": "covered",
  3115. "message": "Covered by Drupal's security advisory policy"
  3116. }
  3117. }
  3118. },
  3119. "notification-url": "https://packages.drupal.org/8/downloads",
  3120. "license": [
  3121. "GPL-2.0-or-later"
  3122. ],
  3123. "authors": [
  3124. {
  3125. "name": "C-Logemann",
  3126. "homepage": "https://www.drupal.org/user/218368"
  3127. },
  3128. {
  3129. "name": "Grimreaper",
  3130. "homepage": "https://www.drupal.org/user/2388214"
  3131. },
  3132. {
  3133. "name": "hass",
  3134. "homepage": "https://www.drupal.org/user/85918"
  3135. },
  3136. {
  3137. "name": "shelane",
  3138. "homepage": "https://www.drupal.org/user/2674989"
  3139. }
  3140. ],
  3141. "description": "Adds Matomo javascript tracking code to all your site's pages.",
  3142. "homepage": "https://www.drupal.org/project/matomo",
  3143. "support": {
  3144. "source": "https://git.drupalcode.org/project/matomo"
  3145. }
  3146. },
  3147. {
  3148. "name": "drupal/mediteran",
  3149. "version": "1.32.0",
  3150. "source": {
  3151. "type": "git",
  3152. "url": "https://git.drupalcode.org/project/mediteran.git",
  3153. "reference": "8.x-1.32"
  3154. },
  3155. "dist": {
  3156. "type": "zip",
  3157. "url": "https://ftp.drupal.org/files/projects/mediteran-8.x-1.32.zip",
  3158. "reference": "8.x-1.32",
  3159. "shasum": "85e0a94bf5f98626e1eb2c88f6b9467c1fdaf9ec"
  3160. },
  3161. "require": {
  3162. "drupal/core": "^9.2 || ^10"
  3163. },
  3164. "type": "drupal-theme",
  3165. "extra": {
  3166. "drupal": {
  3167. "version": "8.x-1.32",
  3168. "datestamp": "1699979844",
  3169. "security-coverage": {
  3170. "status": "covered",
  3171. "message": "Covered by Drupal's security advisory policy"
  3172. }
  3173. }
  3174. },
  3175. "notification-url": "https://packages.drupal.org/8/downloads",
  3176. "license": [
  3177. "GPL-2.0-or-later"
  3178. ],
  3179. "authors": [
  3180. {
  3181. "name": "bataboza",
  3182. "homepage": "https://www.drupal.org/user/3581173"
  3183. },
  3184. {
  3185. "name": "doxigo",
  3186. "homepage": "https://www.drupal.org/user/1331334"
  3187. },
  3188. {
  3189. "name": "dqd",
  3190. "homepage": "https://www.drupal.org/user/1001934"
  3191. },
  3192. {
  3193. "name": "Hosisam",
  3194. "homepage": "https://www.drupal.org/user/3449435"
  3195. },
  3196. {
  3197. "name": "Nitin shrivastava",
  3198. "homepage": "https://www.drupal.org/user/3725211"
  3199. },
  3200. {
  3201. "name": "paulrad",
  3202. "homepage": "https://www.drupal.org/user/3722439"
  3203. },
  3204. {
  3205. "name": "szeidler",
  3206. "homepage": "https://www.drupal.org/user/767652"
  3207. }
  3208. ],
  3209. "description": "Mediteran is a clean and simple administration theme designed by <a href=\"https://drupalation.com\" target=\"_blank\">Drupalation</a> and supported by <a href=\"https://ramsalt.com\" target=\"_blank\">Ramsalt</a>.",
  3210. "homepage": "https://www.drupal.org/project/mediteran",
  3211. "support": {
  3212. "source": "https://git.drupalcode.org/project/mediteran"
  3213. }
  3214. },
  3215. {
  3216. "name": "drupal/metatag",
  3217. "version": "1.26.0",
  3218. "source": {
  3219. "type": "git",
  3220. "url": "https://git.drupalcode.org/project/metatag.git",
  3221. "reference": "8.x-1.26"
  3222. },
  3223. "dist": {
  3224. "type": "zip",
  3225. "url": "https://ftp.drupal.org/files/projects/metatag-8.x-1.26.zip",
  3226. "reference": "8.x-1.26",
  3227. "shasum": "afa4a37422748baa2f0c35b13961438668ef3be8"
  3228. },
  3229. "require": {
  3230. "drupal/core": "^9.3 || ^10",
  3231. "drupal/token": "^1.0"
  3232. },
  3233. "require-dev": {
  3234. "drupal/devel": "^4.0 || ^5.0",
  3235. "drupal/hal": "^9 || ^1 || ^2",
  3236. "drupal/metatag_dc": "*",
  3237. "drupal/metatag_open_graph": "*",
  3238. "drupal/page_manager": "^4.0",
  3239. "drupal/panelizer": "^4.0",
  3240. "drupal/redirect": "^1.0",
  3241. "drupal/webprofiler": "^9 || ^10",
  3242. "mpyw/phpunit-patch-serializable-comparison": "*"
  3243. },
  3244. "type": "drupal-module",
  3245. "extra": {
  3246. "drupal": {
  3247. "version": "8.x-1.26",
  3248. "datestamp": "1687856123",
  3249. "security-coverage": {
  3250. "status": "covered",
  3251. "message": "Covered by Drupal's security advisory policy"
  3252. }
  3253. }
  3254. },
  3255. "notification-url": "https://packages.drupal.org/8/downloads",
  3256. "license": [
  3257. "GPL-2.0-or-later"
  3258. ],
  3259. "authors": [
  3260. {
  3261. "name": "See contributors",
  3262. "homepage": "https://www.drupal.org/node/640498/committers",
  3263. "role": "Developer"
  3264. },
  3265. {
  3266. "name": "Dave Reid",
  3267. "homepage": "https://www.drupal.org/user/53892"
  3268. }
  3269. ],
  3270. "description": "Manage meta tags for all entities.",
  3271. "homepage": "https://www.drupal.org/project/metatag",
  3272. "keywords": [
  3273. "Drupal",
  3274. "seo"
  3275. ],
  3276. "support": {
  3277. "source": "https://git.drupalcode.org/project/metatag",
  3278. "issues": "https://www.drupal.org/project/issues/metatag",
  3279. "docs": "https://www.drupal.org/docs/8/modules/metatag"
  3280. }
  3281. },
  3282. {
  3283. "name": "drupal/page_manager",
  3284. "version": "4.0.0-rc2",
  3285. "source": {
  3286. "type": "git",
  3287. "url": "https://git.drupalcode.org/project/page_manager.git",
  3288. "reference": "8.x-4.0-rc2"
  3289. },
  3290. "dist": {
  3291. "type": "zip",
  3292. "url": "https://ftp.drupal.org/files/projects/page_manager-8.x-4.0-rc2.zip",
  3293. "reference": "8.x-4.0-rc2",
  3294. "shasum": "4a1e96284c5775343fbb4612072a2abfc83ebc33"
  3295. },
  3296. "require": {
  3297. "drupal/core": "^9.3 || ^10",
  3298. "drupal/ctools": "^3.11 || ^4.0"
  3299. },
  3300. "type": "drupal-module",
  3301. "extra": {
  3302. "drupal": {
  3303. "version": "8.x-4.0-rc2",
  3304. "datestamp": "1671210021",
  3305. "security-coverage": {
  3306. "status": "not-covered",
  3307. "message": "RC releases are not covered by Drupal security advisories."
  3308. }
  3309. },
  3310. "branch-alias": {
  3311. "dev-8.x-4.x": "4.x-dev"
  3312. }
  3313. },
  3314. "notification-url": "https://packages.drupal.org/8/downloads",
  3315. "license": [
  3316. "GPL-2.0-or-later"
  3317. ],
  3318. "authors": [
  3319. {
  3320. "name": "Tim Plunkett",
  3321. "homepage": "https://www.drupal.org/u/tim.plunkett",
  3322. "role": "Maintainer"
  3323. },
  3324. {
  3325. "name": "EclipseGc",
  3326. "homepage": "https://www.drupal.org/user/61203"
  3327. },
  3328. {
  3329. "name": "ivnish",
  3330. "homepage": "https://www.drupal.org/user/3547706"
  3331. },
  3332. {
  3333. "name": "japerry",
  3334. "homepage": "https://www.drupal.org/user/45640"
  3335. },
  3336. {
  3337. "name": "joelpittet",
  3338. "homepage": "https://www.drupal.org/user/160302"
  3339. },
  3340. {
  3341. "name": "manuel.adan",
  3342. "homepage": "https://www.drupal.org/user/516420"
  3343. },
  3344. {
  3345. "name": "phenaproxima",
  3346. "homepage": "https://www.drupal.org/user/205645"
  3347. }
  3348. ],
  3349. "description": "Provides a way to place blocks on a custom page.",
  3350. "homepage": "https://www.drupal.org/project/page_manager",
  3351. "support": {
  3352. "source": "https://git.drupal.org/project/page_manager.git",
  3353. "issues": "https://www.drupal.org/project/issues/page_manager",
  3354. "irc": "irc://irc.freenode.org/drupal-contribute"
  3355. }
  3356. },
  3357. {
  3358. "name": "drupal/panels",
  3359. "version": "dev-4.x",
  3360. "source": {
  3361. "type": "git",
  3362. "url": "https://git.drupalcode.org/project/panels.git",
  3363. "reference": "4dfd6a07adac69525832b94f6745ac3247a6cd92"
  3364. },
  3365. "require": {
  3366. "drupal/core": "^9.2 || ^10",
  3367. "drupal/ctools": "^3.12 || ^4.0",
  3368. "drupal/jquery_ui_droppable": "^1.0 || ^2.0"
  3369. },
  3370. "require-dev": {
  3371. "drupal/jquery_ui_droppable": "*",
  3372. "drupal/page_manager": "^4"
  3373. },
  3374. "type": "drupal-module",
  3375. "extra": {
  3376. "branch-alias": {
  3377. "dev-4.x": "4.x-dev",
  3378. "dev-8.x-4.x": "4.x-dev"
  3379. },
  3380. "drupal": {
  3381. "version": "8.x-4.7+5-dev",
  3382. "datestamp": "1693457160",
  3383. "security-coverage": {
  3384. "status": "not-covered",
  3385. "message": "Dev releases are not covered by Drupal security advisories."
  3386. }
  3387. }
  3388. },
  3389. "notification-url": "https://packages.drupal.org/8/downloads",
  3390. "license": [
  3391. "GPL-2.0+"
  3392. ],
  3393. "authors": [
  3394. {
  3395. "name": "Jakob Perry",
  3396. "homepage": "https://www.drupal.org/u/japerry"
  3397. },
  3398. {
  3399. "name": "Samuel Mortenson",
  3400. "homepage": "https://www.drupal.org/u/samuel.mortenson"
  3401. },
  3402. {
  3403. "name": "See other contributors",
  3404. "homepage": "https://www.drupal.org/node/74958/committers"
  3405. },
  3406. {
  3407. "name": "joelpittet",
  3408. "homepage": "https://www.drupal.org/user/160302"
  3409. },
  3410. {
  3411. "name": "Letharion",
  3412. "homepage": "https://www.drupal.org/user/373603"
  3413. },
  3414. {
  3415. "name": "merlinofchaos",
  3416. "homepage": "https://www.drupal.org/user/26979"
  3417. },
  3418. {
  3419. "name": "neclimdul",
  3420. "homepage": "https://www.drupal.org/user/48673"
  3421. },
  3422. {
  3423. "name": "phenaproxima",
  3424. "homepage": "https://www.drupal.org/user/205645"
  3425. },
  3426. {
  3427. "name": "samuel.mortenson",
  3428. "homepage": "https://www.drupal.org/user/2582268"
  3429. }
  3430. ],
  3431. "description": "Core Panels display functions; provides no external UI, at least one other Panels module should be enabled.",
  3432. "homepage": "https://www.drupal.org/project/panels",
  3433. "support": {
  3434. "source": "http://git.drupal.org/project/panels.git",
  3435. "issues": "https://www.drupal.org/project/issues/panels",
  3436. "irc": "irc://irc.freenode.org/drupal-scotch"
  3437. }
  3438. },
  3439. {
  3440. "name": "drupal/paragraphs",
  3441. "version": "1.17.0",
  3442. "source": {
  3443. "type": "git",
  3444. "url": "https://git.drupalcode.org/project/paragraphs.git",
  3445. "reference": "8.x-1.17"
  3446. },
  3447. "dist": {
  3448. "type": "zip",
  3449. "url": "https://ftp.drupal.org/files/projects/paragraphs-8.x-1.17.zip",
  3450. "reference": "8.x-1.17",
  3451. "shasum": "81c05f6a1eb59ab957c9ac97b2e79d6c9837bd72"
  3452. },
  3453. "require": {
  3454. "drupal/core": "^9.3 || ^10",
  3455. "drupal/entity_reference_revisions": "~1.3"
  3456. },
  3457. "require-dev": {
  3458. "drupal/block_field": "1.x-dev",
  3459. "drupal/diff": "1.x-dev",
  3460. "drupal/entity_browser": "2.x-dev",
  3461. "drupal/entity_usage": "2.x-dev",
  3462. "drupal/field_group": "3.x-dev",
  3463. "drupal/inline_entity_form": "1.x-dev",
  3464. "drupal/paragraphs-paragraphs_library": "*",
  3465. "drupal/replicate": "1.x-dev",
  3466. "drupal/search_api": "^1",
  3467. "drupal/search_api_db": "*"
  3468. },
  3469. "suggest": {
  3470. "drupal/entity_browser": "Recommended for an improved user experience when using the Paragraphs library module"
  3471. },
  3472. "type": "drupal-module",
  3473. "extra": {
  3474. "drupal": {
  3475. "version": "8.x-1.17",
  3476. "datestamp": "1705234146",
  3477. "security-coverage": {
  3478. "status": "covered",
  3479. "message": "Covered by Drupal's security advisory policy"
  3480. }
  3481. }
  3482. },
  3483. "notification-url": "https://packages.drupal.org/8/downloads",
  3484. "license": [
  3485. "GPL-2.0-or-later"
  3486. ],
  3487. "authors": [
  3488. {
  3489. "name": "Berdir",
  3490. "homepage": "https://www.drupal.org/user/214652"
  3491. },
  3492. {
  3493. "name": "Frans",
  3494. "homepage": "https://www.drupal.org/user/514222"
  3495. },
  3496. {
  3497. "name": "jeroen.b",
  3498. "homepage": "https://www.drupal.org/user/1853532"
  3499. },
  3500. {
  3501. "name": "jstoller",
  3502. "homepage": "https://www.drupal.org/user/99012"
  3503. },
  3504. {
  3505. "name": "miro_dietiker",
  3506. "homepage": "https://www.drupal.org/user/227761"
  3507. },
  3508. {
  3509. "name": "Primsi",
  3510. "homepage": "https://www.drupal.org/user/282629"
  3511. }
  3512. ],
  3513. "description": "Enables the creation of Paragraphs entities.",
  3514. "homepage": "https://www.drupal.org/project/paragraphs",
  3515. "support": {
  3516. "source": "https://git.drupalcode.org/project/paragraphs"
  3517. }
  3518. },
  3519. {
  3520. "name": "drupal/pathauto",
  3521. "version": "1.12.0",
  3522. "source": {
  3523. "type": "git",
  3524. "url": "https://git.drupalcode.org/project/pathauto.git",
  3525. "reference": "8.x-1.12"
  3526. },
  3527. "dist": {
  3528. "type": "zip",
  3529. "url": "https://ftp.drupal.org/files/projects/pathauto-8.x-1.12.zip",
  3530. "reference": "8.x-1.12",
  3531. "shasum": "b7b6432e315e38e59a7c6cc117134326c580de4c"
  3532. },
  3533. "require": {
  3534. "drupal/core": "^9.3 || ^10",
  3535. "drupal/ctools": "*",
  3536. "drupal/token": "*"
  3537. },
  3538. "suggest": {
  3539. "drupal/redirect": "When installed Pathauto will provide a new \"Update Action\" in case your URLs change. This is the recommended update action and is considered the best practice for SEO and usability."
  3540. },
  3541. "type": "drupal-module",
  3542. "extra": {
  3543. "drupal": {
  3544. "version": "8.x-1.12",
  3545. "datestamp": "1696776683",
  3546. "security-coverage": {
  3547. "status": "covered",
  3548. "message": "Covered by Drupal's security advisory policy"
  3549. }
  3550. },
  3551. "drush": {
  3552. "services": {
  3553. "drush.services.yml": "^9 || ^10"
  3554. }
  3555. }
  3556. },
  3557. "notification-url": "https://packages.drupal.org/8/downloads",
  3558. "license": [
  3559. "GPL-2.0-or-later"
  3560. ],
  3561. "authors": [
  3562. {
  3563. "name": "Berdir",
  3564. "homepage": "https://www.drupal.org/user/214652"
  3565. },
  3566. {
  3567. "name": "Dave Reid",
  3568. "homepage": "https://www.drupal.org/user/53892"
  3569. },
  3570. {
  3571. "name": "Freso",
  3572. "homepage": "https://www.drupal.org/user/27504"
  3573. },
  3574. {
  3575. "name": "greggles",
  3576. "homepage": "https://www.drupal.org/user/36762"
  3577. }
  3578. ],
  3579. "description": "Provides a mechanism for modules to automatically generate aliases for the content they manage.",
  3580. "homepage": "https://www.drupal.org/project/pathauto",
  3581. "support": {
  3582. "source": "https://cgit.drupalcode.org/pathauto",
  3583. "issues": "https://www.drupal.org/project/issues/pathauto",
  3584. "documentation": "https://www.drupal.org/docs/8/modules/pathauto"
  3585. }
  3586. },
  3587. {
  3588. "name": "drupal/redirect",
  3589. "version": "1.9.0",
  3590. "source": {
  3591. "type": "git",
  3592. "url": "https://git.drupalcode.org/project/redirect.git",
  3593. "reference": "8.x-1.9"
  3594. },
  3595. "dist": {
  3596. "type": "zip",
  3597. "url": "https://ftp.drupal.org/files/projects/redirect-8.x-1.9.zip",
  3598. "reference": "8.x-1.9",
  3599. "shasum": "2987de20f509e9f7cec8a0f81d3a6774f9b0ba3e"
  3600. },
  3601. "require": {
  3602. "drupal/core": "^9.2 || ^10"
  3603. },
  3604. "type": "drupal-module",
  3605. "extra": {
  3606. "drupal": {
  3607. "version": "8.x-1.9",
  3608. "datestamp": "1693393506",
  3609. "security-coverage": {
  3610. "status": "covered",
  3611. "message": "Covered by Drupal's security advisory policy"
  3612. }
  3613. }
  3614. },
  3615. "notification-url": "https://packages.drupal.org/8/downloads",
  3616. "license": [
  3617. "GPL-2.0-or-later"
  3618. ],
  3619. "authors": [
  3620. {
  3621. "name": "Berdir",
  3622. "homepage": "https://www.drupal.org/user/214652"
  3623. },
  3624. {
  3625. "name": "Dave Reid",
  3626. "homepage": "https://www.drupal.org/user/53892"
  3627. },
  3628. {
  3629. "name": "Kristen Pol",
  3630. "homepage": "https://www.drupal.org/user/8389"
  3631. },
  3632. {
  3633. "name": "pifagor",
  3634. "homepage": "https://www.drupal.org/user/2375692"
  3635. }
  3636. ],
  3637. "description": "Allows users to redirect from old URLs to new URLs.",
  3638. "homepage": "https://www.drupal.org/project/redirect",
  3639. "support": {
  3640. "source": "https://git.drupalcode.org/project/redirect"
  3641. }
  3642. },
  3643. {
  3644. "name": "drupal/redirect_after_login",
  3645. "version": "2.8.0",
  3646. "source": {
  3647. "type": "git",
  3648. "url": "https://git.drupalcode.org/project/redirect_after_login.git",
  3649. "reference": "8.x-2.8"
  3650. },
  3651. "dist": {
  3652. "type": "zip",
  3653. "url": "https://ftp.drupal.org/files/projects/redirect_after_login-8.x-2.8.zip",
  3654. "reference": "8.x-2.8",
  3655. "shasum": "01781d0265c85a8ffa55842c34813daceba995e6"
  3656. },
  3657. "require": {
  3658. "drupal/core": "^9.3 || ^10"
  3659. },
  3660. "type": "drupal-module",
  3661. "extra": {
  3662. "drupal": {
  3663. "version": "8.x-2.8",
  3664. "datestamp": "1698918366",
  3665. "security-coverage": {
  3666. "status": "covered",
  3667. "message": "Covered by Drupal's security advisory policy"
  3668. }
  3669. }
  3670. },
  3671. "notification-url": "https://packages.drupal.org/8/downloads",
  3672. "license": [
  3673. "GPL-2.0-or-later"
  3674. ],
  3675. "authors": [
  3676. {
  3677. "name": "Shamsher Alam",
  3678. "homepage": "https://www.drupal.org/u/shamsher_alam",
  3679. "role": "Author"
  3680. },
  3681. {
  3682. "name": "prempatel2447",
  3683. "homepage": "https://www.drupal.org/user/3250112"
  3684. },
  3685. {
  3686. "name": "rahul-kr-sh",
  3687. "homepage": "https://www.drupal.org/user/3561577"
  3688. },
  3689. {
  3690. "name": "Shamsher_Alam",
  3691. "homepage": "https://www.drupal.org/user/2742027"
  3692. },
  3693. {
  3694. "name": "VladimirAus",
  3695. "homepage": "https://www.drupal.org/user/673120"
  3696. }
  3697. ],
  3698. "description": "Redirect user after login to a configured url",
  3699. "homepage": "https://drupal.org/project/redirect_after_login",
  3700. "support": {
  3701. "source": "https://git.drupalcode.org/project/redirect_after_login"
  3702. }
  3703. },
  3704. {
  3705. "name": "drupal/redis",
  3706. "version": "1.7.0",
  3707. "source": {
  3708. "type": "git",
  3709. "url": "https://git.drupalcode.org/project/redis.git",
  3710. "reference": "8.x-1.7"
  3711. },
  3712. "dist": {
  3713. "type": "zip",
  3714. "url": "https://ftp.drupal.org/files/projects/redis-8.x-1.7.zip",
  3715. "reference": "8.x-1.7",
  3716. "shasum": "602043bdad62ff047321121edcfde8abf3638c7c"
  3717. },
  3718. "require": {
  3719. "drupal/core": "^9.3 || ^10"
  3720. },
  3721. "suggest": {
  3722. "ext-redis": "Required to use the PhpRedis as redis driver (^4.0|^5.0).",
  3723. "ext-relay": "Required to use the Relay as Redis driver (^0.5|^1.0).",
  3724. "predis/predis": "Required to use the Predis as redis driver (^1.1|^2.0)."
  3725. },
  3726. "type": "drupal-module",
  3727. "extra": {
  3728. "drupal": {
  3729. "version": "8.x-1.7",
  3730. "datestamp": "1686175620",
  3731. "security-coverage": {
  3732. "status": "covered",
  3733. "message": "Covered by Drupal's security advisory policy"
  3734. }
  3735. }
  3736. },
  3737. "autoload": {
  3738. "psr-4": {
  3739. "Drupal\\redis\\": "src"
  3740. }
  3741. },
  3742. "notification-url": "https://packages.drupal.org/8/downloads",
  3743. "license": [
  3744. "GPL-2.0-or-later"
  3745. ],
  3746. "authors": [
  3747. {
  3748. "name": "Berdir",
  3749. "homepage": "https://www.drupal.org/user/214652"
  3750. },
  3751. {
  3752. "name": "greg.1.anderson",
  3753. "homepage": "https://www.drupal.org/user/438598"
  3754. },
  3755. {
  3756. "name": "kporras07",
  3757. "homepage": "https://www.drupal.org/user/1349780"
  3758. },
  3759. {
  3760. "name": "pounard",
  3761. "homepage": "https://www.drupal.org/user/240164"
  3762. }
  3763. ],
  3764. "description": "Integration of Drupal with the Redis key-value store.",
  3765. "homepage": "https://www.drupal.org/project/redis",
  3766. "support": {
  3767. "source": "https://git.drupalcode.org/project/redis"
  3768. }
  3769. },
  3770. {
  3771. "name": "drupal/schema_metatag",
  3772. "version": "2.5.0",
  3773. "source": {
  3774. "type": "git",
  3775. "url": "https://git.drupalcode.org/project/schema_metatag.git",
  3776. "reference": "8.x-2.5"
  3777. },
  3778. "dist": {
  3779. "type": "zip",
  3780. "url": "https://ftp.drupal.org/files/projects/schema_metatag-8.x-2.5.zip",
  3781. "reference": "8.x-2.5",
  3782. "shasum": "543b9d624711379e29dde58c22e2cc0a66822c87"
  3783. },
  3784. "require": {
  3785. "drupal/core": "^9.0 || ^10",
  3786. "drupal/metatag": "^1.0"
  3787. },
  3788. "require-dev": {
  3789. "drupal/coder": "^8.3",
  3790. "drupal/metatag_views": "*",
  3791. "drupal/schema_article": "*",
  3792. "drupal/schema_organization": "*",
  3793. "phpcompatibility/php-compatibility": "^9.3"
  3794. },
  3795. "type": "drupal-module",
  3796. "extra": {
  3797. "drupal": {
  3798. "version": "8.x-2.5",
  3799. "datestamp": "1687460392",
  3800. "security-coverage": {
  3801. "status": "covered",
  3802. "message": "Covered by Drupal's security advisory policy"
  3803. }
  3804. }
  3805. },
  3806. "notification-url": "https://packages.drupal.org/8/downloads",
  3807. "license": [
  3808. "GPL-2.0-or-later"
  3809. ],
  3810. "authors": [
  3811. {
  3812. "name": "DamienMcKenna",
  3813. "homepage": "https://www.drupal.org/user/108450"
  3814. },
  3815. {
  3816. "name": "KarenS",
  3817. "homepage": "https://www.drupal.org/user/45874"
  3818. },
  3819. {
  3820. "name": "wells",
  3821. "homepage": "https://www.drupal.org/user/2452278"
  3822. }
  3823. ],
  3824. "description": "Metatag implementation of Schema.org structured data (JSON-LD)",
  3825. "homepage": "https://www.drupal.org/project/schema_metatag",
  3826. "keywords": [
  3827. "Drupal"
  3828. ],
  3829. "support": {
  3830. "source": "https://git.drupalcode.org/project/schema_metatag",
  3831. "issues": "https://www.drupal.org/project/issues/schema_metatag"
  3832. }
  3833. },
  3834. {
  3835. "name": "drupal/search_api",
  3836. "version": "1.31.0",
  3837. "source": {
  3838. "type": "git",
  3839. "url": "https://git.drupalcode.org/project/search_api.git",
  3840. "reference": "8.x-1.31"
  3841. },
  3842. "dist": {
  3843. "type": "zip",
  3844. "url": "https://ftp.drupal.org/files/projects/search_api-8.x-1.31.zip",
  3845. "reference": "8.x-1.31",
  3846. "shasum": "ec8436744c34de2ede6370d4dd26875489e761bc"
  3847. },
  3848. "require": {
  3849. "drupal/core": "^10.0"
  3850. },
  3851. "conflict": {
  3852. "drupal/search_api_solr": "2.* || 3.0 || 3.1"
  3853. },
  3854. "require-dev": {
  3855. "drupal/language_fallback_fix": "@dev",
  3856. "drupal/search_api_autocomplete": "@dev",
  3857. "drupal/search_api_db": "*"
  3858. },
  3859. "suggest": {
  3860. "drupal/facets": "Adds the ability to create faceted searches.",
  3861. "drupal/search_api_autocomplete": "Allows adding autocomplete suggestions to search fields.",
  3862. "drupal/search_api_solr": "Adds support for using Apache Solr as a backend."
  3863. },
  3864. "type": "drupal-module",
  3865. "extra": {
  3866. "drupal": {
  3867. "version": "8.x-1.31",
  3868. "datestamp": "1700926323",
  3869. "security-coverage": {
  3870. "status": "covered",
  3871. "message": "Covered by Drupal's security advisory policy"
  3872. }
  3873. },
  3874. "drush": {
  3875. "services": {
  3876. "drush.services.yml": "^9 || ^10 || ^11"
  3877. }
  3878. }
  3879. },
  3880. "notification-url": "https://packages.drupal.org/8/downloads",
  3881. "license": [
  3882. "GPL-2.0-or-later"
  3883. ],
  3884. "authors": [
  3885. {
  3886. "name": "Thomas Seidl",
  3887. "homepage": "https://www.drupal.org/u/drunken-monkey"
  3888. },
  3889. {
  3890. "name": "Nick Veenhof",
  3891. "homepage": "https://www.drupal.org/u/nick_vh"
  3892. },
  3893. {
  3894. "name": "See other contributors",
  3895. "homepage": "https://www.drupal.org/node/790418/committers"
  3896. }
  3897. ],
  3898. "description": "Provides a generic framework for modules offering search capabilities.",
  3899. "homepage": "https://www.drupal.org/project/search_api",
  3900. "support": {
  3901. "source": "https://git.drupalcode.org/project/search_api",
  3902. "issues": "https://www.drupal.org/project/issues/search_api",
  3903. "irc": "irc://irc.freenode.org/drupal-search-api"
  3904. }
  3905. },
  3906. {
  3907. "name": "drupal/seven",
  3908. "version": "1.0.0",
  3909. "source": {
  3910. "type": "git",
  3911. "url": "https://git.drupalcode.org/project/seven.git",
  3912. "reference": "1.0.0"
  3913. },
  3914. "dist": {
  3915. "type": "zip",
  3916. "url": "https://ftp.drupal.org/files/projects/seven-1.0.0.zip",
  3917. "reference": "1.0.0",
  3918. "shasum": "88e86926388c7e6cf66b0502d13a0470ce2399cd"
  3919. },
  3920. "require": {
  3921. "drupal/core": "^9 || ^10"
  3922. },
  3923. "type": "drupal-theme",
  3924. "extra": {
  3925. "drupal": {
  3926. "version": "1.0.0",
  3927. "datestamp": "1683652106",
  3928. "security-coverage": {
  3929. "status": "covered",
  3930. "message": "Covered by Drupal's security advisory policy"
  3931. }
  3932. }
  3933. },
  3934. "notification-url": "https://packages.drupal.org/8/downloads",
  3935. "license": [
  3936. "GPL-2.0-or-later"
  3937. ],
  3938. "authors": [
  3939. {
  3940. "name": "bnjmnm",
  3941. "homepage": "https://www.drupal.org/user/2369194"
  3942. },
  3943. {
  3944. "name": "lauriii",
  3945. "homepage": "https://www.drupal.org/user/1078742"
  3946. },
  3947. {
  3948. "name": "mcrittenden",
  3949. "homepage": "https://www.drupal.org/user/420631"
  3950. },
  3951. {
  3952. "name": "mrfelton",
  3953. "homepage": "https://www.drupal.org/user/305669"
  3954. },
  3955. {
  3956. "name": "TravisCarden",
  3957. "homepage": "https://www.drupal.org/user/236758"
  3958. }
  3959. ],
  3960. "description": "The Seven theme from Drupal 8/9 moved to contrib",
  3961. "homepage": "https://www.drupal.org/project/seven",
  3962. "support": {
  3963. "source": "https://git.drupalcode.org/project/seven"
  3964. }
  3965. },
  3966. {
  3967. "name": "drupal/site_settings",
  3968. "version": "1.20.0",
  3969. "source": {
  3970. "type": "git",
  3971. "url": "https://git.drupalcode.org/project/site_settings.git",
  3972. "reference": "8.x-1.20"
  3973. },
  3974. "dist": {
  3975. "type": "zip",
  3976. "url": "https://ftp.drupal.org/files/projects/site_settings-8.x-1.20.zip",
  3977. "reference": "8.x-1.20",
  3978. "shasum": "b1e3b07437ef0ff7a907b7b6319f16db3942fb1c"
  3979. },
  3980. "require": {
  3981. "drupal/core": "^8 || ^9 || ^10"
  3982. },
  3983. "type": "drupal-module",
  3984. "extra": {
  3985. "drupal": {
  3986. "version": "8.x-1.20",
  3987. "datestamp": "1669790573",
  3988. "security-coverage": {
  3989. "status": "covered",
  3990. "message": "Covered by Drupal's security advisory policy"
  3991. }
  3992. }
  3993. },
  3994. "notification-url": "https://packages.drupal.org/8/downloads",
  3995. "license": [
  3996. "GPL-2.0+"
  3997. ],
  3998. "authors": [
  3999. {
  4000. "name": "bobi-mel",
  4001. "homepage": "https://www.drupal.org/user/3741631"
  4002. },
  4003. {
  4004. "name": "bohart",
  4005. "homepage": "https://www.drupal.org/user/289861"
  4006. },
  4007. {
  4008. "name": "scott_euser",
  4009. "homepage": "https://www.drupal.org/user/3267594"
  4010. }
  4011. ],
  4012. "description": "Provides a site settings entity",
  4013. "homepage": "https://www.drupal.org/project/site_settings",
  4014. "keywords": [
  4015. "Drupal"
  4016. ],
  4017. "support": {
  4018. "source": "http://cgit.drupalcode.org/site_settings",
  4019. "issues": "http://drupal.org/project/issues/site_settings"
  4020. }
  4021. },
  4022. {
  4023. "name": "drupal/structure_sync",
  4024. "version": "2.0.7",
  4025. "source": {
  4026. "type": "git",
  4027. "url": "https://git.drupalcode.org/project/structure_sync.git",
  4028. "reference": "2.0.7"
  4029. },
  4030. "dist": {
  4031. "type": "zip",
  4032. "url": "https://ftp.drupal.org/files/projects/structure_sync-2.0.7.zip",
  4033. "reference": "2.0.7",
  4034. "shasum": "d77a8b3cfd614cf7699187fce610e4d490f8f0fc"
  4035. },
  4036. "require": {
  4037. "drupal/core": "^8 || ^9 || ^10 || ^11",
  4038. "php": ">=7.1"
  4039. },
  4040. "require-dev": {
  4041. "drush/drush": "^9 || ^10 || ^11 || ^12"
  4042. },
  4043. "type": "drupal-module",
  4044. "extra": {
  4045. "drupal": {
  4046. "version": "2.0.7",
  4047. "datestamp": "1711457726",
  4048. "security-coverage": {
  4049. "status": "covered",
  4050. "message": "Covered by Drupal's security advisory policy"
  4051. }
  4052. },
  4053. "drush": {
  4054. "services": {
  4055. "drush.services.yml": "^9 || ^10 || ^11 || ^12"
  4056. }
  4057. }
  4058. },
  4059. "notification-url": "https://packages.drupal.org/8/downloads",
  4060. "license": [
  4061. "GPL-2.0-or-later"
  4062. ],
  4063. "authors": [
  4064. {
  4065. "name": "colan",
  4066. "homepage": "https://www.drupal.org/user/58704"
  4067. },
  4068. {
  4069. "name": "fidovdbos",
  4070. "homepage": "https://www.drupal.org/user/1494332"
  4071. },
  4072. {
  4073. "name": "joachim",
  4074. "homepage": "https://www.drupal.org/user/107701"
  4075. },
  4076. {
  4077. "name": "louis-cuny",
  4078. "homepage": "https://www.drupal.org/user/3606332"
  4079. },
  4080. {
  4081. "name": "mparker17",
  4082. "homepage": "https://www.drupal.org/user/536298"
  4083. },
  4084. {
  4085. "name": "spiderman",
  4086. "homepage": "https://www.drupal.org/user/1631"
  4087. },
  4088. {
  4089. "name": "timKruijsen",
  4090. "homepage": "https://www.drupal.org/user/3513437"
  4091. },
  4092. {
  4093. "name": "vinlaurens",
  4094. "homepage": "https://www.drupal.org/user/2945689"
  4095. }
  4096. ],
  4097. "description": "Tool for syncing structural data that is stored as content.",
  4098. "homepage": "https://www.drupal.org/project/structure_sync",
  4099. "support": {
  4100. "source": "https://git.drupalcode.org/project/structure_sync"
  4101. }
  4102. },
  4103. {
  4104. "name": "drupal/subpathauto",
  4105. "version": "1.3.0",
  4106. "source": {
  4107. "type": "git",
  4108. "url": "https://git.drupalcode.org/project/subpathauto.git",
  4109. "reference": "8.x-1.3"
  4110. },
  4111. "dist": {
  4112. "type": "zip",
  4113. "url": "https://ftp.drupal.org/files/projects/subpathauto-8.x-1.3.zip",
  4114. "reference": "8.x-1.3",
  4115. "shasum": "b94e4ec3c8dcd42aa04b6796ae48a9aa1848862d"
  4116. },
  4117. "require": {
  4118. "drupal/core": "^8.8 || ^9 || ^10"
  4119. },
  4120. "require-dev": {
  4121. "drupal/redirect": "*"
  4122. },
  4123. "type": "drupal-module",
  4124. "extra": {
  4125. "drupal": {
  4126. "version": "8.x-1.3",
  4127. "datestamp": "1676316639",
  4128. "security-coverage": {
  4129. "status": "covered",
  4130. "message": "Covered by Drupal's security advisory policy"
  4131. }
  4132. }
  4133. },
  4134. "notification-url": "https://packages.drupal.org/8/downloads",
  4135. "license": [
  4136. "GPL-2.0-or-later"
  4137. ],
  4138. "authors": [
  4139. {
  4140. "name": "Dave Reid",
  4141. "homepage": "https://www.drupal.org/user/53892"
  4142. },
  4143. {
  4144. "name": "lauriii",
  4145. "homepage": "https://www.drupal.org/user/1078742"
  4146. },
  4147. {
  4148. "name": "NickDickinsonWilde",
  4149. "homepage": "https://www.drupal.org/user/3094661"
  4150. }
  4151. ],
  4152. "description": "Provides support for extending sub-paths of URL aliases.",
  4153. "homepage": "https://www.drupal.org/project/subpathauto",
  4154. "support": {
  4155. "source": "https://cgit.drupalcode.org/subpathauto",
  4156. "issues": "https://www.drupal.org/project/issues/subpathauto"
  4157. }
  4158. },
  4159. {
  4160. "name": "drupal/tacjs",
  4161. "version": "6.4.0",
  4162. "source": {
  4163. "type": "git",
  4164. "url": "https://git.drupalcode.org/project/tacjs.git",
  4165. "reference": "8.x-6.4"
  4166. },
  4167. "dist": {
  4168. "type": "zip",
  4169. "url": "https://ftp.drupal.org/files/projects/tacjs-8.x-6.4.zip",
  4170. "reference": "8.x-6.4",
  4171. "shasum": "20a23611b6ea7a5f3b8d2d5ec9ce714cd3e00d77"
  4172. },
  4173. "require": {
  4174. "drupal/core": "^8.8 || ^9 || ^10"
  4175. },
  4176. "type": "drupal-module",
  4177. "extra": {
  4178. "drupal": {
  4179. "version": "8.x-6.4",
  4180. "datestamp": "1687974794",
  4181. "security-coverage": {
  4182. "status": "covered",
  4183. "message": "Covered by Drupal's security advisory policy"
  4184. }
  4185. }
  4186. },
  4187. "notification-url": "https://packages.drupal.org/8/downloads",
  4188. "license": [
  4189. "GPL-2.0-or-later"
  4190. ],
  4191. "authors": [
  4192. {
  4193. "name": "asmaakhalfi",
  4194. "homepage": "https://www.drupal.org/user/3587145"
  4195. },
  4196. {
  4197. "name": "boulaffasae",
  4198. "homepage": "https://www.drupal.org/user/3584750"
  4199. },
  4200. {
  4201. "name": "chaimaariz",
  4202. "homepage": "https://www.drupal.org/user/3549766"
  4203. },
  4204. {
  4205. "name": "k.asmouh",
  4206. "homepage": "https://www.drupal.org/user/3135943"
  4207. },
  4208. {
  4209. "name": "lamlih",
  4210. "homepage": "https://www.drupal.org/user/3708454"
  4211. },
  4212. {
  4213. "name": "mably",
  4214. "homepage": "https://www.drupal.org/user/3375160"
  4215. },
  4216. {
  4217. "name": "netsliver",
  4218. "homepage": "https://www.drupal.org/user/3082011"
  4219. },
  4220. {
  4221. "name": "prudloff",
  4222. "homepage": "https://www.drupal.org/user/3611858"
  4223. }
  4224. ],
  4225. "description": "Comply to the European cookie law using tarteaucitron.js.",
  4226. "homepage": "https://www.drupal.org/project/tacjs",
  4227. "keywords": [
  4228. "Drupal",
  4229. "tacjs"
  4230. ],
  4231. "support": {
  4232. "source": "https://git.drupalcode.org/project/tacjs",
  4233. "issues": "https://www.drupal.org/project/issues/tacjs"
  4234. }
  4235. },
  4236. {
  4237. "name": "drupal/time_range",
  4238. "version": "9.0.2",
  4239. "source": {
  4240. "type": "git",
  4241. "url": "https://git.drupalcode.org/project/time_range.git",
  4242. "reference": "9.0.2"
  4243. },
  4244. "dist": {
  4245. "type": "zip",
  4246. "url": "https://ftp.drupal.org/files/projects/time_range-9.0.2.zip",
  4247. "reference": "9.0.2",
  4248. "shasum": "e0de44c4fc10f86b9ea001458deb7eac02f2ff28"
  4249. },
  4250. "require": {
  4251. "drupal/core": "^8 || ^9 || ^10"
  4252. },
  4253. "type": "drupal-module",
  4254. "extra": {
  4255. "drupal": {
  4256. "version": "9.0.2",
  4257. "datestamp": "1688992195",
  4258. "security-coverage": {
  4259. "status": "covered",
  4260. "message": "Covered by Drupal's security advisory policy"
  4261. }
  4262. }
  4263. },
  4264. "notification-url": "https://packages.drupal.org/8/downloads",
  4265. "license": [
  4266. "GPL-2.0+"
  4267. ],
  4268. "authors": [
  4269. {
  4270. "name": "dravenk",
  4271. "homepage": "https://www.drupal.org/user/3452417"
  4272. }
  4273. ],
  4274. "description": "Provides the form widget to fill in time range.",
  4275. "homepage": "https://github.com/DravenK/time-range.git",
  4276. "support": {
  4277. "source": "https://github.com/DravenK/time-range.git",
  4278. "issues": "https://github.com/DravenK/time-range/issues"
  4279. }
  4280. },
  4281. {
  4282. "name": "drupal/token",
  4283. "version": "1.13.0",
  4284. "source": {
  4285. "type": "git",
  4286. "url": "https://git.drupalcode.org/project/token.git",
  4287. "reference": "8.x-1.13"
  4288. },
  4289. "dist": {
  4290. "type": "zip",
  4291. "url": "https://ftp.drupal.org/files/projects/token-8.x-1.13.zip",
  4292. "reference": "8.x-1.13",
  4293. "shasum": "f2a074b51726de3727c1d900237d6d471806a4d2"
  4294. },
  4295. "require": {
  4296. "drupal/core": "^9.2 || ^10"
  4297. },
  4298. "type": "drupal-module",
  4299. "extra": {
  4300. "drupal": {
  4301. "version": "8.x-1.13",
  4302. "datestamp": "1697885927",
  4303. "security-coverage": {
  4304. "status": "covered",
  4305. "message": "Covered by Drupal's security advisory policy"
  4306. }
  4307. },
  4308. "drush": {
  4309. "services": {
  4310. "drush.services.yml": ">=9"
  4311. }
  4312. }
  4313. },
  4314. "notification-url": "https://packages.drupal.org/8/downloads",
  4315. "license": [
  4316. "GPL-2.0-or-later"
  4317. ],
  4318. "authors": [
  4319. {
  4320. "name": "Berdir",
  4321. "homepage": "https://www.drupal.org/user/214652"
  4322. },
  4323. {
  4324. "name": "Dave Reid",
  4325. "homepage": "https://www.drupal.org/user/53892"
  4326. },
  4327. {
  4328. "name": "eaton",
  4329. "homepage": "https://www.drupal.org/user/16496"
  4330. },
  4331. {
  4332. "name": "fago",
  4333. "homepage": "https://www.drupal.org/user/16747"
  4334. },
  4335. {
  4336. "name": "greggles",
  4337. "homepage": "https://www.drupal.org/user/36762"
  4338. },
  4339. {
  4340. "name": "mikeryan",
  4341. "homepage": "https://www.drupal.org/user/4420"
  4342. }
  4343. ],
  4344. "description": "Provides a user interface for the Token API, some missing core tokens.",
  4345. "homepage": "https://www.drupal.org/project/token",
  4346. "support": {
  4347. "source": "https://git.drupalcode.org/project/token"
  4348. }
  4349. },
  4350. {
  4351. "name": "drupal/video_embed_field",
  4352. "version": "2.5.0",
  4353. "source": {
  4354. "type": "git",
  4355. "url": "https://git.drupalcode.org/project/video_embed_field.git",
  4356. "reference": "8.x-2.5"
  4357. },
  4358. "dist": {
  4359. "type": "zip",
  4360. "url": "https://ftp.drupal.org/files/projects/video_embed_field-8.x-2.5.zip",
  4361. "reference": "8.x-2.5",
  4362. "shasum": "997ed67b6873e822fe628f87f65bd6da67e7350c"
  4363. },
  4364. "require": {
  4365. "drupal/core": "^9.2 || ^10"
  4366. },
  4367. "require-dev": {
  4368. "drupal/ckeditor": "^1",
  4369. "drupal/colorbox": "^2",
  4370. "drupal/video_embed_media": "*"
  4371. },
  4372. "type": "drupal-module",
  4373. "extra": {
  4374. "drupal": {
  4375. "version": "8.x-2.5",
  4376. "datestamp": "1671413311",
  4377. "security-coverage": {
  4378. "status": "covered",
  4379. "message": "Covered by Drupal's security advisory policy"
  4380. }
  4381. }
  4382. },
  4383. "notification-url": "https://packages.drupal.org/8/downloads",
  4384. "license": [
  4385. "GPL-2.0-or-later"
  4386. ],
  4387. "authors": [
  4388. {
  4389. "name": "abhinesh",
  4390. "homepage": "https://www.drupal.org/user/3645979"
  4391. },
  4392. {
  4393. "name": "jec006",
  4394. "homepage": "https://www.drupal.org/user/855980"
  4395. },
  4396. {
  4397. "name": "plopesc",
  4398. "homepage": "https://www.drupal.org/user/282415"
  4399. },
  4400. {
  4401. "name": "Sam152",
  4402. "homepage": "https://www.drupal.org/user/1485048"
  4403. }
  4404. ],
  4405. "description": "A pluggable field type for storing videos from external video hosts such as Vimeo and YouTube.",
  4406. "homepage": "https://www.drupal.org/project/video_embed_field",
  4407. "support": {
  4408. "source": "https://git.drupalcode.org/project/video_embed_field"
  4409. }
  4410. },
  4411. {
  4412. "name": "drupal/views_url_path_arguments",
  4413. "version": "1.2.0",
  4414. "source": {
  4415. "type": "git",
  4416. "url": "https://git.drupalcode.org/project/views_url_path_arguments.git",
  4417. "reference": "8.x-1.2"
  4418. },
  4419. "dist": {
  4420. "type": "zip",
  4421. "url": "https://ftp.drupal.org/files/projects/views_url_path_arguments-8.x-1.2.zip",
  4422. "reference": "8.x-1.2",
  4423. "shasum": "949023c9c1dd31f91d60e76580dc9d5c2e0732d4"
  4424. },
  4425. "require": {
  4426. "drupal/core": "^8 || ^9 || ^10"
  4427. },
  4428. "type": "drupal-module",
  4429. "extra": {
  4430. "drupal": {
  4431. "version": "8.x-1.2",
  4432. "datestamp": "1689607584",
  4433. "security-coverage": {
  4434. "status": "covered",
  4435. "message": "Covered by Drupal's security advisory policy"
  4436. }
  4437. }
  4438. },
  4439. "notification-url": "https://packages.drupal.org/8/downloads",
  4440. "license": [
  4441. "GPL-2.0+"
  4442. ],
  4443. "authors": [
  4444. {
  4445. "name": "heddn",
  4446. "homepage": "https://www.drupal.org/user/1463982"
  4447. }
  4448. ],
  4449. "description": "Simple module to convert a view argument's entity id into its url path.",
  4450. "homepage": "https://www.drupal.org/project/views_url_path_arguments",
  4451. "keywords": [
  4452. "Drupal"
  4453. ],
  4454. "support": {
  4455. "source": "http://cgit.drupalcode.org/views_url_path_arguments",
  4456. "issues": "https://www.drupal.org/project/issues/views_url_path_arguments"
  4457. }
  4458. },
  4459. {
  4460. "name": "drush/drush",
  4461. "version": "12.4.3",
  4462. "source": {
  4463. "type": "git",
  4464. "url": "https://github.com/drush-ops/drush.git",
  4465. "reference": "8245acede57ecc62a90aa0f19ff3b29e5f11f971"
  4466. },
  4467. "dist": {
  4468. "type": "zip",
  4469. "url": "https://api.github.com/repos/drush-ops/drush/zipball/8245acede57ecc62a90aa0f19ff3b29e5f11f971",
  4470. "reference": "8245acede57ecc62a90aa0f19ff3b29e5f11f971",
  4471. "shasum": ""
  4472. },
  4473. "require": {
  4474. "chi-teck/drupal-code-generator": "^3.0",
  4475. "composer-runtime-api": "^2.2",
  4476. "composer/semver": "^1.4 || ^3",
  4477. "consolidation/annotated-command": "^4.9.1",
  4478. "consolidation/config": "^2.1.2",
  4479. "consolidation/filter-via-dot-access-data": "^2.0.2",
  4480. "consolidation/output-formatters": "^4.3.2",
  4481. "consolidation/robo": "^4.0.6",
  4482. "consolidation/site-alias": "^4",
  4483. "consolidation/site-process": "^5.2.0",
  4484. "ext-dom": "*",
  4485. "grasmash/yaml-cli": "^3.1",
  4486. "guzzlehttp/guzzle": "^7.0",
  4487. "league/container": "^4",
  4488. "php": ">=8.1",
  4489. "psy/psysh": "~0.11",
  4490. "symfony/event-dispatcher": "^6",
  4491. "symfony/filesystem": "^6.1",
  4492. "symfony/finder": "^6",
  4493. "symfony/var-dumper": "^6.0",
  4494. "symfony/yaml": "^6.0",
  4495. "webflo/drupal-finder": "^1.2"
  4496. },
  4497. "conflict": {
  4498. "drupal/core": "< 10.0",
  4499. "drupal/migrate_run": "*",
  4500. "drupal/migrate_tools": "<= 5"
  4501. },
  4502. "require-dev": {
  4503. "composer/installers": "^2",
  4504. "cweagans/composer-patches": "~1.0",
  4505. "drupal/core-recommended": "^10",
  4506. "drupal/semver_example": "2.3.0",
  4507. "phpunit/phpunit": "^9",
  4508. "rector/rector": "^0.12",
  4509. "squizlabs/php_codesniffer": "^3.7"
  4510. },
  4511. "bin": [
  4512. "drush"
  4513. ],
  4514. "type": "library",
  4515. "extra": {
  4516. "installer-paths": {
  4517. "sut/core": [
  4518. "type:drupal-core"
  4519. ],
  4520. "sut/libraries/{$name}": [
  4521. "type:drupal-library"
  4522. ],
  4523. "sut/modules/unish/{$name}": [
  4524. "drupal/devel"
  4525. ],
  4526. "sut/themes/unish/{$name}": [
  4527. "drupal/empty_theme"
  4528. ],
  4529. "sut/modules/contrib/{$name}": [
  4530. "type:drupal-module"
  4531. ],
  4532. "sut/profiles/contrib/{$name}": [
  4533. "type:drupal-profile"
  4534. ],
  4535. "sut/themes/contrib/{$name}": [
  4536. "type:drupal-theme"
  4537. ],
  4538. "sut/drush/contrib/{$name}": [
  4539. "type:drupal-drush"
  4540. ]
  4541. }
  4542. },
  4543. "autoload": {
  4544. "psr-4": {
  4545. "Drush\\": "src/"
  4546. }
  4547. },
  4548. "notification-url": "https://packagist.org/downloads/",
  4549. "license": [
  4550. "GPL-2.0-or-later"
  4551. ],
  4552. "authors": [
  4553. {
  4554. "name": "Moshe Weitzman",
  4555. "email": "weitzman@tejasa.com"
  4556. },
  4557. {
  4558. "name": "Owen Barton",
  4559. "email": "drupal@owenbarton.com"
  4560. },
  4561. {
  4562. "name": "Greg Anderson",
  4563. "email": "greg.1.anderson@greenknowe.org"
  4564. },
  4565. {
  4566. "name": "Jonathan Araña Cruz",
  4567. "email": "jonhattan@faita.net"
  4568. },
  4569. {
  4570. "name": "Jonathan Hedstrom",
  4571. "email": "jhedstrom@gmail.com"
  4572. },
  4573. {
  4574. "name": "Christopher Gervais",
  4575. "email": "chris@ergonlogic.com"
  4576. },
  4577. {
  4578. "name": "Dave Reid",
  4579. "email": "dave@davereid.net"
  4580. },
  4581. {
  4582. "name": "Damian Lee",
  4583. "email": "damiankloip@googlemail.com"
  4584. }
  4585. ],
  4586. "description": "Drush is a command line shell and scripting interface for Drupal, a veritable Swiss Army knife designed to make life easier for those of us who spend some of our working hours hacking away at the command prompt.",
  4587. "homepage": "http://www.drush.org",
  4588. "support": {
  4589. "forum": "http://drupal.stackexchange.com/questions/tagged/drush",
  4590. "issues": "https://github.com/drush-ops/drush/issues",
  4591. "security": "https://github.com/drush-ops/drush/security/advisories",
  4592. "slack": "https://drupal.slack.com/messages/C62H9CWQM",
  4593. "source": "https://github.com/drush-ops/drush/tree/12.4.3"
  4594. },
  4595. "funding": [
  4596. {
  4597. "url": "https://github.com/weitzman",
  4598. "type": "github"
  4599. }
  4600. ],
  4601. "time": "2023-11-16T22:57:24+00:00"
  4602. },
  4603. {
  4604. "name": "egulias/email-validator",
  4605. "version": "4.0.2",
  4606. "source": {
  4607. "type": "git",
  4608. "url": "https://github.com/egulias/EmailValidator.git",
  4609. "reference": "ebaaf5be6c0286928352e054f2d5125608e5405e"
  4610. },
  4611. "dist": {
  4612. "type": "zip",
  4613. "url": "https://api.github.com/repos/egulias/EmailValidator/zipball/ebaaf5be6c0286928352e054f2d5125608e5405e",
  4614. "reference": "ebaaf5be6c0286928352e054f2d5125608e5405e",
  4615. "shasum": ""
  4616. },
  4617. "require": {
  4618. "doctrine/lexer": "^2.0 || ^3.0",
  4619. "php": ">=8.1",
  4620. "symfony/polyfill-intl-idn": "^1.26"
  4621. },
  4622. "require-dev": {
  4623. "phpunit/phpunit": "^10.2",
  4624. "vimeo/psalm": "^5.12"
  4625. },
  4626. "suggest": {
  4627. "ext-intl": "PHP Internationalization Libraries are required to use the SpoofChecking validation"
  4628. },
  4629. "type": "library",
  4630. "extra": {
  4631. "branch-alias": {
  4632. "dev-master": "4.0.x-dev"
  4633. }
  4634. },
  4635. "autoload": {
  4636. "psr-4": {
  4637. "Egulias\\EmailValidator\\": "src"
  4638. }
  4639. },
  4640. "notification-url": "https://packagist.org/downloads/",
  4641. "license": [
  4642. "MIT"
  4643. ],
  4644. "authors": [
  4645. {
  4646. "name": "Eduardo Gulias Davis"
  4647. }
  4648. ],
  4649. "description": "A library for validating emails against several RFCs",
  4650. "homepage": "https://github.com/egulias/EmailValidator",
  4651. "keywords": [
  4652. "email",
  4653. "emailvalidation",
  4654. "emailvalidator",
  4655. "validation",
  4656. "validator"
  4657. ],
  4658. "support": {
  4659. "issues": "https://github.com/egulias/EmailValidator/issues",
  4660. "source": "https://github.com/egulias/EmailValidator/tree/4.0.2"
  4661. },
  4662. "funding": [
  4663. {
  4664. "url": "https://github.com/egulias",
  4665. "type": "github"
  4666. }
  4667. ],
  4668. "time": "2023-10-06T06:47:41+00:00"
  4669. },
  4670. {
  4671. "name": "grasmash/expander",
  4672. "version": "3.0.0",
  4673. "source": {
  4674. "type": "git",
  4675. "url": "https://github.com/grasmash/expander.git",
  4676. "reference": "bb1c1a2430957945cf08c5a62f5d72a6aa6a2c82"
  4677. },
  4678. "dist": {
  4679. "type": "zip",
  4680. "url": "https://api.github.com/repos/grasmash/expander/zipball/bb1c1a2430957945cf08c5a62f5d72a6aa6a2c82",
  4681. "reference": "bb1c1a2430957945cf08c5a62f5d72a6aa6a2c82",
  4682. "shasum": ""
  4683. },
  4684. "require": {
  4685. "dflydev/dot-access-data": "^3.0.0",
  4686. "php": ">=8.0",
  4687. "psr/log": "^2 | ^3"
  4688. },
  4689. "require-dev": {
  4690. "greg-1-anderson/composer-test-scenarios": "^1",
  4691. "php-coveralls/php-coveralls": "^2.5",
  4692. "phpunit/phpunit": "^9",
  4693. "squizlabs/php_codesniffer": "^3.3"
  4694. },
  4695. "type": "library",
  4696. "extra": {
  4697. "branch-alias": {
  4698. "dev-master": "1.x-dev"
  4699. }
  4700. },
  4701. "autoload": {
  4702. "psr-4": {
  4703. "Grasmash\\Expander\\": "src/"
  4704. }
  4705. },
  4706. "notification-url": "https://packagist.org/downloads/",
  4707. "license": [
  4708. "MIT"
  4709. ],
  4710. "authors": [
  4711. {
  4712. "name": "Matthew Grasmick"
  4713. }
  4714. ],
  4715. "description": "Expands internal property references in PHP arrays file.",
  4716. "support": {
  4717. "issues": "https://github.com/grasmash/expander/issues",
  4718. "source": "https://github.com/grasmash/expander/tree/3.0.0"
  4719. },
  4720. "time": "2022-05-10T13:14:49+00:00"
  4721. },
  4722. {
  4723. "name": "grasmash/yaml-cli",
  4724. "version": "3.1.0",
  4725. "source": {
  4726. "type": "git",
  4727. "url": "https://github.com/grasmash/yaml-cli.git",
  4728. "reference": "00f3fd775f6abbfacd44432f1999c3c3b02791f0"
  4729. },
  4730. "dist": {
  4731. "type": "zip",
  4732. "url": "https://api.github.com/repos/grasmash/yaml-cli/zipball/00f3fd775f6abbfacd44432f1999c3c3b02791f0",
  4733. "reference": "00f3fd775f6abbfacd44432f1999c3c3b02791f0",
  4734. "shasum": ""
  4735. },
  4736. "require": {
  4737. "dflydev/dot-access-data": "^3",
  4738. "php": ">=8.0",
  4739. "symfony/console": "^6",
  4740. "symfony/filesystem": "^6",
  4741. "symfony/yaml": "^6"
  4742. },
  4743. "require-dev": {
  4744. "php-coveralls/php-coveralls": "^2",
  4745. "phpunit/phpunit": "^9",
  4746. "squizlabs/php_codesniffer": "^3.0"
  4747. },
  4748. "bin": [
  4749. "bin/yaml-cli"
  4750. ],
  4751. "type": "library",
  4752. "extra": {
  4753. "branch-alias": {
  4754. "dev-master": "3.x-dev"
  4755. }
  4756. },
  4757. "autoload": {
  4758. "psr-4": {
  4759. "Grasmash\\YamlCli\\": "src/"
  4760. }
  4761. },
  4762. "notification-url": "https://packagist.org/downloads/",
  4763. "license": [
  4764. "MIT"
  4765. ],
  4766. "authors": [
  4767. {
  4768. "name": "Matthew Grasmick"
  4769. }
  4770. ],
  4771. "description": "A command line tool for reading and manipulating yaml files.",
  4772. "support": {
  4773. "issues": "https://github.com/grasmash/yaml-cli/issues",
  4774. "source": "https://github.com/grasmash/yaml-cli/tree/3.1.0"
  4775. },
  4776. "time": "2022-05-09T20:22:34+00:00"
  4777. },
  4778. {
  4779. "name": "guzzlehttp/guzzle",
  4780. "version": "7.8.1",
  4781. "source": {
  4782. "type": "git",
  4783. "url": "https://github.com/guzzle/guzzle.git",
  4784. "reference": "41042bc7ab002487b876a0683fc8dce04ddce104"
  4785. },
  4786. "dist": {
  4787. "type": "zip",
  4788. "url": "https://api.github.com/repos/guzzle/guzzle/zipball/41042bc7ab002487b876a0683fc8dce04ddce104",
  4789. "reference": "41042bc7ab002487b876a0683fc8dce04ddce104",
  4790. "shasum": ""
  4791. },
  4792. "require": {
  4793. "ext-json": "*",
  4794. "guzzlehttp/promises": "^1.5.3 || ^2.0.1",
  4795. "guzzlehttp/psr7": "^1.9.1 || ^2.5.1",
  4796. "php": "^7.2.5 || ^8.0",
  4797. "psr/http-client": "^1.0",
  4798. "symfony/deprecation-contracts": "^2.2 || ^3.0"
  4799. },
  4800. "provide": {
  4801. "psr/http-client-implementation": "1.0"
  4802. },
  4803. "require-dev": {
  4804. "bamarni/composer-bin-plugin": "^1.8.2",
  4805. "ext-curl": "*",
  4806. "php-http/client-integration-tests": "dev-master#2c025848417c1135031fdf9c728ee53d0a7ceaee as 3.0.999",
  4807. "php-http/message-factory": "^1.1",
  4808. "phpunit/phpunit": "^8.5.36 || ^9.6.15",
  4809. "psr/log": "^1.1 || ^2.0 || ^3.0"
  4810. },
  4811. "suggest": {
  4812. "ext-curl": "Required for CURL handler support",
  4813. "ext-intl": "Required for Internationalized Domain Name (IDN) support",
  4814. "psr/log": "Required for using the Log middleware"
  4815. },
  4816. "type": "library",
  4817. "extra": {
  4818. "bamarni-bin": {
  4819. "bin-links": true,
  4820. "forward-command": false
  4821. }
  4822. },
  4823. "autoload": {
  4824. "files": [
  4825. "src/functions_include.php"
  4826. ],
  4827. "psr-4": {
  4828. "GuzzleHttp\\": "src/"
  4829. }
  4830. },
  4831. "notification-url": "https://packagist.org/downloads/",
  4832. "license": [
  4833. "MIT"
  4834. ],
  4835. "authors": [
  4836. {
  4837. "name": "Graham Campbell",
  4838. "email": "hello@gjcampbell.co.uk",
  4839. "homepage": "https://github.com/GrahamCampbell"
  4840. },
  4841. {
  4842. "name": "Michael Dowling",
  4843. "email": "mtdowling@gmail.com",
  4844. "homepage": "https://github.com/mtdowling"
  4845. },
  4846. {
  4847. "name": "Jeremy Lindblom",
  4848. "email": "jeremeamia@gmail.com",
  4849. "homepage": "https://github.com/jeremeamia"
  4850. },
  4851. {
  4852. "name": "George Mponos",
  4853. "email": "gmponos@gmail.com",
  4854. "homepage": "https://github.com/gmponos"
  4855. },
  4856. {
  4857. "name": "Tobias Nyholm",
  4858. "email": "tobias.nyholm@gmail.com",
  4859. "homepage": "https://github.com/Nyholm"
  4860. },
  4861. {
  4862. "name": "Márk Sági-Kazár",
  4863. "email": "mark.sagikazar@gmail.com",
  4864. "homepage": "https://github.com/sagikazarmark"
  4865. },
  4866. {
  4867. "name": "Tobias Schultze",
  4868. "email": "webmaster@tubo-world.de",
  4869. "homepage": "https://github.com/Tobion"
  4870. }
  4871. ],
  4872. "description": "Guzzle is a PHP HTTP client library",
  4873. "keywords": [
  4874. "client",
  4875. "curl",
  4876. "framework",
  4877. "http",
  4878. "http client",
  4879. "psr-18",
  4880. "psr-7",
  4881. "rest",
  4882. "web service"
  4883. ],
  4884. "support": {
  4885. "issues": "https://github.com/guzzle/guzzle/issues",
  4886. "source": "https://github.com/guzzle/guzzle/tree/7.8.1"
  4887. },
  4888. "funding": [
  4889. {
  4890. "url": "https://github.com/GrahamCampbell",
  4891. "type": "github"
  4892. },
  4893. {
  4894. "url": "https://github.com/Nyholm",
  4895. "type": "github"
  4896. },
  4897. {
  4898. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/guzzle",
  4899. "type": "tidelift"
  4900. }
  4901. ],
  4902. "time": "2023-12-03T20:35:24+00:00"
  4903. },
  4904. {
  4905. "name": "guzzlehttp/promises",
  4906. "version": "2.0.2",
  4907. "source": {
  4908. "type": "git",
  4909. "url": "https://github.com/guzzle/promises.git",
  4910. "reference": "bbff78d96034045e58e13dedd6ad91b5d1253223"
  4911. },
  4912. "dist": {
  4913. "type": "zip",
  4914. "url": "https://api.github.com/repos/guzzle/promises/zipball/bbff78d96034045e58e13dedd6ad91b5d1253223",
  4915. "reference": "bbff78d96034045e58e13dedd6ad91b5d1253223",
  4916. "shasum": ""
  4917. },
  4918. "require": {
  4919. "php": "^7.2.5 || ^8.0"
  4920. },
  4921. "require-dev": {
  4922. "bamarni/composer-bin-plugin": "^1.8.2",
  4923. "phpunit/phpunit": "^8.5.36 || ^9.6.15"
  4924. },
  4925. "type": "library",
  4926. "extra": {
  4927. "bamarni-bin": {
  4928. "bin-links": true,
  4929. "forward-command": false
  4930. }
  4931. },
  4932. "autoload": {
  4933. "psr-4": {
  4934. "GuzzleHttp\\Promise\\": "src/"
  4935. }
  4936. },
  4937. "notification-url": "https://packagist.org/downloads/",
  4938. "license": [
  4939. "MIT"
  4940. ],
  4941. "authors": [
  4942. {
  4943. "name": "Graham Campbell",
  4944. "email": "hello@gjcampbell.co.uk",
  4945. "homepage": "https://github.com/GrahamCampbell"
  4946. },
  4947. {
  4948. "name": "Michael Dowling",
  4949. "email": "mtdowling@gmail.com",
  4950. "homepage": "https://github.com/mtdowling"
  4951. },
  4952. {
  4953. "name": "Tobias Nyholm",
  4954. "email": "tobias.nyholm@gmail.com",
  4955. "homepage": "https://github.com/Nyholm"
  4956. },
  4957. {
  4958. "name": "Tobias Schultze",
  4959. "email": "webmaster@tubo-world.de",
  4960. "homepage": "https://github.com/Tobion"
  4961. }
  4962. ],
  4963. "description": "Guzzle promises library",
  4964. "keywords": [
  4965. "promise"
  4966. ],
  4967. "support": {
  4968. "issues": "https://github.com/guzzle/promises/issues",
  4969. "source": "https://github.com/guzzle/promises/tree/2.0.2"
  4970. },
  4971. "funding": [
  4972. {
  4973. "url": "https://github.com/GrahamCampbell",
  4974. "type": "github"
  4975. },
  4976. {
  4977. "url": "https://github.com/Nyholm",
  4978. "type": "github"
  4979. },
  4980. {
  4981. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/promises",
  4982. "type": "tidelift"
  4983. }
  4984. ],
  4985. "time": "2023-12-03T20:19:20+00:00"
  4986. },
  4987. {
  4988. "name": "guzzlehttp/psr7",
  4989. "version": "2.6.2",
  4990. "source": {
  4991. "type": "git",
  4992. "url": "https://github.com/guzzle/psr7.git",
  4993. "reference": "45b30f99ac27b5ca93cb4831afe16285f57b8221"
  4994. },
  4995. "dist": {
  4996. "type": "zip",
  4997. "url": "https://api.github.com/repos/guzzle/psr7/zipball/45b30f99ac27b5ca93cb4831afe16285f57b8221",
  4998. "reference": "45b30f99ac27b5ca93cb4831afe16285f57b8221",
  4999. "shasum": ""
  5000. },
  5001. "require": {
  5002. "php": "^7.2.5 || ^8.0",
  5003. "psr/http-factory": "^1.0",
  5004. "psr/http-message": "^1.1 || ^2.0",
  5005. "ralouphie/getallheaders": "^3.0"
  5006. },
  5007. "provide": {
  5008. "psr/http-factory-implementation": "1.0",
  5009. "psr/http-message-implementation": "1.0"
  5010. },
  5011. "require-dev": {
  5012. "bamarni/composer-bin-plugin": "^1.8.2",
  5013. "http-interop/http-factory-tests": "^0.9",
  5014. "phpunit/phpunit": "^8.5.36 || ^9.6.15"
  5015. },
  5016. "suggest": {
  5017. "laminas/laminas-httphandlerrunner": "Emit PSR-7 responses"
  5018. },
  5019. "type": "library",
  5020. "extra": {
  5021. "bamarni-bin": {
  5022. "bin-links": true,
  5023. "forward-command": false
  5024. }
  5025. },
  5026. "autoload": {
  5027. "psr-4": {
  5028. "GuzzleHttp\\Psr7\\": "src/"
  5029. }
  5030. },
  5031. "notification-url": "https://packagist.org/downloads/",
  5032. "license": [
  5033. "MIT"
  5034. ],
  5035. "authors": [
  5036. {
  5037. "name": "Graham Campbell",
  5038. "email": "hello@gjcampbell.co.uk",
  5039. "homepage": "https://github.com/GrahamCampbell"
  5040. },
  5041. {
  5042. "name": "Michael Dowling",
  5043. "email": "mtdowling@gmail.com",
  5044. "homepage": "https://github.com/mtdowling"
  5045. },
  5046. {
  5047. "name": "George Mponos",
  5048. "email": "gmponos@gmail.com",
  5049. "homepage": "https://github.com/gmponos"
  5050. },
  5051. {
  5052. "name": "Tobias Nyholm",
  5053. "email": "tobias.nyholm@gmail.com",
  5054. "homepage": "https://github.com/Nyholm"
  5055. },
  5056. {
  5057. "name": "Márk Sági-Kazár",
  5058. "email": "mark.sagikazar@gmail.com",
  5059. "homepage": "https://github.com/sagikazarmark"
  5060. },
  5061. {
  5062. "name": "Tobias Schultze",
  5063. "email": "webmaster@tubo-world.de",
  5064. "homepage": "https://github.com/Tobion"
  5065. },
  5066. {
  5067. "name": "Márk Sági-Kazár",
  5068. "email": "mark.sagikazar@gmail.com",
  5069. "homepage": "https://sagikazarmark.hu"
  5070. }
  5071. ],
  5072. "description": "PSR-7 message implementation that also provides common utility methods",
  5073. "keywords": [
  5074. "http",
  5075. "message",
  5076. "psr-7",
  5077. "request",
  5078. "response",
  5079. "stream",
  5080. "uri",
  5081. "url"
  5082. ],
  5083. "support": {
  5084. "issues": "https://github.com/guzzle/psr7/issues",
  5085. "source": "https://github.com/guzzle/psr7/tree/2.6.2"
  5086. },
  5087. "funding": [
  5088. {
  5089. "url": "https://github.com/GrahamCampbell",
  5090. "type": "github"
  5091. },
  5092. {
  5093. "url": "https://github.com/Nyholm",
  5094. "type": "github"
  5095. },
  5096. {
  5097. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/psr7",
  5098. "type": "tidelift"
  5099. }
  5100. ],
  5101. "time": "2023-12-03T20:05:35+00:00"
  5102. },
  5103. {
  5104. "name": "league/container",
  5105. "version": "4.2.0",
  5106. "source": {
  5107. "type": "git",
  5108. "url": "https://github.com/thephpleague/container.git",
  5109. "reference": "375d13cb828649599ef5d48a339c4af7a26cd0ab"
  5110. },
  5111. "dist": {
  5112. "type": "zip",
  5113. "url": "https://api.github.com/repos/thephpleague/container/zipball/375d13cb828649599ef5d48a339c4af7a26cd0ab",
  5114. "reference": "375d13cb828649599ef5d48a339c4af7a26cd0ab",
  5115. "shasum": ""
  5116. },
  5117. "require": {
  5118. "php": "^7.2 || ^8.0",
  5119. "psr/container": "^1.1 || ^2.0"
  5120. },
  5121. "provide": {
  5122. "psr/container-implementation": "^1.0"
  5123. },
  5124. "replace": {
  5125. "orno/di": "~2.0"
  5126. },
  5127. "require-dev": {
  5128. "nette/php-generator": "^3.4",
  5129. "nikic/php-parser": "^4.10",
  5130. "phpstan/phpstan": "^0.12.47",
  5131. "phpunit/phpunit": "^8.5.17",
  5132. "roave/security-advisories": "dev-latest",
  5133. "scrutinizer/ocular": "^1.8",
  5134. "squizlabs/php_codesniffer": "^3.6"
  5135. },
  5136. "type": "library",
  5137. "extra": {
  5138. "branch-alias": {
  5139. "dev-master": "4.x-dev",
  5140. "dev-4.x": "4.x-dev",
  5141. "dev-3.x": "3.x-dev",
  5142. "dev-2.x": "2.x-dev",
  5143. "dev-1.x": "1.x-dev"
  5144. }
  5145. },
  5146. "autoload": {
  5147. "psr-4": {
  5148. "League\\Container\\": "src"
  5149. }
  5150. },
  5151. "notification-url": "https://packagist.org/downloads/",
  5152. "license": [
  5153. "MIT"
  5154. ],
  5155. "authors": [
  5156. {
  5157. "name": "Phil Bennett",
  5158. "email": "mail@philbennett.co.uk",
  5159. "role": "Developer"
  5160. }
  5161. ],
  5162. "description": "A fast and intuitive dependency injection container.",
  5163. "homepage": "https://github.com/thephpleague/container",
  5164. "keywords": [
  5165. "container",
  5166. "dependency",
  5167. "di",
  5168. "injection",
  5169. "league",
  5170. "provider",
  5171. "service"
  5172. ],
  5173. "support": {
  5174. "issues": "https://github.com/thephpleague/container/issues",
  5175. "source": "https://github.com/thephpleague/container/tree/4.2.0"
  5176. },
  5177. "funding": [
  5178. {
  5179. "url": "https://github.com/philipobenito",
  5180. "type": "github"
  5181. }
  5182. ],
  5183. "time": "2021-11-16T10:29:06+00:00"
  5184. },
  5185. {
  5186. "name": "masterminds/html5",
  5187. "version": "2.8.1",
  5188. "source": {
  5189. "type": "git",
  5190. "url": "https://github.com/Masterminds/html5-php.git",
  5191. "reference": "f47dcf3c70c584de14f21143c55d9939631bc6cf"
  5192. },
  5193. "dist": {
  5194. "type": "zip",
  5195. "url": "https://api.github.com/repos/Masterminds/html5-php/zipball/f47dcf3c70c584de14f21143c55d9939631bc6cf",
  5196. "reference": "f47dcf3c70c584de14f21143c55d9939631bc6cf",
  5197. "shasum": ""
  5198. },
  5199. "require": {
  5200. "ext-dom": "*",
  5201. "php": ">=5.3.0"
  5202. },
  5203. "require-dev": {
  5204. "phpunit/phpunit": "^4.8.35 || ^5.7.21 || ^6 || ^7 || ^8"
  5205. },
  5206. "type": "library",
  5207. "extra": {
  5208. "branch-alias": {
  5209. "dev-master": "2.7-dev"
  5210. }
  5211. },
  5212. "autoload": {
  5213. "psr-4": {
  5214. "Masterminds\\": "src"
  5215. }
  5216. },
  5217. "notification-url": "https://packagist.org/downloads/",
  5218. "license": [
  5219. "MIT"
  5220. ],
  5221. "authors": [
  5222. {
  5223. "name": "Matt Butcher",
  5224. "email": "technosophos@gmail.com"
  5225. },
  5226. {
  5227. "name": "Matt Farina",
  5228. "email": "matt@mattfarina.com"
  5229. },
  5230. {
  5231. "name": "Asmir Mustafic",
  5232. "email": "goetas@gmail.com"
  5233. }
  5234. ],
  5235. "description": "An HTML5 parser and serializer.",
  5236. "homepage": "http://masterminds.github.io/html5-php",
  5237. "keywords": [
  5238. "HTML5",
  5239. "dom",
  5240. "html",
  5241. "parser",
  5242. "querypath",
  5243. "serializer",
  5244. "xml"
  5245. ],
  5246. "support": {
  5247. "issues": "https://github.com/Masterminds/html5-php/issues",
  5248. "source": "https://github.com/Masterminds/html5-php/tree/2.8.1"
  5249. },
  5250. "time": "2023-05-10T11:58:31+00:00"
  5251. },
  5252. {
  5253. "name": "mck89/peast",
  5254. "version": "v1.15.4",
  5255. "source": {
  5256. "type": "git",
  5257. "url": "https://github.com/mck89/peast.git",
  5258. "reference": "1df4dc28a6b5bb7ab117ab073c1712256e954e18"
  5259. },
  5260. "dist": {
  5261. "type": "zip",
  5262. "url": "https://api.github.com/repos/mck89/peast/zipball/1df4dc28a6b5bb7ab117ab073c1712256e954e18",
  5263. "reference": "1df4dc28a6b5bb7ab117ab073c1712256e954e18",
  5264. "shasum": ""
  5265. },
  5266. "require": {
  5267. "ext-mbstring": "*",
  5268. "php": ">=5.4.0"
  5269. },
  5270. "require-dev": {
  5271. "phpunit/phpunit": "^4.0 || ^5.0 || ^6.0 || ^7.0 || ^8.0 || ^9.0"
  5272. },
  5273. "type": "library",
  5274. "extra": {
  5275. "branch-alias": {
  5276. "dev-master": "1.15.4-dev"
  5277. }
  5278. },
  5279. "autoload": {
  5280. "psr-4": {
  5281. "Peast\\": "lib/Peast/"
  5282. }
  5283. },
  5284. "notification-url": "https://packagist.org/downloads/",
  5285. "license": [
  5286. "BSD-3-Clause"
  5287. ],
  5288. "authors": [
  5289. {
  5290. "name": "Marco Marchiò",
  5291. "email": "marco.mm89@gmail.com"
  5292. }
  5293. ],
  5294. "description": "Peast is PHP library that generates AST for JavaScript code",
  5295. "support": {
  5296. "issues": "https://github.com/mck89/peast/issues",
  5297. "source": "https://github.com/mck89/peast/tree/v1.15.4"
  5298. },
  5299. "time": "2023-08-12T08:29:29+00:00"
  5300. },
  5301. {
  5302. "name": "nikic/php-parser",
  5303. "version": "v5.0.1",
  5304. "source": {
  5305. "type": "git",
  5306. "url": "https://github.com/nikic/PHP-Parser.git",
  5307. "reference": "2218c2252c874a4624ab2f613d86ac32d227bc69"
  5308. },
  5309. "dist": {
  5310. "type": "zip",
  5311. "url": "https://api.github.com/repos/nikic/PHP-Parser/zipball/2218c2252c874a4624ab2f613d86ac32d227bc69",
  5312. "reference": "2218c2252c874a4624ab2f613d86ac32d227bc69",
  5313. "shasum": ""
  5314. },
  5315. "require": {
  5316. "ext-ctype": "*",
  5317. "ext-json": "*",
  5318. "ext-tokenizer": "*",
  5319. "php": ">=7.4"
  5320. },
  5321. "require-dev": {
  5322. "ircmaxell/php-yacc": "^0.0.7",
  5323. "phpunit/phpunit": "^7.0 || ^8.0 || ^9.0"
  5324. },
  5325. "bin": [
  5326. "bin/php-parse"
  5327. ],
  5328. "type": "library",
  5329. "extra": {
  5330. "branch-alias": {
  5331. "dev-master": "5.0-dev"
  5332. }
  5333. },
  5334. "autoload": {
  5335. "psr-4": {
  5336. "PhpParser\\": "lib/PhpParser"
  5337. }
  5338. },
  5339. "notification-url": "https://packagist.org/downloads/",
  5340. "license": [
  5341. "BSD-3-Clause"
  5342. ],
  5343. "authors": [
  5344. {
  5345. "name": "Nikita Popov"
  5346. }
  5347. ],
  5348. "description": "A PHP parser written in PHP",
  5349. "keywords": [
  5350. "parser",
  5351. "php"
  5352. ],
  5353. "support": {
  5354. "issues": "https://github.com/nikic/PHP-Parser/issues",
  5355. "source": "https://github.com/nikic/PHP-Parser/tree/v5.0.1"
  5356. },
  5357. "time": "2024-02-21T19:24:10+00:00"
  5358. },
  5359. {
  5360. "name": "pear/archive_tar",
  5361. "version": "1.4.14",
  5362. "source": {
  5363. "type": "git",
  5364. "url": "https://github.com/pear/Archive_Tar.git",
  5365. "reference": "4d761c5334c790e45ef3245f0864b8955c562caa"
  5366. },
  5367. "dist": {
  5368. "type": "zip",
  5369. "url": "https://api.github.com/repos/pear/Archive_Tar/zipball/4d761c5334c790e45ef3245f0864b8955c562caa",
  5370. "reference": "4d761c5334c790e45ef3245f0864b8955c562caa",
  5371. "shasum": ""
  5372. },
  5373. "require": {
  5374. "pear/pear-core-minimal": "^1.10.0alpha2",
  5375. "php": ">=5.2.0"
  5376. },
  5377. "require-dev": {
  5378. "phpunit/phpunit": "*"
  5379. },
  5380. "suggest": {
  5381. "ext-bz2": "Bz2 compression support.",
  5382. "ext-xz": "Lzma2 compression support.",
  5383. "ext-zlib": "Gzip compression support."
  5384. },
  5385. "type": "library",
  5386. "extra": {
  5387. "branch-alias": {
  5388. "dev-master": "1.4.x-dev"
  5389. }
  5390. },
  5391. "autoload": {
  5392. "psr-0": {
  5393. "Archive_Tar": ""
  5394. }
  5395. },
  5396. "notification-url": "https://packagist.org/downloads/",
  5397. "include-path": [
  5398. "./"
  5399. ],
  5400. "license": [
  5401. "BSD-3-Clause"
  5402. ],
  5403. "authors": [
  5404. {
  5405. "name": "Vincent Blavet",
  5406. "email": "vincent@phpconcept.net"
  5407. },
  5408. {
  5409. "name": "Greg Beaver",
  5410. "email": "greg@chiaraquartet.net"
  5411. },
  5412. {
  5413. "name": "Michiel Rook",
  5414. "email": "mrook@php.net"
  5415. }
  5416. ],
  5417. "description": "Tar file management class with compression support (gzip, bzip2, lzma2)",
  5418. "homepage": "https://github.com/pear/Archive_Tar",
  5419. "keywords": [
  5420. "archive",
  5421. "tar"
  5422. ],
  5423. "support": {
  5424. "issues": "http://pear.php.net/bugs/search.php?cmd=display&package_name[]=Archive_Tar",
  5425. "source": "https://github.com/pear/Archive_Tar"
  5426. },
  5427. "funding": [
  5428. {
  5429. "url": "https://github.com/mrook",
  5430. "type": "github"
  5431. },
  5432. {
  5433. "url": "https://www.patreon.com/michielrook",
  5434. "type": "patreon"
  5435. }
  5436. ],
  5437. "time": "2021-07-20T13:53:39+00:00"
  5438. },
  5439. {
  5440. "name": "pear/console_getopt",
  5441. "version": "v1.4.3",
  5442. "source": {
  5443. "type": "git",
  5444. "url": "https://github.com/pear/Console_Getopt.git",
  5445. "reference": "a41f8d3e668987609178c7c4a9fe48fecac53fa0"
  5446. },
  5447. "dist": {
  5448. "type": "zip",
  5449. "url": "https://api.github.com/repos/pear/Console_Getopt/zipball/a41f8d3e668987609178c7c4a9fe48fecac53fa0",
  5450. "reference": "a41f8d3e668987609178c7c4a9fe48fecac53fa0",
  5451. "shasum": ""
  5452. },
  5453. "type": "library",
  5454. "autoload": {
  5455. "psr-0": {
  5456. "Console": "./"
  5457. }
  5458. },
  5459. "notification-url": "https://packagist.org/downloads/",
  5460. "include-path": [
  5461. "./"
  5462. ],
  5463. "license": [
  5464. "BSD-2-Clause"
  5465. ],
  5466. "authors": [
  5467. {
  5468. "name": "Andrei Zmievski",
  5469. "email": "andrei@php.net",
  5470. "role": "Lead"
  5471. },
  5472. {
  5473. "name": "Stig Bakken",
  5474. "email": "stig@php.net",
  5475. "role": "Developer"
  5476. },
  5477. {
  5478. "name": "Greg Beaver",
  5479. "email": "cellog@php.net",
  5480. "role": "Helper"
  5481. }
  5482. ],
  5483. "description": "More info available on: http://pear.php.net/package/Console_Getopt",
  5484. "support": {
  5485. "issues": "http://pear.php.net/bugs/search.php?cmd=display&package_name[]=Console_Getopt",
  5486. "source": "https://github.com/pear/Console_Getopt"
  5487. },
  5488. "time": "2019-11-20T18:27:48+00:00"
  5489. },
  5490. {
  5491. "name": "pear/pear-core-minimal",
  5492. "version": "v1.10.14",
  5493. "source": {
  5494. "type": "git",
  5495. "url": "https://github.com/pear/pear-core-minimal.git",
  5496. "reference": "a86fc145edb5caedbf96527214ce3cadc9de4a32"
  5497. },
  5498. "dist": {
  5499. "type": "zip",
  5500. "url": "https://api.github.com/repos/pear/pear-core-minimal/zipball/a86fc145edb5caedbf96527214ce3cadc9de4a32",
  5501. "reference": "a86fc145edb5caedbf96527214ce3cadc9de4a32",
  5502. "shasum": ""
  5503. },
  5504. "require": {
  5505. "pear/console_getopt": "~1.4",
  5506. "pear/pear_exception": "~1.0",
  5507. "php": ">=5.4"
  5508. },
  5509. "replace": {
  5510. "rsky/pear-core-min": "self.version"
  5511. },
  5512. "type": "library",
  5513. "autoload": {
  5514. "psr-0": {
  5515. "": "src/"
  5516. }
  5517. },
  5518. "notification-url": "https://packagist.org/downloads/",
  5519. "include-path": [
  5520. "src/"
  5521. ],
  5522. "license": [
  5523. "BSD-3-Clause"
  5524. ],
  5525. "authors": [
  5526. {
  5527. "name": "Christian Weiske",
  5528. "email": "cweiske@php.net",
  5529. "role": "Lead"
  5530. }
  5531. ],
  5532. "description": "Minimal set of PEAR core files to be used as composer dependency",
  5533. "support": {
  5534. "issues": "http://pear.php.net/bugs/search.php?cmd=display&package_name[]=PEAR",
  5535. "source": "https://github.com/pear/pear-core-minimal"
  5536. },
  5537. "time": "2023-11-26T16:15:38+00:00"
  5538. },
  5539. {
  5540. "name": "pear/pear_exception",
  5541. "version": "v1.0.2",
  5542. "source": {
  5543. "type": "git",
  5544. "url": "https://github.com/pear/PEAR_Exception.git",
  5545. "reference": "b14fbe2ddb0b9f94f5b24cf08783d599f776fff0"
  5546. },
  5547. "dist": {
  5548. "type": "zip",
  5549. "url": "https://api.github.com/repos/pear/PEAR_Exception/zipball/b14fbe2ddb0b9f94f5b24cf08783d599f776fff0",
  5550. "reference": "b14fbe2ddb0b9f94f5b24cf08783d599f776fff0",
  5551. "shasum": ""
  5552. },
  5553. "require": {
  5554. "php": ">=5.2.0"
  5555. },
  5556. "require-dev": {
  5557. "phpunit/phpunit": "<9"
  5558. },
  5559. "type": "class",
  5560. "extra": {
  5561. "branch-alias": {
  5562. "dev-master": "1.0.x-dev"
  5563. }
  5564. },
  5565. "autoload": {
  5566. "classmap": [
  5567. "PEAR/"
  5568. ]
  5569. },
  5570. "notification-url": "https://packagist.org/downloads/",
  5571. "include-path": [
  5572. "."
  5573. ],
  5574. "license": [
  5575. "BSD-2-Clause"
  5576. ],
  5577. "authors": [
  5578. {
  5579. "name": "Helgi Thormar",
  5580. "email": "dufuz@php.net"
  5581. },
  5582. {
  5583. "name": "Greg Beaver",
  5584. "email": "cellog@php.net"
  5585. }
  5586. ],
  5587. "description": "The PEAR Exception base class.",
  5588. "homepage": "https://github.com/pear/PEAR_Exception",
  5589. "keywords": [
  5590. "exception"
  5591. ],
  5592. "support": {
  5593. "issues": "http://pear.php.net/bugs/search.php?cmd=display&package_name[]=PEAR_Exception",
  5594. "source": "https://github.com/pear/PEAR_Exception"
  5595. },
  5596. "time": "2021-03-21T15:43:46+00:00"
  5597. },
  5598. {
  5599. "name": "phootwork/collection",
  5600. "version": "v3.2.2",
  5601. "source": {
  5602. "type": "git",
  5603. "url": "https://github.com/phootwork/collection.git",
  5604. "reference": "46dde20420fba17766c89200bc3ff91d3e58eafa"
  5605. },
  5606. "dist": {
  5607. "type": "zip",
  5608. "url": "https://api.github.com/repos/phootwork/collection/zipball/46dde20420fba17766c89200bc3ff91d3e58eafa",
  5609. "reference": "46dde20420fba17766c89200bc3ff91d3e58eafa",
  5610. "shasum": ""
  5611. },
  5612. "require": {
  5613. "phootwork/lang": "^3.0",
  5614. "php": ">=8.0"
  5615. },
  5616. "type": "library",
  5617. "autoload": {
  5618. "psr-4": {
  5619. "phootwork\\collection\\": ""
  5620. }
  5621. },
  5622. "notification-url": "https://packagist.org/downloads/",
  5623. "license": [
  5624. "MIT"
  5625. ],
  5626. "authors": [
  5627. {
  5628. "name": "Thomas Gossmann",
  5629. "homepage": "http://gos.si"
  5630. }
  5631. ],
  5632. "description": "The phootwork library fills gaps in the php language and provides better solutions than the existing ones php offers.",
  5633. "homepage": "https://phootwork.github.io/collection/",
  5634. "keywords": [
  5635. "Array object",
  5636. "Text object",
  5637. "collection",
  5638. "collections",
  5639. "json",
  5640. "list",
  5641. "map",
  5642. "queue",
  5643. "set",
  5644. "stack",
  5645. "xml"
  5646. ],
  5647. "support": {
  5648. "issues": "https://github.com/phootwork/phootwork/issues",
  5649. "source": "https://github.com/phootwork/collection/tree/v3.2.2"
  5650. },
  5651. "time": "2022-08-27T12:51:24+00:00"
  5652. },
  5653. {
  5654. "name": "phootwork/lang",
  5655. "version": "v3.2.2",
  5656. "source": {
  5657. "type": "git",
  5658. "url": "https://github.com/phootwork/lang.git",
  5659. "reference": "baaf154ae7d521ebeee5e89105f5b12b0f234597"
  5660. },
  5661. "dist": {
  5662. "type": "zip",
  5663. "url": "https://api.github.com/repos/phootwork/lang/zipball/baaf154ae7d521ebeee5e89105f5b12b0f234597",
  5664. "reference": "baaf154ae7d521ebeee5e89105f5b12b0f234597",
  5665. "shasum": ""
  5666. },
  5667. "require": {
  5668. "php": ">=8.0",
  5669. "symfony/polyfill-mbstring": "^1.12",
  5670. "symfony/polyfill-php81": "^1.22"
  5671. },
  5672. "type": "library",
  5673. "autoload": {
  5674. "psr-4": {
  5675. "phootwork\\lang\\": ""
  5676. }
  5677. },
  5678. "notification-url": "https://packagist.org/downloads/",
  5679. "license": [
  5680. "MIT"
  5681. ],
  5682. "authors": [
  5683. {
  5684. "name": "Thomas Gossmann",
  5685. "homepage": "http://gos.si"
  5686. }
  5687. ],
  5688. "description": "Missing PHP language constructs",
  5689. "homepage": "https://phootwork.github.io/lang/",
  5690. "keywords": [
  5691. "array",
  5692. "comparator",
  5693. "comparison",
  5694. "string"
  5695. ],
  5696. "support": {
  5697. "issues": "https://github.com/phootwork/phootwork/issues",
  5698. "source": "https://github.com/phootwork/lang/tree/v3.2.2"
  5699. },
  5700. "time": "2023-05-26T05:37:59+00:00"
  5701. },
  5702. {
  5703. "name": "phpowermove/docblock",
  5704. "version": "v4.0",
  5705. "source": {
  5706. "type": "git",
  5707. "url": "https://github.com/phpowermove/docblock.git",
  5708. "reference": "a73f6e17b7d4e1b92ca5378c248c952c9fae7826"
  5709. },
  5710. "dist": {
  5711. "type": "zip",
  5712. "url": "https://api.github.com/repos/phpowermove/docblock/zipball/a73f6e17b7d4e1b92ca5378c248c952c9fae7826",
  5713. "reference": "a73f6e17b7d4e1b92ca5378c248c952c9fae7826",
  5714. "shasum": ""
  5715. },
  5716. "require": {
  5717. "phootwork/collection": "^3.0",
  5718. "phootwork/lang": "^3.0",
  5719. "php": ">=8.0"
  5720. },
  5721. "require-dev": {
  5722. "phootwork/php-cs-fixer-config": "^0.4",
  5723. "phpunit/phpunit": "^9.0",
  5724. "psalm/phar": "^4.3"
  5725. },
  5726. "type": "library",
  5727. "autoload": {
  5728. "psr-4": {
  5729. "phpowermove\\docblock\\": "src/"
  5730. }
  5731. },
  5732. "notification-url": "https://packagist.org/downloads/",
  5733. "license": [
  5734. "MIT"
  5735. ],
  5736. "authors": [
  5737. {
  5738. "name": "Thomas Gossmann",
  5739. "homepage": "http://gos.si"
  5740. }
  5741. ],
  5742. "description": "PHP Docblock parser and generator. An API to read and write Docblocks.",
  5743. "keywords": [
  5744. "docblock",
  5745. "generator",
  5746. "parser"
  5747. ],
  5748. "support": {
  5749. "issues": "https://github.com/phpowermove/docblock/issues",
  5750. "source": "https://github.com/phpowermove/docblock/tree/v4.0"
  5751. },
  5752. "time": "2021-09-22T16:57:06+00:00"
  5753. },
  5754. {
  5755. "name": "psr/cache",
  5756. "version": "3.0.0",
  5757. "source": {
  5758. "type": "git",
  5759. "url": "https://github.com/php-fig/cache.git",
  5760. "reference": "aa5030cfa5405eccfdcb1083ce040c2cb8d253bf"
  5761. },
  5762. "dist": {
  5763. "type": "zip",
  5764. "url": "https://api.github.com/repos/php-fig/cache/zipball/aa5030cfa5405eccfdcb1083ce040c2cb8d253bf",
  5765. "reference": "aa5030cfa5405eccfdcb1083ce040c2cb8d253bf",
  5766. "shasum": ""
  5767. },
  5768. "require": {
  5769. "php": ">=8.0.0"
  5770. },
  5771. "type": "library",
  5772. "extra": {
  5773. "branch-alias": {
  5774. "dev-master": "1.0.x-dev"
  5775. }
  5776. },
  5777. "autoload": {
  5778. "psr-4": {
  5779. "Psr\\Cache\\": "src/"
  5780. }
  5781. },
  5782. "notification-url": "https://packagist.org/downloads/",
  5783. "license": [
  5784. "MIT"
  5785. ],
  5786. "authors": [
  5787. {
  5788. "name": "PHP-FIG",
  5789. "homepage": "https://www.php-fig.org/"
  5790. }
  5791. ],
  5792. "description": "Common interface for caching libraries",
  5793. "keywords": [
  5794. "cache",
  5795. "psr",
  5796. "psr-6"
  5797. ],
  5798. "support": {
  5799. "source": "https://github.com/php-fig/cache/tree/3.0.0"
  5800. },
  5801. "time": "2021-02-03T23:26:27+00:00"
  5802. },
  5803. {
  5804. "name": "psr/container",
  5805. "version": "2.0.2",
  5806. "source": {
  5807. "type": "git",
  5808. "url": "https://github.com/php-fig/container.git",
  5809. "reference": "c71ecc56dfe541dbd90c5360474fbc405f8d5963"
  5810. },
  5811. "dist": {
  5812. "type": "zip",
  5813. "url": "https://api.github.com/repos/php-fig/container/zipball/c71ecc56dfe541dbd90c5360474fbc405f8d5963",
  5814. "reference": "c71ecc56dfe541dbd90c5360474fbc405f8d5963",
  5815. "shasum": ""
  5816. },
  5817. "require": {
  5818. "php": ">=7.4.0"
  5819. },
  5820. "type": "library",
  5821. "extra": {
  5822. "branch-alias": {
  5823. "dev-master": "2.0.x-dev"
  5824. }
  5825. },
  5826. "autoload": {
  5827. "psr-4": {
  5828. "Psr\\Container\\": "src/"
  5829. }
  5830. },
  5831. "notification-url": "https://packagist.org/downloads/",
  5832. "license": [
  5833. "MIT"
  5834. ],
  5835. "authors": [
  5836. {
  5837. "name": "PHP-FIG",
  5838. "homepage": "https://www.php-fig.org/"
  5839. }
  5840. ],
  5841. "description": "Common Container Interface (PHP FIG PSR-11)",
  5842. "homepage": "https://github.com/php-fig/container",
  5843. "keywords": [
  5844. "PSR-11",
  5845. "container",
  5846. "container-interface",
  5847. "container-interop",
  5848. "psr"
  5849. ],
  5850. "support": {
  5851. "issues": "https://github.com/php-fig/container/issues",
  5852. "source": "https://github.com/php-fig/container/tree/2.0.2"
  5853. },
  5854. "time": "2021-11-05T16:47:00+00:00"
  5855. },
  5856. {
  5857. "name": "psr/event-dispatcher",
  5858. "version": "1.0.0",
  5859. "source": {
  5860. "type": "git",
  5861. "url": "https://github.com/php-fig/event-dispatcher.git",
  5862. "reference": "dbefd12671e8a14ec7f180cab83036ed26714bb0"
  5863. },
  5864. "dist": {
  5865. "type": "zip",
  5866. "url": "https://api.github.com/repos/php-fig/event-dispatcher/zipball/dbefd12671e8a14ec7f180cab83036ed26714bb0",
  5867. "reference": "dbefd12671e8a14ec7f180cab83036ed26714bb0",
  5868. "shasum": ""
  5869. },
  5870. "require": {
  5871. "php": ">=7.2.0"
  5872. },
  5873. "type": "library",
  5874. "extra": {
  5875. "branch-alias": {
  5876. "dev-master": "1.0.x-dev"
  5877. }
  5878. },
  5879. "autoload": {
  5880. "psr-4": {
  5881. "Psr\\EventDispatcher\\": "src/"
  5882. }
  5883. },
  5884. "notification-url": "https://packagist.org/downloads/",
  5885. "license": [
  5886. "MIT"
  5887. ],
  5888. "authors": [
  5889. {
  5890. "name": "PHP-FIG",
  5891. "homepage": "http://www.php-fig.org/"
  5892. }
  5893. ],
  5894. "description": "Standard interfaces for event handling.",
  5895. "keywords": [
  5896. "events",
  5897. "psr",
  5898. "psr-14"
  5899. ],
  5900. "support": {
  5901. "issues": "https://github.com/php-fig/event-dispatcher/issues",
  5902. "source": "https://github.com/php-fig/event-dispatcher/tree/1.0.0"
  5903. },
  5904. "time": "2019-01-08T18:20:26+00:00"
  5905. },
  5906. {
  5907. "name": "psr/http-client",
  5908. "version": "1.0.3",
  5909. "source": {
  5910. "type": "git",
  5911. "url": "https://github.com/php-fig/http-client.git",
  5912. "reference": "bb5906edc1c324c9a05aa0873d40117941e5fa90"
  5913. },
  5914. "dist": {
  5915. "type": "zip",
  5916. "url": "https://api.github.com/repos/php-fig/http-client/zipball/bb5906edc1c324c9a05aa0873d40117941e5fa90",
  5917. "reference": "bb5906edc1c324c9a05aa0873d40117941e5fa90",
  5918. "shasum": ""
  5919. },
  5920. "require": {
  5921. "php": "^7.0 || ^8.0",
  5922. "psr/http-message": "^1.0 || ^2.0"
  5923. },
  5924. "type": "library",
  5925. "extra": {
  5926. "branch-alias": {
  5927. "dev-master": "1.0.x-dev"
  5928. }
  5929. },
  5930. "autoload": {
  5931. "psr-4": {
  5932. "Psr\\Http\\Client\\": "src/"
  5933. }
  5934. },
  5935. "notification-url": "https://packagist.org/downloads/",
  5936. "license": [
  5937. "MIT"
  5938. ],
  5939. "authors": [
  5940. {
  5941. "name": "PHP-FIG",
  5942. "homepage": "https://www.php-fig.org/"
  5943. }
  5944. ],
  5945. "description": "Common interface for HTTP clients",
  5946. "homepage": "https://github.com/php-fig/http-client",
  5947. "keywords": [
  5948. "http",
  5949. "http-client",
  5950. "psr",
  5951. "psr-18"
  5952. ],
  5953. "support": {
  5954. "source": "https://github.com/php-fig/http-client"
  5955. },
  5956. "time": "2023-09-23T14:17:50+00:00"
  5957. },
  5958. {
  5959. "name": "psr/http-factory",
  5960. "version": "1.0.2",
  5961. "source": {
  5962. "type": "git",
  5963. "url": "https://github.com/php-fig/http-factory.git",
  5964. "reference": "e616d01114759c4c489f93b099585439f795fe35"
  5965. },
  5966. "dist": {
  5967. "type": "zip",
  5968. "url": "https://api.github.com/repos/php-fig/http-factory/zipball/e616d01114759c4c489f93b099585439f795fe35",
  5969. "reference": "e616d01114759c4c489f93b099585439f795fe35",
  5970. "shasum": ""
  5971. },
  5972. "require": {
  5973. "php": ">=7.0.0",
  5974. "psr/http-message": "^1.0 || ^2.0"
  5975. },
  5976. "type": "library",
  5977. "extra": {
  5978. "branch-alias": {
  5979. "dev-master": "1.0.x-dev"
  5980. }
  5981. },
  5982. "autoload": {
  5983. "psr-4": {
  5984. "Psr\\Http\\Message\\": "src/"
  5985. }
  5986. },
  5987. "notification-url": "https://packagist.org/downloads/",
  5988. "license": [
  5989. "MIT"
  5990. ],
  5991. "authors": [
  5992. {
  5993. "name": "PHP-FIG",
  5994. "homepage": "https://www.php-fig.org/"
  5995. }
  5996. ],
  5997. "description": "Common interfaces for PSR-7 HTTP message factories",
  5998. "keywords": [
  5999. "factory",
  6000. "http",
  6001. "message",
  6002. "psr",
  6003. "psr-17",
  6004. "psr-7",
  6005. "request",
  6006. "response"
  6007. ],
  6008. "support": {
  6009. "source": "https://github.com/php-fig/http-factory/tree/1.0.2"
  6010. },
  6011. "time": "2023-04-10T20:10:41+00:00"
  6012. },
  6013. {
  6014. "name": "psr/http-message",
  6015. "version": "2.0",
  6016. "source": {
  6017. "type": "git",
  6018. "url": "https://github.com/php-fig/http-message.git",
  6019. "reference": "402d35bcb92c70c026d1a6a9883f06b2ead23d71"
  6020. },
  6021. "dist": {
  6022. "type": "zip",
  6023. "url": "https://api.github.com/repos/php-fig/http-message/zipball/402d35bcb92c70c026d1a6a9883f06b2ead23d71",
  6024. "reference": "402d35bcb92c70c026d1a6a9883f06b2ead23d71",
  6025. "shasum": ""
  6026. },
  6027. "require": {
  6028. "php": "^7.2 || ^8.0"
  6029. },
  6030. "type": "library",
  6031. "extra": {
  6032. "branch-alias": {
  6033. "dev-master": "2.0.x-dev"
  6034. }
  6035. },
  6036. "autoload": {
  6037. "psr-4": {
  6038. "Psr\\Http\\Message\\": "src/"
  6039. }
  6040. },
  6041. "notification-url": "https://packagist.org/downloads/",
  6042. "license": [
  6043. "MIT"
  6044. ],
  6045. "authors": [
  6046. {
  6047. "name": "PHP-FIG",
  6048. "homepage": "https://www.php-fig.org/"
  6049. }
  6050. ],
  6051. "description": "Common interface for HTTP messages",
  6052. "homepage": "https://github.com/php-fig/http-message",
  6053. "keywords": [
  6054. "http",
  6055. "http-message",
  6056. "psr",
  6057. "psr-7",
  6058. "request",
  6059. "response"
  6060. ],
  6061. "support": {
  6062. "source": "https://github.com/php-fig/http-message/tree/2.0"
  6063. },
  6064. "time": "2023-04-04T09:54:51+00:00"
  6065. },
  6066. {
  6067. "name": "psr/log",
  6068. "version": "3.0.0",
  6069. "source": {
  6070. "type": "git",
  6071. "url": "https://github.com/php-fig/log.git",
  6072. "reference": "fe5ea303b0887d5caefd3d431c3e61ad47037001"
  6073. },
  6074. "dist": {
  6075. "type": "zip",
  6076. "url": "https://api.github.com/repos/php-fig/log/zipball/fe5ea303b0887d5caefd3d431c3e61ad47037001",
  6077. "reference": "fe5ea303b0887d5caefd3d431c3e61ad47037001",
  6078. "shasum": ""
  6079. },
  6080. "require": {
  6081. "php": ">=8.0.0"
  6082. },
  6083. "type": "library",
  6084. "extra": {
  6085. "branch-alias": {
  6086. "dev-master": "3.x-dev"
  6087. }
  6088. },
  6089. "autoload": {
  6090. "psr-4": {
  6091. "Psr\\Log\\": "src"
  6092. }
  6093. },
  6094. "notification-url": "https://packagist.org/downloads/",
  6095. "license": [
  6096. "MIT"
  6097. ],
  6098. "authors": [
  6099. {
  6100. "name": "PHP-FIG",
  6101. "homepage": "https://www.php-fig.org/"
  6102. }
  6103. ],
  6104. "description": "Common interface for logging libraries",
  6105. "homepage": "https://github.com/php-fig/log",
  6106. "keywords": [
  6107. "log",
  6108. "psr",
  6109. "psr-3"
  6110. ],
  6111. "support": {
  6112. "source": "https://github.com/php-fig/log/tree/3.0.0"
  6113. },
  6114. "time": "2021-07-14T16:46:02+00:00"
  6115. },
  6116. {
  6117. "name": "psy/psysh",
  6118. "version": "v0.12.0",
  6119. "source": {
  6120. "type": "git",
  6121. "url": "https://github.com/bobthecow/psysh.git",
  6122. "reference": "750bf031a48fd07c673dbe3f11f72362ea306d0d"
  6123. },
  6124. "dist": {
  6125. "type": "zip",
  6126. "url": "https://api.github.com/repos/bobthecow/psysh/zipball/750bf031a48fd07c673dbe3f11f72362ea306d0d",
  6127. "reference": "750bf031a48fd07c673dbe3f11f72362ea306d0d",
  6128. "shasum": ""
  6129. },
  6130. "require": {
  6131. "ext-json": "*",
  6132. "ext-tokenizer": "*",
  6133. "nikic/php-parser": "^5.0 || ^4.0",
  6134. "php": "^8.0 || ^7.4",
  6135. "symfony/console": "^7.0 || ^6.0 || ^5.0 || ^4.0 || ^3.4",
  6136. "symfony/var-dumper": "^7.0 || ^6.0 || ^5.0 || ^4.0 || ^3.4"
  6137. },
  6138. "conflict": {
  6139. "symfony/console": "4.4.37 || 5.3.14 || 5.3.15 || 5.4.3 || 5.4.4 || 6.0.3 || 6.0.4"
  6140. },
  6141. "require-dev": {
  6142. "bamarni/composer-bin-plugin": "^1.2"
  6143. },
  6144. "suggest": {
  6145. "ext-pcntl": "Enabling the PCNTL extension makes PsySH a lot happier :)",
  6146. "ext-pdo-sqlite": "The doc command requires SQLite to work.",
  6147. "ext-posix": "If you have PCNTL, you'll want the POSIX extension as well."
  6148. },
  6149. "bin": [
  6150. "bin/psysh"
  6151. ],
  6152. "type": "library",
  6153. "extra": {
  6154. "branch-alias": {
  6155. "dev-main": "0.12.x-dev"
  6156. },
  6157. "bamarni-bin": {
  6158. "bin-links": false,
  6159. "forward-command": false
  6160. }
  6161. },
  6162. "autoload": {
  6163. "files": [
  6164. "src/functions.php"
  6165. ],
  6166. "psr-4": {
  6167. "Psy\\": "src/"
  6168. }
  6169. },
  6170. "notification-url": "https://packagist.org/downloads/",
  6171. "license": [
  6172. "MIT"
  6173. ],
  6174. "authors": [
  6175. {
  6176. "name": "Justin Hileman",
  6177. "email": "justin@justinhileman.info",
  6178. "homepage": "http://justinhileman.com"
  6179. }
  6180. ],
  6181. "description": "An interactive shell for modern PHP.",
  6182. "homepage": "http://psysh.org",
  6183. "keywords": [
  6184. "REPL",
  6185. "console",
  6186. "interactive",
  6187. "shell"
  6188. ],
  6189. "support": {
  6190. "issues": "https://github.com/bobthecow/psysh/issues",
  6191. "source": "https://github.com/bobthecow/psysh/tree/v0.12.0"
  6192. },
  6193. "time": "2023-12-20T15:28:09+00:00"
  6194. },
  6195. {
  6196. "name": "ralouphie/getallheaders",
  6197. "version": "3.0.3",
  6198. "source": {
  6199. "type": "git",
  6200. "url": "https://github.com/ralouphie/getallheaders.git",
  6201. "reference": "120b605dfeb996808c31b6477290a714d356e822"
  6202. },
  6203. "dist": {
  6204. "type": "zip",
  6205. "url": "https://api.github.com/repos/ralouphie/getallheaders/zipball/120b605dfeb996808c31b6477290a714d356e822",
  6206. "reference": "120b605dfeb996808c31b6477290a714d356e822",
  6207. "shasum": ""
  6208. },
  6209. "require": {
  6210. "php": ">=5.6"
  6211. },
  6212. "require-dev": {
  6213. "php-coveralls/php-coveralls": "^2.1",
  6214. "phpunit/phpunit": "^5 || ^6.5"
  6215. },
  6216. "type": "library",
  6217. "autoload": {
  6218. "files": [
  6219. "src/getallheaders.php"
  6220. ]
  6221. },
  6222. "notification-url": "https://packagist.org/downloads/",
  6223. "license": [
  6224. "MIT"
  6225. ],
  6226. "authors": [
  6227. {
  6228. "name": "Ralph Khattar",
  6229. "email": "ralph.khattar@gmail.com"
  6230. }
  6231. ],
  6232. "description": "A polyfill for getallheaders.",
  6233. "support": {
  6234. "issues": "https://github.com/ralouphie/getallheaders/issues",
  6235. "source": "https://github.com/ralouphie/getallheaders/tree/develop"
  6236. },
  6237. "time": "2019-03-08T08:55:37+00:00"
  6238. },
  6239. {
  6240. "name": "sebastian/diff",
  6241. "version": "4.0.6",
  6242. "source": {
  6243. "type": "git",
  6244. "url": "https://github.com/sebastianbergmann/diff.git",
  6245. "reference": "ba01945089c3a293b01ba9badc29ad55b106b0bc"
  6246. },
  6247. "dist": {
  6248. "type": "zip",
  6249. "url": "https://api.github.com/repos/sebastianbergmann/diff/zipball/ba01945089c3a293b01ba9badc29ad55b106b0bc",
  6250. "reference": "ba01945089c3a293b01ba9badc29ad55b106b0bc",
  6251. "shasum": ""
  6252. },
  6253. "require": {
  6254. "php": ">=7.3"
  6255. },
  6256. "require-dev": {
  6257. "phpunit/phpunit": "^9.3",
  6258. "symfony/process": "^4.2 || ^5"
  6259. },
  6260. "type": "library",
  6261. "extra": {
  6262. "branch-alias": {
  6263. "dev-master": "4.0-dev"
  6264. }
  6265. },
  6266. "autoload": {
  6267. "classmap": [
  6268. "src/"
  6269. ]
  6270. },
  6271. "notification-url": "https://packagist.org/downloads/",
  6272. "license": [
  6273. "BSD-3-Clause"
  6274. ],
  6275. "authors": [
  6276. {
  6277. "name": "Sebastian Bergmann",
  6278. "email": "sebastian@phpunit.de"
  6279. },
  6280. {
  6281. "name": "Kore Nordmann",
  6282. "email": "mail@kore-nordmann.de"
  6283. }
  6284. ],
  6285. "description": "Diff implementation",
  6286. "homepage": "https://github.com/sebastianbergmann/diff",
  6287. "keywords": [
  6288. "diff",
  6289. "udiff",
  6290. "unidiff",
  6291. "unified diff"
  6292. ],
  6293. "support": {
  6294. "issues": "https://github.com/sebastianbergmann/diff/issues",
  6295. "source": "https://github.com/sebastianbergmann/diff/tree/4.0.6"
  6296. },
  6297. "funding": [
  6298. {
  6299. "url": "https://github.com/sebastianbergmann",
  6300. "type": "github"
  6301. }
  6302. ],
  6303. "time": "2024-03-02T06:30:58+00:00"
  6304. },
  6305. {
  6306. "name": "symfony/console",
  6307. "version": "v6.4.4",
  6308. "source": {
  6309. "type": "git",
  6310. "url": "https://github.com/symfony/console.git",
  6311. "reference": "0d9e4eb5ad413075624378f474c4167ea202de78"
  6312. },
  6313. "dist": {
  6314. "type": "zip",
  6315. "url": "https://api.github.com/repos/symfony/console/zipball/0d9e4eb5ad413075624378f474c4167ea202de78",
  6316. "reference": "0d9e4eb5ad413075624378f474c4167ea202de78",
  6317. "shasum": ""
  6318. },
  6319. "require": {
  6320. "php": ">=8.1",
  6321. "symfony/deprecation-contracts": "^2.5|^3",
  6322. "symfony/polyfill-mbstring": "~1.0",
  6323. "symfony/service-contracts": "^2.5|^3",
  6324. "symfony/string": "^5.4|^6.0|^7.0"
  6325. },
  6326. "conflict": {
  6327. "symfony/dependency-injection": "<5.4",
  6328. "symfony/dotenv": "<5.4",
  6329. "symfony/event-dispatcher": "<5.4",
  6330. "symfony/lock": "<5.4",
  6331. "symfony/process": "<5.4"
  6332. },
  6333. "provide": {
  6334. "psr/log-implementation": "1.0|2.0|3.0"
  6335. },
  6336. "require-dev": {
  6337. "psr/log": "^1|^2|^3",
  6338. "symfony/config": "^5.4|^6.0|^7.0",
  6339. "symfony/dependency-injection": "^5.4|^6.0|^7.0",
  6340. "symfony/event-dispatcher": "^5.4|^6.0|^7.0",
  6341. "symfony/http-foundation": "^6.4|^7.0",
  6342. "symfony/http-kernel": "^6.4|^7.0",
  6343. "symfony/lock": "^5.4|^6.0|^7.0",
  6344. "symfony/messenger": "^5.4|^6.0|^7.0",
  6345. "symfony/process": "^5.4|^6.0|^7.0",
  6346. "symfony/stopwatch": "^5.4|^6.0|^7.0",
  6347. "symfony/var-dumper": "^5.4|^6.0|^7.0"
  6348. },
  6349. "type": "library",
  6350. "autoload": {
  6351. "psr-4": {
  6352. "Symfony\\Component\\Console\\": ""
  6353. },
  6354. "exclude-from-classmap": [
  6355. "/Tests/"
  6356. ]
  6357. },
  6358. "notification-url": "https://packagist.org/downloads/",
  6359. "license": [
  6360. "MIT"
  6361. ],
  6362. "authors": [
  6363. {
  6364. "name": "Fabien Potencier",
  6365. "email": "fabien@symfony.com"
  6366. },
  6367. {
  6368. "name": "Symfony Community",
  6369. "homepage": "https://symfony.com/contributors"
  6370. }
  6371. ],
  6372. "description": "Eases the creation of beautiful and testable command line interfaces",
  6373. "homepage": "https://symfony.com",
  6374. "keywords": [
  6375. "cli",
  6376. "command-line",
  6377. "console",
  6378. "terminal"
  6379. ],
  6380. "support": {
  6381. "source": "https://github.com/symfony/console/tree/v6.4.4"
  6382. },
  6383. "funding": [
  6384. {
  6385. "url": "https://symfony.com/sponsor",
  6386. "type": "custom"
  6387. },
  6388. {
  6389. "url": "https://github.com/fabpot",
  6390. "type": "github"
  6391. },
  6392. {
  6393. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6394. "type": "tidelift"
  6395. }
  6396. ],
  6397. "time": "2024-02-22T20:27:10+00:00"
  6398. },
  6399. {
  6400. "name": "symfony/dependency-injection",
  6401. "version": "v6.4.4",
  6402. "source": {
  6403. "type": "git",
  6404. "url": "https://github.com/symfony/dependency-injection.git",
  6405. "reference": "6236e5e843cb763e9d0f74245678b994afea5363"
  6406. },
  6407. "dist": {
  6408. "type": "zip",
  6409. "url": "https://api.github.com/repos/symfony/dependency-injection/zipball/6236e5e843cb763e9d0f74245678b994afea5363",
  6410. "reference": "6236e5e843cb763e9d0f74245678b994afea5363",
  6411. "shasum": ""
  6412. },
  6413. "require": {
  6414. "php": ">=8.1",
  6415. "psr/container": "^1.1|^2.0",
  6416. "symfony/deprecation-contracts": "^2.5|^3",
  6417. "symfony/service-contracts": "^2.5|^3.0",
  6418. "symfony/var-exporter": "^6.2.10|^7.0"
  6419. },
  6420. "conflict": {
  6421. "ext-psr": "<1.1|>=2",
  6422. "symfony/config": "<6.1",
  6423. "symfony/finder": "<5.4",
  6424. "symfony/proxy-manager-bridge": "<6.3",
  6425. "symfony/yaml": "<5.4"
  6426. },
  6427. "provide": {
  6428. "psr/container-implementation": "1.1|2.0",
  6429. "symfony/service-implementation": "1.1|2.0|3.0"
  6430. },
  6431. "require-dev": {
  6432. "symfony/config": "^6.1|^7.0",
  6433. "symfony/expression-language": "^5.4|^6.0|^7.0",
  6434. "symfony/yaml": "^5.4|^6.0|^7.0"
  6435. },
  6436. "type": "library",
  6437. "autoload": {
  6438. "psr-4": {
  6439. "Symfony\\Component\\DependencyInjection\\": ""
  6440. },
  6441. "exclude-from-classmap": [
  6442. "/Tests/"
  6443. ]
  6444. },
  6445. "notification-url": "https://packagist.org/downloads/",
  6446. "license": [
  6447. "MIT"
  6448. ],
  6449. "authors": [
  6450. {
  6451. "name": "Fabien Potencier",
  6452. "email": "fabien@symfony.com"
  6453. },
  6454. {
  6455. "name": "Symfony Community",
  6456. "homepage": "https://symfony.com/contributors"
  6457. }
  6458. ],
  6459. "description": "Allows you to standardize and centralize the way objects are constructed in your application",
  6460. "homepage": "https://symfony.com",
  6461. "support": {
  6462. "source": "https://github.com/symfony/dependency-injection/tree/v6.4.4"
  6463. },
  6464. "funding": [
  6465. {
  6466. "url": "https://symfony.com/sponsor",
  6467. "type": "custom"
  6468. },
  6469. {
  6470. "url": "https://github.com/fabpot",
  6471. "type": "github"
  6472. },
  6473. {
  6474. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6475. "type": "tidelift"
  6476. }
  6477. ],
  6478. "time": "2024-02-22T20:27:10+00:00"
  6479. },
  6480. {
  6481. "name": "symfony/deprecation-contracts",
  6482. "version": "v3.4.0",
  6483. "source": {
  6484. "type": "git",
  6485. "url": "https://github.com/symfony/deprecation-contracts.git",
  6486. "reference": "7c3aff79d10325257a001fcf92d991f24fc967cf"
  6487. },
  6488. "dist": {
  6489. "type": "zip",
  6490. "url": "https://api.github.com/repos/symfony/deprecation-contracts/zipball/7c3aff79d10325257a001fcf92d991f24fc967cf",
  6491. "reference": "7c3aff79d10325257a001fcf92d991f24fc967cf",
  6492. "shasum": ""
  6493. },
  6494. "require": {
  6495. "php": ">=8.1"
  6496. },
  6497. "type": "library",
  6498. "extra": {
  6499. "branch-alias": {
  6500. "dev-main": "3.4-dev"
  6501. },
  6502. "thanks": {
  6503. "name": "symfony/contracts",
  6504. "url": "https://github.com/symfony/contracts"
  6505. }
  6506. },
  6507. "autoload": {
  6508. "files": [
  6509. "function.php"
  6510. ]
  6511. },
  6512. "notification-url": "https://packagist.org/downloads/",
  6513. "license": [
  6514. "MIT"
  6515. ],
  6516. "authors": [
  6517. {
  6518. "name": "Nicolas Grekas",
  6519. "email": "p@tchwork.com"
  6520. },
  6521. {
  6522. "name": "Symfony Community",
  6523. "homepage": "https://symfony.com/contributors"
  6524. }
  6525. ],
  6526. "description": "A generic function and convention to trigger deprecation notices",
  6527. "homepage": "https://symfony.com",
  6528. "support": {
  6529. "source": "https://github.com/symfony/deprecation-contracts/tree/v3.4.0"
  6530. },
  6531. "funding": [
  6532. {
  6533. "url": "https://symfony.com/sponsor",
  6534. "type": "custom"
  6535. },
  6536. {
  6537. "url": "https://github.com/fabpot",
  6538. "type": "github"
  6539. },
  6540. {
  6541. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6542. "type": "tidelift"
  6543. }
  6544. ],
  6545. "time": "2023-05-23T14:45:45+00:00"
  6546. },
  6547. {
  6548. "name": "symfony/error-handler",
  6549. "version": "v6.4.4",
  6550. "source": {
  6551. "type": "git",
  6552. "url": "https://github.com/symfony/error-handler.git",
  6553. "reference": "c725219bdf2afc59423c32793d5019d2a904e13a"
  6554. },
  6555. "dist": {
  6556. "type": "zip",
  6557. "url": "https://api.github.com/repos/symfony/error-handler/zipball/c725219bdf2afc59423c32793d5019d2a904e13a",
  6558. "reference": "c725219bdf2afc59423c32793d5019d2a904e13a",
  6559. "shasum": ""
  6560. },
  6561. "require": {
  6562. "php": ">=8.1",
  6563. "psr/log": "^1|^2|^3",
  6564. "symfony/var-dumper": "^5.4|^6.0|^7.0"
  6565. },
  6566. "conflict": {
  6567. "symfony/deprecation-contracts": "<2.5",
  6568. "symfony/http-kernel": "<6.4"
  6569. },
  6570. "require-dev": {
  6571. "symfony/deprecation-contracts": "^2.5|^3",
  6572. "symfony/http-kernel": "^6.4|^7.0",
  6573. "symfony/serializer": "^5.4|^6.0|^7.0"
  6574. },
  6575. "bin": [
  6576. "Resources/bin/patch-type-declarations"
  6577. ],
  6578. "type": "library",
  6579. "autoload": {
  6580. "psr-4": {
  6581. "Symfony\\Component\\ErrorHandler\\": ""
  6582. },
  6583. "exclude-from-classmap": [
  6584. "/Tests/"
  6585. ]
  6586. },
  6587. "notification-url": "https://packagist.org/downloads/",
  6588. "license": [
  6589. "MIT"
  6590. ],
  6591. "authors": [
  6592. {
  6593. "name": "Fabien Potencier",
  6594. "email": "fabien@symfony.com"
  6595. },
  6596. {
  6597. "name": "Symfony Community",
  6598. "homepage": "https://symfony.com/contributors"
  6599. }
  6600. ],
  6601. "description": "Provides tools to manage errors and ease debugging PHP code",
  6602. "homepage": "https://symfony.com",
  6603. "support": {
  6604. "source": "https://github.com/symfony/error-handler/tree/v6.4.4"
  6605. },
  6606. "funding": [
  6607. {
  6608. "url": "https://symfony.com/sponsor",
  6609. "type": "custom"
  6610. },
  6611. {
  6612. "url": "https://github.com/fabpot",
  6613. "type": "github"
  6614. },
  6615. {
  6616. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6617. "type": "tidelift"
  6618. }
  6619. ],
  6620. "time": "2024-02-22T20:27:10+00:00"
  6621. },
  6622. {
  6623. "name": "symfony/event-dispatcher",
  6624. "version": "v6.4.3",
  6625. "source": {
  6626. "type": "git",
  6627. "url": "https://github.com/symfony/event-dispatcher.git",
  6628. "reference": "ae9d3a6f3003a6caf56acd7466d8d52378d44fef"
  6629. },
  6630. "dist": {
  6631. "type": "zip",
  6632. "url": "https://api.github.com/repos/symfony/event-dispatcher/zipball/ae9d3a6f3003a6caf56acd7466d8d52378d44fef",
  6633. "reference": "ae9d3a6f3003a6caf56acd7466d8d52378d44fef",
  6634. "shasum": ""
  6635. },
  6636. "require": {
  6637. "php": ">=8.1",
  6638. "symfony/event-dispatcher-contracts": "^2.5|^3"
  6639. },
  6640. "conflict": {
  6641. "symfony/dependency-injection": "<5.4",
  6642. "symfony/service-contracts": "<2.5"
  6643. },
  6644. "provide": {
  6645. "psr/event-dispatcher-implementation": "1.0",
  6646. "symfony/event-dispatcher-implementation": "2.0|3.0"
  6647. },
  6648. "require-dev": {
  6649. "psr/log": "^1|^2|^3",
  6650. "symfony/config": "^5.4|^6.0|^7.0",
  6651. "symfony/dependency-injection": "^5.4|^6.0|^7.0",
  6652. "symfony/error-handler": "^5.4|^6.0|^7.0",
  6653. "symfony/expression-language": "^5.4|^6.0|^7.0",
  6654. "symfony/http-foundation": "^5.4|^6.0|^7.0",
  6655. "symfony/service-contracts": "^2.5|^3",
  6656. "symfony/stopwatch": "^5.4|^6.0|^7.0"
  6657. },
  6658. "type": "library",
  6659. "autoload": {
  6660. "psr-4": {
  6661. "Symfony\\Component\\EventDispatcher\\": ""
  6662. },
  6663. "exclude-from-classmap": [
  6664. "/Tests/"
  6665. ]
  6666. },
  6667. "notification-url": "https://packagist.org/downloads/",
  6668. "license": [
  6669. "MIT"
  6670. ],
  6671. "authors": [
  6672. {
  6673. "name": "Fabien Potencier",
  6674. "email": "fabien@symfony.com"
  6675. },
  6676. {
  6677. "name": "Symfony Community",
  6678. "homepage": "https://symfony.com/contributors"
  6679. }
  6680. ],
  6681. "description": "Provides tools that allow your application components to communicate with each other by dispatching events and listening to them",
  6682. "homepage": "https://symfony.com",
  6683. "support": {
  6684. "source": "https://github.com/symfony/event-dispatcher/tree/v6.4.3"
  6685. },
  6686. "funding": [
  6687. {
  6688. "url": "https://symfony.com/sponsor",
  6689. "type": "custom"
  6690. },
  6691. {
  6692. "url": "https://github.com/fabpot",
  6693. "type": "github"
  6694. },
  6695. {
  6696. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6697. "type": "tidelift"
  6698. }
  6699. ],
  6700. "time": "2024-01-23T14:51:35+00:00"
  6701. },
  6702. {
  6703. "name": "symfony/event-dispatcher-contracts",
  6704. "version": "v3.4.0",
  6705. "source": {
  6706. "type": "git",
  6707. "url": "https://github.com/symfony/event-dispatcher-contracts.git",
  6708. "reference": "a76aed96a42d2b521153fb382d418e30d18b59df"
  6709. },
  6710. "dist": {
  6711. "type": "zip",
  6712. "url": "https://api.github.com/repos/symfony/event-dispatcher-contracts/zipball/a76aed96a42d2b521153fb382d418e30d18b59df",
  6713. "reference": "a76aed96a42d2b521153fb382d418e30d18b59df",
  6714. "shasum": ""
  6715. },
  6716. "require": {
  6717. "php": ">=8.1",
  6718. "psr/event-dispatcher": "^1"
  6719. },
  6720. "type": "library",
  6721. "extra": {
  6722. "branch-alias": {
  6723. "dev-main": "3.4-dev"
  6724. },
  6725. "thanks": {
  6726. "name": "symfony/contracts",
  6727. "url": "https://github.com/symfony/contracts"
  6728. }
  6729. },
  6730. "autoload": {
  6731. "psr-4": {
  6732. "Symfony\\Contracts\\EventDispatcher\\": ""
  6733. }
  6734. },
  6735. "notification-url": "https://packagist.org/downloads/",
  6736. "license": [
  6737. "MIT"
  6738. ],
  6739. "authors": [
  6740. {
  6741. "name": "Nicolas Grekas",
  6742. "email": "p@tchwork.com"
  6743. },
  6744. {
  6745. "name": "Symfony Community",
  6746. "homepage": "https://symfony.com/contributors"
  6747. }
  6748. ],
  6749. "description": "Generic abstractions related to dispatching event",
  6750. "homepage": "https://symfony.com",
  6751. "keywords": [
  6752. "abstractions",
  6753. "contracts",
  6754. "decoupling",
  6755. "interfaces",
  6756. "interoperability",
  6757. "standards"
  6758. ],
  6759. "support": {
  6760. "source": "https://github.com/symfony/event-dispatcher-contracts/tree/v3.4.0"
  6761. },
  6762. "funding": [
  6763. {
  6764. "url": "https://symfony.com/sponsor",
  6765. "type": "custom"
  6766. },
  6767. {
  6768. "url": "https://github.com/fabpot",
  6769. "type": "github"
  6770. },
  6771. {
  6772. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6773. "type": "tidelift"
  6774. }
  6775. ],
  6776. "time": "2023-05-23T14:45:45+00:00"
  6777. },
  6778. {
  6779. "name": "symfony/filesystem",
  6780. "version": "v6.4.3",
  6781. "source": {
  6782. "type": "git",
  6783. "url": "https://github.com/symfony/filesystem.git",
  6784. "reference": "7f3b1755eb49297a0827a7575d5d2b2fd11cc9fb"
  6785. },
  6786. "dist": {
  6787. "type": "zip",
  6788. "url": "https://api.github.com/repos/symfony/filesystem/zipball/7f3b1755eb49297a0827a7575d5d2b2fd11cc9fb",
  6789. "reference": "7f3b1755eb49297a0827a7575d5d2b2fd11cc9fb",
  6790. "shasum": ""
  6791. },
  6792. "require": {
  6793. "php": ">=8.1",
  6794. "symfony/polyfill-ctype": "~1.8",
  6795. "symfony/polyfill-mbstring": "~1.8"
  6796. },
  6797. "type": "library",
  6798. "autoload": {
  6799. "psr-4": {
  6800. "Symfony\\Component\\Filesystem\\": ""
  6801. },
  6802. "exclude-from-classmap": [
  6803. "/Tests/"
  6804. ]
  6805. },
  6806. "notification-url": "https://packagist.org/downloads/",
  6807. "license": [
  6808. "MIT"
  6809. ],
  6810. "authors": [
  6811. {
  6812. "name": "Fabien Potencier",
  6813. "email": "fabien@symfony.com"
  6814. },
  6815. {
  6816. "name": "Symfony Community",
  6817. "homepage": "https://symfony.com/contributors"
  6818. }
  6819. ],
  6820. "description": "Provides basic utilities for the filesystem",
  6821. "homepage": "https://symfony.com",
  6822. "support": {
  6823. "source": "https://github.com/symfony/filesystem/tree/v6.4.3"
  6824. },
  6825. "funding": [
  6826. {
  6827. "url": "https://symfony.com/sponsor",
  6828. "type": "custom"
  6829. },
  6830. {
  6831. "url": "https://github.com/fabpot",
  6832. "type": "github"
  6833. },
  6834. {
  6835. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6836. "type": "tidelift"
  6837. }
  6838. ],
  6839. "time": "2024-01-23T14:51:35+00:00"
  6840. },
  6841. {
  6842. "name": "symfony/finder",
  6843. "version": "v6.4.0",
  6844. "source": {
  6845. "type": "git",
  6846. "url": "https://github.com/symfony/finder.git",
  6847. "reference": "11d736e97f116ac375a81f96e662911a34cd50ce"
  6848. },
  6849. "dist": {
  6850. "type": "zip",
  6851. "url": "https://api.github.com/repos/symfony/finder/zipball/11d736e97f116ac375a81f96e662911a34cd50ce",
  6852. "reference": "11d736e97f116ac375a81f96e662911a34cd50ce",
  6853. "shasum": ""
  6854. },
  6855. "require": {
  6856. "php": ">=8.1"
  6857. },
  6858. "require-dev": {
  6859. "symfony/filesystem": "^6.0|^7.0"
  6860. },
  6861. "type": "library",
  6862. "autoload": {
  6863. "psr-4": {
  6864. "Symfony\\Component\\Finder\\": ""
  6865. },
  6866. "exclude-from-classmap": [
  6867. "/Tests/"
  6868. ]
  6869. },
  6870. "notification-url": "https://packagist.org/downloads/",
  6871. "license": [
  6872. "MIT"
  6873. ],
  6874. "authors": [
  6875. {
  6876. "name": "Fabien Potencier",
  6877. "email": "fabien@symfony.com"
  6878. },
  6879. {
  6880. "name": "Symfony Community",
  6881. "homepage": "https://symfony.com/contributors"
  6882. }
  6883. ],
  6884. "description": "Finds files and directories via an intuitive fluent interface",
  6885. "homepage": "https://symfony.com",
  6886. "support": {
  6887. "source": "https://github.com/symfony/finder/tree/v6.4.0"
  6888. },
  6889. "funding": [
  6890. {
  6891. "url": "https://symfony.com/sponsor",
  6892. "type": "custom"
  6893. },
  6894. {
  6895. "url": "https://github.com/fabpot",
  6896. "type": "github"
  6897. },
  6898. {
  6899. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6900. "type": "tidelift"
  6901. }
  6902. ],
  6903. "time": "2023-10-31T17:30:12+00:00"
  6904. },
  6905. {
  6906. "name": "symfony/http-foundation",
  6907. "version": "v6.4.4",
  6908. "source": {
  6909. "type": "git",
  6910. "url": "https://github.com/symfony/http-foundation.git",
  6911. "reference": "ebc713bc6e6f4b53f46539fc158be85dfcd77304"
  6912. },
  6913. "dist": {
  6914. "type": "zip",
  6915. "url": "https://api.github.com/repos/symfony/http-foundation/zipball/ebc713bc6e6f4b53f46539fc158be85dfcd77304",
  6916. "reference": "ebc713bc6e6f4b53f46539fc158be85dfcd77304",
  6917. "shasum": ""
  6918. },
  6919. "require": {
  6920. "php": ">=8.1",
  6921. "symfony/deprecation-contracts": "^2.5|^3",
  6922. "symfony/polyfill-mbstring": "~1.1",
  6923. "symfony/polyfill-php83": "^1.27"
  6924. },
  6925. "conflict": {
  6926. "symfony/cache": "<6.3"
  6927. },
  6928. "require-dev": {
  6929. "doctrine/dbal": "^2.13.1|^3|^4",
  6930. "predis/predis": "^1.1|^2.0",
  6931. "symfony/cache": "^6.3|^7.0",
  6932. "symfony/dependency-injection": "^5.4|^6.0|^7.0",
  6933. "symfony/expression-language": "^5.4|^6.0|^7.0",
  6934. "symfony/http-kernel": "^5.4.12|^6.0.12|^6.1.4|^7.0",
  6935. "symfony/mime": "^5.4|^6.0|^7.0",
  6936. "symfony/rate-limiter": "^5.4|^6.0|^7.0"
  6937. },
  6938. "type": "library",
  6939. "autoload": {
  6940. "psr-4": {
  6941. "Symfony\\Component\\HttpFoundation\\": ""
  6942. },
  6943. "exclude-from-classmap": [
  6944. "/Tests/"
  6945. ]
  6946. },
  6947. "notification-url": "https://packagist.org/downloads/",
  6948. "license": [
  6949. "MIT"
  6950. ],
  6951. "authors": [
  6952. {
  6953. "name": "Fabien Potencier",
  6954. "email": "fabien@symfony.com"
  6955. },
  6956. {
  6957. "name": "Symfony Community",
  6958. "homepage": "https://symfony.com/contributors"
  6959. }
  6960. ],
  6961. "description": "Defines an object-oriented layer for the HTTP specification",
  6962. "homepage": "https://symfony.com",
  6963. "support": {
  6964. "source": "https://github.com/symfony/http-foundation/tree/v6.4.4"
  6965. },
  6966. "funding": [
  6967. {
  6968. "url": "https://symfony.com/sponsor",
  6969. "type": "custom"
  6970. },
  6971. {
  6972. "url": "https://github.com/fabpot",
  6973. "type": "github"
  6974. },
  6975. {
  6976. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6977. "type": "tidelift"
  6978. }
  6979. ],
  6980. "time": "2024-02-08T15:01:18+00:00"
  6981. },
  6982. {
  6983. "name": "symfony/http-kernel",
  6984. "version": "v6.4.4",
  6985. "source": {
  6986. "type": "git",
  6987. "url": "https://github.com/symfony/http-kernel.git",
  6988. "reference": "7a186f64a7f02787c04e8476538624d6aa888e42"
  6989. },
  6990. "dist": {
  6991. "type": "zip",
  6992. "url": "https://api.github.com/repos/symfony/http-kernel/zipball/7a186f64a7f02787c04e8476538624d6aa888e42",
  6993. "reference": "7a186f64a7f02787c04e8476538624d6aa888e42",
  6994. "shasum": ""
  6995. },
  6996. "require": {
  6997. "php": ">=8.1",
  6998. "psr/log": "^1|^2|^3",
  6999. "symfony/deprecation-contracts": "^2.5|^3",
  7000. "symfony/error-handler": "^6.4|^7.0",
  7001. "symfony/event-dispatcher": "^5.4|^6.0|^7.0",
  7002. "symfony/http-foundation": "^6.4|^7.0",
  7003. "symfony/polyfill-ctype": "^1.8"
  7004. },
  7005. "conflict": {
  7006. "symfony/browser-kit": "<5.4",
  7007. "symfony/cache": "<5.4",
  7008. "symfony/config": "<6.1",
  7009. "symfony/console": "<5.4",
  7010. "symfony/dependency-injection": "<6.4",
  7011. "symfony/doctrine-bridge": "<5.4",
  7012. "symfony/form": "<5.4",
  7013. "symfony/http-client": "<5.4",
  7014. "symfony/http-client-contracts": "<2.5",
  7015. "symfony/mailer": "<5.4",
  7016. "symfony/messenger": "<5.4",
  7017. "symfony/translation": "<5.4",
  7018. "symfony/translation-contracts": "<2.5",
  7019. "symfony/twig-bridge": "<5.4",
  7020. "symfony/validator": "<6.4",
  7021. "symfony/var-dumper": "<6.3",
  7022. "twig/twig": "<2.13"
  7023. },
  7024. "provide": {
  7025. "psr/log-implementation": "1.0|2.0|3.0"
  7026. },
  7027. "require-dev": {
  7028. "psr/cache": "^1.0|^2.0|^3.0",
  7029. "symfony/browser-kit": "^5.4|^6.0|^7.0",
  7030. "symfony/clock": "^6.2|^7.0",
  7031. "symfony/config": "^6.1|^7.0",
  7032. "symfony/console": "^5.4|^6.0|^7.0",
  7033. "symfony/css-selector": "^5.4|^6.0|^7.0",
  7034. "symfony/dependency-injection": "^6.4|^7.0",
  7035. "symfony/dom-crawler": "^5.4|^6.0|^7.0",
  7036. "symfony/expression-language": "^5.4|^6.0|^7.0",
  7037. "symfony/finder": "^5.4|^6.0|^7.0",
  7038. "symfony/http-client-contracts": "^2.5|^3",
  7039. "symfony/process": "^5.4|^6.0|^7.0",
  7040. "symfony/property-access": "^5.4.5|^6.0.5|^7.0",
  7041. "symfony/routing": "^5.4|^6.0|^7.0",
  7042. "symfony/serializer": "^6.4.4|^7.0.4",
  7043. "symfony/stopwatch": "^5.4|^6.0|^7.0",
  7044. "symfony/translation": "^5.4|^6.0|^7.0",
  7045. "symfony/translation-contracts": "^2.5|^3",
  7046. "symfony/uid": "^5.4|^6.0|^7.0",
  7047. "symfony/validator": "^6.4|^7.0",
  7048. "symfony/var-exporter": "^6.2|^7.0",
  7049. "twig/twig": "^2.13|^3.0.4"
  7050. },
  7051. "type": "library",
  7052. "autoload": {
  7053. "psr-4": {
  7054. "Symfony\\Component\\HttpKernel\\": ""
  7055. },
  7056. "exclude-from-classmap": [
  7057. "/Tests/"
  7058. ]
  7059. },
  7060. "notification-url": "https://packagist.org/downloads/",
  7061. "license": [
  7062. "MIT"
  7063. ],
  7064. "authors": [
  7065. {
  7066. "name": "Fabien Potencier",
  7067. "email": "fabien@symfony.com"
  7068. },
  7069. {
  7070. "name": "Symfony Community",
  7071. "homepage": "https://symfony.com/contributors"
  7072. }
  7073. ],
  7074. "description": "Provides a structured process for converting a Request into a Response",
  7075. "homepage": "https://symfony.com",
  7076. "support": {
  7077. "source": "https://github.com/symfony/http-kernel/tree/v6.4.4"
  7078. },
  7079. "funding": [
  7080. {
  7081. "url": "https://symfony.com/sponsor",
  7082. "type": "custom"
  7083. },
  7084. {
  7085. "url": "https://github.com/fabpot",
  7086. "type": "github"
  7087. },
  7088. {
  7089. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7090. "type": "tidelift"
  7091. }
  7092. ],
  7093. "time": "2024-02-27T06:32:13+00:00"
  7094. },
  7095. {
  7096. "name": "symfony/mailer",
  7097. "version": "v6.4.4",
  7098. "source": {
  7099. "type": "git",
  7100. "url": "https://github.com/symfony/mailer.git",
  7101. "reference": "791c5d31a8204cf3db0c66faab70282307f4376b"
  7102. },
  7103. "dist": {
  7104. "type": "zip",
  7105. "url": "https://api.github.com/repos/symfony/mailer/zipball/791c5d31a8204cf3db0c66faab70282307f4376b",
  7106. "reference": "791c5d31a8204cf3db0c66faab70282307f4376b",
  7107. "shasum": ""
  7108. },
  7109. "require": {
  7110. "egulias/email-validator": "^2.1.10|^3|^4",
  7111. "php": ">=8.1",
  7112. "psr/event-dispatcher": "^1",
  7113. "psr/log": "^1|^2|^3",
  7114. "symfony/event-dispatcher": "^5.4|^6.0|^7.0",
  7115. "symfony/mime": "^6.2|^7.0",
  7116. "symfony/service-contracts": "^2.5|^3"
  7117. },
  7118. "conflict": {
  7119. "symfony/http-client-contracts": "<2.5",
  7120. "symfony/http-kernel": "<5.4",
  7121. "symfony/messenger": "<6.2",
  7122. "symfony/mime": "<6.2",
  7123. "symfony/twig-bridge": "<6.2.1"
  7124. },
  7125. "require-dev": {
  7126. "symfony/console": "^5.4|^6.0|^7.0",
  7127. "symfony/http-client": "^5.4|^6.0|^7.0",
  7128. "symfony/messenger": "^6.2|^7.0",
  7129. "symfony/twig-bridge": "^6.2|^7.0"
  7130. },
  7131. "type": "library",
  7132. "autoload": {
  7133. "psr-4": {
  7134. "Symfony\\Component\\Mailer\\": ""
  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": "Fabien Potencier",
  7147. "email": "fabien@symfony.com"
  7148. },
  7149. {
  7150. "name": "Symfony Community",
  7151. "homepage": "https://symfony.com/contributors"
  7152. }
  7153. ],
  7154. "description": "Helps sending emails",
  7155. "homepage": "https://symfony.com",
  7156. "support": {
  7157. "source": "https://github.com/symfony/mailer/tree/v6.4.4"
  7158. },
  7159. "funding": [
  7160. {
  7161. "url": "https://symfony.com/sponsor",
  7162. "type": "custom"
  7163. },
  7164. {
  7165. "url": "https://github.com/fabpot",
  7166. "type": "github"
  7167. },
  7168. {
  7169. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7170. "type": "tidelift"
  7171. }
  7172. ],
  7173. "time": "2024-02-03T21:33:47+00:00"
  7174. },
  7175. {
  7176. "name": "symfony/mime",
  7177. "version": "v6.4.3",
  7178. "source": {
  7179. "type": "git",
  7180. "url": "https://github.com/symfony/mime.git",
  7181. "reference": "5017e0a9398c77090b7694be46f20eb796262a34"
  7182. },
  7183. "dist": {
  7184. "type": "zip",
  7185. "url": "https://api.github.com/repos/symfony/mime/zipball/5017e0a9398c77090b7694be46f20eb796262a34",
  7186. "reference": "5017e0a9398c77090b7694be46f20eb796262a34",
  7187. "shasum": ""
  7188. },
  7189. "require": {
  7190. "php": ">=8.1",
  7191. "symfony/deprecation-contracts": "^2.5|^3",
  7192. "symfony/polyfill-intl-idn": "^1.10",
  7193. "symfony/polyfill-mbstring": "^1.0"
  7194. },
  7195. "conflict": {
  7196. "egulias/email-validator": "~3.0.0",
  7197. "phpdocumentor/reflection-docblock": "<3.2.2",
  7198. "phpdocumentor/type-resolver": "<1.4.0",
  7199. "symfony/mailer": "<5.4",
  7200. "symfony/serializer": "<6.3.2"
  7201. },
  7202. "require-dev": {
  7203. "egulias/email-validator": "^2.1.10|^3.1|^4",
  7204. "league/html-to-markdown": "^5.0",
  7205. "phpdocumentor/reflection-docblock": "^3.0|^4.0|^5.0",
  7206. "symfony/dependency-injection": "^5.4|^6.0|^7.0",
  7207. "symfony/property-access": "^5.4|^6.0|^7.0",
  7208. "symfony/property-info": "^5.4|^6.0|^7.0",
  7209. "symfony/serializer": "^6.3.2|^7.0"
  7210. },
  7211. "type": "library",
  7212. "autoload": {
  7213. "psr-4": {
  7214. "Symfony\\Component\\Mime\\": ""
  7215. },
  7216. "exclude-from-classmap": [
  7217. "/Tests/"
  7218. ]
  7219. },
  7220. "notification-url": "https://packagist.org/downloads/",
  7221. "license": [
  7222. "MIT"
  7223. ],
  7224. "authors": [
  7225. {
  7226. "name": "Fabien Potencier",
  7227. "email": "fabien@symfony.com"
  7228. },
  7229. {
  7230. "name": "Symfony Community",
  7231. "homepage": "https://symfony.com/contributors"
  7232. }
  7233. ],
  7234. "description": "Allows manipulating MIME messages",
  7235. "homepage": "https://symfony.com",
  7236. "keywords": [
  7237. "mime",
  7238. "mime-type"
  7239. ],
  7240. "support": {
  7241. "source": "https://github.com/symfony/mime/tree/v6.4.3"
  7242. },
  7243. "funding": [
  7244. {
  7245. "url": "https://symfony.com/sponsor",
  7246. "type": "custom"
  7247. },
  7248. {
  7249. "url": "https://github.com/fabpot",
  7250. "type": "github"
  7251. },
  7252. {
  7253. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7254. "type": "tidelift"
  7255. }
  7256. ],
  7257. "time": "2024-01-30T08:32:12+00:00"
  7258. },
  7259. {
  7260. "name": "symfony/polyfill-ctype",
  7261. "version": "v1.28.0",
  7262. "source": {
  7263. "type": "git",
  7264. "url": "https://github.com/symfony/polyfill-ctype.git",
  7265. "reference": "ea208ce43cbb04af6867b4fdddb1bdbf84cc28cb"
  7266. },
  7267. "dist": {
  7268. "type": "zip",
  7269. "url": "https://api.github.com/repos/symfony/polyfill-ctype/zipball/ea208ce43cbb04af6867b4fdddb1bdbf84cc28cb",
  7270. "reference": "ea208ce43cbb04af6867b4fdddb1bdbf84cc28cb",
  7271. "shasum": ""
  7272. },
  7273. "require": {
  7274. "php": ">=7.1"
  7275. },
  7276. "provide": {
  7277. "ext-ctype": "*"
  7278. },
  7279. "suggest": {
  7280. "ext-ctype": "For best performance"
  7281. },
  7282. "type": "library",
  7283. "extra": {
  7284. "branch-alias": {
  7285. "dev-main": "1.28-dev"
  7286. },
  7287. "thanks": {
  7288. "name": "symfony/polyfill",
  7289. "url": "https://github.com/symfony/polyfill"
  7290. }
  7291. },
  7292. "autoload": {
  7293. "files": [
  7294. "bootstrap.php"
  7295. ],
  7296. "psr-4": {
  7297. "Symfony\\Polyfill\\Ctype\\": ""
  7298. }
  7299. },
  7300. "notification-url": "https://packagist.org/downloads/",
  7301. "license": [
  7302. "MIT"
  7303. ],
  7304. "authors": [
  7305. {
  7306. "name": "Gert de Pagter",
  7307. "email": "BackEndTea@gmail.com"
  7308. },
  7309. {
  7310. "name": "Symfony Community",
  7311. "homepage": "https://symfony.com/contributors"
  7312. }
  7313. ],
  7314. "description": "Symfony polyfill for ctype functions",
  7315. "homepage": "https://symfony.com",
  7316. "keywords": [
  7317. "compatibility",
  7318. "ctype",
  7319. "polyfill",
  7320. "portable"
  7321. ],
  7322. "support": {
  7323. "source": "https://github.com/symfony/polyfill-ctype/tree/v1.28.0"
  7324. },
  7325. "funding": [
  7326. {
  7327. "url": "https://symfony.com/sponsor",
  7328. "type": "custom"
  7329. },
  7330. {
  7331. "url": "https://github.com/fabpot",
  7332. "type": "github"
  7333. },
  7334. {
  7335. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7336. "type": "tidelift"
  7337. }
  7338. ],
  7339. "time": "2023-01-26T09:26:14+00:00"
  7340. },
  7341. {
  7342. "name": "symfony/polyfill-iconv",
  7343. "version": "v1.28.0",
  7344. "source": {
  7345. "type": "git",
  7346. "url": "https://github.com/symfony/polyfill-iconv.git",
  7347. "reference": "6de50471469b8c9afc38164452ab2b6170ee71c1"
  7348. },
  7349. "dist": {
  7350. "type": "zip",
  7351. "url": "https://api.github.com/repos/symfony/polyfill-iconv/zipball/6de50471469b8c9afc38164452ab2b6170ee71c1",
  7352. "reference": "6de50471469b8c9afc38164452ab2b6170ee71c1",
  7353. "shasum": ""
  7354. },
  7355. "require": {
  7356. "php": ">=7.1"
  7357. },
  7358. "provide": {
  7359. "ext-iconv": "*"
  7360. },
  7361. "suggest": {
  7362. "ext-iconv": "For best performance"
  7363. },
  7364. "type": "library",
  7365. "extra": {
  7366. "branch-alias": {
  7367. "dev-main": "1.28-dev"
  7368. },
  7369. "thanks": {
  7370. "name": "symfony/polyfill",
  7371. "url": "https://github.com/symfony/polyfill"
  7372. }
  7373. },
  7374. "autoload": {
  7375. "files": [
  7376. "bootstrap.php"
  7377. ],
  7378. "psr-4": {
  7379. "Symfony\\Polyfill\\Iconv\\": ""
  7380. }
  7381. },
  7382. "notification-url": "https://packagist.org/downloads/",
  7383. "license": [
  7384. "MIT"
  7385. ],
  7386. "authors": [
  7387. {
  7388. "name": "Nicolas Grekas",
  7389. "email": "p@tchwork.com"
  7390. },
  7391. {
  7392. "name": "Symfony Community",
  7393. "homepage": "https://symfony.com/contributors"
  7394. }
  7395. ],
  7396. "description": "Symfony polyfill for the Iconv extension",
  7397. "homepage": "https://symfony.com",
  7398. "keywords": [
  7399. "compatibility",
  7400. "iconv",
  7401. "polyfill",
  7402. "portable",
  7403. "shim"
  7404. ],
  7405. "support": {
  7406. "source": "https://github.com/symfony/polyfill-iconv/tree/v1.28.0"
  7407. },
  7408. "funding": [
  7409. {
  7410. "url": "https://symfony.com/sponsor",
  7411. "type": "custom"
  7412. },
  7413. {
  7414. "url": "https://github.com/fabpot",
  7415. "type": "github"
  7416. },
  7417. {
  7418. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7419. "type": "tidelift"
  7420. }
  7421. ],
  7422. "time": "2023-01-26T09:26:14+00:00"
  7423. },
  7424. {
  7425. "name": "symfony/polyfill-intl-grapheme",
  7426. "version": "v1.28.0",
  7427. "source": {
  7428. "type": "git",
  7429. "url": "https://github.com/symfony/polyfill-intl-grapheme.git",
  7430. "reference": "875e90aeea2777b6f135677f618529449334a612"
  7431. },
  7432. "dist": {
  7433. "type": "zip",
  7434. "url": "https://api.github.com/repos/symfony/polyfill-intl-grapheme/zipball/875e90aeea2777b6f135677f618529449334a612",
  7435. "reference": "875e90aeea2777b6f135677f618529449334a612",
  7436. "shasum": ""
  7437. },
  7438. "require": {
  7439. "php": ">=7.1"
  7440. },
  7441. "suggest": {
  7442. "ext-intl": "For best performance"
  7443. },
  7444. "type": "library",
  7445. "extra": {
  7446. "branch-alias": {
  7447. "dev-main": "1.28-dev"
  7448. },
  7449. "thanks": {
  7450. "name": "symfony/polyfill",
  7451. "url": "https://github.com/symfony/polyfill"
  7452. }
  7453. },
  7454. "autoload": {
  7455. "files": [
  7456. "bootstrap.php"
  7457. ],
  7458. "psr-4": {
  7459. "Symfony\\Polyfill\\Intl\\Grapheme\\": ""
  7460. }
  7461. },
  7462. "notification-url": "https://packagist.org/downloads/",
  7463. "license": [
  7464. "MIT"
  7465. ],
  7466. "authors": [
  7467. {
  7468. "name": "Nicolas Grekas",
  7469. "email": "p@tchwork.com"
  7470. },
  7471. {
  7472. "name": "Symfony Community",
  7473. "homepage": "https://symfony.com/contributors"
  7474. }
  7475. ],
  7476. "description": "Symfony polyfill for intl's grapheme_* functions",
  7477. "homepage": "https://symfony.com",
  7478. "keywords": [
  7479. "compatibility",
  7480. "grapheme",
  7481. "intl",
  7482. "polyfill",
  7483. "portable",
  7484. "shim"
  7485. ],
  7486. "support": {
  7487. "source": "https://github.com/symfony/polyfill-intl-grapheme/tree/v1.28.0"
  7488. },
  7489. "funding": [
  7490. {
  7491. "url": "https://symfony.com/sponsor",
  7492. "type": "custom"
  7493. },
  7494. {
  7495. "url": "https://github.com/fabpot",
  7496. "type": "github"
  7497. },
  7498. {
  7499. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7500. "type": "tidelift"
  7501. }
  7502. ],
  7503. "time": "2023-01-26T09:26:14+00:00"
  7504. },
  7505. {
  7506. "name": "symfony/polyfill-intl-idn",
  7507. "version": "v1.28.0",
  7508. "source": {
  7509. "type": "git",
  7510. "url": "https://github.com/symfony/polyfill-intl-idn.git",
  7511. "reference": "ecaafce9f77234a6a449d29e49267ba10499116d"
  7512. },
  7513. "dist": {
  7514. "type": "zip",
  7515. "url": "https://api.github.com/repos/symfony/polyfill-intl-idn/zipball/ecaafce9f77234a6a449d29e49267ba10499116d",
  7516. "reference": "ecaafce9f77234a6a449d29e49267ba10499116d",
  7517. "shasum": ""
  7518. },
  7519. "require": {
  7520. "php": ">=7.1",
  7521. "symfony/polyfill-intl-normalizer": "^1.10",
  7522. "symfony/polyfill-php72": "^1.10"
  7523. },
  7524. "suggest": {
  7525. "ext-intl": "For best performance"
  7526. },
  7527. "type": "library",
  7528. "extra": {
  7529. "branch-alias": {
  7530. "dev-main": "1.28-dev"
  7531. },
  7532. "thanks": {
  7533. "name": "symfony/polyfill",
  7534. "url": "https://github.com/symfony/polyfill"
  7535. }
  7536. },
  7537. "autoload": {
  7538. "files": [
  7539. "bootstrap.php"
  7540. ],
  7541. "psr-4": {
  7542. "Symfony\\Polyfill\\Intl\\Idn\\": ""
  7543. }
  7544. },
  7545. "notification-url": "https://packagist.org/downloads/",
  7546. "license": [
  7547. "MIT"
  7548. ],
  7549. "authors": [
  7550. {
  7551. "name": "Laurent Bassin",
  7552. "email": "laurent@bassin.info"
  7553. },
  7554. {
  7555. "name": "Trevor Rowbotham",
  7556. "email": "trevor.rowbotham@pm.me"
  7557. },
  7558. {
  7559. "name": "Symfony Community",
  7560. "homepage": "https://symfony.com/contributors"
  7561. }
  7562. ],
  7563. "description": "Symfony polyfill for intl's idn_to_ascii and idn_to_utf8 functions",
  7564. "homepage": "https://symfony.com",
  7565. "keywords": [
  7566. "compatibility",
  7567. "idn",
  7568. "intl",
  7569. "polyfill",
  7570. "portable",
  7571. "shim"
  7572. ],
  7573. "support": {
  7574. "source": "https://github.com/symfony/polyfill-intl-idn/tree/v1.28.0"
  7575. },
  7576. "funding": [
  7577. {
  7578. "url": "https://symfony.com/sponsor",
  7579. "type": "custom"
  7580. },
  7581. {
  7582. "url": "https://github.com/fabpot",
  7583. "type": "github"
  7584. },
  7585. {
  7586. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7587. "type": "tidelift"
  7588. }
  7589. ],
  7590. "time": "2023-01-26T09:30:37+00:00"
  7591. },
  7592. {
  7593. "name": "symfony/polyfill-intl-normalizer",
  7594. "version": "v1.28.0",
  7595. "source": {
  7596. "type": "git",
  7597. "url": "https://github.com/symfony/polyfill-intl-normalizer.git",
  7598. "reference": "8c4ad05dd0120b6a53c1ca374dca2ad0a1c4ed92"
  7599. },
  7600. "dist": {
  7601. "type": "zip",
  7602. "url": "https://api.github.com/repos/symfony/polyfill-intl-normalizer/zipball/8c4ad05dd0120b6a53c1ca374dca2ad0a1c4ed92",
  7603. "reference": "8c4ad05dd0120b6a53c1ca374dca2ad0a1c4ed92",
  7604. "shasum": ""
  7605. },
  7606. "require": {
  7607. "php": ">=7.1"
  7608. },
  7609. "suggest": {
  7610. "ext-intl": "For best performance"
  7611. },
  7612. "type": "library",
  7613. "extra": {
  7614. "branch-alias": {
  7615. "dev-main": "1.28-dev"
  7616. },
  7617. "thanks": {
  7618. "name": "symfony/polyfill",
  7619. "url": "https://github.com/symfony/polyfill"
  7620. }
  7621. },
  7622. "autoload": {
  7623. "files": [
  7624. "bootstrap.php"
  7625. ],
  7626. "psr-4": {
  7627. "Symfony\\Polyfill\\Intl\\Normalizer\\": ""
  7628. },
  7629. "classmap": [
  7630. "Resources/stubs"
  7631. ]
  7632. },
  7633. "notification-url": "https://packagist.org/downloads/",
  7634. "license": [
  7635. "MIT"
  7636. ],
  7637. "authors": [
  7638. {
  7639. "name": "Nicolas Grekas",
  7640. "email": "p@tchwork.com"
  7641. },
  7642. {
  7643. "name": "Symfony Community",
  7644. "homepage": "https://symfony.com/contributors"
  7645. }
  7646. ],
  7647. "description": "Symfony polyfill for intl's Normalizer class and related functions",
  7648. "homepage": "https://symfony.com",
  7649. "keywords": [
  7650. "compatibility",
  7651. "intl",
  7652. "normalizer",
  7653. "polyfill",
  7654. "portable",
  7655. "shim"
  7656. ],
  7657. "support": {
  7658. "source": "https://github.com/symfony/polyfill-intl-normalizer/tree/v1.28.0"
  7659. },
  7660. "funding": [
  7661. {
  7662. "url": "https://symfony.com/sponsor",
  7663. "type": "custom"
  7664. },
  7665. {
  7666. "url": "https://github.com/fabpot",
  7667. "type": "github"
  7668. },
  7669. {
  7670. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7671. "type": "tidelift"
  7672. }
  7673. ],
  7674. "time": "2023-01-26T09:26:14+00:00"
  7675. },
  7676. {
  7677. "name": "symfony/polyfill-mbstring",
  7678. "version": "v1.28.0",
  7679. "source": {
  7680. "type": "git",
  7681. "url": "https://github.com/symfony/polyfill-mbstring.git",
  7682. "reference": "42292d99c55abe617799667f454222c54c60e229"
  7683. },
  7684. "dist": {
  7685. "type": "zip",
  7686. "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/42292d99c55abe617799667f454222c54c60e229",
  7687. "reference": "42292d99c55abe617799667f454222c54c60e229",
  7688. "shasum": ""
  7689. },
  7690. "require": {
  7691. "php": ">=7.1"
  7692. },
  7693. "provide": {
  7694. "ext-mbstring": "*"
  7695. },
  7696. "suggest": {
  7697. "ext-mbstring": "For best performance"
  7698. },
  7699. "type": "library",
  7700. "extra": {
  7701. "branch-alias": {
  7702. "dev-main": "1.28-dev"
  7703. },
  7704. "thanks": {
  7705. "name": "symfony/polyfill",
  7706. "url": "https://github.com/symfony/polyfill"
  7707. }
  7708. },
  7709. "autoload": {
  7710. "files": [
  7711. "bootstrap.php"
  7712. ],
  7713. "psr-4": {
  7714. "Symfony\\Polyfill\\Mbstring\\": ""
  7715. }
  7716. },
  7717. "notification-url": "https://packagist.org/downloads/",
  7718. "license": [
  7719. "MIT"
  7720. ],
  7721. "authors": [
  7722. {
  7723. "name": "Nicolas Grekas",
  7724. "email": "p@tchwork.com"
  7725. },
  7726. {
  7727. "name": "Symfony Community",
  7728. "homepage": "https://symfony.com/contributors"
  7729. }
  7730. ],
  7731. "description": "Symfony polyfill for the Mbstring extension",
  7732. "homepage": "https://symfony.com",
  7733. "keywords": [
  7734. "compatibility",
  7735. "mbstring",
  7736. "polyfill",
  7737. "portable",
  7738. "shim"
  7739. ],
  7740. "support": {
  7741. "source": "https://github.com/symfony/polyfill-mbstring/tree/v1.28.0"
  7742. },
  7743. "funding": [
  7744. {
  7745. "url": "https://symfony.com/sponsor",
  7746. "type": "custom"
  7747. },
  7748. {
  7749. "url": "https://github.com/fabpot",
  7750. "type": "github"
  7751. },
  7752. {
  7753. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7754. "type": "tidelift"
  7755. }
  7756. ],
  7757. "time": "2023-07-28T09:04:16+00:00"
  7758. },
  7759. {
  7760. "name": "symfony/polyfill-php72",
  7761. "version": "v1.29.0",
  7762. "source": {
  7763. "type": "git",
  7764. "url": "https://github.com/symfony/polyfill-php72.git",
  7765. "reference": "861391a8da9a04cbad2d232ddd9e4893220d6e25"
  7766. },
  7767. "dist": {
  7768. "type": "zip",
  7769. "url": "https://api.github.com/repos/symfony/polyfill-php72/zipball/861391a8da9a04cbad2d232ddd9e4893220d6e25",
  7770. "reference": "861391a8da9a04cbad2d232ddd9e4893220d6e25",
  7771. "shasum": ""
  7772. },
  7773. "require": {
  7774. "php": ">=7.1"
  7775. },
  7776. "type": "library",
  7777. "extra": {
  7778. "thanks": {
  7779. "name": "symfony/polyfill",
  7780. "url": "https://github.com/symfony/polyfill"
  7781. }
  7782. },
  7783. "autoload": {
  7784. "files": [
  7785. "bootstrap.php"
  7786. ],
  7787. "psr-4": {
  7788. "Symfony\\Polyfill\\Php72\\": ""
  7789. }
  7790. },
  7791. "notification-url": "https://packagist.org/downloads/",
  7792. "license": [
  7793. "MIT"
  7794. ],
  7795. "authors": [
  7796. {
  7797. "name": "Nicolas Grekas",
  7798. "email": "p@tchwork.com"
  7799. },
  7800. {
  7801. "name": "Symfony Community",
  7802. "homepage": "https://symfony.com/contributors"
  7803. }
  7804. ],
  7805. "description": "Symfony polyfill backporting some PHP 7.2+ features to lower PHP versions",
  7806. "homepage": "https://symfony.com",
  7807. "keywords": [
  7808. "compatibility",
  7809. "polyfill",
  7810. "portable",
  7811. "shim"
  7812. ],
  7813. "support": {
  7814. "source": "https://github.com/symfony/polyfill-php72/tree/v1.29.0"
  7815. },
  7816. "funding": [
  7817. {
  7818. "url": "https://symfony.com/sponsor",
  7819. "type": "custom"
  7820. },
  7821. {
  7822. "url": "https://github.com/fabpot",
  7823. "type": "github"
  7824. },
  7825. {
  7826. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7827. "type": "tidelift"
  7828. }
  7829. ],
  7830. "time": "2024-01-29T20:11:03+00:00"
  7831. },
  7832. {
  7833. "name": "symfony/polyfill-php80",
  7834. "version": "v1.29.0",
  7835. "source": {
  7836. "type": "git",
  7837. "url": "https://github.com/symfony/polyfill-php80.git",
  7838. "reference": "87b68208d5c1188808dd7839ee1e6c8ec3b02f1b"
  7839. },
  7840. "dist": {
  7841. "type": "zip",
  7842. "url": "https://api.github.com/repos/symfony/polyfill-php80/zipball/87b68208d5c1188808dd7839ee1e6c8ec3b02f1b",
  7843. "reference": "87b68208d5c1188808dd7839ee1e6c8ec3b02f1b",
  7844. "shasum": ""
  7845. },
  7846. "require": {
  7847. "php": ">=7.1"
  7848. },
  7849. "type": "library",
  7850. "extra": {
  7851. "thanks": {
  7852. "name": "symfony/polyfill",
  7853. "url": "https://github.com/symfony/polyfill"
  7854. }
  7855. },
  7856. "autoload": {
  7857. "files": [
  7858. "bootstrap.php"
  7859. ],
  7860. "psr-4": {
  7861. "Symfony\\Polyfill\\Php80\\": ""
  7862. },
  7863. "classmap": [
  7864. "Resources/stubs"
  7865. ]
  7866. },
  7867. "notification-url": "https://packagist.org/downloads/",
  7868. "license": [
  7869. "MIT"
  7870. ],
  7871. "authors": [
  7872. {
  7873. "name": "Ion Bazan",
  7874. "email": "ion.bazan@gmail.com"
  7875. },
  7876. {
  7877. "name": "Nicolas Grekas",
  7878. "email": "p@tchwork.com"
  7879. },
  7880. {
  7881. "name": "Symfony Community",
  7882. "homepage": "https://symfony.com/contributors"
  7883. }
  7884. ],
  7885. "description": "Symfony polyfill backporting some PHP 8.0+ features to lower PHP versions",
  7886. "homepage": "https://symfony.com",
  7887. "keywords": [
  7888. "compatibility",
  7889. "polyfill",
  7890. "portable",
  7891. "shim"
  7892. ],
  7893. "support": {
  7894. "source": "https://github.com/symfony/polyfill-php80/tree/v1.29.0"
  7895. },
  7896. "funding": [
  7897. {
  7898. "url": "https://symfony.com/sponsor",
  7899. "type": "custom"
  7900. },
  7901. {
  7902. "url": "https://github.com/fabpot",
  7903. "type": "github"
  7904. },
  7905. {
  7906. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7907. "type": "tidelift"
  7908. }
  7909. ],
  7910. "time": "2024-01-29T20:11:03+00:00"
  7911. },
  7912. {
  7913. "name": "symfony/polyfill-php81",
  7914. "version": "v1.29.0",
  7915. "source": {
  7916. "type": "git",
  7917. "url": "https://github.com/symfony/polyfill-php81.git",
  7918. "reference": "c565ad1e63f30e7477fc40738343c62b40bc672d"
  7919. },
  7920. "dist": {
  7921. "type": "zip",
  7922. "url": "https://api.github.com/repos/symfony/polyfill-php81/zipball/c565ad1e63f30e7477fc40738343c62b40bc672d",
  7923. "reference": "c565ad1e63f30e7477fc40738343c62b40bc672d",
  7924. "shasum": ""
  7925. },
  7926. "require": {
  7927. "php": ">=7.1"
  7928. },
  7929. "type": "library",
  7930. "extra": {
  7931. "thanks": {
  7932. "name": "symfony/polyfill",
  7933. "url": "https://github.com/symfony/polyfill"
  7934. }
  7935. },
  7936. "autoload": {
  7937. "files": [
  7938. "bootstrap.php"
  7939. ],
  7940. "psr-4": {
  7941. "Symfony\\Polyfill\\Php81\\": ""
  7942. },
  7943. "classmap": [
  7944. "Resources/stubs"
  7945. ]
  7946. },
  7947. "notification-url": "https://packagist.org/downloads/",
  7948. "license": [
  7949. "MIT"
  7950. ],
  7951. "authors": [
  7952. {
  7953. "name": "Nicolas Grekas",
  7954. "email": "p@tchwork.com"
  7955. },
  7956. {
  7957. "name": "Symfony Community",
  7958. "homepage": "https://symfony.com/contributors"
  7959. }
  7960. ],
  7961. "description": "Symfony polyfill backporting some PHP 8.1+ features to lower PHP versions",
  7962. "homepage": "https://symfony.com",
  7963. "keywords": [
  7964. "compatibility",
  7965. "polyfill",
  7966. "portable",
  7967. "shim"
  7968. ],
  7969. "support": {
  7970. "source": "https://github.com/symfony/polyfill-php81/tree/v1.29.0"
  7971. },
  7972. "funding": [
  7973. {
  7974. "url": "https://symfony.com/sponsor",
  7975. "type": "custom"
  7976. },
  7977. {
  7978. "url": "https://github.com/fabpot",
  7979. "type": "github"
  7980. },
  7981. {
  7982. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7983. "type": "tidelift"
  7984. }
  7985. ],
  7986. "time": "2024-01-29T20:11:03+00:00"
  7987. },
  7988. {
  7989. "name": "symfony/polyfill-php83",
  7990. "version": "v1.28.0",
  7991. "source": {
  7992. "type": "git",
  7993. "url": "https://github.com/symfony/polyfill-php83.git",
  7994. "reference": "b0f46ebbeeeda3e9d2faebdfbf4b4eae9b59fa11"
  7995. },
  7996. "dist": {
  7997. "type": "zip",
  7998. "url": "https://api.github.com/repos/symfony/polyfill-php83/zipball/b0f46ebbeeeda3e9d2faebdfbf4b4eae9b59fa11",
  7999. "reference": "b0f46ebbeeeda3e9d2faebdfbf4b4eae9b59fa11",
  8000. "shasum": ""
  8001. },
  8002. "require": {
  8003. "php": ">=7.1",
  8004. "symfony/polyfill-php80": "^1.14"
  8005. },
  8006. "type": "library",
  8007. "extra": {
  8008. "branch-alias": {
  8009. "dev-main": "1.28-dev"
  8010. },
  8011. "thanks": {
  8012. "name": "symfony/polyfill",
  8013. "url": "https://github.com/symfony/polyfill"
  8014. }
  8015. },
  8016. "autoload": {
  8017. "files": [
  8018. "bootstrap.php"
  8019. ],
  8020. "psr-4": {
  8021. "Symfony\\Polyfill\\Php83\\": ""
  8022. },
  8023. "classmap": [
  8024. "Resources/stubs"
  8025. ]
  8026. },
  8027. "notification-url": "https://packagist.org/downloads/",
  8028. "license": [
  8029. "MIT"
  8030. ],
  8031. "authors": [
  8032. {
  8033. "name": "Nicolas Grekas",
  8034. "email": "p@tchwork.com"
  8035. },
  8036. {
  8037. "name": "Symfony Community",
  8038. "homepage": "https://symfony.com/contributors"
  8039. }
  8040. ],
  8041. "description": "Symfony polyfill backporting some PHP 8.3+ features to lower PHP versions",
  8042. "homepage": "https://symfony.com",
  8043. "keywords": [
  8044. "compatibility",
  8045. "polyfill",
  8046. "portable",
  8047. "shim"
  8048. ],
  8049. "support": {
  8050. "source": "https://github.com/symfony/polyfill-php83/tree/v1.28.0"
  8051. },
  8052. "funding": [
  8053. {
  8054. "url": "https://symfony.com/sponsor",
  8055. "type": "custom"
  8056. },
  8057. {
  8058. "url": "https://github.com/fabpot",
  8059. "type": "github"
  8060. },
  8061. {
  8062. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8063. "type": "tidelift"
  8064. }
  8065. ],
  8066. "time": "2023-08-16T06:22:46+00:00"
  8067. },
  8068. {
  8069. "name": "symfony/process",
  8070. "version": "v6.4.4",
  8071. "source": {
  8072. "type": "git",
  8073. "url": "https://github.com/symfony/process.git",
  8074. "reference": "710e27879e9be3395de2b98da3f52a946039f297"
  8075. },
  8076. "dist": {
  8077. "type": "zip",
  8078. "url": "https://api.github.com/repos/symfony/process/zipball/710e27879e9be3395de2b98da3f52a946039f297",
  8079. "reference": "710e27879e9be3395de2b98da3f52a946039f297",
  8080. "shasum": ""
  8081. },
  8082. "require": {
  8083. "php": ">=8.1"
  8084. },
  8085. "type": "library",
  8086. "autoload": {
  8087. "psr-4": {
  8088. "Symfony\\Component\\Process\\": ""
  8089. },
  8090. "exclude-from-classmap": [
  8091. "/Tests/"
  8092. ]
  8093. },
  8094. "notification-url": "https://packagist.org/downloads/",
  8095. "license": [
  8096. "MIT"
  8097. ],
  8098. "authors": [
  8099. {
  8100. "name": "Fabien Potencier",
  8101. "email": "fabien@symfony.com"
  8102. },
  8103. {
  8104. "name": "Symfony Community",
  8105. "homepage": "https://symfony.com/contributors"
  8106. }
  8107. ],
  8108. "description": "Executes commands in sub-processes",
  8109. "homepage": "https://symfony.com",
  8110. "support": {
  8111. "source": "https://github.com/symfony/process/tree/v6.4.4"
  8112. },
  8113. "funding": [
  8114. {
  8115. "url": "https://symfony.com/sponsor",
  8116. "type": "custom"
  8117. },
  8118. {
  8119. "url": "https://github.com/fabpot",
  8120. "type": "github"
  8121. },
  8122. {
  8123. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8124. "type": "tidelift"
  8125. }
  8126. ],
  8127. "time": "2024-02-20T12:31:00+00:00"
  8128. },
  8129. {
  8130. "name": "symfony/psr-http-message-bridge",
  8131. "version": "v6.4.3",
  8132. "source": {
  8133. "type": "git",
  8134. "url": "https://github.com/symfony/psr-http-message-bridge.git",
  8135. "reference": "49cfb0223ec64379f7154214dcc1f7c46f3c7a47"
  8136. },
  8137. "dist": {
  8138. "type": "zip",
  8139. "url": "https://api.github.com/repos/symfony/psr-http-message-bridge/zipball/49cfb0223ec64379f7154214dcc1f7c46f3c7a47",
  8140. "reference": "49cfb0223ec64379f7154214dcc1f7c46f3c7a47",
  8141. "shasum": ""
  8142. },
  8143. "require": {
  8144. "php": ">=8.1",
  8145. "psr/http-message": "^1.0|^2.0",
  8146. "symfony/http-foundation": "^5.4|^6.0|^7.0"
  8147. },
  8148. "conflict": {
  8149. "php-http/discovery": "<1.15",
  8150. "symfony/http-kernel": "<6.2"
  8151. },
  8152. "require-dev": {
  8153. "nyholm/psr7": "^1.1",
  8154. "php-http/discovery": "^1.15",
  8155. "psr/log": "^1.1.4|^2|^3",
  8156. "symfony/browser-kit": "^5.4|^6.0|^7.0",
  8157. "symfony/config": "^5.4|^6.0|^7.0",
  8158. "symfony/event-dispatcher": "^5.4|^6.0|^7.0",
  8159. "symfony/framework-bundle": "^6.2|^7.0",
  8160. "symfony/http-kernel": "^6.2|^7.0"
  8161. },
  8162. "type": "symfony-bridge",
  8163. "autoload": {
  8164. "psr-4": {
  8165. "Symfony\\Bridge\\PsrHttpMessage\\": ""
  8166. },
  8167. "exclude-from-classmap": [
  8168. "/Tests/"
  8169. ]
  8170. },
  8171. "notification-url": "https://packagist.org/downloads/",
  8172. "license": [
  8173. "MIT"
  8174. ],
  8175. "authors": [
  8176. {
  8177. "name": "Fabien Potencier",
  8178. "email": "fabien@symfony.com"
  8179. },
  8180. {
  8181. "name": "Symfony Community",
  8182. "homepage": "https://symfony.com/contributors"
  8183. }
  8184. ],
  8185. "description": "PSR HTTP message bridge",
  8186. "homepage": "https://symfony.com",
  8187. "keywords": [
  8188. "http",
  8189. "http-message",
  8190. "psr-17",
  8191. "psr-7"
  8192. ],
  8193. "support": {
  8194. "source": "https://github.com/symfony/psr-http-message-bridge/tree/v6.4.3"
  8195. },
  8196. "funding": [
  8197. {
  8198. "url": "https://symfony.com/sponsor",
  8199. "type": "custom"
  8200. },
  8201. {
  8202. "url": "https://github.com/fabpot",
  8203. "type": "github"
  8204. },
  8205. {
  8206. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8207. "type": "tidelift"
  8208. }
  8209. ],
  8210. "time": "2024-01-23T14:51:35+00:00"
  8211. },
  8212. {
  8213. "name": "symfony/routing",
  8214. "version": "v6.4.3",
  8215. "source": {
  8216. "type": "git",
  8217. "url": "https://github.com/symfony/routing.git",
  8218. "reference": "3b2957ad54902f0f544df83e3d58b38d7e8e5842"
  8219. },
  8220. "dist": {
  8221. "type": "zip",
  8222. "url": "https://api.github.com/repos/symfony/routing/zipball/3b2957ad54902f0f544df83e3d58b38d7e8e5842",
  8223. "reference": "3b2957ad54902f0f544df83e3d58b38d7e8e5842",
  8224. "shasum": ""
  8225. },
  8226. "require": {
  8227. "php": ">=8.1",
  8228. "symfony/deprecation-contracts": "^2.5|^3"
  8229. },
  8230. "conflict": {
  8231. "doctrine/annotations": "<1.12",
  8232. "symfony/config": "<6.2",
  8233. "symfony/dependency-injection": "<5.4",
  8234. "symfony/yaml": "<5.4"
  8235. },
  8236. "require-dev": {
  8237. "doctrine/annotations": "^1.12|^2",
  8238. "psr/log": "^1|^2|^3",
  8239. "symfony/config": "^6.2|^7.0",
  8240. "symfony/dependency-injection": "^5.4|^6.0|^7.0",
  8241. "symfony/expression-language": "^5.4|^6.0|^7.0",
  8242. "symfony/http-foundation": "^5.4|^6.0|^7.0",
  8243. "symfony/yaml": "^5.4|^6.0|^7.0"
  8244. },
  8245. "type": "library",
  8246. "autoload": {
  8247. "psr-4": {
  8248. "Symfony\\Component\\Routing\\": ""
  8249. },
  8250. "exclude-from-classmap": [
  8251. "/Tests/"
  8252. ]
  8253. },
  8254. "notification-url": "https://packagist.org/downloads/",
  8255. "license": [
  8256. "MIT"
  8257. ],
  8258. "authors": [
  8259. {
  8260. "name": "Fabien Potencier",
  8261. "email": "fabien@symfony.com"
  8262. },
  8263. {
  8264. "name": "Symfony Community",
  8265. "homepage": "https://symfony.com/contributors"
  8266. }
  8267. ],
  8268. "description": "Maps an HTTP request to a set of configuration variables",
  8269. "homepage": "https://symfony.com",
  8270. "keywords": [
  8271. "router",
  8272. "routing",
  8273. "uri",
  8274. "url"
  8275. ],
  8276. "support": {
  8277. "source": "https://github.com/symfony/routing/tree/v6.4.3"
  8278. },
  8279. "funding": [
  8280. {
  8281. "url": "https://symfony.com/sponsor",
  8282. "type": "custom"
  8283. },
  8284. {
  8285. "url": "https://github.com/fabpot",
  8286. "type": "github"
  8287. },
  8288. {
  8289. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8290. "type": "tidelift"
  8291. }
  8292. ],
  8293. "time": "2024-01-30T13:55:02+00:00"
  8294. },
  8295. {
  8296. "name": "symfony/serializer",
  8297. "version": "v6.4.4",
  8298. "source": {
  8299. "type": "git",
  8300. "url": "https://github.com/symfony/serializer.git",
  8301. "reference": "88da7f8fe03c5f4c2a69da907f1de03fab2e6872"
  8302. },
  8303. "dist": {
  8304. "type": "zip",
  8305. "url": "https://api.github.com/repos/symfony/serializer/zipball/88da7f8fe03c5f4c2a69da907f1de03fab2e6872",
  8306. "reference": "88da7f8fe03c5f4c2a69da907f1de03fab2e6872",
  8307. "shasum": ""
  8308. },
  8309. "require": {
  8310. "php": ">=8.1",
  8311. "symfony/deprecation-contracts": "^2.5|^3",
  8312. "symfony/polyfill-ctype": "~1.8"
  8313. },
  8314. "conflict": {
  8315. "doctrine/annotations": "<1.12",
  8316. "phpdocumentor/reflection-docblock": "<3.2.2",
  8317. "phpdocumentor/type-resolver": "<1.4.0",
  8318. "symfony/dependency-injection": "<5.4",
  8319. "symfony/property-access": "<5.4",
  8320. "symfony/property-info": "<5.4.24|>=6,<6.2.11",
  8321. "symfony/uid": "<5.4",
  8322. "symfony/validator": "<6.4",
  8323. "symfony/yaml": "<5.4"
  8324. },
  8325. "require-dev": {
  8326. "doctrine/annotations": "^1.12|^2",
  8327. "phpdocumentor/reflection-docblock": "^3.2|^4.0|^5.0",
  8328. "seld/jsonlint": "^1.10",
  8329. "symfony/cache": "^5.4|^6.0|^7.0",
  8330. "symfony/config": "^5.4|^6.0|^7.0",
  8331. "symfony/console": "^5.4|^6.0|^7.0",
  8332. "symfony/dependency-injection": "^5.4|^6.0|^7.0",
  8333. "symfony/error-handler": "^5.4|^6.0|^7.0",
  8334. "symfony/filesystem": "^5.4|^6.0|^7.0",
  8335. "symfony/form": "^5.4|^6.0|^7.0",
  8336. "symfony/http-foundation": "^5.4|^6.0|^7.0",
  8337. "symfony/http-kernel": "^5.4|^6.0|^7.0",
  8338. "symfony/messenger": "^5.4|^6.0|^7.0",
  8339. "symfony/mime": "^5.4|^6.0|^7.0",
  8340. "symfony/property-access": "^5.4.26|^6.3|^7.0",
  8341. "symfony/property-info": "^5.4.24|^6.2.11|^7.0",
  8342. "symfony/translation-contracts": "^2.5|^3",
  8343. "symfony/uid": "^5.4|^6.0|^7.0",
  8344. "symfony/validator": "^6.4|^7.0",
  8345. "symfony/var-dumper": "^5.4|^6.0|^7.0",
  8346. "symfony/var-exporter": "^5.4|^6.0|^7.0",
  8347. "symfony/yaml": "^5.4|^6.0|^7.0"
  8348. },
  8349. "type": "library",
  8350. "autoload": {
  8351. "psr-4": {
  8352. "Symfony\\Component\\Serializer\\": ""
  8353. },
  8354. "exclude-from-classmap": [
  8355. "/Tests/"
  8356. ]
  8357. },
  8358. "notification-url": "https://packagist.org/downloads/",
  8359. "license": [
  8360. "MIT"
  8361. ],
  8362. "authors": [
  8363. {
  8364. "name": "Fabien Potencier",
  8365. "email": "fabien@symfony.com"
  8366. },
  8367. {
  8368. "name": "Symfony Community",
  8369. "homepage": "https://symfony.com/contributors"
  8370. }
  8371. ],
  8372. "description": "Handles serializing and deserializing data structures, including object graphs, into array structures or other formats like XML and JSON.",
  8373. "homepage": "https://symfony.com",
  8374. "support": {
  8375. "source": "https://github.com/symfony/serializer/tree/v6.4.4"
  8376. },
  8377. "funding": [
  8378. {
  8379. "url": "https://symfony.com/sponsor",
  8380. "type": "custom"
  8381. },
  8382. {
  8383. "url": "https://github.com/fabpot",
  8384. "type": "github"
  8385. },
  8386. {
  8387. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8388. "type": "tidelift"
  8389. }
  8390. ],
  8391. "time": "2024-02-22T20:27:10+00:00"
  8392. },
  8393. {
  8394. "name": "symfony/service-contracts",
  8395. "version": "v3.4.1",
  8396. "source": {
  8397. "type": "git",
  8398. "url": "https://github.com/symfony/service-contracts.git",
  8399. "reference": "fe07cbc8d837f60caf7018068e350cc5163681a0"
  8400. },
  8401. "dist": {
  8402. "type": "zip",
  8403. "url": "https://api.github.com/repos/symfony/service-contracts/zipball/fe07cbc8d837f60caf7018068e350cc5163681a0",
  8404. "reference": "fe07cbc8d837f60caf7018068e350cc5163681a0",
  8405. "shasum": ""
  8406. },
  8407. "require": {
  8408. "php": ">=8.1",
  8409. "psr/container": "^1.1|^2.0"
  8410. },
  8411. "conflict": {
  8412. "ext-psr": "<1.1|>=2"
  8413. },
  8414. "type": "library",
  8415. "extra": {
  8416. "branch-alias": {
  8417. "dev-main": "3.4-dev"
  8418. },
  8419. "thanks": {
  8420. "name": "symfony/contracts",
  8421. "url": "https://github.com/symfony/contracts"
  8422. }
  8423. },
  8424. "autoload": {
  8425. "psr-4": {
  8426. "Symfony\\Contracts\\Service\\": ""
  8427. },
  8428. "exclude-from-classmap": [
  8429. "/Test/"
  8430. ]
  8431. },
  8432. "notification-url": "https://packagist.org/downloads/",
  8433. "license": [
  8434. "MIT"
  8435. ],
  8436. "authors": [
  8437. {
  8438. "name": "Nicolas Grekas",
  8439. "email": "p@tchwork.com"
  8440. },
  8441. {
  8442. "name": "Symfony Community",
  8443. "homepage": "https://symfony.com/contributors"
  8444. }
  8445. ],
  8446. "description": "Generic abstractions related to writing services",
  8447. "homepage": "https://symfony.com",
  8448. "keywords": [
  8449. "abstractions",
  8450. "contracts",
  8451. "decoupling",
  8452. "interfaces",
  8453. "interoperability",
  8454. "standards"
  8455. ],
  8456. "support": {
  8457. "source": "https://github.com/symfony/service-contracts/tree/v3.4.1"
  8458. },
  8459. "funding": [
  8460. {
  8461. "url": "https://symfony.com/sponsor",
  8462. "type": "custom"
  8463. },
  8464. {
  8465. "url": "https://github.com/fabpot",
  8466. "type": "github"
  8467. },
  8468. {
  8469. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8470. "type": "tidelift"
  8471. }
  8472. ],
  8473. "time": "2023-12-26T14:02:43+00:00"
  8474. },
  8475. {
  8476. "name": "symfony/string",
  8477. "version": "v6.4.4",
  8478. "source": {
  8479. "type": "git",
  8480. "url": "https://github.com/symfony/string.git",
  8481. "reference": "4e465a95bdc32f49cf4c7f07f751b843bbd6dcd9"
  8482. },
  8483. "dist": {
  8484. "type": "zip",
  8485. "url": "https://api.github.com/repos/symfony/string/zipball/4e465a95bdc32f49cf4c7f07f751b843bbd6dcd9",
  8486. "reference": "4e465a95bdc32f49cf4c7f07f751b843bbd6dcd9",
  8487. "shasum": ""
  8488. },
  8489. "require": {
  8490. "php": ">=8.1",
  8491. "symfony/polyfill-ctype": "~1.8",
  8492. "symfony/polyfill-intl-grapheme": "~1.0",
  8493. "symfony/polyfill-intl-normalizer": "~1.0",
  8494. "symfony/polyfill-mbstring": "~1.0"
  8495. },
  8496. "conflict": {
  8497. "symfony/translation-contracts": "<2.5"
  8498. },
  8499. "require-dev": {
  8500. "symfony/error-handler": "^5.4|^6.0|^7.0",
  8501. "symfony/http-client": "^5.4|^6.0|^7.0",
  8502. "symfony/intl": "^6.2|^7.0",
  8503. "symfony/translation-contracts": "^2.5|^3.0",
  8504. "symfony/var-exporter": "^5.4|^6.0|^7.0"
  8505. },
  8506. "type": "library",
  8507. "autoload": {
  8508. "files": [
  8509. "Resources/functions.php"
  8510. ],
  8511. "psr-4": {
  8512. "Symfony\\Component\\String\\": ""
  8513. },
  8514. "exclude-from-classmap": [
  8515. "/Tests/"
  8516. ]
  8517. },
  8518. "notification-url": "https://packagist.org/downloads/",
  8519. "license": [
  8520. "MIT"
  8521. ],
  8522. "authors": [
  8523. {
  8524. "name": "Nicolas Grekas",
  8525. "email": "p@tchwork.com"
  8526. },
  8527. {
  8528. "name": "Symfony Community",
  8529. "homepage": "https://symfony.com/contributors"
  8530. }
  8531. ],
  8532. "description": "Provides an object-oriented API to strings and deals with bytes, UTF-8 code points and grapheme clusters in a unified way",
  8533. "homepage": "https://symfony.com",
  8534. "keywords": [
  8535. "grapheme",
  8536. "i18n",
  8537. "string",
  8538. "unicode",
  8539. "utf-8",
  8540. "utf8"
  8541. ],
  8542. "support": {
  8543. "source": "https://github.com/symfony/string/tree/v6.4.4"
  8544. },
  8545. "funding": [
  8546. {
  8547. "url": "https://symfony.com/sponsor",
  8548. "type": "custom"
  8549. },
  8550. {
  8551. "url": "https://github.com/fabpot",
  8552. "type": "github"
  8553. },
  8554. {
  8555. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8556. "type": "tidelift"
  8557. }
  8558. ],
  8559. "time": "2024-02-01T13:16:41+00:00"
  8560. },
  8561. {
  8562. "name": "symfony/translation-contracts",
  8563. "version": "v3.4.1",
  8564. "source": {
  8565. "type": "git",
  8566. "url": "https://github.com/symfony/translation-contracts.git",
  8567. "reference": "06450585bf65e978026bda220cdebca3f867fde7"
  8568. },
  8569. "dist": {
  8570. "type": "zip",
  8571. "url": "https://api.github.com/repos/symfony/translation-contracts/zipball/06450585bf65e978026bda220cdebca3f867fde7",
  8572. "reference": "06450585bf65e978026bda220cdebca3f867fde7",
  8573. "shasum": ""
  8574. },
  8575. "require": {
  8576. "php": ">=8.1"
  8577. },
  8578. "type": "library",
  8579. "extra": {
  8580. "branch-alias": {
  8581. "dev-main": "3.4-dev"
  8582. },
  8583. "thanks": {
  8584. "name": "symfony/contracts",
  8585. "url": "https://github.com/symfony/contracts"
  8586. }
  8587. },
  8588. "autoload": {
  8589. "psr-4": {
  8590. "Symfony\\Contracts\\Translation\\": ""
  8591. },
  8592. "exclude-from-classmap": [
  8593. "/Test/"
  8594. ]
  8595. },
  8596. "notification-url": "https://packagist.org/downloads/",
  8597. "license": [
  8598. "MIT"
  8599. ],
  8600. "authors": [
  8601. {
  8602. "name": "Nicolas Grekas",
  8603. "email": "p@tchwork.com"
  8604. },
  8605. {
  8606. "name": "Symfony Community",
  8607. "homepage": "https://symfony.com/contributors"
  8608. }
  8609. ],
  8610. "description": "Generic abstractions related to translation",
  8611. "homepage": "https://symfony.com",
  8612. "keywords": [
  8613. "abstractions",
  8614. "contracts",
  8615. "decoupling",
  8616. "interfaces",
  8617. "interoperability",
  8618. "standards"
  8619. ],
  8620. "support": {
  8621. "source": "https://github.com/symfony/translation-contracts/tree/v3.4.1"
  8622. },
  8623. "funding": [
  8624. {
  8625. "url": "https://symfony.com/sponsor",
  8626. "type": "custom"
  8627. },
  8628. {
  8629. "url": "https://github.com/fabpot",
  8630. "type": "github"
  8631. },
  8632. {
  8633. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8634. "type": "tidelift"
  8635. }
  8636. ],
  8637. "time": "2023-12-26T14:02:43+00:00"
  8638. },
  8639. {
  8640. "name": "symfony/validator",
  8641. "version": "v6.4.4",
  8642. "source": {
  8643. "type": "git",
  8644. "url": "https://github.com/symfony/validator.git",
  8645. "reference": "1cf92edc9a94d16275efef949fa6748d11cc8f47"
  8646. },
  8647. "dist": {
  8648. "type": "zip",
  8649. "url": "https://api.github.com/repos/symfony/validator/zipball/1cf92edc9a94d16275efef949fa6748d11cc8f47",
  8650. "reference": "1cf92edc9a94d16275efef949fa6748d11cc8f47",
  8651. "shasum": ""
  8652. },
  8653. "require": {
  8654. "php": ">=8.1",
  8655. "symfony/deprecation-contracts": "^2.5|^3",
  8656. "symfony/polyfill-ctype": "~1.8",
  8657. "symfony/polyfill-mbstring": "~1.0",
  8658. "symfony/polyfill-php83": "^1.27",
  8659. "symfony/translation-contracts": "^2.5|^3"
  8660. },
  8661. "conflict": {
  8662. "doctrine/annotations": "<1.13",
  8663. "doctrine/lexer": "<1.1",
  8664. "symfony/dependency-injection": "<5.4",
  8665. "symfony/expression-language": "<5.4",
  8666. "symfony/http-kernel": "<5.4",
  8667. "symfony/intl": "<5.4",
  8668. "symfony/property-info": "<5.4",
  8669. "symfony/translation": "<5.4.35|>=6.0,<6.3.12|>=6.4,<6.4.3|>=7.0,<7.0.3",
  8670. "symfony/yaml": "<5.4"
  8671. },
  8672. "require-dev": {
  8673. "doctrine/annotations": "^1.13|^2",
  8674. "egulias/email-validator": "^2.1.10|^3|^4",
  8675. "symfony/cache": "^5.4|^6.0|^7.0",
  8676. "symfony/config": "^5.4|^6.0|^7.0",
  8677. "symfony/console": "^5.4|^6.0|^7.0",
  8678. "symfony/dependency-injection": "^5.4|^6.0|^7.0",
  8679. "symfony/expression-language": "^5.4|^6.0|^7.0",
  8680. "symfony/finder": "^5.4|^6.0|^7.0",
  8681. "symfony/http-client": "^5.4|^6.0|^7.0",
  8682. "symfony/http-foundation": "^5.4|^6.0|^7.0",
  8683. "symfony/http-kernel": "^5.4|^6.0|^7.0",
  8684. "symfony/intl": "^5.4|^6.0|^7.0",
  8685. "symfony/mime": "^5.4|^6.0|^7.0",
  8686. "symfony/property-access": "^5.4|^6.0|^7.0",
  8687. "symfony/property-info": "^5.4|^6.0|^7.0",
  8688. "symfony/translation": "^5.4.35|~6.3.12|^6.4.3|^7.0.3",
  8689. "symfony/yaml": "^5.4|^6.0|^7.0"
  8690. },
  8691. "type": "library",
  8692. "autoload": {
  8693. "psr-4": {
  8694. "Symfony\\Component\\Validator\\": ""
  8695. },
  8696. "exclude-from-classmap": [
  8697. "/Tests/"
  8698. ]
  8699. },
  8700. "notification-url": "https://packagist.org/downloads/",
  8701. "license": [
  8702. "MIT"
  8703. ],
  8704. "authors": [
  8705. {
  8706. "name": "Fabien Potencier",
  8707. "email": "fabien@symfony.com"
  8708. },
  8709. {
  8710. "name": "Symfony Community",
  8711. "homepage": "https://symfony.com/contributors"
  8712. }
  8713. ],
  8714. "description": "Provides tools to validate values",
  8715. "homepage": "https://symfony.com",
  8716. "support": {
  8717. "source": "https://github.com/symfony/validator/tree/v6.4.4"
  8718. },
  8719. "funding": [
  8720. {
  8721. "url": "https://symfony.com/sponsor",
  8722. "type": "custom"
  8723. },
  8724. {
  8725. "url": "https://github.com/fabpot",
  8726. "type": "github"
  8727. },
  8728. {
  8729. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8730. "type": "tidelift"
  8731. }
  8732. ],
  8733. "time": "2024-02-22T20:27:10+00:00"
  8734. },
  8735. {
  8736. "name": "symfony/var-dumper",
  8737. "version": "v6.4.4",
  8738. "source": {
  8739. "type": "git",
  8740. "url": "https://github.com/symfony/var-dumper.git",
  8741. "reference": "b439823f04c98b84d4366c79507e9da6230944b1"
  8742. },
  8743. "dist": {
  8744. "type": "zip",
  8745. "url": "https://api.github.com/repos/symfony/var-dumper/zipball/b439823f04c98b84d4366c79507e9da6230944b1",
  8746. "reference": "b439823f04c98b84d4366c79507e9da6230944b1",
  8747. "shasum": ""
  8748. },
  8749. "require": {
  8750. "php": ">=8.1",
  8751. "symfony/deprecation-contracts": "^2.5|^3",
  8752. "symfony/polyfill-mbstring": "~1.0"
  8753. },
  8754. "conflict": {
  8755. "symfony/console": "<5.4"
  8756. },
  8757. "require-dev": {
  8758. "ext-iconv": "*",
  8759. "symfony/console": "^5.4|^6.0|^7.0",
  8760. "symfony/error-handler": "^6.3|^7.0",
  8761. "symfony/http-kernel": "^5.4|^6.0|^7.0",
  8762. "symfony/process": "^5.4|^6.0|^7.0",
  8763. "symfony/uid": "^5.4|^6.0|^7.0",
  8764. "twig/twig": "^2.13|^3.0.4"
  8765. },
  8766. "bin": [
  8767. "Resources/bin/var-dump-server"
  8768. ],
  8769. "type": "library",
  8770. "autoload": {
  8771. "files": [
  8772. "Resources/functions/dump.php"
  8773. ],
  8774. "psr-4": {
  8775. "Symfony\\Component\\VarDumper\\": ""
  8776. },
  8777. "exclude-from-classmap": [
  8778. "/Tests/"
  8779. ]
  8780. },
  8781. "notification-url": "https://packagist.org/downloads/",
  8782. "license": [
  8783. "MIT"
  8784. ],
  8785. "authors": [
  8786. {
  8787. "name": "Nicolas Grekas",
  8788. "email": "p@tchwork.com"
  8789. },
  8790. {
  8791. "name": "Symfony Community",
  8792. "homepage": "https://symfony.com/contributors"
  8793. }
  8794. ],
  8795. "description": "Provides mechanisms for walking through any arbitrary PHP variable",
  8796. "homepage": "https://symfony.com",
  8797. "keywords": [
  8798. "debug",
  8799. "dump"
  8800. ],
  8801. "support": {
  8802. "source": "https://github.com/symfony/var-dumper/tree/v6.4.4"
  8803. },
  8804. "funding": [
  8805. {
  8806. "url": "https://symfony.com/sponsor",
  8807. "type": "custom"
  8808. },
  8809. {
  8810. "url": "https://github.com/fabpot",
  8811. "type": "github"
  8812. },
  8813. {
  8814. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8815. "type": "tidelift"
  8816. }
  8817. ],
  8818. "time": "2024-02-15T11:23:52+00:00"
  8819. },
  8820. {
  8821. "name": "symfony/var-exporter",
  8822. "version": "v6.4.4",
  8823. "source": {
  8824. "type": "git",
  8825. "url": "https://github.com/symfony/var-exporter.git",
  8826. "reference": "0bd342e24aef49fc82a21bd4eedd3e665d177e5b"
  8827. },
  8828. "dist": {
  8829. "type": "zip",
  8830. "url": "https://api.github.com/repos/symfony/var-exporter/zipball/0bd342e24aef49fc82a21bd4eedd3e665d177e5b",
  8831. "reference": "0bd342e24aef49fc82a21bd4eedd3e665d177e5b",
  8832. "shasum": ""
  8833. },
  8834. "require": {
  8835. "php": ">=8.1",
  8836. "symfony/deprecation-contracts": "^2.5|^3"
  8837. },
  8838. "require-dev": {
  8839. "symfony/var-dumper": "^5.4|^6.0|^7.0"
  8840. },
  8841. "type": "library",
  8842. "autoload": {
  8843. "psr-4": {
  8844. "Symfony\\Component\\VarExporter\\": ""
  8845. },
  8846. "exclude-from-classmap": [
  8847. "/Tests/"
  8848. ]
  8849. },
  8850. "notification-url": "https://packagist.org/downloads/",
  8851. "license": [
  8852. "MIT"
  8853. ],
  8854. "authors": [
  8855. {
  8856. "name": "Nicolas Grekas",
  8857. "email": "p@tchwork.com"
  8858. },
  8859. {
  8860. "name": "Symfony Community",
  8861. "homepage": "https://symfony.com/contributors"
  8862. }
  8863. ],
  8864. "description": "Allows exporting any serializable PHP data structure to plain PHP code",
  8865. "homepage": "https://symfony.com",
  8866. "keywords": [
  8867. "clone",
  8868. "construct",
  8869. "export",
  8870. "hydrate",
  8871. "instantiate",
  8872. "lazy-loading",
  8873. "proxy",
  8874. "serialize"
  8875. ],
  8876. "support": {
  8877. "source": "https://github.com/symfony/var-exporter/tree/v6.4.4"
  8878. },
  8879. "funding": [
  8880. {
  8881. "url": "https://symfony.com/sponsor",
  8882. "type": "custom"
  8883. },
  8884. {
  8885. "url": "https://github.com/fabpot",
  8886. "type": "github"
  8887. },
  8888. {
  8889. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8890. "type": "tidelift"
  8891. }
  8892. ],
  8893. "time": "2024-02-26T08:37:45+00:00"
  8894. },
  8895. {
  8896. "name": "symfony/yaml",
  8897. "version": "v6.4.3",
  8898. "source": {
  8899. "type": "git",
  8900. "url": "https://github.com/symfony/yaml.git",
  8901. "reference": "d75715985f0f94f978e3a8fa42533e10db921b90"
  8902. },
  8903. "dist": {
  8904. "type": "zip",
  8905. "url": "https://api.github.com/repos/symfony/yaml/zipball/d75715985f0f94f978e3a8fa42533e10db921b90",
  8906. "reference": "d75715985f0f94f978e3a8fa42533e10db921b90",
  8907. "shasum": ""
  8908. },
  8909. "require": {
  8910. "php": ">=8.1",
  8911. "symfony/deprecation-contracts": "^2.5|^3",
  8912. "symfony/polyfill-ctype": "^1.8"
  8913. },
  8914. "conflict": {
  8915. "symfony/console": "<5.4"
  8916. },
  8917. "require-dev": {
  8918. "symfony/console": "^5.4|^6.0|^7.0"
  8919. },
  8920. "bin": [
  8921. "Resources/bin/yaml-lint"
  8922. ],
  8923. "type": "library",
  8924. "autoload": {
  8925. "psr-4": {
  8926. "Symfony\\Component\\Yaml\\": ""
  8927. },
  8928. "exclude-from-classmap": [
  8929. "/Tests/"
  8930. ]
  8931. },
  8932. "notification-url": "https://packagist.org/downloads/",
  8933. "license": [
  8934. "MIT"
  8935. ],
  8936. "authors": [
  8937. {
  8938. "name": "Fabien Potencier",
  8939. "email": "fabien@symfony.com"
  8940. },
  8941. {
  8942. "name": "Symfony Community",
  8943. "homepage": "https://symfony.com/contributors"
  8944. }
  8945. ],
  8946. "description": "Loads and dumps YAML files",
  8947. "homepage": "https://symfony.com",
  8948. "support": {
  8949. "source": "https://github.com/symfony/yaml/tree/v6.4.3"
  8950. },
  8951. "funding": [
  8952. {
  8953. "url": "https://symfony.com/sponsor",
  8954. "type": "custom"
  8955. },
  8956. {
  8957. "url": "https://github.com/fabpot",
  8958. "type": "github"
  8959. },
  8960. {
  8961. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8962. "type": "tidelift"
  8963. }
  8964. ],
  8965. "time": "2024-01-23T14:51:35+00:00"
  8966. },
  8967. {
  8968. "name": "twbs/bootstrap",
  8969. "version": "v4.5.0",
  8970. "source": {
  8971. "type": "git",
  8972. "url": "https://github.com/twbs/bootstrap.git",
  8973. "reference": "7a6da5e3e7ad7c749dde806546a35d4d4259d965"
  8974. },
  8975. "dist": {
  8976. "type": "zip",
  8977. "url": "https://api.github.com/repos/twbs/bootstrap/zipball/7a6da5e3e7ad7c749dde806546a35d4d4259d965",
  8978. "reference": "7a6da5e3e7ad7c749dde806546a35d4d4259d965",
  8979. "shasum": ""
  8980. },
  8981. "replace": {
  8982. "twitter/bootstrap": "self.version"
  8983. },
  8984. "type": "library",
  8985. "extra": {
  8986. "branch-alias": {
  8987. "dev-master": "3.3.x-dev"
  8988. }
  8989. },
  8990. "notification-url": "https://packagist.org/downloads/",
  8991. "license": [
  8992. "MIT"
  8993. ],
  8994. "authors": [
  8995. {
  8996. "name": "Mark Otto",
  8997. "email": "markdotto@gmail.com"
  8998. },
  8999. {
  9000. "name": "Jacob Thornton",
  9001. "email": "jacobthornton@gmail.com"
  9002. }
  9003. ],
  9004. "description": "The most popular front-end framework for developing responsive, mobile first projects on the web.",
  9005. "homepage": "https://getbootstrap.com/",
  9006. "keywords": [
  9007. "JS",
  9008. "css",
  9009. "framework",
  9010. "front-end",
  9011. "mobile-first",
  9012. "responsive",
  9013. "sass",
  9014. "web"
  9015. ],
  9016. "support": {
  9017. "issues": "https://github.com/twbs/bootstrap/issues",
  9018. "source": "https://github.com/twbs/bootstrap/tree/v4-dev"
  9019. },
  9020. "funding": [
  9021. {
  9022. "url": "https://opencollective.com/bootstrap",
  9023. "type": "open_collective"
  9024. }
  9025. ],
  9026. "time": "2020-05-12T17:44:42+00:00"
  9027. },
  9028. {
  9029. "name": "twig/twig",
  9030. "version": "v3.8.0",
  9031. "source": {
  9032. "type": "git",
  9033. "url": "https://github.com/twigphp/Twig.git",
  9034. "reference": "9d15f0ac07f44dc4217883ec6ae02fd555c6f71d"
  9035. },
  9036. "dist": {
  9037. "type": "zip",
  9038. "url": "https://api.github.com/repos/twigphp/Twig/zipball/9d15f0ac07f44dc4217883ec6ae02fd555c6f71d",
  9039. "reference": "9d15f0ac07f44dc4217883ec6ae02fd555c6f71d",
  9040. "shasum": ""
  9041. },
  9042. "require": {
  9043. "php": ">=7.2.5",
  9044. "symfony/polyfill-ctype": "^1.8",
  9045. "symfony/polyfill-mbstring": "^1.3",
  9046. "symfony/polyfill-php80": "^1.22"
  9047. },
  9048. "require-dev": {
  9049. "psr/container": "^1.0|^2.0",
  9050. "symfony/phpunit-bridge": "^5.4.9|^6.3|^7.0"
  9051. },
  9052. "type": "library",
  9053. "autoload": {
  9054. "psr-4": {
  9055. "Twig\\": "src/"
  9056. }
  9057. },
  9058. "notification-url": "https://packagist.org/downloads/",
  9059. "license": [
  9060. "BSD-3-Clause"
  9061. ],
  9062. "authors": [
  9063. {
  9064. "name": "Fabien Potencier",
  9065. "email": "fabien@symfony.com",
  9066. "homepage": "http://fabien.potencier.org",
  9067. "role": "Lead Developer"
  9068. },
  9069. {
  9070. "name": "Twig Team",
  9071. "role": "Contributors"
  9072. },
  9073. {
  9074. "name": "Armin Ronacher",
  9075. "email": "armin.ronacher@active-4.com",
  9076. "role": "Project Founder"
  9077. }
  9078. ],
  9079. "description": "Twig, the flexible, fast, and secure template language for PHP",
  9080. "homepage": "https://twig.symfony.com",
  9081. "keywords": [
  9082. "templating"
  9083. ],
  9084. "support": {
  9085. "issues": "https://github.com/twigphp/Twig/issues",
  9086. "source": "https://github.com/twigphp/Twig/tree/v3.8.0"
  9087. },
  9088. "funding": [
  9089. {
  9090. "url": "https://github.com/fabpot",
  9091. "type": "github"
  9092. },
  9093. {
  9094. "url": "https://tidelift.com/funding/github/packagist/twig/twig",
  9095. "type": "tidelift"
  9096. }
  9097. ],
  9098. "time": "2023-11-21T18:54:41+00:00"
  9099. },
  9100. {
  9101. "name": "webflo/drupal-finder",
  9102. "version": "1.2.2",
  9103. "source": {
  9104. "type": "git",
  9105. "url": "https://github.com/webflo/drupal-finder.git",
  9106. "reference": "c8e5dbe65caef285fec8057a4c718a0d4138d1ee"
  9107. },
  9108. "dist": {
  9109. "type": "zip",
  9110. "url": "https://api.github.com/repos/webflo/drupal-finder/zipball/c8e5dbe65caef285fec8057a4c718a0d4138d1ee",
  9111. "reference": "c8e5dbe65caef285fec8057a4c718a0d4138d1ee",
  9112. "shasum": ""
  9113. },
  9114. "require": {
  9115. "ext-json": "*"
  9116. },
  9117. "require-dev": {
  9118. "mikey179/vfsstream": "^1.6",
  9119. "phpunit/phpunit": "^4.8"
  9120. },
  9121. "type": "library",
  9122. "autoload": {
  9123. "classmap": [
  9124. "src/DrupalFinder.php"
  9125. ]
  9126. },
  9127. "notification-url": "https://packagist.org/downloads/",
  9128. "license": [
  9129. "GPL-2.0-or-later"
  9130. ],
  9131. "authors": [
  9132. {
  9133. "name": "Florian Weber",
  9134. "email": "florian@webflo.org"
  9135. }
  9136. ],
  9137. "description": "Helper class to locate a Drupal installation from a given path.",
  9138. "support": {
  9139. "issues": "https://github.com/webflo/drupal-finder/issues",
  9140. "source": "https://github.com/webflo/drupal-finder/tree/1.2.2"
  9141. },
  9142. "time": "2020-10-27T09:42:17+00:00"
  9143. }
  9144. ],
  9145. "packages-dev": [],
  9146. "aliases": [],
  9147. "minimum-stability": "dev",
  9148. "stability-flags": {
  9149. "drupal/field_pager": 10
  9150. },
  9151. "prefer-stable": true,
  9152. "prefer-lowest": false,
  9153. "platform": [],
  9154. "platform-dev": [],
  9155. "plugin-api-version": "2.6.0"
  9156. }