composer.lock 346 KB

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