composer.lock 390 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298529953005301530253035304530553065307530853095310531153125313531453155316531753185319532053215322532353245325532653275328532953305331533253335334533553365337533853395340534153425343534453455346534753485349535053515352535353545355535653575358535953605361536253635364536553665367536853695370537153725373537453755376537753785379538053815382538353845385538653875388538953905391539253935394539553965397539853995400540154025403540454055406540754085409541054115412541354145415541654175418541954205421542254235424542554265427542854295430543154325433543454355436543754385439544054415442544354445445544654475448544954505451545254535454545554565457545854595460546154625463546454655466546754685469547054715472547354745475547654775478547954805481548254835484548554865487548854895490549154925493549454955496549754985499550055015502550355045505550655075508550955105511551255135514551555165517551855195520552155225523552455255526552755285529553055315532553355345535553655375538553955405541554255435544554555465547554855495550555155525553555455555556555755585559556055615562556355645565556655675568556955705571557255735574557555765577557855795580558155825583558455855586558755885589559055915592559355945595559655975598559956005601560256035604560556065607560856095610561156125613561456155616561756185619562056215622562356245625562656275628562956305631563256335634563556365637563856395640564156425643564456455646564756485649565056515652565356545655565656575658565956605661566256635664566556665667566856695670567156725673567456755676567756785679568056815682568356845685568656875688568956905691569256935694569556965697569856995700570157025703570457055706570757085709571057115712571357145715571657175718571957205721572257235724572557265727572857295730573157325733573457355736573757385739574057415742574357445745574657475748574957505751575257535754575557565757575857595760576157625763576457655766576757685769577057715772577357745775577657775778577957805781578257835784578557865787578857895790579157925793579457955796579757985799580058015802580358045805580658075808580958105811581258135814581558165817581858195820582158225823582458255826582758285829583058315832583358345835583658375838583958405841584258435844584558465847584858495850585158525853585458555856585758585859586058615862586358645865586658675868586958705871587258735874587558765877587858795880588158825883588458855886588758885889589058915892589358945895589658975898589959005901590259035904590559065907590859095910591159125913591459155916591759185919592059215922592359245925592659275928592959305931593259335934593559365937593859395940594159425943594459455946594759485949595059515952595359545955595659575958595959605961596259635964596559665967596859695970597159725973597459755976597759785979598059815982598359845985598659875988598959905991599259935994599559965997599859996000600160026003600460056006600760086009601060116012601360146015601660176018601960206021602260236024602560266027602860296030603160326033603460356036603760386039604060416042604360446045604660476048604960506051605260536054605560566057605860596060606160626063606460656066606760686069607060716072607360746075607660776078607960806081608260836084608560866087608860896090609160926093609460956096609760986099610061016102610361046105610661076108610961106111611261136114611561166117611861196120612161226123612461256126612761286129613061316132613361346135613661376138613961406141614261436144614561466147614861496150615161526153615461556156615761586159616061616162616361646165616661676168616961706171617261736174617561766177617861796180618161826183618461856186618761886189619061916192619361946195619661976198619962006201620262036204620562066207620862096210621162126213621462156216621762186219622062216222622362246225622662276228622962306231623262336234623562366237623862396240624162426243624462456246624762486249625062516252625362546255625662576258625962606261626262636264626562666267626862696270627162726273627462756276627762786279628062816282628362846285628662876288628962906291629262936294629562966297629862996300630163026303630463056306630763086309631063116312631363146315631663176318631963206321632263236324632563266327632863296330633163326333633463356336633763386339634063416342634363446345634663476348634963506351635263536354635563566357635863596360636163626363636463656366636763686369637063716372637363746375637663776378637963806381638263836384638563866387638863896390639163926393639463956396639763986399640064016402640364046405640664076408640964106411641264136414641564166417641864196420642164226423642464256426642764286429643064316432643364346435643664376438643964406441644264436444644564466447644864496450645164526453645464556456645764586459646064616462646364646465646664676468646964706471647264736474647564766477647864796480648164826483648464856486648764886489649064916492649364946495649664976498649965006501650265036504650565066507650865096510651165126513651465156516651765186519652065216522652365246525652665276528652965306531653265336534653565366537653865396540654165426543654465456546654765486549655065516552655365546555655665576558655965606561656265636564656565666567656865696570657165726573657465756576657765786579658065816582658365846585658665876588658965906591659265936594659565966597659865996600660166026603660466056606660766086609661066116612661366146615661666176618661966206621662266236624662566266627662866296630663166326633663466356636663766386639664066416642664366446645664666476648664966506651665266536654665566566657665866596660666166626663666466656666666766686669667066716672667366746675667666776678667966806681668266836684668566866687668866896690669166926693669466956696669766986699670067016702670367046705670667076708670967106711671267136714671567166717671867196720672167226723672467256726672767286729673067316732673367346735673667376738673967406741674267436744674567466747674867496750675167526753675467556756675767586759676067616762676367646765676667676768676967706771677267736774677567766777677867796780678167826783678467856786678767886789679067916792679367946795679667976798679968006801680268036804680568066807680868096810681168126813681468156816681768186819682068216822682368246825682668276828682968306831683268336834683568366837683868396840684168426843684468456846684768486849685068516852685368546855685668576858685968606861686268636864686568666867686868696870687168726873687468756876687768786879688068816882688368846885688668876888688968906891689268936894689568966897689868996900690169026903690469056906690769086909691069116912691369146915691669176918691969206921692269236924692569266927692869296930693169326933693469356936693769386939694069416942694369446945694669476948694969506951695269536954695569566957695869596960696169626963696469656966696769686969697069716972697369746975697669776978697969806981698269836984698569866987698869896990699169926993699469956996699769986999700070017002700370047005700670077008700970107011701270137014701570167017701870197020702170227023702470257026702770287029703070317032703370347035703670377038703970407041704270437044704570467047704870497050705170527053705470557056705770587059706070617062706370647065706670677068706970707071707270737074707570767077707870797080708170827083708470857086708770887089709070917092709370947095709670977098709971007101710271037104710571067107710871097110711171127113711471157116711771187119712071217122712371247125712671277128712971307131713271337134713571367137713871397140714171427143714471457146714771487149715071517152715371547155715671577158715971607161716271637164716571667167716871697170717171727173717471757176717771787179718071817182718371847185718671877188718971907191719271937194719571967197719871997200720172027203720472057206720772087209721072117212721372147215721672177218721972207221722272237224722572267227722872297230723172327233723472357236723772387239724072417242724372447245724672477248724972507251725272537254725572567257725872597260726172627263726472657266726772687269727072717272727372747275727672777278727972807281728272837284728572867287728872897290729172927293729472957296729772987299730073017302730373047305730673077308730973107311731273137314731573167317731873197320732173227323732473257326732773287329733073317332733373347335733673377338733973407341734273437344734573467347734873497350735173527353735473557356735773587359736073617362736373647365736673677368736973707371737273737374737573767377737873797380738173827383738473857386738773887389739073917392739373947395739673977398739974007401740274037404740574067407740874097410741174127413741474157416741774187419742074217422742374247425742674277428742974307431743274337434743574367437743874397440744174427443744474457446744774487449745074517452745374547455745674577458745974607461746274637464746574667467746874697470747174727473747474757476747774787479748074817482748374847485748674877488748974907491749274937494749574967497749874997500750175027503750475057506750775087509751075117512751375147515751675177518751975207521752275237524752575267527752875297530753175327533753475357536753775387539754075417542754375447545754675477548754975507551755275537554755575567557755875597560756175627563756475657566756775687569757075717572757375747575757675777578757975807581758275837584758575867587758875897590759175927593759475957596759775987599760076017602760376047605760676077608760976107611761276137614761576167617761876197620762176227623762476257626762776287629763076317632763376347635763676377638763976407641764276437644764576467647764876497650765176527653765476557656765776587659766076617662766376647665766676677668766976707671767276737674767576767677767876797680768176827683768476857686768776887689769076917692769376947695769676977698769977007701770277037704770577067707770877097710771177127713771477157716771777187719772077217722772377247725772677277728772977307731773277337734773577367737773877397740774177427743774477457746774777487749775077517752775377547755775677577758775977607761776277637764776577667767776877697770777177727773777477757776777777787779778077817782778377847785778677877788778977907791779277937794779577967797779877997800780178027803780478057806780778087809781078117812781378147815781678177818781978207821782278237824782578267827782878297830783178327833783478357836783778387839784078417842784378447845784678477848784978507851785278537854785578567857785878597860786178627863786478657866786778687869787078717872787378747875787678777878787978807881788278837884788578867887788878897890789178927893789478957896789778987899790079017902790379047905790679077908790979107911791279137914791579167917791879197920792179227923792479257926792779287929793079317932793379347935793679377938793979407941794279437944794579467947794879497950795179527953795479557956795779587959796079617962796379647965796679677968796979707971797279737974797579767977797879797980798179827983798479857986798779887989799079917992799379947995799679977998799980008001800280038004800580068007800880098010801180128013801480158016801780188019802080218022802380248025802680278028802980308031803280338034803580368037803880398040804180428043804480458046804780488049805080518052805380548055805680578058805980608061806280638064806580668067806880698070807180728073807480758076807780788079808080818082808380848085808680878088808980908091809280938094809580968097809880998100810181028103810481058106810781088109811081118112811381148115811681178118811981208121812281238124812581268127812881298130813181328133813481358136813781388139814081418142814381448145814681478148814981508151815281538154815581568157815881598160816181628163816481658166816781688169817081718172817381748175817681778178817981808181818281838184818581868187818881898190819181928193819481958196819781988199820082018202820382048205820682078208820982108211821282138214821582168217821882198220822182228223822482258226822782288229823082318232823382348235823682378238823982408241824282438244824582468247824882498250825182528253825482558256825782588259826082618262826382648265826682678268826982708271827282738274827582768277827882798280828182828283828482858286828782888289829082918292829382948295829682978298829983008301830283038304830583068307830883098310831183128313831483158316831783188319832083218322832383248325832683278328832983308331833283338334833583368337833883398340834183428343834483458346834783488349835083518352835383548355835683578358835983608361836283638364836583668367836883698370837183728373837483758376837783788379838083818382838383848385838683878388838983908391839283938394839583968397839883998400840184028403840484058406840784088409841084118412841384148415841684178418841984208421842284238424842584268427842884298430843184328433843484358436843784388439844084418442844384448445844684478448844984508451845284538454845584568457845884598460846184628463846484658466846784688469847084718472847384748475847684778478847984808481848284838484848584868487848884898490849184928493849484958496849784988499850085018502850385048505850685078508850985108511851285138514851585168517851885198520852185228523852485258526852785288529853085318532853385348535853685378538853985408541854285438544854585468547854885498550855185528553855485558556855785588559856085618562856385648565856685678568856985708571857285738574857585768577857885798580858185828583858485858586858785888589859085918592859385948595859685978598859986008601860286038604860586068607860886098610861186128613861486158616861786188619862086218622862386248625862686278628862986308631863286338634863586368637863886398640864186428643864486458646864786488649865086518652865386548655865686578658865986608661866286638664866586668667866886698670867186728673867486758676867786788679868086818682868386848685868686878688868986908691869286938694869586968697869886998700870187028703870487058706870787088709871087118712871387148715871687178718871987208721872287238724872587268727872887298730873187328733873487358736873787388739874087418742874387448745874687478748874987508751875287538754875587568757875887598760876187628763876487658766876787688769877087718772877387748775877687778778877987808781878287838784878587868787878887898790879187928793879487958796879787988799880088018802880388048805880688078808880988108811881288138814881588168817881888198820882188228823882488258826882788288829883088318832883388348835883688378838883988408841884288438844884588468847884888498850885188528853885488558856885788588859886088618862886388648865886688678868886988708871887288738874887588768877887888798880888188828883888488858886888788888889889088918892889388948895889688978898889989008901890289038904890589068907890889098910891189128913891489158916891789188919892089218922892389248925892689278928892989308931893289338934893589368937893889398940894189428943894489458946894789488949895089518952895389548955895689578958895989608961896289638964896589668967896889698970897189728973897489758976897789788979898089818982898389848985898689878988898989908991899289938994899589968997899889999000900190029003900490059006900790089009901090119012901390149015901690179018901990209021902290239024902590269027902890299030903190329033903490359036903790389039904090419042904390449045904690479048904990509051905290539054905590569057905890599060906190629063906490659066906790689069907090719072907390749075907690779078907990809081908290839084908590869087908890899090909190929093909490959096909790989099910091019102910391049105910691079108910991109111911291139114911591169117911891199120912191229123912491259126912791289129913091319132913391349135913691379138913991409141914291439144914591469147914891499150915191529153915491559156915791589159916091619162916391649165916691679168916991709171917291739174917591769177917891799180918191829183918491859186918791889189919091919192919391949195919691979198919992009201920292039204920592069207920892099210921192129213921492159216921792189219922092219222922392249225922692279228922992309231923292339234923592369237923892399240924192429243924492459246924792489249925092519252925392549255925692579258925992609261926292639264926592669267926892699270927192729273927492759276927792789279928092819282928392849285928692879288928992909291929292939294929592969297929892999300930193029303930493059306930793089309931093119312931393149315931693179318931993209321932293239324932593269327932893299330933193329333933493359336933793389339934093419342934393449345934693479348934993509351935293539354935593569357935893599360936193629363936493659366936793689369937093719372937393749375937693779378937993809381938293839384938593869387938893899390939193929393939493959396939793989399940094019402940394049405940694079408940994109411941294139414941594169417941894199420942194229423942494259426942794289429943094319432943394349435943694379438943994409441944294439444944594469447944894499450945194529453945494559456945794589459946094619462946394649465946694679468946994709471947294739474947594769477947894799480948194829483948494859486948794889489949094919492949394949495949694979498949995009501950295039504950595069507950895099510951195129513951495159516951795189519952095219522952395249525952695279528952995309531953295339534953595369537953895399540954195429543954495459546954795489549955095519552955395549555955695579558955995609561956295639564956595669567956895699570957195729573957495759576957795789579958095819582958395849585958695879588958995909591959295939594959595969597959895999600960196029603960496059606960796089609961096119612961396149615961696179618961996209621962296239624962596269627962896299630963196329633963496359636963796389639964096419642964396449645964696479648964996509651965296539654965596569657965896599660966196629663966496659666966796689669967096719672967396749675967696779678967996809681968296839684968596869687968896899690969196929693969496959696969796989699970097019702970397049705970697079708970997109711971297139714971597169717971897199720972197229723972497259726972797289729973097319732973397349735973697379738973997409741974297439744974597469747974897499750975197529753975497559756975797589759976097619762976397649765976697679768976997709771977297739774977597769777977897799780978197829783978497859786978797889789979097919792979397949795979697979798979998009801980298039804980598069807980898099810981198129813981498159816981798189819982098219822982398249825982698279828982998309831983298339834983598369837983898399840984198429843984498459846984798489849985098519852985398549855985698579858985998609861986298639864986598669867986898699870987198729873987498759876987798789879988098819882988398849885988698879888988998909891989298939894989598969897989898999900990199029903990499059906990799089909991099119912991399149915991699179918991999209921992299239924992599269927992899299930993199329933993499359936993799389939994099419942994399449945994699479948994999509951995299539954995599569957995899599960996199629963996499659966996799689969997099719972997399749975997699779978997999809981998299839984998599869987998899899990999199929993999499959996999799989999100001000110002100031000410005100061000710008100091001010011100121001310014100151001610017100181001910020100211002210023100241002510026100271002810029100301003110032100331003410035100361003710038100391004010041100421004310044100451004610047100481004910050100511005210053100541005510056100571005810059100601006110062100631006410065100661006710068100691007010071100721007310074100751007610077100781007910080100811008210083100841008510086100871008810089100901009110092100931009410095100961009710098100991010010101101021010310104101051010610107101081010910110101111011210113101141011510116101171011810119101201012110122101231012410125101261012710128101291013010131101321013310134101351013610137101381013910140101411014210143101441014510146101471014810149101501015110152101531015410155101561015710158101591016010161101621016310164101651016610167101681016910170101711017210173101741017510176101771017810179101801018110182101831018410185101861018710188101891019010191101921019310194101951019610197101981019910200102011020210203102041020510206102071020810209102101021110212102131021410215102161021710218102191022010221102221022310224102251022610227102281022910230102311023210233102341023510236102371023810239102401024110242102431024410245102461024710248102491025010251102521025310254102551025610257102581025910260102611026210263102641026510266102671026810269102701027110272102731027410275102761027710278102791028010281102821028310284102851028610287102881028910290102911029210293102941029510296102971029810299103001030110302103031030410305103061030710308103091031010311103121031310314103151031610317103181031910320103211032210323103241032510326103271032810329103301033110332103331033410335103361033710338103391034010341103421034310344103451034610347103481034910350103511035210353103541035510356103571035810359103601036110362103631036410365103661036710368103691037010371103721037310374103751037610377103781037910380103811038210383103841038510386103871038810389103901039110392103931039410395103961039710398103991040010401104021040310404104051040610407104081040910410104111041210413104141041510416104171041810419104201042110422104231042410425104261042710428104291043010431104321043310434104351043610437104381043910440104411044210443104441044510446104471044810449104501045110452104531045410455104561045710458104591046010461104621046310464104651046610467104681046910470104711047210473104741047510476104771047810479104801048110482104831048410485104861048710488104891049010491104921049310494104951049610497104981049910500105011050210503105041050510506105071050810509105101051110512105131051410515105161051710518105191052010521105221052310524105251052610527105281052910530105311053210533105341053510536105371053810539105401054110542105431054410545105461054710548105491055010551105521055310554105551055610557105581055910560105611056210563105641056510566105671056810569105701057110572105731057410575105761057710578105791058010581105821058310584105851058610587105881058910590105911059210593105941059510596105971059810599106001060110602106031060410605106061060710608106091061010611106121061310614106151061610617106181061910620106211062210623106241062510626
  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": "3de7ddc12d4e960ad6842d4f93a4171a",
  8. "packages": [
  9. {
  10. "name": "asm89/stack-cors",
  11. "version": "1.3.0",
  12. "source": {
  13. "type": "git",
  14. "url": "https://github.com/asm89/stack-cors.git",
  15. "reference": "b9c31def6a83f84b4d4a40d35996d375755f0e08"
  16. },
  17. "dist": {
  18. "type": "zip",
  19. "url": "https://api.github.com/repos/asm89/stack-cors/zipball/b9c31def6a83f84b4d4a40d35996d375755f0e08",
  20. "reference": "b9c31def6a83f84b4d4a40d35996d375755f0e08",
  21. "shasum": ""
  22. },
  23. "require": {
  24. "php": ">=5.5.9",
  25. "symfony/http-foundation": "~2.7|~3.0|~4.0|~5.0",
  26. "symfony/http-kernel": "~2.7|~3.0|~4.0|~5.0"
  27. },
  28. "require-dev": {
  29. "phpunit/phpunit": "^5.0 || ^4.8.10",
  30. "squizlabs/php_codesniffer": "^2.3"
  31. },
  32. "type": "library",
  33. "extra": {
  34. "branch-alias": {
  35. "dev-master": "1.2-dev"
  36. }
  37. },
  38. "autoload": {
  39. "psr-4": {
  40. "Asm89\\Stack\\": "src/Asm89/Stack/"
  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/1.3.0"
  62. },
  63. "time": "2019-12-24T22:41:47+00:00"
  64. },
  65. {
  66. "name": "chi-teck/drupal-code-generator",
  67. "version": "1.33.1",
  68. "source": {
  69. "type": "git",
  70. "url": "https://github.com/Chi-teck/drupal-code-generator.git",
  71. "reference": "5f814e980b6f9cf1ca8c74cc9385c3d81090d388"
  72. },
  73. "dist": {
  74. "type": "zip",
  75. "url": "https://api.github.com/repos/Chi-teck/drupal-code-generator/zipball/5f814e980b6f9cf1ca8c74cc9385c3d81090d388",
  76. "reference": "5f814e980b6f9cf1ca8c74cc9385c3d81090d388",
  77. "shasum": ""
  78. },
  79. "require": {
  80. "ext-json": "*",
  81. "php": ">=5.5.9",
  82. "symfony/console": "^3.4 || ^4.0",
  83. "symfony/filesystem": "^2.7 || ^3.4 || ^4.0",
  84. "twig/twig": "^1.41 || ^2.12"
  85. },
  86. "conflict": {
  87. "drush/drush": "< 10.3.2"
  88. },
  89. "bin": [
  90. "bin/dcg"
  91. ],
  92. "type": "library",
  93. "extra": {
  94. "branch-alias": {
  95. "dev-master": "1.x-dev"
  96. }
  97. },
  98. "autoload": {
  99. "files": [
  100. "src/bootstrap.php"
  101. ],
  102. "psr-4": {
  103. "DrupalCodeGenerator\\": "src"
  104. }
  105. },
  106. "notification-url": "https://packagist.org/downloads/",
  107. "license": [
  108. "GPL-2.0-or-later"
  109. ],
  110. "description": "Drupal code generator",
  111. "support": {
  112. "issues": "https://github.com/Chi-teck/drupal-code-generator/issues",
  113. "source": "https://github.com/Chi-teck/drupal-code-generator/tree/1.33.1"
  114. },
  115. "time": "2020-12-05T05:59:11+00:00"
  116. },
  117. {
  118. "name": "composer/installers",
  119. "version": "v1.12.0",
  120. "source": {
  121. "type": "git",
  122. "url": "https://github.com/composer/installers.git",
  123. "reference": "d20a64ed3c94748397ff5973488761b22f6d3f19"
  124. },
  125. "dist": {
  126. "type": "zip",
  127. "url": "https://api.github.com/repos/composer/installers/zipball/d20a64ed3c94748397ff5973488761b22f6d3f19",
  128. "reference": "d20a64ed3c94748397ff5973488761b22f6d3f19",
  129. "shasum": ""
  130. },
  131. "require": {
  132. "composer-plugin-api": "^1.0 || ^2.0"
  133. },
  134. "replace": {
  135. "roundcube/plugin-installer": "*",
  136. "shama/baton": "*"
  137. },
  138. "require-dev": {
  139. "composer/composer": "1.6.* || ^2.0",
  140. "composer/semver": "^1 || ^3",
  141. "phpstan/phpstan": "^0.12.55",
  142. "phpstan/phpstan-phpunit": "^0.12.16",
  143. "symfony/phpunit-bridge": "^4.2 || ^5",
  144. "symfony/process": "^2.3"
  145. },
  146. "type": "composer-plugin",
  147. "extra": {
  148. "class": "Composer\\Installers\\Plugin",
  149. "branch-alias": {
  150. "dev-main": "1.x-dev"
  151. }
  152. },
  153. "autoload": {
  154. "psr-4": {
  155. "Composer\\Installers\\": "src/Composer/Installers"
  156. }
  157. },
  158. "notification-url": "https://packagist.org/downloads/",
  159. "license": [
  160. "MIT"
  161. ],
  162. "authors": [
  163. {
  164. "name": "Kyle Robinson Young",
  165. "email": "kyle@dontkry.com",
  166. "homepage": "https://github.com/shama"
  167. }
  168. ],
  169. "description": "A multi-framework Composer library installer",
  170. "homepage": "https://composer.github.io/installers/",
  171. "keywords": [
  172. "Craft",
  173. "Dolibarr",
  174. "Eliasis",
  175. "Hurad",
  176. "ImageCMS",
  177. "Kanboard",
  178. "Lan Management System",
  179. "MODX Evo",
  180. "MantisBT",
  181. "Mautic",
  182. "Maya",
  183. "OXID",
  184. "Plentymarkets",
  185. "Porto",
  186. "RadPHP",
  187. "SMF",
  188. "Starbug",
  189. "Thelia",
  190. "Whmcs",
  191. "WolfCMS",
  192. "agl",
  193. "aimeos",
  194. "annotatecms",
  195. "attogram",
  196. "bitrix",
  197. "cakephp",
  198. "chef",
  199. "cockpit",
  200. "codeigniter",
  201. "concrete5",
  202. "croogo",
  203. "dokuwiki",
  204. "drupal",
  205. "eZ Platform",
  206. "elgg",
  207. "expressionengine",
  208. "fuelphp",
  209. "grav",
  210. "installer",
  211. "itop",
  212. "joomla",
  213. "known",
  214. "kohana",
  215. "laravel",
  216. "lavalite",
  217. "lithium",
  218. "magento",
  219. "majima",
  220. "mako",
  221. "mediawiki",
  222. "miaoxing",
  223. "modulework",
  224. "modx",
  225. "moodle",
  226. "osclass",
  227. "pantheon",
  228. "phpbb",
  229. "piwik",
  230. "ppi",
  231. "processwire",
  232. "puppet",
  233. "pxcms",
  234. "reindex",
  235. "roundcube",
  236. "shopware",
  237. "silverstripe",
  238. "sydes",
  239. "sylius",
  240. "symfony",
  241. "tastyigniter",
  242. "typo3",
  243. "wordpress",
  244. "yawik",
  245. "zend",
  246. "zikula"
  247. ],
  248. "support": {
  249. "issues": "https://github.com/composer/installers/issues",
  250. "source": "https://github.com/composer/installers/tree/v1.12.0"
  251. },
  252. "funding": [
  253. {
  254. "url": "https://packagist.com",
  255. "type": "custom"
  256. },
  257. {
  258. "url": "https://github.com/composer",
  259. "type": "github"
  260. },
  261. {
  262. "url": "https://tidelift.com/funding/github/packagist/composer/composer",
  263. "type": "tidelift"
  264. }
  265. ],
  266. "time": "2021-09-13T08:19:44+00:00"
  267. },
  268. {
  269. "name": "composer/semver",
  270. "version": "3.3.2",
  271. "source": {
  272. "type": "git",
  273. "url": "https://github.com/composer/semver.git",
  274. "reference": "3953f23262f2bff1919fc82183ad9acb13ff62c9"
  275. },
  276. "dist": {
  277. "type": "zip",
  278. "url": "https://api.github.com/repos/composer/semver/zipball/3953f23262f2bff1919fc82183ad9acb13ff62c9",
  279. "reference": "3953f23262f2bff1919fc82183ad9acb13ff62c9",
  280. "shasum": ""
  281. },
  282. "require": {
  283. "php": "^5.3.2 || ^7.0 || ^8.0"
  284. },
  285. "require-dev": {
  286. "phpstan/phpstan": "^1.4",
  287. "symfony/phpunit-bridge": "^4.2 || ^5"
  288. },
  289. "type": "library",
  290. "extra": {
  291. "branch-alias": {
  292. "dev-main": "3.x-dev"
  293. }
  294. },
  295. "autoload": {
  296. "psr-4": {
  297. "Composer\\Semver\\": "src"
  298. }
  299. },
  300. "notification-url": "https://packagist.org/downloads/",
  301. "license": [
  302. "MIT"
  303. ],
  304. "authors": [
  305. {
  306. "name": "Nils Adermann",
  307. "email": "naderman@naderman.de",
  308. "homepage": "http://www.naderman.de"
  309. },
  310. {
  311. "name": "Jordi Boggiano",
  312. "email": "j.boggiano@seld.be",
  313. "homepage": "http://seld.be"
  314. },
  315. {
  316. "name": "Rob Bast",
  317. "email": "rob.bast@gmail.com",
  318. "homepage": "http://robbast.nl"
  319. }
  320. ],
  321. "description": "Semver library that offers utilities, version constraint parsing and validation.",
  322. "keywords": [
  323. "semantic",
  324. "semver",
  325. "validation",
  326. "versioning"
  327. ],
  328. "support": {
  329. "irc": "irc://irc.freenode.org/composer",
  330. "issues": "https://github.com/composer/semver/issues",
  331. "source": "https://github.com/composer/semver/tree/3.3.2"
  332. },
  333. "funding": [
  334. {
  335. "url": "https://packagist.com",
  336. "type": "custom"
  337. },
  338. {
  339. "url": "https://github.com/composer",
  340. "type": "github"
  341. },
  342. {
  343. "url": "https://tidelift.com/funding/github/packagist/composer/composer",
  344. "type": "tidelift"
  345. }
  346. ],
  347. "time": "2022-04-01T19:23:25+00:00"
  348. },
  349. {
  350. "name": "consolidation/annotated-command",
  351. "version": "2.12.2",
  352. "source": {
  353. "type": "git",
  354. "url": "https://github.com/consolidation/annotated-command.git",
  355. "reference": "2472a23610cba1d86dcb783a81a21259473b059e"
  356. },
  357. "dist": {
  358. "type": "zip",
  359. "url": "https://api.github.com/repos/consolidation/annotated-command/zipball/2472a23610cba1d86dcb783a81a21259473b059e",
  360. "reference": "2472a23610cba1d86dcb783a81a21259473b059e",
  361. "shasum": ""
  362. },
  363. "require": {
  364. "consolidation/output-formatters": "^3.5.1",
  365. "php": ">=5.4.5",
  366. "psr/log": "^1",
  367. "symfony/console": "^2.8|^3|^4",
  368. "symfony/event-dispatcher": "^2.5|^3|^4",
  369. "symfony/finder": "^2.5|^3|^4|^5"
  370. },
  371. "require-dev": {
  372. "g1a/composer-test-scenarios": "^3",
  373. "php-coveralls/php-coveralls": "^1",
  374. "phpunit/phpunit": "^6",
  375. "squizlabs/php_codesniffer": "^2.7"
  376. },
  377. "type": "library",
  378. "extra": {
  379. "scenarios": {
  380. "finder5": {
  381. "require": {
  382. "symfony/finder": "^5"
  383. },
  384. "config": {
  385. "platform": {
  386. "php": "7.2.5"
  387. }
  388. }
  389. },
  390. "symfony4": {
  391. "require": {
  392. "symfony/console": "^4.0"
  393. },
  394. "config": {
  395. "platform": {
  396. "php": "7.1.3"
  397. }
  398. }
  399. },
  400. "symfony2": {
  401. "require": {
  402. "symfony/console": "^2.8"
  403. },
  404. "require-dev": {
  405. "phpunit/phpunit": "^4.8.36"
  406. },
  407. "remove": [
  408. "php-coveralls/php-coveralls"
  409. ],
  410. "config": {
  411. "platform": {
  412. "php": "5.4.8"
  413. }
  414. },
  415. "scenario-options": {
  416. "create-lockfile": "false"
  417. }
  418. },
  419. "phpunit4": {
  420. "require-dev": {
  421. "phpunit/phpunit": "^4.8.36"
  422. },
  423. "remove": [
  424. "php-coveralls/php-coveralls"
  425. ],
  426. "config": {
  427. "platform": {
  428. "php": "5.4.8"
  429. }
  430. }
  431. }
  432. },
  433. "branch-alias": {
  434. "dev-master": "2.x-dev"
  435. }
  436. },
  437. "autoload": {
  438. "psr-4": {
  439. "Consolidation\\AnnotatedCommand\\": "src"
  440. }
  441. },
  442. "notification-url": "https://packagist.org/downloads/",
  443. "license": [
  444. "MIT"
  445. ],
  446. "authors": [
  447. {
  448. "name": "Greg Anderson",
  449. "email": "greg.1.anderson@greenknowe.org"
  450. }
  451. ],
  452. "description": "Initialize Symfony Console commands from annotated command class methods.",
  453. "support": {
  454. "issues": "https://github.com/consolidation/annotated-command/issues",
  455. "source": "https://github.com/consolidation/annotated-command/tree/2.12.2"
  456. },
  457. "time": "2022-01-03T00:23:44+00:00"
  458. },
  459. {
  460. "name": "consolidation/config",
  461. "version": "1.2.1",
  462. "source": {
  463. "type": "git",
  464. "url": "https://github.com/consolidation/config.git",
  465. "reference": "cac1279bae7efb5c7fb2ca4c3ba4b8eb741a96c1"
  466. },
  467. "dist": {
  468. "type": "zip",
  469. "url": "https://api.github.com/repos/consolidation/config/zipball/cac1279bae7efb5c7fb2ca4c3ba4b8eb741a96c1",
  470. "reference": "cac1279bae7efb5c7fb2ca4c3ba4b8eb741a96c1",
  471. "shasum": ""
  472. },
  473. "require": {
  474. "dflydev/dot-access-data": "^1.1.0",
  475. "grasmash/expander": "^1",
  476. "php": ">=5.4.0"
  477. },
  478. "require-dev": {
  479. "g1a/composer-test-scenarios": "^3",
  480. "php-coveralls/php-coveralls": "^1",
  481. "phpunit/phpunit": "^5",
  482. "squizlabs/php_codesniffer": "2.*",
  483. "symfony/console": "^2.5|^3|^4",
  484. "symfony/yaml": "^2.8.11|^3|^4"
  485. },
  486. "suggest": {
  487. "symfony/yaml": "Required to use Consolidation\\Config\\Loader\\YamlConfigLoader"
  488. },
  489. "type": "library",
  490. "extra": {
  491. "scenarios": {
  492. "symfony4": {
  493. "require-dev": {
  494. "symfony/console": "^4.0"
  495. },
  496. "config": {
  497. "platform": {
  498. "php": "7.1.3"
  499. }
  500. }
  501. },
  502. "symfony2": {
  503. "require-dev": {
  504. "symfony/console": "^2.8",
  505. "symfony/event-dispatcher": "^2.8",
  506. "phpunit/phpunit": "^4.8.36"
  507. },
  508. "remove": [
  509. "php-coveralls/php-coveralls"
  510. ],
  511. "config": {
  512. "platform": {
  513. "php": "5.4.8"
  514. }
  515. }
  516. }
  517. },
  518. "branch-alias": {
  519. "dev-master": "1.x-dev"
  520. }
  521. },
  522. "autoload": {
  523. "psr-4": {
  524. "Consolidation\\Config\\": "src"
  525. }
  526. },
  527. "notification-url": "https://packagist.org/downloads/",
  528. "license": [
  529. "MIT"
  530. ],
  531. "authors": [
  532. {
  533. "name": "Greg Anderson",
  534. "email": "greg.1.anderson@greenknowe.org"
  535. }
  536. ],
  537. "description": "Provide configuration services for a commandline tool.",
  538. "support": {
  539. "issues": "https://github.com/consolidation/config/issues",
  540. "source": "https://github.com/consolidation/config/tree/master"
  541. },
  542. "time": "2019-03-03T19:37:04+00:00"
  543. },
  544. {
  545. "name": "consolidation/filter-via-dot-access-data",
  546. "version": "1.0.0",
  547. "source": {
  548. "type": "git",
  549. "url": "https://github.com/consolidation/filter-via-dot-access-data.git",
  550. "reference": "a53e96c6b9f7f042f5e085bf911f3493cea823c6"
  551. },
  552. "dist": {
  553. "type": "zip",
  554. "url": "https://api.github.com/repos/consolidation/filter-via-dot-access-data/zipball/a53e96c6b9f7f042f5e085bf911f3493cea823c6",
  555. "reference": "a53e96c6b9f7f042f5e085bf911f3493cea823c6",
  556. "shasum": ""
  557. },
  558. "require": {
  559. "dflydev/dot-access-data": "^1.1.0",
  560. "php": ">=5.5.0"
  561. },
  562. "require-dev": {
  563. "consolidation/robo": "^1.2.3",
  564. "g1a/composer-test-scenarios": "^3",
  565. "knplabs/github-api": "^2.7",
  566. "php-coveralls/php-coveralls": "^1",
  567. "php-http/guzzle6-adapter": "^1.1",
  568. "phpunit/phpunit": "^5",
  569. "squizlabs/php_codesniffer": "^2.8",
  570. "symfony/console": "^2.8|^3|^4"
  571. },
  572. "type": "library",
  573. "extra": {
  574. "scenarios": {
  575. "phpunit5": {
  576. "require-dev": {
  577. "phpunit/phpunit": "^5.7.27"
  578. },
  579. "remove": [
  580. "php-coveralls/php-coveralls"
  581. ],
  582. "config": {
  583. "platform": {
  584. "php": "5.6.33"
  585. }
  586. }
  587. }
  588. },
  589. "branch-alias": {
  590. "dev-master": "1.x-dev"
  591. }
  592. },
  593. "autoload": {
  594. "psr-4": {
  595. "Consolidation\\Filter\\": "src"
  596. }
  597. },
  598. "notification-url": "https://packagist.org/downloads/",
  599. "license": [
  600. "MIT"
  601. ],
  602. "authors": [
  603. {
  604. "name": "Greg Anderson",
  605. "email": "greg.1.anderson@greenknowe.org"
  606. }
  607. ],
  608. "description": "This project uses dflydev/dot-access-data to provide simple output filtering for applications built with annotated-command / Robo.",
  609. "support": {
  610. "source": "https://github.com/consolidation/filter-via-dot-access-data/tree/1.0.0"
  611. },
  612. "time": "2019-01-18T06:05:07+00:00"
  613. },
  614. {
  615. "name": "consolidation/log",
  616. "version": "1.1.1",
  617. "source": {
  618. "type": "git",
  619. "url": "https://github.com/consolidation/log.git",
  620. "reference": "b2e887325ee90abc96b0a8b7b474cd9e7c896e3a"
  621. },
  622. "dist": {
  623. "type": "zip",
  624. "url": "https://api.github.com/repos/consolidation/log/zipball/b2e887325ee90abc96b0a8b7b474cd9e7c896e3a",
  625. "reference": "b2e887325ee90abc96b0a8b7b474cd9e7c896e3a",
  626. "shasum": ""
  627. },
  628. "require": {
  629. "php": ">=5.4.5",
  630. "psr/log": "^1.0",
  631. "symfony/console": "^2.8|^3|^4"
  632. },
  633. "require-dev": {
  634. "g1a/composer-test-scenarios": "^3",
  635. "php-coveralls/php-coveralls": "^1",
  636. "phpunit/phpunit": "^6",
  637. "squizlabs/php_codesniffer": "^2"
  638. },
  639. "type": "library",
  640. "extra": {
  641. "scenarios": {
  642. "symfony4": {
  643. "require": {
  644. "symfony/console": "^4.0"
  645. },
  646. "config": {
  647. "platform": {
  648. "php": "7.1.3"
  649. }
  650. }
  651. },
  652. "symfony2": {
  653. "require": {
  654. "symfony/console": "^2.8"
  655. },
  656. "require-dev": {
  657. "phpunit/phpunit": "^4.8.36"
  658. },
  659. "remove": [
  660. "php-coveralls/php-coveralls"
  661. ],
  662. "config": {
  663. "platform": {
  664. "php": "5.4.8"
  665. }
  666. }
  667. },
  668. "phpunit4": {
  669. "require-dev": {
  670. "phpunit/phpunit": "^4.8.36"
  671. },
  672. "remove": [
  673. "php-coveralls/php-coveralls"
  674. ],
  675. "config": {
  676. "platform": {
  677. "php": "5.4.8"
  678. }
  679. }
  680. }
  681. },
  682. "branch-alias": {
  683. "dev-master": "1.x-dev"
  684. }
  685. },
  686. "autoload": {
  687. "psr-4": {
  688. "Consolidation\\Log\\": "src"
  689. }
  690. },
  691. "notification-url": "https://packagist.org/downloads/",
  692. "license": [
  693. "MIT"
  694. ],
  695. "authors": [
  696. {
  697. "name": "Greg Anderson",
  698. "email": "greg.1.anderson@greenknowe.org"
  699. }
  700. ],
  701. "description": "Improved Psr-3 / Psr\\Log logger based on Symfony Console components.",
  702. "support": {
  703. "issues": "https://github.com/consolidation/log/issues",
  704. "source": "https://github.com/consolidation/log/tree/master"
  705. },
  706. "time": "2019-01-01T17:30:51+00:00"
  707. },
  708. {
  709. "name": "consolidation/output-formatters",
  710. "version": "3.5.1",
  711. "source": {
  712. "type": "git",
  713. "url": "https://github.com/consolidation/output-formatters.git",
  714. "reference": "0d38f13051ef05c223a2bb8e962d668e24785196"
  715. },
  716. "dist": {
  717. "type": "zip",
  718. "url": "https://api.github.com/repos/consolidation/output-formatters/zipball/0d38f13051ef05c223a2bb8e962d668e24785196",
  719. "reference": "0d38f13051ef05c223a2bb8e962d668e24785196",
  720. "shasum": ""
  721. },
  722. "require": {
  723. "dflydev/dot-access-data": "^1.1.0",
  724. "php": ">=5.4.0",
  725. "symfony/console": "^2.8|^3|^4",
  726. "symfony/finder": "^2.5|^3|^4|^5"
  727. },
  728. "require-dev": {
  729. "g1a/composer-test-scenarios": "^3",
  730. "php-coveralls/php-coveralls": "^1",
  731. "phpunit/phpunit": "^5.7.27",
  732. "squizlabs/php_codesniffer": "^2.7",
  733. "symfony/var-dumper": "^2.8|^3|^4",
  734. "victorjonsson/markdowndocs": "^1.3"
  735. },
  736. "suggest": {
  737. "symfony/var-dumper": "For using the var_dump formatter"
  738. },
  739. "type": "library",
  740. "extra": {
  741. "scenarios": {
  742. "finder5": {
  743. "require": {
  744. "symfony/finder": "^5"
  745. },
  746. "config": {
  747. "platform": {
  748. "php": "7.2.5"
  749. }
  750. }
  751. },
  752. "symfony4": {
  753. "require": {
  754. "symfony/console": "^4.0"
  755. },
  756. "require-dev": {
  757. "phpunit/phpunit": "^6"
  758. },
  759. "config": {
  760. "platform": {
  761. "php": "7.1.3"
  762. }
  763. }
  764. },
  765. "symfony3": {
  766. "require": {
  767. "symfony/console": "^3.4",
  768. "symfony/finder": "^3.4",
  769. "symfony/var-dumper": "^3.4"
  770. },
  771. "config": {
  772. "platform": {
  773. "php": "5.6.32"
  774. }
  775. }
  776. },
  777. "symfony2": {
  778. "require": {
  779. "symfony/console": "^2.8"
  780. },
  781. "require-dev": {
  782. "phpunit/phpunit": "^4.8.36"
  783. },
  784. "remove": [
  785. "php-coveralls/php-coveralls"
  786. ],
  787. "config": {
  788. "platform": {
  789. "php": "5.4.8"
  790. }
  791. },
  792. "scenario-options": {
  793. "create-lockfile": "false"
  794. }
  795. }
  796. },
  797. "branch-alias": {
  798. "dev-master": "3.x-dev"
  799. }
  800. },
  801. "autoload": {
  802. "psr-4": {
  803. "Consolidation\\OutputFormatters\\": "src"
  804. }
  805. },
  806. "notification-url": "https://packagist.org/downloads/",
  807. "license": [
  808. "MIT"
  809. ],
  810. "authors": [
  811. {
  812. "name": "Greg Anderson",
  813. "email": "greg.1.anderson@greenknowe.org"
  814. }
  815. ],
  816. "description": "Format text by applying transformations provided by plug-in formatters.",
  817. "support": {
  818. "issues": "https://github.com/consolidation/output-formatters/issues",
  819. "source": "https://github.com/consolidation/output-formatters/tree/3.5.1"
  820. },
  821. "time": "2020-10-11T04:15:32+00:00"
  822. },
  823. {
  824. "name": "consolidation/robo",
  825. "version": "1.5.0",
  826. "source": {
  827. "type": "git",
  828. "url": "https://github.com/consolidation/Robo.git",
  829. "reference": "12bf6b608057604a283e9e597edfed36ba071631"
  830. },
  831. "dist": {
  832. "type": "zip",
  833. "url": "https://api.github.com/repos/consolidation/Robo/zipball/12bf6b608057604a283e9e597edfed36ba071631",
  834. "reference": "12bf6b608057604a283e9e597edfed36ba071631",
  835. "shasum": ""
  836. },
  837. "require": {
  838. "consolidation/annotated-command": "^2.12.1 || ^4.1",
  839. "consolidation/config": "^1.2.1",
  840. "consolidation/log": "^1.1.1 || ^2",
  841. "consolidation/output-formatters": "^3.5.1 || ^4.1",
  842. "consolidation/self-update": "^1.1.5 || ^2",
  843. "grasmash/yaml-expander": "^1.4",
  844. "league/container": "^2.4.1",
  845. "php": ">=5.5.0",
  846. "symfony/console": "^2.8 || ^3 || ^4",
  847. "symfony/event-dispatcher": "^2.5 || ^3 || ^4",
  848. "symfony/filesystem": "^2.5 || ^3 || ^4",
  849. "symfony/finder": "^2.5 || ^3 || ^4 || ^5",
  850. "symfony/process": "^2.5 || ^3 || ^4"
  851. },
  852. "replace": {
  853. "codegyre/robo": "< 1.0"
  854. },
  855. "require-dev": {
  856. "g1a/composer-test-scenarios": "^3",
  857. "natxet/cssmin": "3.0.4",
  858. "patchwork/jsqueeze": "^2",
  859. "pear/archive_tar": "^1.4.4",
  860. "php-coveralls/php-coveralls": "^1",
  861. "phpunit/phpunit": "^5.7.27",
  862. "squizlabs/php_codesniffer": "^3"
  863. },
  864. "suggest": {
  865. "henrikbjorn/lurker": "For monitoring filesystem changes in taskWatch",
  866. "natxet/CssMin": "For minifying CSS files in taskMinify",
  867. "patchwork/jsqueeze": "For minifying JS files in taskMinify",
  868. "pear/archive_tar": "Allows tar archives to be created and extracted in taskPack and taskExtract, respectively."
  869. },
  870. "bin": [
  871. "robo"
  872. ],
  873. "type": "library",
  874. "extra": {
  875. "scenarios": {
  876. "finder5": {
  877. "require": {
  878. "symfony/finder": "^5"
  879. },
  880. "config": {
  881. "platform": {
  882. "php": "7.2.5"
  883. }
  884. }
  885. },
  886. "symfony4": {
  887. "require": {
  888. "symfony/console": "^4"
  889. },
  890. "config": {
  891. "platform": {
  892. "php": "7.1.3"
  893. }
  894. }
  895. },
  896. "symfony2": {
  897. "require": {
  898. "symfony/console": "^2.8"
  899. },
  900. "require-dev": {
  901. "phpunit/phpunit": "^4.8.36"
  902. },
  903. "remove": [
  904. "php-coveralls/php-coveralls"
  905. ],
  906. "config": {
  907. "platform": {
  908. "php": "5.5.9"
  909. }
  910. },
  911. "scenario-options": {
  912. "create-lockfile": "false"
  913. }
  914. }
  915. },
  916. "branch-alias": {
  917. "dev-master": "1.x-dev"
  918. }
  919. },
  920. "autoload": {
  921. "psr-4": {
  922. "Robo\\": "src"
  923. }
  924. },
  925. "notification-url": "https://packagist.org/downloads/",
  926. "license": [
  927. "MIT"
  928. ],
  929. "authors": [
  930. {
  931. "name": "Davert",
  932. "email": "davert.php@resend.cc"
  933. }
  934. ],
  935. "description": "Modern task runner",
  936. "support": {
  937. "issues": "https://github.com/consolidation/Robo/issues",
  938. "source": "https://github.com/consolidation/Robo/tree/1.5.0"
  939. },
  940. "time": "2021-10-08T03:51:31+00:00"
  941. },
  942. {
  943. "name": "consolidation/self-update",
  944. "version": "1.2.0",
  945. "source": {
  946. "type": "git",
  947. "url": "https://github.com/consolidation/self-update.git",
  948. "reference": "dba6b2c0708f20fa3ba8008a2353b637578849b4"
  949. },
  950. "dist": {
  951. "type": "zip",
  952. "url": "https://api.github.com/repos/consolidation/self-update/zipball/dba6b2c0708f20fa3ba8008a2353b637578849b4",
  953. "reference": "dba6b2c0708f20fa3ba8008a2353b637578849b4",
  954. "shasum": ""
  955. },
  956. "require": {
  957. "php": ">=5.5.0",
  958. "symfony/console": "^2.8|^3|^4|^5",
  959. "symfony/filesystem": "^2.5|^3|^4|^5"
  960. },
  961. "bin": [
  962. "scripts/release"
  963. ],
  964. "type": "library",
  965. "extra": {
  966. "branch-alias": {
  967. "dev-master": "1.x-dev"
  968. }
  969. },
  970. "autoload": {
  971. "psr-4": {
  972. "SelfUpdate\\": "src"
  973. }
  974. },
  975. "notification-url": "https://packagist.org/downloads/",
  976. "license": [
  977. "MIT"
  978. ],
  979. "authors": [
  980. {
  981. "name": "Alexander Menk",
  982. "email": "menk@mestrona.net"
  983. },
  984. {
  985. "name": "Greg Anderson",
  986. "email": "greg.1.anderson@greenknowe.org"
  987. }
  988. ],
  989. "description": "Provides a self:update command for Symfony Console applications.",
  990. "support": {
  991. "issues": "https://github.com/consolidation/self-update/issues",
  992. "source": "https://github.com/consolidation/self-update/tree/1.2.0"
  993. },
  994. "time": "2020-04-13T02:49:20+00:00"
  995. },
  996. {
  997. "name": "consolidation/site-alias",
  998. "version": "3.1.7",
  999. "source": {
  1000. "type": "git",
  1001. "url": "https://github.com/consolidation/site-alias.git",
  1002. "reference": "3b6519592c7e8557423f935806cd73adf69ed6c7"
  1003. },
  1004. "dist": {
  1005. "type": "zip",
  1006. "url": "https://api.github.com/repos/consolidation/site-alias/zipball/3b6519592c7e8557423f935806cd73adf69ed6c7",
  1007. "reference": "3b6519592c7e8557423f935806cd73adf69ed6c7",
  1008. "shasum": ""
  1009. },
  1010. "require": {
  1011. "consolidation/config": "^1.2.1 || ^2",
  1012. "php": ">=5.5.0",
  1013. "symfony/filesystem": "^4.4 || ^5.4 || ^6",
  1014. "symfony/finder": "~2.3 || ^3 || ^4.4 || ^5 || ^6",
  1015. "webmozart/path-util": "^2.3"
  1016. },
  1017. "require-dev": {
  1018. "php-coveralls/php-coveralls": "^2.4.2",
  1019. "phpunit/phpunit": ">=7",
  1020. "squizlabs/php_codesniffer": "^3",
  1021. "symfony/var-dumper": "^4",
  1022. "yoast/phpunit-polyfills": "^0.2.0"
  1023. },
  1024. "type": "library",
  1025. "extra": {
  1026. "branch-alias": {
  1027. "dev-main": "3.x-dev"
  1028. }
  1029. },
  1030. "autoload": {
  1031. "psr-4": {
  1032. "Consolidation\\SiteAlias\\": "src"
  1033. }
  1034. },
  1035. "notification-url": "https://packagist.org/downloads/",
  1036. "license": [
  1037. "MIT"
  1038. ],
  1039. "authors": [
  1040. {
  1041. "name": "Greg Anderson",
  1042. "email": "greg.1.anderson@greenknowe.org"
  1043. },
  1044. {
  1045. "name": "Moshe Weitzman",
  1046. "email": "weitzman@tejasa.com"
  1047. }
  1048. ],
  1049. "description": "Manage alias records for local and remote sites.",
  1050. "support": {
  1051. "issues": "https://github.com/consolidation/site-alias/issues",
  1052. "source": "https://github.com/consolidation/site-alias/tree/3.1.7"
  1053. },
  1054. "time": "2022-10-15T01:21:09+00:00"
  1055. },
  1056. {
  1057. "name": "consolidation/site-process",
  1058. "version": "4.2.1",
  1059. "source": {
  1060. "type": "git",
  1061. "url": "https://github.com/consolidation/site-process.git",
  1062. "reference": "ee3bf69001694b2117cc2f96c2ef70d8d45f1234"
  1063. },
  1064. "dist": {
  1065. "type": "zip",
  1066. "url": "https://api.github.com/repos/consolidation/site-process/zipball/ee3bf69001694b2117cc2f96c2ef70d8d45f1234",
  1067. "reference": "ee3bf69001694b2117cc2f96c2ef70d8d45f1234",
  1068. "shasum": ""
  1069. },
  1070. "require": {
  1071. "consolidation/config": "^1.2.1 || ^2",
  1072. "consolidation/site-alias": "^3 || ^4",
  1073. "php": ">=7.1.3",
  1074. "symfony/console": "^2.8.52 || ^3 || ^4.4 || ^5",
  1075. "symfony/process": "^4.3.4 || ^5"
  1076. },
  1077. "require-dev": {
  1078. "phpunit/phpunit": "^7.5.20 || ^8.5.14",
  1079. "squizlabs/php_codesniffer": "^3",
  1080. "yoast/phpunit-polyfills": "^0.2.0"
  1081. },
  1082. "type": "library",
  1083. "extra": {
  1084. "branch-alias": {
  1085. "dev-main": "4.x-dev"
  1086. }
  1087. },
  1088. "autoload": {
  1089. "psr-4": {
  1090. "Consolidation\\SiteProcess\\": "src"
  1091. }
  1092. },
  1093. "notification-url": "https://packagist.org/downloads/",
  1094. "license": [
  1095. "MIT"
  1096. ],
  1097. "authors": [
  1098. {
  1099. "name": "Greg Anderson",
  1100. "email": "greg.1.anderson@greenknowe.org"
  1101. },
  1102. {
  1103. "name": "Moshe Weitzman",
  1104. "email": "weitzman@tejasa.com"
  1105. }
  1106. ],
  1107. "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.",
  1108. "support": {
  1109. "issues": "https://github.com/consolidation/site-process/issues",
  1110. "source": "https://github.com/consolidation/site-process/tree/4.2.1"
  1111. },
  1112. "time": "2022-10-18T13:19:35+00:00"
  1113. },
  1114. {
  1115. "name": "cweagans/composer-patches",
  1116. "version": "1.7.3",
  1117. "source": {
  1118. "type": "git",
  1119. "url": "https://github.com/cweagans/composer-patches.git",
  1120. "reference": "e190d4466fe2b103a55467dfa83fc2fecfcaf2db"
  1121. },
  1122. "dist": {
  1123. "type": "zip",
  1124. "url": "https://api.github.com/repos/cweagans/composer-patches/zipball/e190d4466fe2b103a55467dfa83fc2fecfcaf2db",
  1125. "reference": "e190d4466fe2b103a55467dfa83fc2fecfcaf2db",
  1126. "shasum": ""
  1127. },
  1128. "require": {
  1129. "composer-plugin-api": "^1.0 || ^2.0",
  1130. "php": ">=5.3.0"
  1131. },
  1132. "require-dev": {
  1133. "composer/composer": "~1.0 || ~2.0",
  1134. "phpunit/phpunit": "~4.6"
  1135. },
  1136. "type": "composer-plugin",
  1137. "extra": {
  1138. "class": "cweagans\\Composer\\Patches"
  1139. },
  1140. "autoload": {
  1141. "psr-4": {
  1142. "cweagans\\Composer\\": "src"
  1143. }
  1144. },
  1145. "notification-url": "https://packagist.org/downloads/",
  1146. "license": [
  1147. "BSD-3-Clause"
  1148. ],
  1149. "authors": [
  1150. {
  1151. "name": "Cameron Eagans",
  1152. "email": "me@cweagans.net"
  1153. }
  1154. ],
  1155. "description": "Provides a way to patch Composer packages.",
  1156. "support": {
  1157. "issues": "https://github.com/cweagans/composer-patches/issues",
  1158. "source": "https://github.com/cweagans/composer-patches/tree/1.7.3"
  1159. },
  1160. "time": "2022-12-20T22:53:13+00:00"
  1161. },
  1162. {
  1163. "name": "dflydev/dot-access-data",
  1164. "version": "v1.1.0",
  1165. "source": {
  1166. "type": "git",
  1167. "url": "https://github.com/dflydev/dflydev-dot-access-data.git",
  1168. "reference": "3fbd874921ab2c041e899d044585a2ab9795df8a"
  1169. },
  1170. "dist": {
  1171. "type": "zip",
  1172. "url": "https://api.github.com/repos/dflydev/dflydev-dot-access-data/zipball/3fbd874921ab2c041e899d044585a2ab9795df8a",
  1173. "reference": "3fbd874921ab2c041e899d044585a2ab9795df8a",
  1174. "shasum": ""
  1175. },
  1176. "require": {
  1177. "php": ">=5.3.2"
  1178. },
  1179. "type": "library",
  1180. "extra": {
  1181. "branch-alias": {
  1182. "dev-master": "1.0-dev"
  1183. }
  1184. },
  1185. "autoload": {
  1186. "psr-0": {
  1187. "Dflydev\\DotAccessData": "src"
  1188. }
  1189. },
  1190. "notification-url": "https://packagist.org/downloads/",
  1191. "license": [
  1192. "MIT"
  1193. ],
  1194. "authors": [
  1195. {
  1196. "name": "Dragonfly Development Inc.",
  1197. "email": "info@dflydev.com",
  1198. "homepage": "http://dflydev.com"
  1199. },
  1200. {
  1201. "name": "Beau Simensen",
  1202. "email": "beau@dflydev.com",
  1203. "homepage": "http://beausimensen.com"
  1204. },
  1205. {
  1206. "name": "Carlos Frutos",
  1207. "email": "carlos@kiwing.it",
  1208. "homepage": "https://github.com/cfrutos"
  1209. }
  1210. ],
  1211. "description": "Given a deep data structure, access data by dot notation.",
  1212. "homepage": "https://github.com/dflydev/dflydev-dot-access-data",
  1213. "keywords": [
  1214. "access",
  1215. "data",
  1216. "dot",
  1217. "notation"
  1218. ],
  1219. "support": {
  1220. "issues": "https://github.com/dflydev/dflydev-dot-access-data/issues",
  1221. "source": "https://github.com/dflydev/dflydev-dot-access-data/tree/master"
  1222. },
  1223. "time": "2017-01-20T21:14:22+00:00"
  1224. },
  1225. {
  1226. "name": "doctrine/annotations",
  1227. "version": "1.13.3",
  1228. "source": {
  1229. "type": "git",
  1230. "url": "https://github.com/doctrine/annotations.git",
  1231. "reference": "648b0343343565c4a056bfc8392201385e8d89f0"
  1232. },
  1233. "dist": {
  1234. "type": "zip",
  1235. "url": "https://api.github.com/repos/doctrine/annotations/zipball/648b0343343565c4a056bfc8392201385e8d89f0",
  1236. "reference": "648b0343343565c4a056bfc8392201385e8d89f0",
  1237. "shasum": ""
  1238. },
  1239. "require": {
  1240. "doctrine/lexer": "1.*",
  1241. "ext-tokenizer": "*",
  1242. "php": "^7.1 || ^8.0",
  1243. "psr/cache": "^1 || ^2 || ^3"
  1244. },
  1245. "require-dev": {
  1246. "doctrine/cache": "^1.11 || ^2.0",
  1247. "doctrine/coding-standard": "^6.0 || ^8.1",
  1248. "phpstan/phpstan": "^1.4.10 || ^1.8.0",
  1249. "phpunit/phpunit": "^7.5 || ^8.0 || ^9.1.5",
  1250. "symfony/cache": "^4.4 || ^5.2",
  1251. "vimeo/psalm": "^4.10"
  1252. },
  1253. "type": "library",
  1254. "autoload": {
  1255. "psr-4": {
  1256. "Doctrine\\Common\\Annotations\\": "lib/Doctrine/Common/Annotations"
  1257. }
  1258. },
  1259. "notification-url": "https://packagist.org/downloads/",
  1260. "license": [
  1261. "MIT"
  1262. ],
  1263. "authors": [
  1264. {
  1265. "name": "Guilherme Blanco",
  1266. "email": "guilhermeblanco@gmail.com"
  1267. },
  1268. {
  1269. "name": "Roman Borschel",
  1270. "email": "roman@code-factory.org"
  1271. },
  1272. {
  1273. "name": "Benjamin Eberlei",
  1274. "email": "kontakt@beberlei.de"
  1275. },
  1276. {
  1277. "name": "Jonathan Wage",
  1278. "email": "jonwage@gmail.com"
  1279. },
  1280. {
  1281. "name": "Johannes Schmitt",
  1282. "email": "schmittjoh@gmail.com"
  1283. }
  1284. ],
  1285. "description": "Docblock Annotations Parser",
  1286. "homepage": "https://www.doctrine-project.org/projects/annotations.html",
  1287. "keywords": [
  1288. "annotations",
  1289. "docblock",
  1290. "parser"
  1291. ],
  1292. "support": {
  1293. "issues": "https://github.com/doctrine/annotations/issues",
  1294. "source": "https://github.com/doctrine/annotations/tree/1.13.3"
  1295. },
  1296. "time": "2022-07-02T10:48:51+00:00"
  1297. },
  1298. {
  1299. "name": "doctrine/common",
  1300. "version": "3.4.4",
  1301. "source": {
  1302. "type": "git",
  1303. "url": "https://github.com/doctrine/common.git",
  1304. "reference": "0aad4b7ab7ce8c6602dfbb1e1a24581275fb9d1a"
  1305. },
  1306. "dist": {
  1307. "type": "zip",
  1308. "url": "https://api.github.com/repos/doctrine/common/zipball/0aad4b7ab7ce8c6602dfbb1e1a24581275fb9d1a",
  1309. "reference": "0aad4b7ab7ce8c6602dfbb1e1a24581275fb9d1a",
  1310. "shasum": ""
  1311. },
  1312. "require": {
  1313. "doctrine/persistence": "^2.0 || ^3.0",
  1314. "php": "^7.1 || ^8.0"
  1315. },
  1316. "require-dev": {
  1317. "doctrine/coding-standard": "^9.0 || ^10.0",
  1318. "doctrine/collections": "^1",
  1319. "phpstan/phpstan": "^1.4.1",
  1320. "phpstan/phpstan-phpunit": "^1",
  1321. "phpunit/phpunit": "^7.5.20 || ^8.5 || ^9.0",
  1322. "squizlabs/php_codesniffer": "^3.0",
  1323. "symfony/phpunit-bridge": "^6.1",
  1324. "vimeo/psalm": "^4.4"
  1325. },
  1326. "type": "library",
  1327. "autoload": {
  1328. "psr-4": {
  1329. "Doctrine\\Common\\": "src"
  1330. }
  1331. },
  1332. "notification-url": "https://packagist.org/downloads/",
  1333. "license": [
  1334. "MIT"
  1335. ],
  1336. "authors": [
  1337. {
  1338. "name": "Guilherme Blanco",
  1339. "email": "guilhermeblanco@gmail.com"
  1340. },
  1341. {
  1342. "name": "Roman Borschel",
  1343. "email": "roman@code-factory.org"
  1344. },
  1345. {
  1346. "name": "Benjamin Eberlei",
  1347. "email": "kontakt@beberlei.de"
  1348. },
  1349. {
  1350. "name": "Jonathan Wage",
  1351. "email": "jonwage@gmail.com"
  1352. },
  1353. {
  1354. "name": "Johannes Schmitt",
  1355. "email": "schmittjoh@gmail.com"
  1356. },
  1357. {
  1358. "name": "Marco Pivetta",
  1359. "email": "ocramius@gmail.com"
  1360. }
  1361. ],
  1362. "description": "PHP Doctrine Common project is a library that provides additional functionality that other Doctrine projects depend on such as better reflection support, proxies and much more.",
  1363. "homepage": "https://www.doctrine-project.org/projects/common.html",
  1364. "keywords": [
  1365. "common",
  1366. "doctrine",
  1367. "php"
  1368. ],
  1369. "support": {
  1370. "issues": "https://github.com/doctrine/common/issues",
  1371. "source": "https://github.com/doctrine/common/tree/3.4.4"
  1372. },
  1373. "funding": [
  1374. {
  1375. "url": "https://www.doctrine-project.org/sponsorship.html",
  1376. "type": "custom"
  1377. },
  1378. {
  1379. "url": "https://www.patreon.com/phpdoctrine",
  1380. "type": "patreon"
  1381. },
  1382. {
  1383. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fcommon",
  1384. "type": "tidelift"
  1385. }
  1386. ],
  1387. "time": "2024-04-16T13:35:33+00:00"
  1388. },
  1389. {
  1390. "name": "doctrine/event-manager",
  1391. "version": "2.0.1",
  1392. "source": {
  1393. "type": "git",
  1394. "url": "https://github.com/doctrine/event-manager.git",
  1395. "reference": "b680156fa328f1dfd874fd48c7026c41570b9c6e"
  1396. },
  1397. "dist": {
  1398. "type": "zip",
  1399. "url": "https://api.github.com/repos/doctrine/event-manager/zipball/b680156fa328f1dfd874fd48c7026c41570b9c6e",
  1400. "reference": "b680156fa328f1dfd874fd48c7026c41570b9c6e",
  1401. "shasum": ""
  1402. },
  1403. "require": {
  1404. "php": "^8.1"
  1405. },
  1406. "conflict": {
  1407. "doctrine/common": "<2.9"
  1408. },
  1409. "require-dev": {
  1410. "doctrine/coding-standard": "^12",
  1411. "phpstan/phpstan": "^1.8.8",
  1412. "phpunit/phpunit": "^10.5",
  1413. "vimeo/psalm": "^5.24"
  1414. },
  1415. "type": "library",
  1416. "autoload": {
  1417. "psr-4": {
  1418. "Doctrine\\Common\\": "src"
  1419. }
  1420. },
  1421. "notification-url": "https://packagist.org/downloads/",
  1422. "license": [
  1423. "MIT"
  1424. ],
  1425. "authors": [
  1426. {
  1427. "name": "Guilherme Blanco",
  1428. "email": "guilhermeblanco@gmail.com"
  1429. },
  1430. {
  1431. "name": "Roman Borschel",
  1432. "email": "roman@code-factory.org"
  1433. },
  1434. {
  1435. "name": "Benjamin Eberlei",
  1436. "email": "kontakt@beberlei.de"
  1437. },
  1438. {
  1439. "name": "Jonathan Wage",
  1440. "email": "jonwage@gmail.com"
  1441. },
  1442. {
  1443. "name": "Johannes Schmitt",
  1444. "email": "schmittjoh@gmail.com"
  1445. },
  1446. {
  1447. "name": "Marco Pivetta",
  1448. "email": "ocramius@gmail.com"
  1449. }
  1450. ],
  1451. "description": "The Doctrine Event Manager is a simple PHP event system that was built to be used with the various Doctrine projects.",
  1452. "homepage": "https://www.doctrine-project.org/projects/event-manager.html",
  1453. "keywords": [
  1454. "event",
  1455. "event dispatcher",
  1456. "event manager",
  1457. "event system",
  1458. "events"
  1459. ],
  1460. "support": {
  1461. "issues": "https://github.com/doctrine/event-manager/issues",
  1462. "source": "https://github.com/doctrine/event-manager/tree/2.0.1"
  1463. },
  1464. "funding": [
  1465. {
  1466. "url": "https://www.doctrine-project.org/sponsorship.html",
  1467. "type": "custom"
  1468. },
  1469. {
  1470. "url": "https://www.patreon.com/phpdoctrine",
  1471. "type": "patreon"
  1472. },
  1473. {
  1474. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fevent-manager",
  1475. "type": "tidelift"
  1476. }
  1477. ],
  1478. "time": "2024-05-22T20:47:39+00:00"
  1479. },
  1480. {
  1481. "name": "doctrine/lexer",
  1482. "version": "1.2.3",
  1483. "source": {
  1484. "type": "git",
  1485. "url": "https://github.com/doctrine/lexer.git",
  1486. "reference": "c268e882d4dbdd85e36e4ad69e02dc284f89d229"
  1487. },
  1488. "dist": {
  1489. "type": "zip",
  1490. "url": "https://api.github.com/repos/doctrine/lexer/zipball/c268e882d4dbdd85e36e4ad69e02dc284f89d229",
  1491. "reference": "c268e882d4dbdd85e36e4ad69e02dc284f89d229",
  1492. "shasum": ""
  1493. },
  1494. "require": {
  1495. "php": "^7.1 || ^8.0"
  1496. },
  1497. "require-dev": {
  1498. "doctrine/coding-standard": "^9.0",
  1499. "phpstan/phpstan": "^1.3",
  1500. "phpunit/phpunit": "^7.5 || ^8.5 || ^9.5",
  1501. "vimeo/psalm": "^4.11"
  1502. },
  1503. "type": "library",
  1504. "autoload": {
  1505. "psr-4": {
  1506. "Doctrine\\Common\\Lexer\\": "lib/Doctrine/Common/Lexer"
  1507. }
  1508. },
  1509. "notification-url": "https://packagist.org/downloads/",
  1510. "license": [
  1511. "MIT"
  1512. ],
  1513. "authors": [
  1514. {
  1515. "name": "Guilherme Blanco",
  1516. "email": "guilhermeblanco@gmail.com"
  1517. },
  1518. {
  1519. "name": "Roman Borschel",
  1520. "email": "roman@code-factory.org"
  1521. },
  1522. {
  1523. "name": "Johannes Schmitt",
  1524. "email": "schmittjoh@gmail.com"
  1525. }
  1526. ],
  1527. "description": "PHP Doctrine Lexer parser library that can be used in Top-Down, Recursive Descent Parsers.",
  1528. "homepage": "https://www.doctrine-project.org/projects/lexer.html",
  1529. "keywords": [
  1530. "annotations",
  1531. "docblock",
  1532. "lexer",
  1533. "parser",
  1534. "php"
  1535. ],
  1536. "support": {
  1537. "issues": "https://github.com/doctrine/lexer/issues",
  1538. "source": "https://github.com/doctrine/lexer/tree/1.2.3"
  1539. },
  1540. "funding": [
  1541. {
  1542. "url": "https://www.doctrine-project.org/sponsorship.html",
  1543. "type": "custom"
  1544. },
  1545. {
  1546. "url": "https://www.patreon.com/phpdoctrine",
  1547. "type": "patreon"
  1548. },
  1549. {
  1550. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Flexer",
  1551. "type": "tidelift"
  1552. }
  1553. ],
  1554. "time": "2022-02-28T11:07:21+00:00"
  1555. },
  1556. {
  1557. "name": "doctrine/persistence",
  1558. "version": "3.3.3",
  1559. "source": {
  1560. "type": "git",
  1561. "url": "https://github.com/doctrine/persistence.git",
  1562. "reference": "b337726451f5d530df338fc7f68dee8781b49779"
  1563. },
  1564. "dist": {
  1565. "type": "zip",
  1566. "url": "https://api.github.com/repos/doctrine/persistence/zipball/b337726451f5d530df338fc7f68dee8781b49779",
  1567. "reference": "b337726451f5d530df338fc7f68dee8781b49779",
  1568. "shasum": ""
  1569. },
  1570. "require": {
  1571. "doctrine/event-manager": "^1 || ^2",
  1572. "php": "^7.2 || ^8.0",
  1573. "psr/cache": "^1.0 || ^2.0 || ^3.0"
  1574. },
  1575. "conflict": {
  1576. "doctrine/common": "<2.10"
  1577. },
  1578. "require-dev": {
  1579. "doctrine/coding-standard": "^12",
  1580. "doctrine/common": "^3.0",
  1581. "phpstan/phpstan": "1.11.1",
  1582. "phpstan/phpstan-phpunit": "^1",
  1583. "phpstan/phpstan-strict-rules": "^1.1",
  1584. "phpunit/phpunit": "^8.5 || ^9.5",
  1585. "symfony/cache": "^4.4 || ^5.4 || ^6.0",
  1586. "vimeo/psalm": "4.30.0 || 5.24.0"
  1587. },
  1588. "type": "library",
  1589. "autoload": {
  1590. "psr-4": {
  1591. "Doctrine\\Persistence\\": "src/Persistence"
  1592. }
  1593. },
  1594. "notification-url": "https://packagist.org/downloads/",
  1595. "license": [
  1596. "MIT"
  1597. ],
  1598. "authors": [
  1599. {
  1600. "name": "Guilherme Blanco",
  1601. "email": "guilhermeblanco@gmail.com"
  1602. },
  1603. {
  1604. "name": "Roman Borschel",
  1605. "email": "roman@code-factory.org"
  1606. },
  1607. {
  1608. "name": "Benjamin Eberlei",
  1609. "email": "kontakt@beberlei.de"
  1610. },
  1611. {
  1612. "name": "Jonathan Wage",
  1613. "email": "jonwage@gmail.com"
  1614. },
  1615. {
  1616. "name": "Johannes Schmitt",
  1617. "email": "schmittjoh@gmail.com"
  1618. },
  1619. {
  1620. "name": "Marco Pivetta",
  1621. "email": "ocramius@gmail.com"
  1622. }
  1623. ],
  1624. "description": "The Doctrine Persistence project is a set of shared interfaces and functionality that the different Doctrine object mappers share.",
  1625. "homepage": "https://www.doctrine-project.org/projects/persistence.html",
  1626. "keywords": [
  1627. "mapper",
  1628. "object",
  1629. "odm",
  1630. "orm",
  1631. "persistence"
  1632. ],
  1633. "support": {
  1634. "issues": "https://github.com/doctrine/persistence/issues",
  1635. "source": "https://github.com/doctrine/persistence/tree/3.3.3"
  1636. },
  1637. "funding": [
  1638. {
  1639. "url": "https://www.doctrine-project.org/sponsorship.html",
  1640. "type": "custom"
  1641. },
  1642. {
  1643. "url": "https://www.patreon.com/phpdoctrine",
  1644. "type": "patreon"
  1645. },
  1646. {
  1647. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fpersistence",
  1648. "type": "tidelift"
  1649. }
  1650. ],
  1651. "time": "2024-06-20T10:14:30+00:00"
  1652. },
  1653. {
  1654. "name": "doctrine/reflection",
  1655. "version": "1.2.4",
  1656. "source": {
  1657. "type": "git",
  1658. "url": "https://github.com/doctrine/reflection.git",
  1659. "reference": "6bcea3e81ab8b3d0abe5fde5300bbc8a968960c7"
  1660. },
  1661. "dist": {
  1662. "type": "zip",
  1663. "url": "https://api.github.com/repos/doctrine/reflection/zipball/6bcea3e81ab8b3d0abe5fde5300bbc8a968960c7",
  1664. "reference": "6bcea3e81ab8b3d0abe5fde5300bbc8a968960c7",
  1665. "shasum": ""
  1666. },
  1667. "require": {
  1668. "doctrine/annotations": "^1.0 || ^2.0",
  1669. "ext-tokenizer": "*",
  1670. "php": "^7.1 || ^8.0"
  1671. },
  1672. "conflict": {
  1673. "doctrine/common": "<2.9"
  1674. },
  1675. "require-dev": {
  1676. "doctrine/coding-standard": "^9",
  1677. "doctrine/common": "^3.3",
  1678. "phpstan/phpstan": "^1.4.10",
  1679. "phpstan/phpstan-phpunit": "^1",
  1680. "phpunit/phpunit": "^7.5 || ^8.5 || ^9.5"
  1681. },
  1682. "type": "library",
  1683. "autoload": {
  1684. "psr-4": {
  1685. "Doctrine\\Common\\": "lib/Doctrine/Common"
  1686. }
  1687. },
  1688. "notification-url": "https://packagist.org/downloads/",
  1689. "license": [
  1690. "MIT"
  1691. ],
  1692. "authors": [
  1693. {
  1694. "name": "Guilherme Blanco",
  1695. "email": "guilhermeblanco@gmail.com"
  1696. },
  1697. {
  1698. "name": "Roman Borschel",
  1699. "email": "roman@code-factory.org"
  1700. },
  1701. {
  1702. "name": "Benjamin Eberlei",
  1703. "email": "kontakt@beberlei.de"
  1704. },
  1705. {
  1706. "name": "Jonathan Wage",
  1707. "email": "jonwage@gmail.com"
  1708. },
  1709. {
  1710. "name": "Johannes Schmitt",
  1711. "email": "schmittjoh@gmail.com"
  1712. },
  1713. {
  1714. "name": "Marco Pivetta",
  1715. "email": "ocramius@gmail.com"
  1716. }
  1717. ],
  1718. "description": "The Doctrine Reflection project is a simple library used by the various Doctrine projects which adds some additional functionality on top of the reflection functionality that comes with PHP. It allows you to get the reflection information about classes, methods and properties statically.",
  1719. "homepage": "https://www.doctrine-project.org/projects/reflection.html",
  1720. "keywords": [
  1721. "reflection",
  1722. "static"
  1723. ],
  1724. "support": {
  1725. "issues": "https://github.com/doctrine/reflection/issues",
  1726. "source": "https://github.com/doctrine/reflection/tree/1.2.4"
  1727. },
  1728. "abandoned": "roave/better-reflection",
  1729. "time": "2023-07-27T18:11:59+00:00"
  1730. },
  1731. {
  1732. "name": "drupal/addtoany",
  1733. "version": "2.0.5",
  1734. "source": {
  1735. "type": "git",
  1736. "url": "https://git.drupalcode.org/project/addtoany.git",
  1737. "reference": "2.0.5"
  1738. },
  1739. "dist": {
  1740. "type": "zip",
  1741. "url": "https://ftp.drupal.org/files/projects/addtoany-2.0.5.zip",
  1742. "reference": "2.0.5",
  1743. "shasum": "b3b26968548c1605a641b12ff25d03edc8497df6"
  1744. },
  1745. "require": {
  1746. "drupal/core": "^9.4 || ^10.0"
  1747. },
  1748. "type": "drupal-module",
  1749. "extra": {
  1750. "drupal": {
  1751. "version": "2.0.5",
  1752. "datestamp": "1698825601",
  1753. "security-coverage": {
  1754. "status": "covered",
  1755. "message": "Covered by Drupal's security advisory policy"
  1756. }
  1757. }
  1758. },
  1759. "notification-url": "https://packages.drupal.org/8/downloads",
  1760. "license": [
  1761. "GPL-2.0-or-later"
  1762. ],
  1763. "authors": [
  1764. {
  1765. "name": "AddToAny",
  1766. "homepage": "https://www.drupal.org/user/2640913"
  1767. },
  1768. {
  1769. "name": "micropat",
  1770. "homepage": "https://www.drupal.org/user/260224"
  1771. }
  1772. ],
  1773. "description": "Share buttons for Drupal including the AddToAny universal share button, Facebook, Mastodon, Pinterest, WhatsApp and many more.",
  1774. "homepage": "https://www.drupal.org/project/addtoany",
  1775. "keywords": [
  1776. "Drupal"
  1777. ],
  1778. "support": {
  1779. "source": "https://git.drupalcode.org/project/addtoany",
  1780. "issues": "https://www.drupal.org/project/issues/addtoany"
  1781. }
  1782. },
  1783. {
  1784. "name": "drupal/admin_toolbar",
  1785. "version": "3.5.0",
  1786. "source": {
  1787. "type": "git",
  1788. "url": "https://git.drupalcode.org/project/admin_toolbar.git",
  1789. "reference": "3.5.0"
  1790. },
  1791. "dist": {
  1792. "type": "zip",
  1793. "url": "https://ftp.drupal.org/files/projects/admin_toolbar-3.5.0.zip",
  1794. "reference": "3.5.0",
  1795. "shasum": "099e8d4dc98e1d551b4f9cffdc39599eb8ad04e8"
  1796. },
  1797. "require": {
  1798. "drupal/core": "^9.5 || ^10 || ^11"
  1799. },
  1800. "require-dev": {
  1801. "drupal/admin_toolbar_tools": "*"
  1802. },
  1803. "type": "drupal-module",
  1804. "extra": {
  1805. "drupal": {
  1806. "version": "3.5.0",
  1807. "datestamp": "1722639094",
  1808. "security-coverage": {
  1809. "status": "covered",
  1810. "message": "Covered by Drupal's security advisory policy"
  1811. }
  1812. }
  1813. },
  1814. "notification-url": "https://packages.drupal.org/8/downloads",
  1815. "license": [
  1816. "GPL-2.0-or-later"
  1817. ],
  1818. "authors": [
  1819. {
  1820. "name": "Wilfrid Roze (eme)",
  1821. "homepage": "https://www.drupal.org/u/eme",
  1822. "role": "Maintainer"
  1823. },
  1824. {
  1825. "name": "Romain Jarraud (romainj)",
  1826. "homepage": "https://www.drupal.org/u/romainj",
  1827. "role": "Maintainer"
  1828. },
  1829. {
  1830. "name": "Adrian Cid Almaguer (adriancid)",
  1831. "homepage": "https://www.drupal.org/u/adriancid",
  1832. "email": "adriancid@gmail.com",
  1833. "role": "Maintainer"
  1834. },
  1835. {
  1836. "name": "Mohamed Anis Taktak (matio89)",
  1837. "homepage": "https://www.drupal.org/u/matio89",
  1838. "role": "Maintainer"
  1839. },
  1840. {
  1841. "name": "japerry",
  1842. "homepage": "https://www.drupal.org/user/45640"
  1843. },
  1844. {
  1845. "name": "matio89",
  1846. "homepage": "https://www.drupal.org/user/2320090"
  1847. },
  1848. {
  1849. "name": "musa.thomas",
  1850. "homepage": "https://www.drupal.org/user/1213824"
  1851. },
  1852. {
  1853. "name": "romainj",
  1854. "homepage": "https://www.drupal.org/user/370706"
  1855. }
  1856. ],
  1857. "description": "Provides a drop-down menu interface to the core Drupal Toolbar.",
  1858. "homepage": "http://drupal.org/project/admin_toolbar",
  1859. "keywords": [
  1860. "Drupal",
  1861. "Toolbar"
  1862. ],
  1863. "support": {
  1864. "source": "https://git.drupalcode.org/project/admin_toolbar",
  1865. "issues": "https://www.drupal.org/project/issues/admin_toolbar"
  1866. }
  1867. },
  1868. {
  1869. "name": "drupal/adminimal_theme",
  1870. "version": "1.6.0",
  1871. "source": {
  1872. "type": "git",
  1873. "url": "https://git.drupalcode.org/project/adminimal_theme.git",
  1874. "reference": "8.x-1.6"
  1875. },
  1876. "dist": {
  1877. "type": "zip",
  1878. "url": "https://ftp.drupal.org/files/projects/adminimal_theme-8.x-1.6.zip",
  1879. "reference": "8.x-1.6",
  1880. "shasum": "89132d0853388afe8dfd11fb83c69a48d8c13413"
  1881. },
  1882. "require": {
  1883. "drupal/core": "^8.8 || ^9"
  1884. },
  1885. "type": "drupal-theme",
  1886. "extra": {
  1887. "drupal": {
  1888. "version": "8.x-1.6",
  1889. "datestamp": "1602006937",
  1890. "security-coverage": {
  1891. "status": "covered",
  1892. "message": "Covered by Drupal's security advisory policy"
  1893. }
  1894. }
  1895. },
  1896. "notification-url": "https://packages.drupal.org/8/downloads",
  1897. "license": [
  1898. "GPL-2.0+"
  1899. ],
  1900. "authors": [
  1901. {
  1902. "name": "ANDiTKO",
  1903. "homepage": "https://www.drupal.org/user/1428124"
  1904. },
  1905. {
  1906. "name": "andrey.troeglazov",
  1907. "homepage": "https://www.drupal.org/user/3145389"
  1908. },
  1909. {
  1910. "name": "realityloop",
  1911. "homepage": "https://www.drupal.org/user/139189"
  1912. },
  1913. {
  1914. "name": "rjjakes",
  1915. "homepage": "https://www.drupal.org/user/3457245"
  1916. }
  1917. ],
  1918. "description": "Drupal administration theme with modern minimalist design.",
  1919. "homepage": "https://www.drupal.org/project/adminimal_theme",
  1920. "support": {
  1921. "source": "https://git.drupalcode.org/project/adminimal_theme",
  1922. "issues": "https://www.drupal.org/project/issues/adminimal_theme"
  1923. }
  1924. },
  1925. {
  1926. "name": "drupal/audiofield",
  1927. "version": "1.13.0",
  1928. "source": {
  1929. "type": "git",
  1930. "url": "https://git.drupalcode.org/project/audiofield.git",
  1931. "reference": "8.x-1.13"
  1932. },
  1933. "dist": {
  1934. "type": "zip",
  1935. "url": "https://ftp.drupal.org/files/projects/audiofield-8.x-1.13.zip",
  1936. "reference": "8.x-1.13",
  1937. "shasum": "85bb66d231b2f961728b559351d5dfd155b2c78c"
  1938. },
  1939. "require": {
  1940. "drupal/core": "^8 || ^9 || ^10"
  1941. },
  1942. "type": "drupal-module",
  1943. "extra": {
  1944. "drupal": {
  1945. "version": "8.x-1.13",
  1946. "datestamp": "1681143245",
  1947. "security-coverage": {
  1948. "status": "covered",
  1949. "message": "Covered by Drupal's security advisory policy"
  1950. }
  1951. },
  1952. "drush": {
  1953. "services": {
  1954. "drush.services.yml": "^9"
  1955. }
  1956. }
  1957. },
  1958. "notification-url": "https://packages.drupal.org/8/downloads",
  1959. "license": [
  1960. "GPL-2.0-or-later"
  1961. ],
  1962. "authors": [
  1963. {
  1964. "name": "Daniel Moberly",
  1965. "homepage": "https://www.drupal.org/u/danielmoberly",
  1966. "role": "Maintainer"
  1967. },
  1968. {
  1969. "name": "tamerzg",
  1970. "homepage": "https://www.drupal.org/user/464564"
  1971. }
  1972. ],
  1973. "description": "AudioField Module",
  1974. "homepage": "https://www.drupal.org/project/audiofield",
  1975. "support": {
  1976. "source": "https://git.drupalcode.org/project/audiofield",
  1977. "issues": "https://www.drupal.org/project/issues/audiofield"
  1978. }
  1979. },
  1980. {
  1981. "name": "drupal/autologout",
  1982. "version": "1.5.0",
  1983. "source": {
  1984. "type": "git",
  1985. "url": "https://git.drupalcode.org/project/autologout.git",
  1986. "reference": "8.x-1.5"
  1987. },
  1988. "dist": {
  1989. "type": "zip",
  1990. "url": "https://ftp.drupal.org/files/projects/autologout-8.x-1.5.zip",
  1991. "reference": "8.x-1.5",
  1992. "shasum": "1beb693f56eb119624dd270ee789db00eb1ce288"
  1993. },
  1994. "require": {
  1995. "drupal/core": "^9.2 || ^10 || ^11",
  1996. "drupal/js_cookie": "^1.0"
  1997. },
  1998. "type": "drupal-module",
  1999. "extra": {
  2000. "drupal": {
  2001. "version": "8.x-1.5",
  2002. "datestamp": "1716413630",
  2003. "security-coverage": {
  2004. "status": "covered",
  2005. "message": "Covered by Drupal's security advisory policy"
  2006. }
  2007. }
  2008. },
  2009. "notification-url": "https://packages.drupal.org/8/downloads",
  2010. "license": [
  2011. "GPL-2.0-or-later"
  2012. ],
  2013. "authors": [
  2014. {
  2015. "name": "ajits",
  2016. "homepage": "https://www.drupal.org/user/981944"
  2017. },
  2018. {
  2019. "name": "AjK",
  2020. "homepage": "https://www.drupal.org/user/39030"
  2021. },
  2022. {
  2023. "name": "boshtian",
  2024. "homepage": "https://www.drupal.org/user/1773456"
  2025. },
  2026. {
  2027. "name": "dandrews",
  2028. "homepage": "https://www.drupal.org/user/2014490"
  2029. },
  2030. {
  2031. "name": "darksnow",
  2032. "homepage": "https://www.drupal.org/user/391915"
  2033. },
  2034. {
  2035. "name": "japerry",
  2036. "homepage": "https://www.drupal.org/user/45640"
  2037. },
  2038. {
  2039. "name": "johnennew",
  2040. "homepage": "https://www.drupal.org/user/1150042"
  2041. },
  2042. {
  2043. "name": "jrglasgow",
  2044. "homepage": "https://www.drupal.org/user/36590"
  2045. },
  2046. {
  2047. "name": "kmasood",
  2048. "homepage": "https://www.drupal.org/user/1262860"
  2049. },
  2050. {
  2051. "name": "levelos",
  2052. "homepage": "https://www.drupal.org/user/54135"
  2053. },
  2054. {
  2055. "name": "prabeen.giri",
  2056. "homepage": "https://www.drupal.org/user/913078"
  2057. },
  2058. {
  2059. "name": "scott_earnest",
  2060. "homepage": "https://www.drupal.org/user/416158"
  2061. },
  2062. {
  2063. "name": "str8",
  2064. "homepage": "https://www.drupal.org/user/2865063"
  2065. }
  2066. ],
  2067. "description": "Adds automated timed logout.",
  2068. "homepage": "http://drupal.org/project/autologout",
  2069. "support": {
  2070. "source": "https://git.drupalcode.org/project/autologout",
  2071. "issues": "https://www.drupal.org/project/issues/autologout"
  2072. }
  2073. },
  2074. {
  2075. "name": "drupal/basic",
  2076. "version": "2.1.0",
  2077. "source": {
  2078. "type": "git",
  2079. "url": "https://git.drupalcode.org/project/basic.git",
  2080. "reference": "8.x-2.1"
  2081. },
  2082. "dist": {
  2083. "type": "zip",
  2084. "url": "https://ftp.drupal.org/files/projects/basic-8.x-2.1.zip",
  2085. "reference": "8.x-2.1",
  2086. "shasum": "2497b30bd419e6f49a72a1f80ab40b47582df4f5"
  2087. },
  2088. "require": {
  2089. "drupal/core": "^8.8 || ^9"
  2090. },
  2091. "type": "drupal-theme",
  2092. "extra": {
  2093. "drupal": {
  2094. "version": "8.x-2.1",
  2095. "datestamp": "1612916291",
  2096. "security-coverage": {
  2097. "status": "covered",
  2098. "message": "Covered by Drupal's security advisory policy"
  2099. }
  2100. }
  2101. },
  2102. "notification-url": "https://packages.drupal.org/8/downloads",
  2103. "license": [
  2104. "GPL-2.0+"
  2105. ],
  2106. "authors": [
  2107. {
  2108. "name": "Steve Krueger",
  2109. "homepage": "http://thejibe.com",
  2110. "email": "steve@thejibe.com",
  2111. "role": "Maintainer"
  2112. },
  2113. {
  2114. "name": "Joël Pittet",
  2115. "homepage": "https://www.drupal.org/u/joelpittet",
  2116. "email": "joel@pittet.ca",
  2117. "role": "Maintainer"
  2118. },
  2119. {
  2120. "name": "Leah Wagner",
  2121. "homepage": "http://thejibe.com",
  2122. "email": "leah@thejibe.com",
  2123. "role": "Maintainer"
  2124. },
  2125. {
  2126. "name": "Catherine Winters",
  2127. "homepage": "http://www.catherinewinters.com",
  2128. "email": "catherine@catherinewinters.com",
  2129. "role": "Maintainer"
  2130. },
  2131. {
  2132. "name": "Johannes Schmidt",
  2133. "homepage": "http://2tabs.com",
  2134. "email": "mail@2tabs.com",
  2135. "role": "Maintainer"
  2136. },
  2137. {
  2138. "name": "Chuck Kosman",
  2139. "homepage": "http://thejibe.com",
  2140. "email": "chuck@thejibe.com",
  2141. "role": "Maintainer"
  2142. },
  2143. {
  2144. "name": "SteveK",
  2145. "homepage": "https://www.drupal.org/user/111656"
  2146. }
  2147. ],
  2148. "description": "HTML5, SASS, Responsive grid starter theme.",
  2149. "homepage": "http://drupal.org/project/basic",
  2150. "support": {
  2151. "source": "http://cgit.drupalcode.org/basic",
  2152. "issues": "https://www.drupal.org/project/issues/basic",
  2153. "irc": "irc://irc.freenode.org/drupal-contribute"
  2154. }
  2155. },
  2156. {
  2157. "name": "drupal/better_messages",
  2158. "version": "2.0.2",
  2159. "source": {
  2160. "type": "git",
  2161. "url": "https://git.drupalcode.org/project/better_messages.git",
  2162. "reference": "2.0.2"
  2163. },
  2164. "dist": {
  2165. "type": "zip",
  2166. "url": "https://ftp.drupal.org/files/projects/better_messages-2.0.2.zip",
  2167. "reference": "2.0.2",
  2168. "shasum": "72340b2a0f5700032b1fdcd98fde72c3bcd69919"
  2169. },
  2170. "require": {
  2171. "drupal/core": "^9.2 || ^10 || ^11",
  2172. "drupal/jquery_ui_draggable": "*",
  2173. "drupal/jquery_ui_resizable": "*"
  2174. },
  2175. "type": "drupal-module",
  2176. "extra": {
  2177. "drupal": {
  2178. "version": "2.0.2",
  2179. "datestamp": "1724053555",
  2180. "security-coverage": {
  2181. "status": "covered",
  2182. "message": "Covered by Drupal's security advisory policy"
  2183. }
  2184. }
  2185. },
  2186. "notification-url": "https://packages.drupal.org/8/downloads",
  2187. "license": [
  2188. "GPL-2.0-or-later"
  2189. ],
  2190. "authors": [
  2191. {
  2192. "name": "bucefal91",
  2193. "homepage": "https://www.drupal.org/user/504128"
  2194. },
  2195. {
  2196. "name": "le72",
  2197. "homepage": "https://www.drupal.org/user/1866896"
  2198. },
  2199. {
  2200. "name": "mohammed j. razem",
  2201. "homepage": "https://www.drupal.org/user/255384"
  2202. },
  2203. {
  2204. "name": "usingsession",
  2205. "homepage": "https://www.drupal.org/user/3582050"
  2206. }
  2207. ],
  2208. "description": "This module adds simple functions to make Drupal messages look and act better.",
  2209. "homepage": "https://www.drupal.org/project/better_messages",
  2210. "support": {
  2211. "source": "https://git.drupalcode.org/project/better_messages"
  2212. }
  2213. },
  2214. {
  2215. "name": "drupal/bulkdelete",
  2216. "version": "dev-1.x",
  2217. "source": {
  2218. "type": "git",
  2219. "url": "https://git.drupalcode.org/project/bulkdelete.git",
  2220. "reference": "95a7ff49f152021be88ba562c247347ff36392c7"
  2221. },
  2222. "require": {
  2223. "drupal/core": "^8.7.7 || ^9 || ^10"
  2224. },
  2225. "type": "drupal-module",
  2226. "extra": {
  2227. "branch-alias": {
  2228. "dev-1.x": "1.x-dev"
  2229. },
  2230. "drupal": {
  2231. "version": "8.x-1.x-dev",
  2232. "datestamp": "1655322426",
  2233. "security-coverage": {
  2234. "status": "not-covered",
  2235. "message": "Dev releases are not covered by Drupal security advisories."
  2236. }
  2237. }
  2238. },
  2239. "notification-url": "https://packages.drupal.org/8/downloads",
  2240. "license": [
  2241. "GPL-2.0-or-later"
  2242. ],
  2243. "authors": [
  2244. {
  2245. "name": "Kars-T",
  2246. "homepage": "https://www.drupal.org/user/224499"
  2247. },
  2248. {
  2249. "name": "Rahul Seth",
  2250. "homepage": "https://www.drupal.org/user/2694359"
  2251. },
  2252. {
  2253. "name": "adriancid",
  2254. "homepage": "https://www.drupal.org/user/1962106"
  2255. },
  2256. {
  2257. "name": "robertDouglass",
  2258. "homepage": "https://www.drupal.org/user/5449"
  2259. }
  2260. ],
  2261. "description": "Adds an administrative option to bulk delete nodes by content type using the batch API.",
  2262. "homepage": "https://www.drupal.org/project/bulkdelete",
  2263. "support": {
  2264. "source": "https://git.drupalcode.org/project/bulkdelete"
  2265. }
  2266. },
  2267. {
  2268. "name": "drupal/color_field",
  2269. "version": "3.0.1",
  2270. "source": {
  2271. "type": "git",
  2272. "url": "https://git.drupalcode.org/project/color_field.git",
  2273. "reference": "3.0.1"
  2274. },
  2275. "dist": {
  2276. "type": "zip",
  2277. "url": "https://ftp.drupal.org/files/projects/color_field-3.0.1.zip",
  2278. "reference": "3.0.1",
  2279. "shasum": "fd2f75db74063f817d81a537221fa1c8398e4d8f"
  2280. },
  2281. "require": {
  2282. "drupal/core": "^9 || ^10 || ^11"
  2283. },
  2284. "require-dev": {
  2285. "drupal/core-recommended": "^9 || ^10",
  2286. "drupal/feeds": "^3.0@beta",
  2287. "drupal/token": "~1.3"
  2288. },
  2289. "suggest": {
  2290. "bower-asset/jquery-simple-color": "^v1.2.2: Provides JavaScript library necessary for the Color Grid widget",
  2291. "bower-asset/spectrum": "^1.8: Provides JavaScript library necessary for Spectrum widget."
  2292. },
  2293. "type": "drupal-module",
  2294. "extra": {
  2295. "drupal": {
  2296. "version": "3.0.1",
  2297. "datestamp": "1717506868",
  2298. "security-coverage": {
  2299. "status": "covered",
  2300. "message": "Covered by Drupal's security advisory policy"
  2301. }
  2302. }
  2303. },
  2304. "notification-url": "https://packages.drupal.org/8/downloads",
  2305. "license": [
  2306. "GPL-2.0-or-later"
  2307. ],
  2308. "authors": [
  2309. {
  2310. "name": "targoo",
  2311. "homepage": "https://www.drupal.org/user/431910",
  2312. "role": "Maintainer"
  2313. },
  2314. {
  2315. "name": "Nick Wilde",
  2316. "homepage": "https://www.drupal.org/user/nickwilde",
  2317. "role": "Maintainer"
  2318. },
  2319. {
  2320. "name": "targoo",
  2321. "homepage": "https://www.drupal.org/user/431910"
  2322. }
  2323. ],
  2324. "description": "Provides a color field type to store the color value and opacity",
  2325. "homepage": "https://www.drupal.org/project/color_field",
  2326. "support": {
  2327. "source": "https://git.drupalcode.org/project/color_field",
  2328. "issues": "https://www.drupal.org/project/issues/color_field?version=8.x"
  2329. }
  2330. },
  2331. {
  2332. "name": "drupal/config_devel",
  2333. "version": "1.9.0",
  2334. "source": {
  2335. "type": "git",
  2336. "url": "https://git.drupalcode.org/project/config_devel.git",
  2337. "reference": "8.x-1.9"
  2338. },
  2339. "dist": {
  2340. "type": "zip",
  2341. "url": "https://ftp.drupal.org/files/projects/config_devel-8.x-1.9.zip",
  2342. "reference": "8.x-1.9",
  2343. "shasum": "a9cb90575ec854b8d8adb4633a0ddc47c490ca87"
  2344. },
  2345. "require": {
  2346. "drupal/core": "^9.3 || ^10"
  2347. },
  2348. "type": "drupal-module",
  2349. "extra": {
  2350. "drupal": {
  2351. "version": "8.x-1.9",
  2352. "datestamp": "1678264813",
  2353. "security-coverage": {
  2354. "status": "covered",
  2355. "message": "Covered by Drupal's security advisory policy"
  2356. }
  2357. }
  2358. },
  2359. "notification-url": "https://packages.drupal.org/8/downloads",
  2360. "license": [
  2361. "GPL-2.0+"
  2362. ],
  2363. "authors": [
  2364. {
  2365. "name": "alexpott",
  2366. "homepage": "https://www.drupal.org/user/157725"
  2367. },
  2368. {
  2369. "name": "benjy",
  2370. "homepage": "https://www.drupal.org/user/1852732"
  2371. },
  2372. {
  2373. "name": "chx",
  2374. "homepage": "https://www.drupal.org/user/9446"
  2375. },
  2376. {
  2377. "name": "joachim",
  2378. "homepage": "https://www.drupal.org/user/107701"
  2379. },
  2380. {
  2381. "name": "vijaycs85",
  2382. "homepage": "https://www.drupal.org/user/93488"
  2383. }
  2384. ],
  2385. "description": "Helps developers work with configuration.",
  2386. "homepage": "https://www.drupal.org/project/config_devel",
  2387. "support": {
  2388. "source": "https://git.drupalcode.org/project/config_devel"
  2389. }
  2390. },
  2391. {
  2392. "name": "drupal/config_filter",
  2393. "version": "1.12.0",
  2394. "source": {
  2395. "type": "git",
  2396. "url": "https://git.drupalcode.org/project/config_filter.git",
  2397. "reference": "8.x-1.12"
  2398. },
  2399. "dist": {
  2400. "type": "zip",
  2401. "url": "https://ftp.drupal.org/files/projects/config_filter-8.x-1.12.zip",
  2402. "reference": "8.x-1.12",
  2403. "shasum": "364581700ca3a298f62950ff37dd309d0bfb8381"
  2404. },
  2405. "require": {
  2406. "drupal/core": "^8.8 || ^9 || ^10"
  2407. },
  2408. "suggest": {
  2409. "drupal/config_split": "Split site configuration for different environments."
  2410. },
  2411. "type": "drupal-module",
  2412. "extra": {
  2413. "drupal": {
  2414. "version": "8.x-1.12",
  2415. "datestamp": "1698308496",
  2416. "security-coverage": {
  2417. "status": "covered",
  2418. "message": "Covered by Drupal's security advisory policy"
  2419. }
  2420. }
  2421. },
  2422. "notification-url": "https://packages.drupal.org/8/downloads",
  2423. "license": [
  2424. "GPL-2.0-or-later"
  2425. ],
  2426. "authors": [
  2427. {
  2428. "name": "Fabian Bircher",
  2429. "homepage": "https://www.drupal.org/u/bircher",
  2430. "email": "opensource@fabianbircher.com",
  2431. "role": "Maintainer"
  2432. },
  2433. {
  2434. "name": "Nuvole Web",
  2435. "homepage": "http://nuvole.org",
  2436. "email": "info@nuvole.org",
  2437. "role": "Maintainer"
  2438. },
  2439. {
  2440. "name": "pescetti",
  2441. "homepage": "https://www.drupal.org/user/436244"
  2442. }
  2443. ],
  2444. "description": "Config Filter allows other modules to interact with a ConfigStorage through filter plugins.",
  2445. "homepage": "https://www.drupal.org/project/config_filter",
  2446. "keywords": [
  2447. "Drupal",
  2448. "configuration",
  2449. "configuration management"
  2450. ],
  2451. "support": {
  2452. "source": "https://git.drupalcode.org/project/config_filter",
  2453. "issues": "https://www.drupal.org/project/issues/config_filter",
  2454. "slack": "https://drupal.slack.com/archives/C45342CDD"
  2455. }
  2456. },
  2457. {
  2458. "name": "drupal/config_ignore",
  2459. "version": "3.3.0",
  2460. "source": {
  2461. "type": "git",
  2462. "url": "https://git.drupalcode.org/project/config_ignore.git",
  2463. "reference": "8.x-3.3"
  2464. },
  2465. "dist": {
  2466. "type": "zip",
  2467. "url": "https://ftp.drupal.org/files/projects/config_ignore-8.x-3.3.zip",
  2468. "reference": "8.x-3.3",
  2469. "shasum": "4446811ecb023820a57c227d35c034e0d4363a70"
  2470. },
  2471. "require": {
  2472. "drupal/core": "^8.8 || ^9 || ^10 || ^11"
  2473. },
  2474. "require-dev": {
  2475. "drupal/config_filter": "^1.8||^2.2",
  2476. "drush/drush": "^10 || ^11 || ^12"
  2477. },
  2478. "type": "drupal-module",
  2479. "extra": {
  2480. "drupal": {
  2481. "version": "8.x-3.3",
  2482. "datestamp": "1713299496",
  2483. "security-coverage": {
  2484. "status": "covered",
  2485. "message": "Covered by Drupal's security advisory policy"
  2486. }
  2487. }
  2488. },
  2489. "notification-url": "https://packages.drupal.org/8/downloads",
  2490. "license": [
  2491. "GPL-2.0-or-later"
  2492. ],
  2493. "authors": [
  2494. {
  2495. "name": "Tommy Lynge Jørgensen",
  2496. "homepage": "https://www.drupal.org/u/tlyngej",
  2497. "email": "tlyngej@gmail.com",
  2498. "role": "Maintainer"
  2499. },
  2500. {
  2501. "name": "Fabian Bircher",
  2502. "homepage": "https://www.drupal.org/u/bircher",
  2503. "role": "Maintainer"
  2504. },
  2505. {
  2506. "name": "tlyngej",
  2507. "homepage": "https://www.drupal.org/user/413139"
  2508. }
  2509. ],
  2510. "description": "Ignore certain configuration during import and export.",
  2511. "homepage": "http://drupal.org/project/config_ignore",
  2512. "support": {
  2513. "source": "https://git.drupalcode.org/project/config_ignore",
  2514. "issues": "http://drupal.org/project/config_ignore"
  2515. }
  2516. },
  2517. {
  2518. "name": "drupal/config_update",
  2519. "version": "2.0.0-alpha4",
  2520. "source": {
  2521. "type": "git",
  2522. "url": "https://git.drupalcode.org/project/config_update.git",
  2523. "reference": "2.0.0-alpha4"
  2524. },
  2525. "dist": {
  2526. "type": "zip",
  2527. "url": "https://ftp.drupal.org/files/projects/config_update-2.0.0-alpha4.zip",
  2528. "reference": "2.0.0-alpha4",
  2529. "shasum": "d8ea528b0b3e24918356bb72bef61408f650aa8e"
  2530. },
  2531. "require": {
  2532. "drupal/core": "^9.4 || ^10 || ^11"
  2533. },
  2534. "type": "drupal-module",
  2535. "extra": {
  2536. "drupal": {
  2537. "version": "2.0.0-alpha4",
  2538. "datestamp": "1724596931",
  2539. "security-coverage": {
  2540. "status": "not-covered",
  2541. "message": "Alpha releases are not covered by Drupal security advisories."
  2542. }
  2543. }
  2544. },
  2545. "notification-url": "https://packages.drupal.org/8/downloads",
  2546. "license": [
  2547. "GPL-2.0-or-later"
  2548. ],
  2549. "authors": [
  2550. {
  2551. "name": "codebymikey",
  2552. "homepage": "https://www.drupal.org/user/3573206"
  2553. },
  2554. {
  2555. "name": "pasqualle",
  2556. "homepage": "https://www.drupal.org/user/80733"
  2557. },
  2558. {
  2559. "name": "vishalkhode",
  2560. "homepage": "https://www.drupal.org/user/2439156"
  2561. }
  2562. ],
  2563. "description": "Provides basic revert and update functionality for other modules.",
  2564. "homepage": "https://www.drupal.org/project/config_update",
  2565. "support": {
  2566. "source": "https://git.drupalcode.org/project/config_update"
  2567. }
  2568. },
  2569. {
  2570. "name": "drupal/context",
  2571. "version": "5.0.0-rc1",
  2572. "source": {
  2573. "type": "git",
  2574. "url": "https://git.drupalcode.org/project/context.git",
  2575. "reference": "5.0.0-rc1"
  2576. },
  2577. "dist": {
  2578. "type": "zip",
  2579. "url": "https://ftp.drupal.org/files/projects/context-5.0.0-rc1.zip",
  2580. "reference": "5.0.0-rc1",
  2581. "shasum": "ae1549bc5e5c75c0c6799b7b737d7391cfc5be73"
  2582. },
  2583. "require": {
  2584. "drupal/core": "^9.3 || ^10"
  2585. },
  2586. "type": "drupal-module",
  2587. "extra": {
  2588. "drupal": {
  2589. "version": "5.0.0-rc1",
  2590. "datestamp": "1677054769",
  2591. "security-coverage": {
  2592. "status": "not-covered",
  2593. "message": "RC releases are not covered by Drupal security advisories."
  2594. }
  2595. }
  2596. },
  2597. "notification-url": "https://packages.drupal.org/8/downloads",
  2598. "license": [
  2599. "MIT"
  2600. ],
  2601. "authors": [
  2602. {
  2603. "name": "Christoffer Palm",
  2604. "homepage": "http://www.oddhill.se/",
  2605. "email": "christoffer.palm@oddhill.se",
  2606. "role": "Developer"
  2607. },
  2608. {
  2609. "name": "boshtian",
  2610. "homepage": "https://www.drupal.org/user/1773456"
  2611. },
  2612. {
  2613. "name": "colan",
  2614. "homepage": "https://www.drupal.org/user/58704"
  2615. },
  2616. {
  2617. "name": "emanaton",
  2618. "homepage": "https://www.drupal.org/user/120853"
  2619. },
  2620. {
  2621. "name": "febbraro",
  2622. "homepage": "https://www.drupal.org/user/43670"
  2623. },
  2624. {
  2625. "name": "fizk",
  2626. "homepage": "https://www.drupal.org/user/473174"
  2627. },
  2628. {
  2629. "name": "hass",
  2630. "homepage": "https://www.drupal.org/user/85918"
  2631. },
  2632. {
  2633. "name": "hefox",
  2634. "homepage": "https://www.drupal.org/user/426416"
  2635. },
  2636. {
  2637. "name": "jmiccolis",
  2638. "homepage": "https://www.drupal.org/user/31731"
  2639. },
  2640. {
  2641. "name": "Kristen Pol",
  2642. "homepage": "https://www.drupal.org/user/8389"
  2643. },
  2644. {
  2645. "name": "nedjo",
  2646. "homepage": "https://www.drupal.org/user/4481"
  2647. },
  2648. {
  2649. "name": "NormySan",
  2650. "homepage": "https://www.drupal.org/user/112352"
  2651. },
  2652. {
  2653. "name": "patricksettle",
  2654. "homepage": "https://www.drupal.org/user/26618"
  2655. },
  2656. {
  2657. "name": "paulocs",
  2658. "homepage": "https://www.drupal.org/user/3640109"
  2659. },
  2660. {
  2661. "name": "Steven Jones",
  2662. "homepage": "https://www.drupal.org/user/99644"
  2663. },
  2664. {
  2665. "name": "tekante",
  2666. "homepage": "https://www.drupal.org/user/640024"
  2667. },
  2668. {
  2669. "name": "yhahn",
  2670. "homepage": "https://www.drupal.org/user/264833"
  2671. }
  2672. ],
  2673. "description": "Manage contextual conditions and reactions for different portions of your site.",
  2674. "homepage": "https://github.com/oddhill/context",
  2675. "keywords": [
  2676. "Drupal",
  2677. "block",
  2678. "conditions",
  2679. "context",
  2680. "visibility"
  2681. ],
  2682. "support": {
  2683. "source": "https://github.com/oddhill/context",
  2684. "issues": "https://github.com/oddhill/context/issues",
  2685. "docs": "https://github.com/oddhill/context"
  2686. }
  2687. },
  2688. {
  2689. "name": "drupal/core",
  2690. "version": "9.5.11",
  2691. "source": {
  2692. "type": "git",
  2693. "url": "https://github.com/drupal/core.git",
  2694. "reference": "8afcb233c2a71501b35fed2713167c37831d5c19"
  2695. },
  2696. "dist": {
  2697. "type": "zip",
  2698. "url": "https://api.github.com/repos/drupal/core/zipball/8afcb233c2a71501b35fed2713167c37831d5c19",
  2699. "reference": "8afcb233c2a71501b35fed2713167c37831d5c19",
  2700. "shasum": ""
  2701. },
  2702. "require": {
  2703. "asm89/stack-cors": "^1.3",
  2704. "composer/semver": "^3.3",
  2705. "doctrine/annotations": "^1.13",
  2706. "doctrine/reflection": "^1.2",
  2707. "egulias/email-validator": "^2.1.22|^3.2",
  2708. "ext-date": "*",
  2709. "ext-dom": "*",
  2710. "ext-filter": "*",
  2711. "ext-gd": "*",
  2712. "ext-hash": "*",
  2713. "ext-json": "*",
  2714. "ext-pcre": "*",
  2715. "ext-pdo": "*",
  2716. "ext-session": "*",
  2717. "ext-simplexml": "*",
  2718. "ext-spl": "*",
  2719. "ext-tokenizer": "*",
  2720. "ext-xml": "*",
  2721. "guzzlehttp/guzzle": "^6.5.8 || ^7.4.5",
  2722. "laminas/laminas-feed": "^2.17",
  2723. "longwave/laminas-diactoros": "^2.14",
  2724. "masterminds/html5": "^2.7",
  2725. "pear/archive_tar": "^1.4.14",
  2726. "php": ">=7.3.0",
  2727. "psr/log": "^1.1",
  2728. "stack/builder": "^1.0",
  2729. "symfony-cmf/routing": "^2.3",
  2730. "symfony/console": "^4.4",
  2731. "symfony/dependency-injection": "^4.4",
  2732. "symfony/event-dispatcher": "^4.4",
  2733. "symfony/http-foundation": "^4.4.7",
  2734. "symfony/http-kernel": "^4.4",
  2735. "symfony/mime": "^5.4",
  2736. "symfony/polyfill-iconv": "^1.26",
  2737. "symfony/polyfill-php80": "^1.26",
  2738. "symfony/process": "^4.4",
  2739. "symfony/psr-http-message-bridge": "^2.1",
  2740. "symfony/routing": "^4.4",
  2741. "symfony/serializer": "^4.4",
  2742. "symfony/translation": "^4.4",
  2743. "symfony/validator": "^4.4",
  2744. "symfony/yaml": "^4.4.19",
  2745. "twig/twig": "^2.15.3",
  2746. "typo3/phar-stream-wrapper": "^3.1.3"
  2747. },
  2748. "conflict": {
  2749. "drush/drush": "<8.1.10",
  2750. "symfony/http-foundation": "4.4.42"
  2751. },
  2752. "replace": {
  2753. "drupal/core-annotation": "self.version",
  2754. "drupal/core-assertion": "self.version",
  2755. "drupal/core-bridge": "self.version",
  2756. "drupal/core-class-finder": "self.version",
  2757. "drupal/core-datetime": "self.version",
  2758. "drupal/core-dependency-injection": "self.version",
  2759. "drupal/core-diff": "self.version",
  2760. "drupal/core-discovery": "self.version",
  2761. "drupal/core-event-dispatcher": "self.version",
  2762. "drupal/core-file-cache": "self.version",
  2763. "drupal/core-file-security": "self.version",
  2764. "drupal/core-filesystem": "self.version",
  2765. "drupal/core-front-matter": "self.version",
  2766. "drupal/core-gettext": "self.version",
  2767. "drupal/core-graph": "self.version",
  2768. "drupal/core-http-foundation": "self.version",
  2769. "drupal/core-php-storage": "self.version",
  2770. "drupal/core-plugin": "self.version",
  2771. "drupal/core-proxy-builder": "self.version",
  2772. "drupal/core-render": "self.version",
  2773. "drupal/core-serialization": "self.version",
  2774. "drupal/core-transliteration": "self.version",
  2775. "drupal/core-utility": "self.version",
  2776. "drupal/core-uuid": "self.version",
  2777. "drupal/core-version": "self.version"
  2778. },
  2779. "type": "drupal-core",
  2780. "extra": {
  2781. "drupal-scaffold": {
  2782. "file-mapping": {
  2783. "[project-root]/.editorconfig": "assets/scaffold/files/editorconfig",
  2784. "[project-root]/.gitattributes": "assets/scaffold/files/gitattributes",
  2785. "[web-root]/.csslintrc": "assets/scaffold/files/csslintrc",
  2786. "[web-root]/.eslintignore": "assets/scaffold/files/eslintignore",
  2787. "[web-root]/.eslintrc.json": "assets/scaffold/files/eslintrc.json",
  2788. "[web-root]/.ht.router.php": "assets/scaffold/files/ht.router.php",
  2789. "[web-root]/.htaccess": "assets/scaffold/files/htaccess",
  2790. "[web-root]/example.gitignore": "assets/scaffold/files/example.gitignore",
  2791. "[web-root]/index.php": "assets/scaffold/files/index.php",
  2792. "[web-root]/INSTALL.txt": "assets/scaffold/files/drupal.INSTALL.txt",
  2793. "[web-root]/README.md": "assets/scaffold/files/drupal.README.md",
  2794. "[web-root]/robots.txt": "assets/scaffold/files/robots.txt",
  2795. "[web-root]/update.php": "assets/scaffold/files/update.php",
  2796. "[web-root]/web.config": "assets/scaffold/files/web.config",
  2797. "[web-root]/sites/README.txt": "assets/scaffold/files/sites.README.txt",
  2798. "[web-root]/sites/development.services.yml": "assets/scaffold/files/development.services.yml",
  2799. "[web-root]/sites/example.settings.local.php": "assets/scaffold/files/example.settings.local.php",
  2800. "[web-root]/sites/example.sites.php": "assets/scaffold/files/example.sites.php",
  2801. "[web-root]/sites/default/default.services.yml": "assets/scaffold/files/default.services.yml",
  2802. "[web-root]/sites/default/default.settings.php": "assets/scaffold/files/default.settings.php",
  2803. "[web-root]/modules/README.txt": "assets/scaffold/files/modules.README.txt",
  2804. "[web-root]/profiles/README.txt": "assets/scaffold/files/profiles.README.txt",
  2805. "[web-root]/themes/README.txt": "assets/scaffold/files/themes.README.txt"
  2806. }
  2807. }
  2808. },
  2809. "autoload": {
  2810. "files": [
  2811. "includes/bootstrap.inc",
  2812. "includes/guzzle_php81_shim.php"
  2813. ],
  2814. "psr-4": {
  2815. "Drupal\\Core\\": "lib/Drupal/Core",
  2816. "Drupal\\Driver\\": "../drivers/lib/Drupal/Driver",
  2817. "Drupal\\Component\\": "lib/Drupal/Component"
  2818. },
  2819. "classmap": [
  2820. "lib/Drupal.php",
  2821. "lib/Drupal/Component/DependencyInjection/Container.php",
  2822. "lib/Drupal/Component/DependencyInjection/PhpArrayContainer.php",
  2823. "lib/Drupal/Component/FileCache/FileCacheFactory.php",
  2824. "lib/Drupal/Component/Utility/Timer.php",
  2825. "lib/Drupal/Component/Utility/Unicode.php",
  2826. "lib/Drupal/Core/Cache/Cache.php",
  2827. "lib/Drupal/Core/Cache/CacheBackendInterface.php",
  2828. "lib/Drupal/Core/Cache/CacheTagsChecksumInterface.php",
  2829. "lib/Drupal/Core/Cache/CacheTagsChecksumTrait.php",
  2830. "lib/Drupal/Core/Cache/CacheTagsInvalidatorInterface.php",
  2831. "lib/Drupal/Core/Cache/DatabaseBackend.php",
  2832. "lib/Drupal/Core/Cache/DatabaseCacheTagsChecksum.php",
  2833. "lib/Drupal/Core/Database/Connection.php",
  2834. "lib/Drupal/Core/Database/Database.php",
  2835. "lib/Drupal/Core/Database/Statement.php",
  2836. "lib/Drupal/Core/Database/StatementInterface.php",
  2837. "lib/Drupal/Core/DependencyInjection/Container.php",
  2838. "lib/Drupal/Core/DrupalKernel.php",
  2839. "lib/Drupal/Core/DrupalKernelInterface.php",
  2840. "lib/Drupal/Core/Http/InputBag.php",
  2841. "lib/Drupal/Core/Installer/InstallerRedirectTrait.php",
  2842. "lib/Drupal/Core/Site/Settings.php"
  2843. ]
  2844. },
  2845. "notification-url": "https://packagist.org/downloads/",
  2846. "license": [
  2847. "GPL-2.0-or-later"
  2848. ],
  2849. "description": "Drupal is an open source content management platform powering millions of websites and applications.",
  2850. "support": {
  2851. "source": "https://github.com/drupal/core/tree/9.5.11"
  2852. },
  2853. "time": "2023-09-19T17:58:28+00:00"
  2854. },
  2855. {
  2856. "name": "drupal/core-composer-scaffold",
  2857. "version": "9.5.11",
  2858. "source": {
  2859. "type": "git",
  2860. "url": "https://github.com/drupal/core-composer-scaffold.git",
  2861. "reference": "08da8e59c6f1bd0b1a58d18f8addc0d937bbacc7"
  2862. },
  2863. "dist": {
  2864. "type": "zip",
  2865. "url": "https://api.github.com/repos/drupal/core-composer-scaffold/zipball/08da8e59c6f1bd0b1a58d18f8addc0d937bbacc7",
  2866. "reference": "08da8e59c6f1bd0b1a58d18f8addc0d937bbacc7",
  2867. "shasum": ""
  2868. },
  2869. "require": {
  2870. "composer-plugin-api": "^1 || ^2",
  2871. "php": ">=7.3.0"
  2872. },
  2873. "conflict": {
  2874. "drupal-composer/drupal-scaffold": "*"
  2875. },
  2876. "require-dev": {
  2877. "composer/composer": "^1.8@stable"
  2878. },
  2879. "type": "composer-plugin",
  2880. "extra": {
  2881. "class": "Drupal\\Composer\\Plugin\\Scaffold\\Plugin",
  2882. "branch-alias": {
  2883. "dev-master": "1.0.x-dev"
  2884. }
  2885. },
  2886. "autoload": {
  2887. "psr-4": {
  2888. "Drupal\\Composer\\Plugin\\Scaffold\\": ""
  2889. }
  2890. },
  2891. "notification-url": "https://packagist.org/downloads/",
  2892. "license": [
  2893. "GPL-2.0-or-later"
  2894. ],
  2895. "description": "A flexible Composer project scaffold builder.",
  2896. "homepage": "https://www.drupal.org/project/drupal",
  2897. "keywords": [
  2898. "drupal"
  2899. ],
  2900. "support": {
  2901. "source": "https://github.com/drupal/core-composer-scaffold/tree/9.5.11"
  2902. },
  2903. "time": "2023-04-30T16:17:33+00:00"
  2904. },
  2905. {
  2906. "name": "drupal/core-project-message",
  2907. "version": "9.5.11",
  2908. "source": {
  2909. "type": "git",
  2910. "url": "https://github.com/drupal/core-project-message.git",
  2911. "reference": "5dfa0b75a057caf6542be67f61e7531c737db48c"
  2912. },
  2913. "dist": {
  2914. "type": "zip",
  2915. "url": "https://api.github.com/repos/drupal/core-project-message/zipball/5dfa0b75a057caf6542be67f61e7531c737db48c",
  2916. "reference": "5dfa0b75a057caf6542be67f61e7531c737db48c",
  2917. "shasum": ""
  2918. },
  2919. "require": {
  2920. "composer-plugin-api": "^1.1 || ^2",
  2921. "php": ">=7.3.0"
  2922. },
  2923. "type": "composer-plugin",
  2924. "extra": {
  2925. "class": "Drupal\\Composer\\Plugin\\ProjectMessage\\MessagePlugin"
  2926. },
  2927. "autoload": {
  2928. "psr-4": {
  2929. "Drupal\\Composer\\Plugin\\ProjectMessage\\": "."
  2930. }
  2931. },
  2932. "notification-url": "https://packagist.org/downloads/",
  2933. "license": [
  2934. "GPL-2.0-or-later"
  2935. ],
  2936. "description": "Adds a message after Composer installation.",
  2937. "homepage": "https://www.drupal.org/project/drupal",
  2938. "keywords": [
  2939. "drupal"
  2940. ],
  2941. "support": {
  2942. "source": "https://github.com/drupal/core-project-message/tree/9.5.11"
  2943. },
  2944. "time": "2022-02-24T17:40:53+00:00"
  2945. },
  2946. {
  2947. "name": "drupal/core-recommended",
  2948. "version": "9.5.11",
  2949. "source": {
  2950. "type": "git",
  2951. "url": "https://github.com/drupal/core-recommended.git",
  2952. "reference": "af3521be5376e333ddcdbd31c5a169f16423b46f"
  2953. },
  2954. "dist": {
  2955. "type": "zip",
  2956. "url": "https://api.github.com/repos/drupal/core-recommended/zipball/af3521be5376e333ddcdbd31c5a169f16423b46f",
  2957. "reference": "af3521be5376e333ddcdbd31c5a169f16423b46f",
  2958. "shasum": ""
  2959. },
  2960. "require": {
  2961. "asm89/stack-cors": "~1.3.0",
  2962. "composer/semver": "~3.3.2",
  2963. "doctrine/annotations": "~1.13.3",
  2964. "doctrine/lexer": "~1.2.3",
  2965. "doctrine/reflection": "~1.2.3",
  2966. "drupal/core": "9.5.11",
  2967. "egulias/email-validator": "~3.2.1",
  2968. "guzzlehttp/guzzle": "~6.5.8",
  2969. "guzzlehttp/promises": "~1.5.2",
  2970. "guzzlehttp/psr7": "~1.9.1",
  2971. "longwave/laminas-diactoros": "~2.14.2",
  2972. "masterminds/html5": "~2.7.6",
  2973. "pear/archive_tar": "~1.4.14",
  2974. "pear/console_getopt": "~v1.4.3",
  2975. "pear/pear-core-minimal": "~v1.10.11",
  2976. "pear/pear_exception": "~v1.0.2",
  2977. "psr/cache": "~1.0.1",
  2978. "psr/container": "~1.1.1",
  2979. "psr/http-factory": "~1.0.1",
  2980. "psr/http-message": "~1.0.1",
  2981. "psr/log": "~1.1.4",
  2982. "ralouphie/getallheaders": "~3.0.3",
  2983. "stack/builder": "~v1.0.6",
  2984. "symfony-cmf/routing": "~2.3.4",
  2985. "symfony/console": "~v4.4.49",
  2986. "symfony/debug": "~v4.4.44",
  2987. "symfony/dependency-injection": "~v4.4.49",
  2988. "symfony/deprecation-contracts": "~v2.5.2",
  2989. "symfony/error-handler": "~v4.4.44",
  2990. "symfony/event-dispatcher": "~v4.4.44",
  2991. "symfony/event-dispatcher-contracts": "~v1.1.13",
  2992. "symfony/http-client-contracts": "~v2.5.2",
  2993. "symfony/http-foundation": "~v4.4.49",
  2994. "symfony/http-kernel": "~v4.4.50",
  2995. "symfony/mime": "~v5.4.13",
  2996. "symfony/polyfill-ctype": "~v1.27.0",
  2997. "symfony/polyfill-iconv": "~v1.27.0",
  2998. "symfony/polyfill-intl-idn": "~v1.27.0",
  2999. "symfony/polyfill-intl-normalizer": "~v1.27.0",
  3000. "symfony/polyfill-mbstring": "~v1.27.0",
  3001. "symfony/polyfill-php80": "~v1.27.0",
  3002. "symfony/process": "~v4.4.44",
  3003. "symfony/psr-http-message-bridge": "~v2.1.4",
  3004. "symfony/routing": "~v4.4.44",
  3005. "symfony/serializer": "~v4.4.47",
  3006. "symfony/service-contracts": "~v2.5.2",
  3007. "symfony/translation": "~v4.4.47",
  3008. "symfony/translation-contracts": "~v2.5.2",
  3009. "symfony/validator": "~v4.4.48",
  3010. "symfony/var-dumper": "~v5.4.19",
  3011. "symfony/yaml": "~v4.4.45",
  3012. "twig/twig": "~v2.15.4",
  3013. "typo3/phar-stream-wrapper": "~v3.1.7"
  3014. },
  3015. "conflict": {
  3016. "webflo/drupal-core-strict": "*"
  3017. },
  3018. "type": "metapackage",
  3019. "notification-url": "https://packagist.org/downloads/",
  3020. "license": [
  3021. "GPL-2.0-or-later"
  3022. ],
  3023. "description": "Core and its dependencies with known-compatible minor versions. Require this project INSTEAD OF drupal/core.",
  3024. "support": {
  3025. "source": "https://github.com/drupal/core-recommended/tree/9.5.11"
  3026. },
  3027. "time": "2023-09-19T17:58:28+00:00"
  3028. },
  3029. {
  3030. "name": "drupal/ctools",
  3031. "version": "4.1.0",
  3032. "source": {
  3033. "type": "git",
  3034. "url": "https://git.drupalcode.org/project/ctools.git",
  3035. "reference": "4.1.0"
  3036. },
  3037. "dist": {
  3038. "type": "zip",
  3039. "url": "https://ftp.drupal.org/files/projects/ctools-4.1.0.zip",
  3040. "reference": "4.1.0",
  3041. "shasum": "69f5889cf557df9e55519390e6a95cfa31b67874"
  3042. },
  3043. "require": {
  3044. "drupal/core": "^9.5 || ^10 || ^11"
  3045. },
  3046. "type": "drupal-module",
  3047. "extra": {
  3048. "drupal": {
  3049. "version": "4.1.0",
  3050. "datestamp": "1718144949",
  3051. "security-coverage": {
  3052. "status": "covered",
  3053. "message": "Covered by Drupal's security advisory policy"
  3054. }
  3055. },
  3056. "branch-alias": {
  3057. "dev-8.x-3.x": "3.x-dev"
  3058. }
  3059. },
  3060. "notification-url": "https://packages.drupal.org/8/downloads",
  3061. "license": [
  3062. "GPL-2.0-or-later"
  3063. ],
  3064. "authors": [
  3065. {
  3066. "name": "Kris Vanderwater (EclipseGc)",
  3067. "homepage": "https://www.drupal.org/u/eclipsegc",
  3068. "role": "Maintainer"
  3069. },
  3070. {
  3071. "name": "Jakob Perry (japerry)",
  3072. "homepage": "https://www.drupal.org/u/japerry",
  3073. "role": "Maintainer"
  3074. },
  3075. {
  3076. "name": "Tim Plunkett (tim.plunkett)",
  3077. "homepage": "https://www.drupal.org/u/timplunkett",
  3078. "role": "Maintainer"
  3079. },
  3080. {
  3081. "name": "James Gilliland (neclimdul)",
  3082. "homepage": "https://www.drupal.org/u/neclimdul",
  3083. "role": "Maintainer"
  3084. },
  3085. {
  3086. "name": "Daniel Wehner (dawehner)",
  3087. "homepage": "https://www.drupal.org/u/dawehner",
  3088. "role": "Maintainer"
  3089. },
  3090. {
  3091. "name": "joelpittet",
  3092. "homepage": "https://www.drupal.org/user/160302"
  3093. },
  3094. {
  3095. "name": "merlinofchaos",
  3096. "homepage": "https://www.drupal.org/user/26979"
  3097. },
  3098. {
  3099. "name": "neclimdul",
  3100. "homepage": "https://www.drupal.org/user/48673"
  3101. },
  3102. {
  3103. "name": "sdboyer",
  3104. "homepage": "https://www.drupal.org/user/146719"
  3105. },
  3106. {
  3107. "name": "sun",
  3108. "homepage": "https://www.drupal.org/user/54136"
  3109. },
  3110. {
  3111. "name": "tim.plunkett",
  3112. "homepage": "https://www.drupal.org/user/241634"
  3113. }
  3114. ],
  3115. "description": "Provides a number of utility and helper APIs for Drupal developers and site builders.",
  3116. "homepage": "https://www.drupal.org/project/ctools",
  3117. "support": {
  3118. "source": "https://git.drupalcode.org/project/ctools",
  3119. "issues": "https://www.drupal.org/project/issues/ctools"
  3120. }
  3121. },
  3122. {
  3123. "name": "drupal/date_range_formatter",
  3124. "version": "4.0.2",
  3125. "source": {
  3126. "type": "git",
  3127. "url": "https://git.drupalcode.org/project/date_range_formatter.git",
  3128. "reference": "4.0.2"
  3129. },
  3130. "dist": {
  3131. "type": "zip",
  3132. "url": "https://ftp.drupal.org/files/projects/date_range_formatter-4.0.2.zip",
  3133. "reference": "4.0.2",
  3134. "shasum": "0d953912148e384aed6a6cee64115faf170319c0"
  3135. },
  3136. "require": {
  3137. "drupal/core": "^8 || ^9 || ^10"
  3138. },
  3139. "type": "drupal-module",
  3140. "extra": {
  3141. "drupal": {
  3142. "version": "4.0.2",
  3143. "datestamp": "1703156621",
  3144. "security-coverage": {
  3145. "status": "covered",
  3146. "message": "Covered by Drupal's security advisory policy"
  3147. }
  3148. }
  3149. },
  3150. "notification-url": "https://packages.drupal.org/8/downloads",
  3151. "license": [
  3152. "GPL-2.0-or-later"
  3153. ],
  3154. "authors": [
  3155. {
  3156. "name": "maximpodorov",
  3157. "homepage": "https://www.drupal.org/user/515310"
  3158. },
  3159. {
  3160. "name": "sudishth",
  3161. "homepage": "https://www.drupal.org/user/1440562"
  3162. }
  3163. ],
  3164. "description": "Formats date ranges.",
  3165. "homepage": "https://www.drupal.org/project/date_range_formatter",
  3166. "support": {
  3167. "source": "https://git.drupalcode.org/project/date_range_formatter"
  3168. }
  3169. },
  3170. {
  3171. "name": "drupal/devel",
  3172. "version": "5.1.2",
  3173. "source": {
  3174. "type": "git",
  3175. "url": "https://git.drupalcode.org/project/devel.git",
  3176. "reference": "5.1.2"
  3177. },
  3178. "dist": {
  3179. "type": "zip",
  3180. "url": "https://ftp.drupal.org/files/projects/devel-5.1.2.zip",
  3181. "reference": "5.1.2",
  3182. "shasum": "9b35e38bf2043bf87f88585b3d9100f38da8f07f"
  3183. },
  3184. "require": {
  3185. "doctrine/common": "^2.7 || ^3.4",
  3186. "drupal/core": "^9 || ^10",
  3187. "php": ">=7.4",
  3188. "symfony/var-dumper": "^4 || ^5 || ^6"
  3189. },
  3190. "conflict": {
  3191. "kint-php/kint": "<3"
  3192. },
  3193. "require-dev": {
  3194. "drush/drush": "^11"
  3195. },
  3196. "suggest": {
  3197. "kint-php/kint": "Kint provides an informative display of arrays/objects. Useful for debugging and developing."
  3198. },
  3199. "type": "drupal-module",
  3200. "extra": {
  3201. "drupal": {
  3202. "version": "5.1.2",
  3203. "datestamp": "1686161028",
  3204. "security-coverage": {
  3205. "status": "covered",
  3206. "message": "Covered by Drupal's security advisory policy"
  3207. }
  3208. },
  3209. "drush": {
  3210. "services": {
  3211. "drush.services.yml": "^9 || ^10 || ^11"
  3212. }
  3213. }
  3214. },
  3215. "notification-url": "https://packages.drupal.org/8/downloads",
  3216. "license": [
  3217. "GPL-2.0-or-later"
  3218. ],
  3219. "authors": [
  3220. {
  3221. "name": "moshe weitzman",
  3222. "homepage": "https://www.drupal.org/user/23"
  3223. }
  3224. ],
  3225. "description": "Various blocks, pages, and functions for developers.",
  3226. "homepage": "https://www.drupal.org/project/devel",
  3227. "support": {
  3228. "source": "https://gitlab.com/drupalspoons/devel",
  3229. "issues": "https://gitlab.com/drupalspoons/devel/-/issues",
  3230. "slack": "https://drupal.slack.com/archives/C012WAW1MH6"
  3231. }
  3232. },
  3233. {
  3234. "name": "drupal/domain",
  3235. "version": "2.0.0-beta1",
  3236. "source": {
  3237. "type": "git",
  3238. "url": "https://git.drupalcode.org/project/domain.git",
  3239. "reference": "2.0.0-beta1"
  3240. },
  3241. "dist": {
  3242. "type": "zip",
  3243. "url": "https://ftp.drupal.org/files/projects/domain-2.0.0-beta1.zip",
  3244. "reference": "2.0.0-beta1",
  3245. "shasum": "0edbc9d6c79cb0a61c08c656e9258c2450710664"
  3246. },
  3247. "require": {
  3248. "drupal/core": "^9 || ^10"
  3249. },
  3250. "require-dev": {
  3251. "drupal/domain_access": "*",
  3252. "drupal/domain_config": "*"
  3253. },
  3254. "type": "drupal-module",
  3255. "extra": {
  3256. "drupal": {
  3257. "version": "2.0.0-beta1",
  3258. "datestamp": "1686067462",
  3259. "security-coverage": {
  3260. "status": "not-covered",
  3261. "message": "Beta releases are not covered by Drupal security advisories."
  3262. }
  3263. }
  3264. },
  3265. "notification-url": "https://packages.drupal.org/8/downloads",
  3266. "license": [
  3267. "GPL-2.0-or-later"
  3268. ],
  3269. "authors": [
  3270. {
  3271. "name": "agentrickard",
  3272. "homepage": "https://www.drupal.org/user/20975"
  3273. },
  3274. {
  3275. "name": "nonsie",
  3276. "homepage": "https://www.drupal.org/user/29899"
  3277. },
  3278. {
  3279. "name": "webflo",
  3280. "homepage": "https://www.drupal.org/user/254778"
  3281. }
  3282. ],
  3283. "description": "Creates domain records within a Drupal installation.",
  3284. "homepage": "https://www.drupal.org/project/domain",
  3285. "support": {
  3286. "source": "https://git.drupalcode.org/project/domain"
  3287. }
  3288. },
  3289. {
  3290. "name": "drupal/domain_config",
  3291. "version": "1.0.0-beta8",
  3292. "require": {
  3293. "drupal/core": "^8 || ^9",
  3294. "drupal/domain": "*"
  3295. },
  3296. "type": "metapackage",
  3297. "extra": {
  3298. "drupal": {
  3299. "version": "8.x-1.0-beta8",
  3300. "datestamp": "1677511311",
  3301. "security-coverage": {
  3302. "status": "not-covered",
  3303. "message": "Beta releases are not covered by Drupal security advisories."
  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": "agentrickard",
  3314. "homepage": "https://www.drupal.org/user/20975"
  3315. },
  3316. {
  3317. "name": "nonsie",
  3318. "homepage": "https://www.drupal.org/user/29899"
  3319. },
  3320. {
  3321. "name": "webflo",
  3322. "homepage": "https://www.drupal.org/user/254778"
  3323. }
  3324. ],
  3325. "description": "Allows domain specific configuration.",
  3326. "homepage": "https://www.drupal.org/project/domain",
  3327. "support": {
  3328. "source": "https://git.drupalcode.org/project/domain"
  3329. }
  3330. },
  3331. {
  3332. "name": "drupal/domain_site_settings",
  3333. "version": "1.6.0",
  3334. "source": {
  3335. "type": "git",
  3336. "url": "https://git.drupalcode.org/project/domain_site_settings.git",
  3337. "reference": "8.x-1.6"
  3338. },
  3339. "dist": {
  3340. "type": "zip",
  3341. "url": "https://ftp.drupal.org/files/projects/domain_site_settings-8.x-1.6.zip",
  3342. "reference": "8.x-1.6",
  3343. "shasum": "d0f89411c5dd934a63a1a5991fbc0f76c1515cb2"
  3344. },
  3345. "require": {
  3346. "drupal/core": "^8.8 || ^9 || ^10 || ^11",
  3347. "drupal/domain": "^1.0 || ^2.0",
  3348. "drupal/domain_config": "*"
  3349. },
  3350. "type": "drupal-module",
  3351. "extra": {
  3352. "drupal": {
  3353. "version": "8.x-1.6",
  3354. "datestamp": "1726238712",
  3355. "security-coverage": {
  3356. "status": "covered",
  3357. "message": "Covered by Drupal's security advisory policy"
  3358. }
  3359. }
  3360. },
  3361. "notification-url": "https://packages.drupal.org/8/downloads",
  3362. "license": [
  3363. "GPL-2.0+"
  3364. ],
  3365. "authors": [
  3366. {
  3367. "name": "aloknarwaria",
  3368. "homepage": "https://www.drupal.org/user/906640"
  3369. },
  3370. {
  3371. "name": "jeroent",
  3372. "homepage": "https://www.drupal.org/user/2228934"
  3373. },
  3374. {
  3375. "name": "malaynayak",
  3376. "homepage": "https://www.drupal.org/user/3529755"
  3377. }
  3378. ],
  3379. "description": "Basic Site Setting for Domains.",
  3380. "homepage": "https://www.drupal.org/project/domain_site_settings",
  3381. "keywords": [
  3382. "Drupal"
  3383. ],
  3384. "support": {
  3385. "source": "http://cgit.drupalcode.org/domain_site_settings",
  3386. "issues": "https://www.drupal.org/project/issues/domain_site_settings"
  3387. }
  3388. },
  3389. {
  3390. "name": "drupal/email_registration",
  3391. "version": "1.4.0",
  3392. "source": {
  3393. "type": "git",
  3394. "url": "https://git.drupalcode.org/project/email_registration.git",
  3395. "reference": "8.x-1.4"
  3396. },
  3397. "dist": {
  3398. "type": "zip",
  3399. "url": "https://ftp.drupal.org/files/projects/email_registration-8.x-1.4.zip",
  3400. "reference": "8.x-1.4",
  3401. "shasum": "fe7a91b858a98533fc1d7550b0917fc80523f186"
  3402. },
  3403. "require": {
  3404. "drupal/core": "^9.1 || ^10"
  3405. },
  3406. "conflict": {
  3407. "drupal/commerce": "<2.12"
  3408. },
  3409. "require-dev": {
  3410. "drupal/commerce": "^2.0",
  3411. "drupal/token": "*"
  3412. },
  3413. "type": "drupal-module",
  3414. "extra": {
  3415. "drupal": {
  3416. "version": "8.x-1.4",
  3417. "datestamp": "1700548925",
  3418. "security-coverage": {
  3419. "status": "covered",
  3420. "message": "Covered by Drupal's security advisory policy"
  3421. }
  3422. }
  3423. },
  3424. "notification-url": "https://packages.drupal.org/8/downloads",
  3425. "license": [
  3426. "GPL-2.0-or-later"
  3427. ],
  3428. "authors": [
  3429. {
  3430. "name": "Greg Knaddison (greggles)",
  3431. "homepage": "https://www.drupal.org/u/greggles",
  3432. "role": "Maintainer"
  3433. },
  3434. {
  3435. "name": "Andrey Postnikov (andypost)",
  3436. "homepage": "https://www.drupal.org/u/andypost",
  3437. "role": "Maintainer"
  3438. },
  3439. {
  3440. "name": "Chris Herberte",
  3441. "homepage": "https://www.drupal.org/u/chris-herberte",
  3442. "role": "Maintainer"
  3443. },
  3444. {
  3445. "name": "Moshe Weitzman (moshe weitzman)",
  3446. "homepage": "https://www.drupal.org/u/moshe-weitzman",
  3447. "role": "Maintainer"
  3448. },
  3449. {
  3450. "name": "Grevil",
  3451. "homepage": "https://www.drupal.org/user/3668491"
  3452. },
  3453. {
  3454. "name": "moshe weitzman",
  3455. "homepage": "https://www.drupal.org/user/23"
  3456. }
  3457. ],
  3458. "description": "Allows users to register with an email address as their username.",
  3459. "homepage": "https://www.drupal.org/project/email_registration",
  3460. "support": {
  3461. "source": "https://git.drupalcode.org/project/email_registration",
  3462. "issues": "http://drupal.org/project/issues/email_registration"
  3463. }
  3464. },
  3465. {
  3466. "name": "drupal/entity",
  3467. "version": "1.3.0",
  3468. "source": {
  3469. "type": "git",
  3470. "url": "https://git.drupalcode.org/project/entity.git",
  3471. "reference": "8.x-1.3"
  3472. },
  3473. "dist": {
  3474. "type": "zip",
  3475. "url": "https://ftp.drupal.org/files/projects/entity-8.x-1.3.zip",
  3476. "reference": "8.x-1.3",
  3477. "shasum": "9515e28a70448d369adf4199d08a01a5ab75792d"
  3478. },
  3479. "require": {
  3480. "drupal/core": "^8.8.2 || ^9"
  3481. },
  3482. "type": "drupal-module",
  3483. "extra": {
  3484. "drupal": {
  3485. "version": "8.x-1.3",
  3486. "datestamp": "1646324539",
  3487. "security-coverage": {
  3488. "status": "covered",
  3489. "message": "Covered by Drupal's security advisory policy"
  3490. }
  3491. }
  3492. },
  3493. "notification-url": "https://packages.drupal.org/8/downloads",
  3494. "license": [
  3495. "GPL-2.0-or-later"
  3496. ],
  3497. "authors": [
  3498. {
  3499. "name": "berdir",
  3500. "homepage": "https://www.drupal.org/user/214652"
  3501. },
  3502. {
  3503. "name": "bojanz",
  3504. "homepage": "https://www.drupal.org/user/86106"
  3505. },
  3506. {
  3507. "name": "dawehner",
  3508. "homepage": "https://www.drupal.org/user/99340"
  3509. },
  3510. {
  3511. "name": "dixon_",
  3512. "homepage": "https://www.drupal.org/user/239911"
  3513. },
  3514. {
  3515. "name": "fago",
  3516. "homepage": "https://www.drupal.org/user/16747"
  3517. },
  3518. {
  3519. "name": "mglaman",
  3520. "homepage": "https://www.drupal.org/user/2416470"
  3521. },
  3522. {
  3523. "name": "TR",
  3524. "homepage": "https://www.drupal.org/user/202830"
  3525. }
  3526. ],
  3527. "description": "Provides expanded entity APIs, which will be moved to Drupal core one day.",
  3528. "homepage": "https://www.drupal.org/project/entity",
  3529. "support": {
  3530. "source": "https://git.drupalcode.org/project/entity",
  3531. "issues": "https://www.drupal.org/project/issues/entity"
  3532. }
  3533. },
  3534. {
  3535. "name": "drupal/field_group",
  3536. "version": "3.6.0",
  3537. "source": {
  3538. "type": "git",
  3539. "url": "https://git.drupalcode.org/project/field_group.git",
  3540. "reference": "8.x-3.6"
  3541. },
  3542. "dist": {
  3543. "type": "zip",
  3544. "url": "https://ftp.drupal.org/files/projects/field_group-8.x-3.6.zip",
  3545. "reference": "8.x-3.6",
  3546. "shasum": "427c0a65dc1936e69e60c120776056cfe5b43e86"
  3547. },
  3548. "require": {
  3549. "drupal/core": "^9.2 || ^10 || ^11"
  3550. },
  3551. "require-dev": {
  3552. "drupal/jquery_ui_accordion": "*"
  3553. },
  3554. "type": "drupal-module",
  3555. "extra": {
  3556. "drupal": {
  3557. "version": "8.x-3.6",
  3558. "datestamp": "1722672510",
  3559. "security-coverage": {
  3560. "status": "covered",
  3561. "message": "Covered by Drupal's security advisory policy"
  3562. }
  3563. }
  3564. },
  3565. "notification-url": "https://packages.drupal.org/8/downloads",
  3566. "license": [
  3567. "GPL-2.0-or-later"
  3568. ],
  3569. "authors": [
  3570. {
  3571. "name": "anybody",
  3572. "homepage": "https://www.drupal.org/user/291091"
  3573. },
  3574. {
  3575. "name": "grevil",
  3576. "homepage": "https://www.drupal.org/user/3668491"
  3577. },
  3578. {
  3579. "name": "hydra",
  3580. "homepage": "https://www.drupal.org/user/647364"
  3581. },
  3582. {
  3583. "name": "joevagyok",
  3584. "homepage": "https://www.drupal.org/user/2876343"
  3585. },
  3586. {
  3587. "name": "jyve",
  3588. "homepage": "https://www.drupal.org/user/591438"
  3589. },
  3590. {
  3591. "name": "nils.destoop",
  3592. "homepage": "https://www.drupal.org/user/361625"
  3593. },
  3594. {
  3595. "name": "Stalski",
  3596. "homepage": "https://www.drupal.org/user/322618"
  3597. },
  3598. {
  3599. "name": "swentel",
  3600. "homepage": "https://www.drupal.org/user/107403"
  3601. }
  3602. ],
  3603. "description": "Provides the field_group module.",
  3604. "homepage": "https://www.drupal.org/project/field_group",
  3605. "support": {
  3606. "source": "https://git.drupalcode.org/project/field_group",
  3607. "issues": "https://www.drupal.org/project/issues/field_group"
  3608. }
  3609. },
  3610. {
  3611. "name": "drupal/filefield_sources",
  3612. "version": "1.0.0-alpha5",
  3613. "source": {
  3614. "type": "git",
  3615. "url": "https://git.drupalcode.org/project/filefield_sources.git",
  3616. "reference": "8.x-1.0-alpha5"
  3617. },
  3618. "dist": {
  3619. "type": "zip",
  3620. "url": "https://ftp.drupal.org/files/projects/filefield_sources-8.x-1.0-alpha5.zip",
  3621. "reference": "8.x-1.0-alpha5",
  3622. "shasum": "e2438610bf829a82c6415f88f708b2dc73d91c49"
  3623. },
  3624. "require": {
  3625. "drupal/core": "^8 || ^9"
  3626. },
  3627. "require-dev": {
  3628. "drupal/imce": "^2.3"
  3629. },
  3630. "type": "drupal-module",
  3631. "extra": {
  3632. "drupal": {
  3633. "version": "8.x-1.0-alpha5",
  3634. "datestamp": "1642555269",
  3635. "security-coverage": {
  3636. "status": "not-covered",
  3637. "message": "Alpha releases are not covered by Drupal security advisories."
  3638. }
  3639. }
  3640. },
  3641. "notification-url": "https://packages.drupal.org/8/downloads",
  3642. "license": [
  3643. "GPL-2.0-or-later"
  3644. ],
  3645. "authors": [
  3646. {
  3647. "name": "Nate Lampton (quicksketch)",
  3648. "homepage": "https://www.drupal.org/u/quicksketch",
  3649. "role": "Maintainer"
  3650. },
  3651. {
  3652. "name": "Andrey Khromyshev (profak)",
  3653. "homepage": "https://www.drupal.org/u/profak",
  3654. "role": "Maintainer"
  3655. },
  3656. {
  3657. "name": "David Valdez (gnuget)",
  3658. "homepage": "https://www.drupal.org/u/gnuget",
  3659. "role": "Maintainer"
  3660. },
  3661. {
  3662. "name": "quicksketch",
  3663. "homepage": "https://www.drupal.org/user/35821"
  3664. }
  3665. ],
  3666. "description": "Extends File fields to allow referencing of existing files, remote files, and server files.",
  3667. "homepage": "https://www.drupal.org/project/filefield_sources",
  3668. "support": {
  3669. "source": "https://git.drupalcode.org/project/filefield_sources",
  3670. "issues": "https://www.drupal.org/project/issues/filefield_sources",
  3671. "irc": "irc://irc.freenode.org/drupal-contribute"
  3672. }
  3673. },
  3674. {
  3675. "name": "drupal/filter_perms",
  3676. "version": "1.0.0-alpha1",
  3677. "source": {
  3678. "type": "git",
  3679. "url": "https://git.drupalcode.org/project/filter_perms.git",
  3680. "reference": "8.x-1.0-alpha1"
  3681. },
  3682. "dist": {
  3683. "type": "zip",
  3684. "url": "https://ftp.drupal.org/files/projects/filter_perms-8.x-1.0-alpha1.zip",
  3685. "reference": "8.x-1.0-alpha1",
  3686. "shasum": "5a4bf4332f97b238864191042198f9f9a85cab26"
  3687. },
  3688. "require": {
  3689. "drupal/core": "^8 || ^9"
  3690. },
  3691. "type": "drupal-module",
  3692. "extra": {
  3693. "drupal": {
  3694. "version": "8.x-1.0-alpha1",
  3695. "datestamp": "1595202904",
  3696. "security-coverage": {
  3697. "status": "not-covered",
  3698. "message": "Alpha releases are not covered by Drupal security advisories."
  3699. }
  3700. }
  3701. },
  3702. "notification-url": "https://packages.drupal.org/8/downloads",
  3703. "license": [
  3704. "GPL-2.0-or-later"
  3705. ],
  3706. "authors": [
  3707. {
  3708. "name": "cYu",
  3709. "homepage": "https://www.drupal.org/user/202205"
  3710. },
  3711. {
  3712. "name": "deekayen",
  3713. "homepage": "https://www.drupal.org/user/972"
  3714. },
  3715. {
  3716. "name": "ivavictoria",
  3717. "homepage": "https://www.drupal.org/user/3061533"
  3718. },
  3719. {
  3720. "name": "justcaldwell",
  3721. "homepage": "https://www.drupal.org/user/290069"
  3722. },
  3723. {
  3724. "name": "mgbellaire",
  3725. "homepage": "https://www.drupal.org/user/1831932"
  3726. },
  3727. {
  3728. "name": "willzyx",
  3729. "homepage": "https://www.drupal.org/user/1043862"
  3730. }
  3731. ],
  3732. "description": "Provides role and module filters to simplify the user permissions page.",
  3733. "homepage": "https://www.drupal.org/project/filter_perms",
  3734. "support": {
  3735. "source": "https://git.drupalcode.org/project/filter_perms"
  3736. }
  3737. },
  3738. {
  3739. "name": "drupal/honeypot",
  3740. "version": "2.1.4",
  3741. "source": {
  3742. "type": "git",
  3743. "url": "https://git.drupalcode.org/project/honeypot.git",
  3744. "reference": "2.1.4"
  3745. },
  3746. "dist": {
  3747. "type": "zip",
  3748. "url": "https://ftp.drupal.org/files/projects/honeypot-2.1.4.zip",
  3749. "reference": "2.1.4",
  3750. "shasum": "adf76c3520c0e458177dbe6d638aa2d6ae40a95b"
  3751. },
  3752. "require": {
  3753. "drupal/core": "^9.2 || ^10"
  3754. },
  3755. "require-dev": {
  3756. "drupal/rules": "^3.x-dev"
  3757. },
  3758. "type": "drupal-module",
  3759. "extra": {
  3760. "drupal": {
  3761. "version": "2.1.4",
  3762. "datestamp": "1723489062",
  3763. "security-coverage": {
  3764. "status": "covered",
  3765. "message": "Covered by Drupal's security advisory policy"
  3766. }
  3767. }
  3768. },
  3769. "notification-url": "https://packages.drupal.org/8/downloads",
  3770. "license": [
  3771. "GPL-2.0-or-later"
  3772. ],
  3773. "authors": [
  3774. {
  3775. "name": "Jeff Geerling",
  3776. "homepage": "https://www.drupal.org/user/389011",
  3777. "email": "geerlingguy@mac.com"
  3778. },
  3779. {
  3780. "name": "Manuel Garcia",
  3781. "homepage": "https://www.drupal.org/user/213194"
  3782. },
  3783. {
  3784. "name": "tr",
  3785. "homepage": "https://www.drupal.org/user/202830"
  3786. },
  3787. {
  3788. "name": "vijaycs85",
  3789. "homepage": "https://www.drupal.org/user/93488"
  3790. }
  3791. ],
  3792. "description": "Mitigates spam form submissions using the honeypot method.",
  3793. "homepage": "https://www.drupal.org/project/honeypot",
  3794. "keywords": [
  3795. "deterrent",
  3796. "form",
  3797. "honeypot",
  3798. "honeytrap",
  3799. "php",
  3800. "spam"
  3801. ],
  3802. "support": {
  3803. "source": "https://git.drupalcode.org/project/honeypot",
  3804. "issues": "https://www.drupal.org/project/issues/honeypot"
  3805. }
  3806. },
  3807. {
  3808. "name": "drupal/jquery_ui",
  3809. "version": "1.7.0",
  3810. "source": {
  3811. "type": "git",
  3812. "url": "https://git.drupalcode.org/project/jquery_ui.git",
  3813. "reference": "8.x-1.7"
  3814. },
  3815. "dist": {
  3816. "type": "zip",
  3817. "url": "https://ftp.drupal.org/files/projects/jquery_ui-8.x-1.7.zip",
  3818. "reference": "8.x-1.7",
  3819. "shasum": "3f893843ec30fed18fa1b0cb326e51880b0cb686"
  3820. },
  3821. "require": {
  3822. "drupal/core": "^9.2 || ^10 || ^11"
  3823. },
  3824. "type": "drupal-module",
  3825. "extra": {
  3826. "drupal": {
  3827. "version": "8.x-1.7",
  3828. "datestamp": "1717002098",
  3829. "security-coverage": {
  3830. "status": "covered",
  3831. "message": "Covered by Drupal's security advisory policy"
  3832. }
  3833. }
  3834. },
  3835. "notification-url": "https://packages.drupal.org/8/downloads",
  3836. "license": [
  3837. "GPL-2.0-or-later"
  3838. ],
  3839. "authors": [
  3840. {
  3841. "name": "bnjmnm",
  3842. "homepage": "https://www.drupal.org/user/2369194"
  3843. },
  3844. {
  3845. "name": "jjeff",
  3846. "homepage": "https://www.drupal.org/user/17190"
  3847. },
  3848. {
  3849. "name": "lauriii",
  3850. "homepage": "https://www.drupal.org/user/1078742"
  3851. },
  3852. {
  3853. "name": "litwol",
  3854. "homepage": "https://www.drupal.org/user/78134"
  3855. },
  3856. {
  3857. "name": "mfb",
  3858. "homepage": "https://www.drupal.org/user/12302"
  3859. },
  3860. {
  3861. "name": "mfer",
  3862. "homepage": "https://www.drupal.org/user/25701"
  3863. },
  3864. {
  3865. "name": "mikelutz",
  3866. "homepage": "https://www.drupal.org/user/2972409"
  3867. },
  3868. {
  3869. "name": "nod_",
  3870. "homepage": "https://www.drupal.org/user/598310"
  3871. },
  3872. {
  3873. "name": "phenaproxima",
  3874. "homepage": "https://www.drupal.org/user/205645"
  3875. },
  3876. {
  3877. "name": "RobLoach",
  3878. "homepage": "https://www.drupal.org/user/61114"
  3879. },
  3880. {
  3881. "name": "sun",
  3882. "homepage": "https://www.drupal.org/user/54136"
  3883. },
  3884. {
  3885. "name": "webchick",
  3886. "homepage": "https://www.drupal.org/user/24967"
  3887. },
  3888. {
  3889. "name": "Wim Leers",
  3890. "homepage": "https://www.drupal.org/user/99777"
  3891. },
  3892. {
  3893. "name": "zrpnr",
  3894. "homepage": "https://www.drupal.org/user/1448368"
  3895. }
  3896. ],
  3897. "description": "Provides jQuery UI library.",
  3898. "homepage": "https://www.drupal.org/project/jquery_ui",
  3899. "support": {
  3900. "source": "https://git.drupalcode.org/project/jquery_ui"
  3901. }
  3902. },
  3903. {
  3904. "name": "drupal/jquery_ui_draggable",
  3905. "version": "2.1.0",
  3906. "source": {
  3907. "type": "git",
  3908. "url": "https://git.drupalcode.org/project/jquery_ui_draggable.git",
  3909. "reference": "2.1.0"
  3910. },
  3911. "dist": {
  3912. "type": "zip",
  3913. "url": "https://ftp.drupal.org/files/projects/jquery_ui_draggable-2.1.0.zip",
  3914. "reference": "2.1.0",
  3915. "shasum": "0d014cfff20993d8051efb8f6c9093a4fe5136f3"
  3916. },
  3917. "require": {
  3918. "drupal/core": "^9.2 || ^10 || ^11",
  3919. "drupal/jquery_ui": "^1.7"
  3920. },
  3921. "type": "drupal-module",
  3922. "extra": {
  3923. "drupal": {
  3924. "version": "2.1.0",
  3925. "datestamp": "1717015492",
  3926. "security-coverage": {
  3927. "status": "covered",
  3928. "message": "Covered by Drupal's security advisory policy"
  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": "bnjmnm",
  3939. "homepage": "https://www.drupal.org/user/2369194"
  3940. },
  3941. {
  3942. "name": "lauriii",
  3943. "homepage": "https://www.drupal.org/user/1078742"
  3944. },
  3945. {
  3946. "name": "zrpnr",
  3947. "homepage": "https://www.drupal.org/user/1448368"
  3948. }
  3949. ],
  3950. "description": "Provides jQuery UI Draggable library.",
  3951. "homepage": "https://www.drupal.org/project/jquery_ui_draggable",
  3952. "support": {
  3953. "source": "https://git.drupalcode.org/project/jquery_ui_draggable"
  3954. }
  3955. },
  3956. {
  3957. "name": "drupal/jquery_ui_droppable",
  3958. "version": "2.1.0",
  3959. "source": {
  3960. "type": "git",
  3961. "url": "https://git.drupalcode.org/project/jquery_ui_droppable.git",
  3962. "reference": "2.1.0"
  3963. },
  3964. "dist": {
  3965. "type": "zip",
  3966. "url": "https://ftp.drupal.org/files/projects/jquery_ui_droppable-2.1.0.zip",
  3967. "reference": "2.1.0",
  3968. "shasum": "4a254056d13d7f4208929142d1a37464404c0870"
  3969. },
  3970. "require": {
  3971. "drupal/core": "^9.2 || ^10 || ^11",
  3972. "drupal/jquery_ui": "^1.7",
  3973. "drupal/jquery_ui_draggable": "^2.1"
  3974. },
  3975. "type": "drupal-module",
  3976. "extra": {
  3977. "drupal": {
  3978. "version": "2.1.0",
  3979. "datestamp": "1717031391",
  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": "zrpnr",
  4001. "homepage": "https://www.drupal.org/user/1448368"
  4002. }
  4003. ],
  4004. "description": "Provides jQuery UI Droppable library.",
  4005. "homepage": "https://www.drupal.org/project/jquery_ui_droppable",
  4006. "support": {
  4007. "source": "https://git.drupalcode.org/project/jquery_ui_droppable"
  4008. }
  4009. },
  4010. {
  4011. "name": "drupal/jquery_ui_resizable",
  4012. "version": "1.0.0",
  4013. "source": {
  4014. "type": "git",
  4015. "url": "https://git.drupalcode.org/project/jquery_ui_resizable.git",
  4016. "reference": "8.x-1.0"
  4017. },
  4018. "dist": {
  4019. "type": "zip",
  4020. "url": "https://ftp.drupal.org/files/projects/jquery_ui_resizable-8.x-1.0.zip",
  4021. "reference": "8.x-1.0",
  4022. "shasum": "f96d0937e1cc4191536aa8e46f713cfe36cf365a"
  4023. },
  4024. "require": {
  4025. "drupal/core": "^8 || ^9",
  4026. "drupal/jquery_ui": "*"
  4027. },
  4028. "type": "drupal-module",
  4029. "extra": {
  4030. "drupal": {
  4031. "version": "8.x-1.0",
  4032. "datestamp": "1607009468",
  4033. "security-coverage": {
  4034. "status": "covered",
  4035. "message": "Covered by Drupal's security advisory policy"
  4036. }
  4037. }
  4038. },
  4039. "notification-url": "https://packages.drupal.org/8/downloads",
  4040. "license": [
  4041. "GPL-2.0-or-later"
  4042. ],
  4043. "authors": [
  4044. {
  4045. "name": "bnjmnm",
  4046. "homepage": "https://www.drupal.org/user/2369194"
  4047. },
  4048. {
  4049. "name": "lauriii",
  4050. "homepage": "https://www.drupal.org/user/1078742"
  4051. },
  4052. {
  4053. "name": "nod_",
  4054. "homepage": "https://www.drupal.org/user/598310"
  4055. },
  4056. {
  4057. "name": "phenaproxima",
  4058. "homepage": "https://www.drupal.org/user/205645"
  4059. },
  4060. {
  4061. "name": "zrpnr",
  4062. "homepage": "https://www.drupal.org/user/1448368"
  4063. }
  4064. ],
  4065. "description": "Provides jQuery UI Resizable library.",
  4066. "homepage": "https://www.drupal.org/project/jquery_ui_resizable",
  4067. "support": {
  4068. "source": "https://git.drupalcode.org/project/jquery_ui_resizable"
  4069. }
  4070. },
  4071. {
  4072. "name": "drupal/jquery_ui_sortable",
  4073. "version": "2.0.1",
  4074. "source": {
  4075. "type": "git",
  4076. "url": "https://git.drupalcode.org/project/jquery_ui_sortable.git",
  4077. "reference": "2.0.1"
  4078. },
  4079. "dist": {
  4080. "type": "zip",
  4081. "url": "https://ftp.drupal.org/files/projects/jquery_ui_sortable-2.0.1.zip",
  4082. "reference": "2.0.1",
  4083. "shasum": "4e244c03b2b8324193f685677da8847aa3609522"
  4084. },
  4085. "require": {
  4086. "drupal/core": "^9.2 || ^10",
  4087. "drupal/jquery_ui": "^1.5"
  4088. },
  4089. "type": "drupal-module",
  4090. "extra": {
  4091. "drupal": {
  4092. "version": "2.0.1",
  4093. "datestamp": "1694604335",
  4094. "security-coverage": {
  4095. "status": "covered",
  4096. "message": "Covered by Drupal's security advisory policy"
  4097. }
  4098. }
  4099. },
  4100. "notification-url": "https://packages.drupal.org/8/downloads",
  4101. "license": [
  4102. "GPL-2.0-or-later"
  4103. ],
  4104. "authors": [
  4105. {
  4106. "name": "bnjmnm",
  4107. "homepage": "https://www.drupal.org/user/2369194"
  4108. },
  4109. {
  4110. "name": "lauriii",
  4111. "homepage": "https://www.drupal.org/user/1078742"
  4112. },
  4113. {
  4114. "name": "zrpnr",
  4115. "homepage": "https://www.drupal.org/user/1448368"
  4116. }
  4117. ],
  4118. "description": "Provides jQuery UI Sortable library.",
  4119. "homepage": "https://www.drupal.org/project/jquery_ui_sortable",
  4120. "support": {
  4121. "source": "https://git.drupalcode.org/project/jquery_ui_sortable"
  4122. }
  4123. },
  4124. {
  4125. "name": "drupal/js_cookie",
  4126. "version": "1.0.1",
  4127. "source": {
  4128. "type": "git",
  4129. "url": "https://git.drupalcode.org/project/js_cookie.git",
  4130. "reference": "1.0.1"
  4131. },
  4132. "dist": {
  4133. "type": "zip",
  4134. "url": "https://ftp.drupal.org/files/projects/js_cookie-1.0.1.zip",
  4135. "reference": "1.0.1",
  4136. "shasum": "e010b3de64a0d57eef9c1773c4dd7e3d9bd9118c"
  4137. },
  4138. "require": {
  4139. "drupal/core": "^9 || ^10 || ^11"
  4140. },
  4141. "type": "drupal-module",
  4142. "extra": {
  4143. "drupal": {
  4144. "version": "1.0.1",
  4145. "datestamp": "1693951097",
  4146. "security-coverage": {
  4147. "status": "covered",
  4148. "message": "Covered by Drupal's security advisory policy"
  4149. }
  4150. }
  4151. },
  4152. "notification-url": "https://packages.drupal.org/8/downloads",
  4153. "license": [
  4154. "GPL-2.0-or-later"
  4155. ],
  4156. "authors": [
  4157. {
  4158. "name": "Dave Reid",
  4159. "homepage": "https://www.drupal.org/user/53892"
  4160. }
  4161. ],
  4162. "description": "Provides the js-cookie library as a dependency.",
  4163. "homepage": "https://www.drupal.org/project/js_cookie",
  4164. "support": {
  4165. "source": "https://git.drupalcode.org/project/js_cookie"
  4166. }
  4167. },
  4168. {
  4169. "name": "drupal/linkit",
  4170. "version": "6.0.2",
  4171. "source": {
  4172. "type": "git",
  4173. "url": "https://git.drupalcode.org/project/linkit.git",
  4174. "reference": "6.0.2"
  4175. },
  4176. "dist": {
  4177. "type": "zip",
  4178. "url": "https://ftp.drupal.org/files/projects/linkit-6.0.2.zip",
  4179. "reference": "6.0.2",
  4180. "shasum": "b7d965d122403c0d1cd8b891db3ea56004026804"
  4181. },
  4182. "require": {
  4183. "drupal/core": "^9.4 || ^10.0.0"
  4184. },
  4185. "conflict": {
  4186. "drupal/core": ">=10.1"
  4187. },
  4188. "require-dev": {
  4189. "drupal/ckeditor": "*",
  4190. "drupal/imce": "*"
  4191. },
  4192. "type": "drupal-module",
  4193. "extra": {
  4194. "drupal": {
  4195. "version": "6.0.2",
  4196. "datestamp": "1696865395",
  4197. "security-coverage": {
  4198. "status": "covered",
  4199. "message": "Covered by Drupal's security advisory policy"
  4200. }
  4201. }
  4202. },
  4203. "notification-url": "https://packages.drupal.org/8/downloads",
  4204. "license": [
  4205. "GPL-2.0-or-later"
  4206. ],
  4207. "authors": [
  4208. {
  4209. "name": "Emil Stjerneman",
  4210. "homepage": "https://stjerneman.com",
  4211. "email": "emil@stjerneman.com",
  4212. "role": "Maintainer"
  4213. },
  4214. {
  4215. "name": "johnwebdev",
  4216. "homepage": "https://www.drupal.org/user/3331569"
  4217. },
  4218. {
  4219. "name": "mark_fullmer",
  4220. "homepage": "https://www.drupal.org/user/2612816"
  4221. }
  4222. ],
  4223. "description": "Linkit - Enriched linking experience",
  4224. "homepage": "http://drupal.org/project/linkit",
  4225. "support": {
  4226. "source": "http://cgit.drupalcode.org/linkit",
  4227. "issues": "http://drupal.org/project/linkit"
  4228. }
  4229. },
  4230. {
  4231. "name": "drupal/login_emailusername",
  4232. "version": "2.1.0",
  4233. "source": {
  4234. "type": "git",
  4235. "url": "https://git.drupalcode.org/project/login_emailusername.git",
  4236. "reference": "2.1.0"
  4237. },
  4238. "dist": {
  4239. "type": "zip",
  4240. "url": "https://ftp.drupal.org/files/projects/login_emailusername-2.1.0.zip",
  4241. "reference": "2.1.0",
  4242. "shasum": "5a3858d06e7d67110a6cd8eda38cbfeb350f115c"
  4243. },
  4244. "require": {
  4245. "drupal/core": "^8.8 || ^9 || ^10"
  4246. },
  4247. "type": "drupal-module",
  4248. "extra": {
  4249. "drupal": {
  4250. "version": "2.1.0",
  4251. "datestamp": "1677072401",
  4252. "security-coverage": {
  4253. "status": "covered",
  4254. "message": "Covered by Drupal's security advisory policy"
  4255. }
  4256. },
  4257. "branch-alias": {
  4258. "dev-8.x-1.x": "8.1.x-dev"
  4259. }
  4260. },
  4261. "notification-url": "https://packages.drupal.org/8/downloads",
  4262. "license": [
  4263. "GPL-2.0-or-later"
  4264. ],
  4265. "authors": [
  4266. {
  4267. "name": "See contributors",
  4268. "homepage": "https://www.drupal.org/node/2820429/committers",
  4269. "role": "contributor"
  4270. },
  4271. {
  4272. "name": "rjjakes",
  4273. "homepage": "https://www.drupal.org/user/3457245"
  4274. },
  4275. {
  4276. "name": "VladimirAus",
  4277. "homepage": "https://www.drupal.org/user/673120"
  4278. }
  4279. ],
  4280. "description": "Login with the email as username.",
  4281. "homepage": "https://drupal.org/project/login_emailusername",
  4282. "support": {
  4283. "source": "https://git.drupalcode.org/project/login_emailusername",
  4284. "issues": "https://drupal.org/project/issues/login_emailusername"
  4285. }
  4286. },
  4287. {
  4288. "name": "drupal/maillog",
  4289. "version": "1.0.0-beta1",
  4290. "source": {
  4291. "type": "git",
  4292. "url": "https://git.drupalcode.org/project/maillog.git",
  4293. "reference": "8.x-1.0-beta1"
  4294. },
  4295. "dist": {
  4296. "type": "zip",
  4297. "url": "https://ftp.drupal.org/files/projects/maillog-8.x-1.0-beta1.zip",
  4298. "reference": "8.x-1.0-beta1",
  4299. "shasum": "0af5fe6fcdc8053bd0a61561a2c69e69c2b1faf2"
  4300. },
  4301. "require": {
  4302. "drupal/core": "^8 || ^9"
  4303. },
  4304. "type": "drupal-module",
  4305. "extra": {
  4306. "drupal": {
  4307. "version": "8.x-1.0-beta1",
  4308. "datestamp": "1600800168",
  4309. "security-coverage": {
  4310. "status": "not-covered",
  4311. "message": "Beta releases are not covered by Drupal security advisories."
  4312. }
  4313. }
  4314. },
  4315. "notification-url": "https://packages.drupal.org/8/downloads",
  4316. "license": [
  4317. "GPL-2.0-or-later"
  4318. ],
  4319. "authors": [
  4320. {
  4321. "name": "berdir",
  4322. "homepage": "https://www.drupal.org/user/214652"
  4323. },
  4324. {
  4325. "name": "damienmckenna",
  4326. "homepage": "https://www.drupal.org/user/108450"
  4327. },
  4328. {
  4329. "name": "miro_dietiker",
  4330. "homepage": "https://www.drupal.org/user/227761"
  4331. },
  4332. {
  4333. "name": "pluess",
  4334. "homepage": "https://www.drupal.org/user/84659"
  4335. }
  4336. ],
  4337. "description": "Utility to log all Mails for debugging purposes. It is possible to suppress mail delivery for e.g. dev or staging systems.",
  4338. "homepage": "https://www.drupal.org/project/maillog",
  4339. "support": {
  4340. "source": "https://git.drupalcode.org/project/maillog"
  4341. }
  4342. },
  4343. {
  4344. "name": "drupal/menu_admin_per_menu",
  4345. "version": "1.5.0",
  4346. "source": {
  4347. "type": "git",
  4348. "url": "https://git.drupalcode.org/project/menu_admin_per_menu.git",
  4349. "reference": "8.x-1.5"
  4350. },
  4351. "dist": {
  4352. "type": "zip",
  4353. "url": "https://ftp.drupal.org/files/projects/menu_admin_per_menu-8.x-1.5.zip",
  4354. "reference": "8.x-1.5",
  4355. "shasum": "ec8c7a4a064aa285dfb722dad264da9936fc81b6"
  4356. },
  4357. "require": {
  4358. "drupal/core": "^9 || ^10"
  4359. },
  4360. "type": "drupal-module",
  4361. "extra": {
  4362. "drupal": {
  4363. "version": "8.x-1.5",
  4364. "datestamp": "1660918821",
  4365. "security-coverage": {
  4366. "status": "covered",
  4367. "message": "Covered by Drupal's security advisory policy"
  4368. }
  4369. }
  4370. },
  4371. "notification-url": "https://packages.drupal.org/8/downloads",
  4372. "license": [
  4373. "GPL-2.0-or-later"
  4374. ],
  4375. "authors": [
  4376. {
  4377. "name": "anrikun",
  4378. "homepage": "https://www.drupal.org/user/410199"
  4379. },
  4380. {
  4381. "name": "jeroent",
  4382. "homepage": "https://www.drupal.org/user/2228934"
  4383. },
  4384. {
  4385. "name": "jonas139",
  4386. "homepage": "https://www.drupal.org/user/2873401"
  4387. },
  4388. {
  4389. "name": "mkdok",
  4390. "homepage": "https://www.drupal.org/user/3308753"
  4391. }
  4392. ],
  4393. "description": "Allows to give roles per menu admin permissions without giving them full administer menu permission.",
  4394. "homepage": "https://www.drupal.org/project/menu_admin_per_menu",
  4395. "support": {
  4396. "source": "https://git.drupalcode.org/project/menu_admin_per_menu"
  4397. }
  4398. },
  4399. {
  4400. "name": "drupal/metatag",
  4401. "version": "2.0.2",
  4402. "source": {
  4403. "type": "git",
  4404. "url": "https://git.drupalcode.org/project/metatag.git",
  4405. "reference": "2.0.2"
  4406. },
  4407. "dist": {
  4408. "type": "zip",
  4409. "url": "https://ftp.drupal.org/files/projects/metatag-2.0.2.zip",
  4410. "reference": "2.0.2",
  4411. "shasum": "748013c50a0ed5e10359413bb3481392a0bf0d3f"
  4412. },
  4413. "require": {
  4414. "drupal/core": "^9.4 || ^10 || ^11",
  4415. "drupal/token": "^1.0",
  4416. "php": ">=8.0"
  4417. },
  4418. "require-dev": {
  4419. "drupal/hal": "^1 || ^2 || ^9",
  4420. "drupal/metatag_dc": "*",
  4421. "drupal/metatag_open_graph": "*",
  4422. "drupal/page_manager": "^4.0",
  4423. "drupal/redirect": "^1.0",
  4424. "ergebnis/composer-normalize": "*",
  4425. "mpyw/phpunit-patch-serializable-comparison": "*"
  4426. },
  4427. "type": "drupal-module",
  4428. "extra": {
  4429. "drupal": {
  4430. "version": "2.0.2",
  4431. "datestamp": "1722869772",
  4432. "security-coverage": {
  4433. "status": "covered",
  4434. "message": "Covered by Drupal's security advisory policy"
  4435. }
  4436. },
  4437. "composer-normalize": {
  4438. "indent-size": 2,
  4439. "indent-style": "space"
  4440. }
  4441. },
  4442. "notification-url": "https://packages.drupal.org/8/downloads",
  4443. "license": [
  4444. "GPL-2.0-or-later"
  4445. ],
  4446. "authors": [
  4447. {
  4448. "name": "See contributors",
  4449. "homepage": "https://www.drupal.org/node/640498/committers",
  4450. "role": "Developer"
  4451. },
  4452. {
  4453. "name": "dave reid",
  4454. "homepage": "https://www.drupal.org/user/53892"
  4455. }
  4456. ],
  4457. "description": "Manage meta tags for all entities.",
  4458. "homepage": "https://www.drupal.org/project/metatag",
  4459. "keywords": [
  4460. "Drupal",
  4461. "seo"
  4462. ],
  4463. "support": {
  4464. "source": "https://git.drupalcode.org/project/metatag",
  4465. "issues": "https://www.drupal.org/project/issues/metatag",
  4466. "docs": "https://www.drupal.org/docs/8/modules/metatag"
  4467. }
  4468. },
  4469. {
  4470. "name": "drupal/pathauto",
  4471. "version": "1.13.0",
  4472. "source": {
  4473. "type": "git",
  4474. "url": "https://git.drupalcode.org/project/pathauto.git",
  4475. "reference": "8.x-1.13"
  4476. },
  4477. "dist": {
  4478. "type": "zip",
  4479. "url": "https://ftp.drupal.org/files/projects/pathauto-8.x-1.13.zip",
  4480. "reference": "8.x-1.13",
  4481. "shasum": "e64b5a82cf1b8ab48bce400b21ae6fc99c8078fd"
  4482. },
  4483. "require": {
  4484. "drupal/core": "^9.4 || ^10 || ^11",
  4485. "drupal/ctools": "*",
  4486. "drupal/token": "*"
  4487. },
  4488. "require-dev": {
  4489. "drupal/forum": "*"
  4490. },
  4491. "suggest": {
  4492. "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."
  4493. },
  4494. "type": "drupal-module",
  4495. "extra": {
  4496. "drupal": {
  4497. "version": "8.x-1.13",
  4498. "datestamp": "1722507672",
  4499. "security-coverage": {
  4500. "status": "covered",
  4501. "message": "Covered by Drupal's security advisory policy"
  4502. }
  4503. },
  4504. "drush": {
  4505. "services": {
  4506. "drush.services.yml": "^9 || ^10"
  4507. }
  4508. }
  4509. },
  4510. "notification-url": "https://packages.drupal.org/8/downloads",
  4511. "license": [
  4512. "GPL-2.0-or-later"
  4513. ],
  4514. "authors": [
  4515. {
  4516. "name": "Berdir",
  4517. "homepage": "https://www.drupal.org/user/214652"
  4518. },
  4519. {
  4520. "name": "Dave Reid",
  4521. "homepage": "https://www.drupal.org/user/53892"
  4522. },
  4523. {
  4524. "name": "Freso",
  4525. "homepage": "https://www.drupal.org/user/27504"
  4526. },
  4527. {
  4528. "name": "greggles",
  4529. "homepage": "https://www.drupal.org/user/36762"
  4530. }
  4531. ],
  4532. "description": "Provides a mechanism for modules to automatically generate aliases for the content they manage.",
  4533. "homepage": "https://www.drupal.org/project/pathauto",
  4534. "support": {
  4535. "source": "https://cgit.drupalcode.org/pathauto",
  4536. "issues": "https://www.drupal.org/project/issues/pathauto",
  4537. "documentation": "https://www.drupal.org/docs/8/modules/pathauto"
  4538. }
  4539. },
  4540. {
  4541. "name": "drupal/profile",
  4542. "version": "1.4.0",
  4543. "source": {
  4544. "type": "git",
  4545. "url": "https://git.drupalcode.org/project/profile.git",
  4546. "reference": "8.x-1.4"
  4547. },
  4548. "dist": {
  4549. "type": "zip",
  4550. "url": "https://ftp.drupal.org/files/projects/profile-8.x-1.4.zip",
  4551. "reference": "8.x-1.4",
  4552. "shasum": "253fd577c3b791c93747bb910ad2ae8e67d71eed"
  4553. },
  4554. "require": {
  4555. "drupal/core": "^8.9 || ^9 || ^10",
  4556. "drupal/entity": "^1.0-rc2"
  4557. },
  4558. "require-dev": {
  4559. "drupal/token": "^1.7"
  4560. },
  4561. "type": "drupal-module",
  4562. "extra": {
  4563. "drupal": {
  4564. "version": "8.x-1.4",
  4565. "datestamp": "1652430373",
  4566. "security-coverage": {
  4567. "status": "covered",
  4568. "message": "Covered by Drupal's security advisory policy"
  4569. }
  4570. }
  4571. },
  4572. "notification-url": "https://packages.drupal.org/8/downloads",
  4573. "license": [
  4574. "GPL-2.0-or-later"
  4575. ],
  4576. "authors": [
  4577. {
  4578. "name": "bojanz",
  4579. "homepage": "https://www.drupal.org/user/86106"
  4580. },
  4581. {
  4582. "name": "daggerhart",
  4583. "homepage": "https://www.drupal.org/user/167806"
  4584. },
  4585. {
  4586. "name": "fago",
  4587. "homepage": "https://www.drupal.org/user/16747"
  4588. },
  4589. {
  4590. "name": "jsacksick",
  4591. "homepage": "https://www.drupal.org/user/972218"
  4592. },
  4593. {
  4594. "name": "mglaman",
  4595. "homepage": "https://www.drupal.org/user/2416470"
  4596. },
  4597. {
  4598. "name": "pcambra",
  4599. "homepage": "https://www.drupal.org/user/122101"
  4600. }
  4601. ],
  4602. "description": "Provides configurable user profiles.",
  4603. "homepage": "http://drupal.org/project/profile",
  4604. "support": {
  4605. "source": "https://git.drupalcode.org/project/profile"
  4606. }
  4607. },
  4608. {
  4609. "name": "drupal/redirect",
  4610. "version": "1.10.0",
  4611. "source": {
  4612. "type": "git",
  4613. "url": "https://git.drupalcode.org/project/redirect.git",
  4614. "reference": "8.x-1.10"
  4615. },
  4616. "dist": {
  4617. "type": "zip",
  4618. "url": "https://ftp.drupal.org/files/projects/redirect-8.x-1.10.zip",
  4619. "reference": "8.x-1.10",
  4620. "shasum": "9d72d7e0717dbdea3ab3306c5d6840da5bd3024c"
  4621. },
  4622. "require": {
  4623. "drupal/core": "^9.2 || ^10 || ^11"
  4624. },
  4625. "type": "drupal-module",
  4626. "extra": {
  4627. "drupal": {
  4628. "version": "8.x-1.10",
  4629. "datestamp": "1723277641",
  4630. "security-coverage": {
  4631. "status": "covered",
  4632. "message": "Covered by Drupal's security advisory policy"
  4633. }
  4634. }
  4635. },
  4636. "notification-url": "https://packages.drupal.org/8/downloads",
  4637. "license": [
  4638. "GPL-2.0-or-later"
  4639. ],
  4640. "authors": [
  4641. {
  4642. "name": "Berdir",
  4643. "homepage": "https://www.drupal.org/user/214652"
  4644. },
  4645. {
  4646. "name": "dave reid",
  4647. "homepage": "https://www.drupal.org/user/53892"
  4648. },
  4649. {
  4650. "name": "Kristen Pol",
  4651. "homepage": "https://www.drupal.org/user/8389"
  4652. },
  4653. {
  4654. "name": "pifagor",
  4655. "homepage": "https://www.drupal.org/user/2375692"
  4656. }
  4657. ],
  4658. "description": "Allows users to redirect from old URLs to new URLs.",
  4659. "homepage": "https://www.drupal.org/project/redirect",
  4660. "support": {
  4661. "source": "https://git.drupalcode.org/project/redirect"
  4662. }
  4663. },
  4664. {
  4665. "name": "drupal/redis",
  4666. "version": "1.8.0",
  4667. "source": {
  4668. "type": "git",
  4669. "url": "https://git.drupalcode.org/project/redis.git",
  4670. "reference": "8.x-1.8"
  4671. },
  4672. "dist": {
  4673. "type": "zip",
  4674. "url": "https://ftp.drupal.org/files/projects/redis-8.x-1.8.zip",
  4675. "reference": "8.x-1.8",
  4676. "shasum": "6de73086d29de3b041594bae97c74401cbf05c3d"
  4677. },
  4678. "require": {
  4679. "drupal/core": "^9.3 || ^10 || ^11"
  4680. },
  4681. "suggest": {
  4682. "ext-redis": "Required to use the PhpRedis as redis driver (^4.0|^5.0).",
  4683. "ext-relay": "Required to use the Relay as Redis driver (^0.5|^1.0).",
  4684. "predis/predis": "Required to use the Predis as redis driver (^1.1|^2.0)."
  4685. },
  4686. "type": "drupal-module",
  4687. "extra": {
  4688. "drupal": {
  4689. "version": "8.x-1.8",
  4690. "datestamp": "1723934771",
  4691. "security-coverage": {
  4692. "status": "covered",
  4693. "message": "Covered by Drupal's security advisory policy"
  4694. }
  4695. }
  4696. },
  4697. "autoload": {
  4698. "psr-4": {
  4699. "Drupal\\redis\\": "src"
  4700. }
  4701. },
  4702. "notification-url": "https://packages.drupal.org/8/downloads",
  4703. "license": [
  4704. "GPL-2.0-or-later"
  4705. ],
  4706. "authors": [
  4707. {
  4708. "name": "berdir",
  4709. "homepage": "https://www.drupal.org/user/214652"
  4710. },
  4711. {
  4712. "name": "greg.1.anderson",
  4713. "homepage": "https://www.drupal.org/user/438598"
  4714. },
  4715. {
  4716. "name": "kporras07",
  4717. "homepage": "https://www.drupal.org/user/1349780"
  4718. },
  4719. {
  4720. "name": "pounard",
  4721. "homepage": "https://www.drupal.org/user/240164"
  4722. }
  4723. ],
  4724. "description": "Integration of Drupal with the Redis key-value store.",
  4725. "homepage": "https://www.drupal.org/project/redis",
  4726. "support": {
  4727. "source": "https://git.drupalcode.org/project/redis"
  4728. }
  4729. },
  4730. {
  4731. "name": "drupal/restui",
  4732. "version": "1.21.0",
  4733. "source": {
  4734. "type": "git",
  4735. "url": "https://git.drupalcode.org/project/restui.git",
  4736. "reference": "8.x-1.21"
  4737. },
  4738. "dist": {
  4739. "type": "zip",
  4740. "url": "https://ftp.drupal.org/files/projects/restui-8.x-1.21.zip",
  4741. "reference": "8.x-1.21",
  4742. "shasum": "2a67dc2c1953dced0bddaff25e5c60784ee0178c"
  4743. },
  4744. "require": {
  4745. "drupal/core": "^8.7.7 || ^9 || ^10"
  4746. },
  4747. "type": "drupal-module",
  4748. "extra": {
  4749. "drupal": {
  4750. "version": "8.x-1.21",
  4751. "datestamp": "1659086914",
  4752. "security-coverage": {
  4753. "status": "covered",
  4754. "message": "Covered by Drupal's security advisory policy"
  4755. }
  4756. }
  4757. },
  4758. "notification-url": "https://packages.drupal.org/8/downloads",
  4759. "license": [
  4760. "GPL-2.0-or-later"
  4761. ],
  4762. "authors": [
  4763. {
  4764. "name": "-enzo-",
  4765. "homepage": "https://www.drupal.org/user/294937"
  4766. },
  4767. {
  4768. "name": "clemens.tolboom",
  4769. "homepage": "https://www.drupal.org/user/125814"
  4770. },
  4771. {
  4772. "name": "juampynr",
  4773. "homepage": "https://www.drupal.org/user/682736"
  4774. },
  4775. {
  4776. "name": "kamkejj",
  4777. "homepage": "https://www.drupal.org/user/81043"
  4778. },
  4779. {
  4780. "name": "vipin.mittal18",
  4781. "homepage": "https://www.drupal.org/user/319716"
  4782. }
  4783. ],
  4784. "description": "Provides a user interface to manage REST resources.",
  4785. "homepage": "https://www.drupal.org/project/restui",
  4786. "support": {
  4787. "source": "https://git.drupalcode.org/project/restui"
  4788. }
  4789. },
  4790. {
  4791. "name": "drupal/search_api",
  4792. "version": "1.23.0",
  4793. "source": {
  4794. "type": "git",
  4795. "url": "https://git.drupalcode.org/project/search_api.git",
  4796. "reference": "8.x-1.23"
  4797. },
  4798. "dist": {
  4799. "type": "zip",
  4800. "url": "https://ftp.drupal.org/files/projects/search_api-8.x-1.23.zip",
  4801. "reference": "8.x-1.23",
  4802. "shasum": "7de5425bba5b8daa37e98d47b677459dfb1abbe7"
  4803. },
  4804. "require": {
  4805. "drupal/core": "^8.8 || ^9"
  4806. },
  4807. "conflict": {
  4808. "drupal/search_api_solr": "2.* || 3.0 || 3.1"
  4809. },
  4810. "require-dev": {
  4811. "drupal/language_fallback_fix": "@dev",
  4812. "drupal/search_api_autocomplete": "@dev",
  4813. "drupal/search_api_db": "*"
  4814. },
  4815. "suggest": {
  4816. "drupal/facets": "Adds the ability to create faceted searches.",
  4817. "drupal/search_api_autocomplete": "Allows adding autocomplete suggestions to search fields.",
  4818. "drupal/search_api_solr": "Adds support for using Apache Solr as a backend."
  4819. },
  4820. "type": "drupal-module",
  4821. "extra": {
  4822. "drupal": {
  4823. "version": "8.x-1.23",
  4824. "datestamp": "1642935837",
  4825. "security-coverage": {
  4826. "status": "covered",
  4827. "message": "Covered by Drupal's security advisory policy"
  4828. }
  4829. },
  4830. "drush": {
  4831. "services": {
  4832. "drush.services.yml": "^9 || ^10"
  4833. }
  4834. }
  4835. },
  4836. "notification-url": "https://packages.drupal.org/8/downloads",
  4837. "license": [
  4838. "GPL-2.0-or-later"
  4839. ],
  4840. "authors": [
  4841. {
  4842. "name": "Thomas Seidl",
  4843. "homepage": "https://www.drupal.org/u/drunken-monkey"
  4844. },
  4845. {
  4846. "name": "Nick Veenhof",
  4847. "homepage": "https://www.drupal.org/u/nick_vh"
  4848. },
  4849. {
  4850. "name": "See other contributors",
  4851. "homepage": "https://www.drupal.org/node/790418/committers"
  4852. }
  4853. ],
  4854. "description": "Provides a generic framework for modules offering search capabilities.",
  4855. "homepage": "https://www.drupal.org/project/search_api",
  4856. "support": {
  4857. "source": "https://git.drupalcode.org/project/search_api",
  4858. "issues": "https://www.drupal.org/project/issues/search_api",
  4859. "irc": "irc://irc.freenode.org/drupal-search-api"
  4860. }
  4861. },
  4862. {
  4863. "name": "drupal/simple_sitemap",
  4864. "version": "3.11.0",
  4865. "source": {
  4866. "type": "git",
  4867. "url": "https://git.drupalcode.org/project/simple_sitemap.git",
  4868. "reference": "8.x-3.11"
  4869. },
  4870. "dist": {
  4871. "type": "zip",
  4872. "url": "https://ftp.drupal.org/files/projects/simple_sitemap-8.x-3.11.zip",
  4873. "reference": "8.x-3.11",
  4874. "shasum": "5fdd4ed5af5e37e3c707e401d094a179f52e7711"
  4875. },
  4876. "require": {
  4877. "drupal/core": "^8 || ^9",
  4878. "ext-xmlwriter": "*"
  4879. },
  4880. "type": "drupal-module",
  4881. "extra": {
  4882. "drupal": {
  4883. "version": "8.x-3.11",
  4884. "datestamp": "1658781789",
  4885. "security-coverage": {
  4886. "status": "covered",
  4887. "message": "Covered by Drupal's security advisory policy"
  4888. }
  4889. },
  4890. "drush": {
  4891. "services": {
  4892. "drush.services.yml": "^9 || ^10"
  4893. }
  4894. }
  4895. },
  4896. "notification-url": "https://packages.drupal.org/8/downloads",
  4897. "license": [
  4898. "GPL-2.0-or-later"
  4899. ],
  4900. "authors": [
  4901. {
  4902. "name": "Pawel Ginalski (gbyte)",
  4903. "homepage": "https://www.drupal.org/u/gbyte",
  4904. "email": "contact@gbyte.dev",
  4905. "role": "Maintainer"
  4906. },
  4907. {
  4908. "name": "walkingdexter",
  4909. "homepage": "https://www.drupal.org/user/3251330"
  4910. }
  4911. ],
  4912. "description": "Creates a standard conform hreflang XML sitemap of the site content and provides a framework for developing other sitemap types.",
  4913. "homepage": "https://drupal.org/project/simple_sitemap",
  4914. "support": {
  4915. "source": "https://cgit.drupalcode.org/simple_sitemap",
  4916. "issues": "https://drupal.org/project/issues/simple_sitemap",
  4917. "irc": "irc://irc.freenode.org/drupal-contribute"
  4918. }
  4919. },
  4920. {
  4921. "name": "drupal/synonyms",
  4922. "version": "1.0.0-alpha3",
  4923. "source": {
  4924. "type": "git",
  4925. "url": "https://git.drupalcode.org/project/synonyms.git",
  4926. "reference": "8.x-1.0-alpha3"
  4927. },
  4928. "dist": {
  4929. "type": "zip",
  4930. "url": "https://ftp.drupal.org/files/projects/synonyms-8.x-1.0-alpha3.zip",
  4931. "reference": "8.x-1.0-alpha3",
  4932. "shasum": "0306a9dfb279c0594246b49658309c1686e984a9"
  4933. },
  4934. "require": {
  4935. "drupal/core": "^8 || ^9"
  4936. },
  4937. "type": "drupal-module",
  4938. "extra": {
  4939. "drupal": {
  4940. "version": "8.x-1.0-alpha3",
  4941. "datestamp": "1609623594",
  4942. "security-coverage": {
  4943. "status": "not-covered",
  4944. "message": "Alpha releases are not covered by Drupal security advisories."
  4945. }
  4946. }
  4947. },
  4948. "notification-url": "https://packages.drupal.org/8/downloads",
  4949. "license": [
  4950. "GPL-2.0-or-later"
  4951. ],
  4952. "authors": [
  4953. {
  4954. "name": "bojanz",
  4955. "homepage": "https://www.drupal.org/user/86106"
  4956. },
  4957. {
  4958. "name": "bucefal91",
  4959. "homepage": "https://www.drupal.org/user/504128"
  4960. },
  4961. {
  4962. "name": "devad",
  4963. "homepage": "https://www.drupal.org/user/2268520"
  4964. },
  4965. {
  4966. "name": "Zen",
  4967. "homepage": "https://www.drupal.org/user/21209"
  4968. }
  4969. ],
  4970. "description": "Provides synonyms feature for content entities.",
  4971. "homepage": "https://www.drupal.org/project/synonyms",
  4972. "support": {
  4973. "source": "https://git.drupalcode.org/project/synonyms"
  4974. }
  4975. },
  4976. {
  4977. "name": "drupal/token",
  4978. "version": "1.10.0",
  4979. "source": {
  4980. "type": "git",
  4981. "url": "https://git.drupalcode.org/project/token.git",
  4982. "reference": "8.x-1.10"
  4983. },
  4984. "dist": {
  4985. "type": "zip",
  4986. "url": "https://ftp.drupal.org/files/projects/token-8.x-1.10.zip",
  4987. "reference": "8.x-1.10",
  4988. "shasum": "8b81224ab0420221b292e8d3b66d0da726317400"
  4989. },
  4990. "require": {
  4991. "drupal/core": "^8.8 || ^9"
  4992. },
  4993. "type": "drupal-module",
  4994. "extra": {
  4995. "drupal": {
  4996. "version": "8.x-1.10",
  4997. "datestamp": "1638619775",
  4998. "security-coverage": {
  4999. "status": "covered",
  5000. "message": "Covered by Drupal's security advisory policy"
  5001. }
  5002. },
  5003. "drush": {
  5004. "services": {
  5005. "drush.services.yml": "^9 || ^10"
  5006. }
  5007. }
  5008. },
  5009. "notification-url": "https://packages.drupal.org/8/downloads",
  5010. "license": [
  5011. "GPL-2.0-or-later"
  5012. ],
  5013. "authors": [
  5014. {
  5015. "name": "Berdir",
  5016. "homepage": "https://www.drupal.org/user/214652"
  5017. },
  5018. {
  5019. "name": "Dave Reid",
  5020. "homepage": "https://www.drupal.org/user/53892"
  5021. },
  5022. {
  5023. "name": "eaton",
  5024. "homepage": "https://www.drupal.org/user/16496"
  5025. },
  5026. {
  5027. "name": "fago",
  5028. "homepage": "https://www.drupal.org/user/16747"
  5029. },
  5030. {
  5031. "name": "greggles",
  5032. "homepage": "https://www.drupal.org/user/36762"
  5033. },
  5034. {
  5035. "name": "mikeryan",
  5036. "homepage": "https://www.drupal.org/user/4420"
  5037. }
  5038. ],
  5039. "description": "Provides a user interface for the Token API, some missing core tokens.",
  5040. "homepage": "https://www.drupal.org/project/token",
  5041. "support": {
  5042. "source": "https://git.drupalcode.org/project/token"
  5043. }
  5044. },
  5045. {
  5046. "name": "drupal/translation_views",
  5047. "version": "1.0.0-alpha11",
  5048. "source": {
  5049. "type": "git",
  5050. "url": "https://git.drupalcode.org/project/translation_views.git",
  5051. "reference": "8.x-1.0-alpha11"
  5052. },
  5053. "dist": {
  5054. "type": "zip",
  5055. "url": "https://ftp.drupal.org/files/projects/translation_views-8.x-1.0-alpha11.zip",
  5056. "reference": "8.x-1.0-alpha11",
  5057. "shasum": "331c0ec63e99760d7ae34a4db1ba7766f683f6d1"
  5058. },
  5059. "require": {
  5060. "drupal/core": "^8.8 || ^9 || ^10"
  5061. },
  5062. "require-dev": {
  5063. "drupal/translators_content": "^1.0@alpha"
  5064. },
  5065. "type": "drupal-module",
  5066. "extra": {
  5067. "drupal": {
  5068. "version": "8.x-1.0-alpha11",
  5069. "datestamp": "1679660668",
  5070. "security-coverage": {
  5071. "status": "not-covered",
  5072. "message": "Project has not opted into security advisory coverage!"
  5073. }
  5074. }
  5075. },
  5076. "notification-url": "https://packages.drupal.org/8/downloads",
  5077. "license": [
  5078. "GPL-2.0-or-later"
  5079. ],
  5080. "authors": [
  5081. {
  5082. "name": "matsbla",
  5083. "homepage": "https://www.drupal.org/user/2325394"
  5084. },
  5085. {
  5086. "name": "vlad.dancer",
  5087. "homepage": "https://www.drupal.org/user/903844"
  5088. }
  5089. ],
  5090. "description": "Create customized lists and queries of translations from your database.",
  5091. "homepage": "https://www.drupal.org/project/translation_views",
  5092. "support": {
  5093. "source": "https://git.drupalcode.org/project/translation_views"
  5094. }
  5095. },
  5096. {
  5097. "name": "drupal/upgrade_status",
  5098. "version": "3.19.0",
  5099. "source": {
  5100. "type": "git",
  5101. "url": "https://git.drupalcode.org/project/upgrade_status.git",
  5102. "reference": "8.x-3.19"
  5103. },
  5104. "dist": {
  5105. "type": "zip",
  5106. "url": "https://ftp.drupal.org/files/projects/upgrade_status-8.x-3.19.zip",
  5107. "reference": "8.x-3.19",
  5108. "shasum": "e155b34b80f2782778b841d72639bd0ac8b923f9"
  5109. },
  5110. "require": {
  5111. "drupal/core": "^8 || ^9",
  5112. "mathieuviossat/arraytotexttable": "~1.0.0",
  5113. "mglaman/phpstan-drupal": "^1.0.0",
  5114. "nikic/php-parser": "^4.0.0",
  5115. "phpstan/phpstan-deprecation-rules": "^1.0.0",
  5116. "symfony/process": "^3.4|^4.0|^5.0|^6.0",
  5117. "webflo/drupal-finder": "^1.2"
  5118. },
  5119. "type": "drupal-module",
  5120. "extra": {
  5121. "drupal": {
  5122. "version": "8.x-3.19",
  5123. "datestamp": "1678815320",
  5124. "security-coverage": {
  5125. "status": "covered",
  5126. "message": "Covered by Drupal's security advisory policy"
  5127. }
  5128. },
  5129. "drush": {
  5130. "services": {
  5131. "drush.services.yml": "^9 || ^10"
  5132. }
  5133. }
  5134. },
  5135. "notification-url": "https://packages.drupal.org/8/downloads",
  5136. "license": [
  5137. "GPL-2.0-or-later"
  5138. ],
  5139. "authors": [
  5140. {
  5141. "name": "Gábor Hojtsy",
  5142. "homepage": "https://www.drupal.org/user/4166"
  5143. }
  5144. ],
  5145. "description": "Review Drupal major upgrade readiness of the environment and components of the site.",
  5146. "homepage": "http://drupal.org/project/upgrade_status",
  5147. "support": {
  5148. "source": "https://git.drupalcode.org/project/upgrade_status"
  5149. }
  5150. },
  5151. {
  5152. "name": "drupal/views_bulk_edit",
  5153. "version": "2.7.0",
  5154. "source": {
  5155. "type": "git",
  5156. "url": "https://git.drupalcode.org/project/views_bulk_edit.git",
  5157. "reference": "8.x-2.7"
  5158. },
  5159. "dist": {
  5160. "type": "zip",
  5161. "url": "https://ftp.drupal.org/files/projects/views_bulk_edit-8.x-2.7.zip",
  5162. "reference": "8.x-2.7",
  5163. "shasum": "148457820e7ecd78942326c9c799147ed440f2a6"
  5164. },
  5165. "require": {
  5166. "drupal/core": "^8 || ^9"
  5167. },
  5168. "require-dev": {
  5169. "drupal/views_bulk_operations": "~3.0"
  5170. },
  5171. "suggest": {
  5172. "drupal/views_bulk_operations": "Get VBO for all the views benefits like batching, ability to select all view results or persistent selection across pages"
  5173. },
  5174. "type": "drupal-module",
  5175. "extra": {
  5176. "drupal": {
  5177. "version": "8.x-2.7",
  5178. "datestamp": "1664355764",
  5179. "security-coverage": {
  5180. "status": "covered",
  5181. "message": "Covered by Drupal's security advisory policy"
  5182. }
  5183. }
  5184. },
  5185. "notification-url": "https://packages.drupal.org/8/downloads",
  5186. "license": [
  5187. "GPL-2.0+"
  5188. ],
  5189. "authors": [
  5190. {
  5191. "name": "Marcin Grabias",
  5192. "homepage": "https://www.drupal.org/u/graber"
  5193. },
  5194. {
  5195. "name": "benjy",
  5196. "homepage": "https://www.drupal.org/user/1852732"
  5197. },
  5198. {
  5199. "name": "graber",
  5200. "homepage": "https://www.drupal.org/user/1599440"
  5201. },
  5202. {
  5203. "name": "grevil",
  5204. "homepage": "https://www.drupal.org/user/3668491"
  5205. },
  5206. {
  5207. "name": "joseph.olstad",
  5208. "homepage": "https://www.drupal.org/user/1321830"
  5209. }
  5210. ],
  5211. "description": "Allows bulk edition of entity field values.",
  5212. "homepage": "https://www.drupal.org/project/views_bulk_edit",
  5213. "support": {
  5214. "source": "https://git.drupalcode.org/project/views_bulk_edit",
  5215. "issues": "https://www.drupal.org/project/issues/views_bulk_edit?version=8.x"
  5216. }
  5217. },
  5218. {
  5219. "name": "drupal/views_bulk_operations",
  5220. "version": "3.13.0",
  5221. "source": {
  5222. "type": "git",
  5223. "url": "https://git.drupalcode.org/project/views_bulk_operations.git",
  5224. "reference": "8.x-3.13"
  5225. },
  5226. "dist": {
  5227. "type": "zip",
  5228. "url": "https://ftp.drupal.org/files/projects/views_bulk_operations-8.x-3.13.zip",
  5229. "reference": "8.x-3.13",
  5230. "shasum": "70583d08b91be3b5e008f571589425c2176eb73b"
  5231. },
  5232. "require": {
  5233. "drupal/core": "^8.8 || ^9"
  5234. },
  5235. "require-dev": {
  5236. "drush/drush": "^10"
  5237. },
  5238. "suggest": {
  5239. "drush/drush": "^9 || ^10"
  5240. },
  5241. "type": "drupal-module",
  5242. "extra": {
  5243. "drupal": {
  5244. "version": "8.x-3.13",
  5245. "datestamp": "1619697066",
  5246. "security-coverage": {
  5247. "status": "covered",
  5248. "message": "Covered by Drupal's security advisory policy"
  5249. }
  5250. },
  5251. "drush": {
  5252. "services": {
  5253. "drush.services.yml": "^9 || ^10"
  5254. }
  5255. }
  5256. },
  5257. "notification-url": "https://packages.drupal.org/8/downloads",
  5258. "license": [
  5259. "GPL-2.0-or-later"
  5260. ],
  5261. "authors": [
  5262. {
  5263. "name": "Marcin Grabias",
  5264. "homepage": "https://www.drupal.org/u/graber"
  5265. },
  5266. {
  5267. "name": "Graber",
  5268. "homepage": "https://www.drupal.org/user/1599440"
  5269. },
  5270. {
  5271. "name": "joelpittet",
  5272. "homepage": "https://www.drupal.org/user/160302"
  5273. }
  5274. ],
  5275. "description": "Adds an ability to perform bulk operations on selected entities from view results. Provides an API to create such operations.",
  5276. "homepage": "https://www.drupal.org/project/views_bulk_operations",
  5277. "support": {
  5278. "source": "https://git.drupalcode.org/project/views_bulk_operations/-/tree/8.x-3.x",
  5279. "issues": "https://www.drupal.org/project/issues/views_bulk_operations?version=8.x",
  5280. "docs": "https://www.drupal.org/docs/8/modules/views-bulk-operations-vbo"
  5281. }
  5282. },
  5283. {
  5284. "name": "drupal/workflow",
  5285. "version": "1.6.0",
  5286. "source": {
  5287. "type": "git",
  5288. "url": "https://git.drupalcode.org/project/workflow.git",
  5289. "reference": "8.x-1.6"
  5290. },
  5291. "dist": {
  5292. "type": "zip",
  5293. "url": "https://ftp.drupal.org/files/projects/workflow-8.x-1.6.zip",
  5294. "reference": "8.x-1.6",
  5295. "shasum": "a798b9e85cd267d7e9a7d44b9e883ecbcdad1406"
  5296. },
  5297. "require": {
  5298. "drupal/core": "^8.8 || ^9"
  5299. },
  5300. "type": "drupal-module",
  5301. "extra": {
  5302. "drupal": {
  5303. "version": "8.x-1.6",
  5304. "datestamp": "1671818949",
  5305. "security-coverage": {
  5306. "status": "covered",
  5307. "message": "Covered by Drupal's security advisory policy"
  5308. }
  5309. }
  5310. },
  5311. "notification-url": "https://packages.drupal.org/8/downloads",
  5312. "license": [
  5313. "GPL-2.0-or-later"
  5314. ],
  5315. "authors": [
  5316. {
  5317. "name": "Bastlynn",
  5318. "homepage": "https://www.drupal.org/user/275249"
  5319. },
  5320. {
  5321. "name": "eaton",
  5322. "homepage": "https://www.drupal.org/user/16496"
  5323. },
  5324. {
  5325. "name": "Heine",
  5326. "homepage": "https://www.drupal.org/user/17943"
  5327. },
  5328. {
  5329. "name": "JacobSingh",
  5330. "homepage": "https://www.drupal.org/user/68912"
  5331. },
  5332. {
  5333. "name": "johnv",
  5334. "homepage": "https://www.drupal.org/user/591042"
  5335. },
  5336. {
  5337. "name": "jvandyk",
  5338. "homepage": "https://www.drupal.org/user/2375"
  5339. },
  5340. {
  5341. "name": "mfredrickson",
  5342. "homepage": "https://www.drupal.org/user/31994"
  5343. },
  5344. {
  5345. "name": "NancyDru",
  5346. "homepage": "https://www.drupal.org/user/101412"
  5347. },
  5348. {
  5349. "name": "q0rban",
  5350. "homepage": "https://www.drupal.org/user/31022"
  5351. }
  5352. ],
  5353. "description": "Defines a field type with Workflows, containing customizable state transitions.",
  5354. "homepage": "https://www.drupal.org/project/workflow",
  5355. "support": {
  5356. "source": "https://git.drupalcode.org/project/workflow"
  5357. }
  5358. },
  5359. {
  5360. "name": "drush/drush",
  5361. "version": "10.6.2",
  5362. "source": {
  5363. "type": "git",
  5364. "url": "https://github.com/drush-ops/drush.git",
  5365. "reference": "0a570a16ec63259eb71195aba5feab532318b337"
  5366. },
  5367. "dist": {
  5368. "type": "zip",
  5369. "url": "https://api.github.com/repos/drush-ops/drush/zipball/0a570a16ec63259eb71195aba5feab532318b337",
  5370. "reference": "0a570a16ec63259eb71195aba5feab532318b337",
  5371. "shasum": ""
  5372. },
  5373. "require": {
  5374. "chi-teck/drupal-code-generator": "^1.32.1",
  5375. "composer/semver": "^1.4 || ^3",
  5376. "consolidation/config": "^1.2",
  5377. "consolidation/filter-via-dot-access-data": "^1",
  5378. "consolidation/robo": "^1.4.11 || ^2 || ^3",
  5379. "consolidation/site-alias": "^3.0.0@stable",
  5380. "consolidation/site-process": "^2.1 || ^4",
  5381. "enlightn/security-checker": "^1",
  5382. "ext-dom": "*",
  5383. "grasmash/yaml-expander": "^1.1.1",
  5384. "guzzlehttp/guzzle": "^6.3 || ^7.0",
  5385. "league/container": "^2.5 || ^3.4",
  5386. "php": ">=7.1.3",
  5387. "psr/log": "~1.0",
  5388. "psy/psysh": ">=0.6 <0.11",
  5389. "symfony/event-dispatcher": "^3.4 || ^4.0",
  5390. "symfony/finder": "^3.4 || ^4.0 || ^5",
  5391. "symfony/var-dumper": "^3.4 || ^4.0 || ^5.0",
  5392. "symfony/yaml": "^3.4 || ^4.0",
  5393. "webflo/drupal-finder": "^1.2",
  5394. "webmozart/path-util": "^2.1.0"
  5395. },
  5396. "conflict": {
  5397. "drupal/migrate_run": "*",
  5398. "drupal/migrate_tools": "<= 5"
  5399. },
  5400. "require-dev": {
  5401. "composer/installers": "^1.7",
  5402. "cweagans/composer-patches": "~1.0",
  5403. "david-garcia/phpwhois": "4.3.0",
  5404. "drupal/alinks": "1.0.0",
  5405. "drupal/core-recommended": "^8.8",
  5406. "phpunit/phpunit": ">=7.5.20",
  5407. "squizlabs/php_codesniffer": "^2.7 || ^3",
  5408. "vlucas/phpdotenv": "^2.4",
  5409. "yoast/phpunit-polyfills": "^0.2.0"
  5410. },
  5411. "bin": [
  5412. "drush"
  5413. ],
  5414. "type": "library",
  5415. "extra": {
  5416. "installer-paths": {
  5417. "sut/core": [
  5418. "type:drupal-core"
  5419. ],
  5420. "sut/libraries/{$name}": [
  5421. "type:drupal-library"
  5422. ],
  5423. "sut/modules/unish/{$name}": [
  5424. "drupal/devel"
  5425. ],
  5426. "sut/themes/unish/{$name}": [
  5427. "drupal/empty_theme"
  5428. ],
  5429. "sut/modules/contrib/{$name}": [
  5430. "type:drupal-module"
  5431. ],
  5432. "sut/profiles/contrib/{$name}": [
  5433. "type:drupal-profile"
  5434. ],
  5435. "sut/themes/contrib/{$name}": [
  5436. "type:drupal-theme"
  5437. ],
  5438. "sut/drush/contrib/{$name}": [
  5439. "type:drupal-drush"
  5440. ]
  5441. }
  5442. },
  5443. "autoload": {
  5444. "psr-4": {
  5445. "Drush\\": "src/",
  5446. "Drush\\Internal\\": "src/internal-forks"
  5447. }
  5448. },
  5449. "notification-url": "https://packagist.org/downloads/",
  5450. "license": [
  5451. "GPL-2.0-or-later"
  5452. ],
  5453. "authors": [
  5454. {
  5455. "name": "Moshe Weitzman",
  5456. "email": "weitzman@tejasa.com"
  5457. },
  5458. {
  5459. "name": "Owen Barton",
  5460. "email": "drupal@owenbarton.com"
  5461. },
  5462. {
  5463. "name": "Greg Anderson",
  5464. "email": "greg.1.anderson@greenknowe.org"
  5465. },
  5466. {
  5467. "name": "Jonathan Araña Cruz",
  5468. "email": "jonhattan@faita.net"
  5469. },
  5470. {
  5471. "name": "Jonathan Hedstrom",
  5472. "email": "jhedstrom@gmail.com"
  5473. },
  5474. {
  5475. "name": "Christopher Gervais",
  5476. "email": "chris@ergonlogic.com"
  5477. },
  5478. {
  5479. "name": "Dave Reid",
  5480. "email": "dave@davereid.net"
  5481. },
  5482. {
  5483. "name": "Damian Lee",
  5484. "email": "damiankloip@googlemail.com"
  5485. }
  5486. ],
  5487. "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.",
  5488. "homepage": "http://www.drush.org",
  5489. "support": {
  5490. "forum": "http://drupal.stackexchange.com/questions/tagged/drush",
  5491. "irc": "irc://irc.freenode.org/drush",
  5492. "issues": "https://github.com/drush-ops/drush/issues",
  5493. "slack": "https://drupal.slack.com/messages/C62H9CWQM",
  5494. "source": "https://github.com/drush-ops/drush/tree/10.6.2"
  5495. },
  5496. "funding": [
  5497. {
  5498. "url": "https://github.com/weitzman",
  5499. "type": "github"
  5500. }
  5501. ],
  5502. "time": "2021-12-15T17:09:54+00:00"
  5503. },
  5504. {
  5505. "name": "egulias/email-validator",
  5506. "version": "3.2.6",
  5507. "source": {
  5508. "type": "git",
  5509. "url": "https://github.com/egulias/EmailValidator.git",
  5510. "reference": "e5997fa97e8790cdae03a9cbd5e78e45e3c7bda7"
  5511. },
  5512. "dist": {
  5513. "type": "zip",
  5514. "url": "https://api.github.com/repos/egulias/EmailValidator/zipball/e5997fa97e8790cdae03a9cbd5e78e45e3c7bda7",
  5515. "reference": "e5997fa97e8790cdae03a9cbd5e78e45e3c7bda7",
  5516. "shasum": ""
  5517. },
  5518. "require": {
  5519. "doctrine/lexer": "^1.2|^2",
  5520. "php": ">=7.2",
  5521. "symfony/polyfill-intl-idn": "^1.15"
  5522. },
  5523. "require-dev": {
  5524. "phpunit/phpunit": "^8.5.8|^9.3.3",
  5525. "vimeo/psalm": "^4"
  5526. },
  5527. "suggest": {
  5528. "ext-intl": "PHP Internationalization Libraries are required to use the SpoofChecking validation"
  5529. },
  5530. "type": "library",
  5531. "extra": {
  5532. "branch-alias": {
  5533. "dev-master": "3.0.x-dev"
  5534. }
  5535. },
  5536. "autoload": {
  5537. "psr-4": {
  5538. "Egulias\\EmailValidator\\": "src"
  5539. }
  5540. },
  5541. "notification-url": "https://packagist.org/downloads/",
  5542. "license": [
  5543. "MIT"
  5544. ],
  5545. "authors": [
  5546. {
  5547. "name": "Eduardo Gulias Davis"
  5548. }
  5549. ],
  5550. "description": "A library for validating emails against several RFCs",
  5551. "homepage": "https://github.com/egulias/EmailValidator",
  5552. "keywords": [
  5553. "email",
  5554. "emailvalidation",
  5555. "emailvalidator",
  5556. "validation",
  5557. "validator"
  5558. ],
  5559. "support": {
  5560. "issues": "https://github.com/egulias/EmailValidator/issues",
  5561. "source": "https://github.com/egulias/EmailValidator/tree/3.2.6"
  5562. },
  5563. "funding": [
  5564. {
  5565. "url": "https://github.com/egulias",
  5566. "type": "github"
  5567. }
  5568. ],
  5569. "time": "2023-06-01T07:04:22+00:00"
  5570. },
  5571. {
  5572. "name": "enlightn/security-checker",
  5573. "version": "v1.11.0",
  5574. "source": {
  5575. "type": "git",
  5576. "url": "https://github.com/enlightn/security-checker.git",
  5577. "reference": "68df5c7256c84b428bf8fcff0d249de06ce362d2"
  5578. },
  5579. "dist": {
  5580. "type": "zip",
  5581. "url": "https://api.github.com/repos/enlightn/security-checker/zipball/68df5c7256c84b428bf8fcff0d249de06ce362d2",
  5582. "reference": "68df5c7256c84b428bf8fcff0d249de06ce362d2",
  5583. "shasum": ""
  5584. },
  5585. "require": {
  5586. "ext-json": "*",
  5587. "guzzlehttp/guzzle": "^6.3|^7.0",
  5588. "php": ">=5.6",
  5589. "symfony/console": "^3.4|^4|^5|^6|^7",
  5590. "symfony/finder": "^3|^4|^5|^6|^7",
  5591. "symfony/process": "^3.4|^4|^5|^6|^7",
  5592. "symfony/yaml": "^3.4|^4|^5|^6|^7"
  5593. },
  5594. "require-dev": {
  5595. "ext-zip": "*",
  5596. "friendsofphp/php-cs-fixer": "^2.18|^3.0",
  5597. "phpunit/phpunit": "^5.5|^6|^7|^8|^9"
  5598. },
  5599. "bin": [
  5600. "security-checker"
  5601. ],
  5602. "type": "library",
  5603. "autoload": {
  5604. "psr-4": {
  5605. "Enlightn\\SecurityChecker\\": "src"
  5606. }
  5607. },
  5608. "notification-url": "https://packagist.org/downloads/",
  5609. "license": [
  5610. "MIT"
  5611. ],
  5612. "authors": [
  5613. {
  5614. "name": "Paras Malhotra",
  5615. "email": "paras@laravel-enlightn.com"
  5616. },
  5617. {
  5618. "name": "Miguel Piedrafita",
  5619. "email": "soy@miguelpiedrafita.com"
  5620. }
  5621. ],
  5622. "description": "A PHP dependency vulnerabilities scanner based on the Security Advisories Database.",
  5623. "keywords": [
  5624. "package",
  5625. "php",
  5626. "scanner",
  5627. "security",
  5628. "security advisories",
  5629. "vulnerability scanner"
  5630. ],
  5631. "support": {
  5632. "issues": "https://github.com/enlightn/security-checker/issues",
  5633. "source": "https://github.com/enlightn/security-checker/tree/v1.11.0"
  5634. },
  5635. "time": "2023-11-17T07:53:29+00:00"
  5636. },
  5637. {
  5638. "name": "grasmash/expander",
  5639. "version": "1.0.0",
  5640. "source": {
  5641. "type": "git",
  5642. "url": "https://github.com/grasmash/expander.git",
  5643. "reference": "95d6037344a4be1dd5f8e0b0b2571a28c397578f"
  5644. },
  5645. "dist": {
  5646. "type": "zip",
  5647. "url": "https://api.github.com/repos/grasmash/expander/zipball/95d6037344a4be1dd5f8e0b0b2571a28c397578f",
  5648. "reference": "95d6037344a4be1dd5f8e0b0b2571a28c397578f",
  5649. "shasum": ""
  5650. },
  5651. "require": {
  5652. "dflydev/dot-access-data": "^1.1.0",
  5653. "php": ">=5.4"
  5654. },
  5655. "require-dev": {
  5656. "greg-1-anderson/composer-test-scenarios": "^1",
  5657. "phpunit/phpunit": "^4|^5.5.4",
  5658. "satooshi/php-coveralls": "^1.0.2|dev-master",
  5659. "squizlabs/php_codesniffer": "^2.7"
  5660. },
  5661. "type": "library",
  5662. "extra": {
  5663. "branch-alias": {
  5664. "dev-master": "1.x-dev"
  5665. }
  5666. },
  5667. "autoload": {
  5668. "psr-4": {
  5669. "Grasmash\\Expander\\": "src/"
  5670. }
  5671. },
  5672. "notification-url": "https://packagist.org/downloads/",
  5673. "license": [
  5674. "MIT"
  5675. ],
  5676. "authors": [
  5677. {
  5678. "name": "Matthew Grasmick"
  5679. }
  5680. ],
  5681. "description": "Expands internal property references in PHP arrays file.",
  5682. "support": {
  5683. "issues": "https://github.com/grasmash/expander/issues",
  5684. "source": "https://github.com/grasmash/expander/tree/master"
  5685. },
  5686. "time": "2017-12-21T22:14:55+00:00"
  5687. },
  5688. {
  5689. "name": "grasmash/yaml-expander",
  5690. "version": "1.4.0",
  5691. "source": {
  5692. "type": "git",
  5693. "url": "https://github.com/grasmash/yaml-expander.git",
  5694. "reference": "3f0f6001ae707a24f4d9733958d77d92bf9693b1"
  5695. },
  5696. "dist": {
  5697. "type": "zip",
  5698. "url": "https://api.github.com/repos/grasmash/yaml-expander/zipball/3f0f6001ae707a24f4d9733958d77d92bf9693b1",
  5699. "reference": "3f0f6001ae707a24f4d9733958d77d92bf9693b1",
  5700. "shasum": ""
  5701. },
  5702. "require": {
  5703. "dflydev/dot-access-data": "^1.1.0",
  5704. "php": ">=5.4",
  5705. "symfony/yaml": "^2.8.11|^3|^4"
  5706. },
  5707. "require-dev": {
  5708. "greg-1-anderson/composer-test-scenarios": "^1",
  5709. "phpunit/phpunit": "^4.8|^5.5.4",
  5710. "satooshi/php-coveralls": "^1.0.2|dev-master",
  5711. "squizlabs/php_codesniffer": "^2.7"
  5712. },
  5713. "type": "library",
  5714. "extra": {
  5715. "branch-alias": {
  5716. "dev-master": "1.x-dev"
  5717. }
  5718. },
  5719. "autoload": {
  5720. "psr-4": {
  5721. "Grasmash\\YamlExpander\\": "src/"
  5722. }
  5723. },
  5724. "notification-url": "https://packagist.org/downloads/",
  5725. "license": [
  5726. "MIT"
  5727. ],
  5728. "authors": [
  5729. {
  5730. "name": "Matthew Grasmick"
  5731. }
  5732. ],
  5733. "description": "Expands internal property references in a yaml file.",
  5734. "support": {
  5735. "issues": "https://github.com/grasmash/yaml-expander/issues",
  5736. "source": "https://github.com/grasmash/yaml-expander/tree/master"
  5737. },
  5738. "time": "2017-12-16T16:06:03+00:00"
  5739. },
  5740. {
  5741. "name": "guzzlehttp/guzzle",
  5742. "version": "6.5.8",
  5743. "source": {
  5744. "type": "git",
  5745. "url": "https://github.com/guzzle/guzzle.git",
  5746. "reference": "a52f0440530b54fa079ce76e8c5d196a42cad981"
  5747. },
  5748. "dist": {
  5749. "type": "zip",
  5750. "url": "https://api.github.com/repos/guzzle/guzzle/zipball/a52f0440530b54fa079ce76e8c5d196a42cad981",
  5751. "reference": "a52f0440530b54fa079ce76e8c5d196a42cad981",
  5752. "shasum": ""
  5753. },
  5754. "require": {
  5755. "ext-json": "*",
  5756. "guzzlehttp/promises": "^1.0",
  5757. "guzzlehttp/psr7": "^1.9",
  5758. "php": ">=5.5",
  5759. "symfony/polyfill-intl-idn": "^1.17"
  5760. },
  5761. "require-dev": {
  5762. "ext-curl": "*",
  5763. "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.4 || ^7.0",
  5764. "psr/log": "^1.1"
  5765. },
  5766. "suggest": {
  5767. "psr/log": "Required for using the Log middleware"
  5768. },
  5769. "type": "library",
  5770. "extra": {
  5771. "branch-alias": {
  5772. "dev-master": "6.5-dev"
  5773. }
  5774. },
  5775. "autoload": {
  5776. "files": [
  5777. "src/functions_include.php"
  5778. ],
  5779. "psr-4": {
  5780. "GuzzleHttp\\": "src/"
  5781. }
  5782. },
  5783. "notification-url": "https://packagist.org/downloads/",
  5784. "license": [
  5785. "MIT"
  5786. ],
  5787. "authors": [
  5788. {
  5789. "name": "Graham Campbell",
  5790. "email": "hello@gjcampbell.co.uk",
  5791. "homepage": "https://github.com/GrahamCampbell"
  5792. },
  5793. {
  5794. "name": "Michael Dowling",
  5795. "email": "mtdowling@gmail.com",
  5796. "homepage": "https://github.com/mtdowling"
  5797. },
  5798. {
  5799. "name": "Jeremy Lindblom",
  5800. "email": "jeremeamia@gmail.com",
  5801. "homepage": "https://github.com/jeremeamia"
  5802. },
  5803. {
  5804. "name": "George Mponos",
  5805. "email": "gmponos@gmail.com",
  5806. "homepage": "https://github.com/gmponos"
  5807. },
  5808. {
  5809. "name": "Tobias Nyholm",
  5810. "email": "tobias.nyholm@gmail.com",
  5811. "homepage": "https://github.com/Nyholm"
  5812. },
  5813. {
  5814. "name": "Márk Sági-Kazár",
  5815. "email": "mark.sagikazar@gmail.com",
  5816. "homepage": "https://github.com/sagikazarmark"
  5817. },
  5818. {
  5819. "name": "Tobias Schultze",
  5820. "email": "webmaster@tubo-world.de",
  5821. "homepage": "https://github.com/Tobion"
  5822. }
  5823. ],
  5824. "description": "Guzzle is a PHP HTTP client library",
  5825. "homepage": "http://guzzlephp.org/",
  5826. "keywords": [
  5827. "client",
  5828. "curl",
  5829. "framework",
  5830. "http",
  5831. "http client",
  5832. "rest",
  5833. "web service"
  5834. ],
  5835. "support": {
  5836. "issues": "https://github.com/guzzle/guzzle/issues",
  5837. "source": "https://github.com/guzzle/guzzle/tree/6.5.8"
  5838. },
  5839. "funding": [
  5840. {
  5841. "url": "https://github.com/GrahamCampbell",
  5842. "type": "github"
  5843. },
  5844. {
  5845. "url": "https://github.com/Nyholm",
  5846. "type": "github"
  5847. },
  5848. {
  5849. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/guzzle",
  5850. "type": "tidelift"
  5851. }
  5852. ],
  5853. "time": "2022-06-20T22:16:07+00:00"
  5854. },
  5855. {
  5856. "name": "guzzlehttp/promises",
  5857. "version": "1.5.3",
  5858. "source": {
  5859. "type": "git",
  5860. "url": "https://github.com/guzzle/promises.git",
  5861. "reference": "67ab6e18aaa14d753cc148911d273f6e6cb6721e"
  5862. },
  5863. "dist": {
  5864. "type": "zip",
  5865. "url": "https://api.github.com/repos/guzzle/promises/zipball/67ab6e18aaa14d753cc148911d273f6e6cb6721e",
  5866. "reference": "67ab6e18aaa14d753cc148911d273f6e6cb6721e",
  5867. "shasum": ""
  5868. },
  5869. "require": {
  5870. "php": ">=5.5"
  5871. },
  5872. "require-dev": {
  5873. "symfony/phpunit-bridge": "^4.4 || ^5.1"
  5874. },
  5875. "type": "library",
  5876. "autoload": {
  5877. "files": [
  5878. "src/functions_include.php"
  5879. ],
  5880. "psr-4": {
  5881. "GuzzleHttp\\Promise\\": "src/"
  5882. }
  5883. },
  5884. "notification-url": "https://packagist.org/downloads/",
  5885. "license": [
  5886. "MIT"
  5887. ],
  5888. "authors": [
  5889. {
  5890. "name": "Graham Campbell",
  5891. "email": "hello@gjcampbell.co.uk",
  5892. "homepage": "https://github.com/GrahamCampbell"
  5893. },
  5894. {
  5895. "name": "Michael Dowling",
  5896. "email": "mtdowling@gmail.com",
  5897. "homepage": "https://github.com/mtdowling"
  5898. },
  5899. {
  5900. "name": "Tobias Nyholm",
  5901. "email": "tobias.nyholm@gmail.com",
  5902. "homepage": "https://github.com/Nyholm"
  5903. },
  5904. {
  5905. "name": "Tobias Schultze",
  5906. "email": "webmaster@tubo-world.de",
  5907. "homepage": "https://github.com/Tobion"
  5908. }
  5909. ],
  5910. "description": "Guzzle promises library",
  5911. "keywords": [
  5912. "promise"
  5913. ],
  5914. "support": {
  5915. "issues": "https://github.com/guzzle/promises/issues",
  5916. "source": "https://github.com/guzzle/promises/tree/1.5.3"
  5917. },
  5918. "funding": [
  5919. {
  5920. "url": "https://github.com/GrahamCampbell",
  5921. "type": "github"
  5922. },
  5923. {
  5924. "url": "https://github.com/Nyholm",
  5925. "type": "github"
  5926. },
  5927. {
  5928. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/promises",
  5929. "type": "tidelift"
  5930. }
  5931. ],
  5932. "time": "2023-05-21T12:31:43+00:00"
  5933. },
  5934. {
  5935. "name": "guzzlehttp/psr7",
  5936. "version": "1.9.1",
  5937. "source": {
  5938. "type": "git",
  5939. "url": "https://github.com/guzzle/psr7.git",
  5940. "reference": "e4490cabc77465aaee90b20cfc9a770f8c04be6b"
  5941. },
  5942. "dist": {
  5943. "type": "zip",
  5944. "url": "https://api.github.com/repos/guzzle/psr7/zipball/e4490cabc77465aaee90b20cfc9a770f8c04be6b",
  5945. "reference": "e4490cabc77465aaee90b20cfc9a770f8c04be6b",
  5946. "shasum": ""
  5947. },
  5948. "require": {
  5949. "php": ">=5.4.0",
  5950. "psr/http-message": "~1.0",
  5951. "ralouphie/getallheaders": "^2.0.5 || ^3.0.0"
  5952. },
  5953. "provide": {
  5954. "psr/http-message-implementation": "1.0"
  5955. },
  5956. "require-dev": {
  5957. "ext-zlib": "*",
  5958. "phpunit/phpunit": "~4.8.36 || ^5.7.27 || ^6.5.14 || ^7.5.20 || ^8.5.8 || ^9.3.10"
  5959. },
  5960. "suggest": {
  5961. "laminas/laminas-httphandlerrunner": "Emit PSR-7 responses"
  5962. },
  5963. "type": "library",
  5964. "autoload": {
  5965. "files": [
  5966. "src/functions_include.php"
  5967. ],
  5968. "psr-4": {
  5969. "GuzzleHttp\\Psr7\\": "src/"
  5970. }
  5971. },
  5972. "notification-url": "https://packagist.org/downloads/",
  5973. "license": [
  5974. "MIT"
  5975. ],
  5976. "authors": [
  5977. {
  5978. "name": "Graham Campbell",
  5979. "email": "hello@gjcampbell.co.uk",
  5980. "homepage": "https://github.com/GrahamCampbell"
  5981. },
  5982. {
  5983. "name": "Michael Dowling",
  5984. "email": "mtdowling@gmail.com",
  5985. "homepage": "https://github.com/mtdowling"
  5986. },
  5987. {
  5988. "name": "George Mponos",
  5989. "email": "gmponos@gmail.com",
  5990. "homepage": "https://github.com/gmponos"
  5991. },
  5992. {
  5993. "name": "Tobias Nyholm",
  5994. "email": "tobias.nyholm@gmail.com",
  5995. "homepage": "https://github.com/Nyholm"
  5996. },
  5997. {
  5998. "name": "Márk Sági-Kazár",
  5999. "email": "mark.sagikazar@gmail.com",
  6000. "homepage": "https://github.com/sagikazarmark"
  6001. },
  6002. {
  6003. "name": "Tobias Schultze",
  6004. "email": "webmaster@tubo-world.de",
  6005. "homepage": "https://github.com/Tobion"
  6006. }
  6007. ],
  6008. "description": "PSR-7 message implementation that also provides common utility methods",
  6009. "keywords": [
  6010. "http",
  6011. "message",
  6012. "psr-7",
  6013. "request",
  6014. "response",
  6015. "stream",
  6016. "uri",
  6017. "url"
  6018. ],
  6019. "support": {
  6020. "issues": "https://github.com/guzzle/psr7/issues",
  6021. "source": "https://github.com/guzzle/psr7/tree/1.9.1"
  6022. },
  6023. "funding": [
  6024. {
  6025. "url": "https://github.com/GrahamCampbell",
  6026. "type": "github"
  6027. },
  6028. {
  6029. "url": "https://github.com/Nyholm",
  6030. "type": "github"
  6031. },
  6032. {
  6033. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/psr7",
  6034. "type": "tidelift"
  6035. }
  6036. ],
  6037. "time": "2023-04-17T16:00:37+00:00"
  6038. },
  6039. {
  6040. "name": "kint-php/kint",
  6041. "version": "5.1.1",
  6042. "source": {
  6043. "type": "git",
  6044. "url": "https://github.com/kint-php/kint.git",
  6045. "reference": "8c5ec370c3382ceae0b88e91f9bbb00e6bb4f93b"
  6046. },
  6047. "dist": {
  6048. "type": "zip",
  6049. "url": "https://api.github.com/repos/kint-php/kint/zipball/8c5ec370c3382ceae0b88e91f9bbb00e6bb4f93b",
  6050. "reference": "8c5ec370c3382ceae0b88e91f9bbb00e6bb4f93b",
  6051. "shasum": ""
  6052. },
  6053. "require": {
  6054. "php": ">=7.1"
  6055. },
  6056. "require-dev": {
  6057. "friendsofphp/php-cs-fixer": "^3",
  6058. "phpspec/prophecy-phpunit": "^2",
  6059. "phpunit/phpunit": "^9",
  6060. "seld/phar-utils": "^1",
  6061. "symfony/finder": ">=4.0",
  6062. "vimeo/psalm": "^5"
  6063. },
  6064. "suggest": {
  6065. "kint-php/kint-helpers": "Provides extra helper functions",
  6066. "kint-php/kint-twig": "Provides d() and s() functions in twig templates"
  6067. },
  6068. "type": "library",
  6069. "autoload": {
  6070. "files": [
  6071. "init.php"
  6072. ],
  6073. "psr-4": {
  6074. "Kint\\": "src/"
  6075. }
  6076. },
  6077. "notification-url": "https://packagist.org/downloads/",
  6078. "license": [
  6079. "MIT"
  6080. ],
  6081. "authors": [
  6082. {
  6083. "name": "Jonathan Vollebregt",
  6084. "homepage": "https://github.com/jnvsor"
  6085. },
  6086. {
  6087. "name": "Contributors",
  6088. "homepage": "https://github.com/kint-php/kint/graphs/contributors"
  6089. }
  6090. ],
  6091. "description": "Kint - debugging tool for PHP developers",
  6092. "homepage": "https://kint-php.github.io/kint/",
  6093. "keywords": [
  6094. "debug",
  6095. "kint",
  6096. "php"
  6097. ],
  6098. "support": {
  6099. "issues": "https://github.com/kint-php/kint/issues",
  6100. "source": "https://github.com/kint-php/kint/tree/5.1.1"
  6101. },
  6102. "time": "2024-04-26T14:20:09+00:00"
  6103. },
  6104. {
  6105. "name": "laminas/laminas-escaper",
  6106. "version": "2.13.0",
  6107. "source": {
  6108. "type": "git",
  6109. "url": "https://github.com/laminas/laminas-escaper.git",
  6110. "reference": "af459883f4018d0f8a0c69c7a209daef3bf973ba"
  6111. },
  6112. "dist": {
  6113. "type": "zip",
  6114. "url": "https://api.github.com/repos/laminas/laminas-escaper/zipball/af459883f4018d0f8a0c69c7a209daef3bf973ba",
  6115. "reference": "af459883f4018d0f8a0c69c7a209daef3bf973ba",
  6116. "shasum": ""
  6117. },
  6118. "require": {
  6119. "ext-ctype": "*",
  6120. "ext-mbstring": "*",
  6121. "php": "~8.1.0 || ~8.2.0 || ~8.3.0"
  6122. },
  6123. "conflict": {
  6124. "zendframework/zend-escaper": "*"
  6125. },
  6126. "require-dev": {
  6127. "infection/infection": "^0.27.0",
  6128. "laminas/laminas-coding-standard": "~2.5.0",
  6129. "maglnet/composer-require-checker": "^3.8.0",
  6130. "phpunit/phpunit": "^9.6.7",
  6131. "psalm/plugin-phpunit": "^0.18.4",
  6132. "vimeo/psalm": "^5.9"
  6133. },
  6134. "type": "library",
  6135. "autoload": {
  6136. "psr-4": {
  6137. "Laminas\\Escaper\\": "src/"
  6138. }
  6139. },
  6140. "notification-url": "https://packagist.org/downloads/",
  6141. "license": [
  6142. "BSD-3-Clause"
  6143. ],
  6144. "description": "Securely and safely escape HTML, HTML attributes, JavaScript, CSS, and URLs",
  6145. "homepage": "https://laminas.dev",
  6146. "keywords": [
  6147. "escaper",
  6148. "laminas"
  6149. ],
  6150. "support": {
  6151. "chat": "https://laminas.dev/chat",
  6152. "docs": "https://docs.laminas.dev/laminas-escaper/",
  6153. "forum": "https://discourse.laminas.dev",
  6154. "issues": "https://github.com/laminas/laminas-escaper/issues",
  6155. "rss": "https://github.com/laminas/laminas-escaper/releases.atom",
  6156. "source": "https://github.com/laminas/laminas-escaper"
  6157. },
  6158. "funding": [
  6159. {
  6160. "url": "https://funding.communitybridge.org/projects/laminas-project",
  6161. "type": "community_bridge"
  6162. }
  6163. ],
  6164. "time": "2023-10-10T08:35:13+00:00"
  6165. },
  6166. {
  6167. "name": "laminas/laminas-feed",
  6168. "version": "2.22.0",
  6169. "source": {
  6170. "type": "git",
  6171. "url": "https://github.com/laminas/laminas-feed.git",
  6172. "reference": "669792b819fca7274698147ad7a2ecc1b0a9b141"
  6173. },
  6174. "dist": {
  6175. "type": "zip",
  6176. "url": "https://api.github.com/repos/laminas/laminas-feed/zipball/669792b819fca7274698147ad7a2ecc1b0a9b141",
  6177. "reference": "669792b819fca7274698147ad7a2ecc1b0a9b141",
  6178. "shasum": ""
  6179. },
  6180. "require": {
  6181. "ext-dom": "*",
  6182. "ext-libxml": "*",
  6183. "laminas/laminas-escaper": "^2.9",
  6184. "laminas/laminas-stdlib": "^3.6",
  6185. "php": "~8.1.0 || ~8.2.0 || ~8.3.0"
  6186. },
  6187. "conflict": {
  6188. "laminas/laminas-servicemanager": "<3.3",
  6189. "zendframework/zend-feed": "*"
  6190. },
  6191. "require-dev": {
  6192. "laminas/laminas-cache": "^2.13.2 || ^3.11",
  6193. "laminas/laminas-cache-storage-adapter-memory": "^1.1.0 || ^2.2",
  6194. "laminas/laminas-coding-standard": "~2.5.0",
  6195. "laminas/laminas-db": "^2.18",
  6196. "laminas/laminas-http": "^2.18",
  6197. "laminas/laminas-servicemanager": "^3.21.0",
  6198. "laminas/laminas-validator": "^2.38",
  6199. "phpunit/phpunit": "^10.3.1",
  6200. "psalm/plugin-phpunit": "^0.18.4",
  6201. "psr/http-message": "^2.0",
  6202. "vimeo/psalm": "^5.14.1"
  6203. },
  6204. "suggest": {
  6205. "laminas/laminas-cache": "Laminas\\Cache component, for optionally caching feeds between requests",
  6206. "laminas/laminas-db": "Laminas\\Db component, for use with PubSubHubbub",
  6207. "laminas/laminas-http": "Laminas\\Http for PubSubHubbub, and optionally for use with Laminas\\Feed\\Reader",
  6208. "laminas/laminas-servicemanager": "Laminas\\ServiceManager component, for easily extending ExtensionManager implementations",
  6209. "laminas/laminas-validator": "Laminas\\Validator component, for validating email addresses used in Atom feeds and entries when using the Writer subcomponent",
  6210. "psr/http-message": "PSR-7 ^1.0.1, if you wish to use Laminas\\Feed\\Reader\\Http\\Psr7ResponseDecorator"
  6211. },
  6212. "type": "library",
  6213. "autoload": {
  6214. "psr-4": {
  6215. "Laminas\\Feed\\": "src/"
  6216. }
  6217. },
  6218. "notification-url": "https://packagist.org/downloads/",
  6219. "license": [
  6220. "BSD-3-Clause"
  6221. ],
  6222. "description": "provides functionality for creating and consuming RSS and Atom feeds",
  6223. "homepage": "https://laminas.dev",
  6224. "keywords": [
  6225. "atom",
  6226. "feed",
  6227. "laminas",
  6228. "rss"
  6229. ],
  6230. "support": {
  6231. "chat": "https://laminas.dev/chat",
  6232. "docs": "https://docs.laminas.dev/laminas-feed/",
  6233. "forum": "https://discourse.laminas.dev",
  6234. "issues": "https://github.com/laminas/laminas-feed/issues",
  6235. "rss": "https://github.com/laminas/laminas-feed/releases.atom",
  6236. "source": "https://github.com/laminas/laminas-feed"
  6237. },
  6238. "funding": [
  6239. {
  6240. "url": "https://funding.communitybridge.org/projects/laminas-project",
  6241. "type": "community_bridge"
  6242. }
  6243. ],
  6244. "time": "2023-10-11T20:16:37+00:00"
  6245. },
  6246. {
  6247. "name": "laminas/laminas-servicemanager",
  6248. "version": "3.22.1",
  6249. "source": {
  6250. "type": "git",
  6251. "url": "https://github.com/laminas/laminas-servicemanager.git",
  6252. "reference": "de98d297d4743956a0558a6d71616979ff779328"
  6253. },
  6254. "dist": {
  6255. "type": "zip",
  6256. "url": "https://api.github.com/repos/laminas/laminas-servicemanager/zipball/de98d297d4743956a0558a6d71616979ff779328",
  6257. "reference": "de98d297d4743956a0558a6d71616979ff779328",
  6258. "shasum": ""
  6259. },
  6260. "require": {
  6261. "laminas/laminas-stdlib": "^3.17",
  6262. "php": "~8.1.0 || ~8.2.0 || ~8.3.0",
  6263. "psr/container": "^1.0"
  6264. },
  6265. "conflict": {
  6266. "ext-psr": "*",
  6267. "laminas/laminas-code": "<4.10.0",
  6268. "zendframework/zend-code": "<3.3.1",
  6269. "zendframework/zend-servicemanager": "*"
  6270. },
  6271. "provide": {
  6272. "psr/container-implementation": "^1.0"
  6273. },
  6274. "replace": {
  6275. "container-interop/container-interop": "^1.2.0"
  6276. },
  6277. "require-dev": {
  6278. "composer/package-versions-deprecated": "^1.11.99.5",
  6279. "friendsofphp/proxy-manager-lts": "^1.0.14",
  6280. "laminas/laminas-code": "^4.10.0",
  6281. "laminas/laminas-coding-standard": "~2.5.0",
  6282. "laminas/laminas-container-config-test": "^0.8",
  6283. "mikey179/vfsstream": "^1.6.11",
  6284. "phpbench/phpbench": "^1.2.9",
  6285. "phpunit/phpunit": "^10.4",
  6286. "psalm/plugin-phpunit": "^0.18.4",
  6287. "vimeo/psalm": "^5.8.0"
  6288. },
  6289. "suggest": {
  6290. "friendsofphp/proxy-manager-lts": "ProxyManager ^2.1.1 to handle lazy initialization of services"
  6291. },
  6292. "bin": [
  6293. "bin/generate-deps-for-config-factory",
  6294. "bin/generate-factory-for-class"
  6295. ],
  6296. "type": "library",
  6297. "autoload": {
  6298. "files": [
  6299. "src/autoload.php"
  6300. ],
  6301. "psr-4": {
  6302. "Laminas\\ServiceManager\\": "src/"
  6303. }
  6304. },
  6305. "notification-url": "https://packagist.org/downloads/",
  6306. "license": [
  6307. "BSD-3-Clause"
  6308. ],
  6309. "description": "Factory-Driven Dependency Injection Container",
  6310. "homepage": "https://laminas.dev",
  6311. "keywords": [
  6312. "PSR-11",
  6313. "dependency-injection",
  6314. "di",
  6315. "dic",
  6316. "laminas",
  6317. "service-manager",
  6318. "servicemanager"
  6319. ],
  6320. "support": {
  6321. "chat": "https://laminas.dev/chat",
  6322. "docs": "https://docs.laminas.dev/laminas-servicemanager/",
  6323. "forum": "https://discourse.laminas.dev",
  6324. "issues": "https://github.com/laminas/laminas-servicemanager/issues",
  6325. "rss": "https://github.com/laminas/laminas-servicemanager/releases.atom",
  6326. "source": "https://github.com/laminas/laminas-servicemanager"
  6327. },
  6328. "funding": [
  6329. {
  6330. "url": "https://funding.communitybridge.org/projects/laminas-project",
  6331. "type": "community_bridge"
  6332. }
  6333. ],
  6334. "time": "2023-10-24T11:19:47+00:00"
  6335. },
  6336. {
  6337. "name": "laminas/laminas-stdlib",
  6338. "version": "3.19.0",
  6339. "source": {
  6340. "type": "git",
  6341. "url": "https://github.com/laminas/laminas-stdlib.git",
  6342. "reference": "6a192dd0882b514e45506f533b833b623b78fff3"
  6343. },
  6344. "dist": {
  6345. "type": "zip",
  6346. "url": "https://api.github.com/repos/laminas/laminas-stdlib/zipball/6a192dd0882b514e45506f533b833b623b78fff3",
  6347. "reference": "6a192dd0882b514e45506f533b833b623b78fff3",
  6348. "shasum": ""
  6349. },
  6350. "require": {
  6351. "php": "~8.1.0 || ~8.2.0 || ~8.3.0"
  6352. },
  6353. "conflict": {
  6354. "zendframework/zend-stdlib": "*"
  6355. },
  6356. "require-dev": {
  6357. "laminas/laminas-coding-standard": "^2.5",
  6358. "phpbench/phpbench": "^1.2.15",
  6359. "phpunit/phpunit": "^10.5.8",
  6360. "psalm/plugin-phpunit": "^0.18.4",
  6361. "vimeo/psalm": "^5.20.0"
  6362. },
  6363. "type": "library",
  6364. "autoload": {
  6365. "psr-4": {
  6366. "Laminas\\Stdlib\\": "src/"
  6367. }
  6368. },
  6369. "notification-url": "https://packagist.org/downloads/",
  6370. "license": [
  6371. "BSD-3-Clause"
  6372. ],
  6373. "description": "SPL extensions, array utilities, error handlers, and more",
  6374. "homepage": "https://laminas.dev",
  6375. "keywords": [
  6376. "laminas",
  6377. "stdlib"
  6378. ],
  6379. "support": {
  6380. "chat": "https://laminas.dev/chat",
  6381. "docs": "https://docs.laminas.dev/laminas-stdlib/",
  6382. "forum": "https://discourse.laminas.dev",
  6383. "issues": "https://github.com/laminas/laminas-stdlib/issues",
  6384. "rss": "https://github.com/laminas/laminas-stdlib/releases.atom",
  6385. "source": "https://github.com/laminas/laminas-stdlib"
  6386. },
  6387. "funding": [
  6388. {
  6389. "url": "https://funding.communitybridge.org/projects/laminas-project",
  6390. "type": "community_bridge"
  6391. }
  6392. ],
  6393. "time": "2024-01-19T12:39:49+00:00"
  6394. },
  6395. {
  6396. "name": "laminas/laminas-text",
  6397. "version": "2.11.0",
  6398. "source": {
  6399. "type": "git",
  6400. "url": "https://github.com/laminas/laminas-text.git",
  6401. "reference": "d799f3ccb3547e9e6ab313447138bae7009c7cc7"
  6402. },
  6403. "dist": {
  6404. "type": "zip",
  6405. "url": "https://api.github.com/repos/laminas/laminas-text/zipball/d799f3ccb3547e9e6ab313447138bae7009c7cc7",
  6406. "reference": "d799f3ccb3547e9e6ab313447138bae7009c7cc7",
  6407. "shasum": ""
  6408. },
  6409. "require": {
  6410. "laminas/laminas-servicemanager": "^3.22.0",
  6411. "laminas/laminas-stdlib": "^3.7.1",
  6412. "php": "~8.1.0 || ~8.2.0 || ~8.3.0"
  6413. },
  6414. "conflict": {
  6415. "zendframework/zend-text": "*"
  6416. },
  6417. "require-dev": {
  6418. "laminas/laminas-coding-standard": "~2.5.0",
  6419. "phpunit/phpunit": "^9.5",
  6420. "psalm/plugin-phpunit": "^0.18.4",
  6421. "vimeo/psalm": "^5.1"
  6422. },
  6423. "type": "library",
  6424. "autoload": {
  6425. "psr-4": {
  6426. "Laminas\\Text\\": "src/"
  6427. }
  6428. },
  6429. "notification-url": "https://packagist.org/downloads/",
  6430. "license": [
  6431. "BSD-3-Clause"
  6432. ],
  6433. "description": "Create FIGlets and text-based tables",
  6434. "homepage": "https://laminas.dev",
  6435. "keywords": [
  6436. "laminas",
  6437. "text"
  6438. ],
  6439. "support": {
  6440. "chat": "https://laminas.dev/chat",
  6441. "docs": "https://docs.laminas.dev/laminas-text/",
  6442. "forum": "https://discourse.laminas.dev",
  6443. "issues": "https://github.com/laminas/laminas-text/issues",
  6444. "rss": "https://github.com/laminas/laminas-text/releases.atom",
  6445. "source": "https://github.com/laminas/laminas-text"
  6446. },
  6447. "funding": [
  6448. {
  6449. "url": "https://funding.communitybridge.org/projects/laminas-project",
  6450. "type": "community_bridge"
  6451. }
  6452. ],
  6453. "time": "2023-11-07T16:45:45+00:00"
  6454. },
  6455. {
  6456. "name": "league/container",
  6457. "version": "2.5.0",
  6458. "source": {
  6459. "type": "git",
  6460. "url": "https://github.com/thephpleague/container.git",
  6461. "reference": "8438dc47a0674e3378bcce893a0a04d79a2c22b3"
  6462. },
  6463. "dist": {
  6464. "type": "zip",
  6465. "url": "https://api.github.com/repos/thephpleague/container/zipball/8438dc47a0674e3378bcce893a0a04d79a2c22b3",
  6466. "reference": "8438dc47a0674e3378bcce893a0a04d79a2c22b3",
  6467. "shasum": ""
  6468. },
  6469. "require": {
  6470. "container-interop/container-interop": "^1.2",
  6471. "php": "^5.4 || ^7.0 || ^8.0"
  6472. },
  6473. "provide": {
  6474. "container-interop/container-interop-implementation": "^1.2",
  6475. "psr/container-implementation": "^1.0"
  6476. },
  6477. "replace": {
  6478. "orno/di": "~2.0"
  6479. },
  6480. "require-dev": {
  6481. "phpunit/phpunit": "^4.8.36",
  6482. "scrutinizer/ocular": "^1.3",
  6483. "squizlabs/php_codesniffer": "^3.5"
  6484. },
  6485. "type": "library",
  6486. "extra": {
  6487. "branch-alias": {
  6488. "dev-2.x": "2.x-dev",
  6489. "dev-1.x": "1.x-dev"
  6490. }
  6491. },
  6492. "autoload": {
  6493. "psr-4": {
  6494. "League\\Container\\": "src"
  6495. }
  6496. },
  6497. "notification-url": "https://packagist.org/downloads/",
  6498. "license": [
  6499. "MIT"
  6500. ],
  6501. "authors": [
  6502. {
  6503. "name": "Phil Bennett",
  6504. "email": "philipobenito@gmail.com",
  6505. "homepage": "http://www.philipobenito.com",
  6506. "role": "Developer"
  6507. }
  6508. ],
  6509. "description": "A fast and intuitive dependency injection container.",
  6510. "homepage": "https://github.com/thephpleague/container",
  6511. "keywords": [
  6512. "container",
  6513. "dependency",
  6514. "di",
  6515. "injection",
  6516. "league",
  6517. "provider",
  6518. "service"
  6519. ],
  6520. "support": {
  6521. "issues": "https://github.com/thephpleague/container/issues",
  6522. "source": "https://github.com/thephpleague/container/tree/2.5.0"
  6523. },
  6524. "funding": [
  6525. {
  6526. "url": "https://github.com/philipobenito",
  6527. "type": "github"
  6528. }
  6529. ],
  6530. "time": "2021-02-22T09:20:06+00:00"
  6531. },
  6532. {
  6533. "name": "longwave/laminas-diactoros",
  6534. "version": "2.14.3",
  6535. "source": {
  6536. "type": "git",
  6537. "url": "https://github.com/longwave/laminas-diactoros.git",
  6538. "reference": "2bd6b47a090ae924ecc298657d01f8a462f7507b"
  6539. },
  6540. "dist": {
  6541. "type": "zip",
  6542. "url": "https://api.github.com/repos/longwave/laminas-diactoros/zipball/2bd6b47a090ae924ecc298657d01f8a462f7507b",
  6543. "reference": "2bd6b47a090ae924ecc298657d01f8a462f7507b",
  6544. "shasum": ""
  6545. },
  6546. "require": {
  6547. "php": "^7.3 || ~8.0.0 || ~8.1.0 || ~8.2.0 || ~8.3.0",
  6548. "psr/http-factory": "^1.0",
  6549. "psr/http-message": "^1.0"
  6550. },
  6551. "conflict": {
  6552. "phpspec/prophecy": "<1.9.0",
  6553. "zendframework/zend-diactoros": "*"
  6554. },
  6555. "provide": {
  6556. "psr/http-factory-implementation": "1.0",
  6557. "psr/http-message-implementation": "1.0"
  6558. },
  6559. "replace": {
  6560. "laminas/laminas-diactoros": "2.18.1"
  6561. },
  6562. "require-dev": {
  6563. "ext-curl": "*",
  6564. "ext-dom": "*",
  6565. "ext-gd": "*",
  6566. "ext-libxml": "*",
  6567. "http-interop/http-factory-tests": "^0.9.0",
  6568. "laminas/laminas-coding-standard": "~2.3.0",
  6569. "php-http/psr7-integration-tests": "^1.1.1",
  6570. "phpspec/prophecy-phpunit": "^2.0",
  6571. "phpunit/phpunit": "^9.5",
  6572. "psalm/plugin-phpunit": "^0.17.0",
  6573. "vimeo/psalm": "^4.24.0"
  6574. },
  6575. "type": "library",
  6576. "extra": {
  6577. "laminas": {
  6578. "config-provider": "Laminas\\Diactoros\\ConfigProvider",
  6579. "module": "Laminas\\Diactoros"
  6580. }
  6581. },
  6582. "autoload": {
  6583. "files": [
  6584. "src/functions/create_uploaded_file.php",
  6585. "src/functions/marshal_headers_from_sapi.php",
  6586. "src/functions/marshal_method_from_sapi.php",
  6587. "src/functions/marshal_protocol_version_from_sapi.php",
  6588. "src/functions/marshal_uri_from_sapi.php",
  6589. "src/functions/normalize_server.php",
  6590. "src/functions/normalize_uploaded_files.php",
  6591. "src/functions/parse_cookie_header.php",
  6592. "src/functions/create_uploaded_file.legacy.php",
  6593. "src/functions/marshal_headers_from_sapi.legacy.php",
  6594. "src/functions/marshal_method_from_sapi.legacy.php",
  6595. "src/functions/marshal_protocol_version_from_sapi.legacy.php",
  6596. "src/functions/marshal_uri_from_sapi.legacy.php",
  6597. "src/functions/normalize_server.legacy.php",
  6598. "src/functions/normalize_uploaded_files.legacy.php",
  6599. "src/functions/parse_cookie_header.legacy.php"
  6600. ],
  6601. "psr-4": {
  6602. "Laminas\\Diactoros\\": "src/"
  6603. }
  6604. },
  6605. "notification-url": "https://packagist.org/downloads/",
  6606. "license": [
  6607. "BSD-3-Clause"
  6608. ],
  6609. "description": "PSR HTTP Message implementations",
  6610. "homepage": "https://laminas.dev",
  6611. "keywords": [
  6612. "http",
  6613. "laminas",
  6614. "psr",
  6615. "psr-17",
  6616. "psr-7"
  6617. ],
  6618. "support": {
  6619. "chat": "https://laminas.dev/chat",
  6620. "docs": "https://docs.laminas.dev/laminas-diactoros/",
  6621. "forum": "https://discourse.laminas.dev",
  6622. "issues": "https://github.com/laminas/laminas-diactoros/issues",
  6623. "rss": "https://github.com/laminas/laminas-diactoros/releases.atom",
  6624. "source": "https://github.com/laminas/laminas-diactoros"
  6625. },
  6626. "time": "2024-09-11T14:26:18+00:00"
  6627. },
  6628. {
  6629. "name": "masterminds/html5",
  6630. "version": "2.7.6",
  6631. "source": {
  6632. "type": "git",
  6633. "url": "https://github.com/Masterminds/html5-php.git",
  6634. "reference": "897eb517a343a2281f11bc5556d6548db7d93947"
  6635. },
  6636. "dist": {
  6637. "type": "zip",
  6638. "url": "https://api.github.com/repos/Masterminds/html5-php/zipball/897eb517a343a2281f11bc5556d6548db7d93947",
  6639. "reference": "897eb517a343a2281f11bc5556d6548db7d93947",
  6640. "shasum": ""
  6641. },
  6642. "require": {
  6643. "ext-ctype": "*",
  6644. "ext-dom": "*",
  6645. "ext-libxml": "*",
  6646. "php": ">=5.3.0"
  6647. },
  6648. "require-dev": {
  6649. "phpunit/phpunit": "^4.8.35 || ^5.7.21 || ^6 || ^7"
  6650. },
  6651. "type": "library",
  6652. "extra": {
  6653. "branch-alias": {
  6654. "dev-master": "2.7-dev"
  6655. }
  6656. },
  6657. "autoload": {
  6658. "psr-4": {
  6659. "Masterminds\\": "src"
  6660. }
  6661. },
  6662. "notification-url": "https://packagist.org/downloads/",
  6663. "license": [
  6664. "MIT"
  6665. ],
  6666. "authors": [
  6667. {
  6668. "name": "Matt Butcher",
  6669. "email": "technosophos@gmail.com"
  6670. },
  6671. {
  6672. "name": "Matt Farina",
  6673. "email": "matt@mattfarina.com"
  6674. },
  6675. {
  6676. "name": "Asmir Mustafic",
  6677. "email": "goetas@gmail.com"
  6678. }
  6679. ],
  6680. "description": "An HTML5 parser and serializer.",
  6681. "homepage": "http://masterminds.github.io/html5-php",
  6682. "keywords": [
  6683. "HTML5",
  6684. "dom",
  6685. "html",
  6686. "parser",
  6687. "querypath",
  6688. "serializer",
  6689. "xml"
  6690. ],
  6691. "support": {
  6692. "issues": "https://github.com/Masterminds/html5-php/issues",
  6693. "source": "https://github.com/Masterminds/html5-php/tree/2.7.6"
  6694. },
  6695. "time": "2022-08-18T16:18:26+00:00"
  6696. },
  6697. {
  6698. "name": "mathieuviossat/arraytotexttable",
  6699. "version": "v1.0.11",
  6700. "source": {
  6701. "type": "git",
  6702. "url": "https://github.com/viossat/arraytotexttable.git",
  6703. "reference": "069561a0895fb69ea1939fcd09262ccea081cbb8"
  6704. },
  6705. "dist": {
  6706. "type": "zip",
  6707. "url": "https://api.github.com/repos/viossat/arraytotexttable/zipball/069561a0895fb69ea1939fcd09262ccea081cbb8",
  6708. "reference": "069561a0895fb69ea1939fcd09262ccea081cbb8",
  6709. "shasum": ""
  6710. },
  6711. "require": {
  6712. "laminas/laminas-text": "^2.10",
  6713. "php": ">=8.0.0"
  6714. },
  6715. "type": "library",
  6716. "autoload": {
  6717. "psr-4": {
  6718. "MathieuViossat\\Util\\": "src/"
  6719. }
  6720. },
  6721. "notification-url": "https://packagist.org/downloads/",
  6722. "license": [
  6723. "MIT"
  6724. ],
  6725. "authors": [
  6726. {
  6727. "name": "Mathieu Viossat",
  6728. "email": "mathieu@viossat.fr",
  6729. "homepage": "https://viossat.fr"
  6730. }
  6731. ],
  6732. "description": "Display arrays in terminal",
  6733. "homepage": "https://github.com/viossat/arraytotexttable",
  6734. "keywords": [
  6735. "array",
  6736. "ascii",
  6737. "table",
  6738. "terminal",
  6739. "text",
  6740. "unicode"
  6741. ],
  6742. "support": {
  6743. "issues": "https://github.com/viossat/arraytotexttable/issues",
  6744. "source": "https://github.com/viossat/arraytotexttable/tree/v1.0.11"
  6745. },
  6746. "time": "2024-02-13T17:19:01+00:00"
  6747. },
  6748. {
  6749. "name": "mglaman/phpstan-drupal",
  6750. "version": "1.2.12",
  6751. "source": {
  6752. "type": "git",
  6753. "url": "https://github.com/mglaman/phpstan-drupal.git",
  6754. "reference": "346bdddda169a56b6ebb7dc17893f0ac8f33a4f1"
  6755. },
  6756. "dist": {
  6757. "type": "zip",
  6758. "url": "https://api.github.com/repos/mglaman/phpstan-drupal/zipball/346bdddda169a56b6ebb7dc17893f0ac8f33a4f1",
  6759. "reference": "346bdddda169a56b6ebb7dc17893f0ac8f33a4f1",
  6760. "shasum": ""
  6761. },
  6762. "require": {
  6763. "php": "^8.1",
  6764. "phpstan/phpstan": "^1.10.56",
  6765. "phpstan/phpstan-deprecation-rules": "^1.1.4",
  6766. "symfony/finder": "^4.2 || ^5.0 || ^6.0 || ^7.0",
  6767. "symfony/yaml": "^4.2|| ^5.0 || ^6.0 || ^7.0",
  6768. "webflo/drupal-finder": "^1.2"
  6769. },
  6770. "require-dev": {
  6771. "behat/mink": "^1.8",
  6772. "composer/installers": "^1.9",
  6773. "drupal/core-recommended": "^10",
  6774. "drush/drush": "^10.0 || ^11 || ^12 || ^13@beta",
  6775. "phpstan/extension-installer": "^1.1",
  6776. "phpstan/phpstan-strict-rules": "^1.0",
  6777. "phpunit/phpunit": "^8.5 || ^9 || ^10 || ^11",
  6778. "slevomat/coding-standard": "^7.1",
  6779. "squizlabs/php_codesniffer": "^3.3",
  6780. "symfony/phpunit-bridge": "^4.4 || ^5.4 || ^6.0 || ^7.0"
  6781. },
  6782. "suggest": {
  6783. "jangregor/phpstan-prophecy": "Provides a prophecy/prophecy extension for phpstan/phpstan.",
  6784. "phpstan/phpstan-deprecation-rules": "For catching deprecations, especially in Drupal core.",
  6785. "phpstan/phpstan-phpunit": "PHPUnit extensions and rules for PHPStan."
  6786. },
  6787. "type": "phpstan-extension",
  6788. "extra": {
  6789. "branch-alias": {
  6790. "dev-main": "1.0-dev"
  6791. },
  6792. "installer-paths": {
  6793. "tests/fixtures/drupal/core": [
  6794. "type:drupal-core"
  6795. ],
  6796. "tests/fixtures/drupal/libraries/{$name}": [
  6797. "type:drupal-library"
  6798. ],
  6799. "tests/fixtures/drupal/modules/contrib/{$name}": [
  6800. "type:drupal-module"
  6801. ],
  6802. "tests/fixtures/drupal/profiles/contrib/{$name}": [
  6803. "type:drupal-profile"
  6804. ],
  6805. "tests/fixtures/drupal/themes/contrib/{$name}": [
  6806. "type:drupal-theme"
  6807. ]
  6808. },
  6809. "phpstan": {
  6810. "includes": [
  6811. "extension.neon",
  6812. "rules.neon"
  6813. ]
  6814. }
  6815. },
  6816. "autoload": {
  6817. "psr-4": {
  6818. "mglaman\\PHPStanDrupal\\": "src/"
  6819. }
  6820. },
  6821. "notification-url": "https://packagist.org/downloads/",
  6822. "license": [
  6823. "MIT"
  6824. ],
  6825. "authors": [
  6826. {
  6827. "name": "Matt Glaman",
  6828. "email": "nmd.matt@gmail.com"
  6829. }
  6830. ],
  6831. "description": "Drupal extension and rules for PHPStan",
  6832. "support": {
  6833. "issues": "https://github.com/mglaman/phpstan-drupal/issues",
  6834. "source": "https://github.com/mglaman/phpstan-drupal/tree/1.2.12"
  6835. },
  6836. "funding": [
  6837. {
  6838. "url": "https://github.com/mglaman",
  6839. "type": "github"
  6840. },
  6841. {
  6842. "url": "https://opencollective.com/phpstan-drupal",
  6843. "type": "open_collective"
  6844. },
  6845. {
  6846. "url": "https://tidelift.com/funding/github/packagist/mglaman/phpstan-drupal",
  6847. "type": "tidelift"
  6848. }
  6849. ],
  6850. "time": "2024-08-07T21:15:21+00:00"
  6851. },
  6852. {
  6853. "name": "nikic/php-parser",
  6854. "version": "v4.19.1",
  6855. "source": {
  6856. "type": "git",
  6857. "url": "https://github.com/nikic/PHP-Parser.git",
  6858. "reference": "4e1b88d21c69391150ace211e9eaf05810858d0b"
  6859. },
  6860. "dist": {
  6861. "type": "zip",
  6862. "url": "https://api.github.com/repos/nikic/PHP-Parser/zipball/4e1b88d21c69391150ace211e9eaf05810858d0b",
  6863. "reference": "4e1b88d21c69391150ace211e9eaf05810858d0b",
  6864. "shasum": ""
  6865. },
  6866. "require": {
  6867. "ext-tokenizer": "*",
  6868. "php": ">=7.1"
  6869. },
  6870. "require-dev": {
  6871. "ircmaxell/php-yacc": "^0.0.7",
  6872. "phpunit/phpunit": "^6.5 || ^7.0 || ^8.0 || ^9.0"
  6873. },
  6874. "bin": [
  6875. "bin/php-parse"
  6876. ],
  6877. "type": "library",
  6878. "extra": {
  6879. "branch-alias": {
  6880. "dev-master": "4.9-dev"
  6881. }
  6882. },
  6883. "autoload": {
  6884. "psr-4": {
  6885. "PhpParser\\": "lib/PhpParser"
  6886. }
  6887. },
  6888. "notification-url": "https://packagist.org/downloads/",
  6889. "license": [
  6890. "BSD-3-Clause"
  6891. ],
  6892. "authors": [
  6893. {
  6894. "name": "Nikita Popov"
  6895. }
  6896. ],
  6897. "description": "A PHP parser written in PHP",
  6898. "keywords": [
  6899. "parser",
  6900. "php"
  6901. ],
  6902. "support": {
  6903. "issues": "https://github.com/nikic/PHP-Parser/issues",
  6904. "source": "https://github.com/nikic/PHP-Parser/tree/v4.19.1"
  6905. },
  6906. "time": "2024-03-17T08:10:35+00:00"
  6907. },
  6908. {
  6909. "name": "pear/archive_tar",
  6910. "version": "1.4.14",
  6911. "source": {
  6912. "type": "git",
  6913. "url": "https://github.com/pear/Archive_Tar.git",
  6914. "reference": "4d761c5334c790e45ef3245f0864b8955c562caa"
  6915. },
  6916. "dist": {
  6917. "type": "zip",
  6918. "url": "https://api.github.com/repos/pear/Archive_Tar/zipball/4d761c5334c790e45ef3245f0864b8955c562caa",
  6919. "reference": "4d761c5334c790e45ef3245f0864b8955c562caa",
  6920. "shasum": ""
  6921. },
  6922. "require": {
  6923. "pear/pear-core-minimal": "^1.10.0alpha2",
  6924. "php": ">=5.2.0"
  6925. },
  6926. "require-dev": {
  6927. "phpunit/phpunit": "*"
  6928. },
  6929. "suggest": {
  6930. "ext-bz2": "Bz2 compression support.",
  6931. "ext-xz": "Lzma2 compression support.",
  6932. "ext-zlib": "Gzip compression support."
  6933. },
  6934. "type": "library",
  6935. "extra": {
  6936. "branch-alias": {
  6937. "dev-master": "1.4.x-dev"
  6938. }
  6939. },
  6940. "autoload": {
  6941. "psr-0": {
  6942. "Archive_Tar": ""
  6943. }
  6944. },
  6945. "notification-url": "https://packagist.org/downloads/",
  6946. "include-path": [
  6947. "./"
  6948. ],
  6949. "license": [
  6950. "BSD-3-Clause"
  6951. ],
  6952. "authors": [
  6953. {
  6954. "name": "Vincent Blavet",
  6955. "email": "vincent@phpconcept.net"
  6956. },
  6957. {
  6958. "name": "Greg Beaver",
  6959. "email": "greg@chiaraquartet.net"
  6960. },
  6961. {
  6962. "name": "Michiel Rook",
  6963. "email": "mrook@php.net"
  6964. }
  6965. ],
  6966. "description": "Tar file management class with compression support (gzip, bzip2, lzma2)",
  6967. "homepage": "https://github.com/pear/Archive_Tar",
  6968. "keywords": [
  6969. "archive",
  6970. "tar"
  6971. ],
  6972. "support": {
  6973. "issues": "http://pear.php.net/bugs/search.php?cmd=display&package_name[]=Archive_Tar",
  6974. "source": "https://github.com/pear/Archive_Tar"
  6975. },
  6976. "funding": [
  6977. {
  6978. "url": "https://github.com/mrook",
  6979. "type": "github"
  6980. },
  6981. {
  6982. "url": "https://www.patreon.com/michielrook",
  6983. "type": "patreon"
  6984. }
  6985. ],
  6986. "time": "2021-07-20T13:53:39+00:00"
  6987. },
  6988. {
  6989. "name": "pear/console_getopt",
  6990. "version": "v1.4.3",
  6991. "source": {
  6992. "type": "git",
  6993. "url": "https://github.com/pear/Console_Getopt.git",
  6994. "reference": "a41f8d3e668987609178c7c4a9fe48fecac53fa0"
  6995. },
  6996. "dist": {
  6997. "type": "zip",
  6998. "url": "https://api.github.com/repos/pear/Console_Getopt/zipball/a41f8d3e668987609178c7c4a9fe48fecac53fa0",
  6999. "reference": "a41f8d3e668987609178c7c4a9fe48fecac53fa0",
  7000. "shasum": ""
  7001. },
  7002. "type": "library",
  7003. "autoload": {
  7004. "psr-0": {
  7005. "Console": "./"
  7006. }
  7007. },
  7008. "notification-url": "https://packagist.org/downloads/",
  7009. "include-path": [
  7010. "./"
  7011. ],
  7012. "license": [
  7013. "BSD-2-Clause"
  7014. ],
  7015. "authors": [
  7016. {
  7017. "name": "Andrei Zmievski",
  7018. "email": "andrei@php.net",
  7019. "role": "Lead"
  7020. },
  7021. {
  7022. "name": "Stig Bakken",
  7023. "email": "stig@php.net",
  7024. "role": "Developer"
  7025. },
  7026. {
  7027. "name": "Greg Beaver",
  7028. "email": "cellog@php.net",
  7029. "role": "Helper"
  7030. }
  7031. ],
  7032. "description": "More info available on: http://pear.php.net/package/Console_Getopt",
  7033. "support": {
  7034. "issues": "http://pear.php.net/bugs/search.php?cmd=display&package_name[]=Console_Getopt",
  7035. "source": "https://github.com/pear/Console_Getopt"
  7036. },
  7037. "time": "2019-11-20T18:27:48+00:00"
  7038. },
  7039. {
  7040. "name": "pear/pear-core-minimal",
  7041. "version": "v1.10.15",
  7042. "source": {
  7043. "type": "git",
  7044. "url": "https://github.com/pear/pear-core-minimal.git",
  7045. "reference": "ce0adade8b97561656ace07cdaac4751c271ea8c"
  7046. },
  7047. "dist": {
  7048. "type": "zip",
  7049. "url": "https://api.github.com/repos/pear/pear-core-minimal/zipball/ce0adade8b97561656ace07cdaac4751c271ea8c",
  7050. "reference": "ce0adade8b97561656ace07cdaac4751c271ea8c",
  7051. "shasum": ""
  7052. },
  7053. "require": {
  7054. "pear/console_getopt": "~1.4",
  7055. "pear/pear_exception": "~1.0",
  7056. "php": ">=5.4"
  7057. },
  7058. "replace": {
  7059. "rsky/pear-core-min": "self.version"
  7060. },
  7061. "type": "library",
  7062. "autoload": {
  7063. "classmap": [
  7064. "src/"
  7065. ]
  7066. },
  7067. "notification-url": "https://packagist.org/downloads/",
  7068. "include-path": [
  7069. "src/"
  7070. ],
  7071. "license": [
  7072. "BSD-3-Clause"
  7073. ],
  7074. "authors": [
  7075. {
  7076. "name": "Christian Weiske",
  7077. "email": "cweiske@php.net",
  7078. "role": "Lead"
  7079. }
  7080. ],
  7081. "description": "Minimal set of PEAR core files to be used as composer dependency",
  7082. "support": {
  7083. "issues": "http://pear.php.net/bugs/search.php?cmd=display&package_name[]=PEAR",
  7084. "source": "https://github.com/pear/pear-core-minimal"
  7085. },
  7086. "time": "2024-03-16T18:41:45+00:00"
  7087. },
  7088. {
  7089. "name": "pear/pear_exception",
  7090. "version": "v1.0.2",
  7091. "source": {
  7092. "type": "git",
  7093. "url": "https://github.com/pear/PEAR_Exception.git",
  7094. "reference": "b14fbe2ddb0b9f94f5b24cf08783d599f776fff0"
  7095. },
  7096. "dist": {
  7097. "type": "zip",
  7098. "url": "https://api.github.com/repos/pear/PEAR_Exception/zipball/b14fbe2ddb0b9f94f5b24cf08783d599f776fff0",
  7099. "reference": "b14fbe2ddb0b9f94f5b24cf08783d599f776fff0",
  7100. "shasum": ""
  7101. },
  7102. "require": {
  7103. "php": ">=5.2.0"
  7104. },
  7105. "require-dev": {
  7106. "phpunit/phpunit": "<9"
  7107. },
  7108. "type": "class",
  7109. "extra": {
  7110. "branch-alias": {
  7111. "dev-master": "1.0.x-dev"
  7112. }
  7113. },
  7114. "autoload": {
  7115. "classmap": [
  7116. "PEAR/"
  7117. ]
  7118. },
  7119. "notification-url": "https://packagist.org/downloads/",
  7120. "include-path": [
  7121. "."
  7122. ],
  7123. "license": [
  7124. "BSD-2-Clause"
  7125. ],
  7126. "authors": [
  7127. {
  7128. "name": "Helgi Thormar",
  7129. "email": "dufuz@php.net"
  7130. },
  7131. {
  7132. "name": "Greg Beaver",
  7133. "email": "cellog@php.net"
  7134. }
  7135. ],
  7136. "description": "The PEAR Exception base class.",
  7137. "homepage": "https://github.com/pear/PEAR_Exception",
  7138. "keywords": [
  7139. "exception"
  7140. ],
  7141. "support": {
  7142. "issues": "http://pear.php.net/bugs/search.php?cmd=display&package_name[]=PEAR_Exception",
  7143. "source": "https://github.com/pear/PEAR_Exception"
  7144. },
  7145. "time": "2021-03-21T15:43:46+00:00"
  7146. },
  7147. {
  7148. "name": "phpstan/phpstan",
  7149. "version": "1.12.3",
  7150. "source": {
  7151. "type": "git",
  7152. "url": "https://github.com/phpstan/phpstan.git",
  7153. "reference": "0fcbf194ab63d8159bb70d9aa3e1350051632009"
  7154. },
  7155. "dist": {
  7156. "type": "zip",
  7157. "url": "https://api.github.com/repos/phpstan/phpstan/zipball/0fcbf194ab63d8159bb70d9aa3e1350051632009",
  7158. "reference": "0fcbf194ab63d8159bb70d9aa3e1350051632009",
  7159. "shasum": ""
  7160. },
  7161. "require": {
  7162. "php": "^7.2|^8.0"
  7163. },
  7164. "conflict": {
  7165. "phpstan/phpstan-shim": "*"
  7166. },
  7167. "bin": [
  7168. "phpstan",
  7169. "phpstan.phar"
  7170. ],
  7171. "type": "library",
  7172. "autoload": {
  7173. "files": [
  7174. "bootstrap.php"
  7175. ]
  7176. },
  7177. "notification-url": "https://packagist.org/downloads/",
  7178. "license": [
  7179. "MIT"
  7180. ],
  7181. "description": "PHPStan - PHP Static Analysis Tool",
  7182. "keywords": [
  7183. "dev",
  7184. "static analysis"
  7185. ],
  7186. "support": {
  7187. "docs": "https://phpstan.org/user-guide/getting-started",
  7188. "forum": "https://github.com/phpstan/phpstan/discussions",
  7189. "issues": "https://github.com/phpstan/phpstan/issues",
  7190. "security": "https://github.com/phpstan/phpstan/security/policy",
  7191. "source": "https://github.com/phpstan/phpstan-src"
  7192. },
  7193. "funding": [
  7194. {
  7195. "url": "https://github.com/ondrejmirtes",
  7196. "type": "github"
  7197. },
  7198. {
  7199. "url": "https://github.com/phpstan",
  7200. "type": "github"
  7201. }
  7202. ],
  7203. "time": "2024-09-09T08:10:35+00:00"
  7204. },
  7205. {
  7206. "name": "phpstan/phpstan-deprecation-rules",
  7207. "version": "1.2.1",
  7208. "source": {
  7209. "type": "git",
  7210. "url": "https://github.com/phpstan/phpstan-deprecation-rules.git",
  7211. "reference": "f94d246cc143ec5a23da868f8f7e1393b50eaa82"
  7212. },
  7213. "dist": {
  7214. "type": "zip",
  7215. "url": "https://api.github.com/repos/phpstan/phpstan-deprecation-rules/zipball/f94d246cc143ec5a23da868f8f7e1393b50eaa82",
  7216. "reference": "f94d246cc143ec5a23da868f8f7e1393b50eaa82",
  7217. "shasum": ""
  7218. },
  7219. "require": {
  7220. "php": "^7.2 || ^8.0",
  7221. "phpstan/phpstan": "^1.12"
  7222. },
  7223. "require-dev": {
  7224. "php-parallel-lint/php-parallel-lint": "^1.2",
  7225. "phpstan/phpstan-phpunit": "^1.0",
  7226. "phpunit/phpunit": "^9.5"
  7227. },
  7228. "type": "phpstan-extension",
  7229. "extra": {
  7230. "phpstan": {
  7231. "includes": [
  7232. "rules.neon"
  7233. ]
  7234. }
  7235. },
  7236. "autoload": {
  7237. "psr-4": {
  7238. "PHPStan\\": "src/"
  7239. }
  7240. },
  7241. "notification-url": "https://packagist.org/downloads/",
  7242. "license": [
  7243. "MIT"
  7244. ],
  7245. "description": "PHPStan rules for detecting usage of deprecated classes, methods, properties, constants and traits.",
  7246. "support": {
  7247. "issues": "https://github.com/phpstan/phpstan-deprecation-rules/issues",
  7248. "source": "https://github.com/phpstan/phpstan-deprecation-rules/tree/1.2.1"
  7249. },
  7250. "time": "2024-09-11T15:52:35+00:00"
  7251. },
  7252. {
  7253. "name": "psr/cache",
  7254. "version": "1.0.1",
  7255. "source": {
  7256. "type": "git",
  7257. "url": "https://github.com/php-fig/cache.git",
  7258. "reference": "d11b50ad223250cf17b86e38383413f5a6764bf8"
  7259. },
  7260. "dist": {
  7261. "type": "zip",
  7262. "url": "https://api.github.com/repos/php-fig/cache/zipball/d11b50ad223250cf17b86e38383413f5a6764bf8",
  7263. "reference": "d11b50ad223250cf17b86e38383413f5a6764bf8",
  7264. "shasum": ""
  7265. },
  7266. "require": {
  7267. "php": ">=5.3.0"
  7268. },
  7269. "type": "library",
  7270. "extra": {
  7271. "branch-alias": {
  7272. "dev-master": "1.0.x-dev"
  7273. }
  7274. },
  7275. "autoload": {
  7276. "psr-4": {
  7277. "Psr\\Cache\\": "src/"
  7278. }
  7279. },
  7280. "notification-url": "https://packagist.org/downloads/",
  7281. "license": [
  7282. "MIT"
  7283. ],
  7284. "authors": [
  7285. {
  7286. "name": "PHP-FIG",
  7287. "homepage": "http://www.php-fig.org/"
  7288. }
  7289. ],
  7290. "description": "Common interface for caching libraries",
  7291. "keywords": [
  7292. "cache",
  7293. "psr",
  7294. "psr-6"
  7295. ],
  7296. "support": {
  7297. "source": "https://github.com/php-fig/cache/tree/master"
  7298. },
  7299. "time": "2016-08-06T20:24:11+00:00"
  7300. },
  7301. {
  7302. "name": "psr/container",
  7303. "version": "1.1.2",
  7304. "source": {
  7305. "type": "git",
  7306. "url": "https://github.com/php-fig/container.git",
  7307. "reference": "513e0666f7216c7459170d56df27dfcefe1689ea"
  7308. },
  7309. "dist": {
  7310. "type": "zip",
  7311. "url": "https://api.github.com/repos/php-fig/container/zipball/513e0666f7216c7459170d56df27dfcefe1689ea",
  7312. "reference": "513e0666f7216c7459170d56df27dfcefe1689ea",
  7313. "shasum": ""
  7314. },
  7315. "require": {
  7316. "php": ">=7.4.0"
  7317. },
  7318. "type": "library",
  7319. "autoload": {
  7320. "psr-4": {
  7321. "Psr\\Container\\": "src/"
  7322. }
  7323. },
  7324. "notification-url": "https://packagist.org/downloads/",
  7325. "license": [
  7326. "MIT"
  7327. ],
  7328. "authors": [
  7329. {
  7330. "name": "PHP-FIG",
  7331. "homepage": "https://www.php-fig.org/"
  7332. }
  7333. ],
  7334. "description": "Common Container Interface (PHP FIG PSR-11)",
  7335. "homepage": "https://github.com/php-fig/container",
  7336. "keywords": [
  7337. "PSR-11",
  7338. "container",
  7339. "container-interface",
  7340. "container-interop",
  7341. "psr"
  7342. ],
  7343. "support": {
  7344. "issues": "https://github.com/php-fig/container/issues",
  7345. "source": "https://github.com/php-fig/container/tree/1.1.2"
  7346. },
  7347. "time": "2021-11-05T16:50:12+00:00"
  7348. },
  7349. {
  7350. "name": "psr/http-factory",
  7351. "version": "1.0.2",
  7352. "source": {
  7353. "type": "git",
  7354. "url": "https://github.com/php-fig/http-factory.git",
  7355. "reference": "e616d01114759c4c489f93b099585439f795fe35"
  7356. },
  7357. "dist": {
  7358. "type": "zip",
  7359. "url": "https://api.github.com/repos/php-fig/http-factory/zipball/e616d01114759c4c489f93b099585439f795fe35",
  7360. "reference": "e616d01114759c4c489f93b099585439f795fe35",
  7361. "shasum": ""
  7362. },
  7363. "require": {
  7364. "php": ">=7.0.0",
  7365. "psr/http-message": "^1.0 || ^2.0"
  7366. },
  7367. "type": "library",
  7368. "extra": {
  7369. "branch-alias": {
  7370. "dev-master": "1.0.x-dev"
  7371. }
  7372. },
  7373. "autoload": {
  7374. "psr-4": {
  7375. "Psr\\Http\\Message\\": "src/"
  7376. }
  7377. },
  7378. "notification-url": "https://packagist.org/downloads/",
  7379. "license": [
  7380. "MIT"
  7381. ],
  7382. "authors": [
  7383. {
  7384. "name": "PHP-FIG",
  7385. "homepage": "https://www.php-fig.org/"
  7386. }
  7387. ],
  7388. "description": "Common interfaces for PSR-7 HTTP message factories",
  7389. "keywords": [
  7390. "factory",
  7391. "http",
  7392. "message",
  7393. "psr",
  7394. "psr-17",
  7395. "psr-7",
  7396. "request",
  7397. "response"
  7398. ],
  7399. "support": {
  7400. "source": "https://github.com/php-fig/http-factory/tree/1.0.2"
  7401. },
  7402. "time": "2023-04-10T20:10:41+00:00"
  7403. },
  7404. {
  7405. "name": "psr/http-message",
  7406. "version": "1.0.1",
  7407. "source": {
  7408. "type": "git",
  7409. "url": "https://github.com/php-fig/http-message.git",
  7410. "reference": "f6561bf28d520154e4b0ec72be95418abe6d9363"
  7411. },
  7412. "dist": {
  7413. "type": "zip",
  7414. "url": "https://api.github.com/repos/php-fig/http-message/zipball/f6561bf28d520154e4b0ec72be95418abe6d9363",
  7415. "reference": "f6561bf28d520154e4b0ec72be95418abe6d9363",
  7416. "shasum": ""
  7417. },
  7418. "require": {
  7419. "php": ">=5.3.0"
  7420. },
  7421. "type": "library",
  7422. "extra": {
  7423. "branch-alias": {
  7424. "dev-master": "1.0.x-dev"
  7425. }
  7426. },
  7427. "autoload": {
  7428. "psr-4": {
  7429. "Psr\\Http\\Message\\": "src/"
  7430. }
  7431. },
  7432. "notification-url": "https://packagist.org/downloads/",
  7433. "license": [
  7434. "MIT"
  7435. ],
  7436. "authors": [
  7437. {
  7438. "name": "PHP-FIG",
  7439. "homepage": "http://www.php-fig.org/"
  7440. }
  7441. ],
  7442. "description": "Common interface for HTTP messages",
  7443. "homepage": "https://github.com/php-fig/http-message",
  7444. "keywords": [
  7445. "http",
  7446. "http-message",
  7447. "psr",
  7448. "psr-7",
  7449. "request",
  7450. "response"
  7451. ],
  7452. "support": {
  7453. "source": "https://github.com/php-fig/http-message/tree/master"
  7454. },
  7455. "time": "2016-08-06T14:39:51+00:00"
  7456. },
  7457. {
  7458. "name": "psr/log",
  7459. "version": "1.1.4",
  7460. "source": {
  7461. "type": "git",
  7462. "url": "https://github.com/php-fig/log.git",
  7463. "reference": "d49695b909c3b7628b6289db5479a1c204601f11"
  7464. },
  7465. "dist": {
  7466. "type": "zip",
  7467. "url": "https://api.github.com/repos/php-fig/log/zipball/d49695b909c3b7628b6289db5479a1c204601f11",
  7468. "reference": "d49695b909c3b7628b6289db5479a1c204601f11",
  7469. "shasum": ""
  7470. },
  7471. "require": {
  7472. "php": ">=5.3.0"
  7473. },
  7474. "type": "library",
  7475. "extra": {
  7476. "branch-alias": {
  7477. "dev-master": "1.1.x-dev"
  7478. }
  7479. },
  7480. "autoload": {
  7481. "psr-4": {
  7482. "Psr\\Log\\": "Psr/Log/"
  7483. }
  7484. },
  7485. "notification-url": "https://packagist.org/downloads/",
  7486. "license": [
  7487. "MIT"
  7488. ],
  7489. "authors": [
  7490. {
  7491. "name": "PHP-FIG",
  7492. "homepage": "https://www.php-fig.org/"
  7493. }
  7494. ],
  7495. "description": "Common interface for logging libraries",
  7496. "homepage": "https://github.com/php-fig/log",
  7497. "keywords": [
  7498. "log",
  7499. "psr",
  7500. "psr-3"
  7501. ],
  7502. "support": {
  7503. "source": "https://github.com/php-fig/log/tree/1.1.4"
  7504. },
  7505. "time": "2021-05-03T11:20:27+00:00"
  7506. },
  7507. {
  7508. "name": "psy/psysh",
  7509. "version": "v0.10.12",
  7510. "source": {
  7511. "type": "git",
  7512. "url": "https://github.com/bobthecow/psysh.git",
  7513. "reference": "a0d9981aa07ecfcbea28e4bfa868031cca121e7d"
  7514. },
  7515. "dist": {
  7516. "type": "zip",
  7517. "url": "https://api.github.com/repos/bobthecow/psysh/zipball/a0d9981aa07ecfcbea28e4bfa868031cca121e7d",
  7518. "reference": "a0d9981aa07ecfcbea28e4bfa868031cca121e7d",
  7519. "shasum": ""
  7520. },
  7521. "require": {
  7522. "ext-json": "*",
  7523. "ext-tokenizer": "*",
  7524. "nikic/php-parser": "~4.0|~3.0|~2.0|~1.3",
  7525. "php": "^8.0 || ^7.0 || ^5.5.9",
  7526. "symfony/console": "~5.0|~4.0|~3.0|^2.4.2|~2.3.10",
  7527. "symfony/var-dumper": "~5.0|~4.0|~3.0|~2.7"
  7528. },
  7529. "require-dev": {
  7530. "bamarni/composer-bin-plugin": "^1.2",
  7531. "hoa/console": "3.17.*"
  7532. },
  7533. "suggest": {
  7534. "ext-pcntl": "Enabling the PCNTL extension makes PsySH a lot happier :)",
  7535. "ext-pdo-sqlite": "The doc command requires SQLite to work.",
  7536. "ext-posix": "If you have PCNTL, you'll want the POSIX extension as well.",
  7537. "ext-readline": "Enables support for arrow-key history navigation, and showing and manipulating command history.",
  7538. "hoa/console": "A pure PHP readline implementation. You'll want this if your PHP install doesn't already support readline or libedit."
  7539. },
  7540. "bin": [
  7541. "bin/psysh"
  7542. ],
  7543. "type": "library",
  7544. "extra": {
  7545. "branch-alias": {
  7546. "dev-main": "0.10.x-dev"
  7547. }
  7548. },
  7549. "autoload": {
  7550. "files": [
  7551. "src/functions.php"
  7552. ],
  7553. "psr-4": {
  7554. "Psy\\": "src/"
  7555. }
  7556. },
  7557. "notification-url": "https://packagist.org/downloads/",
  7558. "license": [
  7559. "MIT"
  7560. ],
  7561. "authors": [
  7562. {
  7563. "name": "Justin Hileman",
  7564. "email": "justin@justinhileman.info",
  7565. "homepage": "http://justinhileman.com"
  7566. }
  7567. ],
  7568. "description": "An interactive shell for modern PHP.",
  7569. "homepage": "http://psysh.org",
  7570. "keywords": [
  7571. "REPL",
  7572. "console",
  7573. "interactive",
  7574. "shell"
  7575. ],
  7576. "support": {
  7577. "issues": "https://github.com/bobthecow/psysh/issues",
  7578. "source": "https://github.com/bobthecow/psysh/tree/v0.10.12"
  7579. },
  7580. "time": "2021-11-30T14:05:36+00:00"
  7581. },
  7582. {
  7583. "name": "ralouphie/getallheaders",
  7584. "version": "3.0.3",
  7585. "source": {
  7586. "type": "git",
  7587. "url": "https://github.com/ralouphie/getallheaders.git",
  7588. "reference": "120b605dfeb996808c31b6477290a714d356e822"
  7589. },
  7590. "dist": {
  7591. "type": "zip",
  7592. "url": "https://api.github.com/repos/ralouphie/getallheaders/zipball/120b605dfeb996808c31b6477290a714d356e822",
  7593. "reference": "120b605dfeb996808c31b6477290a714d356e822",
  7594. "shasum": ""
  7595. },
  7596. "require": {
  7597. "php": ">=5.6"
  7598. },
  7599. "require-dev": {
  7600. "php-coveralls/php-coveralls": "^2.1",
  7601. "phpunit/phpunit": "^5 || ^6.5"
  7602. },
  7603. "type": "library",
  7604. "autoload": {
  7605. "files": [
  7606. "src/getallheaders.php"
  7607. ]
  7608. },
  7609. "notification-url": "https://packagist.org/downloads/",
  7610. "license": [
  7611. "MIT"
  7612. ],
  7613. "authors": [
  7614. {
  7615. "name": "Ralph Khattar",
  7616. "email": "ralph.khattar@gmail.com"
  7617. }
  7618. ],
  7619. "description": "A polyfill for getallheaders.",
  7620. "support": {
  7621. "issues": "https://github.com/ralouphie/getallheaders/issues",
  7622. "source": "https://github.com/ralouphie/getallheaders/tree/develop"
  7623. },
  7624. "time": "2019-03-08T08:55:37+00:00"
  7625. },
  7626. {
  7627. "name": "stack/builder",
  7628. "version": "v1.0.6",
  7629. "source": {
  7630. "type": "git",
  7631. "url": "https://github.com/stackphp/builder.git",
  7632. "reference": "a4faaa6f532c6086bc66c29e1bc6c29593e1ca7c"
  7633. },
  7634. "dist": {
  7635. "type": "zip",
  7636. "url": "https://api.github.com/repos/stackphp/builder/zipball/a4faaa6f532c6086bc66c29e1bc6c29593e1ca7c",
  7637. "reference": "a4faaa6f532c6086bc66c29e1bc6c29593e1ca7c",
  7638. "shasum": ""
  7639. },
  7640. "require": {
  7641. "php": ">=7.2.0",
  7642. "symfony/http-foundation": "~2.1|~3.0|~4.0|~5.0",
  7643. "symfony/http-kernel": "~2.1|~3.0|~4.0|~5.0"
  7644. },
  7645. "require-dev": {
  7646. "phpunit/phpunit": "~8.0",
  7647. "symfony/routing": "^5.0"
  7648. },
  7649. "type": "library",
  7650. "extra": {
  7651. "branch-alias": {
  7652. "dev-master": "1.0-dev"
  7653. }
  7654. },
  7655. "autoload": {
  7656. "psr-0": {
  7657. "Stack": "src"
  7658. }
  7659. },
  7660. "notification-url": "https://packagist.org/downloads/",
  7661. "license": [
  7662. "MIT"
  7663. ],
  7664. "authors": [
  7665. {
  7666. "name": "Igor Wiedler",
  7667. "email": "igor@wiedler.ch"
  7668. }
  7669. ],
  7670. "description": "Builder for stack middleware based on HttpKernelInterface.",
  7671. "keywords": [
  7672. "stack"
  7673. ],
  7674. "support": {
  7675. "issues": "https://github.com/stackphp/builder/issues",
  7676. "source": "https://github.com/stackphp/builder/tree/v1.0.6"
  7677. },
  7678. "abandoned": true,
  7679. "time": "2020-01-30T12:17:27+00:00"
  7680. },
  7681. {
  7682. "name": "symfony-cmf/routing",
  7683. "version": "2.3.4",
  7684. "source": {
  7685. "type": "git",
  7686. "url": "https://github.com/symfony-cmf/Routing.git",
  7687. "reference": "bbcdf2f6301d740454ba9ebb8adaefd436c36a6b"
  7688. },
  7689. "dist": {
  7690. "type": "zip",
  7691. "url": "https://api.github.com/repos/symfony-cmf/Routing/zipball/bbcdf2f6301d740454ba9ebb8adaefd436c36a6b",
  7692. "reference": "bbcdf2f6301d740454ba9ebb8adaefd436c36a6b",
  7693. "shasum": ""
  7694. },
  7695. "require": {
  7696. "php": "^7.2 || ^8.0",
  7697. "psr/log": "^1.0 || ^2.0 || ^3.0",
  7698. "symfony/http-kernel": "^4.4 || ^5.0",
  7699. "symfony/routing": "^4.4 || ^5.0"
  7700. },
  7701. "require-dev": {
  7702. "symfony-cmf/testing": "^3@dev",
  7703. "symfony/config": "^4.4 || ^5.0",
  7704. "symfony/dependency-injection": "^4.4 || ^5.0",
  7705. "symfony/event-dispatcher": "^4.4 || ^5.0",
  7706. "symfony/phpunit-bridge": "^5.0"
  7707. },
  7708. "suggest": {
  7709. "symfony/event-dispatcher": "DynamicRouter can optionally trigger an event at the start of matching. Minimal version (^4.4 || ^5.0)"
  7710. },
  7711. "type": "library",
  7712. "extra": {
  7713. "branch-alias": {
  7714. "dev-master": "2.x-dev"
  7715. }
  7716. },
  7717. "autoload": {
  7718. "psr-4": {
  7719. "Symfony\\Cmf\\Component\\Routing\\": "src/"
  7720. }
  7721. },
  7722. "notification-url": "https://packagist.org/downloads/",
  7723. "license": [
  7724. "MIT"
  7725. ],
  7726. "authors": [
  7727. {
  7728. "name": "Symfony CMF Community",
  7729. "homepage": "https://github.com/symfony-cmf/Routing/contributors"
  7730. }
  7731. ],
  7732. "description": "Extends the Symfony routing component for dynamic routes and chaining several routers",
  7733. "homepage": "http://cmf.symfony.com",
  7734. "keywords": [
  7735. "database",
  7736. "routing"
  7737. ],
  7738. "support": {
  7739. "issues": "https://github.com/symfony-cmf/Routing/issues",
  7740. "source": "https://github.com/symfony-cmf/Routing/tree/2.3.4"
  7741. },
  7742. "time": "2021-11-08T16:33:10+00:00"
  7743. },
  7744. {
  7745. "name": "symfony/console",
  7746. "version": "v4.4.49",
  7747. "source": {
  7748. "type": "git",
  7749. "url": "https://github.com/symfony/console.git",
  7750. "reference": "33fa45ffc81fdcc1ca368d4946da859c8cdb58d9"
  7751. },
  7752. "dist": {
  7753. "type": "zip",
  7754. "url": "https://api.github.com/repos/symfony/console/zipball/33fa45ffc81fdcc1ca368d4946da859c8cdb58d9",
  7755. "reference": "33fa45ffc81fdcc1ca368d4946da859c8cdb58d9",
  7756. "shasum": ""
  7757. },
  7758. "require": {
  7759. "php": ">=7.1.3",
  7760. "symfony/polyfill-mbstring": "~1.0",
  7761. "symfony/polyfill-php73": "^1.8",
  7762. "symfony/polyfill-php80": "^1.16",
  7763. "symfony/service-contracts": "^1.1|^2"
  7764. },
  7765. "conflict": {
  7766. "psr/log": ">=3",
  7767. "symfony/dependency-injection": "<3.4",
  7768. "symfony/event-dispatcher": "<4.3|>=5",
  7769. "symfony/lock": "<4.4",
  7770. "symfony/process": "<3.3"
  7771. },
  7772. "provide": {
  7773. "psr/log-implementation": "1.0|2.0"
  7774. },
  7775. "require-dev": {
  7776. "psr/log": "^1|^2",
  7777. "symfony/config": "^3.4|^4.0|^5.0",
  7778. "symfony/dependency-injection": "^3.4|^4.0|^5.0",
  7779. "symfony/event-dispatcher": "^4.3",
  7780. "symfony/lock": "^4.4|^5.0",
  7781. "symfony/process": "^3.4|^4.0|^5.0",
  7782. "symfony/var-dumper": "^4.3|^5.0"
  7783. },
  7784. "suggest": {
  7785. "psr/log": "For using the console logger",
  7786. "symfony/event-dispatcher": "",
  7787. "symfony/lock": "",
  7788. "symfony/process": ""
  7789. },
  7790. "type": "library",
  7791. "autoload": {
  7792. "psr-4": {
  7793. "Symfony\\Component\\Console\\": ""
  7794. },
  7795. "exclude-from-classmap": [
  7796. "/Tests/"
  7797. ]
  7798. },
  7799. "notification-url": "https://packagist.org/downloads/",
  7800. "license": [
  7801. "MIT"
  7802. ],
  7803. "authors": [
  7804. {
  7805. "name": "Fabien Potencier",
  7806. "email": "fabien@symfony.com"
  7807. },
  7808. {
  7809. "name": "Symfony Community",
  7810. "homepage": "https://symfony.com/contributors"
  7811. }
  7812. ],
  7813. "description": "Eases the creation of beautiful and testable command line interfaces",
  7814. "homepage": "https://symfony.com",
  7815. "support": {
  7816. "source": "https://github.com/symfony/console/tree/v4.4.49"
  7817. },
  7818. "funding": [
  7819. {
  7820. "url": "https://symfony.com/sponsor",
  7821. "type": "custom"
  7822. },
  7823. {
  7824. "url": "https://github.com/fabpot",
  7825. "type": "github"
  7826. },
  7827. {
  7828. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7829. "type": "tidelift"
  7830. }
  7831. ],
  7832. "time": "2022-11-05T17:10:16+00:00"
  7833. },
  7834. {
  7835. "name": "symfony/debug",
  7836. "version": "v4.4.44",
  7837. "source": {
  7838. "type": "git",
  7839. "url": "https://github.com/symfony/debug.git",
  7840. "reference": "1a692492190773c5310bc7877cb590c04c2f05be"
  7841. },
  7842. "dist": {
  7843. "type": "zip",
  7844. "url": "https://api.github.com/repos/symfony/debug/zipball/1a692492190773c5310bc7877cb590c04c2f05be",
  7845. "reference": "1a692492190773c5310bc7877cb590c04c2f05be",
  7846. "shasum": ""
  7847. },
  7848. "require": {
  7849. "php": ">=7.1.3",
  7850. "psr/log": "^1|^2|^3"
  7851. },
  7852. "conflict": {
  7853. "symfony/http-kernel": "<3.4"
  7854. },
  7855. "require-dev": {
  7856. "symfony/http-kernel": "^3.4|^4.0|^5.0"
  7857. },
  7858. "type": "library",
  7859. "autoload": {
  7860. "psr-4": {
  7861. "Symfony\\Component\\Debug\\": ""
  7862. },
  7863. "exclude-from-classmap": [
  7864. "/Tests/"
  7865. ]
  7866. },
  7867. "notification-url": "https://packagist.org/downloads/",
  7868. "license": [
  7869. "MIT"
  7870. ],
  7871. "authors": [
  7872. {
  7873. "name": "Fabien Potencier",
  7874. "email": "fabien@symfony.com"
  7875. },
  7876. {
  7877. "name": "Symfony Community",
  7878. "homepage": "https://symfony.com/contributors"
  7879. }
  7880. ],
  7881. "description": "Provides tools to ease debugging PHP code",
  7882. "homepage": "https://symfony.com",
  7883. "support": {
  7884. "source": "https://github.com/symfony/debug/tree/v4.4.44"
  7885. },
  7886. "funding": [
  7887. {
  7888. "url": "https://symfony.com/sponsor",
  7889. "type": "custom"
  7890. },
  7891. {
  7892. "url": "https://github.com/fabpot",
  7893. "type": "github"
  7894. },
  7895. {
  7896. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7897. "type": "tidelift"
  7898. }
  7899. ],
  7900. "abandoned": "symfony/error-handler",
  7901. "time": "2022-07-28T16:29:46+00:00"
  7902. },
  7903. {
  7904. "name": "symfony/dependency-injection",
  7905. "version": "v4.4.49",
  7906. "source": {
  7907. "type": "git",
  7908. "url": "https://github.com/symfony/dependency-injection.git",
  7909. "reference": "9065fe97dbd38a897e95ea254eb5ddfe1310f734"
  7910. },
  7911. "dist": {
  7912. "type": "zip",
  7913. "url": "https://api.github.com/repos/symfony/dependency-injection/zipball/9065fe97dbd38a897e95ea254eb5ddfe1310f734",
  7914. "reference": "9065fe97dbd38a897e95ea254eb5ddfe1310f734",
  7915. "shasum": ""
  7916. },
  7917. "require": {
  7918. "php": ">=7.1.3",
  7919. "psr/container": "^1.0",
  7920. "symfony/polyfill-php80": "^1.16",
  7921. "symfony/service-contracts": "^1.1.6|^2"
  7922. },
  7923. "conflict": {
  7924. "symfony/config": "<4.3|>=5.0",
  7925. "symfony/finder": "<3.4",
  7926. "symfony/proxy-manager-bridge": "<3.4",
  7927. "symfony/yaml": "<4.4.26"
  7928. },
  7929. "provide": {
  7930. "psr/container-implementation": "1.0",
  7931. "symfony/service-implementation": "1.0|2.0"
  7932. },
  7933. "require-dev": {
  7934. "symfony/config": "^4.3",
  7935. "symfony/expression-language": "^3.4|^4.0|^5.0",
  7936. "symfony/yaml": "^4.4.26|^5.0"
  7937. },
  7938. "suggest": {
  7939. "symfony/config": "",
  7940. "symfony/expression-language": "For using expressions in service container configuration",
  7941. "symfony/finder": "For using double-star glob patterns or when GLOB_BRACE portability is required",
  7942. "symfony/proxy-manager-bridge": "Generate service proxies to lazy load them",
  7943. "symfony/yaml": ""
  7944. },
  7945. "type": "library",
  7946. "autoload": {
  7947. "psr-4": {
  7948. "Symfony\\Component\\DependencyInjection\\": ""
  7949. },
  7950. "exclude-from-classmap": [
  7951. "/Tests/"
  7952. ]
  7953. },
  7954. "notification-url": "https://packagist.org/downloads/",
  7955. "license": [
  7956. "MIT"
  7957. ],
  7958. "authors": [
  7959. {
  7960. "name": "Fabien Potencier",
  7961. "email": "fabien@symfony.com"
  7962. },
  7963. {
  7964. "name": "Symfony Community",
  7965. "homepage": "https://symfony.com/contributors"
  7966. }
  7967. ],
  7968. "description": "Allows you to standardize and centralize the way objects are constructed in your application",
  7969. "homepage": "https://symfony.com",
  7970. "support": {
  7971. "source": "https://github.com/symfony/dependency-injection/tree/v4.4.49"
  7972. },
  7973. "funding": [
  7974. {
  7975. "url": "https://symfony.com/sponsor",
  7976. "type": "custom"
  7977. },
  7978. {
  7979. "url": "https://github.com/fabpot",
  7980. "type": "github"
  7981. },
  7982. {
  7983. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7984. "type": "tidelift"
  7985. }
  7986. ],
  7987. "time": "2022-11-16T16:18:09+00:00"
  7988. },
  7989. {
  7990. "name": "symfony/deprecation-contracts",
  7991. "version": "v2.5.3",
  7992. "source": {
  7993. "type": "git",
  7994. "url": "https://github.com/symfony/deprecation-contracts.git",
  7995. "reference": "80d075412b557d41002320b96a096ca65aa2c98d"
  7996. },
  7997. "dist": {
  7998. "type": "zip",
  7999. "url": "https://api.github.com/repos/symfony/deprecation-contracts/zipball/80d075412b557d41002320b96a096ca65aa2c98d",
  8000. "reference": "80d075412b557d41002320b96a096ca65aa2c98d",
  8001. "shasum": ""
  8002. },
  8003. "require": {
  8004. "php": ">=7.1"
  8005. },
  8006. "type": "library",
  8007. "extra": {
  8008. "branch-alias": {
  8009. "dev-main": "2.5-dev"
  8010. },
  8011. "thanks": {
  8012. "name": "symfony/contracts",
  8013. "url": "https://github.com/symfony/contracts"
  8014. }
  8015. },
  8016. "autoload": {
  8017. "files": [
  8018. "function.php"
  8019. ]
  8020. },
  8021. "notification-url": "https://packagist.org/downloads/",
  8022. "license": [
  8023. "MIT"
  8024. ],
  8025. "authors": [
  8026. {
  8027. "name": "Nicolas Grekas",
  8028. "email": "p@tchwork.com"
  8029. },
  8030. {
  8031. "name": "Symfony Community",
  8032. "homepage": "https://symfony.com/contributors"
  8033. }
  8034. ],
  8035. "description": "A generic function and convention to trigger deprecation notices",
  8036. "homepage": "https://symfony.com",
  8037. "support": {
  8038. "source": "https://github.com/symfony/deprecation-contracts/tree/v2.5.3"
  8039. },
  8040. "funding": [
  8041. {
  8042. "url": "https://symfony.com/sponsor",
  8043. "type": "custom"
  8044. },
  8045. {
  8046. "url": "https://github.com/fabpot",
  8047. "type": "github"
  8048. },
  8049. {
  8050. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8051. "type": "tidelift"
  8052. }
  8053. ],
  8054. "time": "2023-01-24T14:02:46+00:00"
  8055. },
  8056. {
  8057. "name": "symfony/error-handler",
  8058. "version": "v4.4.44",
  8059. "source": {
  8060. "type": "git",
  8061. "url": "https://github.com/symfony/error-handler.git",
  8062. "reference": "be731658121ef2d8be88f3a1ec938148a9237291"
  8063. },
  8064. "dist": {
  8065. "type": "zip",
  8066. "url": "https://api.github.com/repos/symfony/error-handler/zipball/be731658121ef2d8be88f3a1ec938148a9237291",
  8067. "reference": "be731658121ef2d8be88f3a1ec938148a9237291",
  8068. "shasum": ""
  8069. },
  8070. "require": {
  8071. "php": ">=7.1.3",
  8072. "psr/log": "^1|^2|^3",
  8073. "symfony/debug": "^4.4.5",
  8074. "symfony/var-dumper": "^4.4|^5.0"
  8075. },
  8076. "require-dev": {
  8077. "symfony/http-kernel": "^4.4|^5.0",
  8078. "symfony/serializer": "^4.4|^5.0"
  8079. },
  8080. "type": "library",
  8081. "autoload": {
  8082. "psr-4": {
  8083. "Symfony\\Component\\ErrorHandler\\": ""
  8084. },
  8085. "exclude-from-classmap": [
  8086. "/Tests/"
  8087. ]
  8088. },
  8089. "notification-url": "https://packagist.org/downloads/",
  8090. "license": [
  8091. "MIT"
  8092. ],
  8093. "authors": [
  8094. {
  8095. "name": "Fabien Potencier",
  8096. "email": "fabien@symfony.com"
  8097. },
  8098. {
  8099. "name": "Symfony Community",
  8100. "homepage": "https://symfony.com/contributors"
  8101. }
  8102. ],
  8103. "description": "Provides tools to manage errors and ease debugging PHP code",
  8104. "homepage": "https://symfony.com",
  8105. "support": {
  8106. "source": "https://github.com/symfony/error-handler/tree/v4.4.44"
  8107. },
  8108. "funding": [
  8109. {
  8110. "url": "https://symfony.com/sponsor",
  8111. "type": "custom"
  8112. },
  8113. {
  8114. "url": "https://github.com/fabpot",
  8115. "type": "github"
  8116. },
  8117. {
  8118. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8119. "type": "tidelift"
  8120. }
  8121. ],
  8122. "time": "2022-07-28T16:29:46+00:00"
  8123. },
  8124. {
  8125. "name": "symfony/event-dispatcher",
  8126. "version": "v4.4.44",
  8127. "source": {
  8128. "type": "git",
  8129. "url": "https://github.com/symfony/event-dispatcher.git",
  8130. "reference": "1e866e9e5c1b22168e0ce5f0b467f19bba61266a"
  8131. },
  8132. "dist": {
  8133. "type": "zip",
  8134. "url": "https://api.github.com/repos/symfony/event-dispatcher/zipball/1e866e9e5c1b22168e0ce5f0b467f19bba61266a",
  8135. "reference": "1e866e9e5c1b22168e0ce5f0b467f19bba61266a",
  8136. "shasum": ""
  8137. },
  8138. "require": {
  8139. "php": ">=7.1.3",
  8140. "symfony/event-dispatcher-contracts": "^1.1",
  8141. "symfony/polyfill-php80": "^1.16"
  8142. },
  8143. "conflict": {
  8144. "symfony/dependency-injection": "<3.4"
  8145. },
  8146. "provide": {
  8147. "psr/event-dispatcher-implementation": "1.0",
  8148. "symfony/event-dispatcher-implementation": "1.1"
  8149. },
  8150. "require-dev": {
  8151. "psr/log": "^1|^2|^3",
  8152. "symfony/config": "^3.4|^4.0|^5.0",
  8153. "symfony/dependency-injection": "^3.4|^4.0|^5.0",
  8154. "symfony/error-handler": "~3.4|~4.4",
  8155. "symfony/expression-language": "^3.4|^4.0|^5.0",
  8156. "symfony/http-foundation": "^3.4|^4.0|^5.0",
  8157. "symfony/service-contracts": "^1.1|^2",
  8158. "symfony/stopwatch": "^3.4|^4.0|^5.0"
  8159. },
  8160. "suggest": {
  8161. "symfony/dependency-injection": "",
  8162. "symfony/http-kernel": ""
  8163. },
  8164. "type": "library",
  8165. "autoload": {
  8166. "psr-4": {
  8167. "Symfony\\Component\\EventDispatcher\\": ""
  8168. },
  8169. "exclude-from-classmap": [
  8170. "/Tests/"
  8171. ]
  8172. },
  8173. "notification-url": "https://packagist.org/downloads/",
  8174. "license": [
  8175. "MIT"
  8176. ],
  8177. "authors": [
  8178. {
  8179. "name": "Fabien Potencier",
  8180. "email": "fabien@symfony.com"
  8181. },
  8182. {
  8183. "name": "Symfony Community",
  8184. "homepage": "https://symfony.com/contributors"
  8185. }
  8186. ],
  8187. "description": "Provides tools that allow your application components to communicate with each other by dispatching events and listening to them",
  8188. "homepage": "https://symfony.com",
  8189. "support": {
  8190. "source": "https://github.com/symfony/event-dispatcher/tree/v4.4.44"
  8191. },
  8192. "funding": [
  8193. {
  8194. "url": "https://symfony.com/sponsor",
  8195. "type": "custom"
  8196. },
  8197. {
  8198. "url": "https://github.com/fabpot",
  8199. "type": "github"
  8200. },
  8201. {
  8202. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8203. "type": "tidelift"
  8204. }
  8205. ],
  8206. "time": "2022-07-20T09:59:04+00:00"
  8207. },
  8208. {
  8209. "name": "symfony/event-dispatcher-contracts",
  8210. "version": "v1.1.13",
  8211. "source": {
  8212. "type": "git",
  8213. "url": "https://github.com/symfony/event-dispatcher-contracts.git",
  8214. "reference": "1d5cd762abaa6b2a4169d3e77610193a7157129e"
  8215. },
  8216. "dist": {
  8217. "type": "zip",
  8218. "url": "https://api.github.com/repos/symfony/event-dispatcher-contracts/zipball/1d5cd762abaa6b2a4169d3e77610193a7157129e",
  8219. "reference": "1d5cd762abaa6b2a4169d3e77610193a7157129e",
  8220. "shasum": ""
  8221. },
  8222. "require": {
  8223. "php": ">=7.1.3"
  8224. },
  8225. "suggest": {
  8226. "psr/event-dispatcher": "",
  8227. "symfony/event-dispatcher-implementation": ""
  8228. },
  8229. "type": "library",
  8230. "extra": {
  8231. "branch-alias": {
  8232. "dev-main": "1.1-dev"
  8233. },
  8234. "thanks": {
  8235. "name": "symfony/contracts",
  8236. "url": "https://github.com/symfony/contracts"
  8237. }
  8238. },
  8239. "autoload": {
  8240. "psr-4": {
  8241. "Symfony\\Contracts\\EventDispatcher\\": ""
  8242. }
  8243. },
  8244. "notification-url": "https://packagist.org/downloads/",
  8245. "license": [
  8246. "MIT"
  8247. ],
  8248. "authors": [
  8249. {
  8250. "name": "Nicolas Grekas",
  8251. "email": "p@tchwork.com"
  8252. },
  8253. {
  8254. "name": "Symfony Community",
  8255. "homepage": "https://symfony.com/contributors"
  8256. }
  8257. ],
  8258. "description": "Generic abstractions related to dispatching event",
  8259. "homepage": "https://symfony.com",
  8260. "keywords": [
  8261. "abstractions",
  8262. "contracts",
  8263. "decoupling",
  8264. "interfaces",
  8265. "interoperability",
  8266. "standards"
  8267. ],
  8268. "support": {
  8269. "source": "https://github.com/symfony/event-dispatcher-contracts/tree/v1.1.13"
  8270. },
  8271. "funding": [
  8272. {
  8273. "url": "https://symfony.com/sponsor",
  8274. "type": "custom"
  8275. },
  8276. {
  8277. "url": "https://github.com/fabpot",
  8278. "type": "github"
  8279. },
  8280. {
  8281. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8282. "type": "tidelift"
  8283. }
  8284. ],
  8285. "time": "2022-01-02T09:41:36+00:00"
  8286. },
  8287. {
  8288. "name": "symfony/filesystem",
  8289. "version": "v4.4.42",
  8290. "source": {
  8291. "type": "git",
  8292. "url": "https://github.com/symfony/filesystem.git",
  8293. "reference": "815412ee8971209bd4c1eecd5f4f481eacd44bf5"
  8294. },
  8295. "dist": {
  8296. "type": "zip",
  8297. "url": "https://api.github.com/repos/symfony/filesystem/zipball/815412ee8971209bd4c1eecd5f4f481eacd44bf5",
  8298. "reference": "815412ee8971209bd4c1eecd5f4f481eacd44bf5",
  8299. "shasum": ""
  8300. },
  8301. "require": {
  8302. "php": ">=7.1.3",
  8303. "symfony/polyfill-ctype": "~1.8",
  8304. "symfony/polyfill-php80": "^1.16"
  8305. },
  8306. "type": "library",
  8307. "autoload": {
  8308. "psr-4": {
  8309. "Symfony\\Component\\Filesystem\\": ""
  8310. },
  8311. "exclude-from-classmap": [
  8312. "/Tests/"
  8313. ]
  8314. },
  8315. "notification-url": "https://packagist.org/downloads/",
  8316. "license": [
  8317. "MIT"
  8318. ],
  8319. "authors": [
  8320. {
  8321. "name": "Fabien Potencier",
  8322. "email": "fabien@symfony.com"
  8323. },
  8324. {
  8325. "name": "Symfony Community",
  8326. "homepage": "https://symfony.com/contributors"
  8327. }
  8328. ],
  8329. "description": "Provides basic utilities for the filesystem",
  8330. "homepage": "https://symfony.com",
  8331. "support": {
  8332. "source": "https://github.com/symfony/filesystem/tree/v4.4.42"
  8333. },
  8334. "funding": [
  8335. {
  8336. "url": "https://symfony.com/sponsor",
  8337. "type": "custom"
  8338. },
  8339. {
  8340. "url": "https://github.com/fabpot",
  8341. "type": "github"
  8342. },
  8343. {
  8344. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8345. "type": "tidelift"
  8346. }
  8347. ],
  8348. "time": "2022-05-20T08:49:14+00:00"
  8349. },
  8350. {
  8351. "name": "symfony/finder",
  8352. "version": "v5.4.43",
  8353. "source": {
  8354. "type": "git",
  8355. "url": "https://github.com/symfony/finder.git",
  8356. "reference": "ae25a9145a900764158d439653d5630191155ca0"
  8357. },
  8358. "dist": {
  8359. "type": "zip",
  8360. "url": "https://api.github.com/repos/symfony/finder/zipball/ae25a9145a900764158d439653d5630191155ca0",
  8361. "reference": "ae25a9145a900764158d439653d5630191155ca0",
  8362. "shasum": ""
  8363. },
  8364. "require": {
  8365. "php": ">=7.2.5",
  8366. "symfony/deprecation-contracts": "^2.1|^3",
  8367. "symfony/polyfill-php80": "^1.16"
  8368. },
  8369. "type": "library",
  8370. "autoload": {
  8371. "psr-4": {
  8372. "Symfony\\Component\\Finder\\": ""
  8373. },
  8374. "exclude-from-classmap": [
  8375. "/Tests/"
  8376. ]
  8377. },
  8378. "notification-url": "https://packagist.org/downloads/",
  8379. "license": [
  8380. "MIT"
  8381. ],
  8382. "authors": [
  8383. {
  8384. "name": "Fabien Potencier",
  8385. "email": "fabien@symfony.com"
  8386. },
  8387. {
  8388. "name": "Symfony Community",
  8389. "homepage": "https://symfony.com/contributors"
  8390. }
  8391. ],
  8392. "description": "Finds files and directories via an intuitive fluent interface",
  8393. "homepage": "https://symfony.com",
  8394. "support": {
  8395. "source": "https://github.com/symfony/finder/tree/v5.4.43"
  8396. },
  8397. "funding": [
  8398. {
  8399. "url": "https://symfony.com/sponsor",
  8400. "type": "custom"
  8401. },
  8402. {
  8403. "url": "https://github.com/fabpot",
  8404. "type": "github"
  8405. },
  8406. {
  8407. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8408. "type": "tidelift"
  8409. }
  8410. ],
  8411. "time": "2024-08-13T14:03:51+00:00"
  8412. },
  8413. {
  8414. "name": "symfony/http-client-contracts",
  8415. "version": "v2.5.3",
  8416. "source": {
  8417. "type": "git",
  8418. "url": "https://github.com/symfony/http-client-contracts.git",
  8419. "reference": "e5cc97c2b4a4db0ba26bebc154f1426e3fd1d2f1"
  8420. },
  8421. "dist": {
  8422. "type": "zip",
  8423. "url": "https://api.github.com/repos/symfony/http-client-contracts/zipball/e5cc97c2b4a4db0ba26bebc154f1426e3fd1d2f1",
  8424. "reference": "e5cc97c2b4a4db0ba26bebc154f1426e3fd1d2f1",
  8425. "shasum": ""
  8426. },
  8427. "require": {
  8428. "php": ">=7.2.5"
  8429. },
  8430. "suggest": {
  8431. "symfony/http-client-implementation": ""
  8432. },
  8433. "type": "library",
  8434. "extra": {
  8435. "branch-alias": {
  8436. "dev-main": "2.5-dev"
  8437. },
  8438. "thanks": {
  8439. "name": "symfony/contracts",
  8440. "url": "https://github.com/symfony/contracts"
  8441. }
  8442. },
  8443. "autoload": {
  8444. "psr-4": {
  8445. "Symfony\\Contracts\\HttpClient\\": ""
  8446. }
  8447. },
  8448. "notification-url": "https://packagist.org/downloads/",
  8449. "license": [
  8450. "MIT"
  8451. ],
  8452. "authors": [
  8453. {
  8454. "name": "Nicolas Grekas",
  8455. "email": "p@tchwork.com"
  8456. },
  8457. {
  8458. "name": "Symfony Community",
  8459. "homepage": "https://symfony.com/contributors"
  8460. }
  8461. ],
  8462. "description": "Generic abstractions related to HTTP clients",
  8463. "homepage": "https://symfony.com",
  8464. "keywords": [
  8465. "abstractions",
  8466. "contracts",
  8467. "decoupling",
  8468. "interfaces",
  8469. "interoperability",
  8470. "standards"
  8471. ],
  8472. "support": {
  8473. "source": "https://github.com/symfony/http-client-contracts/tree/v2.5.3"
  8474. },
  8475. "funding": [
  8476. {
  8477. "url": "https://symfony.com/sponsor",
  8478. "type": "custom"
  8479. },
  8480. {
  8481. "url": "https://github.com/fabpot",
  8482. "type": "github"
  8483. },
  8484. {
  8485. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8486. "type": "tidelift"
  8487. }
  8488. ],
  8489. "time": "2024-03-26T19:42:53+00:00"
  8490. },
  8491. {
  8492. "name": "symfony/http-foundation",
  8493. "version": "v4.4.49",
  8494. "source": {
  8495. "type": "git",
  8496. "url": "https://github.com/symfony/http-foundation.git",
  8497. "reference": "191413c7b832c015bb38eae963f2e57498c3c173"
  8498. },
  8499. "dist": {
  8500. "type": "zip",
  8501. "url": "https://api.github.com/repos/symfony/http-foundation/zipball/191413c7b832c015bb38eae963f2e57498c3c173",
  8502. "reference": "191413c7b832c015bb38eae963f2e57498c3c173",
  8503. "shasum": ""
  8504. },
  8505. "require": {
  8506. "php": ">=7.1.3",
  8507. "symfony/mime": "^4.3|^5.0",
  8508. "symfony/polyfill-mbstring": "~1.1",
  8509. "symfony/polyfill-php80": "^1.16"
  8510. },
  8511. "require-dev": {
  8512. "predis/predis": "~1.0",
  8513. "symfony/expression-language": "^3.4|^4.0|^5.0"
  8514. },
  8515. "type": "library",
  8516. "autoload": {
  8517. "psr-4": {
  8518. "Symfony\\Component\\HttpFoundation\\": ""
  8519. },
  8520. "exclude-from-classmap": [
  8521. "/Tests/"
  8522. ]
  8523. },
  8524. "notification-url": "https://packagist.org/downloads/",
  8525. "license": [
  8526. "MIT"
  8527. ],
  8528. "authors": [
  8529. {
  8530. "name": "Fabien Potencier",
  8531. "email": "fabien@symfony.com"
  8532. },
  8533. {
  8534. "name": "Symfony Community",
  8535. "homepage": "https://symfony.com/contributors"
  8536. }
  8537. ],
  8538. "description": "Defines an object-oriented layer for the HTTP specification",
  8539. "homepage": "https://symfony.com",
  8540. "support": {
  8541. "source": "https://github.com/symfony/http-foundation/tree/v4.4.49"
  8542. },
  8543. "funding": [
  8544. {
  8545. "url": "https://symfony.com/sponsor",
  8546. "type": "custom"
  8547. },
  8548. {
  8549. "url": "https://github.com/fabpot",
  8550. "type": "github"
  8551. },
  8552. {
  8553. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8554. "type": "tidelift"
  8555. }
  8556. ],
  8557. "time": "2022-11-04T16:17:57+00:00"
  8558. },
  8559. {
  8560. "name": "symfony/http-kernel",
  8561. "version": "v4.4.51",
  8562. "source": {
  8563. "type": "git",
  8564. "url": "https://github.com/symfony/http-kernel.git",
  8565. "reference": "ad8ab192cb619ff7285c95d28c69b36d718416c7"
  8566. },
  8567. "dist": {
  8568. "type": "zip",
  8569. "url": "https://api.github.com/repos/symfony/http-kernel/zipball/ad8ab192cb619ff7285c95d28c69b36d718416c7",
  8570. "reference": "ad8ab192cb619ff7285c95d28c69b36d718416c7",
  8571. "shasum": ""
  8572. },
  8573. "require": {
  8574. "php": ">=7.1.3",
  8575. "psr/log": "^1|^2",
  8576. "symfony/error-handler": "^4.4",
  8577. "symfony/event-dispatcher": "^4.4",
  8578. "symfony/http-client-contracts": "^1.1|^2",
  8579. "symfony/http-foundation": "^4.4.30|^5.3.7",
  8580. "symfony/polyfill-ctype": "^1.8",
  8581. "symfony/polyfill-php73": "^1.9",
  8582. "symfony/polyfill-php80": "^1.16"
  8583. },
  8584. "conflict": {
  8585. "symfony/browser-kit": "<4.3",
  8586. "symfony/config": "<3.4",
  8587. "symfony/console": ">=5",
  8588. "symfony/dependency-injection": "<4.3",
  8589. "symfony/translation": "<4.2",
  8590. "twig/twig": "<1.43|<2.13,>=2"
  8591. },
  8592. "provide": {
  8593. "psr/log-implementation": "1.0|2.0"
  8594. },
  8595. "require-dev": {
  8596. "psr/cache": "^1.0|^2.0|^3.0",
  8597. "symfony/browser-kit": "^4.3|^5.0",
  8598. "symfony/config": "^3.4|^4.0|^5.0",
  8599. "symfony/console": "^3.4|^4.0",
  8600. "symfony/css-selector": "^3.4|^4.0|^5.0",
  8601. "symfony/dependency-injection": "^4.3|^5.0",
  8602. "symfony/dom-crawler": "^3.4|^4.0|^5.0",
  8603. "symfony/expression-language": "^3.4|^4.0|^5.0",
  8604. "symfony/finder": "^3.4|^4.0|^5.0",
  8605. "symfony/process": "^3.4|^4.0|^5.0",
  8606. "symfony/routing": "^3.4|^4.0|^5.0",
  8607. "symfony/stopwatch": "^3.4|^4.0|^5.0",
  8608. "symfony/templating": "^3.4|^4.0|^5.0",
  8609. "symfony/translation": "^4.2|^5.0",
  8610. "symfony/translation-contracts": "^1.1|^2",
  8611. "twig/twig": "^1.43|^2.13|^3.0.4"
  8612. },
  8613. "suggest": {
  8614. "symfony/browser-kit": "",
  8615. "symfony/config": "",
  8616. "symfony/console": "",
  8617. "symfony/dependency-injection": ""
  8618. },
  8619. "type": "library",
  8620. "autoload": {
  8621. "psr-4": {
  8622. "Symfony\\Component\\HttpKernel\\": ""
  8623. },
  8624. "exclude-from-classmap": [
  8625. "/Tests/"
  8626. ]
  8627. },
  8628. "notification-url": "https://packagist.org/downloads/",
  8629. "license": [
  8630. "MIT"
  8631. ],
  8632. "authors": [
  8633. {
  8634. "name": "Fabien Potencier",
  8635. "email": "fabien@symfony.com"
  8636. },
  8637. {
  8638. "name": "Symfony Community",
  8639. "homepage": "https://symfony.com/contributors"
  8640. }
  8641. ],
  8642. "description": "Provides a structured process for converting a Request into a Response",
  8643. "homepage": "https://symfony.com",
  8644. "support": {
  8645. "source": "https://github.com/symfony/http-kernel/tree/v4.4.51"
  8646. },
  8647. "funding": [
  8648. {
  8649. "url": "https://symfony.com/sponsor",
  8650. "type": "custom"
  8651. },
  8652. {
  8653. "url": "https://github.com/fabpot",
  8654. "type": "github"
  8655. },
  8656. {
  8657. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8658. "type": "tidelift"
  8659. }
  8660. ],
  8661. "time": "2023-11-10T13:31:29+00:00"
  8662. },
  8663. {
  8664. "name": "symfony/mime",
  8665. "version": "v5.4.13",
  8666. "source": {
  8667. "type": "git",
  8668. "url": "https://github.com/symfony/mime.git",
  8669. "reference": "bb2ccf759e2b967dcd11bdee5bdf30dddd2290bd"
  8670. },
  8671. "dist": {
  8672. "type": "zip",
  8673. "url": "https://api.github.com/repos/symfony/mime/zipball/bb2ccf759e2b967dcd11bdee5bdf30dddd2290bd",
  8674. "reference": "bb2ccf759e2b967dcd11bdee5bdf30dddd2290bd",
  8675. "shasum": ""
  8676. },
  8677. "require": {
  8678. "php": ">=7.2.5",
  8679. "symfony/deprecation-contracts": "^2.1|^3",
  8680. "symfony/polyfill-intl-idn": "^1.10",
  8681. "symfony/polyfill-mbstring": "^1.0",
  8682. "symfony/polyfill-php80": "^1.16"
  8683. },
  8684. "conflict": {
  8685. "egulias/email-validator": "~3.0.0",
  8686. "phpdocumentor/reflection-docblock": "<3.2.2",
  8687. "phpdocumentor/type-resolver": "<1.4.0",
  8688. "symfony/mailer": "<4.4"
  8689. },
  8690. "require-dev": {
  8691. "egulias/email-validator": "^2.1.10|^3.1",
  8692. "phpdocumentor/reflection-docblock": "^3.0|^4.0|^5.0",
  8693. "symfony/dependency-injection": "^4.4|^5.0|^6.0",
  8694. "symfony/property-access": "^4.4|^5.1|^6.0",
  8695. "symfony/property-info": "^4.4|^5.1|^6.0",
  8696. "symfony/serializer": "^5.2|^6.0"
  8697. },
  8698. "type": "library",
  8699. "autoload": {
  8700. "psr-4": {
  8701. "Symfony\\Component\\Mime\\": ""
  8702. },
  8703. "exclude-from-classmap": [
  8704. "/Tests/"
  8705. ]
  8706. },
  8707. "notification-url": "https://packagist.org/downloads/",
  8708. "license": [
  8709. "MIT"
  8710. ],
  8711. "authors": [
  8712. {
  8713. "name": "Fabien Potencier",
  8714. "email": "fabien@symfony.com"
  8715. },
  8716. {
  8717. "name": "Symfony Community",
  8718. "homepage": "https://symfony.com/contributors"
  8719. }
  8720. ],
  8721. "description": "Allows manipulating MIME messages",
  8722. "homepage": "https://symfony.com",
  8723. "keywords": [
  8724. "mime",
  8725. "mime-type"
  8726. ],
  8727. "support": {
  8728. "source": "https://github.com/symfony/mime/tree/v5.4.13"
  8729. },
  8730. "funding": [
  8731. {
  8732. "url": "https://symfony.com/sponsor",
  8733. "type": "custom"
  8734. },
  8735. {
  8736. "url": "https://github.com/fabpot",
  8737. "type": "github"
  8738. },
  8739. {
  8740. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8741. "type": "tidelift"
  8742. }
  8743. ],
  8744. "time": "2022-09-01T18:18:29+00:00"
  8745. },
  8746. {
  8747. "name": "symfony/polyfill-ctype",
  8748. "version": "v1.27.0",
  8749. "source": {
  8750. "type": "git",
  8751. "url": "https://github.com/symfony/polyfill-ctype.git",
  8752. "reference": "5bbc823adecdae860bb64756d639ecfec17b050a"
  8753. },
  8754. "dist": {
  8755. "type": "zip",
  8756. "url": "https://api.github.com/repos/symfony/polyfill-ctype/zipball/5bbc823adecdae860bb64756d639ecfec17b050a",
  8757. "reference": "5bbc823adecdae860bb64756d639ecfec17b050a",
  8758. "shasum": ""
  8759. },
  8760. "require": {
  8761. "php": ">=7.1"
  8762. },
  8763. "provide": {
  8764. "ext-ctype": "*"
  8765. },
  8766. "suggest": {
  8767. "ext-ctype": "For best performance"
  8768. },
  8769. "type": "library",
  8770. "extra": {
  8771. "branch-alias": {
  8772. "dev-main": "1.27-dev"
  8773. },
  8774. "thanks": {
  8775. "name": "symfony/polyfill",
  8776. "url": "https://github.com/symfony/polyfill"
  8777. }
  8778. },
  8779. "autoload": {
  8780. "files": [
  8781. "bootstrap.php"
  8782. ],
  8783. "psr-4": {
  8784. "Symfony\\Polyfill\\Ctype\\": ""
  8785. }
  8786. },
  8787. "notification-url": "https://packagist.org/downloads/",
  8788. "license": [
  8789. "MIT"
  8790. ],
  8791. "authors": [
  8792. {
  8793. "name": "Gert de Pagter",
  8794. "email": "BackEndTea@gmail.com"
  8795. },
  8796. {
  8797. "name": "Symfony Community",
  8798. "homepage": "https://symfony.com/contributors"
  8799. }
  8800. ],
  8801. "description": "Symfony polyfill for ctype functions",
  8802. "homepage": "https://symfony.com",
  8803. "keywords": [
  8804. "compatibility",
  8805. "ctype",
  8806. "polyfill",
  8807. "portable"
  8808. ],
  8809. "support": {
  8810. "source": "https://github.com/symfony/polyfill-ctype/tree/v1.27.0"
  8811. },
  8812. "funding": [
  8813. {
  8814. "url": "https://symfony.com/sponsor",
  8815. "type": "custom"
  8816. },
  8817. {
  8818. "url": "https://github.com/fabpot",
  8819. "type": "github"
  8820. },
  8821. {
  8822. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8823. "type": "tidelift"
  8824. }
  8825. ],
  8826. "time": "2022-11-03T14:55:06+00:00"
  8827. },
  8828. {
  8829. "name": "symfony/polyfill-iconv",
  8830. "version": "v1.27.0",
  8831. "source": {
  8832. "type": "git",
  8833. "url": "https://github.com/symfony/polyfill-iconv.git",
  8834. "reference": "927013f3aac555983a5059aada98e1907d842695"
  8835. },
  8836. "dist": {
  8837. "type": "zip",
  8838. "url": "https://api.github.com/repos/symfony/polyfill-iconv/zipball/927013f3aac555983a5059aada98e1907d842695",
  8839. "reference": "927013f3aac555983a5059aada98e1907d842695",
  8840. "shasum": ""
  8841. },
  8842. "require": {
  8843. "php": ">=7.1"
  8844. },
  8845. "provide": {
  8846. "ext-iconv": "*"
  8847. },
  8848. "suggest": {
  8849. "ext-iconv": "For best performance"
  8850. },
  8851. "type": "library",
  8852. "extra": {
  8853. "branch-alias": {
  8854. "dev-main": "1.27-dev"
  8855. },
  8856. "thanks": {
  8857. "name": "symfony/polyfill",
  8858. "url": "https://github.com/symfony/polyfill"
  8859. }
  8860. },
  8861. "autoload": {
  8862. "files": [
  8863. "bootstrap.php"
  8864. ],
  8865. "psr-4": {
  8866. "Symfony\\Polyfill\\Iconv\\": ""
  8867. }
  8868. },
  8869. "notification-url": "https://packagist.org/downloads/",
  8870. "license": [
  8871. "MIT"
  8872. ],
  8873. "authors": [
  8874. {
  8875. "name": "Nicolas Grekas",
  8876. "email": "p@tchwork.com"
  8877. },
  8878. {
  8879. "name": "Symfony Community",
  8880. "homepage": "https://symfony.com/contributors"
  8881. }
  8882. ],
  8883. "description": "Symfony polyfill for the Iconv extension",
  8884. "homepage": "https://symfony.com",
  8885. "keywords": [
  8886. "compatibility",
  8887. "iconv",
  8888. "polyfill",
  8889. "portable",
  8890. "shim"
  8891. ],
  8892. "support": {
  8893. "source": "https://github.com/symfony/polyfill-iconv/tree/v1.27.0"
  8894. },
  8895. "funding": [
  8896. {
  8897. "url": "https://symfony.com/sponsor",
  8898. "type": "custom"
  8899. },
  8900. {
  8901. "url": "https://github.com/fabpot",
  8902. "type": "github"
  8903. },
  8904. {
  8905. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8906. "type": "tidelift"
  8907. }
  8908. ],
  8909. "time": "2022-11-03T14:55:06+00:00"
  8910. },
  8911. {
  8912. "name": "symfony/polyfill-intl-idn",
  8913. "version": "v1.27.0",
  8914. "source": {
  8915. "type": "git",
  8916. "url": "https://github.com/symfony/polyfill-intl-idn.git",
  8917. "reference": "639084e360537a19f9ee352433b84ce831f3d2da"
  8918. },
  8919. "dist": {
  8920. "type": "zip",
  8921. "url": "https://api.github.com/repos/symfony/polyfill-intl-idn/zipball/639084e360537a19f9ee352433b84ce831f3d2da",
  8922. "reference": "639084e360537a19f9ee352433b84ce831f3d2da",
  8923. "shasum": ""
  8924. },
  8925. "require": {
  8926. "php": ">=7.1",
  8927. "symfony/polyfill-intl-normalizer": "^1.10",
  8928. "symfony/polyfill-php72": "^1.10"
  8929. },
  8930. "suggest": {
  8931. "ext-intl": "For best performance"
  8932. },
  8933. "type": "library",
  8934. "extra": {
  8935. "branch-alias": {
  8936. "dev-main": "1.27-dev"
  8937. },
  8938. "thanks": {
  8939. "name": "symfony/polyfill",
  8940. "url": "https://github.com/symfony/polyfill"
  8941. }
  8942. },
  8943. "autoload": {
  8944. "files": [
  8945. "bootstrap.php"
  8946. ],
  8947. "psr-4": {
  8948. "Symfony\\Polyfill\\Intl\\Idn\\": ""
  8949. }
  8950. },
  8951. "notification-url": "https://packagist.org/downloads/",
  8952. "license": [
  8953. "MIT"
  8954. ],
  8955. "authors": [
  8956. {
  8957. "name": "Laurent Bassin",
  8958. "email": "laurent@bassin.info"
  8959. },
  8960. {
  8961. "name": "Trevor Rowbotham",
  8962. "email": "trevor.rowbotham@pm.me"
  8963. },
  8964. {
  8965. "name": "Symfony Community",
  8966. "homepage": "https://symfony.com/contributors"
  8967. }
  8968. ],
  8969. "description": "Symfony polyfill for intl's idn_to_ascii and idn_to_utf8 functions",
  8970. "homepage": "https://symfony.com",
  8971. "keywords": [
  8972. "compatibility",
  8973. "idn",
  8974. "intl",
  8975. "polyfill",
  8976. "portable",
  8977. "shim"
  8978. ],
  8979. "support": {
  8980. "source": "https://github.com/symfony/polyfill-intl-idn/tree/v1.27.0"
  8981. },
  8982. "funding": [
  8983. {
  8984. "url": "https://symfony.com/sponsor",
  8985. "type": "custom"
  8986. },
  8987. {
  8988. "url": "https://github.com/fabpot",
  8989. "type": "github"
  8990. },
  8991. {
  8992. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8993. "type": "tidelift"
  8994. }
  8995. ],
  8996. "time": "2022-11-03T14:55:06+00:00"
  8997. },
  8998. {
  8999. "name": "symfony/polyfill-intl-normalizer",
  9000. "version": "v1.27.0",
  9001. "source": {
  9002. "type": "git",
  9003. "url": "https://github.com/symfony/polyfill-intl-normalizer.git",
  9004. "reference": "19bd1e4fcd5b91116f14d8533c57831ed00571b6"
  9005. },
  9006. "dist": {
  9007. "type": "zip",
  9008. "url": "https://api.github.com/repos/symfony/polyfill-intl-normalizer/zipball/19bd1e4fcd5b91116f14d8533c57831ed00571b6",
  9009. "reference": "19bd1e4fcd5b91116f14d8533c57831ed00571b6",
  9010. "shasum": ""
  9011. },
  9012. "require": {
  9013. "php": ">=7.1"
  9014. },
  9015. "suggest": {
  9016. "ext-intl": "For best performance"
  9017. },
  9018. "type": "library",
  9019. "extra": {
  9020. "branch-alias": {
  9021. "dev-main": "1.27-dev"
  9022. },
  9023. "thanks": {
  9024. "name": "symfony/polyfill",
  9025. "url": "https://github.com/symfony/polyfill"
  9026. }
  9027. },
  9028. "autoload": {
  9029. "files": [
  9030. "bootstrap.php"
  9031. ],
  9032. "psr-4": {
  9033. "Symfony\\Polyfill\\Intl\\Normalizer\\": ""
  9034. },
  9035. "classmap": [
  9036. "Resources/stubs"
  9037. ]
  9038. },
  9039. "notification-url": "https://packagist.org/downloads/",
  9040. "license": [
  9041. "MIT"
  9042. ],
  9043. "authors": [
  9044. {
  9045. "name": "Nicolas Grekas",
  9046. "email": "p@tchwork.com"
  9047. },
  9048. {
  9049. "name": "Symfony Community",
  9050. "homepage": "https://symfony.com/contributors"
  9051. }
  9052. ],
  9053. "description": "Symfony polyfill for intl's Normalizer class and related functions",
  9054. "homepage": "https://symfony.com",
  9055. "keywords": [
  9056. "compatibility",
  9057. "intl",
  9058. "normalizer",
  9059. "polyfill",
  9060. "portable",
  9061. "shim"
  9062. ],
  9063. "support": {
  9064. "source": "https://github.com/symfony/polyfill-intl-normalizer/tree/v1.27.0"
  9065. },
  9066. "funding": [
  9067. {
  9068. "url": "https://symfony.com/sponsor",
  9069. "type": "custom"
  9070. },
  9071. {
  9072. "url": "https://github.com/fabpot",
  9073. "type": "github"
  9074. },
  9075. {
  9076. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  9077. "type": "tidelift"
  9078. }
  9079. ],
  9080. "time": "2022-11-03T14:55:06+00:00"
  9081. },
  9082. {
  9083. "name": "symfony/polyfill-mbstring",
  9084. "version": "v1.27.0",
  9085. "source": {
  9086. "type": "git",
  9087. "url": "https://github.com/symfony/polyfill-mbstring.git",
  9088. "reference": "8ad114f6b39e2c98a8b0e3bd907732c207c2b534"
  9089. },
  9090. "dist": {
  9091. "type": "zip",
  9092. "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/8ad114f6b39e2c98a8b0e3bd907732c207c2b534",
  9093. "reference": "8ad114f6b39e2c98a8b0e3bd907732c207c2b534",
  9094. "shasum": ""
  9095. },
  9096. "require": {
  9097. "php": ">=7.1"
  9098. },
  9099. "provide": {
  9100. "ext-mbstring": "*"
  9101. },
  9102. "suggest": {
  9103. "ext-mbstring": "For best performance"
  9104. },
  9105. "type": "library",
  9106. "extra": {
  9107. "branch-alias": {
  9108. "dev-main": "1.27-dev"
  9109. },
  9110. "thanks": {
  9111. "name": "symfony/polyfill",
  9112. "url": "https://github.com/symfony/polyfill"
  9113. }
  9114. },
  9115. "autoload": {
  9116. "files": [
  9117. "bootstrap.php"
  9118. ],
  9119. "psr-4": {
  9120. "Symfony\\Polyfill\\Mbstring\\": ""
  9121. }
  9122. },
  9123. "notification-url": "https://packagist.org/downloads/",
  9124. "license": [
  9125. "MIT"
  9126. ],
  9127. "authors": [
  9128. {
  9129. "name": "Nicolas Grekas",
  9130. "email": "p@tchwork.com"
  9131. },
  9132. {
  9133. "name": "Symfony Community",
  9134. "homepage": "https://symfony.com/contributors"
  9135. }
  9136. ],
  9137. "description": "Symfony polyfill for the Mbstring extension",
  9138. "homepage": "https://symfony.com",
  9139. "keywords": [
  9140. "compatibility",
  9141. "mbstring",
  9142. "polyfill",
  9143. "portable",
  9144. "shim"
  9145. ],
  9146. "support": {
  9147. "source": "https://github.com/symfony/polyfill-mbstring/tree/v1.27.0"
  9148. },
  9149. "funding": [
  9150. {
  9151. "url": "https://symfony.com/sponsor",
  9152. "type": "custom"
  9153. },
  9154. {
  9155. "url": "https://github.com/fabpot",
  9156. "type": "github"
  9157. },
  9158. {
  9159. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  9160. "type": "tidelift"
  9161. }
  9162. ],
  9163. "time": "2022-11-03T14:55:06+00:00"
  9164. },
  9165. {
  9166. "name": "symfony/polyfill-php72",
  9167. "version": "v1.31.0",
  9168. "source": {
  9169. "type": "git",
  9170. "url": "https://github.com/symfony/polyfill-php72.git",
  9171. "reference": "fa2ae56c44f03bed91a39bfc9822e31e7c5c38ce"
  9172. },
  9173. "dist": {
  9174. "type": "zip",
  9175. "url": "https://api.github.com/repos/symfony/polyfill-php72/zipball/fa2ae56c44f03bed91a39bfc9822e31e7c5c38ce",
  9176. "reference": "fa2ae56c44f03bed91a39bfc9822e31e7c5c38ce",
  9177. "shasum": ""
  9178. },
  9179. "require": {
  9180. "php": ">=7.2"
  9181. },
  9182. "type": "metapackage",
  9183. "extra": {
  9184. "thanks": {
  9185. "name": "symfony/polyfill",
  9186. "url": "https://github.com/symfony/polyfill"
  9187. }
  9188. },
  9189. "notification-url": "https://packagist.org/downloads/",
  9190. "license": [
  9191. "MIT"
  9192. ],
  9193. "authors": [
  9194. {
  9195. "name": "Nicolas Grekas",
  9196. "email": "p@tchwork.com"
  9197. },
  9198. {
  9199. "name": "Symfony Community",
  9200. "homepage": "https://symfony.com/contributors"
  9201. }
  9202. ],
  9203. "description": "Symfony polyfill backporting some PHP 7.2+ features to lower PHP versions",
  9204. "homepage": "https://symfony.com",
  9205. "keywords": [
  9206. "compatibility",
  9207. "polyfill",
  9208. "portable",
  9209. "shim"
  9210. ],
  9211. "support": {
  9212. "source": "https://github.com/symfony/polyfill-php72/tree/v1.31.0"
  9213. },
  9214. "funding": [
  9215. {
  9216. "url": "https://symfony.com/sponsor",
  9217. "type": "custom"
  9218. },
  9219. {
  9220. "url": "https://github.com/fabpot",
  9221. "type": "github"
  9222. },
  9223. {
  9224. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  9225. "type": "tidelift"
  9226. }
  9227. ],
  9228. "time": "2024-09-09T11:45:10+00:00"
  9229. },
  9230. {
  9231. "name": "symfony/polyfill-php73",
  9232. "version": "v1.31.0",
  9233. "source": {
  9234. "type": "git",
  9235. "url": "https://github.com/symfony/polyfill-php73.git",
  9236. "reference": "0f68c03565dcaaf25a890667542e8bd75fe7e5bb"
  9237. },
  9238. "dist": {
  9239. "type": "zip",
  9240. "url": "https://api.github.com/repos/symfony/polyfill-php73/zipball/0f68c03565dcaaf25a890667542e8bd75fe7e5bb",
  9241. "reference": "0f68c03565dcaaf25a890667542e8bd75fe7e5bb",
  9242. "shasum": ""
  9243. },
  9244. "require": {
  9245. "php": ">=7.2"
  9246. },
  9247. "type": "library",
  9248. "extra": {
  9249. "thanks": {
  9250. "name": "symfony/polyfill",
  9251. "url": "https://github.com/symfony/polyfill"
  9252. }
  9253. },
  9254. "autoload": {
  9255. "files": [
  9256. "bootstrap.php"
  9257. ],
  9258. "psr-4": {
  9259. "Symfony\\Polyfill\\Php73\\": ""
  9260. },
  9261. "classmap": [
  9262. "Resources/stubs"
  9263. ]
  9264. },
  9265. "notification-url": "https://packagist.org/downloads/",
  9266. "license": [
  9267. "MIT"
  9268. ],
  9269. "authors": [
  9270. {
  9271. "name": "Nicolas Grekas",
  9272. "email": "p@tchwork.com"
  9273. },
  9274. {
  9275. "name": "Symfony Community",
  9276. "homepage": "https://symfony.com/contributors"
  9277. }
  9278. ],
  9279. "description": "Symfony polyfill backporting some PHP 7.3+ features to lower PHP versions",
  9280. "homepage": "https://symfony.com",
  9281. "keywords": [
  9282. "compatibility",
  9283. "polyfill",
  9284. "portable",
  9285. "shim"
  9286. ],
  9287. "support": {
  9288. "source": "https://github.com/symfony/polyfill-php73/tree/v1.31.0"
  9289. },
  9290. "funding": [
  9291. {
  9292. "url": "https://symfony.com/sponsor",
  9293. "type": "custom"
  9294. },
  9295. {
  9296. "url": "https://github.com/fabpot",
  9297. "type": "github"
  9298. },
  9299. {
  9300. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  9301. "type": "tidelift"
  9302. }
  9303. ],
  9304. "time": "2024-09-09T11:45:10+00:00"
  9305. },
  9306. {
  9307. "name": "symfony/polyfill-php80",
  9308. "version": "v1.27.0",
  9309. "source": {
  9310. "type": "git",
  9311. "url": "https://github.com/symfony/polyfill-php80.git",
  9312. "reference": "7a6ff3f1959bb01aefccb463a0f2cd3d3d2fd936"
  9313. },
  9314. "dist": {
  9315. "type": "zip",
  9316. "url": "https://api.github.com/repos/symfony/polyfill-php80/zipball/7a6ff3f1959bb01aefccb463a0f2cd3d3d2fd936",
  9317. "reference": "7a6ff3f1959bb01aefccb463a0f2cd3d3d2fd936",
  9318. "shasum": ""
  9319. },
  9320. "require": {
  9321. "php": ">=7.1"
  9322. },
  9323. "type": "library",
  9324. "extra": {
  9325. "branch-alias": {
  9326. "dev-main": "1.27-dev"
  9327. },
  9328. "thanks": {
  9329. "name": "symfony/polyfill",
  9330. "url": "https://github.com/symfony/polyfill"
  9331. }
  9332. },
  9333. "autoload": {
  9334. "files": [
  9335. "bootstrap.php"
  9336. ],
  9337. "psr-4": {
  9338. "Symfony\\Polyfill\\Php80\\": ""
  9339. },
  9340. "classmap": [
  9341. "Resources/stubs"
  9342. ]
  9343. },
  9344. "notification-url": "https://packagist.org/downloads/",
  9345. "license": [
  9346. "MIT"
  9347. ],
  9348. "authors": [
  9349. {
  9350. "name": "Ion Bazan",
  9351. "email": "ion.bazan@gmail.com"
  9352. },
  9353. {
  9354. "name": "Nicolas Grekas",
  9355. "email": "p@tchwork.com"
  9356. },
  9357. {
  9358. "name": "Symfony Community",
  9359. "homepage": "https://symfony.com/contributors"
  9360. }
  9361. ],
  9362. "description": "Symfony polyfill backporting some PHP 8.0+ features to lower PHP versions",
  9363. "homepage": "https://symfony.com",
  9364. "keywords": [
  9365. "compatibility",
  9366. "polyfill",
  9367. "portable",
  9368. "shim"
  9369. ],
  9370. "support": {
  9371. "source": "https://github.com/symfony/polyfill-php80/tree/v1.27.0"
  9372. },
  9373. "funding": [
  9374. {
  9375. "url": "https://symfony.com/sponsor",
  9376. "type": "custom"
  9377. },
  9378. {
  9379. "url": "https://github.com/fabpot",
  9380. "type": "github"
  9381. },
  9382. {
  9383. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  9384. "type": "tidelift"
  9385. }
  9386. ],
  9387. "time": "2022-11-03T14:55:06+00:00"
  9388. },
  9389. {
  9390. "name": "symfony/process",
  9391. "version": "v4.4.44",
  9392. "source": {
  9393. "type": "git",
  9394. "url": "https://github.com/symfony/process.git",
  9395. "reference": "5cee9cdc4f7805e2699d9fd66991a0e6df8252a2"
  9396. },
  9397. "dist": {
  9398. "type": "zip",
  9399. "url": "https://api.github.com/repos/symfony/process/zipball/5cee9cdc4f7805e2699d9fd66991a0e6df8252a2",
  9400. "reference": "5cee9cdc4f7805e2699d9fd66991a0e6df8252a2",
  9401. "shasum": ""
  9402. },
  9403. "require": {
  9404. "php": ">=7.1.3",
  9405. "symfony/polyfill-php80": "^1.16"
  9406. },
  9407. "type": "library",
  9408. "autoload": {
  9409. "psr-4": {
  9410. "Symfony\\Component\\Process\\": ""
  9411. },
  9412. "exclude-from-classmap": [
  9413. "/Tests/"
  9414. ]
  9415. },
  9416. "notification-url": "https://packagist.org/downloads/",
  9417. "license": [
  9418. "MIT"
  9419. ],
  9420. "authors": [
  9421. {
  9422. "name": "Fabien Potencier",
  9423. "email": "fabien@symfony.com"
  9424. },
  9425. {
  9426. "name": "Symfony Community",
  9427. "homepage": "https://symfony.com/contributors"
  9428. }
  9429. ],
  9430. "description": "Executes commands in sub-processes",
  9431. "homepage": "https://symfony.com",
  9432. "support": {
  9433. "source": "https://github.com/symfony/process/tree/v4.4.44"
  9434. },
  9435. "funding": [
  9436. {
  9437. "url": "https://symfony.com/sponsor",
  9438. "type": "custom"
  9439. },
  9440. {
  9441. "url": "https://github.com/fabpot",
  9442. "type": "github"
  9443. },
  9444. {
  9445. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  9446. "type": "tidelift"
  9447. }
  9448. ],
  9449. "time": "2022-06-27T13:16:42+00:00"
  9450. },
  9451. {
  9452. "name": "symfony/psr-http-message-bridge",
  9453. "version": "v2.1.4",
  9454. "source": {
  9455. "type": "git",
  9456. "url": "https://github.com/symfony/psr-http-message-bridge.git",
  9457. "reference": "a125b93ef378c492e274f217874906fb9babdebb"
  9458. },
  9459. "dist": {
  9460. "type": "zip",
  9461. "url": "https://api.github.com/repos/symfony/psr-http-message-bridge/zipball/a125b93ef378c492e274f217874906fb9babdebb",
  9462. "reference": "a125b93ef378c492e274f217874906fb9babdebb",
  9463. "shasum": ""
  9464. },
  9465. "require": {
  9466. "php": ">=7.1",
  9467. "psr/http-message": "^1.0",
  9468. "symfony/http-foundation": "^4.4 || ^5.0 || ^6.0"
  9469. },
  9470. "require-dev": {
  9471. "nyholm/psr7": "^1.1",
  9472. "psr/log": "^1.1 || ^2 || ^3",
  9473. "symfony/browser-kit": "^4.4 || ^5.0 || ^6.0",
  9474. "symfony/config": "^4.4 || ^5.0 || ^6.0",
  9475. "symfony/event-dispatcher": "^4.4 || ^5.0 || ^6.0",
  9476. "symfony/framework-bundle": "^4.4 || ^5.0 || ^6.0",
  9477. "symfony/http-kernel": "^4.4 || ^5.0 || ^6.0",
  9478. "symfony/phpunit-bridge": "^5.4@dev || ^6.0"
  9479. },
  9480. "suggest": {
  9481. "nyholm/psr7": "For a super lightweight PSR-7/17 implementation"
  9482. },
  9483. "type": "symfony-bridge",
  9484. "extra": {
  9485. "branch-alias": {
  9486. "dev-main": "2.1-dev"
  9487. }
  9488. },
  9489. "autoload": {
  9490. "psr-4": {
  9491. "Symfony\\Bridge\\PsrHttpMessage\\": ""
  9492. },
  9493. "exclude-from-classmap": [
  9494. "/Tests/"
  9495. ]
  9496. },
  9497. "notification-url": "https://packagist.org/downloads/",
  9498. "license": [
  9499. "MIT"
  9500. ],
  9501. "authors": [
  9502. {
  9503. "name": "Fabien Potencier",
  9504. "email": "fabien@symfony.com"
  9505. },
  9506. {
  9507. "name": "Symfony Community",
  9508. "homepage": "http://symfony.com/contributors"
  9509. }
  9510. ],
  9511. "description": "PSR HTTP message bridge",
  9512. "homepage": "http://symfony.com",
  9513. "keywords": [
  9514. "http",
  9515. "http-message",
  9516. "psr-17",
  9517. "psr-7"
  9518. ],
  9519. "support": {
  9520. "issues": "https://github.com/symfony/psr-http-message-bridge/issues",
  9521. "source": "https://github.com/symfony/psr-http-message-bridge/tree/v2.1.4"
  9522. },
  9523. "funding": [
  9524. {
  9525. "url": "https://symfony.com/sponsor",
  9526. "type": "custom"
  9527. },
  9528. {
  9529. "url": "https://github.com/fabpot",
  9530. "type": "github"
  9531. },
  9532. {
  9533. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  9534. "type": "tidelift"
  9535. }
  9536. ],
  9537. "time": "2022-11-28T22:46:34+00:00"
  9538. },
  9539. {
  9540. "name": "symfony/routing",
  9541. "version": "v4.4.44",
  9542. "source": {
  9543. "type": "git",
  9544. "url": "https://github.com/symfony/routing.git",
  9545. "reference": "f7751fd8b60a07f3f349947a309b5bdfce22d6ae"
  9546. },
  9547. "dist": {
  9548. "type": "zip",
  9549. "url": "https://api.github.com/repos/symfony/routing/zipball/f7751fd8b60a07f3f349947a309b5bdfce22d6ae",
  9550. "reference": "f7751fd8b60a07f3f349947a309b5bdfce22d6ae",
  9551. "shasum": ""
  9552. },
  9553. "require": {
  9554. "php": ">=7.1.3",
  9555. "symfony/polyfill-php80": "^1.16"
  9556. },
  9557. "conflict": {
  9558. "symfony/config": "<4.2",
  9559. "symfony/dependency-injection": "<3.4",
  9560. "symfony/yaml": "<3.4"
  9561. },
  9562. "require-dev": {
  9563. "doctrine/annotations": "^1.10.4",
  9564. "psr/log": "^1|^2|^3",
  9565. "symfony/config": "^4.2|^5.0",
  9566. "symfony/dependency-injection": "^3.4|^4.0|^5.0",
  9567. "symfony/expression-language": "^3.4|^4.0|^5.0",
  9568. "symfony/http-foundation": "^3.4|^4.0|^5.0",
  9569. "symfony/yaml": "^3.4|^4.0|^5.0"
  9570. },
  9571. "suggest": {
  9572. "doctrine/annotations": "For using the annotation loader",
  9573. "symfony/config": "For using the all-in-one router or any loader",
  9574. "symfony/expression-language": "For using expression matching",
  9575. "symfony/http-foundation": "For using a Symfony Request object",
  9576. "symfony/yaml": "For using the YAML loader"
  9577. },
  9578. "type": "library",
  9579. "autoload": {
  9580. "psr-4": {
  9581. "Symfony\\Component\\Routing\\": ""
  9582. },
  9583. "exclude-from-classmap": [
  9584. "/Tests/"
  9585. ]
  9586. },
  9587. "notification-url": "https://packagist.org/downloads/",
  9588. "license": [
  9589. "MIT"
  9590. ],
  9591. "authors": [
  9592. {
  9593. "name": "Fabien Potencier",
  9594. "email": "fabien@symfony.com"
  9595. },
  9596. {
  9597. "name": "Symfony Community",
  9598. "homepage": "https://symfony.com/contributors"
  9599. }
  9600. ],
  9601. "description": "Maps an HTTP request to a set of configuration variables",
  9602. "homepage": "https://symfony.com",
  9603. "keywords": [
  9604. "router",
  9605. "routing",
  9606. "uri",
  9607. "url"
  9608. ],
  9609. "support": {
  9610. "source": "https://github.com/symfony/routing/tree/v4.4.44"
  9611. },
  9612. "funding": [
  9613. {
  9614. "url": "https://symfony.com/sponsor",
  9615. "type": "custom"
  9616. },
  9617. {
  9618. "url": "https://github.com/fabpot",
  9619. "type": "github"
  9620. },
  9621. {
  9622. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  9623. "type": "tidelift"
  9624. }
  9625. ],
  9626. "time": "2022-07-20T09:59:04+00:00"
  9627. },
  9628. {
  9629. "name": "symfony/serializer",
  9630. "version": "v4.4.47",
  9631. "source": {
  9632. "type": "git",
  9633. "url": "https://github.com/symfony/serializer.git",
  9634. "reference": "6e01d63c55657930a6de03d6e36aae50af98888d"
  9635. },
  9636. "dist": {
  9637. "type": "zip",
  9638. "url": "https://api.github.com/repos/symfony/serializer/zipball/6e01d63c55657930a6de03d6e36aae50af98888d",
  9639. "reference": "6e01d63c55657930a6de03d6e36aae50af98888d",
  9640. "shasum": ""
  9641. },
  9642. "require": {
  9643. "php": ">=7.1.3",
  9644. "symfony/polyfill-ctype": "~1.8",
  9645. "symfony/polyfill-php80": "^1.16"
  9646. },
  9647. "conflict": {
  9648. "phpdocumentor/reflection-docblock": "<3.0|>=3.2.0,<3.2.2",
  9649. "phpdocumentor/type-resolver": "<0.3.0|1.3.*",
  9650. "symfony/dependency-injection": "<3.4",
  9651. "symfony/property-access": "<3.4",
  9652. "symfony/property-info": "<3.4",
  9653. "symfony/yaml": "<3.4"
  9654. },
  9655. "require-dev": {
  9656. "doctrine/annotations": "^1.10.4",
  9657. "phpdocumentor/reflection-docblock": "^3.2|^4.0|^5.0",
  9658. "symfony/cache": "^3.4|^4.0|^5.0",
  9659. "symfony/config": "^3.4|^4.0|^5.0",
  9660. "symfony/dependency-injection": "^3.4|^4.0|^5.0",
  9661. "symfony/error-handler": "^4.4|^5.0",
  9662. "symfony/http-foundation": "^3.4|^4.0|^5.0",
  9663. "symfony/mime": "^4.4|^5.0",
  9664. "symfony/property-access": "^4.4.36|^5.3.13",
  9665. "symfony/property-info": "^3.4.13|~4.0|^5.0",
  9666. "symfony/validator": "^3.4|^4.0|^5.0",
  9667. "symfony/yaml": "^3.4|^4.0|^5.0"
  9668. },
  9669. "suggest": {
  9670. "doctrine/annotations": "For using the annotation mapping.",
  9671. "psr/cache-implementation": "For using the metadata cache.",
  9672. "symfony/config": "For using the XML mapping loader.",
  9673. "symfony/http-foundation": "For using a MIME type guesser within the DataUriNormalizer.",
  9674. "symfony/property-access": "For using the ObjectNormalizer.",
  9675. "symfony/property-info": "To deserialize relations.",
  9676. "symfony/yaml": "For using the default YAML mapping loader."
  9677. },
  9678. "type": "library",
  9679. "autoload": {
  9680. "psr-4": {
  9681. "Symfony\\Component\\Serializer\\": ""
  9682. },
  9683. "exclude-from-classmap": [
  9684. "/Tests/"
  9685. ]
  9686. },
  9687. "notification-url": "https://packagist.org/downloads/",
  9688. "license": [
  9689. "MIT"
  9690. ],
  9691. "authors": [
  9692. {
  9693. "name": "Fabien Potencier",
  9694. "email": "fabien@symfony.com"
  9695. },
  9696. {
  9697. "name": "Symfony Community",
  9698. "homepage": "https://symfony.com/contributors"
  9699. }
  9700. ],
  9701. "description": "Handles serializing and deserializing data structures, including object graphs, into array structures or other formats like XML and JSON.",
  9702. "homepage": "https://symfony.com",
  9703. "support": {
  9704. "source": "https://github.com/symfony/serializer/tree/v4.4.47"
  9705. },
  9706. "funding": [
  9707. {
  9708. "url": "https://symfony.com/sponsor",
  9709. "type": "custom"
  9710. },
  9711. {
  9712. "url": "https://github.com/fabpot",
  9713. "type": "github"
  9714. },
  9715. {
  9716. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  9717. "type": "tidelift"
  9718. }
  9719. ],
  9720. "time": "2022-09-19T08:38:33+00:00"
  9721. },
  9722. {
  9723. "name": "symfony/service-contracts",
  9724. "version": "v2.5.3",
  9725. "source": {
  9726. "type": "git",
  9727. "url": "https://github.com/symfony/service-contracts.git",
  9728. "reference": "a2329596ddc8fd568900e3fc76cba42489ecc7f3"
  9729. },
  9730. "dist": {
  9731. "type": "zip",
  9732. "url": "https://api.github.com/repos/symfony/service-contracts/zipball/a2329596ddc8fd568900e3fc76cba42489ecc7f3",
  9733. "reference": "a2329596ddc8fd568900e3fc76cba42489ecc7f3",
  9734. "shasum": ""
  9735. },
  9736. "require": {
  9737. "php": ">=7.2.5",
  9738. "psr/container": "^1.1",
  9739. "symfony/deprecation-contracts": "^2.1|^3"
  9740. },
  9741. "conflict": {
  9742. "ext-psr": "<1.1|>=2"
  9743. },
  9744. "suggest": {
  9745. "symfony/service-implementation": ""
  9746. },
  9747. "type": "library",
  9748. "extra": {
  9749. "branch-alias": {
  9750. "dev-main": "2.5-dev"
  9751. },
  9752. "thanks": {
  9753. "name": "symfony/contracts",
  9754. "url": "https://github.com/symfony/contracts"
  9755. }
  9756. },
  9757. "autoload": {
  9758. "psr-4": {
  9759. "Symfony\\Contracts\\Service\\": ""
  9760. }
  9761. },
  9762. "notification-url": "https://packagist.org/downloads/",
  9763. "license": [
  9764. "MIT"
  9765. ],
  9766. "authors": [
  9767. {
  9768. "name": "Nicolas Grekas",
  9769. "email": "p@tchwork.com"
  9770. },
  9771. {
  9772. "name": "Symfony Community",
  9773. "homepage": "https://symfony.com/contributors"
  9774. }
  9775. ],
  9776. "description": "Generic abstractions related to writing services",
  9777. "homepage": "https://symfony.com",
  9778. "keywords": [
  9779. "abstractions",
  9780. "contracts",
  9781. "decoupling",
  9782. "interfaces",
  9783. "interoperability",
  9784. "standards"
  9785. ],
  9786. "support": {
  9787. "source": "https://github.com/symfony/service-contracts/tree/v2.5.3"
  9788. },
  9789. "funding": [
  9790. {
  9791. "url": "https://symfony.com/sponsor",
  9792. "type": "custom"
  9793. },
  9794. {
  9795. "url": "https://github.com/fabpot",
  9796. "type": "github"
  9797. },
  9798. {
  9799. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  9800. "type": "tidelift"
  9801. }
  9802. ],
  9803. "time": "2023-04-21T15:04:16+00:00"
  9804. },
  9805. {
  9806. "name": "symfony/translation",
  9807. "version": "v4.4.47",
  9808. "source": {
  9809. "type": "git",
  9810. "url": "https://github.com/symfony/translation.git",
  9811. "reference": "45036b1d53accc48fe9bab71ccd86d57eba0dd94"
  9812. },
  9813. "dist": {
  9814. "type": "zip",
  9815. "url": "https://api.github.com/repos/symfony/translation/zipball/45036b1d53accc48fe9bab71ccd86d57eba0dd94",
  9816. "reference": "45036b1d53accc48fe9bab71ccd86d57eba0dd94",
  9817. "shasum": ""
  9818. },
  9819. "require": {
  9820. "php": ">=7.1.3",
  9821. "symfony/polyfill-mbstring": "~1.0",
  9822. "symfony/polyfill-php80": "^1.16",
  9823. "symfony/translation-contracts": "^1.1.6|^2"
  9824. },
  9825. "conflict": {
  9826. "symfony/config": "<3.4",
  9827. "symfony/dependency-injection": "<3.4",
  9828. "symfony/http-kernel": "<4.4",
  9829. "symfony/yaml": "<3.4"
  9830. },
  9831. "provide": {
  9832. "symfony/translation-implementation": "1.0|2.0"
  9833. },
  9834. "require-dev": {
  9835. "psr/log": "^1|^2|^3",
  9836. "symfony/config": "^3.4|^4.0|^5.0",
  9837. "symfony/console": "^3.4|^4.0|^5.0",
  9838. "symfony/dependency-injection": "^3.4|^4.0|^5.0",
  9839. "symfony/finder": "~2.8|~3.0|~4.0|^5.0",
  9840. "symfony/http-kernel": "^4.4",
  9841. "symfony/intl": "^3.4|^4.0|^5.0",
  9842. "symfony/service-contracts": "^1.1.2|^2",
  9843. "symfony/yaml": "^3.4|^4.0|^5.0"
  9844. },
  9845. "suggest": {
  9846. "psr/log-implementation": "To use logging capability in translator",
  9847. "symfony/config": "",
  9848. "symfony/yaml": ""
  9849. },
  9850. "type": "library",
  9851. "autoload": {
  9852. "psr-4": {
  9853. "Symfony\\Component\\Translation\\": ""
  9854. },
  9855. "exclude-from-classmap": [
  9856. "/Tests/"
  9857. ]
  9858. },
  9859. "notification-url": "https://packagist.org/downloads/",
  9860. "license": [
  9861. "MIT"
  9862. ],
  9863. "authors": [
  9864. {
  9865. "name": "Fabien Potencier",
  9866. "email": "fabien@symfony.com"
  9867. },
  9868. {
  9869. "name": "Symfony Community",
  9870. "homepage": "https://symfony.com/contributors"
  9871. }
  9872. ],
  9873. "description": "Provides tools to internationalize your application",
  9874. "homepage": "https://symfony.com",
  9875. "support": {
  9876. "source": "https://github.com/symfony/translation/tree/v4.4.47"
  9877. },
  9878. "funding": [
  9879. {
  9880. "url": "https://symfony.com/sponsor",
  9881. "type": "custom"
  9882. },
  9883. {
  9884. "url": "https://github.com/fabpot",
  9885. "type": "github"
  9886. },
  9887. {
  9888. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  9889. "type": "tidelift"
  9890. }
  9891. ],
  9892. "time": "2022-10-03T15:15:11+00:00"
  9893. },
  9894. {
  9895. "name": "symfony/translation-contracts",
  9896. "version": "v2.5.3",
  9897. "source": {
  9898. "type": "git",
  9899. "url": "https://github.com/symfony/translation-contracts.git",
  9900. "reference": "b0073a77ac0b7ea55131020e87b1e3af540f4664"
  9901. },
  9902. "dist": {
  9903. "type": "zip",
  9904. "url": "https://api.github.com/repos/symfony/translation-contracts/zipball/b0073a77ac0b7ea55131020e87b1e3af540f4664",
  9905. "reference": "b0073a77ac0b7ea55131020e87b1e3af540f4664",
  9906. "shasum": ""
  9907. },
  9908. "require": {
  9909. "php": ">=7.2.5"
  9910. },
  9911. "suggest": {
  9912. "symfony/translation-implementation": ""
  9913. },
  9914. "type": "library",
  9915. "extra": {
  9916. "branch-alias": {
  9917. "dev-main": "2.5-dev"
  9918. },
  9919. "thanks": {
  9920. "name": "symfony/contracts",
  9921. "url": "https://github.com/symfony/contracts"
  9922. }
  9923. },
  9924. "autoload": {
  9925. "psr-4": {
  9926. "Symfony\\Contracts\\Translation\\": ""
  9927. }
  9928. },
  9929. "notification-url": "https://packagist.org/downloads/",
  9930. "license": [
  9931. "MIT"
  9932. ],
  9933. "authors": [
  9934. {
  9935. "name": "Nicolas Grekas",
  9936. "email": "p@tchwork.com"
  9937. },
  9938. {
  9939. "name": "Symfony Community",
  9940. "homepage": "https://symfony.com/contributors"
  9941. }
  9942. ],
  9943. "description": "Generic abstractions related to translation",
  9944. "homepage": "https://symfony.com",
  9945. "keywords": [
  9946. "abstractions",
  9947. "contracts",
  9948. "decoupling",
  9949. "interfaces",
  9950. "interoperability",
  9951. "standards"
  9952. ],
  9953. "support": {
  9954. "source": "https://github.com/symfony/translation-contracts/tree/v2.5.3"
  9955. },
  9956. "funding": [
  9957. {
  9958. "url": "https://symfony.com/sponsor",
  9959. "type": "custom"
  9960. },
  9961. {
  9962. "url": "https://github.com/fabpot",
  9963. "type": "github"
  9964. },
  9965. {
  9966. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  9967. "type": "tidelift"
  9968. }
  9969. ],
  9970. "time": "2024-01-23T13:51:25+00:00"
  9971. },
  9972. {
  9973. "name": "symfony/validator",
  9974. "version": "v4.4.48",
  9975. "source": {
  9976. "type": "git",
  9977. "url": "https://github.com/symfony/validator.git",
  9978. "reference": "54781a4c41efbd283b779110bf8ae7f263737775"
  9979. },
  9980. "dist": {
  9981. "type": "zip",
  9982. "url": "https://api.github.com/repos/symfony/validator/zipball/54781a4c41efbd283b779110bf8ae7f263737775",
  9983. "reference": "54781a4c41efbd283b779110bf8ae7f263737775",
  9984. "shasum": ""
  9985. },
  9986. "require": {
  9987. "php": ">=7.1.3",
  9988. "symfony/polyfill-ctype": "~1.8",
  9989. "symfony/polyfill-mbstring": "~1.0",
  9990. "symfony/polyfill-php80": "^1.16",
  9991. "symfony/translation-contracts": "^1.1|^2"
  9992. },
  9993. "conflict": {
  9994. "doctrine/lexer": "<1.1",
  9995. "phpunit/phpunit": "<4.8.35|<5.4.3,>=5.0",
  9996. "symfony/dependency-injection": "<3.4",
  9997. "symfony/http-kernel": "<4.4",
  9998. "symfony/intl": "<4.3",
  9999. "symfony/translation": ">=5.0",
  10000. "symfony/yaml": "<3.4"
  10001. },
  10002. "require-dev": {
  10003. "doctrine/annotations": "^1.10.4",
  10004. "doctrine/cache": "^1.0|^2.0",
  10005. "egulias/email-validator": "^2.1.10|^3",
  10006. "symfony/cache": "^3.4|^4.0|^5.0",
  10007. "symfony/config": "^3.4|^4.0|^5.0",
  10008. "symfony/dependency-injection": "^3.4|^4.0|^5.0",
  10009. "symfony/expression-language": "^3.4|^4.0|^5.0",
  10010. "symfony/http-client": "^4.3|^5.0",
  10011. "symfony/http-foundation": "^4.1|^5.0",
  10012. "symfony/http-kernel": "^4.4",
  10013. "symfony/intl": "^4.3|^5.0",
  10014. "symfony/mime": "^4.4|^5.0",
  10015. "symfony/property-access": "^3.4|^4.0|^5.0",
  10016. "symfony/property-info": "^3.4|^4.0|^5.0",
  10017. "symfony/translation": "^4.2",
  10018. "symfony/yaml": "^3.4|^4.0|^5.0"
  10019. },
  10020. "suggest": {
  10021. "doctrine/annotations": "For using the annotation mapping. You will also need doctrine/cache.",
  10022. "doctrine/cache": "For using the default cached annotation reader.",
  10023. "egulias/email-validator": "Strict (RFC compliant) email validation",
  10024. "psr/cache-implementation": "For using the mapping cache.",
  10025. "symfony/config": "",
  10026. "symfony/expression-language": "For using the Expression validator",
  10027. "symfony/http-foundation": "",
  10028. "symfony/intl": "",
  10029. "symfony/property-access": "For accessing properties within comparison constraints",
  10030. "symfony/property-info": "To automatically add NotNull and Type constraints",
  10031. "symfony/translation": "For translating validation errors.",
  10032. "symfony/yaml": ""
  10033. },
  10034. "type": "library",
  10035. "autoload": {
  10036. "psr-4": {
  10037. "Symfony\\Component\\Validator\\": ""
  10038. },
  10039. "exclude-from-classmap": [
  10040. "/Tests/"
  10041. ]
  10042. },
  10043. "notification-url": "https://packagist.org/downloads/",
  10044. "license": [
  10045. "MIT"
  10046. ],
  10047. "authors": [
  10048. {
  10049. "name": "Fabien Potencier",
  10050. "email": "fabien@symfony.com"
  10051. },
  10052. {
  10053. "name": "Symfony Community",
  10054. "homepage": "https://symfony.com/contributors"
  10055. }
  10056. ],
  10057. "description": "Provides tools to validate values",
  10058. "homepage": "https://symfony.com",
  10059. "support": {
  10060. "source": "https://github.com/symfony/validator/tree/v4.4.48"
  10061. },
  10062. "funding": [
  10063. {
  10064. "url": "https://symfony.com/sponsor",
  10065. "type": "custom"
  10066. },
  10067. {
  10068. "url": "https://github.com/fabpot",
  10069. "type": "github"
  10070. },
  10071. {
  10072. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  10073. "type": "tidelift"
  10074. }
  10075. ],
  10076. "time": "2022-10-25T13:54:11+00:00"
  10077. },
  10078. {
  10079. "name": "symfony/var-dumper",
  10080. "version": "v5.4.43",
  10081. "source": {
  10082. "type": "git",
  10083. "url": "https://github.com/symfony/var-dumper.git",
  10084. "reference": "6be6a6a8af4818564e3726fc65cf936f34743cef"
  10085. },
  10086. "dist": {
  10087. "type": "zip",
  10088. "url": "https://api.github.com/repos/symfony/var-dumper/zipball/6be6a6a8af4818564e3726fc65cf936f34743cef",
  10089. "reference": "6be6a6a8af4818564e3726fc65cf936f34743cef",
  10090. "shasum": ""
  10091. },
  10092. "require": {
  10093. "php": ">=7.2.5",
  10094. "symfony/polyfill-mbstring": "~1.0",
  10095. "symfony/polyfill-php80": "^1.16"
  10096. },
  10097. "conflict": {
  10098. "symfony/console": "<4.4"
  10099. },
  10100. "require-dev": {
  10101. "ext-iconv": "*",
  10102. "symfony/console": "^4.4|^5.0|^6.0",
  10103. "symfony/http-kernel": "^4.4|^5.0|^6.0",
  10104. "symfony/process": "^4.4|^5.0|^6.0",
  10105. "symfony/uid": "^5.1|^6.0",
  10106. "twig/twig": "^2.13|^3.0.4"
  10107. },
  10108. "suggest": {
  10109. "ext-iconv": "To convert non-UTF-8 strings to UTF-8 (or symfony/polyfill-iconv in case ext-iconv cannot be used).",
  10110. "ext-intl": "To show region name in time zone dump",
  10111. "symfony/console": "To use the ServerDumpCommand and/or the bin/var-dump-server script"
  10112. },
  10113. "bin": [
  10114. "Resources/bin/var-dump-server"
  10115. ],
  10116. "type": "library",
  10117. "autoload": {
  10118. "files": [
  10119. "Resources/functions/dump.php"
  10120. ],
  10121. "psr-4": {
  10122. "Symfony\\Component\\VarDumper\\": ""
  10123. },
  10124. "exclude-from-classmap": [
  10125. "/Tests/"
  10126. ]
  10127. },
  10128. "notification-url": "https://packagist.org/downloads/",
  10129. "license": [
  10130. "MIT"
  10131. ],
  10132. "authors": [
  10133. {
  10134. "name": "Nicolas Grekas",
  10135. "email": "p@tchwork.com"
  10136. },
  10137. {
  10138. "name": "Symfony Community",
  10139. "homepage": "https://symfony.com/contributors"
  10140. }
  10141. ],
  10142. "description": "Provides mechanisms for walking through any arbitrary PHP variable",
  10143. "homepage": "https://symfony.com",
  10144. "keywords": [
  10145. "debug",
  10146. "dump"
  10147. ],
  10148. "support": {
  10149. "source": "https://github.com/symfony/var-dumper/tree/v5.4.43"
  10150. },
  10151. "funding": [
  10152. {
  10153. "url": "https://symfony.com/sponsor",
  10154. "type": "custom"
  10155. },
  10156. {
  10157. "url": "https://github.com/fabpot",
  10158. "type": "github"
  10159. },
  10160. {
  10161. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  10162. "type": "tidelift"
  10163. }
  10164. ],
  10165. "time": "2024-08-30T16:01:46+00:00"
  10166. },
  10167. {
  10168. "name": "symfony/yaml",
  10169. "version": "v4.4.45",
  10170. "source": {
  10171. "type": "git",
  10172. "url": "https://github.com/symfony/yaml.git",
  10173. "reference": "aeccc4dc52a9e634f1d1eebeb21eacfdcff1053d"
  10174. },
  10175. "dist": {
  10176. "type": "zip",
  10177. "url": "https://api.github.com/repos/symfony/yaml/zipball/aeccc4dc52a9e634f1d1eebeb21eacfdcff1053d",
  10178. "reference": "aeccc4dc52a9e634f1d1eebeb21eacfdcff1053d",
  10179. "shasum": ""
  10180. },
  10181. "require": {
  10182. "php": ">=7.1.3",
  10183. "symfony/polyfill-ctype": "~1.8"
  10184. },
  10185. "conflict": {
  10186. "symfony/console": "<3.4"
  10187. },
  10188. "require-dev": {
  10189. "symfony/console": "^3.4|^4.0|^5.0"
  10190. },
  10191. "suggest": {
  10192. "symfony/console": "For validating YAML files using the lint command"
  10193. },
  10194. "type": "library",
  10195. "autoload": {
  10196. "psr-4": {
  10197. "Symfony\\Component\\Yaml\\": ""
  10198. },
  10199. "exclude-from-classmap": [
  10200. "/Tests/"
  10201. ]
  10202. },
  10203. "notification-url": "https://packagist.org/downloads/",
  10204. "license": [
  10205. "MIT"
  10206. ],
  10207. "authors": [
  10208. {
  10209. "name": "Fabien Potencier",
  10210. "email": "fabien@symfony.com"
  10211. },
  10212. {
  10213. "name": "Symfony Community",
  10214. "homepage": "https://symfony.com/contributors"
  10215. }
  10216. ],
  10217. "description": "Loads and dumps YAML files",
  10218. "homepage": "https://symfony.com",
  10219. "support": {
  10220. "source": "https://github.com/symfony/yaml/tree/v4.4.45"
  10221. },
  10222. "funding": [
  10223. {
  10224. "url": "https://symfony.com/sponsor",
  10225. "type": "custom"
  10226. },
  10227. {
  10228. "url": "https://github.com/fabpot",
  10229. "type": "github"
  10230. },
  10231. {
  10232. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  10233. "type": "tidelift"
  10234. }
  10235. ],
  10236. "time": "2022-08-02T15:47:23+00:00"
  10237. },
  10238. {
  10239. "name": "twig/twig",
  10240. "version": "v2.15.6",
  10241. "source": {
  10242. "type": "git",
  10243. "url": "https://github.com/twigphp/Twig.git",
  10244. "reference": "ad637405a828601a56f32ccab9a85541c4b66c9d"
  10245. },
  10246. "dist": {
  10247. "type": "zip",
  10248. "url": "https://api.github.com/repos/twigphp/Twig/zipball/ad637405a828601a56f32ccab9a85541c4b66c9d",
  10249. "reference": "ad637405a828601a56f32ccab9a85541c4b66c9d",
  10250. "shasum": ""
  10251. },
  10252. "require": {
  10253. "php": ">=7.1.3",
  10254. "symfony/polyfill-ctype": "^1.8",
  10255. "symfony/polyfill-mbstring": "^1.3",
  10256. "symfony/polyfill-php72": "^1.8"
  10257. },
  10258. "require-dev": {
  10259. "psr/container": "^1.0",
  10260. "symfony/phpunit-bridge": "^5.4.9|^6.3"
  10261. },
  10262. "type": "library",
  10263. "extra": {
  10264. "branch-alias": {
  10265. "dev-master": "2.15-dev"
  10266. }
  10267. },
  10268. "autoload": {
  10269. "psr-0": {
  10270. "Twig_": "lib/"
  10271. },
  10272. "psr-4": {
  10273. "Twig\\": "src/"
  10274. }
  10275. },
  10276. "notification-url": "https://packagist.org/downloads/",
  10277. "license": [
  10278. "BSD-3-Clause"
  10279. ],
  10280. "authors": [
  10281. {
  10282. "name": "Fabien Potencier",
  10283. "email": "fabien@symfony.com",
  10284. "homepage": "http://fabien.potencier.org",
  10285. "role": "Lead Developer"
  10286. },
  10287. {
  10288. "name": "Twig Team",
  10289. "role": "Contributors"
  10290. },
  10291. {
  10292. "name": "Armin Ronacher",
  10293. "email": "armin.ronacher@active-4.com",
  10294. "role": "Project Founder"
  10295. }
  10296. ],
  10297. "description": "Twig, the flexible, fast, and secure template language for PHP",
  10298. "homepage": "https://twig.symfony.com",
  10299. "keywords": [
  10300. "templating"
  10301. ],
  10302. "support": {
  10303. "issues": "https://github.com/twigphp/Twig/issues",
  10304. "source": "https://github.com/twigphp/Twig/tree/v2.15.6"
  10305. },
  10306. "funding": [
  10307. {
  10308. "url": "https://github.com/fabpot",
  10309. "type": "github"
  10310. },
  10311. {
  10312. "url": "https://tidelift.com/funding/github/packagist/twig/twig",
  10313. "type": "tidelift"
  10314. }
  10315. ],
  10316. "time": "2023-11-21T17:34:48+00:00"
  10317. },
  10318. {
  10319. "name": "typo3/phar-stream-wrapper",
  10320. "version": "v3.1.7",
  10321. "source": {
  10322. "type": "git",
  10323. "url": "https://github.com/TYPO3/phar-stream-wrapper.git",
  10324. "reference": "5cc2f04a4e2f5c7e9cc02a3bdf80fae0f3e11a8c"
  10325. },
  10326. "dist": {
  10327. "type": "zip",
  10328. "url": "https://api.github.com/repos/TYPO3/phar-stream-wrapper/zipball/5cc2f04a4e2f5c7e9cc02a3bdf80fae0f3e11a8c",
  10329. "reference": "5cc2f04a4e2f5c7e9cc02a3bdf80fae0f3e11a8c",
  10330. "shasum": ""
  10331. },
  10332. "require": {
  10333. "ext-json": "*",
  10334. "php": "^7.0 || ^8.0"
  10335. },
  10336. "require-dev": {
  10337. "ext-xdebug": "*",
  10338. "phpspec/prophecy": "^1.10",
  10339. "symfony/phpunit-bridge": "^5.1"
  10340. },
  10341. "suggest": {
  10342. "ext-fileinfo": "For PHP builtin file type guessing, otherwise uses internal processing"
  10343. },
  10344. "type": "library",
  10345. "extra": {
  10346. "branch-alias": {
  10347. "dev-master": "v3.x-dev"
  10348. }
  10349. },
  10350. "autoload": {
  10351. "psr-4": {
  10352. "TYPO3\\PharStreamWrapper\\": "src/"
  10353. }
  10354. },
  10355. "notification-url": "https://packagist.org/downloads/",
  10356. "license": [
  10357. "MIT"
  10358. ],
  10359. "description": "Interceptors for PHP's native phar:// stream handling",
  10360. "homepage": "https://typo3.org/",
  10361. "keywords": [
  10362. "phar",
  10363. "php",
  10364. "security",
  10365. "stream-wrapper"
  10366. ],
  10367. "support": {
  10368. "issues": "https://github.com/TYPO3/phar-stream-wrapper/issues",
  10369. "source": "https://github.com/TYPO3/phar-stream-wrapper/tree/v3.1.7"
  10370. },
  10371. "time": "2021-09-20T19:19:13+00:00"
  10372. },
  10373. {
  10374. "name": "vlucas/phpdotenv",
  10375. "version": "v2.6.9",
  10376. "source": {
  10377. "type": "git",
  10378. "url": "https://github.com/vlucas/phpdotenv.git",
  10379. "reference": "2e93cc98e2e8e869f8d9cfa61bb3a99ba4fc4141"
  10380. },
  10381. "dist": {
  10382. "type": "zip",
  10383. "url": "https://api.github.com/repos/vlucas/phpdotenv/zipball/2e93cc98e2e8e869f8d9cfa61bb3a99ba4fc4141",
  10384. "reference": "2e93cc98e2e8e869f8d9cfa61bb3a99ba4fc4141",
  10385. "shasum": ""
  10386. },
  10387. "require": {
  10388. "php": "^5.3.9 || ^7.0 || ^8.0",
  10389. "symfony/polyfill-ctype": "^1.17"
  10390. },
  10391. "require-dev": {
  10392. "ext-filter": "*",
  10393. "ext-pcre": "*",
  10394. "phpunit/phpunit": "^4.8.36 || ^5.7.27 || ^6.5.14 || ^7.5.20 || ^8.5.21"
  10395. },
  10396. "suggest": {
  10397. "ext-filter": "Required to use the boolean validator.",
  10398. "ext-pcre": "Required to use most of the library."
  10399. },
  10400. "type": "library",
  10401. "extra": {
  10402. "branch-alias": {
  10403. "dev-master": "2.6-dev"
  10404. }
  10405. },
  10406. "autoload": {
  10407. "psr-4": {
  10408. "Dotenv\\": "src/"
  10409. }
  10410. },
  10411. "notification-url": "https://packagist.org/downloads/",
  10412. "license": [
  10413. "BSD-3-Clause"
  10414. ],
  10415. "authors": [
  10416. {
  10417. "name": "Graham Campbell",
  10418. "email": "hello@gjcampbell.co.uk",
  10419. "homepage": "https://github.com/GrahamCampbell"
  10420. },
  10421. {
  10422. "name": "Vance Lucas",
  10423. "email": "vance@vancelucas.com",
  10424. "homepage": "https://github.com/vlucas"
  10425. }
  10426. ],
  10427. "description": "Loads environment variables from `.env` to `getenv()`, `$_ENV` and `$_SERVER` automagically.",
  10428. "keywords": [
  10429. "dotenv",
  10430. "env",
  10431. "environment"
  10432. ],
  10433. "support": {
  10434. "issues": "https://github.com/vlucas/phpdotenv/issues",
  10435. "source": "https://github.com/vlucas/phpdotenv/tree/v2.6.9"
  10436. },
  10437. "funding": [
  10438. {
  10439. "url": "https://github.com/GrahamCampbell",
  10440. "type": "github"
  10441. },
  10442. {
  10443. "url": "https://tidelift.com/funding/github/packagist/vlucas/phpdotenv",
  10444. "type": "tidelift"
  10445. }
  10446. ],
  10447. "time": "2021-12-12T22:59:22+00:00"
  10448. },
  10449. {
  10450. "name": "webflo/drupal-finder",
  10451. "version": "1.3.1",
  10452. "source": {
  10453. "type": "git",
  10454. "url": "https://github.com/webflo/drupal-finder.git",
  10455. "reference": "73045060b0894c77962a10cff047f72872d8810c"
  10456. },
  10457. "dist": {
  10458. "type": "zip",
  10459. "url": "https://api.github.com/repos/webflo/drupal-finder/zipball/73045060b0894c77962a10cff047f72872d8810c",
  10460. "reference": "73045060b0894c77962a10cff047f72872d8810c",
  10461. "shasum": ""
  10462. },
  10463. "require": {
  10464. "composer-runtime-api": "^2.2",
  10465. "php": ">=8.1"
  10466. },
  10467. "require-dev": {
  10468. "mikey179/vfsstream": "^1.6",
  10469. "phpunit/phpunit": "^10.4",
  10470. "symfony/process": "^6.4"
  10471. },
  10472. "type": "library",
  10473. "autoload": {
  10474. "psr-4": {
  10475. "DrupalFinder\\": "src/"
  10476. }
  10477. },
  10478. "notification-url": "https://packagist.org/downloads/",
  10479. "license": [
  10480. "GPL-2.0-or-later"
  10481. ],
  10482. "authors": [
  10483. {
  10484. "name": "Florian Weber",
  10485. "email": "florian@webflo.org"
  10486. }
  10487. ],
  10488. "description": "Helper class to locate a Drupal installation.",
  10489. "support": {
  10490. "issues": "https://github.com/webflo/drupal-finder/issues",
  10491. "source": "https://github.com/webflo/drupal-finder/tree/1.3.1"
  10492. },
  10493. "time": "2024-06-28T13:45:36+00:00"
  10494. },
  10495. {
  10496. "name": "webmozart/assert",
  10497. "version": "1.11.0",
  10498. "source": {
  10499. "type": "git",
  10500. "url": "https://github.com/webmozarts/assert.git",
  10501. "reference": "11cb2199493b2f8a3b53e7f19068fc6aac760991"
  10502. },
  10503. "dist": {
  10504. "type": "zip",
  10505. "url": "https://api.github.com/repos/webmozarts/assert/zipball/11cb2199493b2f8a3b53e7f19068fc6aac760991",
  10506. "reference": "11cb2199493b2f8a3b53e7f19068fc6aac760991",
  10507. "shasum": ""
  10508. },
  10509. "require": {
  10510. "ext-ctype": "*",
  10511. "php": "^7.2 || ^8.0"
  10512. },
  10513. "conflict": {
  10514. "phpstan/phpstan": "<0.12.20",
  10515. "vimeo/psalm": "<4.6.1 || 4.6.2"
  10516. },
  10517. "require-dev": {
  10518. "phpunit/phpunit": "^8.5.13"
  10519. },
  10520. "type": "library",
  10521. "extra": {
  10522. "branch-alias": {
  10523. "dev-master": "1.10-dev"
  10524. }
  10525. },
  10526. "autoload": {
  10527. "psr-4": {
  10528. "Webmozart\\Assert\\": "src/"
  10529. }
  10530. },
  10531. "notification-url": "https://packagist.org/downloads/",
  10532. "license": [
  10533. "MIT"
  10534. ],
  10535. "authors": [
  10536. {
  10537. "name": "Bernhard Schussek",
  10538. "email": "bschussek@gmail.com"
  10539. }
  10540. ],
  10541. "description": "Assertions to validate method input/output with nice error messages.",
  10542. "keywords": [
  10543. "assert",
  10544. "check",
  10545. "validate"
  10546. ],
  10547. "support": {
  10548. "issues": "https://github.com/webmozarts/assert/issues",
  10549. "source": "https://github.com/webmozarts/assert/tree/1.11.0"
  10550. },
  10551. "time": "2022-06-03T18:03:27+00:00"
  10552. },
  10553. {
  10554. "name": "webmozart/path-util",
  10555. "version": "2.3.0",
  10556. "source": {
  10557. "type": "git",
  10558. "url": "https://github.com/webmozart/path-util.git",
  10559. "reference": "d939f7edc24c9a1bb9c0dee5cb05d8e859490725"
  10560. },
  10561. "dist": {
  10562. "type": "zip",
  10563. "url": "https://api.github.com/repos/webmozart/path-util/zipball/d939f7edc24c9a1bb9c0dee5cb05d8e859490725",
  10564. "reference": "d939f7edc24c9a1bb9c0dee5cb05d8e859490725",
  10565. "shasum": ""
  10566. },
  10567. "require": {
  10568. "php": ">=5.3.3",
  10569. "webmozart/assert": "~1.0"
  10570. },
  10571. "require-dev": {
  10572. "phpunit/phpunit": "^4.6",
  10573. "sebastian/version": "^1.0.1"
  10574. },
  10575. "type": "library",
  10576. "extra": {
  10577. "branch-alias": {
  10578. "dev-master": "2.3-dev"
  10579. }
  10580. },
  10581. "autoload": {
  10582. "psr-4": {
  10583. "Webmozart\\PathUtil\\": "src/"
  10584. }
  10585. },
  10586. "notification-url": "https://packagist.org/downloads/",
  10587. "license": [
  10588. "MIT"
  10589. ],
  10590. "authors": [
  10591. {
  10592. "name": "Bernhard Schussek",
  10593. "email": "bschussek@gmail.com"
  10594. }
  10595. ],
  10596. "description": "A robust cross-platform utility for normalizing, comparing and modifying file paths.",
  10597. "support": {
  10598. "issues": "https://github.com/webmozart/path-util/issues",
  10599. "source": "https://github.com/webmozart/path-util/tree/2.3.0"
  10600. },
  10601. "abandoned": "symfony/filesystem",
  10602. "time": "2015-12-17T08:42:14+00:00"
  10603. }
  10604. ],
  10605. "packages-dev": [],
  10606. "aliases": [],
  10607. "minimum-stability": "dev",
  10608. "stability-flags": {
  10609. "drupal/bulkdelete": 20,
  10610. "drupal/config_update": 15,
  10611. "drupal/context": 5,
  10612. "drupal/domain": 10,
  10613. "drupal/filefield_sources": 15,
  10614. "drupal/filter_perms": 15,
  10615. "drupal/linkit": 10,
  10616. "drupal/maillog": 10,
  10617. "drupal/synonyms": 15
  10618. },
  10619. "prefer-stable": true,
  10620. "prefer-lowest": false,
  10621. "platform": {
  10622. "php": ">=5.6"
  10623. },
  10624. "platform-dev": [],
  10625. "plugin-api-version": "2.6.0"
  10626. }