composer.lock 362 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298529953005301530253035304530553065307530853095310531153125313531453155316531753185319532053215322532353245325532653275328532953305331533253335334533553365337533853395340534153425343534453455346534753485349535053515352535353545355535653575358535953605361536253635364536553665367536853695370537153725373537453755376537753785379538053815382538353845385538653875388538953905391539253935394539553965397539853995400540154025403540454055406540754085409541054115412541354145415541654175418541954205421542254235424542554265427542854295430543154325433543454355436543754385439544054415442544354445445544654475448544954505451545254535454545554565457545854595460546154625463546454655466546754685469547054715472547354745475547654775478547954805481548254835484548554865487548854895490549154925493549454955496549754985499550055015502550355045505550655075508550955105511551255135514551555165517551855195520552155225523552455255526552755285529553055315532553355345535553655375538553955405541554255435544554555465547554855495550555155525553555455555556555755585559556055615562556355645565556655675568556955705571557255735574557555765577557855795580558155825583558455855586558755885589559055915592559355945595559655975598559956005601560256035604560556065607560856095610561156125613561456155616561756185619562056215622562356245625562656275628562956305631563256335634563556365637563856395640564156425643564456455646564756485649565056515652565356545655565656575658565956605661566256635664566556665667566856695670567156725673567456755676567756785679568056815682568356845685568656875688568956905691569256935694569556965697569856995700570157025703570457055706570757085709571057115712571357145715571657175718571957205721572257235724572557265727572857295730573157325733573457355736573757385739574057415742574357445745574657475748574957505751575257535754575557565757575857595760576157625763576457655766576757685769577057715772577357745775577657775778577957805781578257835784578557865787578857895790579157925793579457955796579757985799580058015802580358045805580658075808580958105811581258135814581558165817581858195820582158225823582458255826582758285829583058315832583358345835583658375838583958405841584258435844584558465847584858495850585158525853585458555856585758585859586058615862586358645865586658675868586958705871587258735874587558765877587858795880588158825883588458855886588758885889589058915892589358945895589658975898589959005901590259035904590559065907590859095910591159125913591459155916591759185919592059215922592359245925592659275928592959305931593259335934593559365937593859395940594159425943594459455946594759485949595059515952595359545955595659575958595959605961596259635964596559665967596859695970597159725973597459755976597759785979598059815982598359845985598659875988598959905991599259935994599559965997599859996000600160026003600460056006600760086009601060116012601360146015601660176018601960206021602260236024602560266027602860296030603160326033603460356036603760386039604060416042604360446045604660476048604960506051605260536054605560566057605860596060606160626063606460656066606760686069607060716072607360746075607660776078607960806081608260836084608560866087608860896090609160926093609460956096609760986099610061016102610361046105610661076108610961106111611261136114611561166117611861196120612161226123612461256126612761286129613061316132613361346135613661376138613961406141614261436144614561466147614861496150615161526153615461556156615761586159616061616162616361646165616661676168616961706171617261736174617561766177617861796180618161826183618461856186618761886189619061916192619361946195619661976198619962006201620262036204620562066207620862096210621162126213621462156216621762186219622062216222622362246225622662276228622962306231623262336234623562366237623862396240624162426243624462456246624762486249625062516252625362546255625662576258625962606261626262636264626562666267626862696270627162726273627462756276627762786279628062816282628362846285628662876288628962906291629262936294629562966297629862996300630163026303630463056306630763086309631063116312631363146315631663176318631963206321632263236324632563266327632863296330633163326333633463356336633763386339634063416342634363446345634663476348634963506351635263536354635563566357635863596360636163626363636463656366636763686369637063716372637363746375637663776378637963806381638263836384638563866387638863896390639163926393639463956396639763986399640064016402640364046405640664076408640964106411641264136414641564166417641864196420642164226423642464256426642764286429643064316432643364346435643664376438643964406441644264436444644564466447644864496450645164526453645464556456645764586459646064616462646364646465646664676468646964706471647264736474647564766477647864796480648164826483648464856486648764886489649064916492649364946495649664976498649965006501650265036504650565066507650865096510651165126513651465156516651765186519652065216522652365246525652665276528652965306531653265336534653565366537653865396540654165426543654465456546654765486549655065516552655365546555655665576558655965606561656265636564656565666567656865696570657165726573657465756576657765786579658065816582658365846585658665876588658965906591659265936594659565966597659865996600660166026603660466056606660766086609661066116612661366146615661666176618661966206621662266236624662566266627662866296630663166326633663466356636663766386639664066416642664366446645664666476648664966506651665266536654665566566657665866596660666166626663666466656666666766686669667066716672667366746675667666776678667966806681668266836684668566866687668866896690669166926693669466956696669766986699670067016702670367046705670667076708670967106711671267136714671567166717671867196720672167226723672467256726672767286729673067316732673367346735673667376738673967406741674267436744674567466747674867496750675167526753675467556756675767586759676067616762676367646765676667676768676967706771677267736774677567766777677867796780678167826783678467856786678767886789679067916792679367946795679667976798679968006801680268036804680568066807680868096810681168126813681468156816681768186819682068216822682368246825682668276828682968306831683268336834683568366837683868396840684168426843684468456846684768486849685068516852685368546855685668576858685968606861686268636864686568666867686868696870687168726873687468756876687768786879688068816882688368846885688668876888688968906891689268936894689568966897689868996900690169026903690469056906690769086909691069116912691369146915691669176918691969206921692269236924692569266927692869296930693169326933693469356936693769386939694069416942694369446945694669476948694969506951695269536954695569566957695869596960696169626963696469656966696769686969697069716972697369746975697669776978697969806981698269836984698569866987698869896990699169926993699469956996699769986999700070017002700370047005700670077008700970107011701270137014701570167017701870197020702170227023702470257026702770287029703070317032703370347035703670377038703970407041704270437044704570467047704870497050705170527053705470557056705770587059706070617062706370647065706670677068706970707071707270737074707570767077707870797080708170827083708470857086708770887089709070917092709370947095709670977098709971007101710271037104710571067107710871097110711171127113711471157116711771187119712071217122712371247125712671277128712971307131713271337134713571367137713871397140714171427143714471457146714771487149715071517152715371547155715671577158715971607161716271637164716571667167716871697170717171727173717471757176717771787179718071817182718371847185718671877188718971907191719271937194719571967197719871997200720172027203720472057206720772087209721072117212721372147215721672177218721972207221722272237224722572267227722872297230723172327233723472357236723772387239724072417242724372447245724672477248724972507251725272537254725572567257725872597260726172627263726472657266726772687269727072717272727372747275727672777278727972807281728272837284728572867287728872897290729172927293729472957296729772987299730073017302730373047305730673077308730973107311731273137314731573167317731873197320732173227323732473257326732773287329733073317332733373347335733673377338733973407341734273437344734573467347734873497350735173527353735473557356735773587359736073617362736373647365736673677368736973707371737273737374737573767377737873797380738173827383738473857386738773887389739073917392739373947395739673977398739974007401740274037404740574067407740874097410741174127413741474157416741774187419742074217422742374247425742674277428742974307431743274337434743574367437743874397440744174427443744474457446744774487449745074517452745374547455745674577458745974607461746274637464746574667467746874697470747174727473747474757476747774787479748074817482748374847485748674877488748974907491749274937494749574967497749874997500750175027503750475057506750775087509751075117512751375147515751675177518751975207521752275237524752575267527752875297530753175327533753475357536753775387539754075417542754375447545754675477548754975507551755275537554755575567557755875597560756175627563756475657566756775687569757075717572757375747575757675777578757975807581758275837584758575867587758875897590759175927593759475957596759775987599760076017602760376047605760676077608760976107611761276137614761576167617761876197620762176227623762476257626762776287629763076317632763376347635763676377638763976407641764276437644764576467647764876497650765176527653765476557656765776587659766076617662766376647665766676677668766976707671767276737674767576767677767876797680768176827683768476857686768776887689769076917692769376947695769676977698769977007701770277037704770577067707770877097710771177127713771477157716771777187719772077217722772377247725772677277728772977307731773277337734773577367737773877397740774177427743774477457746774777487749775077517752775377547755775677577758775977607761776277637764776577667767776877697770777177727773777477757776777777787779778077817782778377847785778677877788778977907791779277937794779577967797779877997800780178027803780478057806780778087809781078117812781378147815781678177818781978207821782278237824782578267827782878297830783178327833783478357836783778387839784078417842784378447845784678477848784978507851785278537854785578567857785878597860786178627863786478657866786778687869787078717872787378747875787678777878787978807881788278837884788578867887788878897890789178927893789478957896789778987899790079017902790379047905790679077908790979107911791279137914791579167917791879197920792179227923792479257926792779287929793079317932793379347935793679377938793979407941794279437944794579467947794879497950795179527953795479557956795779587959796079617962796379647965796679677968796979707971797279737974797579767977797879797980798179827983798479857986798779887989799079917992799379947995799679977998799980008001800280038004800580068007800880098010801180128013801480158016801780188019802080218022802380248025802680278028802980308031803280338034803580368037803880398040804180428043804480458046804780488049805080518052805380548055805680578058805980608061806280638064806580668067806880698070807180728073807480758076807780788079808080818082808380848085808680878088808980908091809280938094809580968097809880998100810181028103810481058106810781088109811081118112811381148115811681178118811981208121812281238124812581268127812881298130813181328133813481358136813781388139814081418142814381448145814681478148814981508151815281538154815581568157815881598160816181628163816481658166816781688169817081718172817381748175817681778178817981808181818281838184818581868187818881898190819181928193819481958196819781988199820082018202820382048205820682078208820982108211821282138214821582168217821882198220822182228223822482258226822782288229823082318232823382348235823682378238823982408241824282438244824582468247824882498250825182528253825482558256825782588259826082618262826382648265826682678268826982708271827282738274827582768277827882798280828182828283828482858286828782888289829082918292829382948295829682978298829983008301830283038304830583068307830883098310831183128313831483158316831783188319832083218322832383248325832683278328832983308331833283338334833583368337833883398340834183428343834483458346834783488349835083518352835383548355835683578358835983608361836283638364836583668367836883698370837183728373837483758376837783788379838083818382838383848385838683878388838983908391839283938394839583968397839883998400840184028403840484058406840784088409841084118412841384148415841684178418841984208421842284238424842584268427842884298430843184328433843484358436843784388439844084418442844384448445844684478448844984508451845284538454845584568457845884598460846184628463846484658466846784688469847084718472847384748475847684778478847984808481848284838484848584868487848884898490849184928493849484958496849784988499850085018502850385048505850685078508850985108511851285138514851585168517851885198520852185228523852485258526852785288529853085318532853385348535853685378538853985408541854285438544854585468547854885498550855185528553855485558556855785588559856085618562856385648565856685678568856985708571857285738574857585768577857885798580858185828583858485858586858785888589859085918592859385948595859685978598859986008601860286038604860586068607860886098610861186128613861486158616861786188619862086218622862386248625862686278628862986308631863286338634863586368637863886398640864186428643864486458646864786488649865086518652865386548655865686578658865986608661866286638664866586668667866886698670867186728673867486758676867786788679868086818682868386848685868686878688868986908691869286938694869586968697869886998700870187028703870487058706870787088709871087118712871387148715871687178718871987208721872287238724872587268727872887298730873187328733873487358736873787388739874087418742874387448745874687478748874987508751875287538754875587568757875887598760876187628763876487658766876787688769877087718772877387748775877687778778877987808781878287838784878587868787878887898790879187928793879487958796879787988799880088018802880388048805880688078808880988108811881288138814881588168817881888198820882188228823882488258826882788288829883088318832883388348835883688378838883988408841884288438844884588468847884888498850885188528853885488558856885788588859886088618862886388648865886688678868886988708871887288738874887588768877887888798880888188828883888488858886888788888889889088918892889388948895889688978898889989008901890289038904890589068907890889098910891189128913891489158916891789188919892089218922892389248925892689278928892989308931893289338934893589368937893889398940894189428943894489458946894789488949895089518952895389548955895689578958895989608961896289638964896589668967896889698970897189728973897489758976897789788979898089818982898389848985898689878988898989908991899289938994899589968997899889999000900190029003900490059006900790089009901090119012901390149015901690179018901990209021902290239024902590269027902890299030903190329033903490359036903790389039904090419042904390449045904690479048904990509051905290539054905590569057905890599060906190629063906490659066906790689069907090719072907390749075907690779078907990809081908290839084908590869087908890899090909190929093909490959096909790989099910091019102910391049105910691079108910991109111911291139114911591169117911891199120912191229123912491259126912791289129913091319132913391349135913691379138913991409141914291439144914591469147914891499150915191529153915491559156915791589159916091619162916391649165916691679168916991709171917291739174917591769177917891799180918191829183918491859186918791889189919091919192919391949195919691979198919992009201920292039204920592069207920892099210921192129213921492159216921792189219922092219222922392249225922692279228922992309231923292339234923592369237923892399240924192429243924492459246924792489249925092519252925392549255925692579258925992609261926292639264926592669267926892699270927192729273927492759276927792789279928092819282928392849285928692879288928992909291929292939294929592969297929892999300930193029303930493059306930793089309931093119312931393149315931693179318931993209321932293239324932593269327932893299330933193329333933493359336933793389339934093419342934393449345934693479348934993509351935293539354935593569357935893599360936193629363936493659366936793689369937093719372937393749375937693779378937993809381938293839384938593869387938893899390939193929393939493959396939793989399940094019402940394049405940694079408940994109411941294139414941594169417941894199420942194229423942494259426942794289429943094319432943394349435943694379438943994409441944294439444944594469447944894499450945194529453945494559456945794589459946094619462946394649465946694679468946994709471947294739474947594769477947894799480948194829483948494859486948794889489949094919492949394949495949694979498949995009501950295039504950595069507950895099510951195129513951495159516951795189519952095219522952395249525952695279528952995309531953295339534953595369537953895399540954195429543954495459546954795489549955095519552955395549555955695579558955995609561956295639564956595669567956895699570957195729573957495759576957795789579958095819582958395849585958695879588958995909591959295939594959595969597959895999600960196029603960496059606960796089609961096119612961396149615961696179618961996209621962296239624962596269627962896299630963196329633963496359636963796389639964096419642964396449645964696479648964996509651965296539654965596569657965896599660966196629663966496659666966796689669967096719672967396749675967696779678967996809681968296839684968596869687968896899690969196929693969496959696969796989699970097019702970397049705970697079708970997109711971297139714971597169717971897199720972197229723972497259726972797289729973097319732973397349735973697379738973997409741974297439744974597469747974897499750975197529753975497559756975797589759976097619762976397649765976697679768976997709771977297739774977597769777977897799780978197829783978497859786978797889789979097919792979397949795979697979798979998009801980298039804980598069807980898099810981198129813981498159816981798189819982098219822982398249825982698279828982998309831983298339834983598369837983898399840984198429843984498459846984798489849985098519852985398549855985698579858985998609861986298639864986598669867986898699870987198729873987498759876987798789879988098819882988398849885988698879888988998909891989298939894989598969897989898999900990199029903990499059906990799089909991099119912991399149915991699179918991999209921992299239924992599269927
  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": "adacb23e06435d8d20e0dde48aee4742",
  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.5.0",
  1753. "source": {
  1754. "type": "git",
  1755. "url": "https://git.drupalcode.org/project/adminimal_theme.git",
  1756. "reference": "8.x-1.5"
  1757. },
  1758. "dist": {
  1759. "type": "zip",
  1760. "url": "https://ftp.drupal.org/files/projects/adminimal_theme-8.x-1.5.zip",
  1761. "reference": "8.x-1.5",
  1762. "shasum": "fb4457015d743faafecaa0776d2bebf2829a6738"
  1763. },
  1764. "require": {
  1765. "drupal/core": "~8.0"
  1766. },
  1767. "type": "drupal-theme",
  1768. "extra": {
  1769. "branch-alias": {
  1770. "dev-1.x": "1.x-dev"
  1771. },
  1772. "drupal": {
  1773. "version": "8.x-1.5",
  1774. "datestamp": "1558584484",
  1775. "security-coverage": {
  1776. "status": "covered",
  1777. "message": "Covered by Drupal's security advisory policy"
  1778. }
  1779. }
  1780. },
  1781. "notification-url": "https://packages.drupal.org/8/downloads",
  1782. "license": [
  1783. "GPL-2.0+"
  1784. ],
  1785. "authors": [
  1786. {
  1787. "name": "ANDiTKO",
  1788. "homepage": "https://www.drupal.org/user/1428124"
  1789. },
  1790. {
  1791. "name": "andrey.troeglazov",
  1792. "homepage": "https://www.drupal.org/user/3145389"
  1793. },
  1794. {
  1795. "name": "realityloop",
  1796. "homepage": "https://www.drupal.org/user/139189"
  1797. }
  1798. ],
  1799. "description": "Drupal administration theme with modern minimalist design.",
  1800. "homepage": "https://www.drupal.org/project/adminimal_theme",
  1801. "support": {
  1802. "source": "https://git.drupalcode.org/project/adminimal_theme",
  1803. "issues": "https://www.drupal.org/project/issues/adminimal_theme"
  1804. }
  1805. },
  1806. {
  1807. "name": "drupal/audiofield",
  1808. "version": "1.9.0",
  1809. "source": {
  1810. "type": "git",
  1811. "url": "https://git.drupalcode.org/project/audiofield.git",
  1812. "reference": "8.x-1.9"
  1813. },
  1814. "dist": {
  1815. "type": "zip",
  1816. "url": "https://ftp.drupal.org/files/projects/audiofield-8.x-1.9.zip",
  1817. "reference": "8.x-1.9",
  1818. "shasum": "ddb2ca8dd5125a2bd0104e0001037c6fa2716682"
  1819. },
  1820. "require": {
  1821. "drupal/core": "~8.0"
  1822. },
  1823. "type": "drupal-module",
  1824. "extra": {
  1825. "drupal": {
  1826. "version": "8.x-1.9",
  1827. "datestamp": "1553712781",
  1828. "security-coverage": {
  1829. "status": "covered",
  1830. "message": "Covered by Drupal's security advisory policy"
  1831. }
  1832. },
  1833. "drush": {
  1834. "services": {
  1835. "drush.services.yml": "^9"
  1836. }
  1837. }
  1838. },
  1839. "notification-url": "https://packages.drupal.org/8/downloads",
  1840. "license": [
  1841. "GPL-2.0+"
  1842. ],
  1843. "authors": [
  1844. {
  1845. "name": "Daniel Moberly",
  1846. "homepage": "https://www.drupal.org/u/danielmoberly",
  1847. "role": "Maintainer"
  1848. },
  1849. {
  1850. "name": "josipsaric",
  1851. "homepage": "https://www.drupal.org/user/3063287"
  1852. },
  1853. {
  1854. "name": "tamerzg",
  1855. "homepage": "https://www.drupal.org/user/464564"
  1856. }
  1857. ],
  1858. "description": "AudioField Module",
  1859. "homepage": "https://www.drupal.org/project/audiofield",
  1860. "support": {
  1861. "source": "https://git.drupalcode.org/project/audiofield",
  1862. "issues": "https://www.drupal.org/project/issues/audiofield"
  1863. }
  1864. },
  1865. {
  1866. "name": "drupal/autologout",
  1867. "version": "1.3.0",
  1868. "source": {
  1869. "type": "git",
  1870. "url": "https://git.drupalcode.org/project/autologout.git",
  1871. "reference": "8.x-1.3"
  1872. },
  1873. "dist": {
  1874. "type": "zip",
  1875. "url": "https://ftp.drupal.org/files/projects/autologout-8.x-1.3.zip",
  1876. "reference": "8.x-1.3",
  1877. "shasum": "87733b2042d9dcdee0d8f33d206872208a8c97ea"
  1878. },
  1879. "require": {
  1880. "drupal/core": "^8 || ^9"
  1881. },
  1882. "type": "drupal-module",
  1883. "extra": {
  1884. "drupal": {
  1885. "version": "8.x-1.3",
  1886. "datestamp": "1587193798",
  1887. "security-coverage": {
  1888. "status": "covered",
  1889. "message": "Covered by Drupal's security advisory policy"
  1890. }
  1891. },
  1892. "patches_applied": {
  1893. "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"
  1894. }
  1895. },
  1896. "notification-url": "https://packages.drupal.org/8/downloads",
  1897. "license": [
  1898. "GPL-2.0+"
  1899. ],
  1900. "authors": [
  1901. {
  1902. "name": "AjK",
  1903. "homepage": "https://www.drupal.org/user/39030"
  1904. },
  1905. {
  1906. "name": "AjitS",
  1907. "homepage": "https://www.drupal.org/user/981944"
  1908. },
  1909. {
  1910. "name": "boshtian",
  1911. "homepage": "https://www.drupal.org/user/1773456"
  1912. },
  1913. {
  1914. "name": "dandrews",
  1915. "homepage": "https://www.drupal.org/user/2014490"
  1916. },
  1917. {
  1918. "name": "darksnow",
  1919. "homepage": "https://www.drupal.org/user/391915"
  1920. },
  1921. {
  1922. "name": "johnennew",
  1923. "homepage": "https://www.drupal.org/user/1150042"
  1924. },
  1925. {
  1926. "name": "jrglasgow",
  1927. "homepage": "https://www.drupal.org/user/36590"
  1928. },
  1929. {
  1930. "name": "kmasood",
  1931. "homepage": "https://www.drupal.org/user/1262860"
  1932. },
  1933. {
  1934. "name": "levelos",
  1935. "homepage": "https://www.drupal.org/user/54135"
  1936. },
  1937. {
  1938. "name": "prabeen.giri",
  1939. "homepage": "https://www.drupal.org/user/913078"
  1940. },
  1941. {
  1942. "name": "str8",
  1943. "homepage": "https://www.drupal.org/user/2865063"
  1944. }
  1945. ],
  1946. "description": "Adds automated timed logout.",
  1947. "homepage": "http://drupal.org/project/autologout",
  1948. "support": {
  1949. "source": "https://git.drupalcode.org/project/autologout"
  1950. }
  1951. },
  1952. {
  1953. "name": "drupal/basic",
  1954. "version": "1.3.0",
  1955. "source": {
  1956. "type": "git",
  1957. "url": "https://git.drupalcode.org/project/basic.git",
  1958. "reference": "8.x-1.3"
  1959. },
  1960. "dist": {
  1961. "type": "zip",
  1962. "url": "https://ftp.drupal.org/files/projects/basic-8.x-1.3.zip",
  1963. "reference": "8.x-1.3",
  1964. "shasum": "d42e75327d54ae38cf988ebe77f995b44fbc45f7"
  1965. },
  1966. "require": {
  1967. "drupal/core": "~8.0"
  1968. },
  1969. "type": "drupal-theme",
  1970. "extra": {
  1971. "branch-alias": {
  1972. "dev-1.x": "1.x-dev"
  1973. },
  1974. "drupal": {
  1975. "version": "8.x-1.3",
  1976. "datestamp": "1508096944",
  1977. "security-coverage": {
  1978. "status": "covered",
  1979. "message": "Covered by Drupal's security advisory policy"
  1980. }
  1981. }
  1982. },
  1983. "notification-url": "https://packages.drupal.org/8/downloads",
  1984. "license": [
  1985. "GPL-2.0+"
  1986. ],
  1987. "authors": [
  1988. {
  1989. "name": "Steve Krueger",
  1990. "homepage": "http://thejibe.com",
  1991. "email": "steve@thejibe.com",
  1992. "role": "Maintainer"
  1993. },
  1994. {
  1995. "name": "Joël Pittet",
  1996. "homepage": "https://www.drupal.org/u/joelpittet",
  1997. "email": "joel@pittet.ca",
  1998. "role": "Maintainer"
  1999. },
  2000. {
  2001. "name": "Leah Wagner",
  2002. "homepage": "http://thejibe.com",
  2003. "email": "leah@thejibe.com",
  2004. "role": "Maintainer"
  2005. },
  2006. {
  2007. "name": "Catherine Winters",
  2008. "homepage": "http://www.catherinewinters.com",
  2009. "email": "catherine@catherinewinters.com",
  2010. "role": "Maintainer"
  2011. },
  2012. {
  2013. "name": "Johannes Schmidt",
  2014. "homepage": "http://2tabs.com",
  2015. "email": "mail@2tabs.com",
  2016. "role": "Maintainer"
  2017. },
  2018. {
  2019. "name": "johannez",
  2020. "homepage": "https://www.drupal.org/user/670988"
  2021. },
  2022. {
  2023. "name": "leahtard",
  2024. "homepage": "https://www.drupal.org/user/683812"
  2025. }
  2026. ],
  2027. "description": "HTML5, SASS, Responsive grid starter theme.",
  2028. "homepage": "http://drupal.org/project/basic",
  2029. "support": {
  2030. "source": "http://cgit.drupalcode.org/basic",
  2031. "issues": "https://www.drupal.org/project/issues/basic",
  2032. "irc": "irc://irc.freenode.org/drupal-contribute"
  2033. }
  2034. },
  2035. {
  2036. "name": "drupal/better_messages",
  2037. "version": "1.0.0-alpha2",
  2038. "source": {
  2039. "type": "git",
  2040. "url": "https://git.drupalcode.org/project/better_messages.git",
  2041. "reference": "8.x-1.0-alpha2"
  2042. },
  2043. "dist": {
  2044. "type": "zip",
  2045. "url": "https://ftp.drupal.org/files/projects/better_messages-8.x-1.0-alpha2.zip",
  2046. "reference": "8.x-1.0-alpha2",
  2047. "shasum": "ca09231502d5e0d8a5c0d16f9efc5430091b8a38"
  2048. },
  2049. "require": {
  2050. "drupal/core": "~8.0"
  2051. },
  2052. "type": "drupal-module",
  2053. "extra": {
  2054. "branch-alias": {
  2055. "dev-1.x": "1.x-dev"
  2056. },
  2057. "drupal": {
  2058. "version": "8.x-1.0-alpha2",
  2059. "datestamp": "1517663880",
  2060. "security-coverage": {
  2061. "status": "not-covered",
  2062. "message": "Alpha releases are not covered by Drupal security advisories."
  2063. }
  2064. }
  2065. },
  2066. "notification-url": "https://packages.drupal.org/8/downloads",
  2067. "license": [
  2068. "GPL-2.0-or-later"
  2069. ],
  2070. "authors": [
  2071. {
  2072. "name": "Mohammed J. Razem",
  2073. "homepage": "https://www.drupal.org/user/255384"
  2074. },
  2075. {
  2076. "name": "bucefal91",
  2077. "homepage": "https://www.drupal.org/user/504128"
  2078. },
  2079. {
  2080. "name": "le72",
  2081. "homepage": "https://www.drupal.org/user/1866896"
  2082. }
  2083. ],
  2084. "description": "Better Messages module for Drupal 8.",
  2085. "homepage": "https://www.drupal.org/project/better_messages",
  2086. "support": {
  2087. "source": "https://git.drupalcode.org/project/better_messages"
  2088. }
  2089. },
  2090. {
  2091. "name": "drupal/bulkdelete",
  2092. "version": "dev-1.x",
  2093. "source": {
  2094. "type": "git",
  2095. "url": "https://git.drupalcode.org/project/bulkdelete.git",
  2096. "reference": "36e12429e99606463b9ef15203c2018de69965b2"
  2097. },
  2098. "require": {
  2099. "drupal/core": "^8.7.7 || ^9"
  2100. },
  2101. "type": "drupal-module",
  2102. "extra": {
  2103. "branch-alias": {
  2104. "dev-1.x": "1.x-dev"
  2105. },
  2106. "drupal": {
  2107. "version": "8.x-1.x-dev",
  2108. "datestamp": "1569586386",
  2109. "security-coverage": {
  2110. "status": "not-covered",
  2111. "message": "Dev releases are not covered by Drupal security advisories."
  2112. }
  2113. }
  2114. },
  2115. "notification-url": "https://packages.drupal.org/8/downloads",
  2116. "license": [
  2117. "GPL-2.0-or-later"
  2118. ],
  2119. "authors": [
  2120. {
  2121. "name": "Kars-T",
  2122. "homepage": "https://www.drupal.org/user/224499"
  2123. },
  2124. {
  2125. "name": "Rahul Seth",
  2126. "homepage": "https://www.drupal.org/user/2694359"
  2127. },
  2128. {
  2129. "name": "adriancid",
  2130. "homepage": "https://www.drupal.org/user/1962106"
  2131. },
  2132. {
  2133. "name": "robertDouglass",
  2134. "homepage": "https://www.drupal.org/user/5449"
  2135. }
  2136. ],
  2137. "description": "Adds an administrative option to bulk delete nodes by content type using the batch API.",
  2138. "homepage": "https://www.drupal.org/project/bulkdelete",
  2139. "support": {
  2140. "source": "https://git.drupalcode.org/project/bulkdelete"
  2141. },
  2142. "time": "2020-05-24T06:01:38+00:00"
  2143. },
  2144. {
  2145. "name": "drupal/color_field",
  2146. "version": "2.4.0",
  2147. "source": {
  2148. "type": "git",
  2149. "url": "https://git.drupalcode.org/project/color_field.git",
  2150. "reference": "8.x-2.4"
  2151. },
  2152. "dist": {
  2153. "type": "zip",
  2154. "url": "https://ftp.drupal.org/files/projects/color_field-8.x-2.4.zip",
  2155. "reference": "8.x-2.4",
  2156. "shasum": "11c163a409f4f70083f188d917fecc6052c53a2f"
  2157. },
  2158. "require": {
  2159. "drupal/core": "^8 || ^9"
  2160. },
  2161. "require-dev": {
  2162. "drupal/token": "~1.3",
  2163. "nickwilde1990/php-composter-phpcs-drupal": "^2.0"
  2164. },
  2165. "suggest": {
  2166. "bower-asset/jquery-simple-color": "^v1.2.2: Provides JavaScript library necessary for the Color Grid widget",
  2167. "bower-asset/spectrum": "^1.8: Provides JavaScript library necessary for Spectrum widget."
  2168. },
  2169. "type": "drupal-module",
  2170. "extra": {
  2171. "drupal": {
  2172. "version": "8.x-2.4",
  2173. "datestamp": "1596479692",
  2174. "security-coverage": {
  2175. "status": "covered",
  2176. "message": "Covered by Drupal's security advisory policy"
  2177. }
  2178. }
  2179. },
  2180. "notification-url": "https://packages.drupal.org/8/downloads",
  2181. "license": [
  2182. "GPL-2.0-or-later"
  2183. ],
  2184. "authors": [
  2185. {
  2186. "name": "targoo",
  2187. "homepage": "https://www.drupal.org/user/431910",
  2188. "role": "Maintainer"
  2189. },
  2190. {
  2191. "name": "Nick Wilde",
  2192. "homepage": "https://www.drupal.org/user/nickwilde",
  2193. "role": "Maintainer"
  2194. }
  2195. ],
  2196. "description": "Provides a color field type to store the color value and opacity",
  2197. "homepage": "https://www.drupal.org/project/color_field",
  2198. "support": {
  2199. "source": "https://git.drupalcode.org/project/color_field",
  2200. "issues": "https://www.drupal.org/project/issues/color_field?version=8.x"
  2201. }
  2202. },
  2203. {
  2204. "name": "drupal/config_devel",
  2205. "version": "1.7.0",
  2206. "source": {
  2207. "type": "git",
  2208. "url": "https://git.drupalcode.org/project/config_devel.git",
  2209. "reference": "8.x-1.7"
  2210. },
  2211. "dist": {
  2212. "type": "zip",
  2213. "url": "https://ftp.drupal.org/files/projects/config_devel-8.x-1.7.zip",
  2214. "reference": "8.x-1.7",
  2215. "shasum": "4ebcf4fb2a2842232b9bf9b0855e3728df918fc7"
  2216. },
  2217. "require": {
  2218. "drupal/core": "*"
  2219. },
  2220. "type": "drupal-module",
  2221. "extra": {
  2222. "drupal": {
  2223. "version": "8.x-1.7",
  2224. "datestamp": "1590070764",
  2225. "security-coverage": {
  2226. "status": "covered",
  2227. "message": "Covered by Drupal's security advisory policy"
  2228. }
  2229. }
  2230. },
  2231. "notification-url": "https://packages.drupal.org/8/downloads",
  2232. "license": [
  2233. "GPL-2.0+"
  2234. ],
  2235. "authors": [
  2236. {
  2237. "name": "alexpott",
  2238. "homepage": "https://www.drupal.org/user/157725"
  2239. },
  2240. {
  2241. "name": "benjy",
  2242. "homepage": "https://www.drupal.org/user/1852732"
  2243. },
  2244. {
  2245. "name": "chx",
  2246. "homepage": "https://www.drupal.org/user/9446"
  2247. },
  2248. {
  2249. "name": "joachim",
  2250. "homepage": "https://www.drupal.org/user/107701"
  2251. },
  2252. {
  2253. "name": "nedjo",
  2254. "homepage": "https://www.drupal.org/user/4481"
  2255. },
  2256. {
  2257. "name": "tim.plunkett",
  2258. "homepage": "https://www.drupal.org/user/241634"
  2259. },
  2260. {
  2261. "name": "vijaycs85",
  2262. "homepage": "https://www.drupal.org/user/93488"
  2263. }
  2264. ],
  2265. "description": "Helps developers work with configuration.",
  2266. "homepage": "https://www.drupal.org/project/config_devel",
  2267. "support": {
  2268. "source": "https://git.drupalcode.org/project/config_devel"
  2269. }
  2270. },
  2271. {
  2272. "name": "drupal/config_filter",
  2273. "version": "1.6.0",
  2274. "source": {
  2275. "type": "git",
  2276. "url": "https://git.drupalcode.org/project/config_filter.git",
  2277. "reference": "8.x-1.6"
  2278. },
  2279. "dist": {
  2280. "type": "zip",
  2281. "url": "https://ftp.drupal.org/files/projects/config_filter-8.x-1.6.zip",
  2282. "reference": "8.x-1.6",
  2283. "shasum": "5c95f853c751a5eaa21701b540c463442b1be1e3"
  2284. },
  2285. "require": {
  2286. "drupal/core": "^8 || ^9"
  2287. },
  2288. "suggest": {
  2289. "drupal/config_split": "Split site configuration for different environments."
  2290. },
  2291. "type": "drupal-module",
  2292. "extra": {
  2293. "drupal": {
  2294. "version": "8.x-1.6",
  2295. "datestamp": "1597845156",
  2296. "security-coverage": {
  2297. "status": "covered",
  2298. "message": "Covered by Drupal's security advisory policy"
  2299. }
  2300. }
  2301. },
  2302. "notification-url": "https://packages.drupal.org/8/downloads",
  2303. "license": [
  2304. "GPL-2.0-or-later"
  2305. ],
  2306. "authors": [
  2307. {
  2308. "name": "Fabian Bircher",
  2309. "homepage": "https://www.drupal.org/u/bircher",
  2310. "email": "opensource@fabianbircher.com",
  2311. "role": "Maintainer"
  2312. },
  2313. {
  2314. "name": "Nuvole Web",
  2315. "homepage": "http://nuvole.org",
  2316. "email": "info@nuvole.org",
  2317. "role": "Maintainer"
  2318. },
  2319. {
  2320. "name": "pescetti",
  2321. "homepage": "https://www.drupal.org/user/436244"
  2322. }
  2323. ],
  2324. "description": "Config Filter allows other modules to interact with a ConfigStorage through filter plugins.",
  2325. "homepage": "https://www.drupal.org/project/config_filter",
  2326. "keywords": [
  2327. "Drupal",
  2328. "configuration",
  2329. "configuration management"
  2330. ],
  2331. "support": {
  2332. "source": "https://git.drupalcode.org/project/config_filter",
  2333. "issues": "https://www.drupal.org/project/issues/config_filter",
  2334. "slack": "https://drupal.slack.com/archives/C45342CDD"
  2335. }
  2336. },
  2337. {
  2338. "name": "drupal/config_ignore",
  2339. "version": "2.2.0",
  2340. "source": {
  2341. "type": "git",
  2342. "url": "https://git.drupalcode.org/project/config_ignore.git",
  2343. "reference": "8.x-2.2"
  2344. },
  2345. "dist": {
  2346. "type": "zip",
  2347. "url": "https://ftp.drupal.org/files/projects/config_ignore-8.x-2.2.zip",
  2348. "reference": "8.x-2.2",
  2349. "shasum": "18af5772087b90dd4b83c2c6e292d8ea2f8834e0"
  2350. },
  2351. "require": {
  2352. "drupal/config_filter": "1.*",
  2353. "drupal/core": "~8.0"
  2354. },
  2355. "type": "drupal-module",
  2356. "extra": {
  2357. "branch-alias": {
  2358. "dev-2.x": "2.x-dev"
  2359. },
  2360. "drupal": {
  2361. "version": "8.x-2.2",
  2362. "datestamp": "1576528386",
  2363. "security-coverage": {
  2364. "status": "covered",
  2365. "message": "Covered by Drupal's security advisory policy"
  2366. }
  2367. }
  2368. },
  2369. "notification-url": "https://packages.drupal.org/8/downloads",
  2370. "license": [
  2371. "GPL-2.0+"
  2372. ],
  2373. "authors": [
  2374. {
  2375. "name": "Tommy Lynge Jørgensen",
  2376. "homepage": "https://www.drupal.org/u/tlyngej",
  2377. "email": "tlyngej@gmail.com",
  2378. "role": "Maintainer"
  2379. },
  2380. {
  2381. "name": "Fabian Bircher",
  2382. "homepage": "https://www.drupal.org/u/bircher",
  2383. "role": "Maintainer"
  2384. },
  2385. {
  2386. "name": "tlyngej",
  2387. "homepage": "https://www.drupal.org/user/413139"
  2388. }
  2389. ],
  2390. "description": "Ignore certain configuration during import.",
  2391. "homepage": "http://drupal.org/project/config_ignore",
  2392. "support": {
  2393. "source": "http://cgit.drupalcode.org/config_ignore",
  2394. "issues": "http://drupal.org/project/config_ignore",
  2395. "irc": "irc://irc.freenode.org/drupal-contribute"
  2396. }
  2397. },
  2398. {
  2399. "name": "drupal/config_update",
  2400. "version": "1.7.0",
  2401. "source": {
  2402. "type": "git",
  2403. "url": "https://git.drupalcode.org/project/config_update.git",
  2404. "reference": "8.x-1.7"
  2405. },
  2406. "dist": {
  2407. "type": "zip",
  2408. "url": "https://ftp.drupal.org/files/projects/config_update-8.x-1.7.zip",
  2409. "reference": "8.x-1.7",
  2410. "shasum": "8f079abf7c2ea826a27fa5224b0770a26404c968"
  2411. },
  2412. "require": {
  2413. "drupal/core": "^8 || ^9"
  2414. },
  2415. "type": "drupal-module",
  2416. "extra": {
  2417. "drupal": {
  2418. "version": "8.x-1.7",
  2419. "datestamp": "1586355587",
  2420. "security-coverage": {
  2421. "status": "covered",
  2422. "message": "Covered by Drupal's security advisory policy"
  2423. }
  2424. }
  2425. },
  2426. "notification-url": "https://packages.drupal.org/8/downloads",
  2427. "license": [
  2428. "GPL-2.0-or-later"
  2429. ],
  2430. "authors": [
  2431. {
  2432. "name": "jhodgdon",
  2433. "homepage": "https://www.drupal.org/user/155601"
  2434. },
  2435. {
  2436. "name": "nedjo",
  2437. "homepage": "https://www.drupal.org/user/4481"
  2438. }
  2439. ],
  2440. "description": "Provides basic revert and update functionality for other modules",
  2441. "homepage": "https://www.drupal.org/project/config_update",
  2442. "support": {
  2443. "source": "https://git.drupalcode.org/project/config_update"
  2444. }
  2445. },
  2446. {
  2447. "name": "drupal/context",
  2448. "version": "4.0.0-beta2",
  2449. "source": {
  2450. "type": "git",
  2451. "url": "https://git.drupalcode.org/project/context.git",
  2452. "reference": "8.x-4.0-beta2"
  2453. },
  2454. "dist": {
  2455. "type": "zip",
  2456. "url": "https://ftp.drupal.org/files/projects/context-8.x-4.0-beta2.zip",
  2457. "reference": "8.x-4.0-beta2",
  2458. "shasum": "e41bc912e1ec73bc4d08a3cf730dc2405a9213d3"
  2459. },
  2460. "require": {
  2461. "drupal/core": "~8.0"
  2462. },
  2463. "type": "drupal-module",
  2464. "extra": {
  2465. "drupal": {
  2466. "version": "8.x-4.0-beta2",
  2467. "datestamp": "1505378944",
  2468. "security-coverage": {
  2469. "status": "not-covered",
  2470. "message": "Beta releases are not covered by Drupal security advisories."
  2471. }
  2472. }
  2473. },
  2474. "notification-url": "https://packages.drupal.org/8/downloads",
  2475. "license": [
  2476. "MIT"
  2477. ],
  2478. "authors": [
  2479. {
  2480. "name": "Christoffer Palm",
  2481. "homepage": "http://www.oddhill.se/",
  2482. "email": "christoffer.palm@oddhill.se",
  2483. "role": "Developer"
  2484. },
  2485. {
  2486. "name": "NormySan",
  2487. "homepage": "https://www.drupal.org/user/112352"
  2488. },
  2489. {
  2490. "name": "Steven Jones",
  2491. "homepage": "https://www.drupal.org/user/99644"
  2492. },
  2493. {
  2494. "name": "alex_b",
  2495. "homepage": "https://www.drupal.org/user/53995"
  2496. },
  2497. {
  2498. "name": "boshtian",
  2499. "homepage": "https://www.drupal.org/user/1773456"
  2500. },
  2501. {
  2502. "name": "colan",
  2503. "homepage": "https://www.drupal.org/user/58704"
  2504. },
  2505. {
  2506. "name": "emanaton",
  2507. "homepage": "https://www.drupal.org/user/120853"
  2508. },
  2509. {
  2510. "name": "febbraro",
  2511. "homepage": "https://www.drupal.org/user/43670"
  2512. },
  2513. {
  2514. "name": "fizk",
  2515. "homepage": "https://www.drupal.org/user/473174"
  2516. },
  2517. {
  2518. "name": "hass",
  2519. "homepage": "https://www.drupal.org/user/85918"
  2520. },
  2521. {
  2522. "name": "hefox",
  2523. "homepage": "https://www.drupal.org/user/426416"
  2524. },
  2525. {
  2526. "name": "hyrcan",
  2527. "homepage": "https://www.drupal.org/user/26618"
  2528. },
  2529. {
  2530. "name": "jmiccolis",
  2531. "homepage": "https://www.drupal.org/user/31731"
  2532. },
  2533. {
  2534. "name": "nedjo",
  2535. "homepage": "https://www.drupal.org/user/4481"
  2536. },
  2537. {
  2538. "name": "tekante",
  2539. "homepage": "https://www.drupal.org/user/640024"
  2540. },
  2541. {
  2542. "name": "yhahn",
  2543. "homepage": "https://www.drupal.org/user/264833"
  2544. }
  2545. ],
  2546. "description": "Manage contextual conditions and reactions for different portions of your site.",
  2547. "homepage": "https://github.com/oddhill/context",
  2548. "keywords": [
  2549. "Drupal",
  2550. "block",
  2551. "conditions",
  2552. "context",
  2553. "visibility"
  2554. ],
  2555. "support": {
  2556. "source": "https://github.com/oddhill/context",
  2557. "issues": "https://github.com/oddhill/context/issues",
  2558. "docs": "https://github.com/oddhill/context"
  2559. }
  2560. },
  2561. {
  2562. "name": "drupal/core",
  2563. "version": "8.9.20",
  2564. "source": {
  2565. "type": "git",
  2566. "url": "https://github.com/drupal/core.git",
  2567. "reference": "39e2e1c32498338921923af66a90cb4a23a5b389"
  2568. },
  2569. "dist": {
  2570. "type": "zip",
  2571. "url": "https://api.github.com/repos/drupal/core/zipball/39e2e1c32498338921923af66a90cb4a23a5b389",
  2572. "reference": "39e2e1c32498338921923af66a90cb4a23a5b389",
  2573. "shasum": ""
  2574. },
  2575. "require": {
  2576. "asm89/stack-cors": "^1.1",
  2577. "composer/semver": "^1.0",
  2578. "doctrine/annotations": "^1.4",
  2579. "doctrine/common": "^2.7",
  2580. "easyrdf/easyrdf": "^0.9",
  2581. "egulias/email-validator": "^2.0",
  2582. "ext-date": "*",
  2583. "ext-dom": "*",
  2584. "ext-filter": "*",
  2585. "ext-gd": "*",
  2586. "ext-hash": "*",
  2587. "ext-json": "*",
  2588. "ext-pcre": "*",
  2589. "ext-pdo": "*",
  2590. "ext-session": "*",
  2591. "ext-simplexml": "*",
  2592. "ext-spl": "*",
  2593. "ext-tokenizer": "*",
  2594. "ext-xml": "*",
  2595. "guzzlehttp/guzzle": "^6.3",
  2596. "laminas/laminas-diactoros": "^1.8",
  2597. "laminas/laminas-feed": "^2.12",
  2598. "masterminds/html5": "^2.1",
  2599. "pear/archive_tar": "^1.4.14",
  2600. "php": "^7.0.8",
  2601. "psr/log": "^1.0",
  2602. "stack/builder": "^1.0",
  2603. "symfony-cmf/routing": "^1.4",
  2604. "symfony/class-loader": "~3.4.0",
  2605. "symfony/console": "~3.4.0",
  2606. "symfony/dependency-injection": "~3.4.26",
  2607. "symfony/event-dispatcher": "~3.4.0",
  2608. "symfony/http-foundation": "~3.4.35",
  2609. "symfony/http-kernel": "~3.4.14",
  2610. "symfony/polyfill-iconv": "^1.0",
  2611. "symfony/process": "~3.4.0",
  2612. "symfony/psr-http-message-bridge": "^1.1.2",
  2613. "symfony/routing": "~3.4.0",
  2614. "symfony/serializer": "~3.4.0",
  2615. "symfony/translation": "~3.4.0",
  2616. "symfony/validator": "~3.4.0",
  2617. "symfony/yaml": "~3.4.5",
  2618. "twig/twig": "^1.38.2",
  2619. "typo3/phar-stream-wrapper": "^3.1.3"
  2620. },
  2621. "conflict": {
  2622. "drupal/pathauto": "<1.6",
  2623. "drush/drush": "<8.1.10"
  2624. },
  2625. "replace": {
  2626. "drupal/action": "self.version",
  2627. "drupal/aggregator": "self.version",
  2628. "drupal/automated_cron": "self.version",
  2629. "drupal/ban": "self.version",
  2630. "drupal/bartik": "self.version",
  2631. "drupal/basic_auth": "self.version",
  2632. "drupal/big_pipe": "self.version",
  2633. "drupal/block": "self.version",
  2634. "drupal/block_content": "self.version",
  2635. "drupal/block_place": "self.version",
  2636. "drupal/book": "self.version",
  2637. "drupal/breakpoint": "self.version",
  2638. "drupal/ckeditor": "self.version",
  2639. "drupal/claro": "self.version",
  2640. "drupal/classy": "self.version",
  2641. "drupal/color": "self.version",
  2642. "drupal/comment": "self.version",
  2643. "drupal/config": "self.version",
  2644. "drupal/config_translation": "self.version",
  2645. "drupal/contact": "self.version",
  2646. "drupal/content_moderation": "self.version",
  2647. "drupal/content_translation": "self.version",
  2648. "drupal/contextual": "self.version",
  2649. "drupal/core-annotation": "self.version",
  2650. "drupal/core-assertion": "self.version",
  2651. "drupal/core-bridge": "self.version",
  2652. "drupal/core-class-finder": "self.version",
  2653. "drupal/core-datetime": "self.version",
  2654. "drupal/core-dependency-injection": "self.version",
  2655. "drupal/core-diff": "self.version",
  2656. "drupal/core-discovery": "self.version",
  2657. "drupal/core-event-dispatcher": "self.version",
  2658. "drupal/core-file-cache": "self.version",
  2659. "drupal/core-file-security": "self.version",
  2660. "drupal/core-filesystem": "self.version",
  2661. "drupal/core-gettext": "self.version",
  2662. "drupal/core-graph": "self.version",
  2663. "drupal/core-http-foundation": "self.version",
  2664. "drupal/core-php-storage": "self.version",
  2665. "drupal/core-plugin": "self.version",
  2666. "drupal/core-proxy-builder": "self.version",
  2667. "drupal/core-render": "self.version",
  2668. "drupal/core-serialization": "self.version",
  2669. "drupal/core-transliteration": "self.version",
  2670. "drupal/core-utility": "self.version",
  2671. "drupal/core-uuid": "self.version",
  2672. "drupal/core-version": "self.version",
  2673. "drupal/datetime": "self.version",
  2674. "drupal/datetime_range": "self.version",
  2675. "drupal/dblog": "self.version",
  2676. "drupal/dynamic_page_cache": "self.version",
  2677. "drupal/editor": "self.version",
  2678. "drupal/entity_reference": "self.version",
  2679. "drupal/field": "self.version",
  2680. "drupal/field_layout": "self.version",
  2681. "drupal/field_ui": "self.version",
  2682. "drupal/file": "self.version",
  2683. "drupal/filter": "self.version",
  2684. "drupal/forum": "self.version",
  2685. "drupal/hal": "self.version",
  2686. "drupal/help": "self.version",
  2687. "drupal/help_topics": "self.version",
  2688. "drupal/history": "self.version",
  2689. "drupal/image": "self.version",
  2690. "drupal/inline_form_errors": "self.version",
  2691. "drupal/jsonapi": "self.version",
  2692. "drupal/language": "self.version",
  2693. "drupal/layout_builder": "self.version",
  2694. "drupal/layout_discovery": "self.version",
  2695. "drupal/link": "self.version",
  2696. "drupal/locale": "self.version",
  2697. "drupal/media": "self.version",
  2698. "drupal/media_library": "self.version",
  2699. "drupal/menu_link_content": "self.version",
  2700. "drupal/menu_ui": "self.version",
  2701. "drupal/migrate": "self.version",
  2702. "drupal/migrate_drupal": "self.version",
  2703. "drupal/migrate_drupal_multilingual": "self.version",
  2704. "drupal/migrate_drupal_ui": "self.version",
  2705. "drupal/minimal": "self.version",
  2706. "drupal/node": "self.version",
  2707. "drupal/options": "self.version",
  2708. "drupal/page_cache": "self.version",
  2709. "drupal/path": "self.version",
  2710. "drupal/path_alias": "self.version",
  2711. "drupal/quickedit": "self.version",
  2712. "drupal/rdf": "self.version",
  2713. "drupal/responsive_image": "self.version",
  2714. "drupal/rest": "self.version",
  2715. "drupal/search": "self.version",
  2716. "drupal/serialization": "self.version",
  2717. "drupal/settings_tray": "self.version",
  2718. "drupal/seven": "self.version",
  2719. "drupal/shortcut": "self.version",
  2720. "drupal/simpletest": "self.version",
  2721. "drupal/standard": "self.version",
  2722. "drupal/stark": "self.version",
  2723. "drupal/statistics": "self.version",
  2724. "drupal/syslog": "self.version",
  2725. "drupal/system": "self.version",
  2726. "drupal/taxonomy": "self.version",
  2727. "drupal/telephone": "self.version",
  2728. "drupal/text": "self.version",
  2729. "drupal/toolbar": "self.version",
  2730. "drupal/tour": "self.version",
  2731. "drupal/tracker": "self.version",
  2732. "drupal/update": "self.version",
  2733. "drupal/user": "self.version",
  2734. "drupal/views": "self.version",
  2735. "drupal/views_ui": "self.version",
  2736. "drupal/workflows": "self.version",
  2737. "drupal/workspaces": "self.version"
  2738. },
  2739. "type": "drupal-core",
  2740. "extra": {
  2741. "drupal-scaffold": {
  2742. "file-mapping": {
  2743. "[project-root]/.editorconfig": "assets/scaffold/files/editorconfig",
  2744. "[project-root]/.gitattributes": "assets/scaffold/files/gitattributes",
  2745. "[web-root]/.csslintrc": "assets/scaffold/files/csslintrc",
  2746. "[web-root]/.eslintignore": "assets/scaffold/files/eslintignore",
  2747. "[web-root]/.eslintrc.json": "assets/scaffold/files/eslintrc.json",
  2748. "[web-root]/.ht.router.php": "assets/scaffold/files/ht.router.php",
  2749. "[web-root]/.htaccess": "assets/scaffold/files/htaccess",
  2750. "[web-root]/example.gitignore": "assets/scaffold/files/example.gitignore",
  2751. "[web-root]/index.php": "assets/scaffold/files/index.php",
  2752. "[web-root]/INSTALL.txt": "assets/scaffold/files/drupal.INSTALL.txt",
  2753. "[web-root]/README.txt": "assets/scaffold/files/drupal.README.txt",
  2754. "[web-root]/robots.txt": "assets/scaffold/files/robots.txt",
  2755. "[web-root]/update.php": "assets/scaffold/files/update.php",
  2756. "[web-root]/web.config": "assets/scaffold/files/web.config",
  2757. "[web-root]/sites/README.txt": "assets/scaffold/files/sites.README.txt",
  2758. "[web-root]/sites/development.services.yml": "assets/scaffold/files/development.services.yml",
  2759. "[web-root]/sites/example.settings.local.php": "assets/scaffold/files/example.settings.local.php",
  2760. "[web-root]/sites/example.sites.php": "assets/scaffold/files/example.sites.php",
  2761. "[web-root]/sites/default/default.services.yml": "assets/scaffold/files/default.services.yml",
  2762. "[web-root]/sites/default/default.settings.php": "assets/scaffold/files/default.settings.php",
  2763. "[web-root]/modules/README.txt": "assets/scaffold/files/modules.README.txt",
  2764. "[web-root]/profiles/README.txt": "assets/scaffold/files/profiles.README.txt",
  2765. "[web-root]/themes/README.txt": "assets/scaffold/files/themes.README.txt"
  2766. }
  2767. }
  2768. },
  2769. "autoload": {
  2770. "psr-4": {
  2771. "Drupal\\Core\\": "lib/Drupal/Core",
  2772. "Drupal\\Driver\\": "../drivers/lib/Drupal/Driver",
  2773. "Drupal\\Component\\": "lib/Drupal/Component"
  2774. },
  2775. "classmap": [
  2776. "lib/Drupal.php",
  2777. "lib/Drupal/Component/Utility/Timer.php",
  2778. "lib/Drupal/Component/Utility/Unicode.php",
  2779. "lib/Drupal/Core/Database/Database.php",
  2780. "lib/Drupal/Core/DrupalKernel.php",
  2781. "lib/Drupal/Core/DrupalKernelInterface.php",
  2782. "lib/Drupal/Core/Site/Settings.php"
  2783. ]
  2784. },
  2785. "notification-url": "https://packagist.org/downloads/",
  2786. "license": [
  2787. "GPL-2.0-or-later"
  2788. ],
  2789. "description": "Drupal is an open source content management platform powering millions of websites and applications.",
  2790. "support": {
  2791. "source": "https://github.com/drupal/core/tree/8.9.20"
  2792. },
  2793. "time": "2021-11-17T21:24:28+00:00"
  2794. },
  2795. {
  2796. "name": "drupal/core-composer-scaffold",
  2797. "version": "8.9.20",
  2798. "source": {
  2799. "type": "git",
  2800. "url": "https://github.com/drupal/core-composer-scaffold.git",
  2801. "reference": "c902d07cb49ef73777e2b33a39e54c2861a8c81d"
  2802. },
  2803. "dist": {
  2804. "type": "zip",
  2805. "url": "https://api.github.com/repos/drupal/core-composer-scaffold/zipball/c902d07cb49ef73777e2b33a39e54c2861a8c81d",
  2806. "reference": "c902d07cb49ef73777e2b33a39e54c2861a8c81d",
  2807. "shasum": ""
  2808. },
  2809. "require": {
  2810. "composer-plugin-api": "^1 || ^2",
  2811. "php": ">=7.0.8"
  2812. },
  2813. "conflict": {
  2814. "drupal-composer/drupal-scaffold": "*"
  2815. },
  2816. "require-dev": {
  2817. "composer/composer": "^1.8@stable"
  2818. },
  2819. "type": "composer-plugin",
  2820. "extra": {
  2821. "class": "Drupal\\Composer\\Plugin\\Scaffold\\Plugin",
  2822. "branch-alias": {
  2823. "dev-master": "1.0.x-dev"
  2824. }
  2825. },
  2826. "autoload": {
  2827. "psr-4": {
  2828. "Drupal\\Composer\\Plugin\\Scaffold\\": ""
  2829. }
  2830. },
  2831. "notification-url": "https://packagist.org/downloads/",
  2832. "license": [
  2833. "GPL-2.0-or-later"
  2834. ],
  2835. "description": "A flexible Composer project scaffold builder.",
  2836. "homepage": "https://www.drupal.org/project/drupal",
  2837. "keywords": [
  2838. "drupal"
  2839. ],
  2840. "support": {
  2841. "source": "https://github.com/drupal/core-composer-scaffold/tree/8.9.4"
  2842. },
  2843. "time": "2020-08-07T22:30:30+00:00"
  2844. },
  2845. {
  2846. "name": "drupal/core-recommended",
  2847. "version": "8.9.20",
  2848. "source": {
  2849. "type": "git",
  2850. "url": "https://github.com/drupal/core-recommended.git",
  2851. "reference": "49b9abf15bf4b82c5b47692e39770f2f3a76eaf1"
  2852. },
  2853. "dist": {
  2854. "type": "zip",
  2855. "url": "https://api.github.com/repos/drupal/core-recommended/zipball/49b9abf15bf4b82c5b47692e39770f2f3a76eaf1",
  2856. "reference": "49b9abf15bf4b82c5b47692e39770f2f3a76eaf1",
  2857. "shasum": ""
  2858. },
  2859. "require": {
  2860. "asm89/stack-cors": "1.3.0",
  2861. "composer/semver": "1.5.1",
  2862. "doctrine/annotations": "v1.4.0",
  2863. "doctrine/cache": "v1.6.2",
  2864. "doctrine/collections": "v1.4.0",
  2865. "doctrine/common": "v2.7.3",
  2866. "doctrine/inflector": "v1.2.0",
  2867. "doctrine/lexer": "1.0.2",
  2868. "drupal/core": "8.9.20",
  2869. "easyrdf/easyrdf": "0.9.1",
  2870. "egulias/email-validator": "2.1.17",
  2871. "guzzlehttp/guzzle": "6.5.4",
  2872. "guzzlehttp/promises": "v1.3.1",
  2873. "guzzlehttp/psr7": "1.6.1",
  2874. "laminas/laminas-diactoros": "1.8.7p2",
  2875. "laminas/laminas-escaper": "2.6.1",
  2876. "laminas/laminas-feed": "2.12.2",
  2877. "laminas/laminas-stdlib": "3.2.1",
  2878. "laminas/laminas-zendframework-bridge": "1.0.4",
  2879. "masterminds/html5": "2.3.0",
  2880. "paragonie/random_compat": "v9.99.99",
  2881. "pear/archive_tar": "1.4.14",
  2882. "pear/console_getopt": "v1.4.3",
  2883. "pear/pear-core-minimal": "v1.10.10",
  2884. "pear/pear_exception": "v1.0.1",
  2885. "psr/container": "1.0.0",
  2886. "psr/http-message": "1.0.1",
  2887. "psr/log": "1.1.3",
  2888. "ralouphie/getallheaders": "3.0.3",
  2889. "stack/builder": "v1.0.5",
  2890. "symfony-cmf/routing": "1.4.1",
  2891. "symfony/class-loader": "v3.4.41",
  2892. "symfony/console": "v3.4.41",
  2893. "symfony/debug": "v3.4.41",
  2894. "symfony/dependency-injection": "v3.4.41",
  2895. "symfony/event-dispatcher": "v3.4.41",
  2896. "symfony/http-foundation": "v3.4.41",
  2897. "symfony/http-kernel": "v3.4.44",
  2898. "symfony/polyfill-ctype": "v1.17.0",
  2899. "symfony/polyfill-iconv": "v1.17.0",
  2900. "symfony/polyfill-intl-idn": "v1.17.0",
  2901. "symfony/polyfill-mbstring": "v1.17.0",
  2902. "symfony/polyfill-php56": "v1.17.0",
  2903. "symfony/polyfill-php70": "v1.17.0",
  2904. "symfony/polyfill-php72": "v1.17.0",
  2905. "symfony/polyfill-util": "v1.17.0",
  2906. "symfony/process": "v3.4.41",
  2907. "symfony/psr-http-message-bridge": "v1.1.2",
  2908. "symfony/routing": "v3.4.41",
  2909. "symfony/serializer": "v3.4.41",
  2910. "symfony/translation": "v3.4.41",
  2911. "symfony/validator": "v3.4.41",
  2912. "symfony/yaml": "v3.4.41",
  2913. "twig/twig": "v1.42.5",
  2914. "typo3/phar-stream-wrapper": "v3.1.4"
  2915. },
  2916. "conflict": {
  2917. "webflo/drupal-core-strict": "*"
  2918. },
  2919. "type": "metapackage",
  2920. "notification-url": "https://packagist.org/downloads/",
  2921. "license": [
  2922. "GPL-2.0-or-later"
  2923. ],
  2924. "description": "Locked core dependencies; require this project INSTEAD OF drupal/core.",
  2925. "support": {
  2926. "source": "https://github.com/drupal/core-recommended/tree/8.9.20"
  2927. },
  2928. "time": "2021-11-17T21:24:28+00:00"
  2929. },
  2930. {
  2931. "name": "drupal/ctools",
  2932. "version": "3.4.0",
  2933. "source": {
  2934. "type": "git",
  2935. "url": "https://git.drupalcode.org/project/ctools.git",
  2936. "reference": "8.x-3.4"
  2937. },
  2938. "dist": {
  2939. "type": "zip",
  2940. "url": "https://ftp.drupal.org/files/projects/ctools-8.x-3.4.zip",
  2941. "reference": "8.x-3.4",
  2942. "shasum": "016ca5abb7ac4ca720352a72e8989f3ef0e20539"
  2943. },
  2944. "require": {
  2945. "drupal/core": "^8.7.7 || ^9"
  2946. },
  2947. "type": "drupal-module",
  2948. "extra": {
  2949. "drupal": {
  2950. "version": "8.x-3.4",
  2951. "datestamp": "1585763383",
  2952. "security-coverage": {
  2953. "status": "covered",
  2954. "message": "Covered by Drupal's security advisory policy"
  2955. }
  2956. }
  2957. },
  2958. "notification-url": "https://packages.drupal.org/8/downloads",
  2959. "license": [
  2960. "GPL-2.0+"
  2961. ],
  2962. "authors": [
  2963. {
  2964. "name": "Kris Vanderwater (EclipseGc)",
  2965. "homepage": "https://www.drupal.org/u/eclipsegc",
  2966. "role": "Maintainer"
  2967. },
  2968. {
  2969. "name": "Jakob Perry (japerry)",
  2970. "homepage": "https://www.drupal.org/u/japerry",
  2971. "role": "Maintainer"
  2972. },
  2973. {
  2974. "name": "Tim Plunkett (tim.plunkett)",
  2975. "homepage": "https://www.drupal.org/u/timplunkett",
  2976. "role": "Maintainer"
  2977. },
  2978. {
  2979. "name": "James Gilliland (neclimdul)",
  2980. "homepage": "https://www.drupal.org/u/neclimdul",
  2981. "role": "Maintainer"
  2982. },
  2983. {
  2984. "name": "Daniel Wehner (dawehner)",
  2985. "homepage": "https://www.drupal.org/u/dawehner",
  2986. "role": "Maintainer"
  2987. },
  2988. {
  2989. "name": "joelpittet",
  2990. "homepage": "https://www.drupal.org/user/160302"
  2991. },
  2992. {
  2993. "name": "merlinofchaos",
  2994. "homepage": "https://www.drupal.org/user/26979"
  2995. },
  2996. {
  2997. "name": "neclimdul",
  2998. "homepage": "https://www.drupal.org/user/48673"
  2999. },
  3000. {
  3001. "name": "sdboyer",
  3002. "homepage": "https://www.drupal.org/user/146719"
  3003. },
  3004. {
  3005. "name": "sun",
  3006. "homepage": "https://www.drupal.org/user/54136"
  3007. },
  3008. {
  3009. "name": "tim.plunkett",
  3010. "homepage": "https://www.drupal.org/user/241634"
  3011. }
  3012. ],
  3013. "description": "Provides a number of utility and helper APIs for Drupal developers and site builders.",
  3014. "homepage": "https://www.drupal.org/project/ctools",
  3015. "support": {
  3016. "source": "https://git.drupalcode.org/project/ctools",
  3017. "issues": "https://www.drupal.org/project/issues/ctools"
  3018. }
  3019. },
  3020. {
  3021. "name": "drupal/date_range_formatter",
  3022. "version": "3.1.0",
  3023. "source": {
  3024. "type": "git",
  3025. "url": "https://git.drupalcode.org/project/date_range_formatter.git",
  3026. "reference": "8.x-3.1"
  3027. },
  3028. "dist": {
  3029. "type": "zip",
  3030. "url": "https://ftp.drupal.org/files/projects/date_range_formatter-8.x-3.1.zip",
  3031. "reference": "8.x-3.1",
  3032. "shasum": "a98c511ac90eb92879235bc82a3aa643f7b5c173"
  3033. },
  3034. "require": {
  3035. "drupal/core": "*"
  3036. },
  3037. "type": "drupal-module",
  3038. "extra": {
  3039. "drupal": {
  3040. "version": "8.x-3.1",
  3041. "datestamp": "1502454544",
  3042. "security-coverage": {
  3043. "status": "covered",
  3044. "message": "Covered by Drupal's security advisory policy"
  3045. }
  3046. }
  3047. },
  3048. "notification-url": "https://packages.drupal.org/8/downloads",
  3049. "license": [
  3050. "GPL-2.0-or-later"
  3051. ],
  3052. "authors": [
  3053. {
  3054. "name": "maximpodorov",
  3055. "homepage": "https://www.drupal.org/user/515310"
  3056. },
  3057. {
  3058. "name": "sudishth",
  3059. "homepage": "https://www.drupal.org/user/1440562"
  3060. }
  3061. ],
  3062. "description": "Formats date ranges.",
  3063. "homepage": "https://www.drupal.org/project/date_range_formatter",
  3064. "support": {
  3065. "source": "https://git.drupalcode.org/project/date_range_formatter"
  3066. }
  3067. },
  3068. {
  3069. "name": "drupal/devel",
  3070. "version": "2.1.0",
  3071. "source": {
  3072. "type": "git",
  3073. "url": "https://git.drupalcode.org/project/devel.git",
  3074. "reference": "8.x-2.1"
  3075. },
  3076. "dist": {
  3077. "type": "zip",
  3078. "url": "https://ftp.drupal.org/files/projects/devel-8.x-2.1.zip",
  3079. "reference": "8.x-2.1",
  3080. "shasum": "8f735892922aa5f228e681e645e5f02b1c008f14"
  3081. },
  3082. "require": {
  3083. "drupal/core": "~8.0",
  3084. "symfony/var-dumper": "~2.7|^3|^4"
  3085. },
  3086. "type": "drupal-module",
  3087. "extra": {
  3088. "drupal": {
  3089. "version": "8.x-2.1",
  3090. "datestamp": "1556799496",
  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"
  3099. }
  3100. }
  3101. },
  3102. "notification-url": "https://packages.drupal.org/8/downloads",
  3103. "license": [
  3104. "GPL-2.0+"
  3105. ],
  3106. "authors": [
  3107. {
  3108. "name": "Moshe Weitzman",
  3109. "homepage": "https://github.com/weitzman",
  3110. "email": "weitzman@tejasa.com",
  3111. "role": "Maintainer"
  3112. },
  3113. {
  3114. "name": "Hans Salvisberg",
  3115. "homepage": "https://www.drupal.org/u/salvis",
  3116. "email": "drupal@salvisberg.com",
  3117. "role": "Maintainer"
  3118. },
  3119. {
  3120. "name": "Luca Lusso",
  3121. "homepage": "https://www.drupal.org/u/lussoluca",
  3122. "role": "Maintainer"
  3123. },
  3124. {
  3125. "name": "Marco (willzyx)",
  3126. "homepage": "https://www.drupal.org/u/willzyx",
  3127. "role": "Maintainer"
  3128. },
  3129. {
  3130. "name": "See contributors",
  3131. "homepage": "https://www.drupal.org/node/3236/committers"
  3132. }
  3133. ],
  3134. "description": "Various blocks, pages, and functions for developers.",
  3135. "homepage": "http://drupal.org/project/devel",
  3136. "support": {
  3137. "source": "http://cgit.drupalcode.org/devel",
  3138. "issues": "http://drupal.org/project/devel",
  3139. "irc": "irc://irc.freenode.org/drupal-contribute"
  3140. }
  3141. },
  3142. {
  3143. "name": "drupal/domain",
  3144. "version": "1.0.0-alpha16",
  3145. "source": {
  3146. "type": "git",
  3147. "url": "https://git.drupalcode.org/project/domain.git",
  3148. "reference": "8.x-1.0-alpha16"
  3149. },
  3150. "dist": {
  3151. "type": "zip",
  3152. "url": "https://ftp.drupal.org/files/projects/domain-8.x-1.0-alpha16.zip",
  3153. "reference": "8.x-1.0-alpha16",
  3154. "shasum": "d0088936af09e922ec873080d7960a1dc020bef8"
  3155. },
  3156. "require": {
  3157. "drupal/core": "^8.5"
  3158. },
  3159. "require-dev": {
  3160. "drupal/domain_access": "*"
  3161. },
  3162. "type": "drupal-module",
  3163. "extra": {
  3164. "drupal": {
  3165. "version": "8.x-1.0-alpha16",
  3166. "datestamp": "1561126081",
  3167. "security-coverage": {
  3168. "status": "not-covered",
  3169. "message": "Alpha releases are not covered by Drupal security advisories."
  3170. }
  3171. }
  3172. },
  3173. "notification-url": "https://packages.drupal.org/8/downloads",
  3174. "license": [
  3175. "GPL-2.0-or-later"
  3176. ],
  3177. "authors": [
  3178. {
  3179. "name": "agentrickard",
  3180. "homepage": "https://www.drupal.org/user/20975"
  3181. },
  3182. {
  3183. "name": "nonsie",
  3184. "homepage": "https://www.drupal.org/user/29899"
  3185. }
  3186. ],
  3187. "description": "Creates domain records within a Drupal installation.",
  3188. "homepage": "https://www.drupal.org/project/domain",
  3189. "support": {
  3190. "source": "https://git.drupalcode.org/project/domain"
  3191. }
  3192. },
  3193. {
  3194. "name": "drupal/domain_access",
  3195. "version": "1.0.0-alpha16",
  3196. "require": {
  3197. "drupal/core": "*",
  3198. "drupal/domain": "self.version"
  3199. },
  3200. "type": "metapackage",
  3201. "extra": {
  3202. "drupal": {
  3203. "version": "8.x-1.0-alpha16",
  3204. "datestamp": "1561126081",
  3205. "security-coverage": {
  3206. "status": "not-covered",
  3207. "message": "Alpha releases are not covered by Drupal security advisories."
  3208. }
  3209. }
  3210. },
  3211. "notification-url": "https://packages.drupal.org/8/downloads",
  3212. "license": [
  3213. "GPL-2.0-or-later"
  3214. ],
  3215. "authors": [
  3216. {
  3217. "name": "agentrickard",
  3218. "homepage": "https://www.drupal.org/user/20975"
  3219. },
  3220. {
  3221. "name": "nonsie",
  3222. "homepage": "https://www.drupal.org/user/29899"
  3223. }
  3224. ],
  3225. "description": "Domain-based access control for content.",
  3226. "homepage": "https://www.drupal.org/project/domain",
  3227. "support": {
  3228. "source": "https://git.drupalcode.org/project/domain"
  3229. }
  3230. },
  3231. {
  3232. "name": "drupal/domain_config",
  3233. "version": "1.0.0-alpha16",
  3234. "require": {
  3235. "drupal/core": "~8.0",
  3236. "drupal/domain": "self.version"
  3237. },
  3238. "type": "metapackage",
  3239. "extra": {
  3240. "drupal": {
  3241. "version": "8.x-1.0-alpha16",
  3242. "datestamp": "1561126081",
  3243. "security-coverage": {
  3244. "status": "not-covered",
  3245. "message": "Alpha releases are not covered by Drupal security advisories."
  3246. }
  3247. }
  3248. },
  3249. "notification-url": "https://packages.drupal.org/8/downloads",
  3250. "license": [
  3251. "GPL-2.0-or-later"
  3252. ],
  3253. "authors": [
  3254. {
  3255. "name": "agentrickard",
  3256. "homepage": "https://www.drupal.org/user/20975"
  3257. },
  3258. {
  3259. "name": "nonsie",
  3260. "homepage": "https://www.drupal.org/user/29899"
  3261. }
  3262. ],
  3263. "description": "Allows domain specific configuration.",
  3264. "homepage": "https://www.drupal.org/project/domain",
  3265. "support": {
  3266. "source": "https://git.drupalcode.org/project/domain"
  3267. }
  3268. },
  3269. {
  3270. "name": "drupal/domain_menu_access",
  3271. "version": "dev-1.x",
  3272. "source": {
  3273. "type": "git",
  3274. "url": "https://git.drupalcode.org/project/domain_menu_access.git",
  3275. "reference": "cd62e57ec09be4eca491e18e50092e10c19750f2"
  3276. },
  3277. "require": {
  3278. "drupal/core": "~8.0",
  3279. "drupal/domain": "^1",
  3280. "drupal/domain_access": "^1"
  3281. },
  3282. "type": "drupal-module",
  3283. "extra": {
  3284. "branch-alias": {
  3285. "dev-1.x": "1.x-dev"
  3286. },
  3287. "drupal": {
  3288. "version": "8.x-1.0-alpha2+3-dev",
  3289. "datestamp": "1551553085",
  3290. "security-coverage": {
  3291. "status": "not-covered",
  3292. "message": "Dev releases are not covered by Drupal security advisories."
  3293. }
  3294. }
  3295. },
  3296. "notification-url": "https://packages.drupal.org/8/downloads",
  3297. "license": [
  3298. "GPL-2.0+"
  3299. ],
  3300. "authors": [
  3301. {
  3302. "name": "Sebastien @Actualys",
  3303. "homepage": "https://www.drupal.org/user/380104"
  3304. },
  3305. {
  3306. "name": "maciej.zgadzaj",
  3307. "homepage": "https://www.drupal.org/user/271491"
  3308. },
  3309. {
  3310. "name": "pifagor",
  3311. "homepage": "https://www.drupal.org/user/2375692"
  3312. }
  3313. ],
  3314. "description": "Domain-based access control for menu link.",
  3315. "homepage": "https://www.drupal.org/project/domain_menu_access",
  3316. "support": {
  3317. "source": "https://git.drupalcode.org/project/domain_menu_access"
  3318. },
  3319. "time": "2019-04-11T06:07:16+00:00"
  3320. },
  3321. {
  3322. "name": "drupal/domain_site_settings",
  3323. "version": "1.3.0",
  3324. "source": {
  3325. "type": "git",
  3326. "url": "https://git.drupalcode.org/project/domain_site_settings.git",
  3327. "reference": "8.x-1.3"
  3328. },
  3329. "dist": {
  3330. "type": "zip",
  3331. "url": "https://ftp.drupal.org/files/projects/domain_site_settings-8.x-1.3.zip",
  3332. "reference": "8.x-1.3",
  3333. "shasum": "36ad22d8e31400f372b9e7f587578061b4fdc5db"
  3334. },
  3335. "require": {
  3336. "drupal/core": "~8.0",
  3337. "drupal/domain": "*",
  3338. "drupal/domain_config": "*"
  3339. },
  3340. "type": "drupal-module",
  3341. "extra": {
  3342. "branch-alias": {
  3343. "dev-1.x": "1.x-dev"
  3344. },
  3345. "drupal": {
  3346. "version": "8.x-1.3",
  3347. "datestamp": "1537684980",
  3348. "security-coverage": {
  3349. "status": "covered",
  3350. "message": "Covered by Drupal's security advisory policy"
  3351. }
  3352. },
  3353. "patches_applied": {
  3354. "Circular Error or Conflict with Language_Manager": "https://www.drupal.org/files/issues/2018-10-09/2930391-21.patch"
  3355. }
  3356. },
  3357. "notification-url": "https://packages.drupal.org/8/downloads",
  3358. "license": [
  3359. "GPL-2.0+"
  3360. ],
  3361. "authors": [
  3362. {
  3363. "name": "aloknarwaria",
  3364. "homepage": "https://www.drupal.org/user/906640"
  3365. },
  3366. {
  3367. "name": "malaynayak",
  3368. "homepage": "https://www.drupal.org/user/3529755"
  3369. }
  3370. ],
  3371. "description": "Basic Site Setting for Domains.",
  3372. "homepage": "https://www.drupal.org/project/domain_site_settings",
  3373. "keywords": [
  3374. "Drupal"
  3375. ],
  3376. "support": {
  3377. "source": "http://cgit.drupalcode.org/domain_site_settings",
  3378. "issues": "https://www.drupal.org/project/issues/domain_site_settings"
  3379. }
  3380. },
  3381. {
  3382. "name": "drupal/email_registration",
  3383. "version": "1.1.0",
  3384. "source": {
  3385. "type": "git",
  3386. "url": "https://git.drupalcode.org/project/email_registration.git",
  3387. "reference": "8.x-1.1"
  3388. },
  3389. "dist": {
  3390. "type": "zip",
  3391. "url": "https://ftp.drupal.org/files/projects/email_registration-8.x-1.1.zip",
  3392. "reference": "8.x-1.1",
  3393. "shasum": "cc0eef597216a6d025d9017df104f2693b029f96"
  3394. },
  3395. "require": {
  3396. "drupal/core": "^8.7.7 || ^9"
  3397. },
  3398. "conflict": {
  3399. "drupal/commerce": "<2.12"
  3400. },
  3401. "require-dev": {
  3402. "drupal/commerce": "^2.0"
  3403. },
  3404. "type": "drupal-module",
  3405. "extra": {
  3406. "drupal": {
  3407. "version": "8.x-1.1",
  3408. "datestamp": "1592317072",
  3409. "security-coverage": {
  3410. "status": "covered",
  3411. "message": "Covered by Drupal's security advisory policy"
  3412. }
  3413. }
  3414. },
  3415. "notification-url": "https://packages.drupal.org/8/downloads",
  3416. "license": [
  3417. "GPL-2.0-or-later"
  3418. ],
  3419. "authors": [
  3420. {
  3421. "name": "Greg Knaddison (greggles)",
  3422. "homepage": "https://www.drupal.org/u/greggles",
  3423. "role": "Maintainer"
  3424. },
  3425. {
  3426. "name": "Andrey Postnikov (andypost)",
  3427. "homepage": "https://www.drupal.org/u/andypost",
  3428. "role": "Maintainer"
  3429. },
  3430. {
  3431. "name": "Chris Herberte",
  3432. "homepage": "https://www.drupal.org/u/chris-herberte",
  3433. "role": "Maintainer"
  3434. },
  3435. {
  3436. "name": "Moshe Weitzman (moshe weitzman)",
  3437. "homepage": "https://www.drupal.org/u/moshe-weitzman",
  3438. "role": "Maintainer"
  3439. }
  3440. ],
  3441. "description": "Allows users to register with an email address as their username.",
  3442. "homepage": "https://www.drupal.org/project/email_registration",
  3443. "support": {
  3444. "source": "https://git.drupalcode.org/project/email_registration",
  3445. "issues": "http://drupal.org/project/issues/email_registration"
  3446. }
  3447. },
  3448. {
  3449. "name": "drupal/entity",
  3450. "version": "dev-1.x",
  3451. "source": {
  3452. "type": "git",
  3453. "url": "https://git.drupalcode.org/project/entity.git",
  3454. "reference": "3d3a99924df1b65564a417e74802bb524691dfd8"
  3455. },
  3456. "require": {
  3457. "drupal/core": "^8.8 || ^9"
  3458. },
  3459. "type": "drupal-module",
  3460. "extra": {
  3461. "branch-alias": {
  3462. "dev-1.x": "1.x-dev"
  3463. },
  3464. "drupal": {
  3465. "version": "8.x-1.0+5-dev",
  3466. "datestamp": "1594294834",
  3467. "security-coverage": {
  3468. "status": "not-covered",
  3469. "message": "Dev releases are not covered by Drupal security advisories."
  3470. }
  3471. }
  3472. },
  3473. "notification-url": "https://packages.drupal.org/8/downloads",
  3474. "license": [
  3475. "GPL-2.0-or-later"
  3476. ],
  3477. "authors": [
  3478. {
  3479. "name": "Berdir",
  3480. "homepage": "https://www.drupal.org/user/214652"
  3481. },
  3482. {
  3483. "name": "bojanz",
  3484. "homepage": "https://www.drupal.org/user/86106"
  3485. },
  3486. {
  3487. "name": "dawehner",
  3488. "homepage": "https://www.drupal.org/user/99340"
  3489. },
  3490. {
  3491. "name": "dixon_",
  3492. "homepage": "https://www.drupal.org/user/239911"
  3493. },
  3494. {
  3495. "name": "fago",
  3496. "homepage": "https://www.drupal.org/user/16747"
  3497. },
  3498. {
  3499. "name": "mglaman",
  3500. "homepage": "https://www.drupal.org/user/2416470"
  3501. }
  3502. ],
  3503. "description": "Provides expanded entity APIs, which will be moved to Drupal core one day.",
  3504. "homepage": "http://drupal.org/project/entity",
  3505. "support": {
  3506. "source": "https://git.drupalcode.org/project/entity"
  3507. },
  3508. "time": "2020-08-08T09:14:05+00:00"
  3509. },
  3510. {
  3511. "name": "drupal/features",
  3512. "version": "3.11.0",
  3513. "source": {
  3514. "type": "git",
  3515. "url": "https://git.drupalcode.org/project/features.git",
  3516. "reference": "8.x-3.11"
  3517. },
  3518. "dist": {
  3519. "type": "zip",
  3520. "url": "https://ftp.drupal.org/files/projects/features-8.x-3.11.zip",
  3521. "reference": "8.x-3.11",
  3522. "shasum": "cfdb1de2fb791856069c50b63eb28cb8d7c93442"
  3523. },
  3524. "require": {
  3525. "drupal/config_update": "^1.4",
  3526. "drupal/core": "^8.8 || ^9"
  3527. },
  3528. "type": "drupal-module",
  3529. "extra": {
  3530. "drupal": {
  3531. "version": "8.x-3.11",
  3532. "datestamp": "1591023154",
  3533. "security-coverage": {
  3534. "status": "covered",
  3535. "message": "Covered by Drupal's security advisory policy"
  3536. }
  3537. },
  3538. "drush": {
  3539. "services": {
  3540. "drush.services.yml": "^9"
  3541. }
  3542. }
  3543. },
  3544. "notification-url": "https://packages.drupal.org/8/downloads",
  3545. "license": [
  3546. "GPL-2.0-or-later"
  3547. ],
  3548. "authors": [
  3549. {
  3550. "name": "dawehner",
  3551. "homepage": "https://www.drupal.org/user/99340"
  3552. },
  3553. {
  3554. "name": "donquixote",
  3555. "homepage": "https://www.drupal.org/user/459338"
  3556. },
  3557. {
  3558. "name": "e2thex",
  3559. "homepage": "https://www.drupal.org/user/189123"
  3560. },
  3561. {
  3562. "name": "febbraro",
  3563. "homepage": "https://www.drupal.org/user/43670"
  3564. },
  3565. {
  3566. "name": "flocondetoile",
  3567. "homepage": "https://www.drupal.org/user/2006064"
  3568. },
  3569. {
  3570. "name": "jmiccolis",
  3571. "homepage": "https://www.drupal.org/user/31731"
  3572. },
  3573. {
  3574. "name": "joseph.olstad",
  3575. "homepage": "https://www.drupal.org/user/1321830"
  3576. },
  3577. {
  3578. "name": "mpotter",
  3579. "homepage": "https://www.drupal.org/user/616192"
  3580. },
  3581. {
  3582. "name": "nedjo",
  3583. "homepage": "https://www.drupal.org/user/4481"
  3584. },
  3585. {
  3586. "name": "tim.plunkett",
  3587. "homepage": "https://www.drupal.org/user/241634"
  3588. }
  3589. ],
  3590. "description": "Enables administrators to package configuration into modules",
  3591. "homepage": "https://www.drupal.org/project/features",
  3592. "support": {
  3593. "source": "https://git.drupalcode.org/project/features"
  3594. }
  3595. },
  3596. {
  3597. "name": "drupal/field_group",
  3598. "version": "3.1.0",
  3599. "source": {
  3600. "type": "git",
  3601. "url": "https://git.drupalcode.org/project/field_group.git",
  3602. "reference": "8.x-3.1"
  3603. },
  3604. "dist": {
  3605. "type": "zip",
  3606. "url": "https://ftp.drupal.org/files/projects/field_group-8.x-3.1.zip",
  3607. "reference": "8.x-3.1",
  3608. "shasum": "8a719eaea594f0ba874172831cb28da93c66b77a"
  3609. },
  3610. "require": {
  3611. "drupal/core": "^8.8 || ^9"
  3612. },
  3613. "require-dev": {
  3614. "drupal/jquery_ui_accordion": "^1.0"
  3615. },
  3616. "type": "drupal-module",
  3617. "extra": {
  3618. "drupal": {
  3619. "version": "8.x-3.1",
  3620. "datestamp": "1591772567",
  3621. "security-coverage": {
  3622. "status": "covered",
  3623. "message": "Covered by Drupal's security advisory policy"
  3624. }
  3625. }
  3626. },
  3627. "notification-url": "https://packages.drupal.org/8/downloads",
  3628. "license": [
  3629. "GPL-2.0-or-later"
  3630. ],
  3631. "authors": [
  3632. {
  3633. "name": "Hydra",
  3634. "homepage": "https://www.drupal.org/user/647364"
  3635. },
  3636. {
  3637. "name": "Stalski",
  3638. "homepage": "https://www.drupal.org/user/322618"
  3639. },
  3640. {
  3641. "name": "jyve",
  3642. "homepage": "https://www.drupal.org/user/591438"
  3643. },
  3644. {
  3645. "name": "nils.destoop",
  3646. "homepage": "https://www.drupal.org/user/361625"
  3647. },
  3648. {
  3649. "name": "swentel",
  3650. "homepage": "https://www.drupal.org/user/107403"
  3651. }
  3652. ],
  3653. "description": "Provides the field_group module.",
  3654. "homepage": "https://www.drupal.org/project/field_group",
  3655. "support": {
  3656. "source": "https://git.drupalcode.org/project/field_group",
  3657. "issues": "https://www.drupal.org/project/issues/field_group"
  3658. }
  3659. },
  3660. {
  3661. "name": "drupal/filefield_sources",
  3662. "version": "dev-1.x",
  3663. "source": {
  3664. "type": "git",
  3665. "url": "https://git.drupalcode.org/project/filefield_sources.git",
  3666. "reference": "38dfa6622a8876854887feefd3c348583ef0586f"
  3667. },
  3668. "require": {
  3669. "drupal/core": "*"
  3670. },
  3671. "require-dev": {
  3672. "drupal/imce": "*"
  3673. },
  3674. "type": "drupal-module",
  3675. "extra": {
  3676. "branch-alias": {
  3677. "dev-1.x": "1.x-dev"
  3678. },
  3679. "drupal": {
  3680. "version": "8.x-1.0-alpha2+2-dev",
  3681. "datestamp": "1579885386",
  3682. "security-coverage": {
  3683. "status": "not-covered",
  3684. "message": "Dev releases are not covered by Drupal security advisories."
  3685. }
  3686. }
  3687. },
  3688. "notification-url": "https://packages.drupal.org/8/downloads",
  3689. "license": [
  3690. "GPL-2.0-or-later"
  3691. ],
  3692. "authors": [
  3693. {
  3694. "name": "Nate Lampton (quicksketch)",
  3695. "homepage": "https://www.drupal.org/u/quicksketch",
  3696. "role": "Maintainer"
  3697. },
  3698. {
  3699. "name": "Andrey Khromyshev (profak)",
  3700. "homepage": "https://www.drupal.org/u/profak",
  3701. "role": "Maintainer"
  3702. },
  3703. {
  3704. "name": "David Valdez (gnuget)",
  3705. "homepage": "https://www.drupal.org/u/gnuget",
  3706. "role": "Maintainer"
  3707. }
  3708. ],
  3709. "description": "Extends File fields to allow referencing of existing files, remote files, and server files.",
  3710. "homepage": "https://www.drupal.org/project/filefield_sources",
  3711. "support": {
  3712. "source": "https://git.drupalcode.org/project/filefield_sources",
  3713. "issues": "https://www.drupal.org/project/issues/filefield_sources",
  3714. "irc": "irc://irc.freenode.org/drupal-contribute"
  3715. },
  3716. "time": "2020-01-30T15:32:54+00:00"
  3717. },
  3718. {
  3719. "name": "drupal/filter_perms",
  3720. "version": "dev-1.x",
  3721. "source": {
  3722. "type": "git",
  3723. "url": "https://git.drupalcode.org/project/filter_perms.git",
  3724. "reference": "f491dd73fd876f6de0b2252c6b9bf18e0e27b357"
  3725. },
  3726. "require": {
  3727. "drupal/core": "*"
  3728. },
  3729. "type": "drupal-module",
  3730. "extra": {
  3731. "branch-alias": {
  3732. "dev-1.x": "1.x-dev"
  3733. },
  3734. "drupal": {
  3735. "version": "8.x-1.x-dev",
  3736. "datestamp": "1469645939",
  3737. "security-coverage": {
  3738. "status": "not-covered",
  3739. "message": "Dev releases are not covered by Drupal security advisories."
  3740. }
  3741. }
  3742. },
  3743. "notification-url": "https://packages.drupal.org/8/downloads",
  3744. "license": [
  3745. "GPL-2.0-or-later"
  3746. ],
  3747. "authors": [
  3748. {
  3749. "name": "cYu",
  3750. "homepage": "https://www.drupal.org/user/202205"
  3751. },
  3752. {
  3753. "name": "deekayen",
  3754. "homepage": "https://www.drupal.org/user/972"
  3755. },
  3756. {
  3757. "name": "willzyx",
  3758. "homepage": "https://www.drupal.org/user/1043862"
  3759. }
  3760. ],
  3761. "description": "Provides role and module filters to simplify the user permissions page.",
  3762. "homepage": "https://www.drupal.org/project/filter_perms",
  3763. "support": {
  3764. "source": "https://git.drupalcode.org/project/filter_perms"
  3765. },
  3766. "time": "2016-07-27T19:01:11+00:00"
  3767. },
  3768. {
  3769. "name": "drupal/honeypot",
  3770. "version": "1.30.0",
  3771. "source": {
  3772. "type": "git",
  3773. "url": "https://git.drupalcode.org/project/honeypot.git",
  3774. "reference": "8.x-1.30"
  3775. },
  3776. "dist": {
  3777. "type": "zip",
  3778. "url": "https://ftp.drupal.org/files/projects/honeypot-8.x-1.30.zip",
  3779. "reference": "8.x-1.30",
  3780. "shasum": "1d7983e8e07feee4f13e4b05c9a10db15ae2097e"
  3781. },
  3782. "require": {
  3783. "drupal/core": "~8.0"
  3784. },
  3785. "type": "drupal-module",
  3786. "extra": {
  3787. "drupal": {
  3788. "version": "8.x-1.30",
  3789. "datestamp": "1576274288",
  3790. "security-coverage": {
  3791. "status": "covered",
  3792. "message": "Covered by Drupal's security advisory policy"
  3793. }
  3794. }
  3795. },
  3796. "notification-url": "https://packages.drupal.org/8/downloads",
  3797. "license": [
  3798. "GPL-2.0+"
  3799. ],
  3800. "authors": [
  3801. {
  3802. "name": "Jeff Geerling",
  3803. "homepage": "https://www.drupal.org/user/213194",
  3804. "email": "geerlingguy@mac.com"
  3805. },
  3806. {
  3807. "name": "geerlingguy",
  3808. "homepage": "https://www.drupal.org/user/389011"
  3809. },
  3810. {
  3811. "name": "vijaycs85",
  3812. "homepage": "https://www.drupal.org/user/93488"
  3813. }
  3814. ],
  3815. "description": "Mitigates spam form submissions using the honeypot method.",
  3816. "homepage": "https://www.drupal.org/project/honeypot",
  3817. "keywords": [
  3818. "deterrent",
  3819. "form",
  3820. "honeypot",
  3821. "honeytrap",
  3822. "php",
  3823. "spam"
  3824. ],
  3825. "support": {
  3826. "source": "https://git.drupalcode.org/project/honeypot"
  3827. }
  3828. },
  3829. {
  3830. "name": "drupal/linkit",
  3831. "version": "5.0.0-beta11",
  3832. "source": {
  3833. "type": "git",
  3834. "url": "https://git.drupalcode.org/project/linkit.git",
  3835. "reference": "8.x-5.0-beta11"
  3836. },
  3837. "dist": {
  3838. "type": "zip",
  3839. "url": "https://ftp.drupal.org/files/projects/linkit-8.x-5.0-beta11.zip",
  3840. "reference": "8.x-5.0-beta11",
  3841. "shasum": "9133a3e61deafdd6a9d5a8b31a1f42e16051ee97"
  3842. },
  3843. "require": {
  3844. "drupal/core": "^8.7.7 || ^9"
  3845. },
  3846. "require-dev": {
  3847. "drupal/imce": "*"
  3848. },
  3849. "type": "drupal-module",
  3850. "extra": {
  3851. "drupal": {
  3852. "version": "8.x-5.0-beta11",
  3853. "datestamp": "1591971693",
  3854. "security-coverage": {
  3855. "status": "not-covered",
  3856. "message": "Beta releases are not covered by Drupal security advisories."
  3857. }
  3858. }
  3859. },
  3860. "notification-url": "https://packages.drupal.org/8/downloads",
  3861. "license": [
  3862. "GPL-2.0+"
  3863. ],
  3864. "authors": [
  3865. {
  3866. "name": "Emil Stjerneman",
  3867. "homepage": "https://stjerneman.com",
  3868. "email": "emil@stjerneman.com",
  3869. "role": "Maintainer"
  3870. }
  3871. ],
  3872. "description": "Linkit - Enriched linking experience",
  3873. "homepage": "http://drupal.org/project/linkit",
  3874. "support": {
  3875. "source": "http://cgit.drupalcode.org/linkit",
  3876. "issues": "http://drupal.org/project/linkit"
  3877. }
  3878. },
  3879. {
  3880. "name": "drupal/login_emailusername",
  3881. "version": "1.1.0",
  3882. "source": {
  3883. "type": "git",
  3884. "url": "https://git.drupalcode.org/project/login_emailusername.git",
  3885. "reference": "8.x-1.1"
  3886. },
  3887. "dist": {
  3888. "type": "zip",
  3889. "url": "https://ftp.drupal.org/files/projects/login_emailusername-8.x-1.1.zip",
  3890. "reference": "8.x-1.1",
  3891. "shasum": "f484b76b538f4dbbae5a75b49577f4ddf576809e"
  3892. },
  3893. "require": {
  3894. "drupal/core": "~8.0"
  3895. },
  3896. "type": "drupal-module",
  3897. "extra": {
  3898. "branch-alias": {
  3899. "dev-1.x": "1.x-dev"
  3900. },
  3901. "drupal": {
  3902. "version": "8.x-1.1",
  3903. "datestamp": "1483456142",
  3904. "security-coverage": {
  3905. "status": "covered",
  3906. "message": "Covered by Drupal's security advisory policy"
  3907. }
  3908. },
  3909. "patches_applied": {
  3910. "rest login email or user name https://www.drupal.org/project/login_emailusername/issues/2910511#comment-12564801": "https://www.drupal.org/files/issues/2018-04-10/allow-rest-login-with-email-2910511-9.patch"
  3911. }
  3912. },
  3913. "notification-url": "https://packages.drupal.org/8/downloads",
  3914. "license": [
  3915. "GPL-2.0-or-later"
  3916. ],
  3917. "authors": [
  3918. {
  3919. "name": "rjjakes",
  3920. "homepage": "https://www.drupal.org/user/3457245"
  3921. }
  3922. ],
  3923. "description": "Allow users to log in with either their username OR email address using the same input box on the login form.",
  3924. "homepage": "https://www.drupal.org/project/login_emailusername",
  3925. "support": {
  3926. "source": "https://git.drupalcode.org/project/login_emailusername"
  3927. }
  3928. },
  3929. {
  3930. "name": "drupal/maillog",
  3931. "version": "dev-1.x",
  3932. "source": {
  3933. "type": "git",
  3934. "url": "https://git.drupalcode.org/project/maillog.git",
  3935. "reference": "3ec675bd7842c04bc01860fa8b3f424f95a17d93"
  3936. },
  3937. "require": {
  3938. "drupal/core": "*"
  3939. },
  3940. "type": "drupal-module",
  3941. "extra": {
  3942. "branch-alias": {
  3943. "dev-1.x": "1.x-dev"
  3944. },
  3945. "drupal": {
  3946. "version": "8.x-1.x-dev",
  3947. "datestamp": "1470431939",
  3948. "security-coverage": {
  3949. "status": "not-covered",
  3950. "message": "Project has not opted into security advisory coverage!"
  3951. }
  3952. }
  3953. },
  3954. "notification-url": "https://packages.drupal.org/8/downloads",
  3955. "license": [
  3956. "GPL-2.0-or-later"
  3957. ],
  3958. "authors": [
  3959. {
  3960. "name": "Berdir",
  3961. "homepage": "https://www.drupal.org/user/214652"
  3962. },
  3963. {
  3964. "name": "DamienMcKenna",
  3965. "homepage": "https://www.drupal.org/user/108450"
  3966. },
  3967. {
  3968. "name": "miro_dietiker",
  3969. "homepage": "https://www.drupal.org/user/227761"
  3970. },
  3971. {
  3972. "name": "pluess",
  3973. "homepage": "https://www.drupal.org/user/84659"
  3974. }
  3975. ],
  3976. "description": "Utility to log all Mails for debugging purposes. It is possible to suppress mail delivery for e.g. dev or staging systems.",
  3977. "homepage": "https://www.drupal.org/project/maillog",
  3978. "support": {
  3979. "source": "https://git.drupalcode.org/project/maillog"
  3980. },
  3981. "time": "2020-05-19T01:33:41+00:00"
  3982. },
  3983. {
  3984. "name": "drupal/matomo",
  3985. "version": "1.9.0",
  3986. "source": {
  3987. "type": "git",
  3988. "url": "https://git.drupalcode.org/project/matomo.git",
  3989. "reference": "8.x-1.9"
  3990. },
  3991. "dist": {
  3992. "type": "zip",
  3993. "url": "https://ftp.drupal.org/files/projects/matomo-8.x-1.9.zip",
  3994. "reference": "8.x-1.9",
  3995. "shasum": "2c818af730f834d3aef3f6b7aa29f05e6fa9246d"
  3996. },
  3997. "require": {
  3998. "drupal/core": "~8.5"
  3999. },
  4000. "require-dev": {
  4001. "drupal/php": "*",
  4002. "drupal/token": "*"
  4003. },
  4004. "type": "drupal-module",
  4005. "extra": {
  4006. "branch-alias": {
  4007. "dev-1.x": "1.x-dev"
  4008. },
  4009. "drupal": {
  4010. "version": "8.x-1.9",
  4011. "datestamp": "1549615080",
  4012. "security-coverage": {
  4013. "status": "covered",
  4014. "message": "Covered by Drupal's security advisory policy"
  4015. }
  4016. }
  4017. },
  4018. "notification-url": "https://packages.drupal.org/8/downloads",
  4019. "license": [
  4020. "GPL-2.0+"
  4021. ],
  4022. "authors": [
  4023. {
  4024. "name": "hass",
  4025. "homepage": "https://www.drupal.org/u/hass"
  4026. },
  4027. {
  4028. "name": "See other contributors",
  4029. "homepage": "https://www.drupal.org/node/247808/committers"
  4030. }
  4031. ],
  4032. "description": "Adds Matomo javascript tracking code to all your site's pages",
  4033. "homepage": "https://www.drupal.org/project/matomo",
  4034. "support": {
  4035. "source": "https://git.drupal.org/project/matomo.git",
  4036. "issues": "https://www.drupal.org/project/issues/matomo"
  4037. }
  4038. },
  4039. {
  4040. "name": "drupal/menu_admin_per_menu",
  4041. "version": "1.1.0",
  4042. "source": {
  4043. "type": "git",
  4044. "url": "https://git.drupalcode.org/project/menu_admin_per_menu.git",
  4045. "reference": "8.x-1.1"
  4046. },
  4047. "dist": {
  4048. "type": "zip",
  4049. "url": "https://ftp.drupal.org/files/projects/menu_admin_per_menu-8.x-1.1.zip",
  4050. "reference": "8.x-1.1",
  4051. "shasum": "a9522b06654faa2d9bd23f704c93e1093f3ff6ec"
  4052. },
  4053. "require": {
  4054. "drupal/core": "^8 || ^9"
  4055. },
  4056. "type": "drupal-module",
  4057. "extra": {
  4058. "drupal": {
  4059. "version": "8.x-1.1",
  4060. "datestamp": "1591098397",
  4061. "security-coverage": {
  4062. "status": "covered",
  4063. "message": "Covered by Drupal's security advisory policy"
  4064. }
  4065. }
  4066. },
  4067. "notification-url": "https://packages.drupal.org/8/downloads",
  4068. "license": [
  4069. "GPL-2.0-or-later"
  4070. ],
  4071. "authors": [
  4072. {
  4073. "name": "JeroenT",
  4074. "homepage": "https://www.drupal.org/user/2228934"
  4075. },
  4076. {
  4077. "name": "anrikun",
  4078. "homepage": "https://www.drupal.org/user/410199"
  4079. },
  4080. {
  4081. "name": "jonas139",
  4082. "homepage": "https://www.drupal.org/user/2873401"
  4083. },
  4084. {
  4085. "name": "mkdok",
  4086. "homepage": "https://www.drupal.org/user/3308753"
  4087. }
  4088. ],
  4089. "description": "Allows to give roles per menu admin permissions without giving them full administer menu permission.",
  4090. "homepage": "https://www.drupal.org/project/menu_admin_per_menu",
  4091. "support": {
  4092. "source": "https://git.drupalcode.org/project/menu_admin_per_menu"
  4093. }
  4094. },
  4095. {
  4096. "name": "drupal/metatag",
  4097. "version": "1.14.0",
  4098. "source": {
  4099. "type": "git",
  4100. "url": "https://git.drupalcode.org/project/metatag.git",
  4101. "reference": "8.x-1.14"
  4102. },
  4103. "dist": {
  4104. "type": "zip",
  4105. "url": "https://ftp.drupal.org/files/projects/metatag-8.x-1.14.zip",
  4106. "reference": "8.x-1.14",
  4107. "shasum": "9bf9f1517ad015d0c93ca1460e284c557624aa90"
  4108. },
  4109. "require": {
  4110. "drupal/core": "^8 || ^9",
  4111. "drupal/token": "^1.0"
  4112. },
  4113. "require-dev": {
  4114. "drupal/metatag_dc": "*",
  4115. "drupal/metatag_open_graph": "*",
  4116. "drupal/page_manager": "4.x-dev",
  4117. "drupal/panelizer": "4.x-dev",
  4118. "drupal/redirect": "1.x-dev"
  4119. },
  4120. "type": "drupal-module",
  4121. "extra": {
  4122. "drupal": {
  4123. "version": "8.x-1.14",
  4124. "datestamp": "1597183852",
  4125. "security-coverage": {
  4126. "status": "covered",
  4127. "message": "Covered by Drupal's security advisory policy"
  4128. }
  4129. }
  4130. },
  4131. "notification-url": "https://packages.drupal.org/8/downloads",
  4132. "license": [
  4133. "GPL-2.0-or-later"
  4134. ],
  4135. "authors": [
  4136. {
  4137. "name": "See contributors",
  4138. "homepage": "https://www.drupal.org/node/640498/committers",
  4139. "role": "Developer"
  4140. },
  4141. {
  4142. "name": "Dave Reid",
  4143. "homepage": "https://www.drupal.org/user/53892"
  4144. }
  4145. ],
  4146. "description": "Manage meta tags for all entities.",
  4147. "homepage": "https://www.drupal.org/project/metatag",
  4148. "keywords": [
  4149. "Drupal",
  4150. "seo"
  4151. ],
  4152. "support": {
  4153. "source": "https://git.drupalcode.org/project/metatag",
  4154. "issues": "https://www.drupal.org/project/issues/metatag",
  4155. "docs": "https://www.drupal.org/docs/8/modules/metatag"
  4156. }
  4157. },
  4158. {
  4159. "name": "drupal/migrate_plus",
  4160. "version": "5.0.0",
  4161. "source": {
  4162. "type": "git",
  4163. "url": "https://git.drupalcode.org/project/migrate_plus.git",
  4164. "reference": "8.x-5.0"
  4165. },
  4166. "dist": {
  4167. "type": "zip",
  4168. "url": "https://ftp.drupal.org/files/projects/migrate_plus-8.x-5.0.zip",
  4169. "reference": "8.x-5.0",
  4170. "shasum": "5509c76498e4c6141c29db626d20904e1e8593c6"
  4171. },
  4172. "require": {
  4173. "drupal/core": "^8 || ^9"
  4174. },
  4175. "require-dev": {
  4176. "drupal/migrate_example_advanced_setup": "*",
  4177. "drupal/migrate_example_setup": "*"
  4178. },
  4179. "suggest": {
  4180. "ext-soap": "*",
  4181. "sainsburys/guzzle-oauth2-plugin": "3.0 required for the OAuth2 authentication plugin"
  4182. },
  4183. "type": "drupal-module",
  4184. "extra": {
  4185. "drupal": {
  4186. "version": "8.x-5.0",
  4187. "datestamp": "1586234154",
  4188. "security-coverage": {
  4189. "status": "covered",
  4190. "message": "Covered by Drupal's security advisory policy"
  4191. }
  4192. }
  4193. },
  4194. "notification-url": "https://packages.drupal.org/8/downloads",
  4195. "license": [
  4196. "GPL-2.0+"
  4197. ],
  4198. "authors": [
  4199. {
  4200. "name": "Mike Ryan",
  4201. "homepage": "https://www.drupal.org/u/mikeryan",
  4202. "role": "Maintainer"
  4203. },
  4204. {
  4205. "name": "Lucas Hedding",
  4206. "homepage": "https://www.drupal.org/u/heddn",
  4207. "role": "Maintainer"
  4208. }
  4209. ],
  4210. "description": "Enhancements to core migration support.",
  4211. "homepage": "https://www.drupal.org/project/migrate_plus",
  4212. "support": {
  4213. "source": "https://git.drupalcode.org/project/migrate_plus",
  4214. "issues": "https://www.drupal.org/project/issues/migrate_plus",
  4215. "slack": "#migrate"
  4216. }
  4217. },
  4218. {
  4219. "name": "drupal/migrate_tools",
  4220. "version": "4.5.0",
  4221. "source": {
  4222. "type": "git",
  4223. "url": "https://git.drupalcode.org/project/migrate_tools.git",
  4224. "reference": "8.x-4.5"
  4225. },
  4226. "dist": {
  4227. "type": "zip",
  4228. "url": "https://ftp.drupal.org/files/projects/migrate_tools-8.x-4.5.zip",
  4229. "reference": "8.x-4.5",
  4230. "shasum": "06390b359bf53c50a30f2d6dc4c7542bfb1fe7ca"
  4231. },
  4232. "require": {
  4233. "drupal/core": "^8 || ^9",
  4234. "drupal/migrate_plus": "^4 || ^5"
  4235. },
  4236. "require-dev": {
  4237. "drupal/migrate_plus": "4.x-dev",
  4238. "drupal/migrate_source_csv": "^2.2",
  4239. "drush/drush": "^10"
  4240. },
  4241. "type": "drupal-module",
  4242. "extra": {
  4243. "drupal": {
  4244. "version": "8.x-4.5",
  4245. "datestamp": "1574693285",
  4246. "security-coverage": {
  4247. "status": "covered",
  4248. "message": "Covered by Drupal's security advisory policy"
  4249. }
  4250. },
  4251. "drush": {
  4252. "services": {
  4253. "drush.services.yml": "^9 || ^10"
  4254. }
  4255. }
  4256. },
  4257. "notification-url": "https://packages.drupal.org/8/downloads",
  4258. "license": [
  4259. "GPL-2.0-or-later"
  4260. ],
  4261. "authors": [
  4262. {
  4263. "name": "heddn",
  4264. "homepage": "https://www.drupal.org/user/1463982"
  4265. },
  4266. {
  4267. "name": "mikeryan",
  4268. "homepage": "https://www.drupal.org/user/4420"
  4269. },
  4270. {
  4271. "name": "moshe weitzman",
  4272. "homepage": "https://www.drupal.org/user/23"
  4273. }
  4274. ],
  4275. "description": "Tools to assist in developing and running migrations.",
  4276. "homepage": "http://drupal.org/project/migrate_tools",
  4277. "support": {
  4278. "source": "http://cgit.drupalcode.org/migrate_tools",
  4279. "issues": "http://drupal.org/project/migrate_tools",
  4280. "irc": "irc://irc.freenode.org/drupal-migrate"
  4281. }
  4282. },
  4283. {
  4284. "name": "drupal/path_alias_xt",
  4285. "version": "dev-1.x",
  4286. "source": {
  4287. "type": "git",
  4288. "url": "https://git.drupalcode.org/project/path_alias_xt.git",
  4289. "reference": "10ef76dd3eb25bc1342195336291ded3f2d8cc7e"
  4290. },
  4291. "require": {
  4292. "drupal/core": "^8.7.7 || ^9"
  4293. },
  4294. "type": "drupal-module",
  4295. "extra": {
  4296. "branch-alias": {
  4297. "dev-1.x": "1.x-dev"
  4298. },
  4299. "drupal": {
  4300. "version": "8.x-1.x-dev",
  4301. "datestamp": "1582322571",
  4302. "security-coverage": {
  4303. "status": "not-covered",
  4304. "message": "Dev releases are not covered by Drupal security advisories."
  4305. }
  4306. }
  4307. },
  4308. "notification-url": "https://packages.drupal.org/8/downloads",
  4309. "license": [
  4310. "GPL-2.0-or-later"
  4311. ],
  4312. "authors": [
  4313. {
  4314. "name": "RdeBoer",
  4315. "homepage": "https://www.drupal.org/user/404007"
  4316. },
  4317. {
  4318. "name": "adriancid",
  4319. "homepage": "https://www.drupal.org/user/1962106"
  4320. },
  4321. {
  4322. "name": "sdstyles",
  4323. "homepage": "https://www.drupal.org/user/1420228"
  4324. }
  4325. ],
  4326. "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.",
  4327. "homepage": "https://www.drupal.org/project/path_alias_xt",
  4328. "support": {
  4329. "source": "https://git.drupalcode.org/project/path_alias_xt"
  4330. },
  4331. "time": "2020-05-24T05:57:09+00:00"
  4332. },
  4333. {
  4334. "name": "drupal/pathauto",
  4335. "version": "1.8.0",
  4336. "source": {
  4337. "type": "git",
  4338. "url": "https://git.drupalcode.org/project/pathauto.git",
  4339. "reference": "8.x-1.8"
  4340. },
  4341. "dist": {
  4342. "type": "zip",
  4343. "url": "https://ftp.drupal.org/files/projects/pathauto-8.x-1.8.zip",
  4344. "reference": "8.x-1.8",
  4345. "shasum": "ede3216abb9c4f77709338d9147334c595046329"
  4346. },
  4347. "require": {
  4348. "drupal/core": "^8.8 || ^9",
  4349. "drupal/ctools": "*",
  4350. "drupal/token": "*"
  4351. },
  4352. "suggest": {
  4353. "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."
  4354. },
  4355. "type": "drupal-module",
  4356. "extra": {
  4357. "drupal": {
  4358. "version": "8.x-1.8",
  4359. "datestamp": "1588103046",
  4360. "security-coverage": {
  4361. "status": "covered",
  4362. "message": "Covered by Drupal's security advisory policy"
  4363. }
  4364. },
  4365. "drush": {
  4366. "services": {
  4367. "drush.services.yml": "^9 || ^10"
  4368. }
  4369. }
  4370. },
  4371. "notification-url": "https://packages.drupal.org/8/downloads",
  4372. "license": [
  4373. "GPL-2.0-or-later"
  4374. ],
  4375. "authors": [
  4376. {
  4377. "name": "Berdir",
  4378. "homepage": "https://www.drupal.org/user/214652"
  4379. },
  4380. {
  4381. "name": "Dave Reid",
  4382. "homepage": "https://www.drupal.org/user/53892"
  4383. },
  4384. {
  4385. "name": "Freso",
  4386. "homepage": "https://www.drupal.org/user/27504"
  4387. },
  4388. {
  4389. "name": "greggles",
  4390. "homepage": "https://www.drupal.org/user/36762"
  4391. }
  4392. ],
  4393. "description": "Provides a mechanism for modules to automatically generate aliases for the content they manage.",
  4394. "homepage": "https://www.drupal.org/project/pathauto",
  4395. "support": {
  4396. "source": "https://cgit.drupalcode.org/pathauto",
  4397. "issues": "https://www.drupal.org/project/issues/pathauto",
  4398. "documentation": "https://www.drupal.org/docs/8/modules/pathauto"
  4399. }
  4400. },
  4401. {
  4402. "name": "drupal/piwik",
  4403. "version": "1.4.0",
  4404. "source": {
  4405. "type": "git",
  4406. "url": "https://git.drupalcode.org/project/piwik.git",
  4407. "reference": "8.x-1.4"
  4408. },
  4409. "dist": {
  4410. "type": "zip",
  4411. "url": "https://ftp.drupal.org/files/projects/piwik-8.x-1.4.zip",
  4412. "reference": "8.x-1.4",
  4413. "shasum": "3692831f4b3de636e90679fb052ba8f30e49ac97"
  4414. },
  4415. "require": {
  4416. "drupal/core": "~8.0",
  4417. "drupal/matomo": "^1.0"
  4418. },
  4419. "require-dev": {
  4420. "drupal/php": "*",
  4421. "drupal/token": "*"
  4422. },
  4423. "type": "drupal-module",
  4424. "extra": {
  4425. "branch-alias": {
  4426. "dev-1.x": "1.x-dev"
  4427. },
  4428. "drupal": {
  4429. "version": "8.x-1.4",
  4430. "datestamp": "1530437786",
  4431. "security-coverage": {
  4432. "status": "covered",
  4433. "message": "Covered by Drupal's security advisory policy"
  4434. }
  4435. }
  4436. },
  4437. "notification-url": "https://packages.drupal.org/8/downloads",
  4438. "license": [
  4439. "GPL-2.0+"
  4440. ],
  4441. "authors": [
  4442. {
  4443. "name": "hass",
  4444. "homepage": "https://www.drupal.org/u/hass"
  4445. },
  4446. {
  4447. "name": "See other contributors",
  4448. "homepage": "https://www.drupal.org/node/247808/committers"
  4449. }
  4450. ],
  4451. "description": "Adds Piwik javascript tracking code to all your site's pages",
  4452. "homepage": "https://www.drupal.org/project/piwik",
  4453. "support": {
  4454. "source": "http://git.drupal.org/project/piwik.git",
  4455. "issues": "https://www.drupal.org/project/issues/piwik"
  4456. }
  4457. },
  4458. {
  4459. "name": "drupal/profile",
  4460. "version": "1.1.0",
  4461. "source": {
  4462. "type": "git",
  4463. "url": "https://git.drupalcode.org/project/profile.git",
  4464. "reference": "8.x-1.1"
  4465. },
  4466. "dist": {
  4467. "type": "zip",
  4468. "url": "https://ftp.drupal.org/files/projects/profile-8.x-1.1.zip",
  4469. "reference": "8.x-1.1",
  4470. "shasum": "b8f6aca4f432228e614dca0a50cb187e936e4825"
  4471. },
  4472. "require": {
  4473. "drupal/core": "^8.7.7 || ^9",
  4474. "drupal/entity": "^1.0-rc2"
  4475. },
  4476. "require-dev": {
  4477. "drupal/token": "^1.0"
  4478. },
  4479. "type": "drupal-module",
  4480. "extra": {
  4481. "drupal": {
  4482. "version": "8.x-1.1",
  4483. "datestamp": "1582134004",
  4484. "security-coverage": {
  4485. "status": "covered",
  4486. "message": "Covered by Drupal's security advisory policy"
  4487. }
  4488. }
  4489. },
  4490. "notification-url": "https://packages.drupal.org/8/downloads",
  4491. "license": [
  4492. "GPL-2.0+"
  4493. ],
  4494. "authors": [
  4495. {
  4496. "name": "bojanz",
  4497. "homepage": "https://www.drupal.org/user/86106"
  4498. },
  4499. {
  4500. "name": "daggerhart",
  4501. "homepage": "https://www.drupal.org/user/167806"
  4502. },
  4503. {
  4504. "name": "fago",
  4505. "homepage": "https://www.drupal.org/user/16747"
  4506. },
  4507. {
  4508. "name": "jsacksick",
  4509. "homepage": "https://www.drupal.org/user/972218"
  4510. },
  4511. {
  4512. "name": "mglaman",
  4513. "homepage": "https://www.drupal.org/user/2416470"
  4514. },
  4515. {
  4516. "name": "pcambra",
  4517. "homepage": "https://www.drupal.org/user/122101"
  4518. }
  4519. ],
  4520. "description": "Provides configurable user profiles.",
  4521. "homepage": "http://drupal.org/project/profile",
  4522. "support": {
  4523. "source": "https://git.drupalcode.org/project/profile"
  4524. }
  4525. },
  4526. {
  4527. "name": "drupal/redirect",
  4528. "version": "1.6.0",
  4529. "source": {
  4530. "type": "git",
  4531. "url": "https://git.drupalcode.org/project/redirect.git",
  4532. "reference": "8.x-1.6"
  4533. },
  4534. "dist": {
  4535. "type": "zip",
  4536. "url": "https://ftp.drupal.org/files/projects/redirect-8.x-1.6.zip",
  4537. "reference": "8.x-1.6",
  4538. "shasum": "f848e001deac8425ae57d4b9397087c491d37294"
  4539. },
  4540. "require": {
  4541. "drupal/core": "^8.8 || ^9"
  4542. },
  4543. "type": "drupal-module",
  4544. "extra": {
  4545. "drupal": {
  4546. "version": "8.x-1.6",
  4547. "datestamp": "1589312204",
  4548. "security-coverage": {
  4549. "status": "covered",
  4550. "message": "Covered by Drupal's security advisory policy"
  4551. }
  4552. }
  4553. },
  4554. "notification-url": "https://packages.drupal.org/8/downloads",
  4555. "license": [
  4556. "GPL-2.0-or-later"
  4557. ],
  4558. "authors": [
  4559. {
  4560. "name": "Berdir",
  4561. "homepage": "https://www.drupal.org/user/214652"
  4562. },
  4563. {
  4564. "name": "Dave Reid",
  4565. "homepage": "https://www.drupal.org/user/53892"
  4566. },
  4567. {
  4568. "name": "pifagor",
  4569. "homepage": "https://www.drupal.org/user/2375692"
  4570. }
  4571. ],
  4572. "description": "Allows users to redirect from old URLs to new URLs.",
  4573. "homepage": "https://www.drupal.org/project/redirect",
  4574. "support": {
  4575. "source": "https://git.drupalcode.org/project/redirect"
  4576. }
  4577. },
  4578. {
  4579. "name": "drupal/redis",
  4580. "version": "1.4.0",
  4581. "source": {
  4582. "type": "git",
  4583. "url": "https://git.drupalcode.org/project/redis.git",
  4584. "reference": "8.x-1.4"
  4585. },
  4586. "dist": {
  4587. "type": "zip",
  4588. "url": "https://ftp.drupal.org/files/projects/redis-8.x-1.4.zip",
  4589. "reference": "8.x-1.4",
  4590. "shasum": "87165acdda18873c1e3994c670bcb4cdafd3d0ff"
  4591. },
  4592. "require": {
  4593. "drupal/core": "^8.8 || ^9"
  4594. },
  4595. "suggest": {
  4596. "predis/predis": "^1.1.1"
  4597. },
  4598. "type": "drupal-module",
  4599. "extra": {
  4600. "branch-alias": {
  4601. "dev-1.x": "1.x-dev"
  4602. },
  4603. "drupal": {
  4604. "version": "8.x-1.4",
  4605. "datestamp": "1581504947",
  4606. "security-coverage": {
  4607. "status": "covered",
  4608. "message": "Covered by Drupal's security advisory policy"
  4609. }
  4610. }
  4611. },
  4612. "autoload": {
  4613. "psr-4": {
  4614. "Drupal\\redis\\": "src"
  4615. }
  4616. },
  4617. "notification-url": "https://packages.drupal.org/8/downloads",
  4618. "license": [
  4619. "GPL-2.0"
  4620. ],
  4621. "authors": [
  4622. {
  4623. "name": "Berdir",
  4624. "homepage": "https://www.drupal.org/user/214652"
  4625. },
  4626. {
  4627. "name": "pounard",
  4628. "homepage": "https://www.drupal.org/user/240164"
  4629. }
  4630. ],
  4631. "description": "Provide a module placeholder, for using as dependency for module that needs Redis.",
  4632. "homepage": "https://www.drupal.org/project/redis",
  4633. "support": {
  4634. "source": "https://git.drupalcode.org/project/redis"
  4635. }
  4636. },
  4637. {
  4638. "name": "drupal/restui",
  4639. "version": "1.18.0",
  4640. "source": {
  4641. "type": "git",
  4642. "url": "https://git.drupalcode.org/project/restui.git",
  4643. "reference": "8.x-1.18"
  4644. },
  4645. "dist": {
  4646. "type": "zip",
  4647. "url": "https://ftp.drupal.org/files/projects/restui-8.x-1.18.zip",
  4648. "reference": "8.x-1.18",
  4649. "shasum": "40edbe907d5ec6d6c6a00abd219c7305d90d19e5"
  4650. },
  4651. "require": {
  4652. "drupal/core": "^8.7.7 || ^9"
  4653. },
  4654. "type": "drupal-module",
  4655. "extra": {
  4656. "drupal": {
  4657. "version": "8.x-1.18",
  4658. "datestamp": "1586170645",
  4659. "security-coverage": {
  4660. "status": "covered",
  4661. "message": "Covered by Drupal's security advisory policy"
  4662. }
  4663. }
  4664. },
  4665. "notification-url": "https://packages.drupal.org/8/downloads",
  4666. "license": [
  4667. "GPL-2.0-or-later"
  4668. ],
  4669. "authors": [
  4670. {
  4671. "name": "-enzo-",
  4672. "homepage": "https://www.drupal.org/user/294937"
  4673. },
  4674. {
  4675. "name": "clemens.tolboom",
  4676. "homepage": "https://www.drupal.org/user/125814"
  4677. },
  4678. {
  4679. "name": "juampynr",
  4680. "homepage": "https://www.drupal.org/user/682736"
  4681. },
  4682. {
  4683. "name": "klausi",
  4684. "homepage": "https://www.drupal.org/user/262198"
  4685. }
  4686. ],
  4687. "description": "Provides a user interface to manage REST resources.",
  4688. "homepage": "https://www.drupal.org/project/restui",
  4689. "support": {
  4690. "source": "https://git.drupalcode.org/project/restui"
  4691. }
  4692. },
  4693. {
  4694. "name": "drupal/search_api",
  4695. "version": "1.17.0",
  4696. "source": {
  4697. "type": "git",
  4698. "url": "https://git.drupalcode.org/project/search_api.git",
  4699. "reference": "8.x-1.17"
  4700. },
  4701. "dist": {
  4702. "type": "zip",
  4703. "url": "https://ftp.drupal.org/files/projects/search_api-8.x-1.17.zip",
  4704. "reference": "8.x-1.17",
  4705. "shasum": "a9f3352f1c8c893c7032c11f00a23f76b9733b56"
  4706. },
  4707. "require": {
  4708. "drupal/core": "^8.8 || ^9"
  4709. },
  4710. "conflict": {
  4711. "drupal/search_api_solr": "2.* || 3.0 || 3.1"
  4712. },
  4713. "require-dev": {
  4714. "drupal/language_fallback_fix": "@dev",
  4715. "drupal/search_api_autocomplete": "@dev",
  4716. "drupal/search_api_db": "*"
  4717. },
  4718. "suggest": {
  4719. "drupal/facets": "Adds the ability to create faceted searches.",
  4720. "drupal/search_api_autocomplete": "Allows adding autocomplete suggestions to search fields.",
  4721. "drupal/search_api_solr": "Adds support for using Apache Solr as a backend."
  4722. },
  4723. "type": "drupal-module",
  4724. "extra": {
  4725. "drupal": {
  4726. "version": "8.x-1.17",
  4727. "datestamp": "1594482952",
  4728. "security-coverage": {
  4729. "status": "covered",
  4730. "message": "Covered by Drupal's security advisory policy"
  4731. }
  4732. },
  4733. "drush": {
  4734. "services": {
  4735. "drush.services.yml": "^9"
  4736. }
  4737. }
  4738. },
  4739. "notification-url": "https://packages.drupal.org/8/downloads",
  4740. "license": [
  4741. "GPL-2.0+"
  4742. ],
  4743. "authors": [
  4744. {
  4745. "name": "Thomas Seidl",
  4746. "homepage": "https://www.drupal.org/u/drunken-monkey"
  4747. },
  4748. {
  4749. "name": "Nick Veenhof",
  4750. "homepage": "https://www.drupal.org/u/nick_vh"
  4751. },
  4752. {
  4753. "name": "See other contributors",
  4754. "homepage": "https://www.drupal.org/node/790418/committers"
  4755. }
  4756. ],
  4757. "description": "Provides a generic framework for modules offering search capabilities.",
  4758. "homepage": "https://www.drupal.org/project/search_api",
  4759. "support": {
  4760. "source": "https://git.drupalcode.org/project/search_api",
  4761. "issues": "https://www.drupal.org/project/issues/search_api",
  4762. "irc": "irc://irc.freenode.org/drupal-search-api"
  4763. }
  4764. },
  4765. {
  4766. "name": "drupal/simple_sitemap",
  4767. "version": "3.7.0",
  4768. "source": {
  4769. "type": "git",
  4770. "url": "https://git.drupalcode.org/project/simple_sitemap.git",
  4771. "reference": "8.x-3.7"
  4772. },
  4773. "dist": {
  4774. "type": "zip",
  4775. "url": "https://ftp.drupal.org/files/projects/simple_sitemap-8.x-3.7.zip",
  4776. "reference": "8.x-3.7",
  4777. "shasum": "7b23930cc71d37f332c1e836bc18c29ed2ae8cde"
  4778. },
  4779. "require": {
  4780. "drupal/core": "^8 || ^9",
  4781. "ext-xmlwriter": "*"
  4782. },
  4783. "type": "drupal-module",
  4784. "extra": {
  4785. "drupal": {
  4786. "version": "8.x-3.7",
  4787. "datestamp": "1592298918",
  4788. "security-coverage": {
  4789. "status": "covered",
  4790. "message": "Covered by Drupal's security advisory policy"
  4791. }
  4792. },
  4793. "drush": {
  4794. "services": {
  4795. "drush.services.yml": "^9 || ^10"
  4796. }
  4797. }
  4798. },
  4799. "notification-url": "https://packages.drupal.org/8/downloads",
  4800. "license": [
  4801. "GPL-2.0-or-later"
  4802. ],
  4803. "authors": [
  4804. {
  4805. "name": "Pawel Ginalski (gbyte.co)",
  4806. "homepage": "https://www.drupal.org/u/gbyte.co",
  4807. "email": "contact@gbyte.co",
  4808. "role": "Maintainer"
  4809. }
  4810. ],
  4811. "description": "Creates a standard conform hreflang XML sitemap of the site content and provides a framework for developing other sitemap types.",
  4812. "homepage": "https://drupal.org/project/simple_sitemap",
  4813. "support": {
  4814. "source": "https://cgit.drupalcode.org/simple_sitemap",
  4815. "issues": "https://drupal.org/project/issues/simple_sitemap",
  4816. "irc": "irc://irc.freenode.org/drupal-contribute"
  4817. }
  4818. },
  4819. {
  4820. "name": "drupal/synonyms",
  4821. "version": "dev-1.x",
  4822. "source": {
  4823. "type": "git",
  4824. "url": "https://git.drupalcode.org/project/synonyms.git",
  4825. "reference": "5327ef244bad11e859eed9ff71b49cb8f9955190"
  4826. },
  4827. "require": {
  4828. "drupal/core": "^8.2"
  4829. },
  4830. "type": "drupal-module",
  4831. "extra": {
  4832. "branch-alias": {
  4833. "dev-1.x": "1.x-dev"
  4834. },
  4835. "drupal": {
  4836. "version": "8.x-1.0-alpha1+5-dev",
  4837. "datestamp": "1540141681",
  4838. "security-coverage": {
  4839. "status": "not-covered",
  4840. "message": "Dev releases are not covered by Drupal security advisories."
  4841. }
  4842. }
  4843. },
  4844. "notification-url": "https://packages.drupal.org/8/downloads",
  4845. "license": [
  4846. "GPL-2.0-or-later"
  4847. ],
  4848. "authors": [
  4849. {
  4850. "name": "Zen",
  4851. "homepage": "https://www.drupal.org/user/21209"
  4852. },
  4853. {
  4854. "name": "bojanz",
  4855. "homepage": "https://www.drupal.org/user/86106"
  4856. },
  4857. {
  4858. "name": "bucefal91",
  4859. "homepage": "https://www.drupal.org/user/504128"
  4860. }
  4861. ],
  4862. "description": "Provides synonyms feature for content entities.",
  4863. "homepage": "https://www.drupal.org/project/synonyms",
  4864. "support": {
  4865. "source": "https://git.drupalcode.org/project/synonyms"
  4866. },
  4867. "time": "2018-10-21T17:05:25+00:00"
  4868. },
  4869. {
  4870. "name": "drupal/token",
  4871. "version": "1.7.0",
  4872. "source": {
  4873. "type": "git",
  4874. "url": "https://git.drupalcode.org/project/token.git",
  4875. "reference": "8.x-1.7"
  4876. },
  4877. "dist": {
  4878. "type": "zip",
  4879. "url": "https://ftp.drupal.org/files/projects/token-8.x-1.7.zip",
  4880. "reference": "8.x-1.7",
  4881. "shasum": "c7e3a3757282e4c94e3c1fff08d01e22155cb853"
  4882. },
  4883. "require": {
  4884. "drupal/core": "^8.8 || ^9"
  4885. },
  4886. "type": "drupal-module",
  4887. "extra": {
  4888. "drupal": {
  4889. "version": "8.x-1.7",
  4890. "datestamp": "1589314266",
  4891. "security-coverage": {
  4892. "status": "covered",
  4893. "message": "Covered by Drupal's security advisory policy"
  4894. }
  4895. },
  4896. "drush": {
  4897. "services": {
  4898. "drush.services.yml": "^9 || ^10"
  4899. }
  4900. }
  4901. },
  4902. "notification-url": "https://packages.drupal.org/8/downloads",
  4903. "license": [
  4904. "GPL-2.0+"
  4905. ],
  4906. "authors": [
  4907. {
  4908. "name": "Berdir",
  4909. "homepage": "https://www.drupal.org/user/214652"
  4910. },
  4911. {
  4912. "name": "Dave Reid",
  4913. "homepage": "https://www.drupal.org/user/53892"
  4914. },
  4915. {
  4916. "name": "eaton",
  4917. "homepage": "https://www.drupal.org/user/16496"
  4918. },
  4919. {
  4920. "name": "fago",
  4921. "homepage": "https://www.drupal.org/user/16747"
  4922. },
  4923. {
  4924. "name": "greggles",
  4925. "homepage": "https://www.drupal.org/user/36762"
  4926. },
  4927. {
  4928. "name": "mikeryan",
  4929. "homepage": "https://www.drupal.org/user/4420"
  4930. }
  4931. ],
  4932. "description": "Provides a user interface for the Token API, some missing core tokens.",
  4933. "homepage": "https://www.drupal.org/project/token",
  4934. "support": {
  4935. "source": "https://git.drupalcode.org/project/token"
  4936. }
  4937. },
  4938. {
  4939. "name": "drupal/toolbar_themes",
  4940. "version": "dev-1.x",
  4941. "source": {
  4942. "type": "git",
  4943. "url": "https://git.drupalcode.org/project/toolbar_themes.git",
  4944. "reference": "62e79c8635ec13fe5a4dd67b87f698a14822c044"
  4945. },
  4946. "require": {
  4947. "drupal/core": "*"
  4948. },
  4949. "type": "drupal-module",
  4950. "extra": {
  4951. "branch-alias": {
  4952. "dev-1.x": "1.x-dev"
  4953. },
  4954. "drupal": {
  4955. "version": "8.x-1.0-alpha4+10-dev",
  4956. "datestamp": "1510689485",
  4957. "security-coverage": {
  4958. "status": "not-covered",
  4959. "message": "Project has not opted into security advisory coverage!"
  4960. }
  4961. }
  4962. },
  4963. "notification-url": "https://packages.drupal.org/8/downloads",
  4964. "license": [
  4965. "GPL-2.0-or-later"
  4966. ],
  4967. "authors": [
  4968. {
  4969. "name": "Jeff Burnz",
  4970. "homepage": "https://www.drupal.org/user/61393"
  4971. }
  4972. ],
  4973. "description": "Apply themes to the toolbar.",
  4974. "homepage": "https://www.drupal.org/project/toolbar_themes",
  4975. "support": {
  4976. "source": "https://git.drupalcode.org/project/toolbar_themes"
  4977. },
  4978. "time": "2017-11-14T19:57:02+00:00"
  4979. },
  4980. {
  4981. "name": "drupal/translation_views",
  4982. "version": "1.0.0-alpha10",
  4983. "source": {
  4984. "type": "git",
  4985. "url": "https://git.drupalcode.org/project/translation_views.git",
  4986. "reference": "8.x-1.0-alpha10"
  4987. },
  4988. "dist": {
  4989. "type": "zip",
  4990. "url": "https://ftp.drupal.org/files/projects/translation_views-8.x-1.0-alpha10.zip",
  4991. "reference": "8.x-1.0-alpha10",
  4992. "shasum": "ca1a6d4bf16293b1b094db6439f9f065de1dbbd5"
  4993. },
  4994. "require": {
  4995. "drupal/core": "^8.8 || ^9"
  4996. },
  4997. "require-dev": {
  4998. "drupal/translators": "*",
  4999. "drupal/translators_content": "*"
  5000. },
  5001. "type": "drupal-module",
  5002. "extra": {
  5003. "drupal": {
  5004. "version": "8.x-1.0-alpha10",
  5005. "datestamp": "1584303687",
  5006. "security-coverage": {
  5007. "status": "not-covered",
  5008. "message": "Project has not opted into security advisory coverage!"
  5009. }
  5010. }
  5011. },
  5012. "notification-url": "https://packages.drupal.org/8/downloads",
  5013. "license": [
  5014. "GPL-2.0-or-later"
  5015. ],
  5016. "authors": [
  5017. {
  5018. "name": "matsbla",
  5019. "homepage": "https://www.drupal.org/user/2325394"
  5020. },
  5021. {
  5022. "name": "vlad.dancer",
  5023. "homepage": "https://www.drupal.org/user/903844"
  5024. }
  5025. ],
  5026. "description": "Create customized lists and queries of translations from your database.",
  5027. "homepage": "https://www.drupal.org/project/translation_views",
  5028. "support": {
  5029. "source": "https://git.drupalcode.org/project/translation_views"
  5030. }
  5031. },
  5032. {
  5033. "name": "drupal/upgrade_status",
  5034. "version": "3.19.0",
  5035. "source": {
  5036. "type": "git",
  5037. "url": "https://git.drupalcode.org/project/upgrade_status.git",
  5038. "reference": "8.x-3.19"
  5039. },
  5040. "dist": {
  5041. "type": "zip",
  5042. "url": "https://ftp.drupal.org/files/projects/upgrade_status-8.x-3.19.zip",
  5043. "reference": "8.x-3.19",
  5044. "shasum": "e155b34b80f2782778b841d72639bd0ac8b923f9"
  5045. },
  5046. "require": {
  5047. "drupal/core": "^8 || ^9",
  5048. "mathieuviossat/arraytotexttable": "~1.0.0",
  5049. "mglaman/phpstan-drupal": "^1.0.0",
  5050. "nikic/php-parser": "^4.0.0",
  5051. "phpstan/phpstan-deprecation-rules": "^1.0.0",
  5052. "symfony/process": "^3.4|^4.0|^5.0|^6.0",
  5053. "webflo/drupal-finder": "^1.2"
  5054. },
  5055. "type": "drupal-module",
  5056. "extra": {
  5057. "drupal": {
  5058. "version": "8.x-3.19",
  5059. "datestamp": "1678815320",
  5060. "security-coverage": {
  5061. "status": "covered",
  5062. "message": "Covered by Drupal's security advisory policy"
  5063. }
  5064. },
  5065. "drush": {
  5066. "services": {
  5067. "drush.services.yml": "^9 || ^10"
  5068. }
  5069. }
  5070. },
  5071. "notification-url": "https://packages.drupal.org/8/downloads",
  5072. "license": [
  5073. "GPL-2.0-or-later"
  5074. ],
  5075. "authors": [
  5076. {
  5077. "name": "Gábor Hojtsy",
  5078. "homepage": "https://www.drupal.org/user/4166"
  5079. }
  5080. ],
  5081. "description": "Review Drupal major upgrade readiness of the environment and components of the site.",
  5082. "homepage": "http://drupal.org/project/upgrade_status",
  5083. "support": {
  5084. "source": "https://git.drupalcode.org/project/upgrade_status"
  5085. }
  5086. },
  5087. {
  5088. "name": "drupal/url_to_video_filter",
  5089. "version": "1.4.0",
  5090. "source": {
  5091. "type": "git",
  5092. "url": "https://git.drupalcode.org/project/url_to_video_filter.git",
  5093. "reference": "8.x-1.4"
  5094. },
  5095. "dist": {
  5096. "type": "zip",
  5097. "url": "https://ftp.drupal.org/files/projects/url_to_video_filter-8.x-1.4.zip",
  5098. "reference": "8.x-1.4",
  5099. "shasum": "adeb30c7ad0e0838c222879c467e054e4b6ebcdd"
  5100. },
  5101. "require": {
  5102. "drupal/core": "~8.0"
  5103. },
  5104. "type": "drupal-module",
  5105. "extra": {
  5106. "drupal": {
  5107. "version": "8.x-1.4",
  5108. "datestamp": "1587532095",
  5109. "security-coverage": {
  5110. "status": "covered",
  5111. "message": "Covered by Drupal's security advisory policy"
  5112. }
  5113. }
  5114. },
  5115. "notification-url": "https://packages.drupal.org/8/downloads",
  5116. "license": [
  5117. "GPL-2.0-or-later"
  5118. ],
  5119. "authors": [
  5120. {
  5121. "name": "Jaypan",
  5122. "homepage": "https://www.drupal.org/user/324696"
  5123. }
  5124. ],
  5125. "description": "Text filter to convert URLs to embedded videos",
  5126. "homepage": "https://www.drupal.org/project/url_to_video_filter",
  5127. "support": {
  5128. "source": "https://git.drupalcode.org/project/url_to_video_filter"
  5129. }
  5130. },
  5131. {
  5132. "name": "drupal/views_bulk_edit",
  5133. "version": "2.4.0",
  5134. "source": {
  5135. "type": "git",
  5136. "url": "https://git.drupalcode.org/project/views_bulk_edit.git",
  5137. "reference": "8.x-2.4"
  5138. },
  5139. "dist": {
  5140. "type": "zip",
  5141. "url": "https://ftp.drupal.org/files/projects/views_bulk_edit-8.x-2.4.zip",
  5142. "reference": "8.x-2.4",
  5143. "shasum": "039ebf9c6ae3cdd0555c7bfb97c629ebfee61ddb"
  5144. },
  5145. "require": {
  5146. "drupal/core": "*",
  5147. "drupal/views_bulk_operations": "~1.0 | ~2.0 | ~3.0"
  5148. },
  5149. "type": "drupal-module",
  5150. "extra": {
  5151. "drupal": {
  5152. "version": "8.x-2.4",
  5153. "datestamp": "1570030085",
  5154. "security-coverage": {
  5155. "status": "covered",
  5156. "message": "Covered by Drupal's security advisory policy"
  5157. }
  5158. }
  5159. },
  5160. "notification-url": "https://packages.drupal.org/8/downloads",
  5161. "license": [
  5162. "GPL-2.0+"
  5163. ],
  5164. "authors": [
  5165. {
  5166. "name": "Marcin Grabias",
  5167. "homepage": "https://www.drupal.org/u/graber"
  5168. },
  5169. {
  5170. "name": "benjy",
  5171. "homepage": "https://www.drupal.org/user/1852732"
  5172. }
  5173. ],
  5174. "description": "Allows bulk edition of entity field values.",
  5175. "homepage": "https://www.drupal.org/project/views_bulk_edit",
  5176. "support": {
  5177. "source": "https://git.drupalcode.org/project/views_bulk_edit",
  5178. "issues": "https://www.drupal.org/project/issues/views_bulk_edit?version=8.x"
  5179. }
  5180. },
  5181. {
  5182. "name": "drupal/views_bulk_operations",
  5183. "version": "3.9.0",
  5184. "source": {
  5185. "type": "git",
  5186. "url": "https://git.drupalcode.org/project/views_bulk_operations.git",
  5187. "reference": "8.x-3.9"
  5188. },
  5189. "dist": {
  5190. "type": "zip",
  5191. "url": "https://ftp.drupal.org/files/projects/views_bulk_operations-8.x-3.9.zip",
  5192. "reference": "8.x-3.9",
  5193. "shasum": "d7f6e50c31d21ff32f21e8f4aaedb52f6dee2da8"
  5194. },
  5195. "require": {
  5196. "drupal/core": "^8.8 || ^9"
  5197. },
  5198. "require-dev": {
  5199. "drush/drush": "^10"
  5200. },
  5201. "suggest": {
  5202. "drush/drush": "^9 || ^10"
  5203. },
  5204. "type": "drupal-module",
  5205. "extra": {
  5206. "drupal": {
  5207. "version": "8.x-3.9",
  5208. "datestamp": "1597319021",
  5209. "security-coverage": {
  5210. "status": "covered",
  5211. "message": "Covered by Drupal's security advisory policy"
  5212. }
  5213. },
  5214. "drush": {
  5215. "services": {
  5216. "drush.services.yml": "^9 || ^10"
  5217. }
  5218. }
  5219. },
  5220. "notification-url": "https://packages.drupal.org/8/downloads",
  5221. "license": [
  5222. "GPL-2.0-or-later"
  5223. ],
  5224. "authors": [
  5225. {
  5226. "name": "Marcin Grabias",
  5227. "homepage": "https://www.drupal.org/u/graber"
  5228. },
  5229. {
  5230. "name": "Jon Pugh",
  5231. "homepage": "https://www.drupal.org/user/17028"
  5232. },
  5233. {
  5234. "name": "bojanz",
  5235. "homepage": "https://www.drupal.org/user/86106"
  5236. },
  5237. {
  5238. "name": "infojunkie",
  5239. "homepage": "https://www.drupal.org/user/48424"
  5240. },
  5241. {
  5242. "name": "joelpittet",
  5243. "homepage": "https://www.drupal.org/user/160302"
  5244. }
  5245. ],
  5246. "description": "Adds an ability to perform bulk operations on selected entities from view results. Provides an API to create such operations.",
  5247. "homepage": "https://www.drupal.org/project/views_bulk_operations",
  5248. "support": {
  5249. "source": "https://git.drupalcode.org/project/views_bulk_operations/-/tree/8.x-3.x",
  5250. "issues": "https://www.drupal.org/project/issues/views_bulk_operations?version=8.x",
  5251. "docs": "https://www.drupal.org/docs/8/modules/views-bulk-operations-vbo"
  5252. }
  5253. },
  5254. {
  5255. "name": "drupal/workflow",
  5256. "version": "dev-1.x",
  5257. "source": {
  5258. "type": "git",
  5259. "url": "https://git.drupalcode.org/project/workflow.git",
  5260. "reference": "d75c801c73cec1f73c6a4273abce42686734503c"
  5261. },
  5262. "require": {
  5263. "drupal/core": "^8 || ^9"
  5264. },
  5265. "type": "drupal-module",
  5266. "extra": {
  5267. "branch-alias": {
  5268. "dev-1.x": "1.x-dev"
  5269. },
  5270. "drupal": {
  5271. "version": "8.x-1.1+59-dev",
  5272. "datestamp": "1590561418",
  5273. "security-coverage": {
  5274. "status": "not-covered",
  5275. "message": "Dev releases are not covered by Drupal security advisories."
  5276. }
  5277. }
  5278. },
  5279. "notification-url": "https://packages.drupal.org/8/downloads",
  5280. "license": [
  5281. "GPL-2.0-or-later"
  5282. ],
  5283. "authors": [
  5284. {
  5285. "name": "Bastlynn",
  5286. "homepage": "https://www.drupal.org/user/275249"
  5287. },
  5288. {
  5289. "name": "Heine",
  5290. "homepage": "https://www.drupal.org/user/17943"
  5291. },
  5292. {
  5293. "name": "JacobSingh",
  5294. "homepage": "https://www.drupal.org/user/68912"
  5295. },
  5296. {
  5297. "name": "NancyDru",
  5298. "homepage": "https://www.drupal.org/user/101412"
  5299. },
  5300. {
  5301. "name": "eaton",
  5302. "homepage": "https://www.drupal.org/user/16496"
  5303. },
  5304. {
  5305. "name": "johnv",
  5306. "homepage": "https://www.drupal.org/user/591042"
  5307. },
  5308. {
  5309. "name": "jvandyk",
  5310. "homepage": "https://www.drupal.org/user/2375"
  5311. },
  5312. {
  5313. "name": "mfredrickson",
  5314. "homepage": "https://www.drupal.org/user/31994"
  5315. },
  5316. {
  5317. "name": "q0rban",
  5318. "homepage": "https://www.drupal.org/user/31022"
  5319. }
  5320. ],
  5321. "description": "Defines a field type with Workflows, containing customizable state transitions.",
  5322. "homepage": "https://www.drupal.org/project/workflow",
  5323. "support": {
  5324. "source": "https://git.drupalcode.org/project/workflow"
  5325. },
  5326. "time": "2020-05-27T07:25:14+00:00"
  5327. },
  5328. {
  5329. "name": "drush/drush",
  5330. "version": "9.7.2",
  5331. "source": {
  5332. "type": "git",
  5333. "url": "https://github.com/drush-ops/drush.git",
  5334. "reference": "ab5e345a72c9187a7d770486a09691f6526826aa"
  5335. },
  5336. "dist": {
  5337. "type": "zip",
  5338. "url": "https://api.github.com/repos/drush-ops/drush/zipball/ab5e345a72c9187a7d770486a09691f6526826aa",
  5339. "reference": "ab5e345a72c9187a7d770486a09691f6526826aa",
  5340. "shasum": ""
  5341. },
  5342. "require": {
  5343. "chi-teck/drupal-code-generator": "^1.28.1",
  5344. "composer/semver": "^1.4",
  5345. "consolidation/annotated-command": "^2.12",
  5346. "consolidation/config": "^1.2",
  5347. "consolidation/filter-via-dot-access-data": "^1",
  5348. "consolidation/output-formatters": "^3.3.1",
  5349. "consolidation/robo": "^1.4.6",
  5350. "consolidation/site-alias": "^3.0.0@stable",
  5351. "consolidation/site-process": "^2.0.3",
  5352. "ext-dom": "*",
  5353. "grasmash/yaml-expander": "^1.1.1",
  5354. "league/container": "~2",
  5355. "php": ">=5.6.0",
  5356. "psr/log": "~1.0",
  5357. "psy/psysh": "~0.6",
  5358. "symfony/console": "^3.4",
  5359. "symfony/event-dispatcher": "^3.4 || ^4.0",
  5360. "symfony/finder": "^3.4 || ^4.0",
  5361. "symfony/process": "^3.4",
  5362. "symfony/var-dumper": "^3.4 || ^4.0",
  5363. "symfony/yaml": "^3.4",
  5364. "webflo/drupal-finder": "^1.1",
  5365. "webmozart/path-util": "^2.1.0"
  5366. },
  5367. "require-dev": {
  5368. "composer/installers": "^1.2",
  5369. "cweagans/composer-patches": "~1.0",
  5370. "drupal/alinks": "1.0.0",
  5371. "drupal/devel": "^2",
  5372. "drupal/empty_theme": "1.0",
  5373. "g1a/composer-test-scenarios": "^3",
  5374. "lox/xhprof": "dev-master",
  5375. "phpunit/phpunit": "^4.8.36 || ^6.1",
  5376. "squizlabs/php_codesniffer": "^2.7 || ^3",
  5377. "vlucas/phpdotenv": "^2.4",
  5378. "webflo/drupal-core-require-dev": "8.7.x-dev",
  5379. "webflo/drupal-core-strict": "8.7.x-dev"
  5380. },
  5381. "bin": [
  5382. "drush"
  5383. ],
  5384. "type": "library",
  5385. "extra": {
  5386. "installer-paths": {
  5387. "sut/core": [
  5388. "type:drupal-core"
  5389. ],
  5390. "sut/libraries/{$name}": [
  5391. "type:drupal-library"
  5392. ],
  5393. "sut/modules/unish/{$name}": [
  5394. "drupal/devel"
  5395. ],
  5396. "sut/themes/unish/{$name}": [
  5397. "drupal/empty_theme"
  5398. ],
  5399. "sut/modules/contrib/{$name}": [
  5400. "type:drupal-module"
  5401. ],
  5402. "sut/profiles/contrib/{$name}": [
  5403. "type:drupal-profile"
  5404. ],
  5405. "sut/themes/contrib/{$name}": [
  5406. "type:drupal-theme"
  5407. ],
  5408. "sut/drush/contrib/{$name}": [
  5409. "type:drupal-drush"
  5410. ]
  5411. },
  5412. "scenarios": {
  5413. "php5": {
  5414. "config": {
  5415. "platform": {
  5416. "php": "5.6.38"
  5417. }
  5418. },
  5419. "require-dev": {
  5420. "webflo/drupal-core-strict": "8.6.x-dev",
  5421. "webflo/drupal-core-require-dev": "8.6.x-dev"
  5422. }
  5423. }
  5424. },
  5425. "branch-alias": {
  5426. "dev-master": "9.x-dev"
  5427. }
  5428. },
  5429. "autoload": {
  5430. "psr-4": {
  5431. "Drush\\": "src/",
  5432. "Drush\\Internal\\": "src/internal-forks"
  5433. }
  5434. },
  5435. "notification-url": "https://packagist.org/downloads/",
  5436. "license": [
  5437. "GPL-2.0-or-later"
  5438. ],
  5439. "authors": [
  5440. {
  5441. "name": "Moshe Weitzman",
  5442. "email": "weitzman@tejasa.com"
  5443. },
  5444. {
  5445. "name": "Owen Barton",
  5446. "email": "drupal@owenbarton.com"
  5447. },
  5448. {
  5449. "name": "Greg Anderson",
  5450. "email": "greg.1.anderson@greenknowe.org"
  5451. },
  5452. {
  5453. "name": "Jonathan Araña Cruz",
  5454. "email": "jonhattan@faita.net"
  5455. },
  5456. {
  5457. "name": "Jonathan Hedstrom",
  5458. "email": "jhedstrom@gmail.com"
  5459. },
  5460. {
  5461. "name": "Christopher Gervais",
  5462. "email": "chris@ergonlogic.com"
  5463. },
  5464. {
  5465. "name": "Dave Reid",
  5466. "email": "dave@davereid.net"
  5467. },
  5468. {
  5469. "name": "Damian Lee",
  5470. "email": "damiankloip@googlemail.com"
  5471. }
  5472. ],
  5473. "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.",
  5474. "homepage": "http://www.drush.org",
  5475. "time": "2020-02-09T17:29:51+00:00"
  5476. },
  5477. {
  5478. "name": "easyrdf/easyrdf",
  5479. "version": "0.9.1",
  5480. "source": {
  5481. "type": "git",
  5482. "url": "https://github.com/easyrdf/easyrdf.git",
  5483. "reference": "acd09dfe0555fbcfa254291e433c45fdd4652566"
  5484. },
  5485. "dist": {
  5486. "type": "zip",
  5487. "url": "https://api.github.com/repos/easyrdf/easyrdf/zipball/acd09dfe0555fbcfa254291e433c45fdd4652566",
  5488. "reference": "acd09dfe0555fbcfa254291e433c45fdd4652566",
  5489. "shasum": ""
  5490. },
  5491. "require": {
  5492. "ext-mbstring": "*",
  5493. "ext-pcre": "*",
  5494. "php": ">=5.2.8"
  5495. },
  5496. "require-dev": {
  5497. "phpunit/phpunit": "~3.5",
  5498. "sami/sami": "~1.4",
  5499. "squizlabs/php_codesniffer": "~1.4.3"
  5500. },
  5501. "suggest": {
  5502. "ml/json-ld": "~1.0"
  5503. },
  5504. "type": "library",
  5505. "autoload": {
  5506. "psr-0": {
  5507. "EasyRdf_": "lib/"
  5508. }
  5509. },
  5510. "notification-url": "https://packagist.org/downloads/",
  5511. "license": [
  5512. "BSD-3-Clause"
  5513. ],
  5514. "authors": [
  5515. {
  5516. "name": "Nicholas Humfrey",
  5517. "email": "njh@aelius.com",
  5518. "homepage": "http://www.aelius.com/njh/",
  5519. "role": "Developer"
  5520. },
  5521. {
  5522. "name": "Alexey Zakhlestin",
  5523. "email": "indeyets@gmail.com",
  5524. "role": "Developer"
  5525. }
  5526. ],
  5527. "description": "EasyRdf is a PHP library designed to make it easy to consume and produce RDF.",
  5528. "homepage": "http://www.easyrdf.org/",
  5529. "keywords": [
  5530. "Linked Data",
  5531. "RDF",
  5532. "Semantic Web",
  5533. "Turtle",
  5534. "rdfa",
  5535. "sparql"
  5536. ],
  5537. "support": {
  5538. "forum": "http://groups.google.com/group/easyrdf/",
  5539. "irc": "irc://chat.freenode.net/easyrdf",
  5540. "issues": "http://github.com/njh/easyrdf/issues",
  5541. "source": "https://github.com/easyrdf/easyrdf/tree/0.9.1"
  5542. },
  5543. "time": "2015-02-27T09:45:49+00:00"
  5544. },
  5545. {
  5546. "name": "egulias/email-validator",
  5547. "version": "2.1.17",
  5548. "source": {
  5549. "type": "git",
  5550. "url": "https://github.com/egulias/EmailValidator.git",
  5551. "reference": "ade6887fd9bd74177769645ab5c474824f8a418a"
  5552. },
  5553. "dist": {
  5554. "type": "zip",
  5555. "url": "https://api.github.com/repos/egulias/EmailValidator/zipball/ade6887fd9bd74177769645ab5c474824f8a418a",
  5556. "reference": "ade6887fd9bd74177769645ab5c474824f8a418a",
  5557. "shasum": ""
  5558. },
  5559. "require": {
  5560. "doctrine/lexer": "^1.0.1",
  5561. "php": ">=5.5",
  5562. "symfony/polyfill-intl-idn": "^1.10"
  5563. },
  5564. "require-dev": {
  5565. "dominicsayers/isemail": "^3.0.7",
  5566. "phpunit/phpunit": "^4.8.36|^7.5.15",
  5567. "satooshi/php-coveralls": "^1.0.1"
  5568. },
  5569. "suggest": {
  5570. "ext-intl": "PHP Internationalization Libraries are required to use the SpoofChecking validation"
  5571. },
  5572. "type": "library",
  5573. "extra": {
  5574. "branch-alias": {
  5575. "dev-master": "2.1.x-dev"
  5576. }
  5577. },
  5578. "autoload": {
  5579. "psr-4": {
  5580. "Egulias\\EmailValidator\\": "EmailValidator"
  5581. }
  5582. },
  5583. "notification-url": "https://packagist.org/downloads/",
  5584. "license": [
  5585. "MIT"
  5586. ],
  5587. "authors": [
  5588. {
  5589. "name": "Eduardo Gulias Davis"
  5590. }
  5591. ],
  5592. "description": "A library for validating emails against several RFCs",
  5593. "homepage": "https://github.com/egulias/EmailValidator",
  5594. "keywords": [
  5595. "email",
  5596. "emailvalidation",
  5597. "emailvalidator",
  5598. "validation",
  5599. "validator"
  5600. ],
  5601. "support": {
  5602. "issues": "https://github.com/egulias/EmailValidator/issues",
  5603. "source": "https://github.com/egulias/EmailValidator/tree/2.1.17"
  5604. },
  5605. "time": "2020-02-13T22:36:52+00:00"
  5606. },
  5607. {
  5608. "name": "grasmash/expander",
  5609. "version": "1.0.0",
  5610. "source": {
  5611. "type": "git",
  5612. "url": "https://github.com/grasmash/expander.git",
  5613. "reference": "95d6037344a4be1dd5f8e0b0b2571a28c397578f"
  5614. },
  5615. "dist": {
  5616. "type": "zip",
  5617. "url": "https://api.github.com/repos/grasmash/expander/zipball/95d6037344a4be1dd5f8e0b0b2571a28c397578f",
  5618. "reference": "95d6037344a4be1dd5f8e0b0b2571a28c397578f",
  5619. "shasum": ""
  5620. },
  5621. "require": {
  5622. "dflydev/dot-access-data": "^1.1.0",
  5623. "php": ">=5.4"
  5624. },
  5625. "require-dev": {
  5626. "greg-1-anderson/composer-test-scenarios": "^1",
  5627. "phpunit/phpunit": "^4|^5.5.4",
  5628. "satooshi/php-coveralls": "^1.0.2|dev-master",
  5629. "squizlabs/php_codesniffer": "^2.7"
  5630. },
  5631. "type": "library",
  5632. "extra": {
  5633. "branch-alias": {
  5634. "dev-master": "1.x-dev"
  5635. }
  5636. },
  5637. "autoload": {
  5638. "psr-4": {
  5639. "Grasmash\\Expander\\": "src/"
  5640. }
  5641. },
  5642. "notification-url": "https://packagist.org/downloads/",
  5643. "license": [
  5644. "MIT"
  5645. ],
  5646. "authors": [
  5647. {
  5648. "name": "Matthew Grasmick"
  5649. }
  5650. ],
  5651. "description": "Expands internal property references in PHP arrays file.",
  5652. "time": "2017-12-21T22:14:55+00:00"
  5653. },
  5654. {
  5655. "name": "grasmash/yaml-expander",
  5656. "version": "1.4.0",
  5657. "source": {
  5658. "type": "git",
  5659. "url": "https://github.com/grasmash/yaml-expander.git",
  5660. "reference": "3f0f6001ae707a24f4d9733958d77d92bf9693b1"
  5661. },
  5662. "dist": {
  5663. "type": "zip",
  5664. "url": "https://api.github.com/repos/grasmash/yaml-expander/zipball/3f0f6001ae707a24f4d9733958d77d92bf9693b1",
  5665. "reference": "3f0f6001ae707a24f4d9733958d77d92bf9693b1",
  5666. "shasum": ""
  5667. },
  5668. "require": {
  5669. "dflydev/dot-access-data": "^1.1.0",
  5670. "php": ">=5.4",
  5671. "symfony/yaml": "^2.8.11|^3|^4"
  5672. },
  5673. "require-dev": {
  5674. "greg-1-anderson/composer-test-scenarios": "^1",
  5675. "phpunit/phpunit": "^4.8|^5.5.4",
  5676. "satooshi/php-coveralls": "^1.0.2|dev-master",
  5677. "squizlabs/php_codesniffer": "^2.7"
  5678. },
  5679. "type": "library",
  5680. "extra": {
  5681. "branch-alias": {
  5682. "dev-master": "1.x-dev"
  5683. }
  5684. },
  5685. "autoload": {
  5686. "psr-4": {
  5687. "Grasmash\\YamlExpander\\": "src/"
  5688. }
  5689. },
  5690. "notification-url": "https://packagist.org/downloads/",
  5691. "license": [
  5692. "MIT"
  5693. ],
  5694. "authors": [
  5695. {
  5696. "name": "Matthew Grasmick"
  5697. }
  5698. ],
  5699. "description": "Expands internal property references in a yaml file.",
  5700. "time": "2017-12-16T16:06:03+00:00"
  5701. },
  5702. {
  5703. "name": "guzzlehttp/guzzle",
  5704. "version": "6.5.4",
  5705. "source": {
  5706. "type": "git",
  5707. "url": "https://github.com/guzzle/guzzle.git",
  5708. "reference": "a4a1b6930528a8f7ee03518e6442ec7a44155d9d"
  5709. },
  5710. "dist": {
  5711. "type": "zip",
  5712. "url": "https://api.github.com/repos/guzzle/guzzle/zipball/a4a1b6930528a8f7ee03518e6442ec7a44155d9d",
  5713. "reference": "a4a1b6930528a8f7ee03518e6442ec7a44155d9d",
  5714. "shasum": ""
  5715. },
  5716. "require": {
  5717. "ext-json": "*",
  5718. "guzzlehttp/promises": "^1.0",
  5719. "guzzlehttp/psr7": "^1.6.1",
  5720. "php": ">=5.5",
  5721. "symfony/polyfill-intl-idn": "1.17.0"
  5722. },
  5723. "require-dev": {
  5724. "ext-curl": "*",
  5725. "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.4 || ^7.0",
  5726. "psr/log": "^1.1"
  5727. },
  5728. "suggest": {
  5729. "psr/log": "Required for using the Log middleware"
  5730. },
  5731. "type": "library",
  5732. "extra": {
  5733. "branch-alias": {
  5734. "dev-master": "6.5-dev"
  5735. }
  5736. },
  5737. "autoload": {
  5738. "files": [
  5739. "src/functions_include.php"
  5740. ],
  5741. "psr-4": {
  5742. "GuzzleHttp\\": "src/"
  5743. }
  5744. },
  5745. "notification-url": "https://packagist.org/downloads/",
  5746. "license": [
  5747. "MIT"
  5748. ],
  5749. "authors": [
  5750. {
  5751. "name": "Michael Dowling",
  5752. "email": "mtdowling@gmail.com",
  5753. "homepage": "https://github.com/mtdowling"
  5754. }
  5755. ],
  5756. "description": "Guzzle is a PHP HTTP client library",
  5757. "homepage": "http://guzzlephp.org/",
  5758. "keywords": [
  5759. "client",
  5760. "curl",
  5761. "framework",
  5762. "http",
  5763. "http client",
  5764. "rest",
  5765. "web service"
  5766. ],
  5767. "support": {
  5768. "issues": "https://github.com/guzzle/guzzle/issues",
  5769. "source": "https://github.com/guzzle/guzzle/tree/6.5"
  5770. },
  5771. "time": "2020-05-25T19:35:05+00:00"
  5772. },
  5773. {
  5774. "name": "guzzlehttp/promises",
  5775. "version": "v1.3.1",
  5776. "source": {
  5777. "type": "git",
  5778. "url": "https://github.com/guzzle/promises.git",
  5779. "reference": "a59da6cf61d80060647ff4d3eb2c03a2bc694646"
  5780. },
  5781. "dist": {
  5782. "type": "zip",
  5783. "url": "https://api.github.com/repos/guzzle/promises/zipball/a59da6cf61d80060647ff4d3eb2c03a2bc694646",
  5784. "reference": "a59da6cf61d80060647ff4d3eb2c03a2bc694646",
  5785. "shasum": ""
  5786. },
  5787. "require": {
  5788. "php": ">=5.5.0"
  5789. },
  5790. "require-dev": {
  5791. "phpunit/phpunit": "^4.0"
  5792. },
  5793. "type": "library",
  5794. "extra": {
  5795. "branch-alias": {
  5796. "dev-master": "1.4-dev"
  5797. }
  5798. },
  5799. "autoload": {
  5800. "files": [
  5801. "src/functions_include.php"
  5802. ],
  5803. "psr-4": {
  5804. "GuzzleHttp\\Promise\\": "src/"
  5805. }
  5806. },
  5807. "notification-url": "https://packagist.org/downloads/",
  5808. "license": [
  5809. "MIT"
  5810. ],
  5811. "authors": [
  5812. {
  5813. "name": "Michael Dowling",
  5814. "email": "mtdowling@gmail.com",
  5815. "homepage": "https://github.com/mtdowling"
  5816. }
  5817. ],
  5818. "description": "Guzzle promises library",
  5819. "keywords": [
  5820. "promise"
  5821. ],
  5822. "support": {
  5823. "issues": "https://github.com/guzzle/promises/issues",
  5824. "source": "https://github.com/guzzle/promises/tree/master"
  5825. },
  5826. "time": "2016-12-20T10:07:11+00:00"
  5827. },
  5828. {
  5829. "name": "guzzlehttp/psr7",
  5830. "version": "1.6.1",
  5831. "source": {
  5832. "type": "git",
  5833. "url": "https://github.com/guzzle/psr7.git",
  5834. "reference": "239400de7a173fe9901b9ac7c06497751f00727a"
  5835. },
  5836. "dist": {
  5837. "type": "zip",
  5838. "url": "https://api.github.com/repos/guzzle/psr7/zipball/239400de7a173fe9901b9ac7c06497751f00727a",
  5839. "reference": "239400de7a173fe9901b9ac7c06497751f00727a",
  5840. "shasum": ""
  5841. },
  5842. "require": {
  5843. "php": ">=5.4.0",
  5844. "psr/http-message": "~1.0",
  5845. "ralouphie/getallheaders": "^2.0.5 || ^3.0.0"
  5846. },
  5847. "provide": {
  5848. "psr/http-message-implementation": "1.0"
  5849. },
  5850. "require-dev": {
  5851. "ext-zlib": "*",
  5852. "phpunit/phpunit": "~4.8.36 || ^5.7.27 || ^6.5.8"
  5853. },
  5854. "suggest": {
  5855. "zendframework/zend-httphandlerrunner": "Emit PSR-7 responses"
  5856. },
  5857. "type": "library",
  5858. "extra": {
  5859. "branch-alias": {
  5860. "dev-master": "1.6-dev"
  5861. }
  5862. },
  5863. "autoload": {
  5864. "files": [
  5865. "src/functions_include.php"
  5866. ],
  5867. "psr-4": {
  5868. "GuzzleHttp\\Psr7\\": "src/"
  5869. }
  5870. },
  5871. "notification-url": "https://packagist.org/downloads/",
  5872. "license": [
  5873. "MIT"
  5874. ],
  5875. "authors": [
  5876. {
  5877. "name": "Michael Dowling",
  5878. "email": "mtdowling@gmail.com",
  5879. "homepage": "https://github.com/mtdowling"
  5880. },
  5881. {
  5882. "name": "Tobias Schultze",
  5883. "homepage": "https://github.com/Tobion"
  5884. }
  5885. ],
  5886. "description": "PSR-7 message implementation that also provides common utility methods",
  5887. "keywords": [
  5888. "http",
  5889. "message",
  5890. "psr-7",
  5891. "request",
  5892. "response",
  5893. "stream",
  5894. "uri",
  5895. "url"
  5896. ],
  5897. "support": {
  5898. "issues": "https://github.com/guzzle/psr7/issues",
  5899. "source": "https://github.com/guzzle/psr7/tree/1.6.1"
  5900. },
  5901. "time": "2019-07-01T23:21:34+00:00"
  5902. },
  5903. {
  5904. "name": "laminas/laminas-diactoros",
  5905. "version": "1.8.7p2",
  5906. "source": {
  5907. "type": "git",
  5908. "url": "https://github.com/laminas/laminas-diactoros.git",
  5909. "reference": "6991c1af7c8d2c8efee81b22ba97024781824aaa"
  5910. },
  5911. "dist": {
  5912. "type": "zip",
  5913. "url": "https://api.github.com/repos/laminas/laminas-diactoros/zipball/6991c1af7c8d2c8efee81b22ba97024781824aaa",
  5914. "reference": "6991c1af7c8d2c8efee81b22ba97024781824aaa",
  5915. "shasum": ""
  5916. },
  5917. "require": {
  5918. "laminas/laminas-zendframework-bridge": "^1.0",
  5919. "php": "^5.6 || ^7.0",
  5920. "psr/http-message": "^1.0"
  5921. },
  5922. "provide": {
  5923. "psr/http-message-implementation": "1.0"
  5924. },
  5925. "replace": {
  5926. "zendframework/zend-diactoros": "~1.8.7.0"
  5927. },
  5928. "require-dev": {
  5929. "ext-dom": "*",
  5930. "ext-libxml": "*",
  5931. "laminas/laminas-coding-standard": "~1.0",
  5932. "php-http/psr7-integration-tests": "dev-master",
  5933. "phpunit/phpunit": "^5.7.16 || ^6.0.8 || ^7.2.7"
  5934. },
  5935. "type": "library",
  5936. "extra": {
  5937. "branch-alias": {
  5938. "dev-release-1.8": "1.8.x-dev"
  5939. }
  5940. },
  5941. "autoload": {
  5942. "files": [
  5943. "src/functions/create_uploaded_file.php",
  5944. "src/functions/marshal_headers_from_sapi.php",
  5945. "src/functions/marshal_method_from_sapi.php",
  5946. "src/functions/marshal_protocol_version_from_sapi.php",
  5947. "src/functions/marshal_uri_from_sapi.php",
  5948. "src/functions/normalize_server.php",
  5949. "src/functions/normalize_uploaded_files.php",
  5950. "src/functions/parse_cookie_header.php",
  5951. "src/functions/create_uploaded_file.legacy.php",
  5952. "src/functions/marshal_headers_from_sapi.legacy.php",
  5953. "src/functions/marshal_method_from_sapi.legacy.php",
  5954. "src/functions/marshal_protocol_version_from_sapi.legacy.php",
  5955. "src/functions/marshal_uri_from_sapi.legacy.php",
  5956. "src/functions/normalize_server.legacy.php",
  5957. "src/functions/normalize_uploaded_files.legacy.php",
  5958. "src/functions/parse_cookie_header.legacy.php"
  5959. ],
  5960. "psr-4": {
  5961. "Laminas\\Diactoros\\": "src/"
  5962. }
  5963. },
  5964. "notification-url": "https://packagist.org/downloads/",
  5965. "license": [
  5966. "BSD-3-Clause"
  5967. ],
  5968. "description": "PSR HTTP Message implementations",
  5969. "homepage": "https://laminas.dev",
  5970. "keywords": [
  5971. "http",
  5972. "laminas",
  5973. "psr",
  5974. "psr-7"
  5975. ],
  5976. "support": {
  5977. "chat": "https://laminas.dev/chat",
  5978. "docs": "https://docs.laminas.dev/laminas-diactoros/",
  5979. "forum": "https://discourse.laminas.dev",
  5980. "issues": "https://github.com/laminas/laminas-diactoros/issues",
  5981. "rss": "https://github.com/laminas/laminas-diactoros/releases.atom",
  5982. "source": "https://github.com/laminas/laminas-diactoros"
  5983. },
  5984. "time": "2020-03-23T15:28:28+00:00"
  5985. },
  5986. {
  5987. "name": "laminas/laminas-escaper",
  5988. "version": "2.6.1",
  5989. "source": {
  5990. "type": "git",
  5991. "url": "https://github.com/laminas/laminas-escaper.git",
  5992. "reference": "25f2a053eadfa92ddacb609dcbbc39362610da70"
  5993. },
  5994. "dist": {
  5995. "type": "zip",
  5996. "url": "https://api.github.com/repos/laminas/laminas-escaper/zipball/25f2a053eadfa92ddacb609dcbbc39362610da70",
  5997. "reference": "25f2a053eadfa92ddacb609dcbbc39362610da70",
  5998. "shasum": ""
  5999. },
  6000. "require": {
  6001. "laminas/laminas-zendframework-bridge": "^1.0",
  6002. "php": "^5.6 || ^7.0"
  6003. },
  6004. "replace": {
  6005. "zendframework/zend-escaper": "self.version"
  6006. },
  6007. "require-dev": {
  6008. "laminas/laminas-coding-standard": "~1.0.0",
  6009. "phpunit/phpunit": "^5.7.27 || ^6.5.8 || ^7.1.2"
  6010. },
  6011. "type": "library",
  6012. "extra": {
  6013. "branch-alias": {
  6014. "dev-master": "2.6.x-dev",
  6015. "dev-develop": "2.7.x-dev"
  6016. }
  6017. },
  6018. "autoload": {
  6019. "psr-4": {
  6020. "Laminas\\Escaper\\": "src/"
  6021. }
  6022. },
  6023. "notification-url": "https://packagist.org/downloads/",
  6024. "license": [
  6025. "BSD-3-Clause"
  6026. ],
  6027. "description": "Securely and safely escape HTML, HTML attributes, JavaScript, CSS, and URLs",
  6028. "homepage": "https://laminas.dev",
  6029. "keywords": [
  6030. "escaper",
  6031. "laminas"
  6032. ],
  6033. "support": {
  6034. "chat": "https://laminas.dev/chat",
  6035. "docs": "https://docs.laminas.dev/laminas-escaper/",
  6036. "forum": "https://discourse.laminas.dev",
  6037. "issues": "https://github.com/laminas/laminas-escaper/issues",
  6038. "rss": "https://github.com/laminas/laminas-escaper/releases.atom",
  6039. "source": "https://github.com/laminas/laminas-escaper"
  6040. },
  6041. "time": "2019-12-31T16:43:30+00:00"
  6042. },
  6043. {
  6044. "name": "laminas/laminas-feed",
  6045. "version": "2.12.2",
  6046. "source": {
  6047. "type": "git",
  6048. "url": "https://github.com/laminas/laminas-feed.git",
  6049. "reference": "8a193ac96ebcb3e16b6ee754ac2a889eefacb654"
  6050. },
  6051. "dist": {
  6052. "type": "zip",
  6053. "url": "https://api.github.com/repos/laminas/laminas-feed/zipball/8a193ac96ebcb3e16b6ee754ac2a889eefacb654",
  6054. "reference": "8a193ac96ebcb3e16b6ee754ac2a889eefacb654",
  6055. "shasum": ""
  6056. },
  6057. "require": {
  6058. "ext-dom": "*",
  6059. "ext-libxml": "*",
  6060. "laminas/laminas-escaper": "^2.5.2",
  6061. "laminas/laminas-stdlib": "^3.2.1",
  6062. "laminas/laminas-zendframework-bridge": "^1.0",
  6063. "php": "^5.6 || ^7.0"
  6064. },
  6065. "replace": {
  6066. "zendframework/zend-feed": "^2.12.0"
  6067. },
  6068. "require-dev": {
  6069. "laminas/laminas-cache": "^2.7.2",
  6070. "laminas/laminas-coding-standard": "~1.0.0",
  6071. "laminas/laminas-db": "^2.8.2",
  6072. "laminas/laminas-http": "^2.7",
  6073. "laminas/laminas-servicemanager": "^2.7.8 || ^3.3",
  6074. "laminas/laminas-validator": "^2.10.1",
  6075. "phpunit/phpunit": "^5.7.27 || ^6.5.14 || ^7.5.20",
  6076. "psr/http-message": "^1.0.1"
  6077. },
  6078. "suggest": {
  6079. "laminas/laminas-cache": "Laminas\\Cache component, for optionally caching feeds between requests",
  6080. "laminas/laminas-db": "Laminas\\Db component, for use with PubSubHubbub",
  6081. "laminas/laminas-http": "Laminas\\Http for PubSubHubbub, and optionally for use with Laminas\\Feed\\Reader",
  6082. "laminas/laminas-servicemanager": "Laminas\\ServiceManager component, for easily extending ExtensionManager implementations",
  6083. "laminas/laminas-validator": "Laminas\\Validator component, for validating email addresses used in Atom feeds and entries when using the Writer subcomponent",
  6084. "psr/http-message": "PSR-7 ^1.0.1, if you wish to use Laminas\\Feed\\Reader\\Http\\Psr7ResponseDecorator"
  6085. },
  6086. "type": "library",
  6087. "extra": {
  6088. "branch-alias": {
  6089. "dev-master": "2.12.x-dev",
  6090. "dev-develop": "2.13.x-dev"
  6091. }
  6092. },
  6093. "autoload": {
  6094. "psr-4": {
  6095. "Laminas\\Feed\\": "src/"
  6096. }
  6097. },
  6098. "notification-url": "https://packagist.org/downloads/",
  6099. "license": [
  6100. "BSD-3-Clause"
  6101. ],
  6102. "description": "provides functionality for consuming RSS and Atom feeds",
  6103. "homepage": "https://laminas.dev",
  6104. "keywords": [
  6105. "feed",
  6106. "laminas"
  6107. ],
  6108. "support": {
  6109. "chat": "https://laminas.dev/chat",
  6110. "docs": "https://docs.laminas.dev/laminas-feed/",
  6111. "forum": "https://discourse.laminas.dev",
  6112. "issues": "https://github.com/laminas/laminas-feed/issues",
  6113. "rss": "https://github.com/laminas/laminas-feed/releases.atom",
  6114. "source": "https://github.com/laminas/laminas-feed"
  6115. },
  6116. "time": "2020-03-29T12:36:29+00:00"
  6117. },
  6118. {
  6119. "name": "laminas/laminas-servicemanager",
  6120. "version": "3.17.0",
  6121. "source": {
  6122. "type": "git",
  6123. "url": "https://github.com/laminas/laminas-servicemanager.git",
  6124. "reference": "360be5f16955dd1edbcce1cfaa98ed82a17f02ec"
  6125. },
  6126. "dist": {
  6127. "type": "zip",
  6128. "url": "https://api.github.com/repos/laminas/laminas-servicemanager/zipball/360be5f16955dd1edbcce1cfaa98ed82a17f02ec",
  6129. "reference": "360be5f16955dd1edbcce1cfaa98ed82a17f02ec",
  6130. "shasum": ""
  6131. },
  6132. "require": {
  6133. "laminas/laminas-stdlib": "^3.2.1",
  6134. "php": "~7.4.0 || ~8.0.0 || ~8.1.0",
  6135. "psr/container": "^1.0"
  6136. },
  6137. "conflict": {
  6138. "ext-psr": "*",
  6139. "laminas/laminas-code": "<3.3.1",
  6140. "zendframework/zend-code": "<3.3.1",
  6141. "zendframework/zend-servicemanager": "*"
  6142. },
  6143. "provide": {
  6144. "psr/container-implementation": "^1.0"
  6145. },
  6146. "replace": {
  6147. "container-interop/container-interop": "^1.2.0"
  6148. },
  6149. "require-dev": {
  6150. "composer/package-versions-deprecated": "^1.0",
  6151. "laminas/laminas-coding-standard": "~2.4.0",
  6152. "laminas/laminas-container-config-test": "^0.7",
  6153. "laminas/laminas-dependency-plugin": "^2.1.2",
  6154. "mikey179/vfsstream": "^1.6.10@alpha",
  6155. "ocramius/proxy-manager": "^2.11",
  6156. "phpbench/phpbench": "^1.1",
  6157. "phpspec/prophecy-phpunit": "^2.0",
  6158. "phpunit/phpunit": "^9.5.5",
  6159. "psalm/plugin-phpunit": "^0.17.0",
  6160. "vimeo/psalm": "^4.8"
  6161. },
  6162. "suggest": {
  6163. "ocramius/proxy-manager": "ProxyManager ^2.1.1 to handle lazy initialization of services"
  6164. },
  6165. "bin": [
  6166. "bin/generate-deps-for-config-factory",
  6167. "bin/generate-factory-for-class"
  6168. ],
  6169. "type": "library",
  6170. "autoload": {
  6171. "files": [
  6172. "src/autoload.php"
  6173. ],
  6174. "psr-4": {
  6175. "Laminas\\ServiceManager\\": "src/"
  6176. }
  6177. },
  6178. "notification-url": "https://packagist.org/downloads/",
  6179. "license": [
  6180. "BSD-3-Clause"
  6181. ],
  6182. "description": "Factory-Driven Dependency Injection Container",
  6183. "homepage": "https://laminas.dev",
  6184. "keywords": [
  6185. "PSR-11",
  6186. "dependency-injection",
  6187. "di",
  6188. "dic",
  6189. "laminas",
  6190. "service-manager",
  6191. "servicemanager"
  6192. ],
  6193. "support": {
  6194. "chat": "https://laminas.dev/chat",
  6195. "docs": "https://docs.laminas.dev/laminas-servicemanager/",
  6196. "forum": "https://discourse.laminas.dev",
  6197. "issues": "https://github.com/laminas/laminas-servicemanager/issues",
  6198. "rss": "https://github.com/laminas/laminas-servicemanager/releases.atom",
  6199. "source": "https://github.com/laminas/laminas-servicemanager"
  6200. },
  6201. "funding": [
  6202. {
  6203. "url": "https://funding.communitybridge.org/projects/laminas-project",
  6204. "type": "community_bridge"
  6205. }
  6206. ],
  6207. "time": "2022-09-22T11:33:46+00:00"
  6208. },
  6209. {
  6210. "name": "laminas/laminas-stdlib",
  6211. "version": "3.2.1",
  6212. "source": {
  6213. "type": "git",
  6214. "url": "https://github.com/laminas/laminas-stdlib.git",
  6215. "reference": "2b18347625a2f06a1a485acfbc870f699dbe51c6"
  6216. },
  6217. "dist": {
  6218. "type": "zip",
  6219. "url": "https://api.github.com/repos/laminas/laminas-stdlib/zipball/2b18347625a2f06a1a485acfbc870f699dbe51c6",
  6220. "reference": "2b18347625a2f06a1a485acfbc870f699dbe51c6",
  6221. "shasum": ""
  6222. },
  6223. "require": {
  6224. "laminas/laminas-zendframework-bridge": "^1.0",
  6225. "php": "^5.6 || ^7.0"
  6226. },
  6227. "replace": {
  6228. "zendframework/zend-stdlib": "self.version"
  6229. },
  6230. "require-dev": {
  6231. "laminas/laminas-coding-standard": "~1.0.0",
  6232. "phpbench/phpbench": "^0.13",
  6233. "phpunit/phpunit": "^5.7.27 || ^6.5.8 || ^7.1.2"
  6234. },
  6235. "type": "library",
  6236. "extra": {
  6237. "branch-alias": {
  6238. "dev-master": "3.2.x-dev",
  6239. "dev-develop": "3.3.x-dev"
  6240. }
  6241. },
  6242. "autoload": {
  6243. "psr-4": {
  6244. "Laminas\\Stdlib\\": "src/"
  6245. }
  6246. },
  6247. "notification-url": "https://packagist.org/downloads/",
  6248. "license": [
  6249. "BSD-3-Clause"
  6250. ],
  6251. "description": "SPL extensions, array utilities, error handlers, and more",
  6252. "homepage": "https://laminas.dev",
  6253. "keywords": [
  6254. "laminas",
  6255. "stdlib"
  6256. ],
  6257. "support": {
  6258. "chat": "https://laminas.dev/chat",
  6259. "docs": "https://docs.laminas.dev/laminas-stdlib/",
  6260. "forum": "https://discourse.laminas.dev",
  6261. "issues": "https://github.com/laminas/laminas-stdlib/issues",
  6262. "rss": "https://github.com/laminas/laminas-stdlib/releases.atom",
  6263. "source": "https://github.com/laminas/laminas-stdlib"
  6264. },
  6265. "time": "2019-12-31T17:51:15+00:00"
  6266. },
  6267. {
  6268. "name": "laminas/laminas-text",
  6269. "version": "2.8.1",
  6270. "source": {
  6271. "type": "git",
  6272. "url": "https://github.com/laminas/laminas-text.git",
  6273. "reference": "d696fa1fb3880b9b8f02c08be58685013b421608"
  6274. },
  6275. "dist": {
  6276. "type": "zip",
  6277. "url": "https://api.github.com/repos/laminas/laminas-text/zipball/d696fa1fb3880b9b8f02c08be58685013b421608",
  6278. "reference": "d696fa1fb3880b9b8f02c08be58685013b421608",
  6279. "shasum": ""
  6280. },
  6281. "require": {
  6282. "laminas/laminas-servicemanager": "^3.4",
  6283. "laminas/laminas-stdlib": "^3.1",
  6284. "laminas/laminas-zendframework-bridge": "^1.0",
  6285. "php": "^7.3 || ~8.0.0"
  6286. },
  6287. "replace": {
  6288. "zendframework/zend-text": "^2.7.1"
  6289. },
  6290. "require-dev": {
  6291. "laminas/laminas-coding-standard": "~1.0.0",
  6292. "laminas/laminas-config": "^3.4",
  6293. "phpunit/phpunit": "^9.3"
  6294. },
  6295. "type": "library",
  6296. "autoload": {
  6297. "psr-4": {
  6298. "Laminas\\Text\\": "src/"
  6299. }
  6300. },
  6301. "notification-url": "https://packagist.org/downloads/",
  6302. "license": [
  6303. "BSD-3-Clause"
  6304. ],
  6305. "description": "Create FIGlets and text-based tables",
  6306. "homepage": "https://laminas.dev",
  6307. "keywords": [
  6308. "laminas",
  6309. "text"
  6310. ],
  6311. "support": {
  6312. "chat": "https://laminas.dev/chat",
  6313. "docs": "https://docs.laminas.dev/laminas-text/",
  6314. "forum": "https://discourse.laminas.dev",
  6315. "issues": "https://github.com/laminas/laminas-text/issues",
  6316. "rss": "https://github.com/laminas/laminas-text/releases.atom",
  6317. "source": "https://github.com/laminas/laminas-text"
  6318. },
  6319. "funding": [
  6320. {
  6321. "url": "https://funding.communitybridge.org/projects/laminas-project",
  6322. "type": "community_bridge"
  6323. }
  6324. ],
  6325. "time": "2021-02-17T21:24:58+00:00"
  6326. },
  6327. {
  6328. "name": "laminas/laminas-zendframework-bridge",
  6329. "version": "1.0.4",
  6330. "source": {
  6331. "type": "git",
  6332. "url": "https://github.com/laminas/laminas-zendframework-bridge.git",
  6333. "reference": "fcd87520e4943d968557803919523772475e8ea3"
  6334. },
  6335. "dist": {
  6336. "type": "zip",
  6337. "url": "https://api.github.com/repos/laminas/laminas-zendframework-bridge/zipball/fcd87520e4943d968557803919523772475e8ea3",
  6338. "reference": "fcd87520e4943d968557803919523772475e8ea3",
  6339. "shasum": ""
  6340. },
  6341. "require": {
  6342. "php": "^5.6 || ^7.0"
  6343. },
  6344. "require-dev": {
  6345. "phpunit/phpunit": "^5.7 || ^6.5 || ^7.5 || ^8.1",
  6346. "squizlabs/php_codesniffer": "^3.5"
  6347. },
  6348. "type": "library",
  6349. "extra": {
  6350. "branch-alias": {
  6351. "dev-master": "1.0.x-dev",
  6352. "dev-develop": "1.1.x-dev"
  6353. },
  6354. "laminas": {
  6355. "module": "Laminas\\ZendFrameworkBridge"
  6356. }
  6357. },
  6358. "autoload": {
  6359. "files": [
  6360. "src/autoload.php"
  6361. ],
  6362. "psr-4": {
  6363. "Laminas\\ZendFrameworkBridge\\": "src//"
  6364. }
  6365. },
  6366. "notification-url": "https://packagist.org/downloads/",
  6367. "license": [
  6368. "BSD-3-Clause"
  6369. ],
  6370. "description": "Alias legacy ZF class names to Laminas Project equivalents.",
  6371. "keywords": [
  6372. "ZendFramework",
  6373. "autoloading",
  6374. "laminas",
  6375. "zf"
  6376. ],
  6377. "support": {
  6378. "forum": "https://discourse.laminas.dev/",
  6379. "issues": "https://github.com/laminas/laminas-zendframework-bridge/issues",
  6380. "rss": "https://github.com/laminas/laminas-zendframework-bridge/releases.atom",
  6381. "source": "https://github.com/laminas/laminas-zendframework-bridge"
  6382. },
  6383. "funding": [
  6384. {
  6385. "url": "https://funding.communitybridge.org/projects/laminas-project",
  6386. "type": "community_bridge"
  6387. }
  6388. ],
  6389. "abandoned": true,
  6390. "time": "2020-05-20T16:45:56+00:00"
  6391. },
  6392. {
  6393. "name": "league/container",
  6394. "version": "2.4.1",
  6395. "source": {
  6396. "type": "git",
  6397. "url": "https://github.com/thephpleague/container.git",
  6398. "reference": "43f35abd03a12977a60ffd7095efd6a7808488c0"
  6399. },
  6400. "dist": {
  6401. "type": "zip",
  6402. "url": "https://api.github.com/repos/thephpleague/container/zipball/43f35abd03a12977a60ffd7095efd6a7808488c0",
  6403. "reference": "43f35abd03a12977a60ffd7095efd6a7808488c0",
  6404. "shasum": ""
  6405. },
  6406. "require": {
  6407. "container-interop/container-interop": "^1.2",
  6408. "php": "^5.4.0 || ^7.0"
  6409. },
  6410. "provide": {
  6411. "container-interop/container-interop-implementation": "^1.2",
  6412. "psr/container-implementation": "^1.0"
  6413. },
  6414. "replace": {
  6415. "orno/di": "~2.0"
  6416. },
  6417. "require-dev": {
  6418. "phpunit/phpunit": "4.*"
  6419. },
  6420. "type": "library",
  6421. "extra": {
  6422. "branch-alias": {
  6423. "dev-2.x": "2.x-dev",
  6424. "dev-1.x": "1.x-dev"
  6425. }
  6426. },
  6427. "autoload": {
  6428. "psr-4": {
  6429. "League\\Container\\": "src"
  6430. }
  6431. },
  6432. "notification-url": "https://packagist.org/downloads/",
  6433. "license": [
  6434. "MIT"
  6435. ],
  6436. "authors": [
  6437. {
  6438. "name": "Phil Bennett",
  6439. "email": "philipobenito@gmail.com",
  6440. "homepage": "http://www.philipobenito.com",
  6441. "role": "Developer"
  6442. }
  6443. ],
  6444. "description": "A fast and intuitive dependency injection container.",
  6445. "homepage": "https://github.com/thephpleague/container",
  6446. "keywords": [
  6447. "container",
  6448. "dependency",
  6449. "di",
  6450. "injection",
  6451. "league",
  6452. "provider",
  6453. "service"
  6454. ],
  6455. "time": "2017-05-10T09:20:27+00:00"
  6456. },
  6457. {
  6458. "name": "masterminds/html5",
  6459. "version": "2.3.0",
  6460. "source": {
  6461. "type": "git",
  6462. "url": "https://github.com/Masterminds/html5-php.git",
  6463. "reference": "2c37c6c520b995b761674de3be8455a381679067"
  6464. },
  6465. "dist": {
  6466. "type": "zip",
  6467. "url": "https://api.github.com/repos/Masterminds/html5-php/zipball/2c37c6c520b995b761674de3be8455a381679067",
  6468. "reference": "2c37c6c520b995b761674de3be8455a381679067",
  6469. "shasum": ""
  6470. },
  6471. "require": {
  6472. "ext-libxml": "*",
  6473. "php": ">=5.3.0"
  6474. },
  6475. "require-dev": {
  6476. "phpunit/phpunit": "4.*",
  6477. "sami/sami": "~2.0",
  6478. "satooshi/php-coveralls": "1.0.*"
  6479. },
  6480. "type": "library",
  6481. "extra": {
  6482. "branch-alias": {
  6483. "dev-master": "2.2-dev"
  6484. }
  6485. },
  6486. "autoload": {
  6487. "psr-4": {
  6488. "Masterminds\\": "src"
  6489. }
  6490. },
  6491. "notification-url": "https://packagist.org/downloads/",
  6492. "license": [
  6493. "MIT"
  6494. ],
  6495. "authors": [
  6496. {
  6497. "name": "Matt Butcher",
  6498. "email": "technosophos@gmail.com"
  6499. },
  6500. {
  6501. "name": "Asmir Mustafic",
  6502. "email": "goetas@gmail.com"
  6503. },
  6504. {
  6505. "name": "Matt Farina",
  6506. "email": "matt@mattfarina.com"
  6507. }
  6508. ],
  6509. "description": "An HTML5 parser and serializer.",
  6510. "homepage": "http://masterminds.github.io/html5-php",
  6511. "keywords": [
  6512. "HTML5",
  6513. "dom",
  6514. "html",
  6515. "parser",
  6516. "querypath",
  6517. "serializer",
  6518. "xml"
  6519. ],
  6520. "support": {
  6521. "issues": "https://github.com/Masterminds/html5-php/issues",
  6522. "source": "https://github.com/Masterminds/html5-php/tree/2.x"
  6523. },
  6524. "time": "2017-09-04T12:26:28+00:00"
  6525. },
  6526. {
  6527. "name": "mathieuviossat/arraytotexttable",
  6528. "version": "v1.0.8",
  6529. "source": {
  6530. "type": "git",
  6531. "url": "https://github.com/viossat/arraytotexttable.git",
  6532. "reference": "6b1af924478cb9c3a903269e304fff006fe0dbf4"
  6533. },
  6534. "dist": {
  6535. "type": "zip",
  6536. "url": "https://api.github.com/repos/viossat/arraytotexttable/zipball/6b1af924478cb9c3a903269e304fff006fe0dbf4",
  6537. "reference": "6b1af924478cb9c3a903269e304fff006fe0dbf4",
  6538. "shasum": ""
  6539. },
  6540. "require": {
  6541. "laminas/laminas-text": "^2.7",
  6542. "php": ">=5.3.0"
  6543. },
  6544. "type": "library",
  6545. "autoload": {
  6546. "psr-4": {
  6547. "MathieuViossat\\Util\\": "src/"
  6548. }
  6549. },
  6550. "notification-url": "https://packagist.org/downloads/",
  6551. "license": [
  6552. "MIT"
  6553. ],
  6554. "authors": [
  6555. {
  6556. "name": "Mathieu Viossat",
  6557. "email": "mathieu@viossat.fr",
  6558. "homepage": "https://viossat.fr"
  6559. }
  6560. ],
  6561. "description": "Display arrays in terminal",
  6562. "homepage": "https://github.com/viossat/arraytotexttable",
  6563. "keywords": [
  6564. "array",
  6565. "ascii",
  6566. "table",
  6567. "terminal",
  6568. "text",
  6569. "unicode"
  6570. ],
  6571. "support": {
  6572. "issues": "https://github.com/viossat/arraytotexttable/issues",
  6573. "source": "https://github.com/viossat/arraytotexttable/tree/v1.0.8"
  6574. },
  6575. "time": "2020-06-23T17:14:22+00:00"
  6576. },
  6577. {
  6578. "name": "mglaman/phpstan-drupal",
  6579. "version": "1.2.1",
  6580. "source": {
  6581. "type": "git",
  6582. "url": "https://github.com/mglaman/phpstan-drupal.git",
  6583. "reference": "920c6b972a832046327f66dc6ff7448e3b5d6e4c"
  6584. },
  6585. "dist": {
  6586. "type": "zip",
  6587. "url": "https://api.github.com/repos/mglaman/phpstan-drupal/zipball/920c6b972a832046327f66dc6ff7448e3b5d6e4c",
  6588. "reference": "920c6b972a832046327f66dc6ff7448e3b5d6e4c",
  6589. "shasum": ""
  6590. },
  6591. "require": {
  6592. "php": "^7.4 || ^8.0",
  6593. "phpstan/phpstan": "^1.10.1",
  6594. "phpstan/phpstan-deprecation-rules": "^1.1.4",
  6595. "symfony/finder": "~3.4.5 ||^4.2 || ^5.0 || ^6.0",
  6596. "symfony/yaml": "~3.4.5 || ^4.2|| ^5.0 || ^6.0",
  6597. "webflo/drupal-finder": "^1.2"
  6598. },
  6599. "require-dev": {
  6600. "behat/mink": "^1.8",
  6601. "composer/installers": "^1.9",
  6602. "drupal/core-recommended": "^8.8@alpha || ^9.0",
  6603. "drush/drush": "^9.6 || ^10.0 || ^11",
  6604. "phpstan/extension-installer": "^1.1",
  6605. "phpstan/phpstan-strict-rules": "^1.0",
  6606. "phpunit/phpunit": "^6.5 || ^7.5 || ^8.0 || ^9",
  6607. "slevomat/coding-standard": "^7.1",
  6608. "squizlabs/php_codesniffer": "^3.3",
  6609. "symfony/phpunit-bridge": "^3.4.3 || ^4.4 || ^5.4 || ^6.0"
  6610. },
  6611. "suggest": {
  6612. "jangregor/phpstan-prophecy": "Provides a prophecy/prophecy extension for phpstan/phpstan.",
  6613. "phpstan/phpstan-deprecation-rules": "For catching deprecations, especially in Drupal core.",
  6614. "phpstan/phpstan-phpunit": "PHPUnit extensions and rules for PHPStan."
  6615. },
  6616. "type": "phpstan-extension",
  6617. "extra": {
  6618. "branch-alias": {
  6619. "dev-main": "1.0-dev"
  6620. },
  6621. "installer-paths": {
  6622. "tests/fixtures/drupal/core": [
  6623. "type:drupal-core"
  6624. ],
  6625. "tests/fixtures/drupal/libraries/{$name}": [
  6626. "type:drupal-library"
  6627. ],
  6628. "tests/fixtures/drupal/modules/contrib/{$name}": [
  6629. "type:drupal-module"
  6630. ],
  6631. "tests/fixtures/drupal/profiles/contrib/{$name}": [
  6632. "type:drupal-profile"
  6633. ],
  6634. "tests/fixtures/drupal/themes/contrib/{$name}": [
  6635. "type:drupal-theme"
  6636. ]
  6637. },
  6638. "phpstan": {
  6639. "includes": [
  6640. "extension.neon",
  6641. "rules.neon"
  6642. ]
  6643. }
  6644. },
  6645. "autoload": {
  6646. "psr-4": {
  6647. "mglaman\\PHPStanDrupal\\": "src/"
  6648. }
  6649. },
  6650. "notification-url": "https://packagist.org/downloads/",
  6651. "license": [
  6652. "MIT"
  6653. ],
  6654. "authors": [
  6655. {
  6656. "name": "Matt Glaman",
  6657. "email": "nmd.matt@gmail.com"
  6658. }
  6659. ],
  6660. "description": "Drupal extension and rules for PHPStan",
  6661. "support": {
  6662. "issues": "https://github.com/mglaman/phpstan-drupal/issues",
  6663. "source": "https://github.com/mglaman/phpstan-drupal/tree/1.2.1"
  6664. },
  6665. "funding": [
  6666. {
  6667. "url": "https://github.com/mglaman",
  6668. "type": "github"
  6669. },
  6670. {
  6671. "url": "https://opencollective.com/phpstan-drupal",
  6672. "type": "open_collective"
  6673. },
  6674. {
  6675. "url": "https://tidelift.com/funding/github/packagist/mglaman/phpstan-drupal",
  6676. "type": "tidelift"
  6677. }
  6678. ],
  6679. "time": "2023-11-03T13:17:28+00:00"
  6680. },
  6681. {
  6682. "name": "nikic/php-parser",
  6683. "version": "v4.4.0",
  6684. "source": {
  6685. "type": "git",
  6686. "url": "https://github.com/nikic/PHP-Parser.git",
  6687. "reference": "bd43ec7152eaaab3bd8c6d0aa95ceeb1df8ee120"
  6688. },
  6689. "dist": {
  6690. "type": "zip",
  6691. "url": "https://api.github.com/repos/nikic/PHP-Parser/zipball/bd43ec7152eaaab3bd8c6d0aa95ceeb1df8ee120",
  6692. "reference": "bd43ec7152eaaab3bd8c6d0aa95ceeb1df8ee120",
  6693. "shasum": ""
  6694. },
  6695. "require": {
  6696. "ext-tokenizer": "*",
  6697. "php": ">=7.0"
  6698. },
  6699. "require-dev": {
  6700. "ircmaxell/php-yacc": "0.0.5",
  6701. "phpunit/phpunit": "^6.5 || ^7.0 || ^8.0"
  6702. },
  6703. "bin": [
  6704. "bin/php-parse"
  6705. ],
  6706. "type": "library",
  6707. "extra": {
  6708. "branch-alias": {
  6709. "dev-master": "4.3-dev"
  6710. }
  6711. },
  6712. "autoload": {
  6713. "psr-4": {
  6714. "PhpParser\\": "lib/PhpParser"
  6715. }
  6716. },
  6717. "notification-url": "https://packagist.org/downloads/",
  6718. "license": [
  6719. "BSD-3-Clause"
  6720. ],
  6721. "authors": [
  6722. {
  6723. "name": "Nikita Popov"
  6724. }
  6725. ],
  6726. "description": "A PHP parser written in PHP",
  6727. "keywords": [
  6728. "parser",
  6729. "php"
  6730. ],
  6731. "time": "2020-04-10T16:34:50+00:00"
  6732. },
  6733. {
  6734. "name": "paragonie/random_compat",
  6735. "version": "v9.99.99",
  6736. "source": {
  6737. "type": "git",
  6738. "url": "https://github.com/paragonie/random_compat.git",
  6739. "reference": "84b4dfb120c6f9b4ff7b3685f9b8f1aa365a0c95"
  6740. },
  6741. "dist": {
  6742. "type": "zip",
  6743. "url": "https://api.github.com/repos/paragonie/random_compat/zipball/84b4dfb120c6f9b4ff7b3685f9b8f1aa365a0c95",
  6744. "reference": "84b4dfb120c6f9b4ff7b3685f9b8f1aa365a0c95",
  6745. "shasum": ""
  6746. },
  6747. "require": {
  6748. "php": "^7"
  6749. },
  6750. "require-dev": {
  6751. "phpunit/phpunit": "4.*|5.*",
  6752. "vimeo/psalm": "^1"
  6753. },
  6754. "suggest": {
  6755. "ext-libsodium": "Provides a modern crypto API that can be used to generate random bytes."
  6756. },
  6757. "type": "library",
  6758. "notification-url": "https://packagist.org/downloads/",
  6759. "license": [
  6760. "MIT"
  6761. ],
  6762. "authors": [
  6763. {
  6764. "name": "Paragon Initiative Enterprises",
  6765. "email": "security@paragonie.com",
  6766. "homepage": "https://paragonie.com"
  6767. }
  6768. ],
  6769. "description": "PHP 5.x polyfill for random_bytes() and random_int() from PHP 7",
  6770. "keywords": [
  6771. "csprng",
  6772. "polyfill",
  6773. "pseudorandom",
  6774. "random"
  6775. ],
  6776. "support": {
  6777. "email": "info@paragonie.com",
  6778. "issues": "https://github.com/paragonie/random_compat/issues",
  6779. "source": "https://github.com/paragonie/random_compat"
  6780. },
  6781. "time": "2018-07-02T15:55:56+00:00"
  6782. },
  6783. {
  6784. "name": "pear/archive_tar",
  6785. "version": "1.4.14",
  6786. "source": {
  6787. "type": "git",
  6788. "url": "https://github.com/pear/Archive_Tar.git",
  6789. "reference": "4d761c5334c790e45ef3245f0864b8955c562caa"
  6790. },
  6791. "dist": {
  6792. "type": "zip",
  6793. "url": "https://api.github.com/repos/pear/Archive_Tar/zipball/4d761c5334c790e45ef3245f0864b8955c562caa",
  6794. "reference": "4d761c5334c790e45ef3245f0864b8955c562caa",
  6795. "shasum": ""
  6796. },
  6797. "require": {
  6798. "pear/pear-core-minimal": "^1.10.0alpha2",
  6799. "php": ">=5.2.0"
  6800. },
  6801. "require-dev": {
  6802. "phpunit/phpunit": "*"
  6803. },
  6804. "suggest": {
  6805. "ext-bz2": "Bz2 compression support.",
  6806. "ext-xz": "Lzma2 compression support.",
  6807. "ext-zlib": "Gzip compression support."
  6808. },
  6809. "type": "library",
  6810. "extra": {
  6811. "branch-alias": {
  6812. "dev-master": "1.4.x-dev"
  6813. }
  6814. },
  6815. "autoload": {
  6816. "psr-0": {
  6817. "Archive_Tar": ""
  6818. }
  6819. },
  6820. "notification-url": "https://packagist.org/downloads/",
  6821. "include-path": [
  6822. "./"
  6823. ],
  6824. "license": [
  6825. "BSD-3-Clause"
  6826. ],
  6827. "authors": [
  6828. {
  6829. "name": "Vincent Blavet",
  6830. "email": "vincent@phpconcept.net"
  6831. },
  6832. {
  6833. "name": "Greg Beaver",
  6834. "email": "greg@chiaraquartet.net"
  6835. },
  6836. {
  6837. "name": "Michiel Rook",
  6838. "email": "mrook@php.net"
  6839. }
  6840. ],
  6841. "description": "Tar file management class with compression support (gzip, bzip2, lzma2)",
  6842. "homepage": "https://github.com/pear/Archive_Tar",
  6843. "keywords": [
  6844. "archive",
  6845. "tar"
  6846. ],
  6847. "support": {
  6848. "issues": "http://pear.php.net/bugs/search.php?cmd=display&package_name[]=Archive_Tar",
  6849. "source": "https://github.com/pear/Archive_Tar"
  6850. },
  6851. "funding": [
  6852. {
  6853. "url": "https://github.com/mrook",
  6854. "type": "github"
  6855. },
  6856. {
  6857. "url": "https://www.patreon.com/michielrook",
  6858. "type": "patreon"
  6859. }
  6860. ],
  6861. "time": "2021-07-20T13:53:39+00:00"
  6862. },
  6863. {
  6864. "name": "pear/console_getopt",
  6865. "version": "v1.4.3",
  6866. "source": {
  6867. "type": "git",
  6868. "url": "https://github.com/pear/Console_Getopt.git",
  6869. "reference": "a41f8d3e668987609178c7c4a9fe48fecac53fa0"
  6870. },
  6871. "dist": {
  6872. "type": "zip",
  6873. "url": "https://api.github.com/repos/pear/Console_Getopt/zipball/a41f8d3e668987609178c7c4a9fe48fecac53fa0",
  6874. "reference": "a41f8d3e668987609178c7c4a9fe48fecac53fa0",
  6875. "shasum": ""
  6876. },
  6877. "type": "library",
  6878. "autoload": {
  6879. "psr-0": {
  6880. "Console": "./"
  6881. }
  6882. },
  6883. "notification-url": "https://packagist.org/downloads/",
  6884. "include-path": [
  6885. "./"
  6886. ],
  6887. "license": [
  6888. "BSD-2-Clause"
  6889. ],
  6890. "authors": [
  6891. {
  6892. "name": "Andrei Zmievski",
  6893. "email": "andrei@php.net",
  6894. "role": "Lead"
  6895. },
  6896. {
  6897. "name": "Stig Bakken",
  6898. "email": "stig@php.net",
  6899. "role": "Developer"
  6900. },
  6901. {
  6902. "name": "Greg Beaver",
  6903. "email": "cellog@php.net",
  6904. "role": "Helper"
  6905. }
  6906. ],
  6907. "description": "More info available on: http://pear.php.net/package/Console_Getopt",
  6908. "support": {
  6909. "issues": "http://pear.php.net/bugs/search.php?cmd=display&package_name[]=Console_Getopt",
  6910. "source": "https://github.com/pear/Console_Getopt"
  6911. },
  6912. "time": "2019-11-20T18:27:48+00:00"
  6913. },
  6914. {
  6915. "name": "pear/pear-core-minimal",
  6916. "version": "v1.10.10",
  6917. "source": {
  6918. "type": "git",
  6919. "url": "https://github.com/pear/pear-core-minimal.git",
  6920. "reference": "625a3c429d9b2c1546438679074cac1b089116a7"
  6921. },
  6922. "dist": {
  6923. "type": "zip",
  6924. "url": "https://api.github.com/repos/pear/pear-core-minimal/zipball/625a3c429d9b2c1546438679074cac1b089116a7",
  6925. "reference": "625a3c429d9b2c1546438679074cac1b089116a7",
  6926. "shasum": ""
  6927. },
  6928. "require": {
  6929. "pear/console_getopt": "~1.4",
  6930. "pear/pear_exception": "~1.0"
  6931. },
  6932. "replace": {
  6933. "rsky/pear-core-min": "self.version"
  6934. },
  6935. "type": "library",
  6936. "autoload": {
  6937. "psr-0": {
  6938. "": "src/"
  6939. }
  6940. },
  6941. "notification-url": "https://packagist.org/downloads/",
  6942. "include-path": [
  6943. "src/"
  6944. ],
  6945. "license": [
  6946. "BSD-3-Clause"
  6947. ],
  6948. "authors": [
  6949. {
  6950. "name": "Christian Weiske",
  6951. "email": "cweiske@php.net",
  6952. "role": "Lead"
  6953. }
  6954. ],
  6955. "description": "Minimal set of PEAR core files to be used as composer dependency",
  6956. "support": {
  6957. "issues": "http://pear.php.net/bugs/search.php?cmd=display&package_name[]=PEAR",
  6958. "source": "https://github.com/pear/pear-core-minimal"
  6959. },
  6960. "time": "2019-11-19T19:00:24+00:00"
  6961. },
  6962. {
  6963. "name": "pear/pear_exception",
  6964. "version": "v1.0.1",
  6965. "source": {
  6966. "type": "git",
  6967. "url": "https://github.com/pear/PEAR_Exception.git",
  6968. "reference": "dbb42a5a0e45f3adcf99babfb2a1ba77b8ac36a7"
  6969. },
  6970. "dist": {
  6971. "type": "zip",
  6972. "url": "https://api.github.com/repos/pear/PEAR_Exception/zipball/dbb42a5a0e45f3adcf99babfb2a1ba77b8ac36a7",
  6973. "reference": "dbb42a5a0e45f3adcf99babfb2a1ba77b8ac36a7",
  6974. "shasum": ""
  6975. },
  6976. "require": {
  6977. "php": ">=4.4.0"
  6978. },
  6979. "require-dev": {
  6980. "phpunit/phpunit": "*"
  6981. },
  6982. "type": "class",
  6983. "extra": {
  6984. "branch-alias": {
  6985. "dev-master": "1.0.x-dev"
  6986. }
  6987. },
  6988. "autoload": {
  6989. "classmap": [
  6990. "PEAR/"
  6991. ]
  6992. },
  6993. "notification-url": "https://packagist.org/downloads/",
  6994. "include-path": [
  6995. "."
  6996. ],
  6997. "license": [
  6998. "BSD-2-Clause"
  6999. ],
  7000. "authors": [
  7001. {
  7002. "name": "Helgi Thormar",
  7003. "email": "dufuz@php.net"
  7004. },
  7005. {
  7006. "name": "Greg Beaver",
  7007. "email": "cellog@php.net"
  7008. }
  7009. ],
  7010. "description": "The PEAR Exception base class.",
  7011. "homepage": "https://github.com/pear/PEAR_Exception",
  7012. "keywords": [
  7013. "exception"
  7014. ],
  7015. "support": {
  7016. "issues": "http://pear.php.net/bugs/search.php?cmd=display&package_name[]=PEAR_Exception",
  7017. "source": "https://github.com/pear/PEAR_Exception"
  7018. },
  7019. "time": "2019-12-10T10:24:42+00:00"
  7020. },
  7021. {
  7022. "name": "phpstan/phpstan",
  7023. "version": "1.12.3",
  7024. "source": {
  7025. "type": "git",
  7026. "url": "https://github.com/phpstan/phpstan.git",
  7027. "reference": "0fcbf194ab63d8159bb70d9aa3e1350051632009"
  7028. },
  7029. "dist": {
  7030. "type": "zip",
  7031. "url": "https://api.github.com/repos/phpstan/phpstan/zipball/0fcbf194ab63d8159bb70d9aa3e1350051632009",
  7032. "reference": "0fcbf194ab63d8159bb70d9aa3e1350051632009",
  7033. "shasum": ""
  7034. },
  7035. "require": {
  7036. "php": "^7.2|^8.0"
  7037. },
  7038. "conflict": {
  7039. "phpstan/phpstan-shim": "*"
  7040. },
  7041. "bin": [
  7042. "phpstan",
  7043. "phpstan.phar"
  7044. ],
  7045. "type": "library",
  7046. "autoload": {
  7047. "files": [
  7048. "bootstrap.php"
  7049. ]
  7050. },
  7051. "notification-url": "https://packagist.org/downloads/",
  7052. "license": [
  7053. "MIT"
  7054. ],
  7055. "description": "PHPStan - PHP Static Analysis Tool",
  7056. "keywords": [
  7057. "dev",
  7058. "static analysis"
  7059. ],
  7060. "support": {
  7061. "docs": "https://phpstan.org/user-guide/getting-started",
  7062. "forum": "https://github.com/phpstan/phpstan/discussions",
  7063. "issues": "https://github.com/phpstan/phpstan/issues",
  7064. "security": "https://github.com/phpstan/phpstan/security/policy",
  7065. "source": "https://github.com/phpstan/phpstan-src"
  7066. },
  7067. "funding": [
  7068. {
  7069. "url": "https://github.com/ondrejmirtes",
  7070. "type": "github"
  7071. },
  7072. {
  7073. "url": "https://github.com/phpstan",
  7074. "type": "github"
  7075. }
  7076. ],
  7077. "time": "2024-09-09T08:10:35+00:00"
  7078. },
  7079. {
  7080. "name": "phpstan/phpstan-deprecation-rules",
  7081. "version": "1.2.1",
  7082. "source": {
  7083. "type": "git",
  7084. "url": "https://github.com/phpstan/phpstan-deprecation-rules.git",
  7085. "reference": "f94d246cc143ec5a23da868f8f7e1393b50eaa82"
  7086. },
  7087. "dist": {
  7088. "type": "zip",
  7089. "url": "https://api.github.com/repos/phpstan/phpstan-deprecation-rules/zipball/f94d246cc143ec5a23da868f8f7e1393b50eaa82",
  7090. "reference": "f94d246cc143ec5a23da868f8f7e1393b50eaa82",
  7091. "shasum": ""
  7092. },
  7093. "require": {
  7094. "php": "^7.2 || ^8.0",
  7095. "phpstan/phpstan": "^1.12"
  7096. },
  7097. "require-dev": {
  7098. "php-parallel-lint/php-parallel-lint": "^1.2",
  7099. "phpstan/phpstan-phpunit": "^1.0",
  7100. "phpunit/phpunit": "^9.5"
  7101. },
  7102. "type": "phpstan-extension",
  7103. "extra": {
  7104. "phpstan": {
  7105. "includes": [
  7106. "rules.neon"
  7107. ]
  7108. }
  7109. },
  7110. "autoload": {
  7111. "psr-4": {
  7112. "PHPStan\\": "src/"
  7113. }
  7114. },
  7115. "notification-url": "https://packagist.org/downloads/",
  7116. "license": [
  7117. "MIT"
  7118. ],
  7119. "description": "PHPStan rules for detecting usage of deprecated classes, methods, properties, constants and traits.",
  7120. "support": {
  7121. "issues": "https://github.com/phpstan/phpstan-deprecation-rules/issues",
  7122. "source": "https://github.com/phpstan/phpstan-deprecation-rules/tree/1.2.1"
  7123. },
  7124. "time": "2024-09-11T15:52:35+00:00"
  7125. },
  7126. {
  7127. "name": "psr/container",
  7128. "version": "1.0.0",
  7129. "source": {
  7130. "type": "git",
  7131. "url": "https://github.com/php-fig/container.git",
  7132. "reference": "b7ce3b176482dbbc1245ebf52b181af44c2cf55f"
  7133. },
  7134. "dist": {
  7135. "type": "zip",
  7136. "url": "https://api.github.com/repos/php-fig/container/zipball/b7ce3b176482dbbc1245ebf52b181af44c2cf55f",
  7137. "reference": "b7ce3b176482dbbc1245ebf52b181af44c2cf55f",
  7138. "shasum": ""
  7139. },
  7140. "require": {
  7141. "php": ">=5.3.0"
  7142. },
  7143. "type": "library",
  7144. "extra": {
  7145. "branch-alias": {
  7146. "dev-master": "1.0.x-dev"
  7147. }
  7148. },
  7149. "autoload": {
  7150. "psr-4": {
  7151. "Psr\\Container\\": "src/"
  7152. }
  7153. },
  7154. "notification-url": "https://packagist.org/downloads/",
  7155. "license": [
  7156. "MIT"
  7157. ],
  7158. "authors": [
  7159. {
  7160. "name": "PHP-FIG",
  7161. "homepage": "http://www.php-fig.org/"
  7162. }
  7163. ],
  7164. "description": "Common Container Interface (PHP FIG PSR-11)",
  7165. "homepage": "https://github.com/php-fig/container",
  7166. "keywords": [
  7167. "PSR-11",
  7168. "container",
  7169. "container-interface",
  7170. "container-interop",
  7171. "psr"
  7172. ],
  7173. "support": {
  7174. "issues": "https://github.com/php-fig/container/issues",
  7175. "source": "https://github.com/php-fig/container/tree/master"
  7176. },
  7177. "time": "2017-02-14T16:28:37+00:00"
  7178. },
  7179. {
  7180. "name": "psr/http-message",
  7181. "version": "1.0.1",
  7182. "source": {
  7183. "type": "git",
  7184. "url": "https://github.com/php-fig/http-message.git",
  7185. "reference": "f6561bf28d520154e4b0ec72be95418abe6d9363"
  7186. },
  7187. "dist": {
  7188. "type": "zip",
  7189. "url": "https://api.github.com/repos/php-fig/http-message/zipball/f6561bf28d520154e4b0ec72be95418abe6d9363",
  7190. "reference": "f6561bf28d520154e4b0ec72be95418abe6d9363",
  7191. "shasum": ""
  7192. },
  7193. "require": {
  7194. "php": ">=5.3.0"
  7195. },
  7196. "type": "library",
  7197. "extra": {
  7198. "branch-alias": {
  7199. "dev-master": "1.0.x-dev"
  7200. }
  7201. },
  7202. "autoload": {
  7203. "psr-4": {
  7204. "Psr\\Http\\Message\\": "src/"
  7205. }
  7206. },
  7207. "notification-url": "https://packagist.org/downloads/",
  7208. "license": [
  7209. "MIT"
  7210. ],
  7211. "authors": [
  7212. {
  7213. "name": "PHP-FIG",
  7214. "homepage": "http://www.php-fig.org/"
  7215. }
  7216. ],
  7217. "description": "Common interface for HTTP messages",
  7218. "homepage": "https://github.com/php-fig/http-message",
  7219. "keywords": [
  7220. "http",
  7221. "http-message",
  7222. "psr",
  7223. "psr-7",
  7224. "request",
  7225. "response"
  7226. ],
  7227. "support": {
  7228. "source": "https://github.com/php-fig/http-message/tree/master"
  7229. },
  7230. "time": "2016-08-06T14:39:51+00:00"
  7231. },
  7232. {
  7233. "name": "psr/log",
  7234. "version": "1.1.3",
  7235. "source": {
  7236. "type": "git",
  7237. "url": "https://github.com/php-fig/log.git",
  7238. "reference": "0f73288fd15629204f9d42b7055f72dacbe811fc"
  7239. },
  7240. "dist": {
  7241. "type": "zip",
  7242. "url": "https://api.github.com/repos/php-fig/log/zipball/0f73288fd15629204f9d42b7055f72dacbe811fc",
  7243. "reference": "0f73288fd15629204f9d42b7055f72dacbe811fc",
  7244. "shasum": ""
  7245. },
  7246. "require": {
  7247. "php": ">=5.3.0"
  7248. },
  7249. "type": "library",
  7250. "extra": {
  7251. "branch-alias": {
  7252. "dev-master": "1.1.x-dev"
  7253. }
  7254. },
  7255. "autoload": {
  7256. "psr-4": {
  7257. "Psr\\Log\\": "Psr/Log/"
  7258. }
  7259. },
  7260. "notification-url": "https://packagist.org/downloads/",
  7261. "license": [
  7262. "MIT"
  7263. ],
  7264. "authors": [
  7265. {
  7266. "name": "PHP-FIG",
  7267. "homepage": "http://www.php-fig.org/"
  7268. }
  7269. ],
  7270. "description": "Common interface for logging libraries",
  7271. "homepage": "https://github.com/php-fig/log",
  7272. "keywords": [
  7273. "log",
  7274. "psr",
  7275. "psr-3"
  7276. ],
  7277. "support": {
  7278. "source": "https://github.com/php-fig/log/tree/1.1.3"
  7279. },
  7280. "time": "2020-03-23T09:12:05+00:00"
  7281. },
  7282. {
  7283. "name": "psy/psysh",
  7284. "version": "v0.10.4",
  7285. "source": {
  7286. "type": "git",
  7287. "url": "https://github.com/bobthecow/psysh.git",
  7288. "reference": "a8aec1b2981ab66882a01cce36a49b6317dc3560"
  7289. },
  7290. "dist": {
  7291. "type": "zip",
  7292. "url": "https://api.github.com/repos/bobthecow/psysh/zipball/a8aec1b2981ab66882a01cce36a49b6317dc3560",
  7293. "reference": "a8aec1b2981ab66882a01cce36a49b6317dc3560",
  7294. "shasum": ""
  7295. },
  7296. "require": {
  7297. "dnoegel/php-xdg-base-dir": "0.1.*",
  7298. "ext-json": "*",
  7299. "ext-tokenizer": "*",
  7300. "nikic/php-parser": "~4.0|~3.0|~2.0|~1.3",
  7301. "php": "^8.0 || ^7.0 || ^5.5.9",
  7302. "symfony/console": "~5.0|~4.0|~3.0|^2.4.2|~2.3.10",
  7303. "symfony/var-dumper": "~5.0|~4.0|~3.0|~2.7"
  7304. },
  7305. "require-dev": {
  7306. "bamarni/composer-bin-plugin": "^1.2",
  7307. "hoa/console": "3.17.*"
  7308. },
  7309. "suggest": {
  7310. "ext-pcntl": "Enabling the PCNTL extension makes PsySH a lot happier :)",
  7311. "ext-pdo-sqlite": "The doc command requires SQLite to work.",
  7312. "ext-posix": "If you have PCNTL, you'll want the POSIX extension as well.",
  7313. "ext-readline": "Enables support for arrow-key history navigation, and showing and manipulating command history.",
  7314. "hoa/console": "A pure PHP readline implementation. You'll want this if your PHP install doesn't already support readline or libedit."
  7315. },
  7316. "bin": [
  7317. "bin/psysh"
  7318. ],
  7319. "type": "library",
  7320. "extra": {
  7321. "branch-alias": {
  7322. "dev-master": "0.10.x-dev"
  7323. }
  7324. },
  7325. "autoload": {
  7326. "files": [
  7327. "src/functions.php"
  7328. ],
  7329. "psr-4": {
  7330. "Psy\\": "src/"
  7331. }
  7332. },
  7333. "notification-url": "https://packagist.org/downloads/",
  7334. "license": [
  7335. "MIT"
  7336. ],
  7337. "authors": [
  7338. {
  7339. "name": "Justin Hileman",
  7340. "email": "justin@justinhileman.info",
  7341. "homepage": "http://justinhileman.com"
  7342. }
  7343. ],
  7344. "description": "An interactive shell for modern PHP.",
  7345. "homepage": "http://psysh.org",
  7346. "keywords": [
  7347. "REPL",
  7348. "console",
  7349. "interactive",
  7350. "shell"
  7351. ],
  7352. "time": "2020-05-03T19:32:03+00:00"
  7353. },
  7354. {
  7355. "name": "ralouphie/getallheaders",
  7356. "version": "3.0.3",
  7357. "source": {
  7358. "type": "git",
  7359. "url": "https://github.com/ralouphie/getallheaders.git",
  7360. "reference": "120b605dfeb996808c31b6477290a714d356e822"
  7361. },
  7362. "dist": {
  7363. "type": "zip",
  7364. "url": "https://api.github.com/repos/ralouphie/getallheaders/zipball/120b605dfeb996808c31b6477290a714d356e822",
  7365. "reference": "120b605dfeb996808c31b6477290a714d356e822",
  7366. "shasum": ""
  7367. },
  7368. "require": {
  7369. "php": ">=5.6"
  7370. },
  7371. "require-dev": {
  7372. "php-coveralls/php-coveralls": "^2.1",
  7373. "phpunit/phpunit": "^5 || ^6.5"
  7374. },
  7375. "type": "library",
  7376. "autoload": {
  7377. "files": [
  7378. "src/getallheaders.php"
  7379. ]
  7380. },
  7381. "notification-url": "https://packagist.org/downloads/",
  7382. "license": [
  7383. "MIT"
  7384. ],
  7385. "authors": [
  7386. {
  7387. "name": "Ralph Khattar",
  7388. "email": "ralph.khattar@gmail.com"
  7389. }
  7390. ],
  7391. "description": "A polyfill for getallheaders.",
  7392. "support": {
  7393. "issues": "https://github.com/ralouphie/getallheaders/issues",
  7394. "source": "https://github.com/ralouphie/getallheaders/tree/develop"
  7395. },
  7396. "time": "2019-03-08T08:55:37+00:00"
  7397. },
  7398. {
  7399. "name": "stack/builder",
  7400. "version": "v1.0.5",
  7401. "source": {
  7402. "type": "git",
  7403. "url": "https://github.com/stackphp/builder.git",
  7404. "reference": "fb3d136d04c6be41120ebf8c0cc71fe9507d750a"
  7405. },
  7406. "dist": {
  7407. "type": "zip",
  7408. "url": "https://api.github.com/repos/stackphp/builder/zipball/fb3d136d04c6be41120ebf8c0cc71fe9507d750a",
  7409. "reference": "fb3d136d04c6be41120ebf8c0cc71fe9507d750a",
  7410. "shasum": ""
  7411. },
  7412. "require": {
  7413. "php": ">=5.3.0",
  7414. "symfony/http-foundation": "~2.1|~3.0|~4.0",
  7415. "symfony/http-kernel": "~2.1|~3.0|~4.0"
  7416. },
  7417. "require-dev": {
  7418. "silex/silex": "~1.0"
  7419. },
  7420. "type": "library",
  7421. "extra": {
  7422. "branch-alias": {
  7423. "dev-master": "1.0-dev"
  7424. }
  7425. },
  7426. "autoload": {
  7427. "psr-0": {
  7428. "Stack": "src"
  7429. }
  7430. },
  7431. "notification-url": "https://packagist.org/downloads/",
  7432. "license": [
  7433. "MIT"
  7434. ],
  7435. "authors": [
  7436. {
  7437. "name": "Igor Wiedler",
  7438. "email": "igor@wiedler.ch"
  7439. }
  7440. ],
  7441. "description": "Builder for stack middlewares based on HttpKernelInterface.",
  7442. "keywords": [
  7443. "stack"
  7444. ],
  7445. "support": {
  7446. "issues": "https://github.com/stackphp/builder/issues",
  7447. "source": "https://github.com/stackphp/builder/tree/master"
  7448. },
  7449. "abandoned": true,
  7450. "time": "2017-11-18T14:57:29+00:00"
  7451. },
  7452. {
  7453. "name": "symfony-cmf/routing",
  7454. "version": "1.4.1",
  7455. "source": {
  7456. "type": "git",
  7457. "url": "https://github.com/symfony-cmf/routing.git",
  7458. "reference": "fb1e7f85ff8c6866238b7e73a490a0a0243ae8ac"
  7459. },
  7460. "dist": {
  7461. "type": "zip",
  7462. "url": "https://api.github.com/repos/symfony-cmf/routing/zipball/fb1e7f85ff8c6866238b7e73a490a0a0243ae8ac",
  7463. "reference": "fb1e7f85ff8c6866238b7e73a490a0a0243ae8ac",
  7464. "shasum": ""
  7465. },
  7466. "require": {
  7467. "php": "^5.3.9|^7.0",
  7468. "psr/log": "1.*",
  7469. "symfony/http-kernel": "^2.2|3.*",
  7470. "symfony/routing": "^2.2|3.*"
  7471. },
  7472. "require-dev": {
  7473. "friendsofsymfony/jsrouting-bundle": "^1.1",
  7474. "symfony-cmf/testing": "^1.3",
  7475. "symfony/config": "^2.2|3.*",
  7476. "symfony/dependency-injection": "^2.0.5|3.*",
  7477. "symfony/event-dispatcher": "^2.1|3.*"
  7478. },
  7479. "suggest": {
  7480. "symfony/event-dispatcher": "DynamicRouter can optionally trigger an event at the start of matching. Minimal version (~2.1)"
  7481. },
  7482. "type": "library",
  7483. "extra": {
  7484. "branch-alias": {
  7485. "dev-master": "1.4-dev"
  7486. }
  7487. },
  7488. "autoload": {
  7489. "psr-4": {
  7490. "Symfony\\Cmf\\Component\\Routing\\": ""
  7491. }
  7492. },
  7493. "notification-url": "https://packagist.org/downloads/",
  7494. "license": [
  7495. "MIT"
  7496. ],
  7497. "authors": [
  7498. {
  7499. "name": "Symfony CMF Community",
  7500. "homepage": "https://github.com/symfony-cmf/Routing/contributors"
  7501. }
  7502. ],
  7503. "description": "Extends the Symfony2 routing component for dynamic routes and chaining several routers",
  7504. "homepage": "http://cmf.symfony.com",
  7505. "keywords": [
  7506. "database",
  7507. "routing"
  7508. ],
  7509. "support": {
  7510. "issues": "https://github.com/symfony-cmf/routing/issues",
  7511. "source": "https://github.com/symfony-cmf/routing/tree/1.4"
  7512. },
  7513. "time": "2017-05-09T08:10:41+00:00"
  7514. },
  7515. {
  7516. "name": "symfony/class-loader",
  7517. "version": "v3.4.41",
  7518. "source": {
  7519. "type": "git",
  7520. "url": "https://github.com/symfony/class-loader.git",
  7521. "reference": "e4636a4f23f157278a19e5db160c63de0da297d8"
  7522. },
  7523. "dist": {
  7524. "type": "zip",
  7525. "url": "https://api.github.com/repos/symfony/class-loader/zipball/e4636a4f23f157278a19e5db160c63de0da297d8",
  7526. "reference": "e4636a4f23f157278a19e5db160c63de0da297d8",
  7527. "shasum": ""
  7528. },
  7529. "require": {
  7530. "php": "^5.5.9|>=7.0.8"
  7531. },
  7532. "require-dev": {
  7533. "symfony/finder": "~2.8|~3.0|~4.0",
  7534. "symfony/polyfill-apcu": "~1.1"
  7535. },
  7536. "suggest": {
  7537. "symfony/polyfill-apcu": "For using ApcClassLoader on HHVM"
  7538. },
  7539. "type": "library",
  7540. "extra": {
  7541. "branch-alias": {
  7542. "dev-master": "3.4-dev"
  7543. }
  7544. },
  7545. "autoload": {
  7546. "psr-4": {
  7547. "Symfony\\Component\\ClassLoader\\": ""
  7548. },
  7549. "exclude-from-classmap": [
  7550. "/Tests/"
  7551. ]
  7552. },
  7553. "notification-url": "https://packagist.org/downloads/",
  7554. "license": [
  7555. "MIT"
  7556. ],
  7557. "authors": [
  7558. {
  7559. "name": "Fabien Potencier",
  7560. "email": "fabien@symfony.com"
  7561. },
  7562. {
  7563. "name": "Symfony Community",
  7564. "homepage": "https://symfony.com/contributors"
  7565. }
  7566. ],
  7567. "description": "Symfony ClassLoader Component",
  7568. "homepage": "https://symfony.com",
  7569. "support": {
  7570. "source": "https://github.com/symfony/class-loader/tree/3.4"
  7571. },
  7572. "funding": [
  7573. {
  7574. "url": "https://symfony.com/sponsor",
  7575. "type": "custom"
  7576. },
  7577. {
  7578. "url": "https://github.com/fabpot",
  7579. "type": "github"
  7580. },
  7581. {
  7582. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7583. "type": "tidelift"
  7584. }
  7585. ],
  7586. "abandoned": true,
  7587. "time": "2020-03-15T09:38:08+00:00"
  7588. },
  7589. {
  7590. "name": "symfony/console",
  7591. "version": "v3.4.41",
  7592. "source": {
  7593. "type": "git",
  7594. "url": "https://github.com/symfony/console.git",
  7595. "reference": "bfe29ead7e7b1cc9ce74c6a40d06ad1f96fced13"
  7596. },
  7597. "dist": {
  7598. "type": "zip",
  7599. "url": "https://api.github.com/repos/symfony/console/zipball/bfe29ead7e7b1cc9ce74c6a40d06ad1f96fced13",
  7600. "reference": "bfe29ead7e7b1cc9ce74c6a40d06ad1f96fced13",
  7601. "shasum": ""
  7602. },
  7603. "require": {
  7604. "php": "^5.5.9|>=7.0.8",
  7605. "symfony/debug": "~2.8|~3.0|~4.0",
  7606. "symfony/polyfill-mbstring": "~1.0"
  7607. },
  7608. "conflict": {
  7609. "symfony/dependency-injection": "<3.4",
  7610. "symfony/process": "<3.3"
  7611. },
  7612. "provide": {
  7613. "psr/log-implementation": "1.0"
  7614. },
  7615. "require-dev": {
  7616. "psr/log": "~1.0",
  7617. "symfony/config": "~3.3|~4.0",
  7618. "symfony/dependency-injection": "~3.4|~4.0",
  7619. "symfony/event-dispatcher": "~2.8|~3.0|~4.0",
  7620. "symfony/lock": "~3.4|~4.0",
  7621. "symfony/process": "~3.3|~4.0"
  7622. },
  7623. "suggest": {
  7624. "psr/log": "For using the console logger",
  7625. "symfony/event-dispatcher": "",
  7626. "symfony/lock": "",
  7627. "symfony/process": ""
  7628. },
  7629. "type": "library",
  7630. "extra": {
  7631. "branch-alias": {
  7632. "dev-master": "3.4-dev"
  7633. }
  7634. },
  7635. "autoload": {
  7636. "psr-4": {
  7637. "Symfony\\Component\\Console\\": ""
  7638. },
  7639. "exclude-from-classmap": [
  7640. "/Tests/"
  7641. ]
  7642. },
  7643. "notification-url": "https://packagist.org/downloads/",
  7644. "license": [
  7645. "MIT"
  7646. ],
  7647. "authors": [
  7648. {
  7649. "name": "Fabien Potencier",
  7650. "email": "fabien@symfony.com"
  7651. },
  7652. {
  7653. "name": "Symfony Community",
  7654. "homepage": "https://symfony.com/contributors"
  7655. }
  7656. ],
  7657. "description": "Symfony Console Component",
  7658. "homepage": "https://symfony.com",
  7659. "support": {
  7660. "source": "https://github.com/symfony/console/tree/v3.4.41"
  7661. },
  7662. "funding": [
  7663. {
  7664. "url": "https://symfony.com/sponsor",
  7665. "type": "custom"
  7666. },
  7667. {
  7668. "url": "https://github.com/fabpot",
  7669. "type": "github"
  7670. },
  7671. {
  7672. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7673. "type": "tidelift"
  7674. }
  7675. ],
  7676. "time": "2020-05-30T18:58:05+00:00"
  7677. },
  7678. {
  7679. "name": "symfony/debug",
  7680. "version": "v3.4.41",
  7681. "source": {
  7682. "type": "git",
  7683. "url": "https://github.com/symfony/debug.git",
  7684. "reference": "518c6a00d0872da30bd06aee3ea59a0a5cf54d6d"
  7685. },
  7686. "dist": {
  7687. "type": "zip",
  7688. "url": "https://api.github.com/repos/symfony/debug/zipball/518c6a00d0872da30bd06aee3ea59a0a5cf54d6d",
  7689. "reference": "518c6a00d0872da30bd06aee3ea59a0a5cf54d6d",
  7690. "shasum": ""
  7691. },
  7692. "require": {
  7693. "php": "^5.5.9|>=7.0.8",
  7694. "psr/log": "~1.0"
  7695. },
  7696. "conflict": {
  7697. "symfony/http-kernel": ">=2.3,<2.3.24|~2.4.0|>=2.5,<2.5.9|>=2.6,<2.6.2"
  7698. },
  7699. "require-dev": {
  7700. "symfony/http-kernel": "~2.8|~3.0|~4.0"
  7701. },
  7702. "type": "library",
  7703. "extra": {
  7704. "branch-alias": {
  7705. "dev-master": "3.4-dev"
  7706. }
  7707. },
  7708. "autoload": {
  7709. "psr-4": {
  7710. "Symfony\\Component\\Debug\\": ""
  7711. },
  7712. "exclude-from-classmap": [
  7713. "/Tests/"
  7714. ]
  7715. },
  7716. "notification-url": "https://packagist.org/downloads/",
  7717. "license": [
  7718. "MIT"
  7719. ],
  7720. "authors": [
  7721. {
  7722. "name": "Fabien Potencier",
  7723. "email": "fabien@symfony.com"
  7724. },
  7725. {
  7726. "name": "Symfony Community",
  7727. "homepage": "https://symfony.com/contributors"
  7728. }
  7729. ],
  7730. "description": "Symfony Debug Component",
  7731. "homepage": "https://symfony.com",
  7732. "support": {
  7733. "source": "https://github.com/symfony/debug/tree/3.4"
  7734. },
  7735. "funding": [
  7736. {
  7737. "url": "https://symfony.com/sponsor",
  7738. "type": "custom"
  7739. },
  7740. {
  7741. "url": "https://github.com/fabpot",
  7742. "type": "github"
  7743. },
  7744. {
  7745. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7746. "type": "tidelift"
  7747. }
  7748. ],
  7749. "abandoned": "symfony/error-handler",
  7750. "time": "2020-05-22T18:25:20+00:00"
  7751. },
  7752. {
  7753. "name": "symfony/dependency-injection",
  7754. "version": "v3.4.41",
  7755. "source": {
  7756. "type": "git",
  7757. "url": "https://github.com/symfony/dependency-injection.git",
  7758. "reference": "e39380b7104b0ec538a075ae919f00c7e5267bac"
  7759. },
  7760. "dist": {
  7761. "type": "zip",
  7762. "url": "https://api.github.com/repos/symfony/dependency-injection/zipball/e39380b7104b0ec538a075ae919f00c7e5267bac",
  7763. "reference": "e39380b7104b0ec538a075ae919f00c7e5267bac",
  7764. "shasum": ""
  7765. },
  7766. "require": {
  7767. "php": "^5.5.9|>=7.0.8",
  7768. "psr/container": "^1.0"
  7769. },
  7770. "conflict": {
  7771. "symfony/config": "<3.3.7",
  7772. "symfony/finder": "<3.3",
  7773. "symfony/proxy-manager-bridge": "<3.4",
  7774. "symfony/yaml": "<3.4"
  7775. },
  7776. "provide": {
  7777. "psr/container-implementation": "1.0"
  7778. },
  7779. "require-dev": {
  7780. "symfony/config": "~3.3|~4.0",
  7781. "symfony/expression-language": "~2.8|~3.0|~4.0",
  7782. "symfony/yaml": "~3.4|~4.0"
  7783. },
  7784. "suggest": {
  7785. "symfony/config": "",
  7786. "symfony/expression-language": "For using expressions in service container configuration",
  7787. "symfony/finder": "For using double-star glob patterns or when GLOB_BRACE portability is required",
  7788. "symfony/proxy-manager-bridge": "Generate service proxies to lazy load them",
  7789. "symfony/yaml": ""
  7790. },
  7791. "type": "library",
  7792. "extra": {
  7793. "branch-alias": {
  7794. "dev-master": "3.4-dev"
  7795. }
  7796. },
  7797. "autoload": {
  7798. "psr-4": {
  7799. "Symfony\\Component\\DependencyInjection\\": ""
  7800. },
  7801. "exclude-from-classmap": [
  7802. "/Tests/"
  7803. ]
  7804. },
  7805. "notification-url": "https://packagist.org/downloads/",
  7806. "license": [
  7807. "MIT"
  7808. ],
  7809. "authors": [
  7810. {
  7811. "name": "Fabien Potencier",
  7812. "email": "fabien@symfony.com"
  7813. },
  7814. {
  7815. "name": "Symfony Community",
  7816. "homepage": "https://symfony.com/contributors"
  7817. }
  7818. ],
  7819. "description": "Symfony DependencyInjection Component",
  7820. "homepage": "https://symfony.com",
  7821. "support": {
  7822. "source": "https://github.com/symfony/dependency-injection/tree/3.4"
  7823. },
  7824. "funding": [
  7825. {
  7826. "url": "https://symfony.com/sponsor",
  7827. "type": "custom"
  7828. },
  7829. {
  7830. "url": "https://github.com/fabpot",
  7831. "type": "github"
  7832. },
  7833. {
  7834. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7835. "type": "tidelift"
  7836. }
  7837. ],
  7838. "time": "2020-05-30T21:06:01+00:00"
  7839. },
  7840. {
  7841. "name": "symfony/event-dispatcher",
  7842. "version": "v3.4.41",
  7843. "source": {
  7844. "type": "git",
  7845. "url": "https://github.com/symfony/event-dispatcher.git",
  7846. "reference": "14d978f8e8555f2de719c00eb65376be7d2e9081"
  7847. },
  7848. "dist": {
  7849. "type": "zip",
  7850. "url": "https://api.github.com/repos/symfony/event-dispatcher/zipball/14d978f8e8555f2de719c00eb65376be7d2e9081",
  7851. "reference": "14d978f8e8555f2de719c00eb65376be7d2e9081",
  7852. "shasum": ""
  7853. },
  7854. "require": {
  7855. "php": "^5.5.9|>=7.0.8"
  7856. },
  7857. "conflict": {
  7858. "symfony/dependency-injection": "<3.3"
  7859. },
  7860. "require-dev": {
  7861. "psr/log": "~1.0",
  7862. "symfony/config": "~2.8|~3.0|~4.0",
  7863. "symfony/dependency-injection": "~3.3|~4.0",
  7864. "symfony/expression-language": "~2.8|~3.0|~4.0",
  7865. "symfony/stopwatch": "~2.8|~3.0|~4.0"
  7866. },
  7867. "suggest": {
  7868. "symfony/dependency-injection": "",
  7869. "symfony/http-kernel": ""
  7870. },
  7871. "type": "library",
  7872. "extra": {
  7873. "branch-alias": {
  7874. "dev-master": "3.4-dev"
  7875. }
  7876. },
  7877. "autoload": {
  7878. "psr-4": {
  7879. "Symfony\\Component\\EventDispatcher\\": ""
  7880. },
  7881. "exclude-from-classmap": [
  7882. "/Tests/"
  7883. ]
  7884. },
  7885. "notification-url": "https://packagist.org/downloads/",
  7886. "license": [
  7887. "MIT"
  7888. ],
  7889. "authors": [
  7890. {
  7891. "name": "Fabien Potencier",
  7892. "email": "fabien@symfony.com"
  7893. },
  7894. {
  7895. "name": "Symfony Community",
  7896. "homepage": "https://symfony.com/contributors"
  7897. }
  7898. ],
  7899. "description": "Symfony EventDispatcher Component",
  7900. "homepage": "https://symfony.com",
  7901. "support": {
  7902. "source": "https://github.com/symfony/event-dispatcher/tree/3.4"
  7903. },
  7904. "funding": [
  7905. {
  7906. "url": "https://symfony.com/sponsor",
  7907. "type": "custom"
  7908. },
  7909. {
  7910. "url": "https://github.com/fabpot",
  7911. "type": "github"
  7912. },
  7913. {
  7914. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7915. "type": "tidelift"
  7916. }
  7917. ],
  7918. "time": "2020-05-05T15:06:23+00:00"
  7919. },
  7920. {
  7921. "name": "symfony/filesystem",
  7922. "version": "v4.4.42",
  7923. "source": {
  7924. "type": "git",
  7925. "url": "https://github.com/symfony/filesystem.git",
  7926. "reference": "815412ee8971209bd4c1eecd5f4f481eacd44bf5"
  7927. },
  7928. "dist": {
  7929. "type": "zip",
  7930. "url": "https://api.github.com/repos/symfony/filesystem/zipball/815412ee8971209bd4c1eecd5f4f481eacd44bf5",
  7931. "reference": "815412ee8971209bd4c1eecd5f4f481eacd44bf5",
  7932. "shasum": ""
  7933. },
  7934. "require": {
  7935. "php": ">=7.1.3",
  7936. "symfony/polyfill-ctype": "~1.8",
  7937. "symfony/polyfill-php80": "^1.16"
  7938. },
  7939. "type": "library",
  7940. "autoload": {
  7941. "psr-4": {
  7942. "Symfony\\Component\\Filesystem\\": ""
  7943. },
  7944. "exclude-from-classmap": [
  7945. "/Tests/"
  7946. ]
  7947. },
  7948. "notification-url": "https://packagist.org/downloads/",
  7949. "license": [
  7950. "MIT"
  7951. ],
  7952. "authors": [
  7953. {
  7954. "name": "Fabien Potencier",
  7955. "email": "fabien@symfony.com"
  7956. },
  7957. {
  7958. "name": "Symfony Community",
  7959. "homepage": "https://symfony.com/contributors"
  7960. }
  7961. ],
  7962. "description": "Provides basic utilities for the filesystem",
  7963. "homepage": "https://symfony.com",
  7964. "support": {
  7965. "source": "https://github.com/symfony/filesystem/tree/v4.4.42"
  7966. },
  7967. "funding": [
  7968. {
  7969. "url": "https://symfony.com/sponsor",
  7970. "type": "custom"
  7971. },
  7972. {
  7973. "url": "https://github.com/fabpot",
  7974. "type": "github"
  7975. },
  7976. {
  7977. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7978. "type": "tidelift"
  7979. }
  7980. ],
  7981. "time": "2022-05-20T08:49:14+00:00"
  7982. },
  7983. {
  7984. "name": "symfony/finder",
  7985. "version": "v4.4.44",
  7986. "source": {
  7987. "type": "git",
  7988. "url": "https://github.com/symfony/finder.git",
  7989. "reference": "66bd787edb5e42ff59d3523f623895af05043e4f"
  7990. },
  7991. "dist": {
  7992. "type": "zip",
  7993. "url": "https://api.github.com/repos/symfony/finder/zipball/66bd787edb5e42ff59d3523f623895af05043e4f",
  7994. "reference": "66bd787edb5e42ff59d3523f623895af05043e4f",
  7995. "shasum": ""
  7996. },
  7997. "require": {
  7998. "php": ">=7.1.3",
  7999. "symfony/polyfill-php80": "^1.16"
  8000. },
  8001. "type": "library",
  8002. "autoload": {
  8003. "psr-4": {
  8004. "Symfony\\Component\\Finder\\": ""
  8005. },
  8006. "exclude-from-classmap": [
  8007. "/Tests/"
  8008. ]
  8009. },
  8010. "notification-url": "https://packagist.org/downloads/",
  8011. "license": [
  8012. "MIT"
  8013. ],
  8014. "authors": [
  8015. {
  8016. "name": "Fabien Potencier",
  8017. "email": "fabien@symfony.com"
  8018. },
  8019. {
  8020. "name": "Symfony Community",
  8021. "homepage": "https://symfony.com/contributors"
  8022. }
  8023. ],
  8024. "description": "Finds files and directories via an intuitive fluent interface",
  8025. "homepage": "https://symfony.com",
  8026. "support": {
  8027. "source": "https://github.com/symfony/finder/tree/v4.4.44"
  8028. },
  8029. "funding": [
  8030. {
  8031. "url": "https://symfony.com/sponsor",
  8032. "type": "custom"
  8033. },
  8034. {
  8035. "url": "https://github.com/fabpot",
  8036. "type": "github"
  8037. },
  8038. {
  8039. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8040. "type": "tidelift"
  8041. }
  8042. ],
  8043. "time": "2022-07-29T07:35:46+00:00"
  8044. },
  8045. {
  8046. "name": "symfony/http-foundation",
  8047. "version": "v3.4.41",
  8048. "source": {
  8049. "type": "git",
  8050. "url": "https://github.com/symfony/http-foundation.git",
  8051. "reference": "fbd216d2304b1a3fe38d6392b04729c8dd356359"
  8052. },
  8053. "dist": {
  8054. "type": "zip",
  8055. "url": "https://api.github.com/repos/symfony/http-foundation/zipball/fbd216d2304b1a3fe38d6392b04729c8dd356359",
  8056. "reference": "fbd216d2304b1a3fe38d6392b04729c8dd356359",
  8057. "shasum": ""
  8058. },
  8059. "require": {
  8060. "php": "^5.5.9|>=7.0.8",
  8061. "symfony/polyfill-mbstring": "~1.1",
  8062. "symfony/polyfill-php70": "~1.6"
  8063. },
  8064. "require-dev": {
  8065. "symfony/expression-language": "~2.8|~3.0|~4.0"
  8066. },
  8067. "type": "library",
  8068. "extra": {
  8069. "branch-alias": {
  8070. "dev-master": "3.4-dev"
  8071. }
  8072. },
  8073. "autoload": {
  8074. "psr-4": {
  8075. "Symfony\\Component\\HttpFoundation\\": ""
  8076. },
  8077. "exclude-from-classmap": [
  8078. "/Tests/"
  8079. ]
  8080. },
  8081. "notification-url": "https://packagist.org/downloads/",
  8082. "license": [
  8083. "MIT"
  8084. ],
  8085. "authors": [
  8086. {
  8087. "name": "Fabien Potencier",
  8088. "email": "fabien@symfony.com"
  8089. },
  8090. {
  8091. "name": "Symfony Community",
  8092. "homepage": "https://symfony.com/contributors"
  8093. }
  8094. ],
  8095. "description": "Symfony HttpFoundation Component",
  8096. "homepage": "https://symfony.com",
  8097. "support": {
  8098. "source": "https://github.com/symfony/http-foundation/tree/3.4"
  8099. },
  8100. "funding": [
  8101. {
  8102. "url": "https://symfony.com/sponsor",
  8103. "type": "custom"
  8104. },
  8105. {
  8106. "url": "https://github.com/fabpot",
  8107. "type": "github"
  8108. },
  8109. {
  8110. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8111. "type": "tidelift"
  8112. }
  8113. ],
  8114. "time": "2020-05-16T13:15:54+00:00"
  8115. },
  8116. {
  8117. "name": "symfony/http-kernel",
  8118. "version": "v3.4.44",
  8119. "source": {
  8120. "type": "git",
  8121. "url": "https://github.com/symfony/http-kernel.git",
  8122. "reference": "27dcaa8c6b18c75df9f37badeb4d3564ffaa1326"
  8123. },
  8124. "dist": {
  8125. "type": "zip",
  8126. "url": "https://api.github.com/repos/symfony/http-kernel/zipball/27dcaa8c6b18c75df9f37badeb4d3564ffaa1326",
  8127. "reference": "27dcaa8c6b18c75df9f37badeb4d3564ffaa1326",
  8128. "shasum": ""
  8129. },
  8130. "require": {
  8131. "php": "^5.5.9|>=7.0.8",
  8132. "psr/log": "~1.0",
  8133. "symfony/debug": "^3.3.3|~4.0",
  8134. "symfony/event-dispatcher": "~2.8|~3.0|~4.0",
  8135. "symfony/http-foundation": "~3.4.12|~4.0.12|^4.1.1",
  8136. "symfony/polyfill-ctype": "~1.8",
  8137. "symfony/polyfill-php56": "~1.8"
  8138. },
  8139. "conflict": {
  8140. "symfony/config": "<2.8",
  8141. "symfony/dependency-injection": "<3.4.10|<4.0.10,>=4",
  8142. "symfony/var-dumper": "<3.3",
  8143. "twig/twig": "<1.34|<2.4,>=2"
  8144. },
  8145. "provide": {
  8146. "psr/log-implementation": "1.0"
  8147. },
  8148. "require-dev": {
  8149. "psr/cache": "~1.0",
  8150. "symfony/browser-kit": "~2.8|~3.0|~4.0",
  8151. "symfony/class-loader": "~2.8|~3.0",
  8152. "symfony/config": "~2.8|~3.0|~4.0",
  8153. "symfony/console": "~2.8|~3.0|~4.0",
  8154. "symfony/css-selector": "~2.8|~3.0|~4.0",
  8155. "symfony/dependency-injection": "^3.4.10|^4.0.10",
  8156. "symfony/dom-crawler": "~2.8|~3.0|~4.0",
  8157. "symfony/expression-language": "~2.8|~3.0|~4.0",
  8158. "symfony/finder": "~2.8|~3.0|~4.0",
  8159. "symfony/process": "~2.8|~3.0|~4.0",
  8160. "symfony/routing": "~3.4|~4.0",
  8161. "symfony/stopwatch": "~2.8|~3.0|~4.0",
  8162. "symfony/templating": "~2.8|~3.0|~4.0",
  8163. "symfony/translation": "~2.8|~3.0|~4.0",
  8164. "symfony/var-dumper": "~3.3|~4.0"
  8165. },
  8166. "suggest": {
  8167. "symfony/browser-kit": "",
  8168. "symfony/config": "",
  8169. "symfony/console": "",
  8170. "symfony/dependency-injection": "",
  8171. "symfony/finder": "",
  8172. "symfony/var-dumper": ""
  8173. },
  8174. "type": "library",
  8175. "extra": {
  8176. "branch-alias": {
  8177. "dev-master": "3.4-dev"
  8178. }
  8179. },
  8180. "autoload": {
  8181. "psr-4": {
  8182. "Symfony\\Component\\HttpKernel\\": ""
  8183. },
  8184. "exclude-from-classmap": [
  8185. "/Tests/"
  8186. ]
  8187. },
  8188. "notification-url": "https://packagist.org/downloads/",
  8189. "license": [
  8190. "MIT"
  8191. ],
  8192. "authors": [
  8193. {
  8194. "name": "Fabien Potencier",
  8195. "email": "fabien@symfony.com"
  8196. },
  8197. {
  8198. "name": "Symfony Community",
  8199. "homepage": "https://symfony.com/contributors"
  8200. }
  8201. ],
  8202. "description": "Symfony HttpKernel Component",
  8203. "homepage": "https://symfony.com",
  8204. "support": {
  8205. "source": "https://github.com/symfony/http-kernel/tree/v3.4.44"
  8206. },
  8207. "funding": [
  8208. {
  8209. "url": "https://symfony.com/sponsor",
  8210. "type": "custom"
  8211. },
  8212. {
  8213. "url": "https://github.com/fabpot",
  8214. "type": "github"
  8215. },
  8216. {
  8217. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8218. "type": "tidelift"
  8219. }
  8220. ],
  8221. "time": "2020-08-31T05:53:42+00:00"
  8222. },
  8223. {
  8224. "name": "symfony/polyfill-ctype",
  8225. "version": "v1.17.0",
  8226. "source": {
  8227. "type": "git",
  8228. "url": "https://github.com/symfony/polyfill-ctype.git",
  8229. "reference": "e94c8b1bbe2bc77507a1056cdb06451c75b427f9"
  8230. },
  8231. "dist": {
  8232. "type": "zip",
  8233. "url": "https://api.github.com/repos/symfony/polyfill-ctype/zipball/e94c8b1bbe2bc77507a1056cdb06451c75b427f9",
  8234. "reference": "e94c8b1bbe2bc77507a1056cdb06451c75b427f9",
  8235. "shasum": ""
  8236. },
  8237. "require": {
  8238. "php": ">=5.3.3"
  8239. },
  8240. "suggest": {
  8241. "ext-ctype": "For best performance"
  8242. },
  8243. "type": "library",
  8244. "extra": {
  8245. "branch-alias": {
  8246. "dev-master": "1.17-dev"
  8247. }
  8248. },
  8249. "autoload": {
  8250. "files": [
  8251. "bootstrap.php"
  8252. ],
  8253. "psr-4": {
  8254. "Symfony\\Polyfill\\Ctype\\": ""
  8255. }
  8256. },
  8257. "notification-url": "https://packagist.org/downloads/",
  8258. "license": [
  8259. "MIT"
  8260. ],
  8261. "authors": [
  8262. {
  8263. "name": "Gert de Pagter",
  8264. "email": "BackEndTea@gmail.com"
  8265. },
  8266. {
  8267. "name": "Symfony Community",
  8268. "homepage": "https://symfony.com/contributors"
  8269. }
  8270. ],
  8271. "description": "Symfony polyfill for ctype functions",
  8272. "homepage": "https://symfony.com",
  8273. "keywords": [
  8274. "compatibility",
  8275. "ctype",
  8276. "polyfill",
  8277. "portable"
  8278. ],
  8279. "support": {
  8280. "source": "https://github.com/symfony/polyfill-ctype/tree/v1.17.0"
  8281. },
  8282. "funding": [
  8283. {
  8284. "url": "https://symfony.com/sponsor",
  8285. "type": "custom"
  8286. },
  8287. {
  8288. "url": "https://github.com/fabpot",
  8289. "type": "github"
  8290. },
  8291. {
  8292. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8293. "type": "tidelift"
  8294. }
  8295. ],
  8296. "time": "2020-05-12T16:14:59+00:00"
  8297. },
  8298. {
  8299. "name": "symfony/polyfill-iconv",
  8300. "version": "v1.17.0",
  8301. "source": {
  8302. "type": "git",
  8303. "url": "https://github.com/symfony/polyfill-iconv.git",
  8304. "reference": "c4de7601eefbf25f9d47190abe07f79fe0a27424"
  8305. },
  8306. "dist": {
  8307. "type": "zip",
  8308. "url": "https://api.github.com/repos/symfony/polyfill-iconv/zipball/c4de7601eefbf25f9d47190abe07f79fe0a27424",
  8309. "reference": "c4de7601eefbf25f9d47190abe07f79fe0a27424",
  8310. "shasum": ""
  8311. },
  8312. "require": {
  8313. "php": ">=5.3.3"
  8314. },
  8315. "suggest": {
  8316. "ext-iconv": "For best performance"
  8317. },
  8318. "type": "library",
  8319. "extra": {
  8320. "branch-alias": {
  8321. "dev-master": "1.17-dev"
  8322. }
  8323. },
  8324. "autoload": {
  8325. "files": [
  8326. "bootstrap.php"
  8327. ],
  8328. "psr-4": {
  8329. "Symfony\\Polyfill\\Iconv\\": ""
  8330. }
  8331. },
  8332. "notification-url": "https://packagist.org/downloads/",
  8333. "license": [
  8334. "MIT"
  8335. ],
  8336. "authors": [
  8337. {
  8338. "name": "Nicolas Grekas",
  8339. "email": "p@tchwork.com"
  8340. },
  8341. {
  8342. "name": "Symfony Community",
  8343. "homepage": "https://symfony.com/contributors"
  8344. }
  8345. ],
  8346. "description": "Symfony polyfill for the Iconv extension",
  8347. "homepage": "https://symfony.com",
  8348. "keywords": [
  8349. "compatibility",
  8350. "iconv",
  8351. "polyfill",
  8352. "portable",
  8353. "shim"
  8354. ],
  8355. "support": {
  8356. "source": "https://github.com/symfony/polyfill-iconv/tree/v1.17.0"
  8357. },
  8358. "funding": [
  8359. {
  8360. "url": "https://symfony.com/sponsor",
  8361. "type": "custom"
  8362. },
  8363. {
  8364. "url": "https://github.com/fabpot",
  8365. "type": "github"
  8366. },
  8367. {
  8368. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8369. "type": "tidelift"
  8370. }
  8371. ],
  8372. "time": "2020-05-12T16:47:27+00:00"
  8373. },
  8374. {
  8375. "name": "symfony/polyfill-intl-idn",
  8376. "version": "v1.17.0",
  8377. "source": {
  8378. "type": "git",
  8379. "url": "https://github.com/symfony/polyfill-intl-idn.git",
  8380. "reference": "3bff59ea7047e925be6b7f2059d60af31bb46d6a"
  8381. },
  8382. "dist": {
  8383. "type": "zip",
  8384. "url": "https://api.github.com/repos/symfony/polyfill-intl-idn/zipball/3bff59ea7047e925be6b7f2059d60af31bb46d6a",
  8385. "reference": "3bff59ea7047e925be6b7f2059d60af31bb46d6a",
  8386. "shasum": ""
  8387. },
  8388. "require": {
  8389. "php": ">=5.3.3",
  8390. "symfony/polyfill-mbstring": "^1.3",
  8391. "symfony/polyfill-php72": "^1.10"
  8392. },
  8393. "suggest": {
  8394. "ext-intl": "For best performance"
  8395. },
  8396. "type": "library",
  8397. "extra": {
  8398. "branch-alias": {
  8399. "dev-master": "1.17-dev"
  8400. }
  8401. },
  8402. "autoload": {
  8403. "files": [
  8404. "bootstrap.php"
  8405. ],
  8406. "psr-4": {
  8407. "Symfony\\Polyfill\\Intl\\Idn\\": ""
  8408. }
  8409. },
  8410. "notification-url": "https://packagist.org/downloads/",
  8411. "license": [
  8412. "MIT"
  8413. ],
  8414. "authors": [
  8415. {
  8416. "name": "Laurent Bassin",
  8417. "email": "laurent@bassin.info"
  8418. },
  8419. {
  8420. "name": "Symfony Community",
  8421. "homepage": "https://symfony.com/contributors"
  8422. }
  8423. ],
  8424. "description": "Symfony polyfill for intl's idn_to_ascii and idn_to_utf8 functions",
  8425. "homepage": "https://symfony.com",
  8426. "keywords": [
  8427. "compatibility",
  8428. "idn",
  8429. "intl",
  8430. "polyfill",
  8431. "portable",
  8432. "shim"
  8433. ],
  8434. "support": {
  8435. "source": "https://github.com/symfony/polyfill-intl-idn/tree/master"
  8436. },
  8437. "funding": [
  8438. {
  8439. "url": "https://symfony.com/sponsor",
  8440. "type": "custom"
  8441. },
  8442. {
  8443. "url": "https://github.com/fabpot",
  8444. "type": "github"
  8445. },
  8446. {
  8447. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8448. "type": "tidelift"
  8449. }
  8450. ],
  8451. "time": "2020-05-12T16:47:27+00:00"
  8452. },
  8453. {
  8454. "name": "symfony/polyfill-mbstring",
  8455. "version": "v1.17.0",
  8456. "source": {
  8457. "type": "git",
  8458. "url": "https://github.com/symfony/polyfill-mbstring.git",
  8459. "reference": "fa79b11539418b02fc5e1897267673ba2c19419c"
  8460. },
  8461. "dist": {
  8462. "type": "zip",
  8463. "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/fa79b11539418b02fc5e1897267673ba2c19419c",
  8464. "reference": "fa79b11539418b02fc5e1897267673ba2c19419c",
  8465. "shasum": ""
  8466. },
  8467. "require": {
  8468. "php": ">=5.3.3"
  8469. },
  8470. "suggest": {
  8471. "ext-mbstring": "For best performance"
  8472. },
  8473. "type": "library",
  8474. "extra": {
  8475. "branch-alias": {
  8476. "dev-master": "1.17-dev"
  8477. }
  8478. },
  8479. "autoload": {
  8480. "files": [
  8481. "bootstrap.php"
  8482. ],
  8483. "psr-4": {
  8484. "Symfony\\Polyfill\\Mbstring\\": ""
  8485. }
  8486. },
  8487. "notification-url": "https://packagist.org/downloads/",
  8488. "license": [
  8489. "MIT"
  8490. ],
  8491. "authors": [
  8492. {
  8493. "name": "Nicolas Grekas",
  8494. "email": "p@tchwork.com"
  8495. },
  8496. {
  8497. "name": "Symfony Community",
  8498. "homepage": "https://symfony.com/contributors"
  8499. }
  8500. ],
  8501. "description": "Symfony polyfill for the Mbstring extension",
  8502. "homepage": "https://symfony.com",
  8503. "keywords": [
  8504. "compatibility",
  8505. "mbstring",
  8506. "polyfill",
  8507. "portable",
  8508. "shim"
  8509. ],
  8510. "support": {
  8511. "source": "https://github.com/symfony/polyfill-mbstring/tree/v1.17.0"
  8512. },
  8513. "funding": [
  8514. {
  8515. "url": "https://symfony.com/sponsor",
  8516. "type": "custom"
  8517. },
  8518. {
  8519. "url": "https://github.com/fabpot",
  8520. "type": "github"
  8521. },
  8522. {
  8523. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8524. "type": "tidelift"
  8525. }
  8526. ],
  8527. "time": "2020-05-12T16:47:27+00:00"
  8528. },
  8529. {
  8530. "name": "symfony/polyfill-php56",
  8531. "version": "v1.17.0",
  8532. "source": {
  8533. "type": "git",
  8534. "url": "https://github.com/symfony/polyfill-php56.git",
  8535. "reference": "e3c8c138280cdfe4b81488441555583aa1984e23"
  8536. },
  8537. "dist": {
  8538. "type": "zip",
  8539. "url": "https://api.github.com/repos/symfony/polyfill-php56/zipball/e3c8c138280cdfe4b81488441555583aa1984e23",
  8540. "reference": "e3c8c138280cdfe4b81488441555583aa1984e23",
  8541. "shasum": ""
  8542. },
  8543. "require": {
  8544. "php": ">=5.3.3",
  8545. "symfony/polyfill-util": "~1.0"
  8546. },
  8547. "type": "library",
  8548. "extra": {
  8549. "branch-alias": {
  8550. "dev-master": "1.17-dev"
  8551. }
  8552. },
  8553. "autoload": {
  8554. "files": [
  8555. "bootstrap.php"
  8556. ],
  8557. "psr-4": {
  8558. "Symfony\\Polyfill\\Php56\\": ""
  8559. }
  8560. },
  8561. "notification-url": "https://packagist.org/downloads/",
  8562. "license": [
  8563. "MIT"
  8564. ],
  8565. "authors": [
  8566. {
  8567. "name": "Nicolas Grekas",
  8568. "email": "p@tchwork.com"
  8569. },
  8570. {
  8571. "name": "Symfony Community",
  8572. "homepage": "https://symfony.com/contributors"
  8573. }
  8574. ],
  8575. "description": "Symfony polyfill backporting some PHP 5.6+ features to lower PHP versions",
  8576. "homepage": "https://symfony.com",
  8577. "keywords": [
  8578. "compatibility",
  8579. "polyfill",
  8580. "portable",
  8581. "shim"
  8582. ],
  8583. "support": {
  8584. "source": "https://github.com/symfony/polyfill-php56/tree/v1.17.0"
  8585. },
  8586. "funding": [
  8587. {
  8588. "url": "https://symfony.com/sponsor",
  8589. "type": "custom"
  8590. },
  8591. {
  8592. "url": "https://github.com/fabpot",
  8593. "type": "github"
  8594. },
  8595. {
  8596. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8597. "type": "tidelift"
  8598. }
  8599. ],
  8600. "time": "2020-05-12T16:47:27+00:00"
  8601. },
  8602. {
  8603. "name": "symfony/polyfill-php70",
  8604. "version": "v1.17.0",
  8605. "source": {
  8606. "type": "git",
  8607. "url": "https://github.com/symfony/polyfill-php70.git",
  8608. "reference": "82225c2d7d23d7e70515496d249c0152679b468e"
  8609. },
  8610. "dist": {
  8611. "type": "zip",
  8612. "url": "https://api.github.com/repos/symfony/polyfill-php70/zipball/82225c2d7d23d7e70515496d249c0152679b468e",
  8613. "reference": "82225c2d7d23d7e70515496d249c0152679b468e",
  8614. "shasum": ""
  8615. },
  8616. "require": {
  8617. "paragonie/random_compat": "~1.0|~2.0|~9.99",
  8618. "php": ">=5.3.3"
  8619. },
  8620. "type": "library",
  8621. "extra": {
  8622. "branch-alias": {
  8623. "dev-master": "1.17-dev"
  8624. }
  8625. },
  8626. "autoload": {
  8627. "files": [
  8628. "bootstrap.php"
  8629. ],
  8630. "psr-4": {
  8631. "Symfony\\Polyfill\\Php70\\": ""
  8632. },
  8633. "classmap": [
  8634. "Resources/stubs"
  8635. ]
  8636. },
  8637. "notification-url": "https://packagist.org/downloads/",
  8638. "license": [
  8639. "MIT"
  8640. ],
  8641. "authors": [
  8642. {
  8643. "name": "Nicolas Grekas",
  8644. "email": "p@tchwork.com"
  8645. },
  8646. {
  8647. "name": "Symfony Community",
  8648. "homepage": "https://symfony.com/contributors"
  8649. }
  8650. ],
  8651. "description": "Symfony polyfill backporting some PHP 7.0+ features to lower PHP versions",
  8652. "homepage": "https://symfony.com",
  8653. "keywords": [
  8654. "compatibility",
  8655. "polyfill",
  8656. "portable",
  8657. "shim"
  8658. ],
  8659. "support": {
  8660. "source": "https://github.com/symfony/polyfill-php70/tree/master"
  8661. },
  8662. "funding": [
  8663. {
  8664. "url": "https://symfony.com/sponsor",
  8665. "type": "custom"
  8666. },
  8667. {
  8668. "url": "https://github.com/fabpot",
  8669. "type": "github"
  8670. },
  8671. {
  8672. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8673. "type": "tidelift"
  8674. }
  8675. ],
  8676. "time": "2020-05-12T16:47:27+00:00"
  8677. },
  8678. {
  8679. "name": "symfony/polyfill-php72",
  8680. "version": "v1.17.0",
  8681. "source": {
  8682. "type": "git",
  8683. "url": "https://github.com/symfony/polyfill-php72.git",
  8684. "reference": "f048e612a3905f34931127360bdd2def19a5e582"
  8685. },
  8686. "dist": {
  8687. "type": "zip",
  8688. "url": "https://api.github.com/repos/symfony/polyfill-php72/zipball/f048e612a3905f34931127360bdd2def19a5e582",
  8689. "reference": "f048e612a3905f34931127360bdd2def19a5e582",
  8690. "shasum": ""
  8691. },
  8692. "require": {
  8693. "php": ">=5.3.3"
  8694. },
  8695. "type": "library",
  8696. "extra": {
  8697. "branch-alias": {
  8698. "dev-master": "1.17-dev"
  8699. }
  8700. },
  8701. "autoload": {
  8702. "files": [
  8703. "bootstrap.php"
  8704. ],
  8705. "psr-4": {
  8706. "Symfony\\Polyfill\\Php72\\": ""
  8707. }
  8708. },
  8709. "notification-url": "https://packagist.org/downloads/",
  8710. "license": [
  8711. "MIT"
  8712. ],
  8713. "authors": [
  8714. {
  8715. "name": "Nicolas Grekas",
  8716. "email": "p@tchwork.com"
  8717. },
  8718. {
  8719. "name": "Symfony Community",
  8720. "homepage": "https://symfony.com/contributors"
  8721. }
  8722. ],
  8723. "description": "Symfony polyfill backporting some PHP 7.2+ features to lower PHP versions",
  8724. "homepage": "https://symfony.com",
  8725. "keywords": [
  8726. "compatibility",
  8727. "polyfill",
  8728. "portable",
  8729. "shim"
  8730. ],
  8731. "support": {
  8732. "source": "https://github.com/symfony/polyfill-php72/tree/master"
  8733. },
  8734. "funding": [
  8735. {
  8736. "url": "https://symfony.com/sponsor",
  8737. "type": "custom"
  8738. },
  8739. {
  8740. "url": "https://github.com/fabpot",
  8741. "type": "github"
  8742. },
  8743. {
  8744. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8745. "type": "tidelift"
  8746. }
  8747. ],
  8748. "time": "2020-05-12T16:47:27+00:00"
  8749. },
  8750. {
  8751. "name": "symfony/polyfill-php80",
  8752. "version": "v1.31.0",
  8753. "source": {
  8754. "type": "git",
  8755. "url": "https://github.com/symfony/polyfill-php80.git",
  8756. "reference": "60328e362d4c2c802a54fcbf04f9d3fb892b4cf8"
  8757. },
  8758. "dist": {
  8759. "type": "zip",
  8760. "url": "https://api.github.com/repos/symfony/polyfill-php80/zipball/60328e362d4c2c802a54fcbf04f9d3fb892b4cf8",
  8761. "reference": "60328e362d4c2c802a54fcbf04f9d3fb892b4cf8",
  8762. "shasum": ""
  8763. },
  8764. "require": {
  8765. "php": ">=7.2"
  8766. },
  8767. "type": "library",
  8768. "extra": {
  8769. "thanks": {
  8770. "name": "symfony/polyfill",
  8771. "url": "https://github.com/symfony/polyfill"
  8772. }
  8773. },
  8774. "autoload": {
  8775. "files": [
  8776. "bootstrap.php"
  8777. ],
  8778. "psr-4": {
  8779. "Symfony\\Polyfill\\Php80\\": ""
  8780. },
  8781. "classmap": [
  8782. "Resources/stubs"
  8783. ]
  8784. },
  8785. "notification-url": "https://packagist.org/downloads/",
  8786. "license": [
  8787. "MIT"
  8788. ],
  8789. "authors": [
  8790. {
  8791. "name": "Ion Bazan",
  8792. "email": "ion.bazan@gmail.com"
  8793. },
  8794. {
  8795. "name": "Nicolas Grekas",
  8796. "email": "p@tchwork.com"
  8797. },
  8798. {
  8799. "name": "Symfony Community",
  8800. "homepage": "https://symfony.com/contributors"
  8801. }
  8802. ],
  8803. "description": "Symfony polyfill backporting some PHP 8.0+ features to lower PHP versions",
  8804. "homepage": "https://symfony.com",
  8805. "keywords": [
  8806. "compatibility",
  8807. "polyfill",
  8808. "portable",
  8809. "shim"
  8810. ],
  8811. "support": {
  8812. "source": "https://github.com/symfony/polyfill-php80/tree/v1.31.0"
  8813. },
  8814. "funding": [
  8815. {
  8816. "url": "https://symfony.com/sponsor",
  8817. "type": "custom"
  8818. },
  8819. {
  8820. "url": "https://github.com/fabpot",
  8821. "type": "github"
  8822. },
  8823. {
  8824. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8825. "type": "tidelift"
  8826. }
  8827. ],
  8828. "time": "2024-09-09T11:45:10+00:00"
  8829. },
  8830. {
  8831. "name": "symfony/polyfill-util",
  8832. "version": "v1.17.0",
  8833. "source": {
  8834. "type": "git",
  8835. "url": "https://github.com/symfony/polyfill-util.git",
  8836. "reference": "4afb4110fc037752cf0ce9869f9ab8162c4e20d7"
  8837. },
  8838. "dist": {
  8839. "type": "zip",
  8840. "url": "https://api.github.com/repos/symfony/polyfill-util/zipball/4afb4110fc037752cf0ce9869f9ab8162c4e20d7",
  8841. "reference": "4afb4110fc037752cf0ce9869f9ab8162c4e20d7",
  8842. "shasum": ""
  8843. },
  8844. "require": {
  8845. "php": ">=5.3.3"
  8846. },
  8847. "type": "library",
  8848. "extra": {
  8849. "branch-alias": {
  8850. "dev-master": "1.17-dev"
  8851. }
  8852. },
  8853. "autoload": {
  8854. "psr-4": {
  8855. "Symfony\\Polyfill\\Util\\": ""
  8856. }
  8857. },
  8858. "notification-url": "https://packagist.org/downloads/",
  8859. "license": [
  8860. "MIT"
  8861. ],
  8862. "authors": [
  8863. {
  8864. "name": "Nicolas Grekas",
  8865. "email": "p@tchwork.com"
  8866. },
  8867. {
  8868. "name": "Symfony Community",
  8869. "homepage": "https://symfony.com/contributors"
  8870. }
  8871. ],
  8872. "description": "Symfony utilities for portability of PHP codes",
  8873. "homepage": "https://symfony.com",
  8874. "keywords": [
  8875. "compat",
  8876. "compatibility",
  8877. "polyfill",
  8878. "shim"
  8879. ],
  8880. "support": {
  8881. "source": "https://github.com/symfony/polyfill-util/tree/master"
  8882. },
  8883. "funding": [
  8884. {
  8885. "url": "https://symfony.com/sponsor",
  8886. "type": "custom"
  8887. },
  8888. {
  8889. "url": "https://github.com/fabpot",
  8890. "type": "github"
  8891. },
  8892. {
  8893. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8894. "type": "tidelift"
  8895. }
  8896. ],
  8897. "time": "2020-05-12T16:14:59+00:00"
  8898. },
  8899. {
  8900. "name": "symfony/process",
  8901. "version": "v3.4.41",
  8902. "source": {
  8903. "type": "git",
  8904. "url": "https://github.com/symfony/process.git",
  8905. "reference": "8a895f0c92a7c4b10db95139bcff71bdf66d4d21"
  8906. },
  8907. "dist": {
  8908. "type": "zip",
  8909. "url": "https://api.github.com/repos/symfony/process/zipball/8a895f0c92a7c4b10db95139bcff71bdf66d4d21",
  8910. "reference": "8a895f0c92a7c4b10db95139bcff71bdf66d4d21",
  8911. "shasum": ""
  8912. },
  8913. "require": {
  8914. "php": "^5.5.9|>=7.0.8"
  8915. },
  8916. "type": "library",
  8917. "extra": {
  8918. "branch-alias": {
  8919. "dev-master": "3.4-dev"
  8920. }
  8921. },
  8922. "autoload": {
  8923. "psr-4": {
  8924. "Symfony\\Component\\Process\\": ""
  8925. },
  8926. "exclude-from-classmap": [
  8927. "/Tests/"
  8928. ]
  8929. },
  8930. "notification-url": "https://packagist.org/downloads/",
  8931. "license": [
  8932. "MIT"
  8933. ],
  8934. "authors": [
  8935. {
  8936. "name": "Fabien Potencier",
  8937. "email": "fabien@symfony.com"
  8938. },
  8939. {
  8940. "name": "Symfony Community",
  8941. "homepage": "https://symfony.com/contributors"
  8942. }
  8943. ],
  8944. "description": "Symfony Process Component",
  8945. "homepage": "https://symfony.com",
  8946. "support": {
  8947. "source": "https://github.com/symfony/process/tree/v3.4.41"
  8948. },
  8949. "funding": [
  8950. {
  8951. "url": "https://symfony.com/sponsor",
  8952. "type": "custom"
  8953. },
  8954. {
  8955. "url": "https://github.com/fabpot",
  8956. "type": "github"
  8957. },
  8958. {
  8959. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8960. "type": "tidelift"
  8961. }
  8962. ],
  8963. "time": "2020-05-23T17:05:51+00:00"
  8964. },
  8965. {
  8966. "name": "symfony/psr-http-message-bridge",
  8967. "version": "v1.1.2",
  8968. "source": {
  8969. "type": "git",
  8970. "url": "https://github.com/symfony/psr-http-message-bridge.git",
  8971. "reference": "a33352af16f78a5ff4f9d90811536abf210df12b"
  8972. },
  8973. "dist": {
  8974. "type": "zip",
  8975. "url": "https://api.github.com/repos/symfony/psr-http-message-bridge/zipball/a33352af16f78a5ff4f9d90811536abf210df12b",
  8976. "reference": "a33352af16f78a5ff4f9d90811536abf210df12b",
  8977. "shasum": ""
  8978. },
  8979. "require": {
  8980. "php": "^5.3.3 || ^7.0",
  8981. "psr/http-message": "^1.0",
  8982. "symfony/http-foundation": "^2.3.42 || ^3.4 || ^4.0"
  8983. },
  8984. "require-dev": {
  8985. "symfony/phpunit-bridge": "^3.4 || ^4.0"
  8986. },
  8987. "suggest": {
  8988. "nyholm/psr7": "For a super lightweight PSR-7/17 implementation"
  8989. },
  8990. "type": "symfony-bridge",
  8991. "extra": {
  8992. "branch-alias": {
  8993. "dev-master": "1.1-dev"
  8994. }
  8995. },
  8996. "autoload": {
  8997. "psr-4": {
  8998. "Symfony\\Bridge\\PsrHttpMessage\\": ""
  8999. },
  9000. "exclude-from-classmap": [
  9001. "/Tests/"
  9002. ]
  9003. },
  9004. "notification-url": "https://packagist.org/downloads/",
  9005. "license": [
  9006. "MIT"
  9007. ],
  9008. "authors": [
  9009. {
  9010. "name": "Symfony Community",
  9011. "homepage": "http://symfony.com/contributors"
  9012. },
  9013. {
  9014. "name": "Fabien Potencier",
  9015. "email": "fabien@symfony.com"
  9016. }
  9017. ],
  9018. "description": "PSR HTTP message bridge",
  9019. "homepage": "http://symfony.com",
  9020. "keywords": [
  9021. "http",
  9022. "http-message",
  9023. "psr-17",
  9024. "psr-7"
  9025. ],
  9026. "support": {
  9027. "issues": "https://github.com/symfony/psr-http-message-bridge/issues",
  9028. "source": "https://github.com/symfony/psr-http-message-bridge/tree/v1.1.2"
  9029. },
  9030. "time": "2019-04-03T17:09:40+00:00"
  9031. },
  9032. {
  9033. "name": "symfony/routing",
  9034. "version": "v3.4.41",
  9035. "source": {
  9036. "type": "git",
  9037. "url": "https://github.com/symfony/routing.git",
  9038. "reference": "e0d43b6f9417ad59ecaa8e2f799b79eef417387f"
  9039. },
  9040. "dist": {
  9041. "type": "zip",
  9042. "url": "https://api.github.com/repos/symfony/routing/zipball/e0d43b6f9417ad59ecaa8e2f799b79eef417387f",
  9043. "reference": "e0d43b6f9417ad59ecaa8e2f799b79eef417387f",
  9044. "shasum": ""
  9045. },
  9046. "require": {
  9047. "php": "^5.5.9|>=7.0.8"
  9048. },
  9049. "conflict": {
  9050. "symfony/config": "<3.3.1",
  9051. "symfony/dependency-injection": "<3.3",
  9052. "symfony/yaml": "<3.4"
  9053. },
  9054. "require-dev": {
  9055. "doctrine/annotations": "~1.0",
  9056. "psr/log": "~1.0",
  9057. "symfony/config": "^3.3.1|~4.0",
  9058. "symfony/dependency-injection": "~3.3|~4.0",
  9059. "symfony/expression-language": "~2.8|~3.0|~4.0",
  9060. "symfony/http-foundation": "~2.8|~3.0|~4.0",
  9061. "symfony/yaml": "~3.4|~4.0"
  9062. },
  9063. "suggest": {
  9064. "doctrine/annotations": "For using the annotation loader",
  9065. "symfony/config": "For using the all-in-one router or any loader",
  9066. "symfony/expression-language": "For using expression matching",
  9067. "symfony/http-foundation": "For using a Symfony Request object",
  9068. "symfony/yaml": "For using the YAML loader"
  9069. },
  9070. "type": "library",
  9071. "extra": {
  9072. "branch-alias": {
  9073. "dev-master": "3.4-dev"
  9074. }
  9075. },
  9076. "autoload": {
  9077. "psr-4": {
  9078. "Symfony\\Component\\Routing\\": ""
  9079. },
  9080. "exclude-from-classmap": [
  9081. "/Tests/"
  9082. ]
  9083. },
  9084. "notification-url": "https://packagist.org/downloads/",
  9085. "license": [
  9086. "MIT"
  9087. ],
  9088. "authors": [
  9089. {
  9090. "name": "Fabien Potencier",
  9091. "email": "fabien@symfony.com"
  9092. },
  9093. {
  9094. "name": "Symfony Community",
  9095. "homepage": "https://symfony.com/contributors"
  9096. }
  9097. ],
  9098. "description": "Symfony Routing Component",
  9099. "homepage": "https://symfony.com",
  9100. "keywords": [
  9101. "router",
  9102. "routing",
  9103. "uri",
  9104. "url"
  9105. ],
  9106. "support": {
  9107. "source": "https://github.com/symfony/routing/tree/3.4"
  9108. },
  9109. "funding": [
  9110. {
  9111. "url": "https://symfony.com/sponsor",
  9112. "type": "custom"
  9113. },
  9114. {
  9115. "url": "https://github.com/fabpot",
  9116. "type": "github"
  9117. },
  9118. {
  9119. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  9120. "type": "tidelift"
  9121. }
  9122. ],
  9123. "time": "2020-05-30T19:50:06+00:00"
  9124. },
  9125. {
  9126. "name": "symfony/serializer",
  9127. "version": "v3.4.41",
  9128. "source": {
  9129. "type": "git",
  9130. "url": "https://github.com/symfony/serializer.git",
  9131. "reference": "0db90db012b1b0a04fbb2d64ae9160871cad9d4f"
  9132. },
  9133. "dist": {
  9134. "type": "zip",
  9135. "url": "https://api.github.com/repos/symfony/serializer/zipball/0db90db012b1b0a04fbb2d64ae9160871cad9d4f",
  9136. "reference": "0db90db012b1b0a04fbb2d64ae9160871cad9d4f",
  9137. "shasum": ""
  9138. },
  9139. "require": {
  9140. "php": "^5.5.9|>=7.0.8",
  9141. "symfony/polyfill-ctype": "~1.8"
  9142. },
  9143. "conflict": {
  9144. "phpdocumentor/type-resolver": "<0.2.1",
  9145. "symfony/dependency-injection": "<3.2",
  9146. "symfony/property-access": ">=3.0,<3.0.4|>=2.8,<2.8.4",
  9147. "symfony/property-info": "<3.1",
  9148. "symfony/yaml": "<3.4"
  9149. },
  9150. "require-dev": {
  9151. "doctrine/annotations": "~1.0",
  9152. "doctrine/cache": "~1.0",
  9153. "phpdocumentor/reflection-docblock": "^3.0|^4.0",
  9154. "symfony/cache": "~3.1|~4.0",
  9155. "symfony/config": "~2.8|~3.0|~4.0",
  9156. "symfony/dependency-injection": "~3.2|~4.0",
  9157. "symfony/http-foundation": "~2.8|~3.0|~4.0",
  9158. "symfony/property-access": "~2.8|~3.0|~4.0",
  9159. "symfony/property-info": "^3.4.13|~4.0",
  9160. "symfony/yaml": "~3.4|~4.0"
  9161. },
  9162. "suggest": {
  9163. "doctrine/annotations": "For using the annotation mapping. You will also need doctrine/cache.",
  9164. "doctrine/cache": "For using the default cached annotation reader and metadata cache.",
  9165. "psr/cache-implementation": "For using the metadata cache.",
  9166. "symfony/config": "For using the XML mapping loader.",
  9167. "symfony/http-foundation": "For using a MIME type guesser within the DataUriNormalizer.",
  9168. "symfony/property-access": "For using the ObjectNormalizer.",
  9169. "symfony/property-info": "To deserialize relations.",
  9170. "symfony/yaml": "For using the default YAML mapping loader."
  9171. },
  9172. "type": "library",
  9173. "extra": {
  9174. "branch-alias": {
  9175. "dev-master": "3.4-dev"
  9176. }
  9177. },
  9178. "autoload": {
  9179. "psr-4": {
  9180. "Symfony\\Component\\Serializer\\": ""
  9181. },
  9182. "exclude-from-classmap": [
  9183. "/Tests/"
  9184. ]
  9185. },
  9186. "notification-url": "https://packagist.org/downloads/",
  9187. "license": [
  9188. "MIT"
  9189. ],
  9190. "authors": [
  9191. {
  9192. "name": "Fabien Potencier",
  9193. "email": "fabien@symfony.com"
  9194. },
  9195. {
  9196. "name": "Symfony Community",
  9197. "homepage": "https://symfony.com/contributors"
  9198. }
  9199. ],
  9200. "description": "Symfony Serializer Component",
  9201. "homepage": "https://symfony.com",
  9202. "support": {
  9203. "source": "https://github.com/symfony/serializer/tree/v3.4.41"
  9204. },
  9205. "funding": [
  9206. {
  9207. "url": "https://symfony.com/sponsor",
  9208. "type": "custom"
  9209. },
  9210. {
  9211. "url": "https://github.com/fabpot",
  9212. "type": "github"
  9213. },
  9214. {
  9215. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  9216. "type": "tidelift"
  9217. }
  9218. ],
  9219. "time": "2020-05-30T18:58:05+00:00"
  9220. },
  9221. {
  9222. "name": "symfony/translation",
  9223. "version": "v3.4.41",
  9224. "source": {
  9225. "type": "git",
  9226. "url": "https://github.com/symfony/translation.git",
  9227. "reference": "b0cd62ef0ff7ec31b67d78d7fc818e2bda4e844f"
  9228. },
  9229. "dist": {
  9230. "type": "zip",
  9231. "url": "https://api.github.com/repos/symfony/translation/zipball/b0cd62ef0ff7ec31b67d78d7fc818e2bda4e844f",
  9232. "reference": "b0cd62ef0ff7ec31b67d78d7fc818e2bda4e844f",
  9233. "shasum": ""
  9234. },
  9235. "require": {
  9236. "php": "^5.5.9|>=7.0.8",
  9237. "symfony/polyfill-mbstring": "~1.0"
  9238. },
  9239. "conflict": {
  9240. "symfony/config": "<2.8",
  9241. "symfony/dependency-injection": "<3.4",
  9242. "symfony/yaml": "<3.4"
  9243. },
  9244. "require-dev": {
  9245. "psr/log": "~1.0",
  9246. "symfony/config": "~2.8|~3.0|~4.0",
  9247. "symfony/dependency-injection": "~3.4|~4.0",
  9248. "symfony/finder": "~2.8|~3.0|~4.0",
  9249. "symfony/http-kernel": "~3.4|~4.0",
  9250. "symfony/intl": "^2.8.18|^3.2.5|~4.0",
  9251. "symfony/var-dumper": "~3.4|~4.0",
  9252. "symfony/yaml": "~3.4|~4.0"
  9253. },
  9254. "suggest": {
  9255. "psr/log-implementation": "To use logging capability in translator",
  9256. "symfony/config": "",
  9257. "symfony/yaml": ""
  9258. },
  9259. "type": "library",
  9260. "extra": {
  9261. "branch-alias": {
  9262. "dev-master": "3.4-dev"
  9263. }
  9264. },
  9265. "autoload": {
  9266. "psr-4": {
  9267. "Symfony\\Component\\Translation\\": ""
  9268. },
  9269. "exclude-from-classmap": [
  9270. "/Tests/"
  9271. ]
  9272. },
  9273. "notification-url": "https://packagist.org/downloads/",
  9274. "license": [
  9275. "MIT"
  9276. ],
  9277. "authors": [
  9278. {
  9279. "name": "Fabien Potencier",
  9280. "email": "fabien@symfony.com"
  9281. },
  9282. {
  9283. "name": "Symfony Community",
  9284. "homepage": "https://symfony.com/contributors"
  9285. }
  9286. ],
  9287. "description": "Symfony Translation Component",
  9288. "homepage": "https://symfony.com",
  9289. "support": {
  9290. "source": "https://github.com/symfony/translation/tree/3.4"
  9291. },
  9292. "funding": [
  9293. {
  9294. "url": "https://symfony.com/sponsor",
  9295. "type": "custom"
  9296. },
  9297. {
  9298. "url": "https://github.com/fabpot",
  9299. "type": "github"
  9300. },
  9301. {
  9302. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  9303. "type": "tidelift"
  9304. }
  9305. ],
  9306. "time": "2020-05-30T18:58:05+00:00"
  9307. },
  9308. {
  9309. "name": "symfony/validator",
  9310. "version": "v3.4.41",
  9311. "source": {
  9312. "type": "git",
  9313. "url": "https://github.com/symfony/validator.git",
  9314. "reference": "5fb88120a11a75e17b602103a893dd8b27804529"
  9315. },
  9316. "dist": {
  9317. "type": "zip",
  9318. "url": "https://api.github.com/repos/symfony/validator/zipball/5fb88120a11a75e17b602103a893dd8b27804529",
  9319. "reference": "5fb88120a11a75e17b602103a893dd8b27804529",
  9320. "shasum": ""
  9321. },
  9322. "require": {
  9323. "php": "^5.5.9|>=7.0.8",
  9324. "symfony/polyfill-ctype": "~1.8",
  9325. "symfony/polyfill-mbstring": "~1.0",
  9326. "symfony/translation": "~2.8|~3.0|~4.0"
  9327. },
  9328. "conflict": {
  9329. "doctrine/lexer": "<1.0.2",
  9330. "phpunit/phpunit": "<4.8.35|<5.4.3,>=5.0",
  9331. "symfony/dependency-injection": "<3.3",
  9332. "symfony/http-kernel": "<3.3.5",
  9333. "symfony/yaml": "<3.4"
  9334. },
  9335. "require-dev": {
  9336. "doctrine/annotations": "~1.7",
  9337. "doctrine/cache": "~1.0",
  9338. "egulias/email-validator": "^2.1.10",
  9339. "symfony/cache": "~3.1|~4.0",
  9340. "symfony/config": "~2.8|~3.0|~4.0",
  9341. "symfony/dependency-injection": "~3.3|~4.0",
  9342. "symfony/expression-language": "~2.8|~3.0|~4.0",
  9343. "symfony/http-foundation": "~2.8|~3.0|~4.0",
  9344. "symfony/http-kernel": "^3.3.5|~4.0",
  9345. "symfony/intl": "^2.8.18|^3.2.5|~4.0",
  9346. "symfony/property-access": "~2.8|~3.0|~4.0",
  9347. "symfony/var-dumper": "~3.3|~4.0",
  9348. "symfony/yaml": "~3.4|~4.0"
  9349. },
  9350. "suggest": {
  9351. "doctrine/annotations": "For using the annotation mapping. You will also need doctrine/cache.",
  9352. "doctrine/cache": "For using the default cached annotation reader and metadata cache.",
  9353. "egulias/email-validator": "Strict (RFC compliant) email validation",
  9354. "psr/cache-implementation": "For using the metadata cache.",
  9355. "symfony/config": "",
  9356. "symfony/expression-language": "For using the Expression validator",
  9357. "symfony/http-foundation": "",
  9358. "symfony/intl": "",
  9359. "symfony/property-access": "For accessing properties within comparison constraints",
  9360. "symfony/yaml": ""
  9361. },
  9362. "type": "library",
  9363. "extra": {
  9364. "branch-alias": {
  9365. "dev-master": "3.4-dev"
  9366. }
  9367. },
  9368. "autoload": {
  9369. "psr-4": {
  9370. "Symfony\\Component\\Validator\\": ""
  9371. },
  9372. "exclude-from-classmap": [
  9373. "/Tests/"
  9374. ]
  9375. },
  9376. "notification-url": "https://packagist.org/downloads/",
  9377. "license": [
  9378. "MIT"
  9379. ],
  9380. "authors": [
  9381. {
  9382. "name": "Fabien Potencier",
  9383. "email": "fabien@symfony.com"
  9384. },
  9385. {
  9386. "name": "Symfony Community",
  9387. "homepage": "https://symfony.com/contributors"
  9388. }
  9389. ],
  9390. "description": "Symfony Validator Component",
  9391. "homepage": "https://symfony.com",
  9392. "support": {
  9393. "source": "https://github.com/symfony/validator/tree/3.4"
  9394. },
  9395. "funding": [
  9396. {
  9397. "url": "https://symfony.com/sponsor",
  9398. "type": "custom"
  9399. },
  9400. {
  9401. "url": "https://github.com/fabpot",
  9402. "type": "github"
  9403. },
  9404. {
  9405. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  9406. "type": "tidelift"
  9407. }
  9408. ],
  9409. "time": "2020-05-30T18:43:38+00:00"
  9410. },
  9411. {
  9412. "name": "symfony/var-dumper",
  9413. "version": "v4.4.47",
  9414. "source": {
  9415. "type": "git",
  9416. "url": "https://github.com/symfony/var-dumper.git",
  9417. "reference": "1069c7a3fca74578022fab6f81643248d02f8e63"
  9418. },
  9419. "dist": {
  9420. "type": "zip",
  9421. "url": "https://api.github.com/repos/symfony/var-dumper/zipball/1069c7a3fca74578022fab6f81643248d02f8e63",
  9422. "reference": "1069c7a3fca74578022fab6f81643248d02f8e63",
  9423. "shasum": ""
  9424. },
  9425. "require": {
  9426. "php": ">=7.1.3",
  9427. "symfony/polyfill-mbstring": "~1.0",
  9428. "symfony/polyfill-php72": "~1.5",
  9429. "symfony/polyfill-php80": "^1.16"
  9430. },
  9431. "conflict": {
  9432. "phpunit/phpunit": "<4.8.35|<5.4.3,>=5.0",
  9433. "symfony/console": "<3.4"
  9434. },
  9435. "require-dev": {
  9436. "ext-iconv": "*",
  9437. "symfony/console": "^3.4|^4.0|^5.0",
  9438. "symfony/process": "^4.4|^5.0",
  9439. "twig/twig": "^1.43|^2.13|^3.0.4"
  9440. },
  9441. "suggest": {
  9442. "ext-iconv": "To convert non-UTF-8 strings to UTF-8 (or symfony/polyfill-iconv in case ext-iconv cannot be used).",
  9443. "ext-intl": "To show region name in time zone dump",
  9444. "symfony/console": "To use the ServerDumpCommand and/or the bin/var-dump-server script"
  9445. },
  9446. "bin": [
  9447. "Resources/bin/var-dump-server"
  9448. ],
  9449. "type": "library",
  9450. "autoload": {
  9451. "files": [
  9452. "Resources/functions/dump.php"
  9453. ],
  9454. "psr-4": {
  9455. "Symfony\\Component\\VarDumper\\": ""
  9456. },
  9457. "exclude-from-classmap": [
  9458. "/Tests/"
  9459. ]
  9460. },
  9461. "notification-url": "https://packagist.org/downloads/",
  9462. "license": [
  9463. "MIT"
  9464. ],
  9465. "authors": [
  9466. {
  9467. "name": "Nicolas Grekas",
  9468. "email": "p@tchwork.com"
  9469. },
  9470. {
  9471. "name": "Symfony Community",
  9472. "homepage": "https://symfony.com/contributors"
  9473. }
  9474. ],
  9475. "description": "Provides mechanisms for walking through any arbitrary PHP variable",
  9476. "homepage": "https://symfony.com",
  9477. "keywords": [
  9478. "debug",
  9479. "dump"
  9480. ],
  9481. "support": {
  9482. "source": "https://github.com/symfony/var-dumper/tree/v4.4.47"
  9483. },
  9484. "funding": [
  9485. {
  9486. "url": "https://symfony.com/sponsor",
  9487. "type": "custom"
  9488. },
  9489. {
  9490. "url": "https://github.com/fabpot",
  9491. "type": "github"
  9492. },
  9493. {
  9494. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  9495. "type": "tidelift"
  9496. }
  9497. ],
  9498. "time": "2022-10-03T15:15:11+00:00"
  9499. },
  9500. {
  9501. "name": "symfony/yaml",
  9502. "version": "v3.4.41",
  9503. "source": {
  9504. "type": "git",
  9505. "url": "https://github.com/symfony/yaml.git",
  9506. "reference": "7233ac2bfdde24d672f5305f2b3f6b5d741ef8eb"
  9507. },
  9508. "dist": {
  9509. "type": "zip",
  9510. "url": "https://api.github.com/repos/symfony/yaml/zipball/7233ac2bfdde24d672f5305f2b3f6b5d741ef8eb",
  9511. "reference": "7233ac2bfdde24d672f5305f2b3f6b5d741ef8eb",
  9512. "shasum": ""
  9513. },
  9514. "require": {
  9515. "php": "^5.5.9|>=7.0.8",
  9516. "symfony/polyfill-ctype": "~1.8"
  9517. },
  9518. "conflict": {
  9519. "symfony/console": "<3.4"
  9520. },
  9521. "require-dev": {
  9522. "symfony/console": "~3.4|~4.0"
  9523. },
  9524. "suggest": {
  9525. "symfony/console": "For validating YAML files using the lint command"
  9526. },
  9527. "type": "library",
  9528. "extra": {
  9529. "branch-alias": {
  9530. "dev-master": "3.4-dev"
  9531. }
  9532. },
  9533. "autoload": {
  9534. "psr-4": {
  9535. "Symfony\\Component\\Yaml\\": ""
  9536. },
  9537. "exclude-from-classmap": [
  9538. "/Tests/"
  9539. ]
  9540. },
  9541. "notification-url": "https://packagist.org/downloads/",
  9542. "license": [
  9543. "MIT"
  9544. ],
  9545. "authors": [
  9546. {
  9547. "name": "Fabien Potencier",
  9548. "email": "fabien@symfony.com"
  9549. },
  9550. {
  9551. "name": "Symfony Community",
  9552. "homepage": "https://symfony.com/contributors"
  9553. }
  9554. ],
  9555. "description": "Symfony Yaml Component",
  9556. "homepage": "https://symfony.com",
  9557. "support": {
  9558. "source": "https://github.com/symfony/yaml/tree/v3.4.41"
  9559. },
  9560. "funding": [
  9561. {
  9562. "url": "https://symfony.com/sponsor",
  9563. "type": "custom"
  9564. },
  9565. {
  9566. "url": "https://github.com/fabpot",
  9567. "type": "github"
  9568. },
  9569. {
  9570. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  9571. "type": "tidelift"
  9572. }
  9573. ],
  9574. "time": "2020-05-11T07:51:54+00:00"
  9575. },
  9576. {
  9577. "name": "twig/twig",
  9578. "version": "v1.42.5",
  9579. "source": {
  9580. "type": "git",
  9581. "url": "https://github.com/twigphp/Twig.git",
  9582. "reference": "87b2ea9d8f6fd014d0621ca089bb1b3769ea3f8e"
  9583. },
  9584. "dist": {
  9585. "type": "zip",
  9586. "url": "https://api.github.com/repos/twigphp/Twig/zipball/87b2ea9d8f6fd014d0621ca089bb1b3769ea3f8e",
  9587. "reference": "87b2ea9d8f6fd014d0621ca089bb1b3769ea3f8e",
  9588. "shasum": ""
  9589. },
  9590. "require": {
  9591. "php": ">=5.5.0",
  9592. "symfony/polyfill-ctype": "^1.8"
  9593. },
  9594. "require-dev": {
  9595. "psr/container": "^1.0",
  9596. "symfony/phpunit-bridge": "^4.4|^5.0"
  9597. },
  9598. "type": "library",
  9599. "extra": {
  9600. "branch-alias": {
  9601. "dev-master": "1.42-dev"
  9602. }
  9603. },
  9604. "autoload": {
  9605. "psr-0": {
  9606. "Twig_": "lib/"
  9607. },
  9608. "psr-4": {
  9609. "Twig\\": "src/"
  9610. }
  9611. },
  9612. "notification-url": "https://packagist.org/downloads/",
  9613. "license": [
  9614. "BSD-3-Clause"
  9615. ],
  9616. "authors": [
  9617. {
  9618. "name": "Fabien Potencier",
  9619. "email": "fabien@symfony.com",
  9620. "homepage": "http://fabien.potencier.org",
  9621. "role": "Lead Developer"
  9622. },
  9623. {
  9624. "name": "Twig Team",
  9625. "role": "Contributors"
  9626. },
  9627. {
  9628. "name": "Armin Ronacher",
  9629. "email": "armin.ronacher@active-4.com",
  9630. "role": "Project Founder"
  9631. }
  9632. ],
  9633. "description": "Twig, the flexible, fast, and secure template language for PHP",
  9634. "homepage": "https://twig.symfony.com",
  9635. "keywords": [
  9636. "templating"
  9637. ],
  9638. "support": {
  9639. "issues": "https://github.com/twigphp/Twig/issues",
  9640. "source": "https://github.com/twigphp/Twig/tree/1.x"
  9641. },
  9642. "time": "2020-02-11T05:59:23+00:00"
  9643. },
  9644. {
  9645. "name": "typo3/phar-stream-wrapper",
  9646. "version": "v3.1.4",
  9647. "source": {
  9648. "type": "git",
  9649. "url": "https://github.com/TYPO3/phar-stream-wrapper.git",
  9650. "reference": "e0c1b495cfac064f4f5c4bcb6bf67bb7f345ed04"
  9651. },
  9652. "dist": {
  9653. "type": "zip",
  9654. "url": "https://api.github.com/repos/TYPO3/phar-stream-wrapper/zipball/e0c1b495cfac064f4f5c4bcb6bf67bb7f345ed04",
  9655. "reference": "e0c1b495cfac064f4f5c4bcb6bf67bb7f345ed04",
  9656. "shasum": ""
  9657. },
  9658. "require": {
  9659. "ext-json": "*",
  9660. "php": "^7.0"
  9661. },
  9662. "require-dev": {
  9663. "ext-xdebug": "*",
  9664. "phpunit/phpunit": "^6.5"
  9665. },
  9666. "suggest": {
  9667. "ext-fileinfo": "For PHP builtin file type guessing, otherwise uses internal processing"
  9668. },
  9669. "type": "library",
  9670. "extra": {
  9671. "branch-alias": {
  9672. "dev-master": "v3.x-dev"
  9673. }
  9674. },
  9675. "autoload": {
  9676. "psr-4": {
  9677. "TYPO3\\PharStreamWrapper\\": "src/"
  9678. }
  9679. },
  9680. "notification-url": "https://packagist.org/downloads/",
  9681. "license": [
  9682. "MIT"
  9683. ],
  9684. "description": "Interceptors for PHP's native phar:// stream handling",
  9685. "homepage": "https://typo3.org/",
  9686. "keywords": [
  9687. "phar",
  9688. "php",
  9689. "security",
  9690. "stream-wrapper"
  9691. ],
  9692. "support": {
  9693. "issues": "https://github.com/TYPO3/phar-stream-wrapper/issues",
  9694. "source": "https://github.com/TYPO3/phar-stream-wrapper/tree/master"
  9695. },
  9696. "time": "2019-12-10T11:53:27+00:00"
  9697. },
  9698. {
  9699. "name": "vlucas/phpdotenv",
  9700. "version": "v2.6.4",
  9701. "source": {
  9702. "type": "git",
  9703. "url": "https://github.com/vlucas/phpdotenv.git",
  9704. "reference": "67d472b1794c986381a8950e4958e1adb779d561"
  9705. },
  9706. "dist": {
  9707. "type": "zip",
  9708. "url": "https://api.github.com/repos/vlucas/phpdotenv/zipball/67d472b1794c986381a8950e4958e1adb779d561",
  9709. "reference": "67d472b1794c986381a8950e4958e1adb779d561",
  9710. "shasum": ""
  9711. },
  9712. "require": {
  9713. "php": "^5.3.9 || ^7.0 || ^8.0",
  9714. "symfony/polyfill-ctype": "^1.9"
  9715. },
  9716. "require-dev": {
  9717. "ext-filter": "*",
  9718. "ext-pcre": "*",
  9719. "phpunit/phpunit": "^4.8.35 || ^5.0"
  9720. },
  9721. "suggest": {
  9722. "ext-filter": "Required to use the boolean validator.",
  9723. "ext-pcre": "Required to use most of the library."
  9724. },
  9725. "type": "library",
  9726. "extra": {
  9727. "branch-alias": {
  9728. "dev-master": "2.6-dev"
  9729. }
  9730. },
  9731. "autoload": {
  9732. "psr-4": {
  9733. "Dotenv\\": "src/"
  9734. }
  9735. },
  9736. "notification-url": "https://packagist.org/downloads/",
  9737. "license": [
  9738. "BSD-3-Clause"
  9739. ],
  9740. "authors": [
  9741. {
  9742. "name": "Graham Campbell",
  9743. "email": "graham@alt-three.com",
  9744. "homepage": "https://gjcampbell.co.uk/"
  9745. },
  9746. {
  9747. "name": "Vance Lucas",
  9748. "email": "vance@vancelucas.com",
  9749. "homepage": "https://vancelucas.com/"
  9750. }
  9751. ],
  9752. "description": "Loads environment variables from `.env` to `getenv()`, `$_ENV` and `$_SERVER` automagically.",
  9753. "keywords": [
  9754. "dotenv",
  9755. "env",
  9756. "environment"
  9757. ],
  9758. "time": "2020-05-02T13:38:00+00:00"
  9759. },
  9760. {
  9761. "name": "webflo/drupal-finder",
  9762. "version": "1.2.0",
  9763. "source": {
  9764. "type": "git",
  9765. "url": "https://github.com/webflo/drupal-finder.git",
  9766. "reference": "123e248e14ee8dd3fbe89fb5a733a6cf91f5820e"
  9767. },
  9768. "dist": {
  9769. "type": "zip",
  9770. "url": "https://api.github.com/repos/webflo/drupal-finder/zipball/123e248e14ee8dd3fbe89fb5a733a6cf91f5820e",
  9771. "reference": "123e248e14ee8dd3fbe89fb5a733a6cf91f5820e",
  9772. "shasum": ""
  9773. },
  9774. "require": {
  9775. "ext-json": "*"
  9776. },
  9777. "require-dev": {
  9778. "mikey179/vfsstream": "^1.6",
  9779. "phpunit/phpunit": "^4.8"
  9780. },
  9781. "type": "library",
  9782. "autoload": {
  9783. "classmap": [
  9784. "src/DrupalFinder.php"
  9785. ]
  9786. },
  9787. "notification-url": "https://packagist.org/downloads/",
  9788. "license": [
  9789. "GPL-2.0+"
  9790. ],
  9791. "authors": [
  9792. {
  9793. "name": "Florian Weber",
  9794. "email": "florian@webflo.org"
  9795. }
  9796. ],
  9797. "description": "Helper class to locate a Drupal installation from a given path.",
  9798. "time": "2019-08-02T08:06:18+00:00"
  9799. },
  9800. {
  9801. "name": "webmozart/assert",
  9802. "version": "1.11.0",
  9803. "source": {
  9804. "type": "git",
  9805. "url": "https://github.com/webmozarts/assert.git",
  9806. "reference": "11cb2199493b2f8a3b53e7f19068fc6aac760991"
  9807. },
  9808. "dist": {
  9809. "type": "zip",
  9810. "url": "https://api.github.com/repos/webmozarts/assert/zipball/11cb2199493b2f8a3b53e7f19068fc6aac760991",
  9811. "reference": "11cb2199493b2f8a3b53e7f19068fc6aac760991",
  9812. "shasum": ""
  9813. },
  9814. "require": {
  9815. "ext-ctype": "*",
  9816. "php": "^7.2 || ^8.0"
  9817. },
  9818. "conflict": {
  9819. "phpstan/phpstan": "<0.12.20",
  9820. "vimeo/psalm": "<4.6.1 || 4.6.2"
  9821. },
  9822. "require-dev": {
  9823. "phpunit/phpunit": "^8.5.13"
  9824. },
  9825. "type": "library",
  9826. "extra": {
  9827. "branch-alias": {
  9828. "dev-master": "1.10-dev"
  9829. }
  9830. },
  9831. "autoload": {
  9832. "psr-4": {
  9833. "Webmozart\\Assert\\": "src/"
  9834. }
  9835. },
  9836. "notification-url": "https://packagist.org/downloads/",
  9837. "license": [
  9838. "MIT"
  9839. ],
  9840. "authors": [
  9841. {
  9842. "name": "Bernhard Schussek",
  9843. "email": "bschussek@gmail.com"
  9844. }
  9845. ],
  9846. "description": "Assertions to validate method input/output with nice error messages.",
  9847. "keywords": [
  9848. "assert",
  9849. "check",
  9850. "validate"
  9851. ],
  9852. "support": {
  9853. "issues": "https://github.com/webmozarts/assert/issues",
  9854. "source": "https://github.com/webmozarts/assert/tree/1.11.0"
  9855. },
  9856. "time": "2022-06-03T18:03:27+00:00"
  9857. },
  9858. {
  9859. "name": "webmozart/path-util",
  9860. "version": "2.3.0",
  9861. "source": {
  9862. "type": "git",
  9863. "url": "https://github.com/webmozart/path-util.git",
  9864. "reference": "d939f7edc24c9a1bb9c0dee5cb05d8e859490725"
  9865. },
  9866. "dist": {
  9867. "type": "zip",
  9868. "url": "https://api.github.com/repos/webmozart/path-util/zipball/d939f7edc24c9a1bb9c0dee5cb05d8e859490725",
  9869. "reference": "d939f7edc24c9a1bb9c0dee5cb05d8e859490725",
  9870. "shasum": ""
  9871. },
  9872. "require": {
  9873. "php": ">=5.3.3",
  9874. "webmozart/assert": "~1.0"
  9875. },
  9876. "require-dev": {
  9877. "phpunit/phpunit": "^4.6",
  9878. "sebastian/version": "^1.0.1"
  9879. },
  9880. "type": "library",
  9881. "extra": {
  9882. "branch-alias": {
  9883. "dev-master": "2.3-dev"
  9884. }
  9885. },
  9886. "autoload": {
  9887. "psr-4": {
  9888. "Webmozart\\PathUtil\\": "src/"
  9889. }
  9890. },
  9891. "notification-url": "https://packagist.org/downloads/",
  9892. "license": [
  9893. "MIT"
  9894. ],
  9895. "authors": [
  9896. {
  9897. "name": "Bernhard Schussek",
  9898. "email": "bschussek@gmail.com"
  9899. }
  9900. ],
  9901. "description": "A robust cross-platform utility for normalizing, comparing and modifying file paths.",
  9902. "time": "2015-12-17T08:42:14+00:00"
  9903. }
  9904. ],
  9905. "packages-dev": [],
  9906. "aliases": [],
  9907. "minimum-stability": "dev",
  9908. "stability-flags": {
  9909. "drupal/bulkdelete": 20,
  9910. "drupal/domain_menu_access": 20,
  9911. "drupal/entity": 20,
  9912. "drupal/filefield_sources": 20,
  9913. "drupal/filter_perms": 20,
  9914. "drupal/maillog": 20,
  9915. "drupal/path_alias_xt": 20,
  9916. "drupal/synonyms": 20,
  9917. "drupal/toolbar_themes": 20,
  9918. "drupal/workflow": 20
  9919. },
  9920. "prefer-stable": true,
  9921. "prefer-lowest": false,
  9922. "platform": {
  9923. "php": ">=5.6"
  9924. },
  9925. "platform-dev": [],
  9926. "plugin-api-version": "2.6.0"
  9927. }