composer.lock 346 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298529953005301530253035304530553065307530853095310531153125313531453155316531753185319532053215322532353245325532653275328532953305331533253335334533553365337533853395340534153425343534453455346534753485349535053515352535353545355535653575358535953605361536253635364536553665367536853695370537153725373537453755376537753785379538053815382538353845385538653875388538953905391539253935394539553965397539853995400540154025403540454055406540754085409541054115412541354145415541654175418541954205421542254235424542554265427542854295430543154325433543454355436543754385439544054415442544354445445544654475448544954505451545254535454545554565457545854595460546154625463546454655466546754685469547054715472547354745475547654775478547954805481548254835484548554865487548854895490549154925493549454955496549754985499550055015502550355045505550655075508550955105511551255135514551555165517551855195520552155225523552455255526552755285529553055315532553355345535553655375538553955405541554255435544554555465547554855495550555155525553555455555556555755585559556055615562556355645565556655675568556955705571557255735574557555765577557855795580558155825583558455855586558755885589559055915592559355945595559655975598559956005601560256035604560556065607560856095610561156125613561456155616561756185619562056215622562356245625562656275628562956305631563256335634563556365637563856395640564156425643564456455646564756485649565056515652565356545655565656575658565956605661566256635664566556665667566856695670567156725673567456755676567756785679568056815682568356845685568656875688568956905691569256935694569556965697569856995700570157025703570457055706570757085709571057115712571357145715571657175718571957205721572257235724572557265727572857295730573157325733573457355736573757385739574057415742574357445745574657475748574957505751575257535754575557565757575857595760576157625763576457655766576757685769577057715772577357745775577657775778577957805781578257835784578557865787578857895790579157925793579457955796579757985799580058015802580358045805580658075808580958105811581258135814581558165817581858195820582158225823582458255826582758285829583058315832583358345835583658375838583958405841584258435844584558465847584858495850585158525853585458555856585758585859586058615862586358645865586658675868586958705871587258735874587558765877587858795880588158825883588458855886588758885889589058915892589358945895589658975898589959005901590259035904590559065907590859095910591159125913591459155916591759185919592059215922592359245925592659275928592959305931593259335934593559365937593859395940594159425943594459455946594759485949595059515952595359545955595659575958595959605961596259635964596559665967596859695970597159725973597459755976597759785979598059815982598359845985598659875988598959905991599259935994599559965997599859996000600160026003600460056006600760086009601060116012601360146015601660176018601960206021602260236024602560266027602860296030603160326033603460356036603760386039604060416042604360446045604660476048604960506051605260536054605560566057605860596060606160626063606460656066606760686069607060716072607360746075607660776078607960806081608260836084608560866087608860896090609160926093609460956096609760986099610061016102610361046105610661076108610961106111611261136114611561166117611861196120612161226123612461256126612761286129613061316132613361346135613661376138613961406141614261436144614561466147614861496150615161526153615461556156615761586159616061616162616361646165616661676168616961706171617261736174617561766177617861796180618161826183618461856186618761886189619061916192619361946195619661976198619962006201620262036204620562066207620862096210621162126213621462156216621762186219622062216222622362246225622662276228622962306231623262336234623562366237623862396240624162426243624462456246624762486249625062516252625362546255625662576258625962606261626262636264626562666267626862696270627162726273627462756276627762786279628062816282628362846285628662876288628962906291629262936294629562966297629862996300630163026303630463056306630763086309631063116312631363146315631663176318631963206321632263236324632563266327632863296330633163326333633463356336633763386339634063416342634363446345634663476348634963506351635263536354635563566357635863596360636163626363636463656366636763686369637063716372637363746375637663776378637963806381638263836384638563866387638863896390639163926393639463956396639763986399640064016402640364046405640664076408640964106411641264136414641564166417641864196420642164226423642464256426642764286429643064316432643364346435643664376438643964406441644264436444644564466447644864496450645164526453645464556456645764586459646064616462646364646465646664676468646964706471647264736474647564766477647864796480648164826483648464856486648764886489649064916492649364946495649664976498649965006501650265036504650565066507650865096510651165126513651465156516651765186519652065216522652365246525652665276528652965306531653265336534653565366537653865396540654165426543654465456546654765486549655065516552655365546555655665576558655965606561656265636564656565666567656865696570657165726573657465756576657765786579658065816582658365846585658665876588658965906591659265936594659565966597659865996600660166026603660466056606660766086609661066116612661366146615661666176618661966206621662266236624662566266627662866296630663166326633663466356636663766386639664066416642664366446645664666476648664966506651665266536654665566566657665866596660666166626663666466656666666766686669667066716672667366746675667666776678667966806681668266836684668566866687668866896690669166926693669466956696669766986699670067016702670367046705670667076708670967106711671267136714671567166717671867196720672167226723672467256726672767286729673067316732673367346735673667376738673967406741674267436744674567466747674867496750675167526753675467556756675767586759676067616762676367646765676667676768676967706771677267736774677567766777677867796780678167826783678467856786678767886789679067916792679367946795679667976798679968006801680268036804680568066807680868096810681168126813681468156816681768186819682068216822682368246825682668276828682968306831683268336834683568366837683868396840684168426843684468456846684768486849685068516852685368546855685668576858685968606861686268636864686568666867686868696870687168726873687468756876687768786879688068816882688368846885688668876888688968906891689268936894689568966897689868996900690169026903690469056906690769086909691069116912691369146915691669176918691969206921692269236924692569266927692869296930693169326933693469356936693769386939694069416942694369446945694669476948694969506951695269536954695569566957695869596960696169626963696469656966696769686969697069716972697369746975697669776978697969806981698269836984698569866987698869896990699169926993699469956996699769986999700070017002700370047005700670077008700970107011701270137014701570167017701870197020702170227023702470257026702770287029703070317032703370347035703670377038703970407041704270437044704570467047704870497050705170527053705470557056705770587059706070617062706370647065706670677068706970707071707270737074707570767077707870797080708170827083708470857086708770887089709070917092709370947095709670977098709971007101710271037104710571067107710871097110711171127113711471157116711771187119712071217122712371247125712671277128712971307131713271337134713571367137713871397140714171427143714471457146714771487149715071517152715371547155715671577158715971607161716271637164716571667167716871697170717171727173717471757176717771787179718071817182718371847185718671877188718971907191719271937194719571967197719871997200720172027203720472057206720772087209721072117212721372147215721672177218721972207221722272237224722572267227722872297230723172327233723472357236723772387239724072417242724372447245724672477248724972507251725272537254725572567257725872597260726172627263726472657266726772687269727072717272727372747275727672777278727972807281728272837284728572867287728872897290729172927293729472957296729772987299730073017302730373047305730673077308730973107311731273137314731573167317731873197320732173227323732473257326732773287329733073317332733373347335733673377338733973407341734273437344734573467347734873497350735173527353735473557356735773587359736073617362736373647365736673677368736973707371737273737374737573767377737873797380738173827383738473857386738773887389739073917392739373947395739673977398739974007401740274037404740574067407740874097410741174127413741474157416741774187419742074217422742374247425742674277428742974307431743274337434743574367437743874397440744174427443744474457446744774487449745074517452745374547455745674577458745974607461746274637464746574667467746874697470747174727473747474757476747774787479748074817482748374847485748674877488748974907491749274937494749574967497749874997500750175027503750475057506750775087509751075117512751375147515751675177518751975207521752275237524752575267527752875297530753175327533753475357536753775387539754075417542754375447545754675477548754975507551755275537554755575567557755875597560756175627563756475657566756775687569757075717572757375747575757675777578757975807581758275837584758575867587758875897590759175927593759475957596759775987599760076017602760376047605760676077608760976107611761276137614761576167617761876197620762176227623762476257626762776287629763076317632763376347635763676377638763976407641764276437644764576467647764876497650765176527653765476557656765776587659766076617662766376647665766676677668766976707671767276737674767576767677767876797680768176827683768476857686768776887689769076917692769376947695769676977698769977007701770277037704770577067707770877097710771177127713771477157716771777187719772077217722772377247725772677277728772977307731773277337734773577367737773877397740774177427743774477457746774777487749775077517752775377547755775677577758775977607761776277637764776577667767776877697770777177727773777477757776777777787779778077817782778377847785778677877788778977907791779277937794779577967797779877997800780178027803780478057806780778087809781078117812781378147815781678177818781978207821782278237824782578267827782878297830783178327833783478357836783778387839784078417842784378447845784678477848784978507851785278537854785578567857785878597860786178627863786478657866786778687869787078717872787378747875787678777878787978807881788278837884788578867887788878897890789178927893789478957896789778987899790079017902790379047905790679077908790979107911791279137914791579167917791879197920792179227923792479257926792779287929793079317932793379347935793679377938793979407941794279437944794579467947794879497950795179527953795479557956795779587959796079617962796379647965796679677968796979707971797279737974797579767977797879797980798179827983798479857986798779887989799079917992799379947995799679977998799980008001800280038004800580068007800880098010801180128013801480158016801780188019802080218022802380248025802680278028802980308031803280338034803580368037803880398040804180428043804480458046804780488049805080518052805380548055805680578058805980608061806280638064806580668067806880698070807180728073807480758076807780788079808080818082808380848085808680878088808980908091809280938094809580968097809880998100810181028103810481058106810781088109811081118112811381148115811681178118811981208121812281238124812581268127812881298130813181328133813481358136813781388139814081418142814381448145814681478148814981508151815281538154815581568157815881598160816181628163816481658166816781688169817081718172817381748175817681778178817981808181818281838184818581868187818881898190819181928193819481958196819781988199820082018202820382048205820682078208820982108211821282138214821582168217821882198220822182228223822482258226822782288229823082318232823382348235823682378238823982408241824282438244824582468247824882498250825182528253825482558256825782588259826082618262826382648265826682678268826982708271827282738274827582768277827882798280828182828283828482858286828782888289829082918292829382948295829682978298829983008301830283038304830583068307830883098310831183128313831483158316831783188319832083218322832383248325832683278328832983308331833283338334833583368337833883398340834183428343834483458346834783488349835083518352835383548355835683578358835983608361836283638364836583668367836883698370837183728373837483758376837783788379838083818382838383848385838683878388838983908391839283938394839583968397839883998400840184028403840484058406840784088409841084118412841384148415841684178418841984208421842284238424842584268427842884298430843184328433843484358436843784388439844084418442844384448445844684478448844984508451845284538454845584568457845884598460846184628463846484658466846784688469847084718472847384748475847684778478847984808481848284838484848584868487848884898490849184928493849484958496849784988499850085018502850385048505850685078508850985108511851285138514851585168517851885198520852185228523852485258526852785288529853085318532853385348535853685378538853985408541854285438544854585468547854885498550855185528553855485558556855785588559856085618562856385648565856685678568856985708571857285738574857585768577857885798580858185828583858485858586858785888589859085918592859385948595859685978598859986008601860286038604860586068607860886098610861186128613861486158616861786188619862086218622862386248625862686278628862986308631863286338634863586368637863886398640864186428643864486458646864786488649865086518652865386548655865686578658865986608661866286638664866586668667866886698670867186728673867486758676867786788679868086818682868386848685868686878688868986908691869286938694869586968697869886998700870187028703870487058706870787088709871087118712871387148715871687178718871987208721872287238724872587268727872887298730873187328733873487358736873787388739874087418742874387448745874687478748874987508751875287538754875587568757875887598760876187628763876487658766876787688769877087718772877387748775877687778778877987808781878287838784878587868787878887898790879187928793879487958796879787988799880088018802880388048805880688078808880988108811881288138814881588168817881888198820882188228823882488258826882788288829883088318832883388348835883688378838883988408841884288438844884588468847884888498850885188528853885488558856885788588859886088618862886388648865886688678868886988708871887288738874887588768877887888798880888188828883888488858886888788888889889088918892889388948895889688978898889989008901890289038904890589068907890889098910891189128913891489158916891789188919892089218922892389248925892689278928892989308931893289338934893589368937893889398940894189428943894489458946894789488949895089518952895389548955895689578958895989608961896289638964896589668967896889698970897189728973897489758976897789788979898089818982898389848985898689878988898989908991899289938994899589968997899889999000900190029003900490059006900790089009901090119012901390149015901690179018901990209021902290239024902590269027902890299030903190329033903490359036903790389039904090419042904390449045904690479048904990509051905290539054905590569057905890599060906190629063906490659066906790689069907090719072907390749075907690779078907990809081908290839084908590869087908890899090909190929093909490959096909790989099910091019102910391049105910691079108910991109111911291139114911591169117911891199120912191229123912491259126912791289129913091319132913391349135913691379138913991409141914291439144914591469147914891499150915191529153915491559156915791589159916091619162916391649165916691679168916991709171917291739174917591769177917891799180918191829183918491859186918791889189919091919192919391949195919691979198919992009201920292039204920592069207920892099210921192129213921492159216921792189219922092219222922392249225922692279228922992309231923292339234923592369237923892399240924192429243924492459246924792489249925092519252925392549255925692579258925992609261926292639264926592669267926892699270927192729273927492759276927792789279928092819282928392849285928692879288928992909291929292939294929592969297929892999300930193029303930493059306930793089309931093119312931393149315931693179318931993209321932293239324932593269327932893299330933193329333933493359336933793389339934093419342934393449345934693479348934993509351935293539354935593569357935893599360936193629363936493659366936793689369937093719372937393749375937693779378937993809381938293839384938593869387938893899390939193929393939493959396939793989399940094019402940394049405940694079408940994109411941294139414941594169417941894199420942194229423942494259426942794289429943094319432943394349435943694379438943994409441944294439444944594469447944894499450945194529453945494559456945794589459946094619462946394649465946694679468946994709471947294739474947594769477947894799480948194829483948494859486948794889489949094919492949394949495949694979498949995009501950295039504950595069507950895099510951195129513951495159516951795189519952095219522952395249525
  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": "e5594dd7dcb71d65c174045259e7997f",
  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.2.0",
  1827. "source": {
  1828. "type": "git",
  1829. "url": "https://git.drupalcode.org/project/admin_toolbar.git",
  1830. "reference": "8.x-2.2"
  1831. },
  1832. "dist": {
  1833. "type": "zip",
  1834. "url": "https://ftp.drupal.org/files/projects/admin_toolbar-8.x-2.2.zip",
  1835. "reference": "8.x-2.2",
  1836. "shasum": "41ea0e3321e6d1e190c486be49a99e60446d8dd7"
  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.2",
  1845. "datestamp": "1585017179",
  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+"
  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": "http://cgit.drupalcode.org/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.2.0",
  2299. "source": {
  2300. "type": "git",
  2301. "url": "https://git.drupalcode.org/project/color_field.git",
  2302. "reference": "8.x-2.2"
  2303. },
  2304. "dist": {
  2305. "type": "zip",
  2306. "url": "https://ftp.drupal.org/files/projects/color_field-8.x-2.2.zip",
  2307. "reference": "8.x-2.2",
  2308. "shasum": "12eb5d74f361a2ebf8bf61f750c145cbf137919b"
  2309. },
  2310. "require": {
  2311. "drupal/core": "*"
  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. "branch-alias": {
  2324. "dev-2.x": "2.x-dev"
  2325. },
  2326. "drupal": {
  2327. "version": "8.x-2.2",
  2328. "datestamp": "1579552087",
  2329. "security-coverage": {
  2330. "status": "covered",
  2331. "message": "Covered by Drupal's security advisory policy"
  2332. }
  2333. }
  2334. },
  2335. "notification-url": "https://packages.drupal.org/8/downloads",
  2336. "license": [
  2337. "GPL-2.0-or-later"
  2338. ],
  2339. "authors": [
  2340. {
  2341. "name": "targoo",
  2342. "homepage": "https://www.drupal.org/user/431910",
  2343. "role": "Maintainer"
  2344. },
  2345. {
  2346. "name": "Nick Wilde",
  2347. "homepage": "https://www.drupal.org/user/nickwilde",
  2348. "role": "Maintainer"
  2349. }
  2350. ],
  2351. "description": "Provides a color field type to store the color value and opacity",
  2352. "homepage": "https://www.drupal.org/project/color_field",
  2353. "support": {
  2354. "source": "https://git.drupalcode.org/project/color_field",
  2355. "issues": "https://www.drupal.org/project/issues/color_field?version=8.x"
  2356. }
  2357. },
  2358. {
  2359. "name": "drupal/config_devel",
  2360. "version": "1.7.0",
  2361. "source": {
  2362. "type": "git",
  2363. "url": "https://git.drupalcode.org/project/config_devel.git",
  2364. "reference": "8.x-1.7"
  2365. },
  2366. "dist": {
  2367. "type": "zip",
  2368. "url": "https://ftp.drupal.org/files/projects/config_devel-8.x-1.7.zip",
  2369. "reference": "8.x-1.7",
  2370. "shasum": "4ebcf4fb2a2842232b9bf9b0855e3728df918fc7"
  2371. },
  2372. "require": {
  2373. "drupal/core": "*"
  2374. },
  2375. "type": "drupal-module",
  2376. "extra": {
  2377. "drupal": {
  2378. "version": "8.x-1.7",
  2379. "datestamp": "1590070764",
  2380. "security-coverage": {
  2381. "status": "covered",
  2382. "message": "Covered by Drupal's security advisory policy"
  2383. }
  2384. }
  2385. },
  2386. "notification-url": "https://packages.drupal.org/8/downloads",
  2387. "license": [
  2388. "GPL-2.0+"
  2389. ],
  2390. "authors": [
  2391. {
  2392. "name": "alexpott",
  2393. "homepage": "https://www.drupal.org/user/157725"
  2394. },
  2395. {
  2396. "name": "benjy",
  2397. "homepage": "https://www.drupal.org/user/1852732"
  2398. },
  2399. {
  2400. "name": "chx",
  2401. "homepage": "https://www.drupal.org/user/9446"
  2402. },
  2403. {
  2404. "name": "joachim",
  2405. "homepage": "https://www.drupal.org/user/107701"
  2406. },
  2407. {
  2408. "name": "nedjo",
  2409. "homepage": "https://www.drupal.org/user/4481"
  2410. },
  2411. {
  2412. "name": "tim.plunkett",
  2413. "homepage": "https://www.drupal.org/user/241634"
  2414. },
  2415. {
  2416. "name": "vijaycs85",
  2417. "homepage": "https://www.drupal.org/user/93488"
  2418. }
  2419. ],
  2420. "description": "Helps developers work with configuration.",
  2421. "homepage": "https://www.drupal.org/project/config_devel",
  2422. "support": {
  2423. "source": "https://git.drupalcode.org/project/config_devel"
  2424. }
  2425. },
  2426. {
  2427. "name": "drupal/config_filter",
  2428. "version": "1.5.0",
  2429. "source": {
  2430. "type": "git",
  2431. "url": "https://git.drupalcode.org/project/config_filter.git",
  2432. "reference": "8.x-1.5"
  2433. },
  2434. "dist": {
  2435. "type": "zip",
  2436. "url": "https://ftp.drupal.org/files/projects/config_filter-8.x-1.5.zip",
  2437. "reference": "8.x-1.5",
  2438. "shasum": "81210684c378dab856b3c2bce5eeaa58992d2efc"
  2439. },
  2440. "require": {
  2441. "drupal/core": "^8 || ^9"
  2442. },
  2443. "suggest": {
  2444. "drupal/config_split": "Split site configuration for different environments."
  2445. },
  2446. "type": "drupal-module",
  2447. "extra": {
  2448. "branch-alias": {
  2449. "dev-1.x": "1.x-dev"
  2450. },
  2451. "drupal": {
  2452. "version": "8.x-1.5",
  2453. "datestamp": "1572542288",
  2454. "security-coverage": {
  2455. "status": "covered",
  2456. "message": "Covered by Drupal's security advisory policy"
  2457. }
  2458. }
  2459. },
  2460. "notification-url": "https://packages.drupal.org/8/downloads",
  2461. "license": [
  2462. "GPL-2.0+"
  2463. ],
  2464. "authors": [
  2465. {
  2466. "name": "Fabian Bircher",
  2467. "homepage": "https://www.drupal.org/u/bircher",
  2468. "email": "opensource@fabianbircher.com",
  2469. "role": "Maintainer"
  2470. },
  2471. {
  2472. "name": "Nuvole Web",
  2473. "homepage": "http://nuvole.org",
  2474. "email": "info@nuvole.org",
  2475. "role": "Maintainer"
  2476. },
  2477. {
  2478. "name": "pescetti",
  2479. "homepage": "https://www.drupal.org/user/436244"
  2480. }
  2481. ],
  2482. "description": "Config Filter allows other modules to interact with a ConfigStorage through filter plugins.",
  2483. "homepage": "https://www.drupal.org/project/config_filter",
  2484. "keywords": [
  2485. "Drupal",
  2486. "configuration",
  2487. "configuration management"
  2488. ],
  2489. "support": {
  2490. "source": "http://cgit.drupalcode.org/config_filter",
  2491. "issues": "https://www.drupal.org/project/issues/config_filter",
  2492. "irc": "irc://irc.freenode.org/drupal-contribute"
  2493. }
  2494. },
  2495. {
  2496. "name": "drupal/config_ignore",
  2497. "version": "2.2.0",
  2498. "source": {
  2499. "type": "git",
  2500. "url": "https://git.drupalcode.org/project/config_ignore.git",
  2501. "reference": "8.x-2.2"
  2502. },
  2503. "dist": {
  2504. "type": "zip",
  2505. "url": "https://ftp.drupal.org/files/projects/config_ignore-8.x-2.2.zip",
  2506. "reference": "8.x-2.2",
  2507. "shasum": "18af5772087b90dd4b83c2c6e292d8ea2f8834e0"
  2508. },
  2509. "require": {
  2510. "drupal/config_filter": "1.*",
  2511. "drupal/core": "~8.0"
  2512. },
  2513. "type": "drupal-module",
  2514. "extra": {
  2515. "branch-alias": {
  2516. "dev-2.x": "2.x-dev"
  2517. },
  2518. "drupal": {
  2519. "version": "8.x-2.2",
  2520. "datestamp": "1576528386",
  2521. "security-coverage": {
  2522. "status": "covered",
  2523. "message": "Covered by Drupal's security advisory policy"
  2524. }
  2525. }
  2526. },
  2527. "notification-url": "https://packages.drupal.org/8/downloads",
  2528. "license": [
  2529. "GPL-2.0+"
  2530. ],
  2531. "authors": [
  2532. {
  2533. "name": "Tommy Lynge Jørgensen",
  2534. "homepage": "https://www.drupal.org/u/tlyngej",
  2535. "email": "tlyngej@gmail.com",
  2536. "role": "Maintainer"
  2537. },
  2538. {
  2539. "name": "Fabian Bircher",
  2540. "homepage": "https://www.drupal.org/u/bircher",
  2541. "role": "Maintainer"
  2542. },
  2543. {
  2544. "name": "tlyngej",
  2545. "homepage": "https://www.drupal.org/user/413139"
  2546. }
  2547. ],
  2548. "description": "Ignore certain configuration during import.",
  2549. "homepage": "http://drupal.org/project/config_ignore",
  2550. "support": {
  2551. "source": "http://cgit.drupalcode.org/config_ignore",
  2552. "issues": "http://drupal.org/project/config_ignore",
  2553. "irc": "irc://irc.freenode.org/drupal-contribute"
  2554. }
  2555. },
  2556. {
  2557. "name": "drupal/config_update",
  2558. "version": "1.7.0",
  2559. "source": {
  2560. "type": "git",
  2561. "url": "https://git.drupalcode.org/project/config_update.git",
  2562. "reference": "8.x-1.7"
  2563. },
  2564. "dist": {
  2565. "type": "zip",
  2566. "url": "https://ftp.drupal.org/files/projects/config_update-8.x-1.7.zip",
  2567. "reference": "8.x-1.7",
  2568. "shasum": "8f079abf7c2ea826a27fa5224b0770a26404c968"
  2569. },
  2570. "require": {
  2571. "drupal/core": "^8 || ^9"
  2572. },
  2573. "type": "drupal-module",
  2574. "extra": {
  2575. "drupal": {
  2576. "version": "8.x-1.7",
  2577. "datestamp": "1586355587",
  2578. "security-coverage": {
  2579. "status": "covered",
  2580. "message": "Covered by Drupal's security advisory policy"
  2581. }
  2582. }
  2583. },
  2584. "notification-url": "https://packages.drupal.org/8/downloads",
  2585. "license": [
  2586. "GPL-2.0-or-later"
  2587. ],
  2588. "authors": [
  2589. {
  2590. "name": "jhodgdon",
  2591. "homepage": "https://www.drupal.org/user/155601"
  2592. },
  2593. {
  2594. "name": "nedjo",
  2595. "homepage": "https://www.drupal.org/user/4481"
  2596. }
  2597. ],
  2598. "description": "Provides basic revert and update functionality for other modules",
  2599. "homepage": "https://www.drupal.org/project/config_update",
  2600. "support": {
  2601. "source": "https://git.drupalcode.org/project/config_update"
  2602. }
  2603. },
  2604. {
  2605. "name": "drupal/console",
  2606. "version": "1.9.4",
  2607. "source": {
  2608. "type": "git",
  2609. "url": "https://github.com/hechoendrupal/drupal-console.git",
  2610. "reference": "04522b687b2149dc1f808599e716421a20d50a5b"
  2611. },
  2612. "dist": {
  2613. "type": "zip",
  2614. "url": "https://api.github.com/repos/hechoendrupal/drupal-console/zipball/04522b687b2149dc1f808599e716421a20d50a5b",
  2615. "reference": "04522b687b2149dc1f808599e716421a20d50a5b",
  2616. "shasum": ""
  2617. },
  2618. "require": {
  2619. "alchemy/zippy": "~0.4",
  2620. "composer/installers": "~1.0",
  2621. "doctrine/annotations": "^1.2",
  2622. "doctrine/collections": "^1.3",
  2623. "drupal/console-core": "1.9.4",
  2624. "drupal/console-extend-plugin": "~0",
  2625. "php": "^5.5.9 || ^7.0",
  2626. "psy/psysh": "0.6.* || ~0.8",
  2627. "symfony/css-selector": "~2.8|~3.0",
  2628. "symfony/dom-crawler": "~2.8|~3.0",
  2629. "symfony/http-foundation": "~2.8|~3.0"
  2630. },
  2631. "suggest": {
  2632. "symfony/thanks": "Thank your favorite PHP projects on GitHub using the CLI",
  2633. "vlucas/phpdotenv": "Loads environment variables from .env to getenv(), $_ENV and $_SERVER automagically"
  2634. },
  2635. "bin": [
  2636. "bin/drupal"
  2637. ],
  2638. "type": "library",
  2639. "autoload": {
  2640. "psr-4": {
  2641. "Drupal\\Console\\": "src"
  2642. }
  2643. },
  2644. "notification-url": "https://packagist.org/downloads/",
  2645. "license": [
  2646. "GPL-2.0-or-later"
  2647. ],
  2648. "authors": [
  2649. {
  2650. "name": "David Flores",
  2651. "email": "dmousex@gmail.com",
  2652. "homepage": "http://dmouse.net"
  2653. },
  2654. {
  2655. "name": "Jesus Manuel Olivas",
  2656. "email": "jesus.olivas@gmail.com",
  2657. "homepage": "http://jmolivas.com"
  2658. },
  2659. {
  2660. "name": "Eduardo Garcia",
  2661. "email": "enzo@enzolutions.com",
  2662. "homepage": "http://enzolutions.com/"
  2663. },
  2664. {
  2665. "name": "Omar Aguirre",
  2666. "email": "omersguchigu@gmail.com"
  2667. },
  2668. {
  2669. "name": "Drupal Console Contributors",
  2670. "homepage": "https://github.com/hechoendrupal/drupal-console/graphs/contributors"
  2671. }
  2672. ],
  2673. "description": "The Drupal CLI. A tool to generate boilerplate code, interact with and debug Drupal.",
  2674. "homepage": "http://drupalconsole.com/",
  2675. "keywords": [
  2676. "console",
  2677. "development",
  2678. "drupal",
  2679. "symfony"
  2680. ],
  2681. "time": "2019-11-11T19:35:01+00:00"
  2682. },
  2683. {
  2684. "name": "drupal/console-core",
  2685. "version": "1.9.4",
  2686. "source": {
  2687. "type": "git",
  2688. "url": "https://github.com/hechoendrupal/drupal-console-core.git",
  2689. "reference": "cc6f50c6ac8199140224347c862df75fd2d2f5ed"
  2690. },
  2691. "dist": {
  2692. "type": "zip",
  2693. "url": "https://api.github.com/repos/hechoendrupal/drupal-console-core/zipball/cc6f50c6ac8199140224347c862df75fd2d2f5ed",
  2694. "reference": "cc6f50c6ac8199140224347c862df75fd2d2f5ed",
  2695. "shasum": ""
  2696. },
  2697. "require": {
  2698. "dflydev/dot-access-configuration": "^1.0",
  2699. "drupal/console-en": "1.9.4",
  2700. "guzzlehttp/guzzle": "~6.1",
  2701. "php": "^5.5.9 || ^7.0",
  2702. "stecman/symfony-console-completion": "~0.7",
  2703. "symfony/config": "~2.8|~3.0",
  2704. "symfony/console": "~2.8|~3.0",
  2705. "symfony/debug": "~2.8|~3.0",
  2706. "symfony/dependency-injection": "~2.8|~3.0",
  2707. "symfony/event-dispatcher": "~2.8|~3.0",
  2708. "symfony/filesystem": "~2.8|~3.0",
  2709. "symfony/finder": "~2.8|~3.0",
  2710. "symfony/process": "~2.8|~3.0",
  2711. "symfony/translation": "~2.8|~3.0",
  2712. "symfony/yaml": "~2.8|~3.0",
  2713. "twig/twig": "^1.23.1",
  2714. "webflo/drupal-finder": "^1.0",
  2715. "webmozart/path-util": "^2.3"
  2716. },
  2717. "type": "library",
  2718. "autoload": {
  2719. "files": [
  2720. "src/functions.php"
  2721. ],
  2722. "psr-4": {
  2723. "Drupal\\Console\\Core\\": "src"
  2724. }
  2725. },
  2726. "notification-url": "https://packagist.org/downloads/",
  2727. "license": [
  2728. "GPL-2.0-or-later"
  2729. ],
  2730. "authors": [
  2731. {
  2732. "name": "David Flores",
  2733. "email": "dmousex@gmail.com",
  2734. "homepage": "http://dmouse.net"
  2735. },
  2736. {
  2737. "name": "Jesus Manuel Olivas",
  2738. "email": "jesus.olivas@gmail.com",
  2739. "homepage": "http://jmolivas.com"
  2740. },
  2741. {
  2742. "name": "Eduardo Garcia",
  2743. "email": "enzo@enzolutions.com",
  2744. "homepage": "http://enzolutions.com/"
  2745. },
  2746. {
  2747. "name": "Omar Aguirre",
  2748. "email": "omersguchigu@gmail.com"
  2749. },
  2750. {
  2751. "name": "Drupal Console Contributors",
  2752. "homepage": "https://github.com/hechoendrupal/DrupalConsole/graphs/contributors"
  2753. }
  2754. ],
  2755. "description": "Drupal Console Core",
  2756. "homepage": "http://drupalconsole.com/",
  2757. "keywords": [
  2758. "console",
  2759. "development",
  2760. "drupal",
  2761. "symfony"
  2762. ],
  2763. "time": "2019-11-11T19:26:28+00:00"
  2764. },
  2765. {
  2766. "name": "drupal/console-en",
  2767. "version": "1.9.4",
  2768. "source": {
  2769. "type": "git",
  2770. "url": "https://github.com/hechoendrupal/drupal-console-en.git",
  2771. "reference": "30813a832fdb1244e84cbcc012cd103d5e9d673d"
  2772. },
  2773. "dist": {
  2774. "type": "zip",
  2775. "url": "https://api.github.com/repos/hechoendrupal/drupal-console-en/zipball/30813a832fdb1244e84cbcc012cd103d5e9d673d",
  2776. "reference": "30813a832fdb1244e84cbcc012cd103d5e9d673d",
  2777. "shasum": ""
  2778. },
  2779. "type": "library",
  2780. "notification-url": "https://packagist.org/downloads/",
  2781. "license": [
  2782. "GPL-2.0-or-later"
  2783. ],
  2784. "authors": [
  2785. {
  2786. "name": "David Flores",
  2787. "email": "dmousex@gmail.com",
  2788. "homepage": "http://dmouse.net"
  2789. },
  2790. {
  2791. "name": "Jesus Manuel Olivas",
  2792. "email": "jesus.olivas@gmail.com",
  2793. "homepage": "http://jmolivas.com"
  2794. },
  2795. {
  2796. "name": "Eduardo Garcia",
  2797. "email": "enzo@enzolutions.com",
  2798. "homepage": "http://enzolutions.com/"
  2799. },
  2800. {
  2801. "name": "Omar Aguirre",
  2802. "email": "omersguchigu@gmail.com"
  2803. },
  2804. {
  2805. "name": "Drupal Console Contributors",
  2806. "homepage": "https://github.com/hechoendrupal/DrupalConsole/graphs/contributors"
  2807. }
  2808. ],
  2809. "description": "Drupal Console English Language",
  2810. "homepage": "http://drupalconsole.com/",
  2811. "keywords": [
  2812. "console",
  2813. "development",
  2814. "drupal",
  2815. "symfony"
  2816. ],
  2817. "time": "2019-10-07T23:45:30+00:00"
  2818. },
  2819. {
  2820. "name": "drupal/console-extend-plugin",
  2821. "version": "0.9.3",
  2822. "source": {
  2823. "type": "git",
  2824. "url": "https://github.com/hechoendrupal/drupal-console-extend-plugin.git",
  2825. "reference": "ad8e52df34b2e78bdacfffecc9fe8edf41843342"
  2826. },
  2827. "dist": {
  2828. "type": "zip",
  2829. "url": "https://api.github.com/repos/hechoendrupal/drupal-console-extend-plugin/zipball/ad8e52df34b2e78bdacfffecc9fe8edf41843342",
  2830. "reference": "ad8e52df34b2e78bdacfffecc9fe8edf41843342",
  2831. "shasum": ""
  2832. },
  2833. "require": {
  2834. "composer-plugin-api": "^1.0",
  2835. "composer/installers": "^1.2",
  2836. "symfony/finder": "~2.7|~3.0",
  2837. "symfony/yaml": "~2.7|~3.0"
  2838. },
  2839. "type": "composer-plugin",
  2840. "extra": {
  2841. "class": "Drupal\\Console\\Composer\\Plugin\\Extender"
  2842. },
  2843. "autoload": {
  2844. "psr-4": {
  2845. "Drupal\\Console\\Composer\\Plugin\\": "src"
  2846. }
  2847. },
  2848. "notification-url": "https://packagist.org/downloads/",
  2849. "license": [
  2850. "GPL-2.0+"
  2851. ],
  2852. "authors": [
  2853. {
  2854. "name": "Jesus Manuel Olivas",
  2855. "email": "jesus.olivas@gmail.com"
  2856. }
  2857. ],
  2858. "description": "Drupal Console Extend Plugin",
  2859. "time": "2019-11-07T20:15:27+00:00"
  2860. },
  2861. {
  2862. "name": "drupal/context",
  2863. "version": "4.0.0-beta2",
  2864. "source": {
  2865. "type": "git",
  2866. "url": "https://git.drupalcode.org/project/context.git",
  2867. "reference": "8.x-4.0-beta2"
  2868. },
  2869. "dist": {
  2870. "type": "zip",
  2871. "url": "https://ftp.drupal.org/files/projects/context-8.x-4.0-beta2.zip",
  2872. "reference": "8.x-4.0-beta2",
  2873. "shasum": "e41bc912e1ec73bc4d08a3cf730dc2405a9213d3"
  2874. },
  2875. "require": {
  2876. "drupal/core": "~8.0"
  2877. },
  2878. "type": "drupal-module",
  2879. "extra": {
  2880. "drupal": {
  2881. "version": "8.x-4.0-beta2",
  2882. "datestamp": "1505378944",
  2883. "security-coverage": {
  2884. "status": "not-covered",
  2885. "message": "Beta releases are not covered by Drupal security advisories."
  2886. }
  2887. }
  2888. },
  2889. "notification-url": "https://packages.drupal.org/8/downloads",
  2890. "license": [
  2891. "MIT"
  2892. ],
  2893. "authors": [
  2894. {
  2895. "name": "Christoffer Palm",
  2896. "homepage": "http://www.oddhill.se/",
  2897. "email": "christoffer.palm@oddhill.se",
  2898. "role": "Developer"
  2899. },
  2900. {
  2901. "name": "NormySan",
  2902. "homepage": "https://www.drupal.org/user/112352"
  2903. },
  2904. {
  2905. "name": "Steven Jones",
  2906. "homepage": "https://www.drupal.org/user/99644"
  2907. },
  2908. {
  2909. "name": "alex_b",
  2910. "homepage": "https://www.drupal.org/user/53995"
  2911. },
  2912. {
  2913. "name": "boshtian",
  2914. "homepage": "https://www.drupal.org/user/1773456"
  2915. },
  2916. {
  2917. "name": "colan",
  2918. "homepage": "https://www.drupal.org/user/58704"
  2919. },
  2920. {
  2921. "name": "emanaton",
  2922. "homepage": "https://www.drupal.org/user/120853"
  2923. },
  2924. {
  2925. "name": "febbraro",
  2926. "homepage": "https://www.drupal.org/user/43670"
  2927. },
  2928. {
  2929. "name": "fizk",
  2930. "homepage": "https://www.drupal.org/user/473174"
  2931. },
  2932. {
  2933. "name": "hass",
  2934. "homepage": "https://www.drupal.org/user/85918"
  2935. },
  2936. {
  2937. "name": "hefox",
  2938. "homepage": "https://www.drupal.org/user/426416"
  2939. },
  2940. {
  2941. "name": "hyrcan",
  2942. "homepage": "https://www.drupal.org/user/26618"
  2943. },
  2944. {
  2945. "name": "jmiccolis",
  2946. "homepage": "https://www.drupal.org/user/31731"
  2947. },
  2948. {
  2949. "name": "nedjo",
  2950. "homepage": "https://www.drupal.org/user/4481"
  2951. },
  2952. {
  2953. "name": "tekante",
  2954. "homepage": "https://www.drupal.org/user/640024"
  2955. },
  2956. {
  2957. "name": "yhahn",
  2958. "homepage": "https://www.drupal.org/user/264833"
  2959. }
  2960. ],
  2961. "description": "Manage contextual conditions and reactions for different portions of your site.",
  2962. "homepage": "https://github.com/oddhill/context",
  2963. "keywords": [
  2964. "Drupal",
  2965. "block",
  2966. "conditions",
  2967. "context",
  2968. "visibility"
  2969. ],
  2970. "support": {
  2971. "source": "https://github.com/oddhill/context",
  2972. "issues": "https://github.com/oddhill/context/issues",
  2973. "docs": "https://github.com/oddhill/context"
  2974. }
  2975. },
  2976. {
  2977. "name": "drupal/core",
  2978. "version": "8.9.2",
  2979. "source": {
  2980. "type": "git",
  2981. "url": "https://github.com/drupal/core.git",
  2982. "reference": "8f0e24555c093669ce41edbb30637fe19df16802"
  2983. },
  2984. "dist": {
  2985. "type": "zip",
  2986. "url": "https://api.github.com/repos/drupal/core/zipball/8f0e24555c093669ce41edbb30637fe19df16802",
  2987. "reference": "8f0e24555c093669ce41edbb30637fe19df16802",
  2988. "shasum": ""
  2989. },
  2990. "require": {
  2991. "asm89/stack-cors": "^1.1",
  2992. "composer/semver": "^1.0",
  2993. "doctrine/annotations": "^1.4",
  2994. "doctrine/common": "^2.7",
  2995. "easyrdf/easyrdf": "^0.9",
  2996. "egulias/email-validator": "^2.0",
  2997. "ext-date": "*",
  2998. "ext-dom": "*",
  2999. "ext-filter": "*",
  3000. "ext-gd": "*",
  3001. "ext-hash": "*",
  3002. "ext-json": "*",
  3003. "ext-pcre": "*",
  3004. "ext-pdo": "*",
  3005. "ext-session": "*",
  3006. "ext-simplexml": "*",
  3007. "ext-spl": "*",
  3008. "ext-tokenizer": "*",
  3009. "ext-xml": "*",
  3010. "guzzlehttp/guzzle": "^6.3",
  3011. "laminas/laminas-diactoros": "^1.8",
  3012. "laminas/laminas-feed": "^2.12",
  3013. "masterminds/html5": "^2.1",
  3014. "pear/archive_tar": "^1.4.9",
  3015. "php": ">=7.0.8",
  3016. "psr/log": "^1.0",
  3017. "stack/builder": "^1.0",
  3018. "symfony-cmf/routing": "^1.4",
  3019. "symfony/class-loader": "~3.4.0",
  3020. "symfony/console": "~3.4.0",
  3021. "symfony/dependency-injection": "~3.4.26",
  3022. "symfony/event-dispatcher": "~3.4.0",
  3023. "symfony/http-foundation": "~3.4.35",
  3024. "symfony/http-kernel": "~3.4.14",
  3025. "symfony/polyfill-iconv": "^1.0",
  3026. "symfony/process": "~3.4.0",
  3027. "symfony/psr-http-message-bridge": "^1.1.2",
  3028. "symfony/routing": "~3.4.0",
  3029. "symfony/serializer": "~3.4.0",
  3030. "symfony/translation": "~3.4.0",
  3031. "symfony/validator": "~3.4.0",
  3032. "symfony/yaml": "~3.4.5",
  3033. "twig/twig": "^1.38.2",
  3034. "typo3/phar-stream-wrapper": "^3.1.3"
  3035. },
  3036. "conflict": {
  3037. "drupal/pathauto": "<1.6",
  3038. "drush/drush": "<8.1.10"
  3039. },
  3040. "replace": {
  3041. "drupal/action": "self.version",
  3042. "drupal/aggregator": "self.version",
  3043. "drupal/automated_cron": "self.version",
  3044. "drupal/ban": "self.version",
  3045. "drupal/bartik": "self.version",
  3046. "drupal/basic_auth": "self.version",
  3047. "drupal/big_pipe": "self.version",
  3048. "drupal/block": "self.version",
  3049. "drupal/block_content": "self.version",
  3050. "drupal/block_place": "self.version",
  3051. "drupal/book": "self.version",
  3052. "drupal/breakpoint": "self.version",
  3053. "drupal/ckeditor": "self.version",
  3054. "drupal/claro": "self.version",
  3055. "drupal/classy": "self.version",
  3056. "drupal/color": "self.version",
  3057. "drupal/comment": "self.version",
  3058. "drupal/config": "self.version",
  3059. "drupal/config_translation": "self.version",
  3060. "drupal/contact": "self.version",
  3061. "drupal/content_moderation": "self.version",
  3062. "drupal/content_translation": "self.version",
  3063. "drupal/contextual": "self.version",
  3064. "drupal/core-annotation": "self.version",
  3065. "drupal/core-assertion": "self.version",
  3066. "drupal/core-bridge": "self.version",
  3067. "drupal/core-class-finder": "self.version",
  3068. "drupal/core-datetime": "self.version",
  3069. "drupal/core-dependency-injection": "self.version",
  3070. "drupal/core-diff": "self.version",
  3071. "drupal/core-discovery": "self.version",
  3072. "drupal/core-event-dispatcher": "self.version",
  3073. "drupal/core-file-cache": "self.version",
  3074. "drupal/core-file-security": "self.version",
  3075. "drupal/core-filesystem": "self.version",
  3076. "drupal/core-gettext": "self.version",
  3077. "drupal/core-graph": "self.version",
  3078. "drupal/core-http-foundation": "self.version",
  3079. "drupal/core-php-storage": "self.version",
  3080. "drupal/core-plugin": "self.version",
  3081. "drupal/core-proxy-builder": "self.version",
  3082. "drupal/core-render": "self.version",
  3083. "drupal/core-serialization": "self.version",
  3084. "drupal/core-transliteration": "self.version",
  3085. "drupal/core-utility": "self.version",
  3086. "drupal/core-uuid": "self.version",
  3087. "drupal/core-version": "self.version",
  3088. "drupal/datetime": "self.version",
  3089. "drupal/datetime_range": "self.version",
  3090. "drupal/dblog": "self.version",
  3091. "drupal/dynamic_page_cache": "self.version",
  3092. "drupal/editor": "self.version",
  3093. "drupal/entity_reference": "self.version",
  3094. "drupal/field": "self.version",
  3095. "drupal/field_layout": "self.version",
  3096. "drupal/field_ui": "self.version",
  3097. "drupal/file": "self.version",
  3098. "drupal/filter": "self.version",
  3099. "drupal/forum": "self.version",
  3100. "drupal/hal": "self.version",
  3101. "drupal/help": "self.version",
  3102. "drupal/help_topics": "self.version",
  3103. "drupal/history": "self.version",
  3104. "drupal/image": "self.version",
  3105. "drupal/inline_form_errors": "self.version",
  3106. "drupal/jsonapi": "self.version",
  3107. "drupal/language": "self.version",
  3108. "drupal/layout_builder": "self.version",
  3109. "drupal/layout_discovery": "self.version",
  3110. "drupal/link": "self.version",
  3111. "drupal/locale": "self.version",
  3112. "drupal/media": "self.version",
  3113. "drupal/media_library": "self.version",
  3114. "drupal/menu_link_content": "self.version",
  3115. "drupal/menu_ui": "self.version",
  3116. "drupal/migrate": "self.version",
  3117. "drupal/migrate_drupal": "self.version",
  3118. "drupal/migrate_drupal_multilingual": "self.version",
  3119. "drupal/migrate_drupal_ui": "self.version",
  3120. "drupal/minimal": "self.version",
  3121. "drupal/node": "self.version",
  3122. "drupal/options": "self.version",
  3123. "drupal/page_cache": "self.version",
  3124. "drupal/path": "self.version",
  3125. "drupal/path_alias": "self.version",
  3126. "drupal/quickedit": "self.version",
  3127. "drupal/rdf": "self.version",
  3128. "drupal/responsive_image": "self.version",
  3129. "drupal/rest": "self.version",
  3130. "drupal/search": "self.version",
  3131. "drupal/serialization": "self.version",
  3132. "drupal/settings_tray": "self.version",
  3133. "drupal/seven": "self.version",
  3134. "drupal/shortcut": "self.version",
  3135. "drupal/simpletest": "self.version",
  3136. "drupal/standard": "self.version",
  3137. "drupal/stark": "self.version",
  3138. "drupal/statistics": "self.version",
  3139. "drupal/syslog": "self.version",
  3140. "drupal/system": "self.version",
  3141. "drupal/taxonomy": "self.version",
  3142. "drupal/telephone": "self.version",
  3143. "drupal/text": "self.version",
  3144. "drupal/toolbar": "self.version",
  3145. "drupal/tour": "self.version",
  3146. "drupal/tracker": "self.version",
  3147. "drupal/update": "self.version",
  3148. "drupal/user": "self.version",
  3149. "drupal/views": "self.version",
  3150. "drupal/views_ui": "self.version",
  3151. "drupal/workflows": "self.version",
  3152. "drupal/workspaces": "self.version"
  3153. },
  3154. "type": "drupal-core",
  3155. "extra": {
  3156. "drupal-scaffold": {
  3157. "file-mapping": {
  3158. "[project-root]/.editorconfig": "assets/scaffold/files/editorconfig",
  3159. "[project-root]/.gitattributes": "assets/scaffold/files/gitattributes",
  3160. "[web-root]/.csslintrc": "assets/scaffold/files/csslintrc",
  3161. "[web-root]/.eslintignore": "assets/scaffold/files/eslintignore",
  3162. "[web-root]/.eslintrc.json": "assets/scaffold/files/eslintrc.json",
  3163. "[web-root]/.ht.router.php": "assets/scaffold/files/ht.router.php",
  3164. "[web-root]/.htaccess": "assets/scaffold/files/htaccess",
  3165. "[web-root]/example.gitignore": "assets/scaffold/files/example.gitignore",
  3166. "[web-root]/index.php": "assets/scaffold/files/index.php",
  3167. "[web-root]/INSTALL.txt": "assets/scaffold/files/drupal.INSTALL.txt",
  3168. "[web-root]/README.txt": "assets/scaffold/files/drupal.README.txt",
  3169. "[web-root]/robots.txt": "assets/scaffold/files/robots.txt",
  3170. "[web-root]/update.php": "assets/scaffold/files/update.php",
  3171. "[web-root]/web.config": "assets/scaffold/files/web.config",
  3172. "[web-root]/sites/README.txt": "assets/scaffold/files/sites.README.txt",
  3173. "[web-root]/sites/development.services.yml": "assets/scaffold/files/development.services.yml",
  3174. "[web-root]/sites/example.settings.local.php": "assets/scaffold/files/example.settings.local.php",
  3175. "[web-root]/sites/example.sites.php": "assets/scaffold/files/example.sites.php",
  3176. "[web-root]/sites/default/default.services.yml": "assets/scaffold/files/default.services.yml",
  3177. "[web-root]/sites/default/default.settings.php": "assets/scaffold/files/default.settings.php",
  3178. "[web-root]/modules/README.txt": "assets/scaffold/files/modules.README.txt",
  3179. "[web-root]/profiles/README.txt": "assets/scaffold/files/profiles.README.txt",
  3180. "[web-root]/themes/README.txt": "assets/scaffold/files/themes.README.txt"
  3181. }
  3182. }
  3183. },
  3184. "autoload": {
  3185. "psr-4": {
  3186. "Drupal\\Core\\": "lib/Drupal/Core",
  3187. "Drupal\\Component\\": "lib/Drupal/Component",
  3188. "Drupal\\Driver\\": "../drivers/lib/Drupal/Driver"
  3189. },
  3190. "classmap": [
  3191. "lib/Drupal.php",
  3192. "lib/Drupal/Component/Utility/Timer.php",
  3193. "lib/Drupal/Component/Utility/Unicode.php",
  3194. "lib/Drupal/Core/Database/Database.php",
  3195. "lib/Drupal/Core/DrupalKernel.php",
  3196. "lib/Drupal/Core/DrupalKernelInterface.php",
  3197. "lib/Drupal/Core/Site/Settings.php"
  3198. ]
  3199. },
  3200. "notification-url": "https://packagist.org/downloads/",
  3201. "license": [
  3202. "GPL-2.0-or-later"
  3203. ],
  3204. "description": "Drupal is an open source content management platform powering millions of websites and applications.",
  3205. "time": "2020-07-08T18:53:45+00:00"
  3206. },
  3207. {
  3208. "name": "drupal/core-composer-scaffold",
  3209. "version": "8.8.6",
  3210. "source": {
  3211. "type": "git",
  3212. "url": "https://github.com/drupal/core-composer-scaffold.git",
  3213. "reference": "4825cb5234c28dff79ad298db582dfb23ff4ca59"
  3214. },
  3215. "dist": {
  3216. "type": "zip",
  3217. "url": "https://api.github.com/repos/drupal/core-composer-scaffold/zipball/4825cb5234c28dff79ad298db582dfb23ff4ca59",
  3218. "reference": "4825cb5234c28dff79ad298db582dfb23ff4ca59",
  3219. "shasum": ""
  3220. },
  3221. "require": {
  3222. "composer-plugin-api": "^1.0.0",
  3223. "php": ">=7.0.8"
  3224. },
  3225. "conflict": {
  3226. "drupal-composer/drupal-scaffold": "*"
  3227. },
  3228. "require-dev": {
  3229. "composer/composer": "^1.8@stable"
  3230. },
  3231. "type": "composer-plugin",
  3232. "extra": {
  3233. "class": "Drupal\\Composer\\Plugin\\Scaffold\\Plugin",
  3234. "branch-alias": {
  3235. "dev-master": "1.0.x-dev"
  3236. }
  3237. },
  3238. "autoload": {
  3239. "psr-4": {
  3240. "Drupal\\Composer\\Plugin\\Scaffold\\": ""
  3241. }
  3242. },
  3243. "notification-url": "https://packagist.org/downloads/",
  3244. "license": [
  3245. "GPL-2.0-or-later"
  3246. ],
  3247. "description": "A flexible Composer project scaffold builder.",
  3248. "homepage": "https://www.drupal.org/project/drupal",
  3249. "keywords": [
  3250. "drupal"
  3251. ],
  3252. "time": "2020-03-10T10:15:17+00:00"
  3253. },
  3254. {
  3255. "name": "drupal/core-recommended",
  3256. "version": "8.9.2",
  3257. "source": {
  3258. "type": "git",
  3259. "url": "https://github.com/drupal/core-recommended.git",
  3260. "reference": "8301ff766f17ce8a9eb36d3ffd183cbfff01dad6"
  3261. },
  3262. "dist": {
  3263. "type": "zip",
  3264. "url": "https://api.github.com/repos/drupal/core-recommended/zipball/8301ff766f17ce8a9eb36d3ffd183cbfff01dad6",
  3265. "reference": "8301ff766f17ce8a9eb36d3ffd183cbfff01dad6",
  3266. "shasum": ""
  3267. },
  3268. "require": {
  3269. "asm89/stack-cors": "1.3.0",
  3270. "composer/semver": "1.5.1",
  3271. "doctrine/annotations": "v1.4.0",
  3272. "doctrine/cache": "v1.6.2",
  3273. "doctrine/collections": "v1.4.0",
  3274. "doctrine/common": "v2.7.3",
  3275. "doctrine/inflector": "v1.2.0",
  3276. "doctrine/lexer": "1.0.2",
  3277. "drupal/core": "8.9.2",
  3278. "easyrdf/easyrdf": "0.9.1",
  3279. "egulias/email-validator": "2.1.17",
  3280. "guzzlehttp/guzzle": "6.5.4",
  3281. "guzzlehttp/promises": "v1.3.1",
  3282. "guzzlehttp/psr7": "1.6.1",
  3283. "laminas/laminas-diactoros": "1.8.7p2",
  3284. "laminas/laminas-escaper": "2.6.1",
  3285. "laminas/laminas-feed": "2.12.2",
  3286. "laminas/laminas-stdlib": "3.2.1",
  3287. "laminas/laminas-zendframework-bridge": "1.0.4",
  3288. "masterminds/html5": "2.3.0",
  3289. "paragonie/random_compat": "v9.99.99",
  3290. "pear/archive_tar": "1.4.9",
  3291. "pear/console_getopt": "v1.4.3",
  3292. "pear/pear-core-minimal": "v1.10.10",
  3293. "pear/pear_exception": "v1.0.1",
  3294. "psr/container": "1.0.0",
  3295. "psr/http-message": "1.0.1",
  3296. "psr/log": "1.1.3",
  3297. "ralouphie/getallheaders": "3.0.3",
  3298. "stack/builder": "v1.0.5",
  3299. "symfony-cmf/routing": "1.4.1",
  3300. "symfony/class-loader": "v3.4.41",
  3301. "symfony/console": "v3.4.41",
  3302. "symfony/debug": "v3.4.41",
  3303. "symfony/dependency-injection": "v3.4.41",
  3304. "symfony/event-dispatcher": "v3.4.41",
  3305. "symfony/http-foundation": "v3.4.41",
  3306. "symfony/http-kernel": "v3.4.41",
  3307. "symfony/polyfill-ctype": "v1.17.0",
  3308. "symfony/polyfill-iconv": "v1.17.0",
  3309. "symfony/polyfill-intl-idn": "v1.17.0",
  3310. "symfony/polyfill-mbstring": "v1.17.0",
  3311. "symfony/polyfill-php56": "v1.17.0",
  3312. "symfony/polyfill-php70": "v1.17.0",
  3313. "symfony/polyfill-php72": "v1.17.0",
  3314. "symfony/polyfill-util": "v1.17.0",
  3315. "symfony/process": "v3.4.41",
  3316. "symfony/psr-http-message-bridge": "v1.1.2",
  3317. "symfony/routing": "v3.4.41",
  3318. "symfony/serializer": "v3.4.41",
  3319. "symfony/translation": "v3.4.41",
  3320. "symfony/validator": "v3.4.41",
  3321. "symfony/yaml": "v3.4.41",
  3322. "twig/twig": "v1.42.5",
  3323. "typo3/phar-stream-wrapper": "v3.1.4"
  3324. },
  3325. "conflict": {
  3326. "webflo/drupal-core-strict": "*"
  3327. },
  3328. "type": "metapackage",
  3329. "notification-url": "https://packagist.org/downloads/",
  3330. "license": [
  3331. "GPL-2.0-or-later"
  3332. ],
  3333. "description": "Locked core dependencies; require this project INSTEAD OF drupal/core.",
  3334. "time": "2020-07-08T18:53:45+00:00"
  3335. },
  3336. {
  3337. "name": "drupal/ctools",
  3338. "version": "3.4.0",
  3339. "source": {
  3340. "type": "git",
  3341. "url": "https://git.drupalcode.org/project/ctools.git",
  3342. "reference": "8.x-3.4"
  3343. },
  3344. "dist": {
  3345. "type": "zip",
  3346. "url": "https://ftp.drupal.org/files/projects/ctools-8.x-3.4.zip",
  3347. "reference": "8.x-3.4",
  3348. "shasum": "016ca5abb7ac4ca720352a72e8989f3ef0e20539"
  3349. },
  3350. "require": {
  3351. "drupal/core": "^8.7.7 || ^9"
  3352. },
  3353. "type": "drupal-module",
  3354. "extra": {
  3355. "drupal": {
  3356. "version": "8.x-3.4",
  3357. "datestamp": "1585763383",
  3358. "security-coverage": {
  3359. "status": "covered",
  3360. "message": "Covered by Drupal's security advisory policy"
  3361. }
  3362. }
  3363. },
  3364. "notification-url": "https://packages.drupal.org/8/downloads",
  3365. "license": [
  3366. "GPL-2.0+"
  3367. ],
  3368. "authors": [
  3369. {
  3370. "name": "Kris Vanderwater (EclipseGc)",
  3371. "homepage": "https://www.drupal.org/u/eclipsegc",
  3372. "role": "Maintainer"
  3373. },
  3374. {
  3375. "name": "Jakob Perry (japerry)",
  3376. "homepage": "https://www.drupal.org/u/japerry",
  3377. "role": "Maintainer"
  3378. },
  3379. {
  3380. "name": "Tim Plunkett (tim.plunkett)",
  3381. "homepage": "https://www.drupal.org/u/timplunkett",
  3382. "role": "Maintainer"
  3383. },
  3384. {
  3385. "name": "James Gilliland (neclimdul)",
  3386. "homepage": "https://www.drupal.org/u/neclimdul",
  3387. "role": "Maintainer"
  3388. },
  3389. {
  3390. "name": "Daniel Wehner (dawehner)",
  3391. "homepage": "https://www.drupal.org/u/dawehner",
  3392. "role": "Maintainer"
  3393. },
  3394. {
  3395. "name": "joelpittet",
  3396. "homepage": "https://www.drupal.org/user/160302"
  3397. },
  3398. {
  3399. "name": "merlinofchaos",
  3400. "homepage": "https://www.drupal.org/user/26979"
  3401. },
  3402. {
  3403. "name": "neclimdul",
  3404. "homepage": "https://www.drupal.org/user/48673"
  3405. },
  3406. {
  3407. "name": "sdboyer",
  3408. "homepage": "https://www.drupal.org/user/146719"
  3409. },
  3410. {
  3411. "name": "sun",
  3412. "homepage": "https://www.drupal.org/user/54136"
  3413. },
  3414. {
  3415. "name": "tim.plunkett",
  3416. "homepage": "https://www.drupal.org/user/241634"
  3417. }
  3418. ],
  3419. "description": "Provides a number of utility and helper APIs for Drupal developers and site builders.",
  3420. "homepage": "https://www.drupal.org/project/ctools",
  3421. "support": {
  3422. "source": "https://git.drupalcode.org/project/ctools",
  3423. "issues": "https://www.drupal.org/project/issues/ctools"
  3424. }
  3425. },
  3426. {
  3427. "name": "drupal/date_range_formatter",
  3428. "version": "3.1.0",
  3429. "source": {
  3430. "type": "git",
  3431. "url": "https://git.drupalcode.org/project/date_range_formatter.git",
  3432. "reference": "8.x-3.1"
  3433. },
  3434. "dist": {
  3435. "type": "zip",
  3436. "url": "https://ftp.drupal.org/files/projects/date_range_formatter-8.x-3.1.zip",
  3437. "reference": "8.x-3.1",
  3438. "shasum": "a98c511ac90eb92879235bc82a3aa643f7b5c173"
  3439. },
  3440. "require": {
  3441. "drupal/core": "*"
  3442. },
  3443. "type": "drupal-module",
  3444. "extra": {
  3445. "drupal": {
  3446. "version": "8.x-3.1",
  3447. "datestamp": "1502454544",
  3448. "security-coverage": {
  3449. "status": "covered",
  3450. "message": "Covered by Drupal's security advisory policy"
  3451. }
  3452. }
  3453. },
  3454. "notification-url": "https://packages.drupal.org/8/downloads",
  3455. "license": [
  3456. "GPL-2.0-or-later"
  3457. ],
  3458. "authors": [
  3459. {
  3460. "name": "maximpodorov",
  3461. "homepage": "https://www.drupal.org/user/515310"
  3462. },
  3463. {
  3464. "name": "sudishth",
  3465. "homepage": "https://www.drupal.org/user/1440562"
  3466. }
  3467. ],
  3468. "description": "Formats date ranges.",
  3469. "homepage": "https://www.drupal.org/project/date_range_formatter",
  3470. "support": {
  3471. "source": "https://git.drupalcode.org/project/date_range_formatter"
  3472. }
  3473. },
  3474. {
  3475. "name": "drupal/devel",
  3476. "version": "2.1.0",
  3477. "source": {
  3478. "type": "git",
  3479. "url": "https://git.drupalcode.org/project/devel.git",
  3480. "reference": "8.x-2.1"
  3481. },
  3482. "dist": {
  3483. "type": "zip",
  3484. "url": "https://ftp.drupal.org/files/projects/devel-8.x-2.1.zip",
  3485. "reference": "8.x-2.1",
  3486. "shasum": "8f735892922aa5f228e681e645e5f02b1c008f14"
  3487. },
  3488. "require": {
  3489. "drupal/core": "~8.0",
  3490. "symfony/var-dumper": "~2.7|^3|^4"
  3491. },
  3492. "type": "drupal-module",
  3493. "extra": {
  3494. "drupal": {
  3495. "version": "8.x-2.1",
  3496. "datestamp": "1556799496",
  3497. "security-coverage": {
  3498. "status": "covered",
  3499. "message": "Covered by Drupal's security advisory policy"
  3500. }
  3501. },
  3502. "drush": {
  3503. "services": {
  3504. "drush.services.yml": "^9"
  3505. }
  3506. }
  3507. },
  3508. "notification-url": "https://packages.drupal.org/8/downloads",
  3509. "license": [
  3510. "GPL-2.0+"
  3511. ],
  3512. "authors": [
  3513. {
  3514. "name": "Moshe Weitzman",
  3515. "homepage": "https://github.com/weitzman",
  3516. "email": "weitzman@tejasa.com",
  3517. "role": "Maintainer"
  3518. },
  3519. {
  3520. "name": "Hans Salvisberg",
  3521. "homepage": "https://www.drupal.org/u/salvis",
  3522. "email": "drupal@salvisberg.com",
  3523. "role": "Maintainer"
  3524. },
  3525. {
  3526. "name": "Luca Lusso",
  3527. "homepage": "https://www.drupal.org/u/lussoluca",
  3528. "role": "Maintainer"
  3529. },
  3530. {
  3531. "name": "Marco (willzyx)",
  3532. "homepage": "https://www.drupal.org/u/willzyx",
  3533. "role": "Maintainer"
  3534. },
  3535. {
  3536. "name": "See contributors",
  3537. "homepage": "https://www.drupal.org/node/3236/committers"
  3538. }
  3539. ],
  3540. "description": "Various blocks, pages, and functions for developers.",
  3541. "homepage": "http://drupal.org/project/devel",
  3542. "support": {
  3543. "source": "http://cgit.drupalcode.org/devel",
  3544. "issues": "http://drupal.org/project/devel",
  3545. "irc": "irc://irc.freenode.org/drupal-contribute"
  3546. }
  3547. },
  3548. {
  3549. "name": "drupal/domain",
  3550. "version": "1.0.0-alpha16",
  3551. "source": {
  3552. "type": "git",
  3553. "url": "https://git.drupalcode.org/project/domain.git",
  3554. "reference": "8.x-1.0-alpha16"
  3555. },
  3556. "dist": {
  3557. "type": "zip",
  3558. "url": "https://ftp.drupal.org/files/projects/domain-8.x-1.0-alpha16.zip",
  3559. "reference": "8.x-1.0-alpha16",
  3560. "shasum": "d0088936af09e922ec873080d7960a1dc020bef8"
  3561. },
  3562. "require": {
  3563. "drupal/core": "^8.5"
  3564. },
  3565. "require-dev": {
  3566. "drupal/domain_access": "*"
  3567. },
  3568. "type": "drupal-module",
  3569. "extra": {
  3570. "drupal": {
  3571. "version": "8.x-1.0-alpha16",
  3572. "datestamp": "1561126081",
  3573. "security-coverage": {
  3574. "status": "not-covered",
  3575. "message": "Alpha releases are not covered by Drupal security advisories."
  3576. }
  3577. }
  3578. },
  3579. "notification-url": "https://packages.drupal.org/8/downloads",
  3580. "license": [
  3581. "GPL-2.0-or-later"
  3582. ],
  3583. "authors": [
  3584. {
  3585. "name": "agentrickard",
  3586. "homepage": "https://www.drupal.org/user/20975"
  3587. },
  3588. {
  3589. "name": "nonsie",
  3590. "homepage": "https://www.drupal.org/user/29899"
  3591. }
  3592. ],
  3593. "description": "Creates domain records within a Drupal installation.",
  3594. "homepage": "https://www.drupal.org/project/domain",
  3595. "support": {
  3596. "source": "https://git.drupalcode.org/project/domain"
  3597. }
  3598. },
  3599. {
  3600. "name": "drupal/domain_access",
  3601. "version": "1.0.0-alpha16",
  3602. "require": {
  3603. "drupal/core": "*",
  3604. "drupal/domain": "self.version"
  3605. },
  3606. "type": "metapackage",
  3607. "extra": {
  3608. "drupal": {
  3609. "version": "8.x-1.0-alpha16",
  3610. "datestamp": "1561126081",
  3611. "security-coverage": {
  3612. "status": "not-covered",
  3613. "message": "Alpha releases are not covered by Drupal security advisories."
  3614. }
  3615. }
  3616. },
  3617. "notification-url": "https://packages.drupal.org/8/downloads",
  3618. "license": [
  3619. "GPL-2.0-or-later"
  3620. ],
  3621. "authors": [
  3622. {
  3623. "name": "agentrickard",
  3624. "homepage": "https://www.drupal.org/user/20975"
  3625. },
  3626. {
  3627. "name": "nonsie",
  3628. "homepage": "https://www.drupal.org/user/29899"
  3629. }
  3630. ],
  3631. "description": "Domain-based access control for content.",
  3632. "homepage": "https://www.drupal.org/project/domain",
  3633. "support": {
  3634. "source": "https://git.drupalcode.org/project/domain"
  3635. }
  3636. },
  3637. {
  3638. "name": "drupal/domain_config",
  3639. "version": "1.0.0-alpha16",
  3640. "require": {
  3641. "drupal/core": "~8.0",
  3642. "drupal/domain": "self.version"
  3643. },
  3644. "type": "metapackage",
  3645. "extra": {
  3646. "drupal": {
  3647. "version": "8.x-1.0-alpha16",
  3648. "datestamp": "1561126081",
  3649. "security-coverage": {
  3650. "status": "not-covered",
  3651. "message": "Alpha releases are not covered by Drupal security advisories."
  3652. }
  3653. }
  3654. },
  3655. "notification-url": "https://packages.drupal.org/8/downloads",
  3656. "license": [
  3657. "GPL-2.0-or-later"
  3658. ],
  3659. "authors": [
  3660. {
  3661. "name": "agentrickard",
  3662. "homepage": "https://www.drupal.org/user/20975"
  3663. },
  3664. {
  3665. "name": "nonsie",
  3666. "homepage": "https://www.drupal.org/user/29899"
  3667. }
  3668. ],
  3669. "description": "Allows domain specific configuration.",
  3670. "homepage": "https://www.drupal.org/project/domain",
  3671. "support": {
  3672. "source": "https://git.drupalcode.org/project/domain"
  3673. }
  3674. },
  3675. {
  3676. "name": "drupal/domain_menu_access",
  3677. "version": "dev-1.x",
  3678. "source": {
  3679. "type": "git",
  3680. "url": "https://git.drupalcode.org/project/domain_menu_access.git",
  3681. "reference": "cd62e57ec09be4eca491e18e50092e10c19750f2"
  3682. },
  3683. "require": {
  3684. "drupal/core": "~8.0",
  3685. "drupal/domain": "^1",
  3686. "drupal/domain_access": "^1"
  3687. },
  3688. "type": "drupal-module",
  3689. "extra": {
  3690. "branch-alias": {
  3691. "dev-1.x": "1.x-dev"
  3692. },
  3693. "drupal": {
  3694. "version": "8.x-1.0-alpha2+3-dev",
  3695. "datestamp": "1551553085",
  3696. "security-coverage": {
  3697. "status": "not-covered",
  3698. "message": "Dev releases are not covered by Drupal security advisories."
  3699. }
  3700. }
  3701. },
  3702. "notification-url": "https://packages.drupal.org/8/downloads",
  3703. "license": [
  3704. "GPL-2.0+"
  3705. ],
  3706. "authors": [
  3707. {
  3708. "name": "Sebastien @Actualys",
  3709. "homepage": "https://www.drupal.org/user/380104"
  3710. },
  3711. {
  3712. "name": "maciej.zgadzaj",
  3713. "homepage": "https://www.drupal.org/user/271491"
  3714. },
  3715. {
  3716. "name": "pifagor",
  3717. "homepage": "https://www.drupal.org/user/2375692"
  3718. }
  3719. ],
  3720. "description": "Domain-based access control for menu link.",
  3721. "homepage": "https://www.drupal.org/project/domain_menu_access",
  3722. "support": {
  3723. "source": "https://git.drupalcode.org/project/domain_menu_access"
  3724. },
  3725. "time": "2019-04-11T06:07:16+00:00"
  3726. },
  3727. {
  3728. "name": "drupal/domain_site_settings",
  3729. "version": "1.3.0",
  3730. "source": {
  3731. "type": "git",
  3732. "url": "https://git.drupalcode.org/project/domain_site_settings.git",
  3733. "reference": "8.x-1.3"
  3734. },
  3735. "dist": {
  3736. "type": "zip",
  3737. "url": "https://ftp.drupal.org/files/projects/domain_site_settings-8.x-1.3.zip",
  3738. "reference": "8.x-1.3",
  3739. "shasum": "36ad22d8e31400f372b9e7f587578061b4fdc5db"
  3740. },
  3741. "require": {
  3742. "drupal/core": "~8.0",
  3743. "drupal/domain": "*",
  3744. "drupal/domain_config": "*"
  3745. },
  3746. "type": "drupal-module",
  3747. "extra": {
  3748. "branch-alias": {
  3749. "dev-1.x": "1.x-dev"
  3750. },
  3751. "drupal": {
  3752. "version": "8.x-1.3",
  3753. "datestamp": "1537684980",
  3754. "security-coverage": {
  3755. "status": "covered",
  3756. "message": "Covered by Drupal's security advisory policy"
  3757. }
  3758. },
  3759. "patches_applied": {
  3760. "Circular Error or Conflict with Language_Manager": "https://www.drupal.org/files/issues/2018-10-09/2930391-21.patch"
  3761. }
  3762. },
  3763. "notification-url": "https://packages.drupal.org/8/downloads",
  3764. "license": [
  3765. "GPL-2.0+"
  3766. ],
  3767. "authors": [
  3768. {
  3769. "name": "aloknarwaria",
  3770. "homepage": "https://www.drupal.org/user/906640"
  3771. },
  3772. {
  3773. "name": "malaynayak",
  3774. "homepage": "https://www.drupal.org/user/3529755"
  3775. }
  3776. ],
  3777. "description": "Basic Site Setting for Domains.",
  3778. "homepage": "https://www.drupal.org/project/domain_site_settings",
  3779. "keywords": [
  3780. "Drupal"
  3781. ],
  3782. "support": {
  3783. "source": "http://cgit.drupalcode.org/domain_site_settings",
  3784. "issues": "https://www.drupal.org/project/issues/domain_site_settings"
  3785. }
  3786. },
  3787. {
  3788. "name": "drupal/email_registration",
  3789. "version": "1.0.0",
  3790. "source": {
  3791. "type": "git",
  3792. "url": "https://git.drupalcode.org/project/email_registration.git",
  3793. "reference": "8.x-1.0"
  3794. },
  3795. "dist": {
  3796. "type": "zip",
  3797. "url": "https://ftp.drupal.org/files/projects/email_registration-8.x-1.0.zip",
  3798. "reference": "8.x-1.0",
  3799. "shasum": "f960f489f4273212b924a2d54e6cb8e43adb633e"
  3800. },
  3801. "require": {
  3802. "drupal/core": "*"
  3803. },
  3804. "conflict": {
  3805. "drupal/commerce": "<2.12"
  3806. },
  3807. "require-dev": {
  3808. "drupal/commerce": "^2.0"
  3809. },
  3810. "type": "drupal-module",
  3811. "extra": {
  3812. "branch-alias": {
  3813. "dev-1.x": "1.x-dev"
  3814. },
  3815. "drupal": {
  3816. "version": "8.x-1.0",
  3817. "datestamp": "1580243964",
  3818. "security-coverage": {
  3819. "status": "covered",
  3820. "message": "Covered by Drupal's security advisory policy"
  3821. }
  3822. }
  3823. },
  3824. "notification-url": "https://packages.drupal.org/8/downloads",
  3825. "license": [
  3826. "GPL-2.0+"
  3827. ],
  3828. "authors": [
  3829. {
  3830. "name": "Greg Knaddison (greggles)",
  3831. "homepage": "https://www.drupal.org/u/greggles",
  3832. "role": "Maintainer"
  3833. },
  3834. {
  3835. "name": "Andrey Postnikov (andypost)",
  3836. "homepage": "https://www.drupal.org/u/andypost",
  3837. "role": "Maintainer"
  3838. },
  3839. {
  3840. "name": "Chris Herberte",
  3841. "homepage": "https://www.drupal.org/u/chris-herberte",
  3842. "role": "Maintainer"
  3843. },
  3844. {
  3845. "name": "Moshe Weitzman (moshe weitzman)",
  3846. "homepage": "https://www.drupal.org/u/moshe-weitzman",
  3847. "role": "Maintainer"
  3848. }
  3849. ],
  3850. "description": "Allows users to register with an email address as their username.",
  3851. "homepage": "https://www.drupal.org/project/email_registration",
  3852. "support": {
  3853. "source": "http://cgit.drupalcode.org/email_registration",
  3854. "issues": "http://drupal.org/project/issues/email_registration"
  3855. }
  3856. },
  3857. {
  3858. "name": "drupal/entity",
  3859. "version": "1.0.0",
  3860. "source": {
  3861. "type": "git",
  3862. "url": "https://git.drupalcode.org/project/entity.git",
  3863. "reference": "8.x-1.0"
  3864. },
  3865. "dist": {
  3866. "type": "zip",
  3867. "url": "https://ftp.drupal.org/files/projects/entity-8.x-1.0.zip",
  3868. "reference": "8.x-1.0",
  3869. "shasum": "ac359ada43416ca3a8d0e44f2985b0a9fae07625"
  3870. },
  3871. "require": {
  3872. "drupal/core": "^8.7.7 || ^9"
  3873. },
  3874. "type": "drupal-module",
  3875. "extra": {
  3876. "branch-alias": {
  3877. "dev-1.x": "1.x-dev"
  3878. },
  3879. "drupal": {
  3880. "version": "8.x-1.0",
  3881. "datestamp": "1582735747",
  3882. "security-coverage": {
  3883. "status": "covered",
  3884. "message": "Covered by Drupal's security advisory policy"
  3885. }
  3886. }
  3887. },
  3888. "notification-url": "https://packages.drupal.org/8/downloads",
  3889. "license": [
  3890. "GPL-2.0+"
  3891. ],
  3892. "authors": [
  3893. {
  3894. "name": "Berdir",
  3895. "homepage": "https://www.drupal.org/user/214652"
  3896. },
  3897. {
  3898. "name": "bojanz",
  3899. "homepage": "https://www.drupal.org/user/86106"
  3900. },
  3901. {
  3902. "name": "dawehner",
  3903. "homepage": "https://www.drupal.org/user/99340"
  3904. },
  3905. {
  3906. "name": "dixon_",
  3907. "homepage": "https://www.drupal.org/user/239911"
  3908. },
  3909. {
  3910. "name": "fago",
  3911. "homepage": "https://www.drupal.org/user/16747"
  3912. }
  3913. ],
  3914. "description": "Provides expanded entity APIs, which will be moved to Drupal core one day.",
  3915. "homepage": "http://drupal.org/project/entity",
  3916. "support": {
  3917. "source": "https://git.drupalcode.org/project/entity"
  3918. }
  3919. },
  3920. {
  3921. "name": "drupal/features",
  3922. "version": "3.8.0",
  3923. "source": {
  3924. "type": "git",
  3925. "url": "https://git.drupalcode.org/project/features.git",
  3926. "reference": "8.x-3.8"
  3927. },
  3928. "dist": {
  3929. "type": "zip",
  3930. "url": "https://ftp.drupal.org/files/projects/features-8.x-3.8.zip",
  3931. "reference": "8.x-3.8",
  3932. "shasum": "15cebd00e38d63c0d946682e76327a03499c27be"
  3933. },
  3934. "require": {
  3935. "drupal/config_update": "^1.4",
  3936. "drupal/core": "*"
  3937. },
  3938. "type": "drupal-module",
  3939. "extra": {
  3940. "drupal": {
  3941. "version": "8.x-3.8",
  3942. "datestamp": "1536512284",
  3943. "security-coverage": {
  3944. "status": "covered",
  3945. "message": "Covered by Drupal's security advisory policy"
  3946. }
  3947. },
  3948. "drush": {
  3949. "services": {
  3950. "drush.services.yml": "^9"
  3951. }
  3952. }
  3953. },
  3954. "notification-url": "https://packages.drupal.org/8/downloads",
  3955. "license": [
  3956. "GPL-2.0+"
  3957. ],
  3958. "authors": [
  3959. {
  3960. "name": "dawehner",
  3961. "homepage": "https://www.drupal.org/user/99340"
  3962. },
  3963. {
  3964. "name": "donquixote",
  3965. "homepage": "https://www.drupal.org/user/459338"
  3966. },
  3967. {
  3968. "name": "e2thex",
  3969. "homepage": "https://www.drupal.org/user/189123"
  3970. },
  3971. {
  3972. "name": "febbraro",
  3973. "homepage": "https://www.drupal.org/user/43670"
  3974. },
  3975. {
  3976. "name": "flocondetoile",
  3977. "homepage": "https://www.drupal.org/user/2006064"
  3978. },
  3979. {
  3980. "name": "jmiccolis",
  3981. "homepage": "https://www.drupal.org/user/31731"
  3982. },
  3983. {
  3984. "name": "joseph.olstad",
  3985. "homepage": "https://www.drupal.org/user/1321830"
  3986. },
  3987. {
  3988. "name": "mpotter",
  3989. "homepage": "https://www.drupal.org/user/616192"
  3990. },
  3991. {
  3992. "name": "nedjo",
  3993. "homepage": "https://www.drupal.org/user/4481"
  3994. },
  3995. {
  3996. "name": "tim.plunkett",
  3997. "homepage": "https://www.drupal.org/user/241634"
  3998. }
  3999. ],
  4000. "description": "Enables administrators to package configuration into modules",
  4001. "homepage": "https://www.drupal.org/project/features",
  4002. "support": {
  4003. "source": "https://git.drupalcode.org/project/features"
  4004. }
  4005. },
  4006. {
  4007. "name": "drupal/field_group",
  4008. "version": "3.0.0",
  4009. "source": {
  4010. "type": "git",
  4011. "url": "https://git.drupalcode.org/project/field_group.git",
  4012. "reference": "8.x-3.0"
  4013. },
  4014. "dist": {
  4015. "type": "zip",
  4016. "url": "https://ftp.drupal.org/files/projects/field_group-8.x-3.0.zip",
  4017. "reference": "8.x-3.0",
  4018. "shasum": "8d87cdc4abc417aa4d411bffcaeb0a3ef1afa497"
  4019. },
  4020. "require": {
  4021. "drupal/core": "^8 || ^9"
  4022. },
  4023. "type": "drupal-module",
  4024. "extra": {
  4025. "drupal": {
  4026. "version": "8.x-3.0",
  4027. "datestamp": "1580250787",
  4028. "security-coverage": {
  4029. "status": "covered",
  4030. "message": "Covered by Drupal's security advisory policy"
  4031. }
  4032. }
  4033. },
  4034. "notification-url": "https://packages.drupal.org/8/downloads",
  4035. "license": [
  4036. "GPL-2.0+"
  4037. ],
  4038. "authors": [
  4039. {
  4040. "name": "Hydra",
  4041. "homepage": "https://www.drupal.org/user/647364"
  4042. },
  4043. {
  4044. "name": "Stalski",
  4045. "homepage": "https://www.drupal.org/user/322618"
  4046. },
  4047. {
  4048. "name": "jyve",
  4049. "homepage": "https://www.drupal.org/user/591438"
  4050. },
  4051. {
  4052. "name": "nils.destoop",
  4053. "homepage": "https://www.drupal.org/user/361625"
  4054. },
  4055. {
  4056. "name": "swentel",
  4057. "homepage": "https://www.drupal.org/user/107403"
  4058. }
  4059. ],
  4060. "description": "Provides the field_group module.",
  4061. "homepage": "https://www.drupal.org/project/field_group",
  4062. "support": {
  4063. "source": "https://git.drupalcode.org/project/field_group"
  4064. }
  4065. },
  4066. {
  4067. "name": "drupal/filefield_sources",
  4068. "version": "dev-1.x",
  4069. "source": {
  4070. "type": "git",
  4071. "url": "https://git.drupalcode.org/project/filefield_sources.git",
  4072. "reference": "38dfa6622a8876854887feefd3c348583ef0586f"
  4073. },
  4074. "require": {
  4075. "drupal/core": "*"
  4076. },
  4077. "require-dev": {
  4078. "drupal/imce": "*"
  4079. },
  4080. "type": "drupal-module",
  4081. "extra": {
  4082. "branch-alias": {
  4083. "dev-1.x": "1.x-dev"
  4084. },
  4085. "drupal": {
  4086. "version": "8.x-1.0-alpha2+2-dev",
  4087. "datestamp": "1579885386",
  4088. "security-coverage": {
  4089. "status": "not-covered",
  4090. "message": "Dev releases are not covered by Drupal security advisories."
  4091. }
  4092. }
  4093. },
  4094. "notification-url": "https://packages.drupal.org/8/downloads",
  4095. "license": [
  4096. "GPL-2.0-or-later"
  4097. ],
  4098. "authors": [
  4099. {
  4100. "name": "Nate Lampton (quicksketch)",
  4101. "homepage": "https://www.drupal.org/u/quicksketch",
  4102. "role": "Maintainer"
  4103. },
  4104. {
  4105. "name": "Andrey Khromyshev (profak)",
  4106. "homepage": "https://www.drupal.org/u/profak",
  4107. "role": "Maintainer"
  4108. },
  4109. {
  4110. "name": "David Valdez (gnuget)",
  4111. "homepage": "https://www.drupal.org/u/gnuget",
  4112. "role": "Maintainer"
  4113. }
  4114. ],
  4115. "description": "Extends File fields to allow referencing of existing files, remote files, and server files.",
  4116. "homepage": "https://www.drupal.org/project/filefield_sources",
  4117. "support": {
  4118. "source": "https://git.drupalcode.org/project/filefield_sources",
  4119. "issues": "https://www.drupal.org/project/issues/filefield_sources",
  4120. "irc": "irc://irc.freenode.org/drupal-contribute"
  4121. },
  4122. "time": "2020-01-30T15:32:54+00:00"
  4123. },
  4124. {
  4125. "name": "drupal/filter_perms",
  4126. "version": "dev-1.x",
  4127. "source": {
  4128. "type": "git",
  4129. "url": "https://git.drupalcode.org/project/filter_perms.git",
  4130. "reference": "f491dd73fd876f6de0b2252c6b9bf18e0e27b357"
  4131. },
  4132. "require": {
  4133. "drupal/core": "*"
  4134. },
  4135. "type": "drupal-module",
  4136. "extra": {
  4137. "branch-alias": {
  4138. "dev-1.x": "1.x-dev"
  4139. },
  4140. "drupal": {
  4141. "version": "8.x-1.x-dev",
  4142. "datestamp": "1469645939",
  4143. "security-coverage": {
  4144. "status": "not-covered",
  4145. "message": "Dev releases are not covered by Drupal security advisories."
  4146. }
  4147. }
  4148. },
  4149. "notification-url": "https://packages.drupal.org/8/downloads",
  4150. "license": [
  4151. "GPL-2.0-or-later"
  4152. ],
  4153. "authors": [
  4154. {
  4155. "name": "cYu",
  4156. "homepage": "https://www.drupal.org/user/202205"
  4157. },
  4158. {
  4159. "name": "deekayen",
  4160. "homepage": "https://www.drupal.org/user/972"
  4161. },
  4162. {
  4163. "name": "willzyx",
  4164. "homepage": "https://www.drupal.org/user/1043862"
  4165. }
  4166. ],
  4167. "description": "Provides role and module filters to simplify the user permissions page.",
  4168. "homepage": "https://www.drupal.org/project/filter_perms",
  4169. "support": {
  4170. "source": "https://git.drupalcode.org/project/filter_perms"
  4171. },
  4172. "time": "2016-07-27T19:01:11+00:00"
  4173. },
  4174. {
  4175. "name": "drupal/honeypot",
  4176. "version": "1.30.0",
  4177. "source": {
  4178. "type": "git",
  4179. "url": "https://git.drupalcode.org/project/honeypot.git",
  4180. "reference": "8.x-1.30"
  4181. },
  4182. "dist": {
  4183. "type": "zip",
  4184. "url": "https://ftp.drupal.org/files/projects/honeypot-8.x-1.30.zip",
  4185. "reference": "8.x-1.30",
  4186. "shasum": "1d7983e8e07feee4f13e4b05c9a10db15ae2097e"
  4187. },
  4188. "require": {
  4189. "drupal/core": "~8.0"
  4190. },
  4191. "type": "drupal-module",
  4192. "extra": {
  4193. "drupal": {
  4194. "version": "8.x-1.30",
  4195. "datestamp": "1576274288",
  4196. "security-coverage": {
  4197. "status": "covered",
  4198. "message": "Covered by Drupal's security advisory policy"
  4199. }
  4200. }
  4201. },
  4202. "notification-url": "https://packages.drupal.org/8/downloads",
  4203. "license": [
  4204. "GPL-2.0+"
  4205. ],
  4206. "authors": [
  4207. {
  4208. "name": "Jeff Geerling",
  4209. "homepage": "https://www.drupal.org/user/213194",
  4210. "email": "geerlingguy@mac.com"
  4211. },
  4212. {
  4213. "name": "geerlingguy",
  4214. "homepage": "https://www.drupal.org/user/389011"
  4215. },
  4216. {
  4217. "name": "vijaycs85",
  4218. "homepage": "https://www.drupal.org/user/93488"
  4219. }
  4220. ],
  4221. "description": "Mitigates spam form submissions using the honeypot method.",
  4222. "homepage": "https://www.drupal.org/project/honeypot",
  4223. "keywords": [
  4224. "deterrent",
  4225. "form",
  4226. "honeypot",
  4227. "honeytrap",
  4228. "php",
  4229. "spam"
  4230. ],
  4231. "support": {
  4232. "source": "https://git.drupalcode.org/project/honeypot"
  4233. }
  4234. },
  4235. {
  4236. "name": "drupal/linkit",
  4237. "version": "5.0.0-beta10",
  4238. "source": {
  4239. "type": "git",
  4240. "url": "https://git.drupalcode.org/project/linkit.git",
  4241. "reference": "8.x-5.0-beta10"
  4242. },
  4243. "dist": {
  4244. "type": "zip",
  4245. "url": "https://ftp.drupal.org/files/projects/linkit-8.x-5.0-beta10.zip",
  4246. "reference": "8.x-5.0-beta10",
  4247. "shasum": "9980707514ec63fd1bdc27eebd4af243efda97a6"
  4248. },
  4249. "require": {
  4250. "drupal/core": "~8.0"
  4251. },
  4252. "require-dev": {
  4253. "drupal/imce": "*"
  4254. },
  4255. "type": "drupal-module",
  4256. "extra": {
  4257. "drupal": {
  4258. "version": "8.x-5.0-beta10",
  4259. "datestamp": "1573783085",
  4260. "security-coverage": {
  4261. "status": "not-covered",
  4262. "message": "Beta releases are not covered by Drupal security advisories."
  4263. }
  4264. }
  4265. },
  4266. "notification-url": "https://packages.drupal.org/8/downloads",
  4267. "license": [
  4268. "GPL-2.0+"
  4269. ],
  4270. "authors": [
  4271. {
  4272. "name": "Emil Stjerneman",
  4273. "homepage": "https://stjerneman.com",
  4274. "email": "emil@stjerneman.com",
  4275. "role": "Maintainer"
  4276. }
  4277. ],
  4278. "description": "Linkit - Enriched linking experience",
  4279. "homepage": "http://drupal.org/project/linkit",
  4280. "support": {
  4281. "source": "http://cgit.drupalcode.org/linkit",
  4282. "issues": "http://drupal.org/project/linkit"
  4283. }
  4284. },
  4285. {
  4286. "name": "drupal/login_emailusername",
  4287. "version": "1.1.0",
  4288. "source": {
  4289. "type": "git",
  4290. "url": "https://git.drupalcode.org/project/login_emailusername.git",
  4291. "reference": "8.x-1.1"
  4292. },
  4293. "dist": {
  4294. "type": "zip",
  4295. "url": "https://ftp.drupal.org/files/projects/login_emailusername-8.x-1.1.zip",
  4296. "reference": "8.x-1.1",
  4297. "shasum": "f484b76b538f4dbbae5a75b49577f4ddf576809e"
  4298. },
  4299. "require": {
  4300. "drupal/core": "~8.0"
  4301. },
  4302. "type": "drupal-module",
  4303. "extra": {
  4304. "branch-alias": {
  4305. "dev-1.x": "1.x-dev"
  4306. },
  4307. "drupal": {
  4308. "version": "8.x-1.1",
  4309. "datestamp": "1483456142",
  4310. "security-coverage": {
  4311. "status": "covered",
  4312. "message": "Covered by Drupal's security advisory policy"
  4313. }
  4314. },
  4315. "patches_applied": {
  4316. "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"
  4317. }
  4318. },
  4319. "notification-url": "https://packages.drupal.org/8/downloads",
  4320. "license": [
  4321. "GPL-2.0-or-later"
  4322. ],
  4323. "authors": [
  4324. {
  4325. "name": "rjjakes",
  4326. "homepage": "https://www.drupal.org/user/3457245"
  4327. }
  4328. ],
  4329. "description": "Allow users to log in with either their username OR email address using the same input box on the login form.",
  4330. "homepage": "https://www.drupal.org/project/login_emailusername",
  4331. "support": {
  4332. "source": "https://git.drupalcode.org/project/login_emailusername"
  4333. }
  4334. },
  4335. {
  4336. "name": "drupal/maillog",
  4337. "version": "dev-1.x",
  4338. "source": {
  4339. "type": "git",
  4340. "url": "https://git.drupalcode.org/project/maillog.git",
  4341. "reference": "3ec675bd7842c04bc01860fa8b3f424f95a17d93"
  4342. },
  4343. "require": {
  4344. "drupal/core": "*"
  4345. },
  4346. "type": "drupal-module",
  4347. "extra": {
  4348. "branch-alias": {
  4349. "dev-1.x": "1.x-dev"
  4350. },
  4351. "drupal": {
  4352. "version": "8.x-1.x-dev",
  4353. "datestamp": "1470431939",
  4354. "security-coverage": {
  4355. "status": "not-covered",
  4356. "message": "Project has not opted into security advisory coverage!"
  4357. }
  4358. }
  4359. },
  4360. "notification-url": "https://packages.drupal.org/8/downloads",
  4361. "license": [
  4362. "GPL-2.0-or-later"
  4363. ],
  4364. "authors": [
  4365. {
  4366. "name": "Berdir",
  4367. "homepage": "https://www.drupal.org/user/214652"
  4368. },
  4369. {
  4370. "name": "DamienMcKenna",
  4371. "homepage": "https://www.drupal.org/user/108450"
  4372. },
  4373. {
  4374. "name": "miro_dietiker",
  4375. "homepage": "https://www.drupal.org/user/227761"
  4376. },
  4377. {
  4378. "name": "pluess",
  4379. "homepage": "https://www.drupal.org/user/84659"
  4380. }
  4381. ],
  4382. "description": "Utility to log all Mails for debugging purposes. It is possible to suppress mail delivery for e.g. dev or staging systems.",
  4383. "homepage": "https://www.drupal.org/project/maillog",
  4384. "support": {
  4385. "source": "https://git.drupalcode.org/project/maillog"
  4386. },
  4387. "time": "2020-05-19T01:33:41+00:00"
  4388. },
  4389. {
  4390. "name": "drupal/matomo",
  4391. "version": "1.9.0",
  4392. "source": {
  4393. "type": "git",
  4394. "url": "https://git.drupalcode.org/project/matomo.git",
  4395. "reference": "8.x-1.9"
  4396. },
  4397. "dist": {
  4398. "type": "zip",
  4399. "url": "https://ftp.drupal.org/files/projects/matomo-8.x-1.9.zip",
  4400. "reference": "8.x-1.9",
  4401. "shasum": "2c818af730f834d3aef3f6b7aa29f05e6fa9246d"
  4402. },
  4403. "require": {
  4404. "drupal/core": "~8.5"
  4405. },
  4406. "require-dev": {
  4407. "drupal/php": "*",
  4408. "drupal/token": "*"
  4409. },
  4410. "type": "drupal-module",
  4411. "extra": {
  4412. "branch-alias": {
  4413. "dev-1.x": "1.x-dev"
  4414. },
  4415. "drupal": {
  4416. "version": "8.x-1.9",
  4417. "datestamp": "1549615080",
  4418. "security-coverage": {
  4419. "status": "covered",
  4420. "message": "Covered by Drupal's security advisory policy"
  4421. }
  4422. }
  4423. },
  4424. "notification-url": "https://packages.drupal.org/8/downloads",
  4425. "license": [
  4426. "GPL-2.0+"
  4427. ],
  4428. "authors": [
  4429. {
  4430. "name": "hass",
  4431. "homepage": "https://www.drupal.org/u/hass"
  4432. },
  4433. {
  4434. "name": "See other contributors",
  4435. "homepage": "https://www.drupal.org/node/247808/committers"
  4436. }
  4437. ],
  4438. "description": "Adds Matomo javascript tracking code to all your site's pages",
  4439. "homepage": "https://www.drupal.org/project/matomo",
  4440. "support": {
  4441. "source": "https://git.drupal.org/project/matomo.git",
  4442. "issues": "https://www.drupal.org/project/issues/matomo"
  4443. }
  4444. },
  4445. {
  4446. "name": "drupal/menu_admin_per_menu",
  4447. "version": "1.0.0",
  4448. "source": {
  4449. "type": "git",
  4450. "url": "https://git.drupalcode.org/project/menu_admin_per_menu.git",
  4451. "reference": "8.x-1.0"
  4452. },
  4453. "dist": {
  4454. "type": "zip",
  4455. "url": "https://ftp.drupal.org/files/projects/menu_admin_per_menu-8.x-1.0.zip",
  4456. "reference": "8.x-1.0",
  4457. "shasum": "27dbef0025146a382feab67db5e93eaf280b8de4"
  4458. },
  4459. "require": {
  4460. "drupal/core": "*"
  4461. },
  4462. "type": "drupal-module",
  4463. "extra": {
  4464. "branch-alias": {
  4465. "dev-1.x": "1.x-dev"
  4466. },
  4467. "drupal": {
  4468. "version": "8.x-1.0",
  4469. "datestamp": "1507184944",
  4470. "security-coverage": {
  4471. "status": "covered",
  4472. "message": "Covered by Drupal's security advisory policy"
  4473. }
  4474. }
  4475. },
  4476. "notification-url": "https://packages.drupal.org/8/downloads",
  4477. "license": [
  4478. "GPL-2.0-or-later"
  4479. ],
  4480. "authors": [
  4481. {
  4482. "name": "anrikun",
  4483. "homepage": "https://www.drupal.org/user/410199"
  4484. },
  4485. {
  4486. "name": "mkdok",
  4487. "homepage": "https://www.drupal.org/user/3308753"
  4488. }
  4489. ],
  4490. "description": "Allows to give roles per menu admin permissions without giving them full administer menu permission.",
  4491. "homepage": "https://www.drupal.org/project/menu_admin_per_menu",
  4492. "support": {
  4493. "source": "https://git.drupalcode.org/project/menu_admin_per_menu"
  4494. }
  4495. },
  4496. {
  4497. "name": "drupal/metatag",
  4498. "version": "1.13.0",
  4499. "source": {
  4500. "type": "git",
  4501. "url": "https://git.drupalcode.org/project/metatag.git",
  4502. "reference": "8.x-1.13"
  4503. },
  4504. "dist": {
  4505. "type": "zip",
  4506. "url": "https://ftp.drupal.org/files/projects/metatag-8.x-1.13.zip",
  4507. "reference": "8.x-1.13",
  4508. "shasum": "c471d9982a6540fd7baccc94572947923634fb6b"
  4509. },
  4510. "require": {
  4511. "drupal/core": "^8 || ^9",
  4512. "drupal/token": "^1.0"
  4513. },
  4514. "require-dev": {
  4515. "drupal/metatag_dc": "*",
  4516. "drupal/metatag_open_graph": "*",
  4517. "drupal/page_manager": "4.x-dev",
  4518. "drupal/redirect": "1.x-dev"
  4519. },
  4520. "type": "drupal-module",
  4521. "extra": {
  4522. "drupal": {
  4523. "version": "8.x-1.13",
  4524. "datestamp": "1587478404",
  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+"
  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.16.0",
  5096. "source": {
  5097. "type": "git",
  5098. "url": "https://git.drupalcode.org/project/search_api.git",
  5099. "reference": "8.x-1.16"
  5100. },
  5101. "dist": {
  5102. "type": "zip",
  5103. "url": "https://ftp.drupal.org/files/projects/search_api-8.x-1.16.zip",
  5104. "reference": "8.x-1.16",
  5105. "shasum": "59bf49fd506d532b0da62e30165d06057ab90013"
  5106. },
  5107. "require": {
  5108. "drupal/core": "^8.7.4"
  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.16",
  5127. "datestamp": "1588361091",
  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.6.0",
  5168. "source": {
  5169. "type": "git",
  5170. "url": "https://git.drupalcode.org/project/simple_sitemap.git",
  5171. "reference": "8.x-3.6"
  5172. },
  5173. "dist": {
  5174. "type": "zip",
  5175. "url": "https://ftp.drupal.org/files/projects/simple_sitemap-8.x-3.6.zip",
  5176. "reference": "8.x-3.6",
  5177. "shasum": "37fc0ae98a4ccb23316cb089ae4839913e80cbf6"
  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.6",
  5187. "datestamp": "1586469908",
  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+"
  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.6.0",
  5529. "source": {
  5530. "type": "git",
  5531. "url": "https://git.drupalcode.org/project/views_bulk_operations.git",
  5532. "reference": "8.x-3.6"
  5533. },
  5534. "dist": {
  5535. "type": "zip",
  5536. "url": "https://ftp.drupal.org/files/projects/views_bulk_operations-8.x-3.6.zip",
  5537. "reference": "8.x-3.6",
  5538. "shasum": "e73974b85f33b6b569912b5bd880510586bd5486"
  5539. },
  5540. "require": {
  5541. "drupal/core": "~8.8"
  5542. },
  5543. "type": "drupal-module",
  5544. "extra": {
  5545. "drupal": {
  5546. "version": "8.x-3.6",
  5547. "datestamp": "1583133990",
  5548. "security-coverage": {
  5549. "status": "covered",
  5550. "message": "Covered by Drupal's security advisory policy"
  5551. }
  5552. },
  5553. "drush": {
  5554. "services": {
  5555. "drush.services.yml": "^9"
  5556. }
  5557. }
  5558. },
  5559. "notification-url": "https://packages.drupal.org/8/downloads",
  5560. "license": [
  5561. "GPL-2.0+"
  5562. ],
  5563. "authors": [
  5564. {
  5565. "name": "Marcin Grabias",
  5566. "homepage": "https://www.drupal.org/u/graber"
  5567. },
  5568. {
  5569. "name": "Jon Pugh",
  5570. "homepage": "https://www.drupal.org/user/17028"
  5571. },
  5572. {
  5573. "name": "bojanz",
  5574. "homepage": "https://www.drupal.org/user/86106"
  5575. },
  5576. {
  5577. "name": "infojunkie",
  5578. "homepage": "https://www.drupal.org/user/48424"
  5579. },
  5580. {
  5581. "name": "joelpittet",
  5582. "homepage": "https://www.drupal.org/user/160302"
  5583. }
  5584. ],
  5585. "description": "Adds an ability to perform bulk operations on selected entities from view results. Provides an API to create such operations.",
  5586. "homepage": "https://www.drupal.org/project/views_bulk_operations",
  5587. "support": {
  5588. "source": "https://git.drupalcode.org/project/views_bulk_operations",
  5589. "issues": "https://www.drupal.org/project/issues/views_bulk_operations?version=8.x",
  5590. "docs": "https://www.drupal.org/docs/8/modules/views-bulk-operations-vbo"
  5591. }
  5592. },
  5593. {
  5594. "name": "drupal/workflow",
  5595. "version": "dev-1.x",
  5596. "source": {
  5597. "type": "git",
  5598. "url": "https://git.drupalcode.org/project/workflow.git",
  5599. "reference": "d75c801c73cec1f73c6a4273abce42686734503c"
  5600. },
  5601. "require": {
  5602. "drupal/core": "^8 || ^9"
  5603. },
  5604. "type": "drupal-module",
  5605. "extra": {
  5606. "branch-alias": {
  5607. "dev-1.x": "1.x-dev"
  5608. },
  5609. "drupal": {
  5610. "version": "8.x-1.1+59-dev",
  5611. "datestamp": "1590561418",
  5612. "security-coverage": {
  5613. "status": "not-covered",
  5614. "message": "Dev releases are not covered by Drupal security advisories."
  5615. }
  5616. }
  5617. },
  5618. "notification-url": "https://packages.drupal.org/8/downloads",
  5619. "license": [
  5620. "GPL-2.0-or-later"
  5621. ],
  5622. "authors": [
  5623. {
  5624. "name": "Bastlynn",
  5625. "homepage": "https://www.drupal.org/user/275249"
  5626. },
  5627. {
  5628. "name": "Heine",
  5629. "homepage": "https://www.drupal.org/user/17943"
  5630. },
  5631. {
  5632. "name": "JacobSingh",
  5633. "homepage": "https://www.drupal.org/user/68912"
  5634. },
  5635. {
  5636. "name": "NancyDru",
  5637. "homepage": "https://www.drupal.org/user/101412"
  5638. },
  5639. {
  5640. "name": "eaton",
  5641. "homepage": "https://www.drupal.org/user/16496"
  5642. },
  5643. {
  5644. "name": "johnv",
  5645. "homepage": "https://www.drupal.org/user/591042"
  5646. },
  5647. {
  5648. "name": "jvandyk",
  5649. "homepage": "https://www.drupal.org/user/2375"
  5650. },
  5651. {
  5652. "name": "mfredrickson",
  5653. "homepage": "https://www.drupal.org/user/31994"
  5654. },
  5655. {
  5656. "name": "q0rban",
  5657. "homepage": "https://www.drupal.org/user/31022"
  5658. }
  5659. ],
  5660. "description": "Defines a field type with Workflows, containing customizable state transitions.",
  5661. "homepage": "https://www.drupal.org/project/workflow",
  5662. "support": {
  5663. "source": "https://git.drupalcode.org/project/workflow"
  5664. },
  5665. "time": "2020-05-27T07:25:14+00:00"
  5666. },
  5667. {
  5668. "name": "drush/drush",
  5669. "version": "9.7.2",
  5670. "source": {
  5671. "type": "git",
  5672. "url": "https://github.com/drush-ops/drush.git",
  5673. "reference": "ab5e345a72c9187a7d770486a09691f6526826aa"
  5674. },
  5675. "dist": {
  5676. "type": "zip",
  5677. "url": "https://api.github.com/repos/drush-ops/drush/zipball/ab5e345a72c9187a7d770486a09691f6526826aa",
  5678. "reference": "ab5e345a72c9187a7d770486a09691f6526826aa",
  5679. "shasum": ""
  5680. },
  5681. "require": {
  5682. "chi-teck/drupal-code-generator": "^1.28.1",
  5683. "composer/semver": "^1.4",
  5684. "consolidation/annotated-command": "^2.12",
  5685. "consolidation/config": "^1.2",
  5686. "consolidation/filter-via-dot-access-data": "^1",
  5687. "consolidation/output-formatters": "^3.3.1",
  5688. "consolidation/robo": "^1.4.6",
  5689. "consolidation/site-alias": "^3.0.0@stable",
  5690. "consolidation/site-process": "^2.0.3",
  5691. "ext-dom": "*",
  5692. "grasmash/yaml-expander": "^1.1.1",
  5693. "league/container": "~2",
  5694. "php": ">=5.6.0",
  5695. "psr/log": "~1.0",
  5696. "psy/psysh": "~0.6",
  5697. "symfony/console": "^3.4",
  5698. "symfony/event-dispatcher": "^3.4 || ^4.0",
  5699. "symfony/finder": "^3.4 || ^4.0",
  5700. "symfony/process": "^3.4",
  5701. "symfony/var-dumper": "^3.4 || ^4.0",
  5702. "symfony/yaml": "^3.4",
  5703. "webflo/drupal-finder": "^1.1",
  5704. "webmozart/path-util": "^2.1.0"
  5705. },
  5706. "require-dev": {
  5707. "composer/installers": "^1.2",
  5708. "cweagans/composer-patches": "~1.0",
  5709. "drupal/alinks": "1.0.0",
  5710. "drupal/devel": "^2",
  5711. "drupal/empty_theme": "1.0",
  5712. "g1a/composer-test-scenarios": "^3",
  5713. "lox/xhprof": "dev-master",
  5714. "phpunit/phpunit": "^4.8.36 || ^6.1",
  5715. "squizlabs/php_codesniffer": "^2.7 || ^3",
  5716. "vlucas/phpdotenv": "^2.4",
  5717. "webflo/drupal-core-require-dev": "8.7.x-dev",
  5718. "webflo/drupal-core-strict": "8.7.x-dev"
  5719. },
  5720. "bin": [
  5721. "drush"
  5722. ],
  5723. "type": "library",
  5724. "extra": {
  5725. "installer-paths": {
  5726. "sut/core": [
  5727. "type:drupal-core"
  5728. ],
  5729. "sut/libraries/{$name}": [
  5730. "type:drupal-library"
  5731. ],
  5732. "sut/modules/unish/{$name}": [
  5733. "drupal/devel"
  5734. ],
  5735. "sut/themes/unish/{$name}": [
  5736. "drupal/empty_theme"
  5737. ],
  5738. "sut/modules/contrib/{$name}": [
  5739. "type:drupal-module"
  5740. ],
  5741. "sut/profiles/contrib/{$name}": [
  5742. "type:drupal-profile"
  5743. ],
  5744. "sut/themes/contrib/{$name}": [
  5745. "type:drupal-theme"
  5746. ],
  5747. "sut/drush/contrib/{$name}": [
  5748. "type:drupal-drush"
  5749. ]
  5750. },
  5751. "scenarios": {
  5752. "php5": {
  5753. "config": {
  5754. "platform": {
  5755. "php": "5.6.38"
  5756. }
  5757. },
  5758. "require-dev": {
  5759. "webflo/drupal-core-strict": "8.6.x-dev",
  5760. "webflo/drupal-core-require-dev": "8.6.x-dev"
  5761. }
  5762. }
  5763. },
  5764. "branch-alias": {
  5765. "dev-master": "9.x-dev"
  5766. }
  5767. },
  5768. "autoload": {
  5769. "psr-4": {
  5770. "Drush\\": "src/",
  5771. "Drush\\Internal\\": "src/internal-forks"
  5772. }
  5773. },
  5774. "notification-url": "https://packagist.org/downloads/",
  5775. "license": [
  5776. "GPL-2.0-or-later"
  5777. ],
  5778. "authors": [
  5779. {
  5780. "name": "Moshe Weitzman",
  5781. "email": "weitzman@tejasa.com"
  5782. },
  5783. {
  5784. "name": "Owen Barton",
  5785. "email": "drupal@owenbarton.com"
  5786. },
  5787. {
  5788. "name": "Greg Anderson",
  5789. "email": "greg.1.anderson@greenknowe.org"
  5790. },
  5791. {
  5792. "name": "Jonathan Araña Cruz",
  5793. "email": "jonhattan@faita.net"
  5794. },
  5795. {
  5796. "name": "Jonathan Hedstrom",
  5797. "email": "jhedstrom@gmail.com"
  5798. },
  5799. {
  5800. "name": "Christopher Gervais",
  5801. "email": "chris@ergonlogic.com"
  5802. },
  5803. {
  5804. "name": "Dave Reid",
  5805. "email": "dave@davereid.net"
  5806. },
  5807. {
  5808. "name": "Damian Lee",
  5809. "email": "damiankloip@googlemail.com"
  5810. }
  5811. ],
  5812. "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.",
  5813. "homepage": "http://www.drush.org",
  5814. "time": "2020-02-09T17:29:51+00:00"
  5815. },
  5816. {
  5817. "name": "easyrdf/easyrdf",
  5818. "version": "0.9.1",
  5819. "source": {
  5820. "type": "git",
  5821. "url": "https://github.com/easyrdf/easyrdf.git",
  5822. "reference": "acd09dfe0555fbcfa254291e433c45fdd4652566"
  5823. },
  5824. "dist": {
  5825. "type": "zip",
  5826. "url": "https://api.github.com/repos/easyrdf/easyrdf/zipball/acd09dfe0555fbcfa254291e433c45fdd4652566",
  5827. "reference": "acd09dfe0555fbcfa254291e433c45fdd4652566",
  5828. "shasum": ""
  5829. },
  5830. "require": {
  5831. "ext-mbstring": "*",
  5832. "ext-pcre": "*",
  5833. "php": ">=5.2.8"
  5834. },
  5835. "require-dev": {
  5836. "phpunit/phpunit": "~3.5",
  5837. "sami/sami": "~1.4",
  5838. "squizlabs/php_codesniffer": "~1.4.3"
  5839. },
  5840. "suggest": {
  5841. "ml/json-ld": "~1.0"
  5842. },
  5843. "type": "library",
  5844. "autoload": {
  5845. "psr-0": {
  5846. "EasyRdf_": "lib/"
  5847. }
  5848. },
  5849. "notification-url": "https://packagist.org/downloads/",
  5850. "license": [
  5851. "BSD-3-Clause"
  5852. ],
  5853. "authors": [
  5854. {
  5855. "name": "Nicholas Humfrey",
  5856. "email": "njh@aelius.com",
  5857. "homepage": "http://www.aelius.com/njh/",
  5858. "role": "Developer"
  5859. },
  5860. {
  5861. "name": "Alexey Zakhlestin",
  5862. "email": "indeyets@gmail.com",
  5863. "role": "Developer"
  5864. }
  5865. ],
  5866. "description": "EasyRdf is a PHP library designed to make it easy to consume and produce RDF.",
  5867. "homepage": "http://www.easyrdf.org/",
  5868. "keywords": [
  5869. "Linked Data",
  5870. "RDF",
  5871. "Semantic Web",
  5872. "Turtle",
  5873. "rdfa",
  5874. "sparql"
  5875. ],
  5876. "time": "2015-02-27T09:45:49+00:00"
  5877. },
  5878. {
  5879. "name": "egulias/email-validator",
  5880. "version": "2.1.17",
  5881. "source": {
  5882. "type": "git",
  5883. "url": "https://github.com/egulias/EmailValidator.git",
  5884. "reference": "ade6887fd9bd74177769645ab5c474824f8a418a"
  5885. },
  5886. "dist": {
  5887. "type": "zip",
  5888. "url": "https://api.github.com/repos/egulias/EmailValidator/zipball/ade6887fd9bd74177769645ab5c474824f8a418a",
  5889. "reference": "ade6887fd9bd74177769645ab5c474824f8a418a",
  5890. "shasum": ""
  5891. },
  5892. "require": {
  5893. "doctrine/lexer": "^1.0.1",
  5894. "php": ">=5.5",
  5895. "symfony/polyfill-intl-idn": "^1.10"
  5896. },
  5897. "require-dev": {
  5898. "dominicsayers/isemail": "^3.0.7",
  5899. "phpunit/phpunit": "^4.8.36|^7.5.15",
  5900. "satooshi/php-coveralls": "^1.0.1"
  5901. },
  5902. "suggest": {
  5903. "ext-intl": "PHP Internationalization Libraries are required to use the SpoofChecking validation"
  5904. },
  5905. "type": "library",
  5906. "extra": {
  5907. "branch-alias": {
  5908. "dev-master": "2.1.x-dev"
  5909. }
  5910. },
  5911. "autoload": {
  5912. "psr-4": {
  5913. "Egulias\\EmailValidator\\": "EmailValidator"
  5914. }
  5915. },
  5916. "notification-url": "https://packagist.org/downloads/",
  5917. "license": [
  5918. "MIT"
  5919. ],
  5920. "authors": [
  5921. {
  5922. "name": "Eduardo Gulias Davis"
  5923. }
  5924. ],
  5925. "description": "A library for validating emails against several RFCs",
  5926. "homepage": "https://github.com/egulias/EmailValidator",
  5927. "keywords": [
  5928. "email",
  5929. "emailvalidation",
  5930. "emailvalidator",
  5931. "validation",
  5932. "validator"
  5933. ],
  5934. "time": "2020-02-13T22:36:52+00:00"
  5935. },
  5936. {
  5937. "name": "grasmash/expander",
  5938. "version": "1.0.0",
  5939. "source": {
  5940. "type": "git",
  5941. "url": "https://github.com/grasmash/expander.git",
  5942. "reference": "95d6037344a4be1dd5f8e0b0b2571a28c397578f"
  5943. },
  5944. "dist": {
  5945. "type": "zip",
  5946. "url": "https://api.github.com/repos/grasmash/expander/zipball/95d6037344a4be1dd5f8e0b0b2571a28c397578f",
  5947. "reference": "95d6037344a4be1dd5f8e0b0b2571a28c397578f",
  5948. "shasum": ""
  5949. },
  5950. "require": {
  5951. "dflydev/dot-access-data": "^1.1.0",
  5952. "php": ">=5.4"
  5953. },
  5954. "require-dev": {
  5955. "greg-1-anderson/composer-test-scenarios": "^1",
  5956. "phpunit/phpunit": "^4|^5.5.4",
  5957. "satooshi/php-coveralls": "^1.0.2|dev-master",
  5958. "squizlabs/php_codesniffer": "^2.7"
  5959. },
  5960. "type": "library",
  5961. "extra": {
  5962. "branch-alias": {
  5963. "dev-master": "1.x-dev"
  5964. }
  5965. },
  5966. "autoload": {
  5967. "psr-4": {
  5968. "Grasmash\\Expander\\": "src/"
  5969. }
  5970. },
  5971. "notification-url": "https://packagist.org/downloads/",
  5972. "license": [
  5973. "MIT"
  5974. ],
  5975. "authors": [
  5976. {
  5977. "name": "Matthew Grasmick"
  5978. }
  5979. ],
  5980. "description": "Expands internal property references in PHP arrays file.",
  5981. "time": "2017-12-21T22:14:55+00:00"
  5982. },
  5983. {
  5984. "name": "grasmash/yaml-expander",
  5985. "version": "1.4.0",
  5986. "source": {
  5987. "type": "git",
  5988. "url": "https://github.com/grasmash/yaml-expander.git",
  5989. "reference": "3f0f6001ae707a24f4d9733958d77d92bf9693b1"
  5990. },
  5991. "dist": {
  5992. "type": "zip",
  5993. "url": "https://api.github.com/repos/grasmash/yaml-expander/zipball/3f0f6001ae707a24f4d9733958d77d92bf9693b1",
  5994. "reference": "3f0f6001ae707a24f4d9733958d77d92bf9693b1",
  5995. "shasum": ""
  5996. },
  5997. "require": {
  5998. "dflydev/dot-access-data": "^1.1.0",
  5999. "php": ">=5.4",
  6000. "symfony/yaml": "^2.8.11|^3|^4"
  6001. },
  6002. "require-dev": {
  6003. "greg-1-anderson/composer-test-scenarios": "^1",
  6004. "phpunit/phpunit": "^4.8|^5.5.4",
  6005. "satooshi/php-coveralls": "^1.0.2|dev-master",
  6006. "squizlabs/php_codesniffer": "^2.7"
  6007. },
  6008. "type": "library",
  6009. "extra": {
  6010. "branch-alias": {
  6011. "dev-master": "1.x-dev"
  6012. }
  6013. },
  6014. "autoload": {
  6015. "psr-4": {
  6016. "Grasmash\\YamlExpander\\": "src/"
  6017. }
  6018. },
  6019. "notification-url": "https://packagist.org/downloads/",
  6020. "license": [
  6021. "MIT"
  6022. ],
  6023. "authors": [
  6024. {
  6025. "name": "Matthew Grasmick"
  6026. }
  6027. ],
  6028. "description": "Expands internal property references in a yaml file.",
  6029. "time": "2017-12-16T16:06:03+00:00"
  6030. },
  6031. {
  6032. "name": "guzzlehttp/guzzle",
  6033. "version": "6.5.4",
  6034. "source": {
  6035. "type": "git",
  6036. "url": "https://github.com/guzzle/guzzle.git",
  6037. "reference": "a4a1b6930528a8f7ee03518e6442ec7a44155d9d"
  6038. },
  6039. "dist": {
  6040. "type": "zip",
  6041. "url": "https://api.github.com/repos/guzzle/guzzle/zipball/a4a1b6930528a8f7ee03518e6442ec7a44155d9d",
  6042. "reference": "a4a1b6930528a8f7ee03518e6442ec7a44155d9d",
  6043. "shasum": ""
  6044. },
  6045. "require": {
  6046. "ext-json": "*",
  6047. "guzzlehttp/promises": "^1.0",
  6048. "guzzlehttp/psr7": "^1.6.1",
  6049. "php": ">=5.5",
  6050. "symfony/polyfill-intl-idn": "1.17.0"
  6051. },
  6052. "require-dev": {
  6053. "ext-curl": "*",
  6054. "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.4 || ^7.0",
  6055. "psr/log": "^1.1"
  6056. },
  6057. "suggest": {
  6058. "psr/log": "Required for using the Log middleware"
  6059. },
  6060. "type": "library",
  6061. "extra": {
  6062. "branch-alias": {
  6063. "dev-master": "6.5-dev"
  6064. }
  6065. },
  6066. "autoload": {
  6067. "psr-4": {
  6068. "GuzzleHttp\\": "src/"
  6069. },
  6070. "files": [
  6071. "src/functions_include.php"
  6072. ]
  6073. },
  6074. "notification-url": "https://packagist.org/downloads/",
  6075. "license": [
  6076. "MIT"
  6077. ],
  6078. "authors": [
  6079. {
  6080. "name": "Michael Dowling",
  6081. "email": "mtdowling@gmail.com",
  6082. "homepage": "https://github.com/mtdowling"
  6083. }
  6084. ],
  6085. "description": "Guzzle is a PHP HTTP client library",
  6086. "homepage": "http://guzzlephp.org/",
  6087. "keywords": [
  6088. "client",
  6089. "curl",
  6090. "framework",
  6091. "http",
  6092. "http client",
  6093. "rest",
  6094. "web service"
  6095. ],
  6096. "time": "2020-05-25T19:35:05+00:00"
  6097. },
  6098. {
  6099. "name": "guzzlehttp/promises",
  6100. "version": "v1.3.1",
  6101. "source": {
  6102. "type": "git",
  6103. "url": "https://github.com/guzzle/promises.git",
  6104. "reference": "a59da6cf61d80060647ff4d3eb2c03a2bc694646"
  6105. },
  6106. "dist": {
  6107. "type": "zip",
  6108. "url": "https://api.github.com/repos/guzzle/promises/zipball/a59da6cf61d80060647ff4d3eb2c03a2bc694646",
  6109. "reference": "a59da6cf61d80060647ff4d3eb2c03a2bc694646",
  6110. "shasum": ""
  6111. },
  6112. "require": {
  6113. "php": ">=5.5.0"
  6114. },
  6115. "require-dev": {
  6116. "phpunit/phpunit": "^4.0"
  6117. },
  6118. "type": "library",
  6119. "extra": {
  6120. "branch-alias": {
  6121. "dev-master": "1.4-dev"
  6122. }
  6123. },
  6124. "autoload": {
  6125. "psr-4": {
  6126. "GuzzleHttp\\Promise\\": "src/"
  6127. },
  6128. "files": [
  6129. "src/functions_include.php"
  6130. ]
  6131. },
  6132. "notification-url": "https://packagist.org/downloads/",
  6133. "license": [
  6134. "MIT"
  6135. ],
  6136. "authors": [
  6137. {
  6138. "name": "Michael Dowling",
  6139. "email": "mtdowling@gmail.com",
  6140. "homepage": "https://github.com/mtdowling"
  6141. }
  6142. ],
  6143. "description": "Guzzle promises library",
  6144. "keywords": [
  6145. "promise"
  6146. ],
  6147. "time": "2016-12-20T10:07:11+00:00"
  6148. },
  6149. {
  6150. "name": "guzzlehttp/psr7",
  6151. "version": "1.6.1",
  6152. "source": {
  6153. "type": "git",
  6154. "url": "https://github.com/guzzle/psr7.git",
  6155. "reference": "239400de7a173fe9901b9ac7c06497751f00727a"
  6156. },
  6157. "dist": {
  6158. "type": "zip",
  6159. "url": "https://api.github.com/repos/guzzle/psr7/zipball/239400de7a173fe9901b9ac7c06497751f00727a",
  6160. "reference": "239400de7a173fe9901b9ac7c06497751f00727a",
  6161. "shasum": ""
  6162. },
  6163. "require": {
  6164. "php": ">=5.4.0",
  6165. "psr/http-message": "~1.0",
  6166. "ralouphie/getallheaders": "^2.0.5 || ^3.0.0"
  6167. },
  6168. "provide": {
  6169. "psr/http-message-implementation": "1.0"
  6170. },
  6171. "require-dev": {
  6172. "ext-zlib": "*",
  6173. "phpunit/phpunit": "~4.8.36 || ^5.7.27 || ^6.5.8"
  6174. },
  6175. "suggest": {
  6176. "zendframework/zend-httphandlerrunner": "Emit PSR-7 responses"
  6177. },
  6178. "type": "library",
  6179. "extra": {
  6180. "branch-alias": {
  6181. "dev-master": "1.6-dev"
  6182. }
  6183. },
  6184. "autoload": {
  6185. "psr-4": {
  6186. "GuzzleHttp\\Psr7\\": "src/"
  6187. },
  6188. "files": [
  6189. "src/functions_include.php"
  6190. ]
  6191. },
  6192. "notification-url": "https://packagist.org/downloads/",
  6193. "license": [
  6194. "MIT"
  6195. ],
  6196. "authors": [
  6197. {
  6198. "name": "Michael Dowling",
  6199. "email": "mtdowling@gmail.com",
  6200. "homepage": "https://github.com/mtdowling"
  6201. },
  6202. {
  6203. "name": "Tobias Schultze",
  6204. "homepage": "https://github.com/Tobion"
  6205. }
  6206. ],
  6207. "description": "PSR-7 message implementation that also provides common utility methods",
  6208. "keywords": [
  6209. "http",
  6210. "message",
  6211. "psr-7",
  6212. "request",
  6213. "response",
  6214. "stream",
  6215. "uri",
  6216. "url"
  6217. ],
  6218. "time": "2019-07-01T23:21:34+00:00"
  6219. },
  6220. {
  6221. "name": "laminas/laminas-diactoros",
  6222. "version": "1.8.7p2",
  6223. "source": {
  6224. "type": "git",
  6225. "url": "https://github.com/laminas/laminas-diactoros.git",
  6226. "reference": "6991c1af7c8d2c8efee81b22ba97024781824aaa"
  6227. },
  6228. "dist": {
  6229. "type": "zip",
  6230. "url": "https://api.github.com/repos/laminas/laminas-diactoros/zipball/6991c1af7c8d2c8efee81b22ba97024781824aaa",
  6231. "reference": "6991c1af7c8d2c8efee81b22ba97024781824aaa",
  6232. "shasum": ""
  6233. },
  6234. "require": {
  6235. "laminas/laminas-zendframework-bridge": "^1.0",
  6236. "php": "^5.6 || ^7.0",
  6237. "psr/http-message": "^1.0"
  6238. },
  6239. "provide": {
  6240. "psr/http-message-implementation": "1.0"
  6241. },
  6242. "replace": {
  6243. "zendframework/zend-diactoros": "~1.8.7.0"
  6244. },
  6245. "require-dev": {
  6246. "ext-dom": "*",
  6247. "ext-libxml": "*",
  6248. "laminas/laminas-coding-standard": "~1.0",
  6249. "php-http/psr7-integration-tests": "dev-master",
  6250. "phpunit/phpunit": "^5.7.16 || ^6.0.8 || ^7.2.7"
  6251. },
  6252. "type": "library",
  6253. "extra": {
  6254. "branch-alias": {
  6255. "dev-release-1.8": "1.8.x-dev"
  6256. }
  6257. },
  6258. "autoload": {
  6259. "files": [
  6260. "src/functions/create_uploaded_file.php",
  6261. "src/functions/marshal_headers_from_sapi.php",
  6262. "src/functions/marshal_method_from_sapi.php",
  6263. "src/functions/marshal_protocol_version_from_sapi.php",
  6264. "src/functions/marshal_uri_from_sapi.php",
  6265. "src/functions/normalize_server.php",
  6266. "src/functions/normalize_uploaded_files.php",
  6267. "src/functions/parse_cookie_header.php",
  6268. "src/functions/create_uploaded_file.legacy.php",
  6269. "src/functions/marshal_headers_from_sapi.legacy.php",
  6270. "src/functions/marshal_method_from_sapi.legacy.php",
  6271. "src/functions/marshal_protocol_version_from_sapi.legacy.php",
  6272. "src/functions/marshal_uri_from_sapi.legacy.php",
  6273. "src/functions/normalize_server.legacy.php",
  6274. "src/functions/normalize_uploaded_files.legacy.php",
  6275. "src/functions/parse_cookie_header.legacy.php"
  6276. ],
  6277. "psr-4": {
  6278. "Laminas\\Diactoros\\": "src/"
  6279. }
  6280. },
  6281. "notification-url": "https://packagist.org/downloads/",
  6282. "license": [
  6283. "BSD-3-Clause"
  6284. ],
  6285. "description": "PSR HTTP Message implementations",
  6286. "homepage": "https://laminas.dev",
  6287. "keywords": [
  6288. "http",
  6289. "laminas",
  6290. "psr",
  6291. "psr-7"
  6292. ],
  6293. "time": "2020-03-23T15:28:28+00:00"
  6294. },
  6295. {
  6296. "name": "laminas/laminas-escaper",
  6297. "version": "2.6.1",
  6298. "source": {
  6299. "type": "git",
  6300. "url": "https://github.com/laminas/laminas-escaper.git",
  6301. "reference": "25f2a053eadfa92ddacb609dcbbc39362610da70"
  6302. },
  6303. "dist": {
  6304. "type": "zip",
  6305. "url": "https://api.github.com/repos/laminas/laminas-escaper/zipball/25f2a053eadfa92ddacb609dcbbc39362610da70",
  6306. "reference": "25f2a053eadfa92ddacb609dcbbc39362610da70",
  6307. "shasum": ""
  6308. },
  6309. "require": {
  6310. "laminas/laminas-zendframework-bridge": "^1.0",
  6311. "php": "^5.6 || ^7.0"
  6312. },
  6313. "replace": {
  6314. "zendframework/zend-escaper": "self.version"
  6315. },
  6316. "require-dev": {
  6317. "laminas/laminas-coding-standard": "~1.0.0",
  6318. "phpunit/phpunit": "^5.7.27 || ^6.5.8 || ^7.1.2"
  6319. },
  6320. "type": "library",
  6321. "extra": {
  6322. "branch-alias": {
  6323. "dev-master": "2.6.x-dev",
  6324. "dev-develop": "2.7.x-dev"
  6325. }
  6326. },
  6327. "autoload": {
  6328. "psr-4": {
  6329. "Laminas\\Escaper\\": "src/"
  6330. }
  6331. },
  6332. "notification-url": "https://packagist.org/downloads/",
  6333. "license": [
  6334. "BSD-3-Clause"
  6335. ],
  6336. "description": "Securely and safely escape HTML, HTML attributes, JavaScript, CSS, and URLs",
  6337. "homepage": "https://laminas.dev",
  6338. "keywords": [
  6339. "escaper",
  6340. "laminas"
  6341. ],
  6342. "time": "2019-12-31T16:43:30+00:00"
  6343. },
  6344. {
  6345. "name": "laminas/laminas-feed",
  6346. "version": "2.12.2",
  6347. "source": {
  6348. "type": "git",
  6349. "url": "https://github.com/laminas/laminas-feed.git",
  6350. "reference": "8a193ac96ebcb3e16b6ee754ac2a889eefacb654"
  6351. },
  6352. "dist": {
  6353. "type": "zip",
  6354. "url": "https://api.github.com/repos/laminas/laminas-feed/zipball/8a193ac96ebcb3e16b6ee754ac2a889eefacb654",
  6355. "reference": "8a193ac96ebcb3e16b6ee754ac2a889eefacb654",
  6356. "shasum": ""
  6357. },
  6358. "require": {
  6359. "ext-dom": "*",
  6360. "ext-libxml": "*",
  6361. "laminas/laminas-escaper": "^2.5.2",
  6362. "laminas/laminas-stdlib": "^3.2.1",
  6363. "laminas/laminas-zendframework-bridge": "^1.0",
  6364. "php": "^5.6 || ^7.0"
  6365. },
  6366. "replace": {
  6367. "zendframework/zend-feed": "^2.12.0"
  6368. },
  6369. "require-dev": {
  6370. "laminas/laminas-cache": "^2.7.2",
  6371. "laminas/laminas-coding-standard": "~1.0.0",
  6372. "laminas/laminas-db": "^2.8.2",
  6373. "laminas/laminas-http": "^2.7",
  6374. "laminas/laminas-servicemanager": "^2.7.8 || ^3.3",
  6375. "laminas/laminas-validator": "^2.10.1",
  6376. "phpunit/phpunit": "^5.7.27 || ^6.5.14 || ^7.5.20",
  6377. "psr/http-message": "^1.0.1"
  6378. },
  6379. "suggest": {
  6380. "laminas/laminas-cache": "Laminas\\Cache component, for optionally caching feeds between requests",
  6381. "laminas/laminas-db": "Laminas\\Db component, for use with PubSubHubbub",
  6382. "laminas/laminas-http": "Laminas\\Http for PubSubHubbub, and optionally for use with Laminas\\Feed\\Reader",
  6383. "laminas/laminas-servicemanager": "Laminas\\ServiceManager component, for easily extending ExtensionManager implementations",
  6384. "laminas/laminas-validator": "Laminas\\Validator component, for validating email addresses used in Atom feeds and entries when using the Writer subcomponent",
  6385. "psr/http-message": "PSR-7 ^1.0.1, if you wish to use Laminas\\Feed\\Reader\\Http\\Psr7ResponseDecorator"
  6386. },
  6387. "type": "library",
  6388. "extra": {
  6389. "branch-alias": {
  6390. "dev-master": "2.12.x-dev",
  6391. "dev-develop": "2.13.x-dev"
  6392. }
  6393. },
  6394. "autoload": {
  6395. "psr-4": {
  6396. "Laminas\\Feed\\": "src/"
  6397. }
  6398. },
  6399. "notification-url": "https://packagist.org/downloads/",
  6400. "license": [
  6401. "BSD-3-Clause"
  6402. ],
  6403. "description": "provides functionality for consuming RSS and Atom feeds",
  6404. "homepage": "https://laminas.dev",
  6405. "keywords": [
  6406. "feed",
  6407. "laminas"
  6408. ],
  6409. "time": "2020-03-29T12:36:29+00:00"
  6410. },
  6411. {
  6412. "name": "laminas/laminas-stdlib",
  6413. "version": "3.2.1",
  6414. "source": {
  6415. "type": "git",
  6416. "url": "https://github.com/laminas/laminas-stdlib.git",
  6417. "reference": "2b18347625a2f06a1a485acfbc870f699dbe51c6"
  6418. },
  6419. "dist": {
  6420. "type": "zip",
  6421. "url": "https://api.github.com/repos/laminas/laminas-stdlib/zipball/2b18347625a2f06a1a485acfbc870f699dbe51c6",
  6422. "reference": "2b18347625a2f06a1a485acfbc870f699dbe51c6",
  6423. "shasum": ""
  6424. },
  6425. "require": {
  6426. "laminas/laminas-zendframework-bridge": "^1.0",
  6427. "php": "^5.6 || ^7.0"
  6428. },
  6429. "replace": {
  6430. "zendframework/zend-stdlib": "self.version"
  6431. },
  6432. "require-dev": {
  6433. "laminas/laminas-coding-standard": "~1.0.0",
  6434. "phpbench/phpbench": "^0.13",
  6435. "phpunit/phpunit": "^5.7.27 || ^6.5.8 || ^7.1.2"
  6436. },
  6437. "type": "library",
  6438. "extra": {
  6439. "branch-alias": {
  6440. "dev-master": "3.2.x-dev",
  6441. "dev-develop": "3.3.x-dev"
  6442. }
  6443. },
  6444. "autoload": {
  6445. "psr-4": {
  6446. "Laminas\\Stdlib\\": "src/"
  6447. }
  6448. },
  6449. "notification-url": "https://packagist.org/downloads/",
  6450. "license": [
  6451. "BSD-3-Clause"
  6452. ],
  6453. "description": "SPL extensions, array utilities, error handlers, and more",
  6454. "homepage": "https://laminas.dev",
  6455. "keywords": [
  6456. "laminas",
  6457. "stdlib"
  6458. ],
  6459. "time": "2019-12-31T17:51:15+00:00"
  6460. },
  6461. {
  6462. "name": "laminas/laminas-zendframework-bridge",
  6463. "version": "1.0.4",
  6464. "source": {
  6465. "type": "git",
  6466. "url": "https://github.com/laminas/laminas-zendframework-bridge.git",
  6467. "reference": "fcd87520e4943d968557803919523772475e8ea3"
  6468. },
  6469. "dist": {
  6470. "type": "zip",
  6471. "url": "https://api.github.com/repos/laminas/laminas-zendframework-bridge/zipball/fcd87520e4943d968557803919523772475e8ea3",
  6472. "reference": "fcd87520e4943d968557803919523772475e8ea3",
  6473. "shasum": ""
  6474. },
  6475. "require": {
  6476. "php": "^5.6 || ^7.0"
  6477. },
  6478. "require-dev": {
  6479. "phpunit/phpunit": "^5.7 || ^6.5 || ^7.5 || ^8.1",
  6480. "squizlabs/php_codesniffer": "^3.5"
  6481. },
  6482. "type": "library",
  6483. "extra": {
  6484. "branch-alias": {
  6485. "dev-master": "1.0.x-dev",
  6486. "dev-develop": "1.1.x-dev"
  6487. },
  6488. "laminas": {
  6489. "module": "Laminas\\ZendFrameworkBridge"
  6490. }
  6491. },
  6492. "autoload": {
  6493. "files": [
  6494. "src/autoload.php"
  6495. ],
  6496. "psr-4": {
  6497. "Laminas\\ZendFrameworkBridge\\": "src//"
  6498. }
  6499. },
  6500. "notification-url": "https://packagist.org/downloads/",
  6501. "license": [
  6502. "BSD-3-Clause"
  6503. ],
  6504. "description": "Alias legacy ZF class names to Laminas Project equivalents.",
  6505. "keywords": [
  6506. "ZendFramework",
  6507. "autoloading",
  6508. "laminas",
  6509. "zf"
  6510. ],
  6511. "time": "2020-05-20T16:45:56+00:00"
  6512. },
  6513. {
  6514. "name": "league/container",
  6515. "version": "2.4.1",
  6516. "source": {
  6517. "type": "git",
  6518. "url": "https://github.com/thephpleague/container.git",
  6519. "reference": "43f35abd03a12977a60ffd7095efd6a7808488c0"
  6520. },
  6521. "dist": {
  6522. "type": "zip",
  6523. "url": "https://api.github.com/repos/thephpleague/container/zipball/43f35abd03a12977a60ffd7095efd6a7808488c0",
  6524. "reference": "43f35abd03a12977a60ffd7095efd6a7808488c0",
  6525. "shasum": ""
  6526. },
  6527. "require": {
  6528. "container-interop/container-interop": "^1.2",
  6529. "php": "^5.4.0 || ^7.0"
  6530. },
  6531. "provide": {
  6532. "container-interop/container-interop-implementation": "^1.2",
  6533. "psr/container-implementation": "^1.0"
  6534. },
  6535. "replace": {
  6536. "orno/di": "~2.0"
  6537. },
  6538. "require-dev": {
  6539. "phpunit/phpunit": "4.*"
  6540. },
  6541. "type": "library",
  6542. "extra": {
  6543. "branch-alias": {
  6544. "dev-2.x": "2.x-dev",
  6545. "dev-1.x": "1.x-dev"
  6546. }
  6547. },
  6548. "autoload": {
  6549. "psr-4": {
  6550. "League\\Container\\": "src"
  6551. }
  6552. },
  6553. "notification-url": "https://packagist.org/downloads/",
  6554. "license": [
  6555. "MIT"
  6556. ],
  6557. "authors": [
  6558. {
  6559. "name": "Phil Bennett",
  6560. "email": "philipobenito@gmail.com",
  6561. "homepage": "http://www.philipobenito.com",
  6562. "role": "Developer"
  6563. }
  6564. ],
  6565. "description": "A fast and intuitive dependency injection container.",
  6566. "homepage": "https://github.com/thephpleague/container",
  6567. "keywords": [
  6568. "container",
  6569. "dependency",
  6570. "di",
  6571. "injection",
  6572. "league",
  6573. "provider",
  6574. "service"
  6575. ],
  6576. "time": "2017-05-10T09:20:27+00:00"
  6577. },
  6578. {
  6579. "name": "masterminds/html5",
  6580. "version": "2.3.0",
  6581. "source": {
  6582. "type": "git",
  6583. "url": "https://github.com/Masterminds/html5-php.git",
  6584. "reference": "2c37c6c520b995b761674de3be8455a381679067"
  6585. },
  6586. "dist": {
  6587. "type": "zip",
  6588. "url": "https://api.github.com/repos/Masterminds/html5-php/zipball/2c37c6c520b995b761674de3be8455a381679067",
  6589. "reference": "2c37c6c520b995b761674de3be8455a381679067",
  6590. "shasum": ""
  6591. },
  6592. "require": {
  6593. "ext-libxml": "*",
  6594. "php": ">=5.3.0"
  6595. },
  6596. "require-dev": {
  6597. "phpunit/phpunit": "4.*",
  6598. "sami/sami": "~2.0",
  6599. "satooshi/php-coveralls": "1.0.*"
  6600. },
  6601. "type": "library",
  6602. "extra": {
  6603. "branch-alias": {
  6604. "dev-master": "2.2-dev"
  6605. }
  6606. },
  6607. "autoload": {
  6608. "psr-4": {
  6609. "Masterminds\\": "src"
  6610. }
  6611. },
  6612. "notification-url": "https://packagist.org/downloads/",
  6613. "license": [
  6614. "MIT"
  6615. ],
  6616. "authors": [
  6617. {
  6618. "name": "Matt Butcher",
  6619. "email": "technosophos@gmail.com"
  6620. },
  6621. {
  6622. "name": "Asmir Mustafic",
  6623. "email": "goetas@gmail.com"
  6624. },
  6625. {
  6626. "name": "Matt Farina",
  6627. "email": "matt@mattfarina.com"
  6628. }
  6629. ],
  6630. "description": "An HTML5 parser and serializer.",
  6631. "homepage": "http://masterminds.github.io/html5-php",
  6632. "keywords": [
  6633. "HTML5",
  6634. "dom",
  6635. "html",
  6636. "parser",
  6637. "querypath",
  6638. "serializer",
  6639. "xml"
  6640. ],
  6641. "time": "2017-09-04T12:26:28+00:00"
  6642. },
  6643. {
  6644. "name": "nikic/php-parser",
  6645. "version": "v4.4.0",
  6646. "source": {
  6647. "type": "git",
  6648. "url": "https://github.com/nikic/PHP-Parser.git",
  6649. "reference": "bd43ec7152eaaab3bd8c6d0aa95ceeb1df8ee120"
  6650. },
  6651. "dist": {
  6652. "type": "zip",
  6653. "url": "https://api.github.com/repos/nikic/PHP-Parser/zipball/bd43ec7152eaaab3bd8c6d0aa95ceeb1df8ee120",
  6654. "reference": "bd43ec7152eaaab3bd8c6d0aa95ceeb1df8ee120",
  6655. "shasum": ""
  6656. },
  6657. "require": {
  6658. "ext-tokenizer": "*",
  6659. "php": ">=7.0"
  6660. },
  6661. "require-dev": {
  6662. "ircmaxell/php-yacc": "0.0.5",
  6663. "phpunit/phpunit": "^6.5 || ^7.0 || ^8.0"
  6664. },
  6665. "bin": [
  6666. "bin/php-parse"
  6667. ],
  6668. "type": "library",
  6669. "extra": {
  6670. "branch-alias": {
  6671. "dev-master": "4.3-dev"
  6672. }
  6673. },
  6674. "autoload": {
  6675. "psr-4": {
  6676. "PhpParser\\": "lib/PhpParser"
  6677. }
  6678. },
  6679. "notification-url": "https://packagist.org/downloads/",
  6680. "license": [
  6681. "BSD-3-Clause"
  6682. ],
  6683. "authors": [
  6684. {
  6685. "name": "Nikita Popov"
  6686. }
  6687. ],
  6688. "description": "A PHP parser written in PHP",
  6689. "keywords": [
  6690. "parser",
  6691. "php"
  6692. ],
  6693. "time": "2020-04-10T16:34:50+00:00"
  6694. },
  6695. {
  6696. "name": "oomphinc/composer-installers-extender",
  6697. "version": "v1.1.2",
  6698. "source": {
  6699. "type": "git",
  6700. "url": "https://github.com/oomphinc/composer-installers-extender.git",
  6701. "reference": "ca1c4b16b0905c81d1e77e608f36a2eff1a56f56"
  6702. },
  6703. "dist": {
  6704. "type": "zip",
  6705. "url": "https://api.github.com/repos/oomphinc/composer-installers-extender/zipball/ca1c4b16b0905c81d1e77e608f36a2eff1a56f56",
  6706. "reference": "ca1c4b16b0905c81d1e77e608f36a2eff1a56f56",
  6707. "shasum": ""
  6708. },
  6709. "require": {
  6710. "composer-plugin-api": "^1.0",
  6711. "composer/installers": "^1.0"
  6712. },
  6713. "type": "composer-plugin",
  6714. "extra": {
  6715. "class": "OomphInc\\ComposerInstallersExtender\\Plugin"
  6716. },
  6717. "autoload": {
  6718. "psr-4": {
  6719. "OomphInc\\ComposerInstallersExtender\\": "src/"
  6720. }
  6721. },
  6722. "notification-url": "https://packagist.org/downloads/",
  6723. "license": [
  6724. "MIT"
  6725. ],
  6726. "authors": [
  6727. {
  6728. "name": "Stephen Beemsterboer",
  6729. "email": "stephen@oomphinc.com",
  6730. "homepage": "https://github.com/balbuf"
  6731. }
  6732. ],
  6733. "description": "Extend the composer/installers plugin to accept any arbitrary package type.",
  6734. "homepage": "http://www.oomphinc.com/",
  6735. "time": "2017-03-31T16:57:39+00:00"
  6736. },
  6737. {
  6738. "name": "paragonie/random_compat",
  6739. "version": "v9.99.99",
  6740. "source": {
  6741. "type": "git",
  6742. "url": "https://github.com/paragonie/random_compat.git",
  6743. "reference": "84b4dfb120c6f9b4ff7b3685f9b8f1aa365a0c95"
  6744. },
  6745. "dist": {
  6746. "type": "zip",
  6747. "url": "https://api.github.com/repos/paragonie/random_compat/zipball/84b4dfb120c6f9b4ff7b3685f9b8f1aa365a0c95",
  6748. "reference": "84b4dfb120c6f9b4ff7b3685f9b8f1aa365a0c95",
  6749. "shasum": ""
  6750. },
  6751. "require": {
  6752. "php": "^7"
  6753. },
  6754. "require-dev": {
  6755. "phpunit/phpunit": "4.*|5.*",
  6756. "vimeo/psalm": "^1"
  6757. },
  6758. "suggest": {
  6759. "ext-libsodium": "Provides a modern crypto API that can be used to generate random bytes."
  6760. },
  6761. "type": "library",
  6762. "notification-url": "https://packagist.org/downloads/",
  6763. "license": [
  6764. "MIT"
  6765. ],
  6766. "authors": [
  6767. {
  6768. "name": "Paragon Initiative Enterprises",
  6769. "email": "security@paragonie.com",
  6770. "homepage": "https://paragonie.com"
  6771. }
  6772. ],
  6773. "description": "PHP 5.x polyfill for random_bytes() and random_int() from PHP 7",
  6774. "keywords": [
  6775. "csprng",
  6776. "polyfill",
  6777. "pseudorandom",
  6778. "random"
  6779. ],
  6780. "time": "2018-07-02T15:55:56+00:00"
  6781. },
  6782. {
  6783. "name": "pear/archive_tar",
  6784. "version": "1.4.9",
  6785. "source": {
  6786. "type": "git",
  6787. "url": "https://github.com/pear/Archive_Tar.git",
  6788. "reference": "c5b00053770e1d72128252c62c2c1a12c26639f0"
  6789. },
  6790. "dist": {
  6791. "type": "zip",
  6792. "url": "https://api.github.com/repos/pear/Archive_Tar/zipball/c5b00053770e1d72128252c62c2c1a12c26639f0",
  6793. "reference": "c5b00053770e1d72128252c62c2c1a12c26639f0",
  6794. "shasum": ""
  6795. },
  6796. "require": {
  6797. "pear/pear-core-minimal": "^1.10.0alpha2",
  6798. "php": ">=5.2.0"
  6799. },
  6800. "require-dev": {
  6801. "phpunit/phpunit": "*"
  6802. },
  6803. "suggest": {
  6804. "ext-bz2": "Bz2 compression support.",
  6805. "ext-xz": "Lzma2 compression support.",
  6806. "ext-zlib": "Gzip compression support."
  6807. },
  6808. "type": "library",
  6809. "extra": {
  6810. "branch-alias": {
  6811. "dev-master": "1.4.x-dev"
  6812. }
  6813. },
  6814. "autoload": {
  6815. "psr-0": {
  6816. "Archive_Tar": ""
  6817. }
  6818. },
  6819. "notification-url": "https://packagist.org/downloads/",
  6820. "include-path": [
  6821. "./"
  6822. ],
  6823. "license": [
  6824. "BSD-3-Clause"
  6825. ],
  6826. "authors": [
  6827. {
  6828. "name": "Vincent Blavet",
  6829. "email": "vincent@phpconcept.net"
  6830. },
  6831. {
  6832. "name": "Greg Beaver",
  6833. "email": "greg@chiaraquartet.net"
  6834. },
  6835. {
  6836. "name": "Michiel Rook",
  6837. "email": "mrook@php.net"
  6838. }
  6839. ],
  6840. "description": "Tar file management class with compression support (gzip, bzip2, lzma2)",
  6841. "homepage": "https://github.com/pear/Archive_Tar",
  6842. "keywords": [
  6843. "archive",
  6844. "tar"
  6845. ],
  6846. "time": "2019-12-04T10:17:28+00:00"
  6847. },
  6848. {
  6849. "name": "pear/console_getopt",
  6850. "version": "v1.4.3",
  6851. "source": {
  6852. "type": "git",
  6853. "url": "https://github.com/pear/Console_Getopt.git",
  6854. "reference": "a41f8d3e668987609178c7c4a9fe48fecac53fa0"
  6855. },
  6856. "dist": {
  6857. "type": "zip",
  6858. "url": "https://api.github.com/repos/pear/Console_Getopt/zipball/a41f8d3e668987609178c7c4a9fe48fecac53fa0",
  6859. "reference": "a41f8d3e668987609178c7c4a9fe48fecac53fa0",
  6860. "shasum": ""
  6861. },
  6862. "type": "library",
  6863. "autoload": {
  6864. "psr-0": {
  6865. "Console": "./"
  6866. }
  6867. },
  6868. "notification-url": "https://packagist.org/downloads/",
  6869. "include-path": [
  6870. "./"
  6871. ],
  6872. "license": [
  6873. "BSD-2-Clause"
  6874. ],
  6875. "authors": [
  6876. {
  6877. "name": "Andrei Zmievski",
  6878. "email": "andrei@php.net",
  6879. "role": "Lead"
  6880. },
  6881. {
  6882. "name": "Stig Bakken",
  6883. "email": "stig@php.net",
  6884. "role": "Developer"
  6885. },
  6886. {
  6887. "name": "Greg Beaver",
  6888. "email": "cellog@php.net",
  6889. "role": "Helper"
  6890. }
  6891. ],
  6892. "description": "More info available on: http://pear.php.net/package/Console_Getopt",
  6893. "time": "2019-11-20T18:27:48+00:00"
  6894. },
  6895. {
  6896. "name": "pear/pear-core-minimal",
  6897. "version": "v1.10.10",
  6898. "source": {
  6899. "type": "git",
  6900. "url": "https://github.com/pear/pear-core-minimal.git",
  6901. "reference": "625a3c429d9b2c1546438679074cac1b089116a7"
  6902. },
  6903. "dist": {
  6904. "type": "zip",
  6905. "url": "https://api.github.com/repos/pear/pear-core-minimal/zipball/625a3c429d9b2c1546438679074cac1b089116a7",
  6906. "reference": "625a3c429d9b2c1546438679074cac1b089116a7",
  6907. "shasum": ""
  6908. },
  6909. "require": {
  6910. "pear/console_getopt": "~1.4",
  6911. "pear/pear_exception": "~1.0"
  6912. },
  6913. "replace": {
  6914. "rsky/pear-core-min": "self.version"
  6915. },
  6916. "type": "library",
  6917. "autoload": {
  6918. "psr-0": {
  6919. "": "src/"
  6920. }
  6921. },
  6922. "notification-url": "https://packagist.org/downloads/",
  6923. "include-path": [
  6924. "src/"
  6925. ],
  6926. "license": [
  6927. "BSD-3-Clause"
  6928. ],
  6929. "authors": [
  6930. {
  6931. "name": "Christian Weiske",
  6932. "email": "cweiske@php.net",
  6933. "role": "Lead"
  6934. }
  6935. ],
  6936. "description": "Minimal set of PEAR core files to be used as composer dependency",
  6937. "time": "2019-11-19T19:00:24+00:00"
  6938. },
  6939. {
  6940. "name": "pear/pear_exception",
  6941. "version": "v1.0.1",
  6942. "source": {
  6943. "type": "git",
  6944. "url": "https://github.com/pear/PEAR_Exception.git",
  6945. "reference": "dbb42a5a0e45f3adcf99babfb2a1ba77b8ac36a7"
  6946. },
  6947. "dist": {
  6948. "type": "zip",
  6949. "url": "https://api.github.com/repos/pear/PEAR_Exception/zipball/dbb42a5a0e45f3adcf99babfb2a1ba77b8ac36a7",
  6950. "reference": "dbb42a5a0e45f3adcf99babfb2a1ba77b8ac36a7",
  6951. "shasum": ""
  6952. },
  6953. "require": {
  6954. "php": ">=4.4.0"
  6955. },
  6956. "require-dev": {
  6957. "phpunit/phpunit": "*"
  6958. },
  6959. "type": "class",
  6960. "extra": {
  6961. "branch-alias": {
  6962. "dev-master": "1.0.x-dev"
  6963. }
  6964. },
  6965. "autoload": {
  6966. "classmap": [
  6967. "PEAR/"
  6968. ]
  6969. },
  6970. "notification-url": "https://packagist.org/downloads/",
  6971. "include-path": [
  6972. "."
  6973. ],
  6974. "license": [
  6975. "BSD-2-Clause"
  6976. ],
  6977. "authors": [
  6978. {
  6979. "name": "Helgi Thormar",
  6980. "email": "dufuz@php.net"
  6981. },
  6982. {
  6983. "name": "Greg Beaver",
  6984. "email": "cellog@php.net"
  6985. }
  6986. ],
  6987. "description": "The PEAR Exception base class.",
  6988. "homepage": "https://github.com/pear/PEAR_Exception",
  6989. "keywords": [
  6990. "exception"
  6991. ],
  6992. "time": "2019-12-10T10:24:42+00:00"
  6993. },
  6994. {
  6995. "name": "psr/container",
  6996. "version": "1.0.0",
  6997. "source": {
  6998. "type": "git",
  6999. "url": "https://github.com/php-fig/container.git",
  7000. "reference": "b7ce3b176482dbbc1245ebf52b181af44c2cf55f"
  7001. },
  7002. "dist": {
  7003. "type": "zip",
  7004. "url": "https://api.github.com/repos/php-fig/container/zipball/b7ce3b176482dbbc1245ebf52b181af44c2cf55f",
  7005. "reference": "b7ce3b176482dbbc1245ebf52b181af44c2cf55f",
  7006. "shasum": ""
  7007. },
  7008. "require": {
  7009. "php": ">=5.3.0"
  7010. },
  7011. "type": "library",
  7012. "extra": {
  7013. "branch-alias": {
  7014. "dev-master": "1.0.x-dev"
  7015. }
  7016. },
  7017. "autoload": {
  7018. "psr-4": {
  7019. "Psr\\Container\\": "src/"
  7020. }
  7021. },
  7022. "notification-url": "https://packagist.org/downloads/",
  7023. "license": [
  7024. "MIT"
  7025. ],
  7026. "authors": [
  7027. {
  7028. "name": "PHP-FIG",
  7029. "homepage": "http://www.php-fig.org/"
  7030. }
  7031. ],
  7032. "description": "Common Container Interface (PHP FIG PSR-11)",
  7033. "homepage": "https://github.com/php-fig/container",
  7034. "keywords": [
  7035. "PSR-11",
  7036. "container",
  7037. "container-interface",
  7038. "container-interop",
  7039. "psr"
  7040. ],
  7041. "time": "2017-02-14T16:28:37+00:00"
  7042. },
  7043. {
  7044. "name": "psr/http-message",
  7045. "version": "1.0.1",
  7046. "source": {
  7047. "type": "git",
  7048. "url": "https://github.com/php-fig/http-message.git",
  7049. "reference": "f6561bf28d520154e4b0ec72be95418abe6d9363"
  7050. },
  7051. "dist": {
  7052. "type": "zip",
  7053. "url": "https://api.github.com/repos/php-fig/http-message/zipball/f6561bf28d520154e4b0ec72be95418abe6d9363",
  7054. "reference": "f6561bf28d520154e4b0ec72be95418abe6d9363",
  7055. "shasum": ""
  7056. },
  7057. "require": {
  7058. "php": ">=5.3.0"
  7059. },
  7060. "type": "library",
  7061. "extra": {
  7062. "branch-alias": {
  7063. "dev-master": "1.0.x-dev"
  7064. }
  7065. },
  7066. "autoload": {
  7067. "psr-4": {
  7068. "Psr\\Http\\Message\\": "src/"
  7069. }
  7070. },
  7071. "notification-url": "https://packagist.org/downloads/",
  7072. "license": [
  7073. "MIT"
  7074. ],
  7075. "authors": [
  7076. {
  7077. "name": "PHP-FIG",
  7078. "homepage": "http://www.php-fig.org/"
  7079. }
  7080. ],
  7081. "description": "Common interface for HTTP messages",
  7082. "homepage": "https://github.com/php-fig/http-message",
  7083. "keywords": [
  7084. "http",
  7085. "http-message",
  7086. "psr",
  7087. "psr-7",
  7088. "request",
  7089. "response"
  7090. ],
  7091. "time": "2016-08-06T14:39:51+00:00"
  7092. },
  7093. {
  7094. "name": "psr/log",
  7095. "version": "1.1.3",
  7096. "source": {
  7097. "type": "git",
  7098. "url": "https://github.com/php-fig/log.git",
  7099. "reference": "0f73288fd15629204f9d42b7055f72dacbe811fc"
  7100. },
  7101. "dist": {
  7102. "type": "zip",
  7103. "url": "https://api.github.com/repos/php-fig/log/zipball/0f73288fd15629204f9d42b7055f72dacbe811fc",
  7104. "reference": "0f73288fd15629204f9d42b7055f72dacbe811fc",
  7105. "shasum": ""
  7106. },
  7107. "require": {
  7108. "php": ">=5.3.0"
  7109. },
  7110. "type": "library",
  7111. "extra": {
  7112. "branch-alias": {
  7113. "dev-master": "1.1.x-dev"
  7114. }
  7115. },
  7116. "autoload": {
  7117. "psr-4": {
  7118. "Psr\\Log\\": "Psr/Log/"
  7119. }
  7120. },
  7121. "notification-url": "https://packagist.org/downloads/",
  7122. "license": [
  7123. "MIT"
  7124. ],
  7125. "authors": [
  7126. {
  7127. "name": "PHP-FIG",
  7128. "homepage": "http://www.php-fig.org/"
  7129. }
  7130. ],
  7131. "description": "Common interface for logging libraries",
  7132. "homepage": "https://github.com/php-fig/log",
  7133. "keywords": [
  7134. "log",
  7135. "psr",
  7136. "psr-3"
  7137. ],
  7138. "time": "2020-03-23T09:12:05+00:00"
  7139. },
  7140. {
  7141. "name": "psy/psysh",
  7142. "version": "v0.10.4",
  7143. "source": {
  7144. "type": "git",
  7145. "url": "https://github.com/bobthecow/psysh.git",
  7146. "reference": "a8aec1b2981ab66882a01cce36a49b6317dc3560"
  7147. },
  7148. "dist": {
  7149. "type": "zip",
  7150. "url": "https://api.github.com/repos/bobthecow/psysh/zipball/a8aec1b2981ab66882a01cce36a49b6317dc3560",
  7151. "reference": "a8aec1b2981ab66882a01cce36a49b6317dc3560",
  7152. "shasum": ""
  7153. },
  7154. "require": {
  7155. "dnoegel/php-xdg-base-dir": "0.1.*",
  7156. "ext-json": "*",
  7157. "ext-tokenizer": "*",
  7158. "nikic/php-parser": "~4.0|~3.0|~2.0|~1.3",
  7159. "php": "^8.0 || ^7.0 || ^5.5.9",
  7160. "symfony/console": "~5.0|~4.0|~3.0|^2.4.2|~2.3.10",
  7161. "symfony/var-dumper": "~5.0|~4.0|~3.0|~2.7"
  7162. },
  7163. "require-dev": {
  7164. "bamarni/composer-bin-plugin": "^1.2",
  7165. "hoa/console": "3.17.*"
  7166. },
  7167. "suggest": {
  7168. "ext-pcntl": "Enabling the PCNTL extension makes PsySH a lot happier :)",
  7169. "ext-pdo-sqlite": "The doc command requires SQLite to work.",
  7170. "ext-posix": "If you have PCNTL, you'll want the POSIX extension as well.",
  7171. "ext-readline": "Enables support for arrow-key history navigation, and showing and manipulating command history.",
  7172. "hoa/console": "A pure PHP readline implementation. You'll want this if your PHP install doesn't already support readline or libedit."
  7173. },
  7174. "bin": [
  7175. "bin/psysh"
  7176. ],
  7177. "type": "library",
  7178. "extra": {
  7179. "branch-alias": {
  7180. "dev-master": "0.10.x-dev"
  7181. }
  7182. },
  7183. "autoload": {
  7184. "files": [
  7185. "src/functions.php"
  7186. ],
  7187. "psr-4": {
  7188. "Psy\\": "src/"
  7189. }
  7190. },
  7191. "notification-url": "https://packagist.org/downloads/",
  7192. "license": [
  7193. "MIT"
  7194. ],
  7195. "authors": [
  7196. {
  7197. "name": "Justin Hileman",
  7198. "email": "justin@justinhileman.info",
  7199. "homepage": "http://justinhileman.com"
  7200. }
  7201. ],
  7202. "description": "An interactive shell for modern PHP.",
  7203. "homepage": "http://psysh.org",
  7204. "keywords": [
  7205. "REPL",
  7206. "console",
  7207. "interactive",
  7208. "shell"
  7209. ],
  7210. "time": "2020-05-03T19:32:03+00:00"
  7211. },
  7212. {
  7213. "name": "ralouphie/getallheaders",
  7214. "version": "3.0.3",
  7215. "source": {
  7216. "type": "git",
  7217. "url": "https://github.com/ralouphie/getallheaders.git",
  7218. "reference": "120b605dfeb996808c31b6477290a714d356e822"
  7219. },
  7220. "dist": {
  7221. "type": "zip",
  7222. "url": "https://api.github.com/repos/ralouphie/getallheaders/zipball/120b605dfeb996808c31b6477290a714d356e822",
  7223. "reference": "120b605dfeb996808c31b6477290a714d356e822",
  7224. "shasum": ""
  7225. },
  7226. "require": {
  7227. "php": ">=5.6"
  7228. },
  7229. "require-dev": {
  7230. "php-coveralls/php-coveralls": "^2.1",
  7231. "phpunit/phpunit": "^5 || ^6.5"
  7232. },
  7233. "type": "library",
  7234. "autoload": {
  7235. "files": [
  7236. "src/getallheaders.php"
  7237. ]
  7238. },
  7239. "notification-url": "https://packagist.org/downloads/",
  7240. "license": [
  7241. "MIT"
  7242. ],
  7243. "authors": [
  7244. {
  7245. "name": "Ralph Khattar",
  7246. "email": "ralph.khattar@gmail.com"
  7247. }
  7248. ],
  7249. "description": "A polyfill for getallheaders.",
  7250. "time": "2019-03-08T08:55:37+00:00"
  7251. },
  7252. {
  7253. "name": "stack/builder",
  7254. "version": "v1.0.5",
  7255. "source": {
  7256. "type": "git",
  7257. "url": "https://github.com/stackphp/builder.git",
  7258. "reference": "fb3d136d04c6be41120ebf8c0cc71fe9507d750a"
  7259. },
  7260. "dist": {
  7261. "type": "zip",
  7262. "url": "https://api.github.com/repos/stackphp/builder/zipball/fb3d136d04c6be41120ebf8c0cc71fe9507d750a",
  7263. "reference": "fb3d136d04c6be41120ebf8c0cc71fe9507d750a",
  7264. "shasum": ""
  7265. },
  7266. "require": {
  7267. "php": ">=5.3.0",
  7268. "symfony/http-foundation": "~2.1|~3.0|~4.0",
  7269. "symfony/http-kernel": "~2.1|~3.0|~4.0"
  7270. },
  7271. "require-dev": {
  7272. "silex/silex": "~1.0"
  7273. },
  7274. "type": "library",
  7275. "extra": {
  7276. "branch-alias": {
  7277. "dev-master": "1.0-dev"
  7278. }
  7279. },
  7280. "autoload": {
  7281. "psr-0": {
  7282. "Stack": "src"
  7283. }
  7284. },
  7285. "notification-url": "https://packagist.org/downloads/",
  7286. "license": [
  7287. "MIT"
  7288. ],
  7289. "authors": [
  7290. {
  7291. "name": "Igor Wiedler",
  7292. "email": "igor@wiedler.ch"
  7293. }
  7294. ],
  7295. "description": "Builder for stack middlewares based on HttpKernelInterface.",
  7296. "keywords": [
  7297. "stack"
  7298. ],
  7299. "time": "2017-11-18T14:57:29+00:00"
  7300. },
  7301. {
  7302. "name": "stecman/symfony-console-completion",
  7303. "version": "0.11.0",
  7304. "source": {
  7305. "type": "git",
  7306. "url": "https://github.com/stecman/symfony-console-completion.git",
  7307. "reference": "a9502dab59405e275a9f264536c4e1cb61fc3518"
  7308. },
  7309. "dist": {
  7310. "type": "zip",
  7311. "url": "https://api.github.com/repos/stecman/symfony-console-completion/zipball/a9502dab59405e275a9f264536c4e1cb61fc3518",
  7312. "reference": "a9502dab59405e275a9f264536c4e1cb61fc3518",
  7313. "shasum": ""
  7314. },
  7315. "require": {
  7316. "php": ">=5.3.2",
  7317. "symfony/console": "~2.3 || ~3.0 || ~4.0 || ~5.0"
  7318. },
  7319. "require-dev": {
  7320. "phpunit/phpunit": "~4.8.36 || ~5.7 || ~6.4"
  7321. },
  7322. "type": "library",
  7323. "extra": {
  7324. "branch-alias": {
  7325. "dev-master": "0.10.x-dev"
  7326. }
  7327. },
  7328. "autoload": {
  7329. "psr-4": {
  7330. "Stecman\\Component\\Symfony\\Console\\BashCompletion\\": "src/"
  7331. }
  7332. },
  7333. "notification-url": "https://packagist.org/downloads/",
  7334. "license": [
  7335. "MIT"
  7336. ],
  7337. "authors": [
  7338. {
  7339. "name": "Stephen Holdaway",
  7340. "email": "stephen@stecman.co.nz"
  7341. }
  7342. ],
  7343. "description": "Automatic BASH completion for Symfony Console Component based applications.",
  7344. "time": "2019-11-24T17:03:06+00:00"
  7345. },
  7346. {
  7347. "name": "symfony-cmf/routing",
  7348. "version": "1.4.1",
  7349. "source": {
  7350. "type": "git",
  7351. "url": "https://github.com/symfony-cmf/routing.git",
  7352. "reference": "fb1e7f85ff8c6866238b7e73a490a0a0243ae8ac"
  7353. },
  7354. "dist": {
  7355. "type": "zip",
  7356. "url": "https://api.github.com/repos/symfony-cmf/routing/zipball/fb1e7f85ff8c6866238b7e73a490a0a0243ae8ac",
  7357. "reference": "fb1e7f85ff8c6866238b7e73a490a0a0243ae8ac",
  7358. "shasum": ""
  7359. },
  7360. "require": {
  7361. "php": "^5.3.9|^7.0",
  7362. "psr/log": "1.*",
  7363. "symfony/http-kernel": "^2.2|3.*",
  7364. "symfony/routing": "^2.2|3.*"
  7365. },
  7366. "require-dev": {
  7367. "friendsofsymfony/jsrouting-bundle": "^1.1",
  7368. "symfony-cmf/testing": "^1.3",
  7369. "symfony/config": "^2.2|3.*",
  7370. "symfony/dependency-injection": "^2.0.5|3.*",
  7371. "symfony/event-dispatcher": "^2.1|3.*"
  7372. },
  7373. "suggest": {
  7374. "symfony/event-dispatcher": "DynamicRouter can optionally trigger an event at the start of matching. Minimal version (~2.1)"
  7375. },
  7376. "type": "library",
  7377. "extra": {
  7378. "branch-alias": {
  7379. "dev-master": "1.4-dev"
  7380. }
  7381. },
  7382. "autoload": {
  7383. "psr-4": {
  7384. "Symfony\\Cmf\\Component\\Routing\\": ""
  7385. }
  7386. },
  7387. "notification-url": "https://packagist.org/downloads/",
  7388. "license": [
  7389. "MIT"
  7390. ],
  7391. "authors": [
  7392. {
  7393. "name": "Symfony CMF Community",
  7394. "homepage": "https://github.com/symfony-cmf/Routing/contributors"
  7395. }
  7396. ],
  7397. "description": "Extends the Symfony2 routing component for dynamic routes and chaining several routers",
  7398. "homepage": "http://cmf.symfony.com",
  7399. "keywords": [
  7400. "database",
  7401. "routing"
  7402. ],
  7403. "time": "2017-05-09T08:10:41+00:00"
  7404. },
  7405. {
  7406. "name": "symfony/class-loader",
  7407. "version": "v3.4.41",
  7408. "source": {
  7409. "type": "git",
  7410. "url": "https://github.com/symfony/class-loader.git",
  7411. "reference": "e4636a4f23f157278a19e5db160c63de0da297d8"
  7412. },
  7413. "dist": {
  7414. "type": "zip",
  7415. "url": "https://api.github.com/repos/symfony/class-loader/zipball/e4636a4f23f157278a19e5db160c63de0da297d8",
  7416. "reference": "e4636a4f23f157278a19e5db160c63de0da297d8",
  7417. "shasum": ""
  7418. },
  7419. "require": {
  7420. "php": "^5.5.9|>=7.0.8"
  7421. },
  7422. "require-dev": {
  7423. "symfony/finder": "~2.8|~3.0|~4.0",
  7424. "symfony/polyfill-apcu": "~1.1"
  7425. },
  7426. "suggest": {
  7427. "symfony/polyfill-apcu": "For using ApcClassLoader on HHVM"
  7428. },
  7429. "type": "library",
  7430. "extra": {
  7431. "branch-alias": {
  7432. "dev-master": "3.4-dev"
  7433. }
  7434. },
  7435. "autoload": {
  7436. "psr-4": {
  7437. "Symfony\\Component\\ClassLoader\\": ""
  7438. },
  7439. "exclude-from-classmap": [
  7440. "/Tests/"
  7441. ]
  7442. },
  7443. "notification-url": "https://packagist.org/downloads/",
  7444. "license": [
  7445. "MIT"
  7446. ],
  7447. "authors": [
  7448. {
  7449. "name": "Fabien Potencier",
  7450. "email": "fabien@symfony.com"
  7451. },
  7452. {
  7453. "name": "Symfony Community",
  7454. "homepage": "https://symfony.com/contributors"
  7455. }
  7456. ],
  7457. "description": "Symfony ClassLoader Component",
  7458. "homepage": "https://symfony.com",
  7459. "time": "2020-03-15T09:38:08+00:00"
  7460. },
  7461. {
  7462. "name": "symfony/config",
  7463. "version": "v3.4.40",
  7464. "source": {
  7465. "type": "git",
  7466. "url": "https://github.com/symfony/config.git",
  7467. "reference": "3634991bea549e73c45a964c38f30ceeae6ed877"
  7468. },
  7469. "dist": {
  7470. "type": "zip",
  7471. "url": "https://api.github.com/repos/symfony/config/zipball/3634991bea549e73c45a964c38f30ceeae6ed877",
  7472. "reference": "3634991bea549e73c45a964c38f30ceeae6ed877",
  7473. "shasum": ""
  7474. },
  7475. "require": {
  7476. "php": "^5.5.9|>=7.0.8",
  7477. "symfony/filesystem": "~2.8|~3.0|~4.0",
  7478. "symfony/polyfill-ctype": "~1.8"
  7479. },
  7480. "conflict": {
  7481. "symfony/dependency-injection": "<3.3",
  7482. "symfony/finder": "<3.3"
  7483. },
  7484. "require-dev": {
  7485. "symfony/dependency-injection": "~3.3|~4.0",
  7486. "symfony/event-dispatcher": "~3.3|~4.0",
  7487. "symfony/finder": "~3.3|~4.0",
  7488. "symfony/yaml": "~3.0|~4.0"
  7489. },
  7490. "suggest": {
  7491. "symfony/yaml": "To use the yaml reference dumper"
  7492. },
  7493. "type": "library",
  7494. "extra": {
  7495. "branch-alias": {
  7496. "dev-master": "3.4-dev"
  7497. }
  7498. },
  7499. "autoload": {
  7500. "psr-4": {
  7501. "Symfony\\Component\\Config\\": ""
  7502. },
  7503. "exclude-from-classmap": [
  7504. "/Tests/"
  7505. ]
  7506. },
  7507. "notification-url": "https://packagist.org/downloads/",
  7508. "license": [
  7509. "MIT"
  7510. ],
  7511. "authors": [
  7512. {
  7513. "name": "Fabien Potencier",
  7514. "email": "fabien@symfony.com"
  7515. },
  7516. {
  7517. "name": "Symfony Community",
  7518. "homepage": "https://symfony.com/contributors"
  7519. }
  7520. ],
  7521. "description": "Symfony Config Component",
  7522. "homepage": "https://symfony.com",
  7523. "time": "2020-04-12T14:33:46+00:00"
  7524. },
  7525. {
  7526. "name": "symfony/console",
  7527. "version": "v3.4.41",
  7528. "source": {
  7529. "type": "git",
  7530. "url": "https://github.com/symfony/console.git",
  7531. "reference": "bfe29ead7e7b1cc9ce74c6a40d06ad1f96fced13"
  7532. },
  7533. "dist": {
  7534. "type": "zip",
  7535. "url": "https://api.github.com/repos/symfony/console/zipball/bfe29ead7e7b1cc9ce74c6a40d06ad1f96fced13",
  7536. "reference": "bfe29ead7e7b1cc9ce74c6a40d06ad1f96fced13",
  7537. "shasum": ""
  7538. },
  7539. "require": {
  7540. "php": "^5.5.9|>=7.0.8",
  7541. "symfony/debug": "~2.8|~3.0|~4.0",
  7542. "symfony/polyfill-mbstring": "~1.0"
  7543. },
  7544. "conflict": {
  7545. "symfony/dependency-injection": "<3.4",
  7546. "symfony/process": "<3.3"
  7547. },
  7548. "provide": {
  7549. "psr/log-implementation": "1.0"
  7550. },
  7551. "require-dev": {
  7552. "psr/log": "~1.0",
  7553. "symfony/config": "~3.3|~4.0",
  7554. "symfony/dependency-injection": "~3.4|~4.0",
  7555. "symfony/event-dispatcher": "~2.8|~3.0|~4.0",
  7556. "symfony/lock": "~3.4|~4.0",
  7557. "symfony/process": "~3.3|~4.0"
  7558. },
  7559. "suggest": {
  7560. "psr/log": "For using the console logger",
  7561. "symfony/event-dispatcher": "",
  7562. "symfony/lock": "",
  7563. "symfony/process": ""
  7564. },
  7565. "type": "library",
  7566. "extra": {
  7567. "branch-alias": {
  7568. "dev-master": "3.4-dev"
  7569. }
  7570. },
  7571. "autoload": {
  7572. "psr-4": {
  7573. "Symfony\\Component\\Console\\": ""
  7574. },
  7575. "exclude-from-classmap": [
  7576. "/Tests/"
  7577. ]
  7578. },
  7579. "notification-url": "https://packagist.org/downloads/",
  7580. "license": [
  7581. "MIT"
  7582. ],
  7583. "authors": [
  7584. {
  7585. "name": "Fabien Potencier",
  7586. "email": "fabien@symfony.com"
  7587. },
  7588. {
  7589. "name": "Symfony Community",
  7590. "homepage": "https://symfony.com/contributors"
  7591. }
  7592. ],
  7593. "description": "Symfony Console Component",
  7594. "homepage": "https://symfony.com",
  7595. "time": "2020-05-30T18:58:05+00:00"
  7596. },
  7597. {
  7598. "name": "symfony/css-selector",
  7599. "version": "v3.4.40",
  7600. "source": {
  7601. "type": "git",
  7602. "url": "https://github.com/symfony/css-selector.git",
  7603. "reference": "9ccf6e78077a3fc1596e6c7b5958008965a11518"
  7604. },
  7605. "dist": {
  7606. "type": "zip",
  7607. "url": "https://api.github.com/repos/symfony/css-selector/zipball/9ccf6e78077a3fc1596e6c7b5958008965a11518",
  7608. "reference": "9ccf6e78077a3fc1596e6c7b5958008965a11518",
  7609. "shasum": ""
  7610. },
  7611. "require": {
  7612. "php": "^5.5.9|>=7.0.8"
  7613. },
  7614. "type": "library",
  7615. "extra": {
  7616. "branch-alias": {
  7617. "dev-master": "3.4-dev"
  7618. }
  7619. },
  7620. "autoload": {
  7621. "psr-4": {
  7622. "Symfony\\Component\\CssSelector\\": ""
  7623. },
  7624. "exclude-from-classmap": [
  7625. "/Tests/"
  7626. ]
  7627. },
  7628. "notification-url": "https://packagist.org/downloads/",
  7629. "license": [
  7630. "MIT"
  7631. ],
  7632. "authors": [
  7633. {
  7634. "name": "Fabien Potencier",
  7635. "email": "fabien@symfony.com"
  7636. },
  7637. {
  7638. "name": "Jean-François Simon",
  7639. "email": "jeanfrancois.simon@sensiolabs.com"
  7640. },
  7641. {
  7642. "name": "Symfony Community",
  7643. "homepage": "https://symfony.com/contributors"
  7644. }
  7645. ],
  7646. "description": "Symfony CssSelector Component",
  7647. "homepage": "https://symfony.com",
  7648. "time": "2020-03-16T08:31:04+00:00"
  7649. },
  7650. {
  7651. "name": "symfony/debug",
  7652. "version": "v3.4.41",
  7653. "source": {
  7654. "type": "git",
  7655. "url": "https://github.com/symfony/debug.git",
  7656. "reference": "518c6a00d0872da30bd06aee3ea59a0a5cf54d6d"
  7657. },
  7658. "dist": {
  7659. "type": "zip",
  7660. "url": "https://api.github.com/repos/symfony/debug/zipball/518c6a00d0872da30bd06aee3ea59a0a5cf54d6d",
  7661. "reference": "518c6a00d0872da30bd06aee3ea59a0a5cf54d6d",
  7662. "shasum": ""
  7663. },
  7664. "require": {
  7665. "php": "^5.5.9|>=7.0.8",
  7666. "psr/log": "~1.0"
  7667. },
  7668. "conflict": {
  7669. "symfony/http-kernel": ">=2.3,<2.3.24|~2.4.0|>=2.5,<2.5.9|>=2.6,<2.6.2"
  7670. },
  7671. "require-dev": {
  7672. "symfony/http-kernel": "~2.8|~3.0|~4.0"
  7673. },
  7674. "type": "library",
  7675. "extra": {
  7676. "branch-alias": {
  7677. "dev-master": "3.4-dev"
  7678. }
  7679. },
  7680. "autoload": {
  7681. "psr-4": {
  7682. "Symfony\\Component\\Debug\\": ""
  7683. },
  7684. "exclude-from-classmap": [
  7685. "/Tests/"
  7686. ]
  7687. },
  7688. "notification-url": "https://packagist.org/downloads/",
  7689. "license": [
  7690. "MIT"
  7691. ],
  7692. "authors": [
  7693. {
  7694. "name": "Fabien Potencier",
  7695. "email": "fabien@symfony.com"
  7696. },
  7697. {
  7698. "name": "Symfony Community",
  7699. "homepage": "https://symfony.com/contributors"
  7700. }
  7701. ],
  7702. "description": "Symfony Debug Component",
  7703. "homepage": "https://symfony.com",
  7704. "time": "2020-05-22T18:25:20+00:00"
  7705. },
  7706. {
  7707. "name": "symfony/dependency-injection",
  7708. "version": "v3.4.41",
  7709. "source": {
  7710. "type": "git",
  7711. "url": "https://github.com/symfony/dependency-injection.git",
  7712. "reference": "e39380b7104b0ec538a075ae919f00c7e5267bac"
  7713. },
  7714. "dist": {
  7715. "type": "zip",
  7716. "url": "https://api.github.com/repos/symfony/dependency-injection/zipball/e39380b7104b0ec538a075ae919f00c7e5267bac",
  7717. "reference": "e39380b7104b0ec538a075ae919f00c7e5267bac",
  7718. "shasum": ""
  7719. },
  7720. "require": {
  7721. "php": "^5.5.9|>=7.0.8",
  7722. "psr/container": "^1.0"
  7723. },
  7724. "conflict": {
  7725. "symfony/config": "<3.3.7",
  7726. "symfony/finder": "<3.3",
  7727. "symfony/proxy-manager-bridge": "<3.4",
  7728. "symfony/yaml": "<3.4"
  7729. },
  7730. "provide": {
  7731. "psr/container-implementation": "1.0"
  7732. },
  7733. "require-dev": {
  7734. "symfony/config": "~3.3|~4.0",
  7735. "symfony/expression-language": "~2.8|~3.0|~4.0",
  7736. "symfony/yaml": "~3.4|~4.0"
  7737. },
  7738. "suggest": {
  7739. "symfony/config": "",
  7740. "symfony/expression-language": "For using expressions in service container configuration",
  7741. "symfony/finder": "For using double-star glob patterns or when GLOB_BRACE portability is required",
  7742. "symfony/proxy-manager-bridge": "Generate service proxies to lazy load them",
  7743. "symfony/yaml": ""
  7744. },
  7745. "type": "library",
  7746. "extra": {
  7747. "branch-alias": {
  7748. "dev-master": "3.4-dev"
  7749. }
  7750. },
  7751. "autoload": {
  7752. "psr-4": {
  7753. "Symfony\\Component\\DependencyInjection\\": ""
  7754. },
  7755. "exclude-from-classmap": [
  7756. "/Tests/"
  7757. ]
  7758. },
  7759. "notification-url": "https://packagist.org/downloads/",
  7760. "license": [
  7761. "MIT"
  7762. ],
  7763. "authors": [
  7764. {
  7765. "name": "Fabien Potencier",
  7766. "email": "fabien@symfony.com"
  7767. },
  7768. {
  7769. "name": "Symfony Community",
  7770. "homepage": "https://symfony.com/contributors"
  7771. }
  7772. ],
  7773. "description": "Symfony DependencyInjection Component",
  7774. "homepage": "https://symfony.com",
  7775. "time": "2020-05-30T21:06:01+00:00"
  7776. },
  7777. {
  7778. "name": "symfony/dom-crawler",
  7779. "version": "v3.4.40",
  7780. "source": {
  7781. "type": "git",
  7782. "url": "https://github.com/symfony/dom-crawler.git",
  7783. "reference": "ceacdab4abf7695ef6bec77c8b7983e1544c6358"
  7784. },
  7785. "dist": {
  7786. "type": "zip",
  7787. "url": "https://api.github.com/repos/symfony/dom-crawler/zipball/ceacdab4abf7695ef6bec77c8b7983e1544c6358",
  7788. "reference": "ceacdab4abf7695ef6bec77c8b7983e1544c6358",
  7789. "shasum": ""
  7790. },
  7791. "require": {
  7792. "php": "^5.5.9|>=7.0.8",
  7793. "symfony/polyfill-ctype": "~1.8",
  7794. "symfony/polyfill-mbstring": "~1.0"
  7795. },
  7796. "require-dev": {
  7797. "symfony/css-selector": "~2.8|~3.0|~4.0"
  7798. },
  7799. "suggest": {
  7800. "symfony/css-selector": ""
  7801. },
  7802. "type": "library",
  7803. "extra": {
  7804. "branch-alias": {
  7805. "dev-master": "3.4-dev"
  7806. }
  7807. },
  7808. "autoload": {
  7809. "psr-4": {
  7810. "Symfony\\Component\\DomCrawler\\": ""
  7811. },
  7812. "exclude-from-classmap": [
  7813. "/Tests/"
  7814. ]
  7815. },
  7816. "notification-url": "https://packagist.org/downloads/",
  7817. "license": [
  7818. "MIT"
  7819. ],
  7820. "authors": [
  7821. {
  7822. "name": "Fabien Potencier",
  7823. "email": "fabien@symfony.com"
  7824. },
  7825. {
  7826. "name": "Symfony Community",
  7827. "homepage": "https://symfony.com/contributors"
  7828. }
  7829. ],
  7830. "description": "Symfony DomCrawler Component",
  7831. "homepage": "https://symfony.com",
  7832. "time": "2020-03-16T08:31:04+00:00"
  7833. },
  7834. {
  7835. "name": "symfony/event-dispatcher",
  7836. "version": "v3.4.41",
  7837. "source": {
  7838. "type": "git",
  7839. "url": "https://github.com/symfony/event-dispatcher.git",
  7840. "reference": "14d978f8e8555f2de719c00eb65376be7d2e9081"
  7841. },
  7842. "dist": {
  7843. "type": "zip",
  7844. "url": "https://api.github.com/repos/symfony/event-dispatcher/zipball/14d978f8e8555f2de719c00eb65376be7d2e9081",
  7845. "reference": "14d978f8e8555f2de719c00eb65376be7d2e9081",
  7846. "shasum": ""
  7847. },
  7848. "require": {
  7849. "php": "^5.5.9|>=7.0.8"
  7850. },
  7851. "conflict": {
  7852. "symfony/dependency-injection": "<3.3"
  7853. },
  7854. "require-dev": {
  7855. "psr/log": "~1.0",
  7856. "symfony/config": "~2.8|~3.0|~4.0",
  7857. "symfony/dependency-injection": "~3.3|~4.0",
  7858. "symfony/expression-language": "~2.8|~3.0|~4.0",
  7859. "symfony/stopwatch": "~2.8|~3.0|~4.0"
  7860. },
  7861. "suggest": {
  7862. "symfony/dependency-injection": "",
  7863. "symfony/http-kernel": ""
  7864. },
  7865. "type": "library",
  7866. "extra": {
  7867. "branch-alias": {
  7868. "dev-master": "3.4-dev"
  7869. }
  7870. },
  7871. "autoload": {
  7872. "psr-4": {
  7873. "Symfony\\Component\\EventDispatcher\\": ""
  7874. },
  7875. "exclude-from-classmap": [
  7876. "/Tests/"
  7877. ]
  7878. },
  7879. "notification-url": "https://packagist.org/downloads/",
  7880. "license": [
  7881. "MIT"
  7882. ],
  7883. "authors": [
  7884. {
  7885. "name": "Fabien Potencier",
  7886. "email": "fabien@symfony.com"
  7887. },
  7888. {
  7889. "name": "Symfony Community",
  7890. "homepage": "https://symfony.com/contributors"
  7891. }
  7892. ],
  7893. "description": "Symfony EventDispatcher Component",
  7894. "homepage": "https://symfony.com",
  7895. "time": "2020-05-05T15:06:23+00:00"
  7896. },
  7897. {
  7898. "name": "symfony/filesystem",
  7899. "version": "v3.4.40",
  7900. "source": {
  7901. "type": "git",
  7902. "url": "https://github.com/symfony/filesystem.git",
  7903. "reference": "78a93e5606a19d0fb490afc3c4a9b7ecd86e1515"
  7904. },
  7905. "dist": {
  7906. "type": "zip",
  7907. "url": "https://api.github.com/repos/symfony/filesystem/zipball/78a93e5606a19d0fb490afc3c4a9b7ecd86e1515",
  7908. "reference": "78a93e5606a19d0fb490afc3c4a9b7ecd86e1515",
  7909. "shasum": ""
  7910. },
  7911. "require": {
  7912. "php": "^5.5.9|>=7.0.8",
  7913. "symfony/polyfill-ctype": "~1.8"
  7914. },
  7915. "type": "library",
  7916. "extra": {
  7917. "branch-alias": {
  7918. "dev-master": "3.4-dev"
  7919. }
  7920. },
  7921. "autoload": {
  7922. "psr-4": {
  7923. "Symfony\\Component\\Filesystem\\": ""
  7924. },
  7925. "exclude-from-classmap": [
  7926. "/Tests/"
  7927. ]
  7928. },
  7929. "notification-url": "https://packagist.org/downloads/",
  7930. "license": [
  7931. "MIT"
  7932. ],
  7933. "authors": [
  7934. {
  7935. "name": "Fabien Potencier",
  7936. "email": "fabien@symfony.com"
  7937. },
  7938. {
  7939. "name": "Symfony Community",
  7940. "homepage": "https://symfony.com/contributors"
  7941. }
  7942. ],
  7943. "description": "Symfony Filesystem Component",
  7944. "homepage": "https://symfony.com",
  7945. "time": "2020-04-12T16:54:01+00:00"
  7946. },
  7947. {
  7948. "name": "symfony/finder",
  7949. "version": "v3.4.40",
  7950. "source": {
  7951. "type": "git",
  7952. "url": "https://github.com/symfony/finder.git",
  7953. "reference": "5ec813ccafa8164ef21757e8c725d3a57da59200"
  7954. },
  7955. "dist": {
  7956. "type": "zip",
  7957. "url": "https://api.github.com/repos/symfony/finder/zipball/5ec813ccafa8164ef21757e8c725d3a57da59200",
  7958. "reference": "5ec813ccafa8164ef21757e8c725d3a57da59200",
  7959. "shasum": ""
  7960. },
  7961. "require": {
  7962. "php": "^5.5.9|>=7.0.8"
  7963. },
  7964. "type": "library",
  7965. "extra": {
  7966. "branch-alias": {
  7967. "dev-master": "3.4-dev"
  7968. }
  7969. },
  7970. "autoload": {
  7971. "psr-4": {
  7972. "Symfony\\Component\\Finder\\": ""
  7973. },
  7974. "exclude-from-classmap": [
  7975. "/Tests/"
  7976. ]
  7977. },
  7978. "notification-url": "https://packagist.org/downloads/",
  7979. "license": [
  7980. "MIT"
  7981. ],
  7982. "authors": [
  7983. {
  7984. "name": "Fabien Potencier",
  7985. "email": "fabien@symfony.com"
  7986. },
  7987. {
  7988. "name": "Symfony Community",
  7989. "homepage": "https://symfony.com/contributors"
  7990. }
  7991. ],
  7992. "description": "Symfony Finder Component",
  7993. "homepage": "https://symfony.com",
  7994. "time": "2020-02-14T07:34:21+00:00"
  7995. },
  7996. {
  7997. "name": "symfony/http-foundation",
  7998. "version": "v3.4.41",
  7999. "source": {
  8000. "type": "git",
  8001. "url": "https://github.com/symfony/http-foundation.git",
  8002. "reference": "fbd216d2304b1a3fe38d6392b04729c8dd356359"
  8003. },
  8004. "dist": {
  8005. "type": "zip",
  8006. "url": "https://api.github.com/repos/symfony/http-foundation/zipball/fbd216d2304b1a3fe38d6392b04729c8dd356359",
  8007. "reference": "fbd216d2304b1a3fe38d6392b04729c8dd356359",
  8008. "shasum": ""
  8009. },
  8010. "require": {
  8011. "php": "^5.5.9|>=7.0.8",
  8012. "symfony/polyfill-mbstring": "~1.1",
  8013. "symfony/polyfill-php70": "~1.6"
  8014. },
  8015. "require-dev": {
  8016. "symfony/expression-language": "~2.8|~3.0|~4.0"
  8017. },
  8018. "type": "library",
  8019. "extra": {
  8020. "branch-alias": {
  8021. "dev-master": "3.4-dev"
  8022. }
  8023. },
  8024. "autoload": {
  8025. "psr-4": {
  8026. "Symfony\\Component\\HttpFoundation\\": ""
  8027. },
  8028. "exclude-from-classmap": [
  8029. "/Tests/"
  8030. ]
  8031. },
  8032. "notification-url": "https://packagist.org/downloads/",
  8033. "license": [
  8034. "MIT"
  8035. ],
  8036. "authors": [
  8037. {
  8038. "name": "Fabien Potencier",
  8039. "email": "fabien@symfony.com"
  8040. },
  8041. {
  8042. "name": "Symfony Community",
  8043. "homepage": "https://symfony.com/contributors"
  8044. }
  8045. ],
  8046. "description": "Symfony HttpFoundation Component",
  8047. "homepage": "https://symfony.com",
  8048. "time": "2020-05-16T13:15:54+00:00"
  8049. },
  8050. {
  8051. "name": "symfony/http-kernel",
  8052. "version": "v3.4.41",
  8053. "source": {
  8054. "type": "git",
  8055. "url": "https://github.com/symfony/http-kernel.git",
  8056. "reference": "e4e4ed6c008c983645b4eee6b67d8f258cde54df"
  8057. },
  8058. "dist": {
  8059. "type": "zip",
  8060. "url": "https://api.github.com/repos/symfony/http-kernel/zipball/e4e4ed6c008c983645b4eee6b67d8f258cde54df",
  8061. "reference": "e4e4ed6c008c983645b4eee6b67d8f258cde54df",
  8062. "shasum": ""
  8063. },
  8064. "require": {
  8065. "php": "^5.5.9|>=7.0.8",
  8066. "psr/log": "~1.0",
  8067. "symfony/debug": "^3.3.3|~4.0",
  8068. "symfony/event-dispatcher": "~2.8|~3.0|~4.0",
  8069. "symfony/http-foundation": "~3.4.12|~4.0.12|^4.1.1",
  8070. "symfony/polyfill-ctype": "~1.8",
  8071. "symfony/polyfill-php56": "~1.8"
  8072. },
  8073. "conflict": {
  8074. "symfony/config": "<2.8",
  8075. "symfony/dependency-injection": "<3.4.10|<4.0.10,>=4",
  8076. "symfony/var-dumper": "<3.3",
  8077. "twig/twig": "<1.34|<2.4,>=2"
  8078. },
  8079. "provide": {
  8080. "psr/log-implementation": "1.0"
  8081. },
  8082. "require-dev": {
  8083. "psr/cache": "~1.0",
  8084. "symfony/browser-kit": "~2.8|~3.0|~4.0",
  8085. "symfony/class-loader": "~2.8|~3.0",
  8086. "symfony/config": "~2.8|~3.0|~4.0",
  8087. "symfony/console": "~2.8|~3.0|~4.0",
  8088. "symfony/css-selector": "~2.8|~3.0|~4.0",
  8089. "symfony/dependency-injection": "^3.4.10|^4.0.10",
  8090. "symfony/dom-crawler": "~2.8|~3.0|~4.0",
  8091. "symfony/expression-language": "~2.8|~3.0|~4.0",
  8092. "symfony/finder": "~2.8|~3.0|~4.0",
  8093. "symfony/process": "~2.8|~3.0|~4.0",
  8094. "symfony/routing": "~3.4|~4.0",
  8095. "symfony/stopwatch": "~2.8|~3.0|~4.0",
  8096. "symfony/templating": "~2.8|~3.0|~4.0",
  8097. "symfony/translation": "~2.8|~3.0|~4.0",
  8098. "symfony/var-dumper": "~3.3|~4.0"
  8099. },
  8100. "suggest": {
  8101. "symfony/browser-kit": "",
  8102. "symfony/config": "",
  8103. "symfony/console": "",
  8104. "symfony/dependency-injection": "",
  8105. "symfony/finder": "",
  8106. "symfony/var-dumper": ""
  8107. },
  8108. "type": "library",
  8109. "extra": {
  8110. "branch-alias": {
  8111. "dev-master": "3.4-dev"
  8112. }
  8113. },
  8114. "autoload": {
  8115. "psr-4": {
  8116. "Symfony\\Component\\HttpKernel\\": ""
  8117. },
  8118. "exclude-from-classmap": [
  8119. "/Tests/"
  8120. ]
  8121. },
  8122. "notification-url": "https://packagist.org/downloads/",
  8123. "license": [
  8124. "MIT"
  8125. ],
  8126. "authors": [
  8127. {
  8128. "name": "Fabien Potencier",
  8129. "email": "fabien@symfony.com"
  8130. },
  8131. {
  8132. "name": "Symfony Community",
  8133. "homepage": "https://symfony.com/contributors"
  8134. }
  8135. ],
  8136. "description": "Symfony HttpKernel Component",
  8137. "homepage": "https://symfony.com",
  8138. "time": "2020-05-31T05:14:17+00:00"
  8139. },
  8140. {
  8141. "name": "symfony/polyfill-ctype",
  8142. "version": "v1.17.0",
  8143. "source": {
  8144. "type": "git",
  8145. "url": "https://github.com/symfony/polyfill-ctype.git",
  8146. "reference": "e94c8b1bbe2bc77507a1056cdb06451c75b427f9"
  8147. },
  8148. "dist": {
  8149. "type": "zip",
  8150. "url": "https://api.github.com/repos/symfony/polyfill-ctype/zipball/e94c8b1bbe2bc77507a1056cdb06451c75b427f9",
  8151. "reference": "e94c8b1bbe2bc77507a1056cdb06451c75b427f9",
  8152. "shasum": ""
  8153. },
  8154. "require": {
  8155. "php": ">=5.3.3"
  8156. },
  8157. "suggest": {
  8158. "ext-ctype": "For best performance"
  8159. },
  8160. "type": "library",
  8161. "extra": {
  8162. "branch-alias": {
  8163. "dev-master": "1.17-dev"
  8164. }
  8165. },
  8166. "autoload": {
  8167. "psr-4": {
  8168. "Symfony\\Polyfill\\Ctype\\": ""
  8169. },
  8170. "files": [
  8171. "bootstrap.php"
  8172. ]
  8173. },
  8174. "notification-url": "https://packagist.org/downloads/",
  8175. "license": [
  8176. "MIT"
  8177. ],
  8178. "authors": [
  8179. {
  8180. "name": "Gert de Pagter",
  8181. "email": "BackEndTea@gmail.com"
  8182. },
  8183. {
  8184. "name": "Symfony Community",
  8185. "homepage": "https://symfony.com/contributors"
  8186. }
  8187. ],
  8188. "description": "Symfony polyfill for ctype functions",
  8189. "homepage": "https://symfony.com",
  8190. "keywords": [
  8191. "compatibility",
  8192. "ctype",
  8193. "polyfill",
  8194. "portable"
  8195. ],
  8196. "time": "2020-05-12T16:14:59+00:00"
  8197. },
  8198. {
  8199. "name": "symfony/polyfill-iconv",
  8200. "version": "v1.17.0",
  8201. "source": {
  8202. "type": "git",
  8203. "url": "https://github.com/symfony/polyfill-iconv.git",
  8204. "reference": "c4de7601eefbf25f9d47190abe07f79fe0a27424"
  8205. },
  8206. "dist": {
  8207. "type": "zip",
  8208. "url": "https://api.github.com/repos/symfony/polyfill-iconv/zipball/c4de7601eefbf25f9d47190abe07f79fe0a27424",
  8209. "reference": "c4de7601eefbf25f9d47190abe07f79fe0a27424",
  8210. "shasum": ""
  8211. },
  8212. "require": {
  8213. "php": ">=5.3.3"
  8214. },
  8215. "suggest": {
  8216. "ext-iconv": "For best performance"
  8217. },
  8218. "type": "library",
  8219. "extra": {
  8220. "branch-alias": {
  8221. "dev-master": "1.17-dev"
  8222. }
  8223. },
  8224. "autoload": {
  8225. "psr-4": {
  8226. "Symfony\\Polyfill\\Iconv\\": ""
  8227. },
  8228. "files": [
  8229. "bootstrap.php"
  8230. ]
  8231. },
  8232. "notification-url": "https://packagist.org/downloads/",
  8233. "license": [
  8234. "MIT"
  8235. ],
  8236. "authors": [
  8237. {
  8238. "name": "Nicolas Grekas",
  8239. "email": "p@tchwork.com"
  8240. },
  8241. {
  8242. "name": "Symfony Community",
  8243. "homepage": "https://symfony.com/contributors"
  8244. }
  8245. ],
  8246. "description": "Symfony polyfill for the Iconv extension",
  8247. "homepage": "https://symfony.com",
  8248. "keywords": [
  8249. "compatibility",
  8250. "iconv",
  8251. "polyfill",
  8252. "portable",
  8253. "shim"
  8254. ],
  8255. "time": "2020-05-12T16:47:27+00:00"
  8256. },
  8257. {
  8258. "name": "symfony/polyfill-intl-idn",
  8259. "version": "v1.17.0",
  8260. "source": {
  8261. "type": "git",
  8262. "url": "https://github.com/symfony/polyfill-intl-idn.git",
  8263. "reference": "3bff59ea7047e925be6b7f2059d60af31bb46d6a"
  8264. },
  8265. "dist": {
  8266. "type": "zip",
  8267. "url": "https://api.github.com/repos/symfony/polyfill-intl-idn/zipball/3bff59ea7047e925be6b7f2059d60af31bb46d6a",
  8268. "reference": "3bff59ea7047e925be6b7f2059d60af31bb46d6a",
  8269. "shasum": ""
  8270. },
  8271. "require": {
  8272. "php": ">=5.3.3",
  8273. "symfony/polyfill-mbstring": "^1.3",
  8274. "symfony/polyfill-php72": "^1.10"
  8275. },
  8276. "suggest": {
  8277. "ext-intl": "For best performance"
  8278. },
  8279. "type": "library",
  8280. "extra": {
  8281. "branch-alias": {
  8282. "dev-master": "1.17-dev"
  8283. }
  8284. },
  8285. "autoload": {
  8286. "psr-4": {
  8287. "Symfony\\Polyfill\\Intl\\Idn\\": ""
  8288. },
  8289. "files": [
  8290. "bootstrap.php"
  8291. ]
  8292. },
  8293. "notification-url": "https://packagist.org/downloads/",
  8294. "license": [
  8295. "MIT"
  8296. ],
  8297. "authors": [
  8298. {
  8299. "name": "Laurent Bassin",
  8300. "email": "laurent@bassin.info"
  8301. },
  8302. {
  8303. "name": "Symfony Community",
  8304. "homepage": "https://symfony.com/contributors"
  8305. }
  8306. ],
  8307. "description": "Symfony polyfill for intl's idn_to_ascii and idn_to_utf8 functions",
  8308. "homepage": "https://symfony.com",
  8309. "keywords": [
  8310. "compatibility",
  8311. "idn",
  8312. "intl",
  8313. "polyfill",
  8314. "portable",
  8315. "shim"
  8316. ],
  8317. "time": "2020-05-12T16:47:27+00:00"
  8318. },
  8319. {
  8320. "name": "symfony/polyfill-mbstring",
  8321. "version": "v1.17.0",
  8322. "source": {
  8323. "type": "git",
  8324. "url": "https://github.com/symfony/polyfill-mbstring.git",
  8325. "reference": "fa79b11539418b02fc5e1897267673ba2c19419c"
  8326. },
  8327. "dist": {
  8328. "type": "zip",
  8329. "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/fa79b11539418b02fc5e1897267673ba2c19419c",
  8330. "reference": "fa79b11539418b02fc5e1897267673ba2c19419c",
  8331. "shasum": ""
  8332. },
  8333. "require": {
  8334. "php": ">=5.3.3"
  8335. },
  8336. "suggest": {
  8337. "ext-mbstring": "For best performance"
  8338. },
  8339. "type": "library",
  8340. "extra": {
  8341. "branch-alias": {
  8342. "dev-master": "1.17-dev"
  8343. }
  8344. },
  8345. "autoload": {
  8346. "psr-4": {
  8347. "Symfony\\Polyfill\\Mbstring\\": ""
  8348. },
  8349. "files": [
  8350. "bootstrap.php"
  8351. ]
  8352. },
  8353. "notification-url": "https://packagist.org/downloads/",
  8354. "license": [
  8355. "MIT"
  8356. ],
  8357. "authors": [
  8358. {
  8359. "name": "Nicolas Grekas",
  8360. "email": "p@tchwork.com"
  8361. },
  8362. {
  8363. "name": "Symfony Community",
  8364. "homepage": "https://symfony.com/contributors"
  8365. }
  8366. ],
  8367. "description": "Symfony polyfill for the Mbstring extension",
  8368. "homepage": "https://symfony.com",
  8369. "keywords": [
  8370. "compatibility",
  8371. "mbstring",
  8372. "polyfill",
  8373. "portable",
  8374. "shim"
  8375. ],
  8376. "time": "2020-05-12T16:47:27+00:00"
  8377. },
  8378. {
  8379. "name": "symfony/polyfill-php56",
  8380. "version": "v1.17.0",
  8381. "source": {
  8382. "type": "git",
  8383. "url": "https://github.com/symfony/polyfill-php56.git",
  8384. "reference": "e3c8c138280cdfe4b81488441555583aa1984e23"
  8385. },
  8386. "dist": {
  8387. "type": "zip",
  8388. "url": "https://api.github.com/repos/symfony/polyfill-php56/zipball/e3c8c138280cdfe4b81488441555583aa1984e23",
  8389. "reference": "e3c8c138280cdfe4b81488441555583aa1984e23",
  8390. "shasum": ""
  8391. },
  8392. "require": {
  8393. "php": ">=5.3.3",
  8394. "symfony/polyfill-util": "~1.0"
  8395. },
  8396. "type": "library",
  8397. "extra": {
  8398. "branch-alias": {
  8399. "dev-master": "1.17-dev"
  8400. }
  8401. },
  8402. "autoload": {
  8403. "psr-4": {
  8404. "Symfony\\Polyfill\\Php56\\": ""
  8405. },
  8406. "files": [
  8407. "bootstrap.php"
  8408. ]
  8409. },
  8410. "notification-url": "https://packagist.org/downloads/",
  8411. "license": [
  8412. "MIT"
  8413. ],
  8414. "authors": [
  8415. {
  8416. "name": "Nicolas Grekas",
  8417. "email": "p@tchwork.com"
  8418. },
  8419. {
  8420. "name": "Symfony Community",
  8421. "homepage": "https://symfony.com/contributors"
  8422. }
  8423. ],
  8424. "description": "Symfony polyfill backporting some PHP 5.6+ features to lower PHP versions",
  8425. "homepage": "https://symfony.com",
  8426. "keywords": [
  8427. "compatibility",
  8428. "polyfill",
  8429. "portable",
  8430. "shim"
  8431. ],
  8432. "time": "2020-05-12T16:47:27+00:00"
  8433. },
  8434. {
  8435. "name": "symfony/polyfill-php70",
  8436. "version": "v1.17.0",
  8437. "source": {
  8438. "type": "git",
  8439. "url": "https://github.com/symfony/polyfill-php70.git",
  8440. "reference": "82225c2d7d23d7e70515496d249c0152679b468e"
  8441. },
  8442. "dist": {
  8443. "type": "zip",
  8444. "url": "https://api.github.com/repos/symfony/polyfill-php70/zipball/82225c2d7d23d7e70515496d249c0152679b468e",
  8445. "reference": "82225c2d7d23d7e70515496d249c0152679b468e",
  8446. "shasum": ""
  8447. },
  8448. "require": {
  8449. "paragonie/random_compat": "~1.0|~2.0|~9.99",
  8450. "php": ">=5.3.3"
  8451. },
  8452. "type": "library",
  8453. "extra": {
  8454. "branch-alias": {
  8455. "dev-master": "1.17-dev"
  8456. }
  8457. },
  8458. "autoload": {
  8459. "psr-4": {
  8460. "Symfony\\Polyfill\\Php70\\": ""
  8461. },
  8462. "files": [
  8463. "bootstrap.php"
  8464. ],
  8465. "classmap": [
  8466. "Resources/stubs"
  8467. ]
  8468. },
  8469. "notification-url": "https://packagist.org/downloads/",
  8470. "license": [
  8471. "MIT"
  8472. ],
  8473. "authors": [
  8474. {
  8475. "name": "Nicolas Grekas",
  8476. "email": "p@tchwork.com"
  8477. },
  8478. {
  8479. "name": "Symfony Community",
  8480. "homepage": "https://symfony.com/contributors"
  8481. }
  8482. ],
  8483. "description": "Symfony polyfill backporting some PHP 7.0+ features to lower PHP versions",
  8484. "homepage": "https://symfony.com",
  8485. "keywords": [
  8486. "compatibility",
  8487. "polyfill",
  8488. "portable",
  8489. "shim"
  8490. ],
  8491. "time": "2020-05-12T16:47:27+00:00"
  8492. },
  8493. {
  8494. "name": "symfony/polyfill-php72",
  8495. "version": "v1.17.0",
  8496. "source": {
  8497. "type": "git",
  8498. "url": "https://github.com/symfony/polyfill-php72.git",
  8499. "reference": "f048e612a3905f34931127360bdd2def19a5e582"
  8500. },
  8501. "dist": {
  8502. "type": "zip",
  8503. "url": "https://api.github.com/repos/symfony/polyfill-php72/zipball/f048e612a3905f34931127360bdd2def19a5e582",
  8504. "reference": "f048e612a3905f34931127360bdd2def19a5e582",
  8505. "shasum": ""
  8506. },
  8507. "require": {
  8508. "php": ">=5.3.3"
  8509. },
  8510. "type": "library",
  8511. "extra": {
  8512. "branch-alias": {
  8513. "dev-master": "1.17-dev"
  8514. }
  8515. },
  8516. "autoload": {
  8517. "psr-4": {
  8518. "Symfony\\Polyfill\\Php72\\": ""
  8519. },
  8520. "files": [
  8521. "bootstrap.php"
  8522. ]
  8523. },
  8524. "notification-url": "https://packagist.org/downloads/",
  8525. "license": [
  8526. "MIT"
  8527. ],
  8528. "authors": [
  8529. {
  8530. "name": "Nicolas Grekas",
  8531. "email": "p@tchwork.com"
  8532. },
  8533. {
  8534. "name": "Symfony Community",
  8535. "homepage": "https://symfony.com/contributors"
  8536. }
  8537. ],
  8538. "description": "Symfony polyfill backporting some PHP 7.2+ features to lower PHP versions",
  8539. "homepage": "https://symfony.com",
  8540. "keywords": [
  8541. "compatibility",
  8542. "polyfill",
  8543. "portable",
  8544. "shim"
  8545. ],
  8546. "time": "2020-05-12T16:47:27+00:00"
  8547. },
  8548. {
  8549. "name": "symfony/polyfill-util",
  8550. "version": "v1.17.0",
  8551. "source": {
  8552. "type": "git",
  8553. "url": "https://github.com/symfony/polyfill-util.git",
  8554. "reference": "4afb4110fc037752cf0ce9869f9ab8162c4e20d7"
  8555. },
  8556. "dist": {
  8557. "type": "zip",
  8558. "url": "https://api.github.com/repos/symfony/polyfill-util/zipball/4afb4110fc037752cf0ce9869f9ab8162c4e20d7",
  8559. "reference": "4afb4110fc037752cf0ce9869f9ab8162c4e20d7",
  8560. "shasum": ""
  8561. },
  8562. "require": {
  8563. "php": ">=5.3.3"
  8564. },
  8565. "type": "library",
  8566. "extra": {
  8567. "branch-alias": {
  8568. "dev-master": "1.17-dev"
  8569. }
  8570. },
  8571. "autoload": {
  8572. "psr-4": {
  8573. "Symfony\\Polyfill\\Util\\": ""
  8574. }
  8575. },
  8576. "notification-url": "https://packagist.org/downloads/",
  8577. "license": [
  8578. "MIT"
  8579. ],
  8580. "authors": [
  8581. {
  8582. "name": "Nicolas Grekas",
  8583. "email": "p@tchwork.com"
  8584. },
  8585. {
  8586. "name": "Symfony Community",
  8587. "homepage": "https://symfony.com/contributors"
  8588. }
  8589. ],
  8590. "description": "Symfony utilities for portability of PHP codes",
  8591. "homepage": "https://symfony.com",
  8592. "keywords": [
  8593. "compat",
  8594. "compatibility",
  8595. "polyfill",
  8596. "shim"
  8597. ],
  8598. "time": "2020-05-12T16:14:59+00:00"
  8599. },
  8600. {
  8601. "name": "symfony/process",
  8602. "version": "v3.4.41",
  8603. "source": {
  8604. "type": "git",
  8605. "url": "https://github.com/symfony/process.git",
  8606. "reference": "8a895f0c92a7c4b10db95139bcff71bdf66d4d21"
  8607. },
  8608. "dist": {
  8609. "type": "zip",
  8610. "url": "https://api.github.com/repos/symfony/process/zipball/8a895f0c92a7c4b10db95139bcff71bdf66d4d21",
  8611. "reference": "8a895f0c92a7c4b10db95139bcff71bdf66d4d21",
  8612. "shasum": ""
  8613. },
  8614. "require": {
  8615. "php": "^5.5.9|>=7.0.8"
  8616. },
  8617. "type": "library",
  8618. "extra": {
  8619. "branch-alias": {
  8620. "dev-master": "3.4-dev"
  8621. }
  8622. },
  8623. "autoload": {
  8624. "psr-4": {
  8625. "Symfony\\Component\\Process\\": ""
  8626. },
  8627. "exclude-from-classmap": [
  8628. "/Tests/"
  8629. ]
  8630. },
  8631. "notification-url": "https://packagist.org/downloads/",
  8632. "license": [
  8633. "MIT"
  8634. ],
  8635. "authors": [
  8636. {
  8637. "name": "Fabien Potencier",
  8638. "email": "fabien@symfony.com"
  8639. },
  8640. {
  8641. "name": "Symfony Community",
  8642. "homepage": "https://symfony.com/contributors"
  8643. }
  8644. ],
  8645. "description": "Symfony Process Component",
  8646. "homepage": "https://symfony.com",
  8647. "time": "2020-05-23T17:05:51+00:00"
  8648. },
  8649. {
  8650. "name": "symfony/psr-http-message-bridge",
  8651. "version": "v1.1.2",
  8652. "source": {
  8653. "type": "git",
  8654. "url": "https://github.com/symfony/psr-http-message-bridge.git",
  8655. "reference": "a33352af16f78a5ff4f9d90811536abf210df12b"
  8656. },
  8657. "dist": {
  8658. "type": "zip",
  8659. "url": "https://api.github.com/repos/symfony/psr-http-message-bridge/zipball/a33352af16f78a5ff4f9d90811536abf210df12b",
  8660. "reference": "a33352af16f78a5ff4f9d90811536abf210df12b",
  8661. "shasum": ""
  8662. },
  8663. "require": {
  8664. "php": "^5.3.3 || ^7.0",
  8665. "psr/http-message": "^1.0",
  8666. "symfony/http-foundation": "^2.3.42 || ^3.4 || ^4.0"
  8667. },
  8668. "require-dev": {
  8669. "symfony/phpunit-bridge": "^3.4 || ^4.0"
  8670. },
  8671. "suggest": {
  8672. "nyholm/psr7": "For a super lightweight PSR-7/17 implementation"
  8673. },
  8674. "type": "symfony-bridge",
  8675. "extra": {
  8676. "branch-alias": {
  8677. "dev-master": "1.1-dev"
  8678. }
  8679. },
  8680. "autoload": {
  8681. "psr-4": {
  8682. "Symfony\\Bridge\\PsrHttpMessage\\": ""
  8683. },
  8684. "exclude-from-classmap": [
  8685. "/Tests/"
  8686. ]
  8687. },
  8688. "notification-url": "https://packagist.org/downloads/",
  8689. "license": [
  8690. "MIT"
  8691. ],
  8692. "authors": [
  8693. {
  8694. "name": "Symfony Community",
  8695. "homepage": "http://symfony.com/contributors"
  8696. },
  8697. {
  8698. "name": "Fabien Potencier",
  8699. "email": "fabien@symfony.com"
  8700. }
  8701. ],
  8702. "description": "PSR HTTP message bridge",
  8703. "homepage": "http://symfony.com",
  8704. "keywords": [
  8705. "http",
  8706. "http-message",
  8707. "psr-17",
  8708. "psr-7"
  8709. ],
  8710. "time": "2019-04-03T17:09:40+00:00"
  8711. },
  8712. {
  8713. "name": "symfony/routing",
  8714. "version": "v3.4.41",
  8715. "source": {
  8716. "type": "git",
  8717. "url": "https://github.com/symfony/routing.git",
  8718. "reference": "e0d43b6f9417ad59ecaa8e2f799b79eef417387f"
  8719. },
  8720. "dist": {
  8721. "type": "zip",
  8722. "url": "https://api.github.com/repos/symfony/routing/zipball/e0d43b6f9417ad59ecaa8e2f799b79eef417387f",
  8723. "reference": "e0d43b6f9417ad59ecaa8e2f799b79eef417387f",
  8724. "shasum": ""
  8725. },
  8726. "require": {
  8727. "php": "^5.5.9|>=7.0.8"
  8728. },
  8729. "conflict": {
  8730. "symfony/config": "<3.3.1",
  8731. "symfony/dependency-injection": "<3.3",
  8732. "symfony/yaml": "<3.4"
  8733. },
  8734. "require-dev": {
  8735. "doctrine/annotations": "~1.0",
  8736. "psr/log": "~1.0",
  8737. "symfony/config": "^3.3.1|~4.0",
  8738. "symfony/dependency-injection": "~3.3|~4.0",
  8739. "symfony/expression-language": "~2.8|~3.0|~4.0",
  8740. "symfony/http-foundation": "~2.8|~3.0|~4.0",
  8741. "symfony/yaml": "~3.4|~4.0"
  8742. },
  8743. "suggest": {
  8744. "doctrine/annotations": "For using the annotation loader",
  8745. "symfony/config": "For using the all-in-one router or any loader",
  8746. "symfony/expression-language": "For using expression matching",
  8747. "symfony/http-foundation": "For using a Symfony Request object",
  8748. "symfony/yaml": "For using the YAML loader"
  8749. },
  8750. "type": "library",
  8751. "extra": {
  8752. "branch-alias": {
  8753. "dev-master": "3.4-dev"
  8754. }
  8755. },
  8756. "autoload": {
  8757. "psr-4": {
  8758. "Symfony\\Component\\Routing\\": ""
  8759. },
  8760. "exclude-from-classmap": [
  8761. "/Tests/"
  8762. ]
  8763. },
  8764. "notification-url": "https://packagist.org/downloads/",
  8765. "license": [
  8766. "MIT"
  8767. ],
  8768. "authors": [
  8769. {
  8770. "name": "Fabien Potencier",
  8771. "email": "fabien@symfony.com"
  8772. },
  8773. {
  8774. "name": "Symfony Community",
  8775. "homepage": "https://symfony.com/contributors"
  8776. }
  8777. ],
  8778. "description": "Symfony Routing Component",
  8779. "homepage": "https://symfony.com",
  8780. "keywords": [
  8781. "router",
  8782. "routing",
  8783. "uri",
  8784. "url"
  8785. ],
  8786. "time": "2020-05-30T19:50:06+00:00"
  8787. },
  8788. {
  8789. "name": "symfony/serializer",
  8790. "version": "v3.4.41",
  8791. "source": {
  8792. "type": "git",
  8793. "url": "https://github.com/symfony/serializer.git",
  8794. "reference": "0db90db012b1b0a04fbb2d64ae9160871cad9d4f"
  8795. },
  8796. "dist": {
  8797. "type": "zip",
  8798. "url": "https://api.github.com/repos/symfony/serializer/zipball/0db90db012b1b0a04fbb2d64ae9160871cad9d4f",
  8799. "reference": "0db90db012b1b0a04fbb2d64ae9160871cad9d4f",
  8800. "shasum": ""
  8801. },
  8802. "require": {
  8803. "php": "^5.5.9|>=7.0.8",
  8804. "symfony/polyfill-ctype": "~1.8"
  8805. },
  8806. "conflict": {
  8807. "phpdocumentor/type-resolver": "<0.2.1",
  8808. "symfony/dependency-injection": "<3.2",
  8809. "symfony/property-access": ">=3.0,<3.0.4|>=2.8,<2.8.4",
  8810. "symfony/property-info": "<3.1",
  8811. "symfony/yaml": "<3.4"
  8812. },
  8813. "require-dev": {
  8814. "doctrine/annotations": "~1.0",
  8815. "doctrine/cache": "~1.0",
  8816. "phpdocumentor/reflection-docblock": "^3.0|^4.0",
  8817. "symfony/cache": "~3.1|~4.0",
  8818. "symfony/config": "~2.8|~3.0|~4.0",
  8819. "symfony/dependency-injection": "~3.2|~4.0",
  8820. "symfony/http-foundation": "~2.8|~3.0|~4.0",
  8821. "symfony/property-access": "~2.8|~3.0|~4.0",
  8822. "symfony/property-info": "^3.4.13|~4.0",
  8823. "symfony/yaml": "~3.4|~4.0"
  8824. },
  8825. "suggest": {
  8826. "doctrine/annotations": "For using the annotation mapping. You will also need doctrine/cache.",
  8827. "doctrine/cache": "For using the default cached annotation reader and metadata cache.",
  8828. "psr/cache-implementation": "For using the metadata cache.",
  8829. "symfony/config": "For using the XML mapping loader.",
  8830. "symfony/http-foundation": "For using a MIME type guesser within the DataUriNormalizer.",
  8831. "symfony/property-access": "For using the ObjectNormalizer.",
  8832. "symfony/property-info": "To deserialize relations.",
  8833. "symfony/yaml": "For using the default YAML mapping loader."
  8834. },
  8835. "type": "library",
  8836. "extra": {
  8837. "branch-alias": {
  8838. "dev-master": "3.4-dev"
  8839. }
  8840. },
  8841. "autoload": {
  8842. "psr-4": {
  8843. "Symfony\\Component\\Serializer\\": ""
  8844. },
  8845. "exclude-from-classmap": [
  8846. "/Tests/"
  8847. ]
  8848. },
  8849. "notification-url": "https://packagist.org/downloads/",
  8850. "license": [
  8851. "MIT"
  8852. ],
  8853. "authors": [
  8854. {
  8855. "name": "Fabien Potencier",
  8856. "email": "fabien@symfony.com"
  8857. },
  8858. {
  8859. "name": "Symfony Community",
  8860. "homepage": "https://symfony.com/contributors"
  8861. }
  8862. ],
  8863. "description": "Symfony Serializer Component",
  8864. "homepage": "https://symfony.com",
  8865. "time": "2020-05-30T18:58:05+00:00"
  8866. },
  8867. {
  8868. "name": "symfony/translation",
  8869. "version": "v3.4.41",
  8870. "source": {
  8871. "type": "git",
  8872. "url": "https://github.com/symfony/translation.git",
  8873. "reference": "b0cd62ef0ff7ec31b67d78d7fc818e2bda4e844f"
  8874. },
  8875. "dist": {
  8876. "type": "zip",
  8877. "url": "https://api.github.com/repos/symfony/translation/zipball/b0cd62ef0ff7ec31b67d78d7fc818e2bda4e844f",
  8878. "reference": "b0cd62ef0ff7ec31b67d78d7fc818e2bda4e844f",
  8879. "shasum": ""
  8880. },
  8881. "require": {
  8882. "php": "^5.5.9|>=7.0.8",
  8883. "symfony/polyfill-mbstring": "~1.0"
  8884. },
  8885. "conflict": {
  8886. "symfony/config": "<2.8",
  8887. "symfony/dependency-injection": "<3.4",
  8888. "symfony/yaml": "<3.4"
  8889. },
  8890. "require-dev": {
  8891. "psr/log": "~1.0",
  8892. "symfony/config": "~2.8|~3.0|~4.0",
  8893. "symfony/dependency-injection": "~3.4|~4.0",
  8894. "symfony/finder": "~2.8|~3.0|~4.0",
  8895. "symfony/http-kernel": "~3.4|~4.0",
  8896. "symfony/intl": "^2.8.18|^3.2.5|~4.0",
  8897. "symfony/var-dumper": "~3.4|~4.0",
  8898. "symfony/yaml": "~3.4|~4.0"
  8899. },
  8900. "suggest": {
  8901. "psr/log-implementation": "To use logging capability in translator",
  8902. "symfony/config": "",
  8903. "symfony/yaml": ""
  8904. },
  8905. "type": "library",
  8906. "extra": {
  8907. "branch-alias": {
  8908. "dev-master": "3.4-dev"
  8909. }
  8910. },
  8911. "autoload": {
  8912. "psr-4": {
  8913. "Symfony\\Component\\Translation\\": ""
  8914. },
  8915. "exclude-from-classmap": [
  8916. "/Tests/"
  8917. ]
  8918. },
  8919. "notification-url": "https://packagist.org/downloads/",
  8920. "license": [
  8921. "MIT"
  8922. ],
  8923. "authors": [
  8924. {
  8925. "name": "Fabien Potencier",
  8926. "email": "fabien@symfony.com"
  8927. },
  8928. {
  8929. "name": "Symfony Community",
  8930. "homepage": "https://symfony.com/contributors"
  8931. }
  8932. ],
  8933. "description": "Symfony Translation Component",
  8934. "homepage": "https://symfony.com",
  8935. "time": "2020-05-30T18:58:05+00:00"
  8936. },
  8937. {
  8938. "name": "symfony/validator",
  8939. "version": "v3.4.41",
  8940. "source": {
  8941. "type": "git",
  8942. "url": "https://github.com/symfony/validator.git",
  8943. "reference": "5fb88120a11a75e17b602103a893dd8b27804529"
  8944. },
  8945. "dist": {
  8946. "type": "zip",
  8947. "url": "https://api.github.com/repos/symfony/validator/zipball/5fb88120a11a75e17b602103a893dd8b27804529",
  8948. "reference": "5fb88120a11a75e17b602103a893dd8b27804529",
  8949. "shasum": ""
  8950. },
  8951. "require": {
  8952. "php": "^5.5.9|>=7.0.8",
  8953. "symfony/polyfill-ctype": "~1.8",
  8954. "symfony/polyfill-mbstring": "~1.0",
  8955. "symfony/translation": "~2.8|~3.0|~4.0"
  8956. },
  8957. "conflict": {
  8958. "doctrine/lexer": "<1.0.2",
  8959. "phpunit/phpunit": "<4.8.35|<5.4.3,>=5.0",
  8960. "symfony/dependency-injection": "<3.3",
  8961. "symfony/http-kernel": "<3.3.5",
  8962. "symfony/yaml": "<3.4"
  8963. },
  8964. "require-dev": {
  8965. "doctrine/annotations": "~1.7",
  8966. "doctrine/cache": "~1.0",
  8967. "egulias/email-validator": "^2.1.10",
  8968. "symfony/cache": "~3.1|~4.0",
  8969. "symfony/config": "~2.8|~3.0|~4.0",
  8970. "symfony/dependency-injection": "~3.3|~4.0",
  8971. "symfony/expression-language": "~2.8|~3.0|~4.0",
  8972. "symfony/http-foundation": "~2.8|~3.0|~4.0",
  8973. "symfony/http-kernel": "^3.3.5|~4.0",
  8974. "symfony/intl": "^2.8.18|^3.2.5|~4.0",
  8975. "symfony/property-access": "~2.8|~3.0|~4.0",
  8976. "symfony/var-dumper": "~3.3|~4.0",
  8977. "symfony/yaml": "~3.4|~4.0"
  8978. },
  8979. "suggest": {
  8980. "doctrine/annotations": "For using the annotation mapping. You will also need doctrine/cache.",
  8981. "doctrine/cache": "For using the default cached annotation reader and metadata cache.",
  8982. "egulias/email-validator": "Strict (RFC compliant) email validation",
  8983. "psr/cache-implementation": "For using the metadata cache.",
  8984. "symfony/config": "",
  8985. "symfony/expression-language": "For using the Expression validator",
  8986. "symfony/http-foundation": "",
  8987. "symfony/intl": "",
  8988. "symfony/property-access": "For accessing properties within comparison constraints",
  8989. "symfony/yaml": ""
  8990. },
  8991. "type": "library",
  8992. "extra": {
  8993. "branch-alias": {
  8994. "dev-master": "3.4-dev"
  8995. }
  8996. },
  8997. "autoload": {
  8998. "psr-4": {
  8999. "Symfony\\Component\\Validator\\": ""
  9000. },
  9001. "exclude-from-classmap": [
  9002. "/Tests/"
  9003. ]
  9004. },
  9005. "notification-url": "https://packagist.org/downloads/",
  9006. "license": [
  9007. "MIT"
  9008. ],
  9009. "authors": [
  9010. {
  9011. "name": "Fabien Potencier",
  9012. "email": "fabien@symfony.com"
  9013. },
  9014. {
  9015. "name": "Symfony Community",
  9016. "homepage": "https://symfony.com/contributors"
  9017. }
  9018. ],
  9019. "description": "Symfony Validator Component",
  9020. "homepage": "https://symfony.com",
  9021. "time": "2020-05-30T18:43:38+00:00"
  9022. },
  9023. {
  9024. "name": "symfony/var-dumper",
  9025. "version": "v3.4.40",
  9026. "source": {
  9027. "type": "git",
  9028. "url": "https://github.com/symfony/var-dumper.git",
  9029. "reference": "13c03169ae485fc7f1a5143256622ce1bd3c77eb"
  9030. },
  9031. "dist": {
  9032. "type": "zip",
  9033. "url": "https://api.github.com/repos/symfony/var-dumper/zipball/13c03169ae485fc7f1a5143256622ce1bd3c77eb",
  9034. "reference": "13c03169ae485fc7f1a5143256622ce1bd3c77eb",
  9035. "shasum": ""
  9036. },
  9037. "require": {
  9038. "php": "^5.5.9|>=7.0.8",
  9039. "symfony/polyfill-mbstring": "~1.0"
  9040. },
  9041. "conflict": {
  9042. "phpunit/phpunit": "<4.8.35|<5.4.3,>=5.0"
  9043. },
  9044. "require-dev": {
  9045. "ext-iconv": "*",
  9046. "twig/twig": "~1.34|~2.4"
  9047. },
  9048. "suggest": {
  9049. "ext-iconv": "To convert non-UTF-8 strings to UTF-8 (or symfony/polyfill-iconv in case ext-iconv cannot be used).",
  9050. "ext-intl": "To show region name in time zone dump",
  9051. "ext-symfony_debug": ""
  9052. },
  9053. "type": "library",
  9054. "extra": {
  9055. "branch-alias": {
  9056. "dev-master": "3.4-dev"
  9057. }
  9058. },
  9059. "autoload": {
  9060. "files": [
  9061. "Resources/functions/dump.php"
  9062. ],
  9063. "psr-4": {
  9064. "Symfony\\Component\\VarDumper\\": ""
  9065. },
  9066. "exclude-from-classmap": [
  9067. "/Tests/"
  9068. ]
  9069. },
  9070. "notification-url": "https://packagist.org/downloads/",
  9071. "license": [
  9072. "MIT"
  9073. ],
  9074. "authors": [
  9075. {
  9076. "name": "Nicolas Grekas",
  9077. "email": "p@tchwork.com"
  9078. },
  9079. {
  9080. "name": "Symfony Community",
  9081. "homepage": "https://symfony.com/contributors"
  9082. }
  9083. ],
  9084. "description": "Symfony mechanism for exploring and dumping PHP variables",
  9085. "homepage": "https://symfony.com",
  9086. "keywords": [
  9087. "debug",
  9088. "dump"
  9089. ],
  9090. "time": "2020-03-17T22:27:36+00:00"
  9091. },
  9092. {
  9093. "name": "symfony/yaml",
  9094. "version": "v3.4.41",
  9095. "source": {
  9096. "type": "git",
  9097. "url": "https://github.com/symfony/yaml.git",
  9098. "reference": "7233ac2bfdde24d672f5305f2b3f6b5d741ef8eb"
  9099. },
  9100. "dist": {
  9101. "type": "zip",
  9102. "url": "https://api.github.com/repos/symfony/yaml/zipball/7233ac2bfdde24d672f5305f2b3f6b5d741ef8eb",
  9103. "reference": "7233ac2bfdde24d672f5305f2b3f6b5d741ef8eb",
  9104. "shasum": ""
  9105. },
  9106. "require": {
  9107. "php": "^5.5.9|>=7.0.8",
  9108. "symfony/polyfill-ctype": "~1.8"
  9109. },
  9110. "conflict": {
  9111. "symfony/console": "<3.4"
  9112. },
  9113. "require-dev": {
  9114. "symfony/console": "~3.4|~4.0"
  9115. },
  9116. "suggest": {
  9117. "symfony/console": "For validating YAML files using the lint command"
  9118. },
  9119. "type": "library",
  9120. "extra": {
  9121. "branch-alias": {
  9122. "dev-master": "3.4-dev"
  9123. }
  9124. },
  9125. "autoload": {
  9126. "psr-4": {
  9127. "Symfony\\Component\\Yaml\\": ""
  9128. },
  9129. "exclude-from-classmap": [
  9130. "/Tests/"
  9131. ]
  9132. },
  9133. "notification-url": "https://packagist.org/downloads/",
  9134. "license": [
  9135. "MIT"
  9136. ],
  9137. "authors": [
  9138. {
  9139. "name": "Fabien Potencier",
  9140. "email": "fabien@symfony.com"
  9141. },
  9142. {
  9143. "name": "Symfony Community",
  9144. "homepage": "https://symfony.com/contributors"
  9145. }
  9146. ],
  9147. "description": "Symfony Yaml Component",
  9148. "homepage": "https://symfony.com",
  9149. "time": "2020-05-11T07:51:54+00:00"
  9150. },
  9151. {
  9152. "name": "twig/twig",
  9153. "version": "v1.42.5",
  9154. "source": {
  9155. "type": "git",
  9156. "url": "https://github.com/twigphp/Twig.git",
  9157. "reference": "87b2ea9d8f6fd014d0621ca089bb1b3769ea3f8e"
  9158. },
  9159. "dist": {
  9160. "type": "zip",
  9161. "url": "https://api.github.com/repos/twigphp/Twig/zipball/87b2ea9d8f6fd014d0621ca089bb1b3769ea3f8e",
  9162. "reference": "87b2ea9d8f6fd014d0621ca089bb1b3769ea3f8e",
  9163. "shasum": ""
  9164. },
  9165. "require": {
  9166. "php": ">=5.5.0",
  9167. "symfony/polyfill-ctype": "^1.8"
  9168. },
  9169. "require-dev": {
  9170. "psr/container": "^1.0",
  9171. "symfony/phpunit-bridge": "^4.4|^5.0"
  9172. },
  9173. "type": "library",
  9174. "extra": {
  9175. "branch-alias": {
  9176. "dev-master": "1.42-dev"
  9177. }
  9178. },
  9179. "autoload": {
  9180. "psr-0": {
  9181. "Twig_": "lib/"
  9182. },
  9183. "psr-4": {
  9184. "Twig\\": "src/"
  9185. }
  9186. },
  9187. "notification-url": "https://packagist.org/downloads/",
  9188. "license": [
  9189. "BSD-3-Clause"
  9190. ],
  9191. "authors": [
  9192. {
  9193. "name": "Fabien Potencier",
  9194. "email": "fabien@symfony.com",
  9195. "homepage": "http://fabien.potencier.org",
  9196. "role": "Lead Developer"
  9197. },
  9198. {
  9199. "name": "Twig Team",
  9200. "role": "Contributors"
  9201. },
  9202. {
  9203. "name": "Armin Ronacher",
  9204. "email": "armin.ronacher@active-4.com",
  9205. "role": "Project Founder"
  9206. }
  9207. ],
  9208. "description": "Twig, the flexible, fast, and secure template language for PHP",
  9209. "homepage": "https://twig.symfony.com",
  9210. "keywords": [
  9211. "templating"
  9212. ],
  9213. "time": "2020-02-11T05:59:23+00:00"
  9214. },
  9215. {
  9216. "name": "typo3/phar-stream-wrapper",
  9217. "version": "v3.1.4",
  9218. "source": {
  9219. "type": "git",
  9220. "url": "https://github.com/TYPO3/phar-stream-wrapper.git",
  9221. "reference": "e0c1b495cfac064f4f5c4bcb6bf67bb7f345ed04"
  9222. },
  9223. "dist": {
  9224. "type": "zip",
  9225. "url": "https://api.github.com/repos/TYPO3/phar-stream-wrapper/zipball/e0c1b495cfac064f4f5c4bcb6bf67bb7f345ed04",
  9226. "reference": "e0c1b495cfac064f4f5c4bcb6bf67bb7f345ed04",
  9227. "shasum": ""
  9228. },
  9229. "require": {
  9230. "ext-json": "*",
  9231. "php": "^7.0"
  9232. },
  9233. "require-dev": {
  9234. "ext-xdebug": "*",
  9235. "phpunit/phpunit": "^6.5"
  9236. },
  9237. "suggest": {
  9238. "ext-fileinfo": "For PHP builtin file type guessing, otherwise uses internal processing"
  9239. },
  9240. "type": "library",
  9241. "extra": {
  9242. "branch-alias": {
  9243. "dev-master": "v3.x-dev"
  9244. }
  9245. },
  9246. "autoload": {
  9247. "psr-4": {
  9248. "TYPO3\\PharStreamWrapper\\": "src/"
  9249. }
  9250. },
  9251. "notification-url": "https://packagist.org/downloads/",
  9252. "license": [
  9253. "MIT"
  9254. ],
  9255. "description": "Interceptors for PHP's native phar:// stream handling",
  9256. "homepage": "https://typo3.org/",
  9257. "keywords": [
  9258. "phar",
  9259. "php",
  9260. "security",
  9261. "stream-wrapper"
  9262. ],
  9263. "time": "2019-12-10T11:53:27+00:00"
  9264. },
  9265. {
  9266. "name": "vlucas/phpdotenv",
  9267. "version": "v2.6.4",
  9268. "source": {
  9269. "type": "git",
  9270. "url": "https://github.com/vlucas/phpdotenv.git",
  9271. "reference": "67d472b1794c986381a8950e4958e1adb779d561"
  9272. },
  9273. "dist": {
  9274. "type": "zip",
  9275. "url": "https://api.github.com/repos/vlucas/phpdotenv/zipball/67d472b1794c986381a8950e4958e1adb779d561",
  9276. "reference": "67d472b1794c986381a8950e4958e1adb779d561",
  9277. "shasum": ""
  9278. },
  9279. "require": {
  9280. "php": "^5.3.9 || ^7.0 || ^8.0",
  9281. "symfony/polyfill-ctype": "^1.9"
  9282. },
  9283. "require-dev": {
  9284. "ext-filter": "*",
  9285. "ext-pcre": "*",
  9286. "phpunit/phpunit": "^4.8.35 || ^5.0"
  9287. },
  9288. "suggest": {
  9289. "ext-filter": "Required to use the boolean validator.",
  9290. "ext-pcre": "Required to use most of the library."
  9291. },
  9292. "type": "library",
  9293. "extra": {
  9294. "branch-alias": {
  9295. "dev-master": "2.6-dev"
  9296. }
  9297. },
  9298. "autoload": {
  9299. "psr-4": {
  9300. "Dotenv\\": "src/"
  9301. }
  9302. },
  9303. "notification-url": "https://packagist.org/downloads/",
  9304. "license": [
  9305. "BSD-3-Clause"
  9306. ],
  9307. "authors": [
  9308. {
  9309. "name": "Graham Campbell",
  9310. "email": "graham@alt-three.com",
  9311. "homepage": "https://gjcampbell.co.uk/"
  9312. },
  9313. {
  9314. "name": "Vance Lucas",
  9315. "email": "vance@vancelucas.com",
  9316. "homepage": "https://vancelucas.com/"
  9317. }
  9318. ],
  9319. "description": "Loads environment variables from `.env` to `getenv()`, `$_ENV` and `$_SERVER` automagically.",
  9320. "keywords": [
  9321. "dotenv",
  9322. "env",
  9323. "environment"
  9324. ],
  9325. "time": "2020-05-02T13:38:00+00:00"
  9326. },
  9327. {
  9328. "name": "webflo/drupal-finder",
  9329. "version": "1.2.0",
  9330. "source": {
  9331. "type": "git",
  9332. "url": "https://github.com/webflo/drupal-finder.git",
  9333. "reference": "123e248e14ee8dd3fbe89fb5a733a6cf91f5820e"
  9334. },
  9335. "dist": {
  9336. "type": "zip",
  9337. "url": "https://api.github.com/repos/webflo/drupal-finder/zipball/123e248e14ee8dd3fbe89fb5a733a6cf91f5820e",
  9338. "reference": "123e248e14ee8dd3fbe89fb5a733a6cf91f5820e",
  9339. "shasum": ""
  9340. },
  9341. "require": {
  9342. "ext-json": "*"
  9343. },
  9344. "require-dev": {
  9345. "mikey179/vfsstream": "^1.6",
  9346. "phpunit/phpunit": "^4.8"
  9347. },
  9348. "type": "library",
  9349. "autoload": {
  9350. "classmap": [
  9351. "src/DrupalFinder.php"
  9352. ]
  9353. },
  9354. "notification-url": "https://packagist.org/downloads/",
  9355. "license": [
  9356. "GPL-2.0+"
  9357. ],
  9358. "authors": [
  9359. {
  9360. "name": "Florian Weber",
  9361. "email": "florian@webflo.org"
  9362. }
  9363. ],
  9364. "description": "Helper class to locate a Drupal installation from a given path.",
  9365. "time": "2019-08-02T08:06:18+00:00"
  9366. },
  9367. {
  9368. "name": "webmozart/assert",
  9369. "version": "1.8.0",
  9370. "source": {
  9371. "type": "git",
  9372. "url": "https://github.com/webmozart/assert.git",
  9373. "reference": "ab2cb0b3b559010b75981b1bdce728da3ee90ad6"
  9374. },
  9375. "dist": {
  9376. "type": "zip",
  9377. "url": "https://api.github.com/repos/webmozart/assert/zipball/ab2cb0b3b559010b75981b1bdce728da3ee90ad6",
  9378. "reference": "ab2cb0b3b559010b75981b1bdce728da3ee90ad6",
  9379. "shasum": ""
  9380. },
  9381. "require": {
  9382. "php": "^5.3.3 || ^7.0",
  9383. "symfony/polyfill-ctype": "^1.8"
  9384. },
  9385. "conflict": {
  9386. "vimeo/psalm": "<3.9.1"
  9387. },
  9388. "require-dev": {
  9389. "phpunit/phpunit": "^4.8.36 || ^7.5.13"
  9390. },
  9391. "type": "library",
  9392. "autoload": {
  9393. "psr-4": {
  9394. "Webmozart\\Assert\\": "src/"
  9395. }
  9396. },
  9397. "notification-url": "https://packagist.org/downloads/",
  9398. "license": [
  9399. "MIT"
  9400. ],
  9401. "authors": [
  9402. {
  9403. "name": "Bernhard Schussek",
  9404. "email": "bschussek@gmail.com"
  9405. }
  9406. ],
  9407. "description": "Assertions to validate method input/output with nice error messages.",
  9408. "keywords": [
  9409. "assert",
  9410. "check",
  9411. "validate"
  9412. ],
  9413. "time": "2020-04-18T12:12:48+00:00"
  9414. },
  9415. {
  9416. "name": "webmozart/path-util",
  9417. "version": "2.3.0",
  9418. "source": {
  9419. "type": "git",
  9420. "url": "https://github.com/webmozart/path-util.git",
  9421. "reference": "d939f7edc24c9a1bb9c0dee5cb05d8e859490725"
  9422. },
  9423. "dist": {
  9424. "type": "zip",
  9425. "url": "https://api.github.com/repos/webmozart/path-util/zipball/d939f7edc24c9a1bb9c0dee5cb05d8e859490725",
  9426. "reference": "d939f7edc24c9a1bb9c0dee5cb05d8e859490725",
  9427. "shasum": ""
  9428. },
  9429. "require": {
  9430. "php": ">=5.3.3",
  9431. "webmozart/assert": "~1.0"
  9432. },
  9433. "require-dev": {
  9434. "phpunit/phpunit": "^4.6",
  9435. "sebastian/version": "^1.0.1"
  9436. },
  9437. "type": "library",
  9438. "extra": {
  9439. "branch-alias": {
  9440. "dev-master": "2.3-dev"
  9441. }
  9442. },
  9443. "autoload": {
  9444. "psr-4": {
  9445. "Webmozart\\PathUtil\\": "src/"
  9446. }
  9447. },
  9448. "notification-url": "https://packagist.org/downloads/",
  9449. "license": [
  9450. "MIT"
  9451. ],
  9452. "authors": [
  9453. {
  9454. "name": "Bernhard Schussek",
  9455. "email": "bschussek@gmail.com"
  9456. }
  9457. ],
  9458. "description": "A robust cross-platform utility for normalizing, comparing and modifying file paths.",
  9459. "time": "2015-12-17T08:42:14+00:00"
  9460. },
  9461. {
  9462. "name": "zaporylie/composer-drupal-optimizations",
  9463. "version": "1.1.1",
  9464. "source": {
  9465. "type": "git",
  9466. "url": "https://github.com/zaporylie/composer-drupal-optimizations.git",
  9467. "reference": "fb231d92adc862a2c9276bccbc90f684816dc75d"
  9468. },
  9469. "dist": {
  9470. "type": "zip",
  9471. "url": "https://api.github.com/repos/zaporylie/composer-drupal-optimizations/zipball/fb231d92adc862a2c9276bccbc90f684816dc75d",
  9472. "reference": "fb231d92adc862a2c9276bccbc90f684816dc75d",
  9473. "shasum": ""
  9474. },
  9475. "require": {
  9476. "composer-plugin-api": "^1.1"
  9477. },
  9478. "require-dev": {
  9479. "composer/composer": "^1.6",
  9480. "phpunit/phpunit": "^6"
  9481. },
  9482. "type": "composer-plugin",
  9483. "extra": {
  9484. "class": "zaporylie\\ComposerDrupalOptimizations\\Plugin"
  9485. },
  9486. "autoload": {
  9487. "psr-4": {
  9488. "zaporylie\\ComposerDrupalOptimizations\\": "src/"
  9489. }
  9490. },
  9491. "notification-url": "https://packagist.org/downloads/",
  9492. "license": [
  9493. "GPL-2.0-or-later"
  9494. ],
  9495. "authors": [
  9496. {
  9497. "name": "Jakub Piasecki",
  9498. "email": "jakub@piaseccy.pl"
  9499. }
  9500. ],
  9501. "description": "Composer plugin to improve composer performance for Drupal projects",
  9502. "time": "2019-10-02T17:01:11+00:00"
  9503. }
  9504. ],
  9505. "packages-dev": [],
  9506. "aliases": [],
  9507. "minimum-stability": "dev",
  9508. "stability-flags": {
  9509. "drupal/bulkdelete": 20,
  9510. "drupal/domain_menu_access": 20,
  9511. "drupal/filefield_sources": 20,
  9512. "drupal/filter_perms": 20,
  9513. "drupal/maillog": 20,
  9514. "drupal/path_alias_xt": 20,
  9515. "drupal/synonyms": 20,
  9516. "drupal/toolbar_themes": 20,
  9517. "drupal/workflow": 20
  9518. },
  9519. "prefer-stable": true,
  9520. "prefer-lowest": false,
  9521. "platform": {
  9522. "php": ">=5.6"
  9523. },
  9524. "platform-dev": []
  9525. }