composer.lock 336 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298529953005301530253035304530553065307530853095310531153125313531453155316531753185319532053215322532353245325532653275328532953305331533253335334533553365337533853395340534153425343534453455346534753485349535053515352535353545355535653575358535953605361536253635364536553665367536853695370537153725373537453755376537753785379538053815382538353845385538653875388538953905391539253935394539553965397539853995400540154025403540454055406540754085409541054115412541354145415541654175418541954205421542254235424542554265427542854295430543154325433543454355436543754385439544054415442544354445445544654475448544954505451545254535454545554565457545854595460546154625463546454655466546754685469547054715472547354745475547654775478547954805481548254835484548554865487548854895490549154925493549454955496549754985499550055015502550355045505550655075508550955105511551255135514551555165517551855195520552155225523552455255526552755285529553055315532553355345535553655375538553955405541554255435544554555465547554855495550555155525553555455555556555755585559556055615562556355645565556655675568556955705571557255735574557555765577557855795580558155825583558455855586558755885589559055915592559355945595559655975598559956005601560256035604560556065607560856095610561156125613561456155616561756185619562056215622562356245625562656275628562956305631563256335634563556365637563856395640564156425643564456455646564756485649565056515652565356545655565656575658565956605661566256635664566556665667566856695670567156725673567456755676567756785679568056815682568356845685568656875688568956905691569256935694569556965697569856995700570157025703570457055706570757085709571057115712571357145715571657175718571957205721572257235724572557265727572857295730573157325733573457355736573757385739574057415742574357445745574657475748574957505751575257535754575557565757575857595760576157625763576457655766576757685769577057715772577357745775577657775778577957805781578257835784578557865787578857895790579157925793579457955796579757985799580058015802580358045805580658075808580958105811581258135814581558165817581858195820582158225823582458255826582758285829583058315832583358345835583658375838583958405841584258435844584558465847584858495850585158525853585458555856585758585859586058615862586358645865586658675868586958705871587258735874587558765877587858795880588158825883588458855886588758885889589058915892589358945895589658975898589959005901590259035904590559065907590859095910591159125913591459155916591759185919592059215922592359245925592659275928592959305931593259335934593559365937593859395940594159425943594459455946594759485949595059515952595359545955595659575958595959605961596259635964596559665967596859695970597159725973597459755976597759785979598059815982598359845985598659875988598959905991599259935994599559965997599859996000600160026003600460056006600760086009601060116012601360146015601660176018601960206021602260236024602560266027602860296030603160326033603460356036603760386039604060416042604360446045604660476048604960506051605260536054605560566057605860596060606160626063606460656066606760686069607060716072607360746075607660776078607960806081608260836084608560866087608860896090609160926093609460956096609760986099610061016102610361046105610661076108610961106111611261136114611561166117611861196120612161226123612461256126612761286129613061316132613361346135613661376138613961406141614261436144614561466147614861496150615161526153615461556156615761586159616061616162616361646165616661676168616961706171617261736174617561766177617861796180618161826183618461856186618761886189619061916192619361946195619661976198619962006201620262036204620562066207620862096210621162126213621462156216621762186219622062216222622362246225622662276228622962306231623262336234623562366237623862396240624162426243624462456246624762486249625062516252625362546255625662576258625962606261626262636264626562666267626862696270627162726273627462756276627762786279628062816282628362846285628662876288628962906291629262936294629562966297629862996300630163026303630463056306630763086309631063116312631363146315631663176318631963206321632263236324632563266327632863296330633163326333633463356336633763386339634063416342634363446345634663476348634963506351635263536354635563566357635863596360636163626363636463656366636763686369637063716372637363746375637663776378637963806381638263836384638563866387638863896390639163926393639463956396639763986399640064016402640364046405640664076408640964106411641264136414641564166417641864196420642164226423642464256426642764286429643064316432643364346435643664376438643964406441644264436444644564466447644864496450645164526453645464556456645764586459646064616462646364646465646664676468646964706471647264736474647564766477647864796480648164826483648464856486648764886489649064916492649364946495649664976498649965006501650265036504650565066507650865096510651165126513651465156516651765186519652065216522652365246525652665276528652965306531653265336534653565366537653865396540654165426543654465456546654765486549655065516552655365546555655665576558655965606561656265636564656565666567656865696570657165726573657465756576657765786579658065816582658365846585658665876588658965906591659265936594659565966597659865996600660166026603660466056606660766086609661066116612661366146615661666176618661966206621662266236624662566266627662866296630663166326633663466356636663766386639664066416642664366446645664666476648664966506651665266536654665566566657665866596660666166626663666466656666666766686669667066716672667366746675667666776678667966806681668266836684668566866687668866896690669166926693669466956696669766986699670067016702670367046705670667076708670967106711671267136714671567166717671867196720672167226723672467256726672767286729673067316732673367346735673667376738673967406741674267436744674567466747674867496750675167526753675467556756675767586759676067616762676367646765676667676768676967706771677267736774677567766777677867796780678167826783678467856786678767886789679067916792679367946795679667976798679968006801680268036804680568066807680868096810681168126813681468156816681768186819682068216822682368246825682668276828682968306831683268336834683568366837683868396840684168426843684468456846684768486849685068516852685368546855685668576858685968606861686268636864686568666867686868696870687168726873687468756876687768786879688068816882688368846885688668876888688968906891689268936894689568966897689868996900690169026903690469056906690769086909691069116912691369146915691669176918691969206921692269236924692569266927692869296930693169326933693469356936693769386939694069416942694369446945694669476948694969506951695269536954695569566957695869596960696169626963696469656966696769686969697069716972697369746975697669776978697969806981698269836984698569866987698869896990699169926993699469956996699769986999700070017002700370047005700670077008700970107011701270137014701570167017701870197020702170227023702470257026702770287029703070317032703370347035703670377038703970407041704270437044704570467047704870497050705170527053705470557056705770587059706070617062706370647065706670677068706970707071707270737074707570767077707870797080708170827083708470857086708770887089709070917092709370947095709670977098709971007101710271037104710571067107710871097110711171127113711471157116711771187119712071217122712371247125712671277128712971307131713271337134713571367137713871397140714171427143714471457146714771487149715071517152715371547155715671577158715971607161716271637164716571667167716871697170717171727173717471757176717771787179718071817182718371847185718671877188718971907191719271937194719571967197719871997200720172027203720472057206720772087209721072117212721372147215721672177218721972207221722272237224722572267227722872297230723172327233723472357236723772387239724072417242724372447245724672477248724972507251725272537254725572567257725872597260726172627263726472657266726772687269727072717272727372747275727672777278727972807281728272837284728572867287728872897290729172927293729472957296729772987299730073017302730373047305730673077308730973107311731273137314731573167317731873197320732173227323732473257326732773287329733073317332733373347335733673377338733973407341734273437344734573467347734873497350735173527353735473557356735773587359736073617362736373647365736673677368736973707371737273737374737573767377737873797380738173827383738473857386738773887389739073917392739373947395739673977398739974007401740274037404740574067407740874097410741174127413741474157416741774187419742074217422742374247425742674277428742974307431743274337434743574367437743874397440744174427443744474457446744774487449745074517452745374547455745674577458745974607461746274637464746574667467746874697470747174727473747474757476747774787479748074817482748374847485748674877488748974907491749274937494749574967497749874997500750175027503750475057506750775087509751075117512751375147515751675177518751975207521752275237524752575267527752875297530753175327533753475357536753775387539754075417542754375447545754675477548754975507551755275537554755575567557755875597560756175627563756475657566756775687569757075717572757375747575757675777578757975807581758275837584758575867587758875897590759175927593759475957596759775987599760076017602760376047605760676077608760976107611761276137614761576167617761876197620762176227623762476257626762776287629763076317632763376347635763676377638763976407641764276437644764576467647764876497650765176527653765476557656765776587659766076617662766376647665766676677668766976707671767276737674767576767677767876797680768176827683768476857686768776887689769076917692769376947695769676977698769977007701770277037704770577067707770877097710771177127713771477157716771777187719772077217722772377247725772677277728772977307731773277337734773577367737773877397740774177427743774477457746774777487749775077517752775377547755775677577758775977607761776277637764776577667767776877697770777177727773777477757776777777787779778077817782778377847785778677877788778977907791779277937794779577967797779877997800780178027803780478057806780778087809781078117812781378147815781678177818781978207821782278237824782578267827782878297830783178327833783478357836783778387839784078417842784378447845784678477848784978507851785278537854785578567857785878597860786178627863786478657866786778687869787078717872787378747875787678777878787978807881788278837884788578867887788878897890789178927893789478957896789778987899790079017902790379047905790679077908790979107911791279137914791579167917791879197920792179227923792479257926792779287929793079317932793379347935793679377938793979407941794279437944794579467947794879497950795179527953795479557956795779587959796079617962796379647965796679677968796979707971797279737974797579767977797879797980798179827983798479857986798779887989799079917992799379947995799679977998799980008001800280038004800580068007800880098010801180128013801480158016801780188019802080218022802380248025802680278028802980308031803280338034803580368037803880398040804180428043804480458046804780488049805080518052805380548055805680578058805980608061806280638064806580668067806880698070807180728073807480758076807780788079808080818082808380848085808680878088808980908091809280938094809580968097809880998100810181028103810481058106810781088109811081118112811381148115811681178118811981208121812281238124812581268127812881298130813181328133813481358136813781388139814081418142814381448145814681478148814981508151815281538154815581568157815881598160816181628163816481658166816781688169817081718172817381748175817681778178817981808181818281838184818581868187818881898190819181928193819481958196819781988199820082018202820382048205820682078208820982108211821282138214821582168217821882198220822182228223822482258226822782288229823082318232823382348235823682378238823982408241824282438244824582468247824882498250825182528253825482558256825782588259826082618262826382648265826682678268826982708271827282738274827582768277827882798280828182828283828482858286828782888289829082918292829382948295829682978298829983008301830283038304830583068307830883098310831183128313831483158316831783188319832083218322832383248325832683278328832983308331833283338334833583368337833883398340834183428343834483458346834783488349835083518352835383548355835683578358835983608361836283638364836583668367836883698370837183728373837483758376837783788379838083818382838383848385838683878388838983908391839283938394839583968397839883998400840184028403840484058406840784088409841084118412841384148415841684178418841984208421842284238424842584268427842884298430843184328433843484358436843784388439844084418442844384448445844684478448844984508451845284538454845584568457845884598460846184628463846484658466846784688469847084718472847384748475847684778478847984808481848284838484848584868487848884898490849184928493849484958496849784988499850085018502850385048505850685078508850985108511851285138514851585168517851885198520852185228523852485258526852785288529853085318532853385348535853685378538853985408541854285438544854585468547854885498550855185528553855485558556855785588559856085618562856385648565856685678568856985708571857285738574857585768577857885798580858185828583858485858586858785888589859085918592859385948595859685978598859986008601860286038604860586068607860886098610861186128613861486158616861786188619862086218622862386248625862686278628862986308631863286338634863586368637863886398640864186428643864486458646864786488649865086518652865386548655865686578658865986608661866286638664866586668667866886698670867186728673867486758676867786788679868086818682868386848685868686878688868986908691869286938694869586968697869886998700870187028703870487058706870787088709871087118712871387148715871687178718871987208721872287238724872587268727872887298730873187328733873487358736873787388739874087418742874387448745874687478748874987508751875287538754875587568757875887598760876187628763876487658766876787688769877087718772877387748775877687778778877987808781878287838784878587868787878887898790879187928793879487958796879787988799880088018802880388048805880688078808880988108811881288138814881588168817881888198820882188228823882488258826882788288829883088318832883388348835883688378838883988408841884288438844884588468847884888498850885188528853885488558856885788588859886088618862886388648865886688678868886988708871887288738874887588768877887888798880888188828883888488858886888788888889889088918892889388948895889688978898889989008901890289038904890589068907890889098910891189128913891489158916891789188919892089218922892389248925892689278928892989308931893289338934893589368937893889398940894189428943894489458946894789488949895089518952895389548955895689578958895989608961896289638964896589668967896889698970897189728973897489758976897789788979898089818982898389848985898689878988898989908991899289938994899589968997899889999000900190029003900490059006900790089009901090119012901390149015901690179018901990209021902290239024902590269027902890299030903190329033903490359036903790389039904090419042904390449045904690479048904990509051905290539054905590569057905890599060906190629063906490659066906790689069907090719072907390749075907690779078907990809081908290839084908590869087908890899090909190929093909490959096909790989099910091019102910391049105910691079108910991109111911291139114911591169117911891199120912191229123912491259126912791289129913091319132913391349135913691379138913991409141914291439144914591469147914891499150915191529153915491559156915791589159916091619162916391649165916691679168916991709171917291739174917591769177917891799180918191829183918491859186918791889189919091919192919391949195919691979198919992009201920292039204920592069207920892099210921192129213921492159216921792189219922092219222922392249225922692279228922992309231923292339234923592369237923892399240924192429243924492459246924792489249925092519252
  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": "31e58398ce2ac87a4b0a5356fa8c1045",
  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/menu_link_attributes",
  3217. "version": "1.3.0",
  3218. "source": {
  3219. "type": "git",
  3220. "url": "https://git.drupalcode.org/project/menu_link_attributes.git",
  3221. "reference": "8.x-1.3"
  3222. },
  3223. "dist": {
  3224. "type": "zip",
  3225. "url": "https://ftp.drupal.org/files/projects/menu_link_attributes-8.x-1.3.zip",
  3226. "reference": "8.x-1.3",
  3227. "shasum": "431c7954cc614a1b9677173f0209f1df15592503"
  3228. },
  3229. "require": {
  3230. "drupal/core": "^8 || ^9 || ^10"
  3231. },
  3232. "type": "drupal-module",
  3233. "extra": {
  3234. "drupal": {
  3235. "version": "8.x-1.3",
  3236. "datestamp": "1671026425",
  3237. "security-coverage": {
  3238. "status": "covered",
  3239. "message": "Covered by Drupal's security advisory policy"
  3240. }
  3241. }
  3242. },
  3243. "notification-url": "https://packages.drupal.org/8/downloads",
  3244. "license": [
  3245. "GPL-2.0-or-later"
  3246. ],
  3247. "authors": [
  3248. {
  3249. "name": "jcnventura",
  3250. "homepage": "https://www.drupal.org/user/122464"
  3251. },
  3252. {
  3253. "name": "yannickoo",
  3254. "homepage": "https://www.drupal.org/user/531118"
  3255. }
  3256. ],
  3257. "description": "Allows you to add attributes to menu links.",
  3258. "homepage": "http://drupal.org/project/menu_link_attributes",
  3259. "keywords": [
  3260. "Drupal"
  3261. ],
  3262. "support": {
  3263. "source": "http://cgit.drupalcode.org/menu_link_attributes",
  3264. "issues": "http://drupal.org/project/issues/menu_link_attributes"
  3265. }
  3266. },
  3267. {
  3268. "name": "drupal/metatag",
  3269. "version": "1.26.0",
  3270. "source": {
  3271. "type": "git",
  3272. "url": "https://git.drupalcode.org/project/metatag.git",
  3273. "reference": "8.x-1.26"
  3274. },
  3275. "dist": {
  3276. "type": "zip",
  3277. "url": "https://ftp.drupal.org/files/projects/metatag-8.x-1.26.zip",
  3278. "reference": "8.x-1.26",
  3279. "shasum": "afa4a37422748baa2f0c35b13961438668ef3be8"
  3280. },
  3281. "require": {
  3282. "drupal/core": "^9.3 || ^10",
  3283. "drupal/token": "^1.0"
  3284. },
  3285. "require-dev": {
  3286. "drupal/devel": "^4.0 || ^5.0",
  3287. "drupal/hal": "^9 || ^1 || ^2",
  3288. "drupal/metatag_dc": "*",
  3289. "drupal/metatag_open_graph": "*",
  3290. "drupal/page_manager": "^4.0",
  3291. "drupal/panelizer": "^4.0",
  3292. "drupal/redirect": "^1.0",
  3293. "drupal/webprofiler": "^9 || ^10",
  3294. "mpyw/phpunit-patch-serializable-comparison": "*"
  3295. },
  3296. "type": "drupal-module",
  3297. "extra": {
  3298. "drupal": {
  3299. "version": "8.x-1.26",
  3300. "datestamp": "1687856123",
  3301. "security-coverage": {
  3302. "status": "covered",
  3303. "message": "Covered by Drupal's security advisory policy"
  3304. }
  3305. }
  3306. },
  3307. "notification-url": "https://packages.drupal.org/8/downloads",
  3308. "license": [
  3309. "GPL-2.0-or-later"
  3310. ],
  3311. "authors": [
  3312. {
  3313. "name": "See contributors",
  3314. "homepage": "https://www.drupal.org/node/640498/committers",
  3315. "role": "Developer"
  3316. },
  3317. {
  3318. "name": "Dave Reid",
  3319. "homepage": "https://www.drupal.org/user/53892"
  3320. }
  3321. ],
  3322. "description": "Manage meta tags for all entities.",
  3323. "homepage": "https://www.drupal.org/project/metatag",
  3324. "keywords": [
  3325. "Drupal",
  3326. "seo"
  3327. ],
  3328. "support": {
  3329. "source": "https://git.drupalcode.org/project/metatag",
  3330. "issues": "https://www.drupal.org/project/issues/metatag",
  3331. "docs": "https://www.drupal.org/docs/8/modules/metatag"
  3332. }
  3333. },
  3334. {
  3335. "name": "drupal/page_manager",
  3336. "version": "4.0.0-rc2",
  3337. "source": {
  3338. "type": "git",
  3339. "url": "https://git.drupalcode.org/project/page_manager.git",
  3340. "reference": "8.x-4.0-rc2"
  3341. },
  3342. "dist": {
  3343. "type": "zip",
  3344. "url": "https://ftp.drupal.org/files/projects/page_manager-8.x-4.0-rc2.zip",
  3345. "reference": "8.x-4.0-rc2",
  3346. "shasum": "4a1e96284c5775343fbb4612072a2abfc83ebc33"
  3347. },
  3348. "require": {
  3349. "drupal/core": "^9.3 || ^10",
  3350. "drupal/ctools": "^3.11 || ^4.0"
  3351. },
  3352. "type": "drupal-module",
  3353. "extra": {
  3354. "drupal": {
  3355. "version": "8.x-4.0-rc2",
  3356. "datestamp": "1671210021",
  3357. "security-coverage": {
  3358. "status": "not-covered",
  3359. "message": "RC releases are not covered by Drupal security advisories."
  3360. }
  3361. },
  3362. "branch-alias": {
  3363. "dev-8.x-4.x": "4.x-dev"
  3364. }
  3365. },
  3366. "notification-url": "https://packages.drupal.org/8/downloads",
  3367. "license": [
  3368. "GPL-2.0-or-later"
  3369. ],
  3370. "authors": [
  3371. {
  3372. "name": "Tim Plunkett",
  3373. "homepage": "https://www.drupal.org/u/tim.plunkett",
  3374. "role": "Maintainer"
  3375. },
  3376. {
  3377. "name": "EclipseGc",
  3378. "homepage": "https://www.drupal.org/user/61203"
  3379. },
  3380. {
  3381. "name": "ivnish",
  3382. "homepage": "https://www.drupal.org/user/3547706"
  3383. },
  3384. {
  3385. "name": "japerry",
  3386. "homepage": "https://www.drupal.org/user/45640"
  3387. },
  3388. {
  3389. "name": "joelpittet",
  3390. "homepage": "https://www.drupal.org/user/160302"
  3391. },
  3392. {
  3393. "name": "manuel.adan",
  3394. "homepage": "https://www.drupal.org/user/516420"
  3395. },
  3396. {
  3397. "name": "phenaproxima",
  3398. "homepage": "https://www.drupal.org/user/205645"
  3399. }
  3400. ],
  3401. "description": "Provides a way to place blocks on a custom page.",
  3402. "homepage": "https://www.drupal.org/project/page_manager",
  3403. "support": {
  3404. "source": "https://git.drupal.org/project/page_manager.git",
  3405. "issues": "https://www.drupal.org/project/issues/page_manager",
  3406. "irc": "irc://irc.freenode.org/drupal-contribute"
  3407. }
  3408. },
  3409. {
  3410. "name": "drupal/panels",
  3411. "version": "dev-4.x",
  3412. "source": {
  3413. "type": "git",
  3414. "url": "https://git.drupalcode.org/project/panels.git",
  3415. "reference": "4dfd6a07adac69525832b94f6745ac3247a6cd92"
  3416. },
  3417. "require": {
  3418. "drupal/core": "^9.2 || ^10",
  3419. "drupal/ctools": "^3.12 || ^4.0",
  3420. "drupal/jquery_ui_droppable": "^1.0 || ^2.0"
  3421. },
  3422. "require-dev": {
  3423. "drupal/jquery_ui_droppable": "*",
  3424. "drupal/page_manager": "^4"
  3425. },
  3426. "type": "drupal-module",
  3427. "extra": {
  3428. "branch-alias": {
  3429. "dev-4.x": "4.x-dev",
  3430. "dev-8.x-4.x": "4.x-dev"
  3431. },
  3432. "drupal": {
  3433. "version": "8.x-4.7+5-dev",
  3434. "datestamp": "1693457160",
  3435. "security-coverage": {
  3436. "status": "not-covered",
  3437. "message": "Dev releases are not covered by Drupal security advisories."
  3438. }
  3439. }
  3440. },
  3441. "notification-url": "https://packages.drupal.org/8/downloads",
  3442. "license": [
  3443. "GPL-2.0+"
  3444. ],
  3445. "authors": [
  3446. {
  3447. "name": "Jakob Perry",
  3448. "homepage": "https://www.drupal.org/u/japerry"
  3449. },
  3450. {
  3451. "name": "Samuel Mortenson",
  3452. "homepage": "https://www.drupal.org/u/samuel.mortenson"
  3453. },
  3454. {
  3455. "name": "See other contributors",
  3456. "homepage": "https://www.drupal.org/node/74958/committers"
  3457. },
  3458. {
  3459. "name": "joelpittet",
  3460. "homepage": "https://www.drupal.org/user/160302"
  3461. },
  3462. {
  3463. "name": "Letharion",
  3464. "homepage": "https://www.drupal.org/user/373603"
  3465. },
  3466. {
  3467. "name": "merlinofchaos",
  3468. "homepage": "https://www.drupal.org/user/26979"
  3469. },
  3470. {
  3471. "name": "neclimdul",
  3472. "homepage": "https://www.drupal.org/user/48673"
  3473. },
  3474. {
  3475. "name": "phenaproxima",
  3476. "homepage": "https://www.drupal.org/user/205645"
  3477. },
  3478. {
  3479. "name": "samuel.mortenson",
  3480. "homepage": "https://www.drupal.org/user/2582268"
  3481. }
  3482. ],
  3483. "description": "Core Panels display functions; provides no external UI, at least one other Panels module should be enabled.",
  3484. "homepage": "https://www.drupal.org/project/panels",
  3485. "support": {
  3486. "source": "http://git.drupal.org/project/panels.git",
  3487. "issues": "https://www.drupal.org/project/issues/panels",
  3488. "irc": "irc://irc.freenode.org/drupal-scotch"
  3489. }
  3490. },
  3491. {
  3492. "name": "drupal/paragraphs",
  3493. "version": "1.17.0",
  3494. "source": {
  3495. "type": "git",
  3496. "url": "https://git.drupalcode.org/project/paragraphs.git",
  3497. "reference": "8.x-1.17"
  3498. },
  3499. "dist": {
  3500. "type": "zip",
  3501. "url": "https://ftp.drupal.org/files/projects/paragraphs-8.x-1.17.zip",
  3502. "reference": "8.x-1.17",
  3503. "shasum": "81c05f6a1eb59ab957c9ac97b2e79d6c9837bd72"
  3504. },
  3505. "require": {
  3506. "drupal/core": "^9.3 || ^10",
  3507. "drupal/entity_reference_revisions": "~1.3"
  3508. },
  3509. "require-dev": {
  3510. "drupal/block_field": "1.x-dev",
  3511. "drupal/diff": "1.x-dev",
  3512. "drupal/entity_browser": "2.x-dev",
  3513. "drupal/entity_usage": "2.x-dev",
  3514. "drupal/field_group": "3.x-dev",
  3515. "drupal/inline_entity_form": "1.x-dev",
  3516. "drupal/paragraphs-paragraphs_library": "*",
  3517. "drupal/replicate": "1.x-dev",
  3518. "drupal/search_api": "^1",
  3519. "drupal/search_api_db": "*"
  3520. },
  3521. "suggest": {
  3522. "drupal/entity_browser": "Recommended for an improved user experience when using the Paragraphs library module"
  3523. },
  3524. "type": "drupal-module",
  3525. "extra": {
  3526. "drupal": {
  3527. "version": "8.x-1.17",
  3528. "datestamp": "1705234146",
  3529. "security-coverage": {
  3530. "status": "covered",
  3531. "message": "Covered by Drupal's security advisory policy"
  3532. }
  3533. }
  3534. },
  3535. "notification-url": "https://packages.drupal.org/8/downloads",
  3536. "license": [
  3537. "GPL-2.0-or-later"
  3538. ],
  3539. "authors": [
  3540. {
  3541. "name": "Berdir",
  3542. "homepage": "https://www.drupal.org/user/214652"
  3543. },
  3544. {
  3545. "name": "Frans",
  3546. "homepage": "https://www.drupal.org/user/514222"
  3547. },
  3548. {
  3549. "name": "jeroen.b",
  3550. "homepage": "https://www.drupal.org/user/1853532"
  3551. },
  3552. {
  3553. "name": "jstoller",
  3554. "homepage": "https://www.drupal.org/user/99012"
  3555. },
  3556. {
  3557. "name": "miro_dietiker",
  3558. "homepage": "https://www.drupal.org/user/227761"
  3559. },
  3560. {
  3561. "name": "Primsi",
  3562. "homepage": "https://www.drupal.org/user/282629"
  3563. }
  3564. ],
  3565. "description": "Enables the creation of Paragraphs entities.",
  3566. "homepage": "https://www.drupal.org/project/paragraphs",
  3567. "support": {
  3568. "source": "https://git.drupalcode.org/project/paragraphs"
  3569. }
  3570. },
  3571. {
  3572. "name": "drupal/pathauto",
  3573. "version": "1.12.0",
  3574. "source": {
  3575. "type": "git",
  3576. "url": "https://git.drupalcode.org/project/pathauto.git",
  3577. "reference": "8.x-1.12"
  3578. },
  3579. "dist": {
  3580. "type": "zip",
  3581. "url": "https://ftp.drupal.org/files/projects/pathauto-8.x-1.12.zip",
  3582. "reference": "8.x-1.12",
  3583. "shasum": "b7b6432e315e38e59a7c6cc117134326c580de4c"
  3584. },
  3585. "require": {
  3586. "drupal/core": "^9.3 || ^10",
  3587. "drupal/ctools": "*",
  3588. "drupal/token": "*"
  3589. },
  3590. "suggest": {
  3591. "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."
  3592. },
  3593. "type": "drupal-module",
  3594. "extra": {
  3595. "drupal": {
  3596. "version": "8.x-1.12",
  3597. "datestamp": "1696776683",
  3598. "security-coverage": {
  3599. "status": "covered",
  3600. "message": "Covered by Drupal's security advisory policy"
  3601. }
  3602. },
  3603. "drush": {
  3604. "services": {
  3605. "drush.services.yml": "^9 || ^10"
  3606. }
  3607. }
  3608. },
  3609. "notification-url": "https://packages.drupal.org/8/downloads",
  3610. "license": [
  3611. "GPL-2.0-or-later"
  3612. ],
  3613. "authors": [
  3614. {
  3615. "name": "Berdir",
  3616. "homepage": "https://www.drupal.org/user/214652"
  3617. },
  3618. {
  3619. "name": "Dave Reid",
  3620. "homepage": "https://www.drupal.org/user/53892"
  3621. },
  3622. {
  3623. "name": "Freso",
  3624. "homepage": "https://www.drupal.org/user/27504"
  3625. },
  3626. {
  3627. "name": "greggles",
  3628. "homepage": "https://www.drupal.org/user/36762"
  3629. }
  3630. ],
  3631. "description": "Provides a mechanism for modules to automatically generate aliases for the content they manage.",
  3632. "homepage": "https://www.drupal.org/project/pathauto",
  3633. "support": {
  3634. "source": "https://cgit.drupalcode.org/pathauto",
  3635. "issues": "https://www.drupal.org/project/issues/pathauto",
  3636. "documentation": "https://www.drupal.org/docs/8/modules/pathauto"
  3637. }
  3638. },
  3639. {
  3640. "name": "drupal/redirect",
  3641. "version": "1.9.0",
  3642. "source": {
  3643. "type": "git",
  3644. "url": "https://git.drupalcode.org/project/redirect.git",
  3645. "reference": "8.x-1.9"
  3646. },
  3647. "dist": {
  3648. "type": "zip",
  3649. "url": "https://ftp.drupal.org/files/projects/redirect-8.x-1.9.zip",
  3650. "reference": "8.x-1.9",
  3651. "shasum": "2987de20f509e9f7cec8a0f81d3a6774f9b0ba3e"
  3652. },
  3653. "require": {
  3654. "drupal/core": "^9.2 || ^10"
  3655. },
  3656. "type": "drupal-module",
  3657. "extra": {
  3658. "drupal": {
  3659. "version": "8.x-1.9",
  3660. "datestamp": "1693393506",
  3661. "security-coverage": {
  3662. "status": "covered",
  3663. "message": "Covered by Drupal's security advisory policy"
  3664. }
  3665. }
  3666. },
  3667. "notification-url": "https://packages.drupal.org/8/downloads",
  3668. "license": [
  3669. "GPL-2.0-or-later"
  3670. ],
  3671. "authors": [
  3672. {
  3673. "name": "Berdir",
  3674. "homepage": "https://www.drupal.org/user/214652"
  3675. },
  3676. {
  3677. "name": "Dave Reid",
  3678. "homepage": "https://www.drupal.org/user/53892"
  3679. },
  3680. {
  3681. "name": "Kristen Pol",
  3682. "homepage": "https://www.drupal.org/user/8389"
  3683. },
  3684. {
  3685. "name": "pifagor",
  3686. "homepage": "https://www.drupal.org/user/2375692"
  3687. }
  3688. ],
  3689. "description": "Allows users to redirect from old URLs to new URLs.",
  3690. "homepage": "https://www.drupal.org/project/redirect",
  3691. "support": {
  3692. "source": "https://git.drupalcode.org/project/redirect"
  3693. }
  3694. },
  3695. {
  3696. "name": "drupal/redirect_after_login",
  3697. "version": "2.8.0",
  3698. "source": {
  3699. "type": "git",
  3700. "url": "https://git.drupalcode.org/project/redirect_after_login.git",
  3701. "reference": "8.x-2.8"
  3702. },
  3703. "dist": {
  3704. "type": "zip",
  3705. "url": "https://ftp.drupal.org/files/projects/redirect_after_login-8.x-2.8.zip",
  3706. "reference": "8.x-2.8",
  3707. "shasum": "01781d0265c85a8ffa55842c34813daceba995e6"
  3708. },
  3709. "require": {
  3710. "drupal/core": "^9.3 || ^10"
  3711. },
  3712. "type": "drupal-module",
  3713. "extra": {
  3714. "drupal": {
  3715. "version": "8.x-2.8",
  3716. "datestamp": "1698918366",
  3717. "security-coverage": {
  3718. "status": "covered",
  3719. "message": "Covered by Drupal's security advisory policy"
  3720. }
  3721. }
  3722. },
  3723. "notification-url": "https://packages.drupal.org/8/downloads",
  3724. "license": [
  3725. "GPL-2.0-or-later"
  3726. ],
  3727. "authors": [
  3728. {
  3729. "name": "Shamsher Alam",
  3730. "homepage": "https://www.drupal.org/u/shamsher_alam",
  3731. "role": "Author"
  3732. },
  3733. {
  3734. "name": "prempatel2447",
  3735. "homepage": "https://www.drupal.org/user/3250112"
  3736. },
  3737. {
  3738. "name": "rahul-kr-sh",
  3739. "homepage": "https://www.drupal.org/user/3561577"
  3740. },
  3741. {
  3742. "name": "Shamsher_Alam",
  3743. "homepage": "https://www.drupal.org/user/2742027"
  3744. },
  3745. {
  3746. "name": "VladimirAus",
  3747. "homepage": "https://www.drupal.org/user/673120"
  3748. }
  3749. ],
  3750. "description": "Redirect user after login to a configured url",
  3751. "homepage": "https://drupal.org/project/redirect_after_login",
  3752. "support": {
  3753. "source": "https://git.drupalcode.org/project/redirect_after_login"
  3754. }
  3755. },
  3756. {
  3757. "name": "drupal/redis",
  3758. "version": "1.7.0",
  3759. "source": {
  3760. "type": "git",
  3761. "url": "https://git.drupalcode.org/project/redis.git",
  3762. "reference": "8.x-1.7"
  3763. },
  3764. "dist": {
  3765. "type": "zip",
  3766. "url": "https://ftp.drupal.org/files/projects/redis-8.x-1.7.zip",
  3767. "reference": "8.x-1.7",
  3768. "shasum": "602043bdad62ff047321121edcfde8abf3638c7c"
  3769. },
  3770. "require": {
  3771. "drupal/core": "^9.3 || ^10"
  3772. },
  3773. "suggest": {
  3774. "ext-redis": "Required to use the PhpRedis as redis driver (^4.0|^5.0).",
  3775. "ext-relay": "Required to use the Relay as Redis driver (^0.5|^1.0).",
  3776. "predis/predis": "Required to use the Predis as redis driver (^1.1|^2.0)."
  3777. },
  3778. "type": "drupal-module",
  3779. "extra": {
  3780. "drupal": {
  3781. "version": "8.x-1.7",
  3782. "datestamp": "1686175620",
  3783. "security-coverage": {
  3784. "status": "covered",
  3785. "message": "Covered by Drupal's security advisory policy"
  3786. }
  3787. }
  3788. },
  3789. "autoload": {
  3790. "psr-4": {
  3791. "Drupal\\redis\\": "src"
  3792. }
  3793. },
  3794. "notification-url": "https://packages.drupal.org/8/downloads",
  3795. "license": [
  3796. "GPL-2.0-or-later"
  3797. ],
  3798. "authors": [
  3799. {
  3800. "name": "Berdir",
  3801. "homepage": "https://www.drupal.org/user/214652"
  3802. },
  3803. {
  3804. "name": "greg.1.anderson",
  3805. "homepage": "https://www.drupal.org/user/438598"
  3806. },
  3807. {
  3808. "name": "kporras07",
  3809. "homepage": "https://www.drupal.org/user/1349780"
  3810. },
  3811. {
  3812. "name": "pounard",
  3813. "homepage": "https://www.drupal.org/user/240164"
  3814. }
  3815. ],
  3816. "description": "Integration of Drupal with the Redis key-value store.",
  3817. "homepage": "https://www.drupal.org/project/redis",
  3818. "support": {
  3819. "source": "https://git.drupalcode.org/project/redis"
  3820. }
  3821. },
  3822. {
  3823. "name": "drupal/schema_metatag",
  3824. "version": "2.5.0",
  3825. "source": {
  3826. "type": "git",
  3827. "url": "https://git.drupalcode.org/project/schema_metatag.git",
  3828. "reference": "8.x-2.5"
  3829. },
  3830. "dist": {
  3831. "type": "zip",
  3832. "url": "https://ftp.drupal.org/files/projects/schema_metatag-8.x-2.5.zip",
  3833. "reference": "8.x-2.5",
  3834. "shasum": "543b9d624711379e29dde58c22e2cc0a66822c87"
  3835. },
  3836. "require": {
  3837. "drupal/core": "^9.0 || ^10",
  3838. "drupal/metatag": "^1.0"
  3839. },
  3840. "require-dev": {
  3841. "drupal/coder": "^8.3",
  3842. "drupal/metatag_views": "*",
  3843. "drupal/schema_article": "*",
  3844. "drupal/schema_organization": "*",
  3845. "phpcompatibility/php-compatibility": "^9.3"
  3846. },
  3847. "type": "drupal-module",
  3848. "extra": {
  3849. "drupal": {
  3850. "version": "8.x-2.5",
  3851. "datestamp": "1687460392",
  3852. "security-coverage": {
  3853. "status": "covered",
  3854. "message": "Covered by Drupal's security advisory policy"
  3855. }
  3856. }
  3857. },
  3858. "notification-url": "https://packages.drupal.org/8/downloads",
  3859. "license": [
  3860. "GPL-2.0-or-later"
  3861. ],
  3862. "authors": [
  3863. {
  3864. "name": "DamienMcKenna",
  3865. "homepage": "https://www.drupal.org/user/108450"
  3866. },
  3867. {
  3868. "name": "KarenS",
  3869. "homepage": "https://www.drupal.org/user/45874"
  3870. },
  3871. {
  3872. "name": "wells",
  3873. "homepage": "https://www.drupal.org/user/2452278"
  3874. }
  3875. ],
  3876. "description": "Metatag implementation of Schema.org structured data (JSON-LD)",
  3877. "homepage": "https://www.drupal.org/project/schema_metatag",
  3878. "keywords": [
  3879. "Drupal"
  3880. ],
  3881. "support": {
  3882. "source": "https://git.drupalcode.org/project/schema_metatag",
  3883. "issues": "https://www.drupal.org/project/issues/schema_metatag"
  3884. }
  3885. },
  3886. {
  3887. "name": "drupal/search_api",
  3888. "version": "1.31.0",
  3889. "source": {
  3890. "type": "git",
  3891. "url": "https://git.drupalcode.org/project/search_api.git",
  3892. "reference": "8.x-1.31"
  3893. },
  3894. "dist": {
  3895. "type": "zip",
  3896. "url": "https://ftp.drupal.org/files/projects/search_api-8.x-1.31.zip",
  3897. "reference": "8.x-1.31",
  3898. "shasum": "ec8436744c34de2ede6370d4dd26875489e761bc"
  3899. },
  3900. "require": {
  3901. "drupal/core": "^10.0"
  3902. },
  3903. "conflict": {
  3904. "drupal/search_api_solr": "2.* || 3.0 || 3.1"
  3905. },
  3906. "require-dev": {
  3907. "drupal/language_fallback_fix": "@dev",
  3908. "drupal/search_api_autocomplete": "@dev",
  3909. "drupal/search_api_db": "*"
  3910. },
  3911. "suggest": {
  3912. "drupal/facets": "Adds the ability to create faceted searches.",
  3913. "drupal/search_api_autocomplete": "Allows adding autocomplete suggestions to search fields.",
  3914. "drupal/search_api_solr": "Adds support for using Apache Solr as a backend."
  3915. },
  3916. "type": "drupal-module",
  3917. "extra": {
  3918. "drupal": {
  3919. "version": "8.x-1.31",
  3920. "datestamp": "1700926323",
  3921. "security-coverage": {
  3922. "status": "covered",
  3923. "message": "Covered by Drupal's security advisory policy"
  3924. }
  3925. },
  3926. "drush": {
  3927. "services": {
  3928. "drush.services.yml": "^9 || ^10 || ^11"
  3929. }
  3930. }
  3931. },
  3932. "notification-url": "https://packages.drupal.org/8/downloads",
  3933. "license": [
  3934. "GPL-2.0-or-later"
  3935. ],
  3936. "authors": [
  3937. {
  3938. "name": "Thomas Seidl",
  3939. "homepage": "https://www.drupal.org/u/drunken-monkey"
  3940. },
  3941. {
  3942. "name": "Nick Veenhof",
  3943. "homepage": "https://www.drupal.org/u/nick_vh"
  3944. },
  3945. {
  3946. "name": "See other contributors",
  3947. "homepage": "https://www.drupal.org/node/790418/committers"
  3948. }
  3949. ],
  3950. "description": "Provides a generic framework for modules offering search capabilities.",
  3951. "homepage": "https://www.drupal.org/project/search_api",
  3952. "support": {
  3953. "source": "https://git.drupalcode.org/project/search_api",
  3954. "issues": "https://www.drupal.org/project/issues/search_api",
  3955. "irc": "irc://irc.freenode.org/drupal-search-api"
  3956. }
  3957. },
  3958. {
  3959. "name": "drupal/seven",
  3960. "version": "1.0.0",
  3961. "source": {
  3962. "type": "git",
  3963. "url": "https://git.drupalcode.org/project/seven.git",
  3964. "reference": "1.0.0"
  3965. },
  3966. "dist": {
  3967. "type": "zip",
  3968. "url": "https://ftp.drupal.org/files/projects/seven-1.0.0.zip",
  3969. "reference": "1.0.0",
  3970. "shasum": "88e86926388c7e6cf66b0502d13a0470ce2399cd"
  3971. },
  3972. "require": {
  3973. "drupal/core": "^9 || ^10"
  3974. },
  3975. "type": "drupal-theme",
  3976. "extra": {
  3977. "drupal": {
  3978. "version": "1.0.0",
  3979. "datestamp": "1683652106",
  3980. "security-coverage": {
  3981. "status": "covered",
  3982. "message": "Covered by Drupal's security advisory policy"
  3983. }
  3984. }
  3985. },
  3986. "notification-url": "https://packages.drupal.org/8/downloads",
  3987. "license": [
  3988. "GPL-2.0-or-later"
  3989. ],
  3990. "authors": [
  3991. {
  3992. "name": "bnjmnm",
  3993. "homepage": "https://www.drupal.org/user/2369194"
  3994. },
  3995. {
  3996. "name": "lauriii",
  3997. "homepage": "https://www.drupal.org/user/1078742"
  3998. },
  3999. {
  4000. "name": "mcrittenden",
  4001. "homepage": "https://www.drupal.org/user/420631"
  4002. },
  4003. {
  4004. "name": "mrfelton",
  4005. "homepage": "https://www.drupal.org/user/305669"
  4006. },
  4007. {
  4008. "name": "TravisCarden",
  4009. "homepage": "https://www.drupal.org/user/236758"
  4010. }
  4011. ],
  4012. "description": "The Seven theme from Drupal 8/9 moved to contrib",
  4013. "homepage": "https://www.drupal.org/project/seven",
  4014. "support": {
  4015. "source": "https://git.drupalcode.org/project/seven"
  4016. }
  4017. },
  4018. {
  4019. "name": "drupal/site_settings",
  4020. "version": "1.20.0",
  4021. "source": {
  4022. "type": "git",
  4023. "url": "https://git.drupalcode.org/project/site_settings.git",
  4024. "reference": "8.x-1.20"
  4025. },
  4026. "dist": {
  4027. "type": "zip",
  4028. "url": "https://ftp.drupal.org/files/projects/site_settings-8.x-1.20.zip",
  4029. "reference": "8.x-1.20",
  4030. "shasum": "b1e3b07437ef0ff7a907b7b6319f16db3942fb1c"
  4031. },
  4032. "require": {
  4033. "drupal/core": "^8 || ^9 || ^10"
  4034. },
  4035. "type": "drupal-module",
  4036. "extra": {
  4037. "drupal": {
  4038. "version": "8.x-1.20",
  4039. "datestamp": "1669790573",
  4040. "security-coverage": {
  4041. "status": "covered",
  4042. "message": "Covered by Drupal's security advisory policy"
  4043. }
  4044. }
  4045. },
  4046. "notification-url": "https://packages.drupal.org/8/downloads",
  4047. "license": [
  4048. "GPL-2.0+"
  4049. ],
  4050. "authors": [
  4051. {
  4052. "name": "bobi-mel",
  4053. "homepage": "https://www.drupal.org/user/3741631"
  4054. },
  4055. {
  4056. "name": "bohart",
  4057. "homepage": "https://www.drupal.org/user/289861"
  4058. },
  4059. {
  4060. "name": "scott_euser",
  4061. "homepage": "https://www.drupal.org/user/3267594"
  4062. }
  4063. ],
  4064. "description": "Provides a site settings entity",
  4065. "homepage": "https://www.drupal.org/project/site_settings",
  4066. "keywords": [
  4067. "Drupal"
  4068. ],
  4069. "support": {
  4070. "source": "http://cgit.drupalcode.org/site_settings",
  4071. "issues": "http://drupal.org/project/issues/site_settings"
  4072. }
  4073. },
  4074. {
  4075. "name": "drupal/structure_sync",
  4076. "version": "2.0.7",
  4077. "source": {
  4078. "type": "git",
  4079. "url": "https://git.drupalcode.org/project/structure_sync.git",
  4080. "reference": "2.0.7"
  4081. },
  4082. "dist": {
  4083. "type": "zip",
  4084. "url": "https://ftp.drupal.org/files/projects/structure_sync-2.0.7.zip",
  4085. "reference": "2.0.7",
  4086. "shasum": "d77a8b3cfd614cf7699187fce610e4d490f8f0fc"
  4087. },
  4088. "require": {
  4089. "drupal/core": "^8 || ^9 || ^10 || ^11",
  4090. "php": ">=7.1"
  4091. },
  4092. "require-dev": {
  4093. "drush/drush": "^9 || ^10 || ^11 || ^12"
  4094. },
  4095. "type": "drupal-module",
  4096. "extra": {
  4097. "drupal": {
  4098. "version": "2.0.7",
  4099. "datestamp": "1711457726",
  4100. "security-coverage": {
  4101. "status": "covered",
  4102. "message": "Covered by Drupal's security advisory policy"
  4103. }
  4104. },
  4105. "drush": {
  4106. "services": {
  4107. "drush.services.yml": "^9 || ^10 || ^11 || ^12"
  4108. }
  4109. }
  4110. },
  4111. "notification-url": "https://packages.drupal.org/8/downloads",
  4112. "license": [
  4113. "GPL-2.0-or-later"
  4114. ],
  4115. "authors": [
  4116. {
  4117. "name": "colan",
  4118. "homepage": "https://www.drupal.org/user/58704"
  4119. },
  4120. {
  4121. "name": "fidovdbos",
  4122. "homepage": "https://www.drupal.org/user/1494332"
  4123. },
  4124. {
  4125. "name": "joachim",
  4126. "homepage": "https://www.drupal.org/user/107701"
  4127. },
  4128. {
  4129. "name": "louis-cuny",
  4130. "homepage": "https://www.drupal.org/user/3606332"
  4131. },
  4132. {
  4133. "name": "mparker17",
  4134. "homepage": "https://www.drupal.org/user/536298"
  4135. },
  4136. {
  4137. "name": "spiderman",
  4138. "homepage": "https://www.drupal.org/user/1631"
  4139. },
  4140. {
  4141. "name": "timKruijsen",
  4142. "homepage": "https://www.drupal.org/user/3513437"
  4143. },
  4144. {
  4145. "name": "vinlaurens",
  4146. "homepage": "https://www.drupal.org/user/2945689"
  4147. }
  4148. ],
  4149. "description": "Tool for syncing structural data that is stored as content.",
  4150. "homepage": "https://www.drupal.org/project/structure_sync",
  4151. "support": {
  4152. "source": "https://git.drupalcode.org/project/structure_sync"
  4153. }
  4154. },
  4155. {
  4156. "name": "drupal/subpathauto",
  4157. "version": "1.3.0",
  4158. "source": {
  4159. "type": "git",
  4160. "url": "https://git.drupalcode.org/project/subpathauto.git",
  4161. "reference": "8.x-1.3"
  4162. },
  4163. "dist": {
  4164. "type": "zip",
  4165. "url": "https://ftp.drupal.org/files/projects/subpathauto-8.x-1.3.zip",
  4166. "reference": "8.x-1.3",
  4167. "shasum": "b94e4ec3c8dcd42aa04b6796ae48a9aa1848862d"
  4168. },
  4169. "require": {
  4170. "drupal/core": "^8.8 || ^9 || ^10"
  4171. },
  4172. "require-dev": {
  4173. "drupal/redirect": "*"
  4174. },
  4175. "type": "drupal-module",
  4176. "extra": {
  4177. "drupal": {
  4178. "version": "8.x-1.3",
  4179. "datestamp": "1676316639",
  4180. "security-coverage": {
  4181. "status": "covered",
  4182. "message": "Covered by Drupal's security advisory policy"
  4183. }
  4184. }
  4185. },
  4186. "notification-url": "https://packages.drupal.org/8/downloads",
  4187. "license": [
  4188. "GPL-2.0-or-later"
  4189. ],
  4190. "authors": [
  4191. {
  4192. "name": "Dave Reid",
  4193. "homepage": "https://www.drupal.org/user/53892"
  4194. },
  4195. {
  4196. "name": "lauriii",
  4197. "homepage": "https://www.drupal.org/user/1078742"
  4198. },
  4199. {
  4200. "name": "NickDickinsonWilde",
  4201. "homepage": "https://www.drupal.org/user/3094661"
  4202. }
  4203. ],
  4204. "description": "Provides support for extending sub-paths of URL aliases.",
  4205. "homepage": "https://www.drupal.org/project/subpathauto",
  4206. "support": {
  4207. "source": "https://cgit.drupalcode.org/subpathauto",
  4208. "issues": "https://www.drupal.org/project/issues/subpathauto"
  4209. }
  4210. },
  4211. {
  4212. "name": "drupal/tacjs",
  4213. "version": "6.4.0",
  4214. "source": {
  4215. "type": "git",
  4216. "url": "https://git.drupalcode.org/project/tacjs.git",
  4217. "reference": "8.x-6.4"
  4218. },
  4219. "dist": {
  4220. "type": "zip",
  4221. "url": "https://ftp.drupal.org/files/projects/tacjs-8.x-6.4.zip",
  4222. "reference": "8.x-6.4",
  4223. "shasum": "20a23611b6ea7a5f3b8d2d5ec9ce714cd3e00d77"
  4224. },
  4225. "require": {
  4226. "drupal/core": "^8.8 || ^9 || ^10"
  4227. },
  4228. "type": "drupal-module",
  4229. "extra": {
  4230. "drupal": {
  4231. "version": "8.x-6.4",
  4232. "datestamp": "1687974794",
  4233. "security-coverage": {
  4234. "status": "covered",
  4235. "message": "Covered by Drupal's security advisory policy"
  4236. }
  4237. }
  4238. },
  4239. "notification-url": "https://packages.drupal.org/8/downloads",
  4240. "license": [
  4241. "GPL-2.0-or-later"
  4242. ],
  4243. "authors": [
  4244. {
  4245. "name": "asmaakhalfi",
  4246. "homepage": "https://www.drupal.org/user/3587145"
  4247. },
  4248. {
  4249. "name": "boulaffasae",
  4250. "homepage": "https://www.drupal.org/user/3584750"
  4251. },
  4252. {
  4253. "name": "chaimaariz",
  4254. "homepage": "https://www.drupal.org/user/3549766"
  4255. },
  4256. {
  4257. "name": "k.asmouh",
  4258. "homepage": "https://www.drupal.org/user/3135943"
  4259. },
  4260. {
  4261. "name": "lamlih",
  4262. "homepage": "https://www.drupal.org/user/3708454"
  4263. },
  4264. {
  4265. "name": "mably",
  4266. "homepage": "https://www.drupal.org/user/3375160"
  4267. },
  4268. {
  4269. "name": "netsliver",
  4270. "homepage": "https://www.drupal.org/user/3082011"
  4271. },
  4272. {
  4273. "name": "prudloff",
  4274. "homepage": "https://www.drupal.org/user/3611858"
  4275. }
  4276. ],
  4277. "description": "Comply to the European cookie law using tarteaucitron.js.",
  4278. "homepage": "https://www.drupal.org/project/tacjs",
  4279. "keywords": [
  4280. "Drupal",
  4281. "tacjs"
  4282. ],
  4283. "support": {
  4284. "source": "https://git.drupalcode.org/project/tacjs",
  4285. "issues": "https://www.drupal.org/project/issues/tacjs"
  4286. }
  4287. },
  4288. {
  4289. "name": "drupal/time_range",
  4290. "version": "9.0.2",
  4291. "source": {
  4292. "type": "git",
  4293. "url": "https://git.drupalcode.org/project/time_range.git",
  4294. "reference": "9.0.2"
  4295. },
  4296. "dist": {
  4297. "type": "zip",
  4298. "url": "https://ftp.drupal.org/files/projects/time_range-9.0.2.zip",
  4299. "reference": "9.0.2",
  4300. "shasum": "e0de44c4fc10f86b9ea001458deb7eac02f2ff28"
  4301. },
  4302. "require": {
  4303. "drupal/core": "^8 || ^9 || ^10"
  4304. },
  4305. "type": "drupal-module",
  4306. "extra": {
  4307. "drupal": {
  4308. "version": "9.0.2",
  4309. "datestamp": "1688992195",
  4310. "security-coverage": {
  4311. "status": "covered",
  4312. "message": "Covered by Drupal's security advisory policy"
  4313. }
  4314. }
  4315. },
  4316. "notification-url": "https://packages.drupal.org/8/downloads",
  4317. "license": [
  4318. "GPL-2.0+"
  4319. ],
  4320. "authors": [
  4321. {
  4322. "name": "dravenk",
  4323. "homepage": "https://www.drupal.org/user/3452417"
  4324. }
  4325. ],
  4326. "description": "Provides the form widget to fill in time range.",
  4327. "homepage": "https://github.com/DravenK/time-range.git",
  4328. "support": {
  4329. "source": "https://github.com/DravenK/time-range.git",
  4330. "issues": "https://github.com/DravenK/time-range/issues"
  4331. }
  4332. },
  4333. {
  4334. "name": "drupal/token",
  4335. "version": "1.13.0",
  4336. "source": {
  4337. "type": "git",
  4338. "url": "https://git.drupalcode.org/project/token.git",
  4339. "reference": "8.x-1.13"
  4340. },
  4341. "dist": {
  4342. "type": "zip",
  4343. "url": "https://ftp.drupal.org/files/projects/token-8.x-1.13.zip",
  4344. "reference": "8.x-1.13",
  4345. "shasum": "f2a074b51726de3727c1d900237d6d471806a4d2"
  4346. },
  4347. "require": {
  4348. "drupal/core": "^9.2 || ^10"
  4349. },
  4350. "type": "drupal-module",
  4351. "extra": {
  4352. "drupal": {
  4353. "version": "8.x-1.13",
  4354. "datestamp": "1697885927",
  4355. "security-coverage": {
  4356. "status": "covered",
  4357. "message": "Covered by Drupal's security advisory policy"
  4358. }
  4359. },
  4360. "drush": {
  4361. "services": {
  4362. "drush.services.yml": ">=9"
  4363. }
  4364. }
  4365. },
  4366. "notification-url": "https://packages.drupal.org/8/downloads",
  4367. "license": [
  4368. "GPL-2.0-or-later"
  4369. ],
  4370. "authors": [
  4371. {
  4372. "name": "Berdir",
  4373. "homepage": "https://www.drupal.org/user/214652"
  4374. },
  4375. {
  4376. "name": "Dave Reid",
  4377. "homepage": "https://www.drupal.org/user/53892"
  4378. },
  4379. {
  4380. "name": "eaton",
  4381. "homepage": "https://www.drupal.org/user/16496"
  4382. },
  4383. {
  4384. "name": "fago",
  4385. "homepage": "https://www.drupal.org/user/16747"
  4386. },
  4387. {
  4388. "name": "greggles",
  4389. "homepage": "https://www.drupal.org/user/36762"
  4390. },
  4391. {
  4392. "name": "mikeryan",
  4393. "homepage": "https://www.drupal.org/user/4420"
  4394. }
  4395. ],
  4396. "description": "Provides a user interface for the Token API, some missing core tokens.",
  4397. "homepage": "https://www.drupal.org/project/token",
  4398. "support": {
  4399. "source": "https://git.drupalcode.org/project/token"
  4400. }
  4401. },
  4402. {
  4403. "name": "drupal/video_embed_field",
  4404. "version": "2.5.0",
  4405. "source": {
  4406. "type": "git",
  4407. "url": "https://git.drupalcode.org/project/video_embed_field.git",
  4408. "reference": "8.x-2.5"
  4409. },
  4410. "dist": {
  4411. "type": "zip",
  4412. "url": "https://ftp.drupal.org/files/projects/video_embed_field-8.x-2.5.zip",
  4413. "reference": "8.x-2.5",
  4414. "shasum": "997ed67b6873e822fe628f87f65bd6da67e7350c"
  4415. },
  4416. "require": {
  4417. "drupal/core": "^9.2 || ^10"
  4418. },
  4419. "require-dev": {
  4420. "drupal/ckeditor": "^1",
  4421. "drupal/colorbox": "^2",
  4422. "drupal/video_embed_media": "*"
  4423. },
  4424. "type": "drupal-module",
  4425. "extra": {
  4426. "drupal": {
  4427. "version": "8.x-2.5",
  4428. "datestamp": "1671413311",
  4429. "security-coverage": {
  4430. "status": "covered",
  4431. "message": "Covered by Drupal's security advisory policy"
  4432. }
  4433. }
  4434. },
  4435. "notification-url": "https://packages.drupal.org/8/downloads",
  4436. "license": [
  4437. "GPL-2.0-or-later"
  4438. ],
  4439. "authors": [
  4440. {
  4441. "name": "abhinesh",
  4442. "homepage": "https://www.drupal.org/user/3645979"
  4443. },
  4444. {
  4445. "name": "jec006",
  4446. "homepage": "https://www.drupal.org/user/855980"
  4447. },
  4448. {
  4449. "name": "plopesc",
  4450. "homepage": "https://www.drupal.org/user/282415"
  4451. },
  4452. {
  4453. "name": "Sam152",
  4454. "homepage": "https://www.drupal.org/user/1485048"
  4455. }
  4456. ],
  4457. "description": "A pluggable field type for storing videos from external video hosts such as Vimeo and YouTube.",
  4458. "homepage": "https://www.drupal.org/project/video_embed_field",
  4459. "support": {
  4460. "source": "https://git.drupalcode.org/project/video_embed_field"
  4461. }
  4462. },
  4463. {
  4464. "name": "drupal/views_url_path_arguments",
  4465. "version": "1.2.0",
  4466. "source": {
  4467. "type": "git",
  4468. "url": "https://git.drupalcode.org/project/views_url_path_arguments.git",
  4469. "reference": "8.x-1.2"
  4470. },
  4471. "dist": {
  4472. "type": "zip",
  4473. "url": "https://ftp.drupal.org/files/projects/views_url_path_arguments-8.x-1.2.zip",
  4474. "reference": "8.x-1.2",
  4475. "shasum": "949023c9c1dd31f91d60e76580dc9d5c2e0732d4"
  4476. },
  4477. "require": {
  4478. "drupal/core": "^8 || ^9 || ^10"
  4479. },
  4480. "type": "drupal-module",
  4481. "extra": {
  4482. "drupal": {
  4483. "version": "8.x-1.2",
  4484. "datestamp": "1689607584",
  4485. "security-coverage": {
  4486. "status": "covered",
  4487. "message": "Covered by Drupal's security advisory policy"
  4488. }
  4489. }
  4490. },
  4491. "notification-url": "https://packages.drupal.org/8/downloads",
  4492. "license": [
  4493. "GPL-2.0+"
  4494. ],
  4495. "authors": [
  4496. {
  4497. "name": "heddn",
  4498. "homepage": "https://www.drupal.org/user/1463982"
  4499. }
  4500. ],
  4501. "description": "Simple module to convert a view argument's entity id into its url path.",
  4502. "homepage": "https://www.drupal.org/project/views_url_path_arguments",
  4503. "keywords": [
  4504. "Drupal"
  4505. ],
  4506. "support": {
  4507. "source": "http://cgit.drupalcode.org/views_url_path_arguments",
  4508. "issues": "https://www.drupal.org/project/issues/views_url_path_arguments"
  4509. }
  4510. },
  4511. {
  4512. "name": "drupal/yaml_editor",
  4513. "version": "1.2.0",
  4514. "source": {
  4515. "type": "git",
  4516. "url": "https://git.drupalcode.org/project/yaml_editor.git",
  4517. "reference": "8.x-1.2"
  4518. },
  4519. "dist": {
  4520. "type": "zip",
  4521. "url": "https://ftp.drupal.org/files/projects/yaml_editor-8.x-1.2.zip",
  4522. "reference": "8.x-1.2",
  4523. "shasum": "7dc32d1f000fafa6a6f4e65c4aeabb1ecb18d25d"
  4524. },
  4525. "require": {
  4526. "drupal/core": "^8 || ^9 || ^10"
  4527. },
  4528. "type": "drupal-module",
  4529. "extra": {
  4530. "drupal": {
  4531. "version": "8.x-1.2",
  4532. "datestamp": "1692008740",
  4533. "security-coverage": {
  4534. "status": "covered",
  4535. "message": "Covered by Drupal's security advisory policy"
  4536. }
  4537. }
  4538. },
  4539. "notification-url": "https://packages.drupal.org/8/downloads",
  4540. "license": [
  4541. "GPL-2.0-or-later"
  4542. ],
  4543. "authors": [
  4544. {
  4545. "name": "yannickoo",
  4546. "homepage": "https://www.drupal.org/user/531118"
  4547. }
  4548. ],
  4549. "description": "Adds an editor for YAML configuration textareas.",
  4550. "homepage": "https://www.drupal.org/project/yaml_editor",
  4551. "support": {
  4552. "source": "https://git.drupalcode.org/project/yaml_editor"
  4553. }
  4554. },
  4555. {
  4556. "name": "drush/drush",
  4557. "version": "12.4.3",
  4558. "source": {
  4559. "type": "git",
  4560. "url": "https://github.com/drush-ops/drush.git",
  4561. "reference": "8245acede57ecc62a90aa0f19ff3b29e5f11f971"
  4562. },
  4563. "dist": {
  4564. "type": "zip",
  4565. "url": "https://api.github.com/repos/drush-ops/drush/zipball/8245acede57ecc62a90aa0f19ff3b29e5f11f971",
  4566. "reference": "8245acede57ecc62a90aa0f19ff3b29e5f11f971",
  4567. "shasum": ""
  4568. },
  4569. "require": {
  4570. "chi-teck/drupal-code-generator": "^3.0",
  4571. "composer-runtime-api": "^2.2",
  4572. "composer/semver": "^1.4 || ^3",
  4573. "consolidation/annotated-command": "^4.9.1",
  4574. "consolidation/config": "^2.1.2",
  4575. "consolidation/filter-via-dot-access-data": "^2.0.2",
  4576. "consolidation/output-formatters": "^4.3.2",
  4577. "consolidation/robo": "^4.0.6",
  4578. "consolidation/site-alias": "^4",
  4579. "consolidation/site-process": "^5.2.0",
  4580. "ext-dom": "*",
  4581. "grasmash/yaml-cli": "^3.1",
  4582. "guzzlehttp/guzzle": "^7.0",
  4583. "league/container": "^4",
  4584. "php": ">=8.1",
  4585. "psy/psysh": "~0.11",
  4586. "symfony/event-dispatcher": "^6",
  4587. "symfony/filesystem": "^6.1",
  4588. "symfony/finder": "^6",
  4589. "symfony/var-dumper": "^6.0",
  4590. "symfony/yaml": "^6.0",
  4591. "webflo/drupal-finder": "^1.2"
  4592. },
  4593. "conflict": {
  4594. "drupal/core": "< 10.0",
  4595. "drupal/migrate_run": "*",
  4596. "drupal/migrate_tools": "<= 5"
  4597. },
  4598. "require-dev": {
  4599. "composer/installers": "^2",
  4600. "cweagans/composer-patches": "~1.0",
  4601. "drupal/core-recommended": "^10",
  4602. "drupal/semver_example": "2.3.0",
  4603. "phpunit/phpunit": "^9",
  4604. "rector/rector": "^0.12",
  4605. "squizlabs/php_codesniffer": "^3.7"
  4606. },
  4607. "bin": [
  4608. "drush"
  4609. ],
  4610. "type": "library",
  4611. "extra": {
  4612. "installer-paths": {
  4613. "sut/core": [
  4614. "type:drupal-core"
  4615. ],
  4616. "sut/libraries/{$name}": [
  4617. "type:drupal-library"
  4618. ],
  4619. "sut/modules/unish/{$name}": [
  4620. "drupal/devel"
  4621. ],
  4622. "sut/themes/unish/{$name}": [
  4623. "drupal/empty_theme"
  4624. ],
  4625. "sut/modules/contrib/{$name}": [
  4626. "type:drupal-module"
  4627. ],
  4628. "sut/profiles/contrib/{$name}": [
  4629. "type:drupal-profile"
  4630. ],
  4631. "sut/themes/contrib/{$name}": [
  4632. "type:drupal-theme"
  4633. ],
  4634. "sut/drush/contrib/{$name}": [
  4635. "type:drupal-drush"
  4636. ]
  4637. }
  4638. },
  4639. "autoload": {
  4640. "psr-4": {
  4641. "Drush\\": "src/"
  4642. }
  4643. },
  4644. "notification-url": "https://packagist.org/downloads/",
  4645. "license": [
  4646. "GPL-2.0-or-later"
  4647. ],
  4648. "authors": [
  4649. {
  4650. "name": "Moshe Weitzman",
  4651. "email": "weitzman@tejasa.com"
  4652. },
  4653. {
  4654. "name": "Owen Barton",
  4655. "email": "drupal@owenbarton.com"
  4656. },
  4657. {
  4658. "name": "Greg Anderson",
  4659. "email": "greg.1.anderson@greenknowe.org"
  4660. },
  4661. {
  4662. "name": "Jonathan Araña Cruz",
  4663. "email": "jonhattan@faita.net"
  4664. },
  4665. {
  4666. "name": "Jonathan Hedstrom",
  4667. "email": "jhedstrom@gmail.com"
  4668. },
  4669. {
  4670. "name": "Christopher Gervais",
  4671. "email": "chris@ergonlogic.com"
  4672. },
  4673. {
  4674. "name": "Dave Reid",
  4675. "email": "dave@davereid.net"
  4676. },
  4677. {
  4678. "name": "Damian Lee",
  4679. "email": "damiankloip@googlemail.com"
  4680. }
  4681. ],
  4682. "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.",
  4683. "homepage": "http://www.drush.org",
  4684. "support": {
  4685. "forum": "http://drupal.stackexchange.com/questions/tagged/drush",
  4686. "issues": "https://github.com/drush-ops/drush/issues",
  4687. "security": "https://github.com/drush-ops/drush/security/advisories",
  4688. "slack": "https://drupal.slack.com/messages/C62H9CWQM",
  4689. "source": "https://github.com/drush-ops/drush/tree/12.4.3"
  4690. },
  4691. "funding": [
  4692. {
  4693. "url": "https://github.com/weitzman",
  4694. "type": "github"
  4695. }
  4696. ],
  4697. "time": "2023-11-16T22:57:24+00:00"
  4698. },
  4699. {
  4700. "name": "egulias/email-validator",
  4701. "version": "4.0.2",
  4702. "source": {
  4703. "type": "git",
  4704. "url": "https://github.com/egulias/EmailValidator.git",
  4705. "reference": "ebaaf5be6c0286928352e054f2d5125608e5405e"
  4706. },
  4707. "dist": {
  4708. "type": "zip",
  4709. "url": "https://api.github.com/repos/egulias/EmailValidator/zipball/ebaaf5be6c0286928352e054f2d5125608e5405e",
  4710. "reference": "ebaaf5be6c0286928352e054f2d5125608e5405e",
  4711. "shasum": ""
  4712. },
  4713. "require": {
  4714. "doctrine/lexer": "^2.0 || ^3.0",
  4715. "php": ">=8.1",
  4716. "symfony/polyfill-intl-idn": "^1.26"
  4717. },
  4718. "require-dev": {
  4719. "phpunit/phpunit": "^10.2",
  4720. "vimeo/psalm": "^5.12"
  4721. },
  4722. "suggest": {
  4723. "ext-intl": "PHP Internationalization Libraries are required to use the SpoofChecking validation"
  4724. },
  4725. "type": "library",
  4726. "extra": {
  4727. "branch-alias": {
  4728. "dev-master": "4.0.x-dev"
  4729. }
  4730. },
  4731. "autoload": {
  4732. "psr-4": {
  4733. "Egulias\\EmailValidator\\": "src"
  4734. }
  4735. },
  4736. "notification-url": "https://packagist.org/downloads/",
  4737. "license": [
  4738. "MIT"
  4739. ],
  4740. "authors": [
  4741. {
  4742. "name": "Eduardo Gulias Davis"
  4743. }
  4744. ],
  4745. "description": "A library for validating emails against several RFCs",
  4746. "homepage": "https://github.com/egulias/EmailValidator",
  4747. "keywords": [
  4748. "email",
  4749. "emailvalidation",
  4750. "emailvalidator",
  4751. "validation",
  4752. "validator"
  4753. ],
  4754. "support": {
  4755. "issues": "https://github.com/egulias/EmailValidator/issues",
  4756. "source": "https://github.com/egulias/EmailValidator/tree/4.0.2"
  4757. },
  4758. "funding": [
  4759. {
  4760. "url": "https://github.com/egulias",
  4761. "type": "github"
  4762. }
  4763. ],
  4764. "time": "2023-10-06T06:47:41+00:00"
  4765. },
  4766. {
  4767. "name": "grasmash/expander",
  4768. "version": "3.0.0",
  4769. "source": {
  4770. "type": "git",
  4771. "url": "https://github.com/grasmash/expander.git",
  4772. "reference": "bb1c1a2430957945cf08c5a62f5d72a6aa6a2c82"
  4773. },
  4774. "dist": {
  4775. "type": "zip",
  4776. "url": "https://api.github.com/repos/grasmash/expander/zipball/bb1c1a2430957945cf08c5a62f5d72a6aa6a2c82",
  4777. "reference": "bb1c1a2430957945cf08c5a62f5d72a6aa6a2c82",
  4778. "shasum": ""
  4779. },
  4780. "require": {
  4781. "dflydev/dot-access-data": "^3.0.0",
  4782. "php": ">=8.0",
  4783. "psr/log": "^2 | ^3"
  4784. },
  4785. "require-dev": {
  4786. "greg-1-anderson/composer-test-scenarios": "^1",
  4787. "php-coveralls/php-coveralls": "^2.5",
  4788. "phpunit/phpunit": "^9",
  4789. "squizlabs/php_codesniffer": "^3.3"
  4790. },
  4791. "type": "library",
  4792. "extra": {
  4793. "branch-alias": {
  4794. "dev-master": "1.x-dev"
  4795. }
  4796. },
  4797. "autoload": {
  4798. "psr-4": {
  4799. "Grasmash\\Expander\\": "src/"
  4800. }
  4801. },
  4802. "notification-url": "https://packagist.org/downloads/",
  4803. "license": [
  4804. "MIT"
  4805. ],
  4806. "authors": [
  4807. {
  4808. "name": "Matthew Grasmick"
  4809. }
  4810. ],
  4811. "description": "Expands internal property references in PHP arrays file.",
  4812. "support": {
  4813. "issues": "https://github.com/grasmash/expander/issues",
  4814. "source": "https://github.com/grasmash/expander/tree/3.0.0"
  4815. },
  4816. "time": "2022-05-10T13:14:49+00:00"
  4817. },
  4818. {
  4819. "name": "grasmash/yaml-cli",
  4820. "version": "3.1.0",
  4821. "source": {
  4822. "type": "git",
  4823. "url": "https://github.com/grasmash/yaml-cli.git",
  4824. "reference": "00f3fd775f6abbfacd44432f1999c3c3b02791f0"
  4825. },
  4826. "dist": {
  4827. "type": "zip",
  4828. "url": "https://api.github.com/repos/grasmash/yaml-cli/zipball/00f3fd775f6abbfacd44432f1999c3c3b02791f0",
  4829. "reference": "00f3fd775f6abbfacd44432f1999c3c3b02791f0",
  4830. "shasum": ""
  4831. },
  4832. "require": {
  4833. "dflydev/dot-access-data": "^3",
  4834. "php": ">=8.0",
  4835. "symfony/console": "^6",
  4836. "symfony/filesystem": "^6",
  4837. "symfony/yaml": "^6"
  4838. },
  4839. "require-dev": {
  4840. "php-coveralls/php-coveralls": "^2",
  4841. "phpunit/phpunit": "^9",
  4842. "squizlabs/php_codesniffer": "^3.0"
  4843. },
  4844. "bin": [
  4845. "bin/yaml-cli"
  4846. ],
  4847. "type": "library",
  4848. "extra": {
  4849. "branch-alias": {
  4850. "dev-master": "3.x-dev"
  4851. }
  4852. },
  4853. "autoload": {
  4854. "psr-4": {
  4855. "Grasmash\\YamlCli\\": "src/"
  4856. }
  4857. },
  4858. "notification-url": "https://packagist.org/downloads/",
  4859. "license": [
  4860. "MIT"
  4861. ],
  4862. "authors": [
  4863. {
  4864. "name": "Matthew Grasmick"
  4865. }
  4866. ],
  4867. "description": "A command line tool for reading and manipulating yaml files.",
  4868. "support": {
  4869. "issues": "https://github.com/grasmash/yaml-cli/issues",
  4870. "source": "https://github.com/grasmash/yaml-cli/tree/3.1.0"
  4871. },
  4872. "time": "2022-05-09T20:22:34+00:00"
  4873. },
  4874. {
  4875. "name": "guzzlehttp/guzzle",
  4876. "version": "7.8.1",
  4877. "source": {
  4878. "type": "git",
  4879. "url": "https://github.com/guzzle/guzzle.git",
  4880. "reference": "41042bc7ab002487b876a0683fc8dce04ddce104"
  4881. },
  4882. "dist": {
  4883. "type": "zip",
  4884. "url": "https://api.github.com/repos/guzzle/guzzle/zipball/41042bc7ab002487b876a0683fc8dce04ddce104",
  4885. "reference": "41042bc7ab002487b876a0683fc8dce04ddce104",
  4886. "shasum": ""
  4887. },
  4888. "require": {
  4889. "ext-json": "*",
  4890. "guzzlehttp/promises": "^1.5.3 || ^2.0.1",
  4891. "guzzlehttp/psr7": "^1.9.1 || ^2.5.1",
  4892. "php": "^7.2.5 || ^8.0",
  4893. "psr/http-client": "^1.0",
  4894. "symfony/deprecation-contracts": "^2.2 || ^3.0"
  4895. },
  4896. "provide": {
  4897. "psr/http-client-implementation": "1.0"
  4898. },
  4899. "require-dev": {
  4900. "bamarni/composer-bin-plugin": "^1.8.2",
  4901. "ext-curl": "*",
  4902. "php-http/client-integration-tests": "dev-master#2c025848417c1135031fdf9c728ee53d0a7ceaee as 3.0.999",
  4903. "php-http/message-factory": "^1.1",
  4904. "phpunit/phpunit": "^8.5.36 || ^9.6.15",
  4905. "psr/log": "^1.1 || ^2.0 || ^3.0"
  4906. },
  4907. "suggest": {
  4908. "ext-curl": "Required for CURL handler support",
  4909. "ext-intl": "Required for Internationalized Domain Name (IDN) support",
  4910. "psr/log": "Required for using the Log middleware"
  4911. },
  4912. "type": "library",
  4913. "extra": {
  4914. "bamarni-bin": {
  4915. "bin-links": true,
  4916. "forward-command": false
  4917. }
  4918. },
  4919. "autoload": {
  4920. "files": [
  4921. "src/functions_include.php"
  4922. ],
  4923. "psr-4": {
  4924. "GuzzleHttp\\": "src/"
  4925. }
  4926. },
  4927. "notification-url": "https://packagist.org/downloads/",
  4928. "license": [
  4929. "MIT"
  4930. ],
  4931. "authors": [
  4932. {
  4933. "name": "Graham Campbell",
  4934. "email": "hello@gjcampbell.co.uk",
  4935. "homepage": "https://github.com/GrahamCampbell"
  4936. },
  4937. {
  4938. "name": "Michael Dowling",
  4939. "email": "mtdowling@gmail.com",
  4940. "homepage": "https://github.com/mtdowling"
  4941. },
  4942. {
  4943. "name": "Jeremy Lindblom",
  4944. "email": "jeremeamia@gmail.com",
  4945. "homepage": "https://github.com/jeremeamia"
  4946. },
  4947. {
  4948. "name": "George Mponos",
  4949. "email": "gmponos@gmail.com",
  4950. "homepage": "https://github.com/gmponos"
  4951. },
  4952. {
  4953. "name": "Tobias Nyholm",
  4954. "email": "tobias.nyholm@gmail.com",
  4955. "homepage": "https://github.com/Nyholm"
  4956. },
  4957. {
  4958. "name": "Márk Sági-Kazár",
  4959. "email": "mark.sagikazar@gmail.com",
  4960. "homepage": "https://github.com/sagikazarmark"
  4961. },
  4962. {
  4963. "name": "Tobias Schultze",
  4964. "email": "webmaster@tubo-world.de",
  4965. "homepage": "https://github.com/Tobion"
  4966. }
  4967. ],
  4968. "description": "Guzzle is a PHP HTTP client library",
  4969. "keywords": [
  4970. "client",
  4971. "curl",
  4972. "framework",
  4973. "http",
  4974. "http client",
  4975. "psr-18",
  4976. "psr-7",
  4977. "rest",
  4978. "web service"
  4979. ],
  4980. "support": {
  4981. "issues": "https://github.com/guzzle/guzzle/issues",
  4982. "source": "https://github.com/guzzle/guzzle/tree/7.8.1"
  4983. },
  4984. "funding": [
  4985. {
  4986. "url": "https://github.com/GrahamCampbell",
  4987. "type": "github"
  4988. },
  4989. {
  4990. "url": "https://github.com/Nyholm",
  4991. "type": "github"
  4992. },
  4993. {
  4994. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/guzzle",
  4995. "type": "tidelift"
  4996. }
  4997. ],
  4998. "time": "2023-12-03T20:35:24+00:00"
  4999. },
  5000. {
  5001. "name": "guzzlehttp/promises",
  5002. "version": "2.0.2",
  5003. "source": {
  5004. "type": "git",
  5005. "url": "https://github.com/guzzle/promises.git",
  5006. "reference": "bbff78d96034045e58e13dedd6ad91b5d1253223"
  5007. },
  5008. "dist": {
  5009. "type": "zip",
  5010. "url": "https://api.github.com/repos/guzzle/promises/zipball/bbff78d96034045e58e13dedd6ad91b5d1253223",
  5011. "reference": "bbff78d96034045e58e13dedd6ad91b5d1253223",
  5012. "shasum": ""
  5013. },
  5014. "require": {
  5015. "php": "^7.2.5 || ^8.0"
  5016. },
  5017. "require-dev": {
  5018. "bamarni/composer-bin-plugin": "^1.8.2",
  5019. "phpunit/phpunit": "^8.5.36 || ^9.6.15"
  5020. },
  5021. "type": "library",
  5022. "extra": {
  5023. "bamarni-bin": {
  5024. "bin-links": true,
  5025. "forward-command": false
  5026. }
  5027. },
  5028. "autoload": {
  5029. "psr-4": {
  5030. "GuzzleHttp\\Promise\\": "src/"
  5031. }
  5032. },
  5033. "notification-url": "https://packagist.org/downloads/",
  5034. "license": [
  5035. "MIT"
  5036. ],
  5037. "authors": [
  5038. {
  5039. "name": "Graham Campbell",
  5040. "email": "hello@gjcampbell.co.uk",
  5041. "homepage": "https://github.com/GrahamCampbell"
  5042. },
  5043. {
  5044. "name": "Michael Dowling",
  5045. "email": "mtdowling@gmail.com",
  5046. "homepage": "https://github.com/mtdowling"
  5047. },
  5048. {
  5049. "name": "Tobias Nyholm",
  5050. "email": "tobias.nyholm@gmail.com",
  5051. "homepage": "https://github.com/Nyholm"
  5052. },
  5053. {
  5054. "name": "Tobias Schultze",
  5055. "email": "webmaster@tubo-world.de",
  5056. "homepage": "https://github.com/Tobion"
  5057. }
  5058. ],
  5059. "description": "Guzzle promises library",
  5060. "keywords": [
  5061. "promise"
  5062. ],
  5063. "support": {
  5064. "issues": "https://github.com/guzzle/promises/issues",
  5065. "source": "https://github.com/guzzle/promises/tree/2.0.2"
  5066. },
  5067. "funding": [
  5068. {
  5069. "url": "https://github.com/GrahamCampbell",
  5070. "type": "github"
  5071. },
  5072. {
  5073. "url": "https://github.com/Nyholm",
  5074. "type": "github"
  5075. },
  5076. {
  5077. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/promises",
  5078. "type": "tidelift"
  5079. }
  5080. ],
  5081. "time": "2023-12-03T20:19:20+00:00"
  5082. },
  5083. {
  5084. "name": "guzzlehttp/psr7",
  5085. "version": "2.6.2",
  5086. "source": {
  5087. "type": "git",
  5088. "url": "https://github.com/guzzle/psr7.git",
  5089. "reference": "45b30f99ac27b5ca93cb4831afe16285f57b8221"
  5090. },
  5091. "dist": {
  5092. "type": "zip",
  5093. "url": "https://api.github.com/repos/guzzle/psr7/zipball/45b30f99ac27b5ca93cb4831afe16285f57b8221",
  5094. "reference": "45b30f99ac27b5ca93cb4831afe16285f57b8221",
  5095. "shasum": ""
  5096. },
  5097. "require": {
  5098. "php": "^7.2.5 || ^8.0",
  5099. "psr/http-factory": "^1.0",
  5100. "psr/http-message": "^1.1 || ^2.0",
  5101. "ralouphie/getallheaders": "^3.0"
  5102. },
  5103. "provide": {
  5104. "psr/http-factory-implementation": "1.0",
  5105. "psr/http-message-implementation": "1.0"
  5106. },
  5107. "require-dev": {
  5108. "bamarni/composer-bin-plugin": "^1.8.2",
  5109. "http-interop/http-factory-tests": "^0.9",
  5110. "phpunit/phpunit": "^8.5.36 || ^9.6.15"
  5111. },
  5112. "suggest": {
  5113. "laminas/laminas-httphandlerrunner": "Emit PSR-7 responses"
  5114. },
  5115. "type": "library",
  5116. "extra": {
  5117. "bamarni-bin": {
  5118. "bin-links": true,
  5119. "forward-command": false
  5120. }
  5121. },
  5122. "autoload": {
  5123. "psr-4": {
  5124. "GuzzleHttp\\Psr7\\": "src/"
  5125. }
  5126. },
  5127. "notification-url": "https://packagist.org/downloads/",
  5128. "license": [
  5129. "MIT"
  5130. ],
  5131. "authors": [
  5132. {
  5133. "name": "Graham Campbell",
  5134. "email": "hello@gjcampbell.co.uk",
  5135. "homepage": "https://github.com/GrahamCampbell"
  5136. },
  5137. {
  5138. "name": "Michael Dowling",
  5139. "email": "mtdowling@gmail.com",
  5140. "homepage": "https://github.com/mtdowling"
  5141. },
  5142. {
  5143. "name": "George Mponos",
  5144. "email": "gmponos@gmail.com",
  5145. "homepage": "https://github.com/gmponos"
  5146. },
  5147. {
  5148. "name": "Tobias Nyholm",
  5149. "email": "tobias.nyholm@gmail.com",
  5150. "homepage": "https://github.com/Nyholm"
  5151. },
  5152. {
  5153. "name": "Márk Sági-Kazár",
  5154. "email": "mark.sagikazar@gmail.com",
  5155. "homepage": "https://github.com/sagikazarmark"
  5156. },
  5157. {
  5158. "name": "Tobias Schultze",
  5159. "email": "webmaster@tubo-world.de",
  5160. "homepage": "https://github.com/Tobion"
  5161. },
  5162. {
  5163. "name": "Márk Sági-Kazár",
  5164. "email": "mark.sagikazar@gmail.com",
  5165. "homepage": "https://sagikazarmark.hu"
  5166. }
  5167. ],
  5168. "description": "PSR-7 message implementation that also provides common utility methods",
  5169. "keywords": [
  5170. "http",
  5171. "message",
  5172. "psr-7",
  5173. "request",
  5174. "response",
  5175. "stream",
  5176. "uri",
  5177. "url"
  5178. ],
  5179. "support": {
  5180. "issues": "https://github.com/guzzle/psr7/issues",
  5181. "source": "https://github.com/guzzle/psr7/tree/2.6.2"
  5182. },
  5183. "funding": [
  5184. {
  5185. "url": "https://github.com/GrahamCampbell",
  5186. "type": "github"
  5187. },
  5188. {
  5189. "url": "https://github.com/Nyholm",
  5190. "type": "github"
  5191. },
  5192. {
  5193. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/psr7",
  5194. "type": "tidelift"
  5195. }
  5196. ],
  5197. "time": "2023-12-03T20:05:35+00:00"
  5198. },
  5199. {
  5200. "name": "league/container",
  5201. "version": "4.2.0",
  5202. "source": {
  5203. "type": "git",
  5204. "url": "https://github.com/thephpleague/container.git",
  5205. "reference": "375d13cb828649599ef5d48a339c4af7a26cd0ab"
  5206. },
  5207. "dist": {
  5208. "type": "zip",
  5209. "url": "https://api.github.com/repos/thephpleague/container/zipball/375d13cb828649599ef5d48a339c4af7a26cd0ab",
  5210. "reference": "375d13cb828649599ef5d48a339c4af7a26cd0ab",
  5211. "shasum": ""
  5212. },
  5213. "require": {
  5214. "php": "^7.2 || ^8.0",
  5215. "psr/container": "^1.1 || ^2.0"
  5216. },
  5217. "provide": {
  5218. "psr/container-implementation": "^1.0"
  5219. },
  5220. "replace": {
  5221. "orno/di": "~2.0"
  5222. },
  5223. "require-dev": {
  5224. "nette/php-generator": "^3.4",
  5225. "nikic/php-parser": "^4.10",
  5226. "phpstan/phpstan": "^0.12.47",
  5227. "phpunit/phpunit": "^8.5.17",
  5228. "roave/security-advisories": "dev-latest",
  5229. "scrutinizer/ocular": "^1.8",
  5230. "squizlabs/php_codesniffer": "^3.6"
  5231. },
  5232. "type": "library",
  5233. "extra": {
  5234. "branch-alias": {
  5235. "dev-master": "4.x-dev",
  5236. "dev-4.x": "4.x-dev",
  5237. "dev-3.x": "3.x-dev",
  5238. "dev-2.x": "2.x-dev",
  5239. "dev-1.x": "1.x-dev"
  5240. }
  5241. },
  5242. "autoload": {
  5243. "psr-4": {
  5244. "League\\Container\\": "src"
  5245. }
  5246. },
  5247. "notification-url": "https://packagist.org/downloads/",
  5248. "license": [
  5249. "MIT"
  5250. ],
  5251. "authors": [
  5252. {
  5253. "name": "Phil Bennett",
  5254. "email": "mail@philbennett.co.uk",
  5255. "role": "Developer"
  5256. }
  5257. ],
  5258. "description": "A fast and intuitive dependency injection container.",
  5259. "homepage": "https://github.com/thephpleague/container",
  5260. "keywords": [
  5261. "container",
  5262. "dependency",
  5263. "di",
  5264. "injection",
  5265. "league",
  5266. "provider",
  5267. "service"
  5268. ],
  5269. "support": {
  5270. "issues": "https://github.com/thephpleague/container/issues",
  5271. "source": "https://github.com/thephpleague/container/tree/4.2.0"
  5272. },
  5273. "funding": [
  5274. {
  5275. "url": "https://github.com/philipobenito",
  5276. "type": "github"
  5277. }
  5278. ],
  5279. "time": "2021-11-16T10:29:06+00:00"
  5280. },
  5281. {
  5282. "name": "masterminds/html5",
  5283. "version": "2.8.1",
  5284. "source": {
  5285. "type": "git",
  5286. "url": "https://github.com/Masterminds/html5-php.git",
  5287. "reference": "f47dcf3c70c584de14f21143c55d9939631bc6cf"
  5288. },
  5289. "dist": {
  5290. "type": "zip",
  5291. "url": "https://api.github.com/repos/Masterminds/html5-php/zipball/f47dcf3c70c584de14f21143c55d9939631bc6cf",
  5292. "reference": "f47dcf3c70c584de14f21143c55d9939631bc6cf",
  5293. "shasum": ""
  5294. },
  5295. "require": {
  5296. "ext-dom": "*",
  5297. "php": ">=5.3.0"
  5298. },
  5299. "require-dev": {
  5300. "phpunit/phpunit": "^4.8.35 || ^5.7.21 || ^6 || ^7 || ^8"
  5301. },
  5302. "type": "library",
  5303. "extra": {
  5304. "branch-alias": {
  5305. "dev-master": "2.7-dev"
  5306. }
  5307. },
  5308. "autoload": {
  5309. "psr-4": {
  5310. "Masterminds\\": "src"
  5311. }
  5312. },
  5313. "notification-url": "https://packagist.org/downloads/",
  5314. "license": [
  5315. "MIT"
  5316. ],
  5317. "authors": [
  5318. {
  5319. "name": "Matt Butcher",
  5320. "email": "technosophos@gmail.com"
  5321. },
  5322. {
  5323. "name": "Matt Farina",
  5324. "email": "matt@mattfarina.com"
  5325. },
  5326. {
  5327. "name": "Asmir Mustafic",
  5328. "email": "goetas@gmail.com"
  5329. }
  5330. ],
  5331. "description": "An HTML5 parser and serializer.",
  5332. "homepage": "http://masterminds.github.io/html5-php",
  5333. "keywords": [
  5334. "HTML5",
  5335. "dom",
  5336. "html",
  5337. "parser",
  5338. "querypath",
  5339. "serializer",
  5340. "xml"
  5341. ],
  5342. "support": {
  5343. "issues": "https://github.com/Masterminds/html5-php/issues",
  5344. "source": "https://github.com/Masterminds/html5-php/tree/2.8.1"
  5345. },
  5346. "time": "2023-05-10T11:58:31+00:00"
  5347. },
  5348. {
  5349. "name": "mck89/peast",
  5350. "version": "v1.15.4",
  5351. "source": {
  5352. "type": "git",
  5353. "url": "https://github.com/mck89/peast.git",
  5354. "reference": "1df4dc28a6b5bb7ab117ab073c1712256e954e18"
  5355. },
  5356. "dist": {
  5357. "type": "zip",
  5358. "url": "https://api.github.com/repos/mck89/peast/zipball/1df4dc28a6b5bb7ab117ab073c1712256e954e18",
  5359. "reference": "1df4dc28a6b5bb7ab117ab073c1712256e954e18",
  5360. "shasum": ""
  5361. },
  5362. "require": {
  5363. "ext-mbstring": "*",
  5364. "php": ">=5.4.0"
  5365. },
  5366. "require-dev": {
  5367. "phpunit/phpunit": "^4.0 || ^5.0 || ^6.0 || ^7.0 || ^8.0 || ^9.0"
  5368. },
  5369. "type": "library",
  5370. "extra": {
  5371. "branch-alias": {
  5372. "dev-master": "1.15.4-dev"
  5373. }
  5374. },
  5375. "autoload": {
  5376. "psr-4": {
  5377. "Peast\\": "lib/Peast/"
  5378. }
  5379. },
  5380. "notification-url": "https://packagist.org/downloads/",
  5381. "license": [
  5382. "BSD-3-Clause"
  5383. ],
  5384. "authors": [
  5385. {
  5386. "name": "Marco Marchiò",
  5387. "email": "marco.mm89@gmail.com"
  5388. }
  5389. ],
  5390. "description": "Peast is PHP library that generates AST for JavaScript code",
  5391. "support": {
  5392. "issues": "https://github.com/mck89/peast/issues",
  5393. "source": "https://github.com/mck89/peast/tree/v1.15.4"
  5394. },
  5395. "time": "2023-08-12T08:29:29+00:00"
  5396. },
  5397. {
  5398. "name": "nikic/php-parser",
  5399. "version": "v5.0.1",
  5400. "source": {
  5401. "type": "git",
  5402. "url": "https://github.com/nikic/PHP-Parser.git",
  5403. "reference": "2218c2252c874a4624ab2f613d86ac32d227bc69"
  5404. },
  5405. "dist": {
  5406. "type": "zip",
  5407. "url": "https://api.github.com/repos/nikic/PHP-Parser/zipball/2218c2252c874a4624ab2f613d86ac32d227bc69",
  5408. "reference": "2218c2252c874a4624ab2f613d86ac32d227bc69",
  5409. "shasum": ""
  5410. },
  5411. "require": {
  5412. "ext-ctype": "*",
  5413. "ext-json": "*",
  5414. "ext-tokenizer": "*",
  5415. "php": ">=7.4"
  5416. },
  5417. "require-dev": {
  5418. "ircmaxell/php-yacc": "^0.0.7",
  5419. "phpunit/phpunit": "^7.0 || ^8.0 || ^9.0"
  5420. },
  5421. "bin": [
  5422. "bin/php-parse"
  5423. ],
  5424. "type": "library",
  5425. "extra": {
  5426. "branch-alias": {
  5427. "dev-master": "5.0-dev"
  5428. }
  5429. },
  5430. "autoload": {
  5431. "psr-4": {
  5432. "PhpParser\\": "lib/PhpParser"
  5433. }
  5434. },
  5435. "notification-url": "https://packagist.org/downloads/",
  5436. "license": [
  5437. "BSD-3-Clause"
  5438. ],
  5439. "authors": [
  5440. {
  5441. "name": "Nikita Popov"
  5442. }
  5443. ],
  5444. "description": "A PHP parser written in PHP",
  5445. "keywords": [
  5446. "parser",
  5447. "php"
  5448. ],
  5449. "support": {
  5450. "issues": "https://github.com/nikic/PHP-Parser/issues",
  5451. "source": "https://github.com/nikic/PHP-Parser/tree/v5.0.1"
  5452. },
  5453. "time": "2024-02-21T19:24:10+00:00"
  5454. },
  5455. {
  5456. "name": "pear/archive_tar",
  5457. "version": "1.4.14",
  5458. "source": {
  5459. "type": "git",
  5460. "url": "https://github.com/pear/Archive_Tar.git",
  5461. "reference": "4d761c5334c790e45ef3245f0864b8955c562caa"
  5462. },
  5463. "dist": {
  5464. "type": "zip",
  5465. "url": "https://api.github.com/repos/pear/Archive_Tar/zipball/4d761c5334c790e45ef3245f0864b8955c562caa",
  5466. "reference": "4d761c5334c790e45ef3245f0864b8955c562caa",
  5467. "shasum": ""
  5468. },
  5469. "require": {
  5470. "pear/pear-core-minimal": "^1.10.0alpha2",
  5471. "php": ">=5.2.0"
  5472. },
  5473. "require-dev": {
  5474. "phpunit/phpunit": "*"
  5475. },
  5476. "suggest": {
  5477. "ext-bz2": "Bz2 compression support.",
  5478. "ext-xz": "Lzma2 compression support.",
  5479. "ext-zlib": "Gzip compression support."
  5480. },
  5481. "type": "library",
  5482. "extra": {
  5483. "branch-alias": {
  5484. "dev-master": "1.4.x-dev"
  5485. }
  5486. },
  5487. "autoload": {
  5488. "psr-0": {
  5489. "Archive_Tar": ""
  5490. }
  5491. },
  5492. "notification-url": "https://packagist.org/downloads/",
  5493. "include-path": [
  5494. "./"
  5495. ],
  5496. "license": [
  5497. "BSD-3-Clause"
  5498. ],
  5499. "authors": [
  5500. {
  5501. "name": "Vincent Blavet",
  5502. "email": "vincent@phpconcept.net"
  5503. },
  5504. {
  5505. "name": "Greg Beaver",
  5506. "email": "greg@chiaraquartet.net"
  5507. },
  5508. {
  5509. "name": "Michiel Rook",
  5510. "email": "mrook@php.net"
  5511. }
  5512. ],
  5513. "description": "Tar file management class with compression support (gzip, bzip2, lzma2)",
  5514. "homepage": "https://github.com/pear/Archive_Tar",
  5515. "keywords": [
  5516. "archive",
  5517. "tar"
  5518. ],
  5519. "support": {
  5520. "issues": "http://pear.php.net/bugs/search.php?cmd=display&package_name[]=Archive_Tar",
  5521. "source": "https://github.com/pear/Archive_Tar"
  5522. },
  5523. "funding": [
  5524. {
  5525. "url": "https://github.com/mrook",
  5526. "type": "github"
  5527. },
  5528. {
  5529. "url": "https://www.patreon.com/michielrook",
  5530. "type": "patreon"
  5531. }
  5532. ],
  5533. "time": "2021-07-20T13:53:39+00:00"
  5534. },
  5535. {
  5536. "name": "pear/console_getopt",
  5537. "version": "v1.4.3",
  5538. "source": {
  5539. "type": "git",
  5540. "url": "https://github.com/pear/Console_Getopt.git",
  5541. "reference": "a41f8d3e668987609178c7c4a9fe48fecac53fa0"
  5542. },
  5543. "dist": {
  5544. "type": "zip",
  5545. "url": "https://api.github.com/repos/pear/Console_Getopt/zipball/a41f8d3e668987609178c7c4a9fe48fecac53fa0",
  5546. "reference": "a41f8d3e668987609178c7c4a9fe48fecac53fa0",
  5547. "shasum": ""
  5548. },
  5549. "type": "library",
  5550. "autoload": {
  5551. "psr-0": {
  5552. "Console": "./"
  5553. }
  5554. },
  5555. "notification-url": "https://packagist.org/downloads/",
  5556. "include-path": [
  5557. "./"
  5558. ],
  5559. "license": [
  5560. "BSD-2-Clause"
  5561. ],
  5562. "authors": [
  5563. {
  5564. "name": "Andrei Zmievski",
  5565. "email": "andrei@php.net",
  5566. "role": "Lead"
  5567. },
  5568. {
  5569. "name": "Stig Bakken",
  5570. "email": "stig@php.net",
  5571. "role": "Developer"
  5572. },
  5573. {
  5574. "name": "Greg Beaver",
  5575. "email": "cellog@php.net",
  5576. "role": "Helper"
  5577. }
  5578. ],
  5579. "description": "More info available on: http://pear.php.net/package/Console_Getopt",
  5580. "support": {
  5581. "issues": "http://pear.php.net/bugs/search.php?cmd=display&package_name[]=Console_Getopt",
  5582. "source": "https://github.com/pear/Console_Getopt"
  5583. },
  5584. "time": "2019-11-20T18:27:48+00:00"
  5585. },
  5586. {
  5587. "name": "pear/pear-core-minimal",
  5588. "version": "v1.10.14",
  5589. "source": {
  5590. "type": "git",
  5591. "url": "https://github.com/pear/pear-core-minimal.git",
  5592. "reference": "a86fc145edb5caedbf96527214ce3cadc9de4a32"
  5593. },
  5594. "dist": {
  5595. "type": "zip",
  5596. "url": "https://api.github.com/repos/pear/pear-core-minimal/zipball/a86fc145edb5caedbf96527214ce3cadc9de4a32",
  5597. "reference": "a86fc145edb5caedbf96527214ce3cadc9de4a32",
  5598. "shasum": ""
  5599. },
  5600. "require": {
  5601. "pear/console_getopt": "~1.4",
  5602. "pear/pear_exception": "~1.0",
  5603. "php": ">=5.4"
  5604. },
  5605. "replace": {
  5606. "rsky/pear-core-min": "self.version"
  5607. },
  5608. "type": "library",
  5609. "autoload": {
  5610. "psr-0": {
  5611. "": "src/"
  5612. }
  5613. },
  5614. "notification-url": "https://packagist.org/downloads/",
  5615. "include-path": [
  5616. "src/"
  5617. ],
  5618. "license": [
  5619. "BSD-3-Clause"
  5620. ],
  5621. "authors": [
  5622. {
  5623. "name": "Christian Weiske",
  5624. "email": "cweiske@php.net",
  5625. "role": "Lead"
  5626. }
  5627. ],
  5628. "description": "Minimal set of PEAR core files to be used as composer dependency",
  5629. "support": {
  5630. "issues": "http://pear.php.net/bugs/search.php?cmd=display&package_name[]=PEAR",
  5631. "source": "https://github.com/pear/pear-core-minimal"
  5632. },
  5633. "time": "2023-11-26T16:15:38+00:00"
  5634. },
  5635. {
  5636. "name": "pear/pear_exception",
  5637. "version": "v1.0.2",
  5638. "source": {
  5639. "type": "git",
  5640. "url": "https://github.com/pear/PEAR_Exception.git",
  5641. "reference": "b14fbe2ddb0b9f94f5b24cf08783d599f776fff0"
  5642. },
  5643. "dist": {
  5644. "type": "zip",
  5645. "url": "https://api.github.com/repos/pear/PEAR_Exception/zipball/b14fbe2ddb0b9f94f5b24cf08783d599f776fff0",
  5646. "reference": "b14fbe2ddb0b9f94f5b24cf08783d599f776fff0",
  5647. "shasum": ""
  5648. },
  5649. "require": {
  5650. "php": ">=5.2.0"
  5651. },
  5652. "require-dev": {
  5653. "phpunit/phpunit": "<9"
  5654. },
  5655. "type": "class",
  5656. "extra": {
  5657. "branch-alias": {
  5658. "dev-master": "1.0.x-dev"
  5659. }
  5660. },
  5661. "autoload": {
  5662. "classmap": [
  5663. "PEAR/"
  5664. ]
  5665. },
  5666. "notification-url": "https://packagist.org/downloads/",
  5667. "include-path": [
  5668. "."
  5669. ],
  5670. "license": [
  5671. "BSD-2-Clause"
  5672. ],
  5673. "authors": [
  5674. {
  5675. "name": "Helgi Thormar",
  5676. "email": "dufuz@php.net"
  5677. },
  5678. {
  5679. "name": "Greg Beaver",
  5680. "email": "cellog@php.net"
  5681. }
  5682. ],
  5683. "description": "The PEAR Exception base class.",
  5684. "homepage": "https://github.com/pear/PEAR_Exception",
  5685. "keywords": [
  5686. "exception"
  5687. ],
  5688. "support": {
  5689. "issues": "http://pear.php.net/bugs/search.php?cmd=display&package_name[]=PEAR_Exception",
  5690. "source": "https://github.com/pear/PEAR_Exception"
  5691. },
  5692. "time": "2021-03-21T15:43:46+00:00"
  5693. },
  5694. {
  5695. "name": "phootwork/collection",
  5696. "version": "v3.2.2",
  5697. "source": {
  5698. "type": "git",
  5699. "url": "https://github.com/phootwork/collection.git",
  5700. "reference": "46dde20420fba17766c89200bc3ff91d3e58eafa"
  5701. },
  5702. "dist": {
  5703. "type": "zip",
  5704. "url": "https://api.github.com/repos/phootwork/collection/zipball/46dde20420fba17766c89200bc3ff91d3e58eafa",
  5705. "reference": "46dde20420fba17766c89200bc3ff91d3e58eafa",
  5706. "shasum": ""
  5707. },
  5708. "require": {
  5709. "phootwork/lang": "^3.0",
  5710. "php": ">=8.0"
  5711. },
  5712. "type": "library",
  5713. "autoload": {
  5714. "psr-4": {
  5715. "phootwork\\collection\\": ""
  5716. }
  5717. },
  5718. "notification-url": "https://packagist.org/downloads/",
  5719. "license": [
  5720. "MIT"
  5721. ],
  5722. "authors": [
  5723. {
  5724. "name": "Thomas Gossmann",
  5725. "homepage": "http://gos.si"
  5726. }
  5727. ],
  5728. "description": "The phootwork library fills gaps in the php language and provides better solutions than the existing ones php offers.",
  5729. "homepage": "https://phootwork.github.io/collection/",
  5730. "keywords": [
  5731. "Array object",
  5732. "Text object",
  5733. "collection",
  5734. "collections",
  5735. "json",
  5736. "list",
  5737. "map",
  5738. "queue",
  5739. "set",
  5740. "stack",
  5741. "xml"
  5742. ],
  5743. "support": {
  5744. "issues": "https://github.com/phootwork/phootwork/issues",
  5745. "source": "https://github.com/phootwork/collection/tree/v3.2.2"
  5746. },
  5747. "time": "2022-08-27T12:51:24+00:00"
  5748. },
  5749. {
  5750. "name": "phootwork/lang",
  5751. "version": "v3.2.2",
  5752. "source": {
  5753. "type": "git",
  5754. "url": "https://github.com/phootwork/lang.git",
  5755. "reference": "baaf154ae7d521ebeee5e89105f5b12b0f234597"
  5756. },
  5757. "dist": {
  5758. "type": "zip",
  5759. "url": "https://api.github.com/repos/phootwork/lang/zipball/baaf154ae7d521ebeee5e89105f5b12b0f234597",
  5760. "reference": "baaf154ae7d521ebeee5e89105f5b12b0f234597",
  5761. "shasum": ""
  5762. },
  5763. "require": {
  5764. "php": ">=8.0",
  5765. "symfony/polyfill-mbstring": "^1.12",
  5766. "symfony/polyfill-php81": "^1.22"
  5767. },
  5768. "type": "library",
  5769. "autoload": {
  5770. "psr-4": {
  5771. "phootwork\\lang\\": ""
  5772. }
  5773. },
  5774. "notification-url": "https://packagist.org/downloads/",
  5775. "license": [
  5776. "MIT"
  5777. ],
  5778. "authors": [
  5779. {
  5780. "name": "Thomas Gossmann",
  5781. "homepage": "http://gos.si"
  5782. }
  5783. ],
  5784. "description": "Missing PHP language constructs",
  5785. "homepage": "https://phootwork.github.io/lang/",
  5786. "keywords": [
  5787. "array",
  5788. "comparator",
  5789. "comparison",
  5790. "string"
  5791. ],
  5792. "support": {
  5793. "issues": "https://github.com/phootwork/phootwork/issues",
  5794. "source": "https://github.com/phootwork/lang/tree/v3.2.2"
  5795. },
  5796. "time": "2023-05-26T05:37:59+00:00"
  5797. },
  5798. {
  5799. "name": "phpowermove/docblock",
  5800. "version": "v4.0",
  5801. "source": {
  5802. "type": "git",
  5803. "url": "https://github.com/phpowermove/docblock.git",
  5804. "reference": "a73f6e17b7d4e1b92ca5378c248c952c9fae7826"
  5805. },
  5806. "dist": {
  5807. "type": "zip",
  5808. "url": "https://api.github.com/repos/phpowermove/docblock/zipball/a73f6e17b7d4e1b92ca5378c248c952c9fae7826",
  5809. "reference": "a73f6e17b7d4e1b92ca5378c248c952c9fae7826",
  5810. "shasum": ""
  5811. },
  5812. "require": {
  5813. "phootwork/collection": "^3.0",
  5814. "phootwork/lang": "^3.0",
  5815. "php": ">=8.0"
  5816. },
  5817. "require-dev": {
  5818. "phootwork/php-cs-fixer-config": "^0.4",
  5819. "phpunit/phpunit": "^9.0",
  5820. "psalm/phar": "^4.3"
  5821. },
  5822. "type": "library",
  5823. "autoload": {
  5824. "psr-4": {
  5825. "phpowermove\\docblock\\": "src/"
  5826. }
  5827. },
  5828. "notification-url": "https://packagist.org/downloads/",
  5829. "license": [
  5830. "MIT"
  5831. ],
  5832. "authors": [
  5833. {
  5834. "name": "Thomas Gossmann",
  5835. "homepage": "http://gos.si"
  5836. }
  5837. ],
  5838. "description": "PHP Docblock parser and generator. An API to read and write Docblocks.",
  5839. "keywords": [
  5840. "docblock",
  5841. "generator",
  5842. "parser"
  5843. ],
  5844. "support": {
  5845. "issues": "https://github.com/phpowermove/docblock/issues",
  5846. "source": "https://github.com/phpowermove/docblock/tree/v4.0"
  5847. },
  5848. "time": "2021-09-22T16:57:06+00:00"
  5849. },
  5850. {
  5851. "name": "psr/cache",
  5852. "version": "3.0.0",
  5853. "source": {
  5854. "type": "git",
  5855. "url": "https://github.com/php-fig/cache.git",
  5856. "reference": "aa5030cfa5405eccfdcb1083ce040c2cb8d253bf"
  5857. },
  5858. "dist": {
  5859. "type": "zip",
  5860. "url": "https://api.github.com/repos/php-fig/cache/zipball/aa5030cfa5405eccfdcb1083ce040c2cb8d253bf",
  5861. "reference": "aa5030cfa5405eccfdcb1083ce040c2cb8d253bf",
  5862. "shasum": ""
  5863. },
  5864. "require": {
  5865. "php": ">=8.0.0"
  5866. },
  5867. "type": "library",
  5868. "extra": {
  5869. "branch-alias": {
  5870. "dev-master": "1.0.x-dev"
  5871. }
  5872. },
  5873. "autoload": {
  5874. "psr-4": {
  5875. "Psr\\Cache\\": "src/"
  5876. }
  5877. },
  5878. "notification-url": "https://packagist.org/downloads/",
  5879. "license": [
  5880. "MIT"
  5881. ],
  5882. "authors": [
  5883. {
  5884. "name": "PHP-FIG",
  5885. "homepage": "https://www.php-fig.org/"
  5886. }
  5887. ],
  5888. "description": "Common interface for caching libraries",
  5889. "keywords": [
  5890. "cache",
  5891. "psr",
  5892. "psr-6"
  5893. ],
  5894. "support": {
  5895. "source": "https://github.com/php-fig/cache/tree/3.0.0"
  5896. },
  5897. "time": "2021-02-03T23:26:27+00:00"
  5898. },
  5899. {
  5900. "name": "psr/container",
  5901. "version": "2.0.2",
  5902. "source": {
  5903. "type": "git",
  5904. "url": "https://github.com/php-fig/container.git",
  5905. "reference": "c71ecc56dfe541dbd90c5360474fbc405f8d5963"
  5906. },
  5907. "dist": {
  5908. "type": "zip",
  5909. "url": "https://api.github.com/repos/php-fig/container/zipball/c71ecc56dfe541dbd90c5360474fbc405f8d5963",
  5910. "reference": "c71ecc56dfe541dbd90c5360474fbc405f8d5963",
  5911. "shasum": ""
  5912. },
  5913. "require": {
  5914. "php": ">=7.4.0"
  5915. },
  5916. "type": "library",
  5917. "extra": {
  5918. "branch-alias": {
  5919. "dev-master": "2.0.x-dev"
  5920. }
  5921. },
  5922. "autoload": {
  5923. "psr-4": {
  5924. "Psr\\Container\\": "src/"
  5925. }
  5926. },
  5927. "notification-url": "https://packagist.org/downloads/",
  5928. "license": [
  5929. "MIT"
  5930. ],
  5931. "authors": [
  5932. {
  5933. "name": "PHP-FIG",
  5934. "homepage": "https://www.php-fig.org/"
  5935. }
  5936. ],
  5937. "description": "Common Container Interface (PHP FIG PSR-11)",
  5938. "homepage": "https://github.com/php-fig/container",
  5939. "keywords": [
  5940. "PSR-11",
  5941. "container",
  5942. "container-interface",
  5943. "container-interop",
  5944. "psr"
  5945. ],
  5946. "support": {
  5947. "issues": "https://github.com/php-fig/container/issues",
  5948. "source": "https://github.com/php-fig/container/tree/2.0.2"
  5949. },
  5950. "time": "2021-11-05T16:47:00+00:00"
  5951. },
  5952. {
  5953. "name": "psr/event-dispatcher",
  5954. "version": "1.0.0",
  5955. "source": {
  5956. "type": "git",
  5957. "url": "https://github.com/php-fig/event-dispatcher.git",
  5958. "reference": "dbefd12671e8a14ec7f180cab83036ed26714bb0"
  5959. },
  5960. "dist": {
  5961. "type": "zip",
  5962. "url": "https://api.github.com/repos/php-fig/event-dispatcher/zipball/dbefd12671e8a14ec7f180cab83036ed26714bb0",
  5963. "reference": "dbefd12671e8a14ec7f180cab83036ed26714bb0",
  5964. "shasum": ""
  5965. },
  5966. "require": {
  5967. "php": ">=7.2.0"
  5968. },
  5969. "type": "library",
  5970. "extra": {
  5971. "branch-alias": {
  5972. "dev-master": "1.0.x-dev"
  5973. }
  5974. },
  5975. "autoload": {
  5976. "psr-4": {
  5977. "Psr\\EventDispatcher\\": "src/"
  5978. }
  5979. },
  5980. "notification-url": "https://packagist.org/downloads/",
  5981. "license": [
  5982. "MIT"
  5983. ],
  5984. "authors": [
  5985. {
  5986. "name": "PHP-FIG",
  5987. "homepage": "http://www.php-fig.org/"
  5988. }
  5989. ],
  5990. "description": "Standard interfaces for event handling.",
  5991. "keywords": [
  5992. "events",
  5993. "psr",
  5994. "psr-14"
  5995. ],
  5996. "support": {
  5997. "issues": "https://github.com/php-fig/event-dispatcher/issues",
  5998. "source": "https://github.com/php-fig/event-dispatcher/tree/1.0.0"
  5999. },
  6000. "time": "2019-01-08T18:20:26+00:00"
  6001. },
  6002. {
  6003. "name": "psr/http-client",
  6004. "version": "1.0.3",
  6005. "source": {
  6006. "type": "git",
  6007. "url": "https://github.com/php-fig/http-client.git",
  6008. "reference": "bb5906edc1c324c9a05aa0873d40117941e5fa90"
  6009. },
  6010. "dist": {
  6011. "type": "zip",
  6012. "url": "https://api.github.com/repos/php-fig/http-client/zipball/bb5906edc1c324c9a05aa0873d40117941e5fa90",
  6013. "reference": "bb5906edc1c324c9a05aa0873d40117941e5fa90",
  6014. "shasum": ""
  6015. },
  6016. "require": {
  6017. "php": "^7.0 || ^8.0",
  6018. "psr/http-message": "^1.0 || ^2.0"
  6019. },
  6020. "type": "library",
  6021. "extra": {
  6022. "branch-alias": {
  6023. "dev-master": "1.0.x-dev"
  6024. }
  6025. },
  6026. "autoload": {
  6027. "psr-4": {
  6028. "Psr\\Http\\Client\\": "src/"
  6029. }
  6030. },
  6031. "notification-url": "https://packagist.org/downloads/",
  6032. "license": [
  6033. "MIT"
  6034. ],
  6035. "authors": [
  6036. {
  6037. "name": "PHP-FIG",
  6038. "homepage": "https://www.php-fig.org/"
  6039. }
  6040. ],
  6041. "description": "Common interface for HTTP clients",
  6042. "homepage": "https://github.com/php-fig/http-client",
  6043. "keywords": [
  6044. "http",
  6045. "http-client",
  6046. "psr",
  6047. "psr-18"
  6048. ],
  6049. "support": {
  6050. "source": "https://github.com/php-fig/http-client"
  6051. },
  6052. "time": "2023-09-23T14:17:50+00:00"
  6053. },
  6054. {
  6055. "name": "psr/http-factory",
  6056. "version": "1.0.2",
  6057. "source": {
  6058. "type": "git",
  6059. "url": "https://github.com/php-fig/http-factory.git",
  6060. "reference": "e616d01114759c4c489f93b099585439f795fe35"
  6061. },
  6062. "dist": {
  6063. "type": "zip",
  6064. "url": "https://api.github.com/repos/php-fig/http-factory/zipball/e616d01114759c4c489f93b099585439f795fe35",
  6065. "reference": "e616d01114759c4c489f93b099585439f795fe35",
  6066. "shasum": ""
  6067. },
  6068. "require": {
  6069. "php": ">=7.0.0",
  6070. "psr/http-message": "^1.0 || ^2.0"
  6071. },
  6072. "type": "library",
  6073. "extra": {
  6074. "branch-alias": {
  6075. "dev-master": "1.0.x-dev"
  6076. }
  6077. },
  6078. "autoload": {
  6079. "psr-4": {
  6080. "Psr\\Http\\Message\\": "src/"
  6081. }
  6082. },
  6083. "notification-url": "https://packagist.org/downloads/",
  6084. "license": [
  6085. "MIT"
  6086. ],
  6087. "authors": [
  6088. {
  6089. "name": "PHP-FIG",
  6090. "homepage": "https://www.php-fig.org/"
  6091. }
  6092. ],
  6093. "description": "Common interfaces for PSR-7 HTTP message factories",
  6094. "keywords": [
  6095. "factory",
  6096. "http",
  6097. "message",
  6098. "psr",
  6099. "psr-17",
  6100. "psr-7",
  6101. "request",
  6102. "response"
  6103. ],
  6104. "support": {
  6105. "source": "https://github.com/php-fig/http-factory/tree/1.0.2"
  6106. },
  6107. "time": "2023-04-10T20:10:41+00:00"
  6108. },
  6109. {
  6110. "name": "psr/http-message",
  6111. "version": "2.0",
  6112. "source": {
  6113. "type": "git",
  6114. "url": "https://github.com/php-fig/http-message.git",
  6115. "reference": "402d35bcb92c70c026d1a6a9883f06b2ead23d71"
  6116. },
  6117. "dist": {
  6118. "type": "zip",
  6119. "url": "https://api.github.com/repos/php-fig/http-message/zipball/402d35bcb92c70c026d1a6a9883f06b2ead23d71",
  6120. "reference": "402d35bcb92c70c026d1a6a9883f06b2ead23d71",
  6121. "shasum": ""
  6122. },
  6123. "require": {
  6124. "php": "^7.2 || ^8.0"
  6125. },
  6126. "type": "library",
  6127. "extra": {
  6128. "branch-alias": {
  6129. "dev-master": "2.0.x-dev"
  6130. }
  6131. },
  6132. "autoload": {
  6133. "psr-4": {
  6134. "Psr\\Http\\Message\\": "src/"
  6135. }
  6136. },
  6137. "notification-url": "https://packagist.org/downloads/",
  6138. "license": [
  6139. "MIT"
  6140. ],
  6141. "authors": [
  6142. {
  6143. "name": "PHP-FIG",
  6144. "homepage": "https://www.php-fig.org/"
  6145. }
  6146. ],
  6147. "description": "Common interface for HTTP messages",
  6148. "homepage": "https://github.com/php-fig/http-message",
  6149. "keywords": [
  6150. "http",
  6151. "http-message",
  6152. "psr",
  6153. "psr-7",
  6154. "request",
  6155. "response"
  6156. ],
  6157. "support": {
  6158. "source": "https://github.com/php-fig/http-message/tree/2.0"
  6159. },
  6160. "time": "2023-04-04T09:54:51+00:00"
  6161. },
  6162. {
  6163. "name": "psr/log",
  6164. "version": "3.0.0",
  6165. "source": {
  6166. "type": "git",
  6167. "url": "https://github.com/php-fig/log.git",
  6168. "reference": "fe5ea303b0887d5caefd3d431c3e61ad47037001"
  6169. },
  6170. "dist": {
  6171. "type": "zip",
  6172. "url": "https://api.github.com/repos/php-fig/log/zipball/fe5ea303b0887d5caefd3d431c3e61ad47037001",
  6173. "reference": "fe5ea303b0887d5caefd3d431c3e61ad47037001",
  6174. "shasum": ""
  6175. },
  6176. "require": {
  6177. "php": ">=8.0.0"
  6178. },
  6179. "type": "library",
  6180. "extra": {
  6181. "branch-alias": {
  6182. "dev-master": "3.x-dev"
  6183. }
  6184. },
  6185. "autoload": {
  6186. "psr-4": {
  6187. "Psr\\Log\\": "src"
  6188. }
  6189. },
  6190. "notification-url": "https://packagist.org/downloads/",
  6191. "license": [
  6192. "MIT"
  6193. ],
  6194. "authors": [
  6195. {
  6196. "name": "PHP-FIG",
  6197. "homepage": "https://www.php-fig.org/"
  6198. }
  6199. ],
  6200. "description": "Common interface for logging libraries",
  6201. "homepage": "https://github.com/php-fig/log",
  6202. "keywords": [
  6203. "log",
  6204. "psr",
  6205. "psr-3"
  6206. ],
  6207. "support": {
  6208. "source": "https://github.com/php-fig/log/tree/3.0.0"
  6209. },
  6210. "time": "2021-07-14T16:46:02+00:00"
  6211. },
  6212. {
  6213. "name": "psy/psysh",
  6214. "version": "v0.12.0",
  6215. "source": {
  6216. "type": "git",
  6217. "url": "https://github.com/bobthecow/psysh.git",
  6218. "reference": "750bf031a48fd07c673dbe3f11f72362ea306d0d"
  6219. },
  6220. "dist": {
  6221. "type": "zip",
  6222. "url": "https://api.github.com/repos/bobthecow/psysh/zipball/750bf031a48fd07c673dbe3f11f72362ea306d0d",
  6223. "reference": "750bf031a48fd07c673dbe3f11f72362ea306d0d",
  6224. "shasum": ""
  6225. },
  6226. "require": {
  6227. "ext-json": "*",
  6228. "ext-tokenizer": "*",
  6229. "nikic/php-parser": "^5.0 || ^4.0",
  6230. "php": "^8.0 || ^7.4",
  6231. "symfony/console": "^7.0 || ^6.0 || ^5.0 || ^4.0 || ^3.4",
  6232. "symfony/var-dumper": "^7.0 || ^6.0 || ^5.0 || ^4.0 || ^3.4"
  6233. },
  6234. "conflict": {
  6235. "symfony/console": "4.4.37 || 5.3.14 || 5.3.15 || 5.4.3 || 5.4.4 || 6.0.3 || 6.0.4"
  6236. },
  6237. "require-dev": {
  6238. "bamarni/composer-bin-plugin": "^1.2"
  6239. },
  6240. "suggest": {
  6241. "ext-pcntl": "Enabling the PCNTL extension makes PsySH a lot happier :)",
  6242. "ext-pdo-sqlite": "The doc command requires SQLite to work.",
  6243. "ext-posix": "If you have PCNTL, you'll want the POSIX extension as well."
  6244. },
  6245. "bin": [
  6246. "bin/psysh"
  6247. ],
  6248. "type": "library",
  6249. "extra": {
  6250. "branch-alias": {
  6251. "dev-main": "0.12.x-dev"
  6252. },
  6253. "bamarni-bin": {
  6254. "bin-links": false,
  6255. "forward-command": false
  6256. }
  6257. },
  6258. "autoload": {
  6259. "files": [
  6260. "src/functions.php"
  6261. ],
  6262. "psr-4": {
  6263. "Psy\\": "src/"
  6264. }
  6265. },
  6266. "notification-url": "https://packagist.org/downloads/",
  6267. "license": [
  6268. "MIT"
  6269. ],
  6270. "authors": [
  6271. {
  6272. "name": "Justin Hileman",
  6273. "email": "justin@justinhileman.info",
  6274. "homepage": "http://justinhileman.com"
  6275. }
  6276. ],
  6277. "description": "An interactive shell for modern PHP.",
  6278. "homepage": "http://psysh.org",
  6279. "keywords": [
  6280. "REPL",
  6281. "console",
  6282. "interactive",
  6283. "shell"
  6284. ],
  6285. "support": {
  6286. "issues": "https://github.com/bobthecow/psysh/issues",
  6287. "source": "https://github.com/bobthecow/psysh/tree/v0.12.0"
  6288. },
  6289. "time": "2023-12-20T15:28:09+00:00"
  6290. },
  6291. {
  6292. "name": "ralouphie/getallheaders",
  6293. "version": "3.0.3",
  6294. "source": {
  6295. "type": "git",
  6296. "url": "https://github.com/ralouphie/getallheaders.git",
  6297. "reference": "120b605dfeb996808c31b6477290a714d356e822"
  6298. },
  6299. "dist": {
  6300. "type": "zip",
  6301. "url": "https://api.github.com/repos/ralouphie/getallheaders/zipball/120b605dfeb996808c31b6477290a714d356e822",
  6302. "reference": "120b605dfeb996808c31b6477290a714d356e822",
  6303. "shasum": ""
  6304. },
  6305. "require": {
  6306. "php": ">=5.6"
  6307. },
  6308. "require-dev": {
  6309. "php-coveralls/php-coveralls": "^2.1",
  6310. "phpunit/phpunit": "^5 || ^6.5"
  6311. },
  6312. "type": "library",
  6313. "autoload": {
  6314. "files": [
  6315. "src/getallheaders.php"
  6316. ]
  6317. },
  6318. "notification-url": "https://packagist.org/downloads/",
  6319. "license": [
  6320. "MIT"
  6321. ],
  6322. "authors": [
  6323. {
  6324. "name": "Ralph Khattar",
  6325. "email": "ralph.khattar@gmail.com"
  6326. }
  6327. ],
  6328. "description": "A polyfill for getallheaders.",
  6329. "support": {
  6330. "issues": "https://github.com/ralouphie/getallheaders/issues",
  6331. "source": "https://github.com/ralouphie/getallheaders/tree/develop"
  6332. },
  6333. "time": "2019-03-08T08:55:37+00:00"
  6334. },
  6335. {
  6336. "name": "sebastian/diff",
  6337. "version": "4.0.6",
  6338. "source": {
  6339. "type": "git",
  6340. "url": "https://github.com/sebastianbergmann/diff.git",
  6341. "reference": "ba01945089c3a293b01ba9badc29ad55b106b0bc"
  6342. },
  6343. "dist": {
  6344. "type": "zip",
  6345. "url": "https://api.github.com/repos/sebastianbergmann/diff/zipball/ba01945089c3a293b01ba9badc29ad55b106b0bc",
  6346. "reference": "ba01945089c3a293b01ba9badc29ad55b106b0bc",
  6347. "shasum": ""
  6348. },
  6349. "require": {
  6350. "php": ">=7.3"
  6351. },
  6352. "require-dev": {
  6353. "phpunit/phpunit": "^9.3",
  6354. "symfony/process": "^4.2 || ^5"
  6355. },
  6356. "type": "library",
  6357. "extra": {
  6358. "branch-alias": {
  6359. "dev-master": "4.0-dev"
  6360. }
  6361. },
  6362. "autoload": {
  6363. "classmap": [
  6364. "src/"
  6365. ]
  6366. },
  6367. "notification-url": "https://packagist.org/downloads/",
  6368. "license": [
  6369. "BSD-3-Clause"
  6370. ],
  6371. "authors": [
  6372. {
  6373. "name": "Sebastian Bergmann",
  6374. "email": "sebastian@phpunit.de"
  6375. },
  6376. {
  6377. "name": "Kore Nordmann",
  6378. "email": "mail@kore-nordmann.de"
  6379. }
  6380. ],
  6381. "description": "Diff implementation",
  6382. "homepage": "https://github.com/sebastianbergmann/diff",
  6383. "keywords": [
  6384. "diff",
  6385. "udiff",
  6386. "unidiff",
  6387. "unified diff"
  6388. ],
  6389. "support": {
  6390. "issues": "https://github.com/sebastianbergmann/diff/issues",
  6391. "source": "https://github.com/sebastianbergmann/diff/tree/4.0.6"
  6392. },
  6393. "funding": [
  6394. {
  6395. "url": "https://github.com/sebastianbergmann",
  6396. "type": "github"
  6397. }
  6398. ],
  6399. "time": "2024-03-02T06:30:58+00:00"
  6400. },
  6401. {
  6402. "name": "symfony/console",
  6403. "version": "v6.4.4",
  6404. "source": {
  6405. "type": "git",
  6406. "url": "https://github.com/symfony/console.git",
  6407. "reference": "0d9e4eb5ad413075624378f474c4167ea202de78"
  6408. },
  6409. "dist": {
  6410. "type": "zip",
  6411. "url": "https://api.github.com/repos/symfony/console/zipball/0d9e4eb5ad413075624378f474c4167ea202de78",
  6412. "reference": "0d9e4eb5ad413075624378f474c4167ea202de78",
  6413. "shasum": ""
  6414. },
  6415. "require": {
  6416. "php": ">=8.1",
  6417. "symfony/deprecation-contracts": "^2.5|^3",
  6418. "symfony/polyfill-mbstring": "~1.0",
  6419. "symfony/service-contracts": "^2.5|^3",
  6420. "symfony/string": "^5.4|^6.0|^7.0"
  6421. },
  6422. "conflict": {
  6423. "symfony/dependency-injection": "<5.4",
  6424. "symfony/dotenv": "<5.4",
  6425. "symfony/event-dispatcher": "<5.4",
  6426. "symfony/lock": "<5.4",
  6427. "symfony/process": "<5.4"
  6428. },
  6429. "provide": {
  6430. "psr/log-implementation": "1.0|2.0|3.0"
  6431. },
  6432. "require-dev": {
  6433. "psr/log": "^1|^2|^3",
  6434. "symfony/config": "^5.4|^6.0|^7.0",
  6435. "symfony/dependency-injection": "^5.4|^6.0|^7.0",
  6436. "symfony/event-dispatcher": "^5.4|^6.0|^7.0",
  6437. "symfony/http-foundation": "^6.4|^7.0",
  6438. "symfony/http-kernel": "^6.4|^7.0",
  6439. "symfony/lock": "^5.4|^6.0|^7.0",
  6440. "symfony/messenger": "^5.4|^6.0|^7.0",
  6441. "symfony/process": "^5.4|^6.0|^7.0",
  6442. "symfony/stopwatch": "^5.4|^6.0|^7.0",
  6443. "symfony/var-dumper": "^5.4|^6.0|^7.0"
  6444. },
  6445. "type": "library",
  6446. "autoload": {
  6447. "psr-4": {
  6448. "Symfony\\Component\\Console\\": ""
  6449. },
  6450. "exclude-from-classmap": [
  6451. "/Tests/"
  6452. ]
  6453. },
  6454. "notification-url": "https://packagist.org/downloads/",
  6455. "license": [
  6456. "MIT"
  6457. ],
  6458. "authors": [
  6459. {
  6460. "name": "Fabien Potencier",
  6461. "email": "fabien@symfony.com"
  6462. },
  6463. {
  6464. "name": "Symfony Community",
  6465. "homepage": "https://symfony.com/contributors"
  6466. }
  6467. ],
  6468. "description": "Eases the creation of beautiful and testable command line interfaces",
  6469. "homepage": "https://symfony.com",
  6470. "keywords": [
  6471. "cli",
  6472. "command-line",
  6473. "console",
  6474. "terminal"
  6475. ],
  6476. "support": {
  6477. "source": "https://github.com/symfony/console/tree/v6.4.4"
  6478. },
  6479. "funding": [
  6480. {
  6481. "url": "https://symfony.com/sponsor",
  6482. "type": "custom"
  6483. },
  6484. {
  6485. "url": "https://github.com/fabpot",
  6486. "type": "github"
  6487. },
  6488. {
  6489. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6490. "type": "tidelift"
  6491. }
  6492. ],
  6493. "time": "2024-02-22T20:27:10+00:00"
  6494. },
  6495. {
  6496. "name": "symfony/dependency-injection",
  6497. "version": "v6.4.4",
  6498. "source": {
  6499. "type": "git",
  6500. "url": "https://github.com/symfony/dependency-injection.git",
  6501. "reference": "6236e5e843cb763e9d0f74245678b994afea5363"
  6502. },
  6503. "dist": {
  6504. "type": "zip",
  6505. "url": "https://api.github.com/repos/symfony/dependency-injection/zipball/6236e5e843cb763e9d0f74245678b994afea5363",
  6506. "reference": "6236e5e843cb763e9d0f74245678b994afea5363",
  6507. "shasum": ""
  6508. },
  6509. "require": {
  6510. "php": ">=8.1",
  6511. "psr/container": "^1.1|^2.0",
  6512. "symfony/deprecation-contracts": "^2.5|^3",
  6513. "symfony/service-contracts": "^2.5|^3.0",
  6514. "symfony/var-exporter": "^6.2.10|^7.0"
  6515. },
  6516. "conflict": {
  6517. "ext-psr": "<1.1|>=2",
  6518. "symfony/config": "<6.1",
  6519. "symfony/finder": "<5.4",
  6520. "symfony/proxy-manager-bridge": "<6.3",
  6521. "symfony/yaml": "<5.4"
  6522. },
  6523. "provide": {
  6524. "psr/container-implementation": "1.1|2.0",
  6525. "symfony/service-implementation": "1.1|2.0|3.0"
  6526. },
  6527. "require-dev": {
  6528. "symfony/config": "^6.1|^7.0",
  6529. "symfony/expression-language": "^5.4|^6.0|^7.0",
  6530. "symfony/yaml": "^5.4|^6.0|^7.0"
  6531. },
  6532. "type": "library",
  6533. "autoload": {
  6534. "psr-4": {
  6535. "Symfony\\Component\\DependencyInjection\\": ""
  6536. },
  6537. "exclude-from-classmap": [
  6538. "/Tests/"
  6539. ]
  6540. },
  6541. "notification-url": "https://packagist.org/downloads/",
  6542. "license": [
  6543. "MIT"
  6544. ],
  6545. "authors": [
  6546. {
  6547. "name": "Fabien Potencier",
  6548. "email": "fabien@symfony.com"
  6549. },
  6550. {
  6551. "name": "Symfony Community",
  6552. "homepage": "https://symfony.com/contributors"
  6553. }
  6554. ],
  6555. "description": "Allows you to standardize and centralize the way objects are constructed in your application",
  6556. "homepage": "https://symfony.com",
  6557. "support": {
  6558. "source": "https://github.com/symfony/dependency-injection/tree/v6.4.4"
  6559. },
  6560. "funding": [
  6561. {
  6562. "url": "https://symfony.com/sponsor",
  6563. "type": "custom"
  6564. },
  6565. {
  6566. "url": "https://github.com/fabpot",
  6567. "type": "github"
  6568. },
  6569. {
  6570. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6571. "type": "tidelift"
  6572. }
  6573. ],
  6574. "time": "2024-02-22T20:27:10+00:00"
  6575. },
  6576. {
  6577. "name": "symfony/deprecation-contracts",
  6578. "version": "v3.4.0",
  6579. "source": {
  6580. "type": "git",
  6581. "url": "https://github.com/symfony/deprecation-contracts.git",
  6582. "reference": "7c3aff79d10325257a001fcf92d991f24fc967cf"
  6583. },
  6584. "dist": {
  6585. "type": "zip",
  6586. "url": "https://api.github.com/repos/symfony/deprecation-contracts/zipball/7c3aff79d10325257a001fcf92d991f24fc967cf",
  6587. "reference": "7c3aff79d10325257a001fcf92d991f24fc967cf",
  6588. "shasum": ""
  6589. },
  6590. "require": {
  6591. "php": ">=8.1"
  6592. },
  6593. "type": "library",
  6594. "extra": {
  6595. "branch-alias": {
  6596. "dev-main": "3.4-dev"
  6597. },
  6598. "thanks": {
  6599. "name": "symfony/contracts",
  6600. "url": "https://github.com/symfony/contracts"
  6601. }
  6602. },
  6603. "autoload": {
  6604. "files": [
  6605. "function.php"
  6606. ]
  6607. },
  6608. "notification-url": "https://packagist.org/downloads/",
  6609. "license": [
  6610. "MIT"
  6611. ],
  6612. "authors": [
  6613. {
  6614. "name": "Nicolas Grekas",
  6615. "email": "p@tchwork.com"
  6616. },
  6617. {
  6618. "name": "Symfony Community",
  6619. "homepage": "https://symfony.com/contributors"
  6620. }
  6621. ],
  6622. "description": "A generic function and convention to trigger deprecation notices",
  6623. "homepage": "https://symfony.com",
  6624. "support": {
  6625. "source": "https://github.com/symfony/deprecation-contracts/tree/v3.4.0"
  6626. },
  6627. "funding": [
  6628. {
  6629. "url": "https://symfony.com/sponsor",
  6630. "type": "custom"
  6631. },
  6632. {
  6633. "url": "https://github.com/fabpot",
  6634. "type": "github"
  6635. },
  6636. {
  6637. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6638. "type": "tidelift"
  6639. }
  6640. ],
  6641. "time": "2023-05-23T14:45:45+00:00"
  6642. },
  6643. {
  6644. "name": "symfony/error-handler",
  6645. "version": "v6.4.4",
  6646. "source": {
  6647. "type": "git",
  6648. "url": "https://github.com/symfony/error-handler.git",
  6649. "reference": "c725219bdf2afc59423c32793d5019d2a904e13a"
  6650. },
  6651. "dist": {
  6652. "type": "zip",
  6653. "url": "https://api.github.com/repos/symfony/error-handler/zipball/c725219bdf2afc59423c32793d5019d2a904e13a",
  6654. "reference": "c725219bdf2afc59423c32793d5019d2a904e13a",
  6655. "shasum": ""
  6656. },
  6657. "require": {
  6658. "php": ">=8.1",
  6659. "psr/log": "^1|^2|^3",
  6660. "symfony/var-dumper": "^5.4|^6.0|^7.0"
  6661. },
  6662. "conflict": {
  6663. "symfony/deprecation-contracts": "<2.5",
  6664. "symfony/http-kernel": "<6.4"
  6665. },
  6666. "require-dev": {
  6667. "symfony/deprecation-contracts": "^2.5|^3",
  6668. "symfony/http-kernel": "^6.4|^7.0",
  6669. "symfony/serializer": "^5.4|^6.0|^7.0"
  6670. },
  6671. "bin": [
  6672. "Resources/bin/patch-type-declarations"
  6673. ],
  6674. "type": "library",
  6675. "autoload": {
  6676. "psr-4": {
  6677. "Symfony\\Component\\ErrorHandler\\": ""
  6678. },
  6679. "exclude-from-classmap": [
  6680. "/Tests/"
  6681. ]
  6682. },
  6683. "notification-url": "https://packagist.org/downloads/",
  6684. "license": [
  6685. "MIT"
  6686. ],
  6687. "authors": [
  6688. {
  6689. "name": "Fabien Potencier",
  6690. "email": "fabien@symfony.com"
  6691. },
  6692. {
  6693. "name": "Symfony Community",
  6694. "homepage": "https://symfony.com/contributors"
  6695. }
  6696. ],
  6697. "description": "Provides tools to manage errors and ease debugging PHP code",
  6698. "homepage": "https://symfony.com",
  6699. "support": {
  6700. "source": "https://github.com/symfony/error-handler/tree/v6.4.4"
  6701. },
  6702. "funding": [
  6703. {
  6704. "url": "https://symfony.com/sponsor",
  6705. "type": "custom"
  6706. },
  6707. {
  6708. "url": "https://github.com/fabpot",
  6709. "type": "github"
  6710. },
  6711. {
  6712. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6713. "type": "tidelift"
  6714. }
  6715. ],
  6716. "time": "2024-02-22T20:27:10+00:00"
  6717. },
  6718. {
  6719. "name": "symfony/event-dispatcher",
  6720. "version": "v6.4.3",
  6721. "source": {
  6722. "type": "git",
  6723. "url": "https://github.com/symfony/event-dispatcher.git",
  6724. "reference": "ae9d3a6f3003a6caf56acd7466d8d52378d44fef"
  6725. },
  6726. "dist": {
  6727. "type": "zip",
  6728. "url": "https://api.github.com/repos/symfony/event-dispatcher/zipball/ae9d3a6f3003a6caf56acd7466d8d52378d44fef",
  6729. "reference": "ae9d3a6f3003a6caf56acd7466d8d52378d44fef",
  6730. "shasum": ""
  6731. },
  6732. "require": {
  6733. "php": ">=8.1",
  6734. "symfony/event-dispatcher-contracts": "^2.5|^3"
  6735. },
  6736. "conflict": {
  6737. "symfony/dependency-injection": "<5.4",
  6738. "symfony/service-contracts": "<2.5"
  6739. },
  6740. "provide": {
  6741. "psr/event-dispatcher-implementation": "1.0",
  6742. "symfony/event-dispatcher-implementation": "2.0|3.0"
  6743. },
  6744. "require-dev": {
  6745. "psr/log": "^1|^2|^3",
  6746. "symfony/config": "^5.4|^6.0|^7.0",
  6747. "symfony/dependency-injection": "^5.4|^6.0|^7.0",
  6748. "symfony/error-handler": "^5.4|^6.0|^7.0",
  6749. "symfony/expression-language": "^5.4|^6.0|^7.0",
  6750. "symfony/http-foundation": "^5.4|^6.0|^7.0",
  6751. "symfony/service-contracts": "^2.5|^3",
  6752. "symfony/stopwatch": "^5.4|^6.0|^7.0"
  6753. },
  6754. "type": "library",
  6755. "autoload": {
  6756. "psr-4": {
  6757. "Symfony\\Component\\EventDispatcher\\": ""
  6758. },
  6759. "exclude-from-classmap": [
  6760. "/Tests/"
  6761. ]
  6762. },
  6763. "notification-url": "https://packagist.org/downloads/",
  6764. "license": [
  6765. "MIT"
  6766. ],
  6767. "authors": [
  6768. {
  6769. "name": "Fabien Potencier",
  6770. "email": "fabien@symfony.com"
  6771. },
  6772. {
  6773. "name": "Symfony Community",
  6774. "homepage": "https://symfony.com/contributors"
  6775. }
  6776. ],
  6777. "description": "Provides tools that allow your application components to communicate with each other by dispatching events and listening to them",
  6778. "homepage": "https://symfony.com",
  6779. "support": {
  6780. "source": "https://github.com/symfony/event-dispatcher/tree/v6.4.3"
  6781. },
  6782. "funding": [
  6783. {
  6784. "url": "https://symfony.com/sponsor",
  6785. "type": "custom"
  6786. },
  6787. {
  6788. "url": "https://github.com/fabpot",
  6789. "type": "github"
  6790. },
  6791. {
  6792. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6793. "type": "tidelift"
  6794. }
  6795. ],
  6796. "time": "2024-01-23T14:51:35+00:00"
  6797. },
  6798. {
  6799. "name": "symfony/event-dispatcher-contracts",
  6800. "version": "v3.4.0",
  6801. "source": {
  6802. "type": "git",
  6803. "url": "https://github.com/symfony/event-dispatcher-contracts.git",
  6804. "reference": "a76aed96a42d2b521153fb382d418e30d18b59df"
  6805. },
  6806. "dist": {
  6807. "type": "zip",
  6808. "url": "https://api.github.com/repos/symfony/event-dispatcher-contracts/zipball/a76aed96a42d2b521153fb382d418e30d18b59df",
  6809. "reference": "a76aed96a42d2b521153fb382d418e30d18b59df",
  6810. "shasum": ""
  6811. },
  6812. "require": {
  6813. "php": ">=8.1",
  6814. "psr/event-dispatcher": "^1"
  6815. },
  6816. "type": "library",
  6817. "extra": {
  6818. "branch-alias": {
  6819. "dev-main": "3.4-dev"
  6820. },
  6821. "thanks": {
  6822. "name": "symfony/contracts",
  6823. "url": "https://github.com/symfony/contracts"
  6824. }
  6825. },
  6826. "autoload": {
  6827. "psr-4": {
  6828. "Symfony\\Contracts\\EventDispatcher\\": ""
  6829. }
  6830. },
  6831. "notification-url": "https://packagist.org/downloads/",
  6832. "license": [
  6833. "MIT"
  6834. ],
  6835. "authors": [
  6836. {
  6837. "name": "Nicolas Grekas",
  6838. "email": "p@tchwork.com"
  6839. },
  6840. {
  6841. "name": "Symfony Community",
  6842. "homepage": "https://symfony.com/contributors"
  6843. }
  6844. ],
  6845. "description": "Generic abstractions related to dispatching event",
  6846. "homepage": "https://symfony.com",
  6847. "keywords": [
  6848. "abstractions",
  6849. "contracts",
  6850. "decoupling",
  6851. "interfaces",
  6852. "interoperability",
  6853. "standards"
  6854. ],
  6855. "support": {
  6856. "source": "https://github.com/symfony/event-dispatcher-contracts/tree/v3.4.0"
  6857. },
  6858. "funding": [
  6859. {
  6860. "url": "https://symfony.com/sponsor",
  6861. "type": "custom"
  6862. },
  6863. {
  6864. "url": "https://github.com/fabpot",
  6865. "type": "github"
  6866. },
  6867. {
  6868. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6869. "type": "tidelift"
  6870. }
  6871. ],
  6872. "time": "2023-05-23T14:45:45+00:00"
  6873. },
  6874. {
  6875. "name": "symfony/filesystem",
  6876. "version": "v6.4.3",
  6877. "source": {
  6878. "type": "git",
  6879. "url": "https://github.com/symfony/filesystem.git",
  6880. "reference": "7f3b1755eb49297a0827a7575d5d2b2fd11cc9fb"
  6881. },
  6882. "dist": {
  6883. "type": "zip",
  6884. "url": "https://api.github.com/repos/symfony/filesystem/zipball/7f3b1755eb49297a0827a7575d5d2b2fd11cc9fb",
  6885. "reference": "7f3b1755eb49297a0827a7575d5d2b2fd11cc9fb",
  6886. "shasum": ""
  6887. },
  6888. "require": {
  6889. "php": ">=8.1",
  6890. "symfony/polyfill-ctype": "~1.8",
  6891. "symfony/polyfill-mbstring": "~1.8"
  6892. },
  6893. "type": "library",
  6894. "autoload": {
  6895. "psr-4": {
  6896. "Symfony\\Component\\Filesystem\\": ""
  6897. },
  6898. "exclude-from-classmap": [
  6899. "/Tests/"
  6900. ]
  6901. },
  6902. "notification-url": "https://packagist.org/downloads/",
  6903. "license": [
  6904. "MIT"
  6905. ],
  6906. "authors": [
  6907. {
  6908. "name": "Fabien Potencier",
  6909. "email": "fabien@symfony.com"
  6910. },
  6911. {
  6912. "name": "Symfony Community",
  6913. "homepage": "https://symfony.com/contributors"
  6914. }
  6915. ],
  6916. "description": "Provides basic utilities for the filesystem",
  6917. "homepage": "https://symfony.com",
  6918. "support": {
  6919. "source": "https://github.com/symfony/filesystem/tree/v6.4.3"
  6920. },
  6921. "funding": [
  6922. {
  6923. "url": "https://symfony.com/sponsor",
  6924. "type": "custom"
  6925. },
  6926. {
  6927. "url": "https://github.com/fabpot",
  6928. "type": "github"
  6929. },
  6930. {
  6931. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6932. "type": "tidelift"
  6933. }
  6934. ],
  6935. "time": "2024-01-23T14:51:35+00:00"
  6936. },
  6937. {
  6938. "name": "symfony/finder",
  6939. "version": "v6.4.0",
  6940. "source": {
  6941. "type": "git",
  6942. "url": "https://github.com/symfony/finder.git",
  6943. "reference": "11d736e97f116ac375a81f96e662911a34cd50ce"
  6944. },
  6945. "dist": {
  6946. "type": "zip",
  6947. "url": "https://api.github.com/repos/symfony/finder/zipball/11d736e97f116ac375a81f96e662911a34cd50ce",
  6948. "reference": "11d736e97f116ac375a81f96e662911a34cd50ce",
  6949. "shasum": ""
  6950. },
  6951. "require": {
  6952. "php": ">=8.1"
  6953. },
  6954. "require-dev": {
  6955. "symfony/filesystem": "^6.0|^7.0"
  6956. },
  6957. "type": "library",
  6958. "autoload": {
  6959. "psr-4": {
  6960. "Symfony\\Component\\Finder\\": ""
  6961. },
  6962. "exclude-from-classmap": [
  6963. "/Tests/"
  6964. ]
  6965. },
  6966. "notification-url": "https://packagist.org/downloads/",
  6967. "license": [
  6968. "MIT"
  6969. ],
  6970. "authors": [
  6971. {
  6972. "name": "Fabien Potencier",
  6973. "email": "fabien@symfony.com"
  6974. },
  6975. {
  6976. "name": "Symfony Community",
  6977. "homepage": "https://symfony.com/contributors"
  6978. }
  6979. ],
  6980. "description": "Finds files and directories via an intuitive fluent interface",
  6981. "homepage": "https://symfony.com",
  6982. "support": {
  6983. "source": "https://github.com/symfony/finder/tree/v6.4.0"
  6984. },
  6985. "funding": [
  6986. {
  6987. "url": "https://symfony.com/sponsor",
  6988. "type": "custom"
  6989. },
  6990. {
  6991. "url": "https://github.com/fabpot",
  6992. "type": "github"
  6993. },
  6994. {
  6995. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6996. "type": "tidelift"
  6997. }
  6998. ],
  6999. "time": "2023-10-31T17:30:12+00:00"
  7000. },
  7001. {
  7002. "name": "symfony/http-foundation",
  7003. "version": "v6.4.4",
  7004. "source": {
  7005. "type": "git",
  7006. "url": "https://github.com/symfony/http-foundation.git",
  7007. "reference": "ebc713bc6e6f4b53f46539fc158be85dfcd77304"
  7008. },
  7009. "dist": {
  7010. "type": "zip",
  7011. "url": "https://api.github.com/repos/symfony/http-foundation/zipball/ebc713bc6e6f4b53f46539fc158be85dfcd77304",
  7012. "reference": "ebc713bc6e6f4b53f46539fc158be85dfcd77304",
  7013. "shasum": ""
  7014. },
  7015. "require": {
  7016. "php": ">=8.1",
  7017. "symfony/deprecation-contracts": "^2.5|^3",
  7018. "symfony/polyfill-mbstring": "~1.1",
  7019. "symfony/polyfill-php83": "^1.27"
  7020. },
  7021. "conflict": {
  7022. "symfony/cache": "<6.3"
  7023. },
  7024. "require-dev": {
  7025. "doctrine/dbal": "^2.13.1|^3|^4",
  7026. "predis/predis": "^1.1|^2.0",
  7027. "symfony/cache": "^6.3|^7.0",
  7028. "symfony/dependency-injection": "^5.4|^6.0|^7.0",
  7029. "symfony/expression-language": "^5.4|^6.0|^7.0",
  7030. "symfony/http-kernel": "^5.4.12|^6.0.12|^6.1.4|^7.0",
  7031. "symfony/mime": "^5.4|^6.0|^7.0",
  7032. "symfony/rate-limiter": "^5.4|^6.0|^7.0"
  7033. },
  7034. "type": "library",
  7035. "autoload": {
  7036. "psr-4": {
  7037. "Symfony\\Component\\HttpFoundation\\": ""
  7038. },
  7039. "exclude-from-classmap": [
  7040. "/Tests/"
  7041. ]
  7042. },
  7043. "notification-url": "https://packagist.org/downloads/",
  7044. "license": [
  7045. "MIT"
  7046. ],
  7047. "authors": [
  7048. {
  7049. "name": "Fabien Potencier",
  7050. "email": "fabien@symfony.com"
  7051. },
  7052. {
  7053. "name": "Symfony Community",
  7054. "homepage": "https://symfony.com/contributors"
  7055. }
  7056. ],
  7057. "description": "Defines an object-oriented layer for the HTTP specification",
  7058. "homepage": "https://symfony.com",
  7059. "support": {
  7060. "source": "https://github.com/symfony/http-foundation/tree/v6.4.4"
  7061. },
  7062. "funding": [
  7063. {
  7064. "url": "https://symfony.com/sponsor",
  7065. "type": "custom"
  7066. },
  7067. {
  7068. "url": "https://github.com/fabpot",
  7069. "type": "github"
  7070. },
  7071. {
  7072. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7073. "type": "tidelift"
  7074. }
  7075. ],
  7076. "time": "2024-02-08T15:01:18+00:00"
  7077. },
  7078. {
  7079. "name": "symfony/http-kernel",
  7080. "version": "v6.4.4",
  7081. "source": {
  7082. "type": "git",
  7083. "url": "https://github.com/symfony/http-kernel.git",
  7084. "reference": "7a186f64a7f02787c04e8476538624d6aa888e42"
  7085. },
  7086. "dist": {
  7087. "type": "zip",
  7088. "url": "https://api.github.com/repos/symfony/http-kernel/zipball/7a186f64a7f02787c04e8476538624d6aa888e42",
  7089. "reference": "7a186f64a7f02787c04e8476538624d6aa888e42",
  7090. "shasum": ""
  7091. },
  7092. "require": {
  7093. "php": ">=8.1",
  7094. "psr/log": "^1|^2|^3",
  7095. "symfony/deprecation-contracts": "^2.5|^3",
  7096. "symfony/error-handler": "^6.4|^7.0",
  7097. "symfony/event-dispatcher": "^5.4|^6.0|^7.0",
  7098. "symfony/http-foundation": "^6.4|^7.0",
  7099. "symfony/polyfill-ctype": "^1.8"
  7100. },
  7101. "conflict": {
  7102. "symfony/browser-kit": "<5.4",
  7103. "symfony/cache": "<5.4",
  7104. "symfony/config": "<6.1",
  7105. "symfony/console": "<5.4",
  7106. "symfony/dependency-injection": "<6.4",
  7107. "symfony/doctrine-bridge": "<5.4",
  7108. "symfony/form": "<5.4",
  7109. "symfony/http-client": "<5.4",
  7110. "symfony/http-client-contracts": "<2.5",
  7111. "symfony/mailer": "<5.4",
  7112. "symfony/messenger": "<5.4",
  7113. "symfony/translation": "<5.4",
  7114. "symfony/translation-contracts": "<2.5",
  7115. "symfony/twig-bridge": "<5.4",
  7116. "symfony/validator": "<6.4",
  7117. "symfony/var-dumper": "<6.3",
  7118. "twig/twig": "<2.13"
  7119. },
  7120. "provide": {
  7121. "psr/log-implementation": "1.0|2.0|3.0"
  7122. },
  7123. "require-dev": {
  7124. "psr/cache": "^1.0|^2.0|^3.0",
  7125. "symfony/browser-kit": "^5.4|^6.0|^7.0",
  7126. "symfony/clock": "^6.2|^7.0",
  7127. "symfony/config": "^6.1|^7.0",
  7128. "symfony/console": "^5.4|^6.0|^7.0",
  7129. "symfony/css-selector": "^5.4|^6.0|^7.0",
  7130. "symfony/dependency-injection": "^6.4|^7.0",
  7131. "symfony/dom-crawler": "^5.4|^6.0|^7.0",
  7132. "symfony/expression-language": "^5.4|^6.0|^7.0",
  7133. "symfony/finder": "^5.4|^6.0|^7.0",
  7134. "symfony/http-client-contracts": "^2.5|^3",
  7135. "symfony/process": "^5.4|^6.0|^7.0",
  7136. "symfony/property-access": "^5.4.5|^6.0.5|^7.0",
  7137. "symfony/routing": "^5.4|^6.0|^7.0",
  7138. "symfony/serializer": "^6.4.4|^7.0.4",
  7139. "symfony/stopwatch": "^5.4|^6.0|^7.0",
  7140. "symfony/translation": "^5.4|^6.0|^7.0",
  7141. "symfony/translation-contracts": "^2.5|^3",
  7142. "symfony/uid": "^5.4|^6.0|^7.0",
  7143. "symfony/validator": "^6.4|^7.0",
  7144. "symfony/var-exporter": "^6.2|^7.0",
  7145. "twig/twig": "^2.13|^3.0.4"
  7146. },
  7147. "type": "library",
  7148. "autoload": {
  7149. "psr-4": {
  7150. "Symfony\\Component\\HttpKernel\\": ""
  7151. },
  7152. "exclude-from-classmap": [
  7153. "/Tests/"
  7154. ]
  7155. },
  7156. "notification-url": "https://packagist.org/downloads/",
  7157. "license": [
  7158. "MIT"
  7159. ],
  7160. "authors": [
  7161. {
  7162. "name": "Fabien Potencier",
  7163. "email": "fabien@symfony.com"
  7164. },
  7165. {
  7166. "name": "Symfony Community",
  7167. "homepage": "https://symfony.com/contributors"
  7168. }
  7169. ],
  7170. "description": "Provides a structured process for converting a Request into a Response",
  7171. "homepage": "https://symfony.com",
  7172. "support": {
  7173. "source": "https://github.com/symfony/http-kernel/tree/v6.4.4"
  7174. },
  7175. "funding": [
  7176. {
  7177. "url": "https://symfony.com/sponsor",
  7178. "type": "custom"
  7179. },
  7180. {
  7181. "url": "https://github.com/fabpot",
  7182. "type": "github"
  7183. },
  7184. {
  7185. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7186. "type": "tidelift"
  7187. }
  7188. ],
  7189. "time": "2024-02-27T06:32:13+00:00"
  7190. },
  7191. {
  7192. "name": "symfony/mailer",
  7193. "version": "v6.4.4",
  7194. "source": {
  7195. "type": "git",
  7196. "url": "https://github.com/symfony/mailer.git",
  7197. "reference": "791c5d31a8204cf3db0c66faab70282307f4376b"
  7198. },
  7199. "dist": {
  7200. "type": "zip",
  7201. "url": "https://api.github.com/repos/symfony/mailer/zipball/791c5d31a8204cf3db0c66faab70282307f4376b",
  7202. "reference": "791c5d31a8204cf3db0c66faab70282307f4376b",
  7203. "shasum": ""
  7204. },
  7205. "require": {
  7206. "egulias/email-validator": "^2.1.10|^3|^4",
  7207. "php": ">=8.1",
  7208. "psr/event-dispatcher": "^1",
  7209. "psr/log": "^1|^2|^3",
  7210. "symfony/event-dispatcher": "^5.4|^6.0|^7.0",
  7211. "symfony/mime": "^6.2|^7.0",
  7212. "symfony/service-contracts": "^2.5|^3"
  7213. },
  7214. "conflict": {
  7215. "symfony/http-client-contracts": "<2.5",
  7216. "symfony/http-kernel": "<5.4",
  7217. "symfony/messenger": "<6.2",
  7218. "symfony/mime": "<6.2",
  7219. "symfony/twig-bridge": "<6.2.1"
  7220. },
  7221. "require-dev": {
  7222. "symfony/console": "^5.4|^6.0|^7.0",
  7223. "symfony/http-client": "^5.4|^6.0|^7.0",
  7224. "symfony/messenger": "^6.2|^7.0",
  7225. "symfony/twig-bridge": "^6.2|^7.0"
  7226. },
  7227. "type": "library",
  7228. "autoload": {
  7229. "psr-4": {
  7230. "Symfony\\Component\\Mailer\\": ""
  7231. },
  7232. "exclude-from-classmap": [
  7233. "/Tests/"
  7234. ]
  7235. },
  7236. "notification-url": "https://packagist.org/downloads/",
  7237. "license": [
  7238. "MIT"
  7239. ],
  7240. "authors": [
  7241. {
  7242. "name": "Fabien Potencier",
  7243. "email": "fabien@symfony.com"
  7244. },
  7245. {
  7246. "name": "Symfony Community",
  7247. "homepage": "https://symfony.com/contributors"
  7248. }
  7249. ],
  7250. "description": "Helps sending emails",
  7251. "homepage": "https://symfony.com",
  7252. "support": {
  7253. "source": "https://github.com/symfony/mailer/tree/v6.4.4"
  7254. },
  7255. "funding": [
  7256. {
  7257. "url": "https://symfony.com/sponsor",
  7258. "type": "custom"
  7259. },
  7260. {
  7261. "url": "https://github.com/fabpot",
  7262. "type": "github"
  7263. },
  7264. {
  7265. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7266. "type": "tidelift"
  7267. }
  7268. ],
  7269. "time": "2024-02-03T21:33:47+00:00"
  7270. },
  7271. {
  7272. "name": "symfony/mime",
  7273. "version": "v6.4.3",
  7274. "source": {
  7275. "type": "git",
  7276. "url": "https://github.com/symfony/mime.git",
  7277. "reference": "5017e0a9398c77090b7694be46f20eb796262a34"
  7278. },
  7279. "dist": {
  7280. "type": "zip",
  7281. "url": "https://api.github.com/repos/symfony/mime/zipball/5017e0a9398c77090b7694be46f20eb796262a34",
  7282. "reference": "5017e0a9398c77090b7694be46f20eb796262a34",
  7283. "shasum": ""
  7284. },
  7285. "require": {
  7286. "php": ">=8.1",
  7287. "symfony/deprecation-contracts": "^2.5|^3",
  7288. "symfony/polyfill-intl-idn": "^1.10",
  7289. "symfony/polyfill-mbstring": "^1.0"
  7290. },
  7291. "conflict": {
  7292. "egulias/email-validator": "~3.0.0",
  7293. "phpdocumentor/reflection-docblock": "<3.2.2",
  7294. "phpdocumentor/type-resolver": "<1.4.0",
  7295. "symfony/mailer": "<5.4",
  7296. "symfony/serializer": "<6.3.2"
  7297. },
  7298. "require-dev": {
  7299. "egulias/email-validator": "^2.1.10|^3.1|^4",
  7300. "league/html-to-markdown": "^5.0",
  7301. "phpdocumentor/reflection-docblock": "^3.0|^4.0|^5.0",
  7302. "symfony/dependency-injection": "^5.4|^6.0|^7.0",
  7303. "symfony/property-access": "^5.4|^6.0|^7.0",
  7304. "symfony/property-info": "^5.4|^6.0|^7.0",
  7305. "symfony/serializer": "^6.3.2|^7.0"
  7306. },
  7307. "type": "library",
  7308. "autoload": {
  7309. "psr-4": {
  7310. "Symfony\\Component\\Mime\\": ""
  7311. },
  7312. "exclude-from-classmap": [
  7313. "/Tests/"
  7314. ]
  7315. },
  7316. "notification-url": "https://packagist.org/downloads/",
  7317. "license": [
  7318. "MIT"
  7319. ],
  7320. "authors": [
  7321. {
  7322. "name": "Fabien Potencier",
  7323. "email": "fabien@symfony.com"
  7324. },
  7325. {
  7326. "name": "Symfony Community",
  7327. "homepage": "https://symfony.com/contributors"
  7328. }
  7329. ],
  7330. "description": "Allows manipulating MIME messages",
  7331. "homepage": "https://symfony.com",
  7332. "keywords": [
  7333. "mime",
  7334. "mime-type"
  7335. ],
  7336. "support": {
  7337. "source": "https://github.com/symfony/mime/tree/v6.4.3"
  7338. },
  7339. "funding": [
  7340. {
  7341. "url": "https://symfony.com/sponsor",
  7342. "type": "custom"
  7343. },
  7344. {
  7345. "url": "https://github.com/fabpot",
  7346. "type": "github"
  7347. },
  7348. {
  7349. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7350. "type": "tidelift"
  7351. }
  7352. ],
  7353. "time": "2024-01-30T08:32:12+00:00"
  7354. },
  7355. {
  7356. "name": "symfony/polyfill-ctype",
  7357. "version": "v1.28.0",
  7358. "source": {
  7359. "type": "git",
  7360. "url": "https://github.com/symfony/polyfill-ctype.git",
  7361. "reference": "ea208ce43cbb04af6867b4fdddb1bdbf84cc28cb"
  7362. },
  7363. "dist": {
  7364. "type": "zip",
  7365. "url": "https://api.github.com/repos/symfony/polyfill-ctype/zipball/ea208ce43cbb04af6867b4fdddb1bdbf84cc28cb",
  7366. "reference": "ea208ce43cbb04af6867b4fdddb1bdbf84cc28cb",
  7367. "shasum": ""
  7368. },
  7369. "require": {
  7370. "php": ">=7.1"
  7371. },
  7372. "provide": {
  7373. "ext-ctype": "*"
  7374. },
  7375. "suggest": {
  7376. "ext-ctype": "For best performance"
  7377. },
  7378. "type": "library",
  7379. "extra": {
  7380. "branch-alias": {
  7381. "dev-main": "1.28-dev"
  7382. },
  7383. "thanks": {
  7384. "name": "symfony/polyfill",
  7385. "url": "https://github.com/symfony/polyfill"
  7386. }
  7387. },
  7388. "autoload": {
  7389. "files": [
  7390. "bootstrap.php"
  7391. ],
  7392. "psr-4": {
  7393. "Symfony\\Polyfill\\Ctype\\": ""
  7394. }
  7395. },
  7396. "notification-url": "https://packagist.org/downloads/",
  7397. "license": [
  7398. "MIT"
  7399. ],
  7400. "authors": [
  7401. {
  7402. "name": "Gert de Pagter",
  7403. "email": "BackEndTea@gmail.com"
  7404. },
  7405. {
  7406. "name": "Symfony Community",
  7407. "homepage": "https://symfony.com/contributors"
  7408. }
  7409. ],
  7410. "description": "Symfony polyfill for ctype functions",
  7411. "homepage": "https://symfony.com",
  7412. "keywords": [
  7413. "compatibility",
  7414. "ctype",
  7415. "polyfill",
  7416. "portable"
  7417. ],
  7418. "support": {
  7419. "source": "https://github.com/symfony/polyfill-ctype/tree/v1.28.0"
  7420. },
  7421. "funding": [
  7422. {
  7423. "url": "https://symfony.com/sponsor",
  7424. "type": "custom"
  7425. },
  7426. {
  7427. "url": "https://github.com/fabpot",
  7428. "type": "github"
  7429. },
  7430. {
  7431. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7432. "type": "tidelift"
  7433. }
  7434. ],
  7435. "time": "2023-01-26T09:26:14+00:00"
  7436. },
  7437. {
  7438. "name": "symfony/polyfill-iconv",
  7439. "version": "v1.28.0",
  7440. "source": {
  7441. "type": "git",
  7442. "url": "https://github.com/symfony/polyfill-iconv.git",
  7443. "reference": "6de50471469b8c9afc38164452ab2b6170ee71c1"
  7444. },
  7445. "dist": {
  7446. "type": "zip",
  7447. "url": "https://api.github.com/repos/symfony/polyfill-iconv/zipball/6de50471469b8c9afc38164452ab2b6170ee71c1",
  7448. "reference": "6de50471469b8c9afc38164452ab2b6170ee71c1",
  7449. "shasum": ""
  7450. },
  7451. "require": {
  7452. "php": ">=7.1"
  7453. },
  7454. "provide": {
  7455. "ext-iconv": "*"
  7456. },
  7457. "suggest": {
  7458. "ext-iconv": "For best performance"
  7459. },
  7460. "type": "library",
  7461. "extra": {
  7462. "branch-alias": {
  7463. "dev-main": "1.28-dev"
  7464. },
  7465. "thanks": {
  7466. "name": "symfony/polyfill",
  7467. "url": "https://github.com/symfony/polyfill"
  7468. }
  7469. },
  7470. "autoload": {
  7471. "files": [
  7472. "bootstrap.php"
  7473. ],
  7474. "psr-4": {
  7475. "Symfony\\Polyfill\\Iconv\\": ""
  7476. }
  7477. },
  7478. "notification-url": "https://packagist.org/downloads/",
  7479. "license": [
  7480. "MIT"
  7481. ],
  7482. "authors": [
  7483. {
  7484. "name": "Nicolas Grekas",
  7485. "email": "p@tchwork.com"
  7486. },
  7487. {
  7488. "name": "Symfony Community",
  7489. "homepage": "https://symfony.com/contributors"
  7490. }
  7491. ],
  7492. "description": "Symfony polyfill for the Iconv extension",
  7493. "homepage": "https://symfony.com",
  7494. "keywords": [
  7495. "compatibility",
  7496. "iconv",
  7497. "polyfill",
  7498. "portable",
  7499. "shim"
  7500. ],
  7501. "support": {
  7502. "source": "https://github.com/symfony/polyfill-iconv/tree/v1.28.0"
  7503. },
  7504. "funding": [
  7505. {
  7506. "url": "https://symfony.com/sponsor",
  7507. "type": "custom"
  7508. },
  7509. {
  7510. "url": "https://github.com/fabpot",
  7511. "type": "github"
  7512. },
  7513. {
  7514. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7515. "type": "tidelift"
  7516. }
  7517. ],
  7518. "time": "2023-01-26T09:26:14+00:00"
  7519. },
  7520. {
  7521. "name": "symfony/polyfill-intl-grapheme",
  7522. "version": "v1.28.0",
  7523. "source": {
  7524. "type": "git",
  7525. "url": "https://github.com/symfony/polyfill-intl-grapheme.git",
  7526. "reference": "875e90aeea2777b6f135677f618529449334a612"
  7527. },
  7528. "dist": {
  7529. "type": "zip",
  7530. "url": "https://api.github.com/repos/symfony/polyfill-intl-grapheme/zipball/875e90aeea2777b6f135677f618529449334a612",
  7531. "reference": "875e90aeea2777b6f135677f618529449334a612",
  7532. "shasum": ""
  7533. },
  7534. "require": {
  7535. "php": ">=7.1"
  7536. },
  7537. "suggest": {
  7538. "ext-intl": "For best performance"
  7539. },
  7540. "type": "library",
  7541. "extra": {
  7542. "branch-alias": {
  7543. "dev-main": "1.28-dev"
  7544. },
  7545. "thanks": {
  7546. "name": "symfony/polyfill",
  7547. "url": "https://github.com/symfony/polyfill"
  7548. }
  7549. },
  7550. "autoload": {
  7551. "files": [
  7552. "bootstrap.php"
  7553. ],
  7554. "psr-4": {
  7555. "Symfony\\Polyfill\\Intl\\Grapheme\\": ""
  7556. }
  7557. },
  7558. "notification-url": "https://packagist.org/downloads/",
  7559. "license": [
  7560. "MIT"
  7561. ],
  7562. "authors": [
  7563. {
  7564. "name": "Nicolas Grekas",
  7565. "email": "p@tchwork.com"
  7566. },
  7567. {
  7568. "name": "Symfony Community",
  7569. "homepage": "https://symfony.com/contributors"
  7570. }
  7571. ],
  7572. "description": "Symfony polyfill for intl's grapheme_* functions",
  7573. "homepage": "https://symfony.com",
  7574. "keywords": [
  7575. "compatibility",
  7576. "grapheme",
  7577. "intl",
  7578. "polyfill",
  7579. "portable",
  7580. "shim"
  7581. ],
  7582. "support": {
  7583. "source": "https://github.com/symfony/polyfill-intl-grapheme/tree/v1.28.0"
  7584. },
  7585. "funding": [
  7586. {
  7587. "url": "https://symfony.com/sponsor",
  7588. "type": "custom"
  7589. },
  7590. {
  7591. "url": "https://github.com/fabpot",
  7592. "type": "github"
  7593. },
  7594. {
  7595. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7596. "type": "tidelift"
  7597. }
  7598. ],
  7599. "time": "2023-01-26T09:26:14+00:00"
  7600. },
  7601. {
  7602. "name": "symfony/polyfill-intl-idn",
  7603. "version": "v1.28.0",
  7604. "source": {
  7605. "type": "git",
  7606. "url": "https://github.com/symfony/polyfill-intl-idn.git",
  7607. "reference": "ecaafce9f77234a6a449d29e49267ba10499116d"
  7608. },
  7609. "dist": {
  7610. "type": "zip",
  7611. "url": "https://api.github.com/repos/symfony/polyfill-intl-idn/zipball/ecaafce9f77234a6a449d29e49267ba10499116d",
  7612. "reference": "ecaafce9f77234a6a449d29e49267ba10499116d",
  7613. "shasum": ""
  7614. },
  7615. "require": {
  7616. "php": ">=7.1",
  7617. "symfony/polyfill-intl-normalizer": "^1.10",
  7618. "symfony/polyfill-php72": "^1.10"
  7619. },
  7620. "suggest": {
  7621. "ext-intl": "For best performance"
  7622. },
  7623. "type": "library",
  7624. "extra": {
  7625. "branch-alias": {
  7626. "dev-main": "1.28-dev"
  7627. },
  7628. "thanks": {
  7629. "name": "symfony/polyfill",
  7630. "url": "https://github.com/symfony/polyfill"
  7631. }
  7632. },
  7633. "autoload": {
  7634. "files": [
  7635. "bootstrap.php"
  7636. ],
  7637. "psr-4": {
  7638. "Symfony\\Polyfill\\Intl\\Idn\\": ""
  7639. }
  7640. },
  7641. "notification-url": "https://packagist.org/downloads/",
  7642. "license": [
  7643. "MIT"
  7644. ],
  7645. "authors": [
  7646. {
  7647. "name": "Laurent Bassin",
  7648. "email": "laurent@bassin.info"
  7649. },
  7650. {
  7651. "name": "Trevor Rowbotham",
  7652. "email": "trevor.rowbotham@pm.me"
  7653. },
  7654. {
  7655. "name": "Symfony Community",
  7656. "homepage": "https://symfony.com/contributors"
  7657. }
  7658. ],
  7659. "description": "Symfony polyfill for intl's idn_to_ascii and idn_to_utf8 functions",
  7660. "homepage": "https://symfony.com",
  7661. "keywords": [
  7662. "compatibility",
  7663. "idn",
  7664. "intl",
  7665. "polyfill",
  7666. "portable",
  7667. "shim"
  7668. ],
  7669. "support": {
  7670. "source": "https://github.com/symfony/polyfill-intl-idn/tree/v1.28.0"
  7671. },
  7672. "funding": [
  7673. {
  7674. "url": "https://symfony.com/sponsor",
  7675. "type": "custom"
  7676. },
  7677. {
  7678. "url": "https://github.com/fabpot",
  7679. "type": "github"
  7680. },
  7681. {
  7682. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7683. "type": "tidelift"
  7684. }
  7685. ],
  7686. "time": "2023-01-26T09:30:37+00:00"
  7687. },
  7688. {
  7689. "name": "symfony/polyfill-intl-normalizer",
  7690. "version": "v1.28.0",
  7691. "source": {
  7692. "type": "git",
  7693. "url": "https://github.com/symfony/polyfill-intl-normalizer.git",
  7694. "reference": "8c4ad05dd0120b6a53c1ca374dca2ad0a1c4ed92"
  7695. },
  7696. "dist": {
  7697. "type": "zip",
  7698. "url": "https://api.github.com/repos/symfony/polyfill-intl-normalizer/zipball/8c4ad05dd0120b6a53c1ca374dca2ad0a1c4ed92",
  7699. "reference": "8c4ad05dd0120b6a53c1ca374dca2ad0a1c4ed92",
  7700. "shasum": ""
  7701. },
  7702. "require": {
  7703. "php": ">=7.1"
  7704. },
  7705. "suggest": {
  7706. "ext-intl": "For best performance"
  7707. },
  7708. "type": "library",
  7709. "extra": {
  7710. "branch-alias": {
  7711. "dev-main": "1.28-dev"
  7712. },
  7713. "thanks": {
  7714. "name": "symfony/polyfill",
  7715. "url": "https://github.com/symfony/polyfill"
  7716. }
  7717. },
  7718. "autoload": {
  7719. "files": [
  7720. "bootstrap.php"
  7721. ],
  7722. "psr-4": {
  7723. "Symfony\\Polyfill\\Intl\\Normalizer\\": ""
  7724. },
  7725. "classmap": [
  7726. "Resources/stubs"
  7727. ]
  7728. },
  7729. "notification-url": "https://packagist.org/downloads/",
  7730. "license": [
  7731. "MIT"
  7732. ],
  7733. "authors": [
  7734. {
  7735. "name": "Nicolas Grekas",
  7736. "email": "p@tchwork.com"
  7737. },
  7738. {
  7739. "name": "Symfony Community",
  7740. "homepage": "https://symfony.com/contributors"
  7741. }
  7742. ],
  7743. "description": "Symfony polyfill for intl's Normalizer class and related functions",
  7744. "homepage": "https://symfony.com",
  7745. "keywords": [
  7746. "compatibility",
  7747. "intl",
  7748. "normalizer",
  7749. "polyfill",
  7750. "portable",
  7751. "shim"
  7752. ],
  7753. "support": {
  7754. "source": "https://github.com/symfony/polyfill-intl-normalizer/tree/v1.28.0"
  7755. },
  7756. "funding": [
  7757. {
  7758. "url": "https://symfony.com/sponsor",
  7759. "type": "custom"
  7760. },
  7761. {
  7762. "url": "https://github.com/fabpot",
  7763. "type": "github"
  7764. },
  7765. {
  7766. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7767. "type": "tidelift"
  7768. }
  7769. ],
  7770. "time": "2023-01-26T09:26:14+00:00"
  7771. },
  7772. {
  7773. "name": "symfony/polyfill-mbstring",
  7774. "version": "v1.28.0",
  7775. "source": {
  7776. "type": "git",
  7777. "url": "https://github.com/symfony/polyfill-mbstring.git",
  7778. "reference": "42292d99c55abe617799667f454222c54c60e229"
  7779. },
  7780. "dist": {
  7781. "type": "zip",
  7782. "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/42292d99c55abe617799667f454222c54c60e229",
  7783. "reference": "42292d99c55abe617799667f454222c54c60e229",
  7784. "shasum": ""
  7785. },
  7786. "require": {
  7787. "php": ">=7.1"
  7788. },
  7789. "provide": {
  7790. "ext-mbstring": "*"
  7791. },
  7792. "suggest": {
  7793. "ext-mbstring": "For best performance"
  7794. },
  7795. "type": "library",
  7796. "extra": {
  7797. "branch-alias": {
  7798. "dev-main": "1.28-dev"
  7799. },
  7800. "thanks": {
  7801. "name": "symfony/polyfill",
  7802. "url": "https://github.com/symfony/polyfill"
  7803. }
  7804. },
  7805. "autoload": {
  7806. "files": [
  7807. "bootstrap.php"
  7808. ],
  7809. "psr-4": {
  7810. "Symfony\\Polyfill\\Mbstring\\": ""
  7811. }
  7812. },
  7813. "notification-url": "https://packagist.org/downloads/",
  7814. "license": [
  7815. "MIT"
  7816. ],
  7817. "authors": [
  7818. {
  7819. "name": "Nicolas Grekas",
  7820. "email": "p@tchwork.com"
  7821. },
  7822. {
  7823. "name": "Symfony Community",
  7824. "homepage": "https://symfony.com/contributors"
  7825. }
  7826. ],
  7827. "description": "Symfony polyfill for the Mbstring extension",
  7828. "homepage": "https://symfony.com",
  7829. "keywords": [
  7830. "compatibility",
  7831. "mbstring",
  7832. "polyfill",
  7833. "portable",
  7834. "shim"
  7835. ],
  7836. "support": {
  7837. "source": "https://github.com/symfony/polyfill-mbstring/tree/v1.28.0"
  7838. },
  7839. "funding": [
  7840. {
  7841. "url": "https://symfony.com/sponsor",
  7842. "type": "custom"
  7843. },
  7844. {
  7845. "url": "https://github.com/fabpot",
  7846. "type": "github"
  7847. },
  7848. {
  7849. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7850. "type": "tidelift"
  7851. }
  7852. ],
  7853. "time": "2023-07-28T09:04:16+00:00"
  7854. },
  7855. {
  7856. "name": "symfony/polyfill-php72",
  7857. "version": "v1.29.0",
  7858. "source": {
  7859. "type": "git",
  7860. "url": "https://github.com/symfony/polyfill-php72.git",
  7861. "reference": "861391a8da9a04cbad2d232ddd9e4893220d6e25"
  7862. },
  7863. "dist": {
  7864. "type": "zip",
  7865. "url": "https://api.github.com/repos/symfony/polyfill-php72/zipball/861391a8da9a04cbad2d232ddd9e4893220d6e25",
  7866. "reference": "861391a8da9a04cbad2d232ddd9e4893220d6e25",
  7867. "shasum": ""
  7868. },
  7869. "require": {
  7870. "php": ">=7.1"
  7871. },
  7872. "type": "library",
  7873. "extra": {
  7874. "thanks": {
  7875. "name": "symfony/polyfill",
  7876. "url": "https://github.com/symfony/polyfill"
  7877. }
  7878. },
  7879. "autoload": {
  7880. "files": [
  7881. "bootstrap.php"
  7882. ],
  7883. "psr-4": {
  7884. "Symfony\\Polyfill\\Php72\\": ""
  7885. }
  7886. },
  7887. "notification-url": "https://packagist.org/downloads/",
  7888. "license": [
  7889. "MIT"
  7890. ],
  7891. "authors": [
  7892. {
  7893. "name": "Nicolas Grekas",
  7894. "email": "p@tchwork.com"
  7895. },
  7896. {
  7897. "name": "Symfony Community",
  7898. "homepage": "https://symfony.com/contributors"
  7899. }
  7900. ],
  7901. "description": "Symfony polyfill backporting some PHP 7.2+ features to lower PHP versions",
  7902. "homepage": "https://symfony.com",
  7903. "keywords": [
  7904. "compatibility",
  7905. "polyfill",
  7906. "portable",
  7907. "shim"
  7908. ],
  7909. "support": {
  7910. "source": "https://github.com/symfony/polyfill-php72/tree/v1.29.0"
  7911. },
  7912. "funding": [
  7913. {
  7914. "url": "https://symfony.com/sponsor",
  7915. "type": "custom"
  7916. },
  7917. {
  7918. "url": "https://github.com/fabpot",
  7919. "type": "github"
  7920. },
  7921. {
  7922. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7923. "type": "tidelift"
  7924. }
  7925. ],
  7926. "time": "2024-01-29T20:11:03+00:00"
  7927. },
  7928. {
  7929. "name": "symfony/polyfill-php80",
  7930. "version": "v1.29.0",
  7931. "source": {
  7932. "type": "git",
  7933. "url": "https://github.com/symfony/polyfill-php80.git",
  7934. "reference": "87b68208d5c1188808dd7839ee1e6c8ec3b02f1b"
  7935. },
  7936. "dist": {
  7937. "type": "zip",
  7938. "url": "https://api.github.com/repos/symfony/polyfill-php80/zipball/87b68208d5c1188808dd7839ee1e6c8ec3b02f1b",
  7939. "reference": "87b68208d5c1188808dd7839ee1e6c8ec3b02f1b",
  7940. "shasum": ""
  7941. },
  7942. "require": {
  7943. "php": ">=7.1"
  7944. },
  7945. "type": "library",
  7946. "extra": {
  7947. "thanks": {
  7948. "name": "symfony/polyfill",
  7949. "url": "https://github.com/symfony/polyfill"
  7950. }
  7951. },
  7952. "autoload": {
  7953. "files": [
  7954. "bootstrap.php"
  7955. ],
  7956. "psr-4": {
  7957. "Symfony\\Polyfill\\Php80\\": ""
  7958. },
  7959. "classmap": [
  7960. "Resources/stubs"
  7961. ]
  7962. },
  7963. "notification-url": "https://packagist.org/downloads/",
  7964. "license": [
  7965. "MIT"
  7966. ],
  7967. "authors": [
  7968. {
  7969. "name": "Ion Bazan",
  7970. "email": "ion.bazan@gmail.com"
  7971. },
  7972. {
  7973. "name": "Nicolas Grekas",
  7974. "email": "p@tchwork.com"
  7975. },
  7976. {
  7977. "name": "Symfony Community",
  7978. "homepage": "https://symfony.com/contributors"
  7979. }
  7980. ],
  7981. "description": "Symfony polyfill backporting some PHP 8.0+ features to lower PHP versions",
  7982. "homepage": "https://symfony.com",
  7983. "keywords": [
  7984. "compatibility",
  7985. "polyfill",
  7986. "portable",
  7987. "shim"
  7988. ],
  7989. "support": {
  7990. "source": "https://github.com/symfony/polyfill-php80/tree/v1.29.0"
  7991. },
  7992. "funding": [
  7993. {
  7994. "url": "https://symfony.com/sponsor",
  7995. "type": "custom"
  7996. },
  7997. {
  7998. "url": "https://github.com/fabpot",
  7999. "type": "github"
  8000. },
  8001. {
  8002. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8003. "type": "tidelift"
  8004. }
  8005. ],
  8006. "time": "2024-01-29T20:11:03+00:00"
  8007. },
  8008. {
  8009. "name": "symfony/polyfill-php81",
  8010. "version": "v1.29.0",
  8011. "source": {
  8012. "type": "git",
  8013. "url": "https://github.com/symfony/polyfill-php81.git",
  8014. "reference": "c565ad1e63f30e7477fc40738343c62b40bc672d"
  8015. },
  8016. "dist": {
  8017. "type": "zip",
  8018. "url": "https://api.github.com/repos/symfony/polyfill-php81/zipball/c565ad1e63f30e7477fc40738343c62b40bc672d",
  8019. "reference": "c565ad1e63f30e7477fc40738343c62b40bc672d",
  8020. "shasum": ""
  8021. },
  8022. "require": {
  8023. "php": ">=7.1"
  8024. },
  8025. "type": "library",
  8026. "extra": {
  8027. "thanks": {
  8028. "name": "symfony/polyfill",
  8029. "url": "https://github.com/symfony/polyfill"
  8030. }
  8031. },
  8032. "autoload": {
  8033. "files": [
  8034. "bootstrap.php"
  8035. ],
  8036. "psr-4": {
  8037. "Symfony\\Polyfill\\Php81\\": ""
  8038. },
  8039. "classmap": [
  8040. "Resources/stubs"
  8041. ]
  8042. },
  8043. "notification-url": "https://packagist.org/downloads/",
  8044. "license": [
  8045. "MIT"
  8046. ],
  8047. "authors": [
  8048. {
  8049. "name": "Nicolas Grekas",
  8050. "email": "p@tchwork.com"
  8051. },
  8052. {
  8053. "name": "Symfony Community",
  8054. "homepage": "https://symfony.com/contributors"
  8055. }
  8056. ],
  8057. "description": "Symfony polyfill backporting some PHP 8.1+ features to lower PHP versions",
  8058. "homepage": "https://symfony.com",
  8059. "keywords": [
  8060. "compatibility",
  8061. "polyfill",
  8062. "portable",
  8063. "shim"
  8064. ],
  8065. "support": {
  8066. "source": "https://github.com/symfony/polyfill-php81/tree/v1.29.0"
  8067. },
  8068. "funding": [
  8069. {
  8070. "url": "https://symfony.com/sponsor",
  8071. "type": "custom"
  8072. },
  8073. {
  8074. "url": "https://github.com/fabpot",
  8075. "type": "github"
  8076. },
  8077. {
  8078. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8079. "type": "tidelift"
  8080. }
  8081. ],
  8082. "time": "2024-01-29T20:11:03+00:00"
  8083. },
  8084. {
  8085. "name": "symfony/polyfill-php83",
  8086. "version": "v1.28.0",
  8087. "source": {
  8088. "type": "git",
  8089. "url": "https://github.com/symfony/polyfill-php83.git",
  8090. "reference": "b0f46ebbeeeda3e9d2faebdfbf4b4eae9b59fa11"
  8091. },
  8092. "dist": {
  8093. "type": "zip",
  8094. "url": "https://api.github.com/repos/symfony/polyfill-php83/zipball/b0f46ebbeeeda3e9d2faebdfbf4b4eae9b59fa11",
  8095. "reference": "b0f46ebbeeeda3e9d2faebdfbf4b4eae9b59fa11",
  8096. "shasum": ""
  8097. },
  8098. "require": {
  8099. "php": ">=7.1",
  8100. "symfony/polyfill-php80": "^1.14"
  8101. },
  8102. "type": "library",
  8103. "extra": {
  8104. "branch-alias": {
  8105. "dev-main": "1.28-dev"
  8106. },
  8107. "thanks": {
  8108. "name": "symfony/polyfill",
  8109. "url": "https://github.com/symfony/polyfill"
  8110. }
  8111. },
  8112. "autoload": {
  8113. "files": [
  8114. "bootstrap.php"
  8115. ],
  8116. "psr-4": {
  8117. "Symfony\\Polyfill\\Php83\\": ""
  8118. },
  8119. "classmap": [
  8120. "Resources/stubs"
  8121. ]
  8122. },
  8123. "notification-url": "https://packagist.org/downloads/",
  8124. "license": [
  8125. "MIT"
  8126. ],
  8127. "authors": [
  8128. {
  8129. "name": "Nicolas Grekas",
  8130. "email": "p@tchwork.com"
  8131. },
  8132. {
  8133. "name": "Symfony Community",
  8134. "homepage": "https://symfony.com/contributors"
  8135. }
  8136. ],
  8137. "description": "Symfony polyfill backporting some PHP 8.3+ features to lower PHP versions",
  8138. "homepage": "https://symfony.com",
  8139. "keywords": [
  8140. "compatibility",
  8141. "polyfill",
  8142. "portable",
  8143. "shim"
  8144. ],
  8145. "support": {
  8146. "source": "https://github.com/symfony/polyfill-php83/tree/v1.28.0"
  8147. },
  8148. "funding": [
  8149. {
  8150. "url": "https://symfony.com/sponsor",
  8151. "type": "custom"
  8152. },
  8153. {
  8154. "url": "https://github.com/fabpot",
  8155. "type": "github"
  8156. },
  8157. {
  8158. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8159. "type": "tidelift"
  8160. }
  8161. ],
  8162. "time": "2023-08-16T06:22:46+00:00"
  8163. },
  8164. {
  8165. "name": "symfony/process",
  8166. "version": "v6.4.4",
  8167. "source": {
  8168. "type": "git",
  8169. "url": "https://github.com/symfony/process.git",
  8170. "reference": "710e27879e9be3395de2b98da3f52a946039f297"
  8171. },
  8172. "dist": {
  8173. "type": "zip",
  8174. "url": "https://api.github.com/repos/symfony/process/zipball/710e27879e9be3395de2b98da3f52a946039f297",
  8175. "reference": "710e27879e9be3395de2b98da3f52a946039f297",
  8176. "shasum": ""
  8177. },
  8178. "require": {
  8179. "php": ">=8.1"
  8180. },
  8181. "type": "library",
  8182. "autoload": {
  8183. "psr-4": {
  8184. "Symfony\\Component\\Process\\": ""
  8185. },
  8186. "exclude-from-classmap": [
  8187. "/Tests/"
  8188. ]
  8189. },
  8190. "notification-url": "https://packagist.org/downloads/",
  8191. "license": [
  8192. "MIT"
  8193. ],
  8194. "authors": [
  8195. {
  8196. "name": "Fabien Potencier",
  8197. "email": "fabien@symfony.com"
  8198. },
  8199. {
  8200. "name": "Symfony Community",
  8201. "homepage": "https://symfony.com/contributors"
  8202. }
  8203. ],
  8204. "description": "Executes commands in sub-processes",
  8205. "homepage": "https://symfony.com",
  8206. "support": {
  8207. "source": "https://github.com/symfony/process/tree/v6.4.4"
  8208. },
  8209. "funding": [
  8210. {
  8211. "url": "https://symfony.com/sponsor",
  8212. "type": "custom"
  8213. },
  8214. {
  8215. "url": "https://github.com/fabpot",
  8216. "type": "github"
  8217. },
  8218. {
  8219. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8220. "type": "tidelift"
  8221. }
  8222. ],
  8223. "time": "2024-02-20T12:31:00+00:00"
  8224. },
  8225. {
  8226. "name": "symfony/psr-http-message-bridge",
  8227. "version": "v6.4.3",
  8228. "source": {
  8229. "type": "git",
  8230. "url": "https://github.com/symfony/psr-http-message-bridge.git",
  8231. "reference": "49cfb0223ec64379f7154214dcc1f7c46f3c7a47"
  8232. },
  8233. "dist": {
  8234. "type": "zip",
  8235. "url": "https://api.github.com/repos/symfony/psr-http-message-bridge/zipball/49cfb0223ec64379f7154214dcc1f7c46f3c7a47",
  8236. "reference": "49cfb0223ec64379f7154214dcc1f7c46f3c7a47",
  8237. "shasum": ""
  8238. },
  8239. "require": {
  8240. "php": ">=8.1",
  8241. "psr/http-message": "^1.0|^2.0",
  8242. "symfony/http-foundation": "^5.4|^6.0|^7.0"
  8243. },
  8244. "conflict": {
  8245. "php-http/discovery": "<1.15",
  8246. "symfony/http-kernel": "<6.2"
  8247. },
  8248. "require-dev": {
  8249. "nyholm/psr7": "^1.1",
  8250. "php-http/discovery": "^1.15",
  8251. "psr/log": "^1.1.4|^2|^3",
  8252. "symfony/browser-kit": "^5.4|^6.0|^7.0",
  8253. "symfony/config": "^5.4|^6.0|^7.0",
  8254. "symfony/event-dispatcher": "^5.4|^6.0|^7.0",
  8255. "symfony/framework-bundle": "^6.2|^7.0",
  8256. "symfony/http-kernel": "^6.2|^7.0"
  8257. },
  8258. "type": "symfony-bridge",
  8259. "autoload": {
  8260. "psr-4": {
  8261. "Symfony\\Bridge\\PsrHttpMessage\\": ""
  8262. },
  8263. "exclude-from-classmap": [
  8264. "/Tests/"
  8265. ]
  8266. },
  8267. "notification-url": "https://packagist.org/downloads/",
  8268. "license": [
  8269. "MIT"
  8270. ],
  8271. "authors": [
  8272. {
  8273. "name": "Fabien Potencier",
  8274. "email": "fabien@symfony.com"
  8275. },
  8276. {
  8277. "name": "Symfony Community",
  8278. "homepage": "https://symfony.com/contributors"
  8279. }
  8280. ],
  8281. "description": "PSR HTTP message bridge",
  8282. "homepage": "https://symfony.com",
  8283. "keywords": [
  8284. "http",
  8285. "http-message",
  8286. "psr-17",
  8287. "psr-7"
  8288. ],
  8289. "support": {
  8290. "source": "https://github.com/symfony/psr-http-message-bridge/tree/v6.4.3"
  8291. },
  8292. "funding": [
  8293. {
  8294. "url": "https://symfony.com/sponsor",
  8295. "type": "custom"
  8296. },
  8297. {
  8298. "url": "https://github.com/fabpot",
  8299. "type": "github"
  8300. },
  8301. {
  8302. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8303. "type": "tidelift"
  8304. }
  8305. ],
  8306. "time": "2024-01-23T14:51:35+00:00"
  8307. },
  8308. {
  8309. "name": "symfony/routing",
  8310. "version": "v6.4.3",
  8311. "source": {
  8312. "type": "git",
  8313. "url": "https://github.com/symfony/routing.git",
  8314. "reference": "3b2957ad54902f0f544df83e3d58b38d7e8e5842"
  8315. },
  8316. "dist": {
  8317. "type": "zip",
  8318. "url": "https://api.github.com/repos/symfony/routing/zipball/3b2957ad54902f0f544df83e3d58b38d7e8e5842",
  8319. "reference": "3b2957ad54902f0f544df83e3d58b38d7e8e5842",
  8320. "shasum": ""
  8321. },
  8322. "require": {
  8323. "php": ">=8.1",
  8324. "symfony/deprecation-contracts": "^2.5|^3"
  8325. },
  8326. "conflict": {
  8327. "doctrine/annotations": "<1.12",
  8328. "symfony/config": "<6.2",
  8329. "symfony/dependency-injection": "<5.4",
  8330. "symfony/yaml": "<5.4"
  8331. },
  8332. "require-dev": {
  8333. "doctrine/annotations": "^1.12|^2",
  8334. "psr/log": "^1|^2|^3",
  8335. "symfony/config": "^6.2|^7.0",
  8336. "symfony/dependency-injection": "^5.4|^6.0|^7.0",
  8337. "symfony/expression-language": "^5.4|^6.0|^7.0",
  8338. "symfony/http-foundation": "^5.4|^6.0|^7.0",
  8339. "symfony/yaml": "^5.4|^6.0|^7.0"
  8340. },
  8341. "type": "library",
  8342. "autoload": {
  8343. "psr-4": {
  8344. "Symfony\\Component\\Routing\\": ""
  8345. },
  8346. "exclude-from-classmap": [
  8347. "/Tests/"
  8348. ]
  8349. },
  8350. "notification-url": "https://packagist.org/downloads/",
  8351. "license": [
  8352. "MIT"
  8353. ],
  8354. "authors": [
  8355. {
  8356. "name": "Fabien Potencier",
  8357. "email": "fabien@symfony.com"
  8358. },
  8359. {
  8360. "name": "Symfony Community",
  8361. "homepage": "https://symfony.com/contributors"
  8362. }
  8363. ],
  8364. "description": "Maps an HTTP request to a set of configuration variables",
  8365. "homepage": "https://symfony.com",
  8366. "keywords": [
  8367. "router",
  8368. "routing",
  8369. "uri",
  8370. "url"
  8371. ],
  8372. "support": {
  8373. "source": "https://github.com/symfony/routing/tree/v6.4.3"
  8374. },
  8375. "funding": [
  8376. {
  8377. "url": "https://symfony.com/sponsor",
  8378. "type": "custom"
  8379. },
  8380. {
  8381. "url": "https://github.com/fabpot",
  8382. "type": "github"
  8383. },
  8384. {
  8385. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8386. "type": "tidelift"
  8387. }
  8388. ],
  8389. "time": "2024-01-30T13:55:02+00:00"
  8390. },
  8391. {
  8392. "name": "symfony/serializer",
  8393. "version": "v6.4.4",
  8394. "source": {
  8395. "type": "git",
  8396. "url": "https://github.com/symfony/serializer.git",
  8397. "reference": "88da7f8fe03c5f4c2a69da907f1de03fab2e6872"
  8398. },
  8399. "dist": {
  8400. "type": "zip",
  8401. "url": "https://api.github.com/repos/symfony/serializer/zipball/88da7f8fe03c5f4c2a69da907f1de03fab2e6872",
  8402. "reference": "88da7f8fe03c5f4c2a69da907f1de03fab2e6872",
  8403. "shasum": ""
  8404. },
  8405. "require": {
  8406. "php": ">=8.1",
  8407. "symfony/deprecation-contracts": "^2.5|^3",
  8408. "symfony/polyfill-ctype": "~1.8"
  8409. },
  8410. "conflict": {
  8411. "doctrine/annotations": "<1.12",
  8412. "phpdocumentor/reflection-docblock": "<3.2.2",
  8413. "phpdocumentor/type-resolver": "<1.4.0",
  8414. "symfony/dependency-injection": "<5.4",
  8415. "symfony/property-access": "<5.4",
  8416. "symfony/property-info": "<5.4.24|>=6,<6.2.11",
  8417. "symfony/uid": "<5.4",
  8418. "symfony/validator": "<6.4",
  8419. "symfony/yaml": "<5.4"
  8420. },
  8421. "require-dev": {
  8422. "doctrine/annotations": "^1.12|^2",
  8423. "phpdocumentor/reflection-docblock": "^3.2|^4.0|^5.0",
  8424. "seld/jsonlint": "^1.10",
  8425. "symfony/cache": "^5.4|^6.0|^7.0",
  8426. "symfony/config": "^5.4|^6.0|^7.0",
  8427. "symfony/console": "^5.4|^6.0|^7.0",
  8428. "symfony/dependency-injection": "^5.4|^6.0|^7.0",
  8429. "symfony/error-handler": "^5.4|^6.0|^7.0",
  8430. "symfony/filesystem": "^5.4|^6.0|^7.0",
  8431. "symfony/form": "^5.4|^6.0|^7.0",
  8432. "symfony/http-foundation": "^5.4|^6.0|^7.0",
  8433. "symfony/http-kernel": "^5.4|^6.0|^7.0",
  8434. "symfony/messenger": "^5.4|^6.0|^7.0",
  8435. "symfony/mime": "^5.4|^6.0|^7.0",
  8436. "symfony/property-access": "^5.4.26|^6.3|^7.0",
  8437. "symfony/property-info": "^5.4.24|^6.2.11|^7.0",
  8438. "symfony/translation-contracts": "^2.5|^3",
  8439. "symfony/uid": "^5.4|^6.0|^7.0",
  8440. "symfony/validator": "^6.4|^7.0",
  8441. "symfony/var-dumper": "^5.4|^6.0|^7.0",
  8442. "symfony/var-exporter": "^5.4|^6.0|^7.0",
  8443. "symfony/yaml": "^5.4|^6.0|^7.0"
  8444. },
  8445. "type": "library",
  8446. "autoload": {
  8447. "psr-4": {
  8448. "Symfony\\Component\\Serializer\\": ""
  8449. },
  8450. "exclude-from-classmap": [
  8451. "/Tests/"
  8452. ]
  8453. },
  8454. "notification-url": "https://packagist.org/downloads/",
  8455. "license": [
  8456. "MIT"
  8457. ],
  8458. "authors": [
  8459. {
  8460. "name": "Fabien Potencier",
  8461. "email": "fabien@symfony.com"
  8462. },
  8463. {
  8464. "name": "Symfony Community",
  8465. "homepage": "https://symfony.com/contributors"
  8466. }
  8467. ],
  8468. "description": "Handles serializing and deserializing data structures, including object graphs, into array structures or other formats like XML and JSON.",
  8469. "homepage": "https://symfony.com",
  8470. "support": {
  8471. "source": "https://github.com/symfony/serializer/tree/v6.4.4"
  8472. },
  8473. "funding": [
  8474. {
  8475. "url": "https://symfony.com/sponsor",
  8476. "type": "custom"
  8477. },
  8478. {
  8479. "url": "https://github.com/fabpot",
  8480. "type": "github"
  8481. },
  8482. {
  8483. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8484. "type": "tidelift"
  8485. }
  8486. ],
  8487. "time": "2024-02-22T20:27:10+00:00"
  8488. },
  8489. {
  8490. "name": "symfony/service-contracts",
  8491. "version": "v3.4.1",
  8492. "source": {
  8493. "type": "git",
  8494. "url": "https://github.com/symfony/service-contracts.git",
  8495. "reference": "fe07cbc8d837f60caf7018068e350cc5163681a0"
  8496. },
  8497. "dist": {
  8498. "type": "zip",
  8499. "url": "https://api.github.com/repos/symfony/service-contracts/zipball/fe07cbc8d837f60caf7018068e350cc5163681a0",
  8500. "reference": "fe07cbc8d837f60caf7018068e350cc5163681a0",
  8501. "shasum": ""
  8502. },
  8503. "require": {
  8504. "php": ">=8.1",
  8505. "psr/container": "^1.1|^2.0"
  8506. },
  8507. "conflict": {
  8508. "ext-psr": "<1.1|>=2"
  8509. },
  8510. "type": "library",
  8511. "extra": {
  8512. "branch-alias": {
  8513. "dev-main": "3.4-dev"
  8514. },
  8515. "thanks": {
  8516. "name": "symfony/contracts",
  8517. "url": "https://github.com/symfony/contracts"
  8518. }
  8519. },
  8520. "autoload": {
  8521. "psr-4": {
  8522. "Symfony\\Contracts\\Service\\": ""
  8523. },
  8524. "exclude-from-classmap": [
  8525. "/Test/"
  8526. ]
  8527. },
  8528. "notification-url": "https://packagist.org/downloads/",
  8529. "license": [
  8530. "MIT"
  8531. ],
  8532. "authors": [
  8533. {
  8534. "name": "Nicolas Grekas",
  8535. "email": "p@tchwork.com"
  8536. },
  8537. {
  8538. "name": "Symfony Community",
  8539. "homepage": "https://symfony.com/contributors"
  8540. }
  8541. ],
  8542. "description": "Generic abstractions related to writing services",
  8543. "homepage": "https://symfony.com",
  8544. "keywords": [
  8545. "abstractions",
  8546. "contracts",
  8547. "decoupling",
  8548. "interfaces",
  8549. "interoperability",
  8550. "standards"
  8551. ],
  8552. "support": {
  8553. "source": "https://github.com/symfony/service-contracts/tree/v3.4.1"
  8554. },
  8555. "funding": [
  8556. {
  8557. "url": "https://symfony.com/sponsor",
  8558. "type": "custom"
  8559. },
  8560. {
  8561. "url": "https://github.com/fabpot",
  8562. "type": "github"
  8563. },
  8564. {
  8565. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8566. "type": "tidelift"
  8567. }
  8568. ],
  8569. "time": "2023-12-26T14:02:43+00:00"
  8570. },
  8571. {
  8572. "name": "symfony/string",
  8573. "version": "v6.4.4",
  8574. "source": {
  8575. "type": "git",
  8576. "url": "https://github.com/symfony/string.git",
  8577. "reference": "4e465a95bdc32f49cf4c7f07f751b843bbd6dcd9"
  8578. },
  8579. "dist": {
  8580. "type": "zip",
  8581. "url": "https://api.github.com/repos/symfony/string/zipball/4e465a95bdc32f49cf4c7f07f751b843bbd6dcd9",
  8582. "reference": "4e465a95bdc32f49cf4c7f07f751b843bbd6dcd9",
  8583. "shasum": ""
  8584. },
  8585. "require": {
  8586. "php": ">=8.1",
  8587. "symfony/polyfill-ctype": "~1.8",
  8588. "symfony/polyfill-intl-grapheme": "~1.0",
  8589. "symfony/polyfill-intl-normalizer": "~1.0",
  8590. "symfony/polyfill-mbstring": "~1.0"
  8591. },
  8592. "conflict": {
  8593. "symfony/translation-contracts": "<2.5"
  8594. },
  8595. "require-dev": {
  8596. "symfony/error-handler": "^5.4|^6.0|^7.0",
  8597. "symfony/http-client": "^5.4|^6.0|^7.0",
  8598. "symfony/intl": "^6.2|^7.0",
  8599. "symfony/translation-contracts": "^2.5|^3.0",
  8600. "symfony/var-exporter": "^5.4|^6.0|^7.0"
  8601. },
  8602. "type": "library",
  8603. "autoload": {
  8604. "files": [
  8605. "Resources/functions.php"
  8606. ],
  8607. "psr-4": {
  8608. "Symfony\\Component\\String\\": ""
  8609. },
  8610. "exclude-from-classmap": [
  8611. "/Tests/"
  8612. ]
  8613. },
  8614. "notification-url": "https://packagist.org/downloads/",
  8615. "license": [
  8616. "MIT"
  8617. ],
  8618. "authors": [
  8619. {
  8620. "name": "Nicolas Grekas",
  8621. "email": "p@tchwork.com"
  8622. },
  8623. {
  8624. "name": "Symfony Community",
  8625. "homepage": "https://symfony.com/contributors"
  8626. }
  8627. ],
  8628. "description": "Provides an object-oriented API to strings and deals with bytes, UTF-8 code points and grapheme clusters in a unified way",
  8629. "homepage": "https://symfony.com",
  8630. "keywords": [
  8631. "grapheme",
  8632. "i18n",
  8633. "string",
  8634. "unicode",
  8635. "utf-8",
  8636. "utf8"
  8637. ],
  8638. "support": {
  8639. "source": "https://github.com/symfony/string/tree/v6.4.4"
  8640. },
  8641. "funding": [
  8642. {
  8643. "url": "https://symfony.com/sponsor",
  8644. "type": "custom"
  8645. },
  8646. {
  8647. "url": "https://github.com/fabpot",
  8648. "type": "github"
  8649. },
  8650. {
  8651. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8652. "type": "tidelift"
  8653. }
  8654. ],
  8655. "time": "2024-02-01T13:16:41+00:00"
  8656. },
  8657. {
  8658. "name": "symfony/translation-contracts",
  8659. "version": "v3.4.1",
  8660. "source": {
  8661. "type": "git",
  8662. "url": "https://github.com/symfony/translation-contracts.git",
  8663. "reference": "06450585bf65e978026bda220cdebca3f867fde7"
  8664. },
  8665. "dist": {
  8666. "type": "zip",
  8667. "url": "https://api.github.com/repos/symfony/translation-contracts/zipball/06450585bf65e978026bda220cdebca3f867fde7",
  8668. "reference": "06450585bf65e978026bda220cdebca3f867fde7",
  8669. "shasum": ""
  8670. },
  8671. "require": {
  8672. "php": ">=8.1"
  8673. },
  8674. "type": "library",
  8675. "extra": {
  8676. "branch-alias": {
  8677. "dev-main": "3.4-dev"
  8678. },
  8679. "thanks": {
  8680. "name": "symfony/contracts",
  8681. "url": "https://github.com/symfony/contracts"
  8682. }
  8683. },
  8684. "autoload": {
  8685. "psr-4": {
  8686. "Symfony\\Contracts\\Translation\\": ""
  8687. },
  8688. "exclude-from-classmap": [
  8689. "/Test/"
  8690. ]
  8691. },
  8692. "notification-url": "https://packagist.org/downloads/",
  8693. "license": [
  8694. "MIT"
  8695. ],
  8696. "authors": [
  8697. {
  8698. "name": "Nicolas Grekas",
  8699. "email": "p@tchwork.com"
  8700. },
  8701. {
  8702. "name": "Symfony Community",
  8703. "homepage": "https://symfony.com/contributors"
  8704. }
  8705. ],
  8706. "description": "Generic abstractions related to translation",
  8707. "homepage": "https://symfony.com",
  8708. "keywords": [
  8709. "abstractions",
  8710. "contracts",
  8711. "decoupling",
  8712. "interfaces",
  8713. "interoperability",
  8714. "standards"
  8715. ],
  8716. "support": {
  8717. "source": "https://github.com/symfony/translation-contracts/tree/v3.4.1"
  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": "2023-12-26T14:02:43+00:00"
  8734. },
  8735. {
  8736. "name": "symfony/validator",
  8737. "version": "v6.4.4",
  8738. "source": {
  8739. "type": "git",
  8740. "url": "https://github.com/symfony/validator.git",
  8741. "reference": "1cf92edc9a94d16275efef949fa6748d11cc8f47"
  8742. },
  8743. "dist": {
  8744. "type": "zip",
  8745. "url": "https://api.github.com/repos/symfony/validator/zipball/1cf92edc9a94d16275efef949fa6748d11cc8f47",
  8746. "reference": "1cf92edc9a94d16275efef949fa6748d11cc8f47",
  8747. "shasum": ""
  8748. },
  8749. "require": {
  8750. "php": ">=8.1",
  8751. "symfony/deprecation-contracts": "^2.5|^3",
  8752. "symfony/polyfill-ctype": "~1.8",
  8753. "symfony/polyfill-mbstring": "~1.0",
  8754. "symfony/polyfill-php83": "^1.27",
  8755. "symfony/translation-contracts": "^2.5|^3"
  8756. },
  8757. "conflict": {
  8758. "doctrine/annotations": "<1.13",
  8759. "doctrine/lexer": "<1.1",
  8760. "symfony/dependency-injection": "<5.4",
  8761. "symfony/expression-language": "<5.4",
  8762. "symfony/http-kernel": "<5.4",
  8763. "symfony/intl": "<5.4",
  8764. "symfony/property-info": "<5.4",
  8765. "symfony/translation": "<5.4.35|>=6.0,<6.3.12|>=6.4,<6.4.3|>=7.0,<7.0.3",
  8766. "symfony/yaml": "<5.4"
  8767. },
  8768. "require-dev": {
  8769. "doctrine/annotations": "^1.13|^2",
  8770. "egulias/email-validator": "^2.1.10|^3|^4",
  8771. "symfony/cache": "^5.4|^6.0|^7.0",
  8772. "symfony/config": "^5.4|^6.0|^7.0",
  8773. "symfony/console": "^5.4|^6.0|^7.0",
  8774. "symfony/dependency-injection": "^5.4|^6.0|^7.0",
  8775. "symfony/expression-language": "^5.4|^6.0|^7.0",
  8776. "symfony/finder": "^5.4|^6.0|^7.0",
  8777. "symfony/http-client": "^5.4|^6.0|^7.0",
  8778. "symfony/http-foundation": "^5.4|^6.0|^7.0",
  8779. "symfony/http-kernel": "^5.4|^6.0|^7.0",
  8780. "symfony/intl": "^5.4|^6.0|^7.0",
  8781. "symfony/mime": "^5.4|^6.0|^7.0",
  8782. "symfony/property-access": "^5.4|^6.0|^7.0",
  8783. "symfony/property-info": "^5.4|^6.0|^7.0",
  8784. "symfony/translation": "^5.4.35|~6.3.12|^6.4.3|^7.0.3",
  8785. "symfony/yaml": "^5.4|^6.0|^7.0"
  8786. },
  8787. "type": "library",
  8788. "autoload": {
  8789. "psr-4": {
  8790. "Symfony\\Component\\Validator\\": ""
  8791. },
  8792. "exclude-from-classmap": [
  8793. "/Tests/"
  8794. ]
  8795. },
  8796. "notification-url": "https://packagist.org/downloads/",
  8797. "license": [
  8798. "MIT"
  8799. ],
  8800. "authors": [
  8801. {
  8802. "name": "Fabien Potencier",
  8803. "email": "fabien@symfony.com"
  8804. },
  8805. {
  8806. "name": "Symfony Community",
  8807. "homepage": "https://symfony.com/contributors"
  8808. }
  8809. ],
  8810. "description": "Provides tools to validate values",
  8811. "homepage": "https://symfony.com",
  8812. "support": {
  8813. "source": "https://github.com/symfony/validator/tree/v6.4.4"
  8814. },
  8815. "funding": [
  8816. {
  8817. "url": "https://symfony.com/sponsor",
  8818. "type": "custom"
  8819. },
  8820. {
  8821. "url": "https://github.com/fabpot",
  8822. "type": "github"
  8823. },
  8824. {
  8825. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8826. "type": "tidelift"
  8827. }
  8828. ],
  8829. "time": "2024-02-22T20:27:10+00:00"
  8830. },
  8831. {
  8832. "name": "symfony/var-dumper",
  8833. "version": "v6.4.4",
  8834. "source": {
  8835. "type": "git",
  8836. "url": "https://github.com/symfony/var-dumper.git",
  8837. "reference": "b439823f04c98b84d4366c79507e9da6230944b1"
  8838. },
  8839. "dist": {
  8840. "type": "zip",
  8841. "url": "https://api.github.com/repos/symfony/var-dumper/zipball/b439823f04c98b84d4366c79507e9da6230944b1",
  8842. "reference": "b439823f04c98b84d4366c79507e9da6230944b1",
  8843. "shasum": ""
  8844. },
  8845. "require": {
  8846. "php": ">=8.1",
  8847. "symfony/deprecation-contracts": "^2.5|^3",
  8848. "symfony/polyfill-mbstring": "~1.0"
  8849. },
  8850. "conflict": {
  8851. "symfony/console": "<5.4"
  8852. },
  8853. "require-dev": {
  8854. "ext-iconv": "*",
  8855. "symfony/console": "^5.4|^6.0|^7.0",
  8856. "symfony/error-handler": "^6.3|^7.0",
  8857. "symfony/http-kernel": "^5.4|^6.0|^7.0",
  8858. "symfony/process": "^5.4|^6.0|^7.0",
  8859. "symfony/uid": "^5.4|^6.0|^7.0",
  8860. "twig/twig": "^2.13|^3.0.4"
  8861. },
  8862. "bin": [
  8863. "Resources/bin/var-dump-server"
  8864. ],
  8865. "type": "library",
  8866. "autoload": {
  8867. "files": [
  8868. "Resources/functions/dump.php"
  8869. ],
  8870. "psr-4": {
  8871. "Symfony\\Component\\VarDumper\\": ""
  8872. },
  8873. "exclude-from-classmap": [
  8874. "/Tests/"
  8875. ]
  8876. },
  8877. "notification-url": "https://packagist.org/downloads/",
  8878. "license": [
  8879. "MIT"
  8880. ],
  8881. "authors": [
  8882. {
  8883. "name": "Nicolas Grekas",
  8884. "email": "p@tchwork.com"
  8885. },
  8886. {
  8887. "name": "Symfony Community",
  8888. "homepage": "https://symfony.com/contributors"
  8889. }
  8890. ],
  8891. "description": "Provides mechanisms for walking through any arbitrary PHP variable",
  8892. "homepage": "https://symfony.com",
  8893. "keywords": [
  8894. "debug",
  8895. "dump"
  8896. ],
  8897. "support": {
  8898. "source": "https://github.com/symfony/var-dumper/tree/v6.4.4"
  8899. },
  8900. "funding": [
  8901. {
  8902. "url": "https://symfony.com/sponsor",
  8903. "type": "custom"
  8904. },
  8905. {
  8906. "url": "https://github.com/fabpot",
  8907. "type": "github"
  8908. },
  8909. {
  8910. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8911. "type": "tidelift"
  8912. }
  8913. ],
  8914. "time": "2024-02-15T11:23:52+00:00"
  8915. },
  8916. {
  8917. "name": "symfony/var-exporter",
  8918. "version": "v6.4.4",
  8919. "source": {
  8920. "type": "git",
  8921. "url": "https://github.com/symfony/var-exporter.git",
  8922. "reference": "0bd342e24aef49fc82a21bd4eedd3e665d177e5b"
  8923. },
  8924. "dist": {
  8925. "type": "zip",
  8926. "url": "https://api.github.com/repos/symfony/var-exporter/zipball/0bd342e24aef49fc82a21bd4eedd3e665d177e5b",
  8927. "reference": "0bd342e24aef49fc82a21bd4eedd3e665d177e5b",
  8928. "shasum": ""
  8929. },
  8930. "require": {
  8931. "php": ">=8.1",
  8932. "symfony/deprecation-contracts": "^2.5|^3"
  8933. },
  8934. "require-dev": {
  8935. "symfony/var-dumper": "^5.4|^6.0|^7.0"
  8936. },
  8937. "type": "library",
  8938. "autoload": {
  8939. "psr-4": {
  8940. "Symfony\\Component\\VarExporter\\": ""
  8941. },
  8942. "exclude-from-classmap": [
  8943. "/Tests/"
  8944. ]
  8945. },
  8946. "notification-url": "https://packagist.org/downloads/",
  8947. "license": [
  8948. "MIT"
  8949. ],
  8950. "authors": [
  8951. {
  8952. "name": "Nicolas Grekas",
  8953. "email": "p@tchwork.com"
  8954. },
  8955. {
  8956. "name": "Symfony Community",
  8957. "homepage": "https://symfony.com/contributors"
  8958. }
  8959. ],
  8960. "description": "Allows exporting any serializable PHP data structure to plain PHP code",
  8961. "homepage": "https://symfony.com",
  8962. "keywords": [
  8963. "clone",
  8964. "construct",
  8965. "export",
  8966. "hydrate",
  8967. "instantiate",
  8968. "lazy-loading",
  8969. "proxy",
  8970. "serialize"
  8971. ],
  8972. "support": {
  8973. "source": "https://github.com/symfony/var-exporter/tree/v6.4.4"
  8974. },
  8975. "funding": [
  8976. {
  8977. "url": "https://symfony.com/sponsor",
  8978. "type": "custom"
  8979. },
  8980. {
  8981. "url": "https://github.com/fabpot",
  8982. "type": "github"
  8983. },
  8984. {
  8985. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8986. "type": "tidelift"
  8987. }
  8988. ],
  8989. "time": "2024-02-26T08:37:45+00:00"
  8990. },
  8991. {
  8992. "name": "symfony/yaml",
  8993. "version": "v6.4.3",
  8994. "source": {
  8995. "type": "git",
  8996. "url": "https://github.com/symfony/yaml.git",
  8997. "reference": "d75715985f0f94f978e3a8fa42533e10db921b90"
  8998. },
  8999. "dist": {
  9000. "type": "zip",
  9001. "url": "https://api.github.com/repos/symfony/yaml/zipball/d75715985f0f94f978e3a8fa42533e10db921b90",
  9002. "reference": "d75715985f0f94f978e3a8fa42533e10db921b90",
  9003. "shasum": ""
  9004. },
  9005. "require": {
  9006. "php": ">=8.1",
  9007. "symfony/deprecation-contracts": "^2.5|^3",
  9008. "symfony/polyfill-ctype": "^1.8"
  9009. },
  9010. "conflict": {
  9011. "symfony/console": "<5.4"
  9012. },
  9013. "require-dev": {
  9014. "symfony/console": "^5.4|^6.0|^7.0"
  9015. },
  9016. "bin": [
  9017. "Resources/bin/yaml-lint"
  9018. ],
  9019. "type": "library",
  9020. "autoload": {
  9021. "psr-4": {
  9022. "Symfony\\Component\\Yaml\\": ""
  9023. },
  9024. "exclude-from-classmap": [
  9025. "/Tests/"
  9026. ]
  9027. },
  9028. "notification-url": "https://packagist.org/downloads/",
  9029. "license": [
  9030. "MIT"
  9031. ],
  9032. "authors": [
  9033. {
  9034. "name": "Fabien Potencier",
  9035. "email": "fabien@symfony.com"
  9036. },
  9037. {
  9038. "name": "Symfony Community",
  9039. "homepage": "https://symfony.com/contributors"
  9040. }
  9041. ],
  9042. "description": "Loads and dumps YAML files",
  9043. "homepage": "https://symfony.com",
  9044. "support": {
  9045. "source": "https://github.com/symfony/yaml/tree/v6.4.3"
  9046. },
  9047. "funding": [
  9048. {
  9049. "url": "https://symfony.com/sponsor",
  9050. "type": "custom"
  9051. },
  9052. {
  9053. "url": "https://github.com/fabpot",
  9054. "type": "github"
  9055. },
  9056. {
  9057. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  9058. "type": "tidelift"
  9059. }
  9060. ],
  9061. "time": "2024-01-23T14:51:35+00:00"
  9062. },
  9063. {
  9064. "name": "twbs/bootstrap",
  9065. "version": "v4.5.0",
  9066. "source": {
  9067. "type": "git",
  9068. "url": "https://github.com/twbs/bootstrap.git",
  9069. "reference": "7a6da5e3e7ad7c749dde806546a35d4d4259d965"
  9070. },
  9071. "dist": {
  9072. "type": "zip",
  9073. "url": "https://api.github.com/repos/twbs/bootstrap/zipball/7a6da5e3e7ad7c749dde806546a35d4d4259d965",
  9074. "reference": "7a6da5e3e7ad7c749dde806546a35d4d4259d965",
  9075. "shasum": ""
  9076. },
  9077. "replace": {
  9078. "twitter/bootstrap": "self.version"
  9079. },
  9080. "type": "library",
  9081. "extra": {
  9082. "branch-alias": {
  9083. "dev-master": "3.3.x-dev"
  9084. }
  9085. },
  9086. "notification-url": "https://packagist.org/downloads/",
  9087. "license": [
  9088. "MIT"
  9089. ],
  9090. "authors": [
  9091. {
  9092. "name": "Mark Otto",
  9093. "email": "markdotto@gmail.com"
  9094. },
  9095. {
  9096. "name": "Jacob Thornton",
  9097. "email": "jacobthornton@gmail.com"
  9098. }
  9099. ],
  9100. "description": "The most popular front-end framework for developing responsive, mobile first projects on the web.",
  9101. "homepage": "https://getbootstrap.com/",
  9102. "keywords": [
  9103. "JS",
  9104. "css",
  9105. "framework",
  9106. "front-end",
  9107. "mobile-first",
  9108. "responsive",
  9109. "sass",
  9110. "web"
  9111. ],
  9112. "support": {
  9113. "issues": "https://github.com/twbs/bootstrap/issues",
  9114. "source": "https://github.com/twbs/bootstrap/tree/v4-dev"
  9115. },
  9116. "funding": [
  9117. {
  9118. "url": "https://opencollective.com/bootstrap",
  9119. "type": "open_collective"
  9120. }
  9121. ],
  9122. "time": "2020-05-12T17:44:42+00:00"
  9123. },
  9124. {
  9125. "name": "twig/twig",
  9126. "version": "v3.8.0",
  9127. "source": {
  9128. "type": "git",
  9129. "url": "https://github.com/twigphp/Twig.git",
  9130. "reference": "9d15f0ac07f44dc4217883ec6ae02fd555c6f71d"
  9131. },
  9132. "dist": {
  9133. "type": "zip",
  9134. "url": "https://api.github.com/repos/twigphp/Twig/zipball/9d15f0ac07f44dc4217883ec6ae02fd555c6f71d",
  9135. "reference": "9d15f0ac07f44dc4217883ec6ae02fd555c6f71d",
  9136. "shasum": ""
  9137. },
  9138. "require": {
  9139. "php": ">=7.2.5",
  9140. "symfony/polyfill-ctype": "^1.8",
  9141. "symfony/polyfill-mbstring": "^1.3",
  9142. "symfony/polyfill-php80": "^1.22"
  9143. },
  9144. "require-dev": {
  9145. "psr/container": "^1.0|^2.0",
  9146. "symfony/phpunit-bridge": "^5.4.9|^6.3|^7.0"
  9147. },
  9148. "type": "library",
  9149. "autoload": {
  9150. "psr-4": {
  9151. "Twig\\": "src/"
  9152. }
  9153. },
  9154. "notification-url": "https://packagist.org/downloads/",
  9155. "license": [
  9156. "BSD-3-Clause"
  9157. ],
  9158. "authors": [
  9159. {
  9160. "name": "Fabien Potencier",
  9161. "email": "fabien@symfony.com",
  9162. "homepage": "http://fabien.potencier.org",
  9163. "role": "Lead Developer"
  9164. },
  9165. {
  9166. "name": "Twig Team",
  9167. "role": "Contributors"
  9168. },
  9169. {
  9170. "name": "Armin Ronacher",
  9171. "email": "armin.ronacher@active-4.com",
  9172. "role": "Project Founder"
  9173. }
  9174. ],
  9175. "description": "Twig, the flexible, fast, and secure template language for PHP",
  9176. "homepage": "https://twig.symfony.com",
  9177. "keywords": [
  9178. "templating"
  9179. ],
  9180. "support": {
  9181. "issues": "https://github.com/twigphp/Twig/issues",
  9182. "source": "https://github.com/twigphp/Twig/tree/v3.8.0"
  9183. },
  9184. "funding": [
  9185. {
  9186. "url": "https://github.com/fabpot",
  9187. "type": "github"
  9188. },
  9189. {
  9190. "url": "https://tidelift.com/funding/github/packagist/twig/twig",
  9191. "type": "tidelift"
  9192. }
  9193. ],
  9194. "time": "2023-11-21T18:54:41+00:00"
  9195. },
  9196. {
  9197. "name": "webflo/drupal-finder",
  9198. "version": "1.2.2",
  9199. "source": {
  9200. "type": "git",
  9201. "url": "https://github.com/webflo/drupal-finder.git",
  9202. "reference": "c8e5dbe65caef285fec8057a4c718a0d4138d1ee"
  9203. },
  9204. "dist": {
  9205. "type": "zip",
  9206. "url": "https://api.github.com/repos/webflo/drupal-finder/zipball/c8e5dbe65caef285fec8057a4c718a0d4138d1ee",
  9207. "reference": "c8e5dbe65caef285fec8057a4c718a0d4138d1ee",
  9208. "shasum": ""
  9209. },
  9210. "require": {
  9211. "ext-json": "*"
  9212. },
  9213. "require-dev": {
  9214. "mikey179/vfsstream": "^1.6",
  9215. "phpunit/phpunit": "^4.8"
  9216. },
  9217. "type": "library",
  9218. "autoload": {
  9219. "classmap": [
  9220. "src/DrupalFinder.php"
  9221. ]
  9222. },
  9223. "notification-url": "https://packagist.org/downloads/",
  9224. "license": [
  9225. "GPL-2.0-or-later"
  9226. ],
  9227. "authors": [
  9228. {
  9229. "name": "Florian Weber",
  9230. "email": "florian@webflo.org"
  9231. }
  9232. ],
  9233. "description": "Helper class to locate a Drupal installation from a given path.",
  9234. "support": {
  9235. "issues": "https://github.com/webflo/drupal-finder/issues",
  9236. "source": "https://github.com/webflo/drupal-finder/tree/1.2.2"
  9237. },
  9238. "time": "2020-10-27T09:42:17+00:00"
  9239. }
  9240. ],
  9241. "packages-dev": [],
  9242. "aliases": [],
  9243. "minimum-stability": "dev",
  9244. "stability-flags": {
  9245. "drupal/field_pager": 10
  9246. },
  9247. "prefer-stable": true,
  9248. "prefer-lowest": false,
  9249. "platform": [],
  9250. "platform-dev": [],
  9251. "plugin-api-version": "2.6.0"
  9252. }