composer.lock 348 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298529953005301530253035304530553065307530853095310531153125313531453155316531753185319532053215322532353245325532653275328532953305331533253335334533553365337533853395340534153425343534453455346534753485349535053515352535353545355535653575358535953605361536253635364536553665367536853695370537153725373537453755376537753785379538053815382538353845385538653875388538953905391539253935394539553965397539853995400540154025403540454055406540754085409541054115412541354145415541654175418541954205421542254235424542554265427542854295430543154325433543454355436543754385439544054415442544354445445544654475448544954505451545254535454545554565457545854595460546154625463546454655466546754685469547054715472547354745475547654775478547954805481548254835484548554865487548854895490549154925493549454955496549754985499550055015502550355045505550655075508550955105511551255135514551555165517551855195520552155225523552455255526552755285529553055315532553355345535553655375538553955405541554255435544554555465547554855495550555155525553555455555556555755585559556055615562556355645565556655675568556955705571557255735574557555765577557855795580558155825583558455855586558755885589559055915592559355945595559655975598559956005601560256035604560556065607560856095610561156125613561456155616561756185619562056215622562356245625562656275628562956305631563256335634563556365637563856395640564156425643564456455646564756485649565056515652565356545655565656575658565956605661566256635664566556665667566856695670567156725673567456755676567756785679568056815682568356845685568656875688568956905691569256935694569556965697569856995700570157025703570457055706570757085709571057115712571357145715571657175718571957205721572257235724572557265727572857295730573157325733573457355736573757385739574057415742574357445745574657475748574957505751575257535754575557565757575857595760576157625763576457655766576757685769577057715772577357745775577657775778577957805781578257835784578557865787578857895790579157925793579457955796579757985799580058015802580358045805580658075808580958105811581258135814581558165817581858195820582158225823582458255826582758285829583058315832583358345835583658375838583958405841584258435844584558465847584858495850585158525853585458555856585758585859586058615862586358645865586658675868586958705871587258735874587558765877587858795880588158825883588458855886588758885889589058915892589358945895589658975898589959005901590259035904590559065907590859095910591159125913591459155916591759185919592059215922592359245925592659275928592959305931593259335934593559365937593859395940594159425943594459455946594759485949595059515952595359545955595659575958595959605961596259635964596559665967596859695970597159725973597459755976597759785979598059815982598359845985598659875988598959905991599259935994599559965997599859996000600160026003600460056006600760086009601060116012601360146015601660176018601960206021602260236024602560266027602860296030603160326033603460356036603760386039604060416042604360446045604660476048604960506051605260536054605560566057605860596060606160626063606460656066606760686069607060716072607360746075607660776078607960806081608260836084608560866087608860896090609160926093609460956096609760986099610061016102610361046105610661076108610961106111611261136114611561166117611861196120612161226123612461256126612761286129613061316132613361346135613661376138613961406141614261436144614561466147614861496150615161526153615461556156615761586159616061616162616361646165616661676168616961706171617261736174617561766177617861796180618161826183618461856186618761886189619061916192619361946195619661976198619962006201620262036204620562066207620862096210621162126213621462156216621762186219622062216222622362246225622662276228622962306231623262336234623562366237623862396240624162426243624462456246624762486249625062516252625362546255625662576258625962606261626262636264626562666267626862696270627162726273627462756276627762786279628062816282628362846285628662876288628962906291629262936294629562966297629862996300630163026303630463056306630763086309631063116312631363146315631663176318631963206321632263236324632563266327632863296330633163326333633463356336633763386339634063416342634363446345634663476348634963506351635263536354635563566357635863596360636163626363636463656366636763686369637063716372637363746375637663776378637963806381638263836384638563866387638863896390639163926393639463956396639763986399640064016402640364046405640664076408640964106411641264136414641564166417641864196420642164226423642464256426642764286429643064316432643364346435643664376438643964406441644264436444644564466447644864496450645164526453645464556456645764586459646064616462646364646465646664676468646964706471647264736474647564766477647864796480648164826483648464856486648764886489649064916492649364946495649664976498649965006501650265036504650565066507650865096510651165126513651465156516651765186519652065216522652365246525652665276528652965306531653265336534653565366537653865396540654165426543654465456546654765486549655065516552655365546555655665576558655965606561656265636564656565666567656865696570657165726573657465756576657765786579658065816582658365846585658665876588658965906591659265936594659565966597659865996600660166026603660466056606660766086609661066116612661366146615661666176618661966206621662266236624662566266627662866296630663166326633663466356636663766386639664066416642664366446645664666476648664966506651665266536654665566566657665866596660666166626663666466656666666766686669667066716672667366746675667666776678667966806681668266836684668566866687668866896690669166926693669466956696669766986699670067016702670367046705670667076708670967106711671267136714671567166717671867196720672167226723672467256726672767286729673067316732673367346735673667376738673967406741674267436744674567466747674867496750675167526753675467556756675767586759676067616762676367646765676667676768676967706771677267736774677567766777677867796780678167826783678467856786678767886789679067916792679367946795679667976798679968006801680268036804680568066807680868096810681168126813681468156816681768186819682068216822682368246825682668276828682968306831683268336834683568366837683868396840684168426843684468456846684768486849685068516852685368546855685668576858685968606861686268636864686568666867686868696870687168726873687468756876687768786879688068816882688368846885688668876888688968906891689268936894689568966897689868996900690169026903690469056906690769086909691069116912691369146915691669176918691969206921692269236924692569266927692869296930693169326933693469356936693769386939694069416942694369446945694669476948694969506951695269536954695569566957695869596960696169626963696469656966696769686969697069716972697369746975697669776978697969806981698269836984698569866987698869896990699169926993699469956996699769986999700070017002700370047005700670077008700970107011701270137014701570167017701870197020702170227023702470257026702770287029703070317032703370347035703670377038703970407041704270437044704570467047704870497050705170527053705470557056705770587059706070617062706370647065706670677068706970707071707270737074707570767077707870797080708170827083708470857086708770887089709070917092709370947095709670977098709971007101710271037104710571067107710871097110711171127113711471157116711771187119712071217122712371247125712671277128712971307131713271337134713571367137713871397140714171427143714471457146714771487149715071517152715371547155715671577158715971607161716271637164716571667167716871697170717171727173717471757176717771787179718071817182718371847185718671877188718971907191719271937194719571967197719871997200720172027203720472057206720772087209721072117212721372147215721672177218721972207221722272237224722572267227722872297230723172327233723472357236723772387239724072417242724372447245724672477248724972507251725272537254725572567257725872597260726172627263726472657266726772687269727072717272727372747275727672777278727972807281728272837284728572867287728872897290729172927293729472957296729772987299730073017302730373047305730673077308730973107311731273137314731573167317731873197320732173227323732473257326732773287329733073317332733373347335733673377338733973407341734273437344734573467347734873497350735173527353735473557356735773587359736073617362736373647365736673677368736973707371737273737374737573767377737873797380738173827383738473857386738773887389739073917392739373947395739673977398739974007401740274037404740574067407740874097410741174127413741474157416741774187419742074217422742374247425742674277428742974307431743274337434743574367437743874397440744174427443744474457446744774487449745074517452745374547455745674577458745974607461746274637464746574667467746874697470747174727473747474757476747774787479748074817482748374847485748674877488748974907491749274937494749574967497749874997500750175027503750475057506750775087509751075117512751375147515751675177518751975207521752275237524752575267527752875297530753175327533753475357536753775387539754075417542754375447545754675477548754975507551755275537554755575567557755875597560756175627563756475657566756775687569757075717572757375747575757675777578757975807581758275837584758575867587758875897590759175927593759475957596759775987599760076017602760376047605760676077608760976107611761276137614761576167617761876197620762176227623762476257626762776287629763076317632763376347635763676377638763976407641764276437644764576467647764876497650765176527653765476557656765776587659766076617662766376647665766676677668766976707671767276737674767576767677767876797680768176827683768476857686768776887689769076917692769376947695769676977698769977007701770277037704770577067707770877097710771177127713771477157716771777187719772077217722772377247725772677277728772977307731773277337734773577367737773877397740774177427743774477457746774777487749775077517752775377547755775677577758775977607761776277637764776577667767776877697770777177727773777477757776777777787779778077817782778377847785778677877788778977907791779277937794779577967797779877997800780178027803780478057806780778087809781078117812781378147815781678177818781978207821782278237824782578267827782878297830783178327833783478357836783778387839784078417842784378447845784678477848784978507851785278537854785578567857785878597860786178627863786478657866786778687869787078717872787378747875787678777878787978807881788278837884788578867887788878897890789178927893789478957896789778987899790079017902790379047905790679077908790979107911791279137914791579167917791879197920792179227923792479257926792779287929793079317932793379347935793679377938793979407941794279437944794579467947794879497950795179527953795479557956795779587959796079617962796379647965796679677968796979707971797279737974797579767977797879797980798179827983798479857986798779887989799079917992799379947995799679977998799980008001800280038004800580068007800880098010801180128013801480158016801780188019802080218022802380248025802680278028802980308031803280338034803580368037803880398040804180428043804480458046804780488049805080518052805380548055805680578058805980608061806280638064806580668067806880698070807180728073807480758076807780788079808080818082808380848085808680878088808980908091809280938094809580968097809880998100810181028103810481058106810781088109811081118112811381148115811681178118811981208121812281238124812581268127812881298130813181328133813481358136813781388139814081418142814381448145814681478148814981508151815281538154815581568157815881598160816181628163816481658166816781688169817081718172817381748175817681778178817981808181818281838184818581868187818881898190819181928193819481958196819781988199820082018202820382048205820682078208820982108211821282138214821582168217821882198220822182228223822482258226822782288229823082318232823382348235823682378238823982408241824282438244824582468247824882498250825182528253825482558256825782588259826082618262826382648265826682678268826982708271827282738274827582768277827882798280828182828283828482858286828782888289829082918292829382948295829682978298829983008301830283038304830583068307830883098310831183128313831483158316831783188319832083218322832383248325832683278328832983308331833283338334833583368337833883398340834183428343834483458346834783488349835083518352835383548355835683578358835983608361836283638364836583668367836883698370837183728373837483758376837783788379838083818382838383848385838683878388838983908391839283938394839583968397839883998400840184028403840484058406840784088409841084118412841384148415841684178418841984208421842284238424842584268427842884298430843184328433843484358436843784388439844084418442844384448445844684478448844984508451845284538454845584568457845884598460846184628463846484658466846784688469847084718472847384748475847684778478847984808481848284838484848584868487848884898490849184928493849484958496849784988499850085018502850385048505850685078508850985108511851285138514851585168517851885198520852185228523852485258526852785288529853085318532853385348535853685378538853985408541854285438544854585468547854885498550855185528553855485558556855785588559856085618562856385648565856685678568856985708571857285738574857585768577857885798580858185828583858485858586858785888589859085918592859385948595859685978598859986008601860286038604860586068607860886098610861186128613861486158616861786188619862086218622862386248625862686278628862986308631863286338634863586368637863886398640864186428643864486458646864786488649865086518652865386548655865686578658865986608661866286638664866586668667866886698670867186728673867486758676867786788679868086818682868386848685868686878688868986908691869286938694869586968697869886998700870187028703870487058706870787088709871087118712871387148715871687178718871987208721872287238724872587268727872887298730873187328733873487358736873787388739874087418742874387448745874687478748874987508751875287538754875587568757875887598760876187628763876487658766876787688769877087718772877387748775877687778778877987808781878287838784878587868787878887898790879187928793879487958796879787988799880088018802880388048805880688078808880988108811881288138814881588168817881888198820882188228823882488258826882788288829883088318832883388348835883688378838883988408841884288438844884588468847884888498850885188528853885488558856885788588859886088618862886388648865886688678868886988708871887288738874887588768877887888798880888188828883888488858886888788888889889088918892889388948895889688978898889989008901890289038904890589068907890889098910891189128913891489158916891789188919892089218922892389248925892689278928892989308931893289338934893589368937893889398940894189428943894489458946894789488949895089518952895389548955895689578958895989608961896289638964896589668967896889698970897189728973897489758976897789788979898089818982898389848985898689878988898989908991899289938994899589968997899889999000900190029003900490059006900790089009901090119012901390149015901690179018901990209021902290239024902590269027902890299030903190329033903490359036903790389039904090419042904390449045904690479048904990509051905290539054905590569057905890599060906190629063906490659066906790689069907090719072907390749075907690779078907990809081908290839084908590869087908890899090909190929093909490959096909790989099910091019102910391049105910691079108910991109111911291139114911591169117911891199120912191229123912491259126912791289129913091319132913391349135913691379138913991409141914291439144914591469147914891499150915191529153915491559156915791589159916091619162916391649165916691679168916991709171917291739174917591769177917891799180918191829183918491859186918791889189919091919192919391949195919691979198919992009201920292039204920592069207920892099210921192129213921492159216921792189219922092219222922392249225922692279228922992309231923292339234923592369237923892399240924192429243924492459246924792489249925092519252925392549255925692579258925992609261926292639264926592669267926892699270927192729273927492759276927792789279928092819282928392849285928692879288928992909291929292939294929592969297929892999300930193029303930493059306930793089309931093119312931393149315931693179318931993209321932293239324932593269327932893299330933193329333933493359336933793389339934093419342934393449345934693479348934993509351935293539354935593569357935893599360936193629363936493659366936793689369937093719372937393749375937693779378937993809381938293839384938593869387938893899390939193929393939493959396939793989399940094019402940394049405940694079408940994109411941294139414941594169417941894199420942194229423942494259426942794289429943094319432943394349435943694379438943994409441944294439444944594469447944894499450945194529453945494559456945794589459946094619462946394649465946694679468946994709471947294739474947594769477947894799480948194829483948494859486948794889489949094919492949394949495949694979498949995009501950295039504950595069507950895099510951195129513951495159516951795189519952095219522952395249525952695279528952995309531953295339534953595369537953895399540954195429543954495459546954795489549955095519552955395549555955695579558955995609561956295639564956595669567
  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": "c3a0e982697bcf8a07ffe233ac1ae6bb",
  8. "packages": [
  9. {
  10. "name": "alchemy/zippy",
  11. "version": "0.4.9",
  12. "source": {
  13. "type": "git",
  14. "url": "https://github.com/alchemy-fr/Zippy.git",
  15. "reference": "59fbeefb9a249122867ef25e53addfcce31850d7"
  16. },
  17. "dist": {
  18. "type": "zip",
  19. "url": "https://api.github.com/repos/alchemy-fr/Zippy/zipball/59fbeefb9a249122867ef25e53addfcce31850d7",
  20. "reference": "59fbeefb9a249122867ef25e53addfcce31850d7",
  21. "shasum": ""
  22. },
  23. "require": {
  24. "doctrine/collections": "~1.0",
  25. "php": ">=5.5",
  26. "symfony/filesystem": "^2.0.5 || ^3.0 || ^4.0",
  27. "symfony/polyfill-mbstring": "^1.3",
  28. "symfony/process": "^2.1 || ^3.0 || ^4.0"
  29. },
  30. "require-dev": {
  31. "ext-zip": "*",
  32. "guzzle/guzzle": "~3.0",
  33. "guzzlehttp/guzzle": "^6.0",
  34. "phpunit/phpunit": "^4.0 || ^5.0",
  35. "symfony/finder": "^2.0.5 || ^3.0 || ^4.0"
  36. },
  37. "suggest": {
  38. "ext-zip": "To use the ZipExtensionAdapter",
  39. "guzzle/guzzle": "To use the GuzzleTeleporter with Guzzle 3",
  40. "guzzlehttp/guzzle": "To use the GuzzleTeleporter with Guzzle 6"
  41. },
  42. "type": "library",
  43. "extra": {
  44. "branch-alias": {
  45. "dev-master": "0.4.x-dev"
  46. }
  47. },
  48. "autoload": {
  49. "psr-4": {
  50. "Alchemy\\Zippy\\": "src/"
  51. }
  52. },
  53. "notification-url": "https://packagist.org/downloads/",
  54. "license": [
  55. "MIT"
  56. ],
  57. "authors": [
  58. {
  59. "name": "Alchemy",
  60. "email": "dev.team@alchemy.fr",
  61. "homepage": "http://www.alchemy.fr/"
  62. }
  63. ],
  64. "description": "Zippy, the archive manager companion",
  65. "keywords": [
  66. "bzip",
  67. "compression",
  68. "tar",
  69. "zip"
  70. ],
  71. "time": "2018-02-22T13:58:36+00:00"
  72. },
  73. {
  74. "name": "asm89/stack-cors",
  75. "version": "1.3.0",
  76. "source": {
  77. "type": "git",
  78. "url": "https://github.com/asm89/stack-cors.git",
  79. "reference": "b9c31def6a83f84b4d4a40d35996d375755f0e08"
  80. },
  81. "dist": {
  82. "type": "zip",
  83. "url": "https://api.github.com/repos/asm89/stack-cors/zipball/b9c31def6a83f84b4d4a40d35996d375755f0e08",
  84. "reference": "b9c31def6a83f84b4d4a40d35996d375755f0e08",
  85. "shasum": ""
  86. },
  87. "require": {
  88. "php": ">=5.5.9",
  89. "symfony/http-foundation": "~2.7|~3.0|~4.0|~5.0",
  90. "symfony/http-kernel": "~2.7|~3.0|~4.0|~5.0"
  91. },
  92. "require-dev": {
  93. "phpunit/phpunit": "^5.0 || ^4.8.10",
  94. "squizlabs/php_codesniffer": "^2.3"
  95. },
  96. "type": "library",
  97. "extra": {
  98. "branch-alias": {
  99. "dev-master": "1.2-dev"
  100. }
  101. },
  102. "autoload": {
  103. "psr-4": {
  104. "Asm89\\Stack\\": "src/Asm89/Stack/"
  105. }
  106. },
  107. "notification-url": "https://packagist.org/downloads/",
  108. "license": [
  109. "MIT"
  110. ],
  111. "authors": [
  112. {
  113. "name": "Alexander",
  114. "email": "iam.asm89@gmail.com"
  115. }
  116. ],
  117. "description": "Cross-origin resource sharing library and stack middleware",
  118. "homepage": "https://github.com/asm89/stack-cors",
  119. "keywords": [
  120. "cors",
  121. "stack"
  122. ],
  123. "time": "2019-12-24T22:41:47+00:00"
  124. },
  125. {
  126. "name": "chi-teck/drupal-code-generator",
  127. "version": "1.32.0",
  128. "source": {
  129. "type": "git",
  130. "url": "https://github.com/Chi-teck/drupal-code-generator.git",
  131. "reference": "0e045f7a7e747af3d8f603156bf4d73be5768246"
  132. },
  133. "dist": {
  134. "type": "zip",
  135. "url": "https://api.github.com/repos/Chi-teck/drupal-code-generator/zipball/0e045f7a7e747af3d8f603156bf4d73be5768246",
  136. "reference": "0e045f7a7e747af3d8f603156bf4d73be5768246",
  137. "shasum": ""
  138. },
  139. "require": {
  140. "ext-json": "*",
  141. "php": ">=5.5.9",
  142. "symfony/console": "^3.4 || ^4.0",
  143. "symfony/filesystem": "^2.7 || ^3.4 || ^4.0",
  144. "twig/twig": "^1.41 || ^2.12"
  145. },
  146. "bin": [
  147. "bin/dcg"
  148. ],
  149. "type": "library",
  150. "extra": {
  151. "branch-alias": {
  152. "dev-master": "1.x-dev"
  153. }
  154. },
  155. "autoload": {
  156. "files": [
  157. "src/bootstrap.php"
  158. ],
  159. "psr-4": {
  160. "DrupalCodeGenerator\\": "src"
  161. }
  162. },
  163. "notification-url": "https://packagist.org/downloads/",
  164. "license": [
  165. "GPL-2.0-or-later"
  166. ],
  167. "description": "Drupal code generator",
  168. "time": "2020-04-16T06:45:06+00:00"
  169. },
  170. {
  171. "name": "composer/installers",
  172. "version": "v1.11.0",
  173. "source": {
  174. "type": "git",
  175. "url": "https://github.com/composer/installers.git",
  176. "reference": "ae03311f45dfe194412081526be2e003960df74b"
  177. },
  178. "dist": {
  179. "type": "zip",
  180. "url": "https://api.github.com/repos/composer/installers/zipball/ae03311f45dfe194412081526be2e003960df74b",
  181. "reference": "ae03311f45dfe194412081526be2e003960df74b",
  182. "shasum": ""
  183. },
  184. "require": {
  185. "composer-plugin-api": "^1.0 || ^2.0"
  186. },
  187. "replace": {
  188. "roundcube/plugin-installer": "*",
  189. "shama/baton": "*"
  190. },
  191. "require-dev": {
  192. "composer/composer": "1.6.* || ^2.0",
  193. "composer/semver": "^1 || ^3",
  194. "phpstan/phpstan": "^0.12.55",
  195. "phpstan/phpstan-phpunit": "^0.12.16",
  196. "symfony/phpunit-bridge": "^4.2 || ^5",
  197. "symfony/process": "^2.3"
  198. },
  199. "type": "composer-plugin",
  200. "extra": {
  201. "class": "Composer\\Installers\\Plugin",
  202. "branch-alias": {
  203. "dev-main": "1.x-dev"
  204. }
  205. },
  206. "autoload": {
  207. "psr-4": {
  208. "Composer\\Installers\\": "src/Composer/Installers"
  209. }
  210. },
  211. "notification-url": "https://packagist.org/downloads/",
  212. "license": [
  213. "MIT"
  214. ],
  215. "authors": [
  216. {
  217. "name": "Kyle Robinson Young",
  218. "email": "kyle@dontkry.com",
  219. "homepage": "https://github.com/shama"
  220. }
  221. ],
  222. "description": "A multi-framework Composer library installer",
  223. "homepage": "https://composer.github.io/installers/",
  224. "keywords": [
  225. "Craft",
  226. "Dolibarr",
  227. "Eliasis",
  228. "Hurad",
  229. "ImageCMS",
  230. "Kanboard",
  231. "Lan Management System",
  232. "MODX Evo",
  233. "MantisBT",
  234. "Mautic",
  235. "Maya",
  236. "OXID",
  237. "Plentymarkets",
  238. "Porto",
  239. "RadPHP",
  240. "SMF",
  241. "Starbug",
  242. "Thelia",
  243. "Whmcs",
  244. "WolfCMS",
  245. "agl",
  246. "aimeos",
  247. "annotatecms",
  248. "attogram",
  249. "bitrix",
  250. "cakephp",
  251. "chef",
  252. "cockpit",
  253. "codeigniter",
  254. "concrete5",
  255. "croogo",
  256. "dokuwiki",
  257. "drupal",
  258. "eZ Platform",
  259. "elgg",
  260. "expressionengine",
  261. "fuelphp",
  262. "grav",
  263. "installer",
  264. "itop",
  265. "joomla",
  266. "known",
  267. "kohana",
  268. "laravel",
  269. "lavalite",
  270. "lithium",
  271. "magento",
  272. "majima",
  273. "mako",
  274. "mediawiki",
  275. "miaoxing",
  276. "modulework",
  277. "modx",
  278. "moodle",
  279. "osclass",
  280. "phpbb",
  281. "piwik",
  282. "ppi",
  283. "processwire",
  284. "puppet",
  285. "pxcms",
  286. "reindex",
  287. "roundcube",
  288. "shopware",
  289. "silverstripe",
  290. "sydes",
  291. "sylius",
  292. "symfony",
  293. "tastyigniter",
  294. "typo3",
  295. "wordpress",
  296. "yawik",
  297. "zend",
  298. "zikula"
  299. ],
  300. "funding": [
  301. {
  302. "url": "https://packagist.com",
  303. "type": "custom"
  304. },
  305. {
  306. "url": "https://github.com/composer",
  307. "type": "github"
  308. },
  309. {
  310. "url": "https://tidelift.com/funding/github/packagist/composer/composer",
  311. "type": "tidelift"
  312. }
  313. ],
  314. "time": "2021-04-28T06:42:17+00:00"
  315. },
  316. {
  317. "name": "composer/semver",
  318. "version": "1.5.1",
  319. "source": {
  320. "type": "git",
  321. "url": "https://github.com/composer/semver.git",
  322. "reference": "c6bea70230ef4dd483e6bbcab6005f682ed3a8de"
  323. },
  324. "dist": {
  325. "type": "zip",
  326. "url": "https://api.github.com/repos/composer/semver/zipball/c6bea70230ef4dd483e6bbcab6005f682ed3a8de",
  327. "reference": "c6bea70230ef4dd483e6bbcab6005f682ed3a8de",
  328. "shasum": ""
  329. },
  330. "require": {
  331. "php": "^5.3.2 || ^7.0"
  332. },
  333. "require-dev": {
  334. "phpunit/phpunit": "^4.5 || ^5.0.5"
  335. },
  336. "type": "library",
  337. "extra": {
  338. "branch-alias": {
  339. "dev-master": "1.x-dev"
  340. }
  341. },
  342. "autoload": {
  343. "psr-4": {
  344. "Composer\\Semver\\": "src"
  345. }
  346. },
  347. "notification-url": "https://packagist.org/downloads/",
  348. "license": [
  349. "MIT"
  350. ],
  351. "authors": [
  352. {
  353. "name": "Nils Adermann",
  354. "email": "naderman@naderman.de",
  355. "homepage": "http://www.naderman.de"
  356. },
  357. {
  358. "name": "Jordi Boggiano",
  359. "email": "j.boggiano@seld.be",
  360. "homepage": "http://seld.be"
  361. },
  362. {
  363. "name": "Rob Bast",
  364. "email": "rob.bast@gmail.com",
  365. "homepage": "http://robbast.nl"
  366. }
  367. ],
  368. "description": "Semver library that offers utilities, version constraint parsing and validation.",
  369. "keywords": [
  370. "semantic",
  371. "semver",
  372. "validation",
  373. "versioning"
  374. ],
  375. "time": "2020-01-13T12:06:48+00:00"
  376. },
  377. {
  378. "name": "consolidation/annotated-command",
  379. "version": "2.12.0",
  380. "source": {
  381. "type": "git",
  382. "url": "https://github.com/consolidation/annotated-command.git",
  383. "reference": "512a2e54c98f3af377589de76c43b24652bcb789"
  384. },
  385. "dist": {
  386. "type": "zip",
  387. "url": "https://api.github.com/repos/consolidation/annotated-command/zipball/512a2e54c98f3af377589de76c43b24652bcb789",
  388. "reference": "512a2e54c98f3af377589de76c43b24652bcb789",
  389. "shasum": ""
  390. },
  391. "require": {
  392. "consolidation/output-formatters": "^3.4",
  393. "php": ">=5.4.5",
  394. "psr/log": "^1",
  395. "symfony/console": "^2.8|^3|^4",
  396. "symfony/event-dispatcher": "^2.5|^3|^4",
  397. "symfony/finder": "^2.5|^3|^4"
  398. },
  399. "require-dev": {
  400. "g1a/composer-test-scenarios": "^3",
  401. "php-coveralls/php-coveralls": "^1",
  402. "phpunit/phpunit": "^6",
  403. "squizlabs/php_codesniffer": "^2.7"
  404. },
  405. "type": "library",
  406. "extra": {
  407. "scenarios": {
  408. "symfony4": {
  409. "require": {
  410. "symfony/console": "^4.0"
  411. },
  412. "config": {
  413. "platform": {
  414. "php": "7.1.3"
  415. }
  416. }
  417. },
  418. "symfony2": {
  419. "require": {
  420. "symfony/console": "^2.8"
  421. },
  422. "require-dev": {
  423. "phpunit/phpunit": "^4.8.36"
  424. },
  425. "remove": [
  426. "php-coveralls/php-coveralls"
  427. ],
  428. "config": {
  429. "platform": {
  430. "php": "5.4.8"
  431. }
  432. },
  433. "scenario-options": {
  434. "create-lockfile": "false"
  435. }
  436. },
  437. "phpunit4": {
  438. "require-dev": {
  439. "phpunit/phpunit": "^4.8.36"
  440. },
  441. "remove": [
  442. "php-coveralls/php-coveralls"
  443. ],
  444. "config": {
  445. "platform": {
  446. "php": "5.4.8"
  447. }
  448. }
  449. }
  450. },
  451. "branch-alias": {
  452. "dev-master": "2.x-dev"
  453. }
  454. },
  455. "autoload": {
  456. "psr-4": {
  457. "Consolidation\\AnnotatedCommand\\": "src"
  458. }
  459. },
  460. "notification-url": "https://packagist.org/downloads/",
  461. "license": [
  462. "MIT"
  463. ],
  464. "authors": [
  465. {
  466. "name": "Greg Anderson",
  467. "email": "greg.1.anderson@greenknowe.org"
  468. }
  469. ],
  470. "description": "Initialize Symfony Console commands from annotated command class methods.",
  471. "time": "2019-03-08T16:55:03+00:00"
  472. },
  473. {
  474. "name": "consolidation/config",
  475. "version": "1.2.1",
  476. "source": {
  477. "type": "git",
  478. "url": "https://github.com/consolidation/config.git",
  479. "reference": "cac1279bae7efb5c7fb2ca4c3ba4b8eb741a96c1"
  480. },
  481. "dist": {
  482. "type": "zip",
  483. "url": "https://api.github.com/repos/consolidation/config/zipball/cac1279bae7efb5c7fb2ca4c3ba4b8eb741a96c1",
  484. "reference": "cac1279bae7efb5c7fb2ca4c3ba4b8eb741a96c1",
  485. "shasum": ""
  486. },
  487. "require": {
  488. "dflydev/dot-access-data": "^1.1.0",
  489. "grasmash/expander": "^1",
  490. "php": ">=5.4.0"
  491. },
  492. "require-dev": {
  493. "g1a/composer-test-scenarios": "^3",
  494. "php-coveralls/php-coveralls": "^1",
  495. "phpunit/phpunit": "^5",
  496. "squizlabs/php_codesniffer": "2.*",
  497. "symfony/console": "^2.5|^3|^4",
  498. "symfony/yaml": "^2.8.11|^3|^4"
  499. },
  500. "suggest": {
  501. "symfony/yaml": "Required to use Consolidation\\Config\\Loader\\YamlConfigLoader"
  502. },
  503. "type": "library",
  504. "extra": {
  505. "scenarios": {
  506. "symfony4": {
  507. "require-dev": {
  508. "symfony/console": "^4.0"
  509. },
  510. "config": {
  511. "platform": {
  512. "php": "7.1.3"
  513. }
  514. }
  515. },
  516. "symfony2": {
  517. "require-dev": {
  518. "symfony/console": "^2.8",
  519. "symfony/event-dispatcher": "^2.8",
  520. "phpunit/phpunit": "^4.8.36"
  521. },
  522. "remove": [
  523. "php-coveralls/php-coveralls"
  524. ],
  525. "config": {
  526. "platform": {
  527. "php": "5.4.8"
  528. }
  529. }
  530. }
  531. },
  532. "branch-alias": {
  533. "dev-master": "1.x-dev"
  534. }
  535. },
  536. "autoload": {
  537. "psr-4": {
  538. "Consolidation\\Config\\": "src"
  539. }
  540. },
  541. "notification-url": "https://packagist.org/downloads/",
  542. "license": [
  543. "MIT"
  544. ],
  545. "authors": [
  546. {
  547. "name": "Greg Anderson",
  548. "email": "greg.1.anderson@greenknowe.org"
  549. }
  550. ],
  551. "description": "Provide configuration services for a commandline tool.",
  552. "time": "2019-03-03T19:37:04+00:00"
  553. },
  554. {
  555. "name": "consolidation/filter-via-dot-access-data",
  556. "version": "1.0.0",
  557. "source": {
  558. "type": "git",
  559. "url": "https://github.com/consolidation/filter-via-dot-access-data.git",
  560. "reference": "a53e96c6b9f7f042f5e085bf911f3493cea823c6"
  561. },
  562. "dist": {
  563. "type": "zip",
  564. "url": "https://api.github.com/repos/consolidation/filter-via-dot-access-data/zipball/a53e96c6b9f7f042f5e085bf911f3493cea823c6",
  565. "reference": "a53e96c6b9f7f042f5e085bf911f3493cea823c6",
  566. "shasum": ""
  567. },
  568. "require": {
  569. "dflydev/dot-access-data": "^1.1.0",
  570. "php": ">=5.5.0"
  571. },
  572. "require-dev": {
  573. "consolidation/robo": "^1.2.3",
  574. "g1a/composer-test-scenarios": "^3",
  575. "knplabs/github-api": "^2.7",
  576. "php-coveralls/php-coveralls": "^1",
  577. "php-http/guzzle6-adapter": "^1.1",
  578. "phpunit/phpunit": "^5",
  579. "squizlabs/php_codesniffer": "^2.8",
  580. "symfony/console": "^2.8|^3|^4"
  581. },
  582. "type": "library",
  583. "extra": {
  584. "scenarios": {
  585. "phpunit5": {
  586. "require-dev": {
  587. "phpunit/phpunit": "^5.7.27"
  588. },
  589. "remove": [
  590. "php-coveralls/php-coveralls"
  591. ],
  592. "config": {
  593. "platform": {
  594. "php": "5.6.33"
  595. }
  596. }
  597. }
  598. },
  599. "branch-alias": {
  600. "dev-master": "1.x-dev"
  601. }
  602. },
  603. "autoload": {
  604. "psr-4": {
  605. "Consolidation\\Filter\\": "src"
  606. }
  607. },
  608. "notification-url": "https://packagist.org/downloads/",
  609. "license": [
  610. "MIT"
  611. ],
  612. "authors": [
  613. {
  614. "name": "Greg Anderson",
  615. "email": "greg.1.anderson@greenknowe.org"
  616. }
  617. ],
  618. "description": "This project uses dflydev/dot-access-data to provide simple output filtering for applications built with annotated-command / Robo.",
  619. "time": "2019-01-18T06:05:07+00:00"
  620. },
  621. {
  622. "name": "consolidation/log",
  623. "version": "1.1.1",
  624. "source": {
  625. "type": "git",
  626. "url": "https://github.com/consolidation/log.git",
  627. "reference": "b2e887325ee90abc96b0a8b7b474cd9e7c896e3a"
  628. },
  629. "dist": {
  630. "type": "zip",
  631. "url": "https://api.github.com/repos/consolidation/log/zipball/b2e887325ee90abc96b0a8b7b474cd9e7c896e3a",
  632. "reference": "b2e887325ee90abc96b0a8b7b474cd9e7c896e3a",
  633. "shasum": ""
  634. },
  635. "require": {
  636. "php": ">=5.4.5",
  637. "psr/log": "^1.0",
  638. "symfony/console": "^2.8|^3|^4"
  639. },
  640. "require-dev": {
  641. "g1a/composer-test-scenarios": "^3",
  642. "php-coveralls/php-coveralls": "^1",
  643. "phpunit/phpunit": "^6",
  644. "squizlabs/php_codesniffer": "^2"
  645. },
  646. "type": "library",
  647. "extra": {
  648. "scenarios": {
  649. "symfony4": {
  650. "require": {
  651. "symfony/console": "^4.0"
  652. },
  653. "config": {
  654. "platform": {
  655. "php": "7.1.3"
  656. }
  657. }
  658. },
  659. "symfony2": {
  660. "require": {
  661. "symfony/console": "^2.8"
  662. },
  663. "require-dev": {
  664. "phpunit/phpunit": "^4.8.36"
  665. },
  666. "remove": [
  667. "php-coveralls/php-coveralls"
  668. ],
  669. "config": {
  670. "platform": {
  671. "php": "5.4.8"
  672. }
  673. }
  674. },
  675. "phpunit4": {
  676. "require-dev": {
  677. "phpunit/phpunit": "^4.8.36"
  678. },
  679. "remove": [
  680. "php-coveralls/php-coveralls"
  681. ],
  682. "config": {
  683. "platform": {
  684. "php": "5.4.8"
  685. }
  686. }
  687. }
  688. },
  689. "branch-alias": {
  690. "dev-master": "1.x-dev"
  691. }
  692. },
  693. "autoload": {
  694. "psr-4": {
  695. "Consolidation\\Log\\": "src"
  696. }
  697. },
  698. "notification-url": "https://packagist.org/downloads/",
  699. "license": [
  700. "MIT"
  701. ],
  702. "authors": [
  703. {
  704. "name": "Greg Anderson",
  705. "email": "greg.1.anderson@greenknowe.org"
  706. }
  707. ],
  708. "description": "Improved Psr-3 / Psr\\Log logger based on Symfony Console components.",
  709. "time": "2019-01-01T17:30:51+00:00"
  710. },
  711. {
  712. "name": "consolidation/output-formatters",
  713. "version": "3.5.0",
  714. "source": {
  715. "type": "git",
  716. "url": "https://github.com/consolidation/output-formatters.git",
  717. "reference": "99ec998ffb697e0eada5aacf81feebfb13023605"
  718. },
  719. "dist": {
  720. "type": "zip",
  721. "url": "https://api.github.com/repos/consolidation/output-formatters/zipball/99ec998ffb697e0eada5aacf81feebfb13023605",
  722. "reference": "99ec998ffb697e0eada5aacf81feebfb13023605",
  723. "shasum": ""
  724. },
  725. "require": {
  726. "dflydev/dot-access-data": "^1.1.0",
  727. "php": ">=5.4.0",
  728. "symfony/console": "^2.8|^3|^4",
  729. "symfony/finder": "^2.5|^3|^4"
  730. },
  731. "require-dev": {
  732. "g1a/composer-test-scenarios": "^3",
  733. "php-coveralls/php-coveralls": "^1",
  734. "phpunit/phpunit": "^5.7.27",
  735. "squizlabs/php_codesniffer": "^2.7",
  736. "symfony/var-dumper": "^2.8|^3|^4",
  737. "victorjonsson/markdowndocs": "^1.3"
  738. },
  739. "suggest": {
  740. "symfony/var-dumper": "For using the var_dump formatter"
  741. },
  742. "type": "library",
  743. "extra": {
  744. "scenarios": {
  745. "symfony4": {
  746. "require": {
  747. "symfony/console": "^4.0"
  748. },
  749. "require-dev": {
  750. "phpunit/phpunit": "^6"
  751. },
  752. "config": {
  753. "platform": {
  754. "php": "7.1.3"
  755. }
  756. }
  757. },
  758. "symfony3": {
  759. "require": {
  760. "symfony/console": "^3.4",
  761. "symfony/finder": "^3.4",
  762. "symfony/var-dumper": "^3.4"
  763. },
  764. "config": {
  765. "platform": {
  766. "php": "5.6.32"
  767. }
  768. }
  769. },
  770. "symfony2": {
  771. "require": {
  772. "symfony/console": "^2.8"
  773. },
  774. "require-dev": {
  775. "phpunit/phpunit": "^4.8.36"
  776. },
  777. "remove": [
  778. "php-coveralls/php-coveralls"
  779. ],
  780. "config": {
  781. "platform": {
  782. "php": "5.4.8"
  783. }
  784. },
  785. "scenario-options": {
  786. "create-lockfile": "false"
  787. }
  788. }
  789. },
  790. "branch-alias": {
  791. "dev-master": "3.x-dev"
  792. }
  793. },
  794. "autoload": {
  795. "psr-4": {
  796. "Consolidation\\OutputFormatters\\": "src"
  797. }
  798. },
  799. "notification-url": "https://packagist.org/downloads/",
  800. "license": [
  801. "MIT"
  802. ],
  803. "authors": [
  804. {
  805. "name": "Greg Anderson",
  806. "email": "greg.1.anderson@greenknowe.org"
  807. }
  808. ],
  809. "description": "Format text by applying transformations provided by plug-in formatters.",
  810. "time": "2019-05-30T23:16:01+00:00"
  811. },
  812. {
  813. "name": "consolidation/robo",
  814. "version": "1.4.12",
  815. "source": {
  816. "type": "git",
  817. "url": "https://github.com/consolidation/Robo.git",
  818. "reference": "eb45606f498b3426b9a98b7c85e300666a968e51"
  819. },
  820. "dist": {
  821. "type": "zip",
  822. "url": "https://api.github.com/repos/consolidation/Robo/zipball/eb45606f498b3426b9a98b7c85e300666a968e51",
  823. "reference": "eb45606f498b3426b9a98b7c85e300666a968e51",
  824. "shasum": ""
  825. },
  826. "require": {
  827. "consolidation/annotated-command": "^2.11.0|^4.1",
  828. "consolidation/config": "^1.2.1",
  829. "consolidation/log": "^1.1.1|^2",
  830. "consolidation/output-formatters": "^3.1.13|^4.1",
  831. "consolidation/self-update": "^1.1.5",
  832. "grasmash/yaml-expander": "^1.4",
  833. "league/container": "^2.4.1",
  834. "php": ">=5.5.0",
  835. "symfony/console": "^2.8|^3|^4",
  836. "symfony/event-dispatcher": "^2.5|^3|^4",
  837. "symfony/filesystem": "^2.5|^3|^4",
  838. "symfony/finder": "^2.5|^3|^4",
  839. "symfony/process": "^2.5|^3|^4"
  840. },
  841. "replace": {
  842. "codegyre/robo": "< 1.0"
  843. },
  844. "require-dev": {
  845. "g1a/composer-test-scenarios": "^3",
  846. "natxet/cssmin": "3.0.4",
  847. "patchwork/jsqueeze": "^2",
  848. "pear/archive_tar": "^1.4.4",
  849. "php-coveralls/php-coveralls": "^1",
  850. "phpunit/phpunit": "^5.7.27",
  851. "squizlabs/php_codesniffer": "^3"
  852. },
  853. "suggest": {
  854. "henrikbjorn/lurker": "For monitoring filesystem changes in taskWatch",
  855. "natxet/CssMin": "For minifying CSS files in taskMinify",
  856. "patchwork/jsqueeze": "For minifying JS files in taskMinify",
  857. "pear/archive_tar": "Allows tar archives to be created and extracted in taskPack and taskExtract, respectively."
  858. },
  859. "bin": [
  860. "robo"
  861. ],
  862. "type": "library",
  863. "extra": {
  864. "scenarios": {
  865. "symfony4": {
  866. "require": {
  867. "symfony/console": "^4"
  868. },
  869. "config": {
  870. "platform": {
  871. "php": "7.1.3"
  872. }
  873. }
  874. },
  875. "symfony2": {
  876. "require": {
  877. "symfony/console": "^2.8"
  878. },
  879. "require-dev": {
  880. "phpunit/phpunit": "^4.8.36"
  881. },
  882. "remove": [
  883. "php-coveralls/php-coveralls"
  884. ],
  885. "config": {
  886. "platform": {
  887. "php": "5.5.9"
  888. }
  889. },
  890. "scenario-options": {
  891. "create-lockfile": "false"
  892. }
  893. }
  894. },
  895. "branch-alias": {
  896. "dev-master": "1.x-dev"
  897. }
  898. },
  899. "autoload": {
  900. "psr-4": {
  901. "Robo\\": "src"
  902. }
  903. },
  904. "notification-url": "https://packagist.org/downloads/",
  905. "license": [
  906. "MIT"
  907. ],
  908. "authors": [
  909. {
  910. "name": "Davert",
  911. "email": "davert.php@resend.cc"
  912. }
  913. ],
  914. "description": "Modern task runner",
  915. "time": "2020-02-18T17:31:26+00:00"
  916. },
  917. {
  918. "name": "consolidation/self-update",
  919. "version": "1.2.0",
  920. "source": {
  921. "type": "git",
  922. "url": "https://github.com/consolidation/self-update.git",
  923. "reference": "dba6b2c0708f20fa3ba8008a2353b637578849b4"
  924. },
  925. "dist": {
  926. "type": "zip",
  927. "url": "https://api.github.com/repos/consolidation/self-update/zipball/dba6b2c0708f20fa3ba8008a2353b637578849b4",
  928. "reference": "dba6b2c0708f20fa3ba8008a2353b637578849b4",
  929. "shasum": ""
  930. },
  931. "require": {
  932. "php": ">=5.5.0",
  933. "symfony/console": "^2.8|^3|^4|^5",
  934. "symfony/filesystem": "^2.5|^3|^4|^5"
  935. },
  936. "bin": [
  937. "scripts/release"
  938. ],
  939. "type": "library",
  940. "extra": {
  941. "branch-alias": {
  942. "dev-master": "1.x-dev"
  943. }
  944. },
  945. "autoload": {
  946. "psr-4": {
  947. "SelfUpdate\\": "src"
  948. }
  949. },
  950. "notification-url": "https://packagist.org/downloads/",
  951. "license": [
  952. "MIT"
  953. ],
  954. "authors": [
  955. {
  956. "name": "Alexander Menk",
  957. "email": "menk@mestrona.net"
  958. },
  959. {
  960. "name": "Greg Anderson",
  961. "email": "greg.1.anderson@greenknowe.org"
  962. }
  963. ],
  964. "description": "Provides a self:update command for Symfony Console applications.",
  965. "time": "2020-04-13T02:49:20+00:00"
  966. },
  967. {
  968. "name": "consolidation/site-alias",
  969. "version": "3.0.0",
  970. "source": {
  971. "type": "git",
  972. "url": "https://github.com/consolidation/site-alias.git",
  973. "reference": "8cfd3b6ab6d541086fc970bf850864293b284e6f"
  974. },
  975. "dist": {
  976. "type": "zip",
  977. "url": "https://api.github.com/repos/consolidation/site-alias/zipball/8cfd3b6ab6d541086fc970bf850864293b284e6f",
  978. "reference": "8cfd3b6ab6d541086fc970bf850864293b284e6f",
  979. "shasum": ""
  980. },
  981. "require": {
  982. "consolidation/config": "^1.2.1",
  983. "php": ">=5.5.0"
  984. },
  985. "require-dev": {
  986. "consolidation/robo": "^1.2.3",
  987. "g1a/composer-test-scenarios": "^3",
  988. "knplabs/github-api": "^2.7",
  989. "php-coveralls/php-coveralls": "^1",
  990. "php-http/guzzle6-adapter": "^1.1",
  991. "phpunit/phpunit": "^6",
  992. "squizlabs/php_codesniffer": "^2.8",
  993. "symfony/console": "^2.8|^3|^4",
  994. "symfony/yaml": "~2.3|^3"
  995. },
  996. "type": "library",
  997. "extra": {
  998. "scenarios": {
  999. "phpunit5": {
  1000. "require-dev": {
  1001. "phpunit/phpunit": "^5.7.27"
  1002. },
  1003. "remove": [
  1004. "php-coveralls/php-coveralls"
  1005. ],
  1006. "config": {
  1007. "platform": {
  1008. "php": "5.6.33"
  1009. }
  1010. }
  1011. }
  1012. },
  1013. "branch-alias": {
  1014. "dev-master": "3.x-dev"
  1015. }
  1016. },
  1017. "autoload": {
  1018. "psr-4": {
  1019. "Consolidation\\SiteAlias\\": "src"
  1020. }
  1021. },
  1022. "notification-url": "https://packagist.org/downloads/",
  1023. "license": [
  1024. "MIT"
  1025. ],
  1026. "authors": [
  1027. {
  1028. "name": "Moshe Weitzman",
  1029. "email": "weitzman@tejasa.com"
  1030. },
  1031. {
  1032. "name": "Greg Anderson",
  1033. "email": "greg.1.anderson@greenknowe.org"
  1034. }
  1035. ],
  1036. "description": "Manage alias records for local and remote sites.",
  1037. "time": "2019-03-12T17:31:48+00:00"
  1038. },
  1039. {
  1040. "name": "consolidation/site-process",
  1041. "version": "2.1.0",
  1042. "source": {
  1043. "type": "git",
  1044. "url": "https://github.com/consolidation/site-process.git",
  1045. "reference": "f3211fa4c60671c6f068184221f06f932556e443"
  1046. },
  1047. "dist": {
  1048. "type": "zip",
  1049. "url": "https://api.github.com/repos/consolidation/site-process/zipball/f3211fa4c60671c6f068184221f06f932556e443",
  1050. "reference": "f3211fa4c60671c6f068184221f06f932556e443",
  1051. "shasum": ""
  1052. },
  1053. "require": {
  1054. "consolidation/config": "^1.2.1",
  1055. "consolidation/site-alias": "^3",
  1056. "php": ">=5.6.0",
  1057. "symfony/process": "^3.4"
  1058. },
  1059. "require-dev": {
  1060. "consolidation/robo": "^1.3",
  1061. "g1a/composer-test-scenarios": "^3",
  1062. "knplabs/github-api": "^2.7",
  1063. "php-coveralls/php-coveralls": "^1",
  1064. "php-http/guzzle6-adapter": "^1.1",
  1065. "phpunit/phpunit": "^6",
  1066. "squizlabs/php_codesniffer": "^2.8"
  1067. },
  1068. "type": "library",
  1069. "extra": {
  1070. "scenarios": {
  1071. "phpunit5": {
  1072. "require-dev": {
  1073. "phpunit/phpunit": "^5.7.27"
  1074. },
  1075. "remove": [
  1076. "php-coveralls/php-coveralls"
  1077. ],
  1078. "config": {
  1079. "platform": {
  1080. "php": "5.6.33"
  1081. }
  1082. }
  1083. }
  1084. },
  1085. "branch-alias": {
  1086. "dev-master": "0.x-dev"
  1087. }
  1088. },
  1089. "autoload": {
  1090. "psr-4": {
  1091. "Consolidation\\SiteProcess\\": "src"
  1092. }
  1093. },
  1094. "notification-url": "https://packagist.org/downloads/",
  1095. "license": [
  1096. "MIT"
  1097. ],
  1098. "authors": [
  1099. {
  1100. "name": "Greg Anderson",
  1101. "email": "greg.1.anderson@greenknowe.org"
  1102. },
  1103. {
  1104. "name": "Moshe Weitzman",
  1105. "email": "weitzman@tejasa.com"
  1106. }
  1107. ],
  1108. "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.",
  1109. "time": "2019-09-10T17:56:24+00:00"
  1110. },
  1111. {
  1112. "name": "container-interop/container-interop",
  1113. "version": "1.2.0",
  1114. "source": {
  1115. "type": "git",
  1116. "url": "https://github.com/container-interop/container-interop.git",
  1117. "reference": "79cbf1341c22ec75643d841642dd5d6acd83bdb8"
  1118. },
  1119. "dist": {
  1120. "type": "zip",
  1121. "url": "https://api.github.com/repos/container-interop/container-interop/zipball/79cbf1341c22ec75643d841642dd5d6acd83bdb8",
  1122. "reference": "79cbf1341c22ec75643d841642dd5d6acd83bdb8",
  1123. "shasum": ""
  1124. },
  1125. "require": {
  1126. "psr/container": "^1.0"
  1127. },
  1128. "type": "library",
  1129. "autoload": {
  1130. "psr-4": {
  1131. "Interop\\Container\\": "src/Interop/Container/"
  1132. }
  1133. },
  1134. "notification-url": "https://packagist.org/downloads/",
  1135. "license": [
  1136. "MIT"
  1137. ],
  1138. "description": "Promoting the interoperability of container objects (DIC, SL, etc.)",
  1139. "homepage": "https://github.com/container-interop/container-interop",
  1140. "abandoned": "psr/container",
  1141. "time": "2017-02-14T19:40:03+00:00"
  1142. },
  1143. {
  1144. "name": "cweagans/composer-patches",
  1145. "version": "1.7.1",
  1146. "source": {
  1147. "type": "git",
  1148. "url": "https://github.com/cweagans/composer-patches.git",
  1149. "reference": "9888dcc74993c030b75f3dd548bb5e20cdbd740c"
  1150. },
  1151. "dist": {
  1152. "type": "zip",
  1153. "url": "https://api.github.com/repos/cweagans/composer-patches/zipball/9888dcc74993c030b75f3dd548bb5e20cdbd740c",
  1154. "reference": "9888dcc74993c030b75f3dd548bb5e20cdbd740c",
  1155. "shasum": ""
  1156. },
  1157. "require": {
  1158. "composer-plugin-api": "^1.0 || ^2.0",
  1159. "php": ">=5.3.0"
  1160. },
  1161. "require-dev": {
  1162. "composer/composer": "~1.0 || ~2.0",
  1163. "phpunit/phpunit": "~4.6"
  1164. },
  1165. "type": "composer-plugin",
  1166. "extra": {
  1167. "class": "cweagans\\Composer\\Patches"
  1168. },
  1169. "autoload": {
  1170. "psr-4": {
  1171. "cweagans\\Composer\\": "src"
  1172. }
  1173. },
  1174. "notification-url": "https://packagist.org/downloads/",
  1175. "license": [
  1176. "BSD-3-Clause"
  1177. ],
  1178. "authors": [
  1179. {
  1180. "name": "Cameron Eagans",
  1181. "email": "me@cweagans.net"
  1182. }
  1183. ],
  1184. "description": "Provides a way to patch Composer packages.",
  1185. "time": "2021-06-08T15:12:46+00:00"
  1186. },
  1187. {
  1188. "name": "dflydev/dot-access-configuration",
  1189. "version": "v1.0.3",
  1190. "source": {
  1191. "type": "git",
  1192. "url": "https://github.com/dflydev/dflydev-dot-access-configuration.git",
  1193. "reference": "2e6eb0c8b8830b26bb23defcfc38d4276508fc49"
  1194. },
  1195. "dist": {
  1196. "type": "zip",
  1197. "url": "https://api.github.com/repos/dflydev/dflydev-dot-access-configuration/zipball/2e6eb0c8b8830b26bb23defcfc38d4276508fc49",
  1198. "reference": "2e6eb0c8b8830b26bb23defcfc38d4276508fc49",
  1199. "shasum": ""
  1200. },
  1201. "require": {
  1202. "dflydev/dot-access-data": "1.*",
  1203. "dflydev/placeholder-resolver": "1.*",
  1204. "php": ">=5.3.2"
  1205. },
  1206. "require-dev": {
  1207. "symfony/yaml": "~2.1"
  1208. },
  1209. "suggest": {
  1210. "symfony/yaml": "Required for using the YAML Configuration Builders"
  1211. },
  1212. "type": "library",
  1213. "extra": {
  1214. "branch-alias": {
  1215. "dev-master": "1.0-dev"
  1216. }
  1217. },
  1218. "autoload": {
  1219. "psr-0": {
  1220. "Dflydev\\DotAccessConfiguration": "src"
  1221. }
  1222. },
  1223. "notification-url": "https://packagist.org/downloads/",
  1224. "license": [
  1225. "MIT"
  1226. ],
  1227. "authors": [
  1228. {
  1229. "name": "Dragonfly Development Inc.",
  1230. "email": "info@dflydev.com",
  1231. "homepage": "http://dflydev.com"
  1232. },
  1233. {
  1234. "name": "Beau Simensen",
  1235. "email": "beau@dflydev.com",
  1236. "homepage": "http://beausimensen.com"
  1237. }
  1238. ],
  1239. "description": "Given a deep data structure representing a configuration, access configuration by dot notation.",
  1240. "homepage": "https://github.com/dflydev/dflydev-dot-access-configuration",
  1241. "keywords": [
  1242. "config",
  1243. "configuration"
  1244. ],
  1245. "time": "2018-09-08T23:00:17+00:00"
  1246. },
  1247. {
  1248. "name": "dflydev/dot-access-data",
  1249. "version": "v1.1.0",
  1250. "source": {
  1251. "type": "git",
  1252. "url": "https://github.com/dflydev/dflydev-dot-access-data.git",
  1253. "reference": "3fbd874921ab2c041e899d044585a2ab9795df8a"
  1254. },
  1255. "dist": {
  1256. "type": "zip",
  1257. "url": "https://api.github.com/repos/dflydev/dflydev-dot-access-data/zipball/3fbd874921ab2c041e899d044585a2ab9795df8a",
  1258. "reference": "3fbd874921ab2c041e899d044585a2ab9795df8a",
  1259. "shasum": ""
  1260. },
  1261. "require": {
  1262. "php": ">=5.3.2"
  1263. },
  1264. "type": "library",
  1265. "extra": {
  1266. "branch-alias": {
  1267. "dev-master": "1.0-dev"
  1268. }
  1269. },
  1270. "autoload": {
  1271. "psr-0": {
  1272. "Dflydev\\DotAccessData": "src"
  1273. }
  1274. },
  1275. "notification-url": "https://packagist.org/downloads/",
  1276. "license": [
  1277. "MIT"
  1278. ],
  1279. "authors": [
  1280. {
  1281. "name": "Dragonfly Development Inc.",
  1282. "email": "info@dflydev.com",
  1283. "homepage": "http://dflydev.com"
  1284. },
  1285. {
  1286. "name": "Beau Simensen",
  1287. "email": "beau@dflydev.com",
  1288. "homepage": "http://beausimensen.com"
  1289. },
  1290. {
  1291. "name": "Carlos Frutos",
  1292. "email": "carlos@kiwing.it",
  1293. "homepage": "https://github.com/cfrutos"
  1294. }
  1295. ],
  1296. "description": "Given a deep data structure, access data by dot notation.",
  1297. "homepage": "https://github.com/dflydev/dflydev-dot-access-data",
  1298. "keywords": [
  1299. "access",
  1300. "data",
  1301. "dot",
  1302. "notation"
  1303. ],
  1304. "time": "2017-01-20T21:14:22+00:00"
  1305. },
  1306. {
  1307. "name": "dflydev/placeholder-resolver",
  1308. "version": "v1.0.2",
  1309. "source": {
  1310. "type": "git",
  1311. "url": "https://github.com/dflydev/dflydev-placeholder-resolver.git",
  1312. "reference": "c498d0cae91b1bb36cc7d60906dab8e62bb7c356"
  1313. },
  1314. "dist": {
  1315. "type": "zip",
  1316. "url": "https://api.github.com/repos/dflydev/dflydev-placeholder-resolver/zipball/c498d0cae91b1bb36cc7d60906dab8e62bb7c356",
  1317. "reference": "c498d0cae91b1bb36cc7d60906dab8e62bb7c356",
  1318. "shasum": ""
  1319. },
  1320. "require": {
  1321. "php": ">=5.3.2"
  1322. },
  1323. "type": "library",
  1324. "extra": {
  1325. "branch-alias": {
  1326. "dev-master": "1.0-dev"
  1327. }
  1328. },
  1329. "autoload": {
  1330. "psr-0": {
  1331. "Dflydev\\PlaceholderResolver": "src"
  1332. }
  1333. },
  1334. "notification-url": "https://packagist.org/downloads/",
  1335. "license": [
  1336. "MIT"
  1337. ],
  1338. "authors": [
  1339. {
  1340. "name": "Dragonfly Development Inc.",
  1341. "email": "info@dflydev.com",
  1342. "homepage": "http://dflydev.com"
  1343. },
  1344. {
  1345. "name": "Beau Simensen",
  1346. "email": "beau@dflydev.com",
  1347. "homepage": "http://beausimensen.com"
  1348. }
  1349. ],
  1350. "description": "Given a data source representing key => value pairs, resolve placeholders like ${foo.bar} to the value associated with the 'foo.bar' key in the data source.",
  1351. "homepage": "https://github.com/dflydev/dflydev-placeholder-resolver",
  1352. "keywords": [
  1353. "placeholder",
  1354. "resolver"
  1355. ],
  1356. "time": "2012-10-28T21:08:28+00:00"
  1357. },
  1358. {
  1359. "name": "dnoegel/php-xdg-base-dir",
  1360. "version": "v0.1.1",
  1361. "source": {
  1362. "type": "git",
  1363. "url": "https://github.com/dnoegel/php-xdg-base-dir.git",
  1364. "reference": "8f8a6e48c5ecb0f991c2fdcf5f154a47d85f9ffd"
  1365. },
  1366. "dist": {
  1367. "type": "zip",
  1368. "url": "https://api.github.com/repos/dnoegel/php-xdg-base-dir/zipball/8f8a6e48c5ecb0f991c2fdcf5f154a47d85f9ffd",
  1369. "reference": "8f8a6e48c5ecb0f991c2fdcf5f154a47d85f9ffd",
  1370. "shasum": ""
  1371. },
  1372. "require": {
  1373. "php": ">=5.3.2"
  1374. },
  1375. "require-dev": {
  1376. "phpunit/phpunit": "~7.0|~6.0|~5.0|~4.8.35"
  1377. },
  1378. "type": "library",
  1379. "autoload": {
  1380. "psr-4": {
  1381. "XdgBaseDir\\": "src/"
  1382. }
  1383. },
  1384. "notification-url": "https://packagist.org/downloads/",
  1385. "license": [
  1386. "MIT"
  1387. ],
  1388. "description": "implementation of xdg base directory specification for php",
  1389. "time": "2019-12-04T15:06:13+00:00"
  1390. },
  1391. {
  1392. "name": "doctrine/annotations",
  1393. "version": "v1.4.0",
  1394. "source": {
  1395. "type": "git",
  1396. "url": "https://github.com/doctrine/annotations.git",
  1397. "reference": "54cacc9b81758b14e3ce750f205a393d52339e97"
  1398. },
  1399. "dist": {
  1400. "type": "zip",
  1401. "url": "https://api.github.com/repos/doctrine/annotations/zipball/54cacc9b81758b14e3ce750f205a393d52339e97",
  1402. "reference": "54cacc9b81758b14e3ce750f205a393d52339e97",
  1403. "shasum": ""
  1404. },
  1405. "require": {
  1406. "doctrine/lexer": "1.*",
  1407. "php": "^5.6 || ^7.0"
  1408. },
  1409. "require-dev": {
  1410. "doctrine/cache": "1.*",
  1411. "phpunit/phpunit": "^5.7"
  1412. },
  1413. "type": "library",
  1414. "extra": {
  1415. "branch-alias": {
  1416. "dev-master": "1.4.x-dev"
  1417. }
  1418. },
  1419. "autoload": {
  1420. "psr-4": {
  1421. "Doctrine\\Common\\Annotations\\": "lib/Doctrine/Common/Annotations"
  1422. }
  1423. },
  1424. "notification-url": "https://packagist.org/downloads/",
  1425. "license": [
  1426. "MIT"
  1427. ],
  1428. "authors": [
  1429. {
  1430. "name": "Roman Borschel",
  1431. "email": "roman@code-factory.org"
  1432. },
  1433. {
  1434. "name": "Benjamin Eberlei",
  1435. "email": "kontakt@beberlei.de"
  1436. },
  1437. {
  1438. "name": "Guilherme Blanco",
  1439. "email": "guilhermeblanco@gmail.com"
  1440. },
  1441. {
  1442. "name": "Jonathan Wage",
  1443. "email": "jonwage@gmail.com"
  1444. },
  1445. {
  1446. "name": "Johannes Schmitt",
  1447. "email": "schmittjoh@gmail.com"
  1448. }
  1449. ],
  1450. "description": "Docblock Annotations Parser",
  1451. "homepage": "http://www.doctrine-project.org",
  1452. "keywords": [
  1453. "annotations",
  1454. "docblock",
  1455. "parser"
  1456. ],
  1457. "time": "2017-02-24T16:22:25+00:00"
  1458. },
  1459. {
  1460. "name": "doctrine/cache",
  1461. "version": "v1.6.2",
  1462. "source": {
  1463. "type": "git",
  1464. "url": "https://github.com/doctrine/cache.git",
  1465. "reference": "eb152c5100571c7a45470ff2a35095ab3f3b900b"
  1466. },
  1467. "dist": {
  1468. "type": "zip",
  1469. "url": "https://api.github.com/repos/doctrine/cache/zipball/eb152c5100571c7a45470ff2a35095ab3f3b900b",
  1470. "reference": "eb152c5100571c7a45470ff2a35095ab3f3b900b",
  1471. "shasum": ""
  1472. },
  1473. "require": {
  1474. "php": "~5.5|~7.0"
  1475. },
  1476. "conflict": {
  1477. "doctrine/common": ">2.2,<2.4"
  1478. },
  1479. "require-dev": {
  1480. "phpunit/phpunit": "~4.8|~5.0",
  1481. "predis/predis": "~1.0",
  1482. "satooshi/php-coveralls": "~0.6"
  1483. },
  1484. "type": "library",
  1485. "extra": {
  1486. "branch-alias": {
  1487. "dev-master": "1.6.x-dev"
  1488. }
  1489. },
  1490. "autoload": {
  1491. "psr-4": {
  1492. "Doctrine\\Common\\Cache\\": "lib/Doctrine/Common/Cache"
  1493. }
  1494. },
  1495. "notification-url": "https://packagist.org/downloads/",
  1496. "license": [
  1497. "MIT"
  1498. ],
  1499. "authors": [
  1500. {
  1501. "name": "Roman Borschel",
  1502. "email": "roman@code-factory.org"
  1503. },
  1504. {
  1505. "name": "Benjamin Eberlei",
  1506. "email": "kontakt@beberlei.de"
  1507. },
  1508. {
  1509. "name": "Guilherme Blanco",
  1510. "email": "guilhermeblanco@gmail.com"
  1511. },
  1512. {
  1513. "name": "Jonathan Wage",
  1514. "email": "jonwage@gmail.com"
  1515. },
  1516. {
  1517. "name": "Johannes Schmitt",
  1518. "email": "schmittjoh@gmail.com"
  1519. }
  1520. ],
  1521. "description": "Caching library offering an object-oriented API for many cache backends",
  1522. "homepage": "http://www.doctrine-project.org",
  1523. "keywords": [
  1524. "cache",
  1525. "caching"
  1526. ],
  1527. "time": "2017-07-22T12:49:21+00:00"
  1528. },
  1529. {
  1530. "name": "doctrine/collections",
  1531. "version": "v1.4.0",
  1532. "source": {
  1533. "type": "git",
  1534. "url": "https://github.com/doctrine/collections.git",
  1535. "reference": "1a4fb7e902202c33cce8c55989b945612943c2ba"
  1536. },
  1537. "dist": {
  1538. "type": "zip",
  1539. "url": "https://api.github.com/repos/doctrine/collections/zipball/1a4fb7e902202c33cce8c55989b945612943c2ba",
  1540. "reference": "1a4fb7e902202c33cce8c55989b945612943c2ba",
  1541. "shasum": ""
  1542. },
  1543. "require": {
  1544. "php": "^5.6 || ^7.0"
  1545. },
  1546. "require-dev": {
  1547. "doctrine/coding-standard": "~0.1@dev",
  1548. "phpunit/phpunit": "^5.7"
  1549. },
  1550. "type": "library",
  1551. "extra": {
  1552. "branch-alias": {
  1553. "dev-master": "1.3.x-dev"
  1554. }
  1555. },
  1556. "autoload": {
  1557. "psr-0": {
  1558. "Doctrine\\Common\\Collections\\": "lib/"
  1559. }
  1560. },
  1561. "notification-url": "https://packagist.org/downloads/",
  1562. "license": [
  1563. "MIT"
  1564. ],
  1565. "authors": [
  1566. {
  1567. "name": "Roman Borschel",
  1568. "email": "roman@code-factory.org"
  1569. },
  1570. {
  1571. "name": "Benjamin Eberlei",
  1572. "email": "kontakt@beberlei.de"
  1573. },
  1574. {
  1575. "name": "Guilherme Blanco",
  1576. "email": "guilhermeblanco@gmail.com"
  1577. },
  1578. {
  1579. "name": "Jonathan Wage",
  1580. "email": "jonwage@gmail.com"
  1581. },
  1582. {
  1583. "name": "Johannes Schmitt",
  1584. "email": "schmittjoh@gmail.com"
  1585. }
  1586. ],
  1587. "description": "Collections Abstraction library",
  1588. "homepage": "http://www.doctrine-project.org",
  1589. "keywords": [
  1590. "array",
  1591. "collections",
  1592. "iterator"
  1593. ],
  1594. "time": "2017-01-03T10:49:41+00:00"
  1595. },
  1596. {
  1597. "name": "doctrine/common",
  1598. "version": "v2.7.3",
  1599. "source": {
  1600. "type": "git",
  1601. "url": "https://github.com/doctrine/common.git",
  1602. "reference": "4acb8f89626baafede6ee5475bc5844096eba8a9"
  1603. },
  1604. "dist": {
  1605. "type": "zip",
  1606. "url": "https://api.github.com/repos/doctrine/common/zipball/4acb8f89626baafede6ee5475bc5844096eba8a9",
  1607. "reference": "4acb8f89626baafede6ee5475bc5844096eba8a9",
  1608. "shasum": ""
  1609. },
  1610. "require": {
  1611. "doctrine/annotations": "1.*",
  1612. "doctrine/cache": "1.*",
  1613. "doctrine/collections": "1.*",
  1614. "doctrine/inflector": "1.*",
  1615. "doctrine/lexer": "1.*",
  1616. "php": "~5.6|~7.0"
  1617. },
  1618. "require-dev": {
  1619. "phpunit/phpunit": "^5.4.6"
  1620. },
  1621. "type": "library",
  1622. "extra": {
  1623. "branch-alias": {
  1624. "dev-master": "2.7.x-dev"
  1625. }
  1626. },
  1627. "autoload": {
  1628. "psr-4": {
  1629. "Doctrine\\Common\\": "lib/Doctrine/Common"
  1630. }
  1631. },
  1632. "notification-url": "https://packagist.org/downloads/",
  1633. "license": [
  1634. "MIT"
  1635. ],
  1636. "authors": [
  1637. {
  1638. "name": "Roman Borschel",
  1639. "email": "roman@code-factory.org"
  1640. },
  1641. {
  1642. "name": "Benjamin Eberlei",
  1643. "email": "kontakt@beberlei.de"
  1644. },
  1645. {
  1646. "name": "Guilherme Blanco",
  1647. "email": "guilhermeblanco@gmail.com"
  1648. },
  1649. {
  1650. "name": "Jonathan Wage",
  1651. "email": "jonwage@gmail.com"
  1652. },
  1653. {
  1654. "name": "Johannes Schmitt",
  1655. "email": "schmittjoh@gmail.com"
  1656. }
  1657. ],
  1658. "description": "Common Library for Doctrine projects",
  1659. "homepage": "http://www.doctrine-project.org",
  1660. "keywords": [
  1661. "annotations",
  1662. "collections",
  1663. "eventmanager",
  1664. "persistence",
  1665. "spl"
  1666. ],
  1667. "time": "2017-07-22T08:35:12+00:00"
  1668. },
  1669. {
  1670. "name": "doctrine/inflector",
  1671. "version": "v1.2.0",
  1672. "source": {
  1673. "type": "git",
  1674. "url": "https://github.com/doctrine/inflector.git",
  1675. "reference": "e11d84c6e018beedd929cff5220969a3c6d1d462"
  1676. },
  1677. "dist": {
  1678. "type": "zip",
  1679. "url": "https://api.github.com/repos/doctrine/inflector/zipball/e11d84c6e018beedd929cff5220969a3c6d1d462",
  1680. "reference": "e11d84c6e018beedd929cff5220969a3c6d1d462",
  1681. "shasum": ""
  1682. },
  1683. "require": {
  1684. "php": "^7.0"
  1685. },
  1686. "require-dev": {
  1687. "phpunit/phpunit": "^6.2"
  1688. },
  1689. "type": "library",
  1690. "extra": {
  1691. "branch-alias": {
  1692. "dev-master": "1.2.x-dev"
  1693. }
  1694. },
  1695. "autoload": {
  1696. "psr-4": {
  1697. "Doctrine\\Common\\Inflector\\": "lib/Doctrine/Common/Inflector"
  1698. }
  1699. },
  1700. "notification-url": "https://packagist.org/downloads/",
  1701. "license": [
  1702. "MIT"
  1703. ],
  1704. "authors": [
  1705. {
  1706. "name": "Roman Borschel",
  1707. "email": "roman@code-factory.org"
  1708. },
  1709. {
  1710. "name": "Benjamin Eberlei",
  1711. "email": "kontakt@beberlei.de"
  1712. },
  1713. {
  1714. "name": "Guilherme Blanco",
  1715. "email": "guilhermeblanco@gmail.com"
  1716. },
  1717. {
  1718. "name": "Jonathan Wage",
  1719. "email": "jonwage@gmail.com"
  1720. },
  1721. {
  1722. "name": "Johannes Schmitt",
  1723. "email": "schmittjoh@gmail.com"
  1724. }
  1725. ],
  1726. "description": "Common String Manipulations with regard to casing and singular/plural rules.",
  1727. "homepage": "http://www.doctrine-project.org",
  1728. "keywords": [
  1729. "inflection",
  1730. "pluralize",
  1731. "singularize",
  1732. "string"
  1733. ],
  1734. "time": "2017-07-22T12:18:28+00:00"
  1735. },
  1736. {
  1737. "name": "doctrine/lexer",
  1738. "version": "1.0.2",
  1739. "source": {
  1740. "type": "git",
  1741. "url": "https://github.com/doctrine/lexer.git",
  1742. "reference": "1febd6c3ef84253d7c815bed85fc622ad207a9f8"
  1743. },
  1744. "dist": {
  1745. "type": "zip",
  1746. "url": "https://api.github.com/repos/doctrine/lexer/zipball/1febd6c3ef84253d7c815bed85fc622ad207a9f8",
  1747. "reference": "1febd6c3ef84253d7c815bed85fc622ad207a9f8",
  1748. "shasum": ""
  1749. },
  1750. "require": {
  1751. "php": ">=5.3.2"
  1752. },
  1753. "require-dev": {
  1754. "phpunit/phpunit": "^4.5"
  1755. },
  1756. "type": "library",
  1757. "extra": {
  1758. "branch-alias": {
  1759. "dev-master": "1.0.x-dev"
  1760. }
  1761. },
  1762. "autoload": {
  1763. "psr-4": {
  1764. "Doctrine\\Common\\Lexer\\": "lib/Doctrine/Common/Lexer"
  1765. }
  1766. },
  1767. "notification-url": "https://packagist.org/downloads/",
  1768. "license": [
  1769. "MIT"
  1770. ],
  1771. "authors": [
  1772. {
  1773. "name": "Roman Borschel",
  1774. "email": "roman@code-factory.org"
  1775. },
  1776. {
  1777. "name": "Guilherme Blanco",
  1778. "email": "guilhermeblanco@gmail.com"
  1779. },
  1780. {
  1781. "name": "Johannes Schmitt",
  1782. "email": "schmittjoh@gmail.com"
  1783. }
  1784. ],
  1785. "description": "PHP Doctrine Lexer parser library that can be used in Top-Down, Recursive Descent Parsers.",
  1786. "homepage": "https://www.doctrine-project.org/projects/lexer.html",
  1787. "keywords": [
  1788. "annotations",
  1789. "docblock",
  1790. "lexer",
  1791. "parser",
  1792. "php"
  1793. ],
  1794. "time": "2019-06-08T11:03:04+00:00"
  1795. },
  1796. {
  1797. "name": "drupal/addtoany",
  1798. "version": "1.14.0",
  1799. "source": {
  1800. "type": "git",
  1801. "url": "https://git.drupalcode.org/project/addtoany.git",
  1802. "reference": "8.x-1.14"
  1803. },
  1804. "dist": {
  1805. "type": "zip",
  1806. "url": "https://ftp.drupal.org/files/projects/addtoany-8.x-1.14.zip",
  1807. "reference": "8.x-1.14",
  1808. "shasum": "269ec4d1cfaf93132d5945edebf691ec7c04901a"
  1809. },
  1810. "require": {
  1811. "drupal/core": "^8 || ^9"
  1812. },
  1813. "type": "drupal-module",
  1814. "extra": {
  1815. "drupal": {
  1816. "version": "8.x-1.14",
  1817. "datestamp": "1589571718",
  1818. "security-coverage": {
  1819. "status": "covered",
  1820. "message": "Covered by Drupal's security advisory policy"
  1821. }
  1822. }
  1823. },
  1824. "notification-url": "https://packages.drupal.org/8/downloads",
  1825. "license": [
  1826. "GPL-2.0-or-later"
  1827. ],
  1828. "authors": [
  1829. {
  1830. "name": "AddToAny",
  1831. "homepage": "https://www.drupal.org/user/2640913"
  1832. },
  1833. {
  1834. "name": "micropat",
  1835. "homepage": "https://www.drupal.org/user/260224"
  1836. }
  1837. ],
  1838. "description": "Share buttons for Drupal including the AddToAny universal share button, Facebook, Twitter, Pinterest, WhatsApp and many more.",
  1839. "homepage": "https://www.drupal.org/project/addtoany",
  1840. "keywords": [
  1841. "Drupal"
  1842. ],
  1843. "support": {
  1844. "source": "https://git.drupalcode.org/project/addtoany",
  1845. "issues": "https://www.drupal.org/project/issues/addtoany"
  1846. }
  1847. },
  1848. {
  1849. "name": "drupal/admin_toolbar",
  1850. "version": "2.3.0",
  1851. "source": {
  1852. "type": "git",
  1853. "url": "https://git.drupalcode.org/project/admin_toolbar.git",
  1854. "reference": "8.x-2.3"
  1855. },
  1856. "dist": {
  1857. "type": "zip",
  1858. "url": "https://ftp.drupal.org/files/projects/admin_toolbar-8.x-2.3.zip",
  1859. "reference": "8.x-2.3",
  1860. "shasum": "cf8ee1aa8adfc604db4394655e3ba4c423d5f24a"
  1861. },
  1862. "require": {
  1863. "drupal/core": "^8.8.0 || ^9.0"
  1864. },
  1865. "type": "drupal-module",
  1866. "extra": {
  1867. "drupal": {
  1868. "version": "8.x-2.3",
  1869. "datestamp": "1592535714",
  1870. "security-coverage": {
  1871. "status": "covered",
  1872. "message": "Covered by Drupal's security advisory policy"
  1873. }
  1874. }
  1875. },
  1876. "notification-url": "https://packages.drupal.org/8/downloads",
  1877. "license": [
  1878. "GPL-2.0-or-later"
  1879. ],
  1880. "authors": [
  1881. {
  1882. "name": "Wilfrid Roze (eme)",
  1883. "homepage": "https://www.drupal.org/u/eme",
  1884. "role": "Maintainer"
  1885. },
  1886. {
  1887. "name": "Romain Jarraud (romainj)",
  1888. "homepage": "https://www.drupal.org/u/romainj",
  1889. "role": "Maintainer"
  1890. },
  1891. {
  1892. "name": "Adrian Cid Almaguer (adriancid)",
  1893. "homepage": "https://www.drupal.org/u/adriancid",
  1894. "email": "adriancid@gmail.com",
  1895. "role": "Maintainer"
  1896. },
  1897. {
  1898. "name": "Mohamed Anis Taktak (matio89)",
  1899. "homepage": "https://www.drupal.org/u/matio89",
  1900. "role": "Maintainer"
  1901. },
  1902. {
  1903. "name": "fethi.krout",
  1904. "homepage": "https://www.drupal.org/user/3206765"
  1905. },
  1906. {
  1907. "name": "matio89",
  1908. "homepage": "https://www.drupal.org/user/2320090"
  1909. },
  1910. {
  1911. "name": "romainj",
  1912. "homepage": "https://www.drupal.org/user/370706"
  1913. }
  1914. ],
  1915. "description": "Provides a drop-down menu interface to the core Drupal Toolbar.",
  1916. "homepage": "http://drupal.org/project/admin_toolbar",
  1917. "keywords": [
  1918. "Drupal",
  1919. "Toolbar"
  1920. ],
  1921. "support": {
  1922. "source": "https://git.drupalcode.org/project/admin_toolbar",
  1923. "issues": "https://www.drupal.org/project/issues/admin_toolbar"
  1924. }
  1925. },
  1926. {
  1927. "name": "drupal/adminimal_theme",
  1928. "version": "1.5.0",
  1929. "source": {
  1930. "type": "git",
  1931. "url": "https://git.drupalcode.org/project/adminimal_theme.git",
  1932. "reference": "8.x-1.5"
  1933. },
  1934. "dist": {
  1935. "type": "zip",
  1936. "url": "https://ftp.drupal.org/files/projects/adminimal_theme-8.x-1.5.zip",
  1937. "reference": "8.x-1.5",
  1938. "shasum": "fb4457015d743faafecaa0776d2bebf2829a6738"
  1939. },
  1940. "require": {
  1941. "drupal/core": "~8.0"
  1942. },
  1943. "type": "drupal-theme",
  1944. "extra": {
  1945. "branch-alias": {
  1946. "dev-1.x": "1.x-dev"
  1947. },
  1948. "drupal": {
  1949. "version": "8.x-1.5",
  1950. "datestamp": "1558584484",
  1951. "security-coverage": {
  1952. "status": "covered",
  1953. "message": "Covered by Drupal's security advisory policy"
  1954. }
  1955. }
  1956. },
  1957. "notification-url": "https://packages.drupal.org/8/downloads",
  1958. "license": [
  1959. "GPL-2.0+"
  1960. ],
  1961. "authors": [
  1962. {
  1963. "name": "ANDiTKO",
  1964. "homepage": "https://www.drupal.org/user/1428124"
  1965. },
  1966. {
  1967. "name": "andrey.troeglazov",
  1968. "homepage": "https://www.drupal.org/user/3145389"
  1969. },
  1970. {
  1971. "name": "realityloop",
  1972. "homepage": "https://www.drupal.org/user/139189"
  1973. }
  1974. ],
  1975. "description": "Drupal administration theme with modern minimalist design.",
  1976. "homepage": "https://www.drupal.org/project/adminimal_theme",
  1977. "support": {
  1978. "source": "https://git.drupalcode.org/project/adminimal_theme",
  1979. "issues": "https://www.drupal.org/project/issues/adminimal_theme"
  1980. }
  1981. },
  1982. {
  1983. "name": "drupal/audiofield",
  1984. "version": "1.9.0",
  1985. "source": {
  1986. "type": "git",
  1987. "url": "https://git.drupalcode.org/project/audiofield.git",
  1988. "reference": "8.x-1.9"
  1989. },
  1990. "dist": {
  1991. "type": "zip",
  1992. "url": "https://ftp.drupal.org/files/projects/audiofield-8.x-1.9.zip",
  1993. "reference": "8.x-1.9",
  1994. "shasum": "ddb2ca8dd5125a2bd0104e0001037c6fa2716682"
  1995. },
  1996. "require": {
  1997. "drupal/core": "~8.0"
  1998. },
  1999. "type": "drupal-module",
  2000. "extra": {
  2001. "drupal": {
  2002. "version": "8.x-1.9",
  2003. "datestamp": "1553712781",
  2004. "security-coverage": {
  2005. "status": "covered",
  2006. "message": "Covered by Drupal's security advisory policy"
  2007. }
  2008. },
  2009. "drush": {
  2010. "services": {
  2011. "drush.services.yml": "^9"
  2012. }
  2013. }
  2014. },
  2015. "notification-url": "https://packages.drupal.org/8/downloads",
  2016. "license": [
  2017. "GPL-2.0+"
  2018. ],
  2019. "authors": [
  2020. {
  2021. "name": "Daniel Moberly",
  2022. "homepage": "https://www.drupal.org/u/danielmoberly",
  2023. "role": "Maintainer"
  2024. },
  2025. {
  2026. "name": "josipsaric",
  2027. "homepage": "https://www.drupal.org/user/3063287"
  2028. },
  2029. {
  2030. "name": "tamerzg",
  2031. "homepage": "https://www.drupal.org/user/464564"
  2032. }
  2033. ],
  2034. "description": "AudioField Module",
  2035. "homepage": "https://www.drupal.org/project/audiofield",
  2036. "support": {
  2037. "source": "https://git.drupalcode.org/project/audiofield",
  2038. "issues": "https://www.drupal.org/project/issues/audiofield"
  2039. }
  2040. },
  2041. {
  2042. "name": "drupal/autologout",
  2043. "version": "1.3.0",
  2044. "source": {
  2045. "type": "git",
  2046. "url": "https://git.drupalcode.org/project/autologout.git",
  2047. "reference": "8.x-1.3"
  2048. },
  2049. "dist": {
  2050. "type": "zip",
  2051. "url": "https://ftp.drupal.org/files/projects/autologout-8.x-1.3.zip",
  2052. "reference": "8.x-1.3",
  2053. "shasum": "87733b2042d9dcdee0d8f33d206872208a8c97ea"
  2054. },
  2055. "require": {
  2056. "drupal/core": "^8 || ^9"
  2057. },
  2058. "type": "drupal-module",
  2059. "extra": {
  2060. "drupal": {
  2061. "version": "8.x-1.3",
  2062. "datestamp": "1587193798",
  2063. "security-coverage": {
  2064. "status": "covered",
  2065. "message": "Covered by Drupal's security advisory policy"
  2066. }
  2067. },
  2068. "patches_applied": {
  2069. "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"
  2070. }
  2071. },
  2072. "notification-url": "https://packages.drupal.org/8/downloads",
  2073. "license": [
  2074. "GPL-2.0+"
  2075. ],
  2076. "authors": [
  2077. {
  2078. "name": "AjK",
  2079. "homepage": "https://www.drupal.org/user/39030"
  2080. },
  2081. {
  2082. "name": "AjitS",
  2083. "homepage": "https://www.drupal.org/user/981944"
  2084. },
  2085. {
  2086. "name": "boshtian",
  2087. "homepage": "https://www.drupal.org/user/1773456"
  2088. },
  2089. {
  2090. "name": "dandrews",
  2091. "homepage": "https://www.drupal.org/user/2014490"
  2092. },
  2093. {
  2094. "name": "darksnow",
  2095. "homepage": "https://www.drupal.org/user/391915"
  2096. },
  2097. {
  2098. "name": "johnennew",
  2099. "homepage": "https://www.drupal.org/user/1150042"
  2100. },
  2101. {
  2102. "name": "jrglasgow",
  2103. "homepage": "https://www.drupal.org/user/36590"
  2104. },
  2105. {
  2106. "name": "kmasood",
  2107. "homepage": "https://www.drupal.org/user/1262860"
  2108. },
  2109. {
  2110. "name": "levelos",
  2111. "homepage": "https://www.drupal.org/user/54135"
  2112. },
  2113. {
  2114. "name": "prabeen.giri",
  2115. "homepage": "https://www.drupal.org/user/913078"
  2116. },
  2117. {
  2118. "name": "str8",
  2119. "homepage": "https://www.drupal.org/user/2865063"
  2120. }
  2121. ],
  2122. "description": "Adds automated timed logout.",
  2123. "homepage": "http://drupal.org/project/autologout",
  2124. "support": {
  2125. "source": "https://git.drupalcode.org/project/autologout"
  2126. }
  2127. },
  2128. {
  2129. "name": "drupal/basic",
  2130. "version": "1.3.0",
  2131. "source": {
  2132. "type": "git",
  2133. "url": "https://git.drupalcode.org/project/basic.git",
  2134. "reference": "8.x-1.3"
  2135. },
  2136. "dist": {
  2137. "type": "zip",
  2138. "url": "https://ftp.drupal.org/files/projects/basic-8.x-1.3.zip",
  2139. "reference": "8.x-1.3",
  2140. "shasum": "d42e75327d54ae38cf988ebe77f995b44fbc45f7"
  2141. },
  2142. "require": {
  2143. "drupal/core": "~8.0"
  2144. },
  2145. "type": "drupal-theme",
  2146. "extra": {
  2147. "branch-alias": {
  2148. "dev-1.x": "1.x-dev"
  2149. },
  2150. "drupal": {
  2151. "version": "8.x-1.3",
  2152. "datestamp": "1508096944",
  2153. "security-coverage": {
  2154. "status": "covered",
  2155. "message": "Covered by Drupal's security advisory policy"
  2156. }
  2157. }
  2158. },
  2159. "notification-url": "https://packages.drupal.org/8/downloads",
  2160. "license": [
  2161. "GPL-2.0+"
  2162. ],
  2163. "authors": [
  2164. {
  2165. "name": "Steve Krueger",
  2166. "homepage": "http://thejibe.com",
  2167. "email": "steve@thejibe.com",
  2168. "role": "Maintainer"
  2169. },
  2170. {
  2171. "name": "Joël Pittet",
  2172. "homepage": "https://www.drupal.org/u/joelpittet",
  2173. "email": "joel@pittet.ca",
  2174. "role": "Maintainer"
  2175. },
  2176. {
  2177. "name": "Leah Wagner",
  2178. "homepage": "http://thejibe.com",
  2179. "email": "leah@thejibe.com",
  2180. "role": "Maintainer"
  2181. },
  2182. {
  2183. "name": "Catherine Winters",
  2184. "homepage": "http://www.catherinewinters.com",
  2185. "email": "catherine@catherinewinters.com",
  2186. "role": "Maintainer"
  2187. },
  2188. {
  2189. "name": "Johannes Schmidt",
  2190. "homepage": "http://2tabs.com",
  2191. "email": "mail@2tabs.com",
  2192. "role": "Maintainer"
  2193. },
  2194. {
  2195. "name": "johannez",
  2196. "homepage": "https://www.drupal.org/user/670988"
  2197. },
  2198. {
  2199. "name": "leahtard",
  2200. "homepage": "https://www.drupal.org/user/683812"
  2201. }
  2202. ],
  2203. "description": "HTML5, SASS, Responsive grid starter theme.",
  2204. "homepage": "http://drupal.org/project/basic",
  2205. "support": {
  2206. "source": "http://cgit.drupalcode.org/basic",
  2207. "issues": "https://www.drupal.org/project/issues/basic",
  2208. "irc": "irc://irc.freenode.org/drupal-contribute"
  2209. }
  2210. },
  2211. {
  2212. "name": "drupal/better_messages",
  2213. "version": "1.0.0-alpha2",
  2214. "source": {
  2215. "type": "git",
  2216. "url": "https://git.drupalcode.org/project/better_messages.git",
  2217. "reference": "8.x-1.0-alpha2"
  2218. },
  2219. "dist": {
  2220. "type": "zip",
  2221. "url": "https://ftp.drupal.org/files/projects/better_messages-8.x-1.0-alpha2.zip",
  2222. "reference": "8.x-1.0-alpha2",
  2223. "shasum": "ca09231502d5e0d8a5c0d16f9efc5430091b8a38"
  2224. },
  2225. "require": {
  2226. "drupal/core": "~8.0"
  2227. },
  2228. "type": "drupal-module",
  2229. "extra": {
  2230. "branch-alias": {
  2231. "dev-1.x": "1.x-dev"
  2232. },
  2233. "drupal": {
  2234. "version": "8.x-1.0-alpha2",
  2235. "datestamp": "1517663880",
  2236. "security-coverage": {
  2237. "status": "not-covered",
  2238. "message": "Alpha releases are not covered by Drupal security advisories."
  2239. }
  2240. }
  2241. },
  2242. "notification-url": "https://packages.drupal.org/8/downloads",
  2243. "license": [
  2244. "GPL-2.0-or-later"
  2245. ],
  2246. "authors": [
  2247. {
  2248. "name": "Mohammed J. Razem",
  2249. "homepage": "https://www.drupal.org/user/255384"
  2250. },
  2251. {
  2252. "name": "bucefal91",
  2253. "homepage": "https://www.drupal.org/user/504128"
  2254. },
  2255. {
  2256. "name": "le72",
  2257. "homepage": "https://www.drupal.org/user/1866896"
  2258. }
  2259. ],
  2260. "description": "Better Messages module for Drupal 8.",
  2261. "homepage": "https://www.drupal.org/project/better_messages",
  2262. "support": {
  2263. "source": "https://git.drupalcode.org/project/better_messages"
  2264. }
  2265. },
  2266. {
  2267. "name": "drupal/bulkdelete",
  2268. "version": "dev-1.x",
  2269. "source": {
  2270. "type": "git",
  2271. "url": "https://git.drupalcode.org/project/bulkdelete.git",
  2272. "reference": "36e12429e99606463b9ef15203c2018de69965b2"
  2273. },
  2274. "require": {
  2275. "drupal/core": "^8.7.7 || ^9"
  2276. },
  2277. "type": "drupal-module",
  2278. "extra": {
  2279. "branch-alias": {
  2280. "dev-1.x": "1.x-dev"
  2281. },
  2282. "drupal": {
  2283. "version": "8.x-1.x-dev",
  2284. "datestamp": "1569586386",
  2285. "security-coverage": {
  2286. "status": "not-covered",
  2287. "message": "Dev releases are not covered by Drupal security advisories."
  2288. }
  2289. }
  2290. },
  2291. "notification-url": "https://packages.drupal.org/8/downloads",
  2292. "license": [
  2293. "GPL-2.0-or-later"
  2294. ],
  2295. "authors": [
  2296. {
  2297. "name": "Kars-T",
  2298. "homepage": "https://www.drupal.org/user/224499"
  2299. },
  2300. {
  2301. "name": "Rahul Seth",
  2302. "homepage": "https://www.drupal.org/user/2694359"
  2303. },
  2304. {
  2305. "name": "adriancid",
  2306. "homepage": "https://www.drupal.org/user/1962106"
  2307. },
  2308. {
  2309. "name": "robertDouglass",
  2310. "homepage": "https://www.drupal.org/user/5449"
  2311. }
  2312. ],
  2313. "description": "Adds an administrative option to bulk delete nodes by content type using the batch API.",
  2314. "homepage": "https://www.drupal.org/project/bulkdelete",
  2315. "support": {
  2316. "source": "https://git.drupalcode.org/project/bulkdelete"
  2317. },
  2318. "time": "2020-05-24T06:01:38+00:00"
  2319. },
  2320. {
  2321. "name": "drupal/color_field",
  2322. "version": "2.4.0",
  2323. "source": {
  2324. "type": "git",
  2325. "url": "https://git.drupalcode.org/project/color_field.git",
  2326. "reference": "8.x-2.4"
  2327. },
  2328. "dist": {
  2329. "type": "zip",
  2330. "url": "https://ftp.drupal.org/files/projects/color_field-8.x-2.4.zip",
  2331. "reference": "8.x-2.4",
  2332. "shasum": "11c163a409f4f70083f188d917fecc6052c53a2f"
  2333. },
  2334. "require": {
  2335. "drupal/core": "^8 || ^9"
  2336. },
  2337. "require-dev": {
  2338. "drupal/token": "~1.3",
  2339. "nickwilde1990/php-composter-phpcs-drupal": "^2.0"
  2340. },
  2341. "suggest": {
  2342. "bower-asset/jquery-simple-color": "^v1.2.2: Provides JavaScript library necessary for the Color Grid widget",
  2343. "bower-asset/spectrum": "^1.8: Provides JavaScript library necessary for Spectrum widget."
  2344. },
  2345. "type": "drupal-module",
  2346. "extra": {
  2347. "drupal": {
  2348. "version": "8.x-2.4",
  2349. "datestamp": "1596479692",
  2350. "security-coverage": {
  2351. "status": "covered",
  2352. "message": "Covered by Drupal's security advisory policy"
  2353. }
  2354. }
  2355. },
  2356. "notification-url": "https://packages.drupal.org/8/downloads",
  2357. "license": [
  2358. "GPL-2.0-or-later"
  2359. ],
  2360. "authors": [
  2361. {
  2362. "name": "targoo",
  2363. "homepage": "https://www.drupal.org/user/431910",
  2364. "role": "Maintainer"
  2365. },
  2366. {
  2367. "name": "Nick Wilde",
  2368. "homepage": "https://www.drupal.org/user/nickwilde",
  2369. "role": "Maintainer"
  2370. }
  2371. ],
  2372. "description": "Provides a color field type to store the color value and opacity",
  2373. "homepage": "https://www.drupal.org/project/color_field",
  2374. "support": {
  2375. "source": "https://git.drupalcode.org/project/color_field",
  2376. "issues": "https://www.drupal.org/project/issues/color_field?version=8.x"
  2377. }
  2378. },
  2379. {
  2380. "name": "drupal/config_devel",
  2381. "version": "1.7.0",
  2382. "source": {
  2383. "type": "git",
  2384. "url": "https://git.drupalcode.org/project/config_devel.git",
  2385. "reference": "8.x-1.7"
  2386. },
  2387. "dist": {
  2388. "type": "zip",
  2389. "url": "https://ftp.drupal.org/files/projects/config_devel-8.x-1.7.zip",
  2390. "reference": "8.x-1.7",
  2391. "shasum": "4ebcf4fb2a2842232b9bf9b0855e3728df918fc7"
  2392. },
  2393. "require": {
  2394. "drupal/core": "*"
  2395. },
  2396. "type": "drupal-module",
  2397. "extra": {
  2398. "drupal": {
  2399. "version": "8.x-1.7",
  2400. "datestamp": "1590070764",
  2401. "security-coverage": {
  2402. "status": "covered",
  2403. "message": "Covered by Drupal's security advisory policy"
  2404. }
  2405. }
  2406. },
  2407. "notification-url": "https://packages.drupal.org/8/downloads",
  2408. "license": [
  2409. "GPL-2.0+"
  2410. ],
  2411. "authors": [
  2412. {
  2413. "name": "alexpott",
  2414. "homepage": "https://www.drupal.org/user/157725"
  2415. },
  2416. {
  2417. "name": "benjy",
  2418. "homepage": "https://www.drupal.org/user/1852732"
  2419. },
  2420. {
  2421. "name": "chx",
  2422. "homepage": "https://www.drupal.org/user/9446"
  2423. },
  2424. {
  2425. "name": "joachim",
  2426. "homepage": "https://www.drupal.org/user/107701"
  2427. },
  2428. {
  2429. "name": "nedjo",
  2430. "homepage": "https://www.drupal.org/user/4481"
  2431. },
  2432. {
  2433. "name": "tim.plunkett",
  2434. "homepage": "https://www.drupal.org/user/241634"
  2435. },
  2436. {
  2437. "name": "vijaycs85",
  2438. "homepage": "https://www.drupal.org/user/93488"
  2439. }
  2440. ],
  2441. "description": "Helps developers work with configuration.",
  2442. "homepage": "https://www.drupal.org/project/config_devel",
  2443. "support": {
  2444. "source": "https://git.drupalcode.org/project/config_devel"
  2445. }
  2446. },
  2447. {
  2448. "name": "drupal/config_filter",
  2449. "version": "1.6.0",
  2450. "source": {
  2451. "type": "git",
  2452. "url": "https://git.drupalcode.org/project/config_filter.git",
  2453. "reference": "8.x-1.6"
  2454. },
  2455. "dist": {
  2456. "type": "zip",
  2457. "url": "https://ftp.drupal.org/files/projects/config_filter-8.x-1.6.zip",
  2458. "reference": "8.x-1.6",
  2459. "shasum": "5c95f853c751a5eaa21701b540c463442b1be1e3"
  2460. },
  2461. "require": {
  2462. "drupal/core": "^8 || ^9"
  2463. },
  2464. "suggest": {
  2465. "drupal/config_split": "Split site configuration for different environments."
  2466. },
  2467. "type": "drupal-module",
  2468. "extra": {
  2469. "drupal": {
  2470. "version": "8.x-1.6",
  2471. "datestamp": "1597845156",
  2472. "security-coverage": {
  2473. "status": "covered",
  2474. "message": "Covered by Drupal's security advisory policy"
  2475. }
  2476. }
  2477. },
  2478. "notification-url": "https://packages.drupal.org/8/downloads",
  2479. "license": [
  2480. "GPL-2.0-or-later"
  2481. ],
  2482. "authors": [
  2483. {
  2484. "name": "Fabian Bircher",
  2485. "homepage": "https://www.drupal.org/u/bircher",
  2486. "email": "opensource@fabianbircher.com",
  2487. "role": "Maintainer"
  2488. },
  2489. {
  2490. "name": "Nuvole Web",
  2491. "homepage": "http://nuvole.org",
  2492. "email": "info@nuvole.org",
  2493. "role": "Maintainer"
  2494. },
  2495. {
  2496. "name": "pescetti",
  2497. "homepage": "https://www.drupal.org/user/436244"
  2498. }
  2499. ],
  2500. "description": "Config Filter allows other modules to interact with a ConfigStorage through filter plugins.",
  2501. "homepage": "https://www.drupal.org/project/config_filter",
  2502. "keywords": [
  2503. "Drupal",
  2504. "configuration",
  2505. "configuration management"
  2506. ],
  2507. "support": {
  2508. "source": "https://git.drupalcode.org/project/config_filter",
  2509. "issues": "https://www.drupal.org/project/issues/config_filter",
  2510. "slack": "https://drupal.slack.com/archives/C45342CDD"
  2511. }
  2512. },
  2513. {
  2514. "name": "drupal/config_ignore",
  2515. "version": "2.2.0",
  2516. "source": {
  2517. "type": "git",
  2518. "url": "https://git.drupalcode.org/project/config_ignore.git",
  2519. "reference": "8.x-2.2"
  2520. },
  2521. "dist": {
  2522. "type": "zip",
  2523. "url": "https://ftp.drupal.org/files/projects/config_ignore-8.x-2.2.zip",
  2524. "reference": "8.x-2.2",
  2525. "shasum": "18af5772087b90dd4b83c2c6e292d8ea2f8834e0"
  2526. },
  2527. "require": {
  2528. "drupal/config_filter": "1.*",
  2529. "drupal/core": "~8.0"
  2530. },
  2531. "type": "drupal-module",
  2532. "extra": {
  2533. "branch-alias": {
  2534. "dev-2.x": "2.x-dev"
  2535. },
  2536. "drupal": {
  2537. "version": "8.x-2.2",
  2538. "datestamp": "1576528386",
  2539. "security-coverage": {
  2540. "status": "covered",
  2541. "message": "Covered by Drupal's security advisory policy"
  2542. }
  2543. }
  2544. },
  2545. "notification-url": "https://packages.drupal.org/8/downloads",
  2546. "license": [
  2547. "GPL-2.0+"
  2548. ],
  2549. "authors": [
  2550. {
  2551. "name": "Tommy Lynge Jørgensen",
  2552. "homepage": "https://www.drupal.org/u/tlyngej",
  2553. "email": "tlyngej@gmail.com",
  2554. "role": "Maintainer"
  2555. },
  2556. {
  2557. "name": "Fabian Bircher",
  2558. "homepage": "https://www.drupal.org/u/bircher",
  2559. "role": "Maintainer"
  2560. },
  2561. {
  2562. "name": "tlyngej",
  2563. "homepage": "https://www.drupal.org/user/413139"
  2564. }
  2565. ],
  2566. "description": "Ignore certain configuration during import.",
  2567. "homepage": "http://drupal.org/project/config_ignore",
  2568. "support": {
  2569. "source": "http://cgit.drupalcode.org/config_ignore",
  2570. "issues": "http://drupal.org/project/config_ignore",
  2571. "irc": "irc://irc.freenode.org/drupal-contribute"
  2572. }
  2573. },
  2574. {
  2575. "name": "drupal/config_update",
  2576. "version": "1.7.0",
  2577. "source": {
  2578. "type": "git",
  2579. "url": "https://git.drupalcode.org/project/config_update.git",
  2580. "reference": "8.x-1.7"
  2581. },
  2582. "dist": {
  2583. "type": "zip",
  2584. "url": "https://ftp.drupal.org/files/projects/config_update-8.x-1.7.zip",
  2585. "reference": "8.x-1.7",
  2586. "shasum": "8f079abf7c2ea826a27fa5224b0770a26404c968"
  2587. },
  2588. "require": {
  2589. "drupal/core": "^8 || ^9"
  2590. },
  2591. "type": "drupal-module",
  2592. "extra": {
  2593. "drupal": {
  2594. "version": "8.x-1.7",
  2595. "datestamp": "1586355587",
  2596. "security-coverage": {
  2597. "status": "covered",
  2598. "message": "Covered by Drupal's security advisory policy"
  2599. }
  2600. }
  2601. },
  2602. "notification-url": "https://packages.drupal.org/8/downloads",
  2603. "license": [
  2604. "GPL-2.0-or-later"
  2605. ],
  2606. "authors": [
  2607. {
  2608. "name": "jhodgdon",
  2609. "homepage": "https://www.drupal.org/user/155601"
  2610. },
  2611. {
  2612. "name": "nedjo",
  2613. "homepage": "https://www.drupal.org/user/4481"
  2614. }
  2615. ],
  2616. "description": "Provides basic revert and update functionality for other modules",
  2617. "homepage": "https://www.drupal.org/project/config_update",
  2618. "support": {
  2619. "source": "https://git.drupalcode.org/project/config_update"
  2620. }
  2621. },
  2622. {
  2623. "name": "drupal/console",
  2624. "version": "1.9.4",
  2625. "source": {
  2626. "type": "git",
  2627. "url": "https://github.com/hechoendrupal/drupal-console.git",
  2628. "reference": "04522b687b2149dc1f808599e716421a20d50a5b"
  2629. },
  2630. "dist": {
  2631. "type": "zip",
  2632. "url": "https://api.github.com/repos/hechoendrupal/drupal-console/zipball/04522b687b2149dc1f808599e716421a20d50a5b",
  2633. "reference": "04522b687b2149dc1f808599e716421a20d50a5b",
  2634. "shasum": ""
  2635. },
  2636. "require": {
  2637. "alchemy/zippy": "~0.4",
  2638. "composer/installers": "~1.0",
  2639. "doctrine/annotations": "^1.2",
  2640. "doctrine/collections": "^1.3",
  2641. "drupal/console-core": "1.9.4",
  2642. "drupal/console-extend-plugin": "~0",
  2643. "php": "^5.5.9 || ^7.0",
  2644. "psy/psysh": "0.6.* || ~0.8",
  2645. "symfony/css-selector": "~2.8|~3.0",
  2646. "symfony/dom-crawler": "~2.8|~3.0",
  2647. "symfony/http-foundation": "~2.8|~3.0"
  2648. },
  2649. "suggest": {
  2650. "symfony/thanks": "Thank your favorite PHP projects on GitHub using the CLI",
  2651. "vlucas/phpdotenv": "Loads environment variables from .env to getenv(), $_ENV and $_SERVER automagically"
  2652. },
  2653. "bin": [
  2654. "bin/drupal"
  2655. ],
  2656. "type": "library",
  2657. "autoload": {
  2658. "psr-4": {
  2659. "Drupal\\Console\\": "src"
  2660. }
  2661. },
  2662. "notification-url": "https://packagist.org/downloads/",
  2663. "license": [
  2664. "GPL-2.0-or-later"
  2665. ],
  2666. "authors": [
  2667. {
  2668. "name": "David Flores",
  2669. "email": "dmousex@gmail.com",
  2670. "homepage": "http://dmouse.net"
  2671. },
  2672. {
  2673. "name": "Jesus Manuel Olivas",
  2674. "email": "jesus.olivas@gmail.com",
  2675. "homepage": "http://jmolivas.com"
  2676. },
  2677. {
  2678. "name": "Eduardo Garcia",
  2679. "email": "enzo@enzolutions.com",
  2680. "homepage": "http://enzolutions.com/"
  2681. },
  2682. {
  2683. "name": "Omar Aguirre",
  2684. "email": "omersguchigu@gmail.com"
  2685. },
  2686. {
  2687. "name": "Drupal Console Contributors",
  2688. "homepage": "https://github.com/hechoendrupal/drupal-console/graphs/contributors"
  2689. }
  2690. ],
  2691. "description": "The Drupal CLI. A tool to generate boilerplate code, interact with and debug Drupal.",
  2692. "homepage": "http://drupalconsole.com/",
  2693. "keywords": [
  2694. "console",
  2695. "development",
  2696. "drupal",
  2697. "symfony"
  2698. ],
  2699. "time": "2019-11-11T19:35:01+00:00"
  2700. },
  2701. {
  2702. "name": "drupal/console-core",
  2703. "version": "1.9.4",
  2704. "source": {
  2705. "type": "git",
  2706. "url": "https://github.com/hechoendrupal/drupal-console-core.git",
  2707. "reference": "cc6f50c6ac8199140224347c862df75fd2d2f5ed"
  2708. },
  2709. "dist": {
  2710. "type": "zip",
  2711. "url": "https://api.github.com/repos/hechoendrupal/drupal-console-core/zipball/cc6f50c6ac8199140224347c862df75fd2d2f5ed",
  2712. "reference": "cc6f50c6ac8199140224347c862df75fd2d2f5ed",
  2713. "shasum": ""
  2714. },
  2715. "require": {
  2716. "dflydev/dot-access-configuration": "^1.0",
  2717. "drupal/console-en": "1.9.4",
  2718. "guzzlehttp/guzzle": "~6.1",
  2719. "php": "^5.5.9 || ^7.0",
  2720. "stecman/symfony-console-completion": "~0.7",
  2721. "symfony/config": "~2.8|~3.0",
  2722. "symfony/console": "~2.8|~3.0",
  2723. "symfony/debug": "~2.8|~3.0",
  2724. "symfony/dependency-injection": "~2.8|~3.0",
  2725. "symfony/event-dispatcher": "~2.8|~3.0",
  2726. "symfony/filesystem": "~2.8|~3.0",
  2727. "symfony/finder": "~2.8|~3.0",
  2728. "symfony/process": "~2.8|~3.0",
  2729. "symfony/translation": "~2.8|~3.0",
  2730. "symfony/yaml": "~2.8|~3.0",
  2731. "twig/twig": "^1.23.1",
  2732. "webflo/drupal-finder": "^1.0",
  2733. "webmozart/path-util": "^2.3"
  2734. },
  2735. "type": "library",
  2736. "autoload": {
  2737. "files": [
  2738. "src/functions.php"
  2739. ],
  2740. "psr-4": {
  2741. "Drupal\\Console\\Core\\": "src"
  2742. }
  2743. },
  2744. "notification-url": "https://packagist.org/downloads/",
  2745. "license": [
  2746. "GPL-2.0-or-later"
  2747. ],
  2748. "authors": [
  2749. {
  2750. "name": "David Flores",
  2751. "email": "dmousex@gmail.com",
  2752. "homepage": "http://dmouse.net"
  2753. },
  2754. {
  2755. "name": "Jesus Manuel Olivas",
  2756. "email": "jesus.olivas@gmail.com",
  2757. "homepage": "http://jmolivas.com"
  2758. },
  2759. {
  2760. "name": "Eduardo Garcia",
  2761. "email": "enzo@enzolutions.com",
  2762. "homepage": "http://enzolutions.com/"
  2763. },
  2764. {
  2765. "name": "Omar Aguirre",
  2766. "email": "omersguchigu@gmail.com"
  2767. },
  2768. {
  2769. "name": "Drupal Console Contributors",
  2770. "homepage": "https://github.com/hechoendrupal/DrupalConsole/graphs/contributors"
  2771. }
  2772. ],
  2773. "description": "Drupal Console Core",
  2774. "homepage": "http://drupalconsole.com/",
  2775. "keywords": [
  2776. "console",
  2777. "development",
  2778. "drupal",
  2779. "symfony"
  2780. ],
  2781. "time": "2019-11-11T19:26:28+00:00"
  2782. },
  2783. {
  2784. "name": "drupal/console-en",
  2785. "version": "1.9.4",
  2786. "source": {
  2787. "type": "git",
  2788. "url": "https://github.com/hechoendrupal/drupal-console-en.git",
  2789. "reference": "30813a832fdb1244e84cbcc012cd103d5e9d673d"
  2790. },
  2791. "dist": {
  2792. "type": "zip",
  2793. "url": "https://api.github.com/repos/hechoendrupal/drupal-console-en/zipball/30813a832fdb1244e84cbcc012cd103d5e9d673d",
  2794. "reference": "30813a832fdb1244e84cbcc012cd103d5e9d673d",
  2795. "shasum": ""
  2796. },
  2797. "type": "library",
  2798. "notification-url": "https://packagist.org/downloads/",
  2799. "license": [
  2800. "GPL-2.0-or-later"
  2801. ],
  2802. "authors": [
  2803. {
  2804. "name": "David Flores",
  2805. "email": "dmousex@gmail.com",
  2806. "homepage": "http://dmouse.net"
  2807. },
  2808. {
  2809. "name": "Jesus Manuel Olivas",
  2810. "email": "jesus.olivas@gmail.com",
  2811. "homepage": "http://jmolivas.com"
  2812. },
  2813. {
  2814. "name": "Eduardo Garcia",
  2815. "email": "enzo@enzolutions.com",
  2816. "homepage": "http://enzolutions.com/"
  2817. },
  2818. {
  2819. "name": "Omar Aguirre",
  2820. "email": "omersguchigu@gmail.com"
  2821. },
  2822. {
  2823. "name": "Drupal Console Contributors",
  2824. "homepage": "https://github.com/hechoendrupal/DrupalConsole/graphs/contributors"
  2825. }
  2826. ],
  2827. "description": "Drupal Console English Language",
  2828. "homepage": "http://drupalconsole.com/",
  2829. "keywords": [
  2830. "console",
  2831. "development",
  2832. "drupal",
  2833. "symfony"
  2834. ],
  2835. "time": "2019-10-07T23:45:30+00:00"
  2836. },
  2837. {
  2838. "name": "drupal/console-extend-plugin",
  2839. "version": "0.9.3",
  2840. "source": {
  2841. "type": "git",
  2842. "url": "https://github.com/hechoendrupal/drupal-console-extend-plugin.git",
  2843. "reference": "ad8e52df34b2e78bdacfffecc9fe8edf41843342"
  2844. },
  2845. "dist": {
  2846. "type": "zip",
  2847. "url": "https://api.github.com/repos/hechoendrupal/drupal-console-extend-plugin/zipball/ad8e52df34b2e78bdacfffecc9fe8edf41843342",
  2848. "reference": "ad8e52df34b2e78bdacfffecc9fe8edf41843342",
  2849. "shasum": ""
  2850. },
  2851. "require": {
  2852. "composer-plugin-api": "^1.0",
  2853. "composer/installers": "^1.2",
  2854. "symfony/finder": "~2.7|~3.0",
  2855. "symfony/yaml": "~2.7|~3.0"
  2856. },
  2857. "type": "composer-plugin",
  2858. "extra": {
  2859. "class": "Drupal\\Console\\Composer\\Plugin\\Extender"
  2860. },
  2861. "autoload": {
  2862. "psr-4": {
  2863. "Drupal\\Console\\Composer\\Plugin\\": "src"
  2864. }
  2865. },
  2866. "notification-url": "https://packagist.org/downloads/",
  2867. "license": [
  2868. "GPL-2.0+"
  2869. ],
  2870. "authors": [
  2871. {
  2872. "name": "Jesus Manuel Olivas",
  2873. "email": "jesus.olivas@gmail.com"
  2874. }
  2875. ],
  2876. "description": "Drupal Console Extend Plugin",
  2877. "time": "2019-11-07T20:15:27+00:00"
  2878. },
  2879. {
  2880. "name": "drupal/context",
  2881. "version": "4.0.0-beta2",
  2882. "source": {
  2883. "type": "git",
  2884. "url": "https://git.drupalcode.org/project/context.git",
  2885. "reference": "8.x-4.0-beta2"
  2886. },
  2887. "dist": {
  2888. "type": "zip",
  2889. "url": "https://ftp.drupal.org/files/projects/context-8.x-4.0-beta2.zip",
  2890. "reference": "8.x-4.0-beta2",
  2891. "shasum": "e41bc912e1ec73bc4d08a3cf730dc2405a9213d3"
  2892. },
  2893. "require": {
  2894. "drupal/core": "~8.0"
  2895. },
  2896. "type": "drupal-module",
  2897. "extra": {
  2898. "drupal": {
  2899. "version": "8.x-4.0-beta2",
  2900. "datestamp": "1505378944",
  2901. "security-coverage": {
  2902. "status": "not-covered",
  2903. "message": "Beta releases are not covered by Drupal security advisories."
  2904. }
  2905. }
  2906. },
  2907. "notification-url": "https://packages.drupal.org/8/downloads",
  2908. "license": [
  2909. "MIT"
  2910. ],
  2911. "authors": [
  2912. {
  2913. "name": "Christoffer Palm",
  2914. "homepage": "http://www.oddhill.se/",
  2915. "email": "christoffer.palm@oddhill.se",
  2916. "role": "Developer"
  2917. },
  2918. {
  2919. "name": "NormySan",
  2920. "homepage": "https://www.drupal.org/user/112352"
  2921. },
  2922. {
  2923. "name": "Steven Jones",
  2924. "homepage": "https://www.drupal.org/user/99644"
  2925. },
  2926. {
  2927. "name": "alex_b",
  2928. "homepage": "https://www.drupal.org/user/53995"
  2929. },
  2930. {
  2931. "name": "boshtian",
  2932. "homepage": "https://www.drupal.org/user/1773456"
  2933. },
  2934. {
  2935. "name": "colan",
  2936. "homepage": "https://www.drupal.org/user/58704"
  2937. },
  2938. {
  2939. "name": "emanaton",
  2940. "homepage": "https://www.drupal.org/user/120853"
  2941. },
  2942. {
  2943. "name": "febbraro",
  2944. "homepage": "https://www.drupal.org/user/43670"
  2945. },
  2946. {
  2947. "name": "fizk",
  2948. "homepage": "https://www.drupal.org/user/473174"
  2949. },
  2950. {
  2951. "name": "hass",
  2952. "homepage": "https://www.drupal.org/user/85918"
  2953. },
  2954. {
  2955. "name": "hefox",
  2956. "homepage": "https://www.drupal.org/user/426416"
  2957. },
  2958. {
  2959. "name": "hyrcan",
  2960. "homepage": "https://www.drupal.org/user/26618"
  2961. },
  2962. {
  2963. "name": "jmiccolis",
  2964. "homepage": "https://www.drupal.org/user/31731"
  2965. },
  2966. {
  2967. "name": "nedjo",
  2968. "homepage": "https://www.drupal.org/user/4481"
  2969. },
  2970. {
  2971. "name": "tekante",
  2972. "homepage": "https://www.drupal.org/user/640024"
  2973. },
  2974. {
  2975. "name": "yhahn",
  2976. "homepage": "https://www.drupal.org/user/264833"
  2977. }
  2978. ],
  2979. "description": "Manage contextual conditions and reactions for different portions of your site.",
  2980. "homepage": "https://github.com/oddhill/context",
  2981. "keywords": [
  2982. "Drupal",
  2983. "block",
  2984. "conditions",
  2985. "context",
  2986. "visibility"
  2987. ],
  2988. "support": {
  2989. "source": "https://github.com/oddhill/context",
  2990. "issues": "https://github.com/oddhill/context/issues",
  2991. "docs": "https://github.com/oddhill/context"
  2992. }
  2993. },
  2994. {
  2995. "name": "drupal/core",
  2996. "version": "8.9.16",
  2997. "source": {
  2998. "type": "git",
  2999. "url": "https://github.com/drupal/core.git",
  3000. "reference": "498effa27ae5111f53f04fbe80fd05369a88c53d"
  3001. },
  3002. "dist": {
  3003. "type": "zip",
  3004. "url": "https://api.github.com/repos/drupal/core/zipball/498effa27ae5111f53f04fbe80fd05369a88c53d",
  3005. "reference": "498effa27ae5111f53f04fbe80fd05369a88c53d",
  3006. "shasum": ""
  3007. },
  3008. "require": {
  3009. "asm89/stack-cors": "^1.1",
  3010. "composer/semver": "^1.0",
  3011. "doctrine/annotations": "^1.4",
  3012. "doctrine/common": "^2.7",
  3013. "easyrdf/easyrdf": "^0.9",
  3014. "egulias/email-validator": "^2.0",
  3015. "ext-date": "*",
  3016. "ext-dom": "*",
  3017. "ext-filter": "*",
  3018. "ext-gd": "*",
  3019. "ext-hash": "*",
  3020. "ext-json": "*",
  3021. "ext-pcre": "*",
  3022. "ext-pdo": "*",
  3023. "ext-session": "*",
  3024. "ext-simplexml": "*",
  3025. "ext-spl": "*",
  3026. "ext-tokenizer": "*",
  3027. "ext-xml": "*",
  3028. "guzzlehttp/guzzle": "^6.3",
  3029. "laminas/laminas-diactoros": "^1.8",
  3030. "laminas/laminas-feed": "^2.12",
  3031. "masterminds/html5": "^2.1",
  3032. "pear/archive_tar": "^1.4.12",
  3033. "php": "^7.0.8",
  3034. "psr/log": "^1.0",
  3035. "stack/builder": "^1.0",
  3036. "symfony-cmf/routing": "^1.4",
  3037. "symfony/class-loader": "~3.4.0",
  3038. "symfony/console": "~3.4.0",
  3039. "symfony/dependency-injection": "~3.4.26",
  3040. "symfony/event-dispatcher": "~3.4.0",
  3041. "symfony/http-foundation": "~3.4.35",
  3042. "symfony/http-kernel": "~3.4.14",
  3043. "symfony/polyfill-iconv": "^1.0",
  3044. "symfony/process": "~3.4.0",
  3045. "symfony/psr-http-message-bridge": "^1.1.2",
  3046. "symfony/routing": "~3.4.0",
  3047. "symfony/serializer": "~3.4.0",
  3048. "symfony/translation": "~3.4.0",
  3049. "symfony/validator": "~3.4.0",
  3050. "symfony/yaml": "~3.4.5",
  3051. "twig/twig": "^1.38.2",
  3052. "typo3/phar-stream-wrapper": "^3.1.3"
  3053. },
  3054. "conflict": {
  3055. "drupal/pathauto": "<1.6",
  3056. "drush/drush": "<8.1.10"
  3057. },
  3058. "replace": {
  3059. "drupal/action": "self.version",
  3060. "drupal/aggregator": "self.version",
  3061. "drupal/automated_cron": "self.version",
  3062. "drupal/ban": "self.version",
  3063. "drupal/bartik": "self.version",
  3064. "drupal/basic_auth": "self.version",
  3065. "drupal/big_pipe": "self.version",
  3066. "drupal/block": "self.version",
  3067. "drupal/block_content": "self.version",
  3068. "drupal/block_place": "self.version",
  3069. "drupal/book": "self.version",
  3070. "drupal/breakpoint": "self.version",
  3071. "drupal/ckeditor": "self.version",
  3072. "drupal/claro": "self.version",
  3073. "drupal/classy": "self.version",
  3074. "drupal/color": "self.version",
  3075. "drupal/comment": "self.version",
  3076. "drupal/config": "self.version",
  3077. "drupal/config_translation": "self.version",
  3078. "drupal/contact": "self.version",
  3079. "drupal/content_moderation": "self.version",
  3080. "drupal/content_translation": "self.version",
  3081. "drupal/contextual": "self.version",
  3082. "drupal/core-annotation": "self.version",
  3083. "drupal/core-assertion": "self.version",
  3084. "drupal/core-bridge": "self.version",
  3085. "drupal/core-class-finder": "self.version",
  3086. "drupal/core-datetime": "self.version",
  3087. "drupal/core-dependency-injection": "self.version",
  3088. "drupal/core-diff": "self.version",
  3089. "drupal/core-discovery": "self.version",
  3090. "drupal/core-event-dispatcher": "self.version",
  3091. "drupal/core-file-cache": "self.version",
  3092. "drupal/core-file-security": "self.version",
  3093. "drupal/core-filesystem": "self.version",
  3094. "drupal/core-gettext": "self.version",
  3095. "drupal/core-graph": "self.version",
  3096. "drupal/core-http-foundation": "self.version",
  3097. "drupal/core-php-storage": "self.version",
  3098. "drupal/core-plugin": "self.version",
  3099. "drupal/core-proxy-builder": "self.version",
  3100. "drupal/core-render": "self.version",
  3101. "drupal/core-serialization": "self.version",
  3102. "drupal/core-transliteration": "self.version",
  3103. "drupal/core-utility": "self.version",
  3104. "drupal/core-uuid": "self.version",
  3105. "drupal/core-version": "self.version",
  3106. "drupal/datetime": "self.version",
  3107. "drupal/datetime_range": "self.version",
  3108. "drupal/dblog": "self.version",
  3109. "drupal/dynamic_page_cache": "self.version",
  3110. "drupal/editor": "self.version",
  3111. "drupal/entity_reference": "self.version",
  3112. "drupal/field": "self.version",
  3113. "drupal/field_layout": "self.version",
  3114. "drupal/field_ui": "self.version",
  3115. "drupal/file": "self.version",
  3116. "drupal/filter": "self.version",
  3117. "drupal/forum": "self.version",
  3118. "drupal/hal": "self.version",
  3119. "drupal/help": "self.version",
  3120. "drupal/help_topics": "self.version",
  3121. "drupal/history": "self.version",
  3122. "drupal/image": "self.version",
  3123. "drupal/inline_form_errors": "self.version",
  3124. "drupal/jsonapi": "self.version",
  3125. "drupal/language": "self.version",
  3126. "drupal/layout_builder": "self.version",
  3127. "drupal/layout_discovery": "self.version",
  3128. "drupal/link": "self.version",
  3129. "drupal/locale": "self.version",
  3130. "drupal/media": "self.version",
  3131. "drupal/media_library": "self.version",
  3132. "drupal/menu_link_content": "self.version",
  3133. "drupal/menu_ui": "self.version",
  3134. "drupal/migrate": "self.version",
  3135. "drupal/migrate_drupal": "self.version",
  3136. "drupal/migrate_drupal_multilingual": "self.version",
  3137. "drupal/migrate_drupal_ui": "self.version",
  3138. "drupal/minimal": "self.version",
  3139. "drupal/node": "self.version",
  3140. "drupal/options": "self.version",
  3141. "drupal/page_cache": "self.version",
  3142. "drupal/path": "self.version",
  3143. "drupal/path_alias": "self.version",
  3144. "drupal/quickedit": "self.version",
  3145. "drupal/rdf": "self.version",
  3146. "drupal/responsive_image": "self.version",
  3147. "drupal/rest": "self.version",
  3148. "drupal/search": "self.version",
  3149. "drupal/serialization": "self.version",
  3150. "drupal/settings_tray": "self.version",
  3151. "drupal/seven": "self.version",
  3152. "drupal/shortcut": "self.version",
  3153. "drupal/simpletest": "self.version",
  3154. "drupal/standard": "self.version",
  3155. "drupal/stark": "self.version",
  3156. "drupal/statistics": "self.version",
  3157. "drupal/syslog": "self.version",
  3158. "drupal/system": "self.version",
  3159. "drupal/taxonomy": "self.version",
  3160. "drupal/telephone": "self.version",
  3161. "drupal/text": "self.version",
  3162. "drupal/toolbar": "self.version",
  3163. "drupal/tour": "self.version",
  3164. "drupal/tracker": "self.version",
  3165. "drupal/update": "self.version",
  3166. "drupal/user": "self.version",
  3167. "drupal/views": "self.version",
  3168. "drupal/views_ui": "self.version",
  3169. "drupal/workflows": "self.version",
  3170. "drupal/workspaces": "self.version"
  3171. },
  3172. "type": "drupal-core",
  3173. "extra": {
  3174. "drupal-scaffold": {
  3175. "file-mapping": {
  3176. "[project-root]/.editorconfig": "assets/scaffold/files/editorconfig",
  3177. "[project-root]/.gitattributes": "assets/scaffold/files/gitattributes",
  3178. "[web-root]/.csslintrc": "assets/scaffold/files/csslintrc",
  3179. "[web-root]/.eslintignore": "assets/scaffold/files/eslintignore",
  3180. "[web-root]/.eslintrc.json": "assets/scaffold/files/eslintrc.json",
  3181. "[web-root]/.ht.router.php": "assets/scaffold/files/ht.router.php",
  3182. "[web-root]/.htaccess": "assets/scaffold/files/htaccess",
  3183. "[web-root]/example.gitignore": "assets/scaffold/files/example.gitignore",
  3184. "[web-root]/index.php": "assets/scaffold/files/index.php",
  3185. "[web-root]/INSTALL.txt": "assets/scaffold/files/drupal.INSTALL.txt",
  3186. "[web-root]/README.txt": "assets/scaffold/files/drupal.README.txt",
  3187. "[web-root]/robots.txt": "assets/scaffold/files/robots.txt",
  3188. "[web-root]/update.php": "assets/scaffold/files/update.php",
  3189. "[web-root]/web.config": "assets/scaffold/files/web.config",
  3190. "[web-root]/sites/README.txt": "assets/scaffold/files/sites.README.txt",
  3191. "[web-root]/sites/development.services.yml": "assets/scaffold/files/development.services.yml",
  3192. "[web-root]/sites/example.settings.local.php": "assets/scaffold/files/example.settings.local.php",
  3193. "[web-root]/sites/example.sites.php": "assets/scaffold/files/example.sites.php",
  3194. "[web-root]/sites/default/default.services.yml": "assets/scaffold/files/default.services.yml",
  3195. "[web-root]/sites/default/default.settings.php": "assets/scaffold/files/default.settings.php",
  3196. "[web-root]/modules/README.txt": "assets/scaffold/files/modules.README.txt",
  3197. "[web-root]/profiles/README.txt": "assets/scaffold/files/profiles.README.txt",
  3198. "[web-root]/themes/README.txt": "assets/scaffold/files/themes.README.txt"
  3199. }
  3200. }
  3201. },
  3202. "autoload": {
  3203. "psr-4": {
  3204. "Drupal\\Core\\": "lib/Drupal/Core",
  3205. "Drupal\\Component\\": "lib/Drupal/Component",
  3206. "Drupal\\Driver\\": "../drivers/lib/Drupal/Driver"
  3207. },
  3208. "classmap": [
  3209. "lib/Drupal.php",
  3210. "lib/Drupal/Component/Utility/Timer.php",
  3211. "lib/Drupal/Component/Utility/Unicode.php",
  3212. "lib/Drupal/Core/Database/Database.php",
  3213. "lib/Drupal/Core/DrupalKernel.php",
  3214. "lib/Drupal/Core/DrupalKernelInterface.php",
  3215. "lib/Drupal/Core/Site/Settings.php"
  3216. ]
  3217. },
  3218. "notification-url": "https://packagist.org/downloads/",
  3219. "license": [
  3220. "GPL-2.0-or-later"
  3221. ],
  3222. "description": "Drupal is an open source content management platform powering millions of websites and applications.",
  3223. "time": "2021-05-25T09:17:58+00:00"
  3224. },
  3225. {
  3226. "name": "drupal/core-composer-scaffold",
  3227. "version": "8.9.16",
  3228. "source": {
  3229. "type": "git",
  3230. "url": "https://github.com/drupal/core-composer-scaffold.git",
  3231. "reference": "c902d07cb49ef73777e2b33a39e54c2861a8c81d"
  3232. },
  3233. "dist": {
  3234. "type": "zip",
  3235. "url": "https://api.github.com/repos/drupal/core-composer-scaffold/zipball/c902d07cb49ef73777e2b33a39e54c2861a8c81d",
  3236. "reference": "c902d07cb49ef73777e2b33a39e54c2861a8c81d",
  3237. "shasum": ""
  3238. },
  3239. "require": {
  3240. "composer-plugin-api": "^1 || ^2",
  3241. "php": ">=7.0.8"
  3242. },
  3243. "conflict": {
  3244. "drupal-composer/drupal-scaffold": "*"
  3245. },
  3246. "require-dev": {
  3247. "composer/composer": "^1.8@stable"
  3248. },
  3249. "type": "composer-plugin",
  3250. "extra": {
  3251. "class": "Drupal\\Composer\\Plugin\\Scaffold\\Plugin",
  3252. "branch-alias": {
  3253. "dev-master": "1.0.x-dev"
  3254. }
  3255. },
  3256. "autoload": {
  3257. "psr-4": {
  3258. "Drupal\\Composer\\Plugin\\Scaffold\\": ""
  3259. }
  3260. },
  3261. "notification-url": "https://packagist.org/downloads/",
  3262. "license": [
  3263. "GPL-2.0-or-later"
  3264. ],
  3265. "description": "A flexible Composer project scaffold builder.",
  3266. "homepage": "https://www.drupal.org/project/drupal",
  3267. "keywords": [
  3268. "drupal"
  3269. ],
  3270. "time": "2020-08-07T22:30:30+00:00"
  3271. },
  3272. {
  3273. "name": "drupal/core-recommended",
  3274. "version": "8.9.16",
  3275. "source": {
  3276. "type": "git",
  3277. "url": "https://github.com/drupal/core-recommended.git",
  3278. "reference": "ec38f5cb75ca1848f2247a645d4a4dee4abe4c28"
  3279. },
  3280. "dist": {
  3281. "type": "zip",
  3282. "url": "https://api.github.com/repos/drupal/core-recommended/zipball/ec38f5cb75ca1848f2247a645d4a4dee4abe4c28",
  3283. "reference": "ec38f5cb75ca1848f2247a645d4a4dee4abe4c28",
  3284. "shasum": ""
  3285. },
  3286. "require": {
  3287. "asm89/stack-cors": "1.3.0",
  3288. "composer/semver": "1.5.1",
  3289. "doctrine/annotations": "v1.4.0",
  3290. "doctrine/cache": "v1.6.2",
  3291. "doctrine/collections": "v1.4.0",
  3292. "doctrine/common": "v2.7.3",
  3293. "doctrine/inflector": "v1.2.0",
  3294. "doctrine/lexer": "1.0.2",
  3295. "drupal/core": "8.9.16",
  3296. "easyrdf/easyrdf": "0.9.1",
  3297. "egulias/email-validator": "2.1.17",
  3298. "guzzlehttp/guzzle": "6.5.4",
  3299. "guzzlehttp/promises": "v1.3.1",
  3300. "guzzlehttp/psr7": "1.6.1",
  3301. "laminas/laminas-diactoros": "1.8.7p2",
  3302. "laminas/laminas-escaper": "2.6.1",
  3303. "laminas/laminas-feed": "2.12.2",
  3304. "laminas/laminas-stdlib": "3.2.1",
  3305. "laminas/laminas-zendframework-bridge": "1.0.4",
  3306. "masterminds/html5": "2.3.0",
  3307. "paragonie/random_compat": "v9.99.99",
  3308. "pear/archive_tar": "1.4.13",
  3309. "pear/console_getopt": "v1.4.3",
  3310. "pear/pear-core-minimal": "v1.10.10",
  3311. "pear/pear_exception": "v1.0.1",
  3312. "psr/container": "1.0.0",
  3313. "psr/http-message": "1.0.1",
  3314. "psr/log": "1.1.3",
  3315. "ralouphie/getallheaders": "3.0.3",
  3316. "stack/builder": "v1.0.5",
  3317. "symfony-cmf/routing": "1.4.1",
  3318. "symfony/class-loader": "v3.4.41",
  3319. "symfony/console": "v3.4.41",
  3320. "symfony/debug": "v3.4.41",
  3321. "symfony/dependency-injection": "v3.4.41",
  3322. "symfony/event-dispatcher": "v3.4.41",
  3323. "symfony/http-foundation": "v3.4.41",
  3324. "symfony/http-kernel": "v3.4.44",
  3325. "symfony/polyfill-ctype": "v1.17.0",
  3326. "symfony/polyfill-iconv": "v1.17.0",
  3327. "symfony/polyfill-intl-idn": "v1.17.0",
  3328. "symfony/polyfill-mbstring": "v1.17.0",
  3329. "symfony/polyfill-php56": "v1.17.0",
  3330. "symfony/polyfill-php70": "v1.17.0",
  3331. "symfony/polyfill-php72": "v1.17.0",
  3332. "symfony/polyfill-util": "v1.17.0",
  3333. "symfony/process": "v3.4.41",
  3334. "symfony/psr-http-message-bridge": "v1.1.2",
  3335. "symfony/routing": "v3.4.41",
  3336. "symfony/serializer": "v3.4.41",
  3337. "symfony/translation": "v3.4.41",
  3338. "symfony/validator": "v3.4.41",
  3339. "symfony/yaml": "v3.4.41",
  3340. "twig/twig": "v1.42.5",
  3341. "typo3/phar-stream-wrapper": "v3.1.4"
  3342. },
  3343. "conflict": {
  3344. "webflo/drupal-core-strict": "*"
  3345. },
  3346. "type": "metapackage",
  3347. "notification-url": "https://packagist.org/downloads/",
  3348. "license": [
  3349. "GPL-2.0-or-later"
  3350. ],
  3351. "description": "Locked core dependencies; require this project INSTEAD OF drupal/core.",
  3352. "time": "2021-05-25T09:17:58+00:00"
  3353. },
  3354. {
  3355. "name": "drupal/ctools",
  3356. "version": "3.4.0",
  3357. "source": {
  3358. "type": "git",
  3359. "url": "https://git.drupalcode.org/project/ctools.git",
  3360. "reference": "8.x-3.4"
  3361. },
  3362. "dist": {
  3363. "type": "zip",
  3364. "url": "https://ftp.drupal.org/files/projects/ctools-8.x-3.4.zip",
  3365. "reference": "8.x-3.4",
  3366. "shasum": "016ca5abb7ac4ca720352a72e8989f3ef0e20539"
  3367. },
  3368. "require": {
  3369. "drupal/core": "^8.7.7 || ^9"
  3370. },
  3371. "type": "drupal-module",
  3372. "extra": {
  3373. "drupal": {
  3374. "version": "8.x-3.4",
  3375. "datestamp": "1585763383",
  3376. "security-coverage": {
  3377. "status": "covered",
  3378. "message": "Covered by Drupal's security advisory policy"
  3379. }
  3380. }
  3381. },
  3382. "notification-url": "https://packages.drupal.org/8/downloads",
  3383. "license": [
  3384. "GPL-2.0+"
  3385. ],
  3386. "authors": [
  3387. {
  3388. "name": "Kris Vanderwater (EclipseGc)",
  3389. "homepage": "https://www.drupal.org/u/eclipsegc",
  3390. "role": "Maintainer"
  3391. },
  3392. {
  3393. "name": "Jakob Perry (japerry)",
  3394. "homepage": "https://www.drupal.org/u/japerry",
  3395. "role": "Maintainer"
  3396. },
  3397. {
  3398. "name": "Tim Plunkett (tim.plunkett)",
  3399. "homepage": "https://www.drupal.org/u/timplunkett",
  3400. "role": "Maintainer"
  3401. },
  3402. {
  3403. "name": "James Gilliland (neclimdul)",
  3404. "homepage": "https://www.drupal.org/u/neclimdul",
  3405. "role": "Maintainer"
  3406. },
  3407. {
  3408. "name": "Daniel Wehner (dawehner)",
  3409. "homepage": "https://www.drupal.org/u/dawehner",
  3410. "role": "Maintainer"
  3411. },
  3412. {
  3413. "name": "joelpittet",
  3414. "homepage": "https://www.drupal.org/user/160302"
  3415. },
  3416. {
  3417. "name": "merlinofchaos",
  3418. "homepage": "https://www.drupal.org/user/26979"
  3419. },
  3420. {
  3421. "name": "neclimdul",
  3422. "homepage": "https://www.drupal.org/user/48673"
  3423. },
  3424. {
  3425. "name": "sdboyer",
  3426. "homepage": "https://www.drupal.org/user/146719"
  3427. },
  3428. {
  3429. "name": "sun",
  3430. "homepage": "https://www.drupal.org/user/54136"
  3431. },
  3432. {
  3433. "name": "tim.plunkett",
  3434. "homepage": "https://www.drupal.org/user/241634"
  3435. }
  3436. ],
  3437. "description": "Provides a number of utility and helper APIs for Drupal developers and site builders.",
  3438. "homepage": "https://www.drupal.org/project/ctools",
  3439. "support": {
  3440. "source": "https://git.drupalcode.org/project/ctools",
  3441. "issues": "https://www.drupal.org/project/issues/ctools"
  3442. }
  3443. },
  3444. {
  3445. "name": "drupal/date_range_formatter",
  3446. "version": "3.1.0",
  3447. "source": {
  3448. "type": "git",
  3449. "url": "https://git.drupalcode.org/project/date_range_formatter.git",
  3450. "reference": "8.x-3.1"
  3451. },
  3452. "dist": {
  3453. "type": "zip",
  3454. "url": "https://ftp.drupal.org/files/projects/date_range_formatter-8.x-3.1.zip",
  3455. "reference": "8.x-3.1",
  3456. "shasum": "a98c511ac90eb92879235bc82a3aa643f7b5c173"
  3457. },
  3458. "require": {
  3459. "drupal/core": "*"
  3460. },
  3461. "type": "drupal-module",
  3462. "extra": {
  3463. "drupal": {
  3464. "version": "8.x-3.1",
  3465. "datestamp": "1502454544",
  3466. "security-coverage": {
  3467. "status": "covered",
  3468. "message": "Covered by Drupal's security advisory policy"
  3469. }
  3470. }
  3471. },
  3472. "notification-url": "https://packages.drupal.org/8/downloads",
  3473. "license": [
  3474. "GPL-2.0-or-later"
  3475. ],
  3476. "authors": [
  3477. {
  3478. "name": "maximpodorov",
  3479. "homepage": "https://www.drupal.org/user/515310"
  3480. },
  3481. {
  3482. "name": "sudishth",
  3483. "homepage": "https://www.drupal.org/user/1440562"
  3484. }
  3485. ],
  3486. "description": "Formats date ranges.",
  3487. "homepage": "https://www.drupal.org/project/date_range_formatter",
  3488. "support": {
  3489. "source": "https://git.drupalcode.org/project/date_range_formatter"
  3490. }
  3491. },
  3492. {
  3493. "name": "drupal/devel",
  3494. "version": "2.1.0",
  3495. "source": {
  3496. "type": "git",
  3497. "url": "https://git.drupalcode.org/project/devel.git",
  3498. "reference": "8.x-2.1"
  3499. },
  3500. "dist": {
  3501. "type": "zip",
  3502. "url": "https://ftp.drupal.org/files/projects/devel-8.x-2.1.zip",
  3503. "reference": "8.x-2.1",
  3504. "shasum": "8f735892922aa5f228e681e645e5f02b1c008f14"
  3505. },
  3506. "require": {
  3507. "drupal/core": "~8.0",
  3508. "symfony/var-dumper": "~2.7|^3|^4"
  3509. },
  3510. "type": "drupal-module",
  3511. "extra": {
  3512. "drupal": {
  3513. "version": "8.x-2.1",
  3514. "datestamp": "1556799496",
  3515. "security-coverage": {
  3516. "status": "covered",
  3517. "message": "Covered by Drupal's security advisory policy"
  3518. }
  3519. },
  3520. "drush": {
  3521. "services": {
  3522. "drush.services.yml": "^9"
  3523. }
  3524. }
  3525. },
  3526. "notification-url": "https://packages.drupal.org/8/downloads",
  3527. "license": [
  3528. "GPL-2.0+"
  3529. ],
  3530. "authors": [
  3531. {
  3532. "name": "Moshe Weitzman",
  3533. "homepage": "https://github.com/weitzman",
  3534. "email": "weitzman@tejasa.com",
  3535. "role": "Maintainer"
  3536. },
  3537. {
  3538. "name": "Hans Salvisberg",
  3539. "homepage": "https://www.drupal.org/u/salvis",
  3540. "email": "drupal@salvisberg.com",
  3541. "role": "Maintainer"
  3542. },
  3543. {
  3544. "name": "Luca Lusso",
  3545. "homepage": "https://www.drupal.org/u/lussoluca",
  3546. "role": "Maintainer"
  3547. },
  3548. {
  3549. "name": "Marco (willzyx)",
  3550. "homepage": "https://www.drupal.org/u/willzyx",
  3551. "role": "Maintainer"
  3552. },
  3553. {
  3554. "name": "See contributors",
  3555. "homepage": "https://www.drupal.org/node/3236/committers"
  3556. }
  3557. ],
  3558. "description": "Various blocks, pages, and functions for developers.",
  3559. "homepage": "http://drupal.org/project/devel",
  3560. "support": {
  3561. "source": "http://cgit.drupalcode.org/devel",
  3562. "issues": "http://drupal.org/project/devel",
  3563. "irc": "irc://irc.freenode.org/drupal-contribute"
  3564. }
  3565. },
  3566. {
  3567. "name": "drupal/domain",
  3568. "version": "1.0.0-alpha16",
  3569. "source": {
  3570. "type": "git",
  3571. "url": "https://git.drupalcode.org/project/domain.git",
  3572. "reference": "8.x-1.0-alpha16"
  3573. },
  3574. "dist": {
  3575. "type": "zip",
  3576. "url": "https://ftp.drupal.org/files/projects/domain-8.x-1.0-alpha16.zip",
  3577. "reference": "8.x-1.0-alpha16",
  3578. "shasum": "d0088936af09e922ec873080d7960a1dc020bef8"
  3579. },
  3580. "require": {
  3581. "drupal/core": "^8.5"
  3582. },
  3583. "require-dev": {
  3584. "drupal/domain_access": "*"
  3585. },
  3586. "type": "drupal-module",
  3587. "extra": {
  3588. "drupal": {
  3589. "version": "8.x-1.0-alpha16",
  3590. "datestamp": "1561126081",
  3591. "security-coverage": {
  3592. "status": "not-covered",
  3593. "message": "Alpha releases are not covered by Drupal security advisories."
  3594. }
  3595. }
  3596. },
  3597. "notification-url": "https://packages.drupal.org/8/downloads",
  3598. "license": [
  3599. "GPL-2.0-or-later"
  3600. ],
  3601. "authors": [
  3602. {
  3603. "name": "agentrickard",
  3604. "homepage": "https://www.drupal.org/user/20975"
  3605. },
  3606. {
  3607. "name": "nonsie",
  3608. "homepage": "https://www.drupal.org/user/29899"
  3609. }
  3610. ],
  3611. "description": "Creates domain records within a Drupal installation.",
  3612. "homepage": "https://www.drupal.org/project/domain",
  3613. "support": {
  3614. "source": "https://git.drupalcode.org/project/domain"
  3615. }
  3616. },
  3617. {
  3618. "name": "drupal/domain_access",
  3619. "version": "1.0.0-alpha16",
  3620. "require": {
  3621. "drupal/core": "*",
  3622. "drupal/domain": "self.version"
  3623. },
  3624. "type": "metapackage",
  3625. "extra": {
  3626. "drupal": {
  3627. "version": "8.x-1.0-alpha16",
  3628. "datestamp": "1561126081",
  3629. "security-coverage": {
  3630. "status": "not-covered",
  3631. "message": "Alpha releases are not covered by Drupal security advisories."
  3632. }
  3633. }
  3634. },
  3635. "notification-url": "https://packages.drupal.org/8/downloads",
  3636. "license": [
  3637. "GPL-2.0-or-later"
  3638. ],
  3639. "authors": [
  3640. {
  3641. "name": "agentrickard",
  3642. "homepage": "https://www.drupal.org/user/20975"
  3643. },
  3644. {
  3645. "name": "nonsie",
  3646. "homepage": "https://www.drupal.org/user/29899"
  3647. }
  3648. ],
  3649. "description": "Domain-based access control for content.",
  3650. "homepage": "https://www.drupal.org/project/domain",
  3651. "support": {
  3652. "source": "https://git.drupalcode.org/project/domain"
  3653. }
  3654. },
  3655. {
  3656. "name": "drupal/domain_config",
  3657. "version": "1.0.0-alpha16",
  3658. "require": {
  3659. "drupal/core": "~8.0",
  3660. "drupal/domain": "self.version"
  3661. },
  3662. "type": "metapackage",
  3663. "extra": {
  3664. "drupal": {
  3665. "version": "8.x-1.0-alpha16",
  3666. "datestamp": "1561126081",
  3667. "security-coverage": {
  3668. "status": "not-covered",
  3669. "message": "Alpha releases are not covered by Drupal security advisories."
  3670. }
  3671. }
  3672. },
  3673. "notification-url": "https://packages.drupal.org/8/downloads",
  3674. "license": [
  3675. "GPL-2.0-or-later"
  3676. ],
  3677. "authors": [
  3678. {
  3679. "name": "agentrickard",
  3680. "homepage": "https://www.drupal.org/user/20975"
  3681. },
  3682. {
  3683. "name": "nonsie",
  3684. "homepage": "https://www.drupal.org/user/29899"
  3685. }
  3686. ],
  3687. "description": "Allows domain specific configuration.",
  3688. "homepage": "https://www.drupal.org/project/domain",
  3689. "support": {
  3690. "source": "https://git.drupalcode.org/project/domain"
  3691. }
  3692. },
  3693. {
  3694. "name": "drupal/domain_menu_access",
  3695. "version": "dev-1.x",
  3696. "source": {
  3697. "type": "git",
  3698. "url": "https://git.drupalcode.org/project/domain_menu_access.git",
  3699. "reference": "cd62e57ec09be4eca491e18e50092e10c19750f2"
  3700. },
  3701. "require": {
  3702. "drupal/core": "~8.0",
  3703. "drupal/domain": "^1",
  3704. "drupal/domain_access": "^1"
  3705. },
  3706. "type": "drupal-module",
  3707. "extra": {
  3708. "branch-alias": {
  3709. "dev-1.x": "1.x-dev"
  3710. },
  3711. "drupal": {
  3712. "version": "8.x-1.0-alpha2+3-dev",
  3713. "datestamp": "1551553085",
  3714. "security-coverage": {
  3715. "status": "not-covered",
  3716. "message": "Dev releases are not covered by Drupal security advisories."
  3717. }
  3718. }
  3719. },
  3720. "notification-url": "https://packages.drupal.org/8/downloads",
  3721. "license": [
  3722. "GPL-2.0+"
  3723. ],
  3724. "authors": [
  3725. {
  3726. "name": "Sebastien @Actualys",
  3727. "homepage": "https://www.drupal.org/user/380104"
  3728. },
  3729. {
  3730. "name": "maciej.zgadzaj",
  3731. "homepage": "https://www.drupal.org/user/271491"
  3732. },
  3733. {
  3734. "name": "pifagor",
  3735. "homepage": "https://www.drupal.org/user/2375692"
  3736. }
  3737. ],
  3738. "description": "Domain-based access control for menu link.",
  3739. "homepage": "https://www.drupal.org/project/domain_menu_access",
  3740. "support": {
  3741. "source": "https://git.drupalcode.org/project/domain_menu_access"
  3742. },
  3743. "time": "2019-04-11T06:07:16+00:00"
  3744. },
  3745. {
  3746. "name": "drupal/domain_site_settings",
  3747. "version": "1.3.0",
  3748. "source": {
  3749. "type": "git",
  3750. "url": "https://git.drupalcode.org/project/domain_site_settings.git",
  3751. "reference": "8.x-1.3"
  3752. },
  3753. "dist": {
  3754. "type": "zip",
  3755. "url": "https://ftp.drupal.org/files/projects/domain_site_settings-8.x-1.3.zip",
  3756. "reference": "8.x-1.3",
  3757. "shasum": "36ad22d8e31400f372b9e7f587578061b4fdc5db"
  3758. },
  3759. "require": {
  3760. "drupal/core": "~8.0",
  3761. "drupal/domain": "*",
  3762. "drupal/domain_config": "*"
  3763. },
  3764. "type": "drupal-module",
  3765. "extra": {
  3766. "branch-alias": {
  3767. "dev-1.x": "1.x-dev"
  3768. },
  3769. "drupal": {
  3770. "version": "8.x-1.3",
  3771. "datestamp": "1537684980",
  3772. "security-coverage": {
  3773. "status": "covered",
  3774. "message": "Covered by Drupal's security advisory policy"
  3775. }
  3776. },
  3777. "patches_applied": {
  3778. "Circular Error or Conflict with Language_Manager": "https://www.drupal.org/files/issues/2018-10-09/2930391-21.patch"
  3779. }
  3780. },
  3781. "notification-url": "https://packages.drupal.org/8/downloads",
  3782. "license": [
  3783. "GPL-2.0+"
  3784. ],
  3785. "authors": [
  3786. {
  3787. "name": "aloknarwaria",
  3788. "homepage": "https://www.drupal.org/user/906640"
  3789. },
  3790. {
  3791. "name": "malaynayak",
  3792. "homepage": "https://www.drupal.org/user/3529755"
  3793. }
  3794. ],
  3795. "description": "Basic Site Setting for Domains.",
  3796. "homepage": "https://www.drupal.org/project/domain_site_settings",
  3797. "keywords": [
  3798. "Drupal"
  3799. ],
  3800. "support": {
  3801. "source": "http://cgit.drupalcode.org/domain_site_settings",
  3802. "issues": "https://www.drupal.org/project/issues/domain_site_settings"
  3803. }
  3804. },
  3805. {
  3806. "name": "drupal/email_registration",
  3807. "version": "1.1.0",
  3808. "source": {
  3809. "type": "git",
  3810. "url": "https://git.drupalcode.org/project/email_registration.git",
  3811. "reference": "8.x-1.1"
  3812. },
  3813. "dist": {
  3814. "type": "zip",
  3815. "url": "https://ftp.drupal.org/files/projects/email_registration-8.x-1.1.zip",
  3816. "reference": "8.x-1.1",
  3817. "shasum": "cc0eef597216a6d025d9017df104f2693b029f96"
  3818. },
  3819. "require": {
  3820. "drupal/core": "^8.7.7 || ^9"
  3821. },
  3822. "conflict": {
  3823. "drupal/commerce": "<2.12"
  3824. },
  3825. "require-dev": {
  3826. "drupal/commerce": "^2.0"
  3827. },
  3828. "type": "drupal-module",
  3829. "extra": {
  3830. "drupal": {
  3831. "version": "8.x-1.1",
  3832. "datestamp": "1592317072",
  3833. "security-coverage": {
  3834. "status": "covered",
  3835. "message": "Covered by Drupal's security advisory policy"
  3836. }
  3837. }
  3838. },
  3839. "notification-url": "https://packages.drupal.org/8/downloads",
  3840. "license": [
  3841. "GPL-2.0-or-later"
  3842. ],
  3843. "authors": [
  3844. {
  3845. "name": "Greg Knaddison (greggles)",
  3846. "homepage": "https://www.drupal.org/u/greggles",
  3847. "role": "Maintainer"
  3848. },
  3849. {
  3850. "name": "Andrey Postnikov (andypost)",
  3851. "homepage": "https://www.drupal.org/u/andypost",
  3852. "role": "Maintainer"
  3853. },
  3854. {
  3855. "name": "Chris Herberte",
  3856. "homepage": "https://www.drupal.org/u/chris-herberte",
  3857. "role": "Maintainer"
  3858. },
  3859. {
  3860. "name": "Moshe Weitzman (moshe weitzman)",
  3861. "homepage": "https://www.drupal.org/u/moshe-weitzman",
  3862. "role": "Maintainer"
  3863. }
  3864. ],
  3865. "description": "Allows users to register with an email address as their username.",
  3866. "homepage": "https://www.drupal.org/project/email_registration",
  3867. "support": {
  3868. "source": "https://git.drupalcode.org/project/email_registration",
  3869. "issues": "http://drupal.org/project/issues/email_registration"
  3870. }
  3871. },
  3872. {
  3873. "name": "drupal/entity",
  3874. "version": "dev-1.x",
  3875. "source": {
  3876. "type": "git",
  3877. "url": "https://git.drupalcode.org/project/entity.git",
  3878. "reference": "3d3a99924df1b65564a417e74802bb524691dfd8"
  3879. },
  3880. "require": {
  3881. "drupal/core": "^8.8 || ^9"
  3882. },
  3883. "type": "drupal-module",
  3884. "extra": {
  3885. "branch-alias": {
  3886. "dev-1.x": "1.x-dev"
  3887. },
  3888. "drupal": {
  3889. "version": "8.x-1.0+5-dev",
  3890. "datestamp": "1594294834",
  3891. "security-coverage": {
  3892. "status": "not-covered",
  3893. "message": "Dev releases are not covered by Drupal security advisories."
  3894. }
  3895. }
  3896. },
  3897. "notification-url": "https://packages.drupal.org/8/downloads",
  3898. "license": [
  3899. "GPL-2.0-or-later"
  3900. ],
  3901. "authors": [
  3902. {
  3903. "name": "Berdir",
  3904. "homepage": "https://www.drupal.org/user/214652"
  3905. },
  3906. {
  3907. "name": "bojanz",
  3908. "homepage": "https://www.drupal.org/user/86106"
  3909. },
  3910. {
  3911. "name": "dawehner",
  3912. "homepage": "https://www.drupal.org/user/99340"
  3913. },
  3914. {
  3915. "name": "dixon_",
  3916. "homepage": "https://www.drupal.org/user/239911"
  3917. },
  3918. {
  3919. "name": "fago",
  3920. "homepage": "https://www.drupal.org/user/16747"
  3921. },
  3922. {
  3923. "name": "mglaman",
  3924. "homepage": "https://www.drupal.org/user/2416470"
  3925. }
  3926. ],
  3927. "description": "Provides expanded entity APIs, which will be moved to Drupal core one day.",
  3928. "homepage": "http://drupal.org/project/entity",
  3929. "support": {
  3930. "source": "https://git.drupalcode.org/project/entity"
  3931. },
  3932. "time": "2020-08-08T09:14:05+00:00"
  3933. },
  3934. {
  3935. "name": "drupal/features",
  3936. "version": "3.11.0",
  3937. "source": {
  3938. "type": "git",
  3939. "url": "https://git.drupalcode.org/project/features.git",
  3940. "reference": "8.x-3.11"
  3941. },
  3942. "dist": {
  3943. "type": "zip",
  3944. "url": "https://ftp.drupal.org/files/projects/features-8.x-3.11.zip",
  3945. "reference": "8.x-3.11",
  3946. "shasum": "cfdb1de2fb791856069c50b63eb28cb8d7c93442"
  3947. },
  3948. "require": {
  3949. "drupal/config_update": "^1.4",
  3950. "drupal/core": "^8.8 || ^9"
  3951. },
  3952. "type": "drupal-module",
  3953. "extra": {
  3954. "drupal": {
  3955. "version": "8.x-3.11",
  3956. "datestamp": "1591023154",
  3957. "security-coverage": {
  3958. "status": "covered",
  3959. "message": "Covered by Drupal's security advisory policy"
  3960. }
  3961. },
  3962. "drush": {
  3963. "services": {
  3964. "drush.services.yml": "^9"
  3965. }
  3966. }
  3967. },
  3968. "notification-url": "https://packages.drupal.org/8/downloads",
  3969. "license": [
  3970. "GPL-2.0-or-later"
  3971. ],
  3972. "authors": [
  3973. {
  3974. "name": "dawehner",
  3975. "homepage": "https://www.drupal.org/user/99340"
  3976. },
  3977. {
  3978. "name": "donquixote",
  3979. "homepage": "https://www.drupal.org/user/459338"
  3980. },
  3981. {
  3982. "name": "e2thex",
  3983. "homepage": "https://www.drupal.org/user/189123"
  3984. },
  3985. {
  3986. "name": "febbraro",
  3987. "homepage": "https://www.drupal.org/user/43670"
  3988. },
  3989. {
  3990. "name": "flocondetoile",
  3991. "homepage": "https://www.drupal.org/user/2006064"
  3992. },
  3993. {
  3994. "name": "jmiccolis",
  3995. "homepage": "https://www.drupal.org/user/31731"
  3996. },
  3997. {
  3998. "name": "joseph.olstad",
  3999. "homepage": "https://www.drupal.org/user/1321830"
  4000. },
  4001. {
  4002. "name": "mpotter",
  4003. "homepage": "https://www.drupal.org/user/616192"
  4004. },
  4005. {
  4006. "name": "nedjo",
  4007. "homepage": "https://www.drupal.org/user/4481"
  4008. },
  4009. {
  4010. "name": "tim.plunkett",
  4011. "homepage": "https://www.drupal.org/user/241634"
  4012. }
  4013. ],
  4014. "description": "Enables administrators to package configuration into modules",
  4015. "homepage": "https://www.drupal.org/project/features",
  4016. "support": {
  4017. "source": "https://git.drupalcode.org/project/features"
  4018. }
  4019. },
  4020. {
  4021. "name": "drupal/field_group",
  4022. "version": "3.1.0",
  4023. "source": {
  4024. "type": "git",
  4025. "url": "https://git.drupalcode.org/project/field_group.git",
  4026. "reference": "8.x-3.1"
  4027. },
  4028. "dist": {
  4029. "type": "zip",
  4030. "url": "https://ftp.drupal.org/files/projects/field_group-8.x-3.1.zip",
  4031. "reference": "8.x-3.1",
  4032. "shasum": "8a719eaea594f0ba874172831cb28da93c66b77a"
  4033. },
  4034. "require": {
  4035. "drupal/core": "^8.8 || ^9"
  4036. },
  4037. "require-dev": {
  4038. "drupal/jquery_ui_accordion": "^1.0"
  4039. },
  4040. "type": "drupal-module",
  4041. "extra": {
  4042. "drupal": {
  4043. "version": "8.x-3.1",
  4044. "datestamp": "1591772567",
  4045. "security-coverage": {
  4046. "status": "covered",
  4047. "message": "Covered by Drupal's security advisory policy"
  4048. }
  4049. }
  4050. },
  4051. "notification-url": "https://packages.drupal.org/8/downloads",
  4052. "license": [
  4053. "GPL-2.0-or-later"
  4054. ],
  4055. "authors": [
  4056. {
  4057. "name": "Hydra",
  4058. "homepage": "https://www.drupal.org/user/647364"
  4059. },
  4060. {
  4061. "name": "Stalski",
  4062. "homepage": "https://www.drupal.org/user/322618"
  4063. },
  4064. {
  4065. "name": "jyve",
  4066. "homepage": "https://www.drupal.org/user/591438"
  4067. },
  4068. {
  4069. "name": "nils.destoop",
  4070. "homepage": "https://www.drupal.org/user/361625"
  4071. },
  4072. {
  4073. "name": "swentel",
  4074. "homepage": "https://www.drupal.org/user/107403"
  4075. }
  4076. ],
  4077. "description": "Provides the field_group module.",
  4078. "homepage": "https://www.drupal.org/project/field_group",
  4079. "support": {
  4080. "source": "https://git.drupalcode.org/project/field_group",
  4081. "issues": "https://www.drupal.org/project/issues/field_group"
  4082. }
  4083. },
  4084. {
  4085. "name": "drupal/filefield_sources",
  4086. "version": "dev-1.x",
  4087. "source": {
  4088. "type": "git",
  4089. "url": "https://git.drupalcode.org/project/filefield_sources.git",
  4090. "reference": "38dfa6622a8876854887feefd3c348583ef0586f"
  4091. },
  4092. "require": {
  4093. "drupal/core": "*"
  4094. },
  4095. "require-dev": {
  4096. "drupal/imce": "*"
  4097. },
  4098. "type": "drupal-module",
  4099. "extra": {
  4100. "branch-alias": {
  4101. "dev-1.x": "1.x-dev"
  4102. },
  4103. "drupal": {
  4104. "version": "8.x-1.0-alpha2+2-dev",
  4105. "datestamp": "1579885386",
  4106. "security-coverage": {
  4107. "status": "not-covered",
  4108. "message": "Dev releases are not covered by Drupal security advisories."
  4109. }
  4110. }
  4111. },
  4112. "notification-url": "https://packages.drupal.org/8/downloads",
  4113. "license": [
  4114. "GPL-2.0-or-later"
  4115. ],
  4116. "authors": [
  4117. {
  4118. "name": "Nate Lampton (quicksketch)",
  4119. "homepage": "https://www.drupal.org/u/quicksketch",
  4120. "role": "Maintainer"
  4121. },
  4122. {
  4123. "name": "Andrey Khromyshev (profak)",
  4124. "homepage": "https://www.drupal.org/u/profak",
  4125. "role": "Maintainer"
  4126. },
  4127. {
  4128. "name": "David Valdez (gnuget)",
  4129. "homepage": "https://www.drupal.org/u/gnuget",
  4130. "role": "Maintainer"
  4131. }
  4132. ],
  4133. "description": "Extends File fields to allow referencing of existing files, remote files, and server files.",
  4134. "homepage": "https://www.drupal.org/project/filefield_sources",
  4135. "support": {
  4136. "source": "https://git.drupalcode.org/project/filefield_sources",
  4137. "issues": "https://www.drupal.org/project/issues/filefield_sources",
  4138. "irc": "irc://irc.freenode.org/drupal-contribute"
  4139. },
  4140. "time": "2020-01-30T15:32:54+00:00"
  4141. },
  4142. {
  4143. "name": "drupal/filter_perms",
  4144. "version": "dev-1.x",
  4145. "source": {
  4146. "type": "git",
  4147. "url": "https://git.drupalcode.org/project/filter_perms.git",
  4148. "reference": "f491dd73fd876f6de0b2252c6b9bf18e0e27b357"
  4149. },
  4150. "require": {
  4151. "drupal/core": "*"
  4152. },
  4153. "type": "drupal-module",
  4154. "extra": {
  4155. "branch-alias": {
  4156. "dev-1.x": "1.x-dev"
  4157. },
  4158. "drupal": {
  4159. "version": "8.x-1.x-dev",
  4160. "datestamp": "1469645939",
  4161. "security-coverage": {
  4162. "status": "not-covered",
  4163. "message": "Dev releases are not covered by Drupal security advisories."
  4164. }
  4165. }
  4166. },
  4167. "notification-url": "https://packages.drupal.org/8/downloads",
  4168. "license": [
  4169. "GPL-2.0-or-later"
  4170. ],
  4171. "authors": [
  4172. {
  4173. "name": "cYu",
  4174. "homepage": "https://www.drupal.org/user/202205"
  4175. },
  4176. {
  4177. "name": "deekayen",
  4178. "homepage": "https://www.drupal.org/user/972"
  4179. },
  4180. {
  4181. "name": "willzyx",
  4182. "homepage": "https://www.drupal.org/user/1043862"
  4183. }
  4184. ],
  4185. "description": "Provides role and module filters to simplify the user permissions page.",
  4186. "homepage": "https://www.drupal.org/project/filter_perms",
  4187. "support": {
  4188. "source": "https://git.drupalcode.org/project/filter_perms"
  4189. },
  4190. "time": "2016-07-27T19:01:11+00:00"
  4191. },
  4192. {
  4193. "name": "drupal/honeypot",
  4194. "version": "1.30.0",
  4195. "source": {
  4196. "type": "git",
  4197. "url": "https://git.drupalcode.org/project/honeypot.git",
  4198. "reference": "8.x-1.30"
  4199. },
  4200. "dist": {
  4201. "type": "zip",
  4202. "url": "https://ftp.drupal.org/files/projects/honeypot-8.x-1.30.zip",
  4203. "reference": "8.x-1.30",
  4204. "shasum": "1d7983e8e07feee4f13e4b05c9a10db15ae2097e"
  4205. },
  4206. "require": {
  4207. "drupal/core": "~8.0"
  4208. },
  4209. "type": "drupal-module",
  4210. "extra": {
  4211. "drupal": {
  4212. "version": "8.x-1.30",
  4213. "datestamp": "1576274288",
  4214. "security-coverage": {
  4215. "status": "covered",
  4216. "message": "Covered by Drupal's security advisory policy"
  4217. }
  4218. }
  4219. },
  4220. "notification-url": "https://packages.drupal.org/8/downloads",
  4221. "license": [
  4222. "GPL-2.0+"
  4223. ],
  4224. "authors": [
  4225. {
  4226. "name": "Jeff Geerling",
  4227. "homepage": "https://www.drupal.org/user/213194",
  4228. "email": "geerlingguy@mac.com"
  4229. },
  4230. {
  4231. "name": "geerlingguy",
  4232. "homepage": "https://www.drupal.org/user/389011"
  4233. },
  4234. {
  4235. "name": "vijaycs85",
  4236. "homepage": "https://www.drupal.org/user/93488"
  4237. }
  4238. ],
  4239. "description": "Mitigates spam form submissions using the honeypot method.",
  4240. "homepage": "https://www.drupal.org/project/honeypot",
  4241. "keywords": [
  4242. "deterrent",
  4243. "form",
  4244. "honeypot",
  4245. "honeytrap",
  4246. "php",
  4247. "spam"
  4248. ],
  4249. "support": {
  4250. "source": "https://git.drupalcode.org/project/honeypot"
  4251. }
  4252. },
  4253. {
  4254. "name": "drupal/linkit",
  4255. "version": "5.0.0-beta11",
  4256. "source": {
  4257. "type": "git",
  4258. "url": "https://git.drupalcode.org/project/linkit.git",
  4259. "reference": "8.x-5.0-beta11"
  4260. },
  4261. "dist": {
  4262. "type": "zip",
  4263. "url": "https://ftp.drupal.org/files/projects/linkit-8.x-5.0-beta11.zip",
  4264. "reference": "8.x-5.0-beta11",
  4265. "shasum": "9133a3e61deafdd6a9d5a8b31a1f42e16051ee97"
  4266. },
  4267. "require": {
  4268. "drupal/core": "^8.7.7 || ^9"
  4269. },
  4270. "require-dev": {
  4271. "drupal/imce": "*"
  4272. },
  4273. "type": "drupal-module",
  4274. "extra": {
  4275. "drupal": {
  4276. "version": "8.x-5.0-beta11",
  4277. "datestamp": "1591971693",
  4278. "security-coverage": {
  4279. "status": "not-covered",
  4280. "message": "Beta releases are not covered by Drupal security advisories."
  4281. }
  4282. }
  4283. },
  4284. "notification-url": "https://packages.drupal.org/8/downloads",
  4285. "license": [
  4286. "GPL-2.0+"
  4287. ],
  4288. "authors": [
  4289. {
  4290. "name": "Emil Stjerneman",
  4291. "homepage": "https://stjerneman.com",
  4292. "email": "emil@stjerneman.com",
  4293. "role": "Maintainer"
  4294. }
  4295. ],
  4296. "description": "Linkit - Enriched linking experience",
  4297. "homepage": "http://drupal.org/project/linkit",
  4298. "support": {
  4299. "source": "http://cgit.drupalcode.org/linkit",
  4300. "issues": "http://drupal.org/project/linkit"
  4301. }
  4302. },
  4303. {
  4304. "name": "drupal/login_emailusername",
  4305. "version": "1.1.0",
  4306. "source": {
  4307. "type": "git",
  4308. "url": "https://git.drupalcode.org/project/login_emailusername.git",
  4309. "reference": "8.x-1.1"
  4310. },
  4311. "dist": {
  4312. "type": "zip",
  4313. "url": "https://ftp.drupal.org/files/projects/login_emailusername-8.x-1.1.zip",
  4314. "reference": "8.x-1.1",
  4315. "shasum": "f484b76b538f4dbbae5a75b49577f4ddf576809e"
  4316. },
  4317. "require": {
  4318. "drupal/core": "~8.0"
  4319. },
  4320. "type": "drupal-module",
  4321. "extra": {
  4322. "branch-alias": {
  4323. "dev-1.x": "1.x-dev"
  4324. },
  4325. "drupal": {
  4326. "version": "8.x-1.1",
  4327. "datestamp": "1483456142",
  4328. "security-coverage": {
  4329. "status": "covered",
  4330. "message": "Covered by Drupal's security advisory policy"
  4331. }
  4332. },
  4333. "patches_applied": {
  4334. "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"
  4335. }
  4336. },
  4337. "notification-url": "https://packages.drupal.org/8/downloads",
  4338. "license": [
  4339. "GPL-2.0-or-later"
  4340. ],
  4341. "authors": [
  4342. {
  4343. "name": "rjjakes",
  4344. "homepage": "https://www.drupal.org/user/3457245"
  4345. }
  4346. ],
  4347. "description": "Allow users to log in with either their username OR email address using the same input box on the login form.",
  4348. "homepage": "https://www.drupal.org/project/login_emailusername",
  4349. "support": {
  4350. "source": "https://git.drupalcode.org/project/login_emailusername"
  4351. }
  4352. },
  4353. {
  4354. "name": "drupal/maillog",
  4355. "version": "dev-1.x",
  4356. "source": {
  4357. "type": "git",
  4358. "url": "https://git.drupalcode.org/project/maillog.git",
  4359. "reference": "3ec675bd7842c04bc01860fa8b3f424f95a17d93"
  4360. },
  4361. "require": {
  4362. "drupal/core": "*"
  4363. },
  4364. "type": "drupal-module",
  4365. "extra": {
  4366. "branch-alias": {
  4367. "dev-1.x": "1.x-dev"
  4368. },
  4369. "drupal": {
  4370. "version": "8.x-1.x-dev",
  4371. "datestamp": "1470431939",
  4372. "security-coverage": {
  4373. "status": "not-covered",
  4374. "message": "Project has not opted into security advisory coverage!"
  4375. }
  4376. }
  4377. },
  4378. "notification-url": "https://packages.drupal.org/8/downloads",
  4379. "license": [
  4380. "GPL-2.0-or-later"
  4381. ],
  4382. "authors": [
  4383. {
  4384. "name": "Berdir",
  4385. "homepage": "https://www.drupal.org/user/214652"
  4386. },
  4387. {
  4388. "name": "DamienMcKenna",
  4389. "homepage": "https://www.drupal.org/user/108450"
  4390. },
  4391. {
  4392. "name": "miro_dietiker",
  4393. "homepage": "https://www.drupal.org/user/227761"
  4394. },
  4395. {
  4396. "name": "pluess",
  4397. "homepage": "https://www.drupal.org/user/84659"
  4398. }
  4399. ],
  4400. "description": "Utility to log all Mails for debugging purposes. It is possible to suppress mail delivery for e.g. dev or staging systems.",
  4401. "homepage": "https://www.drupal.org/project/maillog",
  4402. "support": {
  4403. "source": "https://git.drupalcode.org/project/maillog"
  4404. },
  4405. "time": "2020-05-19T01:33:41+00:00"
  4406. },
  4407. {
  4408. "name": "drupal/matomo",
  4409. "version": "1.9.0",
  4410. "source": {
  4411. "type": "git",
  4412. "url": "https://git.drupalcode.org/project/matomo.git",
  4413. "reference": "8.x-1.9"
  4414. },
  4415. "dist": {
  4416. "type": "zip",
  4417. "url": "https://ftp.drupal.org/files/projects/matomo-8.x-1.9.zip",
  4418. "reference": "8.x-1.9",
  4419. "shasum": "2c818af730f834d3aef3f6b7aa29f05e6fa9246d"
  4420. },
  4421. "require": {
  4422. "drupal/core": "~8.5"
  4423. },
  4424. "require-dev": {
  4425. "drupal/php": "*",
  4426. "drupal/token": "*"
  4427. },
  4428. "type": "drupal-module",
  4429. "extra": {
  4430. "branch-alias": {
  4431. "dev-1.x": "1.x-dev"
  4432. },
  4433. "drupal": {
  4434. "version": "8.x-1.9",
  4435. "datestamp": "1549615080",
  4436. "security-coverage": {
  4437. "status": "covered",
  4438. "message": "Covered by Drupal's security advisory policy"
  4439. }
  4440. }
  4441. },
  4442. "notification-url": "https://packages.drupal.org/8/downloads",
  4443. "license": [
  4444. "GPL-2.0+"
  4445. ],
  4446. "authors": [
  4447. {
  4448. "name": "hass",
  4449. "homepage": "https://www.drupal.org/u/hass"
  4450. },
  4451. {
  4452. "name": "See other contributors",
  4453. "homepage": "https://www.drupal.org/node/247808/committers"
  4454. }
  4455. ],
  4456. "description": "Adds Matomo javascript tracking code to all your site's pages",
  4457. "homepage": "https://www.drupal.org/project/matomo",
  4458. "support": {
  4459. "source": "https://git.drupal.org/project/matomo.git",
  4460. "issues": "https://www.drupal.org/project/issues/matomo"
  4461. }
  4462. },
  4463. {
  4464. "name": "drupal/menu_admin_per_menu",
  4465. "version": "1.1.0",
  4466. "source": {
  4467. "type": "git",
  4468. "url": "https://git.drupalcode.org/project/menu_admin_per_menu.git",
  4469. "reference": "8.x-1.1"
  4470. },
  4471. "dist": {
  4472. "type": "zip",
  4473. "url": "https://ftp.drupal.org/files/projects/menu_admin_per_menu-8.x-1.1.zip",
  4474. "reference": "8.x-1.1",
  4475. "shasum": "a9522b06654faa2d9bd23f704c93e1093f3ff6ec"
  4476. },
  4477. "require": {
  4478. "drupal/core": "^8 || ^9"
  4479. },
  4480. "type": "drupal-module",
  4481. "extra": {
  4482. "drupal": {
  4483. "version": "8.x-1.1",
  4484. "datestamp": "1591098397",
  4485. "security-coverage": {
  4486. "status": "covered",
  4487. "message": "Covered by Drupal's security advisory policy"
  4488. }
  4489. }
  4490. },
  4491. "notification-url": "https://packages.drupal.org/8/downloads",
  4492. "license": [
  4493. "GPL-2.0-or-later"
  4494. ],
  4495. "authors": [
  4496. {
  4497. "name": "JeroenT",
  4498. "homepage": "https://www.drupal.org/user/2228934"
  4499. },
  4500. {
  4501. "name": "anrikun",
  4502. "homepage": "https://www.drupal.org/user/410199"
  4503. },
  4504. {
  4505. "name": "jonas139",
  4506. "homepage": "https://www.drupal.org/user/2873401"
  4507. },
  4508. {
  4509. "name": "mkdok",
  4510. "homepage": "https://www.drupal.org/user/3308753"
  4511. }
  4512. ],
  4513. "description": "Allows to give roles per menu admin permissions without giving them full administer menu permission.",
  4514. "homepage": "https://www.drupal.org/project/menu_admin_per_menu",
  4515. "support": {
  4516. "source": "https://git.drupalcode.org/project/menu_admin_per_menu"
  4517. }
  4518. },
  4519. {
  4520. "name": "drupal/metatag",
  4521. "version": "1.14.0",
  4522. "source": {
  4523. "type": "git",
  4524. "url": "https://git.drupalcode.org/project/metatag.git",
  4525. "reference": "8.x-1.14"
  4526. },
  4527. "dist": {
  4528. "type": "zip",
  4529. "url": "https://ftp.drupal.org/files/projects/metatag-8.x-1.14.zip",
  4530. "reference": "8.x-1.14",
  4531. "shasum": "9bf9f1517ad015d0c93ca1460e284c557624aa90"
  4532. },
  4533. "require": {
  4534. "drupal/core": "^8 || ^9",
  4535. "drupal/token": "^1.0"
  4536. },
  4537. "require-dev": {
  4538. "drupal/metatag_dc": "*",
  4539. "drupal/metatag_open_graph": "*",
  4540. "drupal/page_manager": "4.x-dev",
  4541. "drupal/panelizer": "4.x-dev",
  4542. "drupal/redirect": "1.x-dev"
  4543. },
  4544. "type": "drupal-module",
  4545. "extra": {
  4546. "drupal": {
  4547. "version": "8.x-1.14",
  4548. "datestamp": "1597183852",
  4549. "security-coverage": {
  4550. "status": "covered",
  4551. "message": "Covered by Drupal's security advisory policy"
  4552. }
  4553. }
  4554. },
  4555. "notification-url": "https://packages.drupal.org/8/downloads",
  4556. "license": [
  4557. "GPL-2.0-or-later"
  4558. ],
  4559. "authors": [
  4560. {
  4561. "name": "See contributors",
  4562. "homepage": "https://www.drupal.org/node/640498/committers",
  4563. "role": "Developer"
  4564. },
  4565. {
  4566. "name": "Dave Reid",
  4567. "homepage": "https://www.drupal.org/user/53892"
  4568. }
  4569. ],
  4570. "description": "Manage meta tags for all entities.",
  4571. "homepage": "https://www.drupal.org/project/metatag",
  4572. "keywords": [
  4573. "Drupal",
  4574. "seo"
  4575. ],
  4576. "support": {
  4577. "source": "https://git.drupalcode.org/project/metatag",
  4578. "issues": "https://www.drupal.org/project/issues/metatag",
  4579. "docs": "https://www.drupal.org/docs/8/modules/metatag"
  4580. }
  4581. },
  4582. {
  4583. "name": "drupal/migrate_plus",
  4584. "version": "5.0.0",
  4585. "source": {
  4586. "type": "git",
  4587. "url": "https://git.drupalcode.org/project/migrate_plus.git",
  4588. "reference": "8.x-5.0"
  4589. },
  4590. "dist": {
  4591. "type": "zip",
  4592. "url": "https://ftp.drupal.org/files/projects/migrate_plus-8.x-5.0.zip",
  4593. "reference": "8.x-5.0",
  4594. "shasum": "5509c76498e4c6141c29db626d20904e1e8593c6"
  4595. },
  4596. "require": {
  4597. "drupal/core": "^8 || ^9"
  4598. },
  4599. "require-dev": {
  4600. "drupal/migrate_example_advanced_setup": "*",
  4601. "drupal/migrate_example_setup": "*"
  4602. },
  4603. "suggest": {
  4604. "ext-soap": "*",
  4605. "sainsburys/guzzle-oauth2-plugin": "3.0 required for the OAuth2 authentication plugin"
  4606. },
  4607. "type": "drupal-module",
  4608. "extra": {
  4609. "drupal": {
  4610. "version": "8.x-5.0",
  4611. "datestamp": "1586234154",
  4612. "security-coverage": {
  4613. "status": "covered",
  4614. "message": "Covered by Drupal's security advisory policy"
  4615. }
  4616. }
  4617. },
  4618. "notification-url": "https://packages.drupal.org/8/downloads",
  4619. "license": [
  4620. "GPL-2.0+"
  4621. ],
  4622. "authors": [
  4623. {
  4624. "name": "Mike Ryan",
  4625. "homepage": "https://www.drupal.org/u/mikeryan",
  4626. "role": "Maintainer"
  4627. },
  4628. {
  4629. "name": "Lucas Hedding",
  4630. "homepage": "https://www.drupal.org/u/heddn",
  4631. "role": "Maintainer"
  4632. }
  4633. ],
  4634. "description": "Enhancements to core migration support.",
  4635. "homepage": "https://www.drupal.org/project/migrate_plus",
  4636. "support": {
  4637. "source": "https://git.drupalcode.org/project/migrate_plus",
  4638. "issues": "https://www.drupal.org/project/issues/migrate_plus",
  4639. "slack": "#migrate"
  4640. }
  4641. },
  4642. {
  4643. "name": "drupal/migrate_tools",
  4644. "version": "4.5.0",
  4645. "source": {
  4646. "type": "git",
  4647. "url": "https://git.drupalcode.org/project/migrate_tools.git",
  4648. "reference": "8.x-4.5"
  4649. },
  4650. "dist": {
  4651. "type": "zip",
  4652. "url": "https://ftp.drupal.org/files/projects/migrate_tools-8.x-4.5.zip",
  4653. "reference": "8.x-4.5",
  4654. "shasum": "06390b359bf53c50a30f2d6dc4c7542bfb1fe7ca"
  4655. },
  4656. "require": {
  4657. "drupal/core": "^8 || ^9",
  4658. "drupal/migrate_plus": "^4 || ^5"
  4659. },
  4660. "require-dev": {
  4661. "drupal/migrate_plus": "4.x-dev",
  4662. "drupal/migrate_source_csv": "^2.2",
  4663. "drush/drush": "^10"
  4664. },
  4665. "type": "drupal-module",
  4666. "extra": {
  4667. "drupal": {
  4668. "version": "8.x-4.5",
  4669. "datestamp": "1574693285",
  4670. "security-coverage": {
  4671. "status": "covered",
  4672. "message": "Covered by Drupal's security advisory policy"
  4673. }
  4674. },
  4675. "drush": {
  4676. "services": {
  4677. "drush.services.yml": "^9 || ^10"
  4678. }
  4679. }
  4680. },
  4681. "notification-url": "https://packages.drupal.org/8/downloads",
  4682. "license": [
  4683. "GPL-2.0-or-later"
  4684. ],
  4685. "authors": [
  4686. {
  4687. "name": "heddn",
  4688. "homepage": "https://www.drupal.org/user/1463982"
  4689. },
  4690. {
  4691. "name": "mikeryan",
  4692. "homepage": "https://www.drupal.org/user/4420"
  4693. },
  4694. {
  4695. "name": "moshe weitzman",
  4696. "homepage": "https://www.drupal.org/user/23"
  4697. }
  4698. ],
  4699. "description": "Tools to assist in developing and running migrations.",
  4700. "homepage": "http://drupal.org/project/migrate_tools",
  4701. "support": {
  4702. "source": "http://cgit.drupalcode.org/migrate_tools",
  4703. "issues": "http://drupal.org/project/migrate_tools",
  4704. "irc": "irc://irc.freenode.org/drupal-migrate"
  4705. }
  4706. },
  4707. {
  4708. "name": "drupal/path_alias_xt",
  4709. "version": "dev-1.x",
  4710. "source": {
  4711. "type": "git",
  4712. "url": "https://git.drupalcode.org/project/path_alias_xt.git",
  4713. "reference": "10ef76dd3eb25bc1342195336291ded3f2d8cc7e"
  4714. },
  4715. "require": {
  4716. "drupal/core": "^8.7.7 || ^9"
  4717. },
  4718. "type": "drupal-module",
  4719. "extra": {
  4720. "branch-alias": {
  4721. "dev-1.x": "1.x-dev"
  4722. },
  4723. "drupal": {
  4724. "version": "8.x-1.x-dev",
  4725. "datestamp": "1582322571",
  4726. "security-coverage": {
  4727. "status": "not-covered",
  4728. "message": "Dev releases are not covered by Drupal security advisories."
  4729. }
  4730. }
  4731. },
  4732. "notification-url": "https://packages.drupal.org/8/downloads",
  4733. "license": [
  4734. "GPL-2.0-or-later"
  4735. ],
  4736. "authors": [
  4737. {
  4738. "name": "RdeBoer",
  4739. "homepage": "https://www.drupal.org/user/404007"
  4740. },
  4741. {
  4742. "name": "adriancid",
  4743. "homepage": "https://www.drupal.org/user/1962106"
  4744. },
  4745. {
  4746. "name": "sdstyles",
  4747. "homepage": "https://www.drupal.org/user/1420228"
  4748. }
  4749. ],
  4750. "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.",
  4751. "homepage": "https://www.drupal.org/project/path_alias_xt",
  4752. "support": {
  4753. "source": "https://git.drupalcode.org/project/path_alias_xt"
  4754. },
  4755. "time": "2020-05-24T05:57:09+00:00"
  4756. },
  4757. {
  4758. "name": "drupal/pathauto",
  4759. "version": "1.8.0",
  4760. "source": {
  4761. "type": "git",
  4762. "url": "https://git.drupalcode.org/project/pathauto.git",
  4763. "reference": "8.x-1.8"
  4764. },
  4765. "dist": {
  4766. "type": "zip",
  4767. "url": "https://ftp.drupal.org/files/projects/pathauto-8.x-1.8.zip",
  4768. "reference": "8.x-1.8",
  4769. "shasum": "ede3216abb9c4f77709338d9147334c595046329"
  4770. },
  4771. "require": {
  4772. "drupal/core": "^8.8 || ^9",
  4773. "drupal/ctools": "*",
  4774. "drupal/token": "*"
  4775. },
  4776. "suggest": {
  4777. "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."
  4778. },
  4779. "type": "drupal-module",
  4780. "extra": {
  4781. "drupal": {
  4782. "version": "8.x-1.8",
  4783. "datestamp": "1588103046",
  4784. "security-coverage": {
  4785. "status": "covered",
  4786. "message": "Covered by Drupal's security advisory policy"
  4787. }
  4788. },
  4789. "drush": {
  4790. "services": {
  4791. "drush.services.yml": "^9 || ^10"
  4792. }
  4793. }
  4794. },
  4795. "notification-url": "https://packages.drupal.org/8/downloads",
  4796. "license": [
  4797. "GPL-2.0-or-later"
  4798. ],
  4799. "authors": [
  4800. {
  4801. "name": "Berdir",
  4802. "homepage": "https://www.drupal.org/user/214652"
  4803. },
  4804. {
  4805. "name": "Dave Reid",
  4806. "homepage": "https://www.drupal.org/user/53892"
  4807. },
  4808. {
  4809. "name": "Freso",
  4810. "homepage": "https://www.drupal.org/user/27504"
  4811. },
  4812. {
  4813. "name": "greggles",
  4814. "homepage": "https://www.drupal.org/user/36762"
  4815. }
  4816. ],
  4817. "description": "Provides a mechanism for modules to automatically generate aliases for the content they manage.",
  4818. "homepage": "https://www.drupal.org/project/pathauto",
  4819. "support": {
  4820. "source": "https://cgit.drupalcode.org/pathauto",
  4821. "issues": "https://www.drupal.org/project/issues/pathauto",
  4822. "documentation": "https://www.drupal.org/docs/8/modules/pathauto"
  4823. }
  4824. },
  4825. {
  4826. "name": "drupal/piwik",
  4827. "version": "1.4.0",
  4828. "source": {
  4829. "type": "git",
  4830. "url": "https://git.drupalcode.org/project/piwik.git",
  4831. "reference": "8.x-1.4"
  4832. },
  4833. "dist": {
  4834. "type": "zip",
  4835. "url": "https://ftp.drupal.org/files/projects/piwik-8.x-1.4.zip",
  4836. "reference": "8.x-1.4",
  4837. "shasum": "3692831f4b3de636e90679fb052ba8f30e49ac97"
  4838. },
  4839. "require": {
  4840. "drupal/core": "~8.0",
  4841. "drupal/matomo": "^1.0"
  4842. },
  4843. "require-dev": {
  4844. "drupal/php": "*",
  4845. "drupal/token": "*"
  4846. },
  4847. "type": "drupal-module",
  4848. "extra": {
  4849. "branch-alias": {
  4850. "dev-1.x": "1.x-dev"
  4851. },
  4852. "drupal": {
  4853. "version": "8.x-1.4",
  4854. "datestamp": "1530437786",
  4855. "security-coverage": {
  4856. "status": "covered",
  4857. "message": "Covered by Drupal's security advisory policy"
  4858. }
  4859. }
  4860. },
  4861. "notification-url": "https://packages.drupal.org/8/downloads",
  4862. "license": [
  4863. "GPL-2.0+"
  4864. ],
  4865. "authors": [
  4866. {
  4867. "name": "hass",
  4868. "homepage": "https://www.drupal.org/u/hass"
  4869. },
  4870. {
  4871. "name": "See other contributors",
  4872. "homepage": "https://www.drupal.org/node/247808/committers"
  4873. }
  4874. ],
  4875. "description": "Adds Piwik javascript tracking code to all your site's pages",
  4876. "homepage": "https://www.drupal.org/project/piwik",
  4877. "support": {
  4878. "source": "http://git.drupal.org/project/piwik.git",
  4879. "issues": "https://www.drupal.org/project/issues/piwik"
  4880. }
  4881. },
  4882. {
  4883. "name": "drupal/profile",
  4884. "version": "1.1.0",
  4885. "source": {
  4886. "type": "git",
  4887. "url": "https://git.drupalcode.org/project/profile.git",
  4888. "reference": "8.x-1.1"
  4889. },
  4890. "dist": {
  4891. "type": "zip",
  4892. "url": "https://ftp.drupal.org/files/projects/profile-8.x-1.1.zip",
  4893. "reference": "8.x-1.1",
  4894. "shasum": "b8f6aca4f432228e614dca0a50cb187e936e4825"
  4895. },
  4896. "require": {
  4897. "drupal/core": "^8.7.7 || ^9",
  4898. "drupal/entity": "^1.0-rc2"
  4899. },
  4900. "require-dev": {
  4901. "drupal/token": "^1.0"
  4902. },
  4903. "type": "drupal-module",
  4904. "extra": {
  4905. "drupal": {
  4906. "version": "8.x-1.1",
  4907. "datestamp": "1582134004",
  4908. "security-coverage": {
  4909. "status": "covered",
  4910. "message": "Covered by Drupal's security advisory policy"
  4911. }
  4912. }
  4913. },
  4914. "notification-url": "https://packages.drupal.org/8/downloads",
  4915. "license": [
  4916. "GPL-2.0+"
  4917. ],
  4918. "authors": [
  4919. {
  4920. "name": "bojanz",
  4921. "homepage": "https://www.drupal.org/user/86106"
  4922. },
  4923. {
  4924. "name": "daggerhart",
  4925. "homepage": "https://www.drupal.org/user/167806"
  4926. },
  4927. {
  4928. "name": "fago",
  4929. "homepage": "https://www.drupal.org/user/16747"
  4930. },
  4931. {
  4932. "name": "jsacksick",
  4933. "homepage": "https://www.drupal.org/user/972218"
  4934. },
  4935. {
  4936. "name": "mglaman",
  4937. "homepage": "https://www.drupal.org/user/2416470"
  4938. },
  4939. {
  4940. "name": "pcambra",
  4941. "homepage": "https://www.drupal.org/user/122101"
  4942. }
  4943. ],
  4944. "description": "Provides configurable user profiles.",
  4945. "homepage": "http://drupal.org/project/profile",
  4946. "support": {
  4947. "source": "https://git.drupalcode.org/project/profile"
  4948. }
  4949. },
  4950. {
  4951. "name": "drupal/redirect",
  4952. "version": "1.6.0",
  4953. "source": {
  4954. "type": "git",
  4955. "url": "https://git.drupalcode.org/project/redirect.git",
  4956. "reference": "8.x-1.6"
  4957. },
  4958. "dist": {
  4959. "type": "zip",
  4960. "url": "https://ftp.drupal.org/files/projects/redirect-8.x-1.6.zip",
  4961. "reference": "8.x-1.6",
  4962. "shasum": "f848e001deac8425ae57d4b9397087c491d37294"
  4963. },
  4964. "require": {
  4965. "drupal/core": "^8.8 || ^9"
  4966. },
  4967. "type": "drupal-module",
  4968. "extra": {
  4969. "drupal": {
  4970. "version": "8.x-1.6",
  4971. "datestamp": "1589312204",
  4972. "security-coverage": {
  4973. "status": "covered",
  4974. "message": "Covered by Drupal's security advisory policy"
  4975. }
  4976. }
  4977. },
  4978. "notification-url": "https://packages.drupal.org/8/downloads",
  4979. "license": [
  4980. "GPL-2.0-or-later"
  4981. ],
  4982. "authors": [
  4983. {
  4984. "name": "Berdir",
  4985. "homepage": "https://www.drupal.org/user/214652"
  4986. },
  4987. {
  4988. "name": "Dave Reid",
  4989. "homepage": "https://www.drupal.org/user/53892"
  4990. },
  4991. {
  4992. "name": "pifagor",
  4993. "homepage": "https://www.drupal.org/user/2375692"
  4994. }
  4995. ],
  4996. "description": "Allows users to redirect from old URLs to new URLs.",
  4997. "homepage": "https://www.drupal.org/project/redirect",
  4998. "support": {
  4999. "source": "https://git.drupalcode.org/project/redirect"
  5000. }
  5001. },
  5002. {
  5003. "name": "drupal/redis",
  5004. "version": "1.4.0",
  5005. "source": {
  5006. "type": "git",
  5007. "url": "https://git.drupalcode.org/project/redis.git",
  5008. "reference": "8.x-1.4"
  5009. },
  5010. "dist": {
  5011. "type": "zip",
  5012. "url": "https://ftp.drupal.org/files/projects/redis-8.x-1.4.zip",
  5013. "reference": "8.x-1.4",
  5014. "shasum": "87165acdda18873c1e3994c670bcb4cdafd3d0ff"
  5015. },
  5016. "require": {
  5017. "drupal/core": "^8.8 || ^9"
  5018. },
  5019. "suggest": {
  5020. "predis/predis": "^1.1.1"
  5021. },
  5022. "type": "drupal-module",
  5023. "extra": {
  5024. "branch-alias": {
  5025. "dev-1.x": "1.x-dev"
  5026. },
  5027. "drupal": {
  5028. "version": "8.x-1.4",
  5029. "datestamp": "1581504947",
  5030. "security-coverage": {
  5031. "status": "covered",
  5032. "message": "Covered by Drupal's security advisory policy"
  5033. }
  5034. }
  5035. },
  5036. "autoload": {
  5037. "psr-4": {
  5038. "Drupal\\redis\\": "src"
  5039. }
  5040. },
  5041. "notification-url": "https://packages.drupal.org/8/downloads",
  5042. "license": [
  5043. "GPL-2.0"
  5044. ],
  5045. "authors": [
  5046. {
  5047. "name": "Berdir",
  5048. "homepage": "https://www.drupal.org/user/214652"
  5049. },
  5050. {
  5051. "name": "pounard",
  5052. "homepage": "https://www.drupal.org/user/240164"
  5053. }
  5054. ],
  5055. "description": "Provide a module placeholder, for using as dependency for module that needs Redis.",
  5056. "homepage": "https://www.drupal.org/project/redis",
  5057. "support": {
  5058. "source": "https://git.drupalcode.org/project/redis"
  5059. }
  5060. },
  5061. {
  5062. "name": "drupal/restui",
  5063. "version": "1.18.0",
  5064. "source": {
  5065. "type": "git",
  5066. "url": "https://git.drupalcode.org/project/restui.git",
  5067. "reference": "8.x-1.18"
  5068. },
  5069. "dist": {
  5070. "type": "zip",
  5071. "url": "https://ftp.drupal.org/files/projects/restui-8.x-1.18.zip",
  5072. "reference": "8.x-1.18",
  5073. "shasum": "40edbe907d5ec6d6c6a00abd219c7305d90d19e5"
  5074. },
  5075. "require": {
  5076. "drupal/core": "^8.7.7 || ^9"
  5077. },
  5078. "type": "drupal-module",
  5079. "extra": {
  5080. "drupal": {
  5081. "version": "8.x-1.18",
  5082. "datestamp": "1586170645",
  5083. "security-coverage": {
  5084. "status": "covered",
  5085. "message": "Covered by Drupal's security advisory policy"
  5086. }
  5087. }
  5088. },
  5089. "notification-url": "https://packages.drupal.org/8/downloads",
  5090. "license": [
  5091. "GPL-2.0-or-later"
  5092. ],
  5093. "authors": [
  5094. {
  5095. "name": "-enzo-",
  5096. "homepage": "https://www.drupal.org/user/294937"
  5097. },
  5098. {
  5099. "name": "clemens.tolboom",
  5100. "homepage": "https://www.drupal.org/user/125814"
  5101. },
  5102. {
  5103. "name": "juampynr",
  5104. "homepage": "https://www.drupal.org/user/682736"
  5105. },
  5106. {
  5107. "name": "klausi",
  5108. "homepage": "https://www.drupal.org/user/262198"
  5109. }
  5110. ],
  5111. "description": "Provides a user interface to manage REST resources.",
  5112. "homepage": "https://www.drupal.org/project/restui",
  5113. "support": {
  5114. "source": "https://git.drupalcode.org/project/restui"
  5115. }
  5116. },
  5117. {
  5118. "name": "drupal/search_api",
  5119. "version": "1.17.0",
  5120. "source": {
  5121. "type": "git",
  5122. "url": "https://git.drupalcode.org/project/search_api.git",
  5123. "reference": "8.x-1.17"
  5124. },
  5125. "dist": {
  5126. "type": "zip",
  5127. "url": "https://ftp.drupal.org/files/projects/search_api-8.x-1.17.zip",
  5128. "reference": "8.x-1.17",
  5129. "shasum": "a9f3352f1c8c893c7032c11f00a23f76b9733b56"
  5130. },
  5131. "require": {
  5132. "drupal/core": "^8.8 || ^9"
  5133. },
  5134. "conflict": {
  5135. "drupal/search_api_solr": "2.* || 3.0 || 3.1"
  5136. },
  5137. "require-dev": {
  5138. "drupal/language_fallback_fix": "@dev",
  5139. "drupal/search_api_autocomplete": "@dev",
  5140. "drupal/search_api_db": "*"
  5141. },
  5142. "suggest": {
  5143. "drupal/facets": "Adds the ability to create faceted searches.",
  5144. "drupal/search_api_autocomplete": "Allows adding autocomplete suggestions to search fields.",
  5145. "drupal/search_api_solr": "Adds support for using Apache Solr as a backend."
  5146. },
  5147. "type": "drupal-module",
  5148. "extra": {
  5149. "drupal": {
  5150. "version": "8.x-1.17",
  5151. "datestamp": "1594482952",
  5152. "security-coverage": {
  5153. "status": "covered",
  5154. "message": "Covered by Drupal's security advisory policy"
  5155. }
  5156. },
  5157. "drush": {
  5158. "services": {
  5159. "drush.services.yml": "^9"
  5160. }
  5161. }
  5162. },
  5163. "notification-url": "https://packages.drupal.org/8/downloads",
  5164. "license": [
  5165. "GPL-2.0+"
  5166. ],
  5167. "authors": [
  5168. {
  5169. "name": "Thomas Seidl",
  5170. "homepage": "https://www.drupal.org/u/drunken-monkey"
  5171. },
  5172. {
  5173. "name": "Nick Veenhof",
  5174. "homepage": "https://www.drupal.org/u/nick_vh"
  5175. },
  5176. {
  5177. "name": "See other contributors",
  5178. "homepage": "https://www.drupal.org/node/790418/committers"
  5179. }
  5180. ],
  5181. "description": "Provides a generic framework for modules offering search capabilities.",
  5182. "homepage": "https://www.drupal.org/project/search_api",
  5183. "support": {
  5184. "source": "https://git.drupalcode.org/project/search_api",
  5185. "issues": "https://www.drupal.org/project/issues/search_api",
  5186. "irc": "irc://irc.freenode.org/drupal-search-api"
  5187. }
  5188. },
  5189. {
  5190. "name": "drupal/simple_sitemap",
  5191. "version": "3.7.0",
  5192. "source": {
  5193. "type": "git",
  5194. "url": "https://git.drupalcode.org/project/simple_sitemap.git",
  5195. "reference": "8.x-3.7"
  5196. },
  5197. "dist": {
  5198. "type": "zip",
  5199. "url": "https://ftp.drupal.org/files/projects/simple_sitemap-8.x-3.7.zip",
  5200. "reference": "8.x-3.7",
  5201. "shasum": "7b23930cc71d37f332c1e836bc18c29ed2ae8cde"
  5202. },
  5203. "require": {
  5204. "drupal/core": "^8 || ^9",
  5205. "ext-xmlwriter": "*"
  5206. },
  5207. "type": "drupal-module",
  5208. "extra": {
  5209. "drupal": {
  5210. "version": "8.x-3.7",
  5211. "datestamp": "1592298918",
  5212. "security-coverage": {
  5213. "status": "covered",
  5214. "message": "Covered by Drupal's security advisory policy"
  5215. }
  5216. },
  5217. "drush": {
  5218. "services": {
  5219. "drush.services.yml": "^9 || ^10"
  5220. }
  5221. }
  5222. },
  5223. "notification-url": "https://packages.drupal.org/8/downloads",
  5224. "license": [
  5225. "GPL-2.0-or-later"
  5226. ],
  5227. "authors": [
  5228. {
  5229. "name": "Pawel Ginalski (gbyte.co)",
  5230. "homepage": "https://www.drupal.org/u/gbyte.co",
  5231. "email": "contact@gbyte.co",
  5232. "role": "Maintainer"
  5233. }
  5234. ],
  5235. "description": "Creates a standard conform hreflang XML sitemap of the site content and provides a framework for developing other sitemap types.",
  5236. "homepage": "https://drupal.org/project/simple_sitemap",
  5237. "support": {
  5238. "source": "https://cgit.drupalcode.org/simple_sitemap",
  5239. "issues": "https://drupal.org/project/issues/simple_sitemap",
  5240. "irc": "irc://irc.freenode.org/drupal-contribute"
  5241. }
  5242. },
  5243. {
  5244. "name": "drupal/synonyms",
  5245. "version": "dev-1.x",
  5246. "source": {
  5247. "type": "git",
  5248. "url": "https://git.drupalcode.org/project/synonyms.git",
  5249. "reference": "5327ef244bad11e859eed9ff71b49cb8f9955190"
  5250. },
  5251. "require": {
  5252. "drupal/core": "^8.2"
  5253. },
  5254. "type": "drupal-module",
  5255. "extra": {
  5256. "branch-alias": {
  5257. "dev-1.x": "1.x-dev"
  5258. },
  5259. "drupal": {
  5260. "version": "8.x-1.0-alpha1+5-dev",
  5261. "datestamp": "1540141681",
  5262. "security-coverage": {
  5263. "status": "not-covered",
  5264. "message": "Dev releases are not covered by Drupal security advisories."
  5265. }
  5266. }
  5267. },
  5268. "notification-url": "https://packages.drupal.org/8/downloads",
  5269. "license": [
  5270. "GPL-2.0-or-later"
  5271. ],
  5272. "authors": [
  5273. {
  5274. "name": "Zen",
  5275. "homepage": "https://www.drupal.org/user/21209"
  5276. },
  5277. {
  5278. "name": "bojanz",
  5279. "homepage": "https://www.drupal.org/user/86106"
  5280. },
  5281. {
  5282. "name": "bucefal91",
  5283. "homepage": "https://www.drupal.org/user/504128"
  5284. }
  5285. ],
  5286. "description": "Provides synonyms feature for content entities.",
  5287. "homepage": "https://www.drupal.org/project/synonyms",
  5288. "support": {
  5289. "source": "https://git.drupalcode.org/project/synonyms"
  5290. },
  5291. "time": "2018-10-21T17:05:25+00:00"
  5292. },
  5293. {
  5294. "name": "drupal/token",
  5295. "version": "1.7.0",
  5296. "source": {
  5297. "type": "git",
  5298. "url": "https://git.drupalcode.org/project/token.git",
  5299. "reference": "8.x-1.7"
  5300. },
  5301. "dist": {
  5302. "type": "zip",
  5303. "url": "https://ftp.drupal.org/files/projects/token-8.x-1.7.zip",
  5304. "reference": "8.x-1.7",
  5305. "shasum": "c7e3a3757282e4c94e3c1fff08d01e22155cb853"
  5306. },
  5307. "require": {
  5308. "drupal/core": "^8.8 || ^9"
  5309. },
  5310. "type": "drupal-module",
  5311. "extra": {
  5312. "drupal": {
  5313. "version": "8.x-1.7",
  5314. "datestamp": "1589314266",
  5315. "security-coverage": {
  5316. "status": "covered",
  5317. "message": "Covered by Drupal's security advisory policy"
  5318. }
  5319. },
  5320. "drush": {
  5321. "services": {
  5322. "drush.services.yml": "^9 || ^10"
  5323. }
  5324. }
  5325. },
  5326. "notification-url": "https://packages.drupal.org/8/downloads",
  5327. "license": [
  5328. "GPL-2.0+"
  5329. ],
  5330. "authors": [
  5331. {
  5332. "name": "Berdir",
  5333. "homepage": "https://www.drupal.org/user/214652"
  5334. },
  5335. {
  5336. "name": "Dave Reid",
  5337. "homepage": "https://www.drupal.org/user/53892"
  5338. },
  5339. {
  5340. "name": "eaton",
  5341. "homepage": "https://www.drupal.org/user/16496"
  5342. },
  5343. {
  5344. "name": "fago",
  5345. "homepage": "https://www.drupal.org/user/16747"
  5346. },
  5347. {
  5348. "name": "greggles",
  5349. "homepage": "https://www.drupal.org/user/36762"
  5350. },
  5351. {
  5352. "name": "mikeryan",
  5353. "homepage": "https://www.drupal.org/user/4420"
  5354. }
  5355. ],
  5356. "description": "Provides a user interface for the Token API, some missing core tokens.",
  5357. "homepage": "https://www.drupal.org/project/token",
  5358. "support": {
  5359. "source": "https://git.drupalcode.org/project/token"
  5360. }
  5361. },
  5362. {
  5363. "name": "drupal/toolbar_themes",
  5364. "version": "dev-1.x",
  5365. "source": {
  5366. "type": "git",
  5367. "url": "https://git.drupalcode.org/project/toolbar_themes.git",
  5368. "reference": "62e79c8635ec13fe5a4dd67b87f698a14822c044"
  5369. },
  5370. "require": {
  5371. "drupal/core": "*"
  5372. },
  5373. "type": "drupal-module",
  5374. "extra": {
  5375. "branch-alias": {
  5376. "dev-1.x": "1.x-dev"
  5377. },
  5378. "drupal": {
  5379. "version": "8.x-1.0-alpha4+10-dev",
  5380. "datestamp": "1510689485",
  5381. "security-coverage": {
  5382. "status": "not-covered",
  5383. "message": "Project has not opted into security advisory coverage!"
  5384. }
  5385. }
  5386. },
  5387. "notification-url": "https://packages.drupal.org/8/downloads",
  5388. "license": [
  5389. "GPL-2.0-or-later"
  5390. ],
  5391. "authors": [
  5392. {
  5393. "name": "Jeff Burnz",
  5394. "homepage": "https://www.drupal.org/user/61393"
  5395. }
  5396. ],
  5397. "description": "Apply themes to the toolbar.",
  5398. "homepage": "https://www.drupal.org/project/toolbar_themes",
  5399. "support": {
  5400. "source": "https://git.drupalcode.org/project/toolbar_themes"
  5401. },
  5402. "time": "2017-11-14T19:57:02+00:00"
  5403. },
  5404. {
  5405. "name": "drupal/translation_views",
  5406. "version": "1.0.0-alpha10",
  5407. "source": {
  5408. "type": "git",
  5409. "url": "https://git.drupalcode.org/project/translation_views.git",
  5410. "reference": "8.x-1.0-alpha10"
  5411. },
  5412. "dist": {
  5413. "type": "zip",
  5414. "url": "https://ftp.drupal.org/files/projects/translation_views-8.x-1.0-alpha10.zip",
  5415. "reference": "8.x-1.0-alpha10",
  5416. "shasum": "ca1a6d4bf16293b1b094db6439f9f065de1dbbd5"
  5417. },
  5418. "require": {
  5419. "drupal/core": "^8.8 || ^9"
  5420. },
  5421. "require-dev": {
  5422. "drupal/translators": "*",
  5423. "drupal/translators_content": "*"
  5424. },
  5425. "type": "drupal-module",
  5426. "extra": {
  5427. "drupal": {
  5428. "version": "8.x-1.0-alpha10",
  5429. "datestamp": "1584303687",
  5430. "security-coverage": {
  5431. "status": "not-covered",
  5432. "message": "Project has not opted into security advisory coverage!"
  5433. }
  5434. }
  5435. },
  5436. "notification-url": "https://packages.drupal.org/8/downloads",
  5437. "license": [
  5438. "GPL-2.0-or-later"
  5439. ],
  5440. "authors": [
  5441. {
  5442. "name": "matsbla",
  5443. "homepage": "https://www.drupal.org/user/2325394"
  5444. },
  5445. {
  5446. "name": "vlad.dancer",
  5447. "homepage": "https://www.drupal.org/user/903844"
  5448. }
  5449. ],
  5450. "description": "Create customized lists and queries of translations from your database.",
  5451. "homepage": "https://www.drupal.org/project/translation_views",
  5452. "support": {
  5453. "source": "https://git.drupalcode.org/project/translation_views"
  5454. }
  5455. },
  5456. {
  5457. "name": "drupal/url_to_video_filter",
  5458. "version": "1.4.0",
  5459. "source": {
  5460. "type": "git",
  5461. "url": "https://git.drupalcode.org/project/url_to_video_filter.git",
  5462. "reference": "8.x-1.4"
  5463. },
  5464. "dist": {
  5465. "type": "zip",
  5466. "url": "https://ftp.drupal.org/files/projects/url_to_video_filter-8.x-1.4.zip",
  5467. "reference": "8.x-1.4",
  5468. "shasum": "adeb30c7ad0e0838c222879c467e054e4b6ebcdd"
  5469. },
  5470. "require": {
  5471. "drupal/core": "~8.0"
  5472. },
  5473. "type": "drupal-module",
  5474. "extra": {
  5475. "drupal": {
  5476. "version": "8.x-1.4",
  5477. "datestamp": "1587532095",
  5478. "security-coverage": {
  5479. "status": "covered",
  5480. "message": "Covered by Drupal's security advisory policy"
  5481. }
  5482. }
  5483. },
  5484. "notification-url": "https://packages.drupal.org/8/downloads",
  5485. "license": [
  5486. "GPL-2.0-or-later"
  5487. ],
  5488. "authors": [
  5489. {
  5490. "name": "Jaypan",
  5491. "homepage": "https://www.drupal.org/user/324696"
  5492. }
  5493. ],
  5494. "description": "Text filter to convert URLs to embedded videos",
  5495. "homepage": "https://www.drupal.org/project/url_to_video_filter",
  5496. "support": {
  5497. "source": "https://git.drupalcode.org/project/url_to_video_filter"
  5498. }
  5499. },
  5500. {
  5501. "name": "drupal/views_bulk_edit",
  5502. "version": "2.4.0",
  5503. "source": {
  5504. "type": "git",
  5505. "url": "https://git.drupalcode.org/project/views_bulk_edit.git",
  5506. "reference": "8.x-2.4"
  5507. },
  5508. "dist": {
  5509. "type": "zip",
  5510. "url": "https://ftp.drupal.org/files/projects/views_bulk_edit-8.x-2.4.zip",
  5511. "reference": "8.x-2.4",
  5512. "shasum": "039ebf9c6ae3cdd0555c7bfb97c629ebfee61ddb"
  5513. },
  5514. "require": {
  5515. "drupal/core": "*",
  5516. "drupal/views_bulk_operations": "~1.0 | ~2.0 | ~3.0"
  5517. },
  5518. "type": "drupal-module",
  5519. "extra": {
  5520. "drupal": {
  5521. "version": "8.x-2.4",
  5522. "datestamp": "1570030085",
  5523. "security-coverage": {
  5524. "status": "covered",
  5525. "message": "Covered by Drupal's security advisory policy"
  5526. }
  5527. }
  5528. },
  5529. "notification-url": "https://packages.drupal.org/8/downloads",
  5530. "license": [
  5531. "GPL-2.0+"
  5532. ],
  5533. "authors": [
  5534. {
  5535. "name": "Marcin Grabias",
  5536. "homepage": "https://www.drupal.org/u/graber"
  5537. },
  5538. {
  5539. "name": "benjy",
  5540. "homepage": "https://www.drupal.org/user/1852732"
  5541. }
  5542. ],
  5543. "description": "Allows bulk edition of entity field values.",
  5544. "homepage": "https://www.drupal.org/project/views_bulk_edit",
  5545. "support": {
  5546. "source": "https://git.drupalcode.org/project/views_bulk_edit",
  5547. "issues": "https://www.drupal.org/project/issues/views_bulk_edit?version=8.x"
  5548. }
  5549. },
  5550. {
  5551. "name": "drupal/views_bulk_operations",
  5552. "version": "3.9.0",
  5553. "source": {
  5554. "type": "git",
  5555. "url": "https://git.drupalcode.org/project/views_bulk_operations.git",
  5556. "reference": "8.x-3.9"
  5557. },
  5558. "dist": {
  5559. "type": "zip",
  5560. "url": "https://ftp.drupal.org/files/projects/views_bulk_operations-8.x-3.9.zip",
  5561. "reference": "8.x-3.9",
  5562. "shasum": "d7f6e50c31d21ff32f21e8f4aaedb52f6dee2da8"
  5563. },
  5564. "require": {
  5565. "drupal/core": "^8.8 || ^9"
  5566. },
  5567. "require-dev": {
  5568. "drush/drush": "^10"
  5569. },
  5570. "suggest": {
  5571. "drush/drush": "^9 || ^10"
  5572. },
  5573. "type": "drupal-module",
  5574. "extra": {
  5575. "drupal": {
  5576. "version": "8.x-3.9",
  5577. "datestamp": "1597319021",
  5578. "security-coverage": {
  5579. "status": "covered",
  5580. "message": "Covered by Drupal's security advisory policy"
  5581. }
  5582. },
  5583. "drush": {
  5584. "services": {
  5585. "drush.services.yml": "^9 || ^10"
  5586. }
  5587. }
  5588. },
  5589. "notification-url": "https://packages.drupal.org/8/downloads",
  5590. "license": [
  5591. "GPL-2.0-or-later"
  5592. ],
  5593. "authors": [
  5594. {
  5595. "name": "Marcin Grabias",
  5596. "homepage": "https://www.drupal.org/u/graber"
  5597. },
  5598. {
  5599. "name": "Jon Pugh",
  5600. "homepage": "https://www.drupal.org/user/17028"
  5601. },
  5602. {
  5603. "name": "bojanz",
  5604. "homepage": "https://www.drupal.org/user/86106"
  5605. },
  5606. {
  5607. "name": "infojunkie",
  5608. "homepage": "https://www.drupal.org/user/48424"
  5609. },
  5610. {
  5611. "name": "joelpittet",
  5612. "homepage": "https://www.drupal.org/user/160302"
  5613. }
  5614. ],
  5615. "description": "Adds an ability to perform bulk operations on selected entities from view results. Provides an API to create such operations.",
  5616. "homepage": "https://www.drupal.org/project/views_bulk_operations",
  5617. "support": {
  5618. "source": "https://git.drupalcode.org/project/views_bulk_operations/-/tree/8.x-3.x",
  5619. "issues": "https://www.drupal.org/project/issues/views_bulk_operations?version=8.x",
  5620. "docs": "https://www.drupal.org/docs/8/modules/views-bulk-operations-vbo"
  5621. }
  5622. },
  5623. {
  5624. "name": "drupal/workflow",
  5625. "version": "dev-1.x",
  5626. "source": {
  5627. "type": "git",
  5628. "url": "https://git.drupalcode.org/project/workflow.git",
  5629. "reference": "d75c801c73cec1f73c6a4273abce42686734503c"
  5630. },
  5631. "require": {
  5632. "drupal/core": "^8 || ^9"
  5633. },
  5634. "type": "drupal-module",
  5635. "extra": {
  5636. "branch-alias": {
  5637. "dev-1.x": "1.x-dev"
  5638. },
  5639. "drupal": {
  5640. "version": "8.x-1.1+59-dev",
  5641. "datestamp": "1590561418",
  5642. "security-coverage": {
  5643. "status": "not-covered",
  5644. "message": "Dev releases are not covered by Drupal security advisories."
  5645. }
  5646. }
  5647. },
  5648. "notification-url": "https://packages.drupal.org/8/downloads",
  5649. "license": [
  5650. "GPL-2.0-or-later"
  5651. ],
  5652. "authors": [
  5653. {
  5654. "name": "Bastlynn",
  5655. "homepage": "https://www.drupal.org/user/275249"
  5656. },
  5657. {
  5658. "name": "Heine",
  5659. "homepage": "https://www.drupal.org/user/17943"
  5660. },
  5661. {
  5662. "name": "JacobSingh",
  5663. "homepage": "https://www.drupal.org/user/68912"
  5664. },
  5665. {
  5666. "name": "NancyDru",
  5667. "homepage": "https://www.drupal.org/user/101412"
  5668. },
  5669. {
  5670. "name": "eaton",
  5671. "homepage": "https://www.drupal.org/user/16496"
  5672. },
  5673. {
  5674. "name": "johnv",
  5675. "homepage": "https://www.drupal.org/user/591042"
  5676. },
  5677. {
  5678. "name": "jvandyk",
  5679. "homepage": "https://www.drupal.org/user/2375"
  5680. },
  5681. {
  5682. "name": "mfredrickson",
  5683. "homepage": "https://www.drupal.org/user/31994"
  5684. },
  5685. {
  5686. "name": "q0rban",
  5687. "homepage": "https://www.drupal.org/user/31022"
  5688. }
  5689. ],
  5690. "description": "Defines a field type with Workflows, containing customizable state transitions.",
  5691. "homepage": "https://www.drupal.org/project/workflow",
  5692. "support": {
  5693. "source": "https://git.drupalcode.org/project/workflow"
  5694. },
  5695. "time": "2020-05-27T07:25:14+00:00"
  5696. },
  5697. {
  5698. "name": "drush/drush",
  5699. "version": "9.7.2",
  5700. "source": {
  5701. "type": "git",
  5702. "url": "https://github.com/drush-ops/drush.git",
  5703. "reference": "ab5e345a72c9187a7d770486a09691f6526826aa"
  5704. },
  5705. "dist": {
  5706. "type": "zip",
  5707. "url": "https://api.github.com/repos/drush-ops/drush/zipball/ab5e345a72c9187a7d770486a09691f6526826aa",
  5708. "reference": "ab5e345a72c9187a7d770486a09691f6526826aa",
  5709. "shasum": ""
  5710. },
  5711. "require": {
  5712. "chi-teck/drupal-code-generator": "^1.28.1",
  5713. "composer/semver": "^1.4",
  5714. "consolidation/annotated-command": "^2.12",
  5715. "consolidation/config": "^1.2",
  5716. "consolidation/filter-via-dot-access-data": "^1",
  5717. "consolidation/output-formatters": "^3.3.1",
  5718. "consolidation/robo": "^1.4.6",
  5719. "consolidation/site-alias": "^3.0.0@stable",
  5720. "consolidation/site-process": "^2.0.3",
  5721. "ext-dom": "*",
  5722. "grasmash/yaml-expander": "^1.1.1",
  5723. "league/container": "~2",
  5724. "php": ">=5.6.0",
  5725. "psr/log": "~1.0",
  5726. "psy/psysh": "~0.6",
  5727. "symfony/console": "^3.4",
  5728. "symfony/event-dispatcher": "^3.4 || ^4.0",
  5729. "symfony/finder": "^3.4 || ^4.0",
  5730. "symfony/process": "^3.4",
  5731. "symfony/var-dumper": "^3.4 || ^4.0",
  5732. "symfony/yaml": "^3.4",
  5733. "webflo/drupal-finder": "^1.1",
  5734. "webmozart/path-util": "^2.1.0"
  5735. },
  5736. "require-dev": {
  5737. "composer/installers": "^1.2",
  5738. "cweagans/composer-patches": "~1.0",
  5739. "drupal/alinks": "1.0.0",
  5740. "drupal/devel": "^2",
  5741. "drupal/empty_theme": "1.0",
  5742. "g1a/composer-test-scenarios": "^3",
  5743. "lox/xhprof": "dev-master",
  5744. "phpunit/phpunit": "^4.8.36 || ^6.1",
  5745. "squizlabs/php_codesniffer": "^2.7 || ^3",
  5746. "vlucas/phpdotenv": "^2.4",
  5747. "webflo/drupal-core-require-dev": "8.7.x-dev",
  5748. "webflo/drupal-core-strict": "8.7.x-dev"
  5749. },
  5750. "bin": [
  5751. "drush"
  5752. ],
  5753. "type": "library",
  5754. "extra": {
  5755. "installer-paths": {
  5756. "sut/core": [
  5757. "type:drupal-core"
  5758. ],
  5759. "sut/libraries/{$name}": [
  5760. "type:drupal-library"
  5761. ],
  5762. "sut/modules/unish/{$name}": [
  5763. "drupal/devel"
  5764. ],
  5765. "sut/themes/unish/{$name}": [
  5766. "drupal/empty_theme"
  5767. ],
  5768. "sut/modules/contrib/{$name}": [
  5769. "type:drupal-module"
  5770. ],
  5771. "sut/profiles/contrib/{$name}": [
  5772. "type:drupal-profile"
  5773. ],
  5774. "sut/themes/contrib/{$name}": [
  5775. "type:drupal-theme"
  5776. ],
  5777. "sut/drush/contrib/{$name}": [
  5778. "type:drupal-drush"
  5779. ]
  5780. },
  5781. "scenarios": {
  5782. "php5": {
  5783. "config": {
  5784. "platform": {
  5785. "php": "5.6.38"
  5786. }
  5787. },
  5788. "require-dev": {
  5789. "webflo/drupal-core-strict": "8.6.x-dev",
  5790. "webflo/drupal-core-require-dev": "8.6.x-dev"
  5791. }
  5792. }
  5793. },
  5794. "branch-alias": {
  5795. "dev-master": "9.x-dev"
  5796. }
  5797. },
  5798. "autoload": {
  5799. "psr-4": {
  5800. "Drush\\": "src/",
  5801. "Drush\\Internal\\": "src/internal-forks"
  5802. }
  5803. },
  5804. "notification-url": "https://packagist.org/downloads/",
  5805. "license": [
  5806. "GPL-2.0-or-later"
  5807. ],
  5808. "authors": [
  5809. {
  5810. "name": "Moshe Weitzman",
  5811. "email": "weitzman@tejasa.com"
  5812. },
  5813. {
  5814. "name": "Owen Barton",
  5815. "email": "drupal@owenbarton.com"
  5816. },
  5817. {
  5818. "name": "Greg Anderson",
  5819. "email": "greg.1.anderson@greenknowe.org"
  5820. },
  5821. {
  5822. "name": "Jonathan Araña Cruz",
  5823. "email": "jonhattan@faita.net"
  5824. },
  5825. {
  5826. "name": "Jonathan Hedstrom",
  5827. "email": "jhedstrom@gmail.com"
  5828. },
  5829. {
  5830. "name": "Christopher Gervais",
  5831. "email": "chris@ergonlogic.com"
  5832. },
  5833. {
  5834. "name": "Dave Reid",
  5835. "email": "dave@davereid.net"
  5836. },
  5837. {
  5838. "name": "Damian Lee",
  5839. "email": "damiankloip@googlemail.com"
  5840. }
  5841. ],
  5842. "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.",
  5843. "homepage": "http://www.drush.org",
  5844. "time": "2020-02-09T17:29:51+00:00"
  5845. },
  5846. {
  5847. "name": "easyrdf/easyrdf",
  5848. "version": "0.9.1",
  5849. "source": {
  5850. "type": "git",
  5851. "url": "https://github.com/easyrdf/easyrdf.git",
  5852. "reference": "acd09dfe0555fbcfa254291e433c45fdd4652566"
  5853. },
  5854. "dist": {
  5855. "type": "zip",
  5856. "url": "https://api.github.com/repos/easyrdf/easyrdf/zipball/acd09dfe0555fbcfa254291e433c45fdd4652566",
  5857. "reference": "acd09dfe0555fbcfa254291e433c45fdd4652566",
  5858. "shasum": ""
  5859. },
  5860. "require": {
  5861. "ext-mbstring": "*",
  5862. "ext-pcre": "*",
  5863. "php": ">=5.2.8"
  5864. },
  5865. "require-dev": {
  5866. "phpunit/phpunit": "~3.5",
  5867. "sami/sami": "~1.4",
  5868. "squizlabs/php_codesniffer": "~1.4.3"
  5869. },
  5870. "suggest": {
  5871. "ml/json-ld": "~1.0"
  5872. },
  5873. "type": "library",
  5874. "autoload": {
  5875. "psr-0": {
  5876. "EasyRdf_": "lib/"
  5877. }
  5878. },
  5879. "notification-url": "https://packagist.org/downloads/",
  5880. "license": [
  5881. "BSD-3-Clause"
  5882. ],
  5883. "authors": [
  5884. {
  5885. "name": "Nicholas Humfrey",
  5886. "email": "njh@aelius.com",
  5887. "homepage": "http://www.aelius.com/njh/",
  5888. "role": "Developer"
  5889. },
  5890. {
  5891. "name": "Alexey Zakhlestin",
  5892. "email": "indeyets@gmail.com",
  5893. "role": "Developer"
  5894. }
  5895. ],
  5896. "description": "EasyRdf is a PHP library designed to make it easy to consume and produce RDF.",
  5897. "homepage": "http://www.easyrdf.org/",
  5898. "keywords": [
  5899. "Linked Data",
  5900. "RDF",
  5901. "Semantic Web",
  5902. "Turtle",
  5903. "rdfa",
  5904. "sparql"
  5905. ],
  5906. "time": "2015-02-27T09:45:49+00:00"
  5907. },
  5908. {
  5909. "name": "egulias/email-validator",
  5910. "version": "2.1.17",
  5911. "source": {
  5912. "type": "git",
  5913. "url": "https://github.com/egulias/EmailValidator.git",
  5914. "reference": "ade6887fd9bd74177769645ab5c474824f8a418a"
  5915. },
  5916. "dist": {
  5917. "type": "zip",
  5918. "url": "https://api.github.com/repos/egulias/EmailValidator/zipball/ade6887fd9bd74177769645ab5c474824f8a418a",
  5919. "reference": "ade6887fd9bd74177769645ab5c474824f8a418a",
  5920. "shasum": ""
  5921. },
  5922. "require": {
  5923. "doctrine/lexer": "^1.0.1",
  5924. "php": ">=5.5",
  5925. "symfony/polyfill-intl-idn": "^1.10"
  5926. },
  5927. "require-dev": {
  5928. "dominicsayers/isemail": "^3.0.7",
  5929. "phpunit/phpunit": "^4.8.36|^7.5.15",
  5930. "satooshi/php-coveralls": "^1.0.1"
  5931. },
  5932. "suggest": {
  5933. "ext-intl": "PHP Internationalization Libraries are required to use the SpoofChecking validation"
  5934. },
  5935. "type": "library",
  5936. "extra": {
  5937. "branch-alias": {
  5938. "dev-master": "2.1.x-dev"
  5939. }
  5940. },
  5941. "autoload": {
  5942. "psr-4": {
  5943. "Egulias\\EmailValidator\\": "EmailValidator"
  5944. }
  5945. },
  5946. "notification-url": "https://packagist.org/downloads/",
  5947. "license": [
  5948. "MIT"
  5949. ],
  5950. "authors": [
  5951. {
  5952. "name": "Eduardo Gulias Davis"
  5953. }
  5954. ],
  5955. "description": "A library for validating emails against several RFCs",
  5956. "homepage": "https://github.com/egulias/EmailValidator",
  5957. "keywords": [
  5958. "email",
  5959. "emailvalidation",
  5960. "emailvalidator",
  5961. "validation",
  5962. "validator"
  5963. ],
  5964. "time": "2020-02-13T22:36:52+00:00"
  5965. },
  5966. {
  5967. "name": "grasmash/expander",
  5968. "version": "1.0.0",
  5969. "source": {
  5970. "type": "git",
  5971. "url": "https://github.com/grasmash/expander.git",
  5972. "reference": "95d6037344a4be1dd5f8e0b0b2571a28c397578f"
  5973. },
  5974. "dist": {
  5975. "type": "zip",
  5976. "url": "https://api.github.com/repos/grasmash/expander/zipball/95d6037344a4be1dd5f8e0b0b2571a28c397578f",
  5977. "reference": "95d6037344a4be1dd5f8e0b0b2571a28c397578f",
  5978. "shasum": ""
  5979. },
  5980. "require": {
  5981. "dflydev/dot-access-data": "^1.1.0",
  5982. "php": ">=5.4"
  5983. },
  5984. "require-dev": {
  5985. "greg-1-anderson/composer-test-scenarios": "^1",
  5986. "phpunit/phpunit": "^4|^5.5.4",
  5987. "satooshi/php-coveralls": "^1.0.2|dev-master",
  5988. "squizlabs/php_codesniffer": "^2.7"
  5989. },
  5990. "type": "library",
  5991. "extra": {
  5992. "branch-alias": {
  5993. "dev-master": "1.x-dev"
  5994. }
  5995. },
  5996. "autoload": {
  5997. "psr-4": {
  5998. "Grasmash\\Expander\\": "src/"
  5999. }
  6000. },
  6001. "notification-url": "https://packagist.org/downloads/",
  6002. "license": [
  6003. "MIT"
  6004. ],
  6005. "authors": [
  6006. {
  6007. "name": "Matthew Grasmick"
  6008. }
  6009. ],
  6010. "description": "Expands internal property references in PHP arrays file.",
  6011. "time": "2017-12-21T22:14:55+00:00"
  6012. },
  6013. {
  6014. "name": "grasmash/yaml-expander",
  6015. "version": "1.4.0",
  6016. "source": {
  6017. "type": "git",
  6018. "url": "https://github.com/grasmash/yaml-expander.git",
  6019. "reference": "3f0f6001ae707a24f4d9733958d77d92bf9693b1"
  6020. },
  6021. "dist": {
  6022. "type": "zip",
  6023. "url": "https://api.github.com/repos/grasmash/yaml-expander/zipball/3f0f6001ae707a24f4d9733958d77d92bf9693b1",
  6024. "reference": "3f0f6001ae707a24f4d9733958d77d92bf9693b1",
  6025. "shasum": ""
  6026. },
  6027. "require": {
  6028. "dflydev/dot-access-data": "^1.1.0",
  6029. "php": ">=5.4",
  6030. "symfony/yaml": "^2.8.11|^3|^4"
  6031. },
  6032. "require-dev": {
  6033. "greg-1-anderson/composer-test-scenarios": "^1",
  6034. "phpunit/phpunit": "^4.8|^5.5.4",
  6035. "satooshi/php-coveralls": "^1.0.2|dev-master",
  6036. "squizlabs/php_codesniffer": "^2.7"
  6037. },
  6038. "type": "library",
  6039. "extra": {
  6040. "branch-alias": {
  6041. "dev-master": "1.x-dev"
  6042. }
  6043. },
  6044. "autoload": {
  6045. "psr-4": {
  6046. "Grasmash\\YamlExpander\\": "src/"
  6047. }
  6048. },
  6049. "notification-url": "https://packagist.org/downloads/",
  6050. "license": [
  6051. "MIT"
  6052. ],
  6053. "authors": [
  6054. {
  6055. "name": "Matthew Grasmick"
  6056. }
  6057. ],
  6058. "description": "Expands internal property references in a yaml file.",
  6059. "time": "2017-12-16T16:06:03+00:00"
  6060. },
  6061. {
  6062. "name": "guzzlehttp/guzzle",
  6063. "version": "6.5.4",
  6064. "source": {
  6065. "type": "git",
  6066. "url": "https://github.com/guzzle/guzzle.git",
  6067. "reference": "a4a1b6930528a8f7ee03518e6442ec7a44155d9d"
  6068. },
  6069. "dist": {
  6070. "type": "zip",
  6071. "url": "https://api.github.com/repos/guzzle/guzzle/zipball/a4a1b6930528a8f7ee03518e6442ec7a44155d9d",
  6072. "reference": "a4a1b6930528a8f7ee03518e6442ec7a44155d9d",
  6073. "shasum": ""
  6074. },
  6075. "require": {
  6076. "ext-json": "*",
  6077. "guzzlehttp/promises": "^1.0",
  6078. "guzzlehttp/psr7": "^1.6.1",
  6079. "php": ">=5.5",
  6080. "symfony/polyfill-intl-idn": "1.17.0"
  6081. },
  6082. "require-dev": {
  6083. "ext-curl": "*",
  6084. "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.4 || ^7.0",
  6085. "psr/log": "^1.1"
  6086. },
  6087. "suggest": {
  6088. "psr/log": "Required for using the Log middleware"
  6089. },
  6090. "type": "library",
  6091. "extra": {
  6092. "branch-alias": {
  6093. "dev-master": "6.5-dev"
  6094. }
  6095. },
  6096. "autoload": {
  6097. "psr-4": {
  6098. "GuzzleHttp\\": "src/"
  6099. },
  6100. "files": [
  6101. "src/functions_include.php"
  6102. ]
  6103. },
  6104. "notification-url": "https://packagist.org/downloads/",
  6105. "license": [
  6106. "MIT"
  6107. ],
  6108. "authors": [
  6109. {
  6110. "name": "Michael Dowling",
  6111. "email": "mtdowling@gmail.com",
  6112. "homepage": "https://github.com/mtdowling"
  6113. }
  6114. ],
  6115. "description": "Guzzle is a PHP HTTP client library",
  6116. "homepage": "http://guzzlephp.org/",
  6117. "keywords": [
  6118. "client",
  6119. "curl",
  6120. "framework",
  6121. "http",
  6122. "http client",
  6123. "rest",
  6124. "web service"
  6125. ],
  6126. "time": "2020-05-25T19:35:05+00:00"
  6127. },
  6128. {
  6129. "name": "guzzlehttp/promises",
  6130. "version": "v1.3.1",
  6131. "source": {
  6132. "type": "git",
  6133. "url": "https://github.com/guzzle/promises.git",
  6134. "reference": "a59da6cf61d80060647ff4d3eb2c03a2bc694646"
  6135. },
  6136. "dist": {
  6137. "type": "zip",
  6138. "url": "https://api.github.com/repos/guzzle/promises/zipball/a59da6cf61d80060647ff4d3eb2c03a2bc694646",
  6139. "reference": "a59da6cf61d80060647ff4d3eb2c03a2bc694646",
  6140. "shasum": ""
  6141. },
  6142. "require": {
  6143. "php": ">=5.5.0"
  6144. },
  6145. "require-dev": {
  6146. "phpunit/phpunit": "^4.0"
  6147. },
  6148. "type": "library",
  6149. "extra": {
  6150. "branch-alias": {
  6151. "dev-master": "1.4-dev"
  6152. }
  6153. },
  6154. "autoload": {
  6155. "psr-4": {
  6156. "GuzzleHttp\\Promise\\": "src/"
  6157. },
  6158. "files": [
  6159. "src/functions_include.php"
  6160. ]
  6161. },
  6162. "notification-url": "https://packagist.org/downloads/",
  6163. "license": [
  6164. "MIT"
  6165. ],
  6166. "authors": [
  6167. {
  6168. "name": "Michael Dowling",
  6169. "email": "mtdowling@gmail.com",
  6170. "homepage": "https://github.com/mtdowling"
  6171. }
  6172. ],
  6173. "description": "Guzzle promises library",
  6174. "keywords": [
  6175. "promise"
  6176. ],
  6177. "time": "2016-12-20T10:07:11+00:00"
  6178. },
  6179. {
  6180. "name": "guzzlehttp/psr7",
  6181. "version": "1.6.1",
  6182. "source": {
  6183. "type": "git",
  6184. "url": "https://github.com/guzzle/psr7.git",
  6185. "reference": "239400de7a173fe9901b9ac7c06497751f00727a"
  6186. },
  6187. "dist": {
  6188. "type": "zip",
  6189. "url": "https://api.github.com/repos/guzzle/psr7/zipball/239400de7a173fe9901b9ac7c06497751f00727a",
  6190. "reference": "239400de7a173fe9901b9ac7c06497751f00727a",
  6191. "shasum": ""
  6192. },
  6193. "require": {
  6194. "php": ">=5.4.0",
  6195. "psr/http-message": "~1.0",
  6196. "ralouphie/getallheaders": "^2.0.5 || ^3.0.0"
  6197. },
  6198. "provide": {
  6199. "psr/http-message-implementation": "1.0"
  6200. },
  6201. "require-dev": {
  6202. "ext-zlib": "*",
  6203. "phpunit/phpunit": "~4.8.36 || ^5.7.27 || ^6.5.8"
  6204. },
  6205. "suggest": {
  6206. "zendframework/zend-httphandlerrunner": "Emit PSR-7 responses"
  6207. },
  6208. "type": "library",
  6209. "extra": {
  6210. "branch-alias": {
  6211. "dev-master": "1.6-dev"
  6212. }
  6213. },
  6214. "autoload": {
  6215. "psr-4": {
  6216. "GuzzleHttp\\Psr7\\": "src/"
  6217. },
  6218. "files": [
  6219. "src/functions_include.php"
  6220. ]
  6221. },
  6222. "notification-url": "https://packagist.org/downloads/",
  6223. "license": [
  6224. "MIT"
  6225. ],
  6226. "authors": [
  6227. {
  6228. "name": "Michael Dowling",
  6229. "email": "mtdowling@gmail.com",
  6230. "homepage": "https://github.com/mtdowling"
  6231. },
  6232. {
  6233. "name": "Tobias Schultze",
  6234. "homepage": "https://github.com/Tobion"
  6235. }
  6236. ],
  6237. "description": "PSR-7 message implementation that also provides common utility methods",
  6238. "keywords": [
  6239. "http",
  6240. "message",
  6241. "psr-7",
  6242. "request",
  6243. "response",
  6244. "stream",
  6245. "uri",
  6246. "url"
  6247. ],
  6248. "time": "2019-07-01T23:21:34+00:00"
  6249. },
  6250. {
  6251. "name": "laminas/laminas-diactoros",
  6252. "version": "1.8.7p2",
  6253. "source": {
  6254. "type": "git",
  6255. "url": "https://github.com/laminas/laminas-diactoros.git",
  6256. "reference": "6991c1af7c8d2c8efee81b22ba97024781824aaa"
  6257. },
  6258. "dist": {
  6259. "type": "zip",
  6260. "url": "https://api.github.com/repos/laminas/laminas-diactoros/zipball/6991c1af7c8d2c8efee81b22ba97024781824aaa",
  6261. "reference": "6991c1af7c8d2c8efee81b22ba97024781824aaa",
  6262. "shasum": ""
  6263. },
  6264. "require": {
  6265. "laminas/laminas-zendframework-bridge": "^1.0",
  6266. "php": "^5.6 || ^7.0",
  6267. "psr/http-message": "^1.0"
  6268. },
  6269. "provide": {
  6270. "psr/http-message-implementation": "1.0"
  6271. },
  6272. "replace": {
  6273. "zendframework/zend-diactoros": "~1.8.7.0"
  6274. },
  6275. "require-dev": {
  6276. "ext-dom": "*",
  6277. "ext-libxml": "*",
  6278. "laminas/laminas-coding-standard": "~1.0",
  6279. "php-http/psr7-integration-tests": "dev-master",
  6280. "phpunit/phpunit": "^5.7.16 || ^6.0.8 || ^7.2.7"
  6281. },
  6282. "type": "library",
  6283. "extra": {
  6284. "branch-alias": {
  6285. "dev-release-1.8": "1.8.x-dev"
  6286. }
  6287. },
  6288. "autoload": {
  6289. "files": [
  6290. "src/functions/create_uploaded_file.php",
  6291. "src/functions/marshal_headers_from_sapi.php",
  6292. "src/functions/marshal_method_from_sapi.php",
  6293. "src/functions/marshal_protocol_version_from_sapi.php",
  6294. "src/functions/marshal_uri_from_sapi.php",
  6295. "src/functions/normalize_server.php",
  6296. "src/functions/normalize_uploaded_files.php",
  6297. "src/functions/parse_cookie_header.php",
  6298. "src/functions/create_uploaded_file.legacy.php",
  6299. "src/functions/marshal_headers_from_sapi.legacy.php",
  6300. "src/functions/marshal_method_from_sapi.legacy.php",
  6301. "src/functions/marshal_protocol_version_from_sapi.legacy.php",
  6302. "src/functions/marshal_uri_from_sapi.legacy.php",
  6303. "src/functions/normalize_server.legacy.php",
  6304. "src/functions/normalize_uploaded_files.legacy.php",
  6305. "src/functions/parse_cookie_header.legacy.php"
  6306. ],
  6307. "psr-4": {
  6308. "Laminas\\Diactoros\\": "src/"
  6309. }
  6310. },
  6311. "notification-url": "https://packagist.org/downloads/",
  6312. "license": [
  6313. "BSD-3-Clause"
  6314. ],
  6315. "description": "PSR HTTP Message implementations",
  6316. "homepage": "https://laminas.dev",
  6317. "keywords": [
  6318. "http",
  6319. "laminas",
  6320. "psr",
  6321. "psr-7"
  6322. ],
  6323. "time": "2020-03-23T15:28:28+00:00"
  6324. },
  6325. {
  6326. "name": "laminas/laminas-escaper",
  6327. "version": "2.6.1",
  6328. "source": {
  6329. "type": "git",
  6330. "url": "https://github.com/laminas/laminas-escaper.git",
  6331. "reference": "25f2a053eadfa92ddacb609dcbbc39362610da70"
  6332. },
  6333. "dist": {
  6334. "type": "zip",
  6335. "url": "https://api.github.com/repos/laminas/laminas-escaper/zipball/25f2a053eadfa92ddacb609dcbbc39362610da70",
  6336. "reference": "25f2a053eadfa92ddacb609dcbbc39362610da70",
  6337. "shasum": ""
  6338. },
  6339. "require": {
  6340. "laminas/laminas-zendframework-bridge": "^1.0",
  6341. "php": "^5.6 || ^7.0"
  6342. },
  6343. "replace": {
  6344. "zendframework/zend-escaper": "self.version"
  6345. },
  6346. "require-dev": {
  6347. "laminas/laminas-coding-standard": "~1.0.0",
  6348. "phpunit/phpunit": "^5.7.27 || ^6.5.8 || ^7.1.2"
  6349. },
  6350. "type": "library",
  6351. "extra": {
  6352. "branch-alias": {
  6353. "dev-master": "2.6.x-dev",
  6354. "dev-develop": "2.7.x-dev"
  6355. }
  6356. },
  6357. "autoload": {
  6358. "psr-4": {
  6359. "Laminas\\Escaper\\": "src/"
  6360. }
  6361. },
  6362. "notification-url": "https://packagist.org/downloads/",
  6363. "license": [
  6364. "BSD-3-Clause"
  6365. ],
  6366. "description": "Securely and safely escape HTML, HTML attributes, JavaScript, CSS, and URLs",
  6367. "homepage": "https://laminas.dev",
  6368. "keywords": [
  6369. "escaper",
  6370. "laminas"
  6371. ],
  6372. "time": "2019-12-31T16:43:30+00:00"
  6373. },
  6374. {
  6375. "name": "laminas/laminas-feed",
  6376. "version": "2.12.2",
  6377. "source": {
  6378. "type": "git",
  6379. "url": "https://github.com/laminas/laminas-feed.git",
  6380. "reference": "8a193ac96ebcb3e16b6ee754ac2a889eefacb654"
  6381. },
  6382. "dist": {
  6383. "type": "zip",
  6384. "url": "https://api.github.com/repos/laminas/laminas-feed/zipball/8a193ac96ebcb3e16b6ee754ac2a889eefacb654",
  6385. "reference": "8a193ac96ebcb3e16b6ee754ac2a889eefacb654",
  6386. "shasum": ""
  6387. },
  6388. "require": {
  6389. "ext-dom": "*",
  6390. "ext-libxml": "*",
  6391. "laminas/laminas-escaper": "^2.5.2",
  6392. "laminas/laminas-stdlib": "^3.2.1",
  6393. "laminas/laminas-zendframework-bridge": "^1.0",
  6394. "php": "^5.6 || ^7.0"
  6395. },
  6396. "replace": {
  6397. "zendframework/zend-feed": "^2.12.0"
  6398. },
  6399. "require-dev": {
  6400. "laminas/laminas-cache": "^2.7.2",
  6401. "laminas/laminas-coding-standard": "~1.0.0",
  6402. "laminas/laminas-db": "^2.8.2",
  6403. "laminas/laminas-http": "^2.7",
  6404. "laminas/laminas-servicemanager": "^2.7.8 || ^3.3",
  6405. "laminas/laminas-validator": "^2.10.1",
  6406. "phpunit/phpunit": "^5.7.27 || ^6.5.14 || ^7.5.20",
  6407. "psr/http-message": "^1.0.1"
  6408. },
  6409. "suggest": {
  6410. "laminas/laminas-cache": "Laminas\\Cache component, for optionally caching feeds between requests",
  6411. "laminas/laminas-db": "Laminas\\Db component, for use with PubSubHubbub",
  6412. "laminas/laminas-http": "Laminas\\Http for PubSubHubbub, and optionally for use with Laminas\\Feed\\Reader",
  6413. "laminas/laminas-servicemanager": "Laminas\\ServiceManager component, for easily extending ExtensionManager implementations",
  6414. "laminas/laminas-validator": "Laminas\\Validator component, for validating email addresses used in Atom feeds and entries when using the Writer subcomponent",
  6415. "psr/http-message": "PSR-7 ^1.0.1, if you wish to use Laminas\\Feed\\Reader\\Http\\Psr7ResponseDecorator"
  6416. },
  6417. "type": "library",
  6418. "extra": {
  6419. "branch-alias": {
  6420. "dev-master": "2.12.x-dev",
  6421. "dev-develop": "2.13.x-dev"
  6422. }
  6423. },
  6424. "autoload": {
  6425. "psr-4": {
  6426. "Laminas\\Feed\\": "src/"
  6427. }
  6428. },
  6429. "notification-url": "https://packagist.org/downloads/",
  6430. "license": [
  6431. "BSD-3-Clause"
  6432. ],
  6433. "description": "provides functionality for consuming RSS and Atom feeds",
  6434. "homepage": "https://laminas.dev",
  6435. "keywords": [
  6436. "feed",
  6437. "laminas"
  6438. ],
  6439. "time": "2020-03-29T12:36:29+00:00"
  6440. },
  6441. {
  6442. "name": "laminas/laminas-stdlib",
  6443. "version": "3.2.1",
  6444. "source": {
  6445. "type": "git",
  6446. "url": "https://github.com/laminas/laminas-stdlib.git",
  6447. "reference": "2b18347625a2f06a1a485acfbc870f699dbe51c6"
  6448. },
  6449. "dist": {
  6450. "type": "zip",
  6451. "url": "https://api.github.com/repos/laminas/laminas-stdlib/zipball/2b18347625a2f06a1a485acfbc870f699dbe51c6",
  6452. "reference": "2b18347625a2f06a1a485acfbc870f699dbe51c6",
  6453. "shasum": ""
  6454. },
  6455. "require": {
  6456. "laminas/laminas-zendframework-bridge": "^1.0",
  6457. "php": "^5.6 || ^7.0"
  6458. },
  6459. "replace": {
  6460. "zendframework/zend-stdlib": "self.version"
  6461. },
  6462. "require-dev": {
  6463. "laminas/laminas-coding-standard": "~1.0.0",
  6464. "phpbench/phpbench": "^0.13",
  6465. "phpunit/phpunit": "^5.7.27 || ^6.5.8 || ^7.1.2"
  6466. },
  6467. "type": "library",
  6468. "extra": {
  6469. "branch-alias": {
  6470. "dev-master": "3.2.x-dev",
  6471. "dev-develop": "3.3.x-dev"
  6472. }
  6473. },
  6474. "autoload": {
  6475. "psr-4": {
  6476. "Laminas\\Stdlib\\": "src/"
  6477. }
  6478. },
  6479. "notification-url": "https://packagist.org/downloads/",
  6480. "license": [
  6481. "BSD-3-Clause"
  6482. ],
  6483. "description": "SPL extensions, array utilities, error handlers, and more",
  6484. "homepage": "https://laminas.dev",
  6485. "keywords": [
  6486. "laminas",
  6487. "stdlib"
  6488. ],
  6489. "time": "2019-12-31T17:51:15+00:00"
  6490. },
  6491. {
  6492. "name": "laminas/laminas-zendframework-bridge",
  6493. "version": "1.0.4",
  6494. "source": {
  6495. "type": "git",
  6496. "url": "https://github.com/laminas/laminas-zendframework-bridge.git",
  6497. "reference": "fcd87520e4943d968557803919523772475e8ea3"
  6498. },
  6499. "dist": {
  6500. "type": "zip",
  6501. "url": "https://api.github.com/repos/laminas/laminas-zendframework-bridge/zipball/fcd87520e4943d968557803919523772475e8ea3",
  6502. "reference": "fcd87520e4943d968557803919523772475e8ea3",
  6503. "shasum": ""
  6504. },
  6505. "require": {
  6506. "php": "^5.6 || ^7.0"
  6507. },
  6508. "require-dev": {
  6509. "phpunit/phpunit": "^5.7 || ^6.5 || ^7.5 || ^8.1",
  6510. "squizlabs/php_codesniffer": "^3.5"
  6511. },
  6512. "type": "library",
  6513. "extra": {
  6514. "branch-alias": {
  6515. "dev-master": "1.0.x-dev",
  6516. "dev-develop": "1.1.x-dev"
  6517. },
  6518. "laminas": {
  6519. "module": "Laminas\\ZendFrameworkBridge"
  6520. }
  6521. },
  6522. "autoload": {
  6523. "files": [
  6524. "src/autoload.php"
  6525. ],
  6526. "psr-4": {
  6527. "Laminas\\ZendFrameworkBridge\\": "src//"
  6528. }
  6529. },
  6530. "notification-url": "https://packagist.org/downloads/",
  6531. "license": [
  6532. "BSD-3-Clause"
  6533. ],
  6534. "description": "Alias legacy ZF class names to Laminas Project equivalents.",
  6535. "keywords": [
  6536. "ZendFramework",
  6537. "autoloading",
  6538. "laminas",
  6539. "zf"
  6540. ],
  6541. "time": "2020-05-20T16:45:56+00:00"
  6542. },
  6543. {
  6544. "name": "league/container",
  6545. "version": "2.4.1",
  6546. "source": {
  6547. "type": "git",
  6548. "url": "https://github.com/thephpleague/container.git",
  6549. "reference": "43f35abd03a12977a60ffd7095efd6a7808488c0"
  6550. },
  6551. "dist": {
  6552. "type": "zip",
  6553. "url": "https://api.github.com/repos/thephpleague/container/zipball/43f35abd03a12977a60ffd7095efd6a7808488c0",
  6554. "reference": "43f35abd03a12977a60ffd7095efd6a7808488c0",
  6555. "shasum": ""
  6556. },
  6557. "require": {
  6558. "container-interop/container-interop": "^1.2",
  6559. "php": "^5.4.0 || ^7.0"
  6560. },
  6561. "provide": {
  6562. "container-interop/container-interop-implementation": "^1.2",
  6563. "psr/container-implementation": "^1.0"
  6564. },
  6565. "replace": {
  6566. "orno/di": "~2.0"
  6567. },
  6568. "require-dev": {
  6569. "phpunit/phpunit": "4.*"
  6570. },
  6571. "type": "library",
  6572. "extra": {
  6573. "branch-alias": {
  6574. "dev-2.x": "2.x-dev",
  6575. "dev-1.x": "1.x-dev"
  6576. }
  6577. },
  6578. "autoload": {
  6579. "psr-4": {
  6580. "League\\Container\\": "src"
  6581. }
  6582. },
  6583. "notification-url": "https://packagist.org/downloads/",
  6584. "license": [
  6585. "MIT"
  6586. ],
  6587. "authors": [
  6588. {
  6589. "name": "Phil Bennett",
  6590. "email": "philipobenito@gmail.com",
  6591. "homepage": "http://www.philipobenito.com",
  6592. "role": "Developer"
  6593. }
  6594. ],
  6595. "description": "A fast and intuitive dependency injection container.",
  6596. "homepage": "https://github.com/thephpleague/container",
  6597. "keywords": [
  6598. "container",
  6599. "dependency",
  6600. "di",
  6601. "injection",
  6602. "league",
  6603. "provider",
  6604. "service"
  6605. ],
  6606. "time": "2017-05-10T09:20:27+00:00"
  6607. },
  6608. {
  6609. "name": "masterminds/html5",
  6610. "version": "2.3.0",
  6611. "source": {
  6612. "type": "git",
  6613. "url": "https://github.com/Masterminds/html5-php.git",
  6614. "reference": "2c37c6c520b995b761674de3be8455a381679067"
  6615. },
  6616. "dist": {
  6617. "type": "zip",
  6618. "url": "https://api.github.com/repos/Masterminds/html5-php/zipball/2c37c6c520b995b761674de3be8455a381679067",
  6619. "reference": "2c37c6c520b995b761674de3be8455a381679067",
  6620. "shasum": ""
  6621. },
  6622. "require": {
  6623. "ext-libxml": "*",
  6624. "php": ">=5.3.0"
  6625. },
  6626. "require-dev": {
  6627. "phpunit/phpunit": "4.*",
  6628. "sami/sami": "~2.0",
  6629. "satooshi/php-coveralls": "1.0.*"
  6630. },
  6631. "type": "library",
  6632. "extra": {
  6633. "branch-alias": {
  6634. "dev-master": "2.2-dev"
  6635. }
  6636. },
  6637. "autoload": {
  6638. "psr-4": {
  6639. "Masterminds\\": "src"
  6640. }
  6641. },
  6642. "notification-url": "https://packagist.org/downloads/",
  6643. "license": [
  6644. "MIT"
  6645. ],
  6646. "authors": [
  6647. {
  6648. "name": "Matt Butcher",
  6649. "email": "technosophos@gmail.com"
  6650. },
  6651. {
  6652. "name": "Asmir Mustafic",
  6653. "email": "goetas@gmail.com"
  6654. },
  6655. {
  6656. "name": "Matt Farina",
  6657. "email": "matt@mattfarina.com"
  6658. }
  6659. ],
  6660. "description": "An HTML5 parser and serializer.",
  6661. "homepage": "http://masterminds.github.io/html5-php",
  6662. "keywords": [
  6663. "HTML5",
  6664. "dom",
  6665. "html",
  6666. "parser",
  6667. "querypath",
  6668. "serializer",
  6669. "xml"
  6670. ],
  6671. "time": "2017-09-04T12:26:28+00:00"
  6672. },
  6673. {
  6674. "name": "nikic/php-parser",
  6675. "version": "v4.4.0",
  6676. "source": {
  6677. "type": "git",
  6678. "url": "https://github.com/nikic/PHP-Parser.git",
  6679. "reference": "bd43ec7152eaaab3bd8c6d0aa95ceeb1df8ee120"
  6680. },
  6681. "dist": {
  6682. "type": "zip",
  6683. "url": "https://api.github.com/repos/nikic/PHP-Parser/zipball/bd43ec7152eaaab3bd8c6d0aa95ceeb1df8ee120",
  6684. "reference": "bd43ec7152eaaab3bd8c6d0aa95ceeb1df8ee120",
  6685. "shasum": ""
  6686. },
  6687. "require": {
  6688. "ext-tokenizer": "*",
  6689. "php": ">=7.0"
  6690. },
  6691. "require-dev": {
  6692. "ircmaxell/php-yacc": "0.0.5",
  6693. "phpunit/phpunit": "^6.5 || ^7.0 || ^8.0"
  6694. },
  6695. "bin": [
  6696. "bin/php-parse"
  6697. ],
  6698. "type": "library",
  6699. "extra": {
  6700. "branch-alias": {
  6701. "dev-master": "4.3-dev"
  6702. }
  6703. },
  6704. "autoload": {
  6705. "psr-4": {
  6706. "PhpParser\\": "lib/PhpParser"
  6707. }
  6708. },
  6709. "notification-url": "https://packagist.org/downloads/",
  6710. "license": [
  6711. "BSD-3-Clause"
  6712. ],
  6713. "authors": [
  6714. {
  6715. "name": "Nikita Popov"
  6716. }
  6717. ],
  6718. "description": "A PHP parser written in PHP",
  6719. "keywords": [
  6720. "parser",
  6721. "php"
  6722. ],
  6723. "time": "2020-04-10T16:34:50+00:00"
  6724. },
  6725. {
  6726. "name": "oomphinc/composer-installers-extender",
  6727. "version": "v1.1.2",
  6728. "source": {
  6729. "type": "git",
  6730. "url": "https://github.com/oomphinc/composer-installers-extender.git",
  6731. "reference": "ca1c4b16b0905c81d1e77e608f36a2eff1a56f56"
  6732. },
  6733. "dist": {
  6734. "type": "zip",
  6735. "url": "https://api.github.com/repos/oomphinc/composer-installers-extender/zipball/ca1c4b16b0905c81d1e77e608f36a2eff1a56f56",
  6736. "reference": "ca1c4b16b0905c81d1e77e608f36a2eff1a56f56",
  6737. "shasum": ""
  6738. },
  6739. "require": {
  6740. "composer-plugin-api": "^1.0",
  6741. "composer/installers": "^1.0"
  6742. },
  6743. "type": "composer-plugin",
  6744. "extra": {
  6745. "class": "OomphInc\\ComposerInstallersExtender\\Plugin"
  6746. },
  6747. "autoload": {
  6748. "psr-4": {
  6749. "OomphInc\\ComposerInstallersExtender\\": "src/"
  6750. }
  6751. },
  6752. "notification-url": "https://packagist.org/downloads/",
  6753. "license": [
  6754. "MIT"
  6755. ],
  6756. "authors": [
  6757. {
  6758. "name": "Stephen Beemsterboer",
  6759. "email": "stephen@oomphinc.com",
  6760. "homepage": "https://github.com/balbuf"
  6761. }
  6762. ],
  6763. "description": "Extend the composer/installers plugin to accept any arbitrary package type.",
  6764. "homepage": "http://www.oomphinc.com/",
  6765. "time": "2017-03-31T16:57:39+00:00"
  6766. },
  6767. {
  6768. "name": "paragonie/random_compat",
  6769. "version": "v9.99.99",
  6770. "source": {
  6771. "type": "git",
  6772. "url": "https://github.com/paragonie/random_compat.git",
  6773. "reference": "84b4dfb120c6f9b4ff7b3685f9b8f1aa365a0c95"
  6774. },
  6775. "dist": {
  6776. "type": "zip",
  6777. "url": "https://api.github.com/repos/paragonie/random_compat/zipball/84b4dfb120c6f9b4ff7b3685f9b8f1aa365a0c95",
  6778. "reference": "84b4dfb120c6f9b4ff7b3685f9b8f1aa365a0c95",
  6779. "shasum": ""
  6780. },
  6781. "require": {
  6782. "php": "^7"
  6783. },
  6784. "require-dev": {
  6785. "phpunit/phpunit": "4.*|5.*",
  6786. "vimeo/psalm": "^1"
  6787. },
  6788. "suggest": {
  6789. "ext-libsodium": "Provides a modern crypto API that can be used to generate random bytes."
  6790. },
  6791. "type": "library",
  6792. "notification-url": "https://packagist.org/downloads/",
  6793. "license": [
  6794. "MIT"
  6795. ],
  6796. "authors": [
  6797. {
  6798. "name": "Paragon Initiative Enterprises",
  6799. "email": "security@paragonie.com",
  6800. "homepage": "https://paragonie.com"
  6801. }
  6802. ],
  6803. "description": "PHP 5.x polyfill for random_bytes() and random_int() from PHP 7",
  6804. "keywords": [
  6805. "csprng",
  6806. "polyfill",
  6807. "pseudorandom",
  6808. "random"
  6809. ],
  6810. "time": "2018-07-02T15:55:56+00:00"
  6811. },
  6812. {
  6813. "name": "pear/archive_tar",
  6814. "version": "1.4.13",
  6815. "source": {
  6816. "type": "git",
  6817. "url": "https://github.com/pear/Archive_Tar.git",
  6818. "reference": "2b87b41178cc6d4ad3cba678a46a1cae49786011"
  6819. },
  6820. "dist": {
  6821. "type": "zip",
  6822. "url": "https://api.github.com/repos/pear/Archive_Tar/zipball/2b87b41178cc6d4ad3cba678a46a1cae49786011",
  6823. "reference": "2b87b41178cc6d4ad3cba678a46a1cae49786011",
  6824. "shasum": ""
  6825. },
  6826. "require": {
  6827. "pear/pear-core-minimal": "^1.10.0alpha2",
  6828. "php": ">=5.2.0"
  6829. },
  6830. "require-dev": {
  6831. "phpunit/phpunit": "*"
  6832. },
  6833. "suggest": {
  6834. "ext-bz2": "Bz2 compression support.",
  6835. "ext-xz": "Lzma2 compression support.",
  6836. "ext-zlib": "Gzip compression support."
  6837. },
  6838. "type": "library",
  6839. "extra": {
  6840. "branch-alias": {
  6841. "dev-master": "1.4.x-dev"
  6842. }
  6843. },
  6844. "autoload": {
  6845. "psr-0": {
  6846. "Archive_Tar": ""
  6847. }
  6848. },
  6849. "notification-url": "https://packagist.org/downloads/",
  6850. "include-path": [
  6851. "./"
  6852. ],
  6853. "license": [
  6854. "BSD-3-Clause"
  6855. ],
  6856. "authors": [
  6857. {
  6858. "name": "Vincent Blavet",
  6859. "email": "vincent@phpconcept.net"
  6860. },
  6861. {
  6862. "name": "Greg Beaver",
  6863. "email": "greg@chiaraquartet.net"
  6864. },
  6865. {
  6866. "name": "Michiel Rook",
  6867. "email": "mrook@php.net"
  6868. }
  6869. ],
  6870. "description": "Tar file management class with compression support (gzip, bzip2, lzma2)",
  6871. "homepage": "https://github.com/pear/Archive_Tar",
  6872. "keywords": [
  6873. "archive",
  6874. "tar"
  6875. ],
  6876. "funding": [
  6877. {
  6878. "url": "https://github.com/mrook",
  6879. "type": "github"
  6880. },
  6881. {
  6882. "url": "https://www.patreon.com/michielrook",
  6883. "type": "patreon"
  6884. }
  6885. ],
  6886. "time": "2021-02-16T10:50:50+00:00"
  6887. },
  6888. {
  6889. "name": "pear/console_getopt",
  6890. "version": "v1.4.3",
  6891. "source": {
  6892. "type": "git",
  6893. "url": "https://github.com/pear/Console_Getopt.git",
  6894. "reference": "a41f8d3e668987609178c7c4a9fe48fecac53fa0"
  6895. },
  6896. "dist": {
  6897. "type": "zip",
  6898. "url": "https://api.github.com/repos/pear/Console_Getopt/zipball/a41f8d3e668987609178c7c4a9fe48fecac53fa0",
  6899. "reference": "a41f8d3e668987609178c7c4a9fe48fecac53fa0",
  6900. "shasum": ""
  6901. },
  6902. "type": "library",
  6903. "autoload": {
  6904. "psr-0": {
  6905. "Console": "./"
  6906. }
  6907. },
  6908. "notification-url": "https://packagist.org/downloads/",
  6909. "include-path": [
  6910. "./"
  6911. ],
  6912. "license": [
  6913. "BSD-2-Clause"
  6914. ],
  6915. "authors": [
  6916. {
  6917. "name": "Andrei Zmievski",
  6918. "email": "andrei@php.net",
  6919. "role": "Lead"
  6920. },
  6921. {
  6922. "name": "Stig Bakken",
  6923. "email": "stig@php.net",
  6924. "role": "Developer"
  6925. },
  6926. {
  6927. "name": "Greg Beaver",
  6928. "email": "cellog@php.net",
  6929. "role": "Helper"
  6930. }
  6931. ],
  6932. "description": "More info available on: http://pear.php.net/package/Console_Getopt",
  6933. "time": "2019-11-20T18:27:48+00:00"
  6934. },
  6935. {
  6936. "name": "pear/pear-core-minimal",
  6937. "version": "v1.10.10",
  6938. "source": {
  6939. "type": "git",
  6940. "url": "https://github.com/pear/pear-core-minimal.git",
  6941. "reference": "625a3c429d9b2c1546438679074cac1b089116a7"
  6942. },
  6943. "dist": {
  6944. "type": "zip",
  6945. "url": "https://api.github.com/repos/pear/pear-core-minimal/zipball/625a3c429d9b2c1546438679074cac1b089116a7",
  6946. "reference": "625a3c429d9b2c1546438679074cac1b089116a7",
  6947. "shasum": ""
  6948. },
  6949. "require": {
  6950. "pear/console_getopt": "~1.4",
  6951. "pear/pear_exception": "~1.0"
  6952. },
  6953. "replace": {
  6954. "rsky/pear-core-min": "self.version"
  6955. },
  6956. "type": "library",
  6957. "autoload": {
  6958. "psr-0": {
  6959. "": "src/"
  6960. }
  6961. },
  6962. "notification-url": "https://packagist.org/downloads/",
  6963. "include-path": [
  6964. "src/"
  6965. ],
  6966. "license": [
  6967. "BSD-3-Clause"
  6968. ],
  6969. "authors": [
  6970. {
  6971. "name": "Christian Weiske",
  6972. "email": "cweiske@php.net",
  6973. "role": "Lead"
  6974. }
  6975. ],
  6976. "description": "Minimal set of PEAR core files to be used as composer dependency",
  6977. "time": "2019-11-19T19:00:24+00:00"
  6978. },
  6979. {
  6980. "name": "pear/pear_exception",
  6981. "version": "v1.0.1",
  6982. "source": {
  6983. "type": "git",
  6984. "url": "https://github.com/pear/PEAR_Exception.git",
  6985. "reference": "dbb42a5a0e45f3adcf99babfb2a1ba77b8ac36a7"
  6986. },
  6987. "dist": {
  6988. "type": "zip",
  6989. "url": "https://api.github.com/repos/pear/PEAR_Exception/zipball/dbb42a5a0e45f3adcf99babfb2a1ba77b8ac36a7",
  6990. "reference": "dbb42a5a0e45f3adcf99babfb2a1ba77b8ac36a7",
  6991. "shasum": ""
  6992. },
  6993. "require": {
  6994. "php": ">=4.4.0"
  6995. },
  6996. "require-dev": {
  6997. "phpunit/phpunit": "*"
  6998. },
  6999. "type": "class",
  7000. "extra": {
  7001. "branch-alias": {
  7002. "dev-master": "1.0.x-dev"
  7003. }
  7004. },
  7005. "autoload": {
  7006. "classmap": [
  7007. "PEAR/"
  7008. ]
  7009. },
  7010. "notification-url": "https://packagist.org/downloads/",
  7011. "include-path": [
  7012. "."
  7013. ],
  7014. "license": [
  7015. "BSD-2-Clause"
  7016. ],
  7017. "authors": [
  7018. {
  7019. "name": "Helgi Thormar",
  7020. "email": "dufuz@php.net"
  7021. },
  7022. {
  7023. "name": "Greg Beaver",
  7024. "email": "cellog@php.net"
  7025. }
  7026. ],
  7027. "description": "The PEAR Exception base class.",
  7028. "homepage": "https://github.com/pear/PEAR_Exception",
  7029. "keywords": [
  7030. "exception"
  7031. ],
  7032. "time": "2019-12-10T10:24:42+00:00"
  7033. },
  7034. {
  7035. "name": "psr/container",
  7036. "version": "1.0.0",
  7037. "source": {
  7038. "type": "git",
  7039. "url": "https://github.com/php-fig/container.git",
  7040. "reference": "b7ce3b176482dbbc1245ebf52b181af44c2cf55f"
  7041. },
  7042. "dist": {
  7043. "type": "zip",
  7044. "url": "https://api.github.com/repos/php-fig/container/zipball/b7ce3b176482dbbc1245ebf52b181af44c2cf55f",
  7045. "reference": "b7ce3b176482dbbc1245ebf52b181af44c2cf55f",
  7046. "shasum": ""
  7047. },
  7048. "require": {
  7049. "php": ">=5.3.0"
  7050. },
  7051. "type": "library",
  7052. "extra": {
  7053. "branch-alias": {
  7054. "dev-master": "1.0.x-dev"
  7055. }
  7056. },
  7057. "autoload": {
  7058. "psr-4": {
  7059. "Psr\\Container\\": "src/"
  7060. }
  7061. },
  7062. "notification-url": "https://packagist.org/downloads/",
  7063. "license": [
  7064. "MIT"
  7065. ],
  7066. "authors": [
  7067. {
  7068. "name": "PHP-FIG",
  7069. "homepage": "http://www.php-fig.org/"
  7070. }
  7071. ],
  7072. "description": "Common Container Interface (PHP FIG PSR-11)",
  7073. "homepage": "https://github.com/php-fig/container",
  7074. "keywords": [
  7075. "PSR-11",
  7076. "container",
  7077. "container-interface",
  7078. "container-interop",
  7079. "psr"
  7080. ],
  7081. "time": "2017-02-14T16:28:37+00:00"
  7082. },
  7083. {
  7084. "name": "psr/http-message",
  7085. "version": "1.0.1",
  7086. "source": {
  7087. "type": "git",
  7088. "url": "https://github.com/php-fig/http-message.git",
  7089. "reference": "f6561bf28d520154e4b0ec72be95418abe6d9363"
  7090. },
  7091. "dist": {
  7092. "type": "zip",
  7093. "url": "https://api.github.com/repos/php-fig/http-message/zipball/f6561bf28d520154e4b0ec72be95418abe6d9363",
  7094. "reference": "f6561bf28d520154e4b0ec72be95418abe6d9363",
  7095. "shasum": ""
  7096. },
  7097. "require": {
  7098. "php": ">=5.3.0"
  7099. },
  7100. "type": "library",
  7101. "extra": {
  7102. "branch-alias": {
  7103. "dev-master": "1.0.x-dev"
  7104. }
  7105. },
  7106. "autoload": {
  7107. "psr-4": {
  7108. "Psr\\Http\\Message\\": "src/"
  7109. }
  7110. },
  7111. "notification-url": "https://packagist.org/downloads/",
  7112. "license": [
  7113. "MIT"
  7114. ],
  7115. "authors": [
  7116. {
  7117. "name": "PHP-FIG",
  7118. "homepage": "http://www.php-fig.org/"
  7119. }
  7120. ],
  7121. "description": "Common interface for HTTP messages",
  7122. "homepage": "https://github.com/php-fig/http-message",
  7123. "keywords": [
  7124. "http",
  7125. "http-message",
  7126. "psr",
  7127. "psr-7",
  7128. "request",
  7129. "response"
  7130. ],
  7131. "time": "2016-08-06T14:39:51+00:00"
  7132. },
  7133. {
  7134. "name": "psr/log",
  7135. "version": "1.1.3",
  7136. "source": {
  7137. "type": "git",
  7138. "url": "https://github.com/php-fig/log.git",
  7139. "reference": "0f73288fd15629204f9d42b7055f72dacbe811fc"
  7140. },
  7141. "dist": {
  7142. "type": "zip",
  7143. "url": "https://api.github.com/repos/php-fig/log/zipball/0f73288fd15629204f9d42b7055f72dacbe811fc",
  7144. "reference": "0f73288fd15629204f9d42b7055f72dacbe811fc",
  7145. "shasum": ""
  7146. },
  7147. "require": {
  7148. "php": ">=5.3.0"
  7149. },
  7150. "type": "library",
  7151. "extra": {
  7152. "branch-alias": {
  7153. "dev-master": "1.1.x-dev"
  7154. }
  7155. },
  7156. "autoload": {
  7157. "psr-4": {
  7158. "Psr\\Log\\": "Psr/Log/"
  7159. }
  7160. },
  7161. "notification-url": "https://packagist.org/downloads/",
  7162. "license": [
  7163. "MIT"
  7164. ],
  7165. "authors": [
  7166. {
  7167. "name": "PHP-FIG",
  7168. "homepage": "http://www.php-fig.org/"
  7169. }
  7170. ],
  7171. "description": "Common interface for logging libraries",
  7172. "homepage": "https://github.com/php-fig/log",
  7173. "keywords": [
  7174. "log",
  7175. "psr",
  7176. "psr-3"
  7177. ],
  7178. "time": "2020-03-23T09:12:05+00:00"
  7179. },
  7180. {
  7181. "name": "psy/psysh",
  7182. "version": "v0.10.4",
  7183. "source": {
  7184. "type": "git",
  7185. "url": "https://github.com/bobthecow/psysh.git",
  7186. "reference": "a8aec1b2981ab66882a01cce36a49b6317dc3560"
  7187. },
  7188. "dist": {
  7189. "type": "zip",
  7190. "url": "https://api.github.com/repos/bobthecow/psysh/zipball/a8aec1b2981ab66882a01cce36a49b6317dc3560",
  7191. "reference": "a8aec1b2981ab66882a01cce36a49b6317dc3560",
  7192. "shasum": ""
  7193. },
  7194. "require": {
  7195. "dnoegel/php-xdg-base-dir": "0.1.*",
  7196. "ext-json": "*",
  7197. "ext-tokenizer": "*",
  7198. "nikic/php-parser": "~4.0|~3.0|~2.0|~1.3",
  7199. "php": "^8.0 || ^7.0 || ^5.5.9",
  7200. "symfony/console": "~5.0|~4.0|~3.0|^2.4.2|~2.3.10",
  7201. "symfony/var-dumper": "~5.0|~4.0|~3.0|~2.7"
  7202. },
  7203. "require-dev": {
  7204. "bamarni/composer-bin-plugin": "^1.2",
  7205. "hoa/console": "3.17.*"
  7206. },
  7207. "suggest": {
  7208. "ext-pcntl": "Enabling the PCNTL extension makes PsySH a lot happier :)",
  7209. "ext-pdo-sqlite": "The doc command requires SQLite to work.",
  7210. "ext-posix": "If you have PCNTL, you'll want the POSIX extension as well.",
  7211. "ext-readline": "Enables support for arrow-key history navigation, and showing and manipulating command history.",
  7212. "hoa/console": "A pure PHP readline implementation. You'll want this if your PHP install doesn't already support readline or libedit."
  7213. },
  7214. "bin": [
  7215. "bin/psysh"
  7216. ],
  7217. "type": "library",
  7218. "extra": {
  7219. "branch-alias": {
  7220. "dev-master": "0.10.x-dev"
  7221. }
  7222. },
  7223. "autoload": {
  7224. "files": [
  7225. "src/functions.php"
  7226. ],
  7227. "psr-4": {
  7228. "Psy\\": "src/"
  7229. }
  7230. },
  7231. "notification-url": "https://packagist.org/downloads/",
  7232. "license": [
  7233. "MIT"
  7234. ],
  7235. "authors": [
  7236. {
  7237. "name": "Justin Hileman",
  7238. "email": "justin@justinhileman.info",
  7239. "homepage": "http://justinhileman.com"
  7240. }
  7241. ],
  7242. "description": "An interactive shell for modern PHP.",
  7243. "homepage": "http://psysh.org",
  7244. "keywords": [
  7245. "REPL",
  7246. "console",
  7247. "interactive",
  7248. "shell"
  7249. ],
  7250. "time": "2020-05-03T19:32:03+00:00"
  7251. },
  7252. {
  7253. "name": "ralouphie/getallheaders",
  7254. "version": "3.0.3",
  7255. "source": {
  7256. "type": "git",
  7257. "url": "https://github.com/ralouphie/getallheaders.git",
  7258. "reference": "120b605dfeb996808c31b6477290a714d356e822"
  7259. },
  7260. "dist": {
  7261. "type": "zip",
  7262. "url": "https://api.github.com/repos/ralouphie/getallheaders/zipball/120b605dfeb996808c31b6477290a714d356e822",
  7263. "reference": "120b605dfeb996808c31b6477290a714d356e822",
  7264. "shasum": ""
  7265. },
  7266. "require": {
  7267. "php": ">=5.6"
  7268. },
  7269. "require-dev": {
  7270. "php-coveralls/php-coveralls": "^2.1",
  7271. "phpunit/phpunit": "^5 || ^6.5"
  7272. },
  7273. "type": "library",
  7274. "autoload": {
  7275. "files": [
  7276. "src/getallheaders.php"
  7277. ]
  7278. },
  7279. "notification-url": "https://packagist.org/downloads/",
  7280. "license": [
  7281. "MIT"
  7282. ],
  7283. "authors": [
  7284. {
  7285. "name": "Ralph Khattar",
  7286. "email": "ralph.khattar@gmail.com"
  7287. }
  7288. ],
  7289. "description": "A polyfill for getallheaders.",
  7290. "time": "2019-03-08T08:55:37+00:00"
  7291. },
  7292. {
  7293. "name": "stack/builder",
  7294. "version": "v1.0.5",
  7295. "source": {
  7296. "type": "git",
  7297. "url": "https://github.com/stackphp/builder.git",
  7298. "reference": "fb3d136d04c6be41120ebf8c0cc71fe9507d750a"
  7299. },
  7300. "dist": {
  7301. "type": "zip",
  7302. "url": "https://api.github.com/repos/stackphp/builder/zipball/fb3d136d04c6be41120ebf8c0cc71fe9507d750a",
  7303. "reference": "fb3d136d04c6be41120ebf8c0cc71fe9507d750a",
  7304. "shasum": ""
  7305. },
  7306. "require": {
  7307. "php": ">=5.3.0",
  7308. "symfony/http-foundation": "~2.1|~3.0|~4.0",
  7309. "symfony/http-kernel": "~2.1|~3.0|~4.0"
  7310. },
  7311. "require-dev": {
  7312. "silex/silex": "~1.0"
  7313. },
  7314. "type": "library",
  7315. "extra": {
  7316. "branch-alias": {
  7317. "dev-master": "1.0-dev"
  7318. }
  7319. },
  7320. "autoload": {
  7321. "psr-0": {
  7322. "Stack": "src"
  7323. }
  7324. },
  7325. "notification-url": "https://packagist.org/downloads/",
  7326. "license": [
  7327. "MIT"
  7328. ],
  7329. "authors": [
  7330. {
  7331. "name": "Igor Wiedler",
  7332. "email": "igor@wiedler.ch"
  7333. }
  7334. ],
  7335. "description": "Builder for stack middlewares based on HttpKernelInterface.",
  7336. "keywords": [
  7337. "stack"
  7338. ],
  7339. "time": "2017-11-18T14:57:29+00:00"
  7340. },
  7341. {
  7342. "name": "stecman/symfony-console-completion",
  7343. "version": "0.11.0",
  7344. "source": {
  7345. "type": "git",
  7346. "url": "https://github.com/stecman/symfony-console-completion.git",
  7347. "reference": "a9502dab59405e275a9f264536c4e1cb61fc3518"
  7348. },
  7349. "dist": {
  7350. "type": "zip",
  7351. "url": "https://api.github.com/repos/stecman/symfony-console-completion/zipball/a9502dab59405e275a9f264536c4e1cb61fc3518",
  7352. "reference": "a9502dab59405e275a9f264536c4e1cb61fc3518",
  7353. "shasum": ""
  7354. },
  7355. "require": {
  7356. "php": ">=5.3.2",
  7357. "symfony/console": "~2.3 || ~3.0 || ~4.0 || ~5.0"
  7358. },
  7359. "require-dev": {
  7360. "phpunit/phpunit": "~4.8.36 || ~5.7 || ~6.4"
  7361. },
  7362. "type": "library",
  7363. "extra": {
  7364. "branch-alias": {
  7365. "dev-master": "0.10.x-dev"
  7366. }
  7367. },
  7368. "autoload": {
  7369. "psr-4": {
  7370. "Stecman\\Component\\Symfony\\Console\\BashCompletion\\": "src/"
  7371. }
  7372. },
  7373. "notification-url": "https://packagist.org/downloads/",
  7374. "license": [
  7375. "MIT"
  7376. ],
  7377. "authors": [
  7378. {
  7379. "name": "Stephen Holdaway",
  7380. "email": "stephen@stecman.co.nz"
  7381. }
  7382. ],
  7383. "description": "Automatic BASH completion for Symfony Console Component based applications.",
  7384. "time": "2019-11-24T17:03:06+00:00"
  7385. },
  7386. {
  7387. "name": "symfony-cmf/routing",
  7388. "version": "1.4.1",
  7389. "source": {
  7390. "type": "git",
  7391. "url": "https://github.com/symfony-cmf/routing.git",
  7392. "reference": "fb1e7f85ff8c6866238b7e73a490a0a0243ae8ac"
  7393. },
  7394. "dist": {
  7395. "type": "zip",
  7396. "url": "https://api.github.com/repos/symfony-cmf/routing/zipball/fb1e7f85ff8c6866238b7e73a490a0a0243ae8ac",
  7397. "reference": "fb1e7f85ff8c6866238b7e73a490a0a0243ae8ac",
  7398. "shasum": ""
  7399. },
  7400. "require": {
  7401. "php": "^5.3.9|^7.0",
  7402. "psr/log": "1.*",
  7403. "symfony/http-kernel": "^2.2|3.*",
  7404. "symfony/routing": "^2.2|3.*"
  7405. },
  7406. "require-dev": {
  7407. "friendsofsymfony/jsrouting-bundle": "^1.1",
  7408. "symfony-cmf/testing": "^1.3",
  7409. "symfony/config": "^2.2|3.*",
  7410. "symfony/dependency-injection": "^2.0.5|3.*",
  7411. "symfony/event-dispatcher": "^2.1|3.*"
  7412. },
  7413. "suggest": {
  7414. "symfony/event-dispatcher": "DynamicRouter can optionally trigger an event at the start of matching. Minimal version (~2.1)"
  7415. },
  7416. "type": "library",
  7417. "extra": {
  7418. "branch-alias": {
  7419. "dev-master": "1.4-dev"
  7420. }
  7421. },
  7422. "autoload": {
  7423. "psr-4": {
  7424. "Symfony\\Cmf\\Component\\Routing\\": ""
  7425. }
  7426. },
  7427. "notification-url": "https://packagist.org/downloads/",
  7428. "license": [
  7429. "MIT"
  7430. ],
  7431. "authors": [
  7432. {
  7433. "name": "Symfony CMF Community",
  7434. "homepage": "https://github.com/symfony-cmf/Routing/contributors"
  7435. }
  7436. ],
  7437. "description": "Extends the Symfony2 routing component for dynamic routes and chaining several routers",
  7438. "homepage": "http://cmf.symfony.com",
  7439. "keywords": [
  7440. "database",
  7441. "routing"
  7442. ],
  7443. "time": "2017-05-09T08:10:41+00:00"
  7444. },
  7445. {
  7446. "name": "symfony/class-loader",
  7447. "version": "v3.4.41",
  7448. "source": {
  7449. "type": "git",
  7450. "url": "https://github.com/symfony/class-loader.git",
  7451. "reference": "e4636a4f23f157278a19e5db160c63de0da297d8"
  7452. },
  7453. "dist": {
  7454. "type": "zip",
  7455. "url": "https://api.github.com/repos/symfony/class-loader/zipball/e4636a4f23f157278a19e5db160c63de0da297d8",
  7456. "reference": "e4636a4f23f157278a19e5db160c63de0da297d8",
  7457. "shasum": ""
  7458. },
  7459. "require": {
  7460. "php": "^5.5.9|>=7.0.8"
  7461. },
  7462. "require-dev": {
  7463. "symfony/finder": "~2.8|~3.0|~4.0",
  7464. "symfony/polyfill-apcu": "~1.1"
  7465. },
  7466. "suggest": {
  7467. "symfony/polyfill-apcu": "For using ApcClassLoader on HHVM"
  7468. },
  7469. "type": "library",
  7470. "extra": {
  7471. "branch-alias": {
  7472. "dev-master": "3.4-dev"
  7473. }
  7474. },
  7475. "autoload": {
  7476. "psr-4": {
  7477. "Symfony\\Component\\ClassLoader\\": ""
  7478. },
  7479. "exclude-from-classmap": [
  7480. "/Tests/"
  7481. ]
  7482. },
  7483. "notification-url": "https://packagist.org/downloads/",
  7484. "license": [
  7485. "MIT"
  7486. ],
  7487. "authors": [
  7488. {
  7489. "name": "Fabien Potencier",
  7490. "email": "fabien@symfony.com"
  7491. },
  7492. {
  7493. "name": "Symfony Community",
  7494. "homepage": "https://symfony.com/contributors"
  7495. }
  7496. ],
  7497. "description": "Symfony ClassLoader Component",
  7498. "homepage": "https://symfony.com",
  7499. "time": "2020-03-15T09:38:08+00:00"
  7500. },
  7501. {
  7502. "name": "symfony/config",
  7503. "version": "v3.4.40",
  7504. "source": {
  7505. "type": "git",
  7506. "url": "https://github.com/symfony/config.git",
  7507. "reference": "3634991bea549e73c45a964c38f30ceeae6ed877"
  7508. },
  7509. "dist": {
  7510. "type": "zip",
  7511. "url": "https://api.github.com/repos/symfony/config/zipball/3634991bea549e73c45a964c38f30ceeae6ed877",
  7512. "reference": "3634991bea549e73c45a964c38f30ceeae6ed877",
  7513. "shasum": ""
  7514. },
  7515. "require": {
  7516. "php": "^5.5.9|>=7.0.8",
  7517. "symfony/filesystem": "~2.8|~3.0|~4.0",
  7518. "symfony/polyfill-ctype": "~1.8"
  7519. },
  7520. "conflict": {
  7521. "symfony/dependency-injection": "<3.3",
  7522. "symfony/finder": "<3.3"
  7523. },
  7524. "require-dev": {
  7525. "symfony/dependency-injection": "~3.3|~4.0",
  7526. "symfony/event-dispatcher": "~3.3|~4.0",
  7527. "symfony/finder": "~3.3|~4.0",
  7528. "symfony/yaml": "~3.0|~4.0"
  7529. },
  7530. "suggest": {
  7531. "symfony/yaml": "To use the yaml reference dumper"
  7532. },
  7533. "type": "library",
  7534. "extra": {
  7535. "branch-alias": {
  7536. "dev-master": "3.4-dev"
  7537. }
  7538. },
  7539. "autoload": {
  7540. "psr-4": {
  7541. "Symfony\\Component\\Config\\": ""
  7542. },
  7543. "exclude-from-classmap": [
  7544. "/Tests/"
  7545. ]
  7546. },
  7547. "notification-url": "https://packagist.org/downloads/",
  7548. "license": [
  7549. "MIT"
  7550. ],
  7551. "authors": [
  7552. {
  7553. "name": "Fabien Potencier",
  7554. "email": "fabien@symfony.com"
  7555. },
  7556. {
  7557. "name": "Symfony Community",
  7558. "homepage": "https://symfony.com/contributors"
  7559. }
  7560. ],
  7561. "description": "Symfony Config Component",
  7562. "homepage": "https://symfony.com",
  7563. "time": "2020-04-12T14:33:46+00:00"
  7564. },
  7565. {
  7566. "name": "symfony/console",
  7567. "version": "v3.4.41",
  7568. "source": {
  7569. "type": "git",
  7570. "url": "https://github.com/symfony/console.git",
  7571. "reference": "bfe29ead7e7b1cc9ce74c6a40d06ad1f96fced13"
  7572. },
  7573. "dist": {
  7574. "type": "zip",
  7575. "url": "https://api.github.com/repos/symfony/console/zipball/bfe29ead7e7b1cc9ce74c6a40d06ad1f96fced13",
  7576. "reference": "bfe29ead7e7b1cc9ce74c6a40d06ad1f96fced13",
  7577. "shasum": ""
  7578. },
  7579. "require": {
  7580. "php": "^5.5.9|>=7.0.8",
  7581. "symfony/debug": "~2.8|~3.0|~4.0",
  7582. "symfony/polyfill-mbstring": "~1.0"
  7583. },
  7584. "conflict": {
  7585. "symfony/dependency-injection": "<3.4",
  7586. "symfony/process": "<3.3"
  7587. },
  7588. "provide": {
  7589. "psr/log-implementation": "1.0"
  7590. },
  7591. "require-dev": {
  7592. "psr/log": "~1.0",
  7593. "symfony/config": "~3.3|~4.0",
  7594. "symfony/dependency-injection": "~3.4|~4.0",
  7595. "symfony/event-dispatcher": "~2.8|~3.0|~4.0",
  7596. "symfony/lock": "~3.4|~4.0",
  7597. "symfony/process": "~3.3|~4.0"
  7598. },
  7599. "suggest": {
  7600. "psr/log": "For using the console logger",
  7601. "symfony/event-dispatcher": "",
  7602. "symfony/lock": "",
  7603. "symfony/process": ""
  7604. },
  7605. "type": "library",
  7606. "extra": {
  7607. "branch-alias": {
  7608. "dev-master": "3.4-dev"
  7609. }
  7610. },
  7611. "autoload": {
  7612. "psr-4": {
  7613. "Symfony\\Component\\Console\\": ""
  7614. },
  7615. "exclude-from-classmap": [
  7616. "/Tests/"
  7617. ]
  7618. },
  7619. "notification-url": "https://packagist.org/downloads/",
  7620. "license": [
  7621. "MIT"
  7622. ],
  7623. "authors": [
  7624. {
  7625. "name": "Fabien Potencier",
  7626. "email": "fabien@symfony.com"
  7627. },
  7628. {
  7629. "name": "Symfony Community",
  7630. "homepage": "https://symfony.com/contributors"
  7631. }
  7632. ],
  7633. "description": "Symfony Console Component",
  7634. "homepage": "https://symfony.com",
  7635. "time": "2020-05-30T18:58:05+00:00"
  7636. },
  7637. {
  7638. "name": "symfony/css-selector",
  7639. "version": "v3.4.40",
  7640. "source": {
  7641. "type": "git",
  7642. "url": "https://github.com/symfony/css-selector.git",
  7643. "reference": "9ccf6e78077a3fc1596e6c7b5958008965a11518"
  7644. },
  7645. "dist": {
  7646. "type": "zip",
  7647. "url": "https://api.github.com/repos/symfony/css-selector/zipball/9ccf6e78077a3fc1596e6c7b5958008965a11518",
  7648. "reference": "9ccf6e78077a3fc1596e6c7b5958008965a11518",
  7649. "shasum": ""
  7650. },
  7651. "require": {
  7652. "php": "^5.5.9|>=7.0.8"
  7653. },
  7654. "type": "library",
  7655. "extra": {
  7656. "branch-alias": {
  7657. "dev-master": "3.4-dev"
  7658. }
  7659. },
  7660. "autoload": {
  7661. "psr-4": {
  7662. "Symfony\\Component\\CssSelector\\": ""
  7663. },
  7664. "exclude-from-classmap": [
  7665. "/Tests/"
  7666. ]
  7667. },
  7668. "notification-url": "https://packagist.org/downloads/",
  7669. "license": [
  7670. "MIT"
  7671. ],
  7672. "authors": [
  7673. {
  7674. "name": "Fabien Potencier",
  7675. "email": "fabien@symfony.com"
  7676. },
  7677. {
  7678. "name": "Jean-François Simon",
  7679. "email": "jeanfrancois.simon@sensiolabs.com"
  7680. },
  7681. {
  7682. "name": "Symfony Community",
  7683. "homepage": "https://symfony.com/contributors"
  7684. }
  7685. ],
  7686. "description": "Symfony CssSelector Component",
  7687. "homepage": "https://symfony.com",
  7688. "time": "2020-03-16T08:31:04+00:00"
  7689. },
  7690. {
  7691. "name": "symfony/debug",
  7692. "version": "v3.4.41",
  7693. "source": {
  7694. "type": "git",
  7695. "url": "https://github.com/symfony/debug.git",
  7696. "reference": "518c6a00d0872da30bd06aee3ea59a0a5cf54d6d"
  7697. },
  7698. "dist": {
  7699. "type": "zip",
  7700. "url": "https://api.github.com/repos/symfony/debug/zipball/518c6a00d0872da30bd06aee3ea59a0a5cf54d6d",
  7701. "reference": "518c6a00d0872da30bd06aee3ea59a0a5cf54d6d",
  7702. "shasum": ""
  7703. },
  7704. "require": {
  7705. "php": "^5.5.9|>=7.0.8",
  7706. "psr/log": "~1.0"
  7707. },
  7708. "conflict": {
  7709. "symfony/http-kernel": ">=2.3,<2.3.24|~2.4.0|>=2.5,<2.5.9|>=2.6,<2.6.2"
  7710. },
  7711. "require-dev": {
  7712. "symfony/http-kernel": "~2.8|~3.0|~4.0"
  7713. },
  7714. "type": "library",
  7715. "extra": {
  7716. "branch-alias": {
  7717. "dev-master": "3.4-dev"
  7718. }
  7719. },
  7720. "autoload": {
  7721. "psr-4": {
  7722. "Symfony\\Component\\Debug\\": ""
  7723. },
  7724. "exclude-from-classmap": [
  7725. "/Tests/"
  7726. ]
  7727. },
  7728. "notification-url": "https://packagist.org/downloads/",
  7729. "license": [
  7730. "MIT"
  7731. ],
  7732. "authors": [
  7733. {
  7734. "name": "Fabien Potencier",
  7735. "email": "fabien@symfony.com"
  7736. },
  7737. {
  7738. "name": "Symfony Community",
  7739. "homepage": "https://symfony.com/contributors"
  7740. }
  7741. ],
  7742. "description": "Symfony Debug Component",
  7743. "homepage": "https://symfony.com",
  7744. "time": "2020-05-22T18:25:20+00:00"
  7745. },
  7746. {
  7747. "name": "symfony/dependency-injection",
  7748. "version": "v3.4.41",
  7749. "source": {
  7750. "type": "git",
  7751. "url": "https://github.com/symfony/dependency-injection.git",
  7752. "reference": "e39380b7104b0ec538a075ae919f00c7e5267bac"
  7753. },
  7754. "dist": {
  7755. "type": "zip",
  7756. "url": "https://api.github.com/repos/symfony/dependency-injection/zipball/e39380b7104b0ec538a075ae919f00c7e5267bac",
  7757. "reference": "e39380b7104b0ec538a075ae919f00c7e5267bac",
  7758. "shasum": ""
  7759. },
  7760. "require": {
  7761. "php": "^5.5.9|>=7.0.8",
  7762. "psr/container": "^1.0"
  7763. },
  7764. "conflict": {
  7765. "symfony/config": "<3.3.7",
  7766. "symfony/finder": "<3.3",
  7767. "symfony/proxy-manager-bridge": "<3.4",
  7768. "symfony/yaml": "<3.4"
  7769. },
  7770. "provide": {
  7771. "psr/container-implementation": "1.0"
  7772. },
  7773. "require-dev": {
  7774. "symfony/config": "~3.3|~4.0",
  7775. "symfony/expression-language": "~2.8|~3.0|~4.0",
  7776. "symfony/yaml": "~3.4|~4.0"
  7777. },
  7778. "suggest": {
  7779. "symfony/config": "",
  7780. "symfony/expression-language": "For using expressions in service container configuration",
  7781. "symfony/finder": "For using double-star glob patterns or when GLOB_BRACE portability is required",
  7782. "symfony/proxy-manager-bridge": "Generate service proxies to lazy load them",
  7783. "symfony/yaml": ""
  7784. },
  7785. "type": "library",
  7786. "extra": {
  7787. "branch-alias": {
  7788. "dev-master": "3.4-dev"
  7789. }
  7790. },
  7791. "autoload": {
  7792. "psr-4": {
  7793. "Symfony\\Component\\DependencyInjection\\": ""
  7794. },
  7795. "exclude-from-classmap": [
  7796. "/Tests/"
  7797. ]
  7798. },
  7799. "notification-url": "https://packagist.org/downloads/",
  7800. "license": [
  7801. "MIT"
  7802. ],
  7803. "authors": [
  7804. {
  7805. "name": "Fabien Potencier",
  7806. "email": "fabien@symfony.com"
  7807. },
  7808. {
  7809. "name": "Symfony Community",
  7810. "homepage": "https://symfony.com/contributors"
  7811. }
  7812. ],
  7813. "description": "Symfony DependencyInjection Component",
  7814. "homepage": "https://symfony.com",
  7815. "time": "2020-05-30T21:06:01+00:00"
  7816. },
  7817. {
  7818. "name": "symfony/dom-crawler",
  7819. "version": "v3.4.40",
  7820. "source": {
  7821. "type": "git",
  7822. "url": "https://github.com/symfony/dom-crawler.git",
  7823. "reference": "ceacdab4abf7695ef6bec77c8b7983e1544c6358"
  7824. },
  7825. "dist": {
  7826. "type": "zip",
  7827. "url": "https://api.github.com/repos/symfony/dom-crawler/zipball/ceacdab4abf7695ef6bec77c8b7983e1544c6358",
  7828. "reference": "ceacdab4abf7695ef6bec77c8b7983e1544c6358",
  7829. "shasum": ""
  7830. },
  7831. "require": {
  7832. "php": "^5.5.9|>=7.0.8",
  7833. "symfony/polyfill-ctype": "~1.8",
  7834. "symfony/polyfill-mbstring": "~1.0"
  7835. },
  7836. "require-dev": {
  7837. "symfony/css-selector": "~2.8|~3.0|~4.0"
  7838. },
  7839. "suggest": {
  7840. "symfony/css-selector": ""
  7841. },
  7842. "type": "library",
  7843. "extra": {
  7844. "branch-alias": {
  7845. "dev-master": "3.4-dev"
  7846. }
  7847. },
  7848. "autoload": {
  7849. "psr-4": {
  7850. "Symfony\\Component\\DomCrawler\\": ""
  7851. },
  7852. "exclude-from-classmap": [
  7853. "/Tests/"
  7854. ]
  7855. },
  7856. "notification-url": "https://packagist.org/downloads/",
  7857. "license": [
  7858. "MIT"
  7859. ],
  7860. "authors": [
  7861. {
  7862. "name": "Fabien Potencier",
  7863. "email": "fabien@symfony.com"
  7864. },
  7865. {
  7866. "name": "Symfony Community",
  7867. "homepage": "https://symfony.com/contributors"
  7868. }
  7869. ],
  7870. "description": "Symfony DomCrawler Component",
  7871. "homepage": "https://symfony.com",
  7872. "time": "2020-03-16T08:31:04+00:00"
  7873. },
  7874. {
  7875. "name": "symfony/event-dispatcher",
  7876. "version": "v3.4.41",
  7877. "source": {
  7878. "type": "git",
  7879. "url": "https://github.com/symfony/event-dispatcher.git",
  7880. "reference": "14d978f8e8555f2de719c00eb65376be7d2e9081"
  7881. },
  7882. "dist": {
  7883. "type": "zip",
  7884. "url": "https://api.github.com/repos/symfony/event-dispatcher/zipball/14d978f8e8555f2de719c00eb65376be7d2e9081",
  7885. "reference": "14d978f8e8555f2de719c00eb65376be7d2e9081",
  7886. "shasum": ""
  7887. },
  7888. "require": {
  7889. "php": "^5.5.9|>=7.0.8"
  7890. },
  7891. "conflict": {
  7892. "symfony/dependency-injection": "<3.3"
  7893. },
  7894. "require-dev": {
  7895. "psr/log": "~1.0",
  7896. "symfony/config": "~2.8|~3.0|~4.0",
  7897. "symfony/dependency-injection": "~3.3|~4.0",
  7898. "symfony/expression-language": "~2.8|~3.0|~4.0",
  7899. "symfony/stopwatch": "~2.8|~3.0|~4.0"
  7900. },
  7901. "suggest": {
  7902. "symfony/dependency-injection": "",
  7903. "symfony/http-kernel": ""
  7904. },
  7905. "type": "library",
  7906. "extra": {
  7907. "branch-alias": {
  7908. "dev-master": "3.4-dev"
  7909. }
  7910. },
  7911. "autoload": {
  7912. "psr-4": {
  7913. "Symfony\\Component\\EventDispatcher\\": ""
  7914. },
  7915. "exclude-from-classmap": [
  7916. "/Tests/"
  7917. ]
  7918. },
  7919. "notification-url": "https://packagist.org/downloads/",
  7920. "license": [
  7921. "MIT"
  7922. ],
  7923. "authors": [
  7924. {
  7925. "name": "Fabien Potencier",
  7926. "email": "fabien@symfony.com"
  7927. },
  7928. {
  7929. "name": "Symfony Community",
  7930. "homepage": "https://symfony.com/contributors"
  7931. }
  7932. ],
  7933. "description": "Symfony EventDispatcher Component",
  7934. "homepage": "https://symfony.com",
  7935. "time": "2020-05-05T15:06:23+00:00"
  7936. },
  7937. {
  7938. "name": "symfony/filesystem",
  7939. "version": "v3.4.40",
  7940. "source": {
  7941. "type": "git",
  7942. "url": "https://github.com/symfony/filesystem.git",
  7943. "reference": "78a93e5606a19d0fb490afc3c4a9b7ecd86e1515"
  7944. },
  7945. "dist": {
  7946. "type": "zip",
  7947. "url": "https://api.github.com/repos/symfony/filesystem/zipball/78a93e5606a19d0fb490afc3c4a9b7ecd86e1515",
  7948. "reference": "78a93e5606a19d0fb490afc3c4a9b7ecd86e1515",
  7949. "shasum": ""
  7950. },
  7951. "require": {
  7952. "php": "^5.5.9|>=7.0.8",
  7953. "symfony/polyfill-ctype": "~1.8"
  7954. },
  7955. "type": "library",
  7956. "extra": {
  7957. "branch-alias": {
  7958. "dev-master": "3.4-dev"
  7959. }
  7960. },
  7961. "autoload": {
  7962. "psr-4": {
  7963. "Symfony\\Component\\Filesystem\\": ""
  7964. },
  7965. "exclude-from-classmap": [
  7966. "/Tests/"
  7967. ]
  7968. },
  7969. "notification-url": "https://packagist.org/downloads/",
  7970. "license": [
  7971. "MIT"
  7972. ],
  7973. "authors": [
  7974. {
  7975. "name": "Fabien Potencier",
  7976. "email": "fabien@symfony.com"
  7977. },
  7978. {
  7979. "name": "Symfony Community",
  7980. "homepage": "https://symfony.com/contributors"
  7981. }
  7982. ],
  7983. "description": "Symfony Filesystem Component",
  7984. "homepage": "https://symfony.com",
  7985. "time": "2020-04-12T16:54:01+00:00"
  7986. },
  7987. {
  7988. "name": "symfony/finder",
  7989. "version": "v3.4.40",
  7990. "source": {
  7991. "type": "git",
  7992. "url": "https://github.com/symfony/finder.git",
  7993. "reference": "5ec813ccafa8164ef21757e8c725d3a57da59200"
  7994. },
  7995. "dist": {
  7996. "type": "zip",
  7997. "url": "https://api.github.com/repos/symfony/finder/zipball/5ec813ccafa8164ef21757e8c725d3a57da59200",
  7998. "reference": "5ec813ccafa8164ef21757e8c725d3a57da59200",
  7999. "shasum": ""
  8000. },
  8001. "require": {
  8002. "php": "^5.5.9|>=7.0.8"
  8003. },
  8004. "type": "library",
  8005. "extra": {
  8006. "branch-alias": {
  8007. "dev-master": "3.4-dev"
  8008. }
  8009. },
  8010. "autoload": {
  8011. "psr-4": {
  8012. "Symfony\\Component\\Finder\\": ""
  8013. },
  8014. "exclude-from-classmap": [
  8015. "/Tests/"
  8016. ]
  8017. },
  8018. "notification-url": "https://packagist.org/downloads/",
  8019. "license": [
  8020. "MIT"
  8021. ],
  8022. "authors": [
  8023. {
  8024. "name": "Fabien Potencier",
  8025. "email": "fabien@symfony.com"
  8026. },
  8027. {
  8028. "name": "Symfony Community",
  8029. "homepage": "https://symfony.com/contributors"
  8030. }
  8031. ],
  8032. "description": "Symfony Finder Component",
  8033. "homepage": "https://symfony.com",
  8034. "time": "2020-02-14T07:34:21+00:00"
  8035. },
  8036. {
  8037. "name": "symfony/http-foundation",
  8038. "version": "v3.4.41",
  8039. "source": {
  8040. "type": "git",
  8041. "url": "https://github.com/symfony/http-foundation.git",
  8042. "reference": "fbd216d2304b1a3fe38d6392b04729c8dd356359"
  8043. },
  8044. "dist": {
  8045. "type": "zip",
  8046. "url": "https://api.github.com/repos/symfony/http-foundation/zipball/fbd216d2304b1a3fe38d6392b04729c8dd356359",
  8047. "reference": "fbd216d2304b1a3fe38d6392b04729c8dd356359",
  8048. "shasum": ""
  8049. },
  8050. "require": {
  8051. "php": "^5.5.9|>=7.0.8",
  8052. "symfony/polyfill-mbstring": "~1.1",
  8053. "symfony/polyfill-php70": "~1.6"
  8054. },
  8055. "require-dev": {
  8056. "symfony/expression-language": "~2.8|~3.0|~4.0"
  8057. },
  8058. "type": "library",
  8059. "extra": {
  8060. "branch-alias": {
  8061. "dev-master": "3.4-dev"
  8062. }
  8063. },
  8064. "autoload": {
  8065. "psr-4": {
  8066. "Symfony\\Component\\HttpFoundation\\": ""
  8067. },
  8068. "exclude-from-classmap": [
  8069. "/Tests/"
  8070. ]
  8071. },
  8072. "notification-url": "https://packagist.org/downloads/",
  8073. "license": [
  8074. "MIT"
  8075. ],
  8076. "authors": [
  8077. {
  8078. "name": "Fabien Potencier",
  8079. "email": "fabien@symfony.com"
  8080. },
  8081. {
  8082. "name": "Symfony Community",
  8083. "homepage": "https://symfony.com/contributors"
  8084. }
  8085. ],
  8086. "description": "Symfony HttpFoundation Component",
  8087. "homepage": "https://symfony.com",
  8088. "time": "2020-05-16T13:15:54+00:00"
  8089. },
  8090. {
  8091. "name": "symfony/http-kernel",
  8092. "version": "v3.4.44",
  8093. "source": {
  8094. "type": "git",
  8095. "url": "https://github.com/symfony/http-kernel.git",
  8096. "reference": "27dcaa8c6b18c75df9f37badeb4d3564ffaa1326"
  8097. },
  8098. "dist": {
  8099. "type": "zip",
  8100. "url": "https://api.github.com/repos/symfony/http-kernel/zipball/27dcaa8c6b18c75df9f37badeb4d3564ffaa1326",
  8101. "reference": "27dcaa8c6b18c75df9f37badeb4d3564ffaa1326",
  8102. "shasum": ""
  8103. },
  8104. "require": {
  8105. "php": "^5.5.9|>=7.0.8",
  8106. "psr/log": "~1.0",
  8107. "symfony/debug": "^3.3.3|~4.0",
  8108. "symfony/event-dispatcher": "~2.8|~3.0|~4.0",
  8109. "symfony/http-foundation": "~3.4.12|~4.0.12|^4.1.1",
  8110. "symfony/polyfill-ctype": "~1.8",
  8111. "symfony/polyfill-php56": "~1.8"
  8112. },
  8113. "conflict": {
  8114. "symfony/config": "<2.8",
  8115. "symfony/dependency-injection": "<3.4.10|<4.0.10,>=4",
  8116. "symfony/var-dumper": "<3.3",
  8117. "twig/twig": "<1.34|<2.4,>=2"
  8118. },
  8119. "provide": {
  8120. "psr/log-implementation": "1.0"
  8121. },
  8122. "require-dev": {
  8123. "psr/cache": "~1.0",
  8124. "symfony/browser-kit": "~2.8|~3.0|~4.0",
  8125. "symfony/class-loader": "~2.8|~3.0",
  8126. "symfony/config": "~2.8|~3.0|~4.0",
  8127. "symfony/console": "~2.8|~3.0|~4.0",
  8128. "symfony/css-selector": "~2.8|~3.0|~4.0",
  8129. "symfony/dependency-injection": "^3.4.10|^4.0.10",
  8130. "symfony/dom-crawler": "~2.8|~3.0|~4.0",
  8131. "symfony/expression-language": "~2.8|~3.0|~4.0",
  8132. "symfony/finder": "~2.8|~3.0|~4.0",
  8133. "symfony/process": "~2.8|~3.0|~4.0",
  8134. "symfony/routing": "~3.4|~4.0",
  8135. "symfony/stopwatch": "~2.8|~3.0|~4.0",
  8136. "symfony/templating": "~2.8|~3.0|~4.0",
  8137. "symfony/translation": "~2.8|~3.0|~4.0",
  8138. "symfony/var-dumper": "~3.3|~4.0"
  8139. },
  8140. "suggest": {
  8141. "symfony/browser-kit": "",
  8142. "symfony/config": "",
  8143. "symfony/console": "",
  8144. "symfony/dependency-injection": "",
  8145. "symfony/finder": "",
  8146. "symfony/var-dumper": ""
  8147. },
  8148. "type": "library",
  8149. "extra": {
  8150. "branch-alias": {
  8151. "dev-master": "3.4-dev"
  8152. }
  8153. },
  8154. "autoload": {
  8155. "psr-4": {
  8156. "Symfony\\Component\\HttpKernel\\": ""
  8157. },
  8158. "exclude-from-classmap": [
  8159. "/Tests/"
  8160. ]
  8161. },
  8162. "notification-url": "https://packagist.org/downloads/",
  8163. "license": [
  8164. "MIT"
  8165. ],
  8166. "authors": [
  8167. {
  8168. "name": "Fabien Potencier",
  8169. "email": "fabien@symfony.com"
  8170. },
  8171. {
  8172. "name": "Symfony Community",
  8173. "homepage": "https://symfony.com/contributors"
  8174. }
  8175. ],
  8176. "description": "Symfony HttpKernel Component",
  8177. "homepage": "https://symfony.com",
  8178. "time": "2020-08-31T05:53:42+00:00"
  8179. },
  8180. {
  8181. "name": "symfony/polyfill-ctype",
  8182. "version": "v1.17.0",
  8183. "source": {
  8184. "type": "git",
  8185. "url": "https://github.com/symfony/polyfill-ctype.git",
  8186. "reference": "e94c8b1bbe2bc77507a1056cdb06451c75b427f9"
  8187. },
  8188. "dist": {
  8189. "type": "zip",
  8190. "url": "https://api.github.com/repos/symfony/polyfill-ctype/zipball/e94c8b1bbe2bc77507a1056cdb06451c75b427f9",
  8191. "reference": "e94c8b1bbe2bc77507a1056cdb06451c75b427f9",
  8192. "shasum": ""
  8193. },
  8194. "require": {
  8195. "php": ">=5.3.3"
  8196. },
  8197. "suggest": {
  8198. "ext-ctype": "For best performance"
  8199. },
  8200. "type": "library",
  8201. "extra": {
  8202. "branch-alias": {
  8203. "dev-master": "1.17-dev"
  8204. }
  8205. },
  8206. "autoload": {
  8207. "psr-4": {
  8208. "Symfony\\Polyfill\\Ctype\\": ""
  8209. },
  8210. "files": [
  8211. "bootstrap.php"
  8212. ]
  8213. },
  8214. "notification-url": "https://packagist.org/downloads/",
  8215. "license": [
  8216. "MIT"
  8217. ],
  8218. "authors": [
  8219. {
  8220. "name": "Gert de Pagter",
  8221. "email": "BackEndTea@gmail.com"
  8222. },
  8223. {
  8224. "name": "Symfony Community",
  8225. "homepage": "https://symfony.com/contributors"
  8226. }
  8227. ],
  8228. "description": "Symfony polyfill for ctype functions",
  8229. "homepage": "https://symfony.com",
  8230. "keywords": [
  8231. "compatibility",
  8232. "ctype",
  8233. "polyfill",
  8234. "portable"
  8235. ],
  8236. "time": "2020-05-12T16:14:59+00:00"
  8237. },
  8238. {
  8239. "name": "symfony/polyfill-iconv",
  8240. "version": "v1.17.0",
  8241. "source": {
  8242. "type": "git",
  8243. "url": "https://github.com/symfony/polyfill-iconv.git",
  8244. "reference": "c4de7601eefbf25f9d47190abe07f79fe0a27424"
  8245. },
  8246. "dist": {
  8247. "type": "zip",
  8248. "url": "https://api.github.com/repos/symfony/polyfill-iconv/zipball/c4de7601eefbf25f9d47190abe07f79fe0a27424",
  8249. "reference": "c4de7601eefbf25f9d47190abe07f79fe0a27424",
  8250. "shasum": ""
  8251. },
  8252. "require": {
  8253. "php": ">=5.3.3"
  8254. },
  8255. "suggest": {
  8256. "ext-iconv": "For best performance"
  8257. },
  8258. "type": "library",
  8259. "extra": {
  8260. "branch-alias": {
  8261. "dev-master": "1.17-dev"
  8262. }
  8263. },
  8264. "autoload": {
  8265. "psr-4": {
  8266. "Symfony\\Polyfill\\Iconv\\": ""
  8267. },
  8268. "files": [
  8269. "bootstrap.php"
  8270. ]
  8271. },
  8272. "notification-url": "https://packagist.org/downloads/",
  8273. "license": [
  8274. "MIT"
  8275. ],
  8276. "authors": [
  8277. {
  8278. "name": "Nicolas Grekas",
  8279. "email": "p@tchwork.com"
  8280. },
  8281. {
  8282. "name": "Symfony Community",
  8283. "homepage": "https://symfony.com/contributors"
  8284. }
  8285. ],
  8286. "description": "Symfony polyfill for the Iconv extension",
  8287. "homepage": "https://symfony.com",
  8288. "keywords": [
  8289. "compatibility",
  8290. "iconv",
  8291. "polyfill",
  8292. "portable",
  8293. "shim"
  8294. ],
  8295. "time": "2020-05-12T16:47:27+00:00"
  8296. },
  8297. {
  8298. "name": "symfony/polyfill-intl-idn",
  8299. "version": "v1.17.0",
  8300. "source": {
  8301. "type": "git",
  8302. "url": "https://github.com/symfony/polyfill-intl-idn.git",
  8303. "reference": "3bff59ea7047e925be6b7f2059d60af31bb46d6a"
  8304. },
  8305. "dist": {
  8306. "type": "zip",
  8307. "url": "https://api.github.com/repos/symfony/polyfill-intl-idn/zipball/3bff59ea7047e925be6b7f2059d60af31bb46d6a",
  8308. "reference": "3bff59ea7047e925be6b7f2059d60af31bb46d6a",
  8309. "shasum": ""
  8310. },
  8311. "require": {
  8312. "php": ">=5.3.3",
  8313. "symfony/polyfill-mbstring": "^1.3",
  8314. "symfony/polyfill-php72": "^1.10"
  8315. },
  8316. "suggest": {
  8317. "ext-intl": "For best performance"
  8318. },
  8319. "type": "library",
  8320. "extra": {
  8321. "branch-alias": {
  8322. "dev-master": "1.17-dev"
  8323. }
  8324. },
  8325. "autoload": {
  8326. "psr-4": {
  8327. "Symfony\\Polyfill\\Intl\\Idn\\": ""
  8328. },
  8329. "files": [
  8330. "bootstrap.php"
  8331. ]
  8332. },
  8333. "notification-url": "https://packagist.org/downloads/",
  8334. "license": [
  8335. "MIT"
  8336. ],
  8337. "authors": [
  8338. {
  8339. "name": "Laurent Bassin",
  8340. "email": "laurent@bassin.info"
  8341. },
  8342. {
  8343. "name": "Symfony Community",
  8344. "homepage": "https://symfony.com/contributors"
  8345. }
  8346. ],
  8347. "description": "Symfony polyfill for intl's idn_to_ascii and idn_to_utf8 functions",
  8348. "homepage": "https://symfony.com",
  8349. "keywords": [
  8350. "compatibility",
  8351. "idn",
  8352. "intl",
  8353. "polyfill",
  8354. "portable",
  8355. "shim"
  8356. ],
  8357. "time": "2020-05-12T16:47:27+00:00"
  8358. },
  8359. {
  8360. "name": "symfony/polyfill-mbstring",
  8361. "version": "v1.17.0",
  8362. "source": {
  8363. "type": "git",
  8364. "url": "https://github.com/symfony/polyfill-mbstring.git",
  8365. "reference": "fa79b11539418b02fc5e1897267673ba2c19419c"
  8366. },
  8367. "dist": {
  8368. "type": "zip",
  8369. "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/fa79b11539418b02fc5e1897267673ba2c19419c",
  8370. "reference": "fa79b11539418b02fc5e1897267673ba2c19419c",
  8371. "shasum": ""
  8372. },
  8373. "require": {
  8374. "php": ">=5.3.3"
  8375. },
  8376. "suggest": {
  8377. "ext-mbstring": "For best performance"
  8378. },
  8379. "type": "library",
  8380. "extra": {
  8381. "branch-alias": {
  8382. "dev-master": "1.17-dev"
  8383. }
  8384. },
  8385. "autoload": {
  8386. "psr-4": {
  8387. "Symfony\\Polyfill\\Mbstring\\": ""
  8388. },
  8389. "files": [
  8390. "bootstrap.php"
  8391. ]
  8392. },
  8393. "notification-url": "https://packagist.org/downloads/",
  8394. "license": [
  8395. "MIT"
  8396. ],
  8397. "authors": [
  8398. {
  8399. "name": "Nicolas Grekas",
  8400. "email": "p@tchwork.com"
  8401. },
  8402. {
  8403. "name": "Symfony Community",
  8404. "homepage": "https://symfony.com/contributors"
  8405. }
  8406. ],
  8407. "description": "Symfony polyfill for the Mbstring extension",
  8408. "homepage": "https://symfony.com",
  8409. "keywords": [
  8410. "compatibility",
  8411. "mbstring",
  8412. "polyfill",
  8413. "portable",
  8414. "shim"
  8415. ],
  8416. "time": "2020-05-12T16:47:27+00:00"
  8417. },
  8418. {
  8419. "name": "symfony/polyfill-php56",
  8420. "version": "v1.17.0",
  8421. "source": {
  8422. "type": "git",
  8423. "url": "https://github.com/symfony/polyfill-php56.git",
  8424. "reference": "e3c8c138280cdfe4b81488441555583aa1984e23"
  8425. },
  8426. "dist": {
  8427. "type": "zip",
  8428. "url": "https://api.github.com/repos/symfony/polyfill-php56/zipball/e3c8c138280cdfe4b81488441555583aa1984e23",
  8429. "reference": "e3c8c138280cdfe4b81488441555583aa1984e23",
  8430. "shasum": ""
  8431. },
  8432. "require": {
  8433. "php": ">=5.3.3",
  8434. "symfony/polyfill-util": "~1.0"
  8435. },
  8436. "type": "library",
  8437. "extra": {
  8438. "branch-alias": {
  8439. "dev-master": "1.17-dev"
  8440. }
  8441. },
  8442. "autoload": {
  8443. "psr-4": {
  8444. "Symfony\\Polyfill\\Php56\\": ""
  8445. },
  8446. "files": [
  8447. "bootstrap.php"
  8448. ]
  8449. },
  8450. "notification-url": "https://packagist.org/downloads/",
  8451. "license": [
  8452. "MIT"
  8453. ],
  8454. "authors": [
  8455. {
  8456. "name": "Nicolas Grekas",
  8457. "email": "p@tchwork.com"
  8458. },
  8459. {
  8460. "name": "Symfony Community",
  8461. "homepage": "https://symfony.com/contributors"
  8462. }
  8463. ],
  8464. "description": "Symfony polyfill backporting some PHP 5.6+ features to lower PHP versions",
  8465. "homepage": "https://symfony.com",
  8466. "keywords": [
  8467. "compatibility",
  8468. "polyfill",
  8469. "portable",
  8470. "shim"
  8471. ],
  8472. "time": "2020-05-12T16:47:27+00:00"
  8473. },
  8474. {
  8475. "name": "symfony/polyfill-php70",
  8476. "version": "v1.17.0",
  8477. "source": {
  8478. "type": "git",
  8479. "url": "https://github.com/symfony/polyfill-php70.git",
  8480. "reference": "82225c2d7d23d7e70515496d249c0152679b468e"
  8481. },
  8482. "dist": {
  8483. "type": "zip",
  8484. "url": "https://api.github.com/repos/symfony/polyfill-php70/zipball/82225c2d7d23d7e70515496d249c0152679b468e",
  8485. "reference": "82225c2d7d23d7e70515496d249c0152679b468e",
  8486. "shasum": ""
  8487. },
  8488. "require": {
  8489. "paragonie/random_compat": "~1.0|~2.0|~9.99",
  8490. "php": ">=5.3.3"
  8491. },
  8492. "type": "library",
  8493. "extra": {
  8494. "branch-alias": {
  8495. "dev-master": "1.17-dev"
  8496. }
  8497. },
  8498. "autoload": {
  8499. "psr-4": {
  8500. "Symfony\\Polyfill\\Php70\\": ""
  8501. },
  8502. "files": [
  8503. "bootstrap.php"
  8504. ],
  8505. "classmap": [
  8506. "Resources/stubs"
  8507. ]
  8508. },
  8509. "notification-url": "https://packagist.org/downloads/",
  8510. "license": [
  8511. "MIT"
  8512. ],
  8513. "authors": [
  8514. {
  8515. "name": "Nicolas Grekas",
  8516. "email": "p@tchwork.com"
  8517. },
  8518. {
  8519. "name": "Symfony Community",
  8520. "homepage": "https://symfony.com/contributors"
  8521. }
  8522. ],
  8523. "description": "Symfony polyfill backporting some PHP 7.0+ features to lower PHP versions",
  8524. "homepage": "https://symfony.com",
  8525. "keywords": [
  8526. "compatibility",
  8527. "polyfill",
  8528. "portable",
  8529. "shim"
  8530. ],
  8531. "time": "2020-05-12T16:47:27+00:00"
  8532. },
  8533. {
  8534. "name": "symfony/polyfill-php72",
  8535. "version": "v1.17.0",
  8536. "source": {
  8537. "type": "git",
  8538. "url": "https://github.com/symfony/polyfill-php72.git",
  8539. "reference": "f048e612a3905f34931127360bdd2def19a5e582"
  8540. },
  8541. "dist": {
  8542. "type": "zip",
  8543. "url": "https://api.github.com/repos/symfony/polyfill-php72/zipball/f048e612a3905f34931127360bdd2def19a5e582",
  8544. "reference": "f048e612a3905f34931127360bdd2def19a5e582",
  8545. "shasum": ""
  8546. },
  8547. "require": {
  8548. "php": ">=5.3.3"
  8549. },
  8550. "type": "library",
  8551. "extra": {
  8552. "branch-alias": {
  8553. "dev-master": "1.17-dev"
  8554. }
  8555. },
  8556. "autoload": {
  8557. "psr-4": {
  8558. "Symfony\\Polyfill\\Php72\\": ""
  8559. },
  8560. "files": [
  8561. "bootstrap.php"
  8562. ]
  8563. },
  8564. "notification-url": "https://packagist.org/downloads/",
  8565. "license": [
  8566. "MIT"
  8567. ],
  8568. "authors": [
  8569. {
  8570. "name": "Nicolas Grekas",
  8571. "email": "p@tchwork.com"
  8572. },
  8573. {
  8574. "name": "Symfony Community",
  8575. "homepage": "https://symfony.com/contributors"
  8576. }
  8577. ],
  8578. "description": "Symfony polyfill backporting some PHP 7.2+ features to lower PHP versions",
  8579. "homepage": "https://symfony.com",
  8580. "keywords": [
  8581. "compatibility",
  8582. "polyfill",
  8583. "portable",
  8584. "shim"
  8585. ],
  8586. "time": "2020-05-12T16:47:27+00:00"
  8587. },
  8588. {
  8589. "name": "symfony/polyfill-util",
  8590. "version": "v1.17.0",
  8591. "source": {
  8592. "type": "git",
  8593. "url": "https://github.com/symfony/polyfill-util.git",
  8594. "reference": "4afb4110fc037752cf0ce9869f9ab8162c4e20d7"
  8595. },
  8596. "dist": {
  8597. "type": "zip",
  8598. "url": "https://api.github.com/repos/symfony/polyfill-util/zipball/4afb4110fc037752cf0ce9869f9ab8162c4e20d7",
  8599. "reference": "4afb4110fc037752cf0ce9869f9ab8162c4e20d7",
  8600. "shasum": ""
  8601. },
  8602. "require": {
  8603. "php": ">=5.3.3"
  8604. },
  8605. "type": "library",
  8606. "extra": {
  8607. "branch-alias": {
  8608. "dev-master": "1.17-dev"
  8609. }
  8610. },
  8611. "autoload": {
  8612. "psr-4": {
  8613. "Symfony\\Polyfill\\Util\\": ""
  8614. }
  8615. },
  8616. "notification-url": "https://packagist.org/downloads/",
  8617. "license": [
  8618. "MIT"
  8619. ],
  8620. "authors": [
  8621. {
  8622. "name": "Nicolas Grekas",
  8623. "email": "p@tchwork.com"
  8624. },
  8625. {
  8626. "name": "Symfony Community",
  8627. "homepage": "https://symfony.com/contributors"
  8628. }
  8629. ],
  8630. "description": "Symfony utilities for portability of PHP codes",
  8631. "homepage": "https://symfony.com",
  8632. "keywords": [
  8633. "compat",
  8634. "compatibility",
  8635. "polyfill",
  8636. "shim"
  8637. ],
  8638. "time": "2020-05-12T16:14:59+00:00"
  8639. },
  8640. {
  8641. "name": "symfony/process",
  8642. "version": "v3.4.41",
  8643. "source": {
  8644. "type": "git",
  8645. "url": "https://github.com/symfony/process.git",
  8646. "reference": "8a895f0c92a7c4b10db95139bcff71bdf66d4d21"
  8647. },
  8648. "dist": {
  8649. "type": "zip",
  8650. "url": "https://api.github.com/repos/symfony/process/zipball/8a895f0c92a7c4b10db95139bcff71bdf66d4d21",
  8651. "reference": "8a895f0c92a7c4b10db95139bcff71bdf66d4d21",
  8652. "shasum": ""
  8653. },
  8654. "require": {
  8655. "php": "^5.5.9|>=7.0.8"
  8656. },
  8657. "type": "library",
  8658. "extra": {
  8659. "branch-alias": {
  8660. "dev-master": "3.4-dev"
  8661. }
  8662. },
  8663. "autoload": {
  8664. "psr-4": {
  8665. "Symfony\\Component\\Process\\": ""
  8666. },
  8667. "exclude-from-classmap": [
  8668. "/Tests/"
  8669. ]
  8670. },
  8671. "notification-url": "https://packagist.org/downloads/",
  8672. "license": [
  8673. "MIT"
  8674. ],
  8675. "authors": [
  8676. {
  8677. "name": "Fabien Potencier",
  8678. "email": "fabien@symfony.com"
  8679. },
  8680. {
  8681. "name": "Symfony Community",
  8682. "homepage": "https://symfony.com/contributors"
  8683. }
  8684. ],
  8685. "description": "Symfony Process Component",
  8686. "homepage": "https://symfony.com",
  8687. "time": "2020-05-23T17:05:51+00:00"
  8688. },
  8689. {
  8690. "name": "symfony/psr-http-message-bridge",
  8691. "version": "v1.1.2",
  8692. "source": {
  8693. "type": "git",
  8694. "url": "https://github.com/symfony/psr-http-message-bridge.git",
  8695. "reference": "a33352af16f78a5ff4f9d90811536abf210df12b"
  8696. },
  8697. "dist": {
  8698. "type": "zip",
  8699. "url": "https://api.github.com/repos/symfony/psr-http-message-bridge/zipball/a33352af16f78a5ff4f9d90811536abf210df12b",
  8700. "reference": "a33352af16f78a5ff4f9d90811536abf210df12b",
  8701. "shasum": ""
  8702. },
  8703. "require": {
  8704. "php": "^5.3.3 || ^7.0",
  8705. "psr/http-message": "^1.0",
  8706. "symfony/http-foundation": "^2.3.42 || ^3.4 || ^4.0"
  8707. },
  8708. "require-dev": {
  8709. "symfony/phpunit-bridge": "^3.4 || ^4.0"
  8710. },
  8711. "suggest": {
  8712. "nyholm/psr7": "For a super lightweight PSR-7/17 implementation"
  8713. },
  8714. "type": "symfony-bridge",
  8715. "extra": {
  8716. "branch-alias": {
  8717. "dev-master": "1.1-dev"
  8718. }
  8719. },
  8720. "autoload": {
  8721. "psr-4": {
  8722. "Symfony\\Bridge\\PsrHttpMessage\\": ""
  8723. },
  8724. "exclude-from-classmap": [
  8725. "/Tests/"
  8726. ]
  8727. },
  8728. "notification-url": "https://packagist.org/downloads/",
  8729. "license": [
  8730. "MIT"
  8731. ],
  8732. "authors": [
  8733. {
  8734. "name": "Symfony Community",
  8735. "homepage": "http://symfony.com/contributors"
  8736. },
  8737. {
  8738. "name": "Fabien Potencier",
  8739. "email": "fabien@symfony.com"
  8740. }
  8741. ],
  8742. "description": "PSR HTTP message bridge",
  8743. "homepage": "http://symfony.com",
  8744. "keywords": [
  8745. "http",
  8746. "http-message",
  8747. "psr-17",
  8748. "psr-7"
  8749. ],
  8750. "time": "2019-04-03T17:09:40+00:00"
  8751. },
  8752. {
  8753. "name": "symfony/routing",
  8754. "version": "v3.4.41",
  8755. "source": {
  8756. "type": "git",
  8757. "url": "https://github.com/symfony/routing.git",
  8758. "reference": "e0d43b6f9417ad59ecaa8e2f799b79eef417387f"
  8759. },
  8760. "dist": {
  8761. "type": "zip",
  8762. "url": "https://api.github.com/repos/symfony/routing/zipball/e0d43b6f9417ad59ecaa8e2f799b79eef417387f",
  8763. "reference": "e0d43b6f9417ad59ecaa8e2f799b79eef417387f",
  8764. "shasum": ""
  8765. },
  8766. "require": {
  8767. "php": "^5.5.9|>=7.0.8"
  8768. },
  8769. "conflict": {
  8770. "symfony/config": "<3.3.1",
  8771. "symfony/dependency-injection": "<3.3",
  8772. "symfony/yaml": "<3.4"
  8773. },
  8774. "require-dev": {
  8775. "doctrine/annotations": "~1.0",
  8776. "psr/log": "~1.0",
  8777. "symfony/config": "^3.3.1|~4.0",
  8778. "symfony/dependency-injection": "~3.3|~4.0",
  8779. "symfony/expression-language": "~2.8|~3.0|~4.0",
  8780. "symfony/http-foundation": "~2.8|~3.0|~4.0",
  8781. "symfony/yaml": "~3.4|~4.0"
  8782. },
  8783. "suggest": {
  8784. "doctrine/annotations": "For using the annotation loader",
  8785. "symfony/config": "For using the all-in-one router or any loader",
  8786. "symfony/expression-language": "For using expression matching",
  8787. "symfony/http-foundation": "For using a Symfony Request object",
  8788. "symfony/yaml": "For using the YAML loader"
  8789. },
  8790. "type": "library",
  8791. "extra": {
  8792. "branch-alias": {
  8793. "dev-master": "3.4-dev"
  8794. }
  8795. },
  8796. "autoload": {
  8797. "psr-4": {
  8798. "Symfony\\Component\\Routing\\": ""
  8799. },
  8800. "exclude-from-classmap": [
  8801. "/Tests/"
  8802. ]
  8803. },
  8804. "notification-url": "https://packagist.org/downloads/",
  8805. "license": [
  8806. "MIT"
  8807. ],
  8808. "authors": [
  8809. {
  8810. "name": "Fabien Potencier",
  8811. "email": "fabien@symfony.com"
  8812. },
  8813. {
  8814. "name": "Symfony Community",
  8815. "homepage": "https://symfony.com/contributors"
  8816. }
  8817. ],
  8818. "description": "Symfony Routing Component",
  8819. "homepage": "https://symfony.com",
  8820. "keywords": [
  8821. "router",
  8822. "routing",
  8823. "uri",
  8824. "url"
  8825. ],
  8826. "time": "2020-05-30T19:50:06+00:00"
  8827. },
  8828. {
  8829. "name": "symfony/serializer",
  8830. "version": "v3.4.41",
  8831. "source": {
  8832. "type": "git",
  8833. "url": "https://github.com/symfony/serializer.git",
  8834. "reference": "0db90db012b1b0a04fbb2d64ae9160871cad9d4f"
  8835. },
  8836. "dist": {
  8837. "type": "zip",
  8838. "url": "https://api.github.com/repos/symfony/serializer/zipball/0db90db012b1b0a04fbb2d64ae9160871cad9d4f",
  8839. "reference": "0db90db012b1b0a04fbb2d64ae9160871cad9d4f",
  8840. "shasum": ""
  8841. },
  8842. "require": {
  8843. "php": "^5.5.9|>=7.0.8",
  8844. "symfony/polyfill-ctype": "~1.8"
  8845. },
  8846. "conflict": {
  8847. "phpdocumentor/type-resolver": "<0.2.1",
  8848. "symfony/dependency-injection": "<3.2",
  8849. "symfony/property-access": ">=3.0,<3.0.4|>=2.8,<2.8.4",
  8850. "symfony/property-info": "<3.1",
  8851. "symfony/yaml": "<3.4"
  8852. },
  8853. "require-dev": {
  8854. "doctrine/annotations": "~1.0",
  8855. "doctrine/cache": "~1.0",
  8856. "phpdocumentor/reflection-docblock": "^3.0|^4.0",
  8857. "symfony/cache": "~3.1|~4.0",
  8858. "symfony/config": "~2.8|~3.0|~4.0",
  8859. "symfony/dependency-injection": "~3.2|~4.0",
  8860. "symfony/http-foundation": "~2.8|~3.0|~4.0",
  8861. "symfony/property-access": "~2.8|~3.0|~4.0",
  8862. "symfony/property-info": "^3.4.13|~4.0",
  8863. "symfony/yaml": "~3.4|~4.0"
  8864. },
  8865. "suggest": {
  8866. "doctrine/annotations": "For using the annotation mapping. You will also need doctrine/cache.",
  8867. "doctrine/cache": "For using the default cached annotation reader and metadata cache.",
  8868. "psr/cache-implementation": "For using the metadata cache.",
  8869. "symfony/config": "For using the XML mapping loader.",
  8870. "symfony/http-foundation": "For using a MIME type guesser within the DataUriNormalizer.",
  8871. "symfony/property-access": "For using the ObjectNormalizer.",
  8872. "symfony/property-info": "To deserialize relations.",
  8873. "symfony/yaml": "For using the default YAML mapping loader."
  8874. },
  8875. "type": "library",
  8876. "extra": {
  8877. "branch-alias": {
  8878. "dev-master": "3.4-dev"
  8879. }
  8880. },
  8881. "autoload": {
  8882. "psr-4": {
  8883. "Symfony\\Component\\Serializer\\": ""
  8884. },
  8885. "exclude-from-classmap": [
  8886. "/Tests/"
  8887. ]
  8888. },
  8889. "notification-url": "https://packagist.org/downloads/",
  8890. "license": [
  8891. "MIT"
  8892. ],
  8893. "authors": [
  8894. {
  8895. "name": "Fabien Potencier",
  8896. "email": "fabien@symfony.com"
  8897. },
  8898. {
  8899. "name": "Symfony Community",
  8900. "homepage": "https://symfony.com/contributors"
  8901. }
  8902. ],
  8903. "description": "Symfony Serializer Component",
  8904. "homepage": "https://symfony.com",
  8905. "time": "2020-05-30T18:58:05+00:00"
  8906. },
  8907. {
  8908. "name": "symfony/translation",
  8909. "version": "v3.4.41",
  8910. "source": {
  8911. "type": "git",
  8912. "url": "https://github.com/symfony/translation.git",
  8913. "reference": "b0cd62ef0ff7ec31b67d78d7fc818e2bda4e844f"
  8914. },
  8915. "dist": {
  8916. "type": "zip",
  8917. "url": "https://api.github.com/repos/symfony/translation/zipball/b0cd62ef0ff7ec31b67d78d7fc818e2bda4e844f",
  8918. "reference": "b0cd62ef0ff7ec31b67d78d7fc818e2bda4e844f",
  8919. "shasum": ""
  8920. },
  8921. "require": {
  8922. "php": "^5.5.9|>=7.0.8",
  8923. "symfony/polyfill-mbstring": "~1.0"
  8924. },
  8925. "conflict": {
  8926. "symfony/config": "<2.8",
  8927. "symfony/dependency-injection": "<3.4",
  8928. "symfony/yaml": "<3.4"
  8929. },
  8930. "require-dev": {
  8931. "psr/log": "~1.0",
  8932. "symfony/config": "~2.8|~3.0|~4.0",
  8933. "symfony/dependency-injection": "~3.4|~4.0",
  8934. "symfony/finder": "~2.8|~3.0|~4.0",
  8935. "symfony/http-kernel": "~3.4|~4.0",
  8936. "symfony/intl": "^2.8.18|^3.2.5|~4.0",
  8937. "symfony/var-dumper": "~3.4|~4.0",
  8938. "symfony/yaml": "~3.4|~4.0"
  8939. },
  8940. "suggest": {
  8941. "psr/log-implementation": "To use logging capability in translator",
  8942. "symfony/config": "",
  8943. "symfony/yaml": ""
  8944. },
  8945. "type": "library",
  8946. "extra": {
  8947. "branch-alias": {
  8948. "dev-master": "3.4-dev"
  8949. }
  8950. },
  8951. "autoload": {
  8952. "psr-4": {
  8953. "Symfony\\Component\\Translation\\": ""
  8954. },
  8955. "exclude-from-classmap": [
  8956. "/Tests/"
  8957. ]
  8958. },
  8959. "notification-url": "https://packagist.org/downloads/",
  8960. "license": [
  8961. "MIT"
  8962. ],
  8963. "authors": [
  8964. {
  8965. "name": "Fabien Potencier",
  8966. "email": "fabien@symfony.com"
  8967. },
  8968. {
  8969. "name": "Symfony Community",
  8970. "homepage": "https://symfony.com/contributors"
  8971. }
  8972. ],
  8973. "description": "Symfony Translation Component",
  8974. "homepage": "https://symfony.com",
  8975. "time": "2020-05-30T18:58:05+00:00"
  8976. },
  8977. {
  8978. "name": "symfony/validator",
  8979. "version": "v3.4.41",
  8980. "source": {
  8981. "type": "git",
  8982. "url": "https://github.com/symfony/validator.git",
  8983. "reference": "5fb88120a11a75e17b602103a893dd8b27804529"
  8984. },
  8985. "dist": {
  8986. "type": "zip",
  8987. "url": "https://api.github.com/repos/symfony/validator/zipball/5fb88120a11a75e17b602103a893dd8b27804529",
  8988. "reference": "5fb88120a11a75e17b602103a893dd8b27804529",
  8989. "shasum": ""
  8990. },
  8991. "require": {
  8992. "php": "^5.5.9|>=7.0.8",
  8993. "symfony/polyfill-ctype": "~1.8",
  8994. "symfony/polyfill-mbstring": "~1.0",
  8995. "symfony/translation": "~2.8|~3.0|~4.0"
  8996. },
  8997. "conflict": {
  8998. "doctrine/lexer": "<1.0.2",
  8999. "phpunit/phpunit": "<4.8.35|<5.4.3,>=5.0",
  9000. "symfony/dependency-injection": "<3.3",
  9001. "symfony/http-kernel": "<3.3.5",
  9002. "symfony/yaml": "<3.4"
  9003. },
  9004. "require-dev": {
  9005. "doctrine/annotations": "~1.7",
  9006. "doctrine/cache": "~1.0",
  9007. "egulias/email-validator": "^2.1.10",
  9008. "symfony/cache": "~3.1|~4.0",
  9009. "symfony/config": "~2.8|~3.0|~4.0",
  9010. "symfony/dependency-injection": "~3.3|~4.0",
  9011. "symfony/expression-language": "~2.8|~3.0|~4.0",
  9012. "symfony/http-foundation": "~2.8|~3.0|~4.0",
  9013. "symfony/http-kernel": "^3.3.5|~4.0",
  9014. "symfony/intl": "^2.8.18|^3.2.5|~4.0",
  9015. "symfony/property-access": "~2.8|~3.0|~4.0",
  9016. "symfony/var-dumper": "~3.3|~4.0",
  9017. "symfony/yaml": "~3.4|~4.0"
  9018. },
  9019. "suggest": {
  9020. "doctrine/annotations": "For using the annotation mapping. You will also need doctrine/cache.",
  9021. "doctrine/cache": "For using the default cached annotation reader and metadata cache.",
  9022. "egulias/email-validator": "Strict (RFC compliant) email validation",
  9023. "psr/cache-implementation": "For using the metadata cache.",
  9024. "symfony/config": "",
  9025. "symfony/expression-language": "For using the Expression validator",
  9026. "symfony/http-foundation": "",
  9027. "symfony/intl": "",
  9028. "symfony/property-access": "For accessing properties within comparison constraints",
  9029. "symfony/yaml": ""
  9030. },
  9031. "type": "library",
  9032. "extra": {
  9033. "branch-alias": {
  9034. "dev-master": "3.4-dev"
  9035. }
  9036. },
  9037. "autoload": {
  9038. "psr-4": {
  9039. "Symfony\\Component\\Validator\\": ""
  9040. },
  9041. "exclude-from-classmap": [
  9042. "/Tests/"
  9043. ]
  9044. },
  9045. "notification-url": "https://packagist.org/downloads/",
  9046. "license": [
  9047. "MIT"
  9048. ],
  9049. "authors": [
  9050. {
  9051. "name": "Fabien Potencier",
  9052. "email": "fabien@symfony.com"
  9053. },
  9054. {
  9055. "name": "Symfony Community",
  9056. "homepage": "https://symfony.com/contributors"
  9057. }
  9058. ],
  9059. "description": "Symfony Validator Component",
  9060. "homepage": "https://symfony.com",
  9061. "time": "2020-05-30T18:43:38+00:00"
  9062. },
  9063. {
  9064. "name": "symfony/var-dumper",
  9065. "version": "v3.4.40",
  9066. "source": {
  9067. "type": "git",
  9068. "url": "https://github.com/symfony/var-dumper.git",
  9069. "reference": "13c03169ae485fc7f1a5143256622ce1bd3c77eb"
  9070. },
  9071. "dist": {
  9072. "type": "zip",
  9073. "url": "https://api.github.com/repos/symfony/var-dumper/zipball/13c03169ae485fc7f1a5143256622ce1bd3c77eb",
  9074. "reference": "13c03169ae485fc7f1a5143256622ce1bd3c77eb",
  9075. "shasum": ""
  9076. },
  9077. "require": {
  9078. "php": "^5.5.9|>=7.0.8",
  9079. "symfony/polyfill-mbstring": "~1.0"
  9080. },
  9081. "conflict": {
  9082. "phpunit/phpunit": "<4.8.35|<5.4.3,>=5.0"
  9083. },
  9084. "require-dev": {
  9085. "ext-iconv": "*",
  9086. "twig/twig": "~1.34|~2.4"
  9087. },
  9088. "suggest": {
  9089. "ext-iconv": "To convert non-UTF-8 strings to UTF-8 (or symfony/polyfill-iconv in case ext-iconv cannot be used).",
  9090. "ext-intl": "To show region name in time zone dump",
  9091. "ext-symfony_debug": ""
  9092. },
  9093. "type": "library",
  9094. "extra": {
  9095. "branch-alias": {
  9096. "dev-master": "3.4-dev"
  9097. }
  9098. },
  9099. "autoload": {
  9100. "files": [
  9101. "Resources/functions/dump.php"
  9102. ],
  9103. "psr-4": {
  9104. "Symfony\\Component\\VarDumper\\": ""
  9105. },
  9106. "exclude-from-classmap": [
  9107. "/Tests/"
  9108. ]
  9109. },
  9110. "notification-url": "https://packagist.org/downloads/",
  9111. "license": [
  9112. "MIT"
  9113. ],
  9114. "authors": [
  9115. {
  9116. "name": "Nicolas Grekas",
  9117. "email": "p@tchwork.com"
  9118. },
  9119. {
  9120. "name": "Symfony Community",
  9121. "homepage": "https://symfony.com/contributors"
  9122. }
  9123. ],
  9124. "description": "Symfony mechanism for exploring and dumping PHP variables",
  9125. "homepage": "https://symfony.com",
  9126. "keywords": [
  9127. "debug",
  9128. "dump"
  9129. ],
  9130. "time": "2020-03-17T22:27:36+00:00"
  9131. },
  9132. {
  9133. "name": "symfony/yaml",
  9134. "version": "v3.4.41",
  9135. "source": {
  9136. "type": "git",
  9137. "url": "https://github.com/symfony/yaml.git",
  9138. "reference": "7233ac2bfdde24d672f5305f2b3f6b5d741ef8eb"
  9139. },
  9140. "dist": {
  9141. "type": "zip",
  9142. "url": "https://api.github.com/repos/symfony/yaml/zipball/7233ac2bfdde24d672f5305f2b3f6b5d741ef8eb",
  9143. "reference": "7233ac2bfdde24d672f5305f2b3f6b5d741ef8eb",
  9144. "shasum": ""
  9145. },
  9146. "require": {
  9147. "php": "^5.5.9|>=7.0.8",
  9148. "symfony/polyfill-ctype": "~1.8"
  9149. },
  9150. "conflict": {
  9151. "symfony/console": "<3.4"
  9152. },
  9153. "require-dev": {
  9154. "symfony/console": "~3.4|~4.0"
  9155. },
  9156. "suggest": {
  9157. "symfony/console": "For validating YAML files using the lint command"
  9158. },
  9159. "type": "library",
  9160. "extra": {
  9161. "branch-alias": {
  9162. "dev-master": "3.4-dev"
  9163. }
  9164. },
  9165. "autoload": {
  9166. "psr-4": {
  9167. "Symfony\\Component\\Yaml\\": ""
  9168. },
  9169. "exclude-from-classmap": [
  9170. "/Tests/"
  9171. ]
  9172. },
  9173. "notification-url": "https://packagist.org/downloads/",
  9174. "license": [
  9175. "MIT"
  9176. ],
  9177. "authors": [
  9178. {
  9179. "name": "Fabien Potencier",
  9180. "email": "fabien@symfony.com"
  9181. },
  9182. {
  9183. "name": "Symfony Community",
  9184. "homepage": "https://symfony.com/contributors"
  9185. }
  9186. ],
  9187. "description": "Symfony Yaml Component",
  9188. "homepage": "https://symfony.com",
  9189. "time": "2020-05-11T07:51:54+00:00"
  9190. },
  9191. {
  9192. "name": "twig/twig",
  9193. "version": "v1.42.5",
  9194. "source": {
  9195. "type": "git",
  9196. "url": "https://github.com/twigphp/Twig.git",
  9197. "reference": "87b2ea9d8f6fd014d0621ca089bb1b3769ea3f8e"
  9198. },
  9199. "dist": {
  9200. "type": "zip",
  9201. "url": "https://api.github.com/repos/twigphp/Twig/zipball/87b2ea9d8f6fd014d0621ca089bb1b3769ea3f8e",
  9202. "reference": "87b2ea9d8f6fd014d0621ca089bb1b3769ea3f8e",
  9203. "shasum": ""
  9204. },
  9205. "require": {
  9206. "php": ">=5.5.0",
  9207. "symfony/polyfill-ctype": "^1.8"
  9208. },
  9209. "require-dev": {
  9210. "psr/container": "^1.0",
  9211. "symfony/phpunit-bridge": "^4.4|^5.0"
  9212. },
  9213. "type": "library",
  9214. "extra": {
  9215. "branch-alias": {
  9216. "dev-master": "1.42-dev"
  9217. }
  9218. },
  9219. "autoload": {
  9220. "psr-0": {
  9221. "Twig_": "lib/"
  9222. },
  9223. "psr-4": {
  9224. "Twig\\": "src/"
  9225. }
  9226. },
  9227. "notification-url": "https://packagist.org/downloads/",
  9228. "license": [
  9229. "BSD-3-Clause"
  9230. ],
  9231. "authors": [
  9232. {
  9233. "name": "Fabien Potencier",
  9234. "email": "fabien@symfony.com",
  9235. "homepage": "http://fabien.potencier.org",
  9236. "role": "Lead Developer"
  9237. },
  9238. {
  9239. "name": "Twig Team",
  9240. "role": "Contributors"
  9241. },
  9242. {
  9243. "name": "Armin Ronacher",
  9244. "email": "armin.ronacher@active-4.com",
  9245. "role": "Project Founder"
  9246. }
  9247. ],
  9248. "description": "Twig, the flexible, fast, and secure template language for PHP",
  9249. "homepage": "https://twig.symfony.com",
  9250. "keywords": [
  9251. "templating"
  9252. ],
  9253. "time": "2020-02-11T05:59:23+00:00"
  9254. },
  9255. {
  9256. "name": "typo3/phar-stream-wrapper",
  9257. "version": "v3.1.4",
  9258. "source": {
  9259. "type": "git",
  9260. "url": "https://github.com/TYPO3/phar-stream-wrapper.git",
  9261. "reference": "e0c1b495cfac064f4f5c4bcb6bf67bb7f345ed04"
  9262. },
  9263. "dist": {
  9264. "type": "zip",
  9265. "url": "https://api.github.com/repos/TYPO3/phar-stream-wrapper/zipball/e0c1b495cfac064f4f5c4bcb6bf67bb7f345ed04",
  9266. "reference": "e0c1b495cfac064f4f5c4bcb6bf67bb7f345ed04",
  9267. "shasum": ""
  9268. },
  9269. "require": {
  9270. "ext-json": "*",
  9271. "php": "^7.0"
  9272. },
  9273. "require-dev": {
  9274. "ext-xdebug": "*",
  9275. "phpunit/phpunit": "^6.5"
  9276. },
  9277. "suggest": {
  9278. "ext-fileinfo": "For PHP builtin file type guessing, otherwise uses internal processing"
  9279. },
  9280. "type": "library",
  9281. "extra": {
  9282. "branch-alias": {
  9283. "dev-master": "v3.x-dev"
  9284. }
  9285. },
  9286. "autoload": {
  9287. "psr-4": {
  9288. "TYPO3\\PharStreamWrapper\\": "src/"
  9289. }
  9290. },
  9291. "notification-url": "https://packagist.org/downloads/",
  9292. "license": [
  9293. "MIT"
  9294. ],
  9295. "description": "Interceptors for PHP's native phar:// stream handling",
  9296. "homepage": "https://typo3.org/",
  9297. "keywords": [
  9298. "phar",
  9299. "php",
  9300. "security",
  9301. "stream-wrapper"
  9302. ],
  9303. "time": "2019-12-10T11:53:27+00:00"
  9304. },
  9305. {
  9306. "name": "vlucas/phpdotenv",
  9307. "version": "v2.6.4",
  9308. "source": {
  9309. "type": "git",
  9310. "url": "https://github.com/vlucas/phpdotenv.git",
  9311. "reference": "67d472b1794c986381a8950e4958e1adb779d561"
  9312. },
  9313. "dist": {
  9314. "type": "zip",
  9315. "url": "https://api.github.com/repos/vlucas/phpdotenv/zipball/67d472b1794c986381a8950e4958e1adb779d561",
  9316. "reference": "67d472b1794c986381a8950e4958e1adb779d561",
  9317. "shasum": ""
  9318. },
  9319. "require": {
  9320. "php": "^5.3.9 || ^7.0 || ^8.0",
  9321. "symfony/polyfill-ctype": "^1.9"
  9322. },
  9323. "require-dev": {
  9324. "ext-filter": "*",
  9325. "ext-pcre": "*",
  9326. "phpunit/phpunit": "^4.8.35 || ^5.0"
  9327. },
  9328. "suggest": {
  9329. "ext-filter": "Required to use the boolean validator.",
  9330. "ext-pcre": "Required to use most of the library."
  9331. },
  9332. "type": "library",
  9333. "extra": {
  9334. "branch-alias": {
  9335. "dev-master": "2.6-dev"
  9336. }
  9337. },
  9338. "autoload": {
  9339. "psr-4": {
  9340. "Dotenv\\": "src/"
  9341. }
  9342. },
  9343. "notification-url": "https://packagist.org/downloads/",
  9344. "license": [
  9345. "BSD-3-Clause"
  9346. ],
  9347. "authors": [
  9348. {
  9349. "name": "Graham Campbell",
  9350. "email": "graham@alt-three.com",
  9351. "homepage": "https://gjcampbell.co.uk/"
  9352. },
  9353. {
  9354. "name": "Vance Lucas",
  9355. "email": "vance@vancelucas.com",
  9356. "homepage": "https://vancelucas.com/"
  9357. }
  9358. ],
  9359. "description": "Loads environment variables from `.env` to `getenv()`, `$_ENV` and `$_SERVER` automagically.",
  9360. "keywords": [
  9361. "dotenv",
  9362. "env",
  9363. "environment"
  9364. ],
  9365. "time": "2020-05-02T13:38:00+00:00"
  9366. },
  9367. {
  9368. "name": "webflo/drupal-finder",
  9369. "version": "1.2.0",
  9370. "source": {
  9371. "type": "git",
  9372. "url": "https://github.com/webflo/drupal-finder.git",
  9373. "reference": "123e248e14ee8dd3fbe89fb5a733a6cf91f5820e"
  9374. },
  9375. "dist": {
  9376. "type": "zip",
  9377. "url": "https://api.github.com/repos/webflo/drupal-finder/zipball/123e248e14ee8dd3fbe89fb5a733a6cf91f5820e",
  9378. "reference": "123e248e14ee8dd3fbe89fb5a733a6cf91f5820e",
  9379. "shasum": ""
  9380. },
  9381. "require": {
  9382. "ext-json": "*"
  9383. },
  9384. "require-dev": {
  9385. "mikey179/vfsstream": "^1.6",
  9386. "phpunit/phpunit": "^4.8"
  9387. },
  9388. "type": "library",
  9389. "autoload": {
  9390. "classmap": [
  9391. "src/DrupalFinder.php"
  9392. ]
  9393. },
  9394. "notification-url": "https://packagist.org/downloads/",
  9395. "license": [
  9396. "GPL-2.0+"
  9397. ],
  9398. "authors": [
  9399. {
  9400. "name": "Florian Weber",
  9401. "email": "florian@webflo.org"
  9402. }
  9403. ],
  9404. "description": "Helper class to locate a Drupal installation from a given path.",
  9405. "time": "2019-08-02T08:06:18+00:00"
  9406. },
  9407. {
  9408. "name": "webmozart/assert",
  9409. "version": "1.8.0",
  9410. "source": {
  9411. "type": "git",
  9412. "url": "https://github.com/webmozarts/assert.git",
  9413. "reference": "ab2cb0b3b559010b75981b1bdce728da3ee90ad6"
  9414. },
  9415. "dist": {
  9416. "type": "zip",
  9417. "url": "https://api.github.com/repos/webmozarts/assert/zipball/ab2cb0b3b559010b75981b1bdce728da3ee90ad6",
  9418. "reference": "ab2cb0b3b559010b75981b1bdce728da3ee90ad6",
  9419. "shasum": ""
  9420. },
  9421. "require": {
  9422. "php": "^5.3.3 || ^7.0",
  9423. "symfony/polyfill-ctype": "^1.8"
  9424. },
  9425. "conflict": {
  9426. "vimeo/psalm": "<3.9.1"
  9427. },
  9428. "require-dev": {
  9429. "phpunit/phpunit": "^4.8.36 || ^7.5.13"
  9430. },
  9431. "type": "library",
  9432. "autoload": {
  9433. "psr-4": {
  9434. "Webmozart\\Assert\\": "src/"
  9435. }
  9436. },
  9437. "notification-url": "https://packagist.org/downloads/",
  9438. "license": [
  9439. "MIT"
  9440. ],
  9441. "authors": [
  9442. {
  9443. "name": "Bernhard Schussek",
  9444. "email": "bschussek@gmail.com"
  9445. }
  9446. ],
  9447. "description": "Assertions to validate method input/output with nice error messages.",
  9448. "keywords": [
  9449. "assert",
  9450. "check",
  9451. "validate"
  9452. ],
  9453. "time": "2020-04-18T12:12:48+00:00"
  9454. },
  9455. {
  9456. "name": "webmozart/path-util",
  9457. "version": "2.3.0",
  9458. "source": {
  9459. "type": "git",
  9460. "url": "https://github.com/webmozart/path-util.git",
  9461. "reference": "d939f7edc24c9a1bb9c0dee5cb05d8e859490725"
  9462. },
  9463. "dist": {
  9464. "type": "zip",
  9465. "url": "https://api.github.com/repos/webmozart/path-util/zipball/d939f7edc24c9a1bb9c0dee5cb05d8e859490725",
  9466. "reference": "d939f7edc24c9a1bb9c0dee5cb05d8e859490725",
  9467. "shasum": ""
  9468. },
  9469. "require": {
  9470. "php": ">=5.3.3",
  9471. "webmozart/assert": "~1.0"
  9472. },
  9473. "require-dev": {
  9474. "phpunit/phpunit": "^4.6",
  9475. "sebastian/version": "^1.0.1"
  9476. },
  9477. "type": "library",
  9478. "extra": {
  9479. "branch-alias": {
  9480. "dev-master": "2.3-dev"
  9481. }
  9482. },
  9483. "autoload": {
  9484. "psr-4": {
  9485. "Webmozart\\PathUtil\\": "src/"
  9486. }
  9487. },
  9488. "notification-url": "https://packagist.org/downloads/",
  9489. "license": [
  9490. "MIT"
  9491. ],
  9492. "authors": [
  9493. {
  9494. "name": "Bernhard Schussek",
  9495. "email": "bschussek@gmail.com"
  9496. }
  9497. ],
  9498. "description": "A robust cross-platform utility for normalizing, comparing and modifying file paths.",
  9499. "time": "2015-12-17T08:42:14+00:00"
  9500. },
  9501. {
  9502. "name": "zaporylie/composer-drupal-optimizations",
  9503. "version": "1.1.1",
  9504. "source": {
  9505. "type": "git",
  9506. "url": "https://github.com/zaporylie/composer-drupal-optimizations.git",
  9507. "reference": "fb231d92adc862a2c9276bccbc90f684816dc75d"
  9508. },
  9509. "dist": {
  9510. "type": "zip",
  9511. "url": "https://api.github.com/repos/zaporylie/composer-drupal-optimizations/zipball/fb231d92adc862a2c9276bccbc90f684816dc75d",
  9512. "reference": "fb231d92adc862a2c9276bccbc90f684816dc75d",
  9513. "shasum": ""
  9514. },
  9515. "require": {
  9516. "composer-plugin-api": "^1.1"
  9517. },
  9518. "require-dev": {
  9519. "composer/composer": "^1.6",
  9520. "phpunit/phpunit": "^6"
  9521. },
  9522. "type": "composer-plugin",
  9523. "extra": {
  9524. "class": "zaporylie\\ComposerDrupalOptimizations\\Plugin"
  9525. },
  9526. "autoload": {
  9527. "psr-4": {
  9528. "zaporylie\\ComposerDrupalOptimizations\\": "src/"
  9529. }
  9530. },
  9531. "notification-url": "https://packagist.org/downloads/",
  9532. "license": [
  9533. "GPL-2.0-or-later"
  9534. ],
  9535. "authors": [
  9536. {
  9537. "name": "Jakub Piasecki",
  9538. "email": "jakub@piaseccy.pl"
  9539. }
  9540. ],
  9541. "description": "Composer plugin to improve composer performance for Drupal projects",
  9542. "time": "2019-10-02T17:01:11+00:00"
  9543. }
  9544. ],
  9545. "packages-dev": [],
  9546. "aliases": [],
  9547. "minimum-stability": "dev",
  9548. "stability-flags": {
  9549. "drupal/bulkdelete": 20,
  9550. "drupal/domain_menu_access": 20,
  9551. "drupal/entity": 20,
  9552. "drupal/filefield_sources": 20,
  9553. "drupal/filter_perms": 20,
  9554. "drupal/maillog": 20,
  9555. "drupal/path_alias_xt": 20,
  9556. "drupal/synonyms": 20,
  9557. "drupal/toolbar_themes": 20,
  9558. "drupal/workflow": 20
  9559. },
  9560. "prefer-stable": true,
  9561. "prefer-lowest": false,
  9562. "platform": {
  9563. "php": ">=5.6"
  9564. },
  9565. "platform-dev": [],
  9566. "plugin-api-version": "1.1.0"
  9567. }