composer.lock 347 KB

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