composer.lock 374 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298529953005301530253035304530553065307530853095310531153125313531453155316531753185319532053215322532353245325532653275328532953305331533253335334533553365337533853395340534153425343534453455346534753485349535053515352535353545355535653575358535953605361536253635364536553665367536853695370537153725373537453755376537753785379538053815382538353845385538653875388538953905391539253935394539553965397539853995400540154025403540454055406540754085409541054115412541354145415541654175418541954205421542254235424542554265427542854295430543154325433543454355436543754385439544054415442544354445445544654475448544954505451545254535454545554565457545854595460546154625463546454655466546754685469547054715472547354745475547654775478547954805481548254835484548554865487548854895490549154925493549454955496549754985499550055015502550355045505550655075508550955105511551255135514551555165517551855195520552155225523552455255526552755285529553055315532553355345535553655375538553955405541554255435544554555465547554855495550555155525553555455555556555755585559556055615562556355645565556655675568556955705571557255735574557555765577557855795580558155825583558455855586558755885589559055915592559355945595559655975598559956005601560256035604560556065607560856095610561156125613561456155616561756185619562056215622562356245625562656275628562956305631563256335634563556365637563856395640564156425643564456455646564756485649565056515652565356545655565656575658565956605661566256635664566556665667566856695670567156725673567456755676567756785679568056815682568356845685568656875688568956905691569256935694569556965697569856995700570157025703570457055706570757085709571057115712571357145715571657175718571957205721572257235724572557265727572857295730573157325733573457355736573757385739574057415742574357445745574657475748574957505751575257535754575557565757575857595760576157625763576457655766576757685769577057715772577357745775577657775778577957805781578257835784578557865787578857895790579157925793579457955796579757985799580058015802580358045805580658075808580958105811581258135814581558165817581858195820582158225823582458255826582758285829583058315832583358345835583658375838583958405841584258435844584558465847584858495850585158525853585458555856585758585859586058615862586358645865586658675868586958705871587258735874587558765877587858795880588158825883588458855886588758885889589058915892589358945895589658975898589959005901590259035904590559065907590859095910591159125913591459155916591759185919592059215922592359245925592659275928592959305931593259335934593559365937593859395940594159425943594459455946594759485949595059515952595359545955595659575958595959605961596259635964596559665967596859695970597159725973597459755976597759785979598059815982598359845985598659875988598959905991599259935994599559965997599859996000600160026003600460056006600760086009601060116012601360146015601660176018601960206021602260236024602560266027602860296030603160326033603460356036603760386039604060416042604360446045604660476048604960506051605260536054605560566057605860596060606160626063606460656066606760686069607060716072607360746075607660776078607960806081608260836084608560866087608860896090609160926093609460956096609760986099610061016102610361046105610661076108610961106111611261136114611561166117611861196120612161226123612461256126612761286129613061316132613361346135613661376138613961406141614261436144614561466147614861496150615161526153615461556156615761586159616061616162616361646165616661676168616961706171617261736174617561766177617861796180618161826183618461856186618761886189619061916192619361946195619661976198619962006201620262036204620562066207620862096210621162126213621462156216621762186219622062216222622362246225622662276228622962306231623262336234623562366237623862396240624162426243624462456246624762486249625062516252625362546255625662576258625962606261626262636264626562666267626862696270627162726273627462756276627762786279628062816282628362846285628662876288628962906291629262936294629562966297629862996300630163026303630463056306630763086309631063116312631363146315631663176318631963206321632263236324632563266327632863296330633163326333633463356336633763386339634063416342634363446345634663476348634963506351635263536354635563566357635863596360636163626363636463656366636763686369637063716372637363746375637663776378637963806381638263836384638563866387638863896390639163926393639463956396639763986399640064016402640364046405640664076408640964106411641264136414641564166417641864196420642164226423642464256426642764286429643064316432643364346435643664376438643964406441644264436444644564466447644864496450645164526453645464556456645764586459646064616462646364646465646664676468646964706471647264736474647564766477647864796480648164826483648464856486648764886489649064916492649364946495649664976498649965006501650265036504650565066507650865096510651165126513651465156516651765186519652065216522652365246525652665276528652965306531653265336534653565366537653865396540654165426543654465456546654765486549655065516552655365546555655665576558655965606561656265636564656565666567656865696570657165726573657465756576657765786579658065816582658365846585658665876588658965906591659265936594659565966597659865996600660166026603660466056606660766086609661066116612661366146615661666176618661966206621662266236624662566266627662866296630663166326633663466356636663766386639664066416642664366446645664666476648664966506651665266536654665566566657665866596660666166626663666466656666666766686669667066716672667366746675667666776678667966806681668266836684668566866687668866896690669166926693669466956696669766986699670067016702670367046705670667076708670967106711671267136714671567166717671867196720672167226723672467256726672767286729673067316732673367346735673667376738673967406741674267436744674567466747674867496750675167526753675467556756675767586759676067616762676367646765676667676768676967706771677267736774677567766777677867796780678167826783678467856786678767886789679067916792679367946795679667976798679968006801680268036804680568066807680868096810681168126813681468156816681768186819682068216822682368246825682668276828682968306831683268336834683568366837683868396840684168426843684468456846684768486849685068516852685368546855685668576858685968606861686268636864686568666867686868696870687168726873687468756876687768786879688068816882688368846885688668876888688968906891689268936894689568966897689868996900690169026903690469056906690769086909691069116912691369146915691669176918691969206921692269236924692569266927692869296930693169326933693469356936693769386939694069416942694369446945694669476948694969506951695269536954695569566957695869596960696169626963696469656966696769686969697069716972697369746975697669776978697969806981698269836984698569866987698869896990699169926993699469956996699769986999700070017002700370047005700670077008700970107011701270137014701570167017701870197020702170227023702470257026702770287029703070317032703370347035703670377038703970407041704270437044704570467047704870497050705170527053705470557056705770587059706070617062706370647065706670677068706970707071707270737074707570767077707870797080708170827083708470857086708770887089709070917092709370947095709670977098709971007101710271037104710571067107710871097110711171127113711471157116711771187119712071217122712371247125712671277128712971307131713271337134713571367137713871397140714171427143714471457146714771487149715071517152715371547155715671577158715971607161716271637164716571667167716871697170717171727173717471757176717771787179718071817182718371847185718671877188718971907191719271937194719571967197719871997200720172027203720472057206720772087209721072117212721372147215721672177218721972207221722272237224722572267227722872297230723172327233723472357236723772387239724072417242724372447245724672477248724972507251725272537254725572567257725872597260726172627263726472657266726772687269727072717272727372747275727672777278727972807281728272837284728572867287728872897290729172927293729472957296729772987299730073017302730373047305730673077308730973107311731273137314731573167317731873197320732173227323732473257326732773287329733073317332733373347335733673377338733973407341734273437344734573467347734873497350735173527353735473557356735773587359736073617362736373647365736673677368736973707371737273737374737573767377737873797380738173827383738473857386738773887389739073917392739373947395739673977398739974007401740274037404740574067407740874097410741174127413741474157416741774187419742074217422742374247425742674277428742974307431743274337434743574367437743874397440744174427443744474457446744774487449745074517452745374547455745674577458745974607461746274637464746574667467746874697470747174727473747474757476747774787479748074817482748374847485748674877488748974907491749274937494749574967497749874997500750175027503750475057506750775087509751075117512751375147515751675177518751975207521752275237524752575267527752875297530753175327533753475357536753775387539754075417542754375447545754675477548754975507551755275537554755575567557755875597560756175627563756475657566756775687569757075717572757375747575757675777578757975807581758275837584758575867587758875897590759175927593759475957596759775987599760076017602760376047605760676077608760976107611761276137614761576167617761876197620762176227623762476257626762776287629763076317632763376347635763676377638763976407641764276437644764576467647764876497650765176527653765476557656765776587659766076617662766376647665766676677668766976707671767276737674767576767677767876797680768176827683768476857686768776887689769076917692769376947695769676977698769977007701770277037704770577067707770877097710771177127713771477157716771777187719772077217722772377247725772677277728772977307731773277337734773577367737773877397740774177427743774477457746774777487749775077517752775377547755775677577758775977607761776277637764776577667767776877697770777177727773777477757776777777787779778077817782778377847785778677877788778977907791779277937794779577967797779877997800780178027803780478057806780778087809781078117812781378147815781678177818781978207821782278237824782578267827782878297830783178327833783478357836783778387839784078417842784378447845784678477848784978507851785278537854785578567857785878597860786178627863786478657866786778687869787078717872787378747875787678777878787978807881788278837884788578867887788878897890789178927893789478957896789778987899790079017902790379047905790679077908790979107911791279137914791579167917791879197920792179227923792479257926792779287929793079317932793379347935793679377938793979407941794279437944794579467947794879497950795179527953795479557956795779587959796079617962796379647965796679677968796979707971797279737974797579767977797879797980798179827983798479857986798779887989799079917992799379947995799679977998799980008001800280038004800580068007800880098010801180128013801480158016801780188019802080218022802380248025802680278028802980308031803280338034803580368037803880398040804180428043804480458046804780488049805080518052805380548055805680578058805980608061806280638064806580668067806880698070807180728073807480758076807780788079808080818082808380848085808680878088808980908091809280938094809580968097809880998100810181028103810481058106810781088109811081118112811381148115811681178118811981208121812281238124812581268127812881298130813181328133813481358136813781388139814081418142814381448145814681478148814981508151815281538154815581568157815881598160816181628163816481658166816781688169817081718172817381748175817681778178817981808181818281838184818581868187818881898190819181928193819481958196819781988199820082018202820382048205820682078208820982108211821282138214821582168217821882198220822182228223822482258226822782288229823082318232823382348235823682378238823982408241824282438244824582468247824882498250825182528253825482558256825782588259826082618262826382648265826682678268826982708271827282738274827582768277827882798280828182828283828482858286828782888289829082918292829382948295829682978298829983008301830283038304830583068307830883098310831183128313831483158316831783188319832083218322832383248325832683278328832983308331833283338334833583368337833883398340834183428343834483458346834783488349835083518352835383548355835683578358835983608361836283638364836583668367836883698370837183728373837483758376837783788379838083818382838383848385838683878388838983908391839283938394839583968397839883998400840184028403840484058406840784088409841084118412841384148415841684178418841984208421842284238424842584268427842884298430843184328433843484358436843784388439844084418442844384448445844684478448844984508451845284538454845584568457845884598460846184628463846484658466846784688469847084718472847384748475847684778478847984808481848284838484848584868487848884898490849184928493849484958496849784988499850085018502850385048505850685078508850985108511851285138514851585168517851885198520852185228523852485258526852785288529853085318532853385348535853685378538853985408541854285438544854585468547854885498550855185528553855485558556855785588559856085618562856385648565856685678568856985708571857285738574857585768577857885798580858185828583858485858586858785888589859085918592859385948595859685978598859986008601860286038604860586068607860886098610861186128613861486158616861786188619862086218622862386248625862686278628862986308631863286338634863586368637863886398640864186428643864486458646864786488649865086518652865386548655865686578658865986608661866286638664866586668667866886698670867186728673867486758676867786788679868086818682868386848685868686878688868986908691869286938694869586968697869886998700870187028703870487058706870787088709871087118712871387148715871687178718871987208721872287238724872587268727872887298730873187328733873487358736873787388739874087418742874387448745874687478748874987508751875287538754875587568757875887598760876187628763876487658766876787688769877087718772877387748775877687778778877987808781878287838784878587868787878887898790879187928793879487958796879787988799880088018802880388048805880688078808880988108811881288138814881588168817881888198820882188228823882488258826882788288829883088318832883388348835883688378838883988408841884288438844884588468847884888498850885188528853885488558856885788588859886088618862886388648865886688678868886988708871887288738874887588768877887888798880888188828883888488858886888788888889889088918892889388948895889688978898889989008901890289038904890589068907890889098910891189128913891489158916891789188919892089218922892389248925892689278928892989308931893289338934893589368937893889398940894189428943894489458946894789488949895089518952895389548955895689578958895989608961896289638964896589668967896889698970897189728973897489758976897789788979898089818982898389848985898689878988898989908991899289938994899589968997899889999000900190029003900490059006900790089009901090119012901390149015901690179018901990209021902290239024902590269027902890299030903190329033903490359036903790389039904090419042904390449045904690479048904990509051905290539054905590569057905890599060906190629063906490659066906790689069907090719072907390749075907690779078907990809081908290839084908590869087908890899090909190929093909490959096909790989099910091019102910391049105910691079108910991109111911291139114911591169117911891199120912191229123912491259126912791289129913091319132913391349135913691379138913991409141914291439144914591469147914891499150915191529153915491559156915791589159916091619162916391649165916691679168916991709171917291739174917591769177917891799180918191829183918491859186918791889189919091919192919391949195919691979198919992009201920292039204920592069207920892099210921192129213921492159216921792189219922092219222922392249225922692279228922992309231923292339234923592369237923892399240924192429243924492459246924792489249925092519252925392549255925692579258925992609261926292639264926592669267926892699270927192729273927492759276927792789279928092819282928392849285928692879288928992909291929292939294929592969297929892999300930193029303930493059306930793089309931093119312931393149315931693179318931993209321932293239324932593269327932893299330933193329333933493359336933793389339934093419342934393449345934693479348934993509351935293539354935593569357935893599360936193629363936493659366936793689369937093719372937393749375937693779378937993809381938293839384938593869387938893899390939193929393939493959396939793989399940094019402940394049405940694079408940994109411941294139414941594169417941894199420942194229423942494259426942794289429943094319432943394349435943694379438943994409441944294439444944594469447944894499450945194529453945494559456945794589459946094619462946394649465946694679468946994709471947294739474947594769477947894799480948194829483948494859486948794889489949094919492949394949495949694979498949995009501950295039504950595069507950895099510951195129513951495159516951795189519952095219522952395249525952695279528952995309531953295339534953595369537953895399540954195429543954495459546954795489549955095519552955395549555955695579558955995609561956295639564956595669567956895699570957195729573957495759576957795789579958095819582958395849585958695879588958995909591959295939594959595969597959895999600960196029603960496059606960796089609961096119612961396149615961696179618961996209621962296239624962596269627962896299630963196329633963496359636963796389639964096419642964396449645964696479648964996509651965296539654965596569657965896599660966196629663966496659666966796689669967096719672967396749675967696779678967996809681968296839684968596869687968896899690969196929693969496959696969796989699970097019702970397049705970697079708970997109711971297139714971597169717971897199720972197229723972497259726972797289729973097319732973397349735973697379738973997409741974297439744974597469747974897499750975197529753975497559756975797589759976097619762976397649765976697679768976997709771977297739774977597769777977897799780978197829783978497859786978797889789979097919792979397949795979697979798979998009801980298039804980598069807980898099810981198129813981498159816981798189819982098219822982398249825982698279828982998309831983298339834983598369837983898399840984198429843984498459846984798489849985098519852985398549855985698579858985998609861986298639864986598669867986898699870987198729873987498759876987798789879988098819882988398849885988698879888988998909891989298939894989598969897989898999900990199029903990499059906990799089909991099119912991399149915991699179918991999209921992299239924992599269927992899299930993199329933993499359936993799389939994099419942994399449945994699479948994999509951995299539954995599569957995899599960996199629963996499659966996799689969997099719972997399749975997699779978997999809981998299839984998599869987998899899990999199929993999499959996999799989999100001000110002100031000410005100061000710008100091001010011100121001310014100151001610017100181001910020100211002210023100241002510026100271002810029100301003110032100331003410035100361003710038100391004010041100421004310044100451004610047100481004910050100511005210053100541005510056100571005810059100601006110062100631006410065100661006710068100691007010071100721007310074100751007610077100781007910080100811008210083100841008510086100871008810089100901009110092100931009410095100961009710098100991010010101101021010310104101051010610107101081010910110101111011210113101141011510116101171011810119101201012110122101231012410125101261012710128101291013010131101321013310134101351013610137101381013910140101411014210143101441014510146101471014810149101501015110152101531015410155101561015710158101591016010161101621016310164101651016610167101681016910170101711017210173101741017510176101771017810179101801018110182101831018410185101861018710188101891019010191101921019310194101951019610197101981019910200102011020210203102041020510206102071020810209102101021110212102131021410215102161021710218102191022010221102221022310224102251022610227102281022910230102311023210233102341023510236102371023810239102401024110242102431024410245102461024710248102491025010251102521025310254102551025610257102581025910260102611026210263
  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": "5e2a4c6841bbd20dcb10173a5e0a39b4",
  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.32.0",
  68. "source": {
  69. "type": "git",
  70. "url": "https://github.com/Chi-teck/drupal-code-generator.git",
  71. "reference": "0e045f7a7e747af3d8f603156bf4d73be5768246"
  72. },
  73. "dist": {
  74. "type": "zip",
  75. "url": "https://api.github.com/repos/Chi-teck/drupal-code-generator/zipball/0e045f7a7e747af3d8f603156bf4d73be5768246",
  76. "reference": "0e045f7a7e747af3d8f603156bf4d73be5768246",
  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. "bin": [
  87. "bin/dcg"
  88. ],
  89. "type": "library",
  90. "extra": {
  91. "branch-alias": {
  92. "dev-master": "1.x-dev"
  93. }
  94. },
  95. "autoload": {
  96. "files": [
  97. "src/bootstrap.php"
  98. ],
  99. "psr-4": {
  100. "DrupalCodeGenerator\\": "src"
  101. }
  102. },
  103. "notification-url": "https://packagist.org/downloads/",
  104. "license": [
  105. "GPL-2.0-or-later"
  106. ],
  107. "description": "Drupal code generator",
  108. "time": "2020-04-16T06:45:06+00:00"
  109. },
  110. {
  111. "name": "composer/installers",
  112. "version": "v1.11.0",
  113. "source": {
  114. "type": "git",
  115. "url": "https://github.com/composer/installers.git",
  116. "reference": "ae03311f45dfe194412081526be2e003960df74b"
  117. },
  118. "dist": {
  119. "type": "zip",
  120. "url": "https://api.github.com/repos/composer/installers/zipball/ae03311f45dfe194412081526be2e003960df74b",
  121. "reference": "ae03311f45dfe194412081526be2e003960df74b",
  122. "shasum": ""
  123. },
  124. "require": {
  125. "composer-plugin-api": "^1.0 || ^2.0"
  126. },
  127. "replace": {
  128. "roundcube/plugin-installer": "*",
  129. "shama/baton": "*"
  130. },
  131. "require-dev": {
  132. "composer/composer": "1.6.* || ^2.0",
  133. "composer/semver": "^1 || ^3",
  134. "phpstan/phpstan": "^0.12.55",
  135. "phpstan/phpstan-phpunit": "^0.12.16",
  136. "symfony/phpunit-bridge": "^4.2 || ^5",
  137. "symfony/process": "^2.3"
  138. },
  139. "type": "composer-plugin",
  140. "extra": {
  141. "class": "Composer\\Installers\\Plugin",
  142. "branch-alias": {
  143. "dev-main": "1.x-dev"
  144. }
  145. },
  146. "autoload": {
  147. "psr-4": {
  148. "Composer\\Installers\\": "src/Composer/Installers"
  149. }
  150. },
  151. "notification-url": "https://packagist.org/downloads/",
  152. "license": [
  153. "MIT"
  154. ],
  155. "authors": [
  156. {
  157. "name": "Kyle Robinson Young",
  158. "email": "kyle@dontkry.com",
  159. "homepage": "https://github.com/shama"
  160. }
  161. ],
  162. "description": "A multi-framework Composer library installer",
  163. "homepage": "https://composer.github.io/installers/",
  164. "keywords": [
  165. "Craft",
  166. "Dolibarr",
  167. "Eliasis",
  168. "Hurad",
  169. "ImageCMS",
  170. "Kanboard",
  171. "Lan Management System",
  172. "MODX Evo",
  173. "MantisBT",
  174. "Mautic",
  175. "Maya",
  176. "OXID",
  177. "Plentymarkets",
  178. "Porto",
  179. "RadPHP",
  180. "SMF",
  181. "Starbug",
  182. "Thelia",
  183. "Whmcs",
  184. "WolfCMS",
  185. "agl",
  186. "aimeos",
  187. "annotatecms",
  188. "attogram",
  189. "bitrix",
  190. "cakephp",
  191. "chef",
  192. "cockpit",
  193. "codeigniter",
  194. "concrete5",
  195. "croogo",
  196. "dokuwiki",
  197. "drupal",
  198. "eZ Platform",
  199. "elgg",
  200. "expressionengine",
  201. "fuelphp",
  202. "grav",
  203. "installer",
  204. "itop",
  205. "joomla",
  206. "known",
  207. "kohana",
  208. "laravel",
  209. "lavalite",
  210. "lithium",
  211. "magento",
  212. "majima",
  213. "mako",
  214. "mediawiki",
  215. "miaoxing",
  216. "modulework",
  217. "modx",
  218. "moodle",
  219. "osclass",
  220. "phpbb",
  221. "piwik",
  222. "ppi",
  223. "processwire",
  224. "puppet",
  225. "pxcms",
  226. "reindex",
  227. "roundcube",
  228. "shopware",
  229. "silverstripe",
  230. "sydes",
  231. "sylius",
  232. "symfony",
  233. "tastyigniter",
  234. "typo3",
  235. "wordpress",
  236. "yawik",
  237. "zend",
  238. "zikula"
  239. ],
  240. "funding": [
  241. {
  242. "url": "https://packagist.com",
  243. "type": "custom"
  244. },
  245. {
  246. "url": "https://github.com/composer",
  247. "type": "github"
  248. },
  249. {
  250. "url": "https://tidelift.com/funding/github/packagist/composer/composer",
  251. "type": "tidelift"
  252. }
  253. ],
  254. "time": "2021-04-28T06:42:17+00:00"
  255. },
  256. {
  257. "name": "composer/semver",
  258. "version": "1.5.1",
  259. "source": {
  260. "type": "git",
  261. "url": "https://github.com/composer/semver.git",
  262. "reference": "c6bea70230ef4dd483e6bbcab6005f682ed3a8de"
  263. },
  264. "dist": {
  265. "type": "zip",
  266. "url": "https://api.github.com/repos/composer/semver/zipball/c6bea70230ef4dd483e6bbcab6005f682ed3a8de",
  267. "reference": "c6bea70230ef4dd483e6bbcab6005f682ed3a8de",
  268. "shasum": ""
  269. },
  270. "require": {
  271. "php": "^5.3.2 || ^7.0"
  272. },
  273. "require-dev": {
  274. "phpunit/phpunit": "^4.5 || ^5.0.5"
  275. },
  276. "type": "library",
  277. "extra": {
  278. "branch-alias": {
  279. "dev-master": "1.x-dev"
  280. }
  281. },
  282. "autoload": {
  283. "psr-4": {
  284. "Composer\\Semver\\": "src"
  285. }
  286. },
  287. "notification-url": "https://packagist.org/downloads/",
  288. "license": [
  289. "MIT"
  290. ],
  291. "authors": [
  292. {
  293. "name": "Nils Adermann",
  294. "email": "naderman@naderman.de",
  295. "homepage": "http://www.naderman.de"
  296. },
  297. {
  298. "name": "Jordi Boggiano",
  299. "email": "j.boggiano@seld.be",
  300. "homepage": "http://seld.be"
  301. },
  302. {
  303. "name": "Rob Bast",
  304. "email": "rob.bast@gmail.com",
  305. "homepage": "http://robbast.nl"
  306. }
  307. ],
  308. "description": "Semver library that offers utilities, version constraint parsing and validation.",
  309. "keywords": [
  310. "semantic",
  311. "semver",
  312. "validation",
  313. "versioning"
  314. ],
  315. "support": {
  316. "irc": "irc://irc.freenode.org/composer",
  317. "issues": "https://github.com/composer/semver/issues",
  318. "source": "https://github.com/composer/semver/tree/1.5.1"
  319. },
  320. "time": "2020-01-13T12:06:48+00:00"
  321. },
  322. {
  323. "name": "consolidation/annotated-command",
  324. "version": "2.12.0",
  325. "source": {
  326. "type": "git",
  327. "url": "https://github.com/consolidation/annotated-command.git",
  328. "reference": "512a2e54c98f3af377589de76c43b24652bcb789"
  329. },
  330. "dist": {
  331. "type": "zip",
  332. "url": "https://api.github.com/repos/consolidation/annotated-command/zipball/512a2e54c98f3af377589de76c43b24652bcb789",
  333. "reference": "512a2e54c98f3af377589de76c43b24652bcb789",
  334. "shasum": ""
  335. },
  336. "require": {
  337. "consolidation/output-formatters": "^3.4",
  338. "php": ">=5.4.5",
  339. "psr/log": "^1",
  340. "symfony/console": "^2.8|^3|^4",
  341. "symfony/event-dispatcher": "^2.5|^3|^4",
  342. "symfony/finder": "^2.5|^3|^4"
  343. },
  344. "require-dev": {
  345. "g1a/composer-test-scenarios": "^3",
  346. "php-coveralls/php-coveralls": "^1",
  347. "phpunit/phpunit": "^6",
  348. "squizlabs/php_codesniffer": "^2.7"
  349. },
  350. "type": "library",
  351. "extra": {
  352. "scenarios": {
  353. "symfony4": {
  354. "require": {
  355. "symfony/console": "^4.0"
  356. },
  357. "config": {
  358. "platform": {
  359. "php": "7.1.3"
  360. }
  361. }
  362. },
  363. "symfony2": {
  364. "require": {
  365. "symfony/console": "^2.8"
  366. },
  367. "require-dev": {
  368. "phpunit/phpunit": "^4.8.36"
  369. },
  370. "remove": [
  371. "php-coveralls/php-coveralls"
  372. ],
  373. "config": {
  374. "platform": {
  375. "php": "5.4.8"
  376. }
  377. },
  378. "scenario-options": {
  379. "create-lockfile": "false"
  380. }
  381. },
  382. "phpunit4": {
  383. "require-dev": {
  384. "phpunit/phpunit": "^4.8.36"
  385. },
  386. "remove": [
  387. "php-coveralls/php-coveralls"
  388. ],
  389. "config": {
  390. "platform": {
  391. "php": "5.4.8"
  392. }
  393. }
  394. }
  395. },
  396. "branch-alias": {
  397. "dev-master": "2.x-dev"
  398. }
  399. },
  400. "autoload": {
  401. "psr-4": {
  402. "Consolidation\\AnnotatedCommand\\": "src"
  403. }
  404. },
  405. "notification-url": "https://packagist.org/downloads/",
  406. "license": [
  407. "MIT"
  408. ],
  409. "authors": [
  410. {
  411. "name": "Greg Anderson",
  412. "email": "greg.1.anderson@greenknowe.org"
  413. }
  414. ],
  415. "description": "Initialize Symfony Console commands from annotated command class methods.",
  416. "time": "2019-03-08T16:55:03+00:00"
  417. },
  418. {
  419. "name": "consolidation/config",
  420. "version": "1.2.1",
  421. "source": {
  422. "type": "git",
  423. "url": "https://github.com/consolidation/config.git",
  424. "reference": "cac1279bae7efb5c7fb2ca4c3ba4b8eb741a96c1"
  425. },
  426. "dist": {
  427. "type": "zip",
  428. "url": "https://api.github.com/repos/consolidation/config/zipball/cac1279bae7efb5c7fb2ca4c3ba4b8eb741a96c1",
  429. "reference": "cac1279bae7efb5c7fb2ca4c3ba4b8eb741a96c1",
  430. "shasum": ""
  431. },
  432. "require": {
  433. "dflydev/dot-access-data": "^1.1.0",
  434. "grasmash/expander": "^1",
  435. "php": ">=5.4.0"
  436. },
  437. "require-dev": {
  438. "g1a/composer-test-scenarios": "^3",
  439. "php-coveralls/php-coveralls": "^1",
  440. "phpunit/phpunit": "^5",
  441. "squizlabs/php_codesniffer": "2.*",
  442. "symfony/console": "^2.5|^3|^4",
  443. "symfony/yaml": "^2.8.11|^3|^4"
  444. },
  445. "suggest": {
  446. "symfony/yaml": "Required to use Consolidation\\Config\\Loader\\YamlConfigLoader"
  447. },
  448. "type": "library",
  449. "extra": {
  450. "scenarios": {
  451. "symfony4": {
  452. "require-dev": {
  453. "symfony/console": "^4.0"
  454. },
  455. "config": {
  456. "platform": {
  457. "php": "7.1.3"
  458. }
  459. }
  460. },
  461. "symfony2": {
  462. "require-dev": {
  463. "symfony/console": "^2.8",
  464. "symfony/event-dispatcher": "^2.8",
  465. "phpunit/phpunit": "^4.8.36"
  466. },
  467. "remove": [
  468. "php-coveralls/php-coveralls"
  469. ],
  470. "config": {
  471. "platform": {
  472. "php": "5.4.8"
  473. }
  474. }
  475. }
  476. },
  477. "branch-alias": {
  478. "dev-master": "1.x-dev"
  479. }
  480. },
  481. "autoload": {
  482. "psr-4": {
  483. "Consolidation\\Config\\": "src"
  484. }
  485. },
  486. "notification-url": "https://packagist.org/downloads/",
  487. "license": [
  488. "MIT"
  489. ],
  490. "authors": [
  491. {
  492. "name": "Greg Anderson",
  493. "email": "greg.1.anderson@greenknowe.org"
  494. }
  495. ],
  496. "description": "Provide configuration services for a commandline tool.",
  497. "time": "2019-03-03T19:37:04+00:00"
  498. },
  499. {
  500. "name": "consolidation/filter-via-dot-access-data",
  501. "version": "1.0.0",
  502. "source": {
  503. "type": "git",
  504. "url": "https://github.com/consolidation/filter-via-dot-access-data.git",
  505. "reference": "a53e96c6b9f7f042f5e085bf911f3493cea823c6"
  506. },
  507. "dist": {
  508. "type": "zip",
  509. "url": "https://api.github.com/repos/consolidation/filter-via-dot-access-data/zipball/a53e96c6b9f7f042f5e085bf911f3493cea823c6",
  510. "reference": "a53e96c6b9f7f042f5e085bf911f3493cea823c6",
  511. "shasum": ""
  512. },
  513. "require": {
  514. "dflydev/dot-access-data": "^1.1.0",
  515. "php": ">=5.5.0"
  516. },
  517. "require-dev": {
  518. "consolidation/robo": "^1.2.3",
  519. "g1a/composer-test-scenarios": "^3",
  520. "knplabs/github-api": "^2.7",
  521. "php-coveralls/php-coveralls": "^1",
  522. "php-http/guzzle6-adapter": "^1.1",
  523. "phpunit/phpunit": "^5",
  524. "squizlabs/php_codesniffer": "^2.8",
  525. "symfony/console": "^2.8|^3|^4"
  526. },
  527. "type": "library",
  528. "extra": {
  529. "scenarios": {
  530. "phpunit5": {
  531. "require-dev": {
  532. "phpunit/phpunit": "^5.7.27"
  533. },
  534. "remove": [
  535. "php-coveralls/php-coveralls"
  536. ],
  537. "config": {
  538. "platform": {
  539. "php": "5.6.33"
  540. }
  541. }
  542. }
  543. },
  544. "branch-alias": {
  545. "dev-master": "1.x-dev"
  546. }
  547. },
  548. "autoload": {
  549. "psr-4": {
  550. "Consolidation\\Filter\\": "src"
  551. }
  552. },
  553. "notification-url": "https://packagist.org/downloads/",
  554. "license": [
  555. "MIT"
  556. ],
  557. "authors": [
  558. {
  559. "name": "Greg Anderson",
  560. "email": "greg.1.anderson@greenknowe.org"
  561. }
  562. ],
  563. "description": "This project uses dflydev/dot-access-data to provide simple output filtering for applications built with annotated-command / Robo.",
  564. "time": "2019-01-18T06:05:07+00:00"
  565. },
  566. {
  567. "name": "consolidation/log",
  568. "version": "1.1.1",
  569. "source": {
  570. "type": "git",
  571. "url": "https://github.com/consolidation/log.git",
  572. "reference": "b2e887325ee90abc96b0a8b7b474cd9e7c896e3a"
  573. },
  574. "dist": {
  575. "type": "zip",
  576. "url": "https://api.github.com/repos/consolidation/log/zipball/b2e887325ee90abc96b0a8b7b474cd9e7c896e3a",
  577. "reference": "b2e887325ee90abc96b0a8b7b474cd9e7c896e3a",
  578. "shasum": ""
  579. },
  580. "require": {
  581. "php": ">=5.4.5",
  582. "psr/log": "^1.0",
  583. "symfony/console": "^2.8|^3|^4"
  584. },
  585. "require-dev": {
  586. "g1a/composer-test-scenarios": "^3",
  587. "php-coveralls/php-coveralls": "^1",
  588. "phpunit/phpunit": "^6",
  589. "squizlabs/php_codesniffer": "^2"
  590. },
  591. "type": "library",
  592. "extra": {
  593. "scenarios": {
  594. "symfony4": {
  595. "require": {
  596. "symfony/console": "^4.0"
  597. },
  598. "config": {
  599. "platform": {
  600. "php": "7.1.3"
  601. }
  602. }
  603. },
  604. "symfony2": {
  605. "require": {
  606. "symfony/console": "^2.8"
  607. },
  608. "require-dev": {
  609. "phpunit/phpunit": "^4.8.36"
  610. },
  611. "remove": [
  612. "php-coveralls/php-coveralls"
  613. ],
  614. "config": {
  615. "platform": {
  616. "php": "5.4.8"
  617. }
  618. }
  619. },
  620. "phpunit4": {
  621. "require-dev": {
  622. "phpunit/phpunit": "^4.8.36"
  623. },
  624. "remove": [
  625. "php-coveralls/php-coveralls"
  626. ],
  627. "config": {
  628. "platform": {
  629. "php": "5.4.8"
  630. }
  631. }
  632. }
  633. },
  634. "branch-alias": {
  635. "dev-master": "1.x-dev"
  636. }
  637. },
  638. "autoload": {
  639. "psr-4": {
  640. "Consolidation\\Log\\": "src"
  641. }
  642. },
  643. "notification-url": "https://packagist.org/downloads/",
  644. "license": [
  645. "MIT"
  646. ],
  647. "authors": [
  648. {
  649. "name": "Greg Anderson",
  650. "email": "greg.1.anderson@greenknowe.org"
  651. }
  652. ],
  653. "description": "Improved Psr-3 / Psr\\Log logger based on Symfony Console components.",
  654. "time": "2019-01-01T17:30:51+00:00"
  655. },
  656. {
  657. "name": "consolidation/output-formatters",
  658. "version": "3.5.0",
  659. "source": {
  660. "type": "git",
  661. "url": "https://github.com/consolidation/output-formatters.git",
  662. "reference": "99ec998ffb697e0eada5aacf81feebfb13023605"
  663. },
  664. "dist": {
  665. "type": "zip",
  666. "url": "https://api.github.com/repos/consolidation/output-formatters/zipball/99ec998ffb697e0eada5aacf81feebfb13023605",
  667. "reference": "99ec998ffb697e0eada5aacf81feebfb13023605",
  668. "shasum": ""
  669. },
  670. "require": {
  671. "dflydev/dot-access-data": "^1.1.0",
  672. "php": ">=5.4.0",
  673. "symfony/console": "^2.8|^3|^4",
  674. "symfony/finder": "^2.5|^3|^4"
  675. },
  676. "require-dev": {
  677. "g1a/composer-test-scenarios": "^3",
  678. "php-coveralls/php-coveralls": "^1",
  679. "phpunit/phpunit": "^5.7.27",
  680. "squizlabs/php_codesniffer": "^2.7",
  681. "symfony/var-dumper": "^2.8|^3|^4",
  682. "victorjonsson/markdowndocs": "^1.3"
  683. },
  684. "suggest": {
  685. "symfony/var-dumper": "For using the var_dump formatter"
  686. },
  687. "type": "library",
  688. "extra": {
  689. "scenarios": {
  690. "symfony4": {
  691. "require": {
  692. "symfony/console": "^4.0"
  693. },
  694. "require-dev": {
  695. "phpunit/phpunit": "^6"
  696. },
  697. "config": {
  698. "platform": {
  699. "php": "7.1.3"
  700. }
  701. }
  702. },
  703. "symfony3": {
  704. "require": {
  705. "symfony/console": "^3.4",
  706. "symfony/finder": "^3.4",
  707. "symfony/var-dumper": "^3.4"
  708. },
  709. "config": {
  710. "platform": {
  711. "php": "5.6.32"
  712. }
  713. }
  714. },
  715. "symfony2": {
  716. "require": {
  717. "symfony/console": "^2.8"
  718. },
  719. "require-dev": {
  720. "phpunit/phpunit": "^4.8.36"
  721. },
  722. "remove": [
  723. "php-coveralls/php-coveralls"
  724. ],
  725. "config": {
  726. "platform": {
  727. "php": "5.4.8"
  728. }
  729. },
  730. "scenario-options": {
  731. "create-lockfile": "false"
  732. }
  733. }
  734. },
  735. "branch-alias": {
  736. "dev-master": "3.x-dev"
  737. }
  738. },
  739. "autoload": {
  740. "psr-4": {
  741. "Consolidation\\OutputFormatters\\": "src"
  742. }
  743. },
  744. "notification-url": "https://packagist.org/downloads/",
  745. "license": [
  746. "MIT"
  747. ],
  748. "authors": [
  749. {
  750. "name": "Greg Anderson",
  751. "email": "greg.1.anderson@greenknowe.org"
  752. }
  753. ],
  754. "description": "Format text by applying transformations provided by plug-in formatters.",
  755. "time": "2019-05-30T23:16:01+00:00"
  756. },
  757. {
  758. "name": "consolidation/robo",
  759. "version": "1.4.12",
  760. "source": {
  761. "type": "git",
  762. "url": "https://github.com/consolidation/Robo.git",
  763. "reference": "eb45606f498b3426b9a98b7c85e300666a968e51"
  764. },
  765. "dist": {
  766. "type": "zip",
  767. "url": "https://api.github.com/repos/consolidation/Robo/zipball/eb45606f498b3426b9a98b7c85e300666a968e51",
  768. "reference": "eb45606f498b3426b9a98b7c85e300666a968e51",
  769. "shasum": ""
  770. },
  771. "require": {
  772. "consolidation/annotated-command": "^2.11.0|^4.1",
  773. "consolidation/config": "^1.2.1",
  774. "consolidation/log": "^1.1.1|^2",
  775. "consolidation/output-formatters": "^3.1.13|^4.1",
  776. "consolidation/self-update": "^1.1.5",
  777. "grasmash/yaml-expander": "^1.4",
  778. "league/container": "^2.4.1",
  779. "php": ">=5.5.0",
  780. "symfony/console": "^2.8|^3|^4",
  781. "symfony/event-dispatcher": "^2.5|^3|^4",
  782. "symfony/filesystem": "^2.5|^3|^4",
  783. "symfony/finder": "^2.5|^3|^4",
  784. "symfony/process": "^2.5|^3|^4"
  785. },
  786. "replace": {
  787. "codegyre/robo": "< 1.0"
  788. },
  789. "require-dev": {
  790. "g1a/composer-test-scenarios": "^3",
  791. "natxet/cssmin": "3.0.4",
  792. "patchwork/jsqueeze": "^2",
  793. "pear/archive_tar": "^1.4.4",
  794. "php-coveralls/php-coveralls": "^1",
  795. "phpunit/phpunit": "^5.7.27",
  796. "squizlabs/php_codesniffer": "^3"
  797. },
  798. "suggest": {
  799. "henrikbjorn/lurker": "For monitoring filesystem changes in taskWatch",
  800. "natxet/CssMin": "For minifying CSS files in taskMinify",
  801. "patchwork/jsqueeze": "For minifying JS files in taskMinify",
  802. "pear/archive_tar": "Allows tar archives to be created and extracted in taskPack and taskExtract, respectively."
  803. },
  804. "bin": [
  805. "robo"
  806. ],
  807. "type": "library",
  808. "extra": {
  809. "scenarios": {
  810. "symfony4": {
  811. "require": {
  812. "symfony/console": "^4"
  813. },
  814. "config": {
  815. "platform": {
  816. "php": "7.1.3"
  817. }
  818. }
  819. },
  820. "symfony2": {
  821. "require": {
  822. "symfony/console": "^2.8"
  823. },
  824. "require-dev": {
  825. "phpunit/phpunit": "^4.8.36"
  826. },
  827. "remove": [
  828. "php-coveralls/php-coveralls"
  829. ],
  830. "config": {
  831. "platform": {
  832. "php": "5.5.9"
  833. }
  834. },
  835. "scenario-options": {
  836. "create-lockfile": "false"
  837. }
  838. }
  839. },
  840. "branch-alias": {
  841. "dev-master": "1.x-dev"
  842. }
  843. },
  844. "autoload": {
  845. "psr-4": {
  846. "Robo\\": "src"
  847. }
  848. },
  849. "notification-url": "https://packagist.org/downloads/",
  850. "license": [
  851. "MIT"
  852. ],
  853. "authors": [
  854. {
  855. "name": "Davert",
  856. "email": "davert.php@resend.cc"
  857. }
  858. ],
  859. "description": "Modern task runner",
  860. "time": "2020-02-18T17:31:26+00:00"
  861. },
  862. {
  863. "name": "consolidation/self-update",
  864. "version": "1.2.0",
  865. "source": {
  866. "type": "git",
  867. "url": "https://github.com/consolidation/self-update.git",
  868. "reference": "dba6b2c0708f20fa3ba8008a2353b637578849b4"
  869. },
  870. "dist": {
  871. "type": "zip",
  872. "url": "https://api.github.com/repos/consolidation/self-update/zipball/dba6b2c0708f20fa3ba8008a2353b637578849b4",
  873. "reference": "dba6b2c0708f20fa3ba8008a2353b637578849b4",
  874. "shasum": ""
  875. },
  876. "require": {
  877. "php": ">=5.5.0",
  878. "symfony/console": "^2.8|^3|^4|^5",
  879. "symfony/filesystem": "^2.5|^3|^4|^5"
  880. },
  881. "bin": [
  882. "scripts/release"
  883. ],
  884. "type": "library",
  885. "extra": {
  886. "branch-alias": {
  887. "dev-master": "1.x-dev"
  888. }
  889. },
  890. "autoload": {
  891. "psr-4": {
  892. "SelfUpdate\\": "src"
  893. }
  894. },
  895. "notification-url": "https://packagist.org/downloads/",
  896. "license": [
  897. "MIT"
  898. ],
  899. "authors": [
  900. {
  901. "name": "Alexander Menk",
  902. "email": "menk@mestrona.net"
  903. },
  904. {
  905. "name": "Greg Anderson",
  906. "email": "greg.1.anderson@greenknowe.org"
  907. }
  908. ],
  909. "description": "Provides a self:update command for Symfony Console applications.",
  910. "time": "2020-04-13T02:49:20+00:00"
  911. },
  912. {
  913. "name": "consolidation/site-alias",
  914. "version": "3.0.0",
  915. "source": {
  916. "type": "git",
  917. "url": "https://github.com/consolidation/site-alias.git",
  918. "reference": "8cfd3b6ab6d541086fc970bf850864293b284e6f"
  919. },
  920. "dist": {
  921. "type": "zip",
  922. "url": "https://api.github.com/repos/consolidation/site-alias/zipball/8cfd3b6ab6d541086fc970bf850864293b284e6f",
  923. "reference": "8cfd3b6ab6d541086fc970bf850864293b284e6f",
  924. "shasum": ""
  925. },
  926. "require": {
  927. "consolidation/config": "^1.2.1",
  928. "php": ">=5.5.0"
  929. },
  930. "require-dev": {
  931. "consolidation/robo": "^1.2.3",
  932. "g1a/composer-test-scenarios": "^3",
  933. "knplabs/github-api": "^2.7",
  934. "php-coveralls/php-coveralls": "^1",
  935. "php-http/guzzle6-adapter": "^1.1",
  936. "phpunit/phpunit": "^6",
  937. "squizlabs/php_codesniffer": "^2.8",
  938. "symfony/console": "^2.8|^3|^4",
  939. "symfony/yaml": "~2.3|^3"
  940. },
  941. "type": "library",
  942. "extra": {
  943. "scenarios": {
  944. "phpunit5": {
  945. "require-dev": {
  946. "phpunit/phpunit": "^5.7.27"
  947. },
  948. "remove": [
  949. "php-coveralls/php-coveralls"
  950. ],
  951. "config": {
  952. "platform": {
  953. "php": "5.6.33"
  954. }
  955. }
  956. }
  957. },
  958. "branch-alias": {
  959. "dev-master": "3.x-dev"
  960. }
  961. },
  962. "autoload": {
  963. "psr-4": {
  964. "Consolidation\\SiteAlias\\": "src"
  965. }
  966. },
  967. "notification-url": "https://packagist.org/downloads/",
  968. "license": [
  969. "MIT"
  970. ],
  971. "authors": [
  972. {
  973. "name": "Moshe Weitzman",
  974. "email": "weitzman@tejasa.com"
  975. },
  976. {
  977. "name": "Greg Anderson",
  978. "email": "greg.1.anderson@greenknowe.org"
  979. }
  980. ],
  981. "description": "Manage alias records for local and remote sites.",
  982. "time": "2019-03-12T17:31:48+00:00"
  983. },
  984. {
  985. "name": "consolidation/site-process",
  986. "version": "2.1.0",
  987. "source": {
  988. "type": "git",
  989. "url": "https://github.com/consolidation/site-process.git",
  990. "reference": "f3211fa4c60671c6f068184221f06f932556e443"
  991. },
  992. "dist": {
  993. "type": "zip",
  994. "url": "https://api.github.com/repos/consolidation/site-process/zipball/f3211fa4c60671c6f068184221f06f932556e443",
  995. "reference": "f3211fa4c60671c6f068184221f06f932556e443",
  996. "shasum": ""
  997. },
  998. "require": {
  999. "consolidation/config": "^1.2.1",
  1000. "consolidation/site-alias": "^3",
  1001. "php": ">=5.6.0",
  1002. "symfony/process": "^3.4"
  1003. },
  1004. "require-dev": {
  1005. "consolidation/robo": "^1.3",
  1006. "g1a/composer-test-scenarios": "^3",
  1007. "knplabs/github-api": "^2.7",
  1008. "php-coveralls/php-coveralls": "^1",
  1009. "php-http/guzzle6-adapter": "^1.1",
  1010. "phpunit/phpunit": "^6",
  1011. "squizlabs/php_codesniffer": "^2.8"
  1012. },
  1013. "type": "library",
  1014. "extra": {
  1015. "scenarios": {
  1016. "phpunit5": {
  1017. "require-dev": {
  1018. "phpunit/phpunit": "^5.7.27"
  1019. },
  1020. "remove": [
  1021. "php-coveralls/php-coveralls"
  1022. ],
  1023. "config": {
  1024. "platform": {
  1025. "php": "5.6.33"
  1026. }
  1027. }
  1028. }
  1029. },
  1030. "branch-alias": {
  1031. "dev-master": "0.x-dev"
  1032. }
  1033. },
  1034. "autoload": {
  1035. "psr-4": {
  1036. "Consolidation\\SiteProcess\\": "src"
  1037. }
  1038. },
  1039. "notification-url": "https://packagist.org/downloads/",
  1040. "license": [
  1041. "MIT"
  1042. ],
  1043. "authors": [
  1044. {
  1045. "name": "Greg Anderson",
  1046. "email": "greg.1.anderson@greenknowe.org"
  1047. },
  1048. {
  1049. "name": "Moshe Weitzman",
  1050. "email": "weitzman@tejasa.com"
  1051. }
  1052. ],
  1053. "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.",
  1054. "time": "2019-09-10T17:56:24+00:00"
  1055. },
  1056. {
  1057. "name": "cweagans/composer-patches",
  1058. "version": "1.7.1",
  1059. "source": {
  1060. "type": "git",
  1061. "url": "https://github.com/cweagans/composer-patches.git",
  1062. "reference": "9888dcc74993c030b75f3dd548bb5e20cdbd740c"
  1063. },
  1064. "dist": {
  1065. "type": "zip",
  1066. "url": "https://api.github.com/repos/cweagans/composer-patches/zipball/9888dcc74993c030b75f3dd548bb5e20cdbd740c",
  1067. "reference": "9888dcc74993c030b75f3dd548bb5e20cdbd740c",
  1068. "shasum": ""
  1069. },
  1070. "require": {
  1071. "composer-plugin-api": "^1.0 || ^2.0",
  1072. "php": ">=5.3.0"
  1073. },
  1074. "require-dev": {
  1075. "composer/composer": "~1.0 || ~2.0",
  1076. "phpunit/phpunit": "~4.6"
  1077. },
  1078. "type": "composer-plugin",
  1079. "extra": {
  1080. "class": "cweagans\\Composer\\Patches"
  1081. },
  1082. "autoload": {
  1083. "psr-4": {
  1084. "cweagans\\Composer\\": "src"
  1085. }
  1086. },
  1087. "notification-url": "https://packagist.org/downloads/",
  1088. "license": [
  1089. "BSD-3-Clause"
  1090. ],
  1091. "authors": [
  1092. {
  1093. "name": "Cameron Eagans",
  1094. "email": "me@cweagans.net"
  1095. }
  1096. ],
  1097. "description": "Provides a way to patch Composer packages.",
  1098. "time": "2021-06-08T15:12:46+00:00"
  1099. },
  1100. {
  1101. "name": "dflydev/dot-access-data",
  1102. "version": "v1.1.0",
  1103. "source": {
  1104. "type": "git",
  1105. "url": "https://github.com/dflydev/dflydev-dot-access-data.git",
  1106. "reference": "3fbd874921ab2c041e899d044585a2ab9795df8a"
  1107. },
  1108. "dist": {
  1109. "type": "zip",
  1110. "url": "https://api.github.com/repos/dflydev/dflydev-dot-access-data/zipball/3fbd874921ab2c041e899d044585a2ab9795df8a",
  1111. "reference": "3fbd874921ab2c041e899d044585a2ab9795df8a",
  1112. "shasum": ""
  1113. },
  1114. "require": {
  1115. "php": ">=5.3.2"
  1116. },
  1117. "type": "library",
  1118. "extra": {
  1119. "branch-alias": {
  1120. "dev-master": "1.0-dev"
  1121. }
  1122. },
  1123. "autoload": {
  1124. "psr-0": {
  1125. "Dflydev\\DotAccessData": "src"
  1126. }
  1127. },
  1128. "notification-url": "https://packagist.org/downloads/",
  1129. "license": [
  1130. "MIT"
  1131. ],
  1132. "authors": [
  1133. {
  1134. "name": "Dragonfly Development Inc.",
  1135. "email": "info@dflydev.com",
  1136. "homepage": "http://dflydev.com"
  1137. },
  1138. {
  1139. "name": "Beau Simensen",
  1140. "email": "beau@dflydev.com",
  1141. "homepage": "http://beausimensen.com"
  1142. },
  1143. {
  1144. "name": "Carlos Frutos",
  1145. "email": "carlos@kiwing.it",
  1146. "homepage": "https://github.com/cfrutos"
  1147. }
  1148. ],
  1149. "description": "Given a deep data structure, access data by dot notation.",
  1150. "homepage": "https://github.com/dflydev/dflydev-dot-access-data",
  1151. "keywords": [
  1152. "access",
  1153. "data",
  1154. "dot",
  1155. "notation"
  1156. ],
  1157. "time": "2017-01-20T21:14:22+00:00"
  1158. },
  1159. {
  1160. "name": "dnoegel/php-xdg-base-dir",
  1161. "version": "v0.1.1",
  1162. "source": {
  1163. "type": "git",
  1164. "url": "https://github.com/dnoegel/php-xdg-base-dir.git",
  1165. "reference": "8f8a6e48c5ecb0f991c2fdcf5f154a47d85f9ffd"
  1166. },
  1167. "dist": {
  1168. "type": "zip",
  1169. "url": "https://api.github.com/repos/dnoegel/php-xdg-base-dir/zipball/8f8a6e48c5ecb0f991c2fdcf5f154a47d85f9ffd",
  1170. "reference": "8f8a6e48c5ecb0f991c2fdcf5f154a47d85f9ffd",
  1171. "shasum": ""
  1172. },
  1173. "require": {
  1174. "php": ">=5.3.2"
  1175. },
  1176. "require-dev": {
  1177. "phpunit/phpunit": "~7.0|~6.0|~5.0|~4.8.35"
  1178. },
  1179. "type": "library",
  1180. "autoload": {
  1181. "psr-4": {
  1182. "XdgBaseDir\\": "src/"
  1183. }
  1184. },
  1185. "notification-url": "https://packagist.org/downloads/",
  1186. "license": [
  1187. "MIT"
  1188. ],
  1189. "description": "implementation of xdg base directory specification for php",
  1190. "time": "2019-12-04T15:06:13+00:00"
  1191. },
  1192. {
  1193. "name": "doctrine/annotations",
  1194. "version": "v1.4.0",
  1195. "source": {
  1196. "type": "git",
  1197. "url": "https://github.com/doctrine/annotations.git",
  1198. "reference": "54cacc9b81758b14e3ce750f205a393d52339e97"
  1199. },
  1200. "dist": {
  1201. "type": "zip",
  1202. "url": "https://api.github.com/repos/doctrine/annotations/zipball/54cacc9b81758b14e3ce750f205a393d52339e97",
  1203. "reference": "54cacc9b81758b14e3ce750f205a393d52339e97",
  1204. "shasum": ""
  1205. },
  1206. "require": {
  1207. "doctrine/lexer": "1.*",
  1208. "php": "^5.6 || ^7.0"
  1209. },
  1210. "require-dev": {
  1211. "doctrine/cache": "1.*",
  1212. "phpunit/phpunit": "^5.7"
  1213. },
  1214. "type": "library",
  1215. "extra": {
  1216. "branch-alias": {
  1217. "dev-master": "1.4.x-dev"
  1218. }
  1219. },
  1220. "autoload": {
  1221. "psr-4": {
  1222. "Doctrine\\Common\\Annotations\\": "lib/Doctrine/Common/Annotations"
  1223. }
  1224. },
  1225. "notification-url": "https://packagist.org/downloads/",
  1226. "license": [
  1227. "MIT"
  1228. ],
  1229. "authors": [
  1230. {
  1231. "name": "Roman Borschel",
  1232. "email": "roman@code-factory.org"
  1233. },
  1234. {
  1235. "name": "Benjamin Eberlei",
  1236. "email": "kontakt@beberlei.de"
  1237. },
  1238. {
  1239. "name": "Guilherme Blanco",
  1240. "email": "guilhermeblanco@gmail.com"
  1241. },
  1242. {
  1243. "name": "Jonathan Wage",
  1244. "email": "jonwage@gmail.com"
  1245. },
  1246. {
  1247. "name": "Johannes Schmitt",
  1248. "email": "schmittjoh@gmail.com"
  1249. }
  1250. ],
  1251. "description": "Docblock Annotations Parser",
  1252. "homepage": "http://www.doctrine-project.org",
  1253. "keywords": [
  1254. "annotations",
  1255. "docblock",
  1256. "parser"
  1257. ],
  1258. "support": {
  1259. "issues": "https://github.com/doctrine/annotations/issues",
  1260. "source": "https://github.com/doctrine/annotations/tree/v1.4.0"
  1261. },
  1262. "time": "2017-02-24T16:22:25+00:00"
  1263. },
  1264. {
  1265. "name": "doctrine/cache",
  1266. "version": "v1.6.2",
  1267. "source": {
  1268. "type": "git",
  1269. "url": "https://github.com/doctrine/cache.git",
  1270. "reference": "eb152c5100571c7a45470ff2a35095ab3f3b900b"
  1271. },
  1272. "dist": {
  1273. "type": "zip",
  1274. "url": "https://api.github.com/repos/doctrine/cache/zipball/eb152c5100571c7a45470ff2a35095ab3f3b900b",
  1275. "reference": "eb152c5100571c7a45470ff2a35095ab3f3b900b",
  1276. "shasum": ""
  1277. },
  1278. "require": {
  1279. "php": "~5.5|~7.0"
  1280. },
  1281. "conflict": {
  1282. "doctrine/common": ">2.2,<2.4"
  1283. },
  1284. "require-dev": {
  1285. "phpunit/phpunit": "~4.8|~5.0",
  1286. "predis/predis": "~1.0",
  1287. "satooshi/php-coveralls": "~0.6"
  1288. },
  1289. "type": "library",
  1290. "extra": {
  1291. "branch-alias": {
  1292. "dev-master": "1.6.x-dev"
  1293. }
  1294. },
  1295. "autoload": {
  1296. "psr-4": {
  1297. "Doctrine\\Common\\Cache\\": "lib/Doctrine/Common/Cache"
  1298. }
  1299. },
  1300. "notification-url": "https://packagist.org/downloads/",
  1301. "license": [
  1302. "MIT"
  1303. ],
  1304. "authors": [
  1305. {
  1306. "name": "Roman Borschel",
  1307. "email": "roman@code-factory.org"
  1308. },
  1309. {
  1310. "name": "Benjamin Eberlei",
  1311. "email": "kontakt@beberlei.de"
  1312. },
  1313. {
  1314. "name": "Guilherme Blanco",
  1315. "email": "guilhermeblanco@gmail.com"
  1316. },
  1317. {
  1318. "name": "Jonathan Wage",
  1319. "email": "jonwage@gmail.com"
  1320. },
  1321. {
  1322. "name": "Johannes Schmitt",
  1323. "email": "schmittjoh@gmail.com"
  1324. }
  1325. ],
  1326. "description": "Caching library offering an object-oriented API for many cache backends",
  1327. "homepage": "http://www.doctrine-project.org",
  1328. "keywords": [
  1329. "cache",
  1330. "caching"
  1331. ],
  1332. "support": {
  1333. "issues": "https://github.com/doctrine/cache/issues",
  1334. "source": "https://github.com/doctrine/cache/tree/1.6.x"
  1335. },
  1336. "time": "2017-07-22T12:49:21+00:00"
  1337. },
  1338. {
  1339. "name": "doctrine/collections",
  1340. "version": "v1.4.0",
  1341. "source": {
  1342. "type": "git",
  1343. "url": "https://github.com/doctrine/collections.git",
  1344. "reference": "1a4fb7e902202c33cce8c55989b945612943c2ba"
  1345. },
  1346. "dist": {
  1347. "type": "zip",
  1348. "url": "https://api.github.com/repos/doctrine/collections/zipball/1a4fb7e902202c33cce8c55989b945612943c2ba",
  1349. "reference": "1a4fb7e902202c33cce8c55989b945612943c2ba",
  1350. "shasum": ""
  1351. },
  1352. "require": {
  1353. "php": "^5.6 || ^7.0"
  1354. },
  1355. "require-dev": {
  1356. "doctrine/coding-standard": "~0.1@dev",
  1357. "phpunit/phpunit": "^5.7"
  1358. },
  1359. "type": "library",
  1360. "extra": {
  1361. "branch-alias": {
  1362. "dev-master": "1.3.x-dev"
  1363. }
  1364. },
  1365. "autoload": {
  1366. "psr-0": {
  1367. "Doctrine\\Common\\Collections\\": "lib/"
  1368. }
  1369. },
  1370. "notification-url": "https://packagist.org/downloads/",
  1371. "license": [
  1372. "MIT"
  1373. ],
  1374. "authors": [
  1375. {
  1376. "name": "Roman Borschel",
  1377. "email": "roman@code-factory.org"
  1378. },
  1379. {
  1380. "name": "Benjamin Eberlei",
  1381. "email": "kontakt@beberlei.de"
  1382. },
  1383. {
  1384. "name": "Guilherme Blanco",
  1385. "email": "guilhermeblanco@gmail.com"
  1386. },
  1387. {
  1388. "name": "Jonathan Wage",
  1389. "email": "jonwage@gmail.com"
  1390. },
  1391. {
  1392. "name": "Johannes Schmitt",
  1393. "email": "schmittjoh@gmail.com"
  1394. }
  1395. ],
  1396. "description": "Collections Abstraction library",
  1397. "homepage": "http://www.doctrine-project.org",
  1398. "keywords": [
  1399. "array",
  1400. "collections",
  1401. "iterator"
  1402. ],
  1403. "support": {
  1404. "issues": "https://github.com/doctrine/collections/issues",
  1405. "source": "https://github.com/doctrine/collections/tree/master"
  1406. },
  1407. "time": "2017-01-03T10:49:41+00:00"
  1408. },
  1409. {
  1410. "name": "doctrine/common",
  1411. "version": "v2.7.3",
  1412. "source": {
  1413. "type": "git",
  1414. "url": "https://github.com/doctrine/common.git",
  1415. "reference": "4acb8f89626baafede6ee5475bc5844096eba8a9"
  1416. },
  1417. "dist": {
  1418. "type": "zip",
  1419. "url": "https://api.github.com/repos/doctrine/common/zipball/4acb8f89626baafede6ee5475bc5844096eba8a9",
  1420. "reference": "4acb8f89626baafede6ee5475bc5844096eba8a9",
  1421. "shasum": ""
  1422. },
  1423. "require": {
  1424. "doctrine/annotations": "1.*",
  1425. "doctrine/cache": "1.*",
  1426. "doctrine/collections": "1.*",
  1427. "doctrine/inflector": "1.*",
  1428. "doctrine/lexer": "1.*",
  1429. "php": "~5.6|~7.0"
  1430. },
  1431. "require-dev": {
  1432. "phpunit/phpunit": "^5.4.6"
  1433. },
  1434. "type": "library",
  1435. "extra": {
  1436. "branch-alias": {
  1437. "dev-master": "2.7.x-dev"
  1438. }
  1439. },
  1440. "autoload": {
  1441. "psr-4": {
  1442. "Doctrine\\Common\\": "lib/Doctrine/Common"
  1443. }
  1444. },
  1445. "notification-url": "https://packagist.org/downloads/",
  1446. "license": [
  1447. "MIT"
  1448. ],
  1449. "authors": [
  1450. {
  1451. "name": "Roman Borschel",
  1452. "email": "roman@code-factory.org"
  1453. },
  1454. {
  1455. "name": "Benjamin Eberlei",
  1456. "email": "kontakt@beberlei.de"
  1457. },
  1458. {
  1459. "name": "Guilherme Blanco",
  1460. "email": "guilhermeblanco@gmail.com"
  1461. },
  1462. {
  1463. "name": "Jonathan Wage",
  1464. "email": "jonwage@gmail.com"
  1465. },
  1466. {
  1467. "name": "Johannes Schmitt",
  1468. "email": "schmittjoh@gmail.com"
  1469. }
  1470. ],
  1471. "description": "Common Library for Doctrine projects",
  1472. "homepage": "http://www.doctrine-project.org",
  1473. "keywords": [
  1474. "annotations",
  1475. "collections",
  1476. "eventmanager",
  1477. "persistence",
  1478. "spl"
  1479. ],
  1480. "support": {
  1481. "issues": "https://github.com/doctrine/common/issues",
  1482. "source": "https://github.com/doctrine/common/tree/v2.7.3"
  1483. },
  1484. "time": "2017-07-22T08:35:12+00:00"
  1485. },
  1486. {
  1487. "name": "doctrine/inflector",
  1488. "version": "v1.2.0",
  1489. "source": {
  1490. "type": "git",
  1491. "url": "https://github.com/doctrine/inflector.git",
  1492. "reference": "e11d84c6e018beedd929cff5220969a3c6d1d462"
  1493. },
  1494. "dist": {
  1495. "type": "zip",
  1496. "url": "https://api.github.com/repos/doctrine/inflector/zipball/e11d84c6e018beedd929cff5220969a3c6d1d462",
  1497. "reference": "e11d84c6e018beedd929cff5220969a3c6d1d462",
  1498. "shasum": ""
  1499. },
  1500. "require": {
  1501. "php": "^7.0"
  1502. },
  1503. "require-dev": {
  1504. "phpunit/phpunit": "^6.2"
  1505. },
  1506. "type": "library",
  1507. "extra": {
  1508. "branch-alias": {
  1509. "dev-master": "1.2.x-dev"
  1510. }
  1511. },
  1512. "autoload": {
  1513. "psr-4": {
  1514. "Doctrine\\Common\\Inflector\\": "lib/Doctrine/Common/Inflector"
  1515. }
  1516. },
  1517. "notification-url": "https://packagist.org/downloads/",
  1518. "license": [
  1519. "MIT"
  1520. ],
  1521. "authors": [
  1522. {
  1523. "name": "Roman Borschel",
  1524. "email": "roman@code-factory.org"
  1525. },
  1526. {
  1527. "name": "Benjamin Eberlei",
  1528. "email": "kontakt@beberlei.de"
  1529. },
  1530. {
  1531. "name": "Guilherme Blanco",
  1532. "email": "guilhermeblanco@gmail.com"
  1533. },
  1534. {
  1535. "name": "Jonathan Wage",
  1536. "email": "jonwage@gmail.com"
  1537. },
  1538. {
  1539. "name": "Johannes Schmitt",
  1540. "email": "schmittjoh@gmail.com"
  1541. }
  1542. ],
  1543. "description": "Common String Manipulations with regard to casing and singular/plural rules.",
  1544. "homepage": "http://www.doctrine-project.org",
  1545. "keywords": [
  1546. "inflection",
  1547. "pluralize",
  1548. "singularize",
  1549. "string"
  1550. ],
  1551. "support": {
  1552. "source": "https://github.com/doctrine/inflector/tree/master"
  1553. },
  1554. "time": "2017-07-22T12:18:28+00:00"
  1555. },
  1556. {
  1557. "name": "doctrine/lexer",
  1558. "version": "1.0.2",
  1559. "source": {
  1560. "type": "git",
  1561. "url": "https://github.com/doctrine/lexer.git",
  1562. "reference": "1febd6c3ef84253d7c815bed85fc622ad207a9f8"
  1563. },
  1564. "dist": {
  1565. "type": "zip",
  1566. "url": "https://api.github.com/repos/doctrine/lexer/zipball/1febd6c3ef84253d7c815bed85fc622ad207a9f8",
  1567. "reference": "1febd6c3ef84253d7c815bed85fc622ad207a9f8",
  1568. "shasum": ""
  1569. },
  1570. "require": {
  1571. "php": ">=5.3.2"
  1572. },
  1573. "require-dev": {
  1574. "phpunit/phpunit": "^4.5"
  1575. },
  1576. "type": "library",
  1577. "extra": {
  1578. "branch-alias": {
  1579. "dev-master": "1.0.x-dev"
  1580. }
  1581. },
  1582. "autoload": {
  1583. "psr-4": {
  1584. "Doctrine\\Common\\Lexer\\": "lib/Doctrine/Common/Lexer"
  1585. }
  1586. },
  1587. "notification-url": "https://packagist.org/downloads/",
  1588. "license": [
  1589. "MIT"
  1590. ],
  1591. "authors": [
  1592. {
  1593. "name": "Roman Borschel",
  1594. "email": "roman@code-factory.org"
  1595. },
  1596. {
  1597. "name": "Guilherme Blanco",
  1598. "email": "guilhermeblanco@gmail.com"
  1599. },
  1600. {
  1601. "name": "Johannes Schmitt",
  1602. "email": "schmittjoh@gmail.com"
  1603. }
  1604. ],
  1605. "description": "PHP Doctrine Lexer parser library that can be used in Top-Down, Recursive Descent Parsers.",
  1606. "homepage": "https://www.doctrine-project.org/projects/lexer.html",
  1607. "keywords": [
  1608. "annotations",
  1609. "docblock",
  1610. "lexer",
  1611. "parser",
  1612. "php"
  1613. ],
  1614. "support": {
  1615. "issues": "https://github.com/doctrine/lexer/issues",
  1616. "source": "https://github.com/doctrine/lexer/tree/1.0.2"
  1617. },
  1618. "time": "2019-06-08T11:03:04+00:00"
  1619. },
  1620. {
  1621. "name": "drupal/addtoany",
  1622. "version": "1.14.0",
  1623. "source": {
  1624. "type": "git",
  1625. "url": "https://git.drupalcode.org/project/addtoany.git",
  1626. "reference": "8.x-1.14"
  1627. },
  1628. "dist": {
  1629. "type": "zip",
  1630. "url": "https://ftp.drupal.org/files/projects/addtoany-8.x-1.14.zip",
  1631. "reference": "8.x-1.14",
  1632. "shasum": "269ec4d1cfaf93132d5945edebf691ec7c04901a"
  1633. },
  1634. "require": {
  1635. "drupal/core": "^8 || ^9"
  1636. },
  1637. "type": "drupal-module",
  1638. "extra": {
  1639. "drupal": {
  1640. "version": "8.x-1.14",
  1641. "datestamp": "1589571718",
  1642. "security-coverage": {
  1643. "status": "covered",
  1644. "message": "Covered by Drupal's security advisory policy"
  1645. }
  1646. }
  1647. },
  1648. "notification-url": "https://packages.drupal.org/8/downloads",
  1649. "license": [
  1650. "GPL-2.0-or-later"
  1651. ],
  1652. "authors": [
  1653. {
  1654. "name": "AddToAny",
  1655. "homepage": "https://www.drupal.org/user/2640913"
  1656. },
  1657. {
  1658. "name": "micropat",
  1659. "homepage": "https://www.drupal.org/user/260224"
  1660. }
  1661. ],
  1662. "description": "Share buttons for Drupal including the AddToAny universal share button, Facebook, Twitter, Pinterest, WhatsApp and many more.",
  1663. "homepage": "https://www.drupal.org/project/addtoany",
  1664. "keywords": [
  1665. "Drupal"
  1666. ],
  1667. "support": {
  1668. "source": "https://git.drupalcode.org/project/addtoany",
  1669. "issues": "https://www.drupal.org/project/issues/addtoany"
  1670. }
  1671. },
  1672. {
  1673. "name": "drupal/admin_toolbar",
  1674. "version": "2.3.0",
  1675. "source": {
  1676. "type": "git",
  1677. "url": "https://git.drupalcode.org/project/admin_toolbar.git",
  1678. "reference": "8.x-2.3"
  1679. },
  1680. "dist": {
  1681. "type": "zip",
  1682. "url": "https://ftp.drupal.org/files/projects/admin_toolbar-8.x-2.3.zip",
  1683. "reference": "8.x-2.3",
  1684. "shasum": "cf8ee1aa8adfc604db4394655e3ba4c423d5f24a"
  1685. },
  1686. "require": {
  1687. "drupal/core": "^8.8.0 || ^9.0"
  1688. },
  1689. "type": "drupal-module",
  1690. "extra": {
  1691. "drupal": {
  1692. "version": "8.x-2.3",
  1693. "datestamp": "1592535714",
  1694. "security-coverage": {
  1695. "status": "covered",
  1696. "message": "Covered by Drupal's security advisory policy"
  1697. }
  1698. }
  1699. },
  1700. "notification-url": "https://packages.drupal.org/8/downloads",
  1701. "license": [
  1702. "GPL-2.0-or-later"
  1703. ],
  1704. "authors": [
  1705. {
  1706. "name": "Wilfrid Roze (eme)",
  1707. "homepage": "https://www.drupal.org/u/eme",
  1708. "role": "Maintainer"
  1709. },
  1710. {
  1711. "name": "Romain Jarraud (romainj)",
  1712. "homepage": "https://www.drupal.org/u/romainj",
  1713. "role": "Maintainer"
  1714. },
  1715. {
  1716. "name": "Adrian Cid Almaguer (adriancid)",
  1717. "homepage": "https://www.drupal.org/u/adriancid",
  1718. "email": "adriancid@gmail.com",
  1719. "role": "Maintainer"
  1720. },
  1721. {
  1722. "name": "Mohamed Anis Taktak (matio89)",
  1723. "homepage": "https://www.drupal.org/u/matio89",
  1724. "role": "Maintainer"
  1725. },
  1726. {
  1727. "name": "fethi.krout",
  1728. "homepage": "https://www.drupal.org/user/3206765"
  1729. },
  1730. {
  1731. "name": "matio89",
  1732. "homepage": "https://www.drupal.org/user/2320090"
  1733. },
  1734. {
  1735. "name": "romainj",
  1736. "homepage": "https://www.drupal.org/user/370706"
  1737. }
  1738. ],
  1739. "description": "Provides a drop-down menu interface to the core Drupal Toolbar.",
  1740. "homepage": "http://drupal.org/project/admin_toolbar",
  1741. "keywords": [
  1742. "Drupal",
  1743. "Toolbar"
  1744. ],
  1745. "support": {
  1746. "source": "https://git.drupalcode.org/project/admin_toolbar",
  1747. "issues": "https://www.drupal.org/project/issues/admin_toolbar"
  1748. }
  1749. },
  1750. {
  1751. "name": "drupal/adminimal_theme",
  1752. "version": "1.6.0",
  1753. "source": {
  1754. "type": "git",
  1755. "url": "https://git.drupalcode.org/project/adminimal_theme.git",
  1756. "reference": "8.x-1.6"
  1757. },
  1758. "dist": {
  1759. "type": "zip",
  1760. "url": "https://ftp.drupal.org/files/projects/adminimal_theme-8.x-1.6.zip",
  1761. "reference": "8.x-1.6",
  1762. "shasum": "89132d0853388afe8dfd11fb83c69a48d8c13413"
  1763. },
  1764. "require": {
  1765. "drupal/core": "^8.8 || ^9"
  1766. },
  1767. "type": "drupal-theme",
  1768. "extra": {
  1769. "drupal": {
  1770. "version": "8.x-1.6",
  1771. "datestamp": "1602006937",
  1772. "security-coverage": {
  1773. "status": "covered",
  1774. "message": "Covered by Drupal's security advisory policy"
  1775. }
  1776. }
  1777. },
  1778. "notification-url": "https://packages.drupal.org/8/downloads",
  1779. "license": [
  1780. "GPL-2.0+"
  1781. ],
  1782. "authors": [
  1783. {
  1784. "name": "ANDiTKO",
  1785. "homepage": "https://www.drupal.org/user/1428124"
  1786. },
  1787. {
  1788. "name": "andrey.troeglazov",
  1789. "homepage": "https://www.drupal.org/user/3145389"
  1790. },
  1791. {
  1792. "name": "realityloop",
  1793. "homepage": "https://www.drupal.org/user/139189"
  1794. },
  1795. {
  1796. "name": "rjjakes",
  1797. "homepage": "https://www.drupal.org/user/3457245"
  1798. }
  1799. ],
  1800. "description": "Drupal administration theme with modern minimalist design.",
  1801. "homepage": "https://www.drupal.org/project/adminimal_theme",
  1802. "support": {
  1803. "source": "https://git.drupalcode.org/project/adminimal_theme",
  1804. "issues": "https://www.drupal.org/project/issues/adminimal_theme"
  1805. }
  1806. },
  1807. {
  1808. "name": "drupal/audiofield",
  1809. "version": "1.13.0",
  1810. "source": {
  1811. "type": "git",
  1812. "url": "https://git.drupalcode.org/project/audiofield.git",
  1813. "reference": "8.x-1.13"
  1814. },
  1815. "dist": {
  1816. "type": "zip",
  1817. "url": "https://ftp.drupal.org/files/projects/audiofield-8.x-1.13.zip",
  1818. "reference": "8.x-1.13",
  1819. "shasum": "85bb66d231b2f961728b559351d5dfd155b2c78c"
  1820. },
  1821. "require": {
  1822. "drupal/core": "^8 || ^9 || ^10"
  1823. },
  1824. "type": "drupal-module",
  1825. "extra": {
  1826. "drupal": {
  1827. "version": "8.x-1.13",
  1828. "datestamp": "1681143245",
  1829. "security-coverage": {
  1830. "status": "covered",
  1831. "message": "Covered by Drupal's security advisory policy"
  1832. }
  1833. },
  1834. "drush": {
  1835. "services": {
  1836. "drush.services.yml": "^9"
  1837. }
  1838. }
  1839. },
  1840. "notification-url": "https://packages.drupal.org/8/downloads",
  1841. "license": [
  1842. "GPL-2.0-or-later"
  1843. ],
  1844. "authors": [
  1845. {
  1846. "name": "Daniel Moberly",
  1847. "homepage": "https://www.drupal.org/u/danielmoberly",
  1848. "role": "Maintainer"
  1849. },
  1850. {
  1851. "name": "tamerzg",
  1852. "homepage": "https://www.drupal.org/user/464564"
  1853. }
  1854. ],
  1855. "description": "AudioField Module",
  1856. "homepage": "https://www.drupal.org/project/audiofield",
  1857. "support": {
  1858. "source": "https://git.drupalcode.org/project/audiofield",
  1859. "issues": "https://www.drupal.org/project/issues/audiofield"
  1860. }
  1861. },
  1862. {
  1863. "name": "drupal/autologout",
  1864. "version": "1.3.0",
  1865. "source": {
  1866. "type": "git",
  1867. "url": "https://git.drupalcode.org/project/autologout.git",
  1868. "reference": "8.x-1.3"
  1869. },
  1870. "dist": {
  1871. "type": "zip",
  1872. "url": "https://ftp.drupal.org/files/projects/autologout-8.x-1.3.zip",
  1873. "reference": "8.x-1.3",
  1874. "shasum": "87733b2042d9dcdee0d8f33d206872208a8c97ea"
  1875. },
  1876. "require": {
  1877. "drupal/core": "^8 || ^9"
  1878. },
  1879. "type": "drupal-module",
  1880. "extra": {
  1881. "drupal": {
  1882. "version": "8.x-1.3",
  1883. "datestamp": "1587193798",
  1884. "security-coverage": {
  1885. "status": "covered",
  1886. "message": "Covered by Drupal's security advisory policy"
  1887. }
  1888. },
  1889. "patches_applied": {
  1890. "AutologoutManager class incompatible with interface https://www.drupal.org/project/autologout/issues/3121214": "https://www.drupal.org/files/issues/2020-03-20/3121214-autologout_manager_incompatible_interface.patch"
  1891. }
  1892. },
  1893. "notification-url": "https://packages.drupal.org/8/downloads",
  1894. "license": [
  1895. "GPL-2.0+"
  1896. ],
  1897. "authors": [
  1898. {
  1899. "name": "AjK",
  1900. "homepage": "https://www.drupal.org/user/39030"
  1901. },
  1902. {
  1903. "name": "AjitS",
  1904. "homepage": "https://www.drupal.org/user/981944"
  1905. },
  1906. {
  1907. "name": "boshtian",
  1908. "homepage": "https://www.drupal.org/user/1773456"
  1909. },
  1910. {
  1911. "name": "dandrews",
  1912. "homepage": "https://www.drupal.org/user/2014490"
  1913. },
  1914. {
  1915. "name": "darksnow",
  1916. "homepage": "https://www.drupal.org/user/391915"
  1917. },
  1918. {
  1919. "name": "johnennew",
  1920. "homepage": "https://www.drupal.org/user/1150042"
  1921. },
  1922. {
  1923. "name": "jrglasgow",
  1924. "homepage": "https://www.drupal.org/user/36590"
  1925. },
  1926. {
  1927. "name": "kmasood",
  1928. "homepage": "https://www.drupal.org/user/1262860"
  1929. },
  1930. {
  1931. "name": "levelos",
  1932. "homepage": "https://www.drupal.org/user/54135"
  1933. },
  1934. {
  1935. "name": "prabeen.giri",
  1936. "homepage": "https://www.drupal.org/user/913078"
  1937. },
  1938. {
  1939. "name": "str8",
  1940. "homepage": "https://www.drupal.org/user/2865063"
  1941. }
  1942. ],
  1943. "description": "Adds automated timed logout.",
  1944. "homepage": "http://drupal.org/project/autologout",
  1945. "support": {
  1946. "source": "https://git.drupalcode.org/project/autologout"
  1947. }
  1948. },
  1949. {
  1950. "name": "drupal/basic",
  1951. "version": "2.1.0",
  1952. "source": {
  1953. "type": "git",
  1954. "url": "https://git.drupalcode.org/project/basic.git",
  1955. "reference": "8.x-2.1"
  1956. },
  1957. "dist": {
  1958. "type": "zip",
  1959. "url": "https://ftp.drupal.org/files/projects/basic-8.x-2.1.zip",
  1960. "reference": "8.x-2.1",
  1961. "shasum": "2497b30bd419e6f49a72a1f80ab40b47582df4f5"
  1962. },
  1963. "require": {
  1964. "drupal/core": "^8.8 || ^9"
  1965. },
  1966. "type": "drupal-theme",
  1967. "extra": {
  1968. "drupal": {
  1969. "version": "8.x-2.1",
  1970. "datestamp": "1612916291",
  1971. "security-coverage": {
  1972. "status": "covered",
  1973. "message": "Covered by Drupal's security advisory policy"
  1974. }
  1975. }
  1976. },
  1977. "notification-url": "https://packages.drupal.org/8/downloads",
  1978. "license": [
  1979. "GPL-2.0+"
  1980. ],
  1981. "authors": [
  1982. {
  1983. "name": "Steve Krueger",
  1984. "homepage": "http://thejibe.com",
  1985. "email": "steve@thejibe.com",
  1986. "role": "Maintainer"
  1987. },
  1988. {
  1989. "name": "Joël Pittet",
  1990. "homepage": "https://www.drupal.org/u/joelpittet",
  1991. "email": "joel@pittet.ca",
  1992. "role": "Maintainer"
  1993. },
  1994. {
  1995. "name": "Leah Wagner",
  1996. "homepage": "http://thejibe.com",
  1997. "email": "leah@thejibe.com",
  1998. "role": "Maintainer"
  1999. },
  2000. {
  2001. "name": "Catherine Winters",
  2002. "homepage": "http://www.catherinewinters.com",
  2003. "email": "catherine@catherinewinters.com",
  2004. "role": "Maintainer"
  2005. },
  2006. {
  2007. "name": "Johannes Schmidt",
  2008. "homepage": "http://2tabs.com",
  2009. "email": "mail@2tabs.com",
  2010. "role": "Maintainer"
  2011. },
  2012. {
  2013. "name": "Chuck Kosman",
  2014. "homepage": "http://thejibe.com",
  2015. "email": "chuck@thejibe.com",
  2016. "role": "Maintainer"
  2017. },
  2018. {
  2019. "name": "SteveK",
  2020. "homepage": "https://www.drupal.org/user/111656"
  2021. }
  2022. ],
  2023. "description": "HTML5, SASS, Responsive grid starter theme.",
  2024. "homepage": "http://drupal.org/project/basic",
  2025. "support": {
  2026. "source": "http://cgit.drupalcode.org/basic",
  2027. "issues": "https://www.drupal.org/project/issues/basic",
  2028. "irc": "irc://irc.freenode.org/drupal-contribute"
  2029. }
  2030. },
  2031. {
  2032. "name": "drupal/better_messages",
  2033. "version": "2.0.0-alpha2",
  2034. "source": {
  2035. "type": "git",
  2036. "url": "https://git.drupalcode.org/project/better_messages.git",
  2037. "reference": "2.0.0-alpha2"
  2038. },
  2039. "dist": {
  2040. "type": "zip",
  2041. "url": "https://ftp.drupal.org/files/projects/better_messages-2.0.0-alpha2.zip",
  2042. "reference": "2.0.0-alpha2",
  2043. "shasum": "e93618447a97e90d95b7242cc6398be4346b59b4"
  2044. },
  2045. "require": {
  2046. "drupal/core": "^8 || ^9"
  2047. },
  2048. "type": "drupal-module",
  2049. "extra": {
  2050. "drupal": {
  2051. "version": "2.0.0-alpha2",
  2052. "datestamp": "1644241962",
  2053. "security-coverage": {
  2054. "status": "not-covered",
  2055. "message": "Alpha releases are not covered by Drupal security advisories."
  2056. }
  2057. }
  2058. },
  2059. "notification-url": "https://packages.drupal.org/8/downloads",
  2060. "license": [
  2061. "GPL-2.0-or-later"
  2062. ],
  2063. "authors": [
  2064. {
  2065. "name": "bucefal91",
  2066. "homepage": "https://www.drupal.org/user/504128"
  2067. },
  2068. {
  2069. "name": "le72",
  2070. "homepage": "https://www.drupal.org/user/1866896"
  2071. },
  2072. {
  2073. "name": "mohammed j. razem",
  2074. "homepage": "https://www.drupal.org/user/255384"
  2075. },
  2076. {
  2077. "name": "usingsession",
  2078. "homepage": "https://www.drupal.org/user/3582050"
  2079. }
  2080. ],
  2081. "description": "This module adds simple functions to make Drupal messages look and act better.",
  2082. "homepage": "https://www.drupal.org/project/better_messages",
  2083. "support": {
  2084. "source": "https://git.drupalcode.org/project/better_messages"
  2085. }
  2086. },
  2087. {
  2088. "name": "drupal/bulkdelete",
  2089. "version": "dev-1.x",
  2090. "source": {
  2091. "type": "git",
  2092. "url": "https://git.drupalcode.org/project/bulkdelete.git",
  2093. "reference": "36e12429e99606463b9ef15203c2018de69965b2"
  2094. },
  2095. "require": {
  2096. "drupal/core": "^8.7.7 || ^9"
  2097. },
  2098. "type": "drupal-module",
  2099. "extra": {
  2100. "branch-alias": {
  2101. "dev-1.x": "1.x-dev"
  2102. },
  2103. "drupal": {
  2104. "version": "8.x-1.x-dev",
  2105. "datestamp": "1569586386",
  2106. "security-coverage": {
  2107. "status": "not-covered",
  2108. "message": "Dev releases are not covered by Drupal security advisories."
  2109. }
  2110. }
  2111. },
  2112. "notification-url": "https://packages.drupal.org/8/downloads",
  2113. "license": [
  2114. "GPL-2.0-or-later"
  2115. ],
  2116. "authors": [
  2117. {
  2118. "name": "Kars-T",
  2119. "homepage": "https://www.drupal.org/user/224499"
  2120. },
  2121. {
  2122. "name": "Rahul Seth",
  2123. "homepage": "https://www.drupal.org/user/2694359"
  2124. },
  2125. {
  2126. "name": "adriancid",
  2127. "homepage": "https://www.drupal.org/user/1962106"
  2128. },
  2129. {
  2130. "name": "robertDouglass",
  2131. "homepage": "https://www.drupal.org/user/5449"
  2132. }
  2133. ],
  2134. "description": "Adds an administrative option to bulk delete nodes by content type using the batch API.",
  2135. "homepage": "https://www.drupal.org/project/bulkdelete",
  2136. "support": {
  2137. "source": "https://git.drupalcode.org/project/bulkdelete"
  2138. },
  2139. "time": "2020-05-24T06:01:38+00:00"
  2140. },
  2141. {
  2142. "name": "drupal/color_field",
  2143. "version": "2.4.0",
  2144. "source": {
  2145. "type": "git",
  2146. "url": "https://git.drupalcode.org/project/color_field.git",
  2147. "reference": "8.x-2.4"
  2148. },
  2149. "dist": {
  2150. "type": "zip",
  2151. "url": "https://ftp.drupal.org/files/projects/color_field-8.x-2.4.zip",
  2152. "reference": "8.x-2.4",
  2153. "shasum": "11c163a409f4f70083f188d917fecc6052c53a2f"
  2154. },
  2155. "require": {
  2156. "drupal/core": "^8 || ^9"
  2157. },
  2158. "require-dev": {
  2159. "drupal/token": "~1.3",
  2160. "nickwilde1990/php-composter-phpcs-drupal": "^2.0"
  2161. },
  2162. "suggest": {
  2163. "bower-asset/jquery-simple-color": "^v1.2.2: Provides JavaScript library necessary for the Color Grid widget",
  2164. "bower-asset/spectrum": "^1.8: Provides JavaScript library necessary for Spectrum widget."
  2165. },
  2166. "type": "drupal-module",
  2167. "extra": {
  2168. "drupal": {
  2169. "version": "8.x-2.4",
  2170. "datestamp": "1596479692",
  2171. "security-coverage": {
  2172. "status": "covered",
  2173. "message": "Covered by Drupal's security advisory policy"
  2174. }
  2175. }
  2176. },
  2177. "notification-url": "https://packages.drupal.org/8/downloads",
  2178. "license": [
  2179. "GPL-2.0-or-later"
  2180. ],
  2181. "authors": [
  2182. {
  2183. "name": "targoo",
  2184. "homepage": "https://www.drupal.org/user/431910",
  2185. "role": "Maintainer"
  2186. },
  2187. {
  2188. "name": "Nick Wilde",
  2189. "homepage": "https://www.drupal.org/user/nickwilde",
  2190. "role": "Maintainer"
  2191. }
  2192. ],
  2193. "description": "Provides a color field type to store the color value and opacity",
  2194. "homepage": "https://www.drupal.org/project/color_field",
  2195. "support": {
  2196. "source": "https://git.drupalcode.org/project/color_field",
  2197. "issues": "https://www.drupal.org/project/issues/color_field?version=8.x"
  2198. }
  2199. },
  2200. {
  2201. "name": "drupal/config_devel",
  2202. "version": "1.8.0",
  2203. "source": {
  2204. "type": "git",
  2205. "url": "https://git.drupalcode.org/project/config_devel.git",
  2206. "reference": "8.x-1.8"
  2207. },
  2208. "dist": {
  2209. "type": "zip",
  2210. "url": "https://ftp.drupal.org/files/projects/config_devel-8.x-1.8.zip",
  2211. "reference": "8.x-1.8",
  2212. "shasum": "325caa6c6d0ee39e938807892f9ec509e71b5fb7"
  2213. },
  2214. "require": {
  2215. "drupal/core": "^8 || ^9"
  2216. },
  2217. "type": "drupal-module",
  2218. "extra": {
  2219. "drupal": {
  2220. "version": "8.x-1.8",
  2221. "datestamp": "1609324318",
  2222. "security-coverage": {
  2223. "status": "covered",
  2224. "message": "Covered by Drupal's security advisory policy"
  2225. }
  2226. }
  2227. },
  2228. "notification-url": "https://packages.drupal.org/8/downloads",
  2229. "license": [
  2230. "GPL-2.0+"
  2231. ],
  2232. "authors": [
  2233. {
  2234. "name": "alexpott",
  2235. "homepage": "https://www.drupal.org/user/157725"
  2236. },
  2237. {
  2238. "name": "benjy",
  2239. "homepage": "https://www.drupal.org/user/1852732"
  2240. },
  2241. {
  2242. "name": "chx",
  2243. "homepage": "https://www.drupal.org/user/9446"
  2244. },
  2245. {
  2246. "name": "joachim",
  2247. "homepage": "https://www.drupal.org/user/107701"
  2248. },
  2249. {
  2250. "name": "vijaycs85",
  2251. "homepage": "https://www.drupal.org/user/93488"
  2252. }
  2253. ],
  2254. "description": "Helps developers work with configuration.",
  2255. "homepage": "https://www.drupal.org/project/config_devel",
  2256. "support": {
  2257. "source": "https://git.drupalcode.org/project/config_devel"
  2258. }
  2259. },
  2260. {
  2261. "name": "drupal/config_filter",
  2262. "version": "1.12.0",
  2263. "source": {
  2264. "type": "git",
  2265. "url": "https://git.drupalcode.org/project/config_filter.git",
  2266. "reference": "8.x-1.12"
  2267. },
  2268. "dist": {
  2269. "type": "zip",
  2270. "url": "https://ftp.drupal.org/files/projects/config_filter-8.x-1.12.zip",
  2271. "reference": "8.x-1.12",
  2272. "shasum": "364581700ca3a298f62950ff37dd309d0bfb8381"
  2273. },
  2274. "require": {
  2275. "drupal/core": "^8.8 || ^9 || ^10"
  2276. },
  2277. "suggest": {
  2278. "drupal/config_split": "Split site configuration for different environments."
  2279. },
  2280. "type": "drupal-module",
  2281. "extra": {
  2282. "drupal": {
  2283. "version": "8.x-1.12",
  2284. "datestamp": "1698308496",
  2285. "security-coverage": {
  2286. "status": "covered",
  2287. "message": "Covered by Drupal's security advisory policy"
  2288. }
  2289. }
  2290. },
  2291. "notification-url": "https://packages.drupal.org/8/downloads",
  2292. "license": [
  2293. "GPL-2.0-or-later"
  2294. ],
  2295. "authors": [
  2296. {
  2297. "name": "Fabian Bircher",
  2298. "homepage": "https://www.drupal.org/u/bircher",
  2299. "email": "opensource@fabianbircher.com",
  2300. "role": "Maintainer"
  2301. },
  2302. {
  2303. "name": "Nuvole Web",
  2304. "homepage": "http://nuvole.org",
  2305. "email": "info@nuvole.org",
  2306. "role": "Maintainer"
  2307. },
  2308. {
  2309. "name": "pescetti",
  2310. "homepage": "https://www.drupal.org/user/436244"
  2311. }
  2312. ],
  2313. "description": "Config Filter allows other modules to interact with a ConfigStorage through filter plugins.",
  2314. "homepage": "https://www.drupal.org/project/config_filter",
  2315. "keywords": [
  2316. "Drupal",
  2317. "configuration",
  2318. "configuration management"
  2319. ],
  2320. "support": {
  2321. "source": "https://git.drupalcode.org/project/config_filter",
  2322. "issues": "https://www.drupal.org/project/issues/config_filter",
  2323. "slack": "https://drupal.slack.com/archives/C45342CDD"
  2324. }
  2325. },
  2326. {
  2327. "name": "drupal/config_ignore",
  2328. "version": "2.4.0",
  2329. "source": {
  2330. "type": "git",
  2331. "url": "https://git.drupalcode.org/project/config_ignore.git",
  2332. "reference": "8.x-2.4"
  2333. },
  2334. "dist": {
  2335. "type": "zip",
  2336. "url": "https://ftp.drupal.org/files/projects/config_ignore-8.x-2.4.zip",
  2337. "reference": "8.x-2.4",
  2338. "shasum": "e0e45dde2d6927c5d26de59f352792fb6cf26554"
  2339. },
  2340. "require": {
  2341. "drupal/config_filter": "^1 || ^2",
  2342. "drupal/core": "^8 || ^9 || ^10"
  2343. },
  2344. "type": "drupal-module",
  2345. "extra": {
  2346. "drupal": {
  2347. "version": "8.x-2.4",
  2348. "datestamp": "1676045435",
  2349. "security-coverage": {
  2350. "status": "covered",
  2351. "message": "Covered by Drupal's security advisory policy"
  2352. }
  2353. }
  2354. },
  2355. "notification-url": "https://packages.drupal.org/8/downloads",
  2356. "license": [
  2357. "GPL-2.0-or-later"
  2358. ],
  2359. "authors": [
  2360. {
  2361. "name": "Tommy Lynge Jørgensen",
  2362. "homepage": "https://www.drupal.org/u/tlyngej",
  2363. "email": "tlyngej@gmail.com",
  2364. "role": "Maintainer"
  2365. },
  2366. {
  2367. "name": "Fabian Bircher",
  2368. "homepage": "https://www.drupal.org/u/bircher",
  2369. "role": "Maintainer"
  2370. },
  2371. {
  2372. "name": "tlyngej",
  2373. "homepage": "https://www.drupal.org/user/413139"
  2374. }
  2375. ],
  2376. "description": "Ignore certain configuration during import.",
  2377. "homepage": "http://drupal.org/project/config_ignore",
  2378. "support": {
  2379. "source": "https://git.drupalcode.org/project/config_ignore",
  2380. "issues": "https://drupal.org/project/config_ignore",
  2381. "irc": "irc://irc.freenode.org/drupal-contribute"
  2382. }
  2383. },
  2384. {
  2385. "name": "drupal/config_update",
  2386. "version": "1.7.0",
  2387. "source": {
  2388. "type": "git",
  2389. "url": "https://git.drupalcode.org/project/config_update.git",
  2390. "reference": "8.x-1.7"
  2391. },
  2392. "dist": {
  2393. "type": "zip",
  2394. "url": "https://ftp.drupal.org/files/projects/config_update-8.x-1.7.zip",
  2395. "reference": "8.x-1.7",
  2396. "shasum": "8f079abf7c2ea826a27fa5224b0770a26404c968"
  2397. },
  2398. "require": {
  2399. "drupal/core": "^8 || ^9"
  2400. },
  2401. "type": "drupal-module",
  2402. "extra": {
  2403. "drupal": {
  2404. "version": "8.x-1.7",
  2405. "datestamp": "1586355587",
  2406. "security-coverage": {
  2407. "status": "covered",
  2408. "message": "Covered by Drupal's security advisory policy"
  2409. }
  2410. }
  2411. },
  2412. "notification-url": "https://packages.drupal.org/8/downloads",
  2413. "license": [
  2414. "GPL-2.0-or-later"
  2415. ],
  2416. "authors": [
  2417. {
  2418. "name": "jhodgdon",
  2419. "homepage": "https://www.drupal.org/user/155601"
  2420. },
  2421. {
  2422. "name": "nedjo",
  2423. "homepage": "https://www.drupal.org/user/4481"
  2424. }
  2425. ],
  2426. "description": "Provides basic revert and update functionality for other modules",
  2427. "homepage": "https://www.drupal.org/project/config_update",
  2428. "support": {
  2429. "source": "https://git.drupalcode.org/project/config_update"
  2430. }
  2431. },
  2432. {
  2433. "name": "drupal/context",
  2434. "version": "4.1.0",
  2435. "source": {
  2436. "type": "git",
  2437. "url": "https://git.drupalcode.org/project/context.git",
  2438. "reference": "8.x-4.1"
  2439. },
  2440. "dist": {
  2441. "type": "zip",
  2442. "url": "https://ftp.drupal.org/files/projects/context-8.x-4.1.zip",
  2443. "reference": "8.x-4.1",
  2444. "shasum": "5cfee680f7299d82b584502479c85566bb4285c1"
  2445. },
  2446. "require": {
  2447. "drupal/core": "^8.8 || ^9"
  2448. },
  2449. "type": "drupal-module",
  2450. "extra": {
  2451. "drupal": {
  2452. "version": "8.x-4.1",
  2453. "datestamp": "1628187190",
  2454. "security-coverage": {
  2455. "status": "covered",
  2456. "message": "Covered by Drupal's security advisory policy"
  2457. }
  2458. }
  2459. },
  2460. "notification-url": "https://packages.drupal.org/8/downloads",
  2461. "license": [
  2462. "MIT"
  2463. ],
  2464. "authors": [
  2465. {
  2466. "name": "Christoffer Palm",
  2467. "homepage": "http://www.oddhill.se/",
  2468. "email": "christoffer.palm@oddhill.se",
  2469. "role": "Developer"
  2470. },
  2471. {
  2472. "name": "boshtian",
  2473. "homepage": "https://www.drupal.org/user/1773456"
  2474. },
  2475. {
  2476. "name": "colan",
  2477. "homepage": "https://www.drupal.org/user/58704"
  2478. },
  2479. {
  2480. "name": "emanaton",
  2481. "homepage": "https://www.drupal.org/user/120853"
  2482. },
  2483. {
  2484. "name": "febbraro",
  2485. "homepage": "https://www.drupal.org/user/43670"
  2486. },
  2487. {
  2488. "name": "fizk",
  2489. "homepage": "https://www.drupal.org/user/473174"
  2490. },
  2491. {
  2492. "name": "hass",
  2493. "homepage": "https://www.drupal.org/user/85918"
  2494. },
  2495. {
  2496. "name": "hefox",
  2497. "homepage": "https://www.drupal.org/user/426416"
  2498. },
  2499. {
  2500. "name": "jmiccolis",
  2501. "homepage": "https://www.drupal.org/user/31731"
  2502. },
  2503. {
  2504. "name": "Kristen Pol",
  2505. "homepage": "https://www.drupal.org/user/8389"
  2506. },
  2507. {
  2508. "name": "nedjo",
  2509. "homepage": "https://www.drupal.org/user/4481"
  2510. },
  2511. {
  2512. "name": "NormySan",
  2513. "homepage": "https://www.drupal.org/user/112352"
  2514. },
  2515. {
  2516. "name": "patricksettle",
  2517. "homepage": "https://www.drupal.org/user/26618"
  2518. },
  2519. {
  2520. "name": "paulocs",
  2521. "homepage": "https://www.drupal.org/user/3640109"
  2522. },
  2523. {
  2524. "name": "Steven Jones",
  2525. "homepage": "https://www.drupal.org/user/99644"
  2526. },
  2527. {
  2528. "name": "tekante",
  2529. "homepage": "https://www.drupal.org/user/640024"
  2530. },
  2531. {
  2532. "name": "yhahn",
  2533. "homepage": "https://www.drupal.org/user/264833"
  2534. }
  2535. ],
  2536. "description": "Manage contextual conditions and reactions for different portions of your site.",
  2537. "homepage": "https://github.com/oddhill/context",
  2538. "keywords": [
  2539. "Drupal",
  2540. "block",
  2541. "conditions",
  2542. "context",
  2543. "visibility"
  2544. ],
  2545. "support": {
  2546. "source": "https://github.com/oddhill/context",
  2547. "issues": "https://github.com/oddhill/context/issues",
  2548. "docs": "https://github.com/oddhill/context"
  2549. }
  2550. },
  2551. {
  2552. "name": "drupal/core",
  2553. "version": "8.9.20",
  2554. "source": {
  2555. "type": "git",
  2556. "url": "https://github.com/drupal/core.git",
  2557. "reference": "39e2e1c32498338921923af66a90cb4a23a5b389"
  2558. },
  2559. "dist": {
  2560. "type": "zip",
  2561. "url": "https://api.github.com/repos/drupal/core/zipball/39e2e1c32498338921923af66a90cb4a23a5b389",
  2562. "reference": "39e2e1c32498338921923af66a90cb4a23a5b389",
  2563. "shasum": ""
  2564. },
  2565. "require": {
  2566. "asm89/stack-cors": "^1.1",
  2567. "composer/semver": "^1.0",
  2568. "doctrine/annotations": "^1.4",
  2569. "doctrine/common": "^2.7",
  2570. "easyrdf/easyrdf": "^0.9",
  2571. "egulias/email-validator": "^2.0",
  2572. "ext-date": "*",
  2573. "ext-dom": "*",
  2574. "ext-filter": "*",
  2575. "ext-gd": "*",
  2576. "ext-hash": "*",
  2577. "ext-json": "*",
  2578. "ext-pcre": "*",
  2579. "ext-pdo": "*",
  2580. "ext-session": "*",
  2581. "ext-simplexml": "*",
  2582. "ext-spl": "*",
  2583. "ext-tokenizer": "*",
  2584. "ext-xml": "*",
  2585. "guzzlehttp/guzzle": "^6.3",
  2586. "laminas/laminas-diactoros": "^1.8",
  2587. "laminas/laminas-feed": "^2.12",
  2588. "masterminds/html5": "^2.1",
  2589. "pear/archive_tar": "^1.4.14",
  2590. "php": "^7.0.8",
  2591. "psr/log": "^1.0",
  2592. "stack/builder": "^1.0",
  2593. "symfony-cmf/routing": "^1.4",
  2594. "symfony/class-loader": "~3.4.0",
  2595. "symfony/console": "~3.4.0",
  2596. "symfony/dependency-injection": "~3.4.26",
  2597. "symfony/event-dispatcher": "~3.4.0",
  2598. "symfony/http-foundation": "~3.4.35",
  2599. "symfony/http-kernel": "~3.4.14",
  2600. "symfony/polyfill-iconv": "^1.0",
  2601. "symfony/process": "~3.4.0",
  2602. "symfony/psr-http-message-bridge": "^1.1.2",
  2603. "symfony/routing": "~3.4.0",
  2604. "symfony/serializer": "~3.4.0",
  2605. "symfony/translation": "~3.4.0",
  2606. "symfony/validator": "~3.4.0",
  2607. "symfony/yaml": "~3.4.5",
  2608. "twig/twig": "^1.38.2",
  2609. "typo3/phar-stream-wrapper": "^3.1.3"
  2610. },
  2611. "conflict": {
  2612. "drupal/pathauto": "<1.6",
  2613. "drush/drush": "<8.1.10"
  2614. },
  2615. "replace": {
  2616. "drupal/action": "self.version",
  2617. "drupal/aggregator": "self.version",
  2618. "drupal/automated_cron": "self.version",
  2619. "drupal/ban": "self.version",
  2620. "drupal/bartik": "self.version",
  2621. "drupal/basic_auth": "self.version",
  2622. "drupal/big_pipe": "self.version",
  2623. "drupal/block": "self.version",
  2624. "drupal/block_content": "self.version",
  2625. "drupal/block_place": "self.version",
  2626. "drupal/book": "self.version",
  2627. "drupal/breakpoint": "self.version",
  2628. "drupal/ckeditor": "self.version",
  2629. "drupal/claro": "self.version",
  2630. "drupal/classy": "self.version",
  2631. "drupal/color": "self.version",
  2632. "drupal/comment": "self.version",
  2633. "drupal/config": "self.version",
  2634. "drupal/config_translation": "self.version",
  2635. "drupal/contact": "self.version",
  2636. "drupal/content_moderation": "self.version",
  2637. "drupal/content_translation": "self.version",
  2638. "drupal/contextual": "self.version",
  2639. "drupal/core-annotation": "self.version",
  2640. "drupal/core-assertion": "self.version",
  2641. "drupal/core-bridge": "self.version",
  2642. "drupal/core-class-finder": "self.version",
  2643. "drupal/core-datetime": "self.version",
  2644. "drupal/core-dependency-injection": "self.version",
  2645. "drupal/core-diff": "self.version",
  2646. "drupal/core-discovery": "self.version",
  2647. "drupal/core-event-dispatcher": "self.version",
  2648. "drupal/core-file-cache": "self.version",
  2649. "drupal/core-file-security": "self.version",
  2650. "drupal/core-filesystem": "self.version",
  2651. "drupal/core-gettext": "self.version",
  2652. "drupal/core-graph": "self.version",
  2653. "drupal/core-http-foundation": "self.version",
  2654. "drupal/core-php-storage": "self.version",
  2655. "drupal/core-plugin": "self.version",
  2656. "drupal/core-proxy-builder": "self.version",
  2657. "drupal/core-render": "self.version",
  2658. "drupal/core-serialization": "self.version",
  2659. "drupal/core-transliteration": "self.version",
  2660. "drupal/core-utility": "self.version",
  2661. "drupal/core-uuid": "self.version",
  2662. "drupal/core-version": "self.version",
  2663. "drupal/datetime": "self.version",
  2664. "drupal/datetime_range": "self.version",
  2665. "drupal/dblog": "self.version",
  2666. "drupal/dynamic_page_cache": "self.version",
  2667. "drupal/editor": "self.version",
  2668. "drupal/entity_reference": "self.version",
  2669. "drupal/field": "self.version",
  2670. "drupal/field_layout": "self.version",
  2671. "drupal/field_ui": "self.version",
  2672. "drupal/file": "self.version",
  2673. "drupal/filter": "self.version",
  2674. "drupal/forum": "self.version",
  2675. "drupal/hal": "self.version",
  2676. "drupal/help": "self.version",
  2677. "drupal/help_topics": "self.version",
  2678. "drupal/history": "self.version",
  2679. "drupal/image": "self.version",
  2680. "drupal/inline_form_errors": "self.version",
  2681. "drupal/jsonapi": "self.version",
  2682. "drupal/language": "self.version",
  2683. "drupal/layout_builder": "self.version",
  2684. "drupal/layout_discovery": "self.version",
  2685. "drupal/link": "self.version",
  2686. "drupal/locale": "self.version",
  2687. "drupal/media": "self.version",
  2688. "drupal/media_library": "self.version",
  2689. "drupal/menu_link_content": "self.version",
  2690. "drupal/menu_ui": "self.version",
  2691. "drupal/migrate": "self.version",
  2692. "drupal/migrate_drupal": "self.version",
  2693. "drupal/migrate_drupal_multilingual": "self.version",
  2694. "drupal/migrate_drupal_ui": "self.version",
  2695. "drupal/minimal": "self.version",
  2696. "drupal/node": "self.version",
  2697. "drupal/options": "self.version",
  2698. "drupal/page_cache": "self.version",
  2699. "drupal/path": "self.version",
  2700. "drupal/path_alias": "self.version",
  2701. "drupal/quickedit": "self.version",
  2702. "drupal/rdf": "self.version",
  2703. "drupal/responsive_image": "self.version",
  2704. "drupal/rest": "self.version",
  2705. "drupal/search": "self.version",
  2706. "drupal/serialization": "self.version",
  2707. "drupal/settings_tray": "self.version",
  2708. "drupal/seven": "self.version",
  2709. "drupal/shortcut": "self.version",
  2710. "drupal/simpletest": "self.version",
  2711. "drupal/standard": "self.version",
  2712. "drupal/stark": "self.version",
  2713. "drupal/statistics": "self.version",
  2714. "drupal/syslog": "self.version",
  2715. "drupal/system": "self.version",
  2716. "drupal/taxonomy": "self.version",
  2717. "drupal/telephone": "self.version",
  2718. "drupal/text": "self.version",
  2719. "drupal/toolbar": "self.version",
  2720. "drupal/tour": "self.version",
  2721. "drupal/tracker": "self.version",
  2722. "drupal/update": "self.version",
  2723. "drupal/user": "self.version",
  2724. "drupal/views": "self.version",
  2725. "drupal/views_ui": "self.version",
  2726. "drupal/workflows": "self.version",
  2727. "drupal/workspaces": "self.version"
  2728. },
  2729. "type": "drupal-core",
  2730. "extra": {
  2731. "drupal-scaffold": {
  2732. "file-mapping": {
  2733. "[project-root]/.editorconfig": "assets/scaffold/files/editorconfig",
  2734. "[project-root]/.gitattributes": "assets/scaffold/files/gitattributes",
  2735. "[web-root]/.csslintrc": "assets/scaffold/files/csslintrc",
  2736. "[web-root]/.eslintignore": "assets/scaffold/files/eslintignore",
  2737. "[web-root]/.eslintrc.json": "assets/scaffold/files/eslintrc.json",
  2738. "[web-root]/.ht.router.php": "assets/scaffold/files/ht.router.php",
  2739. "[web-root]/.htaccess": "assets/scaffold/files/htaccess",
  2740. "[web-root]/example.gitignore": "assets/scaffold/files/example.gitignore",
  2741. "[web-root]/index.php": "assets/scaffold/files/index.php",
  2742. "[web-root]/INSTALL.txt": "assets/scaffold/files/drupal.INSTALL.txt",
  2743. "[web-root]/README.txt": "assets/scaffold/files/drupal.README.txt",
  2744. "[web-root]/robots.txt": "assets/scaffold/files/robots.txt",
  2745. "[web-root]/update.php": "assets/scaffold/files/update.php",
  2746. "[web-root]/web.config": "assets/scaffold/files/web.config",
  2747. "[web-root]/sites/README.txt": "assets/scaffold/files/sites.README.txt",
  2748. "[web-root]/sites/development.services.yml": "assets/scaffold/files/development.services.yml",
  2749. "[web-root]/sites/example.settings.local.php": "assets/scaffold/files/example.settings.local.php",
  2750. "[web-root]/sites/example.sites.php": "assets/scaffold/files/example.sites.php",
  2751. "[web-root]/sites/default/default.services.yml": "assets/scaffold/files/default.services.yml",
  2752. "[web-root]/sites/default/default.settings.php": "assets/scaffold/files/default.settings.php",
  2753. "[web-root]/modules/README.txt": "assets/scaffold/files/modules.README.txt",
  2754. "[web-root]/profiles/README.txt": "assets/scaffold/files/profiles.README.txt",
  2755. "[web-root]/themes/README.txt": "assets/scaffold/files/themes.README.txt"
  2756. }
  2757. }
  2758. },
  2759. "autoload": {
  2760. "psr-4": {
  2761. "Drupal\\Core\\": "lib/Drupal/Core",
  2762. "Drupal\\Driver\\": "../drivers/lib/Drupal/Driver",
  2763. "Drupal\\Component\\": "lib/Drupal/Component"
  2764. },
  2765. "classmap": [
  2766. "lib/Drupal.php",
  2767. "lib/Drupal/Component/Utility/Timer.php",
  2768. "lib/Drupal/Component/Utility/Unicode.php",
  2769. "lib/Drupal/Core/Database/Database.php",
  2770. "lib/Drupal/Core/DrupalKernel.php",
  2771. "lib/Drupal/Core/DrupalKernelInterface.php",
  2772. "lib/Drupal/Core/Site/Settings.php"
  2773. ]
  2774. },
  2775. "notification-url": "https://packagist.org/downloads/",
  2776. "license": [
  2777. "GPL-2.0-or-later"
  2778. ],
  2779. "description": "Drupal is an open source content management platform powering millions of websites and applications.",
  2780. "support": {
  2781. "source": "https://github.com/drupal/core/tree/8.9.20"
  2782. },
  2783. "time": "2021-11-17T21:24:28+00:00"
  2784. },
  2785. {
  2786. "name": "drupal/core-composer-scaffold",
  2787. "version": "8.9.20",
  2788. "source": {
  2789. "type": "git",
  2790. "url": "https://github.com/drupal/core-composer-scaffold.git",
  2791. "reference": "c902d07cb49ef73777e2b33a39e54c2861a8c81d"
  2792. },
  2793. "dist": {
  2794. "type": "zip",
  2795. "url": "https://api.github.com/repos/drupal/core-composer-scaffold/zipball/c902d07cb49ef73777e2b33a39e54c2861a8c81d",
  2796. "reference": "c902d07cb49ef73777e2b33a39e54c2861a8c81d",
  2797. "shasum": ""
  2798. },
  2799. "require": {
  2800. "composer-plugin-api": "^1 || ^2",
  2801. "php": ">=7.0.8"
  2802. },
  2803. "conflict": {
  2804. "drupal-composer/drupal-scaffold": "*"
  2805. },
  2806. "require-dev": {
  2807. "composer/composer": "^1.8@stable"
  2808. },
  2809. "type": "composer-plugin",
  2810. "extra": {
  2811. "class": "Drupal\\Composer\\Plugin\\Scaffold\\Plugin",
  2812. "branch-alias": {
  2813. "dev-master": "1.0.x-dev"
  2814. }
  2815. },
  2816. "autoload": {
  2817. "psr-4": {
  2818. "Drupal\\Composer\\Plugin\\Scaffold\\": ""
  2819. }
  2820. },
  2821. "notification-url": "https://packagist.org/downloads/",
  2822. "license": [
  2823. "GPL-2.0-or-later"
  2824. ],
  2825. "description": "A flexible Composer project scaffold builder.",
  2826. "homepage": "https://www.drupal.org/project/drupal",
  2827. "keywords": [
  2828. "drupal"
  2829. ],
  2830. "support": {
  2831. "source": "https://github.com/drupal/core-composer-scaffold/tree/8.9.4"
  2832. },
  2833. "time": "2020-08-07T22:30:30+00:00"
  2834. },
  2835. {
  2836. "name": "drupal/core-recommended",
  2837. "version": "8.9.20",
  2838. "source": {
  2839. "type": "git",
  2840. "url": "https://github.com/drupal/core-recommended.git",
  2841. "reference": "49b9abf15bf4b82c5b47692e39770f2f3a76eaf1"
  2842. },
  2843. "dist": {
  2844. "type": "zip",
  2845. "url": "https://api.github.com/repos/drupal/core-recommended/zipball/49b9abf15bf4b82c5b47692e39770f2f3a76eaf1",
  2846. "reference": "49b9abf15bf4b82c5b47692e39770f2f3a76eaf1",
  2847. "shasum": ""
  2848. },
  2849. "require": {
  2850. "asm89/stack-cors": "1.3.0",
  2851. "composer/semver": "1.5.1",
  2852. "doctrine/annotations": "v1.4.0",
  2853. "doctrine/cache": "v1.6.2",
  2854. "doctrine/collections": "v1.4.0",
  2855. "doctrine/common": "v2.7.3",
  2856. "doctrine/inflector": "v1.2.0",
  2857. "doctrine/lexer": "1.0.2",
  2858. "drupal/core": "8.9.20",
  2859. "easyrdf/easyrdf": "0.9.1",
  2860. "egulias/email-validator": "2.1.17",
  2861. "guzzlehttp/guzzle": "6.5.4",
  2862. "guzzlehttp/promises": "v1.3.1",
  2863. "guzzlehttp/psr7": "1.6.1",
  2864. "laminas/laminas-diactoros": "1.8.7p2",
  2865. "laminas/laminas-escaper": "2.6.1",
  2866. "laminas/laminas-feed": "2.12.2",
  2867. "laminas/laminas-stdlib": "3.2.1",
  2868. "laminas/laminas-zendframework-bridge": "1.0.4",
  2869. "masterminds/html5": "2.3.0",
  2870. "paragonie/random_compat": "v9.99.99",
  2871. "pear/archive_tar": "1.4.14",
  2872. "pear/console_getopt": "v1.4.3",
  2873. "pear/pear-core-minimal": "v1.10.10",
  2874. "pear/pear_exception": "v1.0.1",
  2875. "psr/container": "1.0.0",
  2876. "psr/http-message": "1.0.1",
  2877. "psr/log": "1.1.3",
  2878. "ralouphie/getallheaders": "3.0.3",
  2879. "stack/builder": "v1.0.5",
  2880. "symfony-cmf/routing": "1.4.1",
  2881. "symfony/class-loader": "v3.4.41",
  2882. "symfony/console": "v3.4.41",
  2883. "symfony/debug": "v3.4.41",
  2884. "symfony/dependency-injection": "v3.4.41",
  2885. "symfony/event-dispatcher": "v3.4.41",
  2886. "symfony/http-foundation": "v3.4.41",
  2887. "symfony/http-kernel": "v3.4.44",
  2888. "symfony/polyfill-ctype": "v1.17.0",
  2889. "symfony/polyfill-iconv": "v1.17.0",
  2890. "symfony/polyfill-intl-idn": "v1.17.0",
  2891. "symfony/polyfill-mbstring": "v1.17.0",
  2892. "symfony/polyfill-php56": "v1.17.0",
  2893. "symfony/polyfill-php70": "v1.17.0",
  2894. "symfony/polyfill-php72": "v1.17.0",
  2895. "symfony/polyfill-util": "v1.17.0",
  2896. "symfony/process": "v3.4.41",
  2897. "symfony/psr-http-message-bridge": "v1.1.2",
  2898. "symfony/routing": "v3.4.41",
  2899. "symfony/serializer": "v3.4.41",
  2900. "symfony/translation": "v3.4.41",
  2901. "symfony/validator": "v3.4.41",
  2902. "symfony/yaml": "v3.4.41",
  2903. "twig/twig": "v1.42.5",
  2904. "typo3/phar-stream-wrapper": "v3.1.4"
  2905. },
  2906. "conflict": {
  2907. "webflo/drupal-core-strict": "*"
  2908. },
  2909. "type": "metapackage",
  2910. "notification-url": "https://packagist.org/downloads/",
  2911. "license": [
  2912. "GPL-2.0-or-later"
  2913. ],
  2914. "description": "Locked core dependencies; require this project INSTEAD OF drupal/core.",
  2915. "support": {
  2916. "source": "https://github.com/drupal/core-recommended/tree/8.9.20"
  2917. },
  2918. "time": "2021-11-17T21:24:28+00:00"
  2919. },
  2920. {
  2921. "name": "drupal/ctools",
  2922. "version": "3.4.0",
  2923. "source": {
  2924. "type": "git",
  2925. "url": "https://git.drupalcode.org/project/ctools.git",
  2926. "reference": "8.x-3.4"
  2927. },
  2928. "dist": {
  2929. "type": "zip",
  2930. "url": "https://ftp.drupal.org/files/projects/ctools-8.x-3.4.zip",
  2931. "reference": "8.x-3.4",
  2932. "shasum": "016ca5abb7ac4ca720352a72e8989f3ef0e20539"
  2933. },
  2934. "require": {
  2935. "drupal/core": "^8.7.7 || ^9"
  2936. },
  2937. "type": "drupal-module",
  2938. "extra": {
  2939. "drupal": {
  2940. "version": "8.x-3.4",
  2941. "datestamp": "1585763383",
  2942. "security-coverage": {
  2943. "status": "covered",
  2944. "message": "Covered by Drupal's security advisory policy"
  2945. }
  2946. }
  2947. },
  2948. "notification-url": "https://packages.drupal.org/8/downloads",
  2949. "license": [
  2950. "GPL-2.0+"
  2951. ],
  2952. "authors": [
  2953. {
  2954. "name": "Kris Vanderwater (EclipseGc)",
  2955. "homepage": "https://www.drupal.org/u/eclipsegc",
  2956. "role": "Maintainer"
  2957. },
  2958. {
  2959. "name": "Jakob Perry (japerry)",
  2960. "homepage": "https://www.drupal.org/u/japerry",
  2961. "role": "Maintainer"
  2962. },
  2963. {
  2964. "name": "Tim Plunkett (tim.plunkett)",
  2965. "homepage": "https://www.drupal.org/u/timplunkett",
  2966. "role": "Maintainer"
  2967. },
  2968. {
  2969. "name": "James Gilliland (neclimdul)",
  2970. "homepage": "https://www.drupal.org/u/neclimdul",
  2971. "role": "Maintainer"
  2972. },
  2973. {
  2974. "name": "Daniel Wehner (dawehner)",
  2975. "homepage": "https://www.drupal.org/u/dawehner",
  2976. "role": "Maintainer"
  2977. },
  2978. {
  2979. "name": "joelpittet",
  2980. "homepage": "https://www.drupal.org/user/160302"
  2981. },
  2982. {
  2983. "name": "merlinofchaos",
  2984. "homepage": "https://www.drupal.org/user/26979"
  2985. },
  2986. {
  2987. "name": "neclimdul",
  2988. "homepage": "https://www.drupal.org/user/48673"
  2989. },
  2990. {
  2991. "name": "sdboyer",
  2992. "homepage": "https://www.drupal.org/user/146719"
  2993. },
  2994. {
  2995. "name": "sun",
  2996. "homepage": "https://www.drupal.org/user/54136"
  2997. },
  2998. {
  2999. "name": "tim.plunkett",
  3000. "homepage": "https://www.drupal.org/user/241634"
  3001. }
  3002. ],
  3003. "description": "Provides a number of utility and helper APIs for Drupal developers and site builders.",
  3004. "homepage": "https://www.drupal.org/project/ctools",
  3005. "support": {
  3006. "source": "https://git.drupalcode.org/project/ctools",
  3007. "issues": "https://www.drupal.org/project/issues/ctools"
  3008. }
  3009. },
  3010. {
  3011. "name": "drupal/date_range_formatter",
  3012. "version": "4.0.1",
  3013. "source": {
  3014. "type": "git",
  3015. "url": "https://git.drupalcode.org/project/date_range_formatter.git",
  3016. "reference": "4.0.1"
  3017. },
  3018. "dist": {
  3019. "type": "zip",
  3020. "url": "https://ftp.drupal.org/files/projects/date_range_formatter-4.0.1.zip",
  3021. "reference": "4.0.1",
  3022. "shasum": "d218f325c9a1e144ede86d34b87002330a4e8709"
  3023. },
  3024. "require": {
  3025. "drupal/core": "^8 || ^9 || ^10"
  3026. },
  3027. "type": "drupal-module",
  3028. "extra": {
  3029. "drupal": {
  3030. "version": "4.0.1",
  3031. "datestamp": "1661752209",
  3032. "security-coverage": {
  3033. "status": "covered",
  3034. "message": "Covered by Drupal's security advisory policy"
  3035. }
  3036. }
  3037. },
  3038. "notification-url": "https://packages.drupal.org/8/downloads",
  3039. "license": [
  3040. "GPL-2.0-or-later"
  3041. ],
  3042. "authors": [
  3043. {
  3044. "name": "maximpodorov",
  3045. "homepage": "https://www.drupal.org/user/515310"
  3046. },
  3047. {
  3048. "name": "sudishth",
  3049. "homepage": "https://www.drupal.org/user/1440562"
  3050. }
  3051. ],
  3052. "description": "Formats date ranges.",
  3053. "homepage": "https://www.drupal.org/project/date_range_formatter",
  3054. "support": {
  3055. "source": "https://git.drupalcode.org/project/date_range_formatter"
  3056. }
  3057. },
  3058. {
  3059. "name": "drupal/devel",
  3060. "version": "4.2.1",
  3061. "source": {
  3062. "type": "git",
  3063. "url": "https://git.drupalcode.org/project/devel.git",
  3064. "reference": "4.2.1"
  3065. },
  3066. "dist": {
  3067. "type": "zip",
  3068. "url": "https://ftp.drupal.org/files/projects/devel-4.2.1.zip",
  3069. "reference": "4.2.1",
  3070. "shasum": "aa08379bad81cb2e604ee9a0b9e2aabd86fae13f"
  3071. },
  3072. "require": {
  3073. "doctrine/common": "^2.7",
  3074. "drupal/core": "^8.8 || ^9",
  3075. "symfony/var-dumper": "^4 || ^5"
  3076. },
  3077. "conflict": {
  3078. "kint-php/kint": "<3"
  3079. },
  3080. "require-dev": {
  3081. "drush/drush": "^10"
  3082. },
  3083. "suggest": {
  3084. "kint-php/kint": "Kint provides an informative display of arrays/objects. Useful for debugging and developing."
  3085. },
  3086. "type": "drupal-module",
  3087. "extra": {
  3088. "drupal": {
  3089. "version": "4.2.1",
  3090. "datestamp": "1664317444",
  3091. "security-coverage": {
  3092. "status": "covered",
  3093. "message": "Covered by Drupal's security advisory policy"
  3094. }
  3095. },
  3096. "drush": {
  3097. "services": {
  3098. "drush.services.yml": "^9 || ^10"
  3099. }
  3100. }
  3101. },
  3102. "notification-url": "https://packages.drupal.org/8/downloads",
  3103. "license": [
  3104. "GPL-2.0-or-later"
  3105. ],
  3106. "authors": [
  3107. {
  3108. "name": "moshe weitzman",
  3109. "homepage": "https://www.drupal.org/user/23"
  3110. }
  3111. ],
  3112. "description": "Various blocks, pages, and functions for developers.",
  3113. "homepage": "https://www.drupal.org/project/devel",
  3114. "support": {
  3115. "source": "https://gitlab.com/drupalspoons/devel",
  3116. "issues": "https://gitlab.com/drupalspoons/devel/-/issues",
  3117. "slack": "https://drupal.slack.com/archives/C012WAW1MH6"
  3118. }
  3119. },
  3120. {
  3121. "name": "drupal/domain",
  3122. "version": "1.0.0-beta8",
  3123. "source": {
  3124. "type": "git",
  3125. "url": "https://git.drupalcode.org/project/domain.git",
  3126. "reference": "8.x-1.0-beta8"
  3127. },
  3128. "dist": {
  3129. "type": "zip",
  3130. "url": "https://ftp.drupal.org/files/projects/domain-8.x-1.0-beta8.zip",
  3131. "reference": "8.x-1.0-beta8",
  3132. "shasum": "24deb7c239b3d0f9cd177a9e0893a9ecb5cf81d3"
  3133. },
  3134. "require": {
  3135. "drupal/core": "^8 || ^9"
  3136. },
  3137. "require-dev": {
  3138. "drupal/domain_access": "*",
  3139. "drupal/domain_config": "*"
  3140. },
  3141. "type": "drupal-module",
  3142. "extra": {
  3143. "drupal": {
  3144. "version": "8.x-1.0-beta8",
  3145. "datestamp": "1677511311",
  3146. "security-coverage": {
  3147. "status": "not-covered",
  3148. "message": "Beta releases are not covered by Drupal security advisories."
  3149. }
  3150. }
  3151. },
  3152. "notification-url": "https://packages.drupal.org/8/downloads",
  3153. "license": [
  3154. "GPL-2.0-or-later"
  3155. ],
  3156. "authors": [
  3157. {
  3158. "name": "agentrickard",
  3159. "homepage": "https://www.drupal.org/user/20975"
  3160. },
  3161. {
  3162. "name": "nonsie",
  3163. "homepage": "https://www.drupal.org/user/29899"
  3164. },
  3165. {
  3166. "name": "webflo",
  3167. "homepage": "https://www.drupal.org/user/254778"
  3168. }
  3169. ],
  3170. "description": "Creates domain records within a Drupal installation.",
  3171. "homepage": "https://www.drupal.org/project/domain",
  3172. "support": {
  3173. "source": "https://git.drupalcode.org/project/domain"
  3174. }
  3175. },
  3176. {
  3177. "name": "drupal/domain_access",
  3178. "version": "1.0.0-beta8",
  3179. "require": {
  3180. "drupal/core": "^8 || ^9",
  3181. "drupal/domain": "*"
  3182. },
  3183. "type": "metapackage",
  3184. "extra": {
  3185. "drupal": {
  3186. "version": "8.x-1.0-beta8",
  3187. "datestamp": "1677511311",
  3188. "security-coverage": {
  3189. "status": "not-covered",
  3190. "message": "Beta releases are not covered by Drupal security advisories."
  3191. }
  3192. }
  3193. },
  3194. "notification-url": "https://packages.drupal.org/8/downloads",
  3195. "license": [
  3196. "GPL-2.0-or-later"
  3197. ],
  3198. "authors": [
  3199. {
  3200. "name": "agentrickard",
  3201. "homepage": "https://www.drupal.org/user/20975"
  3202. },
  3203. {
  3204. "name": "nonsie",
  3205. "homepage": "https://www.drupal.org/user/29899"
  3206. },
  3207. {
  3208. "name": "webflo",
  3209. "homepage": "https://www.drupal.org/user/254778"
  3210. }
  3211. ],
  3212. "description": "Domain-based access control for content.",
  3213. "homepage": "https://www.drupal.org/project/domain",
  3214. "support": {
  3215. "source": "https://git.drupalcode.org/project/domain"
  3216. }
  3217. },
  3218. {
  3219. "name": "drupal/domain_config",
  3220. "version": "1.0.0-beta8",
  3221. "require": {
  3222. "drupal/core": "^8 || ^9",
  3223. "drupal/domain": "*"
  3224. },
  3225. "type": "metapackage",
  3226. "extra": {
  3227. "drupal": {
  3228. "version": "8.x-1.0-beta8",
  3229. "datestamp": "1677511311",
  3230. "security-coverage": {
  3231. "status": "not-covered",
  3232. "message": "Beta releases are not covered by Drupal security advisories."
  3233. }
  3234. }
  3235. },
  3236. "notification-url": "https://packages.drupal.org/8/downloads",
  3237. "license": [
  3238. "GPL-2.0-or-later"
  3239. ],
  3240. "authors": [
  3241. {
  3242. "name": "agentrickard",
  3243. "homepage": "https://www.drupal.org/user/20975"
  3244. },
  3245. {
  3246. "name": "nonsie",
  3247. "homepage": "https://www.drupal.org/user/29899"
  3248. },
  3249. {
  3250. "name": "webflo",
  3251. "homepage": "https://www.drupal.org/user/254778"
  3252. }
  3253. ],
  3254. "description": "Allows domain specific configuration.",
  3255. "homepage": "https://www.drupal.org/project/domain",
  3256. "support": {
  3257. "source": "https://git.drupalcode.org/project/domain"
  3258. }
  3259. },
  3260. {
  3261. "name": "drupal/domain_menu_access",
  3262. "version": "1.0.0-alpha2",
  3263. "source": {
  3264. "type": "git",
  3265. "url": "https://git.drupalcode.org/project/domain_menu_access.git",
  3266. "reference": "8.x-1.0-alpha2"
  3267. },
  3268. "dist": {
  3269. "type": "zip",
  3270. "url": "https://ftp.drupal.org/files/projects/domain_menu_access-8.x-1.0-alpha2.zip",
  3271. "reference": "8.x-1.0-alpha2",
  3272. "shasum": "9382513e0cd172844923686a0bb9f2324ba11709"
  3273. },
  3274. "require": {
  3275. "drupal/core": "~8.0",
  3276. "drupal/domain": "*",
  3277. "drupal/domain_access": "*"
  3278. },
  3279. "type": "drupal-module",
  3280. "extra": {
  3281. "drupal": {
  3282. "version": "8.x-1.0-alpha2",
  3283. "datestamp": "1519214884",
  3284. "security-coverage": {
  3285. "status": "not-covered",
  3286. "message": "Alpha releases are not covered by Drupal security advisories."
  3287. }
  3288. }
  3289. },
  3290. "notification-url": "https://packages.drupal.org/8/downloads",
  3291. "license": [
  3292. "GPL-2.0-or-later"
  3293. ],
  3294. "authors": [
  3295. {
  3296. "name": "maciej.zgadzaj",
  3297. "homepage": "https://www.drupal.org/user/271491"
  3298. },
  3299. {
  3300. "name": "pifagor",
  3301. "homepage": "https://www.drupal.org/user/2375692"
  3302. },
  3303. {
  3304. "name": "Sebastien M.",
  3305. "homepage": "https://www.drupal.org/user/380104"
  3306. },
  3307. {
  3308. "name": "tim-diels",
  3309. "homepage": "https://www.drupal.org/user/2915097"
  3310. }
  3311. ],
  3312. "description": "Domain-based access control for menu link.",
  3313. "homepage": "https://www.drupal.org/project/domain_menu_access",
  3314. "support": {
  3315. "source": "https://git.drupalcode.org/project/domain_menu_access"
  3316. }
  3317. },
  3318. {
  3319. "name": "drupal/domain_site_settings",
  3320. "version": "1.6.0",
  3321. "source": {
  3322. "type": "git",
  3323. "url": "https://git.drupalcode.org/project/domain_site_settings.git",
  3324. "reference": "8.x-1.6"
  3325. },
  3326. "dist": {
  3327. "type": "zip",
  3328. "url": "https://ftp.drupal.org/files/projects/domain_site_settings-8.x-1.6.zip",
  3329. "reference": "8.x-1.6",
  3330. "shasum": "d0f89411c5dd934a63a1a5991fbc0f76c1515cb2"
  3331. },
  3332. "require": {
  3333. "drupal/core": "^8.8 || ^9 || ^10 || ^11",
  3334. "drupal/domain": "^1.0 || ^2.0",
  3335. "drupal/domain_config": "*"
  3336. },
  3337. "type": "drupal-module",
  3338. "extra": {
  3339. "drupal": {
  3340. "version": "8.x-1.6",
  3341. "datestamp": "1726238712",
  3342. "security-coverage": {
  3343. "status": "covered",
  3344. "message": "Covered by Drupal's security advisory policy"
  3345. }
  3346. }
  3347. },
  3348. "notification-url": "https://packages.drupal.org/8/downloads",
  3349. "license": [
  3350. "GPL-2.0+"
  3351. ],
  3352. "authors": [
  3353. {
  3354. "name": "aloknarwaria",
  3355. "homepage": "https://www.drupal.org/user/906640"
  3356. },
  3357. {
  3358. "name": "jeroent",
  3359. "homepage": "https://www.drupal.org/user/2228934"
  3360. },
  3361. {
  3362. "name": "malaynayak",
  3363. "homepage": "https://www.drupal.org/user/3529755"
  3364. }
  3365. ],
  3366. "description": "Basic Site Setting for Domains.",
  3367. "homepage": "https://www.drupal.org/project/domain_site_settings",
  3368. "keywords": [
  3369. "Drupal"
  3370. ],
  3371. "support": {
  3372. "source": "http://cgit.drupalcode.org/domain_site_settings",
  3373. "issues": "https://www.drupal.org/project/issues/domain_site_settings"
  3374. }
  3375. },
  3376. {
  3377. "name": "drupal/email_registration",
  3378. "version": "1.1.0",
  3379. "source": {
  3380. "type": "git",
  3381. "url": "https://git.drupalcode.org/project/email_registration.git",
  3382. "reference": "8.x-1.1"
  3383. },
  3384. "dist": {
  3385. "type": "zip",
  3386. "url": "https://ftp.drupal.org/files/projects/email_registration-8.x-1.1.zip",
  3387. "reference": "8.x-1.1",
  3388. "shasum": "cc0eef597216a6d025d9017df104f2693b029f96"
  3389. },
  3390. "require": {
  3391. "drupal/core": "^8.7.7 || ^9"
  3392. },
  3393. "conflict": {
  3394. "drupal/commerce": "<2.12"
  3395. },
  3396. "require-dev": {
  3397. "drupal/commerce": "^2.0"
  3398. },
  3399. "type": "drupal-module",
  3400. "extra": {
  3401. "drupal": {
  3402. "version": "8.x-1.1",
  3403. "datestamp": "1592317072",
  3404. "security-coverage": {
  3405. "status": "covered",
  3406. "message": "Covered by Drupal's security advisory policy"
  3407. }
  3408. }
  3409. },
  3410. "notification-url": "https://packages.drupal.org/8/downloads",
  3411. "license": [
  3412. "GPL-2.0-or-later"
  3413. ],
  3414. "authors": [
  3415. {
  3416. "name": "Greg Knaddison (greggles)",
  3417. "homepage": "https://www.drupal.org/u/greggles",
  3418. "role": "Maintainer"
  3419. },
  3420. {
  3421. "name": "Andrey Postnikov (andypost)",
  3422. "homepage": "https://www.drupal.org/u/andypost",
  3423. "role": "Maintainer"
  3424. },
  3425. {
  3426. "name": "Chris Herberte",
  3427. "homepage": "https://www.drupal.org/u/chris-herberte",
  3428. "role": "Maintainer"
  3429. },
  3430. {
  3431. "name": "Moshe Weitzman (moshe weitzman)",
  3432. "homepage": "https://www.drupal.org/u/moshe-weitzman",
  3433. "role": "Maintainer"
  3434. }
  3435. ],
  3436. "description": "Allows users to register with an email address as their username.",
  3437. "homepage": "https://www.drupal.org/project/email_registration",
  3438. "support": {
  3439. "source": "https://git.drupalcode.org/project/email_registration",
  3440. "issues": "http://drupal.org/project/issues/email_registration"
  3441. }
  3442. },
  3443. {
  3444. "name": "drupal/entity",
  3445. "version": "1.3.0",
  3446. "source": {
  3447. "type": "git",
  3448. "url": "https://git.drupalcode.org/project/entity.git",
  3449. "reference": "8.x-1.3"
  3450. },
  3451. "dist": {
  3452. "type": "zip",
  3453. "url": "https://ftp.drupal.org/files/projects/entity-8.x-1.3.zip",
  3454. "reference": "8.x-1.3",
  3455. "shasum": "9515e28a70448d369adf4199d08a01a5ab75792d"
  3456. },
  3457. "require": {
  3458. "drupal/core": "^8.8.2 || ^9"
  3459. },
  3460. "type": "drupal-module",
  3461. "extra": {
  3462. "drupal": {
  3463. "version": "8.x-1.3",
  3464. "datestamp": "1646324539",
  3465. "security-coverage": {
  3466. "status": "covered",
  3467. "message": "Covered by Drupal's security advisory policy"
  3468. }
  3469. }
  3470. },
  3471. "notification-url": "https://packages.drupal.org/8/downloads",
  3472. "license": [
  3473. "GPL-2.0-or-later"
  3474. ],
  3475. "authors": [
  3476. {
  3477. "name": "berdir",
  3478. "homepage": "https://www.drupal.org/user/214652"
  3479. },
  3480. {
  3481. "name": "bojanz",
  3482. "homepage": "https://www.drupal.org/user/86106"
  3483. },
  3484. {
  3485. "name": "dawehner",
  3486. "homepage": "https://www.drupal.org/user/99340"
  3487. },
  3488. {
  3489. "name": "dixon_",
  3490. "homepage": "https://www.drupal.org/user/239911"
  3491. },
  3492. {
  3493. "name": "fago",
  3494. "homepage": "https://www.drupal.org/user/16747"
  3495. },
  3496. {
  3497. "name": "mglaman",
  3498. "homepage": "https://www.drupal.org/user/2416470"
  3499. },
  3500. {
  3501. "name": "TR",
  3502. "homepage": "https://www.drupal.org/user/202830"
  3503. }
  3504. ],
  3505. "description": "Provides expanded entity APIs, which will be moved to Drupal core one day.",
  3506. "homepage": "https://www.drupal.org/project/entity",
  3507. "support": {
  3508. "source": "https://git.drupalcode.org/project/entity",
  3509. "issues": "https://www.drupal.org/project/issues/entity"
  3510. }
  3511. },
  3512. {
  3513. "name": "drupal/features",
  3514. "version": "3.11.0",
  3515. "source": {
  3516. "type": "git",
  3517. "url": "https://git.drupalcode.org/project/features.git",
  3518. "reference": "8.x-3.11"
  3519. },
  3520. "dist": {
  3521. "type": "zip",
  3522. "url": "https://ftp.drupal.org/files/projects/features-8.x-3.11.zip",
  3523. "reference": "8.x-3.11",
  3524. "shasum": "cfdb1de2fb791856069c50b63eb28cb8d7c93442"
  3525. },
  3526. "require": {
  3527. "drupal/config_update": "^1.4",
  3528. "drupal/core": "^8.8 || ^9"
  3529. },
  3530. "type": "drupal-module",
  3531. "extra": {
  3532. "drupal": {
  3533. "version": "8.x-3.11",
  3534. "datestamp": "1591023154",
  3535. "security-coverage": {
  3536. "status": "covered",
  3537. "message": "Covered by Drupal's security advisory policy"
  3538. }
  3539. },
  3540. "drush": {
  3541. "services": {
  3542. "drush.services.yml": "^9"
  3543. }
  3544. }
  3545. },
  3546. "notification-url": "https://packages.drupal.org/8/downloads",
  3547. "license": [
  3548. "GPL-2.0-or-later"
  3549. ],
  3550. "authors": [
  3551. {
  3552. "name": "dawehner",
  3553. "homepage": "https://www.drupal.org/user/99340"
  3554. },
  3555. {
  3556. "name": "donquixote",
  3557. "homepage": "https://www.drupal.org/user/459338"
  3558. },
  3559. {
  3560. "name": "e2thex",
  3561. "homepage": "https://www.drupal.org/user/189123"
  3562. },
  3563. {
  3564. "name": "febbraro",
  3565. "homepage": "https://www.drupal.org/user/43670"
  3566. },
  3567. {
  3568. "name": "flocondetoile",
  3569. "homepage": "https://www.drupal.org/user/2006064"
  3570. },
  3571. {
  3572. "name": "jmiccolis",
  3573. "homepage": "https://www.drupal.org/user/31731"
  3574. },
  3575. {
  3576. "name": "joseph.olstad",
  3577. "homepage": "https://www.drupal.org/user/1321830"
  3578. },
  3579. {
  3580. "name": "mpotter",
  3581. "homepage": "https://www.drupal.org/user/616192"
  3582. },
  3583. {
  3584. "name": "nedjo",
  3585. "homepage": "https://www.drupal.org/user/4481"
  3586. },
  3587. {
  3588. "name": "tim.plunkett",
  3589. "homepage": "https://www.drupal.org/user/241634"
  3590. }
  3591. ],
  3592. "description": "Enables administrators to package configuration into modules",
  3593. "homepage": "https://www.drupal.org/project/features",
  3594. "support": {
  3595. "source": "https://git.drupalcode.org/project/features"
  3596. }
  3597. },
  3598. {
  3599. "name": "drupal/field_group",
  3600. "version": "3.1.0",
  3601. "source": {
  3602. "type": "git",
  3603. "url": "https://git.drupalcode.org/project/field_group.git",
  3604. "reference": "8.x-3.1"
  3605. },
  3606. "dist": {
  3607. "type": "zip",
  3608. "url": "https://ftp.drupal.org/files/projects/field_group-8.x-3.1.zip",
  3609. "reference": "8.x-3.1",
  3610. "shasum": "8a719eaea594f0ba874172831cb28da93c66b77a"
  3611. },
  3612. "require": {
  3613. "drupal/core": "^8.8 || ^9"
  3614. },
  3615. "require-dev": {
  3616. "drupal/jquery_ui_accordion": "^1.0"
  3617. },
  3618. "type": "drupal-module",
  3619. "extra": {
  3620. "drupal": {
  3621. "version": "8.x-3.1",
  3622. "datestamp": "1591772567",
  3623. "security-coverage": {
  3624. "status": "covered",
  3625. "message": "Covered by Drupal's security advisory policy"
  3626. }
  3627. }
  3628. },
  3629. "notification-url": "https://packages.drupal.org/8/downloads",
  3630. "license": [
  3631. "GPL-2.0-or-later"
  3632. ],
  3633. "authors": [
  3634. {
  3635. "name": "Hydra",
  3636. "homepage": "https://www.drupal.org/user/647364"
  3637. },
  3638. {
  3639. "name": "Stalski",
  3640. "homepage": "https://www.drupal.org/user/322618"
  3641. },
  3642. {
  3643. "name": "jyve",
  3644. "homepage": "https://www.drupal.org/user/591438"
  3645. },
  3646. {
  3647. "name": "nils.destoop",
  3648. "homepage": "https://www.drupal.org/user/361625"
  3649. },
  3650. {
  3651. "name": "swentel",
  3652. "homepage": "https://www.drupal.org/user/107403"
  3653. }
  3654. ],
  3655. "description": "Provides the field_group module.",
  3656. "homepage": "https://www.drupal.org/project/field_group",
  3657. "support": {
  3658. "source": "https://git.drupalcode.org/project/field_group",
  3659. "issues": "https://www.drupal.org/project/issues/field_group"
  3660. }
  3661. },
  3662. {
  3663. "name": "drupal/filefield_sources",
  3664. "version": "1.0.0-alpha5",
  3665. "source": {
  3666. "type": "git",
  3667. "url": "https://git.drupalcode.org/project/filefield_sources.git",
  3668. "reference": "8.x-1.0-alpha5"
  3669. },
  3670. "dist": {
  3671. "type": "zip",
  3672. "url": "https://ftp.drupal.org/files/projects/filefield_sources-8.x-1.0-alpha5.zip",
  3673. "reference": "8.x-1.0-alpha5",
  3674. "shasum": "e2438610bf829a82c6415f88f708b2dc73d91c49"
  3675. },
  3676. "require": {
  3677. "drupal/core": "^8 || ^9"
  3678. },
  3679. "require-dev": {
  3680. "drupal/imce": "^2.3"
  3681. },
  3682. "type": "drupal-module",
  3683. "extra": {
  3684. "drupal": {
  3685. "version": "8.x-1.0-alpha5",
  3686. "datestamp": "1642555269",
  3687. "security-coverage": {
  3688. "status": "not-covered",
  3689. "message": "Alpha releases are not covered by Drupal security advisories."
  3690. }
  3691. }
  3692. },
  3693. "notification-url": "https://packages.drupal.org/8/downloads",
  3694. "license": [
  3695. "GPL-2.0-or-later"
  3696. ],
  3697. "authors": [
  3698. {
  3699. "name": "Nate Lampton (quicksketch)",
  3700. "homepage": "https://www.drupal.org/u/quicksketch",
  3701. "role": "Maintainer"
  3702. },
  3703. {
  3704. "name": "Andrey Khromyshev (profak)",
  3705. "homepage": "https://www.drupal.org/u/profak",
  3706. "role": "Maintainer"
  3707. },
  3708. {
  3709. "name": "David Valdez (gnuget)",
  3710. "homepage": "https://www.drupal.org/u/gnuget",
  3711. "role": "Maintainer"
  3712. },
  3713. {
  3714. "name": "quicksketch",
  3715. "homepage": "https://www.drupal.org/user/35821"
  3716. }
  3717. ],
  3718. "description": "Extends File fields to allow referencing of existing files, remote files, and server files.",
  3719. "homepage": "https://www.drupal.org/project/filefield_sources",
  3720. "support": {
  3721. "source": "https://git.drupalcode.org/project/filefield_sources",
  3722. "issues": "https://www.drupal.org/project/issues/filefield_sources",
  3723. "irc": "irc://irc.freenode.org/drupal-contribute"
  3724. }
  3725. },
  3726. {
  3727. "name": "drupal/filter_perms",
  3728. "version": "1.0.0-alpha1",
  3729. "source": {
  3730. "type": "git",
  3731. "url": "https://git.drupalcode.org/project/filter_perms.git",
  3732. "reference": "8.x-1.0-alpha1"
  3733. },
  3734. "dist": {
  3735. "type": "zip",
  3736. "url": "https://ftp.drupal.org/files/projects/filter_perms-8.x-1.0-alpha1.zip",
  3737. "reference": "8.x-1.0-alpha1",
  3738. "shasum": "5a4bf4332f97b238864191042198f9f9a85cab26"
  3739. },
  3740. "require": {
  3741. "drupal/core": "^8 || ^9"
  3742. },
  3743. "type": "drupal-module",
  3744. "extra": {
  3745. "drupal": {
  3746. "version": "8.x-1.0-alpha1",
  3747. "datestamp": "1595202904",
  3748. "security-coverage": {
  3749. "status": "not-covered",
  3750. "message": "Alpha releases are not covered by Drupal security advisories."
  3751. }
  3752. }
  3753. },
  3754. "notification-url": "https://packages.drupal.org/8/downloads",
  3755. "license": [
  3756. "GPL-2.0-or-later"
  3757. ],
  3758. "authors": [
  3759. {
  3760. "name": "cYu",
  3761. "homepage": "https://www.drupal.org/user/202205"
  3762. },
  3763. {
  3764. "name": "deekayen",
  3765. "homepage": "https://www.drupal.org/user/972"
  3766. },
  3767. {
  3768. "name": "ivavictoria",
  3769. "homepage": "https://www.drupal.org/user/3061533"
  3770. },
  3771. {
  3772. "name": "justcaldwell",
  3773. "homepage": "https://www.drupal.org/user/290069"
  3774. },
  3775. {
  3776. "name": "mgbellaire",
  3777. "homepage": "https://www.drupal.org/user/1831932"
  3778. },
  3779. {
  3780. "name": "willzyx",
  3781. "homepage": "https://www.drupal.org/user/1043862"
  3782. }
  3783. ],
  3784. "description": "Provides role and module filters to simplify the user permissions page.",
  3785. "homepage": "https://www.drupal.org/project/filter_perms",
  3786. "support": {
  3787. "source": "https://git.drupalcode.org/project/filter_perms"
  3788. }
  3789. },
  3790. {
  3791. "name": "drupal/honeypot",
  3792. "version": "2.0.2",
  3793. "source": {
  3794. "type": "git",
  3795. "url": "https://git.drupalcode.org/project/honeypot.git",
  3796. "reference": "2.0.2"
  3797. },
  3798. "dist": {
  3799. "type": "zip",
  3800. "url": "https://ftp.drupal.org/files/projects/honeypot-2.0.2.zip",
  3801. "reference": "2.0.2",
  3802. "shasum": "8a3e15509f649c39e88c4f22105f12fb6445fc62"
  3803. },
  3804. "require": {
  3805. "drupal/core": "^8.8.2 || ^9"
  3806. },
  3807. "type": "drupal-module",
  3808. "extra": {
  3809. "drupal": {
  3810. "version": "2.0.2",
  3811. "datestamp": "1651895165",
  3812. "security-coverage": {
  3813. "status": "covered",
  3814. "message": "Covered by Drupal's security advisory policy"
  3815. }
  3816. }
  3817. },
  3818. "notification-url": "https://packages.drupal.org/8/downloads",
  3819. "license": [
  3820. "GPL-2.0-or-later"
  3821. ],
  3822. "authors": [
  3823. {
  3824. "name": "Jeff Geerling",
  3825. "homepage": "https://www.drupal.org/user/389011",
  3826. "email": "geerlingguy@mac.com"
  3827. },
  3828. {
  3829. "name": "Manuel Garcia",
  3830. "homepage": "https://www.drupal.org/user/213194"
  3831. },
  3832. {
  3833. "name": "TR",
  3834. "homepage": "https://www.drupal.org/user/202830"
  3835. },
  3836. {
  3837. "name": "vijaycs85",
  3838. "homepage": "https://www.drupal.org/user/93488"
  3839. }
  3840. ],
  3841. "description": "Mitigates spam form submissions using the honeypot method.",
  3842. "homepage": "https://www.drupal.org/project/honeypot",
  3843. "keywords": [
  3844. "deterrent",
  3845. "form",
  3846. "honeypot",
  3847. "honeytrap",
  3848. "php",
  3849. "spam"
  3850. ],
  3851. "support": {
  3852. "source": "https://git.drupalcode.org/project/honeypot",
  3853. "issues": "https://www.drupal.org/project/issues/honeypot"
  3854. }
  3855. },
  3856. {
  3857. "name": "drupal/jquery_ui",
  3858. "version": "1.4.0",
  3859. "source": {
  3860. "type": "git",
  3861. "url": "https://git.drupalcode.org/project/jquery_ui.git",
  3862. "reference": "8.x-1.4"
  3863. },
  3864. "dist": {
  3865. "type": "zip",
  3866. "url": "https://ftp.drupal.org/files/projects/jquery_ui-8.x-1.4.zip",
  3867. "reference": "8.x-1.4",
  3868. "shasum": "64c19ecc8902e2b4b1ab0cc5f5fe28dbc83bfebe"
  3869. },
  3870. "require": {
  3871. "drupal/core": "^8 || ^9"
  3872. },
  3873. "type": "drupal-module",
  3874. "extra": {
  3875. "drupal": {
  3876. "version": "8.x-1.4",
  3877. "datestamp": "1582149957",
  3878. "security-coverage": {
  3879. "status": "covered",
  3880. "message": "Covered by Drupal's security advisory policy"
  3881. }
  3882. }
  3883. },
  3884. "notification-url": "https://packages.drupal.org/8/downloads",
  3885. "license": [
  3886. "GPL-2.0-or-later"
  3887. ],
  3888. "authors": [
  3889. {
  3890. "name": "bnjmnm",
  3891. "homepage": "https://www.drupal.org/user/2369194"
  3892. },
  3893. {
  3894. "name": "jjeff",
  3895. "homepage": "https://www.drupal.org/user/17190"
  3896. },
  3897. {
  3898. "name": "lauriii",
  3899. "homepage": "https://www.drupal.org/user/1078742"
  3900. },
  3901. {
  3902. "name": "litwol",
  3903. "homepage": "https://www.drupal.org/user/78134"
  3904. },
  3905. {
  3906. "name": "mfb",
  3907. "homepage": "https://www.drupal.org/user/12302"
  3908. },
  3909. {
  3910. "name": "mfer",
  3911. "homepage": "https://www.drupal.org/user/25701"
  3912. },
  3913. {
  3914. "name": "mikelutz",
  3915. "homepage": "https://www.drupal.org/user/2972409"
  3916. },
  3917. {
  3918. "name": "nod_",
  3919. "homepage": "https://www.drupal.org/user/598310"
  3920. },
  3921. {
  3922. "name": "phenaproxima",
  3923. "homepage": "https://www.drupal.org/user/205645"
  3924. },
  3925. {
  3926. "name": "RobLoach",
  3927. "homepage": "https://www.drupal.org/user/61114"
  3928. },
  3929. {
  3930. "name": "sun",
  3931. "homepage": "https://www.drupal.org/user/54136"
  3932. },
  3933. {
  3934. "name": "webchick",
  3935. "homepage": "https://www.drupal.org/user/24967"
  3936. },
  3937. {
  3938. "name": "Wim Leers",
  3939. "homepage": "https://www.drupal.org/user/99777"
  3940. },
  3941. {
  3942. "name": "zrpnr",
  3943. "homepage": "https://www.drupal.org/user/1448368"
  3944. }
  3945. ],
  3946. "description": "Provides jQuery UI library.",
  3947. "homepage": "https://www.drupal.org/project/jquery_ui",
  3948. "support": {
  3949. "source": "https://git.drupalcode.org/project/jquery_ui"
  3950. }
  3951. },
  3952. {
  3953. "name": "drupal/jquery_ui_draggable",
  3954. "version": "1.2.0",
  3955. "source": {
  3956. "type": "git",
  3957. "url": "https://git.drupalcode.org/project/jquery_ui_draggable.git",
  3958. "reference": "8.x-1.2"
  3959. },
  3960. "dist": {
  3961. "type": "zip",
  3962. "url": "https://ftp.drupal.org/files/projects/jquery_ui_draggable-8.x-1.2.zip",
  3963. "reference": "8.x-1.2",
  3964. "shasum": "09e17046e38aebf84ed573822b0d5be6de3f0c94"
  3965. },
  3966. "require": {
  3967. "drupal/core": "^8 || ^9",
  3968. "drupal/jquery_ui": "*"
  3969. },
  3970. "type": "drupal-module",
  3971. "extra": {
  3972. "drupal": {
  3973. "version": "8.x-1.2",
  3974. "datestamp": "1582150027",
  3975. "security-coverage": {
  3976. "status": "covered",
  3977. "message": "Covered by Drupal's security advisory policy"
  3978. }
  3979. }
  3980. },
  3981. "notification-url": "https://packages.drupal.org/8/downloads",
  3982. "license": [
  3983. "GPL-2.0-or-later"
  3984. ],
  3985. "authors": [
  3986. {
  3987. "name": "bnjmnm",
  3988. "homepage": "https://www.drupal.org/user/2369194"
  3989. },
  3990. {
  3991. "name": "lauriii",
  3992. "homepage": "https://www.drupal.org/user/1078742"
  3993. },
  3994. {
  3995. "name": "zrpnr",
  3996. "homepage": "https://www.drupal.org/user/1448368"
  3997. }
  3998. ],
  3999. "description": "Provides jQuery UI Draggable library.",
  4000. "homepage": "https://www.drupal.org/project/jquery_ui_draggable",
  4001. "support": {
  4002. "source": "https://git.drupalcode.org/project/jquery_ui_draggable"
  4003. }
  4004. },
  4005. {
  4006. "name": "drupal/jquery_ui_droppable",
  4007. "version": "1.2.0",
  4008. "source": {
  4009. "type": "git",
  4010. "url": "https://git.drupalcode.org/project/jquery_ui_droppable.git",
  4011. "reference": "8.x-1.2"
  4012. },
  4013. "dist": {
  4014. "type": "zip",
  4015. "url": "https://ftp.drupal.org/files/projects/jquery_ui_droppable-8.x-1.2.zip",
  4016. "reference": "8.x-1.2",
  4017. "shasum": "6e53043f2d3215f211721eea4d4c6ab5d1672b14"
  4018. },
  4019. "require": {
  4020. "drupal/core": "^8 || ^9",
  4021. "drupal/jquery_ui": "*",
  4022. "drupal/jquery_ui_draggable": "*"
  4023. },
  4024. "type": "drupal-module",
  4025. "extra": {
  4026. "drupal": {
  4027. "version": "8.x-1.2",
  4028. "datestamp": "1582150071",
  4029. "security-coverage": {
  4030. "status": "covered",
  4031. "message": "Covered by Drupal's security advisory policy"
  4032. }
  4033. }
  4034. },
  4035. "notification-url": "https://packages.drupal.org/8/downloads",
  4036. "license": [
  4037. "GPL-2.0-or-later"
  4038. ],
  4039. "authors": [
  4040. {
  4041. "name": "bnjmnm",
  4042. "homepage": "https://www.drupal.org/user/2369194"
  4043. },
  4044. {
  4045. "name": "lauriii",
  4046. "homepage": "https://www.drupal.org/user/1078742"
  4047. },
  4048. {
  4049. "name": "zrpnr",
  4050. "homepage": "https://www.drupal.org/user/1448368"
  4051. }
  4052. ],
  4053. "description": "Provides jQuery UI Droppable library.",
  4054. "homepage": "https://www.drupal.org/project/jquery_ui_droppable",
  4055. "support": {
  4056. "source": "https://git.drupalcode.org/project/jquery_ui_droppable"
  4057. }
  4058. },
  4059. {
  4060. "name": "drupal/jquery_ui_sortable",
  4061. "version": "1.1.0",
  4062. "source": {
  4063. "type": "git",
  4064. "url": "https://git.drupalcode.org/project/jquery_ui_sortable.git",
  4065. "reference": "8.x-1.1"
  4066. },
  4067. "dist": {
  4068. "type": "zip",
  4069. "url": "https://ftp.drupal.org/files/projects/jquery_ui_sortable-8.x-1.1.zip",
  4070. "reference": "8.x-1.1",
  4071. "shasum": "dbb64f4e8f57b08a3e0ddd2e5cc3ba8d27d2722f"
  4072. },
  4073. "require": {
  4074. "drupal/core": "^8 || ^9",
  4075. "drupal/jquery_ui": "*"
  4076. },
  4077. "type": "drupal-module",
  4078. "extra": {
  4079. "drupal": {
  4080. "version": "8.x-1.1",
  4081. "datestamp": "1583174744",
  4082. "security-coverage": {
  4083. "status": "covered",
  4084. "message": "Covered by Drupal's security advisory policy"
  4085. }
  4086. }
  4087. },
  4088. "notification-url": "https://packages.drupal.org/8/downloads",
  4089. "license": [
  4090. "GPL-2.0-or-later"
  4091. ],
  4092. "authors": [
  4093. {
  4094. "name": "bnjmnm",
  4095. "homepage": "https://www.drupal.org/user/2369194"
  4096. },
  4097. {
  4098. "name": "lauriii",
  4099. "homepage": "https://www.drupal.org/user/1078742"
  4100. },
  4101. {
  4102. "name": "zrpnr",
  4103. "homepage": "https://www.drupal.org/user/1448368"
  4104. }
  4105. ],
  4106. "description": "Provides jQuery UI Sortable library.",
  4107. "homepage": "https://www.drupal.org/project/jquery_ui_sortable",
  4108. "support": {
  4109. "source": "https://git.drupalcode.org/project/jquery_ui_sortable"
  4110. }
  4111. },
  4112. {
  4113. "name": "drupal/linkit",
  4114. "version": "5.0.0-beta11",
  4115. "source": {
  4116. "type": "git",
  4117. "url": "https://git.drupalcode.org/project/linkit.git",
  4118. "reference": "8.x-5.0-beta11"
  4119. },
  4120. "dist": {
  4121. "type": "zip",
  4122. "url": "https://ftp.drupal.org/files/projects/linkit-8.x-5.0-beta11.zip",
  4123. "reference": "8.x-5.0-beta11",
  4124. "shasum": "9133a3e61deafdd6a9d5a8b31a1f42e16051ee97"
  4125. },
  4126. "require": {
  4127. "drupal/core": "^8.7.7 || ^9"
  4128. },
  4129. "require-dev": {
  4130. "drupal/imce": "*"
  4131. },
  4132. "type": "drupal-module",
  4133. "extra": {
  4134. "drupal": {
  4135. "version": "8.x-5.0-beta11",
  4136. "datestamp": "1591971693",
  4137. "security-coverage": {
  4138. "status": "not-covered",
  4139. "message": "Beta releases are not covered by Drupal security advisories."
  4140. }
  4141. }
  4142. },
  4143. "notification-url": "https://packages.drupal.org/8/downloads",
  4144. "license": [
  4145. "GPL-2.0+"
  4146. ],
  4147. "authors": [
  4148. {
  4149. "name": "Emil Stjerneman",
  4150. "homepage": "https://stjerneman.com",
  4151. "email": "emil@stjerneman.com",
  4152. "role": "Maintainer"
  4153. }
  4154. ],
  4155. "description": "Linkit - Enriched linking experience",
  4156. "homepage": "http://drupal.org/project/linkit",
  4157. "support": {
  4158. "source": "http://cgit.drupalcode.org/linkit",
  4159. "issues": "http://drupal.org/project/linkit"
  4160. }
  4161. },
  4162. {
  4163. "name": "drupal/login_emailusername",
  4164. "version": "2.1.0",
  4165. "source": {
  4166. "type": "git",
  4167. "url": "https://git.drupalcode.org/project/login_emailusername.git",
  4168. "reference": "2.1.0"
  4169. },
  4170. "dist": {
  4171. "type": "zip",
  4172. "url": "https://ftp.drupal.org/files/projects/login_emailusername-2.1.0.zip",
  4173. "reference": "2.1.0",
  4174. "shasum": "5a3858d06e7d67110a6cd8eda38cbfeb350f115c"
  4175. },
  4176. "require": {
  4177. "drupal/core": "^8.8 || ^9 || ^10"
  4178. },
  4179. "type": "drupal-module",
  4180. "extra": {
  4181. "drupal": {
  4182. "version": "2.1.0",
  4183. "datestamp": "1677072401",
  4184. "security-coverage": {
  4185. "status": "covered",
  4186. "message": "Covered by Drupal's security advisory policy"
  4187. }
  4188. },
  4189. "branch-alias": {
  4190. "dev-8.x-1.x": "8.1.x-dev"
  4191. }
  4192. },
  4193. "notification-url": "https://packages.drupal.org/8/downloads",
  4194. "license": [
  4195. "GPL-2.0-or-later"
  4196. ],
  4197. "authors": [
  4198. {
  4199. "name": "See contributors",
  4200. "homepage": "https://www.drupal.org/node/2820429/committers",
  4201. "role": "contributor"
  4202. },
  4203. {
  4204. "name": "rjjakes",
  4205. "homepage": "https://www.drupal.org/user/3457245"
  4206. },
  4207. {
  4208. "name": "VladimirAus",
  4209. "homepage": "https://www.drupal.org/user/673120"
  4210. }
  4211. ],
  4212. "description": "Login with the email as username.",
  4213. "homepage": "https://drupal.org/project/login_emailusername",
  4214. "support": {
  4215. "source": "https://git.drupalcode.org/project/login_emailusername",
  4216. "issues": "https://drupal.org/project/issues/login_emailusername"
  4217. }
  4218. },
  4219. {
  4220. "name": "drupal/maillog",
  4221. "version": "1.0.0-beta1",
  4222. "source": {
  4223. "type": "git",
  4224. "url": "https://git.drupalcode.org/project/maillog.git",
  4225. "reference": "8.x-1.0-beta1"
  4226. },
  4227. "dist": {
  4228. "type": "zip",
  4229. "url": "https://ftp.drupal.org/files/projects/maillog-8.x-1.0-beta1.zip",
  4230. "reference": "8.x-1.0-beta1",
  4231. "shasum": "0af5fe6fcdc8053bd0a61561a2c69e69c2b1faf2"
  4232. },
  4233. "require": {
  4234. "drupal/core": "^8 || ^9"
  4235. },
  4236. "type": "drupal-module",
  4237. "extra": {
  4238. "drupal": {
  4239. "version": "8.x-1.0-beta1",
  4240. "datestamp": "1600800168",
  4241. "security-coverage": {
  4242. "status": "not-covered",
  4243. "message": "Beta releases are not covered by Drupal security advisories."
  4244. }
  4245. }
  4246. },
  4247. "notification-url": "https://packages.drupal.org/8/downloads",
  4248. "license": [
  4249. "GPL-2.0-or-later"
  4250. ],
  4251. "authors": [
  4252. {
  4253. "name": "berdir",
  4254. "homepage": "https://www.drupal.org/user/214652"
  4255. },
  4256. {
  4257. "name": "damienmckenna",
  4258. "homepage": "https://www.drupal.org/user/108450"
  4259. },
  4260. {
  4261. "name": "miro_dietiker",
  4262. "homepage": "https://www.drupal.org/user/227761"
  4263. },
  4264. {
  4265. "name": "pluess",
  4266. "homepage": "https://www.drupal.org/user/84659"
  4267. }
  4268. ],
  4269. "description": "Utility to log all Mails for debugging purposes. It is possible to suppress mail delivery for e.g. dev or staging systems.",
  4270. "homepage": "https://www.drupal.org/project/maillog",
  4271. "support": {
  4272. "source": "https://git.drupalcode.org/project/maillog"
  4273. }
  4274. },
  4275. {
  4276. "name": "drupal/matomo",
  4277. "version": "1.9.0",
  4278. "source": {
  4279. "type": "git",
  4280. "url": "https://git.drupalcode.org/project/matomo.git",
  4281. "reference": "8.x-1.9"
  4282. },
  4283. "dist": {
  4284. "type": "zip",
  4285. "url": "https://ftp.drupal.org/files/projects/matomo-8.x-1.9.zip",
  4286. "reference": "8.x-1.9",
  4287. "shasum": "2c818af730f834d3aef3f6b7aa29f05e6fa9246d"
  4288. },
  4289. "require": {
  4290. "drupal/core": "~8.5"
  4291. },
  4292. "require-dev": {
  4293. "drupal/php": "*",
  4294. "drupal/token": "*"
  4295. },
  4296. "type": "drupal-module",
  4297. "extra": {
  4298. "branch-alias": {
  4299. "dev-1.x": "1.x-dev"
  4300. },
  4301. "drupal": {
  4302. "version": "8.x-1.9",
  4303. "datestamp": "1549615080",
  4304. "security-coverage": {
  4305. "status": "covered",
  4306. "message": "Covered by Drupal's security advisory policy"
  4307. }
  4308. }
  4309. },
  4310. "notification-url": "https://packages.drupal.org/8/downloads",
  4311. "license": [
  4312. "GPL-2.0+"
  4313. ],
  4314. "authors": [
  4315. {
  4316. "name": "hass",
  4317. "homepage": "https://www.drupal.org/u/hass"
  4318. },
  4319. {
  4320. "name": "See other contributors",
  4321. "homepage": "https://www.drupal.org/node/247808/committers"
  4322. }
  4323. ],
  4324. "description": "Adds Matomo javascript tracking code to all your site's pages",
  4325. "homepage": "https://www.drupal.org/project/matomo",
  4326. "support": {
  4327. "source": "https://git.drupal.org/project/matomo.git",
  4328. "issues": "https://www.drupal.org/project/issues/matomo"
  4329. }
  4330. },
  4331. {
  4332. "name": "drupal/menu_admin_per_menu",
  4333. "version": "1.1.0",
  4334. "source": {
  4335. "type": "git",
  4336. "url": "https://git.drupalcode.org/project/menu_admin_per_menu.git",
  4337. "reference": "8.x-1.1"
  4338. },
  4339. "dist": {
  4340. "type": "zip",
  4341. "url": "https://ftp.drupal.org/files/projects/menu_admin_per_menu-8.x-1.1.zip",
  4342. "reference": "8.x-1.1",
  4343. "shasum": "a9522b06654faa2d9bd23f704c93e1093f3ff6ec"
  4344. },
  4345. "require": {
  4346. "drupal/core": "^8 || ^9"
  4347. },
  4348. "type": "drupal-module",
  4349. "extra": {
  4350. "drupal": {
  4351. "version": "8.x-1.1",
  4352. "datestamp": "1591098397",
  4353. "security-coverage": {
  4354. "status": "covered",
  4355. "message": "Covered by Drupal's security advisory policy"
  4356. }
  4357. }
  4358. },
  4359. "notification-url": "https://packages.drupal.org/8/downloads",
  4360. "license": [
  4361. "GPL-2.0-or-later"
  4362. ],
  4363. "authors": [
  4364. {
  4365. "name": "JeroenT",
  4366. "homepage": "https://www.drupal.org/user/2228934"
  4367. },
  4368. {
  4369. "name": "anrikun",
  4370. "homepage": "https://www.drupal.org/user/410199"
  4371. },
  4372. {
  4373. "name": "jonas139",
  4374. "homepage": "https://www.drupal.org/user/2873401"
  4375. },
  4376. {
  4377. "name": "mkdok",
  4378. "homepage": "https://www.drupal.org/user/3308753"
  4379. }
  4380. ],
  4381. "description": "Allows to give roles per menu admin permissions without giving them full administer menu permission.",
  4382. "homepage": "https://www.drupal.org/project/menu_admin_per_menu",
  4383. "support": {
  4384. "source": "https://git.drupalcode.org/project/menu_admin_per_menu"
  4385. }
  4386. },
  4387. {
  4388. "name": "drupal/metatag",
  4389. "version": "1.14.0",
  4390. "source": {
  4391. "type": "git",
  4392. "url": "https://git.drupalcode.org/project/metatag.git",
  4393. "reference": "8.x-1.14"
  4394. },
  4395. "dist": {
  4396. "type": "zip",
  4397. "url": "https://ftp.drupal.org/files/projects/metatag-8.x-1.14.zip",
  4398. "reference": "8.x-1.14",
  4399. "shasum": "9bf9f1517ad015d0c93ca1460e284c557624aa90"
  4400. },
  4401. "require": {
  4402. "drupal/core": "^8 || ^9",
  4403. "drupal/token": "^1.0"
  4404. },
  4405. "require-dev": {
  4406. "drupal/metatag_dc": "*",
  4407. "drupal/metatag_open_graph": "*",
  4408. "drupal/page_manager": "4.x-dev",
  4409. "drupal/panelizer": "4.x-dev",
  4410. "drupal/redirect": "1.x-dev"
  4411. },
  4412. "type": "drupal-module",
  4413. "extra": {
  4414. "drupal": {
  4415. "version": "8.x-1.14",
  4416. "datestamp": "1597183852",
  4417. "security-coverage": {
  4418. "status": "covered",
  4419. "message": "Covered by Drupal's security advisory policy"
  4420. }
  4421. }
  4422. },
  4423. "notification-url": "https://packages.drupal.org/8/downloads",
  4424. "license": [
  4425. "GPL-2.0-or-later"
  4426. ],
  4427. "authors": [
  4428. {
  4429. "name": "See contributors",
  4430. "homepage": "https://www.drupal.org/node/640498/committers",
  4431. "role": "Developer"
  4432. },
  4433. {
  4434. "name": "Dave Reid",
  4435. "homepage": "https://www.drupal.org/user/53892"
  4436. }
  4437. ],
  4438. "description": "Manage meta tags for all entities.",
  4439. "homepage": "https://www.drupal.org/project/metatag",
  4440. "keywords": [
  4441. "Drupal",
  4442. "seo"
  4443. ],
  4444. "support": {
  4445. "source": "https://git.drupalcode.org/project/metatag",
  4446. "issues": "https://www.drupal.org/project/issues/metatag",
  4447. "docs": "https://www.drupal.org/docs/8/modules/metatag"
  4448. }
  4449. },
  4450. {
  4451. "name": "drupal/migrate_plus",
  4452. "version": "5.0.0",
  4453. "source": {
  4454. "type": "git",
  4455. "url": "https://git.drupalcode.org/project/migrate_plus.git",
  4456. "reference": "8.x-5.0"
  4457. },
  4458. "dist": {
  4459. "type": "zip",
  4460. "url": "https://ftp.drupal.org/files/projects/migrate_plus-8.x-5.0.zip",
  4461. "reference": "8.x-5.0",
  4462. "shasum": "5509c76498e4c6141c29db626d20904e1e8593c6"
  4463. },
  4464. "require": {
  4465. "drupal/core": "^8 || ^9"
  4466. },
  4467. "require-dev": {
  4468. "drupal/migrate_example_advanced_setup": "*",
  4469. "drupal/migrate_example_setup": "*"
  4470. },
  4471. "suggest": {
  4472. "ext-soap": "*",
  4473. "sainsburys/guzzle-oauth2-plugin": "3.0 required for the OAuth2 authentication plugin"
  4474. },
  4475. "type": "drupal-module",
  4476. "extra": {
  4477. "drupal": {
  4478. "version": "8.x-5.0",
  4479. "datestamp": "1586234154",
  4480. "security-coverage": {
  4481. "status": "covered",
  4482. "message": "Covered by Drupal's security advisory policy"
  4483. }
  4484. }
  4485. },
  4486. "notification-url": "https://packages.drupal.org/8/downloads",
  4487. "license": [
  4488. "GPL-2.0+"
  4489. ],
  4490. "authors": [
  4491. {
  4492. "name": "Mike Ryan",
  4493. "homepage": "https://www.drupal.org/u/mikeryan",
  4494. "role": "Maintainer"
  4495. },
  4496. {
  4497. "name": "Lucas Hedding",
  4498. "homepage": "https://www.drupal.org/u/heddn",
  4499. "role": "Maintainer"
  4500. }
  4501. ],
  4502. "description": "Enhancements to core migration support.",
  4503. "homepage": "https://www.drupal.org/project/migrate_plus",
  4504. "support": {
  4505. "source": "https://git.drupalcode.org/project/migrate_plus",
  4506. "issues": "https://www.drupal.org/project/issues/migrate_plus",
  4507. "slack": "#migrate"
  4508. }
  4509. },
  4510. {
  4511. "name": "drupal/migrate_tools",
  4512. "version": "4.5.0",
  4513. "source": {
  4514. "type": "git",
  4515. "url": "https://git.drupalcode.org/project/migrate_tools.git",
  4516. "reference": "8.x-4.5"
  4517. },
  4518. "dist": {
  4519. "type": "zip",
  4520. "url": "https://ftp.drupal.org/files/projects/migrate_tools-8.x-4.5.zip",
  4521. "reference": "8.x-4.5",
  4522. "shasum": "06390b359bf53c50a30f2d6dc4c7542bfb1fe7ca"
  4523. },
  4524. "require": {
  4525. "drupal/core": "^8 || ^9",
  4526. "drupal/migrate_plus": "^4 || ^5"
  4527. },
  4528. "require-dev": {
  4529. "drupal/migrate_plus": "4.x-dev",
  4530. "drupal/migrate_source_csv": "^2.2",
  4531. "drush/drush": "^10"
  4532. },
  4533. "type": "drupal-module",
  4534. "extra": {
  4535. "drupal": {
  4536. "version": "8.x-4.5",
  4537. "datestamp": "1574693285",
  4538. "security-coverage": {
  4539. "status": "covered",
  4540. "message": "Covered by Drupal's security advisory policy"
  4541. }
  4542. },
  4543. "drush": {
  4544. "services": {
  4545. "drush.services.yml": "^9 || ^10"
  4546. }
  4547. }
  4548. },
  4549. "notification-url": "https://packages.drupal.org/8/downloads",
  4550. "license": [
  4551. "GPL-2.0-or-later"
  4552. ],
  4553. "authors": [
  4554. {
  4555. "name": "heddn",
  4556. "homepage": "https://www.drupal.org/user/1463982"
  4557. },
  4558. {
  4559. "name": "mikeryan",
  4560. "homepage": "https://www.drupal.org/user/4420"
  4561. },
  4562. {
  4563. "name": "moshe weitzman",
  4564. "homepage": "https://www.drupal.org/user/23"
  4565. }
  4566. ],
  4567. "description": "Tools to assist in developing and running migrations.",
  4568. "homepage": "http://drupal.org/project/migrate_tools",
  4569. "support": {
  4570. "source": "http://cgit.drupalcode.org/migrate_tools",
  4571. "issues": "http://drupal.org/project/migrate_tools",
  4572. "irc": "irc://irc.freenode.org/drupal-migrate"
  4573. }
  4574. },
  4575. {
  4576. "name": "drupal/path_alias_xt",
  4577. "version": "dev-1.x",
  4578. "source": {
  4579. "type": "git",
  4580. "url": "https://git.drupalcode.org/project/path_alias_xt.git",
  4581. "reference": "10ef76dd3eb25bc1342195336291ded3f2d8cc7e"
  4582. },
  4583. "require": {
  4584. "drupal/core": "^8.7.7 || ^9"
  4585. },
  4586. "type": "drupal-module",
  4587. "extra": {
  4588. "branch-alias": {
  4589. "dev-1.x": "1.x-dev"
  4590. },
  4591. "drupal": {
  4592. "version": "8.x-1.x-dev",
  4593. "datestamp": "1582322571",
  4594. "security-coverage": {
  4595. "status": "not-covered",
  4596. "message": "Dev releases are not covered by Drupal security advisories."
  4597. }
  4598. }
  4599. },
  4600. "notification-url": "https://packages.drupal.org/8/downloads",
  4601. "license": [
  4602. "GPL-2.0-or-later"
  4603. ],
  4604. "authors": [
  4605. {
  4606. "name": "RdeBoer",
  4607. "homepage": "https://www.drupal.org/user/404007"
  4608. },
  4609. {
  4610. "name": "adriancid",
  4611. "homepage": "https://www.drupal.org/user/1962106"
  4612. },
  4613. {
  4614. "name": "sdstyles",
  4615. "homepage": "https://www.drupal.org/user/1420228"
  4616. }
  4617. ],
  4618. "description": "Automatically extend path aliases to include tabs, like <em>about-us/edit</em> for <em>node/123/edit</em>.<br> Allow these aliases to be entered in page specification wild-cards, <em>about-us*</em>, e.g for block visibility.",
  4619. "homepage": "https://www.drupal.org/project/path_alias_xt",
  4620. "support": {
  4621. "source": "https://git.drupalcode.org/project/path_alias_xt"
  4622. },
  4623. "time": "2020-05-24T05:57:09+00:00"
  4624. },
  4625. {
  4626. "name": "drupal/pathauto",
  4627. "version": "1.8.0",
  4628. "source": {
  4629. "type": "git",
  4630. "url": "https://git.drupalcode.org/project/pathauto.git",
  4631. "reference": "8.x-1.8"
  4632. },
  4633. "dist": {
  4634. "type": "zip",
  4635. "url": "https://ftp.drupal.org/files/projects/pathauto-8.x-1.8.zip",
  4636. "reference": "8.x-1.8",
  4637. "shasum": "ede3216abb9c4f77709338d9147334c595046329"
  4638. },
  4639. "require": {
  4640. "drupal/core": "^8.8 || ^9",
  4641. "drupal/ctools": "*",
  4642. "drupal/token": "*"
  4643. },
  4644. "suggest": {
  4645. "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."
  4646. },
  4647. "type": "drupal-module",
  4648. "extra": {
  4649. "drupal": {
  4650. "version": "8.x-1.8",
  4651. "datestamp": "1588103046",
  4652. "security-coverage": {
  4653. "status": "covered",
  4654. "message": "Covered by Drupal's security advisory policy"
  4655. }
  4656. },
  4657. "drush": {
  4658. "services": {
  4659. "drush.services.yml": "^9 || ^10"
  4660. }
  4661. }
  4662. },
  4663. "notification-url": "https://packages.drupal.org/8/downloads",
  4664. "license": [
  4665. "GPL-2.0-or-later"
  4666. ],
  4667. "authors": [
  4668. {
  4669. "name": "Berdir",
  4670. "homepage": "https://www.drupal.org/user/214652"
  4671. },
  4672. {
  4673. "name": "Dave Reid",
  4674. "homepage": "https://www.drupal.org/user/53892"
  4675. },
  4676. {
  4677. "name": "Freso",
  4678. "homepage": "https://www.drupal.org/user/27504"
  4679. },
  4680. {
  4681. "name": "greggles",
  4682. "homepage": "https://www.drupal.org/user/36762"
  4683. }
  4684. ],
  4685. "description": "Provides a mechanism for modules to automatically generate aliases for the content they manage.",
  4686. "homepage": "https://www.drupal.org/project/pathauto",
  4687. "support": {
  4688. "source": "https://cgit.drupalcode.org/pathauto",
  4689. "issues": "https://www.drupal.org/project/issues/pathauto",
  4690. "documentation": "https://www.drupal.org/docs/8/modules/pathauto"
  4691. }
  4692. },
  4693. {
  4694. "name": "drupal/profile",
  4695. "version": "1.1.0",
  4696. "source": {
  4697. "type": "git",
  4698. "url": "https://git.drupalcode.org/project/profile.git",
  4699. "reference": "8.x-1.1"
  4700. },
  4701. "dist": {
  4702. "type": "zip",
  4703. "url": "https://ftp.drupal.org/files/projects/profile-8.x-1.1.zip",
  4704. "reference": "8.x-1.1",
  4705. "shasum": "b8f6aca4f432228e614dca0a50cb187e936e4825"
  4706. },
  4707. "require": {
  4708. "drupal/core": "^8.7.7 || ^9",
  4709. "drupal/entity": "^1.0-rc2"
  4710. },
  4711. "require-dev": {
  4712. "drupal/token": "^1.0"
  4713. },
  4714. "type": "drupal-module",
  4715. "extra": {
  4716. "drupal": {
  4717. "version": "8.x-1.1",
  4718. "datestamp": "1582134004",
  4719. "security-coverage": {
  4720. "status": "covered",
  4721. "message": "Covered by Drupal's security advisory policy"
  4722. }
  4723. }
  4724. },
  4725. "notification-url": "https://packages.drupal.org/8/downloads",
  4726. "license": [
  4727. "GPL-2.0+"
  4728. ],
  4729. "authors": [
  4730. {
  4731. "name": "bojanz",
  4732. "homepage": "https://www.drupal.org/user/86106"
  4733. },
  4734. {
  4735. "name": "daggerhart",
  4736. "homepage": "https://www.drupal.org/user/167806"
  4737. },
  4738. {
  4739. "name": "fago",
  4740. "homepage": "https://www.drupal.org/user/16747"
  4741. },
  4742. {
  4743. "name": "jsacksick",
  4744. "homepage": "https://www.drupal.org/user/972218"
  4745. },
  4746. {
  4747. "name": "mglaman",
  4748. "homepage": "https://www.drupal.org/user/2416470"
  4749. },
  4750. {
  4751. "name": "pcambra",
  4752. "homepage": "https://www.drupal.org/user/122101"
  4753. }
  4754. ],
  4755. "description": "Provides configurable user profiles.",
  4756. "homepage": "http://drupal.org/project/profile",
  4757. "support": {
  4758. "source": "https://git.drupalcode.org/project/profile"
  4759. }
  4760. },
  4761. {
  4762. "name": "drupal/redirect",
  4763. "version": "1.6.0",
  4764. "source": {
  4765. "type": "git",
  4766. "url": "https://git.drupalcode.org/project/redirect.git",
  4767. "reference": "8.x-1.6"
  4768. },
  4769. "dist": {
  4770. "type": "zip",
  4771. "url": "https://ftp.drupal.org/files/projects/redirect-8.x-1.6.zip",
  4772. "reference": "8.x-1.6",
  4773. "shasum": "f848e001deac8425ae57d4b9397087c491d37294"
  4774. },
  4775. "require": {
  4776. "drupal/core": "^8.8 || ^9"
  4777. },
  4778. "type": "drupal-module",
  4779. "extra": {
  4780. "drupal": {
  4781. "version": "8.x-1.6",
  4782. "datestamp": "1589312204",
  4783. "security-coverage": {
  4784. "status": "covered",
  4785. "message": "Covered by Drupal's security advisory policy"
  4786. }
  4787. }
  4788. },
  4789. "notification-url": "https://packages.drupal.org/8/downloads",
  4790. "license": [
  4791. "GPL-2.0-or-later"
  4792. ],
  4793. "authors": [
  4794. {
  4795. "name": "Berdir",
  4796. "homepage": "https://www.drupal.org/user/214652"
  4797. },
  4798. {
  4799. "name": "Dave Reid",
  4800. "homepage": "https://www.drupal.org/user/53892"
  4801. },
  4802. {
  4803. "name": "pifagor",
  4804. "homepage": "https://www.drupal.org/user/2375692"
  4805. }
  4806. ],
  4807. "description": "Allows users to redirect from old URLs to new URLs.",
  4808. "homepage": "https://www.drupal.org/project/redirect",
  4809. "support": {
  4810. "source": "https://git.drupalcode.org/project/redirect"
  4811. }
  4812. },
  4813. {
  4814. "name": "drupal/redis",
  4815. "version": "1.4.0",
  4816. "source": {
  4817. "type": "git",
  4818. "url": "https://git.drupalcode.org/project/redis.git",
  4819. "reference": "8.x-1.4"
  4820. },
  4821. "dist": {
  4822. "type": "zip",
  4823. "url": "https://ftp.drupal.org/files/projects/redis-8.x-1.4.zip",
  4824. "reference": "8.x-1.4",
  4825. "shasum": "87165acdda18873c1e3994c670bcb4cdafd3d0ff"
  4826. },
  4827. "require": {
  4828. "drupal/core": "^8.8 || ^9"
  4829. },
  4830. "suggest": {
  4831. "predis/predis": "^1.1.1"
  4832. },
  4833. "type": "drupal-module",
  4834. "extra": {
  4835. "branch-alias": {
  4836. "dev-1.x": "1.x-dev"
  4837. },
  4838. "drupal": {
  4839. "version": "8.x-1.4",
  4840. "datestamp": "1581504947",
  4841. "security-coverage": {
  4842. "status": "covered",
  4843. "message": "Covered by Drupal's security advisory policy"
  4844. }
  4845. }
  4846. },
  4847. "autoload": {
  4848. "psr-4": {
  4849. "Drupal\\redis\\": "src"
  4850. }
  4851. },
  4852. "notification-url": "https://packages.drupal.org/8/downloads",
  4853. "license": [
  4854. "GPL-2.0"
  4855. ],
  4856. "authors": [
  4857. {
  4858. "name": "Berdir",
  4859. "homepage": "https://www.drupal.org/user/214652"
  4860. },
  4861. {
  4862. "name": "pounard",
  4863. "homepage": "https://www.drupal.org/user/240164"
  4864. }
  4865. ],
  4866. "description": "Provide a module placeholder, for using as dependency for module that needs Redis.",
  4867. "homepage": "https://www.drupal.org/project/redis",
  4868. "support": {
  4869. "source": "https://git.drupalcode.org/project/redis"
  4870. }
  4871. },
  4872. {
  4873. "name": "drupal/restui",
  4874. "version": "1.18.0",
  4875. "source": {
  4876. "type": "git",
  4877. "url": "https://git.drupalcode.org/project/restui.git",
  4878. "reference": "8.x-1.18"
  4879. },
  4880. "dist": {
  4881. "type": "zip",
  4882. "url": "https://ftp.drupal.org/files/projects/restui-8.x-1.18.zip",
  4883. "reference": "8.x-1.18",
  4884. "shasum": "40edbe907d5ec6d6c6a00abd219c7305d90d19e5"
  4885. },
  4886. "require": {
  4887. "drupal/core": "^8.7.7 || ^9"
  4888. },
  4889. "type": "drupal-module",
  4890. "extra": {
  4891. "drupal": {
  4892. "version": "8.x-1.18",
  4893. "datestamp": "1586170645",
  4894. "security-coverage": {
  4895. "status": "covered",
  4896. "message": "Covered by Drupal's security advisory policy"
  4897. }
  4898. }
  4899. },
  4900. "notification-url": "https://packages.drupal.org/8/downloads",
  4901. "license": [
  4902. "GPL-2.0-or-later"
  4903. ],
  4904. "authors": [
  4905. {
  4906. "name": "-enzo-",
  4907. "homepage": "https://www.drupal.org/user/294937"
  4908. },
  4909. {
  4910. "name": "clemens.tolboom",
  4911. "homepage": "https://www.drupal.org/user/125814"
  4912. },
  4913. {
  4914. "name": "juampynr",
  4915. "homepage": "https://www.drupal.org/user/682736"
  4916. },
  4917. {
  4918. "name": "klausi",
  4919. "homepage": "https://www.drupal.org/user/262198"
  4920. }
  4921. ],
  4922. "description": "Provides a user interface to manage REST resources.",
  4923. "homepage": "https://www.drupal.org/project/restui",
  4924. "support": {
  4925. "source": "https://git.drupalcode.org/project/restui"
  4926. }
  4927. },
  4928. {
  4929. "name": "drupal/search_api",
  4930. "version": "1.17.0",
  4931. "source": {
  4932. "type": "git",
  4933. "url": "https://git.drupalcode.org/project/search_api.git",
  4934. "reference": "8.x-1.17"
  4935. },
  4936. "dist": {
  4937. "type": "zip",
  4938. "url": "https://ftp.drupal.org/files/projects/search_api-8.x-1.17.zip",
  4939. "reference": "8.x-1.17",
  4940. "shasum": "a9f3352f1c8c893c7032c11f00a23f76b9733b56"
  4941. },
  4942. "require": {
  4943. "drupal/core": "^8.8 || ^9"
  4944. },
  4945. "conflict": {
  4946. "drupal/search_api_solr": "2.* || 3.0 || 3.1"
  4947. },
  4948. "require-dev": {
  4949. "drupal/language_fallback_fix": "@dev",
  4950. "drupal/search_api_autocomplete": "@dev",
  4951. "drupal/search_api_db": "*"
  4952. },
  4953. "suggest": {
  4954. "drupal/facets": "Adds the ability to create faceted searches.",
  4955. "drupal/search_api_autocomplete": "Allows adding autocomplete suggestions to search fields.",
  4956. "drupal/search_api_solr": "Adds support for using Apache Solr as a backend."
  4957. },
  4958. "type": "drupal-module",
  4959. "extra": {
  4960. "drupal": {
  4961. "version": "8.x-1.17",
  4962. "datestamp": "1594482952",
  4963. "security-coverage": {
  4964. "status": "covered",
  4965. "message": "Covered by Drupal's security advisory policy"
  4966. }
  4967. },
  4968. "drush": {
  4969. "services": {
  4970. "drush.services.yml": "^9"
  4971. }
  4972. }
  4973. },
  4974. "notification-url": "https://packages.drupal.org/8/downloads",
  4975. "license": [
  4976. "GPL-2.0+"
  4977. ],
  4978. "authors": [
  4979. {
  4980. "name": "Thomas Seidl",
  4981. "homepage": "https://www.drupal.org/u/drunken-monkey"
  4982. },
  4983. {
  4984. "name": "Nick Veenhof",
  4985. "homepage": "https://www.drupal.org/u/nick_vh"
  4986. },
  4987. {
  4988. "name": "See other contributors",
  4989. "homepage": "https://www.drupal.org/node/790418/committers"
  4990. }
  4991. ],
  4992. "description": "Provides a generic framework for modules offering search capabilities.",
  4993. "homepage": "https://www.drupal.org/project/search_api",
  4994. "support": {
  4995. "source": "https://git.drupalcode.org/project/search_api",
  4996. "issues": "https://www.drupal.org/project/issues/search_api",
  4997. "irc": "irc://irc.freenode.org/drupal-search-api"
  4998. }
  4999. },
  5000. {
  5001. "name": "drupal/simple_sitemap",
  5002. "version": "3.7.0",
  5003. "source": {
  5004. "type": "git",
  5005. "url": "https://git.drupalcode.org/project/simple_sitemap.git",
  5006. "reference": "8.x-3.7"
  5007. },
  5008. "dist": {
  5009. "type": "zip",
  5010. "url": "https://ftp.drupal.org/files/projects/simple_sitemap-8.x-3.7.zip",
  5011. "reference": "8.x-3.7",
  5012. "shasum": "7b23930cc71d37f332c1e836bc18c29ed2ae8cde"
  5013. },
  5014. "require": {
  5015. "drupal/core": "^8 || ^9",
  5016. "ext-xmlwriter": "*"
  5017. },
  5018. "type": "drupal-module",
  5019. "extra": {
  5020. "drupal": {
  5021. "version": "8.x-3.7",
  5022. "datestamp": "1592298918",
  5023. "security-coverage": {
  5024. "status": "covered",
  5025. "message": "Covered by Drupal's security advisory policy"
  5026. }
  5027. },
  5028. "drush": {
  5029. "services": {
  5030. "drush.services.yml": "^9 || ^10"
  5031. }
  5032. }
  5033. },
  5034. "notification-url": "https://packages.drupal.org/8/downloads",
  5035. "license": [
  5036. "GPL-2.0-or-later"
  5037. ],
  5038. "authors": [
  5039. {
  5040. "name": "Pawel Ginalski (gbyte.co)",
  5041. "homepage": "https://www.drupal.org/u/gbyte.co",
  5042. "email": "contact@gbyte.co",
  5043. "role": "Maintainer"
  5044. }
  5045. ],
  5046. "description": "Creates a standard conform hreflang XML sitemap of the site content and provides a framework for developing other sitemap types.",
  5047. "homepage": "https://drupal.org/project/simple_sitemap",
  5048. "support": {
  5049. "source": "https://cgit.drupalcode.org/simple_sitemap",
  5050. "issues": "https://drupal.org/project/issues/simple_sitemap",
  5051. "irc": "irc://irc.freenode.org/drupal-contribute"
  5052. }
  5053. },
  5054. {
  5055. "name": "drupal/synonyms",
  5056. "version": "1.0.0-alpha3",
  5057. "source": {
  5058. "type": "git",
  5059. "url": "https://git.drupalcode.org/project/synonyms.git",
  5060. "reference": "8.x-1.0-alpha3"
  5061. },
  5062. "dist": {
  5063. "type": "zip",
  5064. "url": "https://ftp.drupal.org/files/projects/synonyms-8.x-1.0-alpha3.zip",
  5065. "reference": "8.x-1.0-alpha3",
  5066. "shasum": "0306a9dfb279c0594246b49658309c1686e984a9"
  5067. },
  5068. "require": {
  5069. "drupal/core": "^8 || ^9"
  5070. },
  5071. "type": "drupal-module",
  5072. "extra": {
  5073. "drupal": {
  5074. "version": "8.x-1.0-alpha3",
  5075. "datestamp": "1609623594",
  5076. "security-coverage": {
  5077. "status": "not-covered",
  5078. "message": "Alpha releases are not covered by Drupal security advisories."
  5079. }
  5080. }
  5081. },
  5082. "notification-url": "https://packages.drupal.org/8/downloads",
  5083. "license": [
  5084. "GPL-2.0-or-later"
  5085. ],
  5086. "authors": [
  5087. {
  5088. "name": "bojanz",
  5089. "homepage": "https://www.drupal.org/user/86106"
  5090. },
  5091. {
  5092. "name": "bucefal91",
  5093. "homepage": "https://www.drupal.org/user/504128"
  5094. },
  5095. {
  5096. "name": "devad",
  5097. "homepage": "https://www.drupal.org/user/2268520"
  5098. },
  5099. {
  5100. "name": "Zen",
  5101. "homepage": "https://www.drupal.org/user/21209"
  5102. }
  5103. ],
  5104. "description": "Provides synonyms feature for content entities.",
  5105. "homepage": "https://www.drupal.org/project/synonyms",
  5106. "support": {
  5107. "source": "https://git.drupalcode.org/project/synonyms"
  5108. }
  5109. },
  5110. {
  5111. "name": "drupal/token",
  5112. "version": "1.7.0",
  5113. "source": {
  5114. "type": "git",
  5115. "url": "https://git.drupalcode.org/project/token.git",
  5116. "reference": "8.x-1.7"
  5117. },
  5118. "dist": {
  5119. "type": "zip",
  5120. "url": "https://ftp.drupal.org/files/projects/token-8.x-1.7.zip",
  5121. "reference": "8.x-1.7",
  5122. "shasum": "c7e3a3757282e4c94e3c1fff08d01e22155cb853"
  5123. },
  5124. "require": {
  5125. "drupal/core": "^8.8 || ^9"
  5126. },
  5127. "type": "drupal-module",
  5128. "extra": {
  5129. "drupal": {
  5130. "version": "8.x-1.7",
  5131. "datestamp": "1589314266",
  5132. "security-coverage": {
  5133. "status": "covered",
  5134. "message": "Covered by Drupal's security advisory policy"
  5135. }
  5136. },
  5137. "drush": {
  5138. "services": {
  5139. "drush.services.yml": "^9 || ^10"
  5140. }
  5141. }
  5142. },
  5143. "notification-url": "https://packages.drupal.org/8/downloads",
  5144. "license": [
  5145. "GPL-2.0+"
  5146. ],
  5147. "authors": [
  5148. {
  5149. "name": "Berdir",
  5150. "homepage": "https://www.drupal.org/user/214652"
  5151. },
  5152. {
  5153. "name": "Dave Reid",
  5154. "homepage": "https://www.drupal.org/user/53892"
  5155. },
  5156. {
  5157. "name": "eaton",
  5158. "homepage": "https://www.drupal.org/user/16496"
  5159. },
  5160. {
  5161. "name": "fago",
  5162. "homepage": "https://www.drupal.org/user/16747"
  5163. },
  5164. {
  5165. "name": "greggles",
  5166. "homepage": "https://www.drupal.org/user/36762"
  5167. },
  5168. {
  5169. "name": "mikeryan",
  5170. "homepage": "https://www.drupal.org/user/4420"
  5171. }
  5172. ],
  5173. "description": "Provides a user interface for the Token API, some missing core tokens.",
  5174. "homepage": "https://www.drupal.org/project/token",
  5175. "support": {
  5176. "source": "https://git.drupalcode.org/project/token"
  5177. }
  5178. },
  5179. {
  5180. "name": "drupal/toolbar_themes",
  5181. "version": "dev-1.x",
  5182. "source": {
  5183. "type": "git",
  5184. "url": "https://git.drupalcode.org/project/toolbar_themes.git",
  5185. "reference": "62e79c8635ec13fe5a4dd67b87f698a14822c044"
  5186. },
  5187. "require": {
  5188. "drupal/core": "*"
  5189. },
  5190. "type": "drupal-module",
  5191. "extra": {
  5192. "branch-alias": {
  5193. "dev-1.x": "1.x-dev"
  5194. },
  5195. "drupal": {
  5196. "version": "8.x-1.0-alpha4+10-dev",
  5197. "datestamp": "1510689485",
  5198. "security-coverage": {
  5199. "status": "not-covered",
  5200. "message": "Project has not opted into security advisory coverage!"
  5201. }
  5202. }
  5203. },
  5204. "notification-url": "https://packages.drupal.org/8/downloads",
  5205. "license": [
  5206. "GPL-2.0-or-later"
  5207. ],
  5208. "authors": [
  5209. {
  5210. "name": "Jeff Burnz",
  5211. "homepage": "https://www.drupal.org/user/61393"
  5212. }
  5213. ],
  5214. "description": "Apply themes to the toolbar.",
  5215. "homepage": "https://www.drupal.org/project/toolbar_themes",
  5216. "support": {
  5217. "source": "https://git.drupalcode.org/project/toolbar_themes"
  5218. },
  5219. "time": "2017-11-14T19:57:02+00:00"
  5220. },
  5221. {
  5222. "name": "drupal/translation_views",
  5223. "version": "1.0.0-alpha10",
  5224. "source": {
  5225. "type": "git",
  5226. "url": "https://git.drupalcode.org/project/translation_views.git",
  5227. "reference": "8.x-1.0-alpha10"
  5228. },
  5229. "dist": {
  5230. "type": "zip",
  5231. "url": "https://ftp.drupal.org/files/projects/translation_views-8.x-1.0-alpha10.zip",
  5232. "reference": "8.x-1.0-alpha10",
  5233. "shasum": "ca1a6d4bf16293b1b094db6439f9f065de1dbbd5"
  5234. },
  5235. "require": {
  5236. "drupal/core": "^8.8 || ^9"
  5237. },
  5238. "require-dev": {
  5239. "drupal/translators": "*",
  5240. "drupal/translators_content": "*"
  5241. },
  5242. "type": "drupal-module",
  5243. "extra": {
  5244. "drupal": {
  5245. "version": "8.x-1.0-alpha10",
  5246. "datestamp": "1584303687",
  5247. "security-coverage": {
  5248. "status": "not-covered",
  5249. "message": "Project has not opted into security advisory coverage!"
  5250. }
  5251. }
  5252. },
  5253. "notification-url": "https://packages.drupal.org/8/downloads",
  5254. "license": [
  5255. "GPL-2.0-or-later"
  5256. ],
  5257. "authors": [
  5258. {
  5259. "name": "matsbla",
  5260. "homepage": "https://www.drupal.org/user/2325394"
  5261. },
  5262. {
  5263. "name": "vlad.dancer",
  5264. "homepage": "https://www.drupal.org/user/903844"
  5265. }
  5266. ],
  5267. "description": "Create customized lists and queries of translations from your database.",
  5268. "homepage": "https://www.drupal.org/project/translation_views",
  5269. "support": {
  5270. "source": "https://git.drupalcode.org/project/translation_views"
  5271. }
  5272. },
  5273. {
  5274. "name": "drupal/upgrade_status",
  5275. "version": "3.19.0",
  5276. "source": {
  5277. "type": "git",
  5278. "url": "https://git.drupalcode.org/project/upgrade_status.git",
  5279. "reference": "8.x-3.19"
  5280. },
  5281. "dist": {
  5282. "type": "zip",
  5283. "url": "https://ftp.drupal.org/files/projects/upgrade_status-8.x-3.19.zip",
  5284. "reference": "8.x-3.19",
  5285. "shasum": "e155b34b80f2782778b841d72639bd0ac8b923f9"
  5286. },
  5287. "require": {
  5288. "drupal/core": "^8 || ^9",
  5289. "mathieuviossat/arraytotexttable": "~1.0.0",
  5290. "mglaman/phpstan-drupal": "^1.0.0",
  5291. "nikic/php-parser": "^4.0.0",
  5292. "phpstan/phpstan-deprecation-rules": "^1.0.0",
  5293. "symfony/process": "^3.4|^4.0|^5.0|^6.0",
  5294. "webflo/drupal-finder": "^1.2"
  5295. },
  5296. "type": "drupal-module",
  5297. "extra": {
  5298. "drupal": {
  5299. "version": "8.x-3.19",
  5300. "datestamp": "1678815320",
  5301. "security-coverage": {
  5302. "status": "covered",
  5303. "message": "Covered by Drupal's security advisory policy"
  5304. }
  5305. },
  5306. "drush": {
  5307. "services": {
  5308. "drush.services.yml": "^9 || ^10"
  5309. }
  5310. }
  5311. },
  5312. "notification-url": "https://packages.drupal.org/8/downloads",
  5313. "license": [
  5314. "GPL-2.0-or-later"
  5315. ],
  5316. "authors": [
  5317. {
  5318. "name": "Gábor Hojtsy",
  5319. "homepage": "https://www.drupal.org/user/4166"
  5320. }
  5321. ],
  5322. "description": "Review Drupal major upgrade readiness of the environment and components of the site.",
  5323. "homepage": "http://drupal.org/project/upgrade_status",
  5324. "support": {
  5325. "source": "https://git.drupalcode.org/project/upgrade_status"
  5326. }
  5327. },
  5328. {
  5329. "name": "drupal/url_to_video_filter",
  5330. "version": "2.0.0",
  5331. "source": {
  5332. "type": "git",
  5333. "url": "https://git.drupalcode.org/project/url_to_video_filter.git",
  5334. "reference": "2.0.0"
  5335. },
  5336. "dist": {
  5337. "type": "zip",
  5338. "url": "https://ftp.drupal.org/files/projects/url_to_video_filter-2.0.0.zip",
  5339. "reference": "2.0.0",
  5340. "shasum": "ac728919cc220846d8ef2ce61dbe1b94fbbf479b"
  5341. },
  5342. "require": {
  5343. "drupal/core": "^8 || ^9"
  5344. },
  5345. "type": "drupal-module",
  5346. "extra": {
  5347. "drupal": {
  5348. "version": "2.0.0",
  5349. "datestamp": "1607298389",
  5350. "security-coverage": {
  5351. "status": "covered",
  5352. "message": "Covered by Drupal's security advisory policy"
  5353. }
  5354. }
  5355. },
  5356. "notification-url": "https://packages.drupal.org/8/downloads",
  5357. "license": [
  5358. "GPL-2.0-or-later"
  5359. ],
  5360. "authors": [
  5361. {
  5362. "name": "Jaypan",
  5363. "homepage": "https://www.drupal.org/user/324696"
  5364. }
  5365. ],
  5366. "description": "Text filter to convert URLs to embedded videos",
  5367. "homepage": "https://www.drupal.org/project/url_to_video_filter",
  5368. "support": {
  5369. "source": "https://git.drupalcode.org/project/url_to_video_filter"
  5370. }
  5371. },
  5372. {
  5373. "name": "drupal/views_bulk_edit",
  5374. "version": "2.7.0",
  5375. "source": {
  5376. "type": "git",
  5377. "url": "https://git.drupalcode.org/project/views_bulk_edit.git",
  5378. "reference": "8.x-2.7"
  5379. },
  5380. "dist": {
  5381. "type": "zip",
  5382. "url": "https://ftp.drupal.org/files/projects/views_bulk_edit-8.x-2.7.zip",
  5383. "reference": "8.x-2.7",
  5384. "shasum": "148457820e7ecd78942326c9c799147ed440f2a6"
  5385. },
  5386. "require": {
  5387. "drupal/core": "^8 || ^9"
  5388. },
  5389. "require-dev": {
  5390. "drupal/views_bulk_operations": "~3.0"
  5391. },
  5392. "suggest": {
  5393. "drupal/views_bulk_operations": "Get VBO for all the views benefits like batching, ability to select all view results or persistent selection across pages"
  5394. },
  5395. "type": "drupal-module",
  5396. "extra": {
  5397. "drupal": {
  5398. "version": "8.x-2.7",
  5399. "datestamp": "1664355764",
  5400. "security-coverage": {
  5401. "status": "covered",
  5402. "message": "Covered by Drupal's security advisory policy"
  5403. }
  5404. }
  5405. },
  5406. "notification-url": "https://packages.drupal.org/8/downloads",
  5407. "license": [
  5408. "GPL-2.0+"
  5409. ],
  5410. "authors": [
  5411. {
  5412. "name": "Marcin Grabias",
  5413. "homepage": "https://www.drupal.org/u/graber"
  5414. },
  5415. {
  5416. "name": "benjy",
  5417. "homepage": "https://www.drupal.org/user/1852732"
  5418. },
  5419. {
  5420. "name": "graber",
  5421. "homepage": "https://www.drupal.org/user/1599440"
  5422. },
  5423. {
  5424. "name": "grevil",
  5425. "homepage": "https://www.drupal.org/user/3668491"
  5426. },
  5427. {
  5428. "name": "joseph.olstad",
  5429. "homepage": "https://www.drupal.org/user/1321830"
  5430. }
  5431. ],
  5432. "description": "Allows bulk edition of entity field values.",
  5433. "homepage": "https://www.drupal.org/project/views_bulk_edit",
  5434. "support": {
  5435. "source": "https://git.drupalcode.org/project/views_bulk_edit",
  5436. "issues": "https://www.drupal.org/project/issues/views_bulk_edit?version=8.x"
  5437. }
  5438. },
  5439. {
  5440. "name": "drupal/views_bulk_operations",
  5441. "version": "3.9.0",
  5442. "source": {
  5443. "type": "git",
  5444. "url": "https://git.drupalcode.org/project/views_bulk_operations.git",
  5445. "reference": "8.x-3.9"
  5446. },
  5447. "dist": {
  5448. "type": "zip",
  5449. "url": "https://ftp.drupal.org/files/projects/views_bulk_operations-8.x-3.9.zip",
  5450. "reference": "8.x-3.9",
  5451. "shasum": "d7f6e50c31d21ff32f21e8f4aaedb52f6dee2da8"
  5452. },
  5453. "require": {
  5454. "drupal/core": "^8.8 || ^9"
  5455. },
  5456. "require-dev": {
  5457. "drush/drush": "^10"
  5458. },
  5459. "suggest": {
  5460. "drush/drush": "^9 || ^10"
  5461. },
  5462. "type": "drupal-module",
  5463. "extra": {
  5464. "drupal": {
  5465. "version": "8.x-3.9",
  5466. "datestamp": "1597319021",
  5467. "security-coverage": {
  5468. "status": "covered",
  5469. "message": "Covered by Drupal's security advisory policy"
  5470. }
  5471. },
  5472. "drush": {
  5473. "services": {
  5474. "drush.services.yml": "^9 || ^10"
  5475. }
  5476. }
  5477. },
  5478. "notification-url": "https://packages.drupal.org/8/downloads",
  5479. "license": [
  5480. "GPL-2.0-or-later"
  5481. ],
  5482. "authors": [
  5483. {
  5484. "name": "Marcin Grabias",
  5485. "homepage": "https://www.drupal.org/u/graber"
  5486. },
  5487. {
  5488. "name": "Jon Pugh",
  5489. "homepage": "https://www.drupal.org/user/17028"
  5490. },
  5491. {
  5492. "name": "bojanz",
  5493. "homepage": "https://www.drupal.org/user/86106"
  5494. },
  5495. {
  5496. "name": "infojunkie",
  5497. "homepage": "https://www.drupal.org/user/48424"
  5498. },
  5499. {
  5500. "name": "joelpittet",
  5501. "homepage": "https://www.drupal.org/user/160302"
  5502. }
  5503. ],
  5504. "description": "Adds an ability to perform bulk operations on selected entities from view results. Provides an API to create such operations.",
  5505. "homepage": "https://www.drupal.org/project/views_bulk_operations",
  5506. "support": {
  5507. "source": "https://git.drupalcode.org/project/views_bulk_operations/-/tree/8.x-3.x",
  5508. "issues": "https://www.drupal.org/project/issues/views_bulk_operations?version=8.x",
  5509. "docs": "https://www.drupal.org/docs/8/modules/views-bulk-operations-vbo"
  5510. }
  5511. },
  5512. {
  5513. "name": "drupal/workflow",
  5514. "version": "1.3.0",
  5515. "source": {
  5516. "type": "git",
  5517. "url": "https://git.drupalcode.org/project/workflow.git",
  5518. "reference": "8.x-1.3"
  5519. },
  5520. "dist": {
  5521. "type": "zip",
  5522. "url": "https://ftp.drupal.org/files/projects/workflow-8.x-1.3.zip",
  5523. "reference": "8.x-1.3",
  5524. "shasum": "99b3c58d466f9564831b50a3b1428fac2a08c55c"
  5525. },
  5526. "require": {
  5527. "drupal/core": "^8 || ^9"
  5528. },
  5529. "type": "drupal-module",
  5530. "extra": {
  5531. "drupal": {
  5532. "version": "8.x-1.3",
  5533. "datestamp": "1590740623",
  5534. "security-coverage": {
  5535. "status": "covered",
  5536. "message": "Covered by Drupal's security advisory policy"
  5537. }
  5538. }
  5539. },
  5540. "notification-url": "https://packages.drupal.org/8/downloads",
  5541. "license": [
  5542. "GPL-2.0-or-later"
  5543. ],
  5544. "authors": [
  5545. {
  5546. "name": "Bastlynn",
  5547. "homepage": "https://www.drupal.org/user/275249"
  5548. },
  5549. {
  5550. "name": "eaton",
  5551. "homepage": "https://www.drupal.org/user/16496"
  5552. },
  5553. {
  5554. "name": "Heine",
  5555. "homepage": "https://www.drupal.org/user/17943"
  5556. },
  5557. {
  5558. "name": "JacobSingh",
  5559. "homepage": "https://www.drupal.org/user/68912"
  5560. },
  5561. {
  5562. "name": "johnv",
  5563. "homepage": "https://www.drupal.org/user/591042"
  5564. },
  5565. {
  5566. "name": "jvandyk",
  5567. "homepage": "https://www.drupal.org/user/2375"
  5568. },
  5569. {
  5570. "name": "mfredrickson",
  5571. "homepage": "https://www.drupal.org/user/31994"
  5572. },
  5573. {
  5574. "name": "NancyDru",
  5575. "homepage": "https://www.drupal.org/user/101412"
  5576. },
  5577. {
  5578. "name": "q0rban",
  5579. "homepage": "https://www.drupal.org/user/31022"
  5580. }
  5581. ],
  5582. "description": "Defines a field type with Workflows, containing customizable state transitions.",
  5583. "homepage": "https://www.drupal.org/project/workflow",
  5584. "support": {
  5585. "source": "https://git.drupalcode.org/project/workflow"
  5586. }
  5587. },
  5588. {
  5589. "name": "drush/drush",
  5590. "version": "9.7.3",
  5591. "source": {
  5592. "type": "git",
  5593. "url": "https://github.com/drush-ops/drush.git",
  5594. "reference": "6ab9a89ab18189618eea40bf8e6553c1817ee210"
  5595. },
  5596. "dist": {
  5597. "type": "zip",
  5598. "url": "https://api.github.com/repos/drush-ops/drush/zipball/6ab9a89ab18189618eea40bf8e6553c1817ee210",
  5599. "reference": "6ab9a89ab18189618eea40bf8e6553c1817ee210",
  5600. "shasum": ""
  5601. },
  5602. "require": {
  5603. "chi-teck/drupal-code-generator": "^1.28.1",
  5604. "composer/semver": "^1.4",
  5605. "consolidation/annotated-command": "^2.12",
  5606. "consolidation/config": "^1.2",
  5607. "consolidation/filter-via-dot-access-data": "^1",
  5608. "consolidation/output-formatters": "^3.3.1",
  5609. "consolidation/robo": "^1.4.6",
  5610. "consolidation/site-alias": "^3.0.0@stable",
  5611. "consolidation/site-process": "^2.0.3",
  5612. "ext-dom": "*",
  5613. "grasmash/yaml-expander": "^1.1.1",
  5614. "league/container": "~2",
  5615. "php": ">=5.6.0",
  5616. "psr/log": "~1.0",
  5617. "psy/psysh": "~0.6",
  5618. "symfony/console": "^3.4",
  5619. "symfony/event-dispatcher": "^3.4 || ^4.0",
  5620. "symfony/finder": "^3.4 || ^4.0",
  5621. "symfony/process": "^3.4",
  5622. "symfony/var-dumper": "^3.4 || ^4.0",
  5623. "symfony/yaml": "^3.4",
  5624. "webflo/drupal-finder": "^1.1",
  5625. "webmozart/path-util": "^2.1.0"
  5626. },
  5627. "require-dev": {
  5628. "composer/installers": "^1.2",
  5629. "cweagans/composer-patches": "~1.0",
  5630. "drupal/alinks": "1.0.0",
  5631. "drupal/core-recommended": "^8.9",
  5632. "drupal/devel": "^2",
  5633. "drupal/empty_theme": "1.0",
  5634. "g1a/composer-test-scenarios": "^3",
  5635. "lox/xhprof": "dev-master",
  5636. "phpunit/phpunit": "^4.8.36 || ^6.1",
  5637. "squizlabs/php_codesniffer": "^2.7 || ^3",
  5638. "vlucas/phpdotenv": "^2.4"
  5639. },
  5640. "bin": [
  5641. "drush"
  5642. ],
  5643. "type": "library",
  5644. "extra": {
  5645. "installer-paths": {
  5646. "sut/core": [
  5647. "type:drupal-core"
  5648. ],
  5649. "sut/libraries/{$name}": [
  5650. "type:drupal-library"
  5651. ],
  5652. "sut/modules/unish/{$name}": [
  5653. "drupal/devel"
  5654. ],
  5655. "sut/themes/unish/{$name}": [
  5656. "drupal/empty_theme"
  5657. ],
  5658. "sut/modules/contrib/{$name}": [
  5659. "type:drupal-module"
  5660. ],
  5661. "sut/profiles/contrib/{$name}": [
  5662. "type:drupal-profile"
  5663. ],
  5664. "sut/themes/contrib/{$name}": [
  5665. "type:drupal-theme"
  5666. ],
  5667. "sut/drush/contrib/{$name}": [
  5668. "type:drupal-drush"
  5669. ]
  5670. },
  5671. "scenarios": {
  5672. "php5": {
  5673. "config": {
  5674. "platform": {
  5675. "php": "5.6.38"
  5676. }
  5677. },
  5678. "require-dev": {
  5679. "drupal/core-recommended": "~8.6.0"
  5680. }
  5681. }
  5682. },
  5683. "branch-alias": {
  5684. "dev-master": "9.x-dev"
  5685. }
  5686. },
  5687. "autoload": {
  5688. "psr-4": {
  5689. "Drush\\": "src/",
  5690. "Drush\\Internal\\": "src/internal-forks"
  5691. }
  5692. },
  5693. "notification-url": "https://packagist.org/downloads/",
  5694. "license": [
  5695. "GPL-2.0-or-later"
  5696. ],
  5697. "authors": [
  5698. {
  5699. "name": "Moshe Weitzman",
  5700. "email": "weitzman@tejasa.com"
  5701. },
  5702. {
  5703. "name": "Owen Barton",
  5704. "email": "drupal@owenbarton.com"
  5705. },
  5706. {
  5707. "name": "Greg Anderson",
  5708. "email": "greg.1.anderson@greenknowe.org"
  5709. },
  5710. {
  5711. "name": "Jonathan Araña Cruz",
  5712. "email": "jonhattan@faita.net"
  5713. },
  5714. {
  5715. "name": "Jonathan Hedstrom",
  5716. "email": "jhedstrom@gmail.com"
  5717. },
  5718. {
  5719. "name": "Christopher Gervais",
  5720. "email": "chris@ergonlogic.com"
  5721. },
  5722. {
  5723. "name": "Dave Reid",
  5724. "email": "dave@davereid.net"
  5725. },
  5726. {
  5727. "name": "Damian Lee",
  5728. "email": "damiankloip@googlemail.com"
  5729. }
  5730. ],
  5731. "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.",
  5732. "homepage": "http://www.drush.org",
  5733. "support": {
  5734. "forum": "http://drupal.stackexchange.com/questions/tagged/drush",
  5735. "irc": "irc://irc.freenode.org/drush",
  5736. "issues": "https://github.com/drush-ops/drush/issues",
  5737. "slack": "https://drupal.slack.com/messages/C62H9CWQM",
  5738. "source": "https://github.com/drush-ops/drush/tree/9.7.3"
  5739. },
  5740. "funding": [
  5741. {
  5742. "url": "https://github.com/weitzman",
  5743. "type": "github"
  5744. }
  5745. ],
  5746. "time": "2021-03-22T17:00:48+00:00"
  5747. },
  5748. {
  5749. "name": "easyrdf/easyrdf",
  5750. "version": "0.9.1",
  5751. "source": {
  5752. "type": "git",
  5753. "url": "https://github.com/easyrdf/easyrdf.git",
  5754. "reference": "acd09dfe0555fbcfa254291e433c45fdd4652566"
  5755. },
  5756. "dist": {
  5757. "type": "zip",
  5758. "url": "https://api.github.com/repos/easyrdf/easyrdf/zipball/acd09dfe0555fbcfa254291e433c45fdd4652566",
  5759. "reference": "acd09dfe0555fbcfa254291e433c45fdd4652566",
  5760. "shasum": ""
  5761. },
  5762. "require": {
  5763. "ext-mbstring": "*",
  5764. "ext-pcre": "*",
  5765. "php": ">=5.2.8"
  5766. },
  5767. "require-dev": {
  5768. "phpunit/phpunit": "~3.5",
  5769. "sami/sami": "~1.4",
  5770. "squizlabs/php_codesniffer": "~1.4.3"
  5771. },
  5772. "suggest": {
  5773. "ml/json-ld": "~1.0"
  5774. },
  5775. "type": "library",
  5776. "autoload": {
  5777. "psr-0": {
  5778. "EasyRdf_": "lib/"
  5779. }
  5780. },
  5781. "notification-url": "https://packagist.org/downloads/",
  5782. "license": [
  5783. "BSD-3-Clause"
  5784. ],
  5785. "authors": [
  5786. {
  5787. "name": "Nicholas Humfrey",
  5788. "email": "njh@aelius.com",
  5789. "homepage": "http://www.aelius.com/njh/",
  5790. "role": "Developer"
  5791. },
  5792. {
  5793. "name": "Alexey Zakhlestin",
  5794. "email": "indeyets@gmail.com",
  5795. "role": "Developer"
  5796. }
  5797. ],
  5798. "description": "EasyRdf is a PHP library designed to make it easy to consume and produce RDF.",
  5799. "homepage": "http://www.easyrdf.org/",
  5800. "keywords": [
  5801. "Linked Data",
  5802. "RDF",
  5803. "Semantic Web",
  5804. "Turtle",
  5805. "rdfa",
  5806. "sparql"
  5807. ],
  5808. "support": {
  5809. "forum": "http://groups.google.com/group/easyrdf/",
  5810. "irc": "irc://chat.freenode.net/easyrdf",
  5811. "issues": "http://github.com/njh/easyrdf/issues",
  5812. "source": "https://github.com/easyrdf/easyrdf/tree/0.9.1"
  5813. },
  5814. "time": "2015-02-27T09:45:49+00:00"
  5815. },
  5816. {
  5817. "name": "egulias/email-validator",
  5818. "version": "2.1.17",
  5819. "source": {
  5820. "type": "git",
  5821. "url": "https://github.com/egulias/EmailValidator.git",
  5822. "reference": "ade6887fd9bd74177769645ab5c474824f8a418a"
  5823. },
  5824. "dist": {
  5825. "type": "zip",
  5826. "url": "https://api.github.com/repos/egulias/EmailValidator/zipball/ade6887fd9bd74177769645ab5c474824f8a418a",
  5827. "reference": "ade6887fd9bd74177769645ab5c474824f8a418a",
  5828. "shasum": ""
  5829. },
  5830. "require": {
  5831. "doctrine/lexer": "^1.0.1",
  5832. "php": ">=5.5",
  5833. "symfony/polyfill-intl-idn": "^1.10"
  5834. },
  5835. "require-dev": {
  5836. "dominicsayers/isemail": "^3.0.7",
  5837. "phpunit/phpunit": "^4.8.36|^7.5.15",
  5838. "satooshi/php-coveralls": "^1.0.1"
  5839. },
  5840. "suggest": {
  5841. "ext-intl": "PHP Internationalization Libraries are required to use the SpoofChecking validation"
  5842. },
  5843. "type": "library",
  5844. "extra": {
  5845. "branch-alias": {
  5846. "dev-master": "2.1.x-dev"
  5847. }
  5848. },
  5849. "autoload": {
  5850. "psr-4": {
  5851. "Egulias\\EmailValidator\\": "EmailValidator"
  5852. }
  5853. },
  5854. "notification-url": "https://packagist.org/downloads/",
  5855. "license": [
  5856. "MIT"
  5857. ],
  5858. "authors": [
  5859. {
  5860. "name": "Eduardo Gulias Davis"
  5861. }
  5862. ],
  5863. "description": "A library for validating emails against several RFCs",
  5864. "homepage": "https://github.com/egulias/EmailValidator",
  5865. "keywords": [
  5866. "email",
  5867. "emailvalidation",
  5868. "emailvalidator",
  5869. "validation",
  5870. "validator"
  5871. ],
  5872. "support": {
  5873. "issues": "https://github.com/egulias/EmailValidator/issues",
  5874. "source": "https://github.com/egulias/EmailValidator/tree/2.1.17"
  5875. },
  5876. "time": "2020-02-13T22:36:52+00:00"
  5877. },
  5878. {
  5879. "name": "grasmash/expander",
  5880. "version": "1.0.0",
  5881. "source": {
  5882. "type": "git",
  5883. "url": "https://github.com/grasmash/expander.git",
  5884. "reference": "95d6037344a4be1dd5f8e0b0b2571a28c397578f"
  5885. },
  5886. "dist": {
  5887. "type": "zip",
  5888. "url": "https://api.github.com/repos/grasmash/expander/zipball/95d6037344a4be1dd5f8e0b0b2571a28c397578f",
  5889. "reference": "95d6037344a4be1dd5f8e0b0b2571a28c397578f",
  5890. "shasum": ""
  5891. },
  5892. "require": {
  5893. "dflydev/dot-access-data": "^1.1.0",
  5894. "php": ">=5.4"
  5895. },
  5896. "require-dev": {
  5897. "greg-1-anderson/composer-test-scenarios": "^1",
  5898. "phpunit/phpunit": "^4|^5.5.4",
  5899. "satooshi/php-coveralls": "^1.0.2|dev-master",
  5900. "squizlabs/php_codesniffer": "^2.7"
  5901. },
  5902. "type": "library",
  5903. "extra": {
  5904. "branch-alias": {
  5905. "dev-master": "1.x-dev"
  5906. }
  5907. },
  5908. "autoload": {
  5909. "psr-4": {
  5910. "Grasmash\\Expander\\": "src/"
  5911. }
  5912. },
  5913. "notification-url": "https://packagist.org/downloads/",
  5914. "license": [
  5915. "MIT"
  5916. ],
  5917. "authors": [
  5918. {
  5919. "name": "Matthew Grasmick"
  5920. }
  5921. ],
  5922. "description": "Expands internal property references in PHP arrays file.",
  5923. "time": "2017-12-21T22:14:55+00:00"
  5924. },
  5925. {
  5926. "name": "grasmash/yaml-expander",
  5927. "version": "1.4.0",
  5928. "source": {
  5929. "type": "git",
  5930. "url": "https://github.com/grasmash/yaml-expander.git",
  5931. "reference": "3f0f6001ae707a24f4d9733958d77d92bf9693b1"
  5932. },
  5933. "dist": {
  5934. "type": "zip",
  5935. "url": "https://api.github.com/repos/grasmash/yaml-expander/zipball/3f0f6001ae707a24f4d9733958d77d92bf9693b1",
  5936. "reference": "3f0f6001ae707a24f4d9733958d77d92bf9693b1",
  5937. "shasum": ""
  5938. },
  5939. "require": {
  5940. "dflydev/dot-access-data": "^1.1.0",
  5941. "php": ">=5.4",
  5942. "symfony/yaml": "^2.8.11|^3|^4"
  5943. },
  5944. "require-dev": {
  5945. "greg-1-anderson/composer-test-scenarios": "^1",
  5946. "phpunit/phpunit": "^4.8|^5.5.4",
  5947. "satooshi/php-coveralls": "^1.0.2|dev-master",
  5948. "squizlabs/php_codesniffer": "^2.7"
  5949. },
  5950. "type": "library",
  5951. "extra": {
  5952. "branch-alias": {
  5953. "dev-master": "1.x-dev"
  5954. }
  5955. },
  5956. "autoload": {
  5957. "psr-4": {
  5958. "Grasmash\\YamlExpander\\": "src/"
  5959. }
  5960. },
  5961. "notification-url": "https://packagist.org/downloads/",
  5962. "license": [
  5963. "MIT"
  5964. ],
  5965. "authors": [
  5966. {
  5967. "name": "Matthew Grasmick"
  5968. }
  5969. ],
  5970. "description": "Expands internal property references in a yaml file.",
  5971. "time": "2017-12-16T16:06:03+00:00"
  5972. },
  5973. {
  5974. "name": "guzzlehttp/guzzle",
  5975. "version": "6.5.4",
  5976. "source": {
  5977. "type": "git",
  5978. "url": "https://github.com/guzzle/guzzle.git",
  5979. "reference": "a4a1b6930528a8f7ee03518e6442ec7a44155d9d"
  5980. },
  5981. "dist": {
  5982. "type": "zip",
  5983. "url": "https://api.github.com/repos/guzzle/guzzle/zipball/a4a1b6930528a8f7ee03518e6442ec7a44155d9d",
  5984. "reference": "a4a1b6930528a8f7ee03518e6442ec7a44155d9d",
  5985. "shasum": ""
  5986. },
  5987. "require": {
  5988. "ext-json": "*",
  5989. "guzzlehttp/promises": "^1.0",
  5990. "guzzlehttp/psr7": "^1.6.1",
  5991. "php": ">=5.5",
  5992. "symfony/polyfill-intl-idn": "1.17.0"
  5993. },
  5994. "require-dev": {
  5995. "ext-curl": "*",
  5996. "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.4 || ^7.0",
  5997. "psr/log": "^1.1"
  5998. },
  5999. "suggest": {
  6000. "psr/log": "Required for using the Log middleware"
  6001. },
  6002. "type": "library",
  6003. "extra": {
  6004. "branch-alias": {
  6005. "dev-master": "6.5-dev"
  6006. }
  6007. },
  6008. "autoload": {
  6009. "files": [
  6010. "src/functions_include.php"
  6011. ],
  6012. "psr-4": {
  6013. "GuzzleHttp\\": "src/"
  6014. }
  6015. },
  6016. "notification-url": "https://packagist.org/downloads/",
  6017. "license": [
  6018. "MIT"
  6019. ],
  6020. "authors": [
  6021. {
  6022. "name": "Michael Dowling",
  6023. "email": "mtdowling@gmail.com",
  6024. "homepage": "https://github.com/mtdowling"
  6025. }
  6026. ],
  6027. "description": "Guzzle is a PHP HTTP client library",
  6028. "homepage": "http://guzzlephp.org/",
  6029. "keywords": [
  6030. "client",
  6031. "curl",
  6032. "framework",
  6033. "http",
  6034. "http client",
  6035. "rest",
  6036. "web service"
  6037. ],
  6038. "support": {
  6039. "issues": "https://github.com/guzzle/guzzle/issues",
  6040. "source": "https://github.com/guzzle/guzzle/tree/6.5"
  6041. },
  6042. "time": "2020-05-25T19:35:05+00:00"
  6043. },
  6044. {
  6045. "name": "guzzlehttp/promises",
  6046. "version": "v1.3.1",
  6047. "source": {
  6048. "type": "git",
  6049. "url": "https://github.com/guzzle/promises.git",
  6050. "reference": "a59da6cf61d80060647ff4d3eb2c03a2bc694646"
  6051. },
  6052. "dist": {
  6053. "type": "zip",
  6054. "url": "https://api.github.com/repos/guzzle/promises/zipball/a59da6cf61d80060647ff4d3eb2c03a2bc694646",
  6055. "reference": "a59da6cf61d80060647ff4d3eb2c03a2bc694646",
  6056. "shasum": ""
  6057. },
  6058. "require": {
  6059. "php": ">=5.5.0"
  6060. },
  6061. "require-dev": {
  6062. "phpunit/phpunit": "^4.0"
  6063. },
  6064. "type": "library",
  6065. "extra": {
  6066. "branch-alias": {
  6067. "dev-master": "1.4-dev"
  6068. }
  6069. },
  6070. "autoload": {
  6071. "files": [
  6072. "src/functions_include.php"
  6073. ],
  6074. "psr-4": {
  6075. "GuzzleHttp\\Promise\\": "src/"
  6076. }
  6077. },
  6078. "notification-url": "https://packagist.org/downloads/",
  6079. "license": [
  6080. "MIT"
  6081. ],
  6082. "authors": [
  6083. {
  6084. "name": "Michael Dowling",
  6085. "email": "mtdowling@gmail.com",
  6086. "homepage": "https://github.com/mtdowling"
  6087. }
  6088. ],
  6089. "description": "Guzzle promises library",
  6090. "keywords": [
  6091. "promise"
  6092. ],
  6093. "support": {
  6094. "issues": "https://github.com/guzzle/promises/issues",
  6095. "source": "https://github.com/guzzle/promises/tree/master"
  6096. },
  6097. "time": "2016-12-20T10:07:11+00:00"
  6098. },
  6099. {
  6100. "name": "guzzlehttp/psr7",
  6101. "version": "1.6.1",
  6102. "source": {
  6103. "type": "git",
  6104. "url": "https://github.com/guzzle/psr7.git",
  6105. "reference": "239400de7a173fe9901b9ac7c06497751f00727a"
  6106. },
  6107. "dist": {
  6108. "type": "zip",
  6109. "url": "https://api.github.com/repos/guzzle/psr7/zipball/239400de7a173fe9901b9ac7c06497751f00727a",
  6110. "reference": "239400de7a173fe9901b9ac7c06497751f00727a",
  6111. "shasum": ""
  6112. },
  6113. "require": {
  6114. "php": ">=5.4.0",
  6115. "psr/http-message": "~1.0",
  6116. "ralouphie/getallheaders": "^2.0.5 || ^3.0.0"
  6117. },
  6118. "provide": {
  6119. "psr/http-message-implementation": "1.0"
  6120. },
  6121. "require-dev": {
  6122. "ext-zlib": "*",
  6123. "phpunit/phpunit": "~4.8.36 || ^5.7.27 || ^6.5.8"
  6124. },
  6125. "suggest": {
  6126. "zendframework/zend-httphandlerrunner": "Emit PSR-7 responses"
  6127. },
  6128. "type": "library",
  6129. "extra": {
  6130. "branch-alias": {
  6131. "dev-master": "1.6-dev"
  6132. }
  6133. },
  6134. "autoload": {
  6135. "files": [
  6136. "src/functions_include.php"
  6137. ],
  6138. "psr-4": {
  6139. "GuzzleHttp\\Psr7\\": "src/"
  6140. }
  6141. },
  6142. "notification-url": "https://packagist.org/downloads/",
  6143. "license": [
  6144. "MIT"
  6145. ],
  6146. "authors": [
  6147. {
  6148. "name": "Michael Dowling",
  6149. "email": "mtdowling@gmail.com",
  6150. "homepage": "https://github.com/mtdowling"
  6151. },
  6152. {
  6153. "name": "Tobias Schultze",
  6154. "homepage": "https://github.com/Tobion"
  6155. }
  6156. ],
  6157. "description": "PSR-7 message implementation that also provides common utility methods",
  6158. "keywords": [
  6159. "http",
  6160. "message",
  6161. "psr-7",
  6162. "request",
  6163. "response",
  6164. "stream",
  6165. "uri",
  6166. "url"
  6167. ],
  6168. "support": {
  6169. "issues": "https://github.com/guzzle/psr7/issues",
  6170. "source": "https://github.com/guzzle/psr7/tree/1.6.1"
  6171. },
  6172. "time": "2019-07-01T23:21:34+00:00"
  6173. },
  6174. {
  6175. "name": "kint-php/kint",
  6176. "version": "5.1.1",
  6177. "source": {
  6178. "type": "git",
  6179. "url": "https://github.com/kint-php/kint.git",
  6180. "reference": "8c5ec370c3382ceae0b88e91f9bbb00e6bb4f93b"
  6181. },
  6182. "dist": {
  6183. "type": "zip",
  6184. "url": "https://api.github.com/repos/kint-php/kint/zipball/8c5ec370c3382ceae0b88e91f9bbb00e6bb4f93b",
  6185. "reference": "8c5ec370c3382ceae0b88e91f9bbb00e6bb4f93b",
  6186. "shasum": ""
  6187. },
  6188. "require": {
  6189. "php": ">=7.1"
  6190. },
  6191. "require-dev": {
  6192. "friendsofphp/php-cs-fixer": "^3",
  6193. "phpspec/prophecy-phpunit": "^2",
  6194. "phpunit/phpunit": "^9",
  6195. "seld/phar-utils": "^1",
  6196. "symfony/finder": ">=4.0",
  6197. "vimeo/psalm": "^5"
  6198. },
  6199. "suggest": {
  6200. "kint-php/kint-helpers": "Provides extra helper functions",
  6201. "kint-php/kint-twig": "Provides d() and s() functions in twig templates"
  6202. },
  6203. "type": "library",
  6204. "autoload": {
  6205. "files": [
  6206. "init.php"
  6207. ],
  6208. "psr-4": {
  6209. "Kint\\": "src/"
  6210. }
  6211. },
  6212. "notification-url": "https://packagist.org/downloads/",
  6213. "license": [
  6214. "MIT"
  6215. ],
  6216. "authors": [
  6217. {
  6218. "name": "Jonathan Vollebregt",
  6219. "homepage": "https://github.com/jnvsor"
  6220. },
  6221. {
  6222. "name": "Contributors",
  6223. "homepage": "https://github.com/kint-php/kint/graphs/contributors"
  6224. }
  6225. ],
  6226. "description": "Kint - debugging tool for PHP developers",
  6227. "homepage": "https://kint-php.github.io/kint/",
  6228. "keywords": [
  6229. "debug",
  6230. "kint",
  6231. "php"
  6232. ],
  6233. "support": {
  6234. "issues": "https://github.com/kint-php/kint/issues",
  6235. "source": "https://github.com/kint-php/kint/tree/5.1.1"
  6236. },
  6237. "time": "2024-04-26T14:20:09+00:00"
  6238. },
  6239. {
  6240. "name": "laminas/laminas-diactoros",
  6241. "version": "1.8.7p2",
  6242. "source": {
  6243. "type": "git",
  6244. "url": "https://github.com/laminas/laminas-diactoros.git",
  6245. "reference": "6991c1af7c8d2c8efee81b22ba97024781824aaa"
  6246. },
  6247. "dist": {
  6248. "type": "zip",
  6249. "url": "https://api.github.com/repos/laminas/laminas-diactoros/zipball/6991c1af7c8d2c8efee81b22ba97024781824aaa",
  6250. "reference": "6991c1af7c8d2c8efee81b22ba97024781824aaa",
  6251. "shasum": ""
  6252. },
  6253. "require": {
  6254. "laminas/laminas-zendframework-bridge": "^1.0",
  6255. "php": "^5.6 || ^7.0",
  6256. "psr/http-message": "^1.0"
  6257. },
  6258. "provide": {
  6259. "psr/http-message-implementation": "1.0"
  6260. },
  6261. "replace": {
  6262. "zendframework/zend-diactoros": "~1.8.7.0"
  6263. },
  6264. "require-dev": {
  6265. "ext-dom": "*",
  6266. "ext-libxml": "*",
  6267. "laminas/laminas-coding-standard": "~1.0",
  6268. "php-http/psr7-integration-tests": "dev-master",
  6269. "phpunit/phpunit": "^5.7.16 || ^6.0.8 || ^7.2.7"
  6270. },
  6271. "type": "library",
  6272. "extra": {
  6273. "branch-alias": {
  6274. "dev-release-1.8": "1.8.x-dev"
  6275. }
  6276. },
  6277. "autoload": {
  6278. "files": [
  6279. "src/functions/create_uploaded_file.php",
  6280. "src/functions/marshal_headers_from_sapi.php",
  6281. "src/functions/marshal_method_from_sapi.php",
  6282. "src/functions/marshal_protocol_version_from_sapi.php",
  6283. "src/functions/marshal_uri_from_sapi.php",
  6284. "src/functions/normalize_server.php",
  6285. "src/functions/normalize_uploaded_files.php",
  6286. "src/functions/parse_cookie_header.php",
  6287. "src/functions/create_uploaded_file.legacy.php",
  6288. "src/functions/marshal_headers_from_sapi.legacy.php",
  6289. "src/functions/marshal_method_from_sapi.legacy.php",
  6290. "src/functions/marshal_protocol_version_from_sapi.legacy.php",
  6291. "src/functions/marshal_uri_from_sapi.legacy.php",
  6292. "src/functions/normalize_server.legacy.php",
  6293. "src/functions/normalize_uploaded_files.legacy.php",
  6294. "src/functions/parse_cookie_header.legacy.php"
  6295. ],
  6296. "psr-4": {
  6297. "Laminas\\Diactoros\\": "src/"
  6298. }
  6299. },
  6300. "notification-url": "https://packagist.org/downloads/",
  6301. "license": [
  6302. "BSD-3-Clause"
  6303. ],
  6304. "description": "PSR HTTP Message implementations",
  6305. "homepage": "https://laminas.dev",
  6306. "keywords": [
  6307. "http",
  6308. "laminas",
  6309. "psr",
  6310. "psr-7"
  6311. ],
  6312. "support": {
  6313. "chat": "https://laminas.dev/chat",
  6314. "docs": "https://docs.laminas.dev/laminas-diactoros/",
  6315. "forum": "https://discourse.laminas.dev",
  6316. "issues": "https://github.com/laminas/laminas-diactoros/issues",
  6317. "rss": "https://github.com/laminas/laminas-diactoros/releases.atom",
  6318. "source": "https://github.com/laminas/laminas-diactoros"
  6319. },
  6320. "time": "2020-03-23T15:28:28+00:00"
  6321. },
  6322. {
  6323. "name": "laminas/laminas-escaper",
  6324. "version": "2.6.1",
  6325. "source": {
  6326. "type": "git",
  6327. "url": "https://github.com/laminas/laminas-escaper.git",
  6328. "reference": "25f2a053eadfa92ddacb609dcbbc39362610da70"
  6329. },
  6330. "dist": {
  6331. "type": "zip",
  6332. "url": "https://api.github.com/repos/laminas/laminas-escaper/zipball/25f2a053eadfa92ddacb609dcbbc39362610da70",
  6333. "reference": "25f2a053eadfa92ddacb609dcbbc39362610da70",
  6334. "shasum": ""
  6335. },
  6336. "require": {
  6337. "laminas/laminas-zendframework-bridge": "^1.0",
  6338. "php": "^5.6 || ^7.0"
  6339. },
  6340. "replace": {
  6341. "zendframework/zend-escaper": "self.version"
  6342. },
  6343. "require-dev": {
  6344. "laminas/laminas-coding-standard": "~1.0.0",
  6345. "phpunit/phpunit": "^5.7.27 || ^6.5.8 || ^7.1.2"
  6346. },
  6347. "type": "library",
  6348. "extra": {
  6349. "branch-alias": {
  6350. "dev-master": "2.6.x-dev",
  6351. "dev-develop": "2.7.x-dev"
  6352. }
  6353. },
  6354. "autoload": {
  6355. "psr-4": {
  6356. "Laminas\\Escaper\\": "src/"
  6357. }
  6358. },
  6359. "notification-url": "https://packagist.org/downloads/",
  6360. "license": [
  6361. "BSD-3-Clause"
  6362. ],
  6363. "description": "Securely and safely escape HTML, HTML attributes, JavaScript, CSS, and URLs",
  6364. "homepage": "https://laminas.dev",
  6365. "keywords": [
  6366. "escaper",
  6367. "laminas"
  6368. ],
  6369. "support": {
  6370. "chat": "https://laminas.dev/chat",
  6371. "docs": "https://docs.laminas.dev/laminas-escaper/",
  6372. "forum": "https://discourse.laminas.dev",
  6373. "issues": "https://github.com/laminas/laminas-escaper/issues",
  6374. "rss": "https://github.com/laminas/laminas-escaper/releases.atom",
  6375. "source": "https://github.com/laminas/laminas-escaper"
  6376. },
  6377. "time": "2019-12-31T16:43:30+00:00"
  6378. },
  6379. {
  6380. "name": "laminas/laminas-feed",
  6381. "version": "2.12.2",
  6382. "source": {
  6383. "type": "git",
  6384. "url": "https://github.com/laminas/laminas-feed.git",
  6385. "reference": "8a193ac96ebcb3e16b6ee754ac2a889eefacb654"
  6386. },
  6387. "dist": {
  6388. "type": "zip",
  6389. "url": "https://api.github.com/repos/laminas/laminas-feed/zipball/8a193ac96ebcb3e16b6ee754ac2a889eefacb654",
  6390. "reference": "8a193ac96ebcb3e16b6ee754ac2a889eefacb654",
  6391. "shasum": ""
  6392. },
  6393. "require": {
  6394. "ext-dom": "*",
  6395. "ext-libxml": "*",
  6396. "laminas/laminas-escaper": "^2.5.2",
  6397. "laminas/laminas-stdlib": "^3.2.1",
  6398. "laminas/laminas-zendframework-bridge": "^1.0",
  6399. "php": "^5.6 || ^7.0"
  6400. },
  6401. "replace": {
  6402. "zendframework/zend-feed": "^2.12.0"
  6403. },
  6404. "require-dev": {
  6405. "laminas/laminas-cache": "^2.7.2",
  6406. "laminas/laminas-coding-standard": "~1.0.0",
  6407. "laminas/laminas-db": "^2.8.2",
  6408. "laminas/laminas-http": "^2.7",
  6409. "laminas/laminas-servicemanager": "^2.7.8 || ^3.3",
  6410. "laminas/laminas-validator": "^2.10.1",
  6411. "phpunit/phpunit": "^5.7.27 || ^6.5.14 || ^7.5.20",
  6412. "psr/http-message": "^1.0.1"
  6413. },
  6414. "suggest": {
  6415. "laminas/laminas-cache": "Laminas\\Cache component, for optionally caching feeds between requests",
  6416. "laminas/laminas-db": "Laminas\\Db component, for use with PubSubHubbub",
  6417. "laminas/laminas-http": "Laminas\\Http for PubSubHubbub, and optionally for use with Laminas\\Feed\\Reader",
  6418. "laminas/laminas-servicemanager": "Laminas\\ServiceManager component, for easily extending ExtensionManager implementations",
  6419. "laminas/laminas-validator": "Laminas\\Validator component, for validating email addresses used in Atom feeds and entries when using the Writer subcomponent",
  6420. "psr/http-message": "PSR-7 ^1.0.1, if you wish to use Laminas\\Feed\\Reader\\Http\\Psr7ResponseDecorator"
  6421. },
  6422. "type": "library",
  6423. "extra": {
  6424. "branch-alias": {
  6425. "dev-master": "2.12.x-dev",
  6426. "dev-develop": "2.13.x-dev"
  6427. }
  6428. },
  6429. "autoload": {
  6430. "psr-4": {
  6431. "Laminas\\Feed\\": "src/"
  6432. }
  6433. },
  6434. "notification-url": "https://packagist.org/downloads/",
  6435. "license": [
  6436. "BSD-3-Clause"
  6437. ],
  6438. "description": "provides functionality for consuming RSS and Atom feeds",
  6439. "homepage": "https://laminas.dev",
  6440. "keywords": [
  6441. "feed",
  6442. "laminas"
  6443. ],
  6444. "support": {
  6445. "chat": "https://laminas.dev/chat",
  6446. "docs": "https://docs.laminas.dev/laminas-feed/",
  6447. "forum": "https://discourse.laminas.dev",
  6448. "issues": "https://github.com/laminas/laminas-feed/issues",
  6449. "rss": "https://github.com/laminas/laminas-feed/releases.atom",
  6450. "source": "https://github.com/laminas/laminas-feed"
  6451. },
  6452. "time": "2020-03-29T12:36:29+00:00"
  6453. },
  6454. {
  6455. "name": "laminas/laminas-servicemanager",
  6456. "version": "3.17.0",
  6457. "source": {
  6458. "type": "git",
  6459. "url": "https://github.com/laminas/laminas-servicemanager.git",
  6460. "reference": "360be5f16955dd1edbcce1cfaa98ed82a17f02ec"
  6461. },
  6462. "dist": {
  6463. "type": "zip",
  6464. "url": "https://api.github.com/repos/laminas/laminas-servicemanager/zipball/360be5f16955dd1edbcce1cfaa98ed82a17f02ec",
  6465. "reference": "360be5f16955dd1edbcce1cfaa98ed82a17f02ec",
  6466. "shasum": ""
  6467. },
  6468. "require": {
  6469. "laminas/laminas-stdlib": "^3.2.1",
  6470. "php": "~7.4.0 || ~8.0.0 || ~8.1.0",
  6471. "psr/container": "^1.0"
  6472. },
  6473. "conflict": {
  6474. "ext-psr": "*",
  6475. "laminas/laminas-code": "<3.3.1",
  6476. "zendframework/zend-code": "<3.3.1",
  6477. "zendframework/zend-servicemanager": "*"
  6478. },
  6479. "provide": {
  6480. "psr/container-implementation": "^1.0"
  6481. },
  6482. "replace": {
  6483. "container-interop/container-interop": "^1.2.0"
  6484. },
  6485. "require-dev": {
  6486. "composer/package-versions-deprecated": "^1.0",
  6487. "laminas/laminas-coding-standard": "~2.4.0",
  6488. "laminas/laminas-container-config-test": "^0.7",
  6489. "laminas/laminas-dependency-plugin": "^2.1.2",
  6490. "mikey179/vfsstream": "^1.6.10@alpha",
  6491. "ocramius/proxy-manager": "^2.11",
  6492. "phpbench/phpbench": "^1.1",
  6493. "phpspec/prophecy-phpunit": "^2.0",
  6494. "phpunit/phpunit": "^9.5.5",
  6495. "psalm/plugin-phpunit": "^0.17.0",
  6496. "vimeo/psalm": "^4.8"
  6497. },
  6498. "suggest": {
  6499. "ocramius/proxy-manager": "ProxyManager ^2.1.1 to handle lazy initialization of services"
  6500. },
  6501. "bin": [
  6502. "bin/generate-deps-for-config-factory",
  6503. "bin/generate-factory-for-class"
  6504. ],
  6505. "type": "library",
  6506. "autoload": {
  6507. "files": [
  6508. "src/autoload.php"
  6509. ],
  6510. "psr-4": {
  6511. "Laminas\\ServiceManager\\": "src/"
  6512. }
  6513. },
  6514. "notification-url": "https://packagist.org/downloads/",
  6515. "license": [
  6516. "BSD-3-Clause"
  6517. ],
  6518. "description": "Factory-Driven Dependency Injection Container",
  6519. "homepage": "https://laminas.dev",
  6520. "keywords": [
  6521. "PSR-11",
  6522. "dependency-injection",
  6523. "di",
  6524. "dic",
  6525. "laminas",
  6526. "service-manager",
  6527. "servicemanager"
  6528. ],
  6529. "support": {
  6530. "chat": "https://laminas.dev/chat",
  6531. "docs": "https://docs.laminas.dev/laminas-servicemanager/",
  6532. "forum": "https://discourse.laminas.dev",
  6533. "issues": "https://github.com/laminas/laminas-servicemanager/issues",
  6534. "rss": "https://github.com/laminas/laminas-servicemanager/releases.atom",
  6535. "source": "https://github.com/laminas/laminas-servicemanager"
  6536. },
  6537. "funding": [
  6538. {
  6539. "url": "https://funding.communitybridge.org/projects/laminas-project",
  6540. "type": "community_bridge"
  6541. }
  6542. ],
  6543. "time": "2022-09-22T11:33:46+00:00"
  6544. },
  6545. {
  6546. "name": "laminas/laminas-stdlib",
  6547. "version": "3.2.1",
  6548. "source": {
  6549. "type": "git",
  6550. "url": "https://github.com/laminas/laminas-stdlib.git",
  6551. "reference": "2b18347625a2f06a1a485acfbc870f699dbe51c6"
  6552. },
  6553. "dist": {
  6554. "type": "zip",
  6555. "url": "https://api.github.com/repos/laminas/laminas-stdlib/zipball/2b18347625a2f06a1a485acfbc870f699dbe51c6",
  6556. "reference": "2b18347625a2f06a1a485acfbc870f699dbe51c6",
  6557. "shasum": ""
  6558. },
  6559. "require": {
  6560. "laminas/laminas-zendframework-bridge": "^1.0",
  6561. "php": "^5.6 || ^7.0"
  6562. },
  6563. "replace": {
  6564. "zendframework/zend-stdlib": "self.version"
  6565. },
  6566. "require-dev": {
  6567. "laminas/laminas-coding-standard": "~1.0.0",
  6568. "phpbench/phpbench": "^0.13",
  6569. "phpunit/phpunit": "^5.7.27 || ^6.5.8 || ^7.1.2"
  6570. },
  6571. "type": "library",
  6572. "extra": {
  6573. "branch-alias": {
  6574. "dev-master": "3.2.x-dev",
  6575. "dev-develop": "3.3.x-dev"
  6576. }
  6577. },
  6578. "autoload": {
  6579. "psr-4": {
  6580. "Laminas\\Stdlib\\": "src/"
  6581. }
  6582. },
  6583. "notification-url": "https://packagist.org/downloads/",
  6584. "license": [
  6585. "BSD-3-Clause"
  6586. ],
  6587. "description": "SPL extensions, array utilities, error handlers, and more",
  6588. "homepage": "https://laminas.dev",
  6589. "keywords": [
  6590. "laminas",
  6591. "stdlib"
  6592. ],
  6593. "support": {
  6594. "chat": "https://laminas.dev/chat",
  6595. "docs": "https://docs.laminas.dev/laminas-stdlib/",
  6596. "forum": "https://discourse.laminas.dev",
  6597. "issues": "https://github.com/laminas/laminas-stdlib/issues",
  6598. "rss": "https://github.com/laminas/laminas-stdlib/releases.atom",
  6599. "source": "https://github.com/laminas/laminas-stdlib"
  6600. },
  6601. "time": "2019-12-31T17:51:15+00:00"
  6602. },
  6603. {
  6604. "name": "laminas/laminas-text",
  6605. "version": "2.8.1",
  6606. "source": {
  6607. "type": "git",
  6608. "url": "https://github.com/laminas/laminas-text.git",
  6609. "reference": "d696fa1fb3880b9b8f02c08be58685013b421608"
  6610. },
  6611. "dist": {
  6612. "type": "zip",
  6613. "url": "https://api.github.com/repos/laminas/laminas-text/zipball/d696fa1fb3880b9b8f02c08be58685013b421608",
  6614. "reference": "d696fa1fb3880b9b8f02c08be58685013b421608",
  6615. "shasum": ""
  6616. },
  6617. "require": {
  6618. "laminas/laminas-servicemanager": "^3.4",
  6619. "laminas/laminas-stdlib": "^3.1",
  6620. "laminas/laminas-zendframework-bridge": "^1.0",
  6621. "php": "^7.3 || ~8.0.0"
  6622. },
  6623. "replace": {
  6624. "zendframework/zend-text": "^2.7.1"
  6625. },
  6626. "require-dev": {
  6627. "laminas/laminas-coding-standard": "~1.0.0",
  6628. "laminas/laminas-config": "^3.4",
  6629. "phpunit/phpunit": "^9.3"
  6630. },
  6631. "type": "library",
  6632. "autoload": {
  6633. "psr-4": {
  6634. "Laminas\\Text\\": "src/"
  6635. }
  6636. },
  6637. "notification-url": "https://packagist.org/downloads/",
  6638. "license": [
  6639. "BSD-3-Clause"
  6640. ],
  6641. "description": "Create FIGlets and text-based tables",
  6642. "homepage": "https://laminas.dev",
  6643. "keywords": [
  6644. "laminas",
  6645. "text"
  6646. ],
  6647. "support": {
  6648. "chat": "https://laminas.dev/chat",
  6649. "docs": "https://docs.laminas.dev/laminas-text/",
  6650. "forum": "https://discourse.laminas.dev",
  6651. "issues": "https://github.com/laminas/laminas-text/issues",
  6652. "rss": "https://github.com/laminas/laminas-text/releases.atom",
  6653. "source": "https://github.com/laminas/laminas-text"
  6654. },
  6655. "funding": [
  6656. {
  6657. "url": "https://funding.communitybridge.org/projects/laminas-project",
  6658. "type": "community_bridge"
  6659. }
  6660. ],
  6661. "time": "2021-02-17T21:24:58+00:00"
  6662. },
  6663. {
  6664. "name": "laminas/laminas-zendframework-bridge",
  6665. "version": "1.0.4",
  6666. "source": {
  6667. "type": "git",
  6668. "url": "https://github.com/laminas/laminas-zendframework-bridge.git",
  6669. "reference": "fcd87520e4943d968557803919523772475e8ea3"
  6670. },
  6671. "dist": {
  6672. "type": "zip",
  6673. "url": "https://api.github.com/repos/laminas/laminas-zendframework-bridge/zipball/fcd87520e4943d968557803919523772475e8ea3",
  6674. "reference": "fcd87520e4943d968557803919523772475e8ea3",
  6675. "shasum": ""
  6676. },
  6677. "require": {
  6678. "php": "^5.6 || ^7.0"
  6679. },
  6680. "require-dev": {
  6681. "phpunit/phpunit": "^5.7 || ^6.5 || ^7.5 || ^8.1",
  6682. "squizlabs/php_codesniffer": "^3.5"
  6683. },
  6684. "type": "library",
  6685. "extra": {
  6686. "branch-alias": {
  6687. "dev-master": "1.0.x-dev",
  6688. "dev-develop": "1.1.x-dev"
  6689. },
  6690. "laminas": {
  6691. "module": "Laminas\\ZendFrameworkBridge"
  6692. }
  6693. },
  6694. "autoload": {
  6695. "files": [
  6696. "src/autoload.php"
  6697. ],
  6698. "psr-4": {
  6699. "Laminas\\ZendFrameworkBridge\\": "src//"
  6700. }
  6701. },
  6702. "notification-url": "https://packagist.org/downloads/",
  6703. "license": [
  6704. "BSD-3-Clause"
  6705. ],
  6706. "description": "Alias legacy ZF class names to Laminas Project equivalents.",
  6707. "keywords": [
  6708. "ZendFramework",
  6709. "autoloading",
  6710. "laminas",
  6711. "zf"
  6712. ],
  6713. "support": {
  6714. "forum": "https://discourse.laminas.dev/",
  6715. "issues": "https://github.com/laminas/laminas-zendframework-bridge/issues",
  6716. "rss": "https://github.com/laminas/laminas-zendframework-bridge/releases.atom",
  6717. "source": "https://github.com/laminas/laminas-zendframework-bridge"
  6718. },
  6719. "funding": [
  6720. {
  6721. "url": "https://funding.communitybridge.org/projects/laminas-project",
  6722. "type": "community_bridge"
  6723. }
  6724. ],
  6725. "abandoned": true,
  6726. "time": "2020-05-20T16:45:56+00:00"
  6727. },
  6728. {
  6729. "name": "league/container",
  6730. "version": "2.4.1",
  6731. "source": {
  6732. "type": "git",
  6733. "url": "https://github.com/thephpleague/container.git",
  6734. "reference": "43f35abd03a12977a60ffd7095efd6a7808488c0"
  6735. },
  6736. "dist": {
  6737. "type": "zip",
  6738. "url": "https://api.github.com/repos/thephpleague/container/zipball/43f35abd03a12977a60ffd7095efd6a7808488c0",
  6739. "reference": "43f35abd03a12977a60ffd7095efd6a7808488c0",
  6740. "shasum": ""
  6741. },
  6742. "require": {
  6743. "container-interop/container-interop": "^1.2",
  6744. "php": "^5.4.0 || ^7.0"
  6745. },
  6746. "provide": {
  6747. "container-interop/container-interop-implementation": "^1.2",
  6748. "psr/container-implementation": "^1.0"
  6749. },
  6750. "replace": {
  6751. "orno/di": "~2.0"
  6752. },
  6753. "require-dev": {
  6754. "phpunit/phpunit": "4.*"
  6755. },
  6756. "type": "library",
  6757. "extra": {
  6758. "branch-alias": {
  6759. "dev-2.x": "2.x-dev",
  6760. "dev-1.x": "1.x-dev"
  6761. }
  6762. },
  6763. "autoload": {
  6764. "psr-4": {
  6765. "League\\Container\\": "src"
  6766. }
  6767. },
  6768. "notification-url": "https://packagist.org/downloads/",
  6769. "license": [
  6770. "MIT"
  6771. ],
  6772. "authors": [
  6773. {
  6774. "name": "Phil Bennett",
  6775. "email": "philipobenito@gmail.com",
  6776. "homepage": "http://www.philipobenito.com",
  6777. "role": "Developer"
  6778. }
  6779. ],
  6780. "description": "A fast and intuitive dependency injection container.",
  6781. "homepage": "https://github.com/thephpleague/container",
  6782. "keywords": [
  6783. "container",
  6784. "dependency",
  6785. "di",
  6786. "injection",
  6787. "league",
  6788. "provider",
  6789. "service"
  6790. ],
  6791. "time": "2017-05-10T09:20:27+00:00"
  6792. },
  6793. {
  6794. "name": "masterminds/html5",
  6795. "version": "2.3.0",
  6796. "source": {
  6797. "type": "git",
  6798. "url": "https://github.com/Masterminds/html5-php.git",
  6799. "reference": "2c37c6c520b995b761674de3be8455a381679067"
  6800. },
  6801. "dist": {
  6802. "type": "zip",
  6803. "url": "https://api.github.com/repos/Masterminds/html5-php/zipball/2c37c6c520b995b761674de3be8455a381679067",
  6804. "reference": "2c37c6c520b995b761674de3be8455a381679067",
  6805. "shasum": ""
  6806. },
  6807. "require": {
  6808. "ext-libxml": "*",
  6809. "php": ">=5.3.0"
  6810. },
  6811. "require-dev": {
  6812. "phpunit/phpunit": "4.*",
  6813. "sami/sami": "~2.0",
  6814. "satooshi/php-coveralls": "1.0.*"
  6815. },
  6816. "type": "library",
  6817. "extra": {
  6818. "branch-alias": {
  6819. "dev-master": "2.2-dev"
  6820. }
  6821. },
  6822. "autoload": {
  6823. "psr-4": {
  6824. "Masterminds\\": "src"
  6825. }
  6826. },
  6827. "notification-url": "https://packagist.org/downloads/",
  6828. "license": [
  6829. "MIT"
  6830. ],
  6831. "authors": [
  6832. {
  6833. "name": "Matt Butcher",
  6834. "email": "technosophos@gmail.com"
  6835. },
  6836. {
  6837. "name": "Asmir Mustafic",
  6838. "email": "goetas@gmail.com"
  6839. },
  6840. {
  6841. "name": "Matt Farina",
  6842. "email": "matt@mattfarina.com"
  6843. }
  6844. ],
  6845. "description": "An HTML5 parser and serializer.",
  6846. "homepage": "http://masterminds.github.io/html5-php",
  6847. "keywords": [
  6848. "HTML5",
  6849. "dom",
  6850. "html",
  6851. "parser",
  6852. "querypath",
  6853. "serializer",
  6854. "xml"
  6855. ],
  6856. "support": {
  6857. "issues": "https://github.com/Masterminds/html5-php/issues",
  6858. "source": "https://github.com/Masterminds/html5-php/tree/2.x"
  6859. },
  6860. "time": "2017-09-04T12:26:28+00:00"
  6861. },
  6862. {
  6863. "name": "mathieuviossat/arraytotexttable",
  6864. "version": "v1.0.8",
  6865. "source": {
  6866. "type": "git",
  6867. "url": "https://github.com/viossat/arraytotexttable.git",
  6868. "reference": "6b1af924478cb9c3a903269e304fff006fe0dbf4"
  6869. },
  6870. "dist": {
  6871. "type": "zip",
  6872. "url": "https://api.github.com/repos/viossat/arraytotexttable/zipball/6b1af924478cb9c3a903269e304fff006fe0dbf4",
  6873. "reference": "6b1af924478cb9c3a903269e304fff006fe0dbf4",
  6874. "shasum": ""
  6875. },
  6876. "require": {
  6877. "laminas/laminas-text": "^2.7",
  6878. "php": ">=5.3.0"
  6879. },
  6880. "type": "library",
  6881. "autoload": {
  6882. "psr-4": {
  6883. "MathieuViossat\\Util\\": "src/"
  6884. }
  6885. },
  6886. "notification-url": "https://packagist.org/downloads/",
  6887. "license": [
  6888. "MIT"
  6889. ],
  6890. "authors": [
  6891. {
  6892. "name": "Mathieu Viossat",
  6893. "email": "mathieu@viossat.fr",
  6894. "homepage": "https://viossat.fr"
  6895. }
  6896. ],
  6897. "description": "Display arrays in terminal",
  6898. "homepage": "https://github.com/viossat/arraytotexttable",
  6899. "keywords": [
  6900. "array",
  6901. "ascii",
  6902. "table",
  6903. "terminal",
  6904. "text",
  6905. "unicode"
  6906. ],
  6907. "support": {
  6908. "issues": "https://github.com/viossat/arraytotexttable/issues",
  6909. "source": "https://github.com/viossat/arraytotexttable/tree/v1.0.8"
  6910. },
  6911. "time": "2020-06-23T17:14:22+00:00"
  6912. },
  6913. {
  6914. "name": "mglaman/phpstan-drupal",
  6915. "version": "1.2.1",
  6916. "source": {
  6917. "type": "git",
  6918. "url": "https://github.com/mglaman/phpstan-drupal.git",
  6919. "reference": "920c6b972a832046327f66dc6ff7448e3b5d6e4c"
  6920. },
  6921. "dist": {
  6922. "type": "zip",
  6923. "url": "https://api.github.com/repos/mglaman/phpstan-drupal/zipball/920c6b972a832046327f66dc6ff7448e3b5d6e4c",
  6924. "reference": "920c6b972a832046327f66dc6ff7448e3b5d6e4c",
  6925. "shasum": ""
  6926. },
  6927. "require": {
  6928. "php": "^7.4 || ^8.0",
  6929. "phpstan/phpstan": "^1.10.1",
  6930. "phpstan/phpstan-deprecation-rules": "^1.1.4",
  6931. "symfony/finder": "~3.4.5 ||^4.2 || ^5.0 || ^6.0",
  6932. "symfony/yaml": "~3.4.5 || ^4.2|| ^5.0 || ^6.0",
  6933. "webflo/drupal-finder": "^1.2"
  6934. },
  6935. "require-dev": {
  6936. "behat/mink": "^1.8",
  6937. "composer/installers": "^1.9",
  6938. "drupal/core-recommended": "^8.8@alpha || ^9.0",
  6939. "drush/drush": "^9.6 || ^10.0 || ^11",
  6940. "phpstan/extension-installer": "^1.1",
  6941. "phpstan/phpstan-strict-rules": "^1.0",
  6942. "phpunit/phpunit": "^6.5 || ^7.5 || ^8.0 || ^9",
  6943. "slevomat/coding-standard": "^7.1",
  6944. "squizlabs/php_codesniffer": "^3.3",
  6945. "symfony/phpunit-bridge": "^3.4.3 || ^4.4 || ^5.4 || ^6.0"
  6946. },
  6947. "suggest": {
  6948. "jangregor/phpstan-prophecy": "Provides a prophecy/prophecy extension for phpstan/phpstan.",
  6949. "phpstan/phpstan-deprecation-rules": "For catching deprecations, especially in Drupal core.",
  6950. "phpstan/phpstan-phpunit": "PHPUnit extensions and rules for PHPStan."
  6951. },
  6952. "type": "phpstan-extension",
  6953. "extra": {
  6954. "branch-alias": {
  6955. "dev-main": "1.0-dev"
  6956. },
  6957. "installer-paths": {
  6958. "tests/fixtures/drupal/core": [
  6959. "type:drupal-core"
  6960. ],
  6961. "tests/fixtures/drupal/libraries/{$name}": [
  6962. "type:drupal-library"
  6963. ],
  6964. "tests/fixtures/drupal/modules/contrib/{$name}": [
  6965. "type:drupal-module"
  6966. ],
  6967. "tests/fixtures/drupal/profiles/contrib/{$name}": [
  6968. "type:drupal-profile"
  6969. ],
  6970. "tests/fixtures/drupal/themes/contrib/{$name}": [
  6971. "type:drupal-theme"
  6972. ]
  6973. },
  6974. "phpstan": {
  6975. "includes": [
  6976. "extension.neon",
  6977. "rules.neon"
  6978. ]
  6979. }
  6980. },
  6981. "autoload": {
  6982. "psr-4": {
  6983. "mglaman\\PHPStanDrupal\\": "src/"
  6984. }
  6985. },
  6986. "notification-url": "https://packagist.org/downloads/",
  6987. "license": [
  6988. "MIT"
  6989. ],
  6990. "authors": [
  6991. {
  6992. "name": "Matt Glaman",
  6993. "email": "nmd.matt@gmail.com"
  6994. }
  6995. ],
  6996. "description": "Drupal extension and rules for PHPStan",
  6997. "support": {
  6998. "issues": "https://github.com/mglaman/phpstan-drupal/issues",
  6999. "source": "https://github.com/mglaman/phpstan-drupal/tree/1.2.1"
  7000. },
  7001. "funding": [
  7002. {
  7003. "url": "https://github.com/mglaman",
  7004. "type": "github"
  7005. },
  7006. {
  7007. "url": "https://opencollective.com/phpstan-drupal",
  7008. "type": "open_collective"
  7009. },
  7010. {
  7011. "url": "https://tidelift.com/funding/github/packagist/mglaman/phpstan-drupal",
  7012. "type": "tidelift"
  7013. }
  7014. ],
  7015. "time": "2023-11-03T13:17:28+00:00"
  7016. },
  7017. {
  7018. "name": "nikic/php-parser",
  7019. "version": "v4.4.0",
  7020. "source": {
  7021. "type": "git",
  7022. "url": "https://github.com/nikic/PHP-Parser.git",
  7023. "reference": "bd43ec7152eaaab3bd8c6d0aa95ceeb1df8ee120"
  7024. },
  7025. "dist": {
  7026. "type": "zip",
  7027. "url": "https://api.github.com/repos/nikic/PHP-Parser/zipball/bd43ec7152eaaab3bd8c6d0aa95ceeb1df8ee120",
  7028. "reference": "bd43ec7152eaaab3bd8c6d0aa95ceeb1df8ee120",
  7029. "shasum": ""
  7030. },
  7031. "require": {
  7032. "ext-tokenizer": "*",
  7033. "php": ">=7.0"
  7034. },
  7035. "require-dev": {
  7036. "ircmaxell/php-yacc": "0.0.5",
  7037. "phpunit/phpunit": "^6.5 || ^7.0 || ^8.0"
  7038. },
  7039. "bin": [
  7040. "bin/php-parse"
  7041. ],
  7042. "type": "library",
  7043. "extra": {
  7044. "branch-alias": {
  7045. "dev-master": "4.3-dev"
  7046. }
  7047. },
  7048. "autoload": {
  7049. "psr-4": {
  7050. "PhpParser\\": "lib/PhpParser"
  7051. }
  7052. },
  7053. "notification-url": "https://packagist.org/downloads/",
  7054. "license": [
  7055. "BSD-3-Clause"
  7056. ],
  7057. "authors": [
  7058. {
  7059. "name": "Nikita Popov"
  7060. }
  7061. ],
  7062. "description": "A PHP parser written in PHP",
  7063. "keywords": [
  7064. "parser",
  7065. "php"
  7066. ],
  7067. "time": "2020-04-10T16:34:50+00:00"
  7068. },
  7069. {
  7070. "name": "paragonie/random_compat",
  7071. "version": "v9.99.99",
  7072. "source": {
  7073. "type": "git",
  7074. "url": "https://github.com/paragonie/random_compat.git",
  7075. "reference": "84b4dfb120c6f9b4ff7b3685f9b8f1aa365a0c95"
  7076. },
  7077. "dist": {
  7078. "type": "zip",
  7079. "url": "https://api.github.com/repos/paragonie/random_compat/zipball/84b4dfb120c6f9b4ff7b3685f9b8f1aa365a0c95",
  7080. "reference": "84b4dfb120c6f9b4ff7b3685f9b8f1aa365a0c95",
  7081. "shasum": ""
  7082. },
  7083. "require": {
  7084. "php": "^7"
  7085. },
  7086. "require-dev": {
  7087. "phpunit/phpunit": "4.*|5.*",
  7088. "vimeo/psalm": "^1"
  7089. },
  7090. "suggest": {
  7091. "ext-libsodium": "Provides a modern crypto API that can be used to generate random bytes."
  7092. },
  7093. "type": "library",
  7094. "notification-url": "https://packagist.org/downloads/",
  7095. "license": [
  7096. "MIT"
  7097. ],
  7098. "authors": [
  7099. {
  7100. "name": "Paragon Initiative Enterprises",
  7101. "email": "security@paragonie.com",
  7102. "homepage": "https://paragonie.com"
  7103. }
  7104. ],
  7105. "description": "PHP 5.x polyfill for random_bytes() and random_int() from PHP 7",
  7106. "keywords": [
  7107. "csprng",
  7108. "polyfill",
  7109. "pseudorandom",
  7110. "random"
  7111. ],
  7112. "support": {
  7113. "email": "info@paragonie.com",
  7114. "issues": "https://github.com/paragonie/random_compat/issues",
  7115. "source": "https://github.com/paragonie/random_compat"
  7116. },
  7117. "time": "2018-07-02T15:55:56+00:00"
  7118. },
  7119. {
  7120. "name": "pear/archive_tar",
  7121. "version": "1.4.14",
  7122. "source": {
  7123. "type": "git",
  7124. "url": "https://github.com/pear/Archive_Tar.git",
  7125. "reference": "4d761c5334c790e45ef3245f0864b8955c562caa"
  7126. },
  7127. "dist": {
  7128. "type": "zip",
  7129. "url": "https://api.github.com/repos/pear/Archive_Tar/zipball/4d761c5334c790e45ef3245f0864b8955c562caa",
  7130. "reference": "4d761c5334c790e45ef3245f0864b8955c562caa",
  7131. "shasum": ""
  7132. },
  7133. "require": {
  7134. "pear/pear-core-minimal": "^1.10.0alpha2",
  7135. "php": ">=5.2.0"
  7136. },
  7137. "require-dev": {
  7138. "phpunit/phpunit": "*"
  7139. },
  7140. "suggest": {
  7141. "ext-bz2": "Bz2 compression support.",
  7142. "ext-xz": "Lzma2 compression support.",
  7143. "ext-zlib": "Gzip compression support."
  7144. },
  7145. "type": "library",
  7146. "extra": {
  7147. "branch-alias": {
  7148. "dev-master": "1.4.x-dev"
  7149. }
  7150. },
  7151. "autoload": {
  7152. "psr-0": {
  7153. "Archive_Tar": ""
  7154. }
  7155. },
  7156. "notification-url": "https://packagist.org/downloads/",
  7157. "include-path": [
  7158. "./"
  7159. ],
  7160. "license": [
  7161. "BSD-3-Clause"
  7162. ],
  7163. "authors": [
  7164. {
  7165. "name": "Vincent Blavet",
  7166. "email": "vincent@phpconcept.net"
  7167. },
  7168. {
  7169. "name": "Greg Beaver",
  7170. "email": "greg@chiaraquartet.net"
  7171. },
  7172. {
  7173. "name": "Michiel Rook",
  7174. "email": "mrook@php.net"
  7175. }
  7176. ],
  7177. "description": "Tar file management class with compression support (gzip, bzip2, lzma2)",
  7178. "homepage": "https://github.com/pear/Archive_Tar",
  7179. "keywords": [
  7180. "archive",
  7181. "tar"
  7182. ],
  7183. "support": {
  7184. "issues": "http://pear.php.net/bugs/search.php?cmd=display&package_name[]=Archive_Tar",
  7185. "source": "https://github.com/pear/Archive_Tar"
  7186. },
  7187. "funding": [
  7188. {
  7189. "url": "https://github.com/mrook",
  7190. "type": "github"
  7191. },
  7192. {
  7193. "url": "https://www.patreon.com/michielrook",
  7194. "type": "patreon"
  7195. }
  7196. ],
  7197. "time": "2021-07-20T13:53:39+00:00"
  7198. },
  7199. {
  7200. "name": "pear/console_getopt",
  7201. "version": "v1.4.3",
  7202. "source": {
  7203. "type": "git",
  7204. "url": "https://github.com/pear/Console_Getopt.git",
  7205. "reference": "a41f8d3e668987609178c7c4a9fe48fecac53fa0"
  7206. },
  7207. "dist": {
  7208. "type": "zip",
  7209. "url": "https://api.github.com/repos/pear/Console_Getopt/zipball/a41f8d3e668987609178c7c4a9fe48fecac53fa0",
  7210. "reference": "a41f8d3e668987609178c7c4a9fe48fecac53fa0",
  7211. "shasum": ""
  7212. },
  7213. "type": "library",
  7214. "autoload": {
  7215. "psr-0": {
  7216. "Console": "./"
  7217. }
  7218. },
  7219. "notification-url": "https://packagist.org/downloads/",
  7220. "include-path": [
  7221. "./"
  7222. ],
  7223. "license": [
  7224. "BSD-2-Clause"
  7225. ],
  7226. "authors": [
  7227. {
  7228. "name": "Andrei Zmievski",
  7229. "email": "andrei@php.net",
  7230. "role": "Lead"
  7231. },
  7232. {
  7233. "name": "Stig Bakken",
  7234. "email": "stig@php.net",
  7235. "role": "Developer"
  7236. },
  7237. {
  7238. "name": "Greg Beaver",
  7239. "email": "cellog@php.net",
  7240. "role": "Helper"
  7241. }
  7242. ],
  7243. "description": "More info available on: http://pear.php.net/package/Console_Getopt",
  7244. "support": {
  7245. "issues": "http://pear.php.net/bugs/search.php?cmd=display&package_name[]=Console_Getopt",
  7246. "source": "https://github.com/pear/Console_Getopt"
  7247. },
  7248. "time": "2019-11-20T18:27:48+00:00"
  7249. },
  7250. {
  7251. "name": "pear/pear-core-minimal",
  7252. "version": "v1.10.10",
  7253. "source": {
  7254. "type": "git",
  7255. "url": "https://github.com/pear/pear-core-minimal.git",
  7256. "reference": "625a3c429d9b2c1546438679074cac1b089116a7"
  7257. },
  7258. "dist": {
  7259. "type": "zip",
  7260. "url": "https://api.github.com/repos/pear/pear-core-minimal/zipball/625a3c429d9b2c1546438679074cac1b089116a7",
  7261. "reference": "625a3c429d9b2c1546438679074cac1b089116a7",
  7262. "shasum": ""
  7263. },
  7264. "require": {
  7265. "pear/console_getopt": "~1.4",
  7266. "pear/pear_exception": "~1.0"
  7267. },
  7268. "replace": {
  7269. "rsky/pear-core-min": "self.version"
  7270. },
  7271. "type": "library",
  7272. "autoload": {
  7273. "psr-0": {
  7274. "": "src/"
  7275. }
  7276. },
  7277. "notification-url": "https://packagist.org/downloads/",
  7278. "include-path": [
  7279. "src/"
  7280. ],
  7281. "license": [
  7282. "BSD-3-Clause"
  7283. ],
  7284. "authors": [
  7285. {
  7286. "name": "Christian Weiske",
  7287. "email": "cweiske@php.net",
  7288. "role": "Lead"
  7289. }
  7290. ],
  7291. "description": "Minimal set of PEAR core files to be used as composer dependency",
  7292. "support": {
  7293. "issues": "http://pear.php.net/bugs/search.php?cmd=display&package_name[]=PEAR",
  7294. "source": "https://github.com/pear/pear-core-minimal"
  7295. },
  7296. "time": "2019-11-19T19:00:24+00:00"
  7297. },
  7298. {
  7299. "name": "pear/pear_exception",
  7300. "version": "v1.0.1",
  7301. "source": {
  7302. "type": "git",
  7303. "url": "https://github.com/pear/PEAR_Exception.git",
  7304. "reference": "dbb42a5a0e45f3adcf99babfb2a1ba77b8ac36a7"
  7305. },
  7306. "dist": {
  7307. "type": "zip",
  7308. "url": "https://api.github.com/repos/pear/PEAR_Exception/zipball/dbb42a5a0e45f3adcf99babfb2a1ba77b8ac36a7",
  7309. "reference": "dbb42a5a0e45f3adcf99babfb2a1ba77b8ac36a7",
  7310. "shasum": ""
  7311. },
  7312. "require": {
  7313. "php": ">=4.4.0"
  7314. },
  7315. "require-dev": {
  7316. "phpunit/phpunit": "*"
  7317. },
  7318. "type": "class",
  7319. "extra": {
  7320. "branch-alias": {
  7321. "dev-master": "1.0.x-dev"
  7322. }
  7323. },
  7324. "autoload": {
  7325. "classmap": [
  7326. "PEAR/"
  7327. ]
  7328. },
  7329. "notification-url": "https://packagist.org/downloads/",
  7330. "include-path": [
  7331. "."
  7332. ],
  7333. "license": [
  7334. "BSD-2-Clause"
  7335. ],
  7336. "authors": [
  7337. {
  7338. "name": "Helgi Thormar",
  7339. "email": "dufuz@php.net"
  7340. },
  7341. {
  7342. "name": "Greg Beaver",
  7343. "email": "cellog@php.net"
  7344. }
  7345. ],
  7346. "description": "The PEAR Exception base class.",
  7347. "homepage": "https://github.com/pear/PEAR_Exception",
  7348. "keywords": [
  7349. "exception"
  7350. ],
  7351. "support": {
  7352. "issues": "http://pear.php.net/bugs/search.php?cmd=display&package_name[]=PEAR_Exception",
  7353. "source": "https://github.com/pear/PEAR_Exception"
  7354. },
  7355. "time": "2019-12-10T10:24:42+00:00"
  7356. },
  7357. {
  7358. "name": "phpstan/phpstan",
  7359. "version": "1.12.3",
  7360. "source": {
  7361. "type": "git",
  7362. "url": "https://github.com/phpstan/phpstan.git",
  7363. "reference": "0fcbf194ab63d8159bb70d9aa3e1350051632009"
  7364. },
  7365. "dist": {
  7366. "type": "zip",
  7367. "url": "https://api.github.com/repos/phpstan/phpstan/zipball/0fcbf194ab63d8159bb70d9aa3e1350051632009",
  7368. "reference": "0fcbf194ab63d8159bb70d9aa3e1350051632009",
  7369. "shasum": ""
  7370. },
  7371. "require": {
  7372. "php": "^7.2|^8.0"
  7373. },
  7374. "conflict": {
  7375. "phpstan/phpstan-shim": "*"
  7376. },
  7377. "bin": [
  7378. "phpstan",
  7379. "phpstan.phar"
  7380. ],
  7381. "type": "library",
  7382. "autoload": {
  7383. "files": [
  7384. "bootstrap.php"
  7385. ]
  7386. },
  7387. "notification-url": "https://packagist.org/downloads/",
  7388. "license": [
  7389. "MIT"
  7390. ],
  7391. "description": "PHPStan - PHP Static Analysis Tool",
  7392. "keywords": [
  7393. "dev",
  7394. "static analysis"
  7395. ],
  7396. "support": {
  7397. "docs": "https://phpstan.org/user-guide/getting-started",
  7398. "forum": "https://github.com/phpstan/phpstan/discussions",
  7399. "issues": "https://github.com/phpstan/phpstan/issues",
  7400. "security": "https://github.com/phpstan/phpstan/security/policy",
  7401. "source": "https://github.com/phpstan/phpstan-src"
  7402. },
  7403. "funding": [
  7404. {
  7405. "url": "https://github.com/ondrejmirtes",
  7406. "type": "github"
  7407. },
  7408. {
  7409. "url": "https://github.com/phpstan",
  7410. "type": "github"
  7411. }
  7412. ],
  7413. "time": "2024-09-09T08:10:35+00:00"
  7414. },
  7415. {
  7416. "name": "phpstan/phpstan-deprecation-rules",
  7417. "version": "1.2.1",
  7418. "source": {
  7419. "type": "git",
  7420. "url": "https://github.com/phpstan/phpstan-deprecation-rules.git",
  7421. "reference": "f94d246cc143ec5a23da868f8f7e1393b50eaa82"
  7422. },
  7423. "dist": {
  7424. "type": "zip",
  7425. "url": "https://api.github.com/repos/phpstan/phpstan-deprecation-rules/zipball/f94d246cc143ec5a23da868f8f7e1393b50eaa82",
  7426. "reference": "f94d246cc143ec5a23da868f8f7e1393b50eaa82",
  7427. "shasum": ""
  7428. },
  7429. "require": {
  7430. "php": "^7.2 || ^8.0",
  7431. "phpstan/phpstan": "^1.12"
  7432. },
  7433. "require-dev": {
  7434. "php-parallel-lint/php-parallel-lint": "^1.2",
  7435. "phpstan/phpstan-phpunit": "^1.0",
  7436. "phpunit/phpunit": "^9.5"
  7437. },
  7438. "type": "phpstan-extension",
  7439. "extra": {
  7440. "phpstan": {
  7441. "includes": [
  7442. "rules.neon"
  7443. ]
  7444. }
  7445. },
  7446. "autoload": {
  7447. "psr-4": {
  7448. "PHPStan\\": "src/"
  7449. }
  7450. },
  7451. "notification-url": "https://packagist.org/downloads/",
  7452. "license": [
  7453. "MIT"
  7454. ],
  7455. "description": "PHPStan rules for detecting usage of deprecated classes, methods, properties, constants and traits.",
  7456. "support": {
  7457. "issues": "https://github.com/phpstan/phpstan-deprecation-rules/issues",
  7458. "source": "https://github.com/phpstan/phpstan-deprecation-rules/tree/1.2.1"
  7459. },
  7460. "time": "2024-09-11T15:52:35+00:00"
  7461. },
  7462. {
  7463. "name": "psr/container",
  7464. "version": "1.0.0",
  7465. "source": {
  7466. "type": "git",
  7467. "url": "https://github.com/php-fig/container.git",
  7468. "reference": "b7ce3b176482dbbc1245ebf52b181af44c2cf55f"
  7469. },
  7470. "dist": {
  7471. "type": "zip",
  7472. "url": "https://api.github.com/repos/php-fig/container/zipball/b7ce3b176482dbbc1245ebf52b181af44c2cf55f",
  7473. "reference": "b7ce3b176482dbbc1245ebf52b181af44c2cf55f",
  7474. "shasum": ""
  7475. },
  7476. "require": {
  7477. "php": ">=5.3.0"
  7478. },
  7479. "type": "library",
  7480. "extra": {
  7481. "branch-alias": {
  7482. "dev-master": "1.0.x-dev"
  7483. }
  7484. },
  7485. "autoload": {
  7486. "psr-4": {
  7487. "Psr\\Container\\": "src/"
  7488. }
  7489. },
  7490. "notification-url": "https://packagist.org/downloads/",
  7491. "license": [
  7492. "MIT"
  7493. ],
  7494. "authors": [
  7495. {
  7496. "name": "PHP-FIG",
  7497. "homepage": "http://www.php-fig.org/"
  7498. }
  7499. ],
  7500. "description": "Common Container Interface (PHP FIG PSR-11)",
  7501. "homepage": "https://github.com/php-fig/container",
  7502. "keywords": [
  7503. "PSR-11",
  7504. "container",
  7505. "container-interface",
  7506. "container-interop",
  7507. "psr"
  7508. ],
  7509. "support": {
  7510. "issues": "https://github.com/php-fig/container/issues",
  7511. "source": "https://github.com/php-fig/container/tree/master"
  7512. },
  7513. "time": "2017-02-14T16:28:37+00:00"
  7514. },
  7515. {
  7516. "name": "psr/http-message",
  7517. "version": "1.0.1",
  7518. "source": {
  7519. "type": "git",
  7520. "url": "https://github.com/php-fig/http-message.git",
  7521. "reference": "f6561bf28d520154e4b0ec72be95418abe6d9363"
  7522. },
  7523. "dist": {
  7524. "type": "zip",
  7525. "url": "https://api.github.com/repos/php-fig/http-message/zipball/f6561bf28d520154e4b0ec72be95418abe6d9363",
  7526. "reference": "f6561bf28d520154e4b0ec72be95418abe6d9363",
  7527. "shasum": ""
  7528. },
  7529. "require": {
  7530. "php": ">=5.3.0"
  7531. },
  7532. "type": "library",
  7533. "extra": {
  7534. "branch-alias": {
  7535. "dev-master": "1.0.x-dev"
  7536. }
  7537. },
  7538. "autoload": {
  7539. "psr-4": {
  7540. "Psr\\Http\\Message\\": "src/"
  7541. }
  7542. },
  7543. "notification-url": "https://packagist.org/downloads/",
  7544. "license": [
  7545. "MIT"
  7546. ],
  7547. "authors": [
  7548. {
  7549. "name": "PHP-FIG",
  7550. "homepage": "http://www.php-fig.org/"
  7551. }
  7552. ],
  7553. "description": "Common interface for HTTP messages",
  7554. "homepage": "https://github.com/php-fig/http-message",
  7555. "keywords": [
  7556. "http",
  7557. "http-message",
  7558. "psr",
  7559. "psr-7",
  7560. "request",
  7561. "response"
  7562. ],
  7563. "support": {
  7564. "source": "https://github.com/php-fig/http-message/tree/master"
  7565. },
  7566. "time": "2016-08-06T14:39:51+00:00"
  7567. },
  7568. {
  7569. "name": "psr/log",
  7570. "version": "1.1.3",
  7571. "source": {
  7572. "type": "git",
  7573. "url": "https://github.com/php-fig/log.git",
  7574. "reference": "0f73288fd15629204f9d42b7055f72dacbe811fc"
  7575. },
  7576. "dist": {
  7577. "type": "zip",
  7578. "url": "https://api.github.com/repos/php-fig/log/zipball/0f73288fd15629204f9d42b7055f72dacbe811fc",
  7579. "reference": "0f73288fd15629204f9d42b7055f72dacbe811fc",
  7580. "shasum": ""
  7581. },
  7582. "require": {
  7583. "php": ">=5.3.0"
  7584. },
  7585. "type": "library",
  7586. "extra": {
  7587. "branch-alias": {
  7588. "dev-master": "1.1.x-dev"
  7589. }
  7590. },
  7591. "autoload": {
  7592. "psr-4": {
  7593. "Psr\\Log\\": "Psr/Log/"
  7594. }
  7595. },
  7596. "notification-url": "https://packagist.org/downloads/",
  7597. "license": [
  7598. "MIT"
  7599. ],
  7600. "authors": [
  7601. {
  7602. "name": "PHP-FIG",
  7603. "homepage": "http://www.php-fig.org/"
  7604. }
  7605. ],
  7606. "description": "Common interface for logging libraries",
  7607. "homepage": "https://github.com/php-fig/log",
  7608. "keywords": [
  7609. "log",
  7610. "psr",
  7611. "psr-3"
  7612. ],
  7613. "support": {
  7614. "source": "https://github.com/php-fig/log/tree/1.1.3"
  7615. },
  7616. "time": "2020-03-23T09:12:05+00:00"
  7617. },
  7618. {
  7619. "name": "psy/psysh",
  7620. "version": "v0.10.4",
  7621. "source": {
  7622. "type": "git",
  7623. "url": "https://github.com/bobthecow/psysh.git",
  7624. "reference": "a8aec1b2981ab66882a01cce36a49b6317dc3560"
  7625. },
  7626. "dist": {
  7627. "type": "zip",
  7628. "url": "https://api.github.com/repos/bobthecow/psysh/zipball/a8aec1b2981ab66882a01cce36a49b6317dc3560",
  7629. "reference": "a8aec1b2981ab66882a01cce36a49b6317dc3560",
  7630. "shasum": ""
  7631. },
  7632. "require": {
  7633. "dnoegel/php-xdg-base-dir": "0.1.*",
  7634. "ext-json": "*",
  7635. "ext-tokenizer": "*",
  7636. "nikic/php-parser": "~4.0|~3.0|~2.0|~1.3",
  7637. "php": "^8.0 || ^7.0 || ^5.5.9",
  7638. "symfony/console": "~5.0|~4.0|~3.0|^2.4.2|~2.3.10",
  7639. "symfony/var-dumper": "~5.0|~4.0|~3.0|~2.7"
  7640. },
  7641. "require-dev": {
  7642. "bamarni/composer-bin-plugin": "^1.2",
  7643. "hoa/console": "3.17.*"
  7644. },
  7645. "suggest": {
  7646. "ext-pcntl": "Enabling the PCNTL extension makes PsySH a lot happier :)",
  7647. "ext-pdo-sqlite": "The doc command requires SQLite to work.",
  7648. "ext-posix": "If you have PCNTL, you'll want the POSIX extension as well.",
  7649. "ext-readline": "Enables support for arrow-key history navigation, and showing and manipulating command history.",
  7650. "hoa/console": "A pure PHP readline implementation. You'll want this if your PHP install doesn't already support readline or libedit."
  7651. },
  7652. "bin": [
  7653. "bin/psysh"
  7654. ],
  7655. "type": "library",
  7656. "extra": {
  7657. "branch-alias": {
  7658. "dev-master": "0.10.x-dev"
  7659. }
  7660. },
  7661. "autoload": {
  7662. "files": [
  7663. "src/functions.php"
  7664. ],
  7665. "psr-4": {
  7666. "Psy\\": "src/"
  7667. }
  7668. },
  7669. "notification-url": "https://packagist.org/downloads/",
  7670. "license": [
  7671. "MIT"
  7672. ],
  7673. "authors": [
  7674. {
  7675. "name": "Justin Hileman",
  7676. "email": "justin@justinhileman.info",
  7677. "homepage": "http://justinhileman.com"
  7678. }
  7679. ],
  7680. "description": "An interactive shell for modern PHP.",
  7681. "homepage": "http://psysh.org",
  7682. "keywords": [
  7683. "REPL",
  7684. "console",
  7685. "interactive",
  7686. "shell"
  7687. ],
  7688. "time": "2020-05-03T19:32:03+00:00"
  7689. },
  7690. {
  7691. "name": "ralouphie/getallheaders",
  7692. "version": "3.0.3",
  7693. "source": {
  7694. "type": "git",
  7695. "url": "https://github.com/ralouphie/getallheaders.git",
  7696. "reference": "120b605dfeb996808c31b6477290a714d356e822"
  7697. },
  7698. "dist": {
  7699. "type": "zip",
  7700. "url": "https://api.github.com/repos/ralouphie/getallheaders/zipball/120b605dfeb996808c31b6477290a714d356e822",
  7701. "reference": "120b605dfeb996808c31b6477290a714d356e822",
  7702. "shasum": ""
  7703. },
  7704. "require": {
  7705. "php": ">=5.6"
  7706. },
  7707. "require-dev": {
  7708. "php-coveralls/php-coveralls": "^2.1",
  7709. "phpunit/phpunit": "^5 || ^6.5"
  7710. },
  7711. "type": "library",
  7712. "autoload": {
  7713. "files": [
  7714. "src/getallheaders.php"
  7715. ]
  7716. },
  7717. "notification-url": "https://packagist.org/downloads/",
  7718. "license": [
  7719. "MIT"
  7720. ],
  7721. "authors": [
  7722. {
  7723. "name": "Ralph Khattar",
  7724. "email": "ralph.khattar@gmail.com"
  7725. }
  7726. ],
  7727. "description": "A polyfill for getallheaders.",
  7728. "support": {
  7729. "issues": "https://github.com/ralouphie/getallheaders/issues",
  7730. "source": "https://github.com/ralouphie/getallheaders/tree/develop"
  7731. },
  7732. "time": "2019-03-08T08:55:37+00:00"
  7733. },
  7734. {
  7735. "name": "stack/builder",
  7736. "version": "v1.0.5",
  7737. "source": {
  7738. "type": "git",
  7739. "url": "https://github.com/stackphp/builder.git",
  7740. "reference": "fb3d136d04c6be41120ebf8c0cc71fe9507d750a"
  7741. },
  7742. "dist": {
  7743. "type": "zip",
  7744. "url": "https://api.github.com/repos/stackphp/builder/zipball/fb3d136d04c6be41120ebf8c0cc71fe9507d750a",
  7745. "reference": "fb3d136d04c6be41120ebf8c0cc71fe9507d750a",
  7746. "shasum": ""
  7747. },
  7748. "require": {
  7749. "php": ">=5.3.0",
  7750. "symfony/http-foundation": "~2.1|~3.0|~4.0",
  7751. "symfony/http-kernel": "~2.1|~3.0|~4.0"
  7752. },
  7753. "require-dev": {
  7754. "silex/silex": "~1.0"
  7755. },
  7756. "type": "library",
  7757. "extra": {
  7758. "branch-alias": {
  7759. "dev-master": "1.0-dev"
  7760. }
  7761. },
  7762. "autoload": {
  7763. "psr-0": {
  7764. "Stack": "src"
  7765. }
  7766. },
  7767. "notification-url": "https://packagist.org/downloads/",
  7768. "license": [
  7769. "MIT"
  7770. ],
  7771. "authors": [
  7772. {
  7773. "name": "Igor Wiedler",
  7774. "email": "igor@wiedler.ch"
  7775. }
  7776. ],
  7777. "description": "Builder for stack middlewares based on HttpKernelInterface.",
  7778. "keywords": [
  7779. "stack"
  7780. ],
  7781. "support": {
  7782. "issues": "https://github.com/stackphp/builder/issues",
  7783. "source": "https://github.com/stackphp/builder/tree/master"
  7784. },
  7785. "abandoned": true,
  7786. "time": "2017-11-18T14:57:29+00:00"
  7787. },
  7788. {
  7789. "name": "symfony-cmf/routing",
  7790. "version": "1.4.1",
  7791. "source": {
  7792. "type": "git",
  7793. "url": "https://github.com/symfony-cmf/routing.git",
  7794. "reference": "fb1e7f85ff8c6866238b7e73a490a0a0243ae8ac"
  7795. },
  7796. "dist": {
  7797. "type": "zip",
  7798. "url": "https://api.github.com/repos/symfony-cmf/routing/zipball/fb1e7f85ff8c6866238b7e73a490a0a0243ae8ac",
  7799. "reference": "fb1e7f85ff8c6866238b7e73a490a0a0243ae8ac",
  7800. "shasum": ""
  7801. },
  7802. "require": {
  7803. "php": "^5.3.9|^7.0",
  7804. "psr/log": "1.*",
  7805. "symfony/http-kernel": "^2.2|3.*",
  7806. "symfony/routing": "^2.2|3.*"
  7807. },
  7808. "require-dev": {
  7809. "friendsofsymfony/jsrouting-bundle": "^1.1",
  7810. "symfony-cmf/testing": "^1.3",
  7811. "symfony/config": "^2.2|3.*",
  7812. "symfony/dependency-injection": "^2.0.5|3.*",
  7813. "symfony/event-dispatcher": "^2.1|3.*"
  7814. },
  7815. "suggest": {
  7816. "symfony/event-dispatcher": "DynamicRouter can optionally trigger an event at the start of matching. Minimal version (~2.1)"
  7817. },
  7818. "type": "library",
  7819. "extra": {
  7820. "branch-alias": {
  7821. "dev-master": "1.4-dev"
  7822. }
  7823. },
  7824. "autoload": {
  7825. "psr-4": {
  7826. "Symfony\\Cmf\\Component\\Routing\\": ""
  7827. }
  7828. },
  7829. "notification-url": "https://packagist.org/downloads/",
  7830. "license": [
  7831. "MIT"
  7832. ],
  7833. "authors": [
  7834. {
  7835. "name": "Symfony CMF Community",
  7836. "homepage": "https://github.com/symfony-cmf/Routing/contributors"
  7837. }
  7838. ],
  7839. "description": "Extends the Symfony2 routing component for dynamic routes and chaining several routers",
  7840. "homepage": "http://cmf.symfony.com",
  7841. "keywords": [
  7842. "database",
  7843. "routing"
  7844. ],
  7845. "support": {
  7846. "issues": "https://github.com/symfony-cmf/routing/issues",
  7847. "source": "https://github.com/symfony-cmf/routing/tree/1.4"
  7848. },
  7849. "time": "2017-05-09T08:10:41+00:00"
  7850. },
  7851. {
  7852. "name": "symfony/class-loader",
  7853. "version": "v3.4.41",
  7854. "source": {
  7855. "type": "git",
  7856. "url": "https://github.com/symfony/class-loader.git",
  7857. "reference": "e4636a4f23f157278a19e5db160c63de0da297d8"
  7858. },
  7859. "dist": {
  7860. "type": "zip",
  7861. "url": "https://api.github.com/repos/symfony/class-loader/zipball/e4636a4f23f157278a19e5db160c63de0da297d8",
  7862. "reference": "e4636a4f23f157278a19e5db160c63de0da297d8",
  7863. "shasum": ""
  7864. },
  7865. "require": {
  7866. "php": "^5.5.9|>=7.0.8"
  7867. },
  7868. "require-dev": {
  7869. "symfony/finder": "~2.8|~3.0|~4.0",
  7870. "symfony/polyfill-apcu": "~1.1"
  7871. },
  7872. "suggest": {
  7873. "symfony/polyfill-apcu": "For using ApcClassLoader on HHVM"
  7874. },
  7875. "type": "library",
  7876. "extra": {
  7877. "branch-alias": {
  7878. "dev-master": "3.4-dev"
  7879. }
  7880. },
  7881. "autoload": {
  7882. "psr-4": {
  7883. "Symfony\\Component\\ClassLoader\\": ""
  7884. },
  7885. "exclude-from-classmap": [
  7886. "/Tests/"
  7887. ]
  7888. },
  7889. "notification-url": "https://packagist.org/downloads/",
  7890. "license": [
  7891. "MIT"
  7892. ],
  7893. "authors": [
  7894. {
  7895. "name": "Fabien Potencier",
  7896. "email": "fabien@symfony.com"
  7897. },
  7898. {
  7899. "name": "Symfony Community",
  7900. "homepage": "https://symfony.com/contributors"
  7901. }
  7902. ],
  7903. "description": "Symfony ClassLoader Component",
  7904. "homepage": "https://symfony.com",
  7905. "support": {
  7906. "source": "https://github.com/symfony/class-loader/tree/3.4"
  7907. },
  7908. "funding": [
  7909. {
  7910. "url": "https://symfony.com/sponsor",
  7911. "type": "custom"
  7912. },
  7913. {
  7914. "url": "https://github.com/fabpot",
  7915. "type": "github"
  7916. },
  7917. {
  7918. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7919. "type": "tidelift"
  7920. }
  7921. ],
  7922. "abandoned": true,
  7923. "time": "2020-03-15T09:38:08+00:00"
  7924. },
  7925. {
  7926. "name": "symfony/console",
  7927. "version": "v3.4.41",
  7928. "source": {
  7929. "type": "git",
  7930. "url": "https://github.com/symfony/console.git",
  7931. "reference": "bfe29ead7e7b1cc9ce74c6a40d06ad1f96fced13"
  7932. },
  7933. "dist": {
  7934. "type": "zip",
  7935. "url": "https://api.github.com/repos/symfony/console/zipball/bfe29ead7e7b1cc9ce74c6a40d06ad1f96fced13",
  7936. "reference": "bfe29ead7e7b1cc9ce74c6a40d06ad1f96fced13",
  7937. "shasum": ""
  7938. },
  7939. "require": {
  7940. "php": "^5.5.9|>=7.0.8",
  7941. "symfony/debug": "~2.8|~3.0|~4.0",
  7942. "symfony/polyfill-mbstring": "~1.0"
  7943. },
  7944. "conflict": {
  7945. "symfony/dependency-injection": "<3.4",
  7946. "symfony/process": "<3.3"
  7947. },
  7948. "provide": {
  7949. "psr/log-implementation": "1.0"
  7950. },
  7951. "require-dev": {
  7952. "psr/log": "~1.0",
  7953. "symfony/config": "~3.3|~4.0",
  7954. "symfony/dependency-injection": "~3.4|~4.0",
  7955. "symfony/event-dispatcher": "~2.8|~3.0|~4.0",
  7956. "symfony/lock": "~3.4|~4.0",
  7957. "symfony/process": "~3.3|~4.0"
  7958. },
  7959. "suggest": {
  7960. "psr/log": "For using the console logger",
  7961. "symfony/event-dispatcher": "",
  7962. "symfony/lock": "",
  7963. "symfony/process": ""
  7964. },
  7965. "type": "library",
  7966. "extra": {
  7967. "branch-alias": {
  7968. "dev-master": "3.4-dev"
  7969. }
  7970. },
  7971. "autoload": {
  7972. "psr-4": {
  7973. "Symfony\\Component\\Console\\": ""
  7974. },
  7975. "exclude-from-classmap": [
  7976. "/Tests/"
  7977. ]
  7978. },
  7979. "notification-url": "https://packagist.org/downloads/",
  7980. "license": [
  7981. "MIT"
  7982. ],
  7983. "authors": [
  7984. {
  7985. "name": "Fabien Potencier",
  7986. "email": "fabien@symfony.com"
  7987. },
  7988. {
  7989. "name": "Symfony Community",
  7990. "homepage": "https://symfony.com/contributors"
  7991. }
  7992. ],
  7993. "description": "Symfony Console Component",
  7994. "homepage": "https://symfony.com",
  7995. "support": {
  7996. "source": "https://github.com/symfony/console/tree/v3.4.41"
  7997. },
  7998. "funding": [
  7999. {
  8000. "url": "https://symfony.com/sponsor",
  8001. "type": "custom"
  8002. },
  8003. {
  8004. "url": "https://github.com/fabpot",
  8005. "type": "github"
  8006. },
  8007. {
  8008. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8009. "type": "tidelift"
  8010. }
  8011. ],
  8012. "time": "2020-05-30T18:58:05+00:00"
  8013. },
  8014. {
  8015. "name": "symfony/debug",
  8016. "version": "v3.4.41",
  8017. "source": {
  8018. "type": "git",
  8019. "url": "https://github.com/symfony/debug.git",
  8020. "reference": "518c6a00d0872da30bd06aee3ea59a0a5cf54d6d"
  8021. },
  8022. "dist": {
  8023. "type": "zip",
  8024. "url": "https://api.github.com/repos/symfony/debug/zipball/518c6a00d0872da30bd06aee3ea59a0a5cf54d6d",
  8025. "reference": "518c6a00d0872da30bd06aee3ea59a0a5cf54d6d",
  8026. "shasum": ""
  8027. },
  8028. "require": {
  8029. "php": "^5.5.9|>=7.0.8",
  8030. "psr/log": "~1.0"
  8031. },
  8032. "conflict": {
  8033. "symfony/http-kernel": ">=2.3,<2.3.24|~2.4.0|>=2.5,<2.5.9|>=2.6,<2.6.2"
  8034. },
  8035. "require-dev": {
  8036. "symfony/http-kernel": "~2.8|~3.0|~4.0"
  8037. },
  8038. "type": "library",
  8039. "extra": {
  8040. "branch-alias": {
  8041. "dev-master": "3.4-dev"
  8042. }
  8043. },
  8044. "autoload": {
  8045. "psr-4": {
  8046. "Symfony\\Component\\Debug\\": ""
  8047. },
  8048. "exclude-from-classmap": [
  8049. "/Tests/"
  8050. ]
  8051. },
  8052. "notification-url": "https://packagist.org/downloads/",
  8053. "license": [
  8054. "MIT"
  8055. ],
  8056. "authors": [
  8057. {
  8058. "name": "Fabien Potencier",
  8059. "email": "fabien@symfony.com"
  8060. },
  8061. {
  8062. "name": "Symfony Community",
  8063. "homepage": "https://symfony.com/contributors"
  8064. }
  8065. ],
  8066. "description": "Symfony Debug Component",
  8067. "homepage": "https://symfony.com",
  8068. "support": {
  8069. "source": "https://github.com/symfony/debug/tree/3.4"
  8070. },
  8071. "funding": [
  8072. {
  8073. "url": "https://symfony.com/sponsor",
  8074. "type": "custom"
  8075. },
  8076. {
  8077. "url": "https://github.com/fabpot",
  8078. "type": "github"
  8079. },
  8080. {
  8081. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8082. "type": "tidelift"
  8083. }
  8084. ],
  8085. "abandoned": "symfony/error-handler",
  8086. "time": "2020-05-22T18:25:20+00:00"
  8087. },
  8088. {
  8089. "name": "symfony/dependency-injection",
  8090. "version": "v3.4.41",
  8091. "source": {
  8092. "type": "git",
  8093. "url": "https://github.com/symfony/dependency-injection.git",
  8094. "reference": "e39380b7104b0ec538a075ae919f00c7e5267bac"
  8095. },
  8096. "dist": {
  8097. "type": "zip",
  8098. "url": "https://api.github.com/repos/symfony/dependency-injection/zipball/e39380b7104b0ec538a075ae919f00c7e5267bac",
  8099. "reference": "e39380b7104b0ec538a075ae919f00c7e5267bac",
  8100. "shasum": ""
  8101. },
  8102. "require": {
  8103. "php": "^5.5.9|>=7.0.8",
  8104. "psr/container": "^1.0"
  8105. },
  8106. "conflict": {
  8107. "symfony/config": "<3.3.7",
  8108. "symfony/finder": "<3.3",
  8109. "symfony/proxy-manager-bridge": "<3.4",
  8110. "symfony/yaml": "<3.4"
  8111. },
  8112. "provide": {
  8113. "psr/container-implementation": "1.0"
  8114. },
  8115. "require-dev": {
  8116. "symfony/config": "~3.3|~4.0",
  8117. "symfony/expression-language": "~2.8|~3.0|~4.0",
  8118. "symfony/yaml": "~3.4|~4.0"
  8119. },
  8120. "suggest": {
  8121. "symfony/config": "",
  8122. "symfony/expression-language": "For using expressions in service container configuration",
  8123. "symfony/finder": "For using double-star glob patterns or when GLOB_BRACE portability is required",
  8124. "symfony/proxy-manager-bridge": "Generate service proxies to lazy load them",
  8125. "symfony/yaml": ""
  8126. },
  8127. "type": "library",
  8128. "extra": {
  8129. "branch-alias": {
  8130. "dev-master": "3.4-dev"
  8131. }
  8132. },
  8133. "autoload": {
  8134. "psr-4": {
  8135. "Symfony\\Component\\DependencyInjection\\": ""
  8136. },
  8137. "exclude-from-classmap": [
  8138. "/Tests/"
  8139. ]
  8140. },
  8141. "notification-url": "https://packagist.org/downloads/",
  8142. "license": [
  8143. "MIT"
  8144. ],
  8145. "authors": [
  8146. {
  8147. "name": "Fabien Potencier",
  8148. "email": "fabien@symfony.com"
  8149. },
  8150. {
  8151. "name": "Symfony Community",
  8152. "homepage": "https://symfony.com/contributors"
  8153. }
  8154. ],
  8155. "description": "Symfony DependencyInjection Component",
  8156. "homepage": "https://symfony.com",
  8157. "support": {
  8158. "source": "https://github.com/symfony/dependency-injection/tree/3.4"
  8159. },
  8160. "funding": [
  8161. {
  8162. "url": "https://symfony.com/sponsor",
  8163. "type": "custom"
  8164. },
  8165. {
  8166. "url": "https://github.com/fabpot",
  8167. "type": "github"
  8168. },
  8169. {
  8170. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8171. "type": "tidelift"
  8172. }
  8173. ],
  8174. "time": "2020-05-30T21:06:01+00:00"
  8175. },
  8176. {
  8177. "name": "symfony/event-dispatcher",
  8178. "version": "v3.4.41",
  8179. "source": {
  8180. "type": "git",
  8181. "url": "https://github.com/symfony/event-dispatcher.git",
  8182. "reference": "14d978f8e8555f2de719c00eb65376be7d2e9081"
  8183. },
  8184. "dist": {
  8185. "type": "zip",
  8186. "url": "https://api.github.com/repos/symfony/event-dispatcher/zipball/14d978f8e8555f2de719c00eb65376be7d2e9081",
  8187. "reference": "14d978f8e8555f2de719c00eb65376be7d2e9081",
  8188. "shasum": ""
  8189. },
  8190. "require": {
  8191. "php": "^5.5.9|>=7.0.8"
  8192. },
  8193. "conflict": {
  8194. "symfony/dependency-injection": "<3.3"
  8195. },
  8196. "require-dev": {
  8197. "psr/log": "~1.0",
  8198. "symfony/config": "~2.8|~3.0|~4.0",
  8199. "symfony/dependency-injection": "~3.3|~4.0",
  8200. "symfony/expression-language": "~2.8|~3.0|~4.0",
  8201. "symfony/stopwatch": "~2.8|~3.0|~4.0"
  8202. },
  8203. "suggest": {
  8204. "symfony/dependency-injection": "",
  8205. "symfony/http-kernel": ""
  8206. },
  8207. "type": "library",
  8208. "extra": {
  8209. "branch-alias": {
  8210. "dev-master": "3.4-dev"
  8211. }
  8212. },
  8213. "autoload": {
  8214. "psr-4": {
  8215. "Symfony\\Component\\EventDispatcher\\": ""
  8216. },
  8217. "exclude-from-classmap": [
  8218. "/Tests/"
  8219. ]
  8220. },
  8221. "notification-url": "https://packagist.org/downloads/",
  8222. "license": [
  8223. "MIT"
  8224. ],
  8225. "authors": [
  8226. {
  8227. "name": "Fabien Potencier",
  8228. "email": "fabien@symfony.com"
  8229. },
  8230. {
  8231. "name": "Symfony Community",
  8232. "homepage": "https://symfony.com/contributors"
  8233. }
  8234. ],
  8235. "description": "Symfony EventDispatcher Component",
  8236. "homepage": "https://symfony.com",
  8237. "support": {
  8238. "source": "https://github.com/symfony/event-dispatcher/tree/3.4"
  8239. },
  8240. "funding": [
  8241. {
  8242. "url": "https://symfony.com/sponsor",
  8243. "type": "custom"
  8244. },
  8245. {
  8246. "url": "https://github.com/fabpot",
  8247. "type": "github"
  8248. },
  8249. {
  8250. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8251. "type": "tidelift"
  8252. }
  8253. ],
  8254. "time": "2020-05-05T15:06:23+00:00"
  8255. },
  8256. {
  8257. "name": "symfony/filesystem",
  8258. "version": "v4.4.42",
  8259. "source": {
  8260. "type": "git",
  8261. "url": "https://github.com/symfony/filesystem.git",
  8262. "reference": "815412ee8971209bd4c1eecd5f4f481eacd44bf5"
  8263. },
  8264. "dist": {
  8265. "type": "zip",
  8266. "url": "https://api.github.com/repos/symfony/filesystem/zipball/815412ee8971209bd4c1eecd5f4f481eacd44bf5",
  8267. "reference": "815412ee8971209bd4c1eecd5f4f481eacd44bf5",
  8268. "shasum": ""
  8269. },
  8270. "require": {
  8271. "php": ">=7.1.3",
  8272. "symfony/polyfill-ctype": "~1.8",
  8273. "symfony/polyfill-php80": "^1.16"
  8274. },
  8275. "type": "library",
  8276. "autoload": {
  8277. "psr-4": {
  8278. "Symfony\\Component\\Filesystem\\": ""
  8279. },
  8280. "exclude-from-classmap": [
  8281. "/Tests/"
  8282. ]
  8283. },
  8284. "notification-url": "https://packagist.org/downloads/",
  8285. "license": [
  8286. "MIT"
  8287. ],
  8288. "authors": [
  8289. {
  8290. "name": "Fabien Potencier",
  8291. "email": "fabien@symfony.com"
  8292. },
  8293. {
  8294. "name": "Symfony Community",
  8295. "homepage": "https://symfony.com/contributors"
  8296. }
  8297. ],
  8298. "description": "Provides basic utilities for the filesystem",
  8299. "homepage": "https://symfony.com",
  8300. "support": {
  8301. "source": "https://github.com/symfony/filesystem/tree/v4.4.42"
  8302. },
  8303. "funding": [
  8304. {
  8305. "url": "https://symfony.com/sponsor",
  8306. "type": "custom"
  8307. },
  8308. {
  8309. "url": "https://github.com/fabpot",
  8310. "type": "github"
  8311. },
  8312. {
  8313. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8314. "type": "tidelift"
  8315. }
  8316. ],
  8317. "time": "2022-05-20T08:49:14+00:00"
  8318. },
  8319. {
  8320. "name": "symfony/finder",
  8321. "version": "v4.4.44",
  8322. "source": {
  8323. "type": "git",
  8324. "url": "https://github.com/symfony/finder.git",
  8325. "reference": "66bd787edb5e42ff59d3523f623895af05043e4f"
  8326. },
  8327. "dist": {
  8328. "type": "zip",
  8329. "url": "https://api.github.com/repos/symfony/finder/zipball/66bd787edb5e42ff59d3523f623895af05043e4f",
  8330. "reference": "66bd787edb5e42ff59d3523f623895af05043e4f",
  8331. "shasum": ""
  8332. },
  8333. "require": {
  8334. "php": ">=7.1.3",
  8335. "symfony/polyfill-php80": "^1.16"
  8336. },
  8337. "type": "library",
  8338. "autoload": {
  8339. "psr-4": {
  8340. "Symfony\\Component\\Finder\\": ""
  8341. },
  8342. "exclude-from-classmap": [
  8343. "/Tests/"
  8344. ]
  8345. },
  8346. "notification-url": "https://packagist.org/downloads/",
  8347. "license": [
  8348. "MIT"
  8349. ],
  8350. "authors": [
  8351. {
  8352. "name": "Fabien Potencier",
  8353. "email": "fabien@symfony.com"
  8354. },
  8355. {
  8356. "name": "Symfony Community",
  8357. "homepage": "https://symfony.com/contributors"
  8358. }
  8359. ],
  8360. "description": "Finds files and directories via an intuitive fluent interface",
  8361. "homepage": "https://symfony.com",
  8362. "support": {
  8363. "source": "https://github.com/symfony/finder/tree/v4.4.44"
  8364. },
  8365. "funding": [
  8366. {
  8367. "url": "https://symfony.com/sponsor",
  8368. "type": "custom"
  8369. },
  8370. {
  8371. "url": "https://github.com/fabpot",
  8372. "type": "github"
  8373. },
  8374. {
  8375. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8376. "type": "tidelift"
  8377. }
  8378. ],
  8379. "time": "2022-07-29T07:35:46+00:00"
  8380. },
  8381. {
  8382. "name": "symfony/http-foundation",
  8383. "version": "v3.4.41",
  8384. "source": {
  8385. "type": "git",
  8386. "url": "https://github.com/symfony/http-foundation.git",
  8387. "reference": "fbd216d2304b1a3fe38d6392b04729c8dd356359"
  8388. },
  8389. "dist": {
  8390. "type": "zip",
  8391. "url": "https://api.github.com/repos/symfony/http-foundation/zipball/fbd216d2304b1a3fe38d6392b04729c8dd356359",
  8392. "reference": "fbd216d2304b1a3fe38d6392b04729c8dd356359",
  8393. "shasum": ""
  8394. },
  8395. "require": {
  8396. "php": "^5.5.9|>=7.0.8",
  8397. "symfony/polyfill-mbstring": "~1.1",
  8398. "symfony/polyfill-php70": "~1.6"
  8399. },
  8400. "require-dev": {
  8401. "symfony/expression-language": "~2.8|~3.0|~4.0"
  8402. },
  8403. "type": "library",
  8404. "extra": {
  8405. "branch-alias": {
  8406. "dev-master": "3.4-dev"
  8407. }
  8408. },
  8409. "autoload": {
  8410. "psr-4": {
  8411. "Symfony\\Component\\HttpFoundation\\": ""
  8412. },
  8413. "exclude-from-classmap": [
  8414. "/Tests/"
  8415. ]
  8416. },
  8417. "notification-url": "https://packagist.org/downloads/",
  8418. "license": [
  8419. "MIT"
  8420. ],
  8421. "authors": [
  8422. {
  8423. "name": "Fabien Potencier",
  8424. "email": "fabien@symfony.com"
  8425. },
  8426. {
  8427. "name": "Symfony Community",
  8428. "homepage": "https://symfony.com/contributors"
  8429. }
  8430. ],
  8431. "description": "Symfony HttpFoundation Component",
  8432. "homepage": "https://symfony.com",
  8433. "support": {
  8434. "source": "https://github.com/symfony/http-foundation/tree/3.4"
  8435. },
  8436. "funding": [
  8437. {
  8438. "url": "https://symfony.com/sponsor",
  8439. "type": "custom"
  8440. },
  8441. {
  8442. "url": "https://github.com/fabpot",
  8443. "type": "github"
  8444. },
  8445. {
  8446. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8447. "type": "tidelift"
  8448. }
  8449. ],
  8450. "time": "2020-05-16T13:15:54+00:00"
  8451. },
  8452. {
  8453. "name": "symfony/http-kernel",
  8454. "version": "v3.4.44",
  8455. "source": {
  8456. "type": "git",
  8457. "url": "https://github.com/symfony/http-kernel.git",
  8458. "reference": "27dcaa8c6b18c75df9f37badeb4d3564ffaa1326"
  8459. },
  8460. "dist": {
  8461. "type": "zip",
  8462. "url": "https://api.github.com/repos/symfony/http-kernel/zipball/27dcaa8c6b18c75df9f37badeb4d3564ffaa1326",
  8463. "reference": "27dcaa8c6b18c75df9f37badeb4d3564ffaa1326",
  8464. "shasum": ""
  8465. },
  8466. "require": {
  8467. "php": "^5.5.9|>=7.0.8",
  8468. "psr/log": "~1.0",
  8469. "symfony/debug": "^3.3.3|~4.0",
  8470. "symfony/event-dispatcher": "~2.8|~3.0|~4.0",
  8471. "symfony/http-foundation": "~3.4.12|~4.0.12|^4.1.1",
  8472. "symfony/polyfill-ctype": "~1.8",
  8473. "symfony/polyfill-php56": "~1.8"
  8474. },
  8475. "conflict": {
  8476. "symfony/config": "<2.8",
  8477. "symfony/dependency-injection": "<3.4.10|<4.0.10,>=4",
  8478. "symfony/var-dumper": "<3.3",
  8479. "twig/twig": "<1.34|<2.4,>=2"
  8480. },
  8481. "provide": {
  8482. "psr/log-implementation": "1.0"
  8483. },
  8484. "require-dev": {
  8485. "psr/cache": "~1.0",
  8486. "symfony/browser-kit": "~2.8|~3.0|~4.0",
  8487. "symfony/class-loader": "~2.8|~3.0",
  8488. "symfony/config": "~2.8|~3.0|~4.0",
  8489. "symfony/console": "~2.8|~3.0|~4.0",
  8490. "symfony/css-selector": "~2.8|~3.0|~4.0",
  8491. "symfony/dependency-injection": "^3.4.10|^4.0.10",
  8492. "symfony/dom-crawler": "~2.8|~3.0|~4.0",
  8493. "symfony/expression-language": "~2.8|~3.0|~4.0",
  8494. "symfony/finder": "~2.8|~3.0|~4.0",
  8495. "symfony/process": "~2.8|~3.0|~4.0",
  8496. "symfony/routing": "~3.4|~4.0",
  8497. "symfony/stopwatch": "~2.8|~3.0|~4.0",
  8498. "symfony/templating": "~2.8|~3.0|~4.0",
  8499. "symfony/translation": "~2.8|~3.0|~4.0",
  8500. "symfony/var-dumper": "~3.3|~4.0"
  8501. },
  8502. "suggest": {
  8503. "symfony/browser-kit": "",
  8504. "symfony/config": "",
  8505. "symfony/console": "",
  8506. "symfony/dependency-injection": "",
  8507. "symfony/finder": "",
  8508. "symfony/var-dumper": ""
  8509. },
  8510. "type": "library",
  8511. "extra": {
  8512. "branch-alias": {
  8513. "dev-master": "3.4-dev"
  8514. }
  8515. },
  8516. "autoload": {
  8517. "psr-4": {
  8518. "Symfony\\Component\\HttpKernel\\": ""
  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": "Symfony HttpKernel Component",
  8539. "homepage": "https://symfony.com",
  8540. "support": {
  8541. "source": "https://github.com/symfony/http-kernel/tree/v3.4.44"
  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": "2020-08-31T05:53:42+00:00"
  8558. },
  8559. {
  8560. "name": "symfony/polyfill-ctype",
  8561. "version": "v1.17.0",
  8562. "source": {
  8563. "type": "git",
  8564. "url": "https://github.com/symfony/polyfill-ctype.git",
  8565. "reference": "e94c8b1bbe2bc77507a1056cdb06451c75b427f9"
  8566. },
  8567. "dist": {
  8568. "type": "zip",
  8569. "url": "https://api.github.com/repos/symfony/polyfill-ctype/zipball/e94c8b1bbe2bc77507a1056cdb06451c75b427f9",
  8570. "reference": "e94c8b1bbe2bc77507a1056cdb06451c75b427f9",
  8571. "shasum": ""
  8572. },
  8573. "require": {
  8574. "php": ">=5.3.3"
  8575. },
  8576. "suggest": {
  8577. "ext-ctype": "For best performance"
  8578. },
  8579. "type": "library",
  8580. "extra": {
  8581. "branch-alias": {
  8582. "dev-master": "1.17-dev"
  8583. }
  8584. },
  8585. "autoload": {
  8586. "files": [
  8587. "bootstrap.php"
  8588. ],
  8589. "psr-4": {
  8590. "Symfony\\Polyfill\\Ctype\\": ""
  8591. }
  8592. },
  8593. "notification-url": "https://packagist.org/downloads/",
  8594. "license": [
  8595. "MIT"
  8596. ],
  8597. "authors": [
  8598. {
  8599. "name": "Gert de Pagter",
  8600. "email": "BackEndTea@gmail.com"
  8601. },
  8602. {
  8603. "name": "Symfony Community",
  8604. "homepage": "https://symfony.com/contributors"
  8605. }
  8606. ],
  8607. "description": "Symfony polyfill for ctype functions",
  8608. "homepage": "https://symfony.com",
  8609. "keywords": [
  8610. "compatibility",
  8611. "ctype",
  8612. "polyfill",
  8613. "portable"
  8614. ],
  8615. "support": {
  8616. "source": "https://github.com/symfony/polyfill-ctype/tree/v1.17.0"
  8617. },
  8618. "funding": [
  8619. {
  8620. "url": "https://symfony.com/sponsor",
  8621. "type": "custom"
  8622. },
  8623. {
  8624. "url": "https://github.com/fabpot",
  8625. "type": "github"
  8626. },
  8627. {
  8628. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8629. "type": "tidelift"
  8630. }
  8631. ],
  8632. "time": "2020-05-12T16:14:59+00:00"
  8633. },
  8634. {
  8635. "name": "symfony/polyfill-iconv",
  8636. "version": "v1.17.0",
  8637. "source": {
  8638. "type": "git",
  8639. "url": "https://github.com/symfony/polyfill-iconv.git",
  8640. "reference": "c4de7601eefbf25f9d47190abe07f79fe0a27424"
  8641. },
  8642. "dist": {
  8643. "type": "zip",
  8644. "url": "https://api.github.com/repos/symfony/polyfill-iconv/zipball/c4de7601eefbf25f9d47190abe07f79fe0a27424",
  8645. "reference": "c4de7601eefbf25f9d47190abe07f79fe0a27424",
  8646. "shasum": ""
  8647. },
  8648. "require": {
  8649. "php": ">=5.3.3"
  8650. },
  8651. "suggest": {
  8652. "ext-iconv": "For best performance"
  8653. },
  8654. "type": "library",
  8655. "extra": {
  8656. "branch-alias": {
  8657. "dev-master": "1.17-dev"
  8658. }
  8659. },
  8660. "autoload": {
  8661. "files": [
  8662. "bootstrap.php"
  8663. ],
  8664. "psr-4": {
  8665. "Symfony\\Polyfill\\Iconv\\": ""
  8666. }
  8667. },
  8668. "notification-url": "https://packagist.org/downloads/",
  8669. "license": [
  8670. "MIT"
  8671. ],
  8672. "authors": [
  8673. {
  8674. "name": "Nicolas Grekas",
  8675. "email": "p@tchwork.com"
  8676. },
  8677. {
  8678. "name": "Symfony Community",
  8679. "homepage": "https://symfony.com/contributors"
  8680. }
  8681. ],
  8682. "description": "Symfony polyfill for the Iconv extension",
  8683. "homepage": "https://symfony.com",
  8684. "keywords": [
  8685. "compatibility",
  8686. "iconv",
  8687. "polyfill",
  8688. "portable",
  8689. "shim"
  8690. ],
  8691. "support": {
  8692. "source": "https://github.com/symfony/polyfill-iconv/tree/v1.17.0"
  8693. },
  8694. "funding": [
  8695. {
  8696. "url": "https://symfony.com/sponsor",
  8697. "type": "custom"
  8698. },
  8699. {
  8700. "url": "https://github.com/fabpot",
  8701. "type": "github"
  8702. },
  8703. {
  8704. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8705. "type": "tidelift"
  8706. }
  8707. ],
  8708. "time": "2020-05-12T16:47:27+00:00"
  8709. },
  8710. {
  8711. "name": "symfony/polyfill-intl-idn",
  8712. "version": "v1.17.0",
  8713. "source": {
  8714. "type": "git",
  8715. "url": "https://github.com/symfony/polyfill-intl-idn.git",
  8716. "reference": "3bff59ea7047e925be6b7f2059d60af31bb46d6a"
  8717. },
  8718. "dist": {
  8719. "type": "zip",
  8720. "url": "https://api.github.com/repos/symfony/polyfill-intl-idn/zipball/3bff59ea7047e925be6b7f2059d60af31bb46d6a",
  8721. "reference": "3bff59ea7047e925be6b7f2059d60af31bb46d6a",
  8722. "shasum": ""
  8723. },
  8724. "require": {
  8725. "php": ">=5.3.3",
  8726. "symfony/polyfill-mbstring": "^1.3",
  8727. "symfony/polyfill-php72": "^1.10"
  8728. },
  8729. "suggest": {
  8730. "ext-intl": "For best performance"
  8731. },
  8732. "type": "library",
  8733. "extra": {
  8734. "branch-alias": {
  8735. "dev-master": "1.17-dev"
  8736. }
  8737. },
  8738. "autoload": {
  8739. "files": [
  8740. "bootstrap.php"
  8741. ],
  8742. "psr-4": {
  8743. "Symfony\\Polyfill\\Intl\\Idn\\": ""
  8744. }
  8745. },
  8746. "notification-url": "https://packagist.org/downloads/",
  8747. "license": [
  8748. "MIT"
  8749. ],
  8750. "authors": [
  8751. {
  8752. "name": "Laurent Bassin",
  8753. "email": "laurent@bassin.info"
  8754. },
  8755. {
  8756. "name": "Symfony Community",
  8757. "homepage": "https://symfony.com/contributors"
  8758. }
  8759. ],
  8760. "description": "Symfony polyfill for intl's idn_to_ascii and idn_to_utf8 functions",
  8761. "homepage": "https://symfony.com",
  8762. "keywords": [
  8763. "compatibility",
  8764. "idn",
  8765. "intl",
  8766. "polyfill",
  8767. "portable",
  8768. "shim"
  8769. ],
  8770. "support": {
  8771. "source": "https://github.com/symfony/polyfill-intl-idn/tree/master"
  8772. },
  8773. "funding": [
  8774. {
  8775. "url": "https://symfony.com/sponsor",
  8776. "type": "custom"
  8777. },
  8778. {
  8779. "url": "https://github.com/fabpot",
  8780. "type": "github"
  8781. },
  8782. {
  8783. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8784. "type": "tidelift"
  8785. }
  8786. ],
  8787. "time": "2020-05-12T16:47:27+00:00"
  8788. },
  8789. {
  8790. "name": "symfony/polyfill-mbstring",
  8791. "version": "v1.17.0",
  8792. "source": {
  8793. "type": "git",
  8794. "url": "https://github.com/symfony/polyfill-mbstring.git",
  8795. "reference": "fa79b11539418b02fc5e1897267673ba2c19419c"
  8796. },
  8797. "dist": {
  8798. "type": "zip",
  8799. "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/fa79b11539418b02fc5e1897267673ba2c19419c",
  8800. "reference": "fa79b11539418b02fc5e1897267673ba2c19419c",
  8801. "shasum": ""
  8802. },
  8803. "require": {
  8804. "php": ">=5.3.3"
  8805. },
  8806. "suggest": {
  8807. "ext-mbstring": "For best performance"
  8808. },
  8809. "type": "library",
  8810. "extra": {
  8811. "branch-alias": {
  8812. "dev-master": "1.17-dev"
  8813. }
  8814. },
  8815. "autoload": {
  8816. "files": [
  8817. "bootstrap.php"
  8818. ],
  8819. "psr-4": {
  8820. "Symfony\\Polyfill\\Mbstring\\": ""
  8821. }
  8822. },
  8823. "notification-url": "https://packagist.org/downloads/",
  8824. "license": [
  8825. "MIT"
  8826. ],
  8827. "authors": [
  8828. {
  8829. "name": "Nicolas Grekas",
  8830. "email": "p@tchwork.com"
  8831. },
  8832. {
  8833. "name": "Symfony Community",
  8834. "homepage": "https://symfony.com/contributors"
  8835. }
  8836. ],
  8837. "description": "Symfony polyfill for the Mbstring extension",
  8838. "homepage": "https://symfony.com",
  8839. "keywords": [
  8840. "compatibility",
  8841. "mbstring",
  8842. "polyfill",
  8843. "portable",
  8844. "shim"
  8845. ],
  8846. "support": {
  8847. "source": "https://github.com/symfony/polyfill-mbstring/tree/v1.17.0"
  8848. },
  8849. "funding": [
  8850. {
  8851. "url": "https://symfony.com/sponsor",
  8852. "type": "custom"
  8853. },
  8854. {
  8855. "url": "https://github.com/fabpot",
  8856. "type": "github"
  8857. },
  8858. {
  8859. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8860. "type": "tidelift"
  8861. }
  8862. ],
  8863. "time": "2020-05-12T16:47:27+00:00"
  8864. },
  8865. {
  8866. "name": "symfony/polyfill-php56",
  8867. "version": "v1.17.0",
  8868. "source": {
  8869. "type": "git",
  8870. "url": "https://github.com/symfony/polyfill-php56.git",
  8871. "reference": "e3c8c138280cdfe4b81488441555583aa1984e23"
  8872. },
  8873. "dist": {
  8874. "type": "zip",
  8875. "url": "https://api.github.com/repos/symfony/polyfill-php56/zipball/e3c8c138280cdfe4b81488441555583aa1984e23",
  8876. "reference": "e3c8c138280cdfe4b81488441555583aa1984e23",
  8877. "shasum": ""
  8878. },
  8879. "require": {
  8880. "php": ">=5.3.3",
  8881. "symfony/polyfill-util": "~1.0"
  8882. },
  8883. "type": "library",
  8884. "extra": {
  8885. "branch-alias": {
  8886. "dev-master": "1.17-dev"
  8887. }
  8888. },
  8889. "autoload": {
  8890. "files": [
  8891. "bootstrap.php"
  8892. ],
  8893. "psr-4": {
  8894. "Symfony\\Polyfill\\Php56\\": ""
  8895. }
  8896. },
  8897. "notification-url": "https://packagist.org/downloads/",
  8898. "license": [
  8899. "MIT"
  8900. ],
  8901. "authors": [
  8902. {
  8903. "name": "Nicolas Grekas",
  8904. "email": "p@tchwork.com"
  8905. },
  8906. {
  8907. "name": "Symfony Community",
  8908. "homepage": "https://symfony.com/contributors"
  8909. }
  8910. ],
  8911. "description": "Symfony polyfill backporting some PHP 5.6+ features to lower PHP versions",
  8912. "homepage": "https://symfony.com",
  8913. "keywords": [
  8914. "compatibility",
  8915. "polyfill",
  8916. "portable",
  8917. "shim"
  8918. ],
  8919. "support": {
  8920. "source": "https://github.com/symfony/polyfill-php56/tree/v1.17.0"
  8921. },
  8922. "funding": [
  8923. {
  8924. "url": "https://symfony.com/sponsor",
  8925. "type": "custom"
  8926. },
  8927. {
  8928. "url": "https://github.com/fabpot",
  8929. "type": "github"
  8930. },
  8931. {
  8932. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8933. "type": "tidelift"
  8934. }
  8935. ],
  8936. "time": "2020-05-12T16:47:27+00:00"
  8937. },
  8938. {
  8939. "name": "symfony/polyfill-php70",
  8940. "version": "v1.17.0",
  8941. "source": {
  8942. "type": "git",
  8943. "url": "https://github.com/symfony/polyfill-php70.git",
  8944. "reference": "82225c2d7d23d7e70515496d249c0152679b468e"
  8945. },
  8946. "dist": {
  8947. "type": "zip",
  8948. "url": "https://api.github.com/repos/symfony/polyfill-php70/zipball/82225c2d7d23d7e70515496d249c0152679b468e",
  8949. "reference": "82225c2d7d23d7e70515496d249c0152679b468e",
  8950. "shasum": ""
  8951. },
  8952. "require": {
  8953. "paragonie/random_compat": "~1.0|~2.0|~9.99",
  8954. "php": ">=5.3.3"
  8955. },
  8956. "type": "library",
  8957. "extra": {
  8958. "branch-alias": {
  8959. "dev-master": "1.17-dev"
  8960. }
  8961. },
  8962. "autoload": {
  8963. "files": [
  8964. "bootstrap.php"
  8965. ],
  8966. "psr-4": {
  8967. "Symfony\\Polyfill\\Php70\\": ""
  8968. },
  8969. "classmap": [
  8970. "Resources/stubs"
  8971. ]
  8972. },
  8973. "notification-url": "https://packagist.org/downloads/",
  8974. "license": [
  8975. "MIT"
  8976. ],
  8977. "authors": [
  8978. {
  8979. "name": "Nicolas Grekas",
  8980. "email": "p@tchwork.com"
  8981. },
  8982. {
  8983. "name": "Symfony Community",
  8984. "homepage": "https://symfony.com/contributors"
  8985. }
  8986. ],
  8987. "description": "Symfony polyfill backporting some PHP 7.0+ features to lower PHP versions",
  8988. "homepage": "https://symfony.com",
  8989. "keywords": [
  8990. "compatibility",
  8991. "polyfill",
  8992. "portable",
  8993. "shim"
  8994. ],
  8995. "support": {
  8996. "source": "https://github.com/symfony/polyfill-php70/tree/master"
  8997. },
  8998. "funding": [
  8999. {
  9000. "url": "https://symfony.com/sponsor",
  9001. "type": "custom"
  9002. },
  9003. {
  9004. "url": "https://github.com/fabpot",
  9005. "type": "github"
  9006. },
  9007. {
  9008. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  9009. "type": "tidelift"
  9010. }
  9011. ],
  9012. "time": "2020-05-12T16:47:27+00:00"
  9013. },
  9014. {
  9015. "name": "symfony/polyfill-php72",
  9016. "version": "v1.17.0",
  9017. "source": {
  9018. "type": "git",
  9019. "url": "https://github.com/symfony/polyfill-php72.git",
  9020. "reference": "f048e612a3905f34931127360bdd2def19a5e582"
  9021. },
  9022. "dist": {
  9023. "type": "zip",
  9024. "url": "https://api.github.com/repos/symfony/polyfill-php72/zipball/f048e612a3905f34931127360bdd2def19a5e582",
  9025. "reference": "f048e612a3905f34931127360bdd2def19a5e582",
  9026. "shasum": ""
  9027. },
  9028. "require": {
  9029. "php": ">=5.3.3"
  9030. },
  9031. "type": "library",
  9032. "extra": {
  9033. "branch-alias": {
  9034. "dev-master": "1.17-dev"
  9035. }
  9036. },
  9037. "autoload": {
  9038. "files": [
  9039. "bootstrap.php"
  9040. ],
  9041. "psr-4": {
  9042. "Symfony\\Polyfill\\Php72\\": ""
  9043. }
  9044. },
  9045. "notification-url": "https://packagist.org/downloads/",
  9046. "license": [
  9047. "MIT"
  9048. ],
  9049. "authors": [
  9050. {
  9051. "name": "Nicolas Grekas",
  9052. "email": "p@tchwork.com"
  9053. },
  9054. {
  9055. "name": "Symfony Community",
  9056. "homepage": "https://symfony.com/contributors"
  9057. }
  9058. ],
  9059. "description": "Symfony polyfill backporting some PHP 7.2+ features to lower PHP versions",
  9060. "homepage": "https://symfony.com",
  9061. "keywords": [
  9062. "compatibility",
  9063. "polyfill",
  9064. "portable",
  9065. "shim"
  9066. ],
  9067. "support": {
  9068. "source": "https://github.com/symfony/polyfill-php72/tree/master"
  9069. },
  9070. "funding": [
  9071. {
  9072. "url": "https://symfony.com/sponsor",
  9073. "type": "custom"
  9074. },
  9075. {
  9076. "url": "https://github.com/fabpot",
  9077. "type": "github"
  9078. },
  9079. {
  9080. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  9081. "type": "tidelift"
  9082. }
  9083. ],
  9084. "time": "2020-05-12T16:47:27+00:00"
  9085. },
  9086. {
  9087. "name": "symfony/polyfill-php80",
  9088. "version": "v1.31.0",
  9089. "source": {
  9090. "type": "git",
  9091. "url": "https://github.com/symfony/polyfill-php80.git",
  9092. "reference": "60328e362d4c2c802a54fcbf04f9d3fb892b4cf8"
  9093. },
  9094. "dist": {
  9095. "type": "zip",
  9096. "url": "https://api.github.com/repos/symfony/polyfill-php80/zipball/60328e362d4c2c802a54fcbf04f9d3fb892b4cf8",
  9097. "reference": "60328e362d4c2c802a54fcbf04f9d3fb892b4cf8",
  9098. "shasum": ""
  9099. },
  9100. "require": {
  9101. "php": ">=7.2"
  9102. },
  9103. "type": "library",
  9104. "extra": {
  9105. "thanks": {
  9106. "name": "symfony/polyfill",
  9107. "url": "https://github.com/symfony/polyfill"
  9108. }
  9109. },
  9110. "autoload": {
  9111. "files": [
  9112. "bootstrap.php"
  9113. ],
  9114. "psr-4": {
  9115. "Symfony\\Polyfill\\Php80\\": ""
  9116. },
  9117. "classmap": [
  9118. "Resources/stubs"
  9119. ]
  9120. },
  9121. "notification-url": "https://packagist.org/downloads/",
  9122. "license": [
  9123. "MIT"
  9124. ],
  9125. "authors": [
  9126. {
  9127. "name": "Ion Bazan",
  9128. "email": "ion.bazan@gmail.com"
  9129. },
  9130. {
  9131. "name": "Nicolas Grekas",
  9132. "email": "p@tchwork.com"
  9133. },
  9134. {
  9135. "name": "Symfony Community",
  9136. "homepage": "https://symfony.com/contributors"
  9137. }
  9138. ],
  9139. "description": "Symfony polyfill backporting some PHP 8.0+ features to lower PHP versions",
  9140. "homepage": "https://symfony.com",
  9141. "keywords": [
  9142. "compatibility",
  9143. "polyfill",
  9144. "portable",
  9145. "shim"
  9146. ],
  9147. "support": {
  9148. "source": "https://github.com/symfony/polyfill-php80/tree/v1.31.0"
  9149. },
  9150. "funding": [
  9151. {
  9152. "url": "https://symfony.com/sponsor",
  9153. "type": "custom"
  9154. },
  9155. {
  9156. "url": "https://github.com/fabpot",
  9157. "type": "github"
  9158. },
  9159. {
  9160. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  9161. "type": "tidelift"
  9162. }
  9163. ],
  9164. "time": "2024-09-09T11:45:10+00:00"
  9165. },
  9166. {
  9167. "name": "symfony/polyfill-util",
  9168. "version": "v1.17.0",
  9169. "source": {
  9170. "type": "git",
  9171. "url": "https://github.com/symfony/polyfill-util.git",
  9172. "reference": "4afb4110fc037752cf0ce9869f9ab8162c4e20d7"
  9173. },
  9174. "dist": {
  9175. "type": "zip",
  9176. "url": "https://api.github.com/repos/symfony/polyfill-util/zipball/4afb4110fc037752cf0ce9869f9ab8162c4e20d7",
  9177. "reference": "4afb4110fc037752cf0ce9869f9ab8162c4e20d7",
  9178. "shasum": ""
  9179. },
  9180. "require": {
  9181. "php": ">=5.3.3"
  9182. },
  9183. "type": "library",
  9184. "extra": {
  9185. "branch-alias": {
  9186. "dev-master": "1.17-dev"
  9187. }
  9188. },
  9189. "autoload": {
  9190. "psr-4": {
  9191. "Symfony\\Polyfill\\Util\\": ""
  9192. }
  9193. },
  9194. "notification-url": "https://packagist.org/downloads/",
  9195. "license": [
  9196. "MIT"
  9197. ],
  9198. "authors": [
  9199. {
  9200. "name": "Nicolas Grekas",
  9201. "email": "p@tchwork.com"
  9202. },
  9203. {
  9204. "name": "Symfony Community",
  9205. "homepage": "https://symfony.com/contributors"
  9206. }
  9207. ],
  9208. "description": "Symfony utilities for portability of PHP codes",
  9209. "homepage": "https://symfony.com",
  9210. "keywords": [
  9211. "compat",
  9212. "compatibility",
  9213. "polyfill",
  9214. "shim"
  9215. ],
  9216. "support": {
  9217. "source": "https://github.com/symfony/polyfill-util/tree/master"
  9218. },
  9219. "funding": [
  9220. {
  9221. "url": "https://symfony.com/sponsor",
  9222. "type": "custom"
  9223. },
  9224. {
  9225. "url": "https://github.com/fabpot",
  9226. "type": "github"
  9227. },
  9228. {
  9229. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  9230. "type": "tidelift"
  9231. }
  9232. ],
  9233. "time": "2020-05-12T16:14:59+00:00"
  9234. },
  9235. {
  9236. "name": "symfony/process",
  9237. "version": "v3.4.41",
  9238. "source": {
  9239. "type": "git",
  9240. "url": "https://github.com/symfony/process.git",
  9241. "reference": "8a895f0c92a7c4b10db95139bcff71bdf66d4d21"
  9242. },
  9243. "dist": {
  9244. "type": "zip",
  9245. "url": "https://api.github.com/repos/symfony/process/zipball/8a895f0c92a7c4b10db95139bcff71bdf66d4d21",
  9246. "reference": "8a895f0c92a7c4b10db95139bcff71bdf66d4d21",
  9247. "shasum": ""
  9248. },
  9249. "require": {
  9250. "php": "^5.5.9|>=7.0.8"
  9251. },
  9252. "type": "library",
  9253. "extra": {
  9254. "branch-alias": {
  9255. "dev-master": "3.4-dev"
  9256. }
  9257. },
  9258. "autoload": {
  9259. "psr-4": {
  9260. "Symfony\\Component\\Process\\": ""
  9261. },
  9262. "exclude-from-classmap": [
  9263. "/Tests/"
  9264. ]
  9265. },
  9266. "notification-url": "https://packagist.org/downloads/",
  9267. "license": [
  9268. "MIT"
  9269. ],
  9270. "authors": [
  9271. {
  9272. "name": "Fabien Potencier",
  9273. "email": "fabien@symfony.com"
  9274. },
  9275. {
  9276. "name": "Symfony Community",
  9277. "homepage": "https://symfony.com/contributors"
  9278. }
  9279. ],
  9280. "description": "Symfony Process Component",
  9281. "homepage": "https://symfony.com",
  9282. "support": {
  9283. "source": "https://github.com/symfony/process/tree/v3.4.41"
  9284. },
  9285. "funding": [
  9286. {
  9287. "url": "https://symfony.com/sponsor",
  9288. "type": "custom"
  9289. },
  9290. {
  9291. "url": "https://github.com/fabpot",
  9292. "type": "github"
  9293. },
  9294. {
  9295. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  9296. "type": "tidelift"
  9297. }
  9298. ],
  9299. "time": "2020-05-23T17:05:51+00:00"
  9300. },
  9301. {
  9302. "name": "symfony/psr-http-message-bridge",
  9303. "version": "v1.1.2",
  9304. "source": {
  9305. "type": "git",
  9306. "url": "https://github.com/symfony/psr-http-message-bridge.git",
  9307. "reference": "a33352af16f78a5ff4f9d90811536abf210df12b"
  9308. },
  9309. "dist": {
  9310. "type": "zip",
  9311. "url": "https://api.github.com/repos/symfony/psr-http-message-bridge/zipball/a33352af16f78a5ff4f9d90811536abf210df12b",
  9312. "reference": "a33352af16f78a5ff4f9d90811536abf210df12b",
  9313. "shasum": ""
  9314. },
  9315. "require": {
  9316. "php": "^5.3.3 || ^7.0",
  9317. "psr/http-message": "^1.0",
  9318. "symfony/http-foundation": "^2.3.42 || ^3.4 || ^4.0"
  9319. },
  9320. "require-dev": {
  9321. "symfony/phpunit-bridge": "^3.4 || ^4.0"
  9322. },
  9323. "suggest": {
  9324. "nyholm/psr7": "For a super lightweight PSR-7/17 implementation"
  9325. },
  9326. "type": "symfony-bridge",
  9327. "extra": {
  9328. "branch-alias": {
  9329. "dev-master": "1.1-dev"
  9330. }
  9331. },
  9332. "autoload": {
  9333. "psr-4": {
  9334. "Symfony\\Bridge\\PsrHttpMessage\\": ""
  9335. },
  9336. "exclude-from-classmap": [
  9337. "/Tests/"
  9338. ]
  9339. },
  9340. "notification-url": "https://packagist.org/downloads/",
  9341. "license": [
  9342. "MIT"
  9343. ],
  9344. "authors": [
  9345. {
  9346. "name": "Symfony Community",
  9347. "homepage": "http://symfony.com/contributors"
  9348. },
  9349. {
  9350. "name": "Fabien Potencier",
  9351. "email": "fabien@symfony.com"
  9352. }
  9353. ],
  9354. "description": "PSR HTTP message bridge",
  9355. "homepage": "http://symfony.com",
  9356. "keywords": [
  9357. "http",
  9358. "http-message",
  9359. "psr-17",
  9360. "psr-7"
  9361. ],
  9362. "support": {
  9363. "issues": "https://github.com/symfony/psr-http-message-bridge/issues",
  9364. "source": "https://github.com/symfony/psr-http-message-bridge/tree/v1.1.2"
  9365. },
  9366. "time": "2019-04-03T17:09:40+00:00"
  9367. },
  9368. {
  9369. "name": "symfony/routing",
  9370. "version": "v3.4.41",
  9371. "source": {
  9372. "type": "git",
  9373. "url": "https://github.com/symfony/routing.git",
  9374. "reference": "e0d43b6f9417ad59ecaa8e2f799b79eef417387f"
  9375. },
  9376. "dist": {
  9377. "type": "zip",
  9378. "url": "https://api.github.com/repos/symfony/routing/zipball/e0d43b6f9417ad59ecaa8e2f799b79eef417387f",
  9379. "reference": "e0d43b6f9417ad59ecaa8e2f799b79eef417387f",
  9380. "shasum": ""
  9381. },
  9382. "require": {
  9383. "php": "^5.5.9|>=7.0.8"
  9384. },
  9385. "conflict": {
  9386. "symfony/config": "<3.3.1",
  9387. "symfony/dependency-injection": "<3.3",
  9388. "symfony/yaml": "<3.4"
  9389. },
  9390. "require-dev": {
  9391. "doctrine/annotations": "~1.0",
  9392. "psr/log": "~1.0",
  9393. "symfony/config": "^3.3.1|~4.0",
  9394. "symfony/dependency-injection": "~3.3|~4.0",
  9395. "symfony/expression-language": "~2.8|~3.0|~4.0",
  9396. "symfony/http-foundation": "~2.8|~3.0|~4.0",
  9397. "symfony/yaml": "~3.4|~4.0"
  9398. },
  9399. "suggest": {
  9400. "doctrine/annotations": "For using the annotation loader",
  9401. "symfony/config": "For using the all-in-one router or any loader",
  9402. "symfony/expression-language": "For using expression matching",
  9403. "symfony/http-foundation": "For using a Symfony Request object",
  9404. "symfony/yaml": "For using the YAML loader"
  9405. },
  9406. "type": "library",
  9407. "extra": {
  9408. "branch-alias": {
  9409. "dev-master": "3.4-dev"
  9410. }
  9411. },
  9412. "autoload": {
  9413. "psr-4": {
  9414. "Symfony\\Component\\Routing\\": ""
  9415. },
  9416. "exclude-from-classmap": [
  9417. "/Tests/"
  9418. ]
  9419. },
  9420. "notification-url": "https://packagist.org/downloads/",
  9421. "license": [
  9422. "MIT"
  9423. ],
  9424. "authors": [
  9425. {
  9426. "name": "Fabien Potencier",
  9427. "email": "fabien@symfony.com"
  9428. },
  9429. {
  9430. "name": "Symfony Community",
  9431. "homepage": "https://symfony.com/contributors"
  9432. }
  9433. ],
  9434. "description": "Symfony Routing Component",
  9435. "homepage": "https://symfony.com",
  9436. "keywords": [
  9437. "router",
  9438. "routing",
  9439. "uri",
  9440. "url"
  9441. ],
  9442. "support": {
  9443. "source": "https://github.com/symfony/routing/tree/3.4"
  9444. },
  9445. "funding": [
  9446. {
  9447. "url": "https://symfony.com/sponsor",
  9448. "type": "custom"
  9449. },
  9450. {
  9451. "url": "https://github.com/fabpot",
  9452. "type": "github"
  9453. },
  9454. {
  9455. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  9456. "type": "tidelift"
  9457. }
  9458. ],
  9459. "time": "2020-05-30T19:50:06+00:00"
  9460. },
  9461. {
  9462. "name": "symfony/serializer",
  9463. "version": "v3.4.41",
  9464. "source": {
  9465. "type": "git",
  9466. "url": "https://github.com/symfony/serializer.git",
  9467. "reference": "0db90db012b1b0a04fbb2d64ae9160871cad9d4f"
  9468. },
  9469. "dist": {
  9470. "type": "zip",
  9471. "url": "https://api.github.com/repos/symfony/serializer/zipball/0db90db012b1b0a04fbb2d64ae9160871cad9d4f",
  9472. "reference": "0db90db012b1b0a04fbb2d64ae9160871cad9d4f",
  9473. "shasum": ""
  9474. },
  9475. "require": {
  9476. "php": "^5.5.9|>=7.0.8",
  9477. "symfony/polyfill-ctype": "~1.8"
  9478. },
  9479. "conflict": {
  9480. "phpdocumentor/type-resolver": "<0.2.1",
  9481. "symfony/dependency-injection": "<3.2",
  9482. "symfony/property-access": ">=3.0,<3.0.4|>=2.8,<2.8.4",
  9483. "symfony/property-info": "<3.1",
  9484. "symfony/yaml": "<3.4"
  9485. },
  9486. "require-dev": {
  9487. "doctrine/annotations": "~1.0",
  9488. "doctrine/cache": "~1.0",
  9489. "phpdocumentor/reflection-docblock": "^3.0|^4.0",
  9490. "symfony/cache": "~3.1|~4.0",
  9491. "symfony/config": "~2.8|~3.0|~4.0",
  9492. "symfony/dependency-injection": "~3.2|~4.0",
  9493. "symfony/http-foundation": "~2.8|~3.0|~4.0",
  9494. "symfony/property-access": "~2.8|~3.0|~4.0",
  9495. "symfony/property-info": "^3.4.13|~4.0",
  9496. "symfony/yaml": "~3.4|~4.0"
  9497. },
  9498. "suggest": {
  9499. "doctrine/annotations": "For using the annotation mapping. You will also need doctrine/cache.",
  9500. "doctrine/cache": "For using the default cached annotation reader and metadata cache.",
  9501. "psr/cache-implementation": "For using the metadata cache.",
  9502. "symfony/config": "For using the XML mapping loader.",
  9503. "symfony/http-foundation": "For using a MIME type guesser within the DataUriNormalizer.",
  9504. "symfony/property-access": "For using the ObjectNormalizer.",
  9505. "symfony/property-info": "To deserialize relations.",
  9506. "symfony/yaml": "For using the default YAML mapping loader."
  9507. },
  9508. "type": "library",
  9509. "extra": {
  9510. "branch-alias": {
  9511. "dev-master": "3.4-dev"
  9512. }
  9513. },
  9514. "autoload": {
  9515. "psr-4": {
  9516. "Symfony\\Component\\Serializer\\": ""
  9517. },
  9518. "exclude-from-classmap": [
  9519. "/Tests/"
  9520. ]
  9521. },
  9522. "notification-url": "https://packagist.org/downloads/",
  9523. "license": [
  9524. "MIT"
  9525. ],
  9526. "authors": [
  9527. {
  9528. "name": "Fabien Potencier",
  9529. "email": "fabien@symfony.com"
  9530. },
  9531. {
  9532. "name": "Symfony Community",
  9533. "homepage": "https://symfony.com/contributors"
  9534. }
  9535. ],
  9536. "description": "Symfony Serializer Component",
  9537. "homepage": "https://symfony.com",
  9538. "support": {
  9539. "source": "https://github.com/symfony/serializer/tree/v3.4.41"
  9540. },
  9541. "funding": [
  9542. {
  9543. "url": "https://symfony.com/sponsor",
  9544. "type": "custom"
  9545. },
  9546. {
  9547. "url": "https://github.com/fabpot",
  9548. "type": "github"
  9549. },
  9550. {
  9551. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  9552. "type": "tidelift"
  9553. }
  9554. ],
  9555. "time": "2020-05-30T18:58:05+00:00"
  9556. },
  9557. {
  9558. "name": "symfony/translation",
  9559. "version": "v3.4.41",
  9560. "source": {
  9561. "type": "git",
  9562. "url": "https://github.com/symfony/translation.git",
  9563. "reference": "b0cd62ef0ff7ec31b67d78d7fc818e2bda4e844f"
  9564. },
  9565. "dist": {
  9566. "type": "zip",
  9567. "url": "https://api.github.com/repos/symfony/translation/zipball/b0cd62ef0ff7ec31b67d78d7fc818e2bda4e844f",
  9568. "reference": "b0cd62ef0ff7ec31b67d78d7fc818e2bda4e844f",
  9569. "shasum": ""
  9570. },
  9571. "require": {
  9572. "php": "^5.5.9|>=7.0.8",
  9573. "symfony/polyfill-mbstring": "~1.0"
  9574. },
  9575. "conflict": {
  9576. "symfony/config": "<2.8",
  9577. "symfony/dependency-injection": "<3.4",
  9578. "symfony/yaml": "<3.4"
  9579. },
  9580. "require-dev": {
  9581. "psr/log": "~1.0",
  9582. "symfony/config": "~2.8|~3.0|~4.0",
  9583. "symfony/dependency-injection": "~3.4|~4.0",
  9584. "symfony/finder": "~2.8|~3.0|~4.0",
  9585. "symfony/http-kernel": "~3.4|~4.0",
  9586. "symfony/intl": "^2.8.18|^3.2.5|~4.0",
  9587. "symfony/var-dumper": "~3.4|~4.0",
  9588. "symfony/yaml": "~3.4|~4.0"
  9589. },
  9590. "suggest": {
  9591. "psr/log-implementation": "To use logging capability in translator",
  9592. "symfony/config": "",
  9593. "symfony/yaml": ""
  9594. },
  9595. "type": "library",
  9596. "extra": {
  9597. "branch-alias": {
  9598. "dev-master": "3.4-dev"
  9599. }
  9600. },
  9601. "autoload": {
  9602. "psr-4": {
  9603. "Symfony\\Component\\Translation\\": ""
  9604. },
  9605. "exclude-from-classmap": [
  9606. "/Tests/"
  9607. ]
  9608. },
  9609. "notification-url": "https://packagist.org/downloads/",
  9610. "license": [
  9611. "MIT"
  9612. ],
  9613. "authors": [
  9614. {
  9615. "name": "Fabien Potencier",
  9616. "email": "fabien@symfony.com"
  9617. },
  9618. {
  9619. "name": "Symfony Community",
  9620. "homepage": "https://symfony.com/contributors"
  9621. }
  9622. ],
  9623. "description": "Symfony Translation Component",
  9624. "homepage": "https://symfony.com",
  9625. "support": {
  9626. "source": "https://github.com/symfony/translation/tree/3.4"
  9627. },
  9628. "funding": [
  9629. {
  9630. "url": "https://symfony.com/sponsor",
  9631. "type": "custom"
  9632. },
  9633. {
  9634. "url": "https://github.com/fabpot",
  9635. "type": "github"
  9636. },
  9637. {
  9638. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  9639. "type": "tidelift"
  9640. }
  9641. ],
  9642. "time": "2020-05-30T18:58:05+00:00"
  9643. },
  9644. {
  9645. "name": "symfony/validator",
  9646. "version": "v3.4.41",
  9647. "source": {
  9648. "type": "git",
  9649. "url": "https://github.com/symfony/validator.git",
  9650. "reference": "5fb88120a11a75e17b602103a893dd8b27804529"
  9651. },
  9652. "dist": {
  9653. "type": "zip",
  9654. "url": "https://api.github.com/repos/symfony/validator/zipball/5fb88120a11a75e17b602103a893dd8b27804529",
  9655. "reference": "5fb88120a11a75e17b602103a893dd8b27804529",
  9656. "shasum": ""
  9657. },
  9658. "require": {
  9659. "php": "^5.5.9|>=7.0.8",
  9660. "symfony/polyfill-ctype": "~1.8",
  9661. "symfony/polyfill-mbstring": "~1.0",
  9662. "symfony/translation": "~2.8|~3.0|~4.0"
  9663. },
  9664. "conflict": {
  9665. "doctrine/lexer": "<1.0.2",
  9666. "phpunit/phpunit": "<4.8.35|<5.4.3,>=5.0",
  9667. "symfony/dependency-injection": "<3.3",
  9668. "symfony/http-kernel": "<3.3.5",
  9669. "symfony/yaml": "<3.4"
  9670. },
  9671. "require-dev": {
  9672. "doctrine/annotations": "~1.7",
  9673. "doctrine/cache": "~1.0",
  9674. "egulias/email-validator": "^2.1.10",
  9675. "symfony/cache": "~3.1|~4.0",
  9676. "symfony/config": "~2.8|~3.0|~4.0",
  9677. "symfony/dependency-injection": "~3.3|~4.0",
  9678. "symfony/expression-language": "~2.8|~3.0|~4.0",
  9679. "symfony/http-foundation": "~2.8|~3.0|~4.0",
  9680. "symfony/http-kernel": "^3.3.5|~4.0",
  9681. "symfony/intl": "^2.8.18|^3.2.5|~4.0",
  9682. "symfony/property-access": "~2.8|~3.0|~4.0",
  9683. "symfony/var-dumper": "~3.3|~4.0",
  9684. "symfony/yaml": "~3.4|~4.0"
  9685. },
  9686. "suggest": {
  9687. "doctrine/annotations": "For using the annotation mapping. You will also need doctrine/cache.",
  9688. "doctrine/cache": "For using the default cached annotation reader and metadata cache.",
  9689. "egulias/email-validator": "Strict (RFC compliant) email validation",
  9690. "psr/cache-implementation": "For using the metadata cache.",
  9691. "symfony/config": "",
  9692. "symfony/expression-language": "For using the Expression validator",
  9693. "symfony/http-foundation": "",
  9694. "symfony/intl": "",
  9695. "symfony/property-access": "For accessing properties within comparison constraints",
  9696. "symfony/yaml": ""
  9697. },
  9698. "type": "library",
  9699. "extra": {
  9700. "branch-alias": {
  9701. "dev-master": "3.4-dev"
  9702. }
  9703. },
  9704. "autoload": {
  9705. "psr-4": {
  9706. "Symfony\\Component\\Validator\\": ""
  9707. },
  9708. "exclude-from-classmap": [
  9709. "/Tests/"
  9710. ]
  9711. },
  9712. "notification-url": "https://packagist.org/downloads/",
  9713. "license": [
  9714. "MIT"
  9715. ],
  9716. "authors": [
  9717. {
  9718. "name": "Fabien Potencier",
  9719. "email": "fabien@symfony.com"
  9720. },
  9721. {
  9722. "name": "Symfony Community",
  9723. "homepage": "https://symfony.com/contributors"
  9724. }
  9725. ],
  9726. "description": "Symfony Validator Component",
  9727. "homepage": "https://symfony.com",
  9728. "support": {
  9729. "source": "https://github.com/symfony/validator/tree/3.4"
  9730. },
  9731. "funding": [
  9732. {
  9733. "url": "https://symfony.com/sponsor",
  9734. "type": "custom"
  9735. },
  9736. {
  9737. "url": "https://github.com/fabpot",
  9738. "type": "github"
  9739. },
  9740. {
  9741. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  9742. "type": "tidelift"
  9743. }
  9744. ],
  9745. "time": "2020-05-30T18:43:38+00:00"
  9746. },
  9747. {
  9748. "name": "symfony/var-dumper",
  9749. "version": "v4.4.47",
  9750. "source": {
  9751. "type": "git",
  9752. "url": "https://github.com/symfony/var-dumper.git",
  9753. "reference": "1069c7a3fca74578022fab6f81643248d02f8e63"
  9754. },
  9755. "dist": {
  9756. "type": "zip",
  9757. "url": "https://api.github.com/repos/symfony/var-dumper/zipball/1069c7a3fca74578022fab6f81643248d02f8e63",
  9758. "reference": "1069c7a3fca74578022fab6f81643248d02f8e63",
  9759. "shasum": ""
  9760. },
  9761. "require": {
  9762. "php": ">=7.1.3",
  9763. "symfony/polyfill-mbstring": "~1.0",
  9764. "symfony/polyfill-php72": "~1.5",
  9765. "symfony/polyfill-php80": "^1.16"
  9766. },
  9767. "conflict": {
  9768. "phpunit/phpunit": "<4.8.35|<5.4.3,>=5.0",
  9769. "symfony/console": "<3.4"
  9770. },
  9771. "require-dev": {
  9772. "ext-iconv": "*",
  9773. "symfony/console": "^3.4|^4.0|^5.0",
  9774. "symfony/process": "^4.4|^5.0",
  9775. "twig/twig": "^1.43|^2.13|^3.0.4"
  9776. },
  9777. "suggest": {
  9778. "ext-iconv": "To convert non-UTF-8 strings to UTF-8 (or symfony/polyfill-iconv in case ext-iconv cannot be used).",
  9779. "ext-intl": "To show region name in time zone dump",
  9780. "symfony/console": "To use the ServerDumpCommand and/or the bin/var-dump-server script"
  9781. },
  9782. "bin": [
  9783. "Resources/bin/var-dump-server"
  9784. ],
  9785. "type": "library",
  9786. "autoload": {
  9787. "files": [
  9788. "Resources/functions/dump.php"
  9789. ],
  9790. "psr-4": {
  9791. "Symfony\\Component\\VarDumper\\": ""
  9792. },
  9793. "exclude-from-classmap": [
  9794. "/Tests/"
  9795. ]
  9796. },
  9797. "notification-url": "https://packagist.org/downloads/",
  9798. "license": [
  9799. "MIT"
  9800. ],
  9801. "authors": [
  9802. {
  9803. "name": "Nicolas Grekas",
  9804. "email": "p@tchwork.com"
  9805. },
  9806. {
  9807. "name": "Symfony Community",
  9808. "homepage": "https://symfony.com/contributors"
  9809. }
  9810. ],
  9811. "description": "Provides mechanisms for walking through any arbitrary PHP variable",
  9812. "homepage": "https://symfony.com",
  9813. "keywords": [
  9814. "debug",
  9815. "dump"
  9816. ],
  9817. "support": {
  9818. "source": "https://github.com/symfony/var-dumper/tree/v4.4.47"
  9819. },
  9820. "funding": [
  9821. {
  9822. "url": "https://symfony.com/sponsor",
  9823. "type": "custom"
  9824. },
  9825. {
  9826. "url": "https://github.com/fabpot",
  9827. "type": "github"
  9828. },
  9829. {
  9830. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  9831. "type": "tidelift"
  9832. }
  9833. ],
  9834. "time": "2022-10-03T15:15:11+00:00"
  9835. },
  9836. {
  9837. "name": "symfony/yaml",
  9838. "version": "v3.4.41",
  9839. "source": {
  9840. "type": "git",
  9841. "url": "https://github.com/symfony/yaml.git",
  9842. "reference": "7233ac2bfdde24d672f5305f2b3f6b5d741ef8eb"
  9843. },
  9844. "dist": {
  9845. "type": "zip",
  9846. "url": "https://api.github.com/repos/symfony/yaml/zipball/7233ac2bfdde24d672f5305f2b3f6b5d741ef8eb",
  9847. "reference": "7233ac2bfdde24d672f5305f2b3f6b5d741ef8eb",
  9848. "shasum": ""
  9849. },
  9850. "require": {
  9851. "php": "^5.5.9|>=7.0.8",
  9852. "symfony/polyfill-ctype": "~1.8"
  9853. },
  9854. "conflict": {
  9855. "symfony/console": "<3.4"
  9856. },
  9857. "require-dev": {
  9858. "symfony/console": "~3.4|~4.0"
  9859. },
  9860. "suggest": {
  9861. "symfony/console": "For validating YAML files using the lint command"
  9862. },
  9863. "type": "library",
  9864. "extra": {
  9865. "branch-alias": {
  9866. "dev-master": "3.4-dev"
  9867. }
  9868. },
  9869. "autoload": {
  9870. "psr-4": {
  9871. "Symfony\\Component\\Yaml\\": ""
  9872. },
  9873. "exclude-from-classmap": [
  9874. "/Tests/"
  9875. ]
  9876. },
  9877. "notification-url": "https://packagist.org/downloads/",
  9878. "license": [
  9879. "MIT"
  9880. ],
  9881. "authors": [
  9882. {
  9883. "name": "Fabien Potencier",
  9884. "email": "fabien@symfony.com"
  9885. },
  9886. {
  9887. "name": "Symfony Community",
  9888. "homepage": "https://symfony.com/contributors"
  9889. }
  9890. ],
  9891. "description": "Symfony Yaml Component",
  9892. "homepage": "https://symfony.com",
  9893. "support": {
  9894. "source": "https://github.com/symfony/yaml/tree/v3.4.41"
  9895. },
  9896. "funding": [
  9897. {
  9898. "url": "https://symfony.com/sponsor",
  9899. "type": "custom"
  9900. },
  9901. {
  9902. "url": "https://github.com/fabpot",
  9903. "type": "github"
  9904. },
  9905. {
  9906. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  9907. "type": "tidelift"
  9908. }
  9909. ],
  9910. "time": "2020-05-11T07:51:54+00:00"
  9911. },
  9912. {
  9913. "name": "twig/twig",
  9914. "version": "v1.42.5",
  9915. "source": {
  9916. "type": "git",
  9917. "url": "https://github.com/twigphp/Twig.git",
  9918. "reference": "87b2ea9d8f6fd014d0621ca089bb1b3769ea3f8e"
  9919. },
  9920. "dist": {
  9921. "type": "zip",
  9922. "url": "https://api.github.com/repos/twigphp/Twig/zipball/87b2ea9d8f6fd014d0621ca089bb1b3769ea3f8e",
  9923. "reference": "87b2ea9d8f6fd014d0621ca089bb1b3769ea3f8e",
  9924. "shasum": ""
  9925. },
  9926. "require": {
  9927. "php": ">=5.5.0",
  9928. "symfony/polyfill-ctype": "^1.8"
  9929. },
  9930. "require-dev": {
  9931. "psr/container": "^1.0",
  9932. "symfony/phpunit-bridge": "^4.4|^5.0"
  9933. },
  9934. "type": "library",
  9935. "extra": {
  9936. "branch-alias": {
  9937. "dev-master": "1.42-dev"
  9938. }
  9939. },
  9940. "autoload": {
  9941. "psr-0": {
  9942. "Twig_": "lib/"
  9943. },
  9944. "psr-4": {
  9945. "Twig\\": "src/"
  9946. }
  9947. },
  9948. "notification-url": "https://packagist.org/downloads/",
  9949. "license": [
  9950. "BSD-3-Clause"
  9951. ],
  9952. "authors": [
  9953. {
  9954. "name": "Fabien Potencier",
  9955. "email": "fabien@symfony.com",
  9956. "homepage": "http://fabien.potencier.org",
  9957. "role": "Lead Developer"
  9958. },
  9959. {
  9960. "name": "Twig Team",
  9961. "role": "Contributors"
  9962. },
  9963. {
  9964. "name": "Armin Ronacher",
  9965. "email": "armin.ronacher@active-4.com",
  9966. "role": "Project Founder"
  9967. }
  9968. ],
  9969. "description": "Twig, the flexible, fast, and secure template language for PHP",
  9970. "homepage": "https://twig.symfony.com",
  9971. "keywords": [
  9972. "templating"
  9973. ],
  9974. "support": {
  9975. "issues": "https://github.com/twigphp/Twig/issues",
  9976. "source": "https://github.com/twigphp/Twig/tree/1.x"
  9977. },
  9978. "time": "2020-02-11T05:59:23+00:00"
  9979. },
  9980. {
  9981. "name": "typo3/phar-stream-wrapper",
  9982. "version": "v3.1.4",
  9983. "source": {
  9984. "type": "git",
  9985. "url": "https://github.com/TYPO3/phar-stream-wrapper.git",
  9986. "reference": "e0c1b495cfac064f4f5c4bcb6bf67bb7f345ed04"
  9987. },
  9988. "dist": {
  9989. "type": "zip",
  9990. "url": "https://api.github.com/repos/TYPO3/phar-stream-wrapper/zipball/e0c1b495cfac064f4f5c4bcb6bf67bb7f345ed04",
  9991. "reference": "e0c1b495cfac064f4f5c4bcb6bf67bb7f345ed04",
  9992. "shasum": ""
  9993. },
  9994. "require": {
  9995. "ext-json": "*",
  9996. "php": "^7.0"
  9997. },
  9998. "require-dev": {
  9999. "ext-xdebug": "*",
  10000. "phpunit/phpunit": "^6.5"
  10001. },
  10002. "suggest": {
  10003. "ext-fileinfo": "For PHP builtin file type guessing, otherwise uses internal processing"
  10004. },
  10005. "type": "library",
  10006. "extra": {
  10007. "branch-alias": {
  10008. "dev-master": "v3.x-dev"
  10009. }
  10010. },
  10011. "autoload": {
  10012. "psr-4": {
  10013. "TYPO3\\PharStreamWrapper\\": "src/"
  10014. }
  10015. },
  10016. "notification-url": "https://packagist.org/downloads/",
  10017. "license": [
  10018. "MIT"
  10019. ],
  10020. "description": "Interceptors for PHP's native phar:// stream handling",
  10021. "homepage": "https://typo3.org/",
  10022. "keywords": [
  10023. "phar",
  10024. "php",
  10025. "security",
  10026. "stream-wrapper"
  10027. ],
  10028. "support": {
  10029. "issues": "https://github.com/TYPO3/phar-stream-wrapper/issues",
  10030. "source": "https://github.com/TYPO3/phar-stream-wrapper/tree/master"
  10031. },
  10032. "time": "2019-12-10T11:53:27+00:00"
  10033. },
  10034. {
  10035. "name": "vlucas/phpdotenv",
  10036. "version": "v2.6.4",
  10037. "source": {
  10038. "type": "git",
  10039. "url": "https://github.com/vlucas/phpdotenv.git",
  10040. "reference": "67d472b1794c986381a8950e4958e1adb779d561"
  10041. },
  10042. "dist": {
  10043. "type": "zip",
  10044. "url": "https://api.github.com/repos/vlucas/phpdotenv/zipball/67d472b1794c986381a8950e4958e1adb779d561",
  10045. "reference": "67d472b1794c986381a8950e4958e1adb779d561",
  10046. "shasum": ""
  10047. },
  10048. "require": {
  10049. "php": "^5.3.9 || ^7.0 || ^8.0",
  10050. "symfony/polyfill-ctype": "^1.9"
  10051. },
  10052. "require-dev": {
  10053. "ext-filter": "*",
  10054. "ext-pcre": "*",
  10055. "phpunit/phpunit": "^4.8.35 || ^5.0"
  10056. },
  10057. "suggest": {
  10058. "ext-filter": "Required to use the boolean validator.",
  10059. "ext-pcre": "Required to use most of the library."
  10060. },
  10061. "type": "library",
  10062. "extra": {
  10063. "branch-alias": {
  10064. "dev-master": "2.6-dev"
  10065. }
  10066. },
  10067. "autoload": {
  10068. "psr-4": {
  10069. "Dotenv\\": "src/"
  10070. }
  10071. },
  10072. "notification-url": "https://packagist.org/downloads/",
  10073. "license": [
  10074. "BSD-3-Clause"
  10075. ],
  10076. "authors": [
  10077. {
  10078. "name": "Graham Campbell",
  10079. "email": "graham@alt-three.com",
  10080. "homepage": "https://gjcampbell.co.uk/"
  10081. },
  10082. {
  10083. "name": "Vance Lucas",
  10084. "email": "vance@vancelucas.com",
  10085. "homepage": "https://vancelucas.com/"
  10086. }
  10087. ],
  10088. "description": "Loads environment variables from `.env` to `getenv()`, `$_ENV` and `$_SERVER` automagically.",
  10089. "keywords": [
  10090. "dotenv",
  10091. "env",
  10092. "environment"
  10093. ],
  10094. "time": "2020-05-02T13:38:00+00:00"
  10095. },
  10096. {
  10097. "name": "webflo/drupal-finder",
  10098. "version": "1.2.0",
  10099. "source": {
  10100. "type": "git",
  10101. "url": "https://github.com/webflo/drupal-finder.git",
  10102. "reference": "123e248e14ee8dd3fbe89fb5a733a6cf91f5820e"
  10103. },
  10104. "dist": {
  10105. "type": "zip",
  10106. "url": "https://api.github.com/repos/webflo/drupal-finder/zipball/123e248e14ee8dd3fbe89fb5a733a6cf91f5820e",
  10107. "reference": "123e248e14ee8dd3fbe89fb5a733a6cf91f5820e",
  10108. "shasum": ""
  10109. },
  10110. "require": {
  10111. "ext-json": "*"
  10112. },
  10113. "require-dev": {
  10114. "mikey179/vfsstream": "^1.6",
  10115. "phpunit/phpunit": "^4.8"
  10116. },
  10117. "type": "library",
  10118. "autoload": {
  10119. "classmap": [
  10120. "src/DrupalFinder.php"
  10121. ]
  10122. },
  10123. "notification-url": "https://packagist.org/downloads/",
  10124. "license": [
  10125. "GPL-2.0+"
  10126. ],
  10127. "authors": [
  10128. {
  10129. "name": "Florian Weber",
  10130. "email": "florian@webflo.org"
  10131. }
  10132. ],
  10133. "description": "Helper class to locate a Drupal installation from a given path.",
  10134. "time": "2019-08-02T08:06:18+00:00"
  10135. },
  10136. {
  10137. "name": "webmozart/assert",
  10138. "version": "1.11.0",
  10139. "source": {
  10140. "type": "git",
  10141. "url": "https://github.com/webmozarts/assert.git",
  10142. "reference": "11cb2199493b2f8a3b53e7f19068fc6aac760991"
  10143. },
  10144. "dist": {
  10145. "type": "zip",
  10146. "url": "https://api.github.com/repos/webmozarts/assert/zipball/11cb2199493b2f8a3b53e7f19068fc6aac760991",
  10147. "reference": "11cb2199493b2f8a3b53e7f19068fc6aac760991",
  10148. "shasum": ""
  10149. },
  10150. "require": {
  10151. "ext-ctype": "*",
  10152. "php": "^7.2 || ^8.0"
  10153. },
  10154. "conflict": {
  10155. "phpstan/phpstan": "<0.12.20",
  10156. "vimeo/psalm": "<4.6.1 || 4.6.2"
  10157. },
  10158. "require-dev": {
  10159. "phpunit/phpunit": "^8.5.13"
  10160. },
  10161. "type": "library",
  10162. "extra": {
  10163. "branch-alias": {
  10164. "dev-master": "1.10-dev"
  10165. }
  10166. },
  10167. "autoload": {
  10168. "psr-4": {
  10169. "Webmozart\\Assert\\": "src/"
  10170. }
  10171. },
  10172. "notification-url": "https://packagist.org/downloads/",
  10173. "license": [
  10174. "MIT"
  10175. ],
  10176. "authors": [
  10177. {
  10178. "name": "Bernhard Schussek",
  10179. "email": "bschussek@gmail.com"
  10180. }
  10181. ],
  10182. "description": "Assertions to validate method input/output with nice error messages.",
  10183. "keywords": [
  10184. "assert",
  10185. "check",
  10186. "validate"
  10187. ],
  10188. "support": {
  10189. "issues": "https://github.com/webmozarts/assert/issues",
  10190. "source": "https://github.com/webmozarts/assert/tree/1.11.0"
  10191. },
  10192. "time": "2022-06-03T18:03:27+00:00"
  10193. },
  10194. {
  10195. "name": "webmozart/path-util",
  10196. "version": "2.3.0",
  10197. "source": {
  10198. "type": "git",
  10199. "url": "https://github.com/webmozart/path-util.git",
  10200. "reference": "d939f7edc24c9a1bb9c0dee5cb05d8e859490725"
  10201. },
  10202. "dist": {
  10203. "type": "zip",
  10204. "url": "https://api.github.com/repos/webmozart/path-util/zipball/d939f7edc24c9a1bb9c0dee5cb05d8e859490725",
  10205. "reference": "d939f7edc24c9a1bb9c0dee5cb05d8e859490725",
  10206. "shasum": ""
  10207. },
  10208. "require": {
  10209. "php": ">=5.3.3",
  10210. "webmozart/assert": "~1.0"
  10211. },
  10212. "require-dev": {
  10213. "phpunit/phpunit": "^4.6",
  10214. "sebastian/version": "^1.0.1"
  10215. },
  10216. "type": "library",
  10217. "extra": {
  10218. "branch-alias": {
  10219. "dev-master": "2.3-dev"
  10220. }
  10221. },
  10222. "autoload": {
  10223. "psr-4": {
  10224. "Webmozart\\PathUtil\\": "src/"
  10225. }
  10226. },
  10227. "notification-url": "https://packagist.org/downloads/",
  10228. "license": [
  10229. "MIT"
  10230. ],
  10231. "authors": [
  10232. {
  10233. "name": "Bernhard Schussek",
  10234. "email": "bschussek@gmail.com"
  10235. }
  10236. ],
  10237. "description": "A robust cross-platform utility for normalizing, comparing and modifying file paths.",
  10238. "time": "2015-12-17T08:42:14+00:00"
  10239. }
  10240. ],
  10241. "packages-dev": [],
  10242. "aliases": [],
  10243. "minimum-stability": "dev",
  10244. "stability-flags": {
  10245. "drupal/better_messages": 15,
  10246. "drupal/bulkdelete": 20,
  10247. "drupal/domain": 15,
  10248. "drupal/domain_menu_access": 15,
  10249. "drupal/filefield_sources": 15,
  10250. "drupal/filter_perms": 15,
  10251. "drupal/maillog": 10,
  10252. "drupal/path_alias_xt": 20,
  10253. "drupal/synonyms": 15,
  10254. "drupal/toolbar_themes": 20
  10255. },
  10256. "prefer-stable": true,
  10257. "prefer-lowest": false,
  10258. "platform": {
  10259. "php": ">=5.6"
  10260. },
  10261. "platform-dev": [],
  10262. "plugin-api-version": "2.6.0"
  10263. }