composer.lock 402 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298529953005301530253035304530553065307530853095310531153125313531453155316531753185319532053215322532353245325532653275328532953305331533253335334533553365337533853395340534153425343534453455346534753485349535053515352535353545355535653575358535953605361536253635364536553665367536853695370537153725373537453755376537753785379538053815382538353845385538653875388538953905391539253935394539553965397539853995400540154025403540454055406540754085409541054115412541354145415541654175418541954205421542254235424542554265427542854295430543154325433543454355436543754385439544054415442544354445445544654475448544954505451545254535454545554565457545854595460546154625463546454655466546754685469547054715472547354745475547654775478547954805481548254835484548554865487548854895490549154925493549454955496549754985499550055015502550355045505550655075508550955105511551255135514551555165517551855195520552155225523552455255526552755285529553055315532553355345535553655375538553955405541554255435544554555465547554855495550555155525553555455555556555755585559556055615562556355645565556655675568556955705571557255735574557555765577557855795580558155825583558455855586558755885589559055915592559355945595559655975598559956005601560256035604560556065607560856095610561156125613561456155616561756185619562056215622562356245625562656275628562956305631563256335634563556365637563856395640564156425643564456455646564756485649565056515652565356545655565656575658565956605661566256635664566556665667566856695670567156725673567456755676567756785679568056815682568356845685568656875688568956905691569256935694569556965697569856995700570157025703570457055706570757085709571057115712571357145715571657175718571957205721572257235724572557265727572857295730573157325733573457355736573757385739574057415742574357445745574657475748574957505751575257535754575557565757575857595760576157625763576457655766576757685769577057715772577357745775577657775778577957805781578257835784578557865787578857895790579157925793579457955796579757985799580058015802580358045805580658075808580958105811581258135814581558165817581858195820582158225823582458255826582758285829583058315832583358345835583658375838583958405841584258435844584558465847584858495850585158525853585458555856585758585859586058615862586358645865586658675868586958705871587258735874587558765877587858795880588158825883588458855886588758885889589058915892589358945895589658975898589959005901590259035904590559065907590859095910591159125913591459155916591759185919592059215922592359245925592659275928592959305931593259335934593559365937593859395940594159425943594459455946594759485949595059515952595359545955595659575958595959605961596259635964596559665967596859695970597159725973597459755976597759785979598059815982598359845985598659875988598959905991599259935994599559965997599859996000600160026003600460056006600760086009601060116012601360146015601660176018601960206021602260236024602560266027602860296030603160326033603460356036603760386039604060416042604360446045604660476048604960506051605260536054605560566057605860596060606160626063606460656066606760686069607060716072607360746075607660776078607960806081608260836084608560866087608860896090609160926093609460956096609760986099610061016102610361046105610661076108610961106111611261136114611561166117611861196120612161226123612461256126612761286129613061316132613361346135613661376138613961406141614261436144614561466147614861496150615161526153615461556156615761586159616061616162616361646165616661676168616961706171617261736174617561766177617861796180618161826183618461856186618761886189619061916192619361946195619661976198619962006201620262036204620562066207620862096210621162126213621462156216621762186219622062216222622362246225622662276228622962306231623262336234623562366237623862396240624162426243624462456246624762486249625062516252625362546255625662576258625962606261626262636264626562666267626862696270627162726273627462756276627762786279628062816282628362846285628662876288628962906291629262936294629562966297629862996300630163026303630463056306630763086309631063116312631363146315631663176318631963206321632263236324632563266327632863296330633163326333633463356336633763386339634063416342634363446345634663476348634963506351635263536354635563566357635863596360636163626363636463656366636763686369637063716372637363746375637663776378637963806381638263836384638563866387638863896390639163926393639463956396639763986399640064016402640364046405640664076408640964106411641264136414641564166417641864196420642164226423642464256426642764286429643064316432643364346435643664376438643964406441644264436444644564466447644864496450645164526453645464556456645764586459646064616462646364646465646664676468646964706471647264736474647564766477647864796480648164826483648464856486648764886489649064916492649364946495649664976498649965006501650265036504650565066507650865096510651165126513651465156516651765186519652065216522652365246525652665276528652965306531653265336534653565366537653865396540654165426543654465456546654765486549655065516552655365546555655665576558655965606561656265636564656565666567656865696570657165726573657465756576657765786579658065816582658365846585658665876588658965906591659265936594659565966597659865996600660166026603660466056606660766086609661066116612661366146615661666176618661966206621662266236624662566266627662866296630663166326633663466356636663766386639664066416642664366446645664666476648664966506651665266536654665566566657665866596660666166626663666466656666666766686669667066716672667366746675667666776678667966806681668266836684668566866687668866896690669166926693669466956696669766986699670067016702670367046705670667076708670967106711671267136714671567166717671867196720672167226723672467256726672767286729673067316732673367346735673667376738673967406741674267436744674567466747674867496750675167526753675467556756675767586759676067616762676367646765676667676768676967706771677267736774677567766777677867796780678167826783678467856786678767886789679067916792679367946795679667976798679968006801680268036804680568066807680868096810681168126813681468156816681768186819682068216822682368246825682668276828682968306831683268336834683568366837683868396840684168426843684468456846684768486849685068516852685368546855685668576858685968606861686268636864686568666867686868696870687168726873687468756876687768786879688068816882688368846885688668876888688968906891689268936894689568966897689868996900690169026903690469056906690769086909691069116912691369146915691669176918691969206921692269236924692569266927692869296930693169326933693469356936693769386939694069416942694369446945694669476948694969506951695269536954695569566957695869596960696169626963696469656966696769686969697069716972697369746975697669776978697969806981698269836984698569866987698869896990699169926993699469956996699769986999700070017002700370047005700670077008700970107011701270137014701570167017701870197020702170227023702470257026702770287029703070317032703370347035703670377038703970407041704270437044704570467047704870497050705170527053705470557056705770587059706070617062706370647065706670677068706970707071707270737074707570767077707870797080708170827083708470857086708770887089709070917092709370947095709670977098709971007101710271037104710571067107710871097110711171127113711471157116711771187119712071217122712371247125712671277128712971307131713271337134713571367137713871397140714171427143714471457146714771487149715071517152715371547155715671577158715971607161716271637164716571667167716871697170717171727173717471757176717771787179718071817182718371847185718671877188718971907191719271937194719571967197719871997200720172027203720472057206720772087209721072117212721372147215721672177218721972207221722272237224722572267227722872297230723172327233723472357236723772387239724072417242724372447245724672477248724972507251725272537254725572567257725872597260726172627263726472657266726772687269727072717272727372747275727672777278727972807281728272837284728572867287728872897290729172927293729472957296729772987299730073017302730373047305730673077308730973107311731273137314731573167317731873197320732173227323732473257326732773287329733073317332733373347335733673377338733973407341734273437344734573467347734873497350735173527353735473557356735773587359736073617362736373647365736673677368736973707371737273737374737573767377737873797380738173827383738473857386738773887389739073917392739373947395739673977398739974007401740274037404740574067407740874097410741174127413741474157416741774187419742074217422742374247425742674277428742974307431743274337434743574367437743874397440744174427443744474457446744774487449745074517452745374547455745674577458745974607461746274637464746574667467746874697470747174727473747474757476747774787479748074817482748374847485748674877488748974907491749274937494749574967497749874997500750175027503750475057506750775087509751075117512751375147515751675177518751975207521752275237524752575267527752875297530753175327533753475357536753775387539754075417542754375447545754675477548754975507551755275537554755575567557755875597560756175627563756475657566756775687569757075717572757375747575757675777578757975807581758275837584758575867587758875897590759175927593759475957596759775987599760076017602760376047605760676077608760976107611761276137614761576167617761876197620762176227623762476257626762776287629763076317632763376347635763676377638763976407641764276437644764576467647764876497650765176527653765476557656765776587659766076617662766376647665766676677668766976707671767276737674767576767677767876797680768176827683768476857686768776887689769076917692769376947695769676977698769977007701770277037704770577067707770877097710771177127713771477157716771777187719772077217722772377247725772677277728772977307731773277337734773577367737773877397740774177427743774477457746774777487749775077517752775377547755775677577758775977607761776277637764776577667767776877697770777177727773777477757776777777787779778077817782778377847785778677877788778977907791779277937794779577967797779877997800780178027803780478057806780778087809781078117812781378147815781678177818781978207821782278237824782578267827782878297830783178327833783478357836783778387839784078417842784378447845784678477848784978507851785278537854785578567857785878597860786178627863786478657866786778687869787078717872787378747875787678777878787978807881788278837884788578867887788878897890789178927893789478957896789778987899790079017902790379047905790679077908790979107911791279137914791579167917791879197920792179227923792479257926792779287929793079317932793379347935793679377938793979407941794279437944794579467947794879497950795179527953795479557956795779587959796079617962796379647965796679677968796979707971797279737974797579767977797879797980798179827983798479857986798779887989799079917992799379947995799679977998799980008001800280038004800580068007800880098010801180128013801480158016801780188019802080218022802380248025802680278028802980308031803280338034803580368037803880398040804180428043804480458046804780488049805080518052805380548055805680578058805980608061806280638064806580668067806880698070807180728073807480758076807780788079808080818082808380848085808680878088808980908091809280938094809580968097809880998100810181028103810481058106810781088109811081118112811381148115811681178118811981208121812281238124812581268127812881298130813181328133813481358136813781388139814081418142814381448145814681478148814981508151815281538154815581568157815881598160816181628163816481658166816781688169817081718172817381748175817681778178817981808181818281838184818581868187818881898190819181928193819481958196819781988199820082018202820382048205820682078208820982108211821282138214821582168217821882198220822182228223822482258226822782288229823082318232823382348235823682378238823982408241824282438244824582468247824882498250825182528253825482558256825782588259826082618262826382648265826682678268826982708271827282738274827582768277827882798280828182828283828482858286828782888289829082918292829382948295829682978298829983008301830283038304830583068307830883098310831183128313831483158316831783188319832083218322832383248325832683278328832983308331833283338334833583368337833883398340834183428343834483458346834783488349835083518352835383548355835683578358835983608361836283638364836583668367836883698370837183728373837483758376837783788379838083818382838383848385838683878388838983908391839283938394839583968397839883998400840184028403840484058406840784088409841084118412841384148415841684178418841984208421842284238424842584268427842884298430843184328433843484358436843784388439844084418442844384448445844684478448844984508451845284538454845584568457845884598460846184628463846484658466846784688469847084718472847384748475847684778478847984808481848284838484848584868487848884898490849184928493849484958496849784988499850085018502850385048505850685078508850985108511851285138514851585168517851885198520852185228523852485258526852785288529853085318532853385348535853685378538853985408541854285438544854585468547854885498550855185528553855485558556855785588559856085618562856385648565856685678568856985708571857285738574857585768577857885798580858185828583858485858586858785888589859085918592859385948595859685978598859986008601860286038604860586068607860886098610861186128613861486158616861786188619862086218622862386248625862686278628862986308631863286338634863586368637863886398640864186428643864486458646864786488649865086518652865386548655865686578658865986608661866286638664866586668667866886698670867186728673867486758676867786788679868086818682868386848685868686878688868986908691869286938694869586968697869886998700870187028703870487058706870787088709871087118712871387148715871687178718871987208721872287238724872587268727872887298730873187328733873487358736873787388739874087418742874387448745874687478748874987508751875287538754875587568757875887598760876187628763876487658766876787688769877087718772877387748775877687778778877987808781878287838784878587868787878887898790879187928793879487958796879787988799880088018802880388048805880688078808880988108811881288138814881588168817881888198820882188228823882488258826882788288829883088318832883388348835883688378838883988408841884288438844884588468847884888498850885188528853885488558856885788588859886088618862886388648865886688678868886988708871887288738874887588768877887888798880888188828883888488858886888788888889889088918892889388948895889688978898889989008901890289038904890589068907890889098910891189128913891489158916891789188919892089218922892389248925892689278928892989308931893289338934893589368937893889398940894189428943894489458946894789488949895089518952895389548955895689578958895989608961896289638964896589668967896889698970897189728973897489758976897789788979898089818982898389848985898689878988898989908991899289938994899589968997899889999000900190029003900490059006900790089009901090119012901390149015901690179018901990209021902290239024902590269027902890299030903190329033903490359036903790389039904090419042904390449045904690479048904990509051905290539054905590569057905890599060906190629063906490659066906790689069907090719072907390749075907690779078907990809081908290839084908590869087908890899090909190929093909490959096909790989099910091019102910391049105910691079108910991109111911291139114911591169117911891199120912191229123912491259126912791289129913091319132913391349135913691379138913991409141914291439144914591469147914891499150915191529153915491559156915791589159916091619162916391649165916691679168916991709171917291739174917591769177917891799180918191829183918491859186918791889189919091919192919391949195919691979198919992009201920292039204920592069207920892099210921192129213921492159216921792189219922092219222922392249225922692279228922992309231923292339234923592369237923892399240924192429243924492459246924792489249925092519252925392549255925692579258925992609261926292639264926592669267926892699270927192729273927492759276927792789279928092819282928392849285928692879288928992909291929292939294929592969297929892999300930193029303930493059306930793089309931093119312931393149315931693179318931993209321932293239324932593269327932893299330933193329333933493359336933793389339934093419342934393449345934693479348934993509351935293539354935593569357935893599360936193629363936493659366936793689369937093719372937393749375937693779378937993809381938293839384938593869387938893899390939193929393939493959396939793989399940094019402940394049405940694079408940994109411941294139414941594169417941894199420942194229423942494259426942794289429943094319432943394349435943694379438943994409441944294439444944594469447944894499450945194529453945494559456945794589459946094619462946394649465946694679468946994709471947294739474947594769477947894799480948194829483948494859486948794889489949094919492949394949495949694979498949995009501950295039504950595069507950895099510951195129513951495159516951795189519952095219522952395249525952695279528952995309531953295339534953595369537953895399540954195429543954495459546954795489549955095519552955395549555955695579558955995609561956295639564956595669567956895699570957195729573957495759576957795789579958095819582958395849585958695879588958995909591959295939594959595969597959895999600960196029603960496059606960796089609961096119612961396149615961696179618961996209621962296239624962596269627962896299630963196329633963496359636963796389639964096419642964396449645964696479648964996509651965296539654965596569657965896599660966196629663966496659666966796689669967096719672967396749675967696779678967996809681968296839684968596869687968896899690969196929693969496959696969796989699970097019702970397049705970697079708970997109711971297139714971597169717971897199720972197229723972497259726972797289729973097319732973397349735973697379738973997409741974297439744974597469747974897499750975197529753975497559756975797589759976097619762976397649765976697679768976997709771977297739774977597769777977897799780978197829783978497859786978797889789979097919792979397949795979697979798979998009801980298039804980598069807980898099810981198129813981498159816981798189819982098219822982398249825982698279828982998309831983298339834983598369837983898399840984198429843984498459846984798489849985098519852985398549855985698579858985998609861986298639864986598669867986898699870987198729873987498759876987798789879988098819882988398849885988698879888988998909891989298939894989598969897989898999900990199029903990499059906990799089909991099119912991399149915991699179918991999209921992299239924992599269927992899299930993199329933993499359936993799389939994099419942994399449945994699479948994999509951995299539954995599569957995899599960996199629963996499659966996799689969997099719972997399749975997699779978997999809981998299839984998599869987998899899990999199929993999499959996999799989999100001000110002100031000410005100061000710008100091001010011100121001310014100151001610017100181001910020100211002210023100241002510026100271002810029100301003110032100331003410035100361003710038100391004010041100421004310044100451004610047100481004910050100511005210053100541005510056100571005810059100601006110062100631006410065100661006710068100691007010071100721007310074100751007610077100781007910080100811008210083100841008510086100871008810089100901009110092100931009410095100961009710098100991010010101101021010310104101051010610107101081010910110101111011210113101141011510116101171011810119101201012110122101231012410125101261012710128101291013010131101321013310134101351013610137101381013910140101411014210143101441014510146101471014810149101501015110152101531015410155101561015710158101591016010161101621016310164101651016610167101681016910170101711017210173101741017510176101771017810179101801018110182101831018410185101861018710188101891019010191101921019310194101951019610197101981019910200102011020210203102041020510206102071020810209102101021110212102131021410215102161021710218102191022010221102221022310224102251022610227102281022910230102311023210233102341023510236102371023810239102401024110242102431024410245102461024710248102491025010251102521025310254102551025610257102581025910260102611026210263102641026510266102671026810269102701027110272102731027410275102761027710278102791028010281102821028310284102851028610287102881028910290102911029210293102941029510296102971029810299103001030110302103031030410305103061030710308103091031010311103121031310314103151031610317103181031910320103211032210323103241032510326103271032810329103301033110332103331033410335103361033710338103391034010341103421034310344103451034610347103481034910350103511035210353103541035510356103571035810359103601036110362103631036410365103661036710368103691037010371103721037310374103751037610377103781037910380103811038210383103841038510386103871038810389103901039110392103931039410395103961039710398103991040010401104021040310404104051040610407104081040910410104111041210413104141041510416104171041810419104201042110422104231042410425104261042710428104291043010431104321043310434104351043610437104381043910440104411044210443104441044510446104471044810449104501045110452104531045410455104561045710458104591046010461104621046310464104651046610467104681046910470104711047210473104741047510476104771047810479104801048110482104831048410485104861048710488104891049010491104921049310494104951049610497104981049910500105011050210503105041050510506105071050810509105101051110512105131051410515105161051710518105191052010521105221052310524105251052610527105281052910530105311053210533105341053510536105371053810539105401054110542105431054410545105461054710548105491055010551105521055310554105551055610557105581055910560105611056210563105641056510566105671056810569105701057110572105731057410575105761057710578105791058010581105821058310584105851058610587105881058910590105911059210593105941059510596105971059810599106001060110602106031060410605106061060710608106091061010611106121061310614106151061610617106181061910620106211062210623106241062510626106271062810629106301063110632106331063410635106361063710638106391064010641106421064310644106451064610647106481064910650106511065210653106541065510656106571065810659106601066110662106631066410665106661066710668106691067010671106721067310674106751067610677106781067910680106811068210683106841068510686106871068810689106901069110692106931069410695106961069710698106991070010701107021070310704107051070610707107081070910710107111071210713107141071510716107171071810719107201072110722107231072410725107261072710728107291073010731107321073310734107351073610737107381073910740107411074210743107441074510746107471074810749107501075110752107531075410755107561075710758107591076010761107621076310764107651076610767107681076910770107711077210773107741077510776107771077810779107801078110782107831078410785107861078710788107891079010791107921079310794107951079610797107981079910800108011080210803108041080510806108071080810809108101081110812108131081410815108161081710818108191082010821108221082310824108251082610827108281082910830108311083210833108341083510836108371083810839108401084110842108431084410845108461084710848108491085010851108521085310854108551085610857108581085910860108611086210863108641086510866108671086810869108701087110872108731087410875108761087710878108791088010881108821088310884108851088610887108881088910890108911089210893108941089510896108971089810899109001090110902109031090410905109061090710908109091091010911109121091310914109151091610917109181091910920109211092210923109241092510926109271092810929109301093110932109331093410935109361093710938109391094010941109421094310944109451094610947109481094910950109511095210953109541095510956109571095810959109601096110962109631096410965109661096710968109691097010971109721097310974109751097610977109781097910980109811098210983109841098510986109871098810989109901099110992109931099410995109961099710998109991100011001110021100311004110051100611007110081100911010110111101211013110141101511016110171101811019110201102111022110231102411025110261102711028110291103011031110321103311034110351103611037110381103911040110411104211043110441104511046110471104811049110501105111052110531105411055110561105711058110591106011061110621106311064110651106611067110681106911070110711107211073110741107511076110771107811079110801108111082110831108411085110861108711088110891109011091110921109311094110951109611097110981109911100111011110211103111041110511106111071110811109111101111111112111131111411115111161111711118111191112011121111221112311124111251112611127111281112911130111311113211133111341113511136111371113811139111401114111142111431114411145111461114711148111491115011151111521115311154111551115611157111581115911160111611116211163111641116511166111671116811169111701117111172111731117411175111761117711178111791118011181111821118311184
  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": "287d32ea844c673f78263c38d6713378",
  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.2.0",
  76. "source": {
  77. "type": "git",
  78. "url": "https://github.com/asm89/stack-cors.git",
  79. "reference": "c163e2b614550aedcf71165db2473d936abbced6"
  80. },
  81. "dist": {
  82. "type": "zip",
  83. "url": "https://api.github.com/repos/asm89/stack-cors/zipball/c163e2b614550aedcf71165db2473d936abbced6",
  84. "reference": "c163e2b614550aedcf71165db2473d936abbced6",
  85. "shasum": ""
  86. },
  87. "require": {
  88. "php": ">=5.5.9",
  89. "symfony/http-foundation": "~2.7|~3.0|~4.0",
  90. "symfony/http-kernel": "~2.7|~3.0|~4.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": "2017-12-20T14:37:45+00:00"
  124. },
  125. {
  126. "name": "behat/mink",
  127. "version": "dev-master",
  128. "source": {
  129. "type": "git",
  130. "url": "https://github.com/minkphp/Mink.git",
  131. "reference": "a534fe7dac9525e8e10ca68e737c3d7e5058ec83"
  132. },
  133. "dist": {
  134. "type": "zip",
  135. "url": "https://api.github.com/repos/minkphp/Mink/zipball/a534fe7dac9525e8e10ca68e737c3d7e5058ec83",
  136. "reference": "a534fe7dac9525e8e10ca68e737c3d7e5058ec83",
  137. "shasum": ""
  138. },
  139. "require": {
  140. "php": ">=5.3.1",
  141. "symfony/css-selector": "^2.7|^3.0|^4.0"
  142. },
  143. "require-dev": {
  144. "symfony/phpunit-bridge": "^4.2"
  145. },
  146. "suggest": {
  147. "behat/mink-browserkit-driver": "extremely fast headless driver for Symfony\\Kernel-based apps (Sf2, Silex)",
  148. "behat/mink-goutte-driver": "fast headless driver for any app without JS emulation",
  149. "behat/mink-selenium2-driver": "slow, but JS-enabled driver for any app (requires Selenium2)",
  150. "behat/mink-zombie-driver": "fast and JS-enabled headless driver for any app (requires node.js)",
  151. "dmore/chrome-mink-driver": "fast and JS-enabled driver for any app (requires chromium or google chrome)"
  152. },
  153. "type": "library",
  154. "extra": {
  155. "branch-alias": {
  156. "dev-master": "1.7.x-dev"
  157. }
  158. },
  159. "autoload": {
  160. "psr-4": {
  161. "Behat\\Mink\\": "src/"
  162. }
  163. },
  164. "notification-url": "https://packagist.org/downloads/",
  165. "license": [
  166. "MIT"
  167. ],
  168. "authors": [
  169. {
  170. "name": "Konstantin Kudryashov",
  171. "email": "ever.zet@gmail.com",
  172. "homepage": "http://everzet.com"
  173. }
  174. ],
  175. "description": "Browser controller/emulator abstraction for PHP",
  176. "homepage": "http://mink.behat.org/",
  177. "keywords": [
  178. "browser",
  179. "testing",
  180. "web"
  181. ],
  182. "time": "2019-07-15T12:45:29+00:00"
  183. },
  184. {
  185. "name": "behat/mink-browserkit-driver",
  186. "version": "1.3.3",
  187. "source": {
  188. "type": "git",
  189. "url": "https://github.com/minkphp/MinkBrowserKitDriver.git",
  190. "reference": "1b9a7ce903cfdaaec5fb32bfdbb26118343662eb"
  191. },
  192. "dist": {
  193. "type": "zip",
  194. "url": "https://api.github.com/repos/minkphp/MinkBrowserKitDriver/zipball/1b9a7ce903cfdaaec5fb32bfdbb26118343662eb",
  195. "reference": "1b9a7ce903cfdaaec5fb32bfdbb26118343662eb",
  196. "shasum": ""
  197. },
  198. "require": {
  199. "behat/mink": "^1.7.1@dev",
  200. "php": ">=5.3.6",
  201. "symfony/browser-kit": "~2.3|~3.0|~4.0",
  202. "symfony/dom-crawler": "~2.3|~3.0|~4.0"
  203. },
  204. "require-dev": {
  205. "mink/driver-testsuite": "dev-master",
  206. "symfony/http-kernel": "~2.3|~3.0|~4.0"
  207. },
  208. "type": "mink-driver",
  209. "extra": {
  210. "branch-alias": {
  211. "dev-master": "1.3.x-dev"
  212. }
  213. },
  214. "autoload": {
  215. "psr-4": {
  216. "Behat\\Mink\\Driver\\": "src/"
  217. }
  218. },
  219. "notification-url": "https://packagist.org/downloads/",
  220. "license": [
  221. "MIT"
  222. ],
  223. "authors": [
  224. {
  225. "name": "Konstantin Kudryashov",
  226. "email": "ever.zet@gmail.com",
  227. "homepage": "http://everzet.com"
  228. }
  229. ],
  230. "description": "Symfony2 BrowserKit driver for Mink framework",
  231. "homepage": "http://mink.behat.org/",
  232. "keywords": [
  233. "Mink",
  234. "Symfony2",
  235. "browser",
  236. "testing"
  237. ],
  238. "time": "2018-05-02T09:25:31+00:00"
  239. },
  240. {
  241. "name": "behat/mink-goutte-driver",
  242. "version": "v1.2.1",
  243. "source": {
  244. "type": "git",
  245. "url": "https://github.com/minkphp/MinkGoutteDriver.git",
  246. "reference": "8b9ad6d2d95bc70b840d15323365f52fcdaea6ca"
  247. },
  248. "dist": {
  249. "type": "zip",
  250. "url": "https://api.github.com/repos/minkphp/MinkGoutteDriver/zipball/8b9ad6d2d95bc70b840d15323365f52fcdaea6ca",
  251. "reference": "8b9ad6d2d95bc70b840d15323365f52fcdaea6ca",
  252. "shasum": ""
  253. },
  254. "require": {
  255. "behat/mink": "~1.6@dev",
  256. "behat/mink-browserkit-driver": "~1.2@dev",
  257. "fabpot/goutte": "~1.0.4|~2.0|~3.1",
  258. "php": ">=5.3.1"
  259. },
  260. "require-dev": {
  261. "symfony/phpunit-bridge": "~2.7|~3.0"
  262. },
  263. "type": "mink-driver",
  264. "extra": {
  265. "branch-alias": {
  266. "dev-master": "1.2.x-dev"
  267. }
  268. },
  269. "autoload": {
  270. "psr-4": {
  271. "Behat\\Mink\\Driver\\": "src/"
  272. }
  273. },
  274. "notification-url": "https://packagist.org/downloads/",
  275. "license": [
  276. "MIT"
  277. ],
  278. "authors": [
  279. {
  280. "name": "Konstantin Kudryashov",
  281. "email": "ever.zet@gmail.com",
  282. "homepage": "http://everzet.com"
  283. }
  284. ],
  285. "description": "Goutte driver for Mink framework",
  286. "homepage": "http://mink.behat.org/",
  287. "keywords": [
  288. "browser",
  289. "goutte",
  290. "headless",
  291. "testing"
  292. ],
  293. "time": "2016-03-05T09:04:22+00:00"
  294. },
  295. {
  296. "name": "behat/mink-selenium2-driver",
  297. "version": "dev-master",
  298. "source": {
  299. "type": "git",
  300. "url": "https://github.com/minkphp/MinkSelenium2Driver.git",
  301. "reference": "8684ee4e634db7abda9039ea53545f86fc1e105a"
  302. },
  303. "dist": {
  304. "type": "zip",
  305. "url": "https://api.github.com/repos/minkphp/MinkSelenium2Driver/zipball/8684ee4e634db7abda9039ea53545f86fc1e105a",
  306. "reference": "8684ee4e634db7abda9039ea53545f86fc1e105a",
  307. "shasum": ""
  308. },
  309. "require": {
  310. "behat/mink": "~1.7@dev",
  311. "instaclick/php-webdriver": "~1.1",
  312. "php": ">=5.4"
  313. },
  314. "require-dev": {
  315. "mink/driver-testsuite": "dev-master"
  316. },
  317. "type": "mink-driver",
  318. "extra": {
  319. "branch-alias": {
  320. "dev-master": "1.3.x-dev"
  321. }
  322. },
  323. "autoload": {
  324. "psr-4": {
  325. "Behat\\Mink\\Driver\\": "src/"
  326. }
  327. },
  328. "notification-url": "https://packagist.org/downloads/",
  329. "license": [
  330. "MIT"
  331. ],
  332. "authors": [
  333. {
  334. "name": "Konstantin Kudryashov",
  335. "email": "ever.zet@gmail.com",
  336. "homepage": "http://everzet.com"
  337. },
  338. {
  339. "name": "Pete Otaqui",
  340. "email": "pete@otaqui.com",
  341. "homepage": "https://github.com/pete-otaqui"
  342. }
  343. ],
  344. "description": "Selenium2 (WebDriver) driver for Mink framework",
  345. "homepage": "http://mink.behat.org/",
  346. "keywords": [
  347. "ajax",
  348. "browser",
  349. "javascript",
  350. "selenium",
  351. "testing",
  352. "webdriver"
  353. ],
  354. "time": "2018-10-10T12:39:06+00:00"
  355. },
  356. {
  357. "name": "brumann/polyfill-unserialize",
  358. "version": "v1.0.4",
  359. "source": {
  360. "type": "git",
  361. "url": "https://github.com/dbrumann/polyfill-unserialize.git",
  362. "reference": "8ed1cd343ddc134a7ef649aca0aa0fe2a1b45008"
  363. },
  364. "dist": {
  365. "type": "zip",
  366. "url": "https://api.github.com/repos/dbrumann/polyfill-unserialize/zipball/8ed1cd343ddc134a7ef649aca0aa0fe2a1b45008",
  367. "reference": "8ed1cd343ddc134a7ef649aca0aa0fe2a1b45008",
  368. "shasum": ""
  369. },
  370. "require": {
  371. "php": "^5.3|^7.0"
  372. },
  373. "type": "library",
  374. "autoload": {
  375. "psr-4": {
  376. "Brumann\\Polyfill\\": "src/"
  377. }
  378. },
  379. "notification-url": "https://packagist.org/downloads/",
  380. "license": [
  381. "MIT"
  382. ],
  383. "authors": [
  384. {
  385. "name": "Denis Brumann",
  386. "email": "denis.brumann@sensiolabs.de"
  387. }
  388. ],
  389. "description": "Backports unserialize options introduced in PHP 7.0 to older PHP versions.",
  390. "time": "2019-07-14T23:16:24+00:00"
  391. },
  392. {
  393. "name": "chi-teck/drupal-code-generator",
  394. "version": "1.30.5",
  395. "source": {
  396. "type": "git",
  397. "url": "https://github.com/Chi-teck/drupal-code-generator.git",
  398. "reference": "c59c31ee6d8eefe76a5d367feef902e259c90c7b"
  399. },
  400. "dist": {
  401. "type": "zip",
  402. "url": "https://api.github.com/repos/Chi-teck/drupal-code-generator/zipball/c59c31ee6d8eefe76a5d367feef902e259c90c7b",
  403. "reference": "c59c31ee6d8eefe76a5d367feef902e259c90c7b",
  404. "shasum": ""
  405. },
  406. "require": {
  407. "ext-json": "*",
  408. "php": ">=5.5.9",
  409. "symfony/console": "^3.4 || ^4.0",
  410. "symfony/filesystem": "^2.7 || ^3.4 || ^4.0",
  411. "twig/twig": "^1.38.2 || ^2.10"
  412. },
  413. "bin": [
  414. "bin/dcg"
  415. ],
  416. "type": "library",
  417. "extra": {
  418. "branch-alias": {
  419. "dev-master": "1.x-dev"
  420. }
  421. },
  422. "autoload": {
  423. "files": [
  424. "src/bootstrap.php"
  425. ],
  426. "psr-4": {
  427. "DrupalCodeGenerator\\": "src"
  428. }
  429. },
  430. "notification-url": "https://packagist.org/downloads/",
  431. "license": [
  432. "GPL-2.0-or-later"
  433. ],
  434. "description": "Drupal code generator",
  435. "time": "2019-10-27T14:27:26+00:00"
  436. },
  437. {
  438. "name": "composer/installers",
  439. "version": "v1.7.0",
  440. "source": {
  441. "type": "git",
  442. "url": "https://github.com/composer/installers.git",
  443. "reference": "141b272484481432cda342727a427dc1e206bfa0"
  444. },
  445. "dist": {
  446. "type": "zip",
  447. "url": "https://api.github.com/repos/composer/installers/zipball/141b272484481432cda342727a427dc1e206bfa0",
  448. "reference": "141b272484481432cda342727a427dc1e206bfa0",
  449. "shasum": ""
  450. },
  451. "require": {
  452. "composer-plugin-api": "^1.0"
  453. },
  454. "replace": {
  455. "roundcube/plugin-installer": "*",
  456. "shama/baton": "*"
  457. },
  458. "require-dev": {
  459. "composer/composer": "1.0.*@dev",
  460. "phpunit/phpunit": "^4.8.36"
  461. },
  462. "type": "composer-plugin",
  463. "extra": {
  464. "class": "Composer\\Installers\\Plugin",
  465. "branch-alias": {
  466. "dev-master": "1.0-dev"
  467. }
  468. },
  469. "autoload": {
  470. "psr-4": {
  471. "Composer\\Installers\\": "src/Composer/Installers"
  472. }
  473. },
  474. "notification-url": "https://packagist.org/downloads/",
  475. "license": [
  476. "MIT"
  477. ],
  478. "authors": [
  479. {
  480. "name": "Kyle Robinson Young",
  481. "email": "kyle@dontkry.com",
  482. "homepage": "https://github.com/shama"
  483. }
  484. ],
  485. "description": "A multi-framework Composer library installer",
  486. "homepage": "https://composer.github.io/installers/",
  487. "keywords": [
  488. "Craft",
  489. "Dolibarr",
  490. "Eliasis",
  491. "Hurad",
  492. "ImageCMS",
  493. "Kanboard",
  494. "Lan Management System",
  495. "MODX Evo",
  496. "Mautic",
  497. "Maya",
  498. "OXID",
  499. "Plentymarkets",
  500. "Porto",
  501. "RadPHP",
  502. "SMF",
  503. "Thelia",
  504. "Whmcs",
  505. "WolfCMS",
  506. "agl",
  507. "aimeos",
  508. "annotatecms",
  509. "attogram",
  510. "bitrix",
  511. "cakephp",
  512. "chef",
  513. "cockpit",
  514. "codeigniter",
  515. "concrete5",
  516. "croogo",
  517. "dokuwiki",
  518. "drupal",
  519. "eZ Platform",
  520. "elgg",
  521. "expressionengine",
  522. "fuelphp",
  523. "grav",
  524. "installer",
  525. "itop",
  526. "joomla",
  527. "known",
  528. "kohana",
  529. "laravel",
  530. "lavalite",
  531. "lithium",
  532. "magento",
  533. "majima",
  534. "mako",
  535. "mediawiki",
  536. "modulework",
  537. "modx",
  538. "moodle",
  539. "osclass",
  540. "phpbb",
  541. "piwik",
  542. "ppi",
  543. "puppet",
  544. "pxcms",
  545. "reindex",
  546. "roundcube",
  547. "shopware",
  548. "silverstripe",
  549. "sydes",
  550. "symfony",
  551. "typo3",
  552. "wordpress",
  553. "yawik",
  554. "zend",
  555. "zikula"
  556. ],
  557. "time": "2019-08-12T15:00:31+00:00"
  558. },
  559. {
  560. "name": "composer/semver",
  561. "version": "1.5.0",
  562. "source": {
  563. "type": "git",
  564. "url": "https://github.com/composer/semver.git",
  565. "reference": "46d9139568ccb8d9e7cdd4539cab7347568a5e2e"
  566. },
  567. "dist": {
  568. "type": "zip",
  569. "url": "https://api.github.com/repos/composer/semver/zipball/46d9139568ccb8d9e7cdd4539cab7347568a5e2e",
  570. "reference": "46d9139568ccb8d9e7cdd4539cab7347568a5e2e",
  571. "shasum": ""
  572. },
  573. "require": {
  574. "php": "^5.3.2 || ^7.0"
  575. },
  576. "require-dev": {
  577. "phpunit/phpunit": "^4.5 || ^5.0.5",
  578. "phpunit/phpunit-mock-objects": "2.3.0 || ^3.0"
  579. },
  580. "type": "library",
  581. "extra": {
  582. "branch-alias": {
  583. "dev-master": "1.x-dev"
  584. }
  585. },
  586. "autoload": {
  587. "psr-4": {
  588. "Composer\\Semver\\": "src"
  589. }
  590. },
  591. "notification-url": "https://packagist.org/downloads/",
  592. "license": [
  593. "MIT"
  594. ],
  595. "authors": [
  596. {
  597. "name": "Nils Adermann",
  598. "email": "naderman@naderman.de",
  599. "homepage": "http://www.naderman.de"
  600. },
  601. {
  602. "name": "Jordi Boggiano",
  603. "email": "j.boggiano@seld.be",
  604. "homepage": "http://seld.be"
  605. },
  606. {
  607. "name": "Rob Bast",
  608. "email": "rob.bast@gmail.com",
  609. "homepage": "http://robbast.nl"
  610. }
  611. ],
  612. "description": "Semver library that offers utilities, version constraint parsing and validation.",
  613. "keywords": [
  614. "semantic",
  615. "semver",
  616. "validation",
  617. "versioning"
  618. ],
  619. "time": "2019-03-19T17:25:45+00:00"
  620. },
  621. {
  622. "name": "consolidation/annotated-command",
  623. "version": "2.12.0",
  624. "source": {
  625. "type": "git",
  626. "url": "https://github.com/consolidation/annotated-command.git",
  627. "reference": "512a2e54c98f3af377589de76c43b24652bcb789"
  628. },
  629. "dist": {
  630. "type": "zip",
  631. "url": "https://api.github.com/repos/consolidation/annotated-command/zipball/512a2e54c98f3af377589de76c43b24652bcb789",
  632. "reference": "512a2e54c98f3af377589de76c43b24652bcb789",
  633. "shasum": ""
  634. },
  635. "require": {
  636. "consolidation/output-formatters": "^3.4",
  637. "php": ">=5.4.5",
  638. "psr/log": "^1",
  639. "symfony/console": "^2.8|^3|^4",
  640. "symfony/event-dispatcher": "^2.5|^3|^4",
  641. "symfony/finder": "^2.5|^3|^4"
  642. },
  643. "require-dev": {
  644. "g1a/composer-test-scenarios": "^3",
  645. "php-coveralls/php-coveralls": "^1",
  646. "phpunit/phpunit": "^6",
  647. "squizlabs/php_codesniffer": "^2.7"
  648. },
  649. "type": "library",
  650. "extra": {
  651. "scenarios": {
  652. "symfony4": {
  653. "require": {
  654. "symfony/console": "^4.0"
  655. },
  656. "config": {
  657. "platform": {
  658. "php": "7.1.3"
  659. }
  660. }
  661. },
  662. "symfony2": {
  663. "require": {
  664. "symfony/console": "^2.8"
  665. },
  666. "require-dev": {
  667. "phpunit/phpunit": "^4.8.36"
  668. },
  669. "remove": [
  670. "php-coveralls/php-coveralls"
  671. ],
  672. "config": {
  673. "platform": {
  674. "php": "5.4.8"
  675. }
  676. },
  677. "scenario-options": {
  678. "create-lockfile": "false"
  679. }
  680. },
  681. "phpunit4": {
  682. "require-dev": {
  683. "phpunit/phpunit": "^4.8.36"
  684. },
  685. "remove": [
  686. "php-coveralls/php-coveralls"
  687. ],
  688. "config": {
  689. "platform": {
  690. "php": "5.4.8"
  691. }
  692. }
  693. }
  694. },
  695. "branch-alias": {
  696. "dev-master": "2.x-dev"
  697. }
  698. },
  699. "autoload": {
  700. "psr-4": {
  701. "Consolidation\\AnnotatedCommand\\": "src"
  702. }
  703. },
  704. "notification-url": "https://packagist.org/downloads/",
  705. "license": [
  706. "MIT"
  707. ],
  708. "authors": [
  709. {
  710. "name": "Greg Anderson",
  711. "email": "greg.1.anderson@greenknowe.org"
  712. }
  713. ],
  714. "description": "Initialize Symfony Console commands from annotated command class methods.",
  715. "time": "2019-03-08T16:55:03+00:00"
  716. },
  717. {
  718. "name": "consolidation/config",
  719. "version": "1.2.1",
  720. "source": {
  721. "type": "git",
  722. "url": "https://github.com/consolidation/config.git",
  723. "reference": "cac1279bae7efb5c7fb2ca4c3ba4b8eb741a96c1"
  724. },
  725. "dist": {
  726. "type": "zip",
  727. "url": "https://api.github.com/repos/consolidation/config/zipball/cac1279bae7efb5c7fb2ca4c3ba4b8eb741a96c1",
  728. "reference": "cac1279bae7efb5c7fb2ca4c3ba4b8eb741a96c1",
  729. "shasum": ""
  730. },
  731. "require": {
  732. "dflydev/dot-access-data": "^1.1.0",
  733. "grasmash/expander": "^1",
  734. "php": ">=5.4.0"
  735. },
  736. "require-dev": {
  737. "g1a/composer-test-scenarios": "^3",
  738. "php-coveralls/php-coveralls": "^1",
  739. "phpunit/phpunit": "^5",
  740. "squizlabs/php_codesniffer": "2.*",
  741. "symfony/console": "^2.5|^3|^4",
  742. "symfony/yaml": "^2.8.11|^3|^4"
  743. },
  744. "suggest": {
  745. "symfony/yaml": "Required to use Consolidation\\Config\\Loader\\YamlConfigLoader"
  746. },
  747. "type": "library",
  748. "extra": {
  749. "scenarios": {
  750. "symfony4": {
  751. "require-dev": {
  752. "symfony/console": "^4.0"
  753. },
  754. "config": {
  755. "platform": {
  756. "php": "7.1.3"
  757. }
  758. }
  759. },
  760. "symfony2": {
  761. "require-dev": {
  762. "symfony/console": "^2.8",
  763. "symfony/event-dispatcher": "^2.8",
  764. "phpunit/phpunit": "^4.8.36"
  765. },
  766. "remove": [
  767. "php-coveralls/php-coveralls"
  768. ],
  769. "config": {
  770. "platform": {
  771. "php": "5.4.8"
  772. }
  773. }
  774. }
  775. },
  776. "branch-alias": {
  777. "dev-master": "1.x-dev"
  778. }
  779. },
  780. "autoload": {
  781. "psr-4": {
  782. "Consolidation\\Config\\": "src"
  783. }
  784. },
  785. "notification-url": "https://packagist.org/downloads/",
  786. "license": [
  787. "MIT"
  788. ],
  789. "authors": [
  790. {
  791. "name": "Greg Anderson",
  792. "email": "greg.1.anderson@greenknowe.org"
  793. }
  794. ],
  795. "description": "Provide configuration services for a commandline tool.",
  796. "time": "2019-03-03T19:37:04+00:00"
  797. },
  798. {
  799. "name": "consolidation/filter-via-dot-access-data",
  800. "version": "1.0.0",
  801. "source": {
  802. "type": "git",
  803. "url": "https://github.com/consolidation/filter-via-dot-access-data.git",
  804. "reference": "a53e96c6b9f7f042f5e085bf911f3493cea823c6"
  805. },
  806. "dist": {
  807. "type": "zip",
  808. "url": "https://api.github.com/repos/consolidation/filter-via-dot-access-data/zipball/a53e96c6b9f7f042f5e085bf911f3493cea823c6",
  809. "reference": "a53e96c6b9f7f042f5e085bf911f3493cea823c6",
  810. "shasum": ""
  811. },
  812. "require": {
  813. "dflydev/dot-access-data": "^1.1.0",
  814. "php": ">=5.5.0"
  815. },
  816. "require-dev": {
  817. "consolidation/robo": "^1.2.3",
  818. "g1a/composer-test-scenarios": "^3",
  819. "knplabs/github-api": "^2.7",
  820. "php-coveralls/php-coveralls": "^1",
  821. "php-http/guzzle6-adapter": "^1.1",
  822. "phpunit/phpunit": "^5",
  823. "squizlabs/php_codesniffer": "^2.8",
  824. "symfony/console": "^2.8|^3|^4"
  825. },
  826. "type": "library",
  827. "extra": {
  828. "scenarios": {
  829. "phpunit5": {
  830. "require-dev": {
  831. "phpunit/phpunit": "^5.7.27"
  832. },
  833. "remove": [
  834. "php-coveralls/php-coveralls"
  835. ],
  836. "config": {
  837. "platform": {
  838. "php": "5.6.33"
  839. }
  840. }
  841. }
  842. },
  843. "branch-alias": {
  844. "dev-master": "1.x-dev"
  845. }
  846. },
  847. "autoload": {
  848. "psr-4": {
  849. "Consolidation\\Filter\\": "src"
  850. }
  851. },
  852. "notification-url": "https://packagist.org/downloads/",
  853. "license": [
  854. "MIT"
  855. ],
  856. "authors": [
  857. {
  858. "name": "Greg Anderson",
  859. "email": "greg.1.anderson@greenknowe.org"
  860. }
  861. ],
  862. "description": "This project uses dflydev/dot-access-data to provide simple output filtering for applications built with annotated-command / Robo.",
  863. "time": "2019-01-18T06:05:07+00:00"
  864. },
  865. {
  866. "name": "consolidation/log",
  867. "version": "1.1.1",
  868. "source": {
  869. "type": "git",
  870. "url": "https://github.com/consolidation/log.git",
  871. "reference": "b2e887325ee90abc96b0a8b7b474cd9e7c896e3a"
  872. },
  873. "dist": {
  874. "type": "zip",
  875. "url": "https://api.github.com/repos/consolidation/log/zipball/b2e887325ee90abc96b0a8b7b474cd9e7c896e3a",
  876. "reference": "b2e887325ee90abc96b0a8b7b474cd9e7c896e3a",
  877. "shasum": ""
  878. },
  879. "require": {
  880. "php": ">=5.4.5",
  881. "psr/log": "^1.0",
  882. "symfony/console": "^2.8|^3|^4"
  883. },
  884. "require-dev": {
  885. "g1a/composer-test-scenarios": "^3",
  886. "php-coveralls/php-coveralls": "^1",
  887. "phpunit/phpunit": "^6",
  888. "squizlabs/php_codesniffer": "^2"
  889. },
  890. "type": "library",
  891. "extra": {
  892. "scenarios": {
  893. "symfony4": {
  894. "require": {
  895. "symfony/console": "^4.0"
  896. },
  897. "config": {
  898. "platform": {
  899. "php": "7.1.3"
  900. }
  901. }
  902. },
  903. "symfony2": {
  904. "require": {
  905. "symfony/console": "^2.8"
  906. },
  907. "require-dev": {
  908. "phpunit/phpunit": "^4.8.36"
  909. },
  910. "remove": [
  911. "php-coveralls/php-coveralls"
  912. ],
  913. "config": {
  914. "platform": {
  915. "php": "5.4.8"
  916. }
  917. }
  918. },
  919. "phpunit4": {
  920. "require-dev": {
  921. "phpunit/phpunit": "^4.8.36"
  922. },
  923. "remove": [
  924. "php-coveralls/php-coveralls"
  925. ],
  926. "config": {
  927. "platform": {
  928. "php": "5.4.8"
  929. }
  930. }
  931. }
  932. },
  933. "branch-alias": {
  934. "dev-master": "1.x-dev"
  935. }
  936. },
  937. "autoload": {
  938. "psr-4": {
  939. "Consolidation\\Log\\": "src"
  940. }
  941. },
  942. "notification-url": "https://packagist.org/downloads/",
  943. "license": [
  944. "MIT"
  945. ],
  946. "authors": [
  947. {
  948. "name": "Greg Anderson",
  949. "email": "greg.1.anderson@greenknowe.org"
  950. }
  951. ],
  952. "description": "Improved Psr-3 / Psr\\Log logger based on Symfony Console components.",
  953. "time": "2019-01-01T17:30:51+00:00"
  954. },
  955. {
  956. "name": "consolidation/output-formatters",
  957. "version": "3.5.0",
  958. "source": {
  959. "type": "git",
  960. "url": "https://github.com/consolidation/output-formatters.git",
  961. "reference": "99ec998ffb697e0eada5aacf81feebfb13023605"
  962. },
  963. "dist": {
  964. "type": "zip",
  965. "url": "https://api.github.com/repos/consolidation/output-formatters/zipball/99ec998ffb697e0eada5aacf81feebfb13023605",
  966. "reference": "99ec998ffb697e0eada5aacf81feebfb13023605",
  967. "shasum": ""
  968. },
  969. "require": {
  970. "dflydev/dot-access-data": "^1.1.0",
  971. "php": ">=5.4.0",
  972. "symfony/console": "^2.8|^3|^4",
  973. "symfony/finder": "^2.5|^3|^4"
  974. },
  975. "require-dev": {
  976. "g1a/composer-test-scenarios": "^3",
  977. "php-coveralls/php-coveralls": "^1",
  978. "phpunit/phpunit": "^5.7.27",
  979. "squizlabs/php_codesniffer": "^2.7",
  980. "symfony/var-dumper": "^2.8|^3|^4",
  981. "victorjonsson/markdowndocs": "^1.3"
  982. },
  983. "suggest": {
  984. "symfony/var-dumper": "For using the var_dump formatter"
  985. },
  986. "type": "library",
  987. "extra": {
  988. "scenarios": {
  989. "symfony4": {
  990. "require": {
  991. "symfony/console": "^4.0"
  992. },
  993. "require-dev": {
  994. "phpunit/phpunit": "^6"
  995. },
  996. "config": {
  997. "platform": {
  998. "php": "7.1.3"
  999. }
  1000. }
  1001. },
  1002. "symfony3": {
  1003. "require": {
  1004. "symfony/console": "^3.4",
  1005. "symfony/finder": "^3.4",
  1006. "symfony/var-dumper": "^3.4"
  1007. },
  1008. "config": {
  1009. "platform": {
  1010. "php": "5.6.32"
  1011. }
  1012. }
  1013. },
  1014. "symfony2": {
  1015. "require": {
  1016. "symfony/console": "^2.8"
  1017. },
  1018. "require-dev": {
  1019. "phpunit/phpunit": "^4.8.36"
  1020. },
  1021. "remove": [
  1022. "php-coveralls/php-coveralls"
  1023. ],
  1024. "config": {
  1025. "platform": {
  1026. "php": "5.4.8"
  1027. }
  1028. },
  1029. "scenario-options": {
  1030. "create-lockfile": "false"
  1031. }
  1032. }
  1033. },
  1034. "branch-alias": {
  1035. "dev-master": "3.x-dev"
  1036. }
  1037. },
  1038. "autoload": {
  1039. "psr-4": {
  1040. "Consolidation\\OutputFormatters\\": "src"
  1041. }
  1042. },
  1043. "notification-url": "https://packagist.org/downloads/",
  1044. "license": [
  1045. "MIT"
  1046. ],
  1047. "authors": [
  1048. {
  1049. "name": "Greg Anderson",
  1050. "email": "greg.1.anderson@greenknowe.org"
  1051. }
  1052. ],
  1053. "description": "Format text by applying transformations provided by plug-in formatters.",
  1054. "time": "2019-05-30T23:16:01+00:00"
  1055. },
  1056. {
  1057. "name": "consolidation/robo",
  1058. "version": "1.4.11",
  1059. "source": {
  1060. "type": "git",
  1061. "url": "https://github.com/consolidation/Robo.git",
  1062. "reference": "5fa1d901776a628167a325baa9db95d8edf13a80"
  1063. },
  1064. "dist": {
  1065. "type": "zip",
  1066. "url": "https://api.github.com/repos/consolidation/Robo/zipball/5fa1d901776a628167a325baa9db95d8edf13a80",
  1067. "reference": "5fa1d901776a628167a325baa9db95d8edf13a80",
  1068. "shasum": ""
  1069. },
  1070. "require": {
  1071. "consolidation/annotated-command": "^2.11.0",
  1072. "consolidation/config": "^1.2",
  1073. "consolidation/log": "~1",
  1074. "consolidation/output-formatters": "^3.1.13",
  1075. "consolidation/self-update": "^1",
  1076. "grasmash/yaml-expander": "^1.3",
  1077. "league/container": "^2.2",
  1078. "php": ">=5.5.0",
  1079. "symfony/console": "^2.8|^3|^4",
  1080. "symfony/event-dispatcher": "^2.5|^3|^4",
  1081. "symfony/filesystem": "^2.5|^3|^4",
  1082. "symfony/finder": "^2.5|^3|^4",
  1083. "symfony/process": "^2.5|^3|^4"
  1084. },
  1085. "replace": {
  1086. "codegyre/robo": "< 1.0"
  1087. },
  1088. "require-dev": {
  1089. "codeception/aspect-mock": "^1|^2.1.1",
  1090. "codeception/base": "^2.3.7",
  1091. "codeception/verify": "^0.3.2",
  1092. "g1a/composer-test-scenarios": "^3",
  1093. "goaop/framework": "~2.1.2",
  1094. "goaop/parser-reflection": "^1.1.0",
  1095. "natxet/cssmin": "3.0.4",
  1096. "nikic/php-parser": "^3.1.5",
  1097. "patchwork/jsqueeze": "~2",
  1098. "pear/archive_tar": "^1.4.4",
  1099. "php-coveralls/php-coveralls": "^1",
  1100. "phpunit/php-code-coverage": "~2|~4",
  1101. "sebastian/comparator": "^1.2.4",
  1102. "squizlabs/php_codesniffer": "^2.8"
  1103. },
  1104. "suggest": {
  1105. "henrikbjorn/lurker": "For monitoring filesystem changes in taskWatch",
  1106. "natxet/CssMin": "For minifying CSS files in taskMinify",
  1107. "patchwork/jsqueeze": "For minifying JS files in taskMinify",
  1108. "pear/archive_tar": "Allows tar archives to be created and extracted in taskPack and taskExtract, respectively."
  1109. },
  1110. "bin": [
  1111. "robo"
  1112. ],
  1113. "type": "library",
  1114. "extra": {
  1115. "scenarios": {
  1116. "symfony4": {
  1117. "require": {
  1118. "symfony/console": "^4"
  1119. },
  1120. "config": {
  1121. "platform": {
  1122. "php": "7.1.3"
  1123. }
  1124. }
  1125. },
  1126. "symfony2": {
  1127. "require": {
  1128. "symfony/console": "^2.8"
  1129. },
  1130. "remove": [
  1131. "goaop/framework"
  1132. ],
  1133. "config": {
  1134. "platform": {
  1135. "php": "5.5.9"
  1136. }
  1137. },
  1138. "scenario-options": {
  1139. "create-lockfile": "false"
  1140. }
  1141. }
  1142. },
  1143. "branch-alias": {
  1144. "dev-master": "2.x-dev"
  1145. }
  1146. },
  1147. "autoload": {
  1148. "psr-4": {
  1149. "Robo\\": "src"
  1150. }
  1151. },
  1152. "notification-url": "https://packagist.org/downloads/",
  1153. "license": [
  1154. "MIT"
  1155. ],
  1156. "authors": [
  1157. {
  1158. "name": "Davert",
  1159. "email": "davert.php@resend.cc"
  1160. }
  1161. ],
  1162. "description": "Modern task runner",
  1163. "time": "2019-10-29T15:50:02+00:00"
  1164. },
  1165. {
  1166. "name": "consolidation/self-update",
  1167. "version": "1.1.5",
  1168. "source": {
  1169. "type": "git",
  1170. "url": "https://github.com/consolidation/self-update.git",
  1171. "reference": "a1c273b14ce334789825a09d06d4c87c0a02ad54"
  1172. },
  1173. "dist": {
  1174. "type": "zip",
  1175. "url": "https://api.github.com/repos/consolidation/self-update/zipball/a1c273b14ce334789825a09d06d4c87c0a02ad54",
  1176. "reference": "a1c273b14ce334789825a09d06d4c87c0a02ad54",
  1177. "shasum": ""
  1178. },
  1179. "require": {
  1180. "php": ">=5.5.0",
  1181. "symfony/console": "^2.8|^3|^4",
  1182. "symfony/filesystem": "^2.5|^3|^4"
  1183. },
  1184. "bin": [
  1185. "scripts/release"
  1186. ],
  1187. "type": "library",
  1188. "extra": {
  1189. "branch-alias": {
  1190. "dev-master": "1.x-dev"
  1191. }
  1192. },
  1193. "autoload": {
  1194. "psr-4": {
  1195. "SelfUpdate\\": "src"
  1196. }
  1197. },
  1198. "notification-url": "https://packagist.org/downloads/",
  1199. "license": [
  1200. "MIT"
  1201. ],
  1202. "authors": [
  1203. {
  1204. "name": "Greg Anderson",
  1205. "email": "greg.1.anderson@greenknowe.org"
  1206. },
  1207. {
  1208. "name": "Alexander Menk",
  1209. "email": "menk@mestrona.net"
  1210. }
  1211. ],
  1212. "description": "Provides a self:update command for Symfony Console applications.",
  1213. "time": "2018-10-28T01:52:03+00:00"
  1214. },
  1215. {
  1216. "name": "consolidation/site-alias",
  1217. "version": "3.0.0",
  1218. "source": {
  1219. "type": "git",
  1220. "url": "https://github.com/consolidation/site-alias.git",
  1221. "reference": "8cfd3b6ab6d541086fc970bf850864293b284e6f"
  1222. },
  1223. "dist": {
  1224. "type": "zip",
  1225. "url": "https://api.github.com/repos/consolidation/site-alias/zipball/8cfd3b6ab6d541086fc970bf850864293b284e6f",
  1226. "reference": "8cfd3b6ab6d541086fc970bf850864293b284e6f",
  1227. "shasum": ""
  1228. },
  1229. "require": {
  1230. "consolidation/config": "^1.2.1",
  1231. "php": ">=5.5.0"
  1232. },
  1233. "require-dev": {
  1234. "consolidation/robo": "^1.2.3",
  1235. "g1a/composer-test-scenarios": "^3",
  1236. "knplabs/github-api": "^2.7",
  1237. "php-coveralls/php-coveralls": "^1",
  1238. "php-http/guzzle6-adapter": "^1.1",
  1239. "phpunit/phpunit": "^6",
  1240. "squizlabs/php_codesniffer": "^2.8",
  1241. "symfony/console": "^2.8|^3|^4",
  1242. "symfony/yaml": "~2.3|^3"
  1243. },
  1244. "type": "library",
  1245. "extra": {
  1246. "scenarios": {
  1247. "phpunit5": {
  1248. "require-dev": {
  1249. "phpunit/phpunit": "^5.7.27"
  1250. },
  1251. "remove": [
  1252. "php-coveralls/php-coveralls"
  1253. ],
  1254. "config": {
  1255. "platform": {
  1256. "php": "5.6.33"
  1257. }
  1258. }
  1259. }
  1260. },
  1261. "branch-alias": {
  1262. "dev-master": "3.x-dev"
  1263. }
  1264. },
  1265. "autoload": {
  1266. "psr-4": {
  1267. "Consolidation\\SiteAlias\\": "src"
  1268. }
  1269. },
  1270. "notification-url": "https://packagist.org/downloads/",
  1271. "license": [
  1272. "MIT"
  1273. ],
  1274. "authors": [
  1275. {
  1276. "name": "Moshe Weitzman",
  1277. "email": "weitzman@tejasa.com"
  1278. },
  1279. {
  1280. "name": "Greg Anderson",
  1281. "email": "greg.1.anderson@greenknowe.org"
  1282. }
  1283. ],
  1284. "description": "Manage alias records for local and remote sites.",
  1285. "time": "2019-03-12T17:31:48+00:00"
  1286. },
  1287. {
  1288. "name": "consolidation/site-process",
  1289. "version": "2.1.0",
  1290. "source": {
  1291. "type": "git",
  1292. "url": "https://github.com/consolidation/site-process.git",
  1293. "reference": "f3211fa4c60671c6f068184221f06f932556e443"
  1294. },
  1295. "dist": {
  1296. "type": "zip",
  1297. "url": "https://api.github.com/repos/consolidation/site-process/zipball/f3211fa4c60671c6f068184221f06f932556e443",
  1298. "reference": "f3211fa4c60671c6f068184221f06f932556e443",
  1299. "shasum": ""
  1300. },
  1301. "require": {
  1302. "consolidation/config": "^1.2.1",
  1303. "consolidation/site-alias": "^3",
  1304. "php": ">=5.6.0",
  1305. "symfony/process": "^3.4"
  1306. },
  1307. "require-dev": {
  1308. "consolidation/robo": "^1.3",
  1309. "g1a/composer-test-scenarios": "^3",
  1310. "knplabs/github-api": "^2.7",
  1311. "php-coveralls/php-coveralls": "^1",
  1312. "php-http/guzzle6-adapter": "^1.1",
  1313. "phpunit/phpunit": "^6",
  1314. "squizlabs/php_codesniffer": "^2.8"
  1315. },
  1316. "type": "library",
  1317. "extra": {
  1318. "scenarios": {
  1319. "phpunit5": {
  1320. "require-dev": {
  1321. "phpunit/phpunit": "^5.7.27"
  1322. },
  1323. "remove": [
  1324. "php-coveralls/php-coveralls"
  1325. ],
  1326. "config": {
  1327. "platform": {
  1328. "php": "5.6.33"
  1329. }
  1330. }
  1331. }
  1332. },
  1333. "branch-alias": {
  1334. "dev-master": "0.x-dev"
  1335. }
  1336. },
  1337. "autoload": {
  1338. "psr-4": {
  1339. "Consolidation\\SiteProcess\\": "src"
  1340. }
  1341. },
  1342. "notification-url": "https://packagist.org/downloads/",
  1343. "license": [
  1344. "MIT"
  1345. ],
  1346. "authors": [
  1347. {
  1348. "name": "Greg Anderson",
  1349. "email": "greg.1.anderson@greenknowe.org"
  1350. },
  1351. {
  1352. "name": "Moshe Weitzman",
  1353. "email": "weitzman@tejasa.com"
  1354. }
  1355. ],
  1356. "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.",
  1357. "time": "2019-09-10T17:56:24+00:00"
  1358. },
  1359. {
  1360. "name": "container-interop/container-interop",
  1361. "version": "1.2.0",
  1362. "source": {
  1363. "type": "git",
  1364. "url": "https://github.com/container-interop/container-interop.git",
  1365. "reference": "79cbf1341c22ec75643d841642dd5d6acd83bdb8"
  1366. },
  1367. "dist": {
  1368. "type": "zip",
  1369. "url": "https://api.github.com/repos/container-interop/container-interop/zipball/79cbf1341c22ec75643d841642dd5d6acd83bdb8",
  1370. "reference": "79cbf1341c22ec75643d841642dd5d6acd83bdb8",
  1371. "shasum": ""
  1372. },
  1373. "require": {
  1374. "psr/container": "^1.0"
  1375. },
  1376. "type": "library",
  1377. "autoload": {
  1378. "psr-4": {
  1379. "Interop\\Container\\": "src/Interop/Container/"
  1380. }
  1381. },
  1382. "notification-url": "https://packagist.org/downloads/",
  1383. "license": [
  1384. "MIT"
  1385. ],
  1386. "description": "Promoting the interoperability of container objects (DIC, SL, etc.)",
  1387. "homepage": "https://github.com/container-interop/container-interop",
  1388. "time": "2017-02-14T19:40:03+00:00"
  1389. },
  1390. {
  1391. "name": "cweagans/composer-patches",
  1392. "version": "1.6.7",
  1393. "source": {
  1394. "type": "git",
  1395. "url": "https://github.com/cweagans/composer-patches.git",
  1396. "reference": "2e6f72a2ad8d59cd7e2b729f218bf42adb14f590"
  1397. },
  1398. "dist": {
  1399. "type": "zip",
  1400. "url": "https://api.github.com/repos/cweagans/composer-patches/zipball/2e6f72a2ad8d59cd7e2b729f218bf42adb14f590",
  1401. "reference": "2e6f72a2ad8d59cd7e2b729f218bf42adb14f590",
  1402. "shasum": ""
  1403. },
  1404. "require": {
  1405. "composer-plugin-api": "^1.0",
  1406. "php": ">=5.3.0"
  1407. },
  1408. "require-dev": {
  1409. "composer/composer": "~1.0",
  1410. "phpunit/phpunit": "~4.6"
  1411. },
  1412. "type": "composer-plugin",
  1413. "extra": {
  1414. "class": "cweagans\\Composer\\Patches"
  1415. },
  1416. "autoload": {
  1417. "psr-4": {
  1418. "cweagans\\Composer\\": "src"
  1419. }
  1420. },
  1421. "notification-url": "https://packagist.org/downloads/",
  1422. "license": [
  1423. "BSD-3-Clause"
  1424. ],
  1425. "authors": [
  1426. {
  1427. "name": "Cameron Eagans",
  1428. "email": "me@cweagans.net"
  1429. }
  1430. ],
  1431. "description": "Provides a way to patch Composer packages.",
  1432. "time": "2019-08-29T20:11:49+00:00"
  1433. },
  1434. {
  1435. "name": "dflydev/dot-access-configuration",
  1436. "version": "v1.0.3",
  1437. "source": {
  1438. "type": "git",
  1439. "url": "https://github.com/dflydev/dflydev-dot-access-configuration.git",
  1440. "reference": "2e6eb0c8b8830b26bb23defcfc38d4276508fc49"
  1441. },
  1442. "dist": {
  1443. "type": "zip",
  1444. "url": "https://api.github.com/repos/dflydev/dflydev-dot-access-configuration/zipball/2e6eb0c8b8830b26bb23defcfc38d4276508fc49",
  1445. "reference": "2e6eb0c8b8830b26bb23defcfc38d4276508fc49",
  1446. "shasum": ""
  1447. },
  1448. "require": {
  1449. "dflydev/dot-access-data": "1.*",
  1450. "dflydev/placeholder-resolver": "1.*",
  1451. "php": ">=5.3.2"
  1452. },
  1453. "require-dev": {
  1454. "symfony/yaml": "~2.1"
  1455. },
  1456. "suggest": {
  1457. "symfony/yaml": "Required for using the YAML Configuration Builders"
  1458. },
  1459. "type": "library",
  1460. "extra": {
  1461. "branch-alias": {
  1462. "dev-master": "1.0-dev"
  1463. }
  1464. },
  1465. "autoload": {
  1466. "psr-0": {
  1467. "Dflydev\\DotAccessConfiguration": "src"
  1468. }
  1469. },
  1470. "notification-url": "https://packagist.org/downloads/",
  1471. "license": [
  1472. "MIT"
  1473. ],
  1474. "authors": [
  1475. {
  1476. "name": "Dragonfly Development Inc.",
  1477. "email": "info@dflydev.com",
  1478. "homepage": "http://dflydev.com"
  1479. },
  1480. {
  1481. "name": "Beau Simensen",
  1482. "email": "beau@dflydev.com",
  1483. "homepage": "http://beausimensen.com"
  1484. }
  1485. ],
  1486. "description": "Given a deep data structure representing a configuration, access configuration by dot notation.",
  1487. "homepage": "https://github.com/dflydev/dflydev-dot-access-configuration",
  1488. "keywords": [
  1489. "config",
  1490. "configuration"
  1491. ],
  1492. "time": "2018-09-08T23:00:17+00:00"
  1493. },
  1494. {
  1495. "name": "dflydev/dot-access-data",
  1496. "version": "v1.1.0",
  1497. "source": {
  1498. "type": "git",
  1499. "url": "https://github.com/dflydev/dflydev-dot-access-data.git",
  1500. "reference": "3fbd874921ab2c041e899d044585a2ab9795df8a"
  1501. },
  1502. "dist": {
  1503. "type": "zip",
  1504. "url": "https://api.github.com/repos/dflydev/dflydev-dot-access-data/zipball/3fbd874921ab2c041e899d044585a2ab9795df8a",
  1505. "reference": "3fbd874921ab2c041e899d044585a2ab9795df8a",
  1506. "shasum": ""
  1507. },
  1508. "require": {
  1509. "php": ">=5.3.2"
  1510. },
  1511. "type": "library",
  1512. "extra": {
  1513. "branch-alias": {
  1514. "dev-master": "1.0-dev"
  1515. }
  1516. },
  1517. "autoload": {
  1518. "psr-0": {
  1519. "Dflydev\\DotAccessData": "src"
  1520. }
  1521. },
  1522. "notification-url": "https://packagist.org/downloads/",
  1523. "license": [
  1524. "MIT"
  1525. ],
  1526. "authors": [
  1527. {
  1528. "name": "Dragonfly Development Inc.",
  1529. "email": "info@dflydev.com",
  1530. "homepage": "http://dflydev.com"
  1531. },
  1532. {
  1533. "name": "Beau Simensen",
  1534. "email": "beau@dflydev.com",
  1535. "homepage": "http://beausimensen.com"
  1536. },
  1537. {
  1538. "name": "Carlos Frutos",
  1539. "email": "carlos@kiwing.it",
  1540. "homepage": "https://github.com/cfrutos"
  1541. }
  1542. ],
  1543. "description": "Given a deep data structure, access data by dot notation.",
  1544. "homepage": "https://github.com/dflydev/dflydev-dot-access-data",
  1545. "keywords": [
  1546. "access",
  1547. "data",
  1548. "dot",
  1549. "notation"
  1550. ],
  1551. "time": "2017-01-20T21:14:22+00:00"
  1552. },
  1553. {
  1554. "name": "dflydev/placeholder-resolver",
  1555. "version": "v1.0.2",
  1556. "source": {
  1557. "type": "git",
  1558. "url": "https://github.com/dflydev/dflydev-placeholder-resolver.git",
  1559. "reference": "c498d0cae91b1bb36cc7d60906dab8e62bb7c356"
  1560. },
  1561. "dist": {
  1562. "type": "zip",
  1563. "url": "https://api.github.com/repos/dflydev/dflydev-placeholder-resolver/zipball/c498d0cae91b1bb36cc7d60906dab8e62bb7c356",
  1564. "reference": "c498d0cae91b1bb36cc7d60906dab8e62bb7c356",
  1565. "shasum": ""
  1566. },
  1567. "require": {
  1568. "php": ">=5.3.2"
  1569. },
  1570. "type": "library",
  1571. "extra": {
  1572. "branch-alias": {
  1573. "dev-master": "1.0-dev"
  1574. }
  1575. },
  1576. "autoload": {
  1577. "psr-0": {
  1578. "Dflydev\\PlaceholderResolver": "src"
  1579. }
  1580. },
  1581. "notification-url": "https://packagist.org/downloads/",
  1582. "license": [
  1583. "MIT"
  1584. ],
  1585. "authors": [
  1586. {
  1587. "name": "Dragonfly Development Inc.",
  1588. "email": "info@dflydev.com",
  1589. "homepage": "http://dflydev.com"
  1590. },
  1591. {
  1592. "name": "Beau Simensen",
  1593. "email": "beau@dflydev.com",
  1594. "homepage": "http://beausimensen.com"
  1595. }
  1596. ],
  1597. "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.",
  1598. "homepage": "https://github.com/dflydev/dflydev-placeholder-resolver",
  1599. "keywords": [
  1600. "placeholder",
  1601. "resolver"
  1602. ],
  1603. "time": "2012-10-28T21:08:28+00:00"
  1604. },
  1605. {
  1606. "name": "dnoegel/php-xdg-base-dir",
  1607. "version": "0.1",
  1608. "source": {
  1609. "type": "git",
  1610. "url": "https://github.com/dnoegel/php-xdg-base-dir.git",
  1611. "reference": "265b8593498b997dc2d31e75b89f053b5cc9621a"
  1612. },
  1613. "dist": {
  1614. "type": "zip",
  1615. "url": "https://api.github.com/repos/dnoegel/php-xdg-base-dir/zipball/265b8593498b997dc2d31e75b89f053b5cc9621a",
  1616. "reference": "265b8593498b997dc2d31e75b89f053b5cc9621a",
  1617. "shasum": ""
  1618. },
  1619. "require": {
  1620. "php": ">=5.3.2"
  1621. },
  1622. "require-dev": {
  1623. "phpunit/phpunit": "@stable"
  1624. },
  1625. "type": "project",
  1626. "autoload": {
  1627. "psr-4": {
  1628. "XdgBaseDir\\": "src/"
  1629. }
  1630. },
  1631. "notification-url": "https://packagist.org/downloads/",
  1632. "license": [
  1633. "MIT"
  1634. ],
  1635. "description": "implementation of xdg base directory specification for php",
  1636. "time": "2014-10-24T07:27:01+00:00"
  1637. },
  1638. {
  1639. "name": "doctrine/annotations",
  1640. "version": "v1.4.0",
  1641. "source": {
  1642. "type": "git",
  1643. "url": "https://github.com/doctrine/annotations.git",
  1644. "reference": "54cacc9b81758b14e3ce750f205a393d52339e97"
  1645. },
  1646. "dist": {
  1647. "type": "zip",
  1648. "url": "https://api.github.com/repos/doctrine/annotations/zipball/54cacc9b81758b14e3ce750f205a393d52339e97",
  1649. "reference": "54cacc9b81758b14e3ce750f205a393d52339e97",
  1650. "shasum": ""
  1651. },
  1652. "require": {
  1653. "doctrine/lexer": "1.*",
  1654. "php": "^5.6 || ^7.0"
  1655. },
  1656. "require-dev": {
  1657. "doctrine/cache": "1.*",
  1658. "phpunit/phpunit": "^5.7"
  1659. },
  1660. "type": "library",
  1661. "extra": {
  1662. "branch-alias": {
  1663. "dev-master": "1.4.x-dev"
  1664. }
  1665. },
  1666. "autoload": {
  1667. "psr-4": {
  1668. "Doctrine\\Common\\Annotations\\": "lib/Doctrine/Common/Annotations"
  1669. }
  1670. },
  1671. "notification-url": "https://packagist.org/downloads/",
  1672. "license": [
  1673. "MIT"
  1674. ],
  1675. "authors": [
  1676. {
  1677. "name": "Roman Borschel",
  1678. "email": "roman@code-factory.org"
  1679. },
  1680. {
  1681. "name": "Benjamin Eberlei",
  1682. "email": "kontakt@beberlei.de"
  1683. },
  1684. {
  1685. "name": "Guilherme Blanco",
  1686. "email": "guilhermeblanco@gmail.com"
  1687. },
  1688. {
  1689. "name": "Jonathan Wage",
  1690. "email": "jonwage@gmail.com"
  1691. },
  1692. {
  1693. "name": "Johannes Schmitt",
  1694. "email": "schmittjoh@gmail.com"
  1695. }
  1696. ],
  1697. "description": "Docblock Annotations Parser",
  1698. "homepage": "http://www.doctrine-project.org",
  1699. "keywords": [
  1700. "annotations",
  1701. "docblock",
  1702. "parser"
  1703. ],
  1704. "time": "2017-02-24T16:22:25+00:00"
  1705. },
  1706. {
  1707. "name": "doctrine/cache",
  1708. "version": "v1.6.2",
  1709. "source": {
  1710. "type": "git",
  1711. "url": "https://github.com/doctrine/cache.git",
  1712. "reference": "eb152c5100571c7a45470ff2a35095ab3f3b900b"
  1713. },
  1714. "dist": {
  1715. "type": "zip",
  1716. "url": "https://api.github.com/repos/doctrine/cache/zipball/eb152c5100571c7a45470ff2a35095ab3f3b900b",
  1717. "reference": "eb152c5100571c7a45470ff2a35095ab3f3b900b",
  1718. "shasum": ""
  1719. },
  1720. "require": {
  1721. "php": "~5.5|~7.0"
  1722. },
  1723. "conflict": {
  1724. "doctrine/common": ">2.2,<2.4"
  1725. },
  1726. "require-dev": {
  1727. "phpunit/phpunit": "~4.8|~5.0",
  1728. "predis/predis": "~1.0",
  1729. "satooshi/php-coveralls": "~0.6"
  1730. },
  1731. "type": "library",
  1732. "extra": {
  1733. "branch-alias": {
  1734. "dev-master": "1.6.x-dev"
  1735. }
  1736. },
  1737. "autoload": {
  1738. "psr-4": {
  1739. "Doctrine\\Common\\Cache\\": "lib/Doctrine/Common/Cache"
  1740. }
  1741. },
  1742. "notification-url": "https://packagist.org/downloads/",
  1743. "license": [
  1744. "MIT"
  1745. ],
  1746. "authors": [
  1747. {
  1748. "name": "Roman Borschel",
  1749. "email": "roman@code-factory.org"
  1750. },
  1751. {
  1752. "name": "Benjamin Eberlei",
  1753. "email": "kontakt@beberlei.de"
  1754. },
  1755. {
  1756. "name": "Guilherme Blanco",
  1757. "email": "guilhermeblanco@gmail.com"
  1758. },
  1759. {
  1760. "name": "Jonathan Wage",
  1761. "email": "jonwage@gmail.com"
  1762. },
  1763. {
  1764. "name": "Johannes Schmitt",
  1765. "email": "schmittjoh@gmail.com"
  1766. }
  1767. ],
  1768. "description": "Caching library offering an object-oriented API for many cache backends",
  1769. "homepage": "http://www.doctrine-project.org",
  1770. "keywords": [
  1771. "cache",
  1772. "caching"
  1773. ],
  1774. "time": "2017-07-22T12:49:21+00:00"
  1775. },
  1776. {
  1777. "name": "doctrine/collections",
  1778. "version": "v1.4.0",
  1779. "source": {
  1780. "type": "git",
  1781. "url": "https://github.com/doctrine/collections.git",
  1782. "reference": "1a4fb7e902202c33cce8c55989b945612943c2ba"
  1783. },
  1784. "dist": {
  1785. "type": "zip",
  1786. "url": "https://api.github.com/repos/doctrine/collections/zipball/1a4fb7e902202c33cce8c55989b945612943c2ba",
  1787. "reference": "1a4fb7e902202c33cce8c55989b945612943c2ba",
  1788. "shasum": ""
  1789. },
  1790. "require": {
  1791. "php": "^5.6 || ^7.0"
  1792. },
  1793. "require-dev": {
  1794. "doctrine/coding-standard": "~0.1@dev",
  1795. "phpunit/phpunit": "^5.7"
  1796. },
  1797. "type": "library",
  1798. "extra": {
  1799. "branch-alias": {
  1800. "dev-master": "1.3.x-dev"
  1801. }
  1802. },
  1803. "autoload": {
  1804. "psr-0": {
  1805. "Doctrine\\Common\\Collections\\": "lib/"
  1806. }
  1807. },
  1808. "notification-url": "https://packagist.org/downloads/",
  1809. "license": [
  1810. "MIT"
  1811. ],
  1812. "authors": [
  1813. {
  1814. "name": "Roman Borschel",
  1815. "email": "roman@code-factory.org"
  1816. },
  1817. {
  1818. "name": "Benjamin Eberlei",
  1819. "email": "kontakt@beberlei.de"
  1820. },
  1821. {
  1822. "name": "Guilherme Blanco",
  1823. "email": "guilhermeblanco@gmail.com"
  1824. },
  1825. {
  1826. "name": "Jonathan Wage",
  1827. "email": "jonwage@gmail.com"
  1828. },
  1829. {
  1830. "name": "Johannes Schmitt",
  1831. "email": "schmittjoh@gmail.com"
  1832. }
  1833. ],
  1834. "description": "Collections Abstraction library",
  1835. "homepage": "http://www.doctrine-project.org",
  1836. "keywords": [
  1837. "array",
  1838. "collections",
  1839. "iterator"
  1840. ],
  1841. "time": "2017-01-03T10:49:41+00:00"
  1842. },
  1843. {
  1844. "name": "doctrine/common",
  1845. "version": "v2.7.3",
  1846. "source": {
  1847. "type": "git",
  1848. "url": "https://github.com/doctrine/common.git",
  1849. "reference": "4acb8f89626baafede6ee5475bc5844096eba8a9"
  1850. },
  1851. "dist": {
  1852. "type": "zip",
  1853. "url": "https://api.github.com/repos/doctrine/common/zipball/4acb8f89626baafede6ee5475bc5844096eba8a9",
  1854. "reference": "4acb8f89626baafede6ee5475bc5844096eba8a9",
  1855. "shasum": ""
  1856. },
  1857. "require": {
  1858. "doctrine/annotations": "1.*",
  1859. "doctrine/cache": "1.*",
  1860. "doctrine/collections": "1.*",
  1861. "doctrine/inflector": "1.*",
  1862. "doctrine/lexer": "1.*",
  1863. "php": "~5.6|~7.0"
  1864. },
  1865. "require-dev": {
  1866. "phpunit/phpunit": "^5.4.6"
  1867. },
  1868. "type": "library",
  1869. "extra": {
  1870. "branch-alias": {
  1871. "dev-master": "2.7.x-dev"
  1872. }
  1873. },
  1874. "autoload": {
  1875. "psr-4": {
  1876. "Doctrine\\Common\\": "lib/Doctrine/Common"
  1877. }
  1878. },
  1879. "notification-url": "https://packagist.org/downloads/",
  1880. "license": [
  1881. "MIT"
  1882. ],
  1883. "authors": [
  1884. {
  1885. "name": "Roman Borschel",
  1886. "email": "roman@code-factory.org"
  1887. },
  1888. {
  1889. "name": "Benjamin Eberlei",
  1890. "email": "kontakt@beberlei.de"
  1891. },
  1892. {
  1893. "name": "Guilherme Blanco",
  1894. "email": "guilhermeblanco@gmail.com"
  1895. },
  1896. {
  1897. "name": "Jonathan Wage",
  1898. "email": "jonwage@gmail.com"
  1899. },
  1900. {
  1901. "name": "Johannes Schmitt",
  1902. "email": "schmittjoh@gmail.com"
  1903. }
  1904. ],
  1905. "description": "Common Library for Doctrine projects",
  1906. "homepage": "http://www.doctrine-project.org",
  1907. "keywords": [
  1908. "annotations",
  1909. "collections",
  1910. "eventmanager",
  1911. "persistence",
  1912. "spl"
  1913. ],
  1914. "time": "2017-07-22T08:35:12+00:00"
  1915. },
  1916. {
  1917. "name": "doctrine/inflector",
  1918. "version": "v1.2.0",
  1919. "source": {
  1920. "type": "git",
  1921. "url": "https://github.com/doctrine/inflector.git",
  1922. "reference": "e11d84c6e018beedd929cff5220969a3c6d1d462"
  1923. },
  1924. "dist": {
  1925. "type": "zip",
  1926. "url": "https://api.github.com/repos/doctrine/inflector/zipball/e11d84c6e018beedd929cff5220969a3c6d1d462",
  1927. "reference": "e11d84c6e018beedd929cff5220969a3c6d1d462",
  1928. "shasum": ""
  1929. },
  1930. "require": {
  1931. "php": "^7.0"
  1932. },
  1933. "require-dev": {
  1934. "phpunit/phpunit": "^6.2"
  1935. },
  1936. "type": "library",
  1937. "extra": {
  1938. "branch-alias": {
  1939. "dev-master": "1.2.x-dev"
  1940. }
  1941. },
  1942. "autoload": {
  1943. "psr-4": {
  1944. "Doctrine\\Common\\Inflector\\": "lib/Doctrine/Common/Inflector"
  1945. }
  1946. },
  1947. "notification-url": "https://packagist.org/downloads/",
  1948. "license": [
  1949. "MIT"
  1950. ],
  1951. "authors": [
  1952. {
  1953. "name": "Roman Borschel",
  1954. "email": "roman@code-factory.org"
  1955. },
  1956. {
  1957. "name": "Benjamin Eberlei",
  1958. "email": "kontakt@beberlei.de"
  1959. },
  1960. {
  1961. "name": "Guilherme Blanco",
  1962. "email": "guilhermeblanco@gmail.com"
  1963. },
  1964. {
  1965. "name": "Jonathan Wage",
  1966. "email": "jonwage@gmail.com"
  1967. },
  1968. {
  1969. "name": "Johannes Schmitt",
  1970. "email": "schmittjoh@gmail.com"
  1971. }
  1972. ],
  1973. "description": "Common String Manipulations with regard to casing and singular/plural rules.",
  1974. "homepage": "http://www.doctrine-project.org",
  1975. "keywords": [
  1976. "inflection",
  1977. "pluralize",
  1978. "singularize",
  1979. "string"
  1980. ],
  1981. "time": "2017-07-22T12:18:28+00:00"
  1982. },
  1983. {
  1984. "name": "doctrine/instantiator",
  1985. "version": "1.0.5",
  1986. "source": {
  1987. "type": "git",
  1988. "url": "https://github.com/doctrine/instantiator.git",
  1989. "reference": "8e884e78f9f0eb1329e445619e04456e64d8051d"
  1990. },
  1991. "dist": {
  1992. "type": "zip",
  1993. "url": "https://api.github.com/repos/doctrine/instantiator/zipball/8e884e78f9f0eb1329e445619e04456e64d8051d",
  1994. "reference": "8e884e78f9f0eb1329e445619e04456e64d8051d",
  1995. "shasum": ""
  1996. },
  1997. "require": {
  1998. "php": ">=5.3,<8.0-DEV"
  1999. },
  2000. "require-dev": {
  2001. "athletic/athletic": "~0.1.8",
  2002. "ext-pdo": "*",
  2003. "ext-phar": "*",
  2004. "phpunit/phpunit": "~4.0",
  2005. "squizlabs/php_codesniffer": "~2.0"
  2006. },
  2007. "type": "library",
  2008. "extra": {
  2009. "branch-alias": {
  2010. "dev-master": "1.0.x-dev"
  2011. }
  2012. },
  2013. "autoload": {
  2014. "psr-4": {
  2015. "Doctrine\\Instantiator\\": "src/Doctrine/Instantiator/"
  2016. }
  2017. },
  2018. "notification-url": "https://packagist.org/downloads/",
  2019. "license": [
  2020. "MIT"
  2021. ],
  2022. "authors": [
  2023. {
  2024. "name": "Marco Pivetta",
  2025. "email": "ocramius@gmail.com",
  2026. "homepage": "http://ocramius.github.com/"
  2027. }
  2028. ],
  2029. "description": "A small, lightweight utility to instantiate objects in PHP without invoking their constructors",
  2030. "homepage": "https://github.com/doctrine/instantiator",
  2031. "keywords": [
  2032. "constructor",
  2033. "instantiate"
  2034. ],
  2035. "time": "2015-06-14T21:17:01+00:00"
  2036. },
  2037. {
  2038. "name": "doctrine/lexer",
  2039. "version": "1.0.2",
  2040. "source": {
  2041. "type": "git",
  2042. "url": "https://github.com/doctrine/lexer.git",
  2043. "reference": "1febd6c3ef84253d7c815bed85fc622ad207a9f8"
  2044. },
  2045. "dist": {
  2046. "type": "zip",
  2047. "url": "https://api.github.com/repos/doctrine/lexer/zipball/1febd6c3ef84253d7c815bed85fc622ad207a9f8",
  2048. "reference": "1febd6c3ef84253d7c815bed85fc622ad207a9f8",
  2049. "shasum": ""
  2050. },
  2051. "require": {
  2052. "php": ">=5.3.2"
  2053. },
  2054. "require-dev": {
  2055. "phpunit/phpunit": "^4.5"
  2056. },
  2057. "type": "library",
  2058. "extra": {
  2059. "branch-alias": {
  2060. "dev-master": "1.0.x-dev"
  2061. }
  2062. },
  2063. "autoload": {
  2064. "psr-4": {
  2065. "Doctrine\\Common\\Lexer\\": "lib/Doctrine/Common/Lexer"
  2066. }
  2067. },
  2068. "notification-url": "https://packagist.org/downloads/",
  2069. "license": [
  2070. "MIT"
  2071. ],
  2072. "authors": [
  2073. {
  2074. "name": "Roman Borschel",
  2075. "email": "roman@code-factory.org"
  2076. },
  2077. {
  2078. "name": "Guilherme Blanco",
  2079. "email": "guilhermeblanco@gmail.com"
  2080. },
  2081. {
  2082. "name": "Johannes Schmitt",
  2083. "email": "schmittjoh@gmail.com"
  2084. }
  2085. ],
  2086. "description": "PHP Doctrine Lexer parser library that can be used in Top-Down, Recursive Descent Parsers.",
  2087. "homepage": "https://www.doctrine-project.org/projects/lexer.html",
  2088. "keywords": [
  2089. "annotations",
  2090. "docblock",
  2091. "lexer",
  2092. "parser",
  2093. "php"
  2094. ],
  2095. "time": "2019-06-08T11:03:04+00:00"
  2096. },
  2097. {
  2098. "name": "drupal-composer/drupal-scaffold",
  2099. "version": "2.6.1",
  2100. "source": {
  2101. "type": "git",
  2102. "url": "https://github.com/drupal-composer/drupal-scaffold.git",
  2103. "reference": "13c1ffc7dd4925cb03707759128b85c0cd6276f8"
  2104. },
  2105. "dist": {
  2106. "type": "zip",
  2107. "url": "https://api.github.com/repos/drupal-composer/drupal-scaffold/zipball/13c1ffc7dd4925cb03707759128b85c0cd6276f8",
  2108. "reference": "13c1ffc7dd4925cb03707759128b85c0cd6276f8",
  2109. "shasum": ""
  2110. },
  2111. "require": {
  2112. "composer-plugin-api": "^1.0.0",
  2113. "composer/semver": "^1.4",
  2114. "php": "^5.5.9|>=7.0.8"
  2115. },
  2116. "require-dev": {
  2117. "composer/composer": "dev-master",
  2118. "g1a/composer-test-scenarios": "^2.1.0",
  2119. "phpunit/phpunit": "^6",
  2120. "squizlabs/php_codesniffer": "^2.8"
  2121. },
  2122. "type": "composer-plugin",
  2123. "extra": {
  2124. "class": "DrupalComposer\\DrupalScaffold\\Plugin",
  2125. "branch-alias": {
  2126. "dev-master": "2.0.x-dev"
  2127. }
  2128. },
  2129. "autoload": {
  2130. "psr-4": {
  2131. "DrupalComposer\\DrupalScaffold\\": "src/"
  2132. }
  2133. },
  2134. "notification-url": "https://packagist.org/downloads/",
  2135. "license": [
  2136. "GPL-2.0-or-later"
  2137. ],
  2138. "description": "Composer Plugin for updating the Drupal scaffold files when using drupal/core",
  2139. "time": "2019-03-30T10:41:38+00:00"
  2140. },
  2141. {
  2142. "name": "drupal/addtoany",
  2143. "version": "1.12.0",
  2144. "source": {
  2145. "type": "git",
  2146. "url": "https://git.drupalcode.org/project/addtoany.git",
  2147. "reference": "8.x-1.12"
  2148. },
  2149. "dist": {
  2150. "type": "zip",
  2151. "url": "https://ftp.drupal.org/files/projects/addtoany-8.x-1.12.zip",
  2152. "reference": "8.x-1.12",
  2153. "shasum": "f66b3cb0a95b500e4802e8ff9c29af04554327d8"
  2154. },
  2155. "require": {
  2156. "drupal/core": "*"
  2157. },
  2158. "type": "drupal-module",
  2159. "extra": {
  2160. "branch-alias": {
  2161. "dev-1.x": "1.x-dev"
  2162. },
  2163. "drupal": {
  2164. "version": "8.x-1.12",
  2165. "datestamp": "1554702781",
  2166. "security-coverage": {
  2167. "status": "covered",
  2168. "message": "Covered by Drupal's security advisory policy"
  2169. }
  2170. }
  2171. },
  2172. "notification-url": "https://packages.drupal.org/8/downloads",
  2173. "license": [
  2174. "GPL-2.0-or-later"
  2175. ],
  2176. "authors": [
  2177. {
  2178. "name": "AddToAny",
  2179. "homepage": "https://www.drupal.org/user/2640913"
  2180. },
  2181. {
  2182. "name": "micropat",
  2183. "homepage": "https://www.drupal.org/user/260224"
  2184. }
  2185. ],
  2186. "description": "Share buttons by AddToAny, including the AddToAny universal sharing button, Facebook, Twitter, Google+, Pinterest, and over 100 more on the <a href=\"https://www.addtoany.com/\" target=\"_blank\">AddToAny</a> platform.",
  2187. "homepage": "https://www.drupal.org/project/addtoany",
  2188. "support": {
  2189. "source": "https://git.drupalcode.org/project/addtoany"
  2190. }
  2191. },
  2192. {
  2193. "name": "drupal/admin_toolbar",
  2194. "version": "2.0.0",
  2195. "source": {
  2196. "type": "git",
  2197. "url": "https://git.drupalcode.org/project/admin_toolbar.git",
  2198. "reference": "8.x-2.0"
  2199. },
  2200. "dist": {
  2201. "type": "zip",
  2202. "url": "https://ftp.drupal.org/files/projects/admin_toolbar-8.x-2.0.zip",
  2203. "reference": "8.x-2.0",
  2204. "shasum": "568de63dbaa8046a82d327dbd0b892ab79fb87aa"
  2205. },
  2206. "require": {
  2207. "drupal/core": "*"
  2208. },
  2209. "type": "drupal-module",
  2210. "extra": {
  2211. "branch-alias": {
  2212. "dev-2.x": "2.x-dev"
  2213. },
  2214. "drupal": {
  2215. "version": "8.x-2.0",
  2216. "datestamp": "1572370984",
  2217. "security-coverage": {
  2218. "status": "covered",
  2219. "message": "Covered by Drupal's security advisory policy"
  2220. }
  2221. }
  2222. },
  2223. "notification-url": "https://packages.drupal.org/8/downloads",
  2224. "license": [
  2225. "GPL-2.0+"
  2226. ],
  2227. "authors": [
  2228. {
  2229. "name": "Wilfrid Roze (eme)",
  2230. "homepage": "https://www.drupal.org/u/eme",
  2231. "role": "Maintainer"
  2232. },
  2233. {
  2234. "name": "Romain Jarraud (romainj)",
  2235. "homepage": "https://www.drupal.org/u/romainj",
  2236. "role": "Maintainer"
  2237. },
  2238. {
  2239. "name": "Adrian Cid Almaguer (adriancid)",
  2240. "homepage": "https://www.drupal.org/u/adriancid",
  2241. "email": "adriancid@gmail.com",
  2242. "role": "Maintainer"
  2243. },
  2244. {
  2245. "name": "Mohamed Anis Taktak (matio89)",
  2246. "homepage": "https://www.drupal.org/u/matio89",
  2247. "role": "Maintainer"
  2248. },
  2249. {
  2250. "name": "fethi.krout",
  2251. "homepage": "https://www.drupal.org/user/3206765"
  2252. },
  2253. {
  2254. "name": "matio89",
  2255. "homepage": "https://www.drupal.org/user/2320090"
  2256. },
  2257. {
  2258. "name": "romainj",
  2259. "homepage": "https://www.drupal.org/user/370706"
  2260. }
  2261. ],
  2262. "description": "Provides a drop-down menu interface to the core Drupal Toolbar.",
  2263. "homepage": "http://drupal.org/project/admin_toolbar",
  2264. "keywords": [
  2265. "Drupal",
  2266. "Toolbar"
  2267. ],
  2268. "support": {
  2269. "source": "http://cgit.drupalcode.org/admin_toolbar",
  2270. "issues": "https://www.drupal.org/project/issues/admin_toolbar"
  2271. }
  2272. },
  2273. {
  2274. "name": "drupal/adminimal_theme",
  2275. "version": "1.5.0",
  2276. "source": {
  2277. "type": "git",
  2278. "url": "https://git.drupalcode.org/project/adminimal_theme.git",
  2279. "reference": "8.x-1.5"
  2280. },
  2281. "dist": {
  2282. "type": "zip",
  2283. "url": "https://ftp.drupal.org/files/projects/adminimal_theme-8.x-1.5.zip",
  2284. "reference": "8.x-1.5",
  2285. "shasum": "fb4457015d743faafecaa0776d2bebf2829a6738"
  2286. },
  2287. "require": {
  2288. "drupal/core": "~8.0"
  2289. },
  2290. "type": "drupal-theme",
  2291. "extra": {
  2292. "branch-alias": {
  2293. "dev-1.x": "1.x-dev"
  2294. },
  2295. "drupal": {
  2296. "version": "8.x-1.5",
  2297. "datestamp": "1558584484",
  2298. "security-coverage": {
  2299. "status": "covered",
  2300. "message": "Covered by Drupal's security advisory policy"
  2301. }
  2302. }
  2303. },
  2304. "notification-url": "https://packages.drupal.org/8/downloads",
  2305. "license": [
  2306. "GPL-2.0+"
  2307. ],
  2308. "authors": [
  2309. {
  2310. "name": "ANDiTKO",
  2311. "homepage": "https://www.drupal.org/user/1428124"
  2312. },
  2313. {
  2314. "name": "andrey.troeglazov",
  2315. "homepage": "https://www.drupal.org/user/3145389"
  2316. },
  2317. {
  2318. "name": "realityloop",
  2319. "homepage": "https://www.drupal.org/user/139189"
  2320. }
  2321. ],
  2322. "description": "Drupal administration theme with modern minimalist design.",
  2323. "homepage": "https://www.drupal.org/project/adminimal_theme",
  2324. "support": {
  2325. "source": "https://git.drupalcode.org/project/adminimal_theme",
  2326. "issues": "https://www.drupal.org/project/issues/adminimal_theme"
  2327. }
  2328. },
  2329. {
  2330. "name": "drupal/audiofield",
  2331. "version": "1.9.0",
  2332. "source": {
  2333. "type": "git",
  2334. "url": "https://git.drupalcode.org/project/audiofield.git",
  2335. "reference": "8.x-1.9"
  2336. },
  2337. "dist": {
  2338. "type": "zip",
  2339. "url": "https://ftp.drupal.org/files/projects/audiofield-8.x-1.9.zip",
  2340. "reference": "8.x-1.9",
  2341. "shasum": "ddb2ca8dd5125a2bd0104e0001037c6fa2716682"
  2342. },
  2343. "require": {
  2344. "drupal/core": "~8.0"
  2345. },
  2346. "type": "drupal-module",
  2347. "extra": {
  2348. "branch-alias": {
  2349. "dev-1.x": "1.x-dev"
  2350. },
  2351. "drupal": {
  2352. "version": "8.x-1.9",
  2353. "datestamp": "1553712781",
  2354. "security-coverage": {
  2355. "status": "covered",
  2356. "message": "Covered by Drupal's security advisory policy"
  2357. }
  2358. },
  2359. "drush": {
  2360. "services": {
  2361. "drush.services.yml": "^9"
  2362. }
  2363. }
  2364. },
  2365. "notification-url": "https://packages.drupal.org/8/downloads",
  2366. "license": [
  2367. "GPL-2.0+"
  2368. ],
  2369. "authors": [
  2370. {
  2371. "name": "Daniel Moberly",
  2372. "homepage": "https://www.drupal.org/u/danielmoberly",
  2373. "role": "Maintainer"
  2374. },
  2375. {
  2376. "name": "josipsaric",
  2377. "homepage": "https://www.drupal.org/user/3063287"
  2378. },
  2379. {
  2380. "name": "tamerzg",
  2381. "homepage": "https://www.drupal.org/user/464564"
  2382. }
  2383. ],
  2384. "description": "AudioField Module",
  2385. "homepage": "https://www.drupal.org/project/audiofield",
  2386. "support": {
  2387. "source": "https://git.drupalcode.org/project/audiofield",
  2388. "issues": "https://www.drupal.org/project/issues/audiofield"
  2389. }
  2390. },
  2391. {
  2392. "name": "drupal/autologout",
  2393. "version": "1.0.0",
  2394. "source": {
  2395. "type": "git",
  2396. "url": "https://git.drupalcode.org/project/autologout.git",
  2397. "reference": "8.x-1.0"
  2398. },
  2399. "dist": {
  2400. "type": "zip",
  2401. "url": "https://ftp.drupal.org/files/projects/autologout-8.x-1.0.zip",
  2402. "reference": "8.x-1.0",
  2403. "shasum": "0a5f67d4393b0acdf8522b1b1a5c9eb40bb05d93"
  2404. },
  2405. "require": {
  2406. "drupal/core": "~8.0"
  2407. },
  2408. "type": "drupal-module",
  2409. "extra": {
  2410. "branch-alias": {
  2411. "dev-1.x": "1.x-dev"
  2412. },
  2413. "drupal": {
  2414. "version": "8.x-1.0",
  2415. "datestamp": "1494237185",
  2416. "security-coverage": {
  2417. "status": "covered",
  2418. "message": "Covered by Drupal's security advisory policy"
  2419. }
  2420. }
  2421. },
  2422. "notification-url": "https://packages.drupal.org/8/downloads",
  2423. "license": [
  2424. "GPL-2.0+"
  2425. ],
  2426. "authors": [
  2427. {
  2428. "name": "AjK",
  2429. "homepage": "https://www.drupal.org/user/39030"
  2430. },
  2431. {
  2432. "name": "AjitS",
  2433. "homepage": "https://www.drupal.org/user/981944"
  2434. },
  2435. {
  2436. "name": "boshtian",
  2437. "homepage": "https://www.drupal.org/user/1773456"
  2438. },
  2439. {
  2440. "name": "dandrews",
  2441. "homepage": "https://www.drupal.org/user/2014490"
  2442. },
  2443. {
  2444. "name": "darksnow",
  2445. "homepage": "https://www.drupal.org/user/391915"
  2446. },
  2447. {
  2448. "name": "johnennew",
  2449. "homepage": "https://www.drupal.org/user/1150042"
  2450. },
  2451. {
  2452. "name": "jrglasgow",
  2453. "homepage": "https://www.drupal.org/user/36590"
  2454. },
  2455. {
  2456. "name": "kmasood",
  2457. "homepage": "https://www.drupal.org/user/1262860"
  2458. },
  2459. {
  2460. "name": "levelos",
  2461. "homepage": "https://www.drupal.org/user/54135"
  2462. },
  2463. {
  2464. "name": "prabeen.giri",
  2465. "homepage": "https://www.drupal.org/user/913078"
  2466. },
  2467. {
  2468. "name": "str8",
  2469. "homepage": "https://www.drupal.org/user/2865063"
  2470. }
  2471. ],
  2472. "description": "Adds automated timed logout.",
  2473. "homepage": "http://drupal.org/project/autologout",
  2474. "support": {
  2475. "source": "https://git.drupalcode.org/project/autologout"
  2476. }
  2477. },
  2478. {
  2479. "name": "drupal/basic",
  2480. "version": "1.3.0",
  2481. "source": {
  2482. "type": "git",
  2483. "url": "https://git.drupalcode.org/project/basic.git",
  2484. "reference": "8.x-1.3"
  2485. },
  2486. "dist": {
  2487. "type": "zip",
  2488. "url": "https://ftp.drupal.org/files/projects/basic-8.x-1.3.zip",
  2489. "reference": "8.x-1.3",
  2490. "shasum": "d42e75327d54ae38cf988ebe77f995b44fbc45f7"
  2491. },
  2492. "require": {
  2493. "drupal/core": "~8.0"
  2494. },
  2495. "type": "drupal-theme",
  2496. "extra": {
  2497. "branch-alias": {
  2498. "dev-1.x": "1.x-dev"
  2499. },
  2500. "drupal": {
  2501. "version": "8.x-1.3",
  2502. "datestamp": "1508096944",
  2503. "security-coverage": {
  2504. "status": "covered",
  2505. "message": "Covered by Drupal's security advisory policy"
  2506. }
  2507. }
  2508. },
  2509. "notification-url": "https://packages.drupal.org/8/downloads",
  2510. "license": [
  2511. "GPL-2.0+"
  2512. ],
  2513. "authors": [
  2514. {
  2515. "name": "Steve Krueger",
  2516. "homepage": "http://thejibe.com",
  2517. "email": "steve@thejibe.com",
  2518. "role": "Maintainer"
  2519. },
  2520. {
  2521. "name": "Joël Pittet",
  2522. "homepage": "https://www.drupal.org/u/joelpittet",
  2523. "email": "joel@pittet.ca",
  2524. "role": "Maintainer"
  2525. },
  2526. {
  2527. "name": "Leah Wagner",
  2528. "homepage": "http://thejibe.com",
  2529. "email": "leah@thejibe.com",
  2530. "role": "Maintainer"
  2531. },
  2532. {
  2533. "name": "Catherine Winters",
  2534. "homepage": "http://www.catherinewinters.com",
  2535. "email": "catherine@catherinewinters.com",
  2536. "role": "Maintainer"
  2537. },
  2538. {
  2539. "name": "Johannes Schmidt",
  2540. "homepage": "http://2tabs.com",
  2541. "email": "mail@2tabs.com",
  2542. "role": "Maintainer"
  2543. },
  2544. {
  2545. "name": "johannez",
  2546. "homepage": "https://www.drupal.org/user/670988"
  2547. },
  2548. {
  2549. "name": "leahtard",
  2550. "homepage": "https://www.drupal.org/user/683812"
  2551. }
  2552. ],
  2553. "description": "HTML5, SASS, Responsive grid starter theme.",
  2554. "homepage": "http://drupal.org/project/basic",
  2555. "support": {
  2556. "source": "http://cgit.drupalcode.org/basic",
  2557. "issues": "https://www.drupal.org/project/issues/basic",
  2558. "irc": "irc://irc.freenode.org/drupal-contribute"
  2559. }
  2560. },
  2561. {
  2562. "name": "drupal/better_messages",
  2563. "version": "1.0.0-alpha2",
  2564. "source": {
  2565. "type": "git",
  2566. "url": "https://git.drupalcode.org/project/better_messages.git",
  2567. "reference": "8.x-1.0-alpha2"
  2568. },
  2569. "dist": {
  2570. "type": "zip",
  2571. "url": "https://ftp.drupal.org/files/projects/better_messages-8.x-1.0-alpha2.zip",
  2572. "reference": "8.x-1.0-alpha2",
  2573. "shasum": "ca09231502d5e0d8a5c0d16f9efc5430091b8a38"
  2574. },
  2575. "require": {
  2576. "drupal/core": "~8.0"
  2577. },
  2578. "type": "drupal-module",
  2579. "extra": {
  2580. "branch-alias": {
  2581. "dev-1.x": "1.x-dev"
  2582. },
  2583. "drupal": {
  2584. "version": "8.x-1.0-alpha2",
  2585. "datestamp": "1517663880",
  2586. "security-coverage": {
  2587. "status": "not-covered",
  2588. "message": "Alpha releases are not covered by Drupal security advisories."
  2589. }
  2590. }
  2591. },
  2592. "notification-url": "https://packages.drupal.org/8/downloads",
  2593. "license": [
  2594. "GPL-2.0-or-later"
  2595. ],
  2596. "authors": [
  2597. {
  2598. "name": "Mohammed J. Razem",
  2599. "homepage": "https://www.drupal.org/user/255384"
  2600. },
  2601. {
  2602. "name": "bucefal91",
  2603. "homepage": "https://www.drupal.org/user/504128"
  2604. },
  2605. {
  2606. "name": "le72",
  2607. "homepage": "https://www.drupal.org/user/1866896"
  2608. }
  2609. ],
  2610. "description": "Better Messages module for Drupal 8.",
  2611. "homepage": "https://www.drupal.org/project/better_messages",
  2612. "support": {
  2613. "source": "https://git.drupalcode.org/project/better_messages"
  2614. }
  2615. },
  2616. {
  2617. "name": "drupal/bulkdelete",
  2618. "version": "dev-1.x",
  2619. "source": {
  2620. "type": "git",
  2621. "url": "https://git.drupalcode.org/project/bulkdelete.git",
  2622. "reference": "22e6ff410cf345609e83605d086cf7885bf4e865"
  2623. },
  2624. "require": {
  2625. "drupal/core": "~8.0"
  2626. },
  2627. "type": "drupal-module",
  2628. "extra": {
  2629. "branch-alias": {
  2630. "dev-1.x": "1.x-dev"
  2631. },
  2632. "drupal": {
  2633. "version": "8.x-1.x-dev",
  2634. "datestamp": "1495565583",
  2635. "security-coverage": {
  2636. "status": "not-covered",
  2637. "message": "Dev releases are not covered by Drupal security advisories."
  2638. }
  2639. }
  2640. },
  2641. "notification-url": "https://packages.drupal.org/8/downloads",
  2642. "license": [
  2643. "GPL-2.0-or-later"
  2644. ],
  2645. "authors": [
  2646. {
  2647. "name": "Kars-T",
  2648. "homepage": "https://www.drupal.org/user/224499"
  2649. },
  2650. {
  2651. "name": "Rahul Seth",
  2652. "homepage": "https://www.drupal.org/user/2694359"
  2653. },
  2654. {
  2655. "name": "adriancid",
  2656. "homepage": "https://www.drupal.org/user/1962106"
  2657. },
  2658. {
  2659. "name": "robertDouglass",
  2660. "homepage": "https://www.drupal.org/user/5449"
  2661. }
  2662. ],
  2663. "description": "Adds an administrative option to bulk delete nodes by content type using the batch API.",
  2664. "homepage": "https://www.drupal.org/project/bulkdelete",
  2665. "support": {
  2666. "source": "https://git.drupalcode.org/project/bulkdelete"
  2667. },
  2668. "time": "2019-09-27T12:11:08+00:00"
  2669. },
  2670. {
  2671. "name": "drupal/coder",
  2672. "version": "8.3.6",
  2673. "source": {
  2674. "type": "git",
  2675. "url": "https://git.drupalcode.org/project/coder.git",
  2676. "reference": "4337ddf58d28dbdee4e1367bf71ee13393ab9820"
  2677. },
  2678. "require": {
  2679. "ext-mbstring": "*",
  2680. "php": ">=5.5.9",
  2681. "squizlabs/php_codesniffer": "^3.4.1",
  2682. "symfony/yaml": ">=2.0.5"
  2683. },
  2684. "require-dev": {
  2685. "phpunit/phpunit": ">=3.7 <6"
  2686. },
  2687. "type": "phpcodesniffer-standard",
  2688. "autoload": {
  2689. "psr-0": {
  2690. "Drupal\\": "coder_sniffer/Drupal/",
  2691. "DrupalPractice\\": "coder_sniffer/DrupalPractice/"
  2692. }
  2693. },
  2694. "notification-url": "https://packagist.org/downloads/",
  2695. "license": [
  2696. "GPL-2.0+"
  2697. ],
  2698. "description": "Coder is a library to review Drupal code.",
  2699. "homepage": "https://www.drupal.org/project/coder",
  2700. "keywords": [
  2701. "code review",
  2702. "phpcs",
  2703. "standards"
  2704. ],
  2705. "time": "2019-08-09T09:27:26+00:00"
  2706. },
  2707. {
  2708. "name": "drupal/color_field",
  2709. "version": "2.0.0",
  2710. "source": {
  2711. "type": "git",
  2712. "url": "https://git.drupalcode.org/project/color_field.git",
  2713. "reference": "8.x-2.0"
  2714. },
  2715. "dist": {
  2716. "type": "zip",
  2717. "url": "https://ftp.drupal.org/files/projects/color_field-8.x-2.0.zip",
  2718. "reference": "8.x-2.0",
  2719. "shasum": "27c510d258e409e1d029d69cf7747e96c1087df6"
  2720. },
  2721. "require": {
  2722. "drupal/core": "*"
  2723. },
  2724. "require-dev": {
  2725. "drupal/token": "~1.3"
  2726. },
  2727. "suggest": {
  2728. "bower-asset/jquery-simple-color": "^v1.2.2: Provides JavaScript library necessary for the Color Grid widget",
  2729. "bower-asset/spectrum": "^1.8: Provides JavaScript library necessary for Spectrum widget."
  2730. },
  2731. "type": "drupal-module",
  2732. "extra": {
  2733. "branch-alias": {
  2734. "dev-2.x": "2.x-dev"
  2735. },
  2736. "drupal": {
  2737. "version": "8.x-2.0",
  2738. "datestamp": "1536168780",
  2739. "security-coverage": {
  2740. "status": "covered",
  2741. "message": "Covered by Drupal's security advisory policy"
  2742. }
  2743. }
  2744. },
  2745. "notification-url": "https://packages.drupal.org/8/downloads",
  2746. "license": [
  2747. "GPL-2.0-or-later"
  2748. ],
  2749. "authors": [
  2750. {
  2751. "name": "targoo",
  2752. "homepage": "https://www.drupal.org/user/431910",
  2753. "role": "Maintainer"
  2754. },
  2755. {
  2756. "name": "Nick Wilde",
  2757. "homepage": "https://www.drupal.org/user/nickwilde",
  2758. "role": "Maintainer"
  2759. }
  2760. ],
  2761. "description": "Provides a color field type to store the color value and opacity",
  2762. "homepage": "https://www.drupal.org/project/color_field",
  2763. "support": {
  2764. "source": "http://cgit.drupalcode.org/color_field",
  2765. "issues": "https://www.drupal.org/project/issues/color_field?version=8.x"
  2766. }
  2767. },
  2768. {
  2769. "name": "drupal/config_devel",
  2770. "version": "1.4.0",
  2771. "source": {
  2772. "type": "git",
  2773. "url": "https://git.drupalcode.org/project/config_devel.git",
  2774. "reference": "8.x-1.4"
  2775. },
  2776. "dist": {
  2777. "type": "zip",
  2778. "url": "https://ftp.drupal.org/files/projects/config_devel-8.x-1.4.zip",
  2779. "reference": "8.x-1.4",
  2780. "shasum": "93cbecd4811cbf357cd0a8be19e480f7af32f756"
  2781. },
  2782. "require": {
  2783. "drupal/core": "~8.0"
  2784. },
  2785. "type": "drupal-module",
  2786. "extra": {
  2787. "branch-alias": {
  2788. "dev-1.x": "1.x-dev"
  2789. },
  2790. "drupal": {
  2791. "version": "8.x-1.4",
  2792. "datestamp": "1569934685",
  2793. "security-coverage": {
  2794. "status": "covered",
  2795. "message": "Covered by Drupal's security advisory policy"
  2796. }
  2797. }
  2798. },
  2799. "notification-url": "https://packages.drupal.org/8/downloads",
  2800. "license": [
  2801. "GPL-2.0+"
  2802. ],
  2803. "authors": [
  2804. {
  2805. "name": "alexpott",
  2806. "homepage": "https://www.drupal.org/user/157725"
  2807. },
  2808. {
  2809. "name": "benjy",
  2810. "homepage": "https://www.drupal.org/user/1852732"
  2811. },
  2812. {
  2813. "name": "chx",
  2814. "homepage": "https://www.drupal.org/user/9446"
  2815. },
  2816. {
  2817. "name": "joachim",
  2818. "homepage": "https://www.drupal.org/user/107701"
  2819. },
  2820. {
  2821. "name": "nedjo",
  2822. "homepage": "https://www.drupal.org/user/4481"
  2823. },
  2824. {
  2825. "name": "tim.plunkett",
  2826. "homepage": "https://www.drupal.org/user/241634"
  2827. },
  2828. {
  2829. "name": "vijaycs85",
  2830. "homepage": "https://www.drupal.org/user/93488"
  2831. }
  2832. ],
  2833. "description": "Helps developers work with configuration.",
  2834. "homepage": "https://www.drupal.org/project/config_devel",
  2835. "support": {
  2836. "source": "https://git.drupalcode.org/project/config_devel"
  2837. }
  2838. },
  2839. {
  2840. "name": "drupal/config_filter",
  2841. "version": "1.5.0",
  2842. "source": {
  2843. "type": "git",
  2844. "url": "https://git.drupalcode.org/project/config_filter.git",
  2845. "reference": "8.x-1.5"
  2846. },
  2847. "dist": {
  2848. "type": "zip",
  2849. "url": "https://ftp.drupal.org/files/projects/config_filter-8.x-1.5.zip",
  2850. "reference": "8.x-1.5",
  2851. "shasum": "81210684c378dab856b3c2bce5eeaa58992d2efc"
  2852. },
  2853. "require": {
  2854. "drupal/core": "~8.0"
  2855. },
  2856. "suggest": {
  2857. "drupal/config_split": "Split site configuration for different environments."
  2858. },
  2859. "type": "drupal-module",
  2860. "extra": {
  2861. "branch-alias": {
  2862. "dev-1.x": "1.x-dev"
  2863. },
  2864. "drupal": {
  2865. "version": "8.x-1.5",
  2866. "datestamp": "1572542288",
  2867. "security-coverage": {
  2868. "status": "covered",
  2869. "message": "Covered by Drupal's security advisory policy"
  2870. }
  2871. }
  2872. },
  2873. "notification-url": "https://packages.drupal.org/8/downloads",
  2874. "license": [
  2875. "GPL-2.0+"
  2876. ],
  2877. "authors": [
  2878. {
  2879. "name": "Fabian Bircher",
  2880. "homepage": "https://www.drupal.org/u/bircher",
  2881. "email": "opensource@fabianbircher.com",
  2882. "role": "Maintainer"
  2883. },
  2884. {
  2885. "name": "Nuvole Web",
  2886. "homepage": "http://nuvole.org",
  2887. "email": "info@nuvole.org",
  2888. "role": "Maintainer"
  2889. },
  2890. {
  2891. "name": "pescetti",
  2892. "homepage": "https://www.drupal.org/user/436244"
  2893. }
  2894. ],
  2895. "description": "Config Filter allows other modules to interact with a ConfigStorage through filter plugins.",
  2896. "homepage": "https://www.drupal.org/project/config_filter",
  2897. "keywords": [
  2898. "Drupal",
  2899. "configuration",
  2900. "configuration management"
  2901. ],
  2902. "support": {
  2903. "source": "http://cgit.drupalcode.org/config_filter",
  2904. "issues": "https://www.drupal.org/project/issues/config_filter",
  2905. "irc": "irc://irc.freenode.org/drupal-contribute"
  2906. }
  2907. },
  2908. {
  2909. "name": "drupal/config_ignore",
  2910. "version": "2.1.0",
  2911. "source": {
  2912. "type": "git",
  2913. "url": "https://git.drupalcode.org/project/config_ignore.git",
  2914. "reference": "8.x-2.1"
  2915. },
  2916. "dist": {
  2917. "type": "zip",
  2918. "url": "https://ftp.drupal.org/files/projects/config_ignore-8.x-2.1.zip",
  2919. "reference": "8.x-2.1",
  2920. "shasum": "07e00684930706632b3f2fc2a7433ffdae57cde7"
  2921. },
  2922. "require": {
  2923. "drupal/config_filter": "1.*",
  2924. "drupal/core": "~8.0"
  2925. },
  2926. "type": "drupal-module",
  2927. "extra": {
  2928. "branch-alias": {
  2929. "dev-2.x": "2.x-dev"
  2930. },
  2931. "drupal": {
  2932. "version": "8.x-2.1",
  2933. "datestamp": "1507706044",
  2934. "security-coverage": {
  2935. "status": "covered",
  2936. "message": "Covered by Drupal's security advisory policy"
  2937. }
  2938. }
  2939. },
  2940. "notification-url": "https://packages.drupal.org/8/downloads",
  2941. "license": [
  2942. "GPL-2.0+"
  2943. ],
  2944. "authors": [
  2945. {
  2946. "name": "Tommy Lynge Jørgensen",
  2947. "homepage": "https://www.drupal.org/u/tlyngej",
  2948. "email": "tlyngej@gmail.com",
  2949. "role": "Maintainer"
  2950. },
  2951. {
  2952. "name": "Fabian Bircher",
  2953. "homepage": "https://www.drupal.org/u/bircher",
  2954. "role": "Maintainer"
  2955. }
  2956. ],
  2957. "description": "Ignore certain configuration during import.",
  2958. "homepage": "http://drupal.org/project/config_ignore",
  2959. "support": {
  2960. "source": "http://cgit.drupalcode.org/config_ignore",
  2961. "issues": "http://drupal.org/project/config_ignore",
  2962. "irc": "irc://irc.freenode.org/drupal-contribute"
  2963. }
  2964. },
  2965. {
  2966. "name": "drupal/config_update",
  2967. "version": "1.6.0",
  2968. "source": {
  2969. "type": "git",
  2970. "url": "https://git.drupalcode.org/project/config_update.git",
  2971. "reference": "8.x-1.6"
  2972. },
  2973. "dist": {
  2974. "type": "zip",
  2975. "url": "https://ftp.drupal.org/files/projects/config_update-8.x-1.6.zip",
  2976. "reference": "8.x-1.6",
  2977. "shasum": "04bbd0fc440017fd0129dceae240a8bba409a450"
  2978. },
  2979. "require": {
  2980. "drupal/core": "*"
  2981. },
  2982. "type": "drupal-module",
  2983. "extra": {
  2984. "branch-alias": {
  2985. "dev-1.x": "1.x-dev"
  2986. },
  2987. "drupal": {
  2988. "version": "8.x-1.6",
  2989. "datestamp": "1545090480",
  2990. "security-coverage": {
  2991. "status": "covered",
  2992. "message": "Covered by Drupal's security advisory policy"
  2993. }
  2994. }
  2995. },
  2996. "notification-url": "https://packages.drupal.org/8/downloads",
  2997. "license": [
  2998. "GPL-2.0-or-later"
  2999. ],
  3000. "authors": [
  3001. {
  3002. "name": "jhodgdon",
  3003. "homepage": "https://www.drupal.org/user/155601"
  3004. },
  3005. {
  3006. "name": "nedjo",
  3007. "homepage": "https://www.drupal.org/user/4481"
  3008. }
  3009. ],
  3010. "description": "Provides basic revert and update functionality for other modules",
  3011. "homepage": "https://www.drupal.org/project/config_update",
  3012. "support": {
  3013. "source": "https://git.drupalcode.org/project/config_update"
  3014. }
  3015. },
  3016. {
  3017. "name": "drupal/console",
  3018. "version": "1.9.4",
  3019. "source": {
  3020. "type": "git",
  3021. "url": "https://github.com/hechoendrupal/drupal-console.git",
  3022. "reference": "04522b687b2149dc1f808599e716421a20d50a5b"
  3023. },
  3024. "dist": {
  3025. "type": "zip",
  3026. "url": "https://api.github.com/repos/hechoendrupal/drupal-console/zipball/04522b687b2149dc1f808599e716421a20d50a5b",
  3027. "reference": "04522b687b2149dc1f808599e716421a20d50a5b",
  3028. "shasum": ""
  3029. },
  3030. "require": {
  3031. "alchemy/zippy": "~0.4",
  3032. "composer/installers": "~1.0",
  3033. "doctrine/annotations": "^1.2",
  3034. "doctrine/collections": "^1.3",
  3035. "drupal/console-core": "1.9.4",
  3036. "drupal/console-extend-plugin": "~0",
  3037. "php": "^5.5.9 || ^7.0",
  3038. "psy/psysh": "0.6.* || ~0.8",
  3039. "symfony/css-selector": "~2.8|~3.0",
  3040. "symfony/dom-crawler": "~2.8|~3.0",
  3041. "symfony/http-foundation": "~2.8|~3.0"
  3042. },
  3043. "suggest": {
  3044. "symfony/thanks": "Thank your favorite PHP projects on GitHub using the CLI",
  3045. "vlucas/phpdotenv": "Loads environment variables from .env to getenv(), $_ENV and $_SERVER automagically"
  3046. },
  3047. "bin": [
  3048. "bin/drupal"
  3049. ],
  3050. "type": "library",
  3051. "autoload": {
  3052. "psr-4": {
  3053. "Drupal\\Console\\": "src"
  3054. }
  3055. },
  3056. "notification-url": "https://packagist.org/downloads/",
  3057. "license": [
  3058. "GPL-2.0-or-later"
  3059. ],
  3060. "authors": [
  3061. {
  3062. "name": "David Flores",
  3063. "email": "dmousex@gmail.com",
  3064. "homepage": "http://dmouse.net"
  3065. },
  3066. {
  3067. "name": "Jesus Manuel Olivas",
  3068. "email": "jesus.olivas@gmail.com",
  3069. "homepage": "http://jmolivas.com"
  3070. },
  3071. {
  3072. "name": "Eduardo Garcia",
  3073. "email": "enzo@enzolutions.com",
  3074. "homepage": "http://enzolutions.com/"
  3075. },
  3076. {
  3077. "name": "Omar Aguirre",
  3078. "email": "omersguchigu@gmail.com"
  3079. },
  3080. {
  3081. "name": "Drupal Console Contributors",
  3082. "homepage": "https://github.com/hechoendrupal/drupal-console/graphs/contributors"
  3083. }
  3084. ],
  3085. "description": "The Drupal CLI. A tool to generate boilerplate code, interact with and debug Drupal.",
  3086. "homepage": "http://drupalconsole.com/",
  3087. "keywords": [
  3088. "console",
  3089. "development",
  3090. "drupal",
  3091. "symfony"
  3092. ],
  3093. "time": "2019-11-11T19:35:01+00:00"
  3094. },
  3095. {
  3096. "name": "drupal/console-core",
  3097. "version": "1.9.4",
  3098. "source": {
  3099. "type": "git",
  3100. "url": "https://github.com/hechoendrupal/drupal-console-core.git",
  3101. "reference": "cc6f50c6ac8199140224347c862df75fd2d2f5ed"
  3102. },
  3103. "dist": {
  3104. "type": "zip",
  3105. "url": "https://api.github.com/repos/hechoendrupal/drupal-console-core/zipball/cc6f50c6ac8199140224347c862df75fd2d2f5ed",
  3106. "reference": "cc6f50c6ac8199140224347c862df75fd2d2f5ed",
  3107. "shasum": ""
  3108. },
  3109. "require": {
  3110. "dflydev/dot-access-configuration": "^1.0",
  3111. "drupal/console-en": "1.9.4",
  3112. "guzzlehttp/guzzle": "~6.1",
  3113. "php": "^5.5.9 || ^7.0",
  3114. "stecman/symfony-console-completion": "~0.7",
  3115. "symfony/config": "~2.8|~3.0",
  3116. "symfony/console": "~2.8|~3.0",
  3117. "symfony/debug": "~2.8|~3.0",
  3118. "symfony/dependency-injection": "~2.8|~3.0",
  3119. "symfony/event-dispatcher": "~2.8|~3.0",
  3120. "symfony/filesystem": "~2.8|~3.0",
  3121. "symfony/finder": "~2.8|~3.0",
  3122. "symfony/process": "~2.8|~3.0",
  3123. "symfony/translation": "~2.8|~3.0",
  3124. "symfony/yaml": "~2.8|~3.0",
  3125. "twig/twig": "^1.23.1",
  3126. "webflo/drupal-finder": "^1.0",
  3127. "webmozart/path-util": "^2.3"
  3128. },
  3129. "type": "library",
  3130. "autoload": {
  3131. "files": [
  3132. "src/functions.php"
  3133. ],
  3134. "psr-4": {
  3135. "Drupal\\Console\\Core\\": "src"
  3136. }
  3137. },
  3138. "notification-url": "https://packagist.org/downloads/",
  3139. "license": [
  3140. "GPL-2.0-or-later"
  3141. ],
  3142. "authors": [
  3143. {
  3144. "name": "David Flores",
  3145. "email": "dmousex@gmail.com",
  3146. "homepage": "http://dmouse.net"
  3147. },
  3148. {
  3149. "name": "Jesus Manuel Olivas",
  3150. "email": "jesus.olivas@gmail.com",
  3151. "homepage": "http://jmolivas.com"
  3152. },
  3153. {
  3154. "name": "Eduardo Garcia",
  3155. "email": "enzo@enzolutions.com",
  3156. "homepage": "http://enzolutions.com/"
  3157. },
  3158. {
  3159. "name": "Omar Aguirre",
  3160. "email": "omersguchigu@gmail.com"
  3161. },
  3162. {
  3163. "name": "Drupal Console Contributors",
  3164. "homepage": "https://github.com/hechoendrupal/DrupalConsole/graphs/contributors"
  3165. }
  3166. ],
  3167. "description": "Drupal Console Core",
  3168. "homepage": "http://drupalconsole.com/",
  3169. "keywords": [
  3170. "console",
  3171. "development",
  3172. "drupal",
  3173. "symfony"
  3174. ],
  3175. "time": "2019-11-11T19:26:28+00:00"
  3176. },
  3177. {
  3178. "name": "drupal/console-en",
  3179. "version": "1.9.4",
  3180. "source": {
  3181. "type": "git",
  3182. "url": "https://github.com/hechoendrupal/drupal-console-en.git",
  3183. "reference": "30813a832fdb1244e84cbcc012cd103d5e9d673d"
  3184. },
  3185. "dist": {
  3186. "type": "zip",
  3187. "url": "https://api.github.com/repos/hechoendrupal/drupal-console-en/zipball/30813a832fdb1244e84cbcc012cd103d5e9d673d",
  3188. "reference": "30813a832fdb1244e84cbcc012cd103d5e9d673d",
  3189. "shasum": ""
  3190. },
  3191. "type": "library",
  3192. "notification-url": "https://packagist.org/downloads/",
  3193. "license": [
  3194. "GPL-2.0-or-later"
  3195. ],
  3196. "authors": [
  3197. {
  3198. "name": "David Flores",
  3199. "email": "dmousex@gmail.com",
  3200. "homepage": "http://dmouse.net"
  3201. },
  3202. {
  3203. "name": "Jesus Manuel Olivas",
  3204. "email": "jesus.olivas@gmail.com",
  3205. "homepage": "http://jmolivas.com"
  3206. },
  3207. {
  3208. "name": "Eduardo Garcia",
  3209. "email": "enzo@enzolutions.com",
  3210. "homepage": "http://enzolutions.com/"
  3211. },
  3212. {
  3213. "name": "Omar Aguirre",
  3214. "email": "omersguchigu@gmail.com"
  3215. },
  3216. {
  3217. "name": "Drupal Console Contributors",
  3218. "homepage": "https://github.com/hechoendrupal/DrupalConsole/graphs/contributors"
  3219. }
  3220. ],
  3221. "description": "Drupal Console English Language",
  3222. "homepage": "http://drupalconsole.com/",
  3223. "keywords": [
  3224. "console",
  3225. "development",
  3226. "drupal",
  3227. "symfony"
  3228. ],
  3229. "time": "2019-10-07T23:45:30+00:00"
  3230. },
  3231. {
  3232. "name": "drupal/console-extend-plugin",
  3233. "version": "0.9.3",
  3234. "source": {
  3235. "type": "git",
  3236. "url": "https://github.com/hechoendrupal/drupal-console-extend-plugin.git",
  3237. "reference": "ad8e52df34b2e78bdacfffecc9fe8edf41843342"
  3238. },
  3239. "dist": {
  3240. "type": "zip",
  3241. "url": "https://api.github.com/repos/hechoendrupal/drupal-console-extend-plugin/zipball/ad8e52df34b2e78bdacfffecc9fe8edf41843342",
  3242. "reference": "ad8e52df34b2e78bdacfffecc9fe8edf41843342",
  3243. "shasum": ""
  3244. },
  3245. "require": {
  3246. "composer-plugin-api": "^1.0",
  3247. "composer/installers": "^1.2",
  3248. "symfony/finder": "~2.7|~3.0",
  3249. "symfony/yaml": "~2.7|~3.0"
  3250. },
  3251. "type": "composer-plugin",
  3252. "extra": {
  3253. "class": "Drupal\\Console\\Composer\\Plugin\\Extender"
  3254. },
  3255. "autoload": {
  3256. "psr-4": {
  3257. "Drupal\\Console\\Composer\\Plugin\\": "src"
  3258. }
  3259. },
  3260. "notification-url": "https://packagist.org/downloads/",
  3261. "license": [
  3262. "GPL-2.0+"
  3263. ],
  3264. "authors": [
  3265. {
  3266. "name": "Jesus Manuel Olivas",
  3267. "email": "jesus.olivas@gmail.com"
  3268. }
  3269. ],
  3270. "description": "Drupal Console Extend Plugin",
  3271. "time": "2019-11-07T20:15:27+00:00"
  3272. },
  3273. {
  3274. "name": "drupal/context",
  3275. "version": "4.0.0-beta2",
  3276. "source": {
  3277. "type": "git",
  3278. "url": "https://git.drupalcode.org/project/context.git",
  3279. "reference": "8.x-4.0-beta2"
  3280. },
  3281. "dist": {
  3282. "type": "zip",
  3283. "url": "https://ftp.drupal.org/files/projects/context-8.x-4.0-beta2.zip",
  3284. "reference": "8.x-4.0-beta2",
  3285. "shasum": "e41bc912e1ec73bc4d08a3cf730dc2405a9213d3"
  3286. },
  3287. "require": {
  3288. "drupal/core": "~8.0"
  3289. },
  3290. "type": "drupal-module",
  3291. "extra": {
  3292. "branch-alias": {
  3293. "dev-4.x": "4.x-dev"
  3294. },
  3295. "drupal": {
  3296. "version": "8.x-4.0-beta2",
  3297. "datestamp": "1505378944",
  3298. "security-coverage": {
  3299. "status": "not-covered",
  3300. "message": "Beta releases are not covered by Drupal security advisories."
  3301. }
  3302. }
  3303. },
  3304. "notification-url": "https://packages.drupal.org/8/downloads",
  3305. "license": [
  3306. "MIT"
  3307. ],
  3308. "authors": [
  3309. {
  3310. "name": "Christoffer Palm",
  3311. "homepage": "http://www.oddhill.se/",
  3312. "email": "christoffer.palm@oddhill.se",
  3313. "role": "Developer"
  3314. },
  3315. {
  3316. "name": "Steven Jones",
  3317. "homepage": "https://www.drupal.org/user/99644"
  3318. },
  3319. {
  3320. "name": "alex_b",
  3321. "homepage": "https://www.drupal.org/user/53995"
  3322. },
  3323. {
  3324. "name": "boshtian",
  3325. "homepage": "https://www.drupal.org/user/1773456"
  3326. },
  3327. {
  3328. "name": "colan",
  3329. "homepage": "https://www.drupal.org/user/58704"
  3330. },
  3331. {
  3332. "name": "emanaton",
  3333. "homepage": "https://www.drupal.org/user/120853"
  3334. },
  3335. {
  3336. "name": "febbraro",
  3337. "homepage": "https://www.drupal.org/user/43670"
  3338. },
  3339. {
  3340. "name": "fizk",
  3341. "homepage": "https://www.drupal.org/user/473174"
  3342. },
  3343. {
  3344. "name": "hass",
  3345. "homepage": "https://www.drupal.org/user/85918"
  3346. },
  3347. {
  3348. "name": "hefox",
  3349. "homepage": "https://www.drupal.org/user/426416"
  3350. },
  3351. {
  3352. "name": "hyrcan",
  3353. "homepage": "https://www.drupal.org/user/26618"
  3354. },
  3355. {
  3356. "name": "jmiccolis",
  3357. "homepage": "https://www.drupal.org/user/31731"
  3358. },
  3359. {
  3360. "name": "nedjo",
  3361. "homepage": "https://www.drupal.org/user/4481"
  3362. },
  3363. {
  3364. "name": "tekante",
  3365. "homepage": "https://www.drupal.org/user/640024"
  3366. },
  3367. {
  3368. "name": "yhahn",
  3369. "homepage": "https://www.drupal.org/user/264833"
  3370. }
  3371. ],
  3372. "description": "Manage contextual conditions and reactions for different portions of your site.",
  3373. "homepage": "https://github.com/oddhill/context",
  3374. "keywords": [
  3375. "Drupal",
  3376. "block",
  3377. "conditions",
  3378. "context",
  3379. "visibility"
  3380. ],
  3381. "support": {
  3382. "source": "https://github.com/oddhill/context",
  3383. "issues": "https://github.com/oddhill/context/issues",
  3384. "docs": "https://github.com/oddhill/context"
  3385. }
  3386. },
  3387. {
  3388. "name": "drupal/core",
  3389. "version": "8.6.17",
  3390. "source": {
  3391. "type": "git",
  3392. "url": "https://github.com/drupal/core.git",
  3393. "reference": "47cb4ad62b01424221d045313d76385cbd19df22"
  3394. },
  3395. "dist": {
  3396. "type": "zip",
  3397. "url": "https://api.github.com/repos/drupal/core/zipball/47cb4ad62b01424221d045313d76385cbd19df22",
  3398. "reference": "47cb4ad62b01424221d045313d76385cbd19df22",
  3399. "shasum": ""
  3400. },
  3401. "require": {
  3402. "asm89/stack-cors": "^1.1",
  3403. "composer/semver": "^1.0",
  3404. "doctrine/annotations": "^1.2",
  3405. "doctrine/common": "^2.5",
  3406. "easyrdf/easyrdf": "^0.9",
  3407. "egulias/email-validator": "^1.2",
  3408. "ext-date": "*",
  3409. "ext-dom": "*",
  3410. "ext-filter": "*",
  3411. "ext-gd": "*",
  3412. "ext-hash": "*",
  3413. "ext-json": "*",
  3414. "ext-pcre": "*",
  3415. "ext-pdo": "*",
  3416. "ext-session": "*",
  3417. "ext-simplexml": "*",
  3418. "ext-spl": "*",
  3419. "ext-tokenizer": "*",
  3420. "ext-xml": "*",
  3421. "guzzlehttp/guzzle": "^6.2.1",
  3422. "masterminds/html5": "^2.1",
  3423. "paragonie/random_compat": "^1.0|^2.0",
  3424. "php": "^5.5.9|>=7.0.8",
  3425. "stack/builder": "^1.0",
  3426. "symfony-cmf/routing": "^1.4",
  3427. "symfony/class-loader": "~3.4.0",
  3428. "symfony/console": "~3.4.0",
  3429. "symfony/dependency-injection": "~3.4.26",
  3430. "symfony/event-dispatcher": "~3.4.0",
  3431. "symfony/http-foundation": "~3.4.27",
  3432. "symfony/http-kernel": "~3.4.14",
  3433. "symfony/polyfill-iconv": "^1.0",
  3434. "symfony/process": "~3.4.0",
  3435. "symfony/psr-http-message-bridge": "^1.0",
  3436. "symfony/routing": "~3.4.0",
  3437. "symfony/serializer": "~3.4.0",
  3438. "symfony/translation": "~3.4.0",
  3439. "symfony/validator": "~3.4.0",
  3440. "symfony/yaml": "~3.4.5",
  3441. "twig/twig": "^1.38.2",
  3442. "typo3/phar-stream-wrapper": "^2.1.1",
  3443. "zendframework/zend-diactoros": "^1.1",
  3444. "zendframework/zend-feed": "^2.4"
  3445. },
  3446. "conflict": {
  3447. "drush/drush": "<8.1.10"
  3448. },
  3449. "replace": {
  3450. "drupal/action": "self.version",
  3451. "drupal/aggregator": "self.version",
  3452. "drupal/automated_cron": "self.version",
  3453. "drupal/ban": "self.version",
  3454. "drupal/bartik": "self.version",
  3455. "drupal/basic_auth": "self.version",
  3456. "drupal/big_pipe": "self.version",
  3457. "drupal/block": "self.version",
  3458. "drupal/block_content": "self.version",
  3459. "drupal/block_place": "self.version",
  3460. "drupal/book": "self.version",
  3461. "drupal/breakpoint": "self.version",
  3462. "drupal/ckeditor": "self.version",
  3463. "drupal/classy": "self.version",
  3464. "drupal/color": "self.version",
  3465. "drupal/comment": "self.version",
  3466. "drupal/config": "self.version",
  3467. "drupal/config_translation": "self.version",
  3468. "drupal/contact": "self.version",
  3469. "drupal/content_moderation": "self.version",
  3470. "drupal/content_translation": "self.version",
  3471. "drupal/contextual": "self.version",
  3472. "drupal/core-annotation": "self.version",
  3473. "drupal/core-assertion": "self.version",
  3474. "drupal/core-bridge": "self.version",
  3475. "drupal/core-class-finder": "self.version",
  3476. "drupal/core-datetime": "self.version",
  3477. "drupal/core-dependency-injection": "self.version",
  3478. "drupal/core-diff": "self.version",
  3479. "drupal/core-discovery": "self.version",
  3480. "drupal/core-event-dispatcher": "self.version",
  3481. "drupal/core-file-cache": "self.version",
  3482. "drupal/core-filesystem": "self.version",
  3483. "drupal/core-gettext": "self.version",
  3484. "drupal/core-graph": "self.version",
  3485. "drupal/core-http-foundation": "self.version",
  3486. "drupal/core-php-storage": "self.version",
  3487. "drupal/core-plugin": "self.version",
  3488. "drupal/core-proxy-builder": "self.version",
  3489. "drupal/core-render": "self.version",
  3490. "drupal/core-serialization": "self.version",
  3491. "drupal/core-transliteration": "self.version",
  3492. "drupal/core-utility": "self.version",
  3493. "drupal/core-uuid": "self.version",
  3494. "drupal/datetime": "self.version",
  3495. "drupal/datetime_range": "self.version",
  3496. "drupal/dblog": "self.version",
  3497. "drupal/dynamic_page_cache": "self.version",
  3498. "drupal/editor": "self.version",
  3499. "drupal/entity_reference": "self.version",
  3500. "drupal/field": "self.version",
  3501. "drupal/field_layout": "self.version",
  3502. "drupal/field_ui": "self.version",
  3503. "drupal/file": "self.version",
  3504. "drupal/filter": "self.version",
  3505. "drupal/forum": "self.version",
  3506. "drupal/hal": "self.version",
  3507. "drupal/help": "self.version",
  3508. "drupal/history": "self.version",
  3509. "drupal/image": "self.version",
  3510. "drupal/inline_form_errors": "self.version",
  3511. "drupal/language": "self.version",
  3512. "drupal/layout_builder": "self.version",
  3513. "drupal/layout_discovery": "self.version",
  3514. "drupal/link": "self.version",
  3515. "drupal/locale": "self.version",
  3516. "drupal/media": "self.version",
  3517. "drupal/media_library": "self.version",
  3518. "drupal/menu_link_content": "self.version",
  3519. "drupal/menu_ui": "self.version",
  3520. "drupal/migrate": "self.version",
  3521. "drupal/migrate_drupal": "self.version",
  3522. "drupal/migrate_drupal_multilingual": "self.version",
  3523. "drupal/migrate_drupal_ui": "self.version",
  3524. "drupal/minimal": "self.version",
  3525. "drupal/node": "self.version",
  3526. "drupal/options": "self.version",
  3527. "drupal/page_cache": "self.version",
  3528. "drupal/path": "self.version",
  3529. "drupal/quickedit": "self.version",
  3530. "drupal/rdf": "self.version",
  3531. "drupal/responsive_image": "self.version",
  3532. "drupal/rest": "self.version",
  3533. "drupal/search": "self.version",
  3534. "drupal/serialization": "self.version",
  3535. "drupal/settings_tray": "self.version",
  3536. "drupal/seven": "self.version",
  3537. "drupal/shortcut": "self.version",
  3538. "drupal/simpletest": "self.version",
  3539. "drupal/standard": "self.version",
  3540. "drupal/stark": "self.version",
  3541. "drupal/statistics": "self.version",
  3542. "drupal/syslog": "self.version",
  3543. "drupal/system": "self.version",
  3544. "drupal/taxonomy": "self.version",
  3545. "drupal/telephone": "self.version",
  3546. "drupal/text": "self.version",
  3547. "drupal/toolbar": "self.version",
  3548. "drupal/tour": "self.version",
  3549. "drupal/tracker": "self.version",
  3550. "drupal/update": "self.version",
  3551. "drupal/user": "self.version",
  3552. "drupal/views": "self.version",
  3553. "drupal/views_ui": "self.version",
  3554. "drupal/workflows": "self.version",
  3555. "drupal/workspaces": "self.version"
  3556. },
  3557. "require-dev": {
  3558. "behat/mink": "1.7.x-dev",
  3559. "behat/mink-goutte-driver": "^1.2",
  3560. "behat/mink-selenium2-driver": "1.3.x-dev",
  3561. "drupal/coder": "^8.2.12",
  3562. "jcalderonzumba/gastonjs": "^1.0.2",
  3563. "jcalderonzumba/mink-phantomjs-driver": "^0.3.1",
  3564. "mikey179/vfsstream": "^1.2",
  3565. "phpspec/prophecy": "^1.7",
  3566. "phpunit/phpunit": "^4.8.35 || ^6.5",
  3567. "symfony/css-selector": "^3.4.0",
  3568. "symfony/debug": "^3.4.0",
  3569. "symfony/phpunit-bridge": "^3.4.3"
  3570. },
  3571. "type": "drupal-core",
  3572. "extra": {
  3573. "merge-plugin": {
  3574. "require": [
  3575. "core/lib/Drupal/Component/Annotation/composer.json",
  3576. "core/lib/Drupal/Component/Assertion/composer.json",
  3577. "core/lib/Drupal/Component/Bridge/composer.json",
  3578. "core/lib/Drupal/Component/ClassFinder/composer.json",
  3579. "core/lib/Drupal/Component/Datetime/composer.json",
  3580. "core/lib/Drupal/Component/DependencyInjection/composer.json",
  3581. "core/lib/Drupal/Component/Diff/composer.json",
  3582. "core/lib/Drupal/Component/Discovery/composer.json",
  3583. "core/lib/Drupal/Component/EventDispatcher/composer.json",
  3584. "core/lib/Drupal/Component/FileCache/composer.json",
  3585. "core/lib/Drupal/Component/FileSystem/composer.json",
  3586. "core/lib/Drupal/Component/Gettext/composer.json",
  3587. "core/lib/Drupal/Component/Graph/composer.json",
  3588. "core/lib/Drupal/Component/HttpFoundation/composer.json",
  3589. "core/lib/Drupal/Component/PhpStorage/composer.json",
  3590. "core/lib/Drupal/Component/Plugin/composer.json",
  3591. "core/lib/Drupal/Component/ProxyBuilder/composer.json",
  3592. "core/lib/Drupal/Component/Render/composer.json",
  3593. "core/lib/Drupal/Component/Serialization/composer.json",
  3594. "core/lib/Drupal/Component/Transliteration/composer.json",
  3595. "core/lib/Drupal/Component/Utility/composer.json",
  3596. "core/lib/Drupal/Component/Uuid/composer.json"
  3597. ],
  3598. "recurse": false,
  3599. "replace": false,
  3600. "merge-extra": false
  3601. }
  3602. },
  3603. "autoload": {
  3604. "psr-4": {
  3605. "Drupal\\Core\\": "lib/Drupal/Core",
  3606. "Drupal\\Component\\": "lib/Drupal/Component",
  3607. "Drupal\\Driver\\": "../drivers/lib/Drupal/Driver"
  3608. },
  3609. "classmap": [
  3610. "lib/Drupal.php",
  3611. "lib/Drupal/Component/Utility/Timer.php",
  3612. "lib/Drupal/Component/Utility/Unicode.php",
  3613. "lib/Drupal/Core/Database/Database.php",
  3614. "lib/Drupal/Core/DrupalKernel.php",
  3615. "lib/Drupal/Core/DrupalKernelInterface.php",
  3616. "lib/Drupal/Core/Site/Settings.php"
  3617. ]
  3618. },
  3619. "notification-url": "https://packagist.org/downloads/",
  3620. "license": [
  3621. "GPL-2.0-or-later"
  3622. ],
  3623. "description": "Drupal is an open source content management platform powering millions of websites and applications.",
  3624. "time": "2019-06-17T07:26:03+00:00"
  3625. },
  3626. {
  3627. "name": "drupal/ctools",
  3628. "version": "3.2.0",
  3629. "source": {
  3630. "type": "git",
  3631. "url": "https://git.drupalcode.org/project/ctools.git",
  3632. "reference": "8.x-3.2"
  3633. },
  3634. "dist": {
  3635. "type": "zip",
  3636. "url": "https://ftp.drupal.org/files/projects/ctools-8.x-3.2.zip",
  3637. "reference": "8.x-3.2",
  3638. "shasum": "d6da87239b64ba708a5977e7b33b1e009e36b091"
  3639. },
  3640. "require": {
  3641. "drupal/core": "^8.5"
  3642. },
  3643. "type": "drupal-module",
  3644. "extra": {
  3645. "branch-alias": {
  3646. "dev-3.x": "3.x-dev"
  3647. },
  3648. "drupal": {
  3649. "version": "8.x-3.2",
  3650. "datestamp": "1550728386",
  3651. "security-coverage": {
  3652. "status": "covered",
  3653. "message": "Covered by Drupal's security advisory policy"
  3654. }
  3655. }
  3656. },
  3657. "notification-url": "https://packages.drupal.org/8/downloads",
  3658. "license": [
  3659. "GPL-2.0+"
  3660. ],
  3661. "authors": [
  3662. {
  3663. "name": "Kris Vanderwater (EclipseGc)",
  3664. "homepage": "https://www.drupal.org/u/eclipsegc",
  3665. "role": "Maintainer"
  3666. },
  3667. {
  3668. "name": "Jakob Perry (japerry)",
  3669. "homepage": "https://www.drupal.org/u/japerry",
  3670. "role": "Maintainer"
  3671. },
  3672. {
  3673. "name": "Tim Plunkett (tim.plunkett)",
  3674. "homepage": "https://www.drupal.org/u/timplunkett",
  3675. "role": "Maintainer"
  3676. },
  3677. {
  3678. "name": "James Gilliland (neclimdul)",
  3679. "homepage": "https://www.drupal.org/u/neclimdul",
  3680. "role": "Maintainer"
  3681. },
  3682. {
  3683. "name": "Daniel Wehner (dawehner)",
  3684. "homepage": "https://www.drupal.org/u/dawehner",
  3685. "role": "Maintainer"
  3686. },
  3687. {
  3688. "name": "joelpittet",
  3689. "homepage": "https://www.drupal.org/user/160302"
  3690. },
  3691. {
  3692. "name": "merlinofchaos",
  3693. "homepage": "https://www.drupal.org/user/26979"
  3694. },
  3695. {
  3696. "name": "neclimdul",
  3697. "homepage": "https://www.drupal.org/user/48673"
  3698. },
  3699. {
  3700. "name": "sdboyer",
  3701. "homepage": "https://www.drupal.org/user/146719"
  3702. },
  3703. {
  3704. "name": "sun",
  3705. "homepage": "https://www.drupal.org/user/54136"
  3706. },
  3707. {
  3708. "name": "tim.plunkett",
  3709. "homepage": "https://www.drupal.org/user/241634"
  3710. }
  3711. ],
  3712. "description": "Provides a number of utility and helper APIs for Drupal developers and site builders.",
  3713. "homepage": "https://www.drupal.org/project/ctools",
  3714. "support": {
  3715. "source": "http://cgit.drupalcode.org/ctools",
  3716. "issues": "https://www.drupal.org/project/issues/ctools"
  3717. }
  3718. },
  3719. {
  3720. "name": "drupal/date_range_formatter",
  3721. "version": "3.1.0",
  3722. "source": {
  3723. "type": "git",
  3724. "url": "https://git.drupalcode.org/project/date_range_formatter.git",
  3725. "reference": "8.x-3.1"
  3726. },
  3727. "dist": {
  3728. "type": "zip",
  3729. "url": "https://ftp.drupal.org/files/projects/date_range_formatter-8.x-3.1.zip",
  3730. "reference": "8.x-3.1",
  3731. "shasum": "a98c511ac90eb92879235bc82a3aa643f7b5c173"
  3732. },
  3733. "require": {
  3734. "drupal/core": "*"
  3735. },
  3736. "type": "drupal-module",
  3737. "extra": {
  3738. "branch-alias": {
  3739. "dev-3.x": "3.x-dev"
  3740. },
  3741. "drupal": {
  3742. "version": "8.x-3.1",
  3743. "datestamp": "1502454544",
  3744. "security-coverage": {
  3745. "status": "covered",
  3746. "message": "Covered by Drupal's security advisory policy"
  3747. }
  3748. }
  3749. },
  3750. "notification-url": "https://packages.drupal.org/8/downloads",
  3751. "license": [
  3752. "GPL-2.0-or-later"
  3753. ],
  3754. "authors": [
  3755. {
  3756. "name": "maximpodorov",
  3757. "homepage": "https://www.drupal.org/user/515310"
  3758. },
  3759. {
  3760. "name": "sudishth",
  3761. "homepage": "https://www.drupal.org/user/1440562"
  3762. }
  3763. ],
  3764. "description": "Formats date ranges.",
  3765. "homepage": "https://www.drupal.org/project/date_range_formatter",
  3766. "support": {
  3767. "source": "https://git.drupalcode.org/project/date_range_formatter"
  3768. }
  3769. },
  3770. {
  3771. "name": "drupal/devel",
  3772. "version": "2.1.0",
  3773. "source": {
  3774. "type": "git",
  3775. "url": "https://git.drupalcode.org/project/devel.git",
  3776. "reference": "8.x-2.1"
  3777. },
  3778. "dist": {
  3779. "type": "zip",
  3780. "url": "https://ftp.drupal.org/files/projects/devel-8.x-2.1.zip",
  3781. "reference": "8.x-2.1",
  3782. "shasum": "8f735892922aa5f228e681e645e5f02b1c008f14"
  3783. },
  3784. "require": {
  3785. "drupal/core": "~8.0",
  3786. "symfony/var-dumper": "~2.7|^3|^4"
  3787. },
  3788. "type": "drupal-module",
  3789. "extra": {
  3790. "branch-alias": {
  3791. "dev-2.x": "2.x-dev"
  3792. },
  3793. "drupal": {
  3794. "version": "8.x-2.1",
  3795. "datestamp": "1556799496",
  3796. "security-coverage": {
  3797. "status": "covered",
  3798. "message": "Covered by Drupal's security advisory policy"
  3799. }
  3800. },
  3801. "drush": {
  3802. "services": {
  3803. "drush.services.yml": "^9"
  3804. }
  3805. }
  3806. },
  3807. "notification-url": "https://packages.drupal.org/8/downloads",
  3808. "license": [
  3809. "GPL-2.0+"
  3810. ],
  3811. "authors": [
  3812. {
  3813. "name": "Moshe Weitzman",
  3814. "homepage": "https://github.com/weitzman",
  3815. "email": "weitzman@tejasa.com",
  3816. "role": "Maintainer"
  3817. },
  3818. {
  3819. "name": "Hans Salvisberg",
  3820. "homepage": "https://www.drupal.org/u/salvis",
  3821. "email": "drupal@salvisberg.com",
  3822. "role": "Maintainer"
  3823. },
  3824. {
  3825. "name": "Luca Lusso",
  3826. "homepage": "https://www.drupal.org/u/lussoluca",
  3827. "role": "Maintainer"
  3828. },
  3829. {
  3830. "name": "Marco (willzyx)",
  3831. "homepage": "https://www.drupal.org/u/willzyx",
  3832. "role": "Maintainer"
  3833. },
  3834. {
  3835. "name": "See contributors",
  3836. "homepage": "https://www.drupal.org/node/3236/committers"
  3837. },
  3838. {
  3839. "name": "salvis",
  3840. "homepage": "https://www.drupal.org/user/82964"
  3841. },
  3842. {
  3843. "name": "willzyx",
  3844. "homepage": "https://www.drupal.org/user/1043862"
  3845. }
  3846. ],
  3847. "description": "Various blocks, pages, and functions for developers.",
  3848. "homepage": "http://drupal.org/project/devel",
  3849. "support": {
  3850. "source": "http://cgit.drupalcode.org/devel",
  3851. "issues": "http://drupal.org/project/devel",
  3852. "irc": "irc://irc.freenode.org/drupal-contribute"
  3853. }
  3854. },
  3855. {
  3856. "name": "drupal/domain",
  3857. "version": "1.0.0-alpha16",
  3858. "source": {
  3859. "type": "git",
  3860. "url": "https://git.drupalcode.org/project/domain.git",
  3861. "reference": "8.x-1.0-alpha16"
  3862. },
  3863. "dist": {
  3864. "type": "zip",
  3865. "url": "https://ftp.drupal.org/files/projects/domain-8.x-1.0-alpha16.zip",
  3866. "reference": "8.x-1.0-alpha16",
  3867. "shasum": "d0088936af09e922ec873080d7960a1dc020bef8"
  3868. },
  3869. "require": {
  3870. "drupal/core": "^8.5"
  3871. },
  3872. "require-dev": {
  3873. "drupal/domain_access": "*"
  3874. },
  3875. "type": "drupal-module",
  3876. "extra": {
  3877. "branch-alias": {
  3878. "dev-1.x": "1.x-dev"
  3879. },
  3880. "drupal": {
  3881. "version": "8.x-1.0-alpha16",
  3882. "datestamp": "1561126081",
  3883. "security-coverage": {
  3884. "status": "not-covered",
  3885. "message": "Alpha releases are not covered by Drupal security advisories."
  3886. }
  3887. }
  3888. },
  3889. "notification-url": "https://packages.drupal.org/8/downloads",
  3890. "license": [
  3891. "GPL-2.0-or-later"
  3892. ],
  3893. "authors": [
  3894. {
  3895. "name": "agentrickard",
  3896. "homepage": "https://www.drupal.org/user/20975"
  3897. },
  3898. {
  3899. "name": "nonsie",
  3900. "homepage": "https://www.drupal.org/user/29899"
  3901. }
  3902. ],
  3903. "description": "Creates domain records within a Drupal installation.",
  3904. "homepage": "https://www.drupal.org/project/domain",
  3905. "support": {
  3906. "source": "https://git.drupalcode.org/project/domain"
  3907. }
  3908. },
  3909. {
  3910. "name": "drupal/domain_access",
  3911. "version": "1.0.0-alpha16",
  3912. "require": {
  3913. "drupal/core": "*",
  3914. "drupal/domain": "self.version"
  3915. },
  3916. "type": "metapackage",
  3917. "extra": {
  3918. "branch-alias": {
  3919. "dev-1.x": "1.x-dev"
  3920. },
  3921. "drupal": {
  3922. "version": "8.x-1.0-alpha16",
  3923. "datestamp": "1561126081",
  3924. "security-coverage": {
  3925. "status": "not-covered",
  3926. "message": "Alpha releases are not covered by Drupal security advisories."
  3927. }
  3928. }
  3929. },
  3930. "notification-url": "https://packages.drupal.org/8/downloads",
  3931. "license": [
  3932. "GPL-2.0-or-later"
  3933. ],
  3934. "authors": [
  3935. {
  3936. "name": "agentrickard",
  3937. "homepage": "https://www.drupal.org/user/20975"
  3938. },
  3939. {
  3940. "name": "nonsie",
  3941. "homepage": "https://www.drupal.org/user/29899"
  3942. }
  3943. ],
  3944. "description": "Domain-based access control for content.",
  3945. "homepage": "https://www.drupal.org/project/domain",
  3946. "support": {
  3947. "source": "https://git.drupalcode.org/project/domain"
  3948. }
  3949. },
  3950. {
  3951. "name": "drupal/domain_config",
  3952. "version": "1.0.0-alpha16",
  3953. "require": {
  3954. "drupal/core": "~8.0",
  3955. "drupal/domain": "self.version"
  3956. },
  3957. "type": "metapackage",
  3958. "extra": {
  3959. "branch-alias": {
  3960. "dev-1.x": "1.x-dev"
  3961. },
  3962. "drupal": {
  3963. "version": "8.x-1.0-alpha16",
  3964. "datestamp": "1561126081",
  3965. "security-coverage": {
  3966. "status": "not-covered",
  3967. "message": "Alpha releases are not covered by Drupal security advisories."
  3968. }
  3969. }
  3970. },
  3971. "notification-url": "https://packages.drupal.org/8/downloads",
  3972. "license": [
  3973. "GPL-2.0-or-later"
  3974. ],
  3975. "authors": [
  3976. {
  3977. "name": "agentrickard",
  3978. "homepage": "https://www.drupal.org/user/20975"
  3979. },
  3980. {
  3981. "name": "nonsie",
  3982. "homepage": "https://www.drupal.org/user/29899"
  3983. }
  3984. ],
  3985. "description": "Allows domain specific configuration.",
  3986. "homepage": "https://www.drupal.org/project/domain",
  3987. "support": {
  3988. "source": "https://git.drupalcode.org/project/domain"
  3989. }
  3990. },
  3991. {
  3992. "name": "drupal/domain_menu_access",
  3993. "version": "dev-1.x",
  3994. "source": {
  3995. "type": "git",
  3996. "url": "https://git.drupalcode.org/project/domain_menu_access.git",
  3997. "reference": "cd62e57ec09be4eca491e18e50092e10c19750f2"
  3998. },
  3999. "require": {
  4000. "drupal/core": "~8.0",
  4001. "drupal/domain": "^1",
  4002. "drupal/domain_access": "^1"
  4003. },
  4004. "type": "drupal-module",
  4005. "extra": {
  4006. "branch-alias": {
  4007. "dev-1.x": "1.x-dev"
  4008. },
  4009. "drupal": {
  4010. "version": "8.x-1.0-alpha2+3-dev",
  4011. "datestamp": "1551553085",
  4012. "security-coverage": {
  4013. "status": "not-covered",
  4014. "message": "Dev releases are not covered by Drupal security advisories."
  4015. }
  4016. }
  4017. },
  4018. "notification-url": "https://packages.drupal.org/8/downloads",
  4019. "license": [
  4020. "GPL-2.0+"
  4021. ],
  4022. "authors": [
  4023. {
  4024. "name": "Sebastien @Actualys",
  4025. "homepage": "https://www.drupal.org/user/380104"
  4026. },
  4027. {
  4028. "name": "maciej.zgadzaj",
  4029. "homepage": "https://www.drupal.org/user/271491"
  4030. },
  4031. {
  4032. "name": "pifagor",
  4033. "homepage": "https://www.drupal.org/user/2375692"
  4034. }
  4035. ],
  4036. "description": "Domain-based access control for menu link.",
  4037. "homepage": "https://www.drupal.org/project/domain_menu_access",
  4038. "support": {
  4039. "source": "https://git.drupalcode.org/project/domain_menu_access"
  4040. },
  4041. "time": "2019-04-11T06:07:16+00:00"
  4042. },
  4043. {
  4044. "name": "drupal/domain_site_settings",
  4045. "version": "1.3.0",
  4046. "source": {
  4047. "type": "git",
  4048. "url": "https://git.drupalcode.org/project/domain_site_settings.git",
  4049. "reference": "8.x-1.3"
  4050. },
  4051. "dist": {
  4052. "type": "zip",
  4053. "url": "https://ftp.drupal.org/files/projects/domain_site_settings-8.x-1.3.zip",
  4054. "reference": "8.x-1.3",
  4055. "shasum": "36ad22d8e31400f372b9e7f587578061b4fdc5db"
  4056. },
  4057. "require": {
  4058. "drupal/core": "~8.0",
  4059. "drupal/domain": "*",
  4060. "drupal/domain_config": "*"
  4061. },
  4062. "type": "drupal-module",
  4063. "extra": {
  4064. "branch-alias": {
  4065. "dev-1.x": "1.x-dev"
  4066. },
  4067. "drupal": {
  4068. "version": "8.x-1.3",
  4069. "datestamp": "1537684980",
  4070. "security-coverage": {
  4071. "status": "covered",
  4072. "message": "Covered by Drupal's security advisory policy"
  4073. }
  4074. },
  4075. "patches_applied": {
  4076. "Circular Error or Conflict with Language_Manager": "https://www.drupal.org/files/issues/2018-10-09/2930391-21.patch"
  4077. }
  4078. },
  4079. "notification-url": "https://packages.drupal.org/8/downloads",
  4080. "license": [
  4081. "GPL-2.0+"
  4082. ],
  4083. "authors": [
  4084. {
  4085. "name": "aloknarwaria",
  4086. "homepage": "https://www.drupal.org/user/906640"
  4087. }
  4088. ],
  4089. "description": "Basic Site Setting for Domains.",
  4090. "homepage": "https://www.drupal.org/project/domain_site_settings",
  4091. "keywords": [
  4092. "Drupal"
  4093. ],
  4094. "support": {
  4095. "source": "http://cgit.drupalcode.org/domain_site_settings",
  4096. "issues": "https://www.drupal.org/project/issues/domain_site_settings"
  4097. }
  4098. },
  4099. {
  4100. "name": "drupal/email_registration",
  4101. "version": "1.0.0-rc7",
  4102. "source": {
  4103. "type": "git",
  4104. "url": "https://git.drupalcode.org/project/email_registration.git",
  4105. "reference": "8.x-1.0-rc7"
  4106. },
  4107. "dist": {
  4108. "type": "zip",
  4109. "url": "https://ftp.drupal.org/files/projects/email_registration-8.x-1.0-rc7.zip",
  4110. "reference": "8.x-1.0-rc7",
  4111. "shasum": "a3ebc1e38539e7916f48e827d5bd7b1abeef0011"
  4112. },
  4113. "require": {
  4114. "drupal/core": "*"
  4115. },
  4116. "type": "drupal-module",
  4117. "extra": {
  4118. "branch-alias": {
  4119. "dev-1.x": "1.x-dev"
  4120. },
  4121. "drupal": {
  4122. "version": "8.x-1.0-rc7",
  4123. "datestamp": "1557344281",
  4124. "security-coverage": {
  4125. "status": "not-covered",
  4126. "message": "RC releases are not covered by Drupal security advisories."
  4127. }
  4128. }
  4129. },
  4130. "notification-url": "https://packages.drupal.org/8/downloads",
  4131. "license": [
  4132. "GPL-2.0+"
  4133. ],
  4134. "authors": [
  4135. {
  4136. "name": "Greg Knaddison (greggles)",
  4137. "homepage": "https://www.drupal.org/u/greggles",
  4138. "role": "Maintainer"
  4139. },
  4140. {
  4141. "name": "Andrey Postnikov (andypost)",
  4142. "homepage": "https://www.drupal.org/u/andypost",
  4143. "role": "Maintainer"
  4144. },
  4145. {
  4146. "name": "Chris Herberte",
  4147. "homepage": "https://www.drupal.org/u/chris-herberte",
  4148. "role": "Maintainer"
  4149. },
  4150. {
  4151. "name": "Moshe Weitzman (moshe weitzman)",
  4152. "homepage": "https://www.drupal.org/u/moshe-weitzman",
  4153. "role": "Maintainer"
  4154. }
  4155. ],
  4156. "description": "Allows users to register with an email address as their username.",
  4157. "homepage": "https://www.drupal.org/project/email_registration",
  4158. "support": {
  4159. "source": "http://cgit.drupalcode.org/email_registration",
  4160. "issues": "http://drupal.org/project/issues/email_registration"
  4161. }
  4162. },
  4163. {
  4164. "name": "drupal/entity",
  4165. "version": "1.0.0-rc3",
  4166. "source": {
  4167. "type": "git",
  4168. "url": "https://git.drupalcode.org/project/entity.git",
  4169. "reference": "8.x-1.0-rc3"
  4170. },
  4171. "dist": {
  4172. "type": "zip",
  4173. "url": "https://ftp.drupal.org/files/projects/entity-8.x-1.0-rc3.zip",
  4174. "reference": "8.x-1.0-rc3",
  4175. "shasum": "6b4ccc0231c52ed9594502a0718057f53d98404d"
  4176. },
  4177. "require": {
  4178. "drupal/core": "^8.6"
  4179. },
  4180. "type": "drupal-module",
  4181. "extra": {
  4182. "branch-alias": {
  4183. "dev-1.x": "1.x-dev"
  4184. },
  4185. "drupal": {
  4186. "version": "8.x-1.0-rc3",
  4187. "datestamp": "1559579884",
  4188. "security-coverage": {
  4189. "status": "not-covered",
  4190. "message": "RC releases are not covered by Drupal security advisories."
  4191. }
  4192. }
  4193. },
  4194. "notification-url": "https://packages.drupal.org/8/downloads",
  4195. "license": [
  4196. "GPL-2.0+"
  4197. ],
  4198. "authors": [
  4199. {
  4200. "name": "Berdir",
  4201. "homepage": "https://www.drupal.org/user/214652"
  4202. },
  4203. {
  4204. "name": "bojanz",
  4205. "homepage": "https://www.drupal.org/user/86106"
  4206. },
  4207. {
  4208. "name": "dawehner",
  4209. "homepage": "https://www.drupal.org/user/99340"
  4210. },
  4211. {
  4212. "name": "dixon_",
  4213. "homepage": "https://www.drupal.org/user/239911"
  4214. },
  4215. {
  4216. "name": "fago",
  4217. "homepage": "https://www.drupal.org/user/16747"
  4218. }
  4219. ],
  4220. "description": "Provides expanded entity APIs, which will be moved to Drupal core one day.",
  4221. "homepage": "http://drupal.org/project/entity",
  4222. "support": {
  4223. "source": "https://git.drupalcode.org/project/entity"
  4224. }
  4225. },
  4226. {
  4227. "name": "drupal/features",
  4228. "version": "3.8.0",
  4229. "source": {
  4230. "type": "git",
  4231. "url": "https://git.drupalcode.org/project/features.git",
  4232. "reference": "8.x-3.8"
  4233. },
  4234. "dist": {
  4235. "type": "zip",
  4236. "url": "https://ftp.drupal.org/files/projects/features-8.x-3.8.zip",
  4237. "reference": "8.x-3.8",
  4238. "shasum": "15cebd00e38d63c0d946682e76327a03499c27be"
  4239. },
  4240. "require": {
  4241. "drupal/config_update": "^1.4",
  4242. "drupal/core": "*"
  4243. },
  4244. "type": "drupal-module",
  4245. "extra": {
  4246. "branch-alias": {
  4247. "dev-3.x": "3.x-dev"
  4248. },
  4249. "drupal": {
  4250. "version": "8.x-3.8",
  4251. "datestamp": "1536512284",
  4252. "security-coverage": {
  4253. "status": "covered",
  4254. "message": "Covered by Drupal's security advisory policy"
  4255. }
  4256. },
  4257. "drush": {
  4258. "services": {
  4259. "drush.services.yml": "^9"
  4260. }
  4261. }
  4262. },
  4263. "notification-url": "https://packages.drupal.org/8/downloads",
  4264. "license": [
  4265. "GPL-2.0+"
  4266. ],
  4267. "authors": [
  4268. {
  4269. "name": "dawehner",
  4270. "homepage": "https://www.drupal.org/user/99340"
  4271. },
  4272. {
  4273. "name": "e2thex",
  4274. "homepage": "https://www.drupal.org/user/189123"
  4275. },
  4276. {
  4277. "name": "febbraro",
  4278. "homepage": "https://www.drupal.org/user/43670"
  4279. },
  4280. {
  4281. "name": "jmiccolis",
  4282. "homepage": "https://www.drupal.org/user/31731"
  4283. },
  4284. {
  4285. "name": "joseph.olstad",
  4286. "homepage": "https://www.drupal.org/user/1321830"
  4287. },
  4288. {
  4289. "name": "mpotter",
  4290. "homepage": "https://www.drupal.org/user/616192"
  4291. },
  4292. {
  4293. "name": "nedjo",
  4294. "homepage": "https://www.drupal.org/user/4481"
  4295. },
  4296. {
  4297. "name": "tim.plunkett",
  4298. "homepage": "https://www.drupal.org/user/241634"
  4299. }
  4300. ],
  4301. "description": "Enables administrators to package configuration into modules",
  4302. "homepage": "https://www.drupal.org/project/features",
  4303. "support": {
  4304. "source": "https://git.drupalcode.org/project/features"
  4305. }
  4306. },
  4307. {
  4308. "name": "drupal/field_group",
  4309. "version": "3.0.0-rc1",
  4310. "source": {
  4311. "type": "git",
  4312. "url": "https://git.drupalcode.org/project/field_group.git",
  4313. "reference": "8.x-3.0-rc1"
  4314. },
  4315. "dist": {
  4316. "type": "zip",
  4317. "url": "https://ftp.drupal.org/files/projects/field_group-8.x-3.0-rc1.zip",
  4318. "reference": "8.x-3.0-rc1",
  4319. "shasum": "e291b5468c834a344e9aa6cafd3a76171d473a22"
  4320. },
  4321. "require": {
  4322. "drupal/core": "*"
  4323. },
  4324. "type": "drupal-module",
  4325. "extra": {
  4326. "branch-alias": {
  4327. "dev-3.x": "3.x-dev"
  4328. },
  4329. "drupal": {
  4330. "version": "8.x-3.0-rc1",
  4331. "datestamp": "1558678323",
  4332. "security-coverage": {
  4333. "status": "not-covered",
  4334. "message": "RC releases are not covered by Drupal security advisories."
  4335. }
  4336. }
  4337. },
  4338. "notification-url": "https://packages.drupal.org/8/downloads",
  4339. "license": [
  4340. "GPL-2.0+"
  4341. ],
  4342. "authors": [
  4343. {
  4344. "name": "Hydra",
  4345. "homepage": "https://www.drupal.org/user/647364"
  4346. },
  4347. {
  4348. "name": "Stalski",
  4349. "homepage": "https://www.drupal.org/user/322618"
  4350. },
  4351. {
  4352. "name": "jyve",
  4353. "homepage": "https://www.drupal.org/user/591438"
  4354. },
  4355. {
  4356. "name": "swentel",
  4357. "homepage": "https://www.drupal.org/user/107403"
  4358. },
  4359. {
  4360. "name": "zuuperman",
  4361. "homepage": "https://www.drupal.org/user/361625"
  4362. }
  4363. ],
  4364. "description": "Provides the field_group module.",
  4365. "homepage": "https://www.drupal.org/project/field_group",
  4366. "support": {
  4367. "source": "https://git.drupalcode.org/project/field_group"
  4368. }
  4369. },
  4370. {
  4371. "name": "drupal/filefield_sources",
  4372. "version": "dev-1.x",
  4373. "source": {
  4374. "type": "git",
  4375. "url": "https://git.drupalcode.org/project/filefield_sources.git",
  4376. "reference": "6da74b585fcdc66bf5b1f5b3d9c6985df137fa2a"
  4377. },
  4378. "require": {
  4379. "drupal/core": "*"
  4380. },
  4381. "require-dev": {
  4382. "drupal/imce": "*"
  4383. },
  4384. "type": "drupal-module",
  4385. "extra": {
  4386. "branch-alias": {
  4387. "dev-1.x": "1.x-dev"
  4388. },
  4389. "drupal": {
  4390. "version": "8.x-1.0-alpha1+5-dev",
  4391. "datestamp": "1556769786",
  4392. "security-coverage": {
  4393. "status": "not-covered",
  4394. "message": "Dev releases are not covered by Drupal security advisories."
  4395. }
  4396. }
  4397. },
  4398. "notification-url": "https://packages.drupal.org/8/downloads",
  4399. "license": [
  4400. "GPL-2.0-or-later"
  4401. ],
  4402. "authors": [
  4403. {
  4404. "name": "Nate Lampton (quicksketch)",
  4405. "homepage": "https://www.drupal.org/u/quicksketch",
  4406. "role": "Maintainer"
  4407. },
  4408. {
  4409. "name": "Andrey Khromyshev (profak)",
  4410. "homepage": "https://www.drupal.org/u/profak",
  4411. "role": "Maintainer"
  4412. },
  4413. {
  4414. "name": "David Valdez (gnuget)",
  4415. "homepage": "https://www.drupal.org/u/gnuget",
  4416. "role": "Maintainer"
  4417. }
  4418. ],
  4419. "description": "Extends File fields to allow referencing of existing files, remote files, and server files.",
  4420. "homepage": "https://www.drupal.org/project/filefield_sources",
  4421. "support": {
  4422. "source": "https://git.drupalcode.org/project/filefield_sources",
  4423. "issues": "https://www.drupal.org/project/issues/filefield_sources",
  4424. "irc": "irc://irc.freenode.org/drupal-contribute"
  4425. },
  4426. "time": "2019-05-03T18:32:19+00:00"
  4427. },
  4428. {
  4429. "name": "drupal/filter_perms",
  4430. "version": "dev-1.x",
  4431. "source": {
  4432. "type": "git",
  4433. "url": "https://git.drupalcode.org/project/filter_perms.git",
  4434. "reference": "f491dd73fd876f6de0b2252c6b9bf18e0e27b357"
  4435. },
  4436. "require": {
  4437. "drupal/core": "*"
  4438. },
  4439. "type": "drupal-module",
  4440. "extra": {
  4441. "branch-alias": {
  4442. "dev-1.x": "1.x-dev"
  4443. },
  4444. "drupal": {
  4445. "version": "8.x-1.x-dev",
  4446. "datestamp": "1469645939",
  4447. "security-coverage": {
  4448. "status": "not-covered",
  4449. "message": "Dev releases are not covered by Drupal security advisories."
  4450. }
  4451. }
  4452. },
  4453. "notification-url": "https://packages.drupal.org/8/downloads",
  4454. "license": [
  4455. "GPL-2.0-or-later"
  4456. ],
  4457. "authors": [
  4458. {
  4459. "name": "cYu",
  4460. "homepage": "https://www.drupal.org/user/202205"
  4461. },
  4462. {
  4463. "name": "deekayen",
  4464. "homepage": "https://www.drupal.org/user/972"
  4465. },
  4466. {
  4467. "name": "willzyx",
  4468. "homepage": "https://www.drupal.org/user/1043862"
  4469. }
  4470. ],
  4471. "description": "Provides role and module filters to simplify the user permissions page.",
  4472. "homepage": "https://www.drupal.org/project/filter_perms",
  4473. "support": {
  4474. "source": "https://git.drupalcode.org/project/filter_perms"
  4475. },
  4476. "time": "2016-07-27T19:01:11+00:00"
  4477. },
  4478. {
  4479. "name": "drupal/honeypot",
  4480. "version": "1.29.0",
  4481. "source": {
  4482. "type": "git",
  4483. "url": "https://git.drupalcode.org/project/honeypot.git",
  4484. "reference": "8.x-1.29"
  4485. },
  4486. "dist": {
  4487. "type": "zip",
  4488. "url": "https://ftp.drupal.org/files/projects/honeypot-8.x-1.29.zip",
  4489. "reference": "8.x-1.29",
  4490. "shasum": "029d9e068d8f6a5db52434c27dc71bd3f06da487"
  4491. },
  4492. "require": {
  4493. "drupal/core": "~8.0"
  4494. },
  4495. "type": "drupal-module",
  4496. "extra": {
  4497. "branch-alias": {
  4498. "dev-1.x": "1.x-dev"
  4499. },
  4500. "drupal": {
  4501. "version": "8.x-1.29",
  4502. "datestamp": "1536179280",
  4503. "security-coverage": {
  4504. "status": "covered",
  4505. "message": "Covered by Drupal's security advisory policy"
  4506. }
  4507. }
  4508. },
  4509. "notification-url": "https://packages.drupal.org/8/downloads",
  4510. "license": [
  4511. "GPL-2.0+"
  4512. ],
  4513. "authors": [
  4514. {
  4515. "name": "Jeff Geerling",
  4516. "homepage": "https://www.drupal.org/user/213194",
  4517. "email": "geerlingguy@mac.com"
  4518. },
  4519. {
  4520. "name": "geerlingguy",
  4521. "homepage": "https://www.drupal.org/user/389011"
  4522. },
  4523. {
  4524. "name": "vijaycs85",
  4525. "homepage": "https://www.drupal.org/user/93488"
  4526. }
  4527. ],
  4528. "description": "Mitigates spam form submissions using the honeypot method.",
  4529. "homepage": "https://www.drupal.org/project/honeypot",
  4530. "keywords": [
  4531. "deterrent",
  4532. "form",
  4533. "honeypot",
  4534. "honeytrap",
  4535. "php",
  4536. "spam"
  4537. ],
  4538. "support": {
  4539. "source": "https://git.drupalcode.org/project/honeypot"
  4540. }
  4541. },
  4542. {
  4543. "name": "drupal/linkit",
  4544. "version": "5.0.0-beta9",
  4545. "source": {
  4546. "type": "git",
  4547. "url": "https://git.drupalcode.org/project/linkit.git",
  4548. "reference": "8.x-5.0-beta9"
  4549. },
  4550. "dist": {
  4551. "type": "zip",
  4552. "url": "https://ftp.drupal.org/files/projects/linkit-8.x-5.0-beta9.zip",
  4553. "reference": "8.x-5.0-beta9",
  4554. "shasum": "150291dd87a4f65027492020c28635e2b5249d1a"
  4555. },
  4556. "require": {
  4557. "drupal/core": "~8.0"
  4558. },
  4559. "require-dev": {
  4560. "drupal/imce": "*"
  4561. },
  4562. "type": "drupal-module",
  4563. "extra": {
  4564. "branch-alias": {
  4565. "dev-5.x": "5.x-dev"
  4566. },
  4567. "drupal": {
  4568. "version": "8.x-5.0-beta9",
  4569. "datestamp": "1562194985",
  4570. "security-coverage": {
  4571. "status": "not-covered",
  4572. "message": "Beta releases are not covered by Drupal security advisories."
  4573. }
  4574. }
  4575. },
  4576. "notification-url": "https://packages.drupal.org/8/downloads",
  4577. "license": [
  4578. "GPL-2.0+"
  4579. ],
  4580. "authors": [
  4581. {
  4582. "name": "Emil Stjerneman",
  4583. "homepage": "https://stjerneman.com",
  4584. "email": "emil@stjerneman.com",
  4585. "role": "Maintainer"
  4586. }
  4587. ],
  4588. "description": "Linkit - Enriched linking experience",
  4589. "homepage": "http://drupal.org/project/linkit",
  4590. "support": {
  4591. "source": "http://cgit.drupalcode.org/linkit",
  4592. "issues": "http://drupal.org/project/linkit"
  4593. }
  4594. },
  4595. {
  4596. "name": "drupal/maillog",
  4597. "version": "dev-1.x",
  4598. "source": {
  4599. "type": "git",
  4600. "url": "https://git.drupalcode.org/project/maillog.git",
  4601. "reference": "14fd24cd89e299ad271608cd52706c60b753c26d"
  4602. },
  4603. "require": {
  4604. "drupal/core": "*"
  4605. },
  4606. "type": "drupal-module",
  4607. "extra": {
  4608. "branch-alias": {
  4609. "dev-1.x": "1.x-dev"
  4610. },
  4611. "drupal": {
  4612. "version": "8.x-1.x-dev",
  4613. "datestamp": "1470431939",
  4614. "security-coverage": {
  4615. "status": "not-covered",
  4616. "message": "Project has not opted into security advisory coverage!"
  4617. }
  4618. }
  4619. },
  4620. "notification-url": "https://packages.drupal.org/8/downloads",
  4621. "license": [
  4622. "GPL-2.0-or-later"
  4623. ],
  4624. "authors": [
  4625. {
  4626. "name": "Berdir",
  4627. "homepage": "https://www.drupal.org/user/214652"
  4628. },
  4629. {
  4630. "name": "DamienMcKenna",
  4631. "homepage": "https://www.drupal.org/user/108450"
  4632. },
  4633. {
  4634. "name": "miro_dietiker",
  4635. "homepage": "https://www.drupal.org/user/227761"
  4636. },
  4637. {
  4638. "name": "pluess",
  4639. "homepage": "https://www.drupal.org/user/84659"
  4640. }
  4641. ],
  4642. "description": "Utility to log all Mails for debugging purposes. It is possible to suppress mail delivery for e.g. dev or staging systems.",
  4643. "homepage": "https://www.drupal.org/project/maillog",
  4644. "support": {
  4645. "source": "https://git.drupalcode.org/project/maillog"
  4646. },
  4647. "time": "2016-08-05T21:18:07+00:00"
  4648. },
  4649. {
  4650. "name": "drupal/matomo",
  4651. "version": "1.9.0",
  4652. "source": {
  4653. "type": "git",
  4654. "url": "https://git.drupalcode.org/project/matomo.git",
  4655. "reference": "8.x-1.9"
  4656. },
  4657. "dist": {
  4658. "type": "zip",
  4659. "url": "https://ftp.drupal.org/files/projects/matomo-8.x-1.9.zip",
  4660. "reference": "8.x-1.9",
  4661. "shasum": "2c818af730f834d3aef3f6b7aa29f05e6fa9246d"
  4662. },
  4663. "require": {
  4664. "drupal/core": "~8.5"
  4665. },
  4666. "require-dev": {
  4667. "drupal/php": "*",
  4668. "drupal/token": "*"
  4669. },
  4670. "type": "drupal-module",
  4671. "extra": {
  4672. "branch-alias": {
  4673. "dev-1.x": "1.x-dev"
  4674. },
  4675. "drupal": {
  4676. "version": "8.x-1.9",
  4677. "datestamp": "1549615080",
  4678. "security-coverage": {
  4679. "status": "covered",
  4680. "message": "Covered by Drupal's security advisory policy"
  4681. }
  4682. }
  4683. },
  4684. "notification-url": "https://packages.drupal.org/8/downloads",
  4685. "license": [
  4686. "GPL-2.0+"
  4687. ],
  4688. "authors": [
  4689. {
  4690. "name": "hass",
  4691. "homepage": "https://www.drupal.org/u/hass"
  4692. },
  4693. {
  4694. "name": "See other contributors",
  4695. "homepage": "https://www.drupal.org/node/247808/committers"
  4696. }
  4697. ],
  4698. "description": "Adds Matomo javascript tracking code to all your site's pages",
  4699. "homepage": "https://www.drupal.org/project/matomo",
  4700. "support": {
  4701. "source": "https://git.drupal.org/project/matomo.git",
  4702. "issues": "https://www.drupal.org/project/issues/matomo"
  4703. }
  4704. },
  4705. {
  4706. "name": "drupal/menu_admin_per_menu",
  4707. "version": "1.0.0",
  4708. "source": {
  4709. "type": "git",
  4710. "url": "https://git.drupalcode.org/project/menu_admin_per_menu.git",
  4711. "reference": "8.x-1.0"
  4712. },
  4713. "dist": {
  4714. "type": "zip",
  4715. "url": "https://ftp.drupal.org/files/projects/menu_admin_per_menu-8.x-1.0.zip",
  4716. "reference": "8.x-1.0",
  4717. "shasum": "27dbef0025146a382feab67db5e93eaf280b8de4"
  4718. },
  4719. "require": {
  4720. "drupal/core": "*"
  4721. },
  4722. "type": "drupal-module",
  4723. "extra": {
  4724. "branch-alias": {
  4725. "dev-1.x": "1.x-dev"
  4726. },
  4727. "drupal": {
  4728. "version": "8.x-1.0",
  4729. "datestamp": "1507184944",
  4730. "security-coverage": {
  4731. "status": "covered",
  4732. "message": "Covered by Drupal's security advisory policy"
  4733. }
  4734. }
  4735. },
  4736. "notification-url": "https://packages.drupal.org/8/downloads",
  4737. "license": [
  4738. "GPL-2.0-or-later"
  4739. ],
  4740. "authors": [
  4741. {
  4742. "name": "anrikun",
  4743. "homepage": "https://www.drupal.org/user/410199"
  4744. },
  4745. {
  4746. "name": "mkdok",
  4747. "homepage": "https://www.drupal.org/user/3308753"
  4748. }
  4749. ],
  4750. "description": "Allows to give roles per menu admin permissions without giving them full administer menu permission.",
  4751. "homepage": "https://www.drupal.org/project/menu_admin_per_menu",
  4752. "support": {
  4753. "source": "https://git.drupalcode.org/project/menu_admin_per_menu"
  4754. }
  4755. },
  4756. {
  4757. "name": "drupal/metatag",
  4758. "version": "1.10.0",
  4759. "source": {
  4760. "type": "git",
  4761. "url": "https://git.drupalcode.org/project/metatag.git",
  4762. "reference": "8.x-1.10"
  4763. },
  4764. "dist": {
  4765. "type": "zip",
  4766. "url": "https://ftp.drupal.org/files/projects/metatag-8.x-1.10.zip",
  4767. "reference": "8.x-1.10",
  4768. "shasum": "06275ae0f72cfcdbec8b8e8fd5d0863a5967bbcc"
  4769. },
  4770. "require": {
  4771. "drupal/core": "*",
  4772. "drupal/token": "^1.0"
  4773. },
  4774. "require-dev": {
  4775. "drupal/devel": "^2.0",
  4776. "drupal/metatag_dc": "*",
  4777. "drupal/metatag_open_graph": "*",
  4778. "drupal/page_manager": "^4.0",
  4779. "drupal/redirect": "^1.0",
  4780. "drupal/restui": "^1.0",
  4781. "drupal/schema_metatag": "^1.0",
  4782. "drupal/schema_web_page": "*"
  4783. },
  4784. "type": "drupal-module",
  4785. "extra": {
  4786. "branch-alias": {
  4787. "dev-1.x": "1.x-dev"
  4788. },
  4789. "drupal": {
  4790. "version": "8.x-1.10",
  4791. "datestamp": "1567099985",
  4792. "security-coverage": {
  4793. "status": "covered",
  4794. "message": "Covered by Drupal's security advisory policy"
  4795. }
  4796. }
  4797. },
  4798. "notification-url": "https://packages.drupal.org/8/downloads",
  4799. "license": [
  4800. "GPL-2.0+"
  4801. ],
  4802. "authors": [
  4803. {
  4804. "name": "See contributors",
  4805. "homepage": "https://www.drupal.org/node/640498/committers",
  4806. "role": "Developer"
  4807. },
  4808. {
  4809. "name": "Dave Reid",
  4810. "homepage": "https://www.drupal.org/user/53892"
  4811. }
  4812. ],
  4813. "description": "Manage meta tags for all entities.",
  4814. "homepage": "https://www.drupal.org/project/metatag",
  4815. "keywords": [
  4816. "Drupal",
  4817. "seo"
  4818. ],
  4819. "support": {
  4820. "source": "http://cgit.drupalcode.org/metatag",
  4821. "issues": "http://drupal.org/project/issues/metatag"
  4822. }
  4823. },
  4824. {
  4825. "name": "drupal/migrate_plus",
  4826. "version": "4.2.0",
  4827. "source": {
  4828. "type": "git",
  4829. "url": "https://git.drupalcode.org/project/migrate_plus.git",
  4830. "reference": "8.x-4.2"
  4831. },
  4832. "dist": {
  4833. "type": "zip",
  4834. "url": "https://ftp.drupal.org/files/projects/migrate_plus-8.x-4.2.zip",
  4835. "reference": "8.x-4.2",
  4836. "shasum": "5736a43e39cc5c091d54ceef2849ea35ba979af3"
  4837. },
  4838. "require": {
  4839. "drupal/core": "^8.3"
  4840. },
  4841. "require-dev": {
  4842. "drupal/entity": "*",
  4843. "drupal/migrate_example_advanced_setup": "*",
  4844. "drupal/migrate_example_setup": "*",
  4845. "drupal/migrate_tools": "*",
  4846. "drupal/profile": "*"
  4847. },
  4848. "suggest": {
  4849. "ext-soap": "*",
  4850. "sainsburys/guzzle-oauth2-plugin": "3.0 required for the OAuth2 authentication plugin"
  4851. },
  4852. "type": "drupal-module",
  4853. "extra": {
  4854. "branch-alias": {
  4855. "dev-4.x": "4.x-dev"
  4856. },
  4857. "drupal": {
  4858. "version": "8.x-4.2",
  4859. "datestamp": "1555683487",
  4860. "security-coverage": {
  4861. "status": "covered",
  4862. "message": "Covered by Drupal's security advisory policy"
  4863. }
  4864. }
  4865. },
  4866. "notification-url": "https://packages.drupal.org/8/downloads",
  4867. "license": [
  4868. "GPL-2.0+"
  4869. ],
  4870. "authors": [
  4871. {
  4872. "name": "Mike Ryan",
  4873. "homepage": "https://www.drupal.org/u/mikeryan",
  4874. "role": "Maintainer"
  4875. },
  4876. {
  4877. "name": "mikeryan",
  4878. "homepage": "https://www.drupal.org/user/4420"
  4879. }
  4880. ],
  4881. "description": "Enhancements to core migration support.",
  4882. "homepage": "https://www.drupal.org/project/migrate_plus",
  4883. "support": {
  4884. "source": "https://cgit.drupalcode.org/migrate_plus",
  4885. "issues": "https://www.drupal.org/project/issues/migrate_plus",
  4886. "irc": "irc://irc.freenode.org/drupal-migrate"
  4887. }
  4888. },
  4889. {
  4890. "name": "drupal/migrate_tools",
  4891. "version": "4.4.0",
  4892. "source": {
  4893. "type": "git",
  4894. "url": "https://git.drupalcode.org/project/migrate_tools.git",
  4895. "reference": "8.x-4.4"
  4896. },
  4897. "dist": {
  4898. "type": "zip",
  4899. "url": "https://ftp.drupal.org/files/projects/migrate_tools-8.x-4.4.zip",
  4900. "reference": "8.x-4.4",
  4901. "shasum": "54a9f138809564c7e89d0e37e9fbb2ed57b562e2"
  4902. },
  4903. "require": {
  4904. "drupal/core": "^8.3",
  4905. "drupal/migrate_plus": "^4 || ^5"
  4906. },
  4907. "require-dev": {
  4908. "drupal/migrate_plus": "4.x-dev",
  4909. "drupal/migrate_source_csv": "^2.2",
  4910. "drush/drush": "^10"
  4911. },
  4912. "type": "drupal-module",
  4913. "extra": {
  4914. "branch-alias": {
  4915. "dev-4.x": "4.x-dev"
  4916. },
  4917. "drupal": {
  4918. "version": "8.x-4.4",
  4919. "datestamp": "1570477985",
  4920. "security-coverage": {
  4921. "status": "covered",
  4922. "message": "Covered by Drupal's security advisory policy"
  4923. }
  4924. },
  4925. "drush": {
  4926. "services": {
  4927. "drush.services.yml": "^9 || ^10"
  4928. }
  4929. }
  4930. },
  4931. "notification-url": "https://packages.drupal.org/8/downloads",
  4932. "license": [
  4933. "GPL-2.0-or-later"
  4934. ],
  4935. "authors": [
  4936. {
  4937. "name": "heddn",
  4938. "homepage": "https://www.drupal.org/user/1463982"
  4939. },
  4940. {
  4941. "name": "mikeryan",
  4942. "homepage": "https://www.drupal.org/user/4420"
  4943. },
  4944. {
  4945. "name": "moshe weitzman",
  4946. "homepage": "https://www.drupal.org/user/23"
  4947. }
  4948. ],
  4949. "description": "Tools to assist in developing and running migrations.",
  4950. "homepage": "http://drupal.org/project/migrate_tools",
  4951. "support": {
  4952. "source": "http://cgit.drupalcode.org/migrate_tools",
  4953. "issues": "http://drupal.org/project/migrate_tools",
  4954. "irc": "irc://irc.freenode.org/drupal-migrate"
  4955. }
  4956. },
  4957. {
  4958. "name": "drupal/path_alias_xt",
  4959. "version": "dev-1.x",
  4960. "source": {
  4961. "type": "git",
  4962. "url": "https://git.drupalcode.org/project/path_alias_xt.git",
  4963. "reference": "30e7fc03f4f8572516160ea3a7d7282653e71818"
  4964. },
  4965. "require": {
  4966. "drupal/core": "*"
  4967. },
  4968. "type": "drupal-module",
  4969. "extra": {
  4970. "branch-alias": {
  4971. "dev-1.x": "1.x-dev"
  4972. },
  4973. "drupal": {
  4974. "version": "8.x-1.x-dev",
  4975. "datestamp": "1557514381",
  4976. "security-coverage": {
  4977. "status": "not-covered",
  4978. "message": "Dev releases are not covered by Drupal security advisories."
  4979. }
  4980. }
  4981. },
  4982. "notification-url": "https://packages.drupal.org/8/downloads",
  4983. "license": [
  4984. "GPL-2.0-or-later"
  4985. ],
  4986. "authors": [
  4987. {
  4988. "name": "RdeBoer",
  4989. "homepage": "https://www.drupal.org/user/404007"
  4990. },
  4991. {
  4992. "name": "adriancid",
  4993. "homepage": "https://www.drupal.org/user/1962106"
  4994. },
  4995. {
  4996. "name": "sdstyles",
  4997. "homepage": "https://www.drupal.org/user/1420228"
  4998. }
  4999. ],
  5000. "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.",
  5001. "homepage": "https://www.drupal.org/project/path_alias_xt",
  5002. "support": {
  5003. "source": "https://git.drupalcode.org/project/path_alias_xt"
  5004. },
  5005. "time": "2019-05-28T17:44:23+00:00"
  5006. },
  5007. {
  5008. "name": "drupal/pathauto",
  5009. "version": "1.5.0",
  5010. "source": {
  5011. "type": "git",
  5012. "url": "https://git.drupalcode.org/project/pathauto.git",
  5013. "reference": "8.x-1.5"
  5014. },
  5015. "dist": {
  5016. "type": "zip",
  5017. "url": "https://ftp.drupal.org/files/projects/pathauto-8.x-1.5.zip",
  5018. "reference": "8.x-1.5",
  5019. "shasum": "ae3c13f26d625e63da3b13dc64016888eca519c7"
  5020. },
  5021. "require": {
  5022. "drupal/core": "^8.6",
  5023. "drupal/ctools": "*",
  5024. "drupal/token": "*"
  5025. },
  5026. "type": "drupal-module",
  5027. "extra": {
  5028. "branch-alias": {
  5029. "dev-1.x": "1.x-dev"
  5030. },
  5031. "drupal": {
  5032. "version": "8.x-1.5",
  5033. "datestamp": "1570828084",
  5034. "security-coverage": {
  5035. "status": "covered",
  5036. "message": "Covered by Drupal's security advisory policy"
  5037. }
  5038. }
  5039. },
  5040. "notification-url": "https://packages.drupal.org/8/downloads",
  5041. "license": [
  5042. "GPL-2.0-or-later"
  5043. ],
  5044. "authors": [
  5045. {
  5046. "name": "Berdir",
  5047. "homepage": "https://www.drupal.org/user/214652"
  5048. },
  5049. {
  5050. "name": "Dave Reid",
  5051. "homepage": "https://www.drupal.org/user/53892"
  5052. },
  5053. {
  5054. "name": "Freso",
  5055. "homepage": "https://www.drupal.org/user/27504"
  5056. },
  5057. {
  5058. "name": "greggles",
  5059. "homepage": "https://www.drupal.org/user/36762"
  5060. }
  5061. ],
  5062. "description": "Provides a mechanism for modules to automatically generate aliases for the content they manage.",
  5063. "homepage": "https://www.drupal.org/project/pathauto",
  5064. "support": {
  5065. "source": "https://git.drupalcode.org/project/pathauto"
  5066. }
  5067. },
  5068. {
  5069. "name": "drupal/piwik",
  5070. "version": "1.4.0",
  5071. "source": {
  5072. "type": "git",
  5073. "url": "https://git.drupalcode.org/project/piwik.git",
  5074. "reference": "8.x-1.4"
  5075. },
  5076. "dist": {
  5077. "type": "zip",
  5078. "url": "https://ftp.drupal.org/files/projects/piwik-8.x-1.4.zip",
  5079. "reference": "8.x-1.4",
  5080. "shasum": "3692831f4b3de636e90679fb052ba8f30e49ac97"
  5081. },
  5082. "require": {
  5083. "drupal/core": "~8.0",
  5084. "drupal/matomo": "^1.0"
  5085. },
  5086. "require-dev": {
  5087. "drupal/php": "*",
  5088. "drupal/token": "*"
  5089. },
  5090. "type": "drupal-module",
  5091. "extra": {
  5092. "branch-alias": {
  5093. "dev-1.x": "1.x-dev"
  5094. },
  5095. "drupal": {
  5096. "version": "8.x-1.4",
  5097. "datestamp": "1530437786",
  5098. "security-coverage": {
  5099. "status": "covered",
  5100. "message": "Covered by Drupal's security advisory policy"
  5101. }
  5102. }
  5103. },
  5104. "notification-url": "https://packages.drupal.org/8/downloads",
  5105. "license": [
  5106. "GPL-2.0+"
  5107. ],
  5108. "authors": [
  5109. {
  5110. "name": "hass",
  5111. "homepage": "https://www.drupal.org/u/hass"
  5112. },
  5113. {
  5114. "name": "See other contributors",
  5115. "homepage": "https://www.drupal.org/node/247808/committers"
  5116. }
  5117. ],
  5118. "description": "Adds Piwik javascript tracking code to all your site's pages",
  5119. "homepage": "https://www.drupal.org/project/piwik",
  5120. "support": {
  5121. "source": "http://git.drupal.org/project/piwik.git",
  5122. "issues": "https://www.drupal.org/project/issues/piwik"
  5123. }
  5124. },
  5125. {
  5126. "name": "drupal/profile",
  5127. "version": "1.0.0",
  5128. "source": {
  5129. "type": "git",
  5130. "url": "https://git.drupalcode.org/project/profile.git",
  5131. "reference": "8.x-1.0"
  5132. },
  5133. "dist": {
  5134. "type": "zip",
  5135. "url": "https://ftp.drupal.org/files/projects/profile-8.x-1.0.zip",
  5136. "reference": "8.x-1.0",
  5137. "shasum": "45f5ad7f274d5e1e7ec8b72d98f9a20136073112"
  5138. },
  5139. "require": {
  5140. "drupal/core": "^8.6",
  5141. "drupal/entity": "^1.0-rc2"
  5142. },
  5143. "require-dev": {
  5144. "drupal/token": "^1.0"
  5145. },
  5146. "type": "drupal-module",
  5147. "extra": {
  5148. "branch-alias": {
  5149. "dev-1.x": "1.x-dev"
  5150. },
  5151. "drupal": {
  5152. "version": "8.x-1.0",
  5153. "datestamp": "1567007888",
  5154. "security-coverage": {
  5155. "status": "covered",
  5156. "message": "Covered by Drupal's security advisory policy"
  5157. }
  5158. }
  5159. },
  5160. "notification-url": "https://packages.drupal.org/8/downloads",
  5161. "license": [
  5162. "GPL-2.0+"
  5163. ],
  5164. "authors": [
  5165. {
  5166. "name": "bojanz",
  5167. "homepage": "https://www.drupal.org/user/86106"
  5168. },
  5169. {
  5170. "name": "daggerhart",
  5171. "homepage": "https://www.drupal.org/user/167806"
  5172. },
  5173. {
  5174. "name": "fago",
  5175. "homepage": "https://www.drupal.org/user/16747"
  5176. },
  5177. {
  5178. "name": "jsacksick",
  5179. "homepage": "https://www.drupal.org/user/972218"
  5180. },
  5181. {
  5182. "name": "mglaman",
  5183. "homepage": "https://www.drupal.org/user/2416470"
  5184. },
  5185. {
  5186. "name": "pcambra",
  5187. "homepage": "https://www.drupal.org/user/122101"
  5188. }
  5189. ],
  5190. "description": "Provides configurable user profiles.",
  5191. "homepage": "http://drupal.org/project/profile",
  5192. "support": {
  5193. "source": "https://git.drupalcode.org/project/profile"
  5194. }
  5195. },
  5196. {
  5197. "name": "drupal/redirect",
  5198. "version": "1.4.0",
  5199. "source": {
  5200. "type": "git",
  5201. "url": "https://git.drupalcode.org/project/redirect.git",
  5202. "reference": "8.x-1.4"
  5203. },
  5204. "dist": {
  5205. "type": "zip",
  5206. "url": "https://ftp.drupal.org/files/projects/redirect-8.x-1.4.zip",
  5207. "reference": "8.x-1.4",
  5208. "shasum": "4c7e0dc0ab0cbcc7d66e16cc684882c0eaa71c1c"
  5209. },
  5210. "require": {
  5211. "drupal/core": "~8"
  5212. },
  5213. "type": "drupal-module",
  5214. "extra": {
  5215. "branch-alias": {
  5216. "dev-1.x": "1.x-dev"
  5217. },
  5218. "drupal": {
  5219. "version": "8.x-1.4",
  5220. "datestamp": "1561757585",
  5221. "security-coverage": {
  5222. "status": "covered",
  5223. "message": "Covered by Drupal's security advisory policy"
  5224. }
  5225. }
  5226. },
  5227. "notification-url": "https://packages.drupal.org/8/downloads",
  5228. "license": [
  5229. "GPL-2.0+"
  5230. ],
  5231. "authors": [
  5232. {
  5233. "name": "Berdir",
  5234. "homepage": "https://www.drupal.org/user/214652"
  5235. },
  5236. {
  5237. "name": "Dave Reid",
  5238. "homepage": "https://www.drupal.org/user/53892"
  5239. },
  5240. {
  5241. "name": "pifagor",
  5242. "homepage": "https://www.drupal.org/user/2375692"
  5243. }
  5244. ],
  5245. "description": "Allows users to redirect from old URLs to new URLs.",
  5246. "homepage": "https://www.drupal.org/project/redirect",
  5247. "support": {
  5248. "source": "https://git.drupalcode.org/project/redirect"
  5249. }
  5250. },
  5251. {
  5252. "name": "drupal/redis",
  5253. "version": "1.2.0",
  5254. "source": {
  5255. "type": "git",
  5256. "url": "https://git.drupalcode.org/project/redis.git",
  5257. "reference": "8.x-1.2"
  5258. },
  5259. "dist": {
  5260. "type": "zip",
  5261. "url": "https://ftp.drupal.org/files/projects/redis-8.x-1.2.zip",
  5262. "reference": "8.x-1.2",
  5263. "shasum": "6b8847a0816a6e400d495aed1e9dde4c594d6e2b"
  5264. },
  5265. "require": {
  5266. "drupal/core": "~8.0"
  5267. },
  5268. "suggest": {
  5269. "predis/predis": "^1.1.1"
  5270. },
  5271. "type": "drupal-module",
  5272. "extra": {
  5273. "branch-alias": {
  5274. "dev-1.x": "1.x-dev"
  5275. },
  5276. "drupal": {
  5277. "version": "8.x-1.2",
  5278. "datestamp": "1568275684",
  5279. "security-coverage": {
  5280. "status": "covered",
  5281. "message": "Covered by Drupal's security advisory policy"
  5282. }
  5283. }
  5284. },
  5285. "autoload": {
  5286. "psr-4": {
  5287. "Drupal\\redis\\": "src"
  5288. }
  5289. },
  5290. "notification-url": "https://packages.drupal.org/8/downloads",
  5291. "license": [
  5292. "GPL-2.0"
  5293. ],
  5294. "authors": [
  5295. {
  5296. "name": "Berdir",
  5297. "homepage": "https://www.drupal.org/user/214652"
  5298. },
  5299. {
  5300. "name": "pounard",
  5301. "homepage": "https://www.drupal.org/user/240164"
  5302. }
  5303. ],
  5304. "description": "Provide a module placeholder, for using as dependency for module that needs Redis.",
  5305. "homepage": "https://www.drupal.org/project/redis",
  5306. "support": {
  5307. "source": "https://git.drupalcode.org/project/redis"
  5308. }
  5309. },
  5310. {
  5311. "name": "drupal/search_api",
  5312. "version": "1.15.0",
  5313. "source": {
  5314. "type": "git",
  5315. "url": "https://git.drupalcode.org/project/search_api.git",
  5316. "reference": "8.x-1.15"
  5317. },
  5318. "dist": {
  5319. "type": "zip",
  5320. "url": "https://ftp.drupal.org/files/projects/search_api-8.x-1.15.zip",
  5321. "reference": "8.x-1.15",
  5322. "shasum": "12c13141adb6b687fe36781ac9269a49ef810323"
  5323. },
  5324. "require": {
  5325. "drupal/core": "^8.6"
  5326. },
  5327. "conflict": {
  5328. "drupal/search_api_solr": "2.* || 3.0 || 3.1"
  5329. },
  5330. "require-dev": {
  5331. "drupal/language_fallback_fix": "@dev",
  5332. "drupal/search_api_autocomplete": "@dev",
  5333. "drupal/search_api_db": "*"
  5334. },
  5335. "suggest": {
  5336. "drupal/facets": "Adds the ability to create faceted searches.",
  5337. "drupal/search_api_autocomplete": "Allows adding autocomplete suggestions to search fields.",
  5338. "drupal/search_api_solr": "Adds support for using Apache Solr as a backend."
  5339. },
  5340. "type": "drupal-module",
  5341. "extra": {
  5342. "branch-alias": {
  5343. "dev-1.x": "1.x-dev"
  5344. },
  5345. "drupal": {
  5346. "version": "8.x-1.15",
  5347. "datestamp": "1573122785",
  5348. "security-coverage": {
  5349. "status": "covered",
  5350. "message": "Covered by Drupal's security advisory policy"
  5351. }
  5352. },
  5353. "drush": {
  5354. "services": {
  5355. "drush.services.yml": "^9"
  5356. }
  5357. }
  5358. },
  5359. "notification-url": "https://packages.drupal.org/8/downloads",
  5360. "license": [
  5361. "GPL-2.0+"
  5362. ],
  5363. "authors": [
  5364. {
  5365. "name": "Thomas Seidl",
  5366. "homepage": "https://www.drupal.org/u/drunken-monkey"
  5367. },
  5368. {
  5369. "name": "Nick Veenhof",
  5370. "homepage": "https://www.drupal.org/u/nick_vh"
  5371. },
  5372. {
  5373. "name": "See other contributors",
  5374. "homepage": "https://www.drupal.org/node/790418/committers"
  5375. }
  5376. ],
  5377. "description": "Provides a generic framework for modules offering search capabilities.",
  5378. "homepage": "https://www.drupal.org/project/search_api",
  5379. "support": {
  5380. "source": "http://git.drupal.org/project/search_api.git",
  5381. "issues": "https://www.drupal.org/project/issues/search_api",
  5382. "irc": "irc://irc.freenode.org/drupal-search-api"
  5383. }
  5384. },
  5385. {
  5386. "name": "drupal/simple_sitemap",
  5387. "version": "3.4.0",
  5388. "source": {
  5389. "type": "git",
  5390. "url": "https://git.drupalcode.org/project/simple_sitemap.git",
  5391. "reference": "8.x-3.4"
  5392. },
  5393. "dist": {
  5394. "type": "zip",
  5395. "url": "https://ftp.drupal.org/files/projects/simple_sitemap-8.x-3.4.zip",
  5396. "reference": "8.x-3.4",
  5397. "shasum": "7cb1944ca2659e426e20680ef8e7cd48747545c8"
  5398. },
  5399. "require": {
  5400. "drupal/core": "~8.0",
  5401. "ext-xmlwriter": "*"
  5402. },
  5403. "type": "drupal-module",
  5404. "extra": {
  5405. "branch-alias": {
  5406. "dev-3.x": "3.x-dev"
  5407. },
  5408. "drupal": {
  5409. "version": "8.x-3.4",
  5410. "datestamp": "1570445886",
  5411. "security-coverage": {
  5412. "status": "covered",
  5413. "message": "Covered by Drupal's security advisory policy"
  5414. }
  5415. },
  5416. "drush": {
  5417. "services": {
  5418. "drush.services.yml": "^9"
  5419. }
  5420. }
  5421. },
  5422. "notification-url": "https://packages.drupal.org/8/downloads",
  5423. "license": [
  5424. "GPL-2.0+"
  5425. ],
  5426. "authors": [
  5427. {
  5428. "name": "Pawel Ginalski (gbyte.co)",
  5429. "homepage": "https://www.drupal.org/u/gbyte.co",
  5430. "email": "contact@gbyte.co",
  5431. "role": "Maintainer"
  5432. },
  5433. {
  5434. "name": "gbyte.co",
  5435. "homepage": "https://www.drupal.org/user/2381352"
  5436. }
  5437. ],
  5438. "description": "Creates a standard conform hreflang XML sitemap of the site content and provides a framework for developing other sitemap types.",
  5439. "homepage": "https://drupal.org/project/simple_sitemap",
  5440. "support": {
  5441. "source": "https://cgit.drupalcode.org/simple_sitemap",
  5442. "issues": "https://drupal.org/project/issues/simple_sitemap",
  5443. "irc": "irc://irc.freenode.org/drupal-contribute"
  5444. }
  5445. },
  5446. {
  5447. "name": "drupal/synonyms",
  5448. "version": "dev-1.x",
  5449. "source": {
  5450. "type": "git",
  5451. "url": "https://git.drupalcode.org/project/synonyms.git",
  5452. "reference": "5327ef244bad11e859eed9ff71b49cb8f9955190"
  5453. },
  5454. "require": {
  5455. "drupal/core": "^8.2"
  5456. },
  5457. "type": "drupal-module",
  5458. "extra": {
  5459. "branch-alias": {
  5460. "dev-1.x": "1.x-dev"
  5461. },
  5462. "drupal": {
  5463. "version": "8.x-1.0-alpha1+5-dev",
  5464. "datestamp": "1540141681",
  5465. "security-coverage": {
  5466. "status": "not-covered",
  5467. "message": "Dev releases are not covered by Drupal security advisories."
  5468. }
  5469. }
  5470. },
  5471. "notification-url": "https://packages.drupal.org/8/downloads",
  5472. "license": [
  5473. "GPL-2.0-or-later"
  5474. ],
  5475. "authors": [
  5476. {
  5477. "name": "Zen",
  5478. "homepage": "https://www.drupal.org/user/21209"
  5479. },
  5480. {
  5481. "name": "bojanz",
  5482. "homepage": "https://www.drupal.org/user/86106"
  5483. },
  5484. {
  5485. "name": "bucefal91",
  5486. "homepage": "https://www.drupal.org/user/504128"
  5487. }
  5488. ],
  5489. "description": "Provides synonyms feature for content entities.",
  5490. "homepage": "https://www.drupal.org/project/synonyms",
  5491. "support": {
  5492. "source": "https://git.drupalcode.org/project/synonyms"
  5493. },
  5494. "time": "2018-10-21T17:05:25+00:00"
  5495. },
  5496. {
  5497. "name": "drupal/token",
  5498. "version": "1.5.0",
  5499. "source": {
  5500. "type": "git",
  5501. "url": "https://git.drupalcode.org/project/token.git",
  5502. "reference": "8.x-1.5"
  5503. },
  5504. "dist": {
  5505. "type": "zip",
  5506. "url": "https://ftp.drupal.org/files/projects/token-8.x-1.5.zip",
  5507. "reference": "8.x-1.5",
  5508. "shasum": "6382a7e1aabbd8246f1117a26bf4916d285b401d"
  5509. },
  5510. "require": {
  5511. "drupal/core": "^8.5"
  5512. },
  5513. "type": "drupal-module",
  5514. "extra": {
  5515. "branch-alias": {
  5516. "dev-1.x": "1.x-dev"
  5517. },
  5518. "drupal": {
  5519. "version": "8.x-1.5",
  5520. "datestamp": "1537557481",
  5521. "security-coverage": {
  5522. "status": "covered",
  5523. "message": "Covered by Drupal's security advisory policy"
  5524. }
  5525. }
  5526. },
  5527. "notification-url": "https://packages.drupal.org/8/downloads",
  5528. "license": [
  5529. "GPL-2.0-or-later"
  5530. ],
  5531. "authors": [
  5532. {
  5533. "name": "Berdir",
  5534. "homepage": "https://www.drupal.org/user/214652"
  5535. },
  5536. {
  5537. "name": "Dave Reid",
  5538. "homepage": "https://www.drupal.org/user/53892"
  5539. },
  5540. {
  5541. "name": "eaton",
  5542. "homepage": "https://www.drupal.org/user/16496"
  5543. },
  5544. {
  5545. "name": "fago",
  5546. "homepage": "https://www.drupal.org/user/16747"
  5547. },
  5548. {
  5549. "name": "greggles",
  5550. "homepage": "https://www.drupal.org/user/36762"
  5551. },
  5552. {
  5553. "name": "mikeryan",
  5554. "homepage": "https://www.drupal.org/user/4420"
  5555. }
  5556. ],
  5557. "description": "Provides a user interface for the Token API and some missing core tokens.",
  5558. "homepage": "https://www.drupal.org/project/token",
  5559. "support": {
  5560. "source": "https://git.drupalcode.org/project/token"
  5561. }
  5562. },
  5563. {
  5564. "name": "drupal/toolbar_themes",
  5565. "version": "dev-1.x",
  5566. "source": {
  5567. "type": "git",
  5568. "url": "https://git.drupalcode.org/project/toolbar_themes.git",
  5569. "reference": "62e79c8635ec13fe5a4dd67b87f698a14822c044"
  5570. },
  5571. "require": {
  5572. "drupal/core": "*"
  5573. },
  5574. "type": "drupal-module",
  5575. "extra": {
  5576. "branch-alias": {
  5577. "dev-1.x": "1.x-dev"
  5578. },
  5579. "drupal": {
  5580. "version": "8.x-1.0-alpha4+10-dev",
  5581. "datestamp": "1510689485",
  5582. "security-coverage": {
  5583. "status": "not-covered",
  5584. "message": "Project has not opted into security advisory coverage!"
  5585. }
  5586. }
  5587. },
  5588. "notification-url": "https://packages.drupal.org/8/downloads",
  5589. "license": [
  5590. "GPL-2.0-or-later"
  5591. ],
  5592. "authors": [
  5593. {
  5594. "name": "Jeff Burnz",
  5595. "homepage": "https://www.drupal.org/user/61393"
  5596. }
  5597. ],
  5598. "description": "Apply themes to the toolbar.",
  5599. "homepage": "https://www.drupal.org/project/toolbar_themes",
  5600. "support": {
  5601. "source": "https://git.drupalcode.org/project/toolbar_themes"
  5602. },
  5603. "time": "2017-11-14T19:57:02+00:00"
  5604. },
  5605. {
  5606. "name": "drupal/translation_views",
  5607. "version": "1.0.0-alpha8",
  5608. "source": {
  5609. "type": "git",
  5610. "url": "https://git.drupalcode.org/project/translation_views.git",
  5611. "reference": "8.x-1.0-alpha8"
  5612. },
  5613. "dist": {
  5614. "type": "zip",
  5615. "url": "https://ftp.drupal.org/files/projects/translation_views-8.x-1.0-alpha8.zip",
  5616. "reference": "8.x-1.0-alpha8",
  5617. "shasum": "5903869f77129aa46daf46cd9a34bd9706072eb5"
  5618. },
  5619. "require": {
  5620. "drupal/core": "*"
  5621. },
  5622. "require-dev": {
  5623. "drupal/translators": "*",
  5624. "drupal/translators_content": "*"
  5625. },
  5626. "type": "drupal-module",
  5627. "extra": {
  5628. "branch-alias": {
  5629. "dev-1.x": "1.x-dev"
  5630. },
  5631. "drupal": {
  5632. "version": "8.x-1.0-alpha8",
  5633. "datestamp": "1572571385",
  5634. "security-coverage": {
  5635. "status": "not-covered",
  5636. "message": "Project has not opted into security advisory coverage!"
  5637. }
  5638. }
  5639. },
  5640. "notification-url": "https://packages.drupal.org/8/downloads",
  5641. "license": [
  5642. "GPL-2.0-or-later"
  5643. ],
  5644. "authors": [
  5645. {
  5646. "name": "matsbla",
  5647. "homepage": "https://www.drupal.org/user/2325394"
  5648. },
  5649. {
  5650. "name": "vlad.dancer",
  5651. "homepage": "https://www.drupal.org/user/903844"
  5652. }
  5653. ],
  5654. "description": "Create customized lists and queries of translations from your database.",
  5655. "homepage": "https://www.drupal.org/project/translation_views",
  5656. "support": {
  5657. "source": "https://git.drupalcode.org/project/translation_views"
  5658. }
  5659. },
  5660. {
  5661. "name": "drupal/url_to_video_filter",
  5662. "version": "1.3.0",
  5663. "source": {
  5664. "type": "git",
  5665. "url": "https://git.drupalcode.org/project/url_to_video_filter.git",
  5666. "reference": "8.x-1.3"
  5667. },
  5668. "dist": {
  5669. "type": "zip",
  5670. "url": "https://ftp.drupal.org/files/projects/url_to_video_filter-8.x-1.3.zip",
  5671. "reference": "8.x-1.3",
  5672. "shasum": "40a27d1d8948638c0202c1b0c8afe0d92f8362a6"
  5673. },
  5674. "require": {
  5675. "drupal/core": "~8.0"
  5676. },
  5677. "type": "drupal-module",
  5678. "extra": {
  5679. "branch-alias": {
  5680. "dev-1.x": "1.x-dev"
  5681. },
  5682. "drupal": {
  5683. "version": "8.x-1.3",
  5684. "datestamp": "1532695981",
  5685. "security-coverage": {
  5686. "status": "covered",
  5687. "message": "Covered by Drupal's security advisory policy"
  5688. }
  5689. }
  5690. },
  5691. "notification-url": "https://packages.drupal.org/8/downloads",
  5692. "license": [
  5693. "GPL-2.0-or-later"
  5694. ],
  5695. "authors": [
  5696. {
  5697. "name": "Jaypan",
  5698. "homepage": "https://www.drupal.org/user/324696"
  5699. }
  5700. ],
  5701. "description": "Text filter to convert URLs to embedded videos",
  5702. "homepage": "https://www.drupal.org/project/url_to_video_filter",
  5703. "support": {
  5704. "source": "https://git.drupalcode.org/project/url_to_video_filter"
  5705. }
  5706. },
  5707. {
  5708. "name": "drupal/views_bulk_edit",
  5709. "version": "2.4.0",
  5710. "source": {
  5711. "type": "git",
  5712. "url": "https://git.drupalcode.org/project/views_bulk_edit.git",
  5713. "reference": "8.x-2.4"
  5714. },
  5715. "dist": {
  5716. "type": "zip",
  5717. "url": "https://ftp.drupal.org/files/projects/views_bulk_edit-8.x-2.4.zip",
  5718. "reference": "8.x-2.4",
  5719. "shasum": "039ebf9c6ae3cdd0555c7bfb97c629ebfee61ddb"
  5720. },
  5721. "require": {
  5722. "drupal/core": "*",
  5723. "drupal/views_bulk_operations": "~1.0 | ~2.0 | ~3.0"
  5724. },
  5725. "type": "drupal-module",
  5726. "extra": {
  5727. "branch-alias": {
  5728. "dev-2.x": "2.x-dev"
  5729. },
  5730. "drupal": {
  5731. "version": "8.x-2.4",
  5732. "datestamp": "1570030085",
  5733. "security-coverage": {
  5734. "status": "covered",
  5735. "message": "Covered by Drupal's security advisory policy"
  5736. }
  5737. }
  5738. },
  5739. "notification-url": "https://packages.drupal.org/8/downloads",
  5740. "license": [
  5741. "GPL-2.0+"
  5742. ],
  5743. "authors": [
  5744. {
  5745. "name": "Marcin Grabias",
  5746. "homepage": "https://www.drupal.org/u/graber"
  5747. },
  5748. {
  5749. "name": "benjy",
  5750. "homepage": "https://www.drupal.org/user/1852732"
  5751. }
  5752. ],
  5753. "description": "Allows bulk edition of entity field values.",
  5754. "homepage": "https://www.drupal.org/project/views_bulk_edit",
  5755. "support": {
  5756. "source": "https://git.drupalcode.org/project/views_bulk_edit",
  5757. "issues": "https://www.drupal.org/project/issues/views_bulk_edit?version=8.x"
  5758. }
  5759. },
  5760. {
  5761. "name": "drupal/views_bulk_operations",
  5762. "version": "2.5.0",
  5763. "source": {
  5764. "type": "git",
  5765. "url": "https://git.drupalcode.org/project/views_bulk_operations.git",
  5766. "reference": "8.x-2.5"
  5767. },
  5768. "dist": {
  5769. "type": "zip",
  5770. "url": "https://ftp.drupal.org/files/projects/views_bulk_operations-8.x-2.5.zip",
  5771. "reference": "8.x-2.5",
  5772. "shasum": "3ec848b4f235720d05cb9713ea80a86415b6909f"
  5773. },
  5774. "require": {
  5775. "drupal/core": "^8.4"
  5776. },
  5777. "type": "drupal-module",
  5778. "extra": {
  5779. "branch-alias": {
  5780. "dev-2.x": "2.x-dev"
  5781. },
  5782. "drupal": {
  5783. "version": "8.x-2.5",
  5784. "datestamp": "1550740384",
  5785. "security-coverage": {
  5786. "status": "covered",
  5787. "message": "Covered by Drupal's security advisory policy"
  5788. }
  5789. },
  5790. "drush": {
  5791. "services": {
  5792. "drush.services.yml": "^9"
  5793. }
  5794. }
  5795. },
  5796. "notification-url": "https://packages.drupal.org/8/downloads",
  5797. "license": [
  5798. "GPL-2.0+"
  5799. ],
  5800. "authors": [
  5801. {
  5802. "name": "Marcin Grabias",
  5803. "homepage": "https://www.drupal.org/u/graber"
  5804. },
  5805. {
  5806. "name": "Jon Pugh",
  5807. "homepage": "https://www.drupal.org/user/17028"
  5808. },
  5809. {
  5810. "name": "bojanz",
  5811. "homepage": "https://www.drupal.org/user/86106"
  5812. },
  5813. {
  5814. "name": "infojunkie",
  5815. "homepage": "https://www.drupal.org/user/48424"
  5816. },
  5817. {
  5818. "name": "joelpittet",
  5819. "homepage": "https://www.drupal.org/user/160302"
  5820. }
  5821. ],
  5822. "description": "Adds an ability to perform bulk operations on selected entities from view results. Provides an API to create such operations.",
  5823. "homepage": "https://www.drupal.org/project/views_bulk_operations",
  5824. "support": {
  5825. "source": "https://git.drupalcode.org/project/views_bulk_operations",
  5826. "issues": "https://www.drupal.org/project/issues/views_bulk_operations?version=8.x",
  5827. "docs": "https://www.drupal.org/docs/8/modules/views-bulk-operations-vbo"
  5828. }
  5829. },
  5830. {
  5831. "name": "drupal/workflow",
  5832. "version": "dev-1.x",
  5833. "source": {
  5834. "type": "git",
  5835. "url": "https://git.drupalcode.org/project/workflow.git",
  5836. "reference": "920f1e5acc99da722592eb0f3b3cb32c0e96a560"
  5837. },
  5838. "require": {
  5839. "drupal/core": "*"
  5840. },
  5841. "type": "drupal-module",
  5842. "extra": {
  5843. "branch-alias": {
  5844. "dev-1.x": "1.x-dev"
  5845. },
  5846. "drupal": {
  5847. "version": "8.x-1.1+38-dev",
  5848. "datestamp": "1571663284",
  5849. "security-coverage": {
  5850. "status": "not-covered",
  5851. "message": "Dev releases are not covered by Drupal security advisories."
  5852. }
  5853. }
  5854. },
  5855. "notification-url": "https://packages.drupal.org/8/downloads",
  5856. "license": [
  5857. "GPL-2.0-or-later"
  5858. ],
  5859. "authors": [
  5860. {
  5861. "name": "Bastlynn",
  5862. "homepage": "https://www.drupal.org/user/275249"
  5863. },
  5864. {
  5865. "name": "Heine",
  5866. "homepage": "https://www.drupal.org/user/17943"
  5867. },
  5868. {
  5869. "name": "JacobSingh",
  5870. "homepage": "https://www.drupal.org/user/68912"
  5871. },
  5872. {
  5873. "name": "NancyDru",
  5874. "homepage": "https://www.drupal.org/user/101412"
  5875. },
  5876. {
  5877. "name": "eaton",
  5878. "homepage": "https://www.drupal.org/user/16496"
  5879. },
  5880. {
  5881. "name": "johnv",
  5882. "homepage": "https://www.drupal.org/user/591042"
  5883. },
  5884. {
  5885. "name": "jvandyk",
  5886. "homepage": "https://www.drupal.org/user/2375"
  5887. },
  5888. {
  5889. "name": "mfredrickson",
  5890. "homepage": "https://www.drupal.org/user/31994"
  5891. },
  5892. {
  5893. "name": "q0rban",
  5894. "homepage": "https://www.drupal.org/user/31022"
  5895. }
  5896. ],
  5897. "description": "Defines a field type with Workflows, containing customizable state transitions.",
  5898. "homepage": "https://www.drupal.org/project/workflow",
  5899. "support": {
  5900. "source": "https://git.drupalcode.org/project/workflow"
  5901. },
  5902. "time": "2019-11-12T11:10:01+00:00"
  5903. },
  5904. {
  5905. "name": "drush/drush",
  5906. "version": "9.7.1",
  5907. "source": {
  5908. "type": "git",
  5909. "url": "https://github.com/drush-ops/drush.git",
  5910. "reference": "6f9a8d235daec06fd6f47b2d84da675750566479"
  5911. },
  5912. "dist": {
  5913. "type": "zip",
  5914. "url": "https://api.github.com/repos/drush-ops/drush/zipball/6f9a8d235daec06fd6f47b2d84da675750566479",
  5915. "reference": "6f9a8d235daec06fd6f47b2d84da675750566479",
  5916. "shasum": ""
  5917. },
  5918. "require": {
  5919. "chi-teck/drupal-code-generator": "^1.28.1",
  5920. "composer/semver": "^1.4",
  5921. "consolidation/annotated-command": "^2.12",
  5922. "consolidation/config": "^1.2",
  5923. "consolidation/filter-via-dot-access-data": "^1",
  5924. "consolidation/output-formatters": "^3.3.1",
  5925. "consolidation/robo": "^1.4.6",
  5926. "consolidation/site-alias": "^3.0.0@stable",
  5927. "consolidation/site-process": "^2.0.3",
  5928. "ext-dom": "*",
  5929. "grasmash/yaml-expander": "^1.1.1",
  5930. "league/container": "~2",
  5931. "php": ">=5.6.0",
  5932. "psr/log": "~1.0",
  5933. "psy/psysh": "~0.6",
  5934. "symfony/console": "^3.4",
  5935. "symfony/event-dispatcher": "^3.4",
  5936. "symfony/finder": "^3.4 || ^4.0",
  5937. "symfony/process": "^3.4",
  5938. "symfony/var-dumper": "^3.4 || ^4.0",
  5939. "symfony/yaml": "^3.4",
  5940. "webflo/drupal-finder": "^1.1",
  5941. "webmozart/path-util": "^2.1.0"
  5942. },
  5943. "require-dev": {
  5944. "composer/installers": "^1.2",
  5945. "cweagans/composer-patches": "~1.0",
  5946. "drupal/alinks": "1.0.0",
  5947. "drupal/devel": "^2",
  5948. "drupal/empty_theme": "1.0",
  5949. "g1a/composer-test-scenarios": "^3",
  5950. "lox/xhprof": "dev-master",
  5951. "phpunit/phpunit": "^4.8.36 || ^6.1",
  5952. "squizlabs/php_codesniffer": "^2.7 || ^3",
  5953. "vlucas/phpdotenv": "^2.4",
  5954. "webflo/drupal-core-require-dev": "8.7.x-dev",
  5955. "webflo/drupal-core-strict": "8.7.x-dev"
  5956. },
  5957. "bin": [
  5958. "drush"
  5959. ],
  5960. "type": "library",
  5961. "extra": {
  5962. "installer-paths": {
  5963. "sut/core": [
  5964. "type:drupal-core"
  5965. ],
  5966. "sut/libraries/{$name}": [
  5967. "type:drupal-library"
  5968. ],
  5969. "sut/modules/unish/{$name}": [
  5970. "drupal/devel"
  5971. ],
  5972. "sut/themes/unish/{$name}": [
  5973. "drupal/empty_theme"
  5974. ],
  5975. "sut/modules/contrib/{$name}": [
  5976. "type:drupal-module"
  5977. ],
  5978. "sut/profiles/contrib/{$name}": [
  5979. "type:drupal-profile"
  5980. ],
  5981. "sut/themes/contrib/{$name}": [
  5982. "type:drupal-theme"
  5983. ],
  5984. "sut/drush/contrib/{$name}": [
  5985. "type:drupal-drush"
  5986. ]
  5987. },
  5988. "scenarios": {
  5989. "php5": {
  5990. "config": {
  5991. "platform": {
  5992. "php": "5.6.38"
  5993. }
  5994. },
  5995. "require-dev": {
  5996. "webflo/drupal-core-strict": "8.6.x-dev",
  5997. "webflo/drupal-core-require-dev": "8.6.x-dev"
  5998. }
  5999. }
  6000. },
  6001. "branch-alias": {
  6002. "dev-master": "9.x-dev"
  6003. }
  6004. },
  6005. "autoload": {
  6006. "psr-4": {
  6007. "Drush\\": "src/",
  6008. "Drush\\Internal\\": "src/internal-forks"
  6009. }
  6010. },
  6011. "notification-url": "https://packagist.org/downloads/",
  6012. "license": [
  6013. "GPL-2.0-or-later"
  6014. ],
  6015. "authors": [
  6016. {
  6017. "name": "Moshe Weitzman",
  6018. "email": "weitzman@tejasa.com"
  6019. },
  6020. {
  6021. "name": "Owen Barton",
  6022. "email": "drupal@owenbarton.com"
  6023. },
  6024. {
  6025. "name": "Greg Anderson",
  6026. "email": "greg.1.anderson@greenknowe.org"
  6027. },
  6028. {
  6029. "name": "Jonathan Araña Cruz",
  6030. "email": "jonhattan@faita.net"
  6031. },
  6032. {
  6033. "name": "Jonathan Hedstrom",
  6034. "email": "jhedstrom@gmail.com"
  6035. },
  6036. {
  6037. "name": "Christopher Gervais",
  6038. "email": "chris@ergonlogic.com"
  6039. },
  6040. {
  6041. "name": "Dave Reid",
  6042. "email": "dave@davereid.net"
  6043. },
  6044. {
  6045. "name": "Damian Lee",
  6046. "email": "damiankloip@googlemail.com"
  6047. }
  6048. ],
  6049. "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.",
  6050. "homepage": "http://www.drush.org",
  6051. "time": "2019-06-30T19:46:39+00:00"
  6052. },
  6053. {
  6054. "name": "easyrdf/easyrdf",
  6055. "version": "0.9.1",
  6056. "source": {
  6057. "type": "git",
  6058. "url": "https://github.com/njh/easyrdf.git",
  6059. "reference": "acd09dfe0555fbcfa254291e433c45fdd4652566"
  6060. },
  6061. "dist": {
  6062. "type": "zip",
  6063. "url": "https://api.github.com/repos/njh/easyrdf/zipball/acd09dfe0555fbcfa254291e433c45fdd4652566",
  6064. "reference": "acd09dfe0555fbcfa254291e433c45fdd4652566",
  6065. "shasum": ""
  6066. },
  6067. "require": {
  6068. "ext-mbstring": "*",
  6069. "ext-pcre": "*",
  6070. "php": ">=5.2.8"
  6071. },
  6072. "require-dev": {
  6073. "phpunit/phpunit": "~3.5",
  6074. "sami/sami": "~1.4",
  6075. "squizlabs/php_codesniffer": "~1.4.3"
  6076. },
  6077. "suggest": {
  6078. "ml/json-ld": "~1.0"
  6079. },
  6080. "type": "library",
  6081. "autoload": {
  6082. "psr-0": {
  6083. "EasyRdf_": "lib/"
  6084. }
  6085. },
  6086. "notification-url": "https://packagist.org/downloads/",
  6087. "license": [
  6088. "BSD-3-Clause"
  6089. ],
  6090. "authors": [
  6091. {
  6092. "name": "Nicholas Humfrey",
  6093. "email": "njh@aelius.com",
  6094. "homepage": "http://www.aelius.com/njh/",
  6095. "role": "Developer"
  6096. },
  6097. {
  6098. "name": "Alexey Zakhlestin",
  6099. "email": "indeyets@gmail.com",
  6100. "role": "Developer"
  6101. }
  6102. ],
  6103. "description": "EasyRdf is a PHP library designed to make it easy to consume and produce RDF.",
  6104. "homepage": "http://www.easyrdf.org/",
  6105. "keywords": [
  6106. "Linked Data",
  6107. "RDF",
  6108. "Semantic Web",
  6109. "Turtle",
  6110. "rdfa",
  6111. "sparql"
  6112. ],
  6113. "time": "2015-02-27T09:45:49+00:00"
  6114. },
  6115. {
  6116. "name": "egulias/email-validator",
  6117. "version": "1.2.15",
  6118. "source": {
  6119. "type": "git",
  6120. "url": "https://github.com/egulias/EmailValidator.git",
  6121. "reference": "758a77525bdaabd6c0f5669176bd4361cb2dda9e"
  6122. },
  6123. "dist": {
  6124. "type": "zip",
  6125. "url": "https://api.github.com/repos/egulias/EmailValidator/zipball/758a77525bdaabd6c0f5669176bd4361cb2dda9e",
  6126. "reference": "758a77525bdaabd6c0f5669176bd4361cb2dda9e",
  6127. "shasum": ""
  6128. },
  6129. "require": {
  6130. "doctrine/lexer": "^1.0.1",
  6131. "php": ">= 5.3.3"
  6132. },
  6133. "require-dev": {
  6134. "phpunit/phpunit": "^4.8.24"
  6135. },
  6136. "type": "library",
  6137. "extra": {
  6138. "branch-alias": {
  6139. "dev-master": "2.0.x-dev"
  6140. }
  6141. },
  6142. "autoload": {
  6143. "psr-0": {
  6144. "Egulias\\": "src/"
  6145. }
  6146. },
  6147. "notification-url": "https://packagist.org/downloads/",
  6148. "license": [
  6149. "MIT"
  6150. ],
  6151. "authors": [
  6152. {
  6153. "name": "Eduardo Gulias Davis"
  6154. }
  6155. ],
  6156. "description": "A library for validating emails",
  6157. "homepage": "https://github.com/egulias/EmailValidator",
  6158. "keywords": [
  6159. "email",
  6160. "emailvalidation",
  6161. "emailvalidator",
  6162. "validation",
  6163. "validator"
  6164. ],
  6165. "time": "2018-09-25T20:59:41+00:00"
  6166. },
  6167. {
  6168. "name": "fabpot/goutte",
  6169. "version": "v3.2.3",
  6170. "source": {
  6171. "type": "git",
  6172. "url": "https://github.com/FriendsOfPHP/Goutte.git",
  6173. "reference": "3f0eaf0a40181359470651f1565b3e07e3dd31b8"
  6174. },
  6175. "dist": {
  6176. "type": "zip",
  6177. "url": "https://api.github.com/repos/FriendsOfPHP/Goutte/zipball/3f0eaf0a40181359470651f1565b3e07e3dd31b8",
  6178. "reference": "3f0eaf0a40181359470651f1565b3e07e3dd31b8",
  6179. "shasum": ""
  6180. },
  6181. "require": {
  6182. "guzzlehttp/guzzle": "^6.0",
  6183. "php": ">=5.5.0",
  6184. "symfony/browser-kit": "~2.1|~3.0|~4.0",
  6185. "symfony/css-selector": "~2.1|~3.0|~4.0",
  6186. "symfony/dom-crawler": "~2.1|~3.0|~4.0"
  6187. },
  6188. "require-dev": {
  6189. "symfony/phpunit-bridge": "^3.3 || ^4"
  6190. },
  6191. "type": "application",
  6192. "extra": {
  6193. "branch-alias": {
  6194. "dev-master": "3.2-dev"
  6195. }
  6196. },
  6197. "autoload": {
  6198. "psr-4": {
  6199. "Goutte\\": "Goutte"
  6200. },
  6201. "exclude-from-classmap": [
  6202. "Goutte/Tests"
  6203. ]
  6204. },
  6205. "notification-url": "https://packagist.org/downloads/",
  6206. "license": [
  6207. "MIT"
  6208. ],
  6209. "authors": [
  6210. {
  6211. "name": "Fabien Potencier",
  6212. "email": "fabien@symfony.com"
  6213. }
  6214. ],
  6215. "description": "A simple PHP Web Scraper",
  6216. "homepage": "https://github.com/FriendsOfPHP/Goutte",
  6217. "keywords": [
  6218. "scraper"
  6219. ],
  6220. "time": "2018-06-29T15:13:57+00:00"
  6221. },
  6222. {
  6223. "name": "grasmash/expander",
  6224. "version": "1.0.0",
  6225. "source": {
  6226. "type": "git",
  6227. "url": "https://github.com/grasmash/expander.git",
  6228. "reference": "95d6037344a4be1dd5f8e0b0b2571a28c397578f"
  6229. },
  6230. "dist": {
  6231. "type": "zip",
  6232. "url": "https://api.github.com/repos/grasmash/expander/zipball/95d6037344a4be1dd5f8e0b0b2571a28c397578f",
  6233. "reference": "95d6037344a4be1dd5f8e0b0b2571a28c397578f",
  6234. "shasum": ""
  6235. },
  6236. "require": {
  6237. "dflydev/dot-access-data": "^1.1.0",
  6238. "php": ">=5.4"
  6239. },
  6240. "require-dev": {
  6241. "greg-1-anderson/composer-test-scenarios": "^1",
  6242. "phpunit/phpunit": "^4|^5.5.4",
  6243. "satooshi/php-coveralls": "^1.0.2|dev-master",
  6244. "squizlabs/php_codesniffer": "^2.7"
  6245. },
  6246. "type": "library",
  6247. "extra": {
  6248. "branch-alias": {
  6249. "dev-master": "1.x-dev"
  6250. }
  6251. },
  6252. "autoload": {
  6253. "psr-4": {
  6254. "Grasmash\\Expander\\": "src/"
  6255. }
  6256. },
  6257. "notification-url": "https://packagist.org/downloads/",
  6258. "license": [
  6259. "MIT"
  6260. ],
  6261. "authors": [
  6262. {
  6263. "name": "Matthew Grasmick"
  6264. }
  6265. ],
  6266. "description": "Expands internal property references in PHP arrays file.",
  6267. "time": "2017-12-21T22:14:55+00:00"
  6268. },
  6269. {
  6270. "name": "grasmash/yaml-expander",
  6271. "version": "1.4.0",
  6272. "source": {
  6273. "type": "git",
  6274. "url": "https://github.com/grasmash/yaml-expander.git",
  6275. "reference": "3f0f6001ae707a24f4d9733958d77d92bf9693b1"
  6276. },
  6277. "dist": {
  6278. "type": "zip",
  6279. "url": "https://api.github.com/repos/grasmash/yaml-expander/zipball/3f0f6001ae707a24f4d9733958d77d92bf9693b1",
  6280. "reference": "3f0f6001ae707a24f4d9733958d77d92bf9693b1",
  6281. "shasum": ""
  6282. },
  6283. "require": {
  6284. "dflydev/dot-access-data": "^1.1.0",
  6285. "php": ">=5.4",
  6286. "symfony/yaml": "^2.8.11|^3|^4"
  6287. },
  6288. "require-dev": {
  6289. "greg-1-anderson/composer-test-scenarios": "^1",
  6290. "phpunit/phpunit": "^4.8|^5.5.4",
  6291. "satooshi/php-coveralls": "^1.0.2|dev-master",
  6292. "squizlabs/php_codesniffer": "^2.7"
  6293. },
  6294. "type": "library",
  6295. "extra": {
  6296. "branch-alias": {
  6297. "dev-master": "1.x-dev"
  6298. }
  6299. },
  6300. "autoload": {
  6301. "psr-4": {
  6302. "Grasmash\\YamlExpander\\": "src/"
  6303. }
  6304. },
  6305. "notification-url": "https://packagist.org/downloads/",
  6306. "license": [
  6307. "MIT"
  6308. ],
  6309. "authors": [
  6310. {
  6311. "name": "Matthew Grasmick"
  6312. }
  6313. ],
  6314. "description": "Expands internal property references in a yaml file.",
  6315. "time": "2017-12-16T16:06:03+00:00"
  6316. },
  6317. {
  6318. "name": "guzzlehttp/guzzle",
  6319. "version": "6.4.1",
  6320. "source": {
  6321. "type": "git",
  6322. "url": "https://github.com/guzzle/guzzle.git",
  6323. "reference": "0895c932405407fd3a7368b6910c09a24d26db11"
  6324. },
  6325. "dist": {
  6326. "type": "zip",
  6327. "url": "https://api.github.com/repos/guzzle/guzzle/zipball/0895c932405407fd3a7368b6910c09a24d26db11",
  6328. "reference": "0895c932405407fd3a7368b6910c09a24d26db11",
  6329. "shasum": ""
  6330. },
  6331. "require": {
  6332. "ext-json": "*",
  6333. "guzzlehttp/promises": "^1.0",
  6334. "guzzlehttp/psr7": "^1.6.1",
  6335. "php": ">=5.5"
  6336. },
  6337. "require-dev": {
  6338. "ext-curl": "*",
  6339. "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.4 || ^7.0",
  6340. "psr/log": "^1.1"
  6341. },
  6342. "suggest": {
  6343. "psr/log": "Required for using the Log middleware"
  6344. },
  6345. "type": "library",
  6346. "extra": {
  6347. "branch-alias": {
  6348. "dev-master": "6.3-dev"
  6349. }
  6350. },
  6351. "autoload": {
  6352. "psr-4": {
  6353. "GuzzleHttp\\": "src/"
  6354. },
  6355. "files": [
  6356. "src/functions_include.php"
  6357. ]
  6358. },
  6359. "notification-url": "https://packagist.org/downloads/",
  6360. "license": [
  6361. "MIT"
  6362. ],
  6363. "authors": [
  6364. {
  6365. "name": "Michael Dowling",
  6366. "email": "mtdowling@gmail.com",
  6367. "homepage": "https://github.com/mtdowling"
  6368. }
  6369. ],
  6370. "description": "Guzzle is a PHP HTTP client library",
  6371. "homepage": "http://guzzlephp.org/",
  6372. "keywords": [
  6373. "client",
  6374. "curl",
  6375. "framework",
  6376. "http",
  6377. "http client",
  6378. "rest",
  6379. "web service"
  6380. ],
  6381. "time": "2019-10-23T15:58:00+00:00"
  6382. },
  6383. {
  6384. "name": "guzzlehttp/promises",
  6385. "version": "v1.3.1",
  6386. "source": {
  6387. "type": "git",
  6388. "url": "https://github.com/guzzle/promises.git",
  6389. "reference": "a59da6cf61d80060647ff4d3eb2c03a2bc694646"
  6390. },
  6391. "dist": {
  6392. "type": "zip",
  6393. "url": "https://api.github.com/repos/guzzle/promises/zipball/a59da6cf61d80060647ff4d3eb2c03a2bc694646",
  6394. "reference": "a59da6cf61d80060647ff4d3eb2c03a2bc694646",
  6395. "shasum": ""
  6396. },
  6397. "require": {
  6398. "php": ">=5.5.0"
  6399. },
  6400. "require-dev": {
  6401. "phpunit/phpunit": "^4.0"
  6402. },
  6403. "type": "library",
  6404. "extra": {
  6405. "branch-alias": {
  6406. "dev-master": "1.4-dev"
  6407. }
  6408. },
  6409. "autoload": {
  6410. "psr-4": {
  6411. "GuzzleHttp\\Promise\\": "src/"
  6412. },
  6413. "files": [
  6414. "src/functions_include.php"
  6415. ]
  6416. },
  6417. "notification-url": "https://packagist.org/downloads/",
  6418. "license": [
  6419. "MIT"
  6420. ],
  6421. "authors": [
  6422. {
  6423. "name": "Michael Dowling",
  6424. "email": "mtdowling@gmail.com",
  6425. "homepage": "https://github.com/mtdowling"
  6426. }
  6427. ],
  6428. "description": "Guzzle promises library",
  6429. "keywords": [
  6430. "promise"
  6431. ],
  6432. "time": "2016-12-20T10:07:11+00:00"
  6433. },
  6434. {
  6435. "name": "guzzlehttp/psr7",
  6436. "version": "1.6.1",
  6437. "source": {
  6438. "type": "git",
  6439. "url": "https://github.com/guzzle/psr7.git",
  6440. "reference": "239400de7a173fe9901b9ac7c06497751f00727a"
  6441. },
  6442. "dist": {
  6443. "type": "zip",
  6444. "url": "https://api.github.com/repos/guzzle/psr7/zipball/239400de7a173fe9901b9ac7c06497751f00727a",
  6445. "reference": "239400de7a173fe9901b9ac7c06497751f00727a",
  6446. "shasum": ""
  6447. },
  6448. "require": {
  6449. "php": ">=5.4.0",
  6450. "psr/http-message": "~1.0",
  6451. "ralouphie/getallheaders": "^2.0.5 || ^3.0.0"
  6452. },
  6453. "provide": {
  6454. "psr/http-message-implementation": "1.0"
  6455. },
  6456. "require-dev": {
  6457. "ext-zlib": "*",
  6458. "phpunit/phpunit": "~4.8.36 || ^5.7.27 || ^6.5.8"
  6459. },
  6460. "suggest": {
  6461. "zendframework/zend-httphandlerrunner": "Emit PSR-7 responses"
  6462. },
  6463. "type": "library",
  6464. "extra": {
  6465. "branch-alias": {
  6466. "dev-master": "1.6-dev"
  6467. }
  6468. },
  6469. "autoload": {
  6470. "psr-4": {
  6471. "GuzzleHttp\\Psr7\\": "src/"
  6472. },
  6473. "files": [
  6474. "src/functions_include.php"
  6475. ]
  6476. },
  6477. "notification-url": "https://packagist.org/downloads/",
  6478. "license": [
  6479. "MIT"
  6480. ],
  6481. "authors": [
  6482. {
  6483. "name": "Michael Dowling",
  6484. "email": "mtdowling@gmail.com",
  6485. "homepage": "https://github.com/mtdowling"
  6486. },
  6487. {
  6488. "name": "Tobias Schultze",
  6489. "homepage": "https://github.com/Tobion"
  6490. }
  6491. ],
  6492. "description": "PSR-7 message implementation that also provides common utility methods",
  6493. "keywords": [
  6494. "http",
  6495. "message",
  6496. "psr-7",
  6497. "request",
  6498. "response",
  6499. "stream",
  6500. "uri",
  6501. "url"
  6502. ],
  6503. "time": "2019-07-01T23:21:34+00:00"
  6504. },
  6505. {
  6506. "name": "instaclick/php-webdriver",
  6507. "version": "1.4.6",
  6508. "source": {
  6509. "type": "git",
  6510. "url": "https://github.com/instaclick/php-webdriver.git",
  6511. "reference": "bd9405077ca04129a73059a06873bedb5e138402"
  6512. },
  6513. "dist": {
  6514. "type": "zip",
  6515. "url": "https://api.github.com/repos/instaclick/php-webdriver/zipball/bd9405077ca04129a73059a06873bedb5e138402",
  6516. "reference": "bd9405077ca04129a73059a06873bedb5e138402",
  6517. "shasum": ""
  6518. },
  6519. "require": {
  6520. "ext-curl": "*",
  6521. "php": ">=5.3.2"
  6522. },
  6523. "require-dev": {
  6524. "phpunit/phpunit": "^4.8",
  6525. "satooshi/php-coveralls": "^1.0||^2.0"
  6526. },
  6527. "type": "library",
  6528. "extra": {
  6529. "branch-alias": {
  6530. "dev-master": "1.4.x-dev"
  6531. }
  6532. },
  6533. "autoload": {
  6534. "psr-0": {
  6535. "WebDriver": "lib/"
  6536. }
  6537. },
  6538. "notification-url": "https://packagist.org/downloads/",
  6539. "license": [
  6540. "Apache-2.0"
  6541. ],
  6542. "authors": [
  6543. {
  6544. "name": "Justin Bishop",
  6545. "email": "jubishop@gmail.com",
  6546. "role": "Developer"
  6547. },
  6548. {
  6549. "name": "Anthon Pang",
  6550. "email": "apang@softwaredevelopment.ca",
  6551. "role": "Fork Maintainer"
  6552. }
  6553. ],
  6554. "description": "PHP WebDriver for Selenium 2",
  6555. "homepage": "http://instaclick.com/",
  6556. "keywords": [
  6557. "browser",
  6558. "selenium",
  6559. "webdriver",
  6560. "webtest"
  6561. ],
  6562. "time": "2019-09-23T15:50:44+00:00"
  6563. },
  6564. {
  6565. "name": "jakub-onderka/php-console-color",
  6566. "version": "v0.2",
  6567. "source": {
  6568. "type": "git",
  6569. "url": "https://github.com/JakubOnderka/PHP-Console-Color.git",
  6570. "reference": "d5deaecff52a0d61ccb613bb3804088da0307191"
  6571. },
  6572. "dist": {
  6573. "type": "zip",
  6574. "url": "https://api.github.com/repos/JakubOnderka/PHP-Console-Color/zipball/d5deaecff52a0d61ccb613bb3804088da0307191",
  6575. "reference": "d5deaecff52a0d61ccb613bb3804088da0307191",
  6576. "shasum": ""
  6577. },
  6578. "require": {
  6579. "php": ">=5.4.0"
  6580. },
  6581. "require-dev": {
  6582. "jakub-onderka/php-code-style": "1.0",
  6583. "jakub-onderka/php-parallel-lint": "1.0",
  6584. "jakub-onderka/php-var-dump-check": "0.*",
  6585. "phpunit/phpunit": "~4.3",
  6586. "squizlabs/php_codesniffer": "1.*"
  6587. },
  6588. "type": "library",
  6589. "autoload": {
  6590. "psr-4": {
  6591. "JakubOnderka\\PhpConsoleColor\\": "src/"
  6592. }
  6593. },
  6594. "notification-url": "https://packagist.org/downloads/",
  6595. "license": [
  6596. "BSD-2-Clause"
  6597. ],
  6598. "authors": [
  6599. {
  6600. "name": "Jakub Onderka",
  6601. "email": "jakub.onderka@gmail.com"
  6602. }
  6603. ],
  6604. "time": "2018-09-29T17:23:10+00:00"
  6605. },
  6606. {
  6607. "name": "jakub-onderka/php-console-highlighter",
  6608. "version": "v0.4",
  6609. "source": {
  6610. "type": "git",
  6611. "url": "https://github.com/JakubOnderka/PHP-Console-Highlighter.git",
  6612. "reference": "9f7a229a69d52506914b4bc61bfdb199d90c5547"
  6613. },
  6614. "dist": {
  6615. "type": "zip",
  6616. "url": "https://api.github.com/repos/JakubOnderka/PHP-Console-Highlighter/zipball/9f7a229a69d52506914b4bc61bfdb199d90c5547",
  6617. "reference": "9f7a229a69d52506914b4bc61bfdb199d90c5547",
  6618. "shasum": ""
  6619. },
  6620. "require": {
  6621. "ext-tokenizer": "*",
  6622. "jakub-onderka/php-console-color": "~0.2",
  6623. "php": ">=5.4.0"
  6624. },
  6625. "require-dev": {
  6626. "jakub-onderka/php-code-style": "~1.0",
  6627. "jakub-onderka/php-parallel-lint": "~1.0",
  6628. "jakub-onderka/php-var-dump-check": "~0.1",
  6629. "phpunit/phpunit": "~4.0",
  6630. "squizlabs/php_codesniffer": "~1.5"
  6631. },
  6632. "type": "library",
  6633. "autoload": {
  6634. "psr-4": {
  6635. "JakubOnderka\\PhpConsoleHighlighter\\": "src/"
  6636. }
  6637. },
  6638. "notification-url": "https://packagist.org/downloads/",
  6639. "license": [
  6640. "MIT"
  6641. ],
  6642. "authors": [
  6643. {
  6644. "name": "Jakub Onderka",
  6645. "email": "acci@acci.cz",
  6646. "homepage": "http://www.acci.cz/"
  6647. }
  6648. ],
  6649. "description": "Highlight PHP code in terminal",
  6650. "time": "2018-09-29T18:48:56+00:00"
  6651. },
  6652. {
  6653. "name": "jcalderonzumba/gastonjs",
  6654. "version": "v1.2.0",
  6655. "source": {
  6656. "type": "git",
  6657. "url": "https://github.com/jcalderonzumba/gastonjs.git",
  6658. "reference": "575a9c18d8b87990c37252e8d9707b29f0a313f3"
  6659. },
  6660. "dist": {
  6661. "type": "zip",
  6662. "url": "https://api.github.com/repos/jcalderonzumba/gastonjs/zipball/575a9c18d8b87990c37252e8d9707b29f0a313f3",
  6663. "reference": "575a9c18d8b87990c37252e8d9707b29f0a313f3",
  6664. "shasum": ""
  6665. },
  6666. "require": {
  6667. "guzzlehttp/guzzle": "~5.0|~6.0",
  6668. "php": ">=5.4"
  6669. },
  6670. "require-dev": {
  6671. "phpunit/phpunit": "~4.6",
  6672. "silex/silex": "~1.2",
  6673. "symfony/phpunit-bridge": "~2.7",
  6674. "symfony/process": "~2.1"
  6675. },
  6676. "type": "phantomjs-api",
  6677. "extra": {
  6678. "branch-alias": {
  6679. "dev-master": "1.1.x-dev"
  6680. }
  6681. },
  6682. "autoload": {
  6683. "psr-4": {
  6684. "Zumba\\GastonJS\\": "src"
  6685. }
  6686. },
  6687. "notification-url": "https://packagist.org/downloads/",
  6688. "license": [
  6689. "MIT"
  6690. ],
  6691. "authors": [
  6692. {
  6693. "name": "Juan Francisco Calderón Zumba",
  6694. "email": "juanfcz@gmail.com",
  6695. "homepage": "http://github.com/jcalderonzumba"
  6696. }
  6697. ],
  6698. "description": "PhantomJS API based server for webpage automation",
  6699. "homepage": "https://github.com/jcalderonzumba/gastonjs",
  6700. "keywords": [
  6701. "api",
  6702. "automation",
  6703. "browser",
  6704. "headless",
  6705. "phantomjs"
  6706. ],
  6707. "time": "2017-03-31T07:31:47+00:00"
  6708. },
  6709. {
  6710. "name": "jcalderonzumba/mink-phantomjs-driver",
  6711. "version": "v0.3.3",
  6712. "source": {
  6713. "type": "git",
  6714. "url": "https://github.com/jcalderonzumba/MinkPhantomJSDriver.git",
  6715. "reference": "008f43670e94acd39273d15add1e7348eb23848d"
  6716. },
  6717. "dist": {
  6718. "type": "zip",
  6719. "url": "https://api.github.com/repos/jcalderonzumba/MinkPhantomJSDriver/zipball/008f43670e94acd39273d15add1e7348eb23848d",
  6720. "reference": "008f43670e94acd39273d15add1e7348eb23848d",
  6721. "shasum": ""
  6722. },
  6723. "require": {
  6724. "behat/mink": "~1.7",
  6725. "jcalderonzumba/gastonjs": "~1.0",
  6726. "php": ">=5.4",
  6727. "twig/twig": "~1.20|~2.0"
  6728. },
  6729. "require-dev": {
  6730. "mink/driver-testsuite": "dev-master",
  6731. "phpunit/phpunit": "~4.6"
  6732. },
  6733. "type": "mink-driver",
  6734. "extra": {
  6735. "branch-alias": {
  6736. "dev-master": "0.4.x-dev"
  6737. }
  6738. },
  6739. "autoload": {
  6740. "psr-4": {
  6741. "Zumba\\Mink\\Driver\\": "src"
  6742. }
  6743. },
  6744. "notification-url": "https://packagist.org/downloads/",
  6745. "license": [
  6746. "MIT"
  6747. ],
  6748. "authors": [
  6749. {
  6750. "name": "Juan Francisco Calderón Zumba",
  6751. "email": "juanfcz@gmail.com",
  6752. "homepage": "http://github.com/jcalderonzumba"
  6753. }
  6754. ],
  6755. "description": "PhantomJS driver for Mink framework",
  6756. "homepage": "http://mink.behat.org/",
  6757. "keywords": [
  6758. "ajax",
  6759. "browser",
  6760. "headless",
  6761. "javascript",
  6762. "phantomjs",
  6763. "testing"
  6764. ],
  6765. "time": "2016-12-01T10:57:30+00:00"
  6766. },
  6767. {
  6768. "name": "league/container",
  6769. "version": "2.4.1",
  6770. "source": {
  6771. "type": "git",
  6772. "url": "https://github.com/thephpleague/container.git",
  6773. "reference": "43f35abd03a12977a60ffd7095efd6a7808488c0"
  6774. },
  6775. "dist": {
  6776. "type": "zip",
  6777. "url": "https://api.github.com/repos/thephpleague/container/zipball/43f35abd03a12977a60ffd7095efd6a7808488c0",
  6778. "reference": "43f35abd03a12977a60ffd7095efd6a7808488c0",
  6779. "shasum": ""
  6780. },
  6781. "require": {
  6782. "container-interop/container-interop": "^1.2",
  6783. "php": "^5.4.0 || ^7.0"
  6784. },
  6785. "provide": {
  6786. "container-interop/container-interop-implementation": "^1.2",
  6787. "psr/container-implementation": "^1.0"
  6788. },
  6789. "replace": {
  6790. "orno/di": "~2.0"
  6791. },
  6792. "require-dev": {
  6793. "phpunit/phpunit": "4.*"
  6794. },
  6795. "type": "library",
  6796. "extra": {
  6797. "branch-alias": {
  6798. "dev-2.x": "2.x-dev",
  6799. "dev-1.x": "1.x-dev"
  6800. }
  6801. },
  6802. "autoload": {
  6803. "psr-4": {
  6804. "League\\Container\\": "src"
  6805. }
  6806. },
  6807. "notification-url": "https://packagist.org/downloads/",
  6808. "license": [
  6809. "MIT"
  6810. ],
  6811. "authors": [
  6812. {
  6813. "name": "Phil Bennett",
  6814. "email": "philipobenito@gmail.com",
  6815. "homepage": "http://www.philipobenito.com",
  6816. "role": "Developer"
  6817. }
  6818. ],
  6819. "description": "A fast and intuitive dependency injection container.",
  6820. "homepage": "https://github.com/thephpleague/container",
  6821. "keywords": [
  6822. "container",
  6823. "dependency",
  6824. "di",
  6825. "injection",
  6826. "league",
  6827. "provider",
  6828. "service"
  6829. ],
  6830. "time": "2017-05-10T09:20:27+00:00"
  6831. },
  6832. {
  6833. "name": "masterminds/html5",
  6834. "version": "2.7.0",
  6835. "source": {
  6836. "type": "git",
  6837. "url": "https://github.com/Masterminds/html5-php.git",
  6838. "reference": "104443ad663d15981225f99532ba73c2f1d6b6f2"
  6839. },
  6840. "dist": {
  6841. "type": "zip",
  6842. "url": "https://api.github.com/repos/Masterminds/html5-php/zipball/104443ad663d15981225f99532ba73c2f1d6b6f2",
  6843. "reference": "104443ad663d15981225f99532ba73c2f1d6b6f2",
  6844. "shasum": ""
  6845. },
  6846. "require": {
  6847. "ext-ctype": "*",
  6848. "ext-dom": "*",
  6849. "ext-libxml": "*",
  6850. "php": ">=5.3.0"
  6851. },
  6852. "require-dev": {
  6853. "phpunit/phpunit": "^4.8.35",
  6854. "sami/sami": "~2.0",
  6855. "satooshi/php-coveralls": "1.0.*"
  6856. },
  6857. "type": "library",
  6858. "extra": {
  6859. "branch-alias": {
  6860. "dev-master": "2.7-dev"
  6861. }
  6862. },
  6863. "autoload": {
  6864. "psr-4": {
  6865. "Masterminds\\": "src"
  6866. }
  6867. },
  6868. "notification-url": "https://packagist.org/downloads/",
  6869. "license": [
  6870. "MIT"
  6871. ],
  6872. "authors": [
  6873. {
  6874. "name": "Matt Butcher",
  6875. "email": "technosophos@gmail.com"
  6876. },
  6877. {
  6878. "name": "Matt Farina",
  6879. "email": "matt@mattfarina.com"
  6880. },
  6881. {
  6882. "name": "Asmir Mustafic",
  6883. "email": "goetas@gmail.com"
  6884. }
  6885. ],
  6886. "description": "An HTML5 parser and serializer.",
  6887. "homepage": "http://masterminds.github.io/html5-php",
  6888. "keywords": [
  6889. "HTML5",
  6890. "dom",
  6891. "html",
  6892. "parser",
  6893. "querypath",
  6894. "serializer",
  6895. "xml"
  6896. ],
  6897. "time": "2019-07-25T07:03:26+00:00"
  6898. },
  6899. {
  6900. "name": "mikey179/vfsstream",
  6901. "version": "v1.6.8",
  6902. "source": {
  6903. "type": "git",
  6904. "url": "https://github.com/bovigo/vfsStream.git",
  6905. "reference": "231c73783ebb7dd9ec77916c10037eff5a2b6efe"
  6906. },
  6907. "dist": {
  6908. "type": "zip",
  6909. "url": "https://api.github.com/repos/bovigo/vfsStream/zipball/231c73783ebb7dd9ec77916c10037eff5a2b6efe",
  6910. "reference": "231c73783ebb7dd9ec77916c10037eff5a2b6efe",
  6911. "shasum": ""
  6912. },
  6913. "require": {
  6914. "php": ">=5.3.0"
  6915. },
  6916. "require-dev": {
  6917. "phpunit/phpunit": "^4.5|^5.0"
  6918. },
  6919. "type": "library",
  6920. "extra": {
  6921. "branch-alias": {
  6922. "dev-master": "1.6.x-dev"
  6923. }
  6924. },
  6925. "autoload": {
  6926. "psr-0": {
  6927. "org\\bovigo\\vfs\\": "src/main/php"
  6928. }
  6929. },
  6930. "notification-url": "https://packagist.org/downloads/",
  6931. "license": [
  6932. "BSD-3-Clause"
  6933. ],
  6934. "authors": [
  6935. {
  6936. "name": "Frank Kleine",
  6937. "homepage": "http://frankkleine.de/",
  6938. "role": "Developer"
  6939. }
  6940. ],
  6941. "description": "Virtual file system to mock the real file system in unit tests.",
  6942. "homepage": "http://vfs.bovigo.org/",
  6943. "time": "2019-10-30T15:31:00+00:00"
  6944. },
  6945. {
  6946. "name": "myclabs/deep-copy",
  6947. "version": "1.7.0",
  6948. "source": {
  6949. "type": "git",
  6950. "url": "https://github.com/myclabs/DeepCopy.git",
  6951. "reference": "3b8a3a99ba1f6a3952ac2747d989303cbd6b7a3e"
  6952. },
  6953. "dist": {
  6954. "type": "zip",
  6955. "url": "https://api.github.com/repos/myclabs/DeepCopy/zipball/3b8a3a99ba1f6a3952ac2747d989303cbd6b7a3e",
  6956. "reference": "3b8a3a99ba1f6a3952ac2747d989303cbd6b7a3e",
  6957. "shasum": ""
  6958. },
  6959. "require": {
  6960. "php": "^5.6 || ^7.0"
  6961. },
  6962. "require-dev": {
  6963. "doctrine/collections": "^1.0",
  6964. "doctrine/common": "^2.6",
  6965. "phpunit/phpunit": "^4.1"
  6966. },
  6967. "type": "library",
  6968. "autoload": {
  6969. "psr-4": {
  6970. "DeepCopy\\": "src/DeepCopy/"
  6971. },
  6972. "files": [
  6973. "src/DeepCopy/deep_copy.php"
  6974. ]
  6975. },
  6976. "notification-url": "https://packagist.org/downloads/",
  6977. "license": [
  6978. "MIT"
  6979. ],
  6980. "description": "Create deep copies (clones) of your objects",
  6981. "keywords": [
  6982. "clone",
  6983. "copy",
  6984. "duplicate",
  6985. "object",
  6986. "object graph"
  6987. ],
  6988. "time": "2017-10-19T19:58:43+00:00"
  6989. },
  6990. {
  6991. "name": "nikic/php-parser",
  6992. "version": "v4.3.0",
  6993. "source": {
  6994. "type": "git",
  6995. "url": "https://github.com/nikic/PHP-Parser.git",
  6996. "reference": "9a9981c347c5c49d6dfe5cf826bb882b824080dc"
  6997. },
  6998. "dist": {
  6999. "type": "zip",
  7000. "url": "https://api.github.com/repos/nikic/PHP-Parser/zipball/9a9981c347c5c49d6dfe5cf826bb882b824080dc",
  7001. "reference": "9a9981c347c5c49d6dfe5cf826bb882b824080dc",
  7002. "shasum": ""
  7003. },
  7004. "require": {
  7005. "ext-tokenizer": "*",
  7006. "php": ">=7.0"
  7007. },
  7008. "require-dev": {
  7009. "ircmaxell/php-yacc": "0.0.5",
  7010. "phpunit/phpunit": "^6.5 || ^7.0 || ^8.0"
  7011. },
  7012. "bin": [
  7013. "bin/php-parse"
  7014. ],
  7015. "type": "library",
  7016. "extra": {
  7017. "branch-alias": {
  7018. "dev-master": "4.3-dev"
  7019. }
  7020. },
  7021. "autoload": {
  7022. "psr-4": {
  7023. "PhpParser\\": "lib/PhpParser"
  7024. }
  7025. },
  7026. "notification-url": "https://packagist.org/downloads/",
  7027. "license": [
  7028. "BSD-3-Clause"
  7029. ],
  7030. "authors": [
  7031. {
  7032. "name": "Nikita Popov"
  7033. }
  7034. ],
  7035. "description": "A PHP parser written in PHP",
  7036. "keywords": [
  7037. "parser",
  7038. "php"
  7039. ],
  7040. "time": "2019-11-08T13:50:10+00:00"
  7041. },
  7042. {
  7043. "name": "oomphinc/composer-installers-extender",
  7044. "version": "v1.1.2",
  7045. "source": {
  7046. "type": "git",
  7047. "url": "https://github.com/oomphinc/composer-installers-extender.git",
  7048. "reference": "ca1c4b16b0905c81d1e77e608f36a2eff1a56f56"
  7049. },
  7050. "dist": {
  7051. "type": "zip",
  7052. "url": "https://api.github.com/repos/oomphinc/composer-installers-extender/zipball/ca1c4b16b0905c81d1e77e608f36a2eff1a56f56",
  7053. "reference": "ca1c4b16b0905c81d1e77e608f36a2eff1a56f56",
  7054. "shasum": ""
  7055. },
  7056. "require": {
  7057. "composer-plugin-api": "^1.0",
  7058. "composer/installers": "^1.0"
  7059. },
  7060. "type": "composer-plugin",
  7061. "extra": {
  7062. "class": "OomphInc\\ComposerInstallersExtender\\Plugin"
  7063. },
  7064. "autoload": {
  7065. "psr-4": {
  7066. "OomphInc\\ComposerInstallersExtender\\": "src/"
  7067. }
  7068. },
  7069. "notification-url": "https://packagist.org/downloads/",
  7070. "license": [
  7071. "MIT"
  7072. ],
  7073. "authors": [
  7074. {
  7075. "name": "Stephen Beemsterboer",
  7076. "email": "stephen@oomphinc.com",
  7077. "homepage": "https://github.com/balbuf"
  7078. }
  7079. ],
  7080. "description": "Extend the composer/installers plugin to accept any arbitrary package type.",
  7081. "homepage": "http://www.oomphinc.com/",
  7082. "time": "2017-03-31T16:57:39+00:00"
  7083. },
  7084. {
  7085. "name": "paragonie/random_compat",
  7086. "version": "v2.0.18",
  7087. "source": {
  7088. "type": "git",
  7089. "url": "https://github.com/paragonie/random_compat.git",
  7090. "reference": "0a58ef6e3146256cc3dc7cc393927bcc7d1b72db"
  7091. },
  7092. "dist": {
  7093. "type": "zip",
  7094. "url": "https://api.github.com/repos/paragonie/random_compat/zipball/0a58ef6e3146256cc3dc7cc393927bcc7d1b72db",
  7095. "reference": "0a58ef6e3146256cc3dc7cc393927bcc7d1b72db",
  7096. "shasum": ""
  7097. },
  7098. "require": {
  7099. "php": ">=5.2.0"
  7100. },
  7101. "require-dev": {
  7102. "phpunit/phpunit": "4.*|5.*"
  7103. },
  7104. "suggest": {
  7105. "ext-libsodium": "Provides a modern crypto API that can be used to generate random bytes."
  7106. },
  7107. "type": "library",
  7108. "autoload": {
  7109. "files": [
  7110. "lib/random.php"
  7111. ]
  7112. },
  7113. "notification-url": "https://packagist.org/downloads/",
  7114. "license": [
  7115. "MIT"
  7116. ],
  7117. "authors": [
  7118. {
  7119. "name": "Paragon Initiative Enterprises",
  7120. "email": "security@paragonie.com",
  7121. "homepage": "https://paragonie.com"
  7122. }
  7123. ],
  7124. "description": "PHP 5.x polyfill for random_bytes() and random_int() from PHP 7",
  7125. "keywords": [
  7126. "csprng",
  7127. "polyfill",
  7128. "pseudorandom",
  7129. "random"
  7130. ],
  7131. "time": "2019-01-03T20:59:08+00:00"
  7132. },
  7133. {
  7134. "name": "phar-io/manifest",
  7135. "version": "1.0.1",
  7136. "source": {
  7137. "type": "git",
  7138. "url": "https://github.com/phar-io/manifest.git",
  7139. "reference": "2df402786ab5368a0169091f61a7c1e0eb6852d0"
  7140. },
  7141. "dist": {
  7142. "type": "zip",
  7143. "url": "https://api.github.com/repos/phar-io/manifest/zipball/2df402786ab5368a0169091f61a7c1e0eb6852d0",
  7144. "reference": "2df402786ab5368a0169091f61a7c1e0eb6852d0",
  7145. "shasum": ""
  7146. },
  7147. "require": {
  7148. "ext-dom": "*",
  7149. "ext-phar": "*",
  7150. "phar-io/version": "^1.0.1",
  7151. "php": "^5.6 || ^7.0"
  7152. },
  7153. "type": "library",
  7154. "extra": {
  7155. "branch-alias": {
  7156. "dev-master": "1.0.x-dev"
  7157. }
  7158. },
  7159. "autoload": {
  7160. "classmap": [
  7161. "src/"
  7162. ]
  7163. },
  7164. "notification-url": "https://packagist.org/downloads/",
  7165. "license": [
  7166. "BSD-3-Clause"
  7167. ],
  7168. "authors": [
  7169. {
  7170. "name": "Arne Blankerts",
  7171. "email": "arne@blankerts.de",
  7172. "role": "Developer"
  7173. },
  7174. {
  7175. "name": "Sebastian Heuer",
  7176. "email": "sebastian@phpeople.de",
  7177. "role": "Developer"
  7178. },
  7179. {
  7180. "name": "Sebastian Bergmann",
  7181. "email": "sebastian@phpunit.de",
  7182. "role": "Developer"
  7183. }
  7184. ],
  7185. "description": "Component for reading phar.io manifest information from a PHP Archive (PHAR)",
  7186. "time": "2017-03-05T18:14:27+00:00"
  7187. },
  7188. {
  7189. "name": "phar-io/version",
  7190. "version": "1.0.1",
  7191. "source": {
  7192. "type": "git",
  7193. "url": "https://github.com/phar-io/version.git",
  7194. "reference": "a70c0ced4be299a63d32fa96d9281d03e94041df"
  7195. },
  7196. "dist": {
  7197. "type": "zip",
  7198. "url": "https://api.github.com/repos/phar-io/version/zipball/a70c0ced4be299a63d32fa96d9281d03e94041df",
  7199. "reference": "a70c0ced4be299a63d32fa96d9281d03e94041df",
  7200. "shasum": ""
  7201. },
  7202. "require": {
  7203. "php": "^5.6 || ^7.0"
  7204. },
  7205. "type": "library",
  7206. "autoload": {
  7207. "classmap": [
  7208. "src/"
  7209. ]
  7210. },
  7211. "notification-url": "https://packagist.org/downloads/",
  7212. "license": [
  7213. "BSD-3-Clause"
  7214. ],
  7215. "authors": [
  7216. {
  7217. "name": "Arne Blankerts",
  7218. "email": "arne@blankerts.de",
  7219. "role": "Developer"
  7220. },
  7221. {
  7222. "name": "Sebastian Heuer",
  7223. "email": "sebastian@phpeople.de",
  7224. "role": "Developer"
  7225. },
  7226. {
  7227. "name": "Sebastian Bergmann",
  7228. "email": "sebastian@phpunit.de",
  7229. "role": "Developer"
  7230. }
  7231. ],
  7232. "description": "Library for handling version information and constraints",
  7233. "time": "2017-03-05T17:38:23+00:00"
  7234. },
  7235. {
  7236. "name": "phpdocumentor/reflection-common",
  7237. "version": "1.0.1",
  7238. "source": {
  7239. "type": "git",
  7240. "url": "https://github.com/phpDocumentor/ReflectionCommon.git",
  7241. "reference": "21bdeb5f65d7ebf9f43b1b25d404f87deab5bfb6"
  7242. },
  7243. "dist": {
  7244. "type": "zip",
  7245. "url": "https://api.github.com/repos/phpDocumentor/ReflectionCommon/zipball/21bdeb5f65d7ebf9f43b1b25d404f87deab5bfb6",
  7246. "reference": "21bdeb5f65d7ebf9f43b1b25d404f87deab5bfb6",
  7247. "shasum": ""
  7248. },
  7249. "require": {
  7250. "php": ">=5.5"
  7251. },
  7252. "require-dev": {
  7253. "phpunit/phpunit": "^4.6"
  7254. },
  7255. "type": "library",
  7256. "extra": {
  7257. "branch-alias": {
  7258. "dev-master": "1.0.x-dev"
  7259. }
  7260. },
  7261. "autoload": {
  7262. "psr-4": {
  7263. "phpDocumentor\\Reflection\\": [
  7264. "src"
  7265. ]
  7266. }
  7267. },
  7268. "notification-url": "https://packagist.org/downloads/",
  7269. "license": [
  7270. "MIT"
  7271. ],
  7272. "authors": [
  7273. {
  7274. "name": "Jaap van Otterdijk",
  7275. "email": "opensource@ijaap.nl"
  7276. }
  7277. ],
  7278. "description": "Common reflection classes used by phpdocumentor to reflect the code structure",
  7279. "homepage": "http://www.phpdoc.org",
  7280. "keywords": [
  7281. "FQSEN",
  7282. "phpDocumentor",
  7283. "phpdoc",
  7284. "reflection",
  7285. "static analysis"
  7286. ],
  7287. "time": "2017-09-11T18:02:19+00:00"
  7288. },
  7289. {
  7290. "name": "phpdocumentor/reflection-docblock",
  7291. "version": "4.3.2",
  7292. "source": {
  7293. "type": "git",
  7294. "url": "https://github.com/phpDocumentor/ReflectionDocBlock.git",
  7295. "reference": "b83ff7cfcfee7827e1e78b637a5904fe6a96698e"
  7296. },
  7297. "dist": {
  7298. "type": "zip",
  7299. "url": "https://api.github.com/repos/phpDocumentor/ReflectionDocBlock/zipball/b83ff7cfcfee7827e1e78b637a5904fe6a96698e",
  7300. "reference": "b83ff7cfcfee7827e1e78b637a5904fe6a96698e",
  7301. "shasum": ""
  7302. },
  7303. "require": {
  7304. "php": "^7.0",
  7305. "phpdocumentor/reflection-common": "^1.0.0 || ^2.0.0",
  7306. "phpdocumentor/type-resolver": "~0.4 || ^1.0.0",
  7307. "webmozart/assert": "^1.0"
  7308. },
  7309. "require-dev": {
  7310. "doctrine/instantiator": "^1.0.5",
  7311. "mockery/mockery": "^1.0",
  7312. "phpunit/phpunit": "^6.4"
  7313. },
  7314. "type": "library",
  7315. "extra": {
  7316. "branch-alias": {
  7317. "dev-master": "4.x-dev"
  7318. }
  7319. },
  7320. "autoload": {
  7321. "psr-4": {
  7322. "phpDocumentor\\Reflection\\": [
  7323. "src/"
  7324. ]
  7325. }
  7326. },
  7327. "notification-url": "https://packagist.org/downloads/",
  7328. "license": [
  7329. "MIT"
  7330. ],
  7331. "authors": [
  7332. {
  7333. "name": "Mike van Riel",
  7334. "email": "me@mikevanriel.com"
  7335. }
  7336. ],
  7337. "description": "With this component, a library can provide support for annotations via DocBlocks or otherwise retrieve information that is embedded in a DocBlock.",
  7338. "time": "2019-09-12T14:27:41+00:00"
  7339. },
  7340. {
  7341. "name": "phpdocumentor/type-resolver",
  7342. "version": "0.5.1",
  7343. "source": {
  7344. "type": "git",
  7345. "url": "https://github.com/phpDocumentor/TypeResolver.git",
  7346. "reference": "cf842904952e64e703800d094cdf34e715a8a3ae"
  7347. },
  7348. "dist": {
  7349. "type": "zip",
  7350. "url": "https://api.github.com/repos/phpDocumentor/TypeResolver/zipball/cf842904952e64e703800d094cdf34e715a8a3ae",
  7351. "reference": "cf842904952e64e703800d094cdf34e715a8a3ae",
  7352. "shasum": ""
  7353. },
  7354. "require": {
  7355. "php": "^7.0",
  7356. "phpdocumentor/reflection-common": "^1.0"
  7357. },
  7358. "require-dev": {
  7359. "mockery/mockery": "^1.0",
  7360. "phpunit/phpunit": "^6.4"
  7361. },
  7362. "type": "library",
  7363. "extra": {
  7364. "branch-alias": {
  7365. "dev-master": "1.0.x-dev"
  7366. }
  7367. },
  7368. "autoload": {
  7369. "psr-4": {
  7370. "phpDocumentor\\Reflection\\": "src"
  7371. }
  7372. },
  7373. "notification-url": "https://packagist.org/downloads/",
  7374. "license": [
  7375. "MIT"
  7376. ],
  7377. "authors": [
  7378. {
  7379. "name": "Mike van Riel",
  7380. "email": "me@mikevanriel.com"
  7381. }
  7382. ],
  7383. "time": "2017-12-30T13:23:38+00:00"
  7384. },
  7385. {
  7386. "name": "phpspec/prophecy",
  7387. "version": "1.9.0",
  7388. "source": {
  7389. "type": "git",
  7390. "url": "https://github.com/phpspec/prophecy.git",
  7391. "reference": "f6811d96d97bdf400077a0cc100ae56aa32b9203"
  7392. },
  7393. "dist": {
  7394. "type": "zip",
  7395. "url": "https://api.github.com/repos/phpspec/prophecy/zipball/f6811d96d97bdf400077a0cc100ae56aa32b9203",
  7396. "reference": "f6811d96d97bdf400077a0cc100ae56aa32b9203",
  7397. "shasum": ""
  7398. },
  7399. "require": {
  7400. "doctrine/instantiator": "^1.0.2",
  7401. "php": "^5.3|^7.0",
  7402. "phpdocumentor/reflection-docblock": "^2.0|^3.0.2|^4.0|^5.0",
  7403. "sebastian/comparator": "^1.1|^2.0|^3.0",
  7404. "sebastian/recursion-context": "^1.0|^2.0|^3.0"
  7405. },
  7406. "require-dev": {
  7407. "phpspec/phpspec": "^2.5|^3.2",
  7408. "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.5 || ^7.1"
  7409. },
  7410. "type": "library",
  7411. "extra": {
  7412. "branch-alias": {
  7413. "dev-master": "1.8.x-dev"
  7414. }
  7415. },
  7416. "autoload": {
  7417. "psr-4": {
  7418. "Prophecy\\": "src/Prophecy"
  7419. }
  7420. },
  7421. "notification-url": "https://packagist.org/downloads/",
  7422. "license": [
  7423. "MIT"
  7424. ],
  7425. "authors": [
  7426. {
  7427. "name": "Konstantin Kudryashov",
  7428. "email": "ever.zet@gmail.com",
  7429. "homepage": "http://everzet.com"
  7430. },
  7431. {
  7432. "name": "Marcello Duarte",
  7433. "email": "marcello.duarte@gmail.com"
  7434. }
  7435. ],
  7436. "description": "Highly opinionated mocking framework for PHP 5.3+",
  7437. "homepage": "https://github.com/phpspec/prophecy",
  7438. "keywords": [
  7439. "Double",
  7440. "Dummy",
  7441. "fake",
  7442. "mock",
  7443. "spy",
  7444. "stub"
  7445. ],
  7446. "time": "2019-10-03T11:07:50+00:00"
  7447. },
  7448. {
  7449. "name": "phpunit/php-code-coverage",
  7450. "version": "5.3.2",
  7451. "source": {
  7452. "type": "git",
  7453. "url": "https://github.com/sebastianbergmann/php-code-coverage.git",
  7454. "reference": "c89677919c5dd6d3b3852f230a663118762218ac"
  7455. },
  7456. "dist": {
  7457. "type": "zip",
  7458. "url": "https://api.github.com/repos/sebastianbergmann/php-code-coverage/zipball/c89677919c5dd6d3b3852f230a663118762218ac",
  7459. "reference": "c89677919c5dd6d3b3852f230a663118762218ac",
  7460. "shasum": ""
  7461. },
  7462. "require": {
  7463. "ext-dom": "*",
  7464. "ext-xmlwriter": "*",
  7465. "php": "^7.0",
  7466. "phpunit/php-file-iterator": "^1.4.2",
  7467. "phpunit/php-text-template": "^1.2.1",
  7468. "phpunit/php-token-stream": "^2.0.1",
  7469. "sebastian/code-unit-reverse-lookup": "^1.0.1",
  7470. "sebastian/environment": "^3.0",
  7471. "sebastian/version": "^2.0.1",
  7472. "theseer/tokenizer": "^1.1"
  7473. },
  7474. "require-dev": {
  7475. "phpunit/phpunit": "^6.0"
  7476. },
  7477. "suggest": {
  7478. "ext-xdebug": "^2.5.5"
  7479. },
  7480. "type": "library",
  7481. "extra": {
  7482. "branch-alias": {
  7483. "dev-master": "5.3.x-dev"
  7484. }
  7485. },
  7486. "autoload": {
  7487. "classmap": [
  7488. "src/"
  7489. ]
  7490. },
  7491. "notification-url": "https://packagist.org/downloads/",
  7492. "license": [
  7493. "BSD-3-Clause"
  7494. ],
  7495. "authors": [
  7496. {
  7497. "name": "Sebastian Bergmann",
  7498. "email": "sebastian@phpunit.de",
  7499. "role": "lead"
  7500. }
  7501. ],
  7502. "description": "Library that provides collection, processing, and rendering functionality for PHP code coverage information.",
  7503. "homepage": "https://github.com/sebastianbergmann/php-code-coverage",
  7504. "keywords": [
  7505. "coverage",
  7506. "testing",
  7507. "xunit"
  7508. ],
  7509. "time": "2018-04-06T15:36:58+00:00"
  7510. },
  7511. {
  7512. "name": "phpunit/php-file-iterator",
  7513. "version": "1.4.5",
  7514. "source": {
  7515. "type": "git",
  7516. "url": "https://github.com/sebastianbergmann/php-file-iterator.git",
  7517. "reference": "730b01bc3e867237eaac355e06a36b85dd93a8b4"
  7518. },
  7519. "dist": {
  7520. "type": "zip",
  7521. "url": "https://api.github.com/repos/sebastianbergmann/php-file-iterator/zipball/730b01bc3e867237eaac355e06a36b85dd93a8b4",
  7522. "reference": "730b01bc3e867237eaac355e06a36b85dd93a8b4",
  7523. "shasum": ""
  7524. },
  7525. "require": {
  7526. "php": ">=5.3.3"
  7527. },
  7528. "type": "library",
  7529. "extra": {
  7530. "branch-alias": {
  7531. "dev-master": "1.4.x-dev"
  7532. }
  7533. },
  7534. "autoload": {
  7535. "classmap": [
  7536. "src/"
  7537. ]
  7538. },
  7539. "notification-url": "https://packagist.org/downloads/",
  7540. "license": [
  7541. "BSD-3-Clause"
  7542. ],
  7543. "authors": [
  7544. {
  7545. "name": "Sebastian Bergmann",
  7546. "email": "sb@sebastian-bergmann.de",
  7547. "role": "lead"
  7548. }
  7549. ],
  7550. "description": "FilterIterator implementation that filters files based on a list of suffixes.",
  7551. "homepage": "https://github.com/sebastianbergmann/php-file-iterator/",
  7552. "keywords": [
  7553. "filesystem",
  7554. "iterator"
  7555. ],
  7556. "time": "2017-11-27T13:52:08+00:00"
  7557. },
  7558. {
  7559. "name": "phpunit/php-text-template",
  7560. "version": "1.2.1",
  7561. "source": {
  7562. "type": "git",
  7563. "url": "https://github.com/sebastianbergmann/php-text-template.git",
  7564. "reference": "31f8b717e51d9a2afca6c9f046f5d69fc27c8686"
  7565. },
  7566. "dist": {
  7567. "type": "zip",
  7568. "url": "https://api.github.com/repos/sebastianbergmann/php-text-template/zipball/31f8b717e51d9a2afca6c9f046f5d69fc27c8686",
  7569. "reference": "31f8b717e51d9a2afca6c9f046f5d69fc27c8686",
  7570. "shasum": ""
  7571. },
  7572. "require": {
  7573. "php": ">=5.3.3"
  7574. },
  7575. "type": "library",
  7576. "autoload": {
  7577. "classmap": [
  7578. "src/"
  7579. ]
  7580. },
  7581. "notification-url": "https://packagist.org/downloads/",
  7582. "license": [
  7583. "BSD-3-Clause"
  7584. ],
  7585. "authors": [
  7586. {
  7587. "name": "Sebastian Bergmann",
  7588. "email": "sebastian@phpunit.de",
  7589. "role": "lead"
  7590. }
  7591. ],
  7592. "description": "Simple template engine.",
  7593. "homepage": "https://github.com/sebastianbergmann/php-text-template/",
  7594. "keywords": [
  7595. "template"
  7596. ],
  7597. "time": "2015-06-21T13:50:34+00:00"
  7598. },
  7599. {
  7600. "name": "phpunit/php-timer",
  7601. "version": "1.0.9",
  7602. "source": {
  7603. "type": "git",
  7604. "url": "https://github.com/sebastianbergmann/php-timer.git",
  7605. "reference": "3dcf38ca72b158baf0bc245e9184d3fdffa9c46f"
  7606. },
  7607. "dist": {
  7608. "type": "zip",
  7609. "url": "https://api.github.com/repos/sebastianbergmann/php-timer/zipball/3dcf38ca72b158baf0bc245e9184d3fdffa9c46f",
  7610. "reference": "3dcf38ca72b158baf0bc245e9184d3fdffa9c46f",
  7611. "shasum": ""
  7612. },
  7613. "require": {
  7614. "php": "^5.3.3 || ^7.0"
  7615. },
  7616. "require-dev": {
  7617. "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.0"
  7618. },
  7619. "type": "library",
  7620. "extra": {
  7621. "branch-alias": {
  7622. "dev-master": "1.0-dev"
  7623. }
  7624. },
  7625. "autoload": {
  7626. "classmap": [
  7627. "src/"
  7628. ]
  7629. },
  7630. "notification-url": "https://packagist.org/downloads/",
  7631. "license": [
  7632. "BSD-3-Clause"
  7633. ],
  7634. "authors": [
  7635. {
  7636. "name": "Sebastian Bergmann",
  7637. "email": "sb@sebastian-bergmann.de",
  7638. "role": "lead"
  7639. }
  7640. ],
  7641. "description": "Utility class for timing",
  7642. "homepage": "https://github.com/sebastianbergmann/php-timer/",
  7643. "keywords": [
  7644. "timer"
  7645. ],
  7646. "time": "2017-02-26T11:10:40+00:00"
  7647. },
  7648. {
  7649. "name": "phpunit/php-token-stream",
  7650. "version": "2.0.2",
  7651. "source": {
  7652. "type": "git",
  7653. "url": "https://github.com/sebastianbergmann/php-token-stream.git",
  7654. "reference": "791198a2c6254db10131eecfe8c06670700904db"
  7655. },
  7656. "dist": {
  7657. "type": "zip",
  7658. "url": "https://api.github.com/repos/sebastianbergmann/php-token-stream/zipball/791198a2c6254db10131eecfe8c06670700904db",
  7659. "reference": "791198a2c6254db10131eecfe8c06670700904db",
  7660. "shasum": ""
  7661. },
  7662. "require": {
  7663. "ext-tokenizer": "*",
  7664. "php": "^7.0"
  7665. },
  7666. "require-dev": {
  7667. "phpunit/phpunit": "^6.2.4"
  7668. },
  7669. "type": "library",
  7670. "extra": {
  7671. "branch-alias": {
  7672. "dev-master": "2.0-dev"
  7673. }
  7674. },
  7675. "autoload": {
  7676. "classmap": [
  7677. "src/"
  7678. ]
  7679. },
  7680. "notification-url": "https://packagist.org/downloads/",
  7681. "license": [
  7682. "BSD-3-Clause"
  7683. ],
  7684. "authors": [
  7685. {
  7686. "name": "Sebastian Bergmann",
  7687. "email": "sebastian@phpunit.de"
  7688. }
  7689. ],
  7690. "description": "Wrapper around PHP's tokenizer extension.",
  7691. "homepage": "https://github.com/sebastianbergmann/php-token-stream/",
  7692. "keywords": [
  7693. "tokenizer"
  7694. ],
  7695. "time": "2017-11-27T05:48:46+00:00"
  7696. },
  7697. {
  7698. "name": "phpunit/phpunit",
  7699. "version": "6.5.14",
  7700. "source": {
  7701. "type": "git",
  7702. "url": "https://github.com/sebastianbergmann/phpunit.git",
  7703. "reference": "bac23fe7ff13dbdb461481f706f0e9fe746334b7"
  7704. },
  7705. "dist": {
  7706. "type": "zip",
  7707. "url": "https://api.github.com/repos/sebastianbergmann/phpunit/zipball/bac23fe7ff13dbdb461481f706f0e9fe746334b7",
  7708. "reference": "bac23fe7ff13dbdb461481f706f0e9fe746334b7",
  7709. "shasum": ""
  7710. },
  7711. "require": {
  7712. "ext-dom": "*",
  7713. "ext-json": "*",
  7714. "ext-libxml": "*",
  7715. "ext-mbstring": "*",
  7716. "ext-xml": "*",
  7717. "myclabs/deep-copy": "^1.6.1",
  7718. "phar-io/manifest": "^1.0.1",
  7719. "phar-io/version": "^1.0",
  7720. "php": "^7.0",
  7721. "phpspec/prophecy": "^1.7",
  7722. "phpunit/php-code-coverage": "^5.3",
  7723. "phpunit/php-file-iterator": "^1.4.3",
  7724. "phpunit/php-text-template": "^1.2.1",
  7725. "phpunit/php-timer": "^1.0.9",
  7726. "phpunit/phpunit-mock-objects": "^5.0.9",
  7727. "sebastian/comparator": "^2.1",
  7728. "sebastian/diff": "^2.0",
  7729. "sebastian/environment": "^3.1",
  7730. "sebastian/exporter": "^3.1",
  7731. "sebastian/global-state": "^2.0",
  7732. "sebastian/object-enumerator": "^3.0.3",
  7733. "sebastian/resource-operations": "^1.0",
  7734. "sebastian/version": "^2.0.1"
  7735. },
  7736. "conflict": {
  7737. "phpdocumentor/reflection-docblock": "3.0.2",
  7738. "phpunit/dbunit": "<3.0"
  7739. },
  7740. "require-dev": {
  7741. "ext-pdo": "*"
  7742. },
  7743. "suggest": {
  7744. "ext-xdebug": "*",
  7745. "phpunit/php-invoker": "^1.1"
  7746. },
  7747. "bin": [
  7748. "phpunit"
  7749. ],
  7750. "type": "library",
  7751. "extra": {
  7752. "branch-alias": {
  7753. "dev-master": "6.5.x-dev"
  7754. }
  7755. },
  7756. "autoload": {
  7757. "classmap": [
  7758. "src/"
  7759. ]
  7760. },
  7761. "notification-url": "https://packagist.org/downloads/",
  7762. "license": [
  7763. "BSD-3-Clause"
  7764. ],
  7765. "authors": [
  7766. {
  7767. "name": "Sebastian Bergmann",
  7768. "email": "sebastian@phpunit.de",
  7769. "role": "lead"
  7770. }
  7771. ],
  7772. "description": "The PHP Unit Testing framework.",
  7773. "homepage": "https://phpunit.de/",
  7774. "keywords": [
  7775. "phpunit",
  7776. "testing",
  7777. "xunit"
  7778. ],
  7779. "time": "2019-02-01T05:22:47+00:00"
  7780. },
  7781. {
  7782. "name": "phpunit/phpunit-mock-objects",
  7783. "version": "5.0.10",
  7784. "source": {
  7785. "type": "git",
  7786. "url": "https://github.com/sebastianbergmann/phpunit-mock-objects.git",
  7787. "reference": "cd1cf05c553ecfec36b170070573e540b67d3f1f"
  7788. },
  7789. "dist": {
  7790. "type": "zip",
  7791. "url": "https://api.github.com/repos/sebastianbergmann/phpunit-mock-objects/zipball/cd1cf05c553ecfec36b170070573e540b67d3f1f",
  7792. "reference": "cd1cf05c553ecfec36b170070573e540b67d3f1f",
  7793. "shasum": ""
  7794. },
  7795. "require": {
  7796. "doctrine/instantiator": "^1.0.5",
  7797. "php": "^7.0",
  7798. "phpunit/php-text-template": "^1.2.1",
  7799. "sebastian/exporter": "^3.1"
  7800. },
  7801. "conflict": {
  7802. "phpunit/phpunit": "<6.0"
  7803. },
  7804. "require-dev": {
  7805. "phpunit/phpunit": "^6.5.11"
  7806. },
  7807. "suggest": {
  7808. "ext-soap": "*"
  7809. },
  7810. "type": "library",
  7811. "extra": {
  7812. "branch-alias": {
  7813. "dev-master": "5.0.x-dev"
  7814. }
  7815. },
  7816. "autoload": {
  7817. "classmap": [
  7818. "src/"
  7819. ]
  7820. },
  7821. "notification-url": "https://packagist.org/downloads/",
  7822. "license": [
  7823. "BSD-3-Clause"
  7824. ],
  7825. "authors": [
  7826. {
  7827. "name": "Sebastian Bergmann",
  7828. "email": "sebastian@phpunit.de",
  7829. "role": "lead"
  7830. }
  7831. ],
  7832. "description": "Mock Object library for PHPUnit",
  7833. "homepage": "https://github.com/sebastianbergmann/phpunit-mock-objects/",
  7834. "keywords": [
  7835. "mock",
  7836. "xunit"
  7837. ],
  7838. "abandoned": true,
  7839. "time": "2018-08-09T05:50:03+00:00"
  7840. },
  7841. {
  7842. "name": "psr/container",
  7843. "version": "1.0.0",
  7844. "source": {
  7845. "type": "git",
  7846. "url": "https://github.com/php-fig/container.git",
  7847. "reference": "b7ce3b176482dbbc1245ebf52b181af44c2cf55f"
  7848. },
  7849. "dist": {
  7850. "type": "zip",
  7851. "url": "https://api.github.com/repos/php-fig/container/zipball/b7ce3b176482dbbc1245ebf52b181af44c2cf55f",
  7852. "reference": "b7ce3b176482dbbc1245ebf52b181af44c2cf55f",
  7853. "shasum": ""
  7854. },
  7855. "require": {
  7856. "php": ">=5.3.0"
  7857. },
  7858. "type": "library",
  7859. "extra": {
  7860. "branch-alias": {
  7861. "dev-master": "1.0.x-dev"
  7862. }
  7863. },
  7864. "autoload": {
  7865. "psr-4": {
  7866. "Psr\\Container\\": "src/"
  7867. }
  7868. },
  7869. "notification-url": "https://packagist.org/downloads/",
  7870. "license": [
  7871. "MIT"
  7872. ],
  7873. "authors": [
  7874. {
  7875. "name": "PHP-FIG",
  7876. "homepage": "http://www.php-fig.org/"
  7877. }
  7878. ],
  7879. "description": "Common Container Interface (PHP FIG PSR-11)",
  7880. "homepage": "https://github.com/php-fig/container",
  7881. "keywords": [
  7882. "PSR-11",
  7883. "container",
  7884. "container-interface",
  7885. "container-interop",
  7886. "psr"
  7887. ],
  7888. "time": "2017-02-14T16:28:37+00:00"
  7889. },
  7890. {
  7891. "name": "psr/http-message",
  7892. "version": "1.0.1",
  7893. "source": {
  7894. "type": "git",
  7895. "url": "https://github.com/php-fig/http-message.git",
  7896. "reference": "f6561bf28d520154e4b0ec72be95418abe6d9363"
  7897. },
  7898. "dist": {
  7899. "type": "zip",
  7900. "url": "https://api.github.com/repos/php-fig/http-message/zipball/f6561bf28d520154e4b0ec72be95418abe6d9363",
  7901. "reference": "f6561bf28d520154e4b0ec72be95418abe6d9363",
  7902. "shasum": ""
  7903. },
  7904. "require": {
  7905. "php": ">=5.3.0"
  7906. },
  7907. "type": "library",
  7908. "extra": {
  7909. "branch-alias": {
  7910. "dev-master": "1.0.x-dev"
  7911. }
  7912. },
  7913. "autoload": {
  7914. "psr-4": {
  7915. "Psr\\Http\\Message\\": "src/"
  7916. }
  7917. },
  7918. "notification-url": "https://packagist.org/downloads/",
  7919. "license": [
  7920. "MIT"
  7921. ],
  7922. "authors": [
  7923. {
  7924. "name": "PHP-FIG",
  7925. "homepage": "http://www.php-fig.org/"
  7926. }
  7927. ],
  7928. "description": "Common interface for HTTP messages",
  7929. "homepage": "https://github.com/php-fig/http-message",
  7930. "keywords": [
  7931. "http",
  7932. "http-message",
  7933. "psr",
  7934. "psr-7",
  7935. "request",
  7936. "response"
  7937. ],
  7938. "time": "2016-08-06T14:39:51+00:00"
  7939. },
  7940. {
  7941. "name": "psr/log",
  7942. "version": "1.1.2",
  7943. "source": {
  7944. "type": "git",
  7945. "url": "https://github.com/php-fig/log.git",
  7946. "reference": "446d54b4cb6bf489fc9d75f55843658e6f25d801"
  7947. },
  7948. "dist": {
  7949. "type": "zip",
  7950. "url": "https://api.github.com/repos/php-fig/log/zipball/446d54b4cb6bf489fc9d75f55843658e6f25d801",
  7951. "reference": "446d54b4cb6bf489fc9d75f55843658e6f25d801",
  7952. "shasum": ""
  7953. },
  7954. "require": {
  7955. "php": ">=5.3.0"
  7956. },
  7957. "type": "library",
  7958. "extra": {
  7959. "branch-alias": {
  7960. "dev-master": "1.1.x-dev"
  7961. }
  7962. },
  7963. "autoload": {
  7964. "psr-4": {
  7965. "Psr\\Log\\": "Psr/Log/"
  7966. }
  7967. },
  7968. "notification-url": "https://packagist.org/downloads/",
  7969. "license": [
  7970. "MIT"
  7971. ],
  7972. "authors": [
  7973. {
  7974. "name": "PHP-FIG",
  7975. "homepage": "http://www.php-fig.org/"
  7976. }
  7977. ],
  7978. "description": "Common interface for logging libraries",
  7979. "homepage": "https://github.com/php-fig/log",
  7980. "keywords": [
  7981. "log",
  7982. "psr",
  7983. "psr-3"
  7984. ],
  7985. "time": "2019-11-01T11:05:21+00:00"
  7986. },
  7987. {
  7988. "name": "psy/psysh",
  7989. "version": "v0.9.9",
  7990. "source": {
  7991. "type": "git",
  7992. "url": "https://github.com/bobthecow/psysh.git",
  7993. "reference": "9aaf29575bb8293206bb0420c1e1c87ff2ffa94e"
  7994. },
  7995. "dist": {
  7996. "type": "zip",
  7997. "url": "https://api.github.com/repos/bobthecow/psysh/zipball/9aaf29575bb8293206bb0420c1e1c87ff2ffa94e",
  7998. "reference": "9aaf29575bb8293206bb0420c1e1c87ff2ffa94e",
  7999. "shasum": ""
  8000. },
  8001. "require": {
  8002. "dnoegel/php-xdg-base-dir": "0.1",
  8003. "ext-json": "*",
  8004. "ext-tokenizer": "*",
  8005. "jakub-onderka/php-console-highlighter": "0.3.*|0.4.*",
  8006. "nikic/php-parser": "~1.3|~2.0|~3.0|~4.0",
  8007. "php": ">=5.4.0",
  8008. "symfony/console": "~2.3.10|^2.4.2|~3.0|~4.0",
  8009. "symfony/var-dumper": "~2.7|~3.0|~4.0"
  8010. },
  8011. "require-dev": {
  8012. "bamarni/composer-bin-plugin": "^1.2",
  8013. "hoa/console": "~2.15|~3.16",
  8014. "phpunit/phpunit": "~4.8.35|~5.0|~6.0|~7.0"
  8015. },
  8016. "suggest": {
  8017. "ext-pcntl": "Enabling the PCNTL extension makes PsySH a lot happier :)",
  8018. "ext-pdo-sqlite": "The doc command requires SQLite to work.",
  8019. "ext-posix": "If you have PCNTL, you'll want the POSIX extension as well.",
  8020. "ext-readline": "Enables support for arrow-key history navigation, and showing and manipulating command history.",
  8021. "hoa/console": "A pure PHP readline implementation. You'll want this if your PHP install doesn't already support readline or libedit."
  8022. },
  8023. "bin": [
  8024. "bin/psysh"
  8025. ],
  8026. "type": "library",
  8027. "extra": {
  8028. "branch-alias": {
  8029. "dev-develop": "0.9.x-dev"
  8030. }
  8031. },
  8032. "autoload": {
  8033. "files": [
  8034. "src/functions.php"
  8035. ],
  8036. "psr-4": {
  8037. "Psy\\": "src/"
  8038. }
  8039. },
  8040. "notification-url": "https://packagist.org/downloads/",
  8041. "license": [
  8042. "MIT"
  8043. ],
  8044. "authors": [
  8045. {
  8046. "name": "Justin Hileman",
  8047. "email": "justin@justinhileman.info",
  8048. "homepage": "http://justinhileman.com"
  8049. }
  8050. ],
  8051. "description": "An interactive shell for modern PHP.",
  8052. "homepage": "http://psysh.org",
  8053. "keywords": [
  8054. "REPL",
  8055. "console",
  8056. "interactive",
  8057. "shell"
  8058. ],
  8059. "time": "2018-10-13T15:16:03+00:00"
  8060. },
  8061. {
  8062. "name": "ralouphie/getallheaders",
  8063. "version": "3.0.3",
  8064. "source": {
  8065. "type": "git",
  8066. "url": "https://github.com/ralouphie/getallheaders.git",
  8067. "reference": "120b605dfeb996808c31b6477290a714d356e822"
  8068. },
  8069. "dist": {
  8070. "type": "zip",
  8071. "url": "https://api.github.com/repos/ralouphie/getallheaders/zipball/120b605dfeb996808c31b6477290a714d356e822",
  8072. "reference": "120b605dfeb996808c31b6477290a714d356e822",
  8073. "shasum": ""
  8074. },
  8075. "require": {
  8076. "php": ">=5.6"
  8077. },
  8078. "require-dev": {
  8079. "php-coveralls/php-coveralls": "^2.1",
  8080. "phpunit/phpunit": "^5 || ^6.5"
  8081. },
  8082. "type": "library",
  8083. "autoload": {
  8084. "files": [
  8085. "src/getallheaders.php"
  8086. ]
  8087. },
  8088. "notification-url": "https://packagist.org/downloads/",
  8089. "license": [
  8090. "MIT"
  8091. ],
  8092. "authors": [
  8093. {
  8094. "name": "Ralph Khattar",
  8095. "email": "ralph.khattar@gmail.com"
  8096. }
  8097. ],
  8098. "description": "A polyfill for getallheaders.",
  8099. "time": "2019-03-08T08:55:37+00:00"
  8100. },
  8101. {
  8102. "name": "sebastian/code-unit-reverse-lookup",
  8103. "version": "1.0.1",
  8104. "source": {
  8105. "type": "git",
  8106. "url": "https://github.com/sebastianbergmann/code-unit-reverse-lookup.git",
  8107. "reference": "4419fcdb5eabb9caa61a27c7a1db532a6b55dd18"
  8108. },
  8109. "dist": {
  8110. "type": "zip",
  8111. "url": "https://api.github.com/repos/sebastianbergmann/code-unit-reverse-lookup/zipball/4419fcdb5eabb9caa61a27c7a1db532a6b55dd18",
  8112. "reference": "4419fcdb5eabb9caa61a27c7a1db532a6b55dd18",
  8113. "shasum": ""
  8114. },
  8115. "require": {
  8116. "php": "^5.6 || ^7.0"
  8117. },
  8118. "require-dev": {
  8119. "phpunit/phpunit": "^5.7 || ^6.0"
  8120. },
  8121. "type": "library",
  8122. "extra": {
  8123. "branch-alias": {
  8124. "dev-master": "1.0.x-dev"
  8125. }
  8126. },
  8127. "autoload": {
  8128. "classmap": [
  8129. "src/"
  8130. ]
  8131. },
  8132. "notification-url": "https://packagist.org/downloads/",
  8133. "license": [
  8134. "BSD-3-Clause"
  8135. ],
  8136. "authors": [
  8137. {
  8138. "name": "Sebastian Bergmann",
  8139. "email": "sebastian@phpunit.de"
  8140. }
  8141. ],
  8142. "description": "Looks up which function or method a line of code belongs to",
  8143. "homepage": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/",
  8144. "time": "2017-03-04T06:30:41+00:00"
  8145. },
  8146. {
  8147. "name": "sebastian/comparator",
  8148. "version": "2.1.3",
  8149. "source": {
  8150. "type": "git",
  8151. "url": "https://github.com/sebastianbergmann/comparator.git",
  8152. "reference": "34369daee48eafb2651bea869b4b15d75ccc35f9"
  8153. },
  8154. "dist": {
  8155. "type": "zip",
  8156. "url": "https://api.github.com/repos/sebastianbergmann/comparator/zipball/34369daee48eafb2651bea869b4b15d75ccc35f9",
  8157. "reference": "34369daee48eafb2651bea869b4b15d75ccc35f9",
  8158. "shasum": ""
  8159. },
  8160. "require": {
  8161. "php": "^7.0",
  8162. "sebastian/diff": "^2.0 || ^3.0",
  8163. "sebastian/exporter": "^3.1"
  8164. },
  8165. "require-dev": {
  8166. "phpunit/phpunit": "^6.4"
  8167. },
  8168. "type": "library",
  8169. "extra": {
  8170. "branch-alias": {
  8171. "dev-master": "2.1.x-dev"
  8172. }
  8173. },
  8174. "autoload": {
  8175. "classmap": [
  8176. "src/"
  8177. ]
  8178. },
  8179. "notification-url": "https://packagist.org/downloads/",
  8180. "license": [
  8181. "BSD-3-Clause"
  8182. ],
  8183. "authors": [
  8184. {
  8185. "name": "Jeff Welch",
  8186. "email": "whatthejeff@gmail.com"
  8187. },
  8188. {
  8189. "name": "Volker Dusch",
  8190. "email": "github@wallbash.com"
  8191. },
  8192. {
  8193. "name": "Bernhard Schussek",
  8194. "email": "bschussek@2bepublished.at"
  8195. },
  8196. {
  8197. "name": "Sebastian Bergmann",
  8198. "email": "sebastian@phpunit.de"
  8199. }
  8200. ],
  8201. "description": "Provides the functionality to compare PHP values for equality",
  8202. "homepage": "https://github.com/sebastianbergmann/comparator",
  8203. "keywords": [
  8204. "comparator",
  8205. "compare",
  8206. "equality"
  8207. ],
  8208. "time": "2018-02-01T13:46:46+00:00"
  8209. },
  8210. {
  8211. "name": "sebastian/diff",
  8212. "version": "2.0.1",
  8213. "source": {
  8214. "type": "git",
  8215. "url": "https://github.com/sebastianbergmann/diff.git",
  8216. "reference": "347c1d8b49c5c3ee30c7040ea6fc446790e6bddd"
  8217. },
  8218. "dist": {
  8219. "type": "zip",
  8220. "url": "https://api.github.com/repos/sebastianbergmann/diff/zipball/347c1d8b49c5c3ee30c7040ea6fc446790e6bddd",
  8221. "reference": "347c1d8b49c5c3ee30c7040ea6fc446790e6bddd",
  8222. "shasum": ""
  8223. },
  8224. "require": {
  8225. "php": "^7.0"
  8226. },
  8227. "require-dev": {
  8228. "phpunit/phpunit": "^6.2"
  8229. },
  8230. "type": "library",
  8231. "extra": {
  8232. "branch-alias": {
  8233. "dev-master": "2.0-dev"
  8234. }
  8235. },
  8236. "autoload": {
  8237. "classmap": [
  8238. "src/"
  8239. ]
  8240. },
  8241. "notification-url": "https://packagist.org/downloads/",
  8242. "license": [
  8243. "BSD-3-Clause"
  8244. ],
  8245. "authors": [
  8246. {
  8247. "name": "Kore Nordmann",
  8248. "email": "mail@kore-nordmann.de"
  8249. },
  8250. {
  8251. "name": "Sebastian Bergmann",
  8252. "email": "sebastian@phpunit.de"
  8253. }
  8254. ],
  8255. "description": "Diff implementation",
  8256. "homepage": "https://github.com/sebastianbergmann/diff",
  8257. "keywords": [
  8258. "diff"
  8259. ],
  8260. "time": "2017-08-03T08:09:46+00:00"
  8261. },
  8262. {
  8263. "name": "sebastian/environment",
  8264. "version": "3.1.0",
  8265. "source": {
  8266. "type": "git",
  8267. "url": "https://github.com/sebastianbergmann/environment.git",
  8268. "reference": "cd0871b3975fb7fc44d11314fd1ee20925fce4f5"
  8269. },
  8270. "dist": {
  8271. "type": "zip",
  8272. "url": "https://api.github.com/repos/sebastianbergmann/environment/zipball/cd0871b3975fb7fc44d11314fd1ee20925fce4f5",
  8273. "reference": "cd0871b3975fb7fc44d11314fd1ee20925fce4f5",
  8274. "shasum": ""
  8275. },
  8276. "require": {
  8277. "php": "^7.0"
  8278. },
  8279. "require-dev": {
  8280. "phpunit/phpunit": "^6.1"
  8281. },
  8282. "type": "library",
  8283. "extra": {
  8284. "branch-alias": {
  8285. "dev-master": "3.1.x-dev"
  8286. }
  8287. },
  8288. "autoload": {
  8289. "classmap": [
  8290. "src/"
  8291. ]
  8292. },
  8293. "notification-url": "https://packagist.org/downloads/",
  8294. "license": [
  8295. "BSD-3-Clause"
  8296. ],
  8297. "authors": [
  8298. {
  8299. "name": "Sebastian Bergmann",
  8300. "email": "sebastian@phpunit.de"
  8301. }
  8302. ],
  8303. "description": "Provides functionality to handle HHVM/PHP environments",
  8304. "homepage": "http://www.github.com/sebastianbergmann/environment",
  8305. "keywords": [
  8306. "Xdebug",
  8307. "environment",
  8308. "hhvm"
  8309. ],
  8310. "time": "2017-07-01T08:51:00+00:00"
  8311. },
  8312. {
  8313. "name": "sebastian/exporter",
  8314. "version": "3.1.2",
  8315. "source": {
  8316. "type": "git",
  8317. "url": "https://github.com/sebastianbergmann/exporter.git",
  8318. "reference": "68609e1261d215ea5b21b7987539cbfbe156ec3e"
  8319. },
  8320. "dist": {
  8321. "type": "zip",
  8322. "url": "https://api.github.com/repos/sebastianbergmann/exporter/zipball/68609e1261d215ea5b21b7987539cbfbe156ec3e",
  8323. "reference": "68609e1261d215ea5b21b7987539cbfbe156ec3e",
  8324. "shasum": ""
  8325. },
  8326. "require": {
  8327. "php": "^7.0",
  8328. "sebastian/recursion-context": "^3.0"
  8329. },
  8330. "require-dev": {
  8331. "ext-mbstring": "*",
  8332. "phpunit/phpunit": "^6.0"
  8333. },
  8334. "type": "library",
  8335. "extra": {
  8336. "branch-alias": {
  8337. "dev-master": "3.1.x-dev"
  8338. }
  8339. },
  8340. "autoload": {
  8341. "classmap": [
  8342. "src/"
  8343. ]
  8344. },
  8345. "notification-url": "https://packagist.org/downloads/",
  8346. "license": [
  8347. "BSD-3-Clause"
  8348. ],
  8349. "authors": [
  8350. {
  8351. "name": "Sebastian Bergmann",
  8352. "email": "sebastian@phpunit.de"
  8353. },
  8354. {
  8355. "name": "Jeff Welch",
  8356. "email": "whatthejeff@gmail.com"
  8357. },
  8358. {
  8359. "name": "Volker Dusch",
  8360. "email": "github@wallbash.com"
  8361. },
  8362. {
  8363. "name": "Adam Harvey",
  8364. "email": "aharvey@php.net"
  8365. },
  8366. {
  8367. "name": "Bernhard Schussek",
  8368. "email": "bschussek@gmail.com"
  8369. }
  8370. ],
  8371. "description": "Provides the functionality to export PHP variables for visualization",
  8372. "homepage": "http://www.github.com/sebastianbergmann/exporter",
  8373. "keywords": [
  8374. "export",
  8375. "exporter"
  8376. ],
  8377. "time": "2019-09-14T09:02:43+00:00"
  8378. },
  8379. {
  8380. "name": "sebastian/global-state",
  8381. "version": "2.0.0",
  8382. "source": {
  8383. "type": "git",
  8384. "url": "https://github.com/sebastianbergmann/global-state.git",
  8385. "reference": "e8ba02eed7bbbb9e59e43dedd3dddeff4a56b0c4"
  8386. },
  8387. "dist": {
  8388. "type": "zip",
  8389. "url": "https://api.github.com/repos/sebastianbergmann/global-state/zipball/e8ba02eed7bbbb9e59e43dedd3dddeff4a56b0c4",
  8390. "reference": "e8ba02eed7bbbb9e59e43dedd3dddeff4a56b0c4",
  8391. "shasum": ""
  8392. },
  8393. "require": {
  8394. "php": "^7.0"
  8395. },
  8396. "require-dev": {
  8397. "phpunit/phpunit": "^6.0"
  8398. },
  8399. "suggest": {
  8400. "ext-uopz": "*"
  8401. },
  8402. "type": "library",
  8403. "extra": {
  8404. "branch-alias": {
  8405. "dev-master": "2.0-dev"
  8406. }
  8407. },
  8408. "autoload": {
  8409. "classmap": [
  8410. "src/"
  8411. ]
  8412. },
  8413. "notification-url": "https://packagist.org/downloads/",
  8414. "license": [
  8415. "BSD-3-Clause"
  8416. ],
  8417. "authors": [
  8418. {
  8419. "name": "Sebastian Bergmann",
  8420. "email": "sebastian@phpunit.de"
  8421. }
  8422. ],
  8423. "description": "Snapshotting of global state",
  8424. "homepage": "http://www.github.com/sebastianbergmann/global-state",
  8425. "keywords": [
  8426. "global state"
  8427. ],
  8428. "time": "2017-04-27T15:39:26+00:00"
  8429. },
  8430. {
  8431. "name": "sebastian/object-enumerator",
  8432. "version": "3.0.3",
  8433. "source": {
  8434. "type": "git",
  8435. "url": "https://github.com/sebastianbergmann/object-enumerator.git",
  8436. "reference": "7cfd9e65d11ffb5af41198476395774d4c8a84c5"
  8437. },
  8438. "dist": {
  8439. "type": "zip",
  8440. "url": "https://api.github.com/repos/sebastianbergmann/object-enumerator/zipball/7cfd9e65d11ffb5af41198476395774d4c8a84c5",
  8441. "reference": "7cfd9e65d11ffb5af41198476395774d4c8a84c5",
  8442. "shasum": ""
  8443. },
  8444. "require": {
  8445. "php": "^7.0",
  8446. "sebastian/object-reflector": "^1.1.1",
  8447. "sebastian/recursion-context": "^3.0"
  8448. },
  8449. "require-dev": {
  8450. "phpunit/phpunit": "^6.0"
  8451. },
  8452. "type": "library",
  8453. "extra": {
  8454. "branch-alias": {
  8455. "dev-master": "3.0.x-dev"
  8456. }
  8457. },
  8458. "autoload": {
  8459. "classmap": [
  8460. "src/"
  8461. ]
  8462. },
  8463. "notification-url": "https://packagist.org/downloads/",
  8464. "license": [
  8465. "BSD-3-Clause"
  8466. ],
  8467. "authors": [
  8468. {
  8469. "name": "Sebastian Bergmann",
  8470. "email": "sebastian@phpunit.de"
  8471. }
  8472. ],
  8473. "description": "Traverses array structures and object graphs to enumerate all referenced objects",
  8474. "homepage": "https://github.com/sebastianbergmann/object-enumerator/",
  8475. "time": "2017-08-03T12:35:26+00:00"
  8476. },
  8477. {
  8478. "name": "sebastian/object-reflector",
  8479. "version": "1.1.1",
  8480. "source": {
  8481. "type": "git",
  8482. "url": "https://github.com/sebastianbergmann/object-reflector.git",
  8483. "reference": "773f97c67f28de00d397be301821b06708fca0be"
  8484. },
  8485. "dist": {
  8486. "type": "zip",
  8487. "url": "https://api.github.com/repos/sebastianbergmann/object-reflector/zipball/773f97c67f28de00d397be301821b06708fca0be",
  8488. "reference": "773f97c67f28de00d397be301821b06708fca0be",
  8489. "shasum": ""
  8490. },
  8491. "require": {
  8492. "php": "^7.0"
  8493. },
  8494. "require-dev": {
  8495. "phpunit/phpunit": "^6.0"
  8496. },
  8497. "type": "library",
  8498. "extra": {
  8499. "branch-alias": {
  8500. "dev-master": "1.1-dev"
  8501. }
  8502. },
  8503. "autoload": {
  8504. "classmap": [
  8505. "src/"
  8506. ]
  8507. },
  8508. "notification-url": "https://packagist.org/downloads/",
  8509. "license": [
  8510. "BSD-3-Clause"
  8511. ],
  8512. "authors": [
  8513. {
  8514. "name": "Sebastian Bergmann",
  8515. "email": "sebastian@phpunit.de"
  8516. }
  8517. ],
  8518. "description": "Allows reflection of object attributes, including inherited and non-public ones",
  8519. "homepage": "https://github.com/sebastianbergmann/object-reflector/",
  8520. "time": "2017-03-29T09:07:27+00:00"
  8521. },
  8522. {
  8523. "name": "sebastian/recursion-context",
  8524. "version": "3.0.0",
  8525. "source": {
  8526. "type": "git",
  8527. "url": "https://github.com/sebastianbergmann/recursion-context.git",
  8528. "reference": "5b0cd723502bac3b006cbf3dbf7a1e3fcefe4fa8"
  8529. },
  8530. "dist": {
  8531. "type": "zip",
  8532. "url": "https://api.github.com/repos/sebastianbergmann/recursion-context/zipball/5b0cd723502bac3b006cbf3dbf7a1e3fcefe4fa8",
  8533. "reference": "5b0cd723502bac3b006cbf3dbf7a1e3fcefe4fa8",
  8534. "shasum": ""
  8535. },
  8536. "require": {
  8537. "php": "^7.0"
  8538. },
  8539. "require-dev": {
  8540. "phpunit/phpunit": "^6.0"
  8541. },
  8542. "type": "library",
  8543. "extra": {
  8544. "branch-alias": {
  8545. "dev-master": "3.0.x-dev"
  8546. }
  8547. },
  8548. "autoload": {
  8549. "classmap": [
  8550. "src/"
  8551. ]
  8552. },
  8553. "notification-url": "https://packagist.org/downloads/",
  8554. "license": [
  8555. "BSD-3-Clause"
  8556. ],
  8557. "authors": [
  8558. {
  8559. "name": "Jeff Welch",
  8560. "email": "whatthejeff@gmail.com"
  8561. },
  8562. {
  8563. "name": "Sebastian Bergmann",
  8564. "email": "sebastian@phpunit.de"
  8565. },
  8566. {
  8567. "name": "Adam Harvey",
  8568. "email": "aharvey@php.net"
  8569. }
  8570. ],
  8571. "description": "Provides functionality to recursively process PHP variables",
  8572. "homepage": "http://www.github.com/sebastianbergmann/recursion-context",
  8573. "time": "2017-03-03T06:23:57+00:00"
  8574. },
  8575. {
  8576. "name": "sebastian/resource-operations",
  8577. "version": "1.0.0",
  8578. "source": {
  8579. "type": "git",
  8580. "url": "https://github.com/sebastianbergmann/resource-operations.git",
  8581. "reference": "ce990bb21759f94aeafd30209e8cfcdfa8bc3f52"
  8582. },
  8583. "dist": {
  8584. "type": "zip",
  8585. "url": "https://api.github.com/repos/sebastianbergmann/resource-operations/zipball/ce990bb21759f94aeafd30209e8cfcdfa8bc3f52",
  8586. "reference": "ce990bb21759f94aeafd30209e8cfcdfa8bc3f52",
  8587. "shasum": ""
  8588. },
  8589. "require": {
  8590. "php": ">=5.6.0"
  8591. },
  8592. "type": "library",
  8593. "extra": {
  8594. "branch-alias": {
  8595. "dev-master": "1.0.x-dev"
  8596. }
  8597. },
  8598. "autoload": {
  8599. "classmap": [
  8600. "src/"
  8601. ]
  8602. },
  8603. "notification-url": "https://packagist.org/downloads/",
  8604. "license": [
  8605. "BSD-3-Clause"
  8606. ],
  8607. "authors": [
  8608. {
  8609. "name": "Sebastian Bergmann",
  8610. "email": "sebastian@phpunit.de"
  8611. }
  8612. ],
  8613. "description": "Provides a list of PHP built-in functions that operate on resources",
  8614. "homepage": "https://www.github.com/sebastianbergmann/resource-operations",
  8615. "time": "2015-07-28T20:34:47+00:00"
  8616. },
  8617. {
  8618. "name": "sebastian/version",
  8619. "version": "2.0.1",
  8620. "source": {
  8621. "type": "git",
  8622. "url": "https://github.com/sebastianbergmann/version.git",
  8623. "reference": "99732be0ddb3361e16ad77b68ba41efc8e979019"
  8624. },
  8625. "dist": {
  8626. "type": "zip",
  8627. "url": "https://api.github.com/repos/sebastianbergmann/version/zipball/99732be0ddb3361e16ad77b68ba41efc8e979019",
  8628. "reference": "99732be0ddb3361e16ad77b68ba41efc8e979019",
  8629. "shasum": ""
  8630. },
  8631. "require": {
  8632. "php": ">=5.6"
  8633. },
  8634. "type": "library",
  8635. "extra": {
  8636. "branch-alias": {
  8637. "dev-master": "2.0.x-dev"
  8638. }
  8639. },
  8640. "autoload": {
  8641. "classmap": [
  8642. "src/"
  8643. ]
  8644. },
  8645. "notification-url": "https://packagist.org/downloads/",
  8646. "license": [
  8647. "BSD-3-Clause"
  8648. ],
  8649. "authors": [
  8650. {
  8651. "name": "Sebastian Bergmann",
  8652. "email": "sebastian@phpunit.de",
  8653. "role": "lead"
  8654. }
  8655. ],
  8656. "description": "Library that helps with managing the version number of Git-hosted PHP projects",
  8657. "homepage": "https://github.com/sebastianbergmann/version",
  8658. "time": "2016-10-03T07:35:21+00:00"
  8659. },
  8660. {
  8661. "name": "squizlabs/php_codesniffer",
  8662. "version": "3.5.2",
  8663. "source": {
  8664. "type": "git",
  8665. "url": "https://github.com/squizlabs/PHP_CodeSniffer.git",
  8666. "reference": "65b12cdeaaa6cd276d4c3033a95b9b88b12701e7"
  8667. },
  8668. "dist": {
  8669. "type": "zip",
  8670. "url": "https://api.github.com/repos/squizlabs/PHP_CodeSniffer/zipball/65b12cdeaaa6cd276d4c3033a95b9b88b12701e7",
  8671. "reference": "65b12cdeaaa6cd276d4c3033a95b9b88b12701e7",
  8672. "shasum": ""
  8673. },
  8674. "require": {
  8675. "ext-simplexml": "*",
  8676. "ext-tokenizer": "*",
  8677. "ext-xmlwriter": "*",
  8678. "php": ">=5.4.0"
  8679. },
  8680. "require-dev": {
  8681. "phpunit/phpunit": "^4.0 || ^5.0 || ^6.0 || ^7.0"
  8682. },
  8683. "bin": [
  8684. "bin/phpcs",
  8685. "bin/phpcbf"
  8686. ],
  8687. "type": "library",
  8688. "extra": {
  8689. "branch-alias": {
  8690. "dev-master": "3.x-dev"
  8691. }
  8692. },
  8693. "notification-url": "https://packagist.org/downloads/",
  8694. "license": [
  8695. "BSD-3-Clause"
  8696. ],
  8697. "authors": [
  8698. {
  8699. "name": "Greg Sherwood",
  8700. "role": "lead"
  8701. }
  8702. ],
  8703. "description": "PHP_CodeSniffer tokenizes PHP, JavaScript and CSS files and detects violations of a defined set of coding standards.",
  8704. "homepage": "https://github.com/squizlabs/PHP_CodeSniffer",
  8705. "keywords": [
  8706. "phpcs",
  8707. "standards"
  8708. ],
  8709. "time": "2019-10-28T04:36:32+00:00"
  8710. },
  8711. {
  8712. "name": "stack/builder",
  8713. "version": "v1.0.5",
  8714. "source": {
  8715. "type": "git",
  8716. "url": "https://github.com/stackphp/builder.git",
  8717. "reference": "fb3d136d04c6be41120ebf8c0cc71fe9507d750a"
  8718. },
  8719. "dist": {
  8720. "type": "zip",
  8721. "url": "https://api.github.com/repos/stackphp/builder/zipball/fb3d136d04c6be41120ebf8c0cc71fe9507d750a",
  8722. "reference": "fb3d136d04c6be41120ebf8c0cc71fe9507d750a",
  8723. "shasum": ""
  8724. },
  8725. "require": {
  8726. "php": ">=5.3.0",
  8727. "symfony/http-foundation": "~2.1|~3.0|~4.0",
  8728. "symfony/http-kernel": "~2.1|~3.0|~4.0"
  8729. },
  8730. "require-dev": {
  8731. "silex/silex": "~1.0"
  8732. },
  8733. "type": "library",
  8734. "extra": {
  8735. "branch-alias": {
  8736. "dev-master": "1.0-dev"
  8737. }
  8738. },
  8739. "autoload": {
  8740. "psr-0": {
  8741. "Stack": "src"
  8742. }
  8743. },
  8744. "notification-url": "https://packagist.org/downloads/",
  8745. "license": [
  8746. "MIT"
  8747. ],
  8748. "authors": [
  8749. {
  8750. "name": "Igor Wiedler",
  8751. "email": "igor@wiedler.ch"
  8752. }
  8753. ],
  8754. "description": "Builder for stack middlewares based on HttpKernelInterface.",
  8755. "keywords": [
  8756. "stack"
  8757. ],
  8758. "time": "2017-11-18T14:57:29+00:00"
  8759. },
  8760. {
  8761. "name": "stecman/symfony-console-completion",
  8762. "version": "0.10.1",
  8763. "source": {
  8764. "type": "git",
  8765. "url": "https://github.com/stecman/symfony-console-completion.git",
  8766. "reference": "7bfa9b93e216896419f2f8de659935d7e04fecd8"
  8767. },
  8768. "dist": {
  8769. "type": "zip",
  8770. "url": "https://api.github.com/repos/stecman/symfony-console-completion/zipball/7bfa9b93e216896419f2f8de659935d7e04fecd8",
  8771. "reference": "7bfa9b93e216896419f2f8de659935d7e04fecd8",
  8772. "shasum": ""
  8773. },
  8774. "require": {
  8775. "php": ">=5.3.2",
  8776. "symfony/console": "~2.3 || ~3.0 || ~4.0"
  8777. },
  8778. "require-dev": {
  8779. "phpunit/phpunit": "~4.8.36 || ~5.7 || ~6.4"
  8780. },
  8781. "type": "library",
  8782. "extra": {
  8783. "branch-alias": {
  8784. "dev-master": "0.10.x-dev"
  8785. }
  8786. },
  8787. "autoload": {
  8788. "psr-4": {
  8789. "Stecman\\Component\\Symfony\\Console\\BashCompletion\\": "src/"
  8790. }
  8791. },
  8792. "notification-url": "https://packagist.org/downloads/",
  8793. "license": [
  8794. "MIT"
  8795. ],
  8796. "authors": [
  8797. {
  8798. "name": "Stephen Holdaway",
  8799. "email": "stephen@stecman.co.nz"
  8800. }
  8801. ],
  8802. "description": "Automatic BASH completion for Symfony Console Component based applications.",
  8803. "time": "2019-04-29T03:20:18+00:00"
  8804. },
  8805. {
  8806. "name": "symfony-cmf/routing",
  8807. "version": "1.4.1",
  8808. "source": {
  8809. "type": "git",
  8810. "url": "https://github.com/symfony-cmf/routing.git",
  8811. "reference": "fb1e7f85ff8c6866238b7e73a490a0a0243ae8ac"
  8812. },
  8813. "dist": {
  8814. "type": "zip",
  8815. "url": "https://api.github.com/repos/symfony-cmf/routing/zipball/fb1e7f85ff8c6866238b7e73a490a0a0243ae8ac",
  8816. "reference": "fb1e7f85ff8c6866238b7e73a490a0a0243ae8ac",
  8817. "shasum": ""
  8818. },
  8819. "require": {
  8820. "php": "^5.3.9|^7.0",
  8821. "psr/log": "1.*",
  8822. "symfony/http-kernel": "^2.2|3.*",
  8823. "symfony/routing": "^2.2|3.*"
  8824. },
  8825. "require-dev": {
  8826. "friendsofsymfony/jsrouting-bundle": "^1.1",
  8827. "symfony-cmf/testing": "^1.3",
  8828. "symfony/config": "^2.2|3.*",
  8829. "symfony/dependency-injection": "^2.0.5|3.*",
  8830. "symfony/event-dispatcher": "^2.1|3.*"
  8831. },
  8832. "suggest": {
  8833. "symfony/event-dispatcher": "DynamicRouter can optionally trigger an event at the start of matching. Minimal version (~2.1)"
  8834. },
  8835. "type": "library",
  8836. "extra": {
  8837. "branch-alias": {
  8838. "dev-master": "1.4-dev"
  8839. }
  8840. },
  8841. "autoload": {
  8842. "psr-4": {
  8843. "Symfony\\Cmf\\Component\\Routing\\": ""
  8844. }
  8845. },
  8846. "notification-url": "https://packagist.org/downloads/",
  8847. "license": [
  8848. "MIT"
  8849. ],
  8850. "authors": [
  8851. {
  8852. "name": "Symfony CMF Community",
  8853. "homepage": "https://github.com/symfony-cmf/Routing/contributors"
  8854. }
  8855. ],
  8856. "description": "Extends the Symfony2 routing component for dynamic routes and chaining several routers",
  8857. "homepage": "http://cmf.symfony.com",
  8858. "keywords": [
  8859. "database",
  8860. "routing"
  8861. ],
  8862. "time": "2017-05-09T08:10:41+00:00"
  8863. },
  8864. {
  8865. "name": "symfony/browser-kit",
  8866. "version": "v3.4.34",
  8867. "source": {
  8868. "type": "git",
  8869. "url": "https://github.com/symfony/browser-kit.git",
  8870. "reference": "2e4c991e27a97a8c27745720b030ff85a5cebdf6"
  8871. },
  8872. "dist": {
  8873. "type": "zip",
  8874. "url": "https://api.github.com/repos/symfony/browser-kit/zipball/2e4c991e27a97a8c27745720b030ff85a5cebdf6",
  8875. "reference": "2e4c991e27a97a8c27745720b030ff85a5cebdf6",
  8876. "shasum": ""
  8877. },
  8878. "require": {
  8879. "php": "^5.5.9|>=7.0.8",
  8880. "symfony/dom-crawler": "~2.8|~3.0|~4.0"
  8881. },
  8882. "require-dev": {
  8883. "symfony/css-selector": "~2.8|~3.0|~4.0",
  8884. "symfony/process": "~2.8|~3.0|~4.0"
  8885. },
  8886. "suggest": {
  8887. "symfony/process": ""
  8888. },
  8889. "type": "library",
  8890. "extra": {
  8891. "branch-alias": {
  8892. "dev-master": "3.4-dev"
  8893. }
  8894. },
  8895. "autoload": {
  8896. "psr-4": {
  8897. "Symfony\\Component\\BrowserKit\\": ""
  8898. },
  8899. "exclude-from-classmap": [
  8900. "/Tests/"
  8901. ]
  8902. },
  8903. "notification-url": "https://packagist.org/downloads/",
  8904. "license": [
  8905. "MIT"
  8906. ],
  8907. "authors": [
  8908. {
  8909. "name": "Fabien Potencier",
  8910. "email": "fabien@symfony.com"
  8911. },
  8912. {
  8913. "name": "Symfony Community",
  8914. "homepage": "https://symfony.com/contributors"
  8915. }
  8916. ],
  8917. "description": "Symfony BrowserKit Component",
  8918. "homepage": "https://symfony.com",
  8919. "time": "2019-10-24T15:33:53+00:00"
  8920. },
  8921. {
  8922. "name": "symfony/class-loader",
  8923. "version": "v3.4.34",
  8924. "source": {
  8925. "type": "git",
  8926. "url": "https://github.com/symfony/class-loader.git",
  8927. "reference": "e212b06996819a2bce026a63da03b7182d05a690"
  8928. },
  8929. "dist": {
  8930. "type": "zip",
  8931. "url": "https://api.github.com/repos/symfony/class-loader/zipball/e212b06996819a2bce026a63da03b7182d05a690",
  8932. "reference": "e212b06996819a2bce026a63da03b7182d05a690",
  8933. "shasum": ""
  8934. },
  8935. "require": {
  8936. "php": "^5.5.9|>=7.0.8"
  8937. },
  8938. "require-dev": {
  8939. "symfony/finder": "~2.8|~3.0|~4.0",
  8940. "symfony/polyfill-apcu": "~1.1"
  8941. },
  8942. "suggest": {
  8943. "symfony/polyfill-apcu": "For using ApcClassLoader on HHVM"
  8944. },
  8945. "type": "library",
  8946. "extra": {
  8947. "branch-alias": {
  8948. "dev-master": "3.4-dev"
  8949. }
  8950. },
  8951. "autoload": {
  8952. "psr-4": {
  8953. "Symfony\\Component\\ClassLoader\\": ""
  8954. },
  8955. "exclude-from-classmap": [
  8956. "/Tests/"
  8957. ]
  8958. },
  8959. "notification-url": "https://packagist.org/downloads/",
  8960. "license": [
  8961. "MIT"
  8962. ],
  8963. "authors": [
  8964. {
  8965. "name": "Fabien Potencier",
  8966. "email": "fabien@symfony.com"
  8967. },
  8968. {
  8969. "name": "Symfony Community",
  8970. "homepage": "https://symfony.com/contributors"
  8971. }
  8972. ],
  8973. "description": "Symfony ClassLoader Component",
  8974. "homepage": "https://symfony.com",
  8975. "time": "2019-08-20T13:31:17+00:00"
  8976. },
  8977. {
  8978. "name": "symfony/config",
  8979. "version": "v3.4.34",
  8980. "source": {
  8981. "type": "git",
  8982. "url": "https://github.com/symfony/config.git",
  8983. "reference": "c3a30587de97263d2813a3c81b74126c58b67a4f"
  8984. },
  8985. "dist": {
  8986. "type": "zip",
  8987. "url": "https://api.github.com/repos/symfony/config/zipball/c3a30587de97263d2813a3c81b74126c58b67a4f",
  8988. "reference": "c3a30587de97263d2813a3c81b74126c58b67a4f",
  8989. "shasum": ""
  8990. },
  8991. "require": {
  8992. "php": "^5.5.9|>=7.0.8",
  8993. "symfony/filesystem": "~2.8|~3.0|~4.0",
  8994. "symfony/polyfill-ctype": "~1.8"
  8995. },
  8996. "conflict": {
  8997. "symfony/dependency-injection": "<3.3",
  8998. "symfony/finder": "<3.3"
  8999. },
  9000. "require-dev": {
  9001. "symfony/dependency-injection": "~3.3|~4.0",
  9002. "symfony/event-dispatcher": "~3.3|~4.0",
  9003. "symfony/finder": "~3.3|~4.0",
  9004. "symfony/yaml": "~3.0|~4.0"
  9005. },
  9006. "suggest": {
  9007. "symfony/yaml": "To use the yaml reference dumper"
  9008. },
  9009. "type": "library",
  9010. "extra": {
  9011. "branch-alias": {
  9012. "dev-master": "3.4-dev"
  9013. }
  9014. },
  9015. "autoload": {
  9016. "psr-4": {
  9017. "Symfony\\Component\\Config\\": ""
  9018. },
  9019. "exclude-from-classmap": [
  9020. "/Tests/"
  9021. ]
  9022. },
  9023. "notification-url": "https://packagist.org/downloads/",
  9024. "license": [
  9025. "MIT"
  9026. ],
  9027. "authors": [
  9028. {
  9029. "name": "Fabien Potencier",
  9030. "email": "fabien@symfony.com"
  9031. },
  9032. {
  9033. "name": "Symfony Community",
  9034. "homepage": "https://symfony.com/contributors"
  9035. }
  9036. ],
  9037. "description": "Symfony Config Component",
  9038. "homepage": "https://symfony.com",
  9039. "time": "2019-11-08T08:28:59+00:00"
  9040. },
  9041. {
  9042. "name": "symfony/console",
  9043. "version": "v3.4.34",
  9044. "source": {
  9045. "type": "git",
  9046. "url": "https://github.com/symfony/console.git",
  9047. "reference": "c7edffb26b29cae972ca4afccb610a38ce8d0ccf"
  9048. },
  9049. "dist": {
  9050. "type": "zip",
  9051. "url": "https://api.github.com/repos/symfony/console/zipball/c7edffb26b29cae972ca4afccb610a38ce8d0ccf",
  9052. "reference": "c7edffb26b29cae972ca4afccb610a38ce8d0ccf",
  9053. "shasum": ""
  9054. },
  9055. "require": {
  9056. "php": "^5.5.9|>=7.0.8",
  9057. "symfony/debug": "~2.8|~3.0|~4.0",
  9058. "symfony/polyfill-mbstring": "~1.0"
  9059. },
  9060. "conflict": {
  9061. "symfony/dependency-injection": "<3.4",
  9062. "symfony/process": "<3.3"
  9063. },
  9064. "provide": {
  9065. "psr/log-implementation": "1.0"
  9066. },
  9067. "require-dev": {
  9068. "psr/log": "~1.0",
  9069. "symfony/config": "~3.3|~4.0",
  9070. "symfony/dependency-injection": "~3.4|~4.0",
  9071. "symfony/event-dispatcher": "~2.8|~3.0|~4.0",
  9072. "symfony/lock": "~3.4|~4.0",
  9073. "symfony/process": "~3.3|~4.0"
  9074. },
  9075. "suggest": {
  9076. "psr/log": "For using the console logger",
  9077. "symfony/event-dispatcher": "",
  9078. "symfony/lock": "",
  9079. "symfony/process": ""
  9080. },
  9081. "type": "library",
  9082. "extra": {
  9083. "branch-alias": {
  9084. "dev-master": "3.4-dev"
  9085. }
  9086. },
  9087. "autoload": {
  9088. "psr-4": {
  9089. "Symfony\\Component\\Console\\": ""
  9090. },
  9091. "exclude-from-classmap": [
  9092. "/Tests/"
  9093. ]
  9094. },
  9095. "notification-url": "https://packagist.org/downloads/",
  9096. "license": [
  9097. "MIT"
  9098. ],
  9099. "authors": [
  9100. {
  9101. "name": "Fabien Potencier",
  9102. "email": "fabien@symfony.com"
  9103. },
  9104. {
  9105. "name": "Symfony Community",
  9106. "homepage": "https://symfony.com/contributors"
  9107. }
  9108. ],
  9109. "description": "Symfony Console Component",
  9110. "homepage": "https://symfony.com",
  9111. "time": "2019-10-24T15:33:53+00:00"
  9112. },
  9113. {
  9114. "name": "symfony/css-selector",
  9115. "version": "v3.4.34",
  9116. "source": {
  9117. "type": "git",
  9118. "url": "https://github.com/symfony/css-selector.git",
  9119. "reference": "f819f71ae3ba6f396b4c015bd5895de7d2f1f85f"
  9120. },
  9121. "dist": {
  9122. "type": "zip",
  9123. "url": "https://api.github.com/repos/symfony/css-selector/zipball/f819f71ae3ba6f396b4c015bd5895de7d2f1f85f",
  9124. "reference": "f819f71ae3ba6f396b4c015bd5895de7d2f1f85f",
  9125. "shasum": ""
  9126. },
  9127. "require": {
  9128. "php": "^5.5.9|>=7.0.8"
  9129. },
  9130. "type": "library",
  9131. "extra": {
  9132. "branch-alias": {
  9133. "dev-master": "3.4-dev"
  9134. }
  9135. },
  9136. "autoload": {
  9137. "psr-4": {
  9138. "Symfony\\Component\\CssSelector\\": ""
  9139. },
  9140. "exclude-from-classmap": [
  9141. "/Tests/"
  9142. ]
  9143. },
  9144. "notification-url": "https://packagist.org/downloads/",
  9145. "license": [
  9146. "MIT"
  9147. ],
  9148. "authors": [
  9149. {
  9150. "name": "Fabien Potencier",
  9151. "email": "fabien@symfony.com"
  9152. },
  9153. {
  9154. "name": "Jean-François Simon",
  9155. "email": "jeanfrancois.simon@sensiolabs.com"
  9156. },
  9157. {
  9158. "name": "Symfony Community",
  9159. "homepage": "https://symfony.com/contributors"
  9160. }
  9161. ],
  9162. "description": "Symfony CssSelector Component",
  9163. "homepage": "https://symfony.com",
  9164. "time": "2019-10-01T11:57:37+00:00"
  9165. },
  9166. {
  9167. "name": "symfony/debug",
  9168. "version": "v3.4.34",
  9169. "source": {
  9170. "type": "git",
  9171. "url": "https://github.com/symfony/debug.git",
  9172. "reference": "f72e33fdb1170b326e72c3157f0cd456351dd086"
  9173. },
  9174. "dist": {
  9175. "type": "zip",
  9176. "url": "https://api.github.com/repos/symfony/debug/zipball/f72e33fdb1170b326e72c3157f0cd456351dd086",
  9177. "reference": "f72e33fdb1170b326e72c3157f0cd456351dd086",
  9178. "shasum": ""
  9179. },
  9180. "require": {
  9181. "php": "^5.5.9|>=7.0.8",
  9182. "psr/log": "~1.0"
  9183. },
  9184. "conflict": {
  9185. "symfony/http-kernel": ">=2.3,<2.3.24|~2.4.0|>=2.5,<2.5.9|>=2.6,<2.6.2"
  9186. },
  9187. "require-dev": {
  9188. "symfony/http-kernel": "~2.8|~3.0|~4.0"
  9189. },
  9190. "type": "library",
  9191. "extra": {
  9192. "branch-alias": {
  9193. "dev-master": "3.4-dev"
  9194. }
  9195. },
  9196. "autoload": {
  9197. "psr-4": {
  9198. "Symfony\\Component\\Debug\\": ""
  9199. },
  9200. "exclude-from-classmap": [
  9201. "/Tests/"
  9202. ]
  9203. },
  9204. "notification-url": "https://packagist.org/downloads/",
  9205. "license": [
  9206. "MIT"
  9207. ],
  9208. "authors": [
  9209. {
  9210. "name": "Fabien Potencier",
  9211. "email": "fabien@symfony.com"
  9212. },
  9213. {
  9214. "name": "Symfony Community",
  9215. "homepage": "https://symfony.com/contributors"
  9216. }
  9217. ],
  9218. "description": "Symfony Debug Component",
  9219. "homepage": "https://symfony.com",
  9220. "time": "2019-10-24T15:33:53+00:00"
  9221. },
  9222. {
  9223. "name": "symfony/dependency-injection",
  9224. "version": "v3.4.34",
  9225. "source": {
  9226. "type": "git",
  9227. "url": "https://github.com/symfony/dependency-injection.git",
  9228. "reference": "0ea4d39ca82409a25a43b61ce828048a90000920"
  9229. },
  9230. "dist": {
  9231. "type": "zip",
  9232. "url": "https://api.github.com/repos/symfony/dependency-injection/zipball/0ea4d39ca82409a25a43b61ce828048a90000920",
  9233. "reference": "0ea4d39ca82409a25a43b61ce828048a90000920",
  9234. "shasum": ""
  9235. },
  9236. "require": {
  9237. "php": "^5.5.9|>=7.0.8",
  9238. "psr/container": "^1.0"
  9239. },
  9240. "conflict": {
  9241. "symfony/config": "<3.3.7",
  9242. "symfony/finder": "<3.3",
  9243. "symfony/proxy-manager-bridge": "<3.4",
  9244. "symfony/yaml": "<3.4"
  9245. },
  9246. "provide": {
  9247. "psr/container-implementation": "1.0"
  9248. },
  9249. "require-dev": {
  9250. "symfony/config": "~3.3|~4.0",
  9251. "symfony/expression-language": "~2.8|~3.0|~4.0",
  9252. "symfony/yaml": "~3.4|~4.0"
  9253. },
  9254. "suggest": {
  9255. "symfony/config": "",
  9256. "symfony/expression-language": "For using expressions in service container configuration",
  9257. "symfony/finder": "For using double-star glob patterns or when GLOB_BRACE portability is required",
  9258. "symfony/proxy-manager-bridge": "Generate service proxies to lazy load them",
  9259. "symfony/yaml": ""
  9260. },
  9261. "type": "library",
  9262. "extra": {
  9263. "branch-alias": {
  9264. "dev-master": "3.4-dev"
  9265. }
  9266. },
  9267. "autoload": {
  9268. "psr-4": {
  9269. "Symfony\\Component\\DependencyInjection\\": ""
  9270. },
  9271. "exclude-from-classmap": [
  9272. "/Tests/"
  9273. ]
  9274. },
  9275. "notification-url": "https://packagist.org/downloads/",
  9276. "license": [
  9277. "MIT"
  9278. ],
  9279. "authors": [
  9280. {
  9281. "name": "Fabien Potencier",
  9282. "email": "fabien@symfony.com"
  9283. },
  9284. {
  9285. "name": "Symfony Community",
  9286. "homepage": "https://symfony.com/contributors"
  9287. }
  9288. ],
  9289. "description": "Symfony DependencyInjection Component",
  9290. "homepage": "https://symfony.com",
  9291. "time": "2019-11-08T16:18:30+00:00"
  9292. },
  9293. {
  9294. "name": "symfony/dom-crawler",
  9295. "version": "v3.4.34",
  9296. "source": {
  9297. "type": "git",
  9298. "url": "https://github.com/symfony/dom-crawler.git",
  9299. "reference": "6bcffd2eabc4ca087faaaf54e26c8ff3a40284f3"
  9300. },
  9301. "dist": {
  9302. "type": "zip",
  9303. "url": "https://api.github.com/repos/symfony/dom-crawler/zipball/6bcffd2eabc4ca087faaaf54e26c8ff3a40284f3",
  9304. "reference": "6bcffd2eabc4ca087faaaf54e26c8ff3a40284f3",
  9305. "shasum": ""
  9306. },
  9307. "require": {
  9308. "php": "^5.5.9|>=7.0.8",
  9309. "symfony/polyfill-ctype": "~1.8",
  9310. "symfony/polyfill-mbstring": "~1.0"
  9311. },
  9312. "require-dev": {
  9313. "symfony/css-selector": "~2.8|~3.0|~4.0"
  9314. },
  9315. "suggest": {
  9316. "symfony/css-selector": ""
  9317. },
  9318. "type": "library",
  9319. "extra": {
  9320. "branch-alias": {
  9321. "dev-master": "3.4-dev"
  9322. }
  9323. },
  9324. "autoload": {
  9325. "psr-4": {
  9326. "Symfony\\Component\\DomCrawler\\": ""
  9327. },
  9328. "exclude-from-classmap": [
  9329. "/Tests/"
  9330. ]
  9331. },
  9332. "notification-url": "https://packagist.org/downloads/",
  9333. "license": [
  9334. "MIT"
  9335. ],
  9336. "authors": [
  9337. {
  9338. "name": "Fabien Potencier",
  9339. "email": "fabien@symfony.com"
  9340. },
  9341. {
  9342. "name": "Symfony Community",
  9343. "homepage": "https://symfony.com/contributors"
  9344. }
  9345. ],
  9346. "description": "Symfony DomCrawler Component",
  9347. "homepage": "https://symfony.com",
  9348. "time": "2019-10-24T15:33:53+00:00"
  9349. },
  9350. {
  9351. "name": "symfony/event-dispatcher",
  9352. "version": "v3.4.34",
  9353. "source": {
  9354. "type": "git",
  9355. "url": "https://github.com/symfony/event-dispatcher.git",
  9356. "reference": "f9031c22ec127d4a2450760f81a8677fe8a10177"
  9357. },
  9358. "dist": {
  9359. "type": "zip",
  9360. "url": "https://api.github.com/repos/symfony/event-dispatcher/zipball/f9031c22ec127d4a2450760f81a8677fe8a10177",
  9361. "reference": "f9031c22ec127d4a2450760f81a8677fe8a10177",
  9362. "shasum": ""
  9363. },
  9364. "require": {
  9365. "php": "^5.5.9|>=7.0.8"
  9366. },
  9367. "conflict": {
  9368. "symfony/dependency-injection": "<3.3"
  9369. },
  9370. "require-dev": {
  9371. "psr/log": "~1.0",
  9372. "symfony/config": "~2.8|~3.0|~4.0",
  9373. "symfony/dependency-injection": "~3.3|~4.0",
  9374. "symfony/expression-language": "~2.8|~3.0|~4.0",
  9375. "symfony/stopwatch": "~2.8|~3.0|~4.0"
  9376. },
  9377. "suggest": {
  9378. "symfony/dependency-injection": "",
  9379. "symfony/http-kernel": ""
  9380. },
  9381. "type": "library",
  9382. "extra": {
  9383. "branch-alias": {
  9384. "dev-master": "3.4-dev"
  9385. }
  9386. },
  9387. "autoload": {
  9388. "psr-4": {
  9389. "Symfony\\Component\\EventDispatcher\\": ""
  9390. },
  9391. "exclude-from-classmap": [
  9392. "/Tests/"
  9393. ]
  9394. },
  9395. "notification-url": "https://packagist.org/downloads/",
  9396. "license": [
  9397. "MIT"
  9398. ],
  9399. "authors": [
  9400. {
  9401. "name": "Fabien Potencier",
  9402. "email": "fabien@symfony.com"
  9403. },
  9404. {
  9405. "name": "Symfony Community",
  9406. "homepage": "https://symfony.com/contributors"
  9407. }
  9408. ],
  9409. "description": "Symfony EventDispatcher Component",
  9410. "homepage": "https://symfony.com",
  9411. "time": "2019-10-24T15:33:53+00:00"
  9412. },
  9413. {
  9414. "name": "symfony/filesystem",
  9415. "version": "v3.4.34",
  9416. "source": {
  9417. "type": "git",
  9418. "url": "https://github.com/symfony/filesystem.git",
  9419. "reference": "00e3a6ddd723b8bcfe4f2a1b6f82b98eeeb51516"
  9420. },
  9421. "dist": {
  9422. "type": "zip",
  9423. "url": "https://api.github.com/repos/symfony/filesystem/zipball/00e3a6ddd723b8bcfe4f2a1b6f82b98eeeb51516",
  9424. "reference": "00e3a6ddd723b8bcfe4f2a1b6f82b98eeeb51516",
  9425. "shasum": ""
  9426. },
  9427. "require": {
  9428. "php": "^5.5.9|>=7.0.8",
  9429. "symfony/polyfill-ctype": "~1.8"
  9430. },
  9431. "type": "library",
  9432. "extra": {
  9433. "branch-alias": {
  9434. "dev-master": "3.4-dev"
  9435. }
  9436. },
  9437. "autoload": {
  9438. "psr-4": {
  9439. "Symfony\\Component\\Filesystem\\": ""
  9440. },
  9441. "exclude-from-classmap": [
  9442. "/Tests/"
  9443. ]
  9444. },
  9445. "notification-url": "https://packagist.org/downloads/",
  9446. "license": [
  9447. "MIT"
  9448. ],
  9449. "authors": [
  9450. {
  9451. "name": "Fabien Potencier",
  9452. "email": "fabien@symfony.com"
  9453. },
  9454. {
  9455. "name": "Symfony Community",
  9456. "homepage": "https://symfony.com/contributors"
  9457. }
  9458. ],
  9459. "description": "Symfony Filesystem Component",
  9460. "homepage": "https://symfony.com",
  9461. "time": "2019-08-20T13:31:17+00:00"
  9462. },
  9463. {
  9464. "name": "symfony/finder",
  9465. "version": "v3.4.34",
  9466. "source": {
  9467. "type": "git",
  9468. "url": "https://github.com/symfony/finder.git",
  9469. "reference": "3e915e5ce305f8bc8017597f71f1f4095092ddf8"
  9470. },
  9471. "dist": {
  9472. "type": "zip",
  9473. "url": "https://api.github.com/repos/symfony/finder/zipball/3e915e5ce305f8bc8017597f71f1f4095092ddf8",
  9474. "reference": "3e915e5ce305f8bc8017597f71f1f4095092ddf8",
  9475. "shasum": ""
  9476. },
  9477. "require": {
  9478. "php": "^5.5.9|>=7.0.8"
  9479. },
  9480. "type": "library",
  9481. "extra": {
  9482. "branch-alias": {
  9483. "dev-master": "3.4-dev"
  9484. }
  9485. },
  9486. "autoload": {
  9487. "psr-4": {
  9488. "Symfony\\Component\\Finder\\": ""
  9489. },
  9490. "exclude-from-classmap": [
  9491. "/Tests/"
  9492. ]
  9493. },
  9494. "notification-url": "https://packagist.org/downloads/",
  9495. "license": [
  9496. "MIT"
  9497. ],
  9498. "authors": [
  9499. {
  9500. "name": "Fabien Potencier",
  9501. "email": "fabien@symfony.com"
  9502. },
  9503. {
  9504. "name": "Symfony Community",
  9505. "homepage": "https://symfony.com/contributors"
  9506. }
  9507. ],
  9508. "description": "Symfony Finder Component",
  9509. "homepage": "https://symfony.com",
  9510. "time": "2019-10-30T12:43:22+00:00"
  9511. },
  9512. {
  9513. "name": "symfony/http-foundation",
  9514. "version": "v3.4.34",
  9515. "source": {
  9516. "type": "git",
  9517. "url": "https://github.com/symfony/http-foundation.git",
  9518. "reference": "a5d46a33e8649ba802cebe520d188b04385572a2"
  9519. },
  9520. "dist": {
  9521. "type": "zip",
  9522. "url": "https://api.github.com/repos/symfony/http-foundation/zipball/a5d46a33e8649ba802cebe520d188b04385572a2",
  9523. "reference": "a5d46a33e8649ba802cebe520d188b04385572a2",
  9524. "shasum": ""
  9525. },
  9526. "require": {
  9527. "php": "^5.5.9|>=7.0.8",
  9528. "symfony/polyfill-mbstring": "~1.1",
  9529. "symfony/polyfill-php70": "~1.6"
  9530. },
  9531. "require-dev": {
  9532. "symfony/expression-language": "~2.8|~3.0|~4.0"
  9533. },
  9534. "type": "library",
  9535. "extra": {
  9536. "branch-alias": {
  9537. "dev-master": "3.4-dev"
  9538. }
  9539. },
  9540. "autoload": {
  9541. "psr-4": {
  9542. "Symfony\\Component\\HttpFoundation\\": ""
  9543. },
  9544. "exclude-from-classmap": [
  9545. "/Tests/"
  9546. ]
  9547. },
  9548. "notification-url": "https://packagist.org/downloads/",
  9549. "license": [
  9550. "MIT"
  9551. ],
  9552. "authors": [
  9553. {
  9554. "name": "Fabien Potencier",
  9555. "email": "fabien@symfony.com"
  9556. },
  9557. {
  9558. "name": "Symfony Community",
  9559. "homepage": "https://symfony.com/contributors"
  9560. }
  9561. ],
  9562. "description": "Symfony HttpFoundation Component",
  9563. "homepage": "https://symfony.com",
  9564. "time": "2019-11-03T02:12:45+00:00"
  9565. },
  9566. {
  9567. "name": "symfony/http-kernel",
  9568. "version": "v3.4.34",
  9569. "source": {
  9570. "type": "git",
  9571. "url": "https://github.com/symfony/http-kernel.git",
  9572. "reference": "6cd0e7e22c33b96b4779f40ef5b4053e4dd9dbd2"
  9573. },
  9574. "dist": {
  9575. "type": "zip",
  9576. "url": "https://api.github.com/repos/symfony/http-kernel/zipball/6cd0e7e22c33b96b4779f40ef5b4053e4dd9dbd2",
  9577. "reference": "6cd0e7e22c33b96b4779f40ef5b4053e4dd9dbd2",
  9578. "shasum": ""
  9579. },
  9580. "require": {
  9581. "php": "^5.5.9|>=7.0.8",
  9582. "psr/log": "~1.0",
  9583. "symfony/debug": "^3.3.3|~4.0",
  9584. "symfony/event-dispatcher": "~2.8|~3.0|~4.0",
  9585. "symfony/http-foundation": "~3.4.12|~4.0.12|^4.1.1",
  9586. "symfony/polyfill-ctype": "~1.8"
  9587. },
  9588. "conflict": {
  9589. "symfony/config": "<2.8",
  9590. "symfony/dependency-injection": "<3.4.10|<4.0.10,>=4",
  9591. "symfony/var-dumper": "<3.3",
  9592. "twig/twig": "<1.34|<2.4,>=2"
  9593. },
  9594. "provide": {
  9595. "psr/log-implementation": "1.0"
  9596. },
  9597. "require-dev": {
  9598. "psr/cache": "~1.0",
  9599. "symfony/browser-kit": "~2.8|~3.0|~4.0",
  9600. "symfony/class-loader": "~2.8|~3.0",
  9601. "symfony/config": "~2.8|~3.0|~4.0",
  9602. "symfony/console": "~2.8|~3.0|~4.0",
  9603. "symfony/css-selector": "~2.8|~3.0|~4.0",
  9604. "symfony/dependency-injection": "^3.4.10|^4.0.10",
  9605. "symfony/dom-crawler": "~2.8|~3.0|~4.0",
  9606. "symfony/expression-language": "~2.8|~3.0|~4.0",
  9607. "symfony/finder": "~2.8|~3.0|~4.0",
  9608. "symfony/process": "~2.8|~3.0|~4.0",
  9609. "symfony/routing": "~3.4|~4.0",
  9610. "symfony/stopwatch": "~2.8|~3.0|~4.0",
  9611. "symfony/templating": "~2.8|~3.0|~4.0",
  9612. "symfony/translation": "~2.8|~3.0|~4.0",
  9613. "symfony/var-dumper": "~3.3|~4.0"
  9614. },
  9615. "suggest": {
  9616. "symfony/browser-kit": "",
  9617. "symfony/config": "",
  9618. "symfony/console": "",
  9619. "symfony/dependency-injection": "",
  9620. "symfony/finder": "",
  9621. "symfony/var-dumper": ""
  9622. },
  9623. "type": "library",
  9624. "extra": {
  9625. "branch-alias": {
  9626. "dev-master": "3.4-dev"
  9627. }
  9628. },
  9629. "autoload": {
  9630. "psr-4": {
  9631. "Symfony\\Component\\HttpKernel\\": ""
  9632. },
  9633. "exclude-from-classmap": [
  9634. "/Tests/"
  9635. ]
  9636. },
  9637. "notification-url": "https://packagist.org/downloads/",
  9638. "license": [
  9639. "MIT"
  9640. ],
  9641. "authors": [
  9642. {
  9643. "name": "Fabien Potencier",
  9644. "email": "fabien@symfony.com"
  9645. },
  9646. {
  9647. "name": "Symfony Community",
  9648. "homepage": "https://symfony.com/contributors"
  9649. }
  9650. ],
  9651. "description": "Symfony HttpKernel Component",
  9652. "homepage": "https://symfony.com",
  9653. "time": "2019-11-11T16:11:23+00:00"
  9654. },
  9655. {
  9656. "name": "symfony/phpunit-bridge",
  9657. "version": "v3.4.34",
  9658. "source": {
  9659. "type": "git",
  9660. "url": "https://github.com/symfony/phpunit-bridge.git",
  9661. "reference": "cbea8818e9f34e4e9d780bd22bdda21b57d4d5c7"
  9662. },
  9663. "dist": {
  9664. "type": "zip",
  9665. "url": "https://api.github.com/repos/symfony/phpunit-bridge/zipball/cbea8818e9f34e4e9d780bd22bdda21b57d4d5c7",
  9666. "reference": "cbea8818e9f34e4e9d780bd22bdda21b57d4d5c7",
  9667. "shasum": ""
  9668. },
  9669. "require": {
  9670. "php": ">=5.3.3"
  9671. },
  9672. "conflict": {
  9673. "phpunit/phpunit": "<4.8.35|<5.4.3,>=5.0"
  9674. },
  9675. "suggest": {
  9676. "symfony/debug": "For tracking deprecated interfaces usages at runtime with DebugClassLoader"
  9677. },
  9678. "bin": [
  9679. "bin/simple-phpunit"
  9680. ],
  9681. "type": "symfony-bridge",
  9682. "extra": {
  9683. "branch-alias": {
  9684. "dev-master": "3.4-dev"
  9685. },
  9686. "thanks": {
  9687. "name": "phpunit/phpunit",
  9688. "url": "https://github.com/sebastianbergmann/phpunit"
  9689. }
  9690. },
  9691. "autoload": {
  9692. "files": [
  9693. "bootstrap.php"
  9694. ],
  9695. "psr-4": {
  9696. "Symfony\\Bridge\\PhpUnit\\": ""
  9697. },
  9698. "exclude-from-classmap": [
  9699. "/Tests/"
  9700. ]
  9701. },
  9702. "notification-url": "https://packagist.org/downloads/",
  9703. "license": [
  9704. "MIT"
  9705. ],
  9706. "authors": [
  9707. {
  9708. "name": "Nicolas Grekas",
  9709. "email": "p@tchwork.com"
  9710. },
  9711. {
  9712. "name": "Symfony Community",
  9713. "homepage": "https://symfony.com/contributors"
  9714. }
  9715. ],
  9716. "description": "Symfony PHPUnit Bridge",
  9717. "homepage": "https://symfony.com",
  9718. "time": "2019-09-30T20:33:19+00:00"
  9719. },
  9720. {
  9721. "name": "symfony/polyfill-ctype",
  9722. "version": "v1.12.0",
  9723. "source": {
  9724. "type": "git",
  9725. "url": "https://github.com/symfony/polyfill-ctype.git",
  9726. "reference": "550ebaac289296ce228a706d0867afc34687e3f4"
  9727. },
  9728. "dist": {
  9729. "type": "zip",
  9730. "url": "https://api.github.com/repos/symfony/polyfill-ctype/zipball/550ebaac289296ce228a706d0867afc34687e3f4",
  9731. "reference": "550ebaac289296ce228a706d0867afc34687e3f4",
  9732. "shasum": ""
  9733. },
  9734. "require": {
  9735. "php": ">=5.3.3"
  9736. },
  9737. "suggest": {
  9738. "ext-ctype": "For best performance"
  9739. },
  9740. "type": "library",
  9741. "extra": {
  9742. "branch-alias": {
  9743. "dev-master": "1.12-dev"
  9744. }
  9745. },
  9746. "autoload": {
  9747. "psr-4": {
  9748. "Symfony\\Polyfill\\Ctype\\": ""
  9749. },
  9750. "files": [
  9751. "bootstrap.php"
  9752. ]
  9753. },
  9754. "notification-url": "https://packagist.org/downloads/",
  9755. "license": [
  9756. "MIT"
  9757. ],
  9758. "authors": [
  9759. {
  9760. "name": "Gert de Pagter",
  9761. "email": "BackEndTea@gmail.com"
  9762. },
  9763. {
  9764. "name": "Symfony Community",
  9765. "homepage": "https://symfony.com/contributors"
  9766. }
  9767. ],
  9768. "description": "Symfony polyfill for ctype functions",
  9769. "homepage": "https://symfony.com",
  9770. "keywords": [
  9771. "compatibility",
  9772. "ctype",
  9773. "polyfill",
  9774. "portable"
  9775. ],
  9776. "time": "2019-08-06T08:03:45+00:00"
  9777. },
  9778. {
  9779. "name": "symfony/polyfill-iconv",
  9780. "version": "v1.12.0",
  9781. "source": {
  9782. "type": "git",
  9783. "url": "https://github.com/symfony/polyfill-iconv.git",
  9784. "reference": "685968b11e61a347c18bf25db32effa478be610f"
  9785. },
  9786. "dist": {
  9787. "type": "zip",
  9788. "url": "https://api.github.com/repos/symfony/polyfill-iconv/zipball/685968b11e61a347c18bf25db32effa478be610f",
  9789. "reference": "685968b11e61a347c18bf25db32effa478be610f",
  9790. "shasum": ""
  9791. },
  9792. "require": {
  9793. "php": ">=5.3.3"
  9794. },
  9795. "suggest": {
  9796. "ext-iconv": "For best performance"
  9797. },
  9798. "type": "library",
  9799. "extra": {
  9800. "branch-alias": {
  9801. "dev-master": "1.12-dev"
  9802. }
  9803. },
  9804. "autoload": {
  9805. "psr-4": {
  9806. "Symfony\\Polyfill\\Iconv\\": ""
  9807. },
  9808. "files": [
  9809. "bootstrap.php"
  9810. ]
  9811. },
  9812. "notification-url": "https://packagist.org/downloads/",
  9813. "license": [
  9814. "MIT"
  9815. ],
  9816. "authors": [
  9817. {
  9818. "name": "Nicolas Grekas",
  9819. "email": "p@tchwork.com"
  9820. },
  9821. {
  9822. "name": "Symfony Community",
  9823. "homepage": "https://symfony.com/contributors"
  9824. }
  9825. ],
  9826. "description": "Symfony polyfill for the Iconv extension",
  9827. "homepage": "https://symfony.com",
  9828. "keywords": [
  9829. "compatibility",
  9830. "iconv",
  9831. "polyfill",
  9832. "portable",
  9833. "shim"
  9834. ],
  9835. "time": "2019-08-06T08:03:45+00:00"
  9836. },
  9837. {
  9838. "name": "symfony/polyfill-mbstring",
  9839. "version": "v1.12.0",
  9840. "source": {
  9841. "type": "git",
  9842. "url": "https://github.com/symfony/polyfill-mbstring.git",
  9843. "reference": "b42a2f66e8f1b15ccf25652c3424265923eb4f17"
  9844. },
  9845. "dist": {
  9846. "type": "zip",
  9847. "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/b42a2f66e8f1b15ccf25652c3424265923eb4f17",
  9848. "reference": "b42a2f66e8f1b15ccf25652c3424265923eb4f17",
  9849. "shasum": ""
  9850. },
  9851. "require": {
  9852. "php": ">=5.3.3"
  9853. },
  9854. "suggest": {
  9855. "ext-mbstring": "For best performance"
  9856. },
  9857. "type": "library",
  9858. "extra": {
  9859. "branch-alias": {
  9860. "dev-master": "1.12-dev"
  9861. }
  9862. },
  9863. "autoload": {
  9864. "psr-4": {
  9865. "Symfony\\Polyfill\\Mbstring\\": ""
  9866. },
  9867. "files": [
  9868. "bootstrap.php"
  9869. ]
  9870. },
  9871. "notification-url": "https://packagist.org/downloads/",
  9872. "license": [
  9873. "MIT"
  9874. ],
  9875. "authors": [
  9876. {
  9877. "name": "Nicolas Grekas",
  9878. "email": "p@tchwork.com"
  9879. },
  9880. {
  9881. "name": "Symfony Community",
  9882. "homepage": "https://symfony.com/contributors"
  9883. }
  9884. ],
  9885. "description": "Symfony polyfill for the Mbstring extension",
  9886. "homepage": "https://symfony.com",
  9887. "keywords": [
  9888. "compatibility",
  9889. "mbstring",
  9890. "polyfill",
  9891. "portable",
  9892. "shim"
  9893. ],
  9894. "time": "2019-08-06T08:03:45+00:00"
  9895. },
  9896. {
  9897. "name": "symfony/polyfill-php70",
  9898. "version": "v1.12.0",
  9899. "source": {
  9900. "type": "git",
  9901. "url": "https://github.com/symfony/polyfill-php70.git",
  9902. "reference": "54b4c428a0054e254223797d2713c31e08610831"
  9903. },
  9904. "dist": {
  9905. "type": "zip",
  9906. "url": "https://api.github.com/repos/symfony/polyfill-php70/zipball/54b4c428a0054e254223797d2713c31e08610831",
  9907. "reference": "54b4c428a0054e254223797d2713c31e08610831",
  9908. "shasum": ""
  9909. },
  9910. "require": {
  9911. "paragonie/random_compat": "~1.0|~2.0|~9.99",
  9912. "php": ">=5.3.3"
  9913. },
  9914. "type": "library",
  9915. "extra": {
  9916. "branch-alias": {
  9917. "dev-master": "1.12-dev"
  9918. }
  9919. },
  9920. "autoload": {
  9921. "psr-4": {
  9922. "Symfony\\Polyfill\\Php70\\": ""
  9923. },
  9924. "files": [
  9925. "bootstrap.php"
  9926. ],
  9927. "classmap": [
  9928. "Resources/stubs"
  9929. ]
  9930. },
  9931. "notification-url": "https://packagist.org/downloads/",
  9932. "license": [
  9933. "MIT"
  9934. ],
  9935. "authors": [
  9936. {
  9937. "name": "Nicolas Grekas",
  9938. "email": "p@tchwork.com"
  9939. },
  9940. {
  9941. "name": "Symfony Community",
  9942. "homepage": "https://symfony.com/contributors"
  9943. }
  9944. ],
  9945. "description": "Symfony polyfill backporting some PHP 7.0+ features to lower PHP versions",
  9946. "homepage": "https://symfony.com",
  9947. "keywords": [
  9948. "compatibility",
  9949. "polyfill",
  9950. "portable",
  9951. "shim"
  9952. ],
  9953. "time": "2019-08-06T08:03:45+00:00"
  9954. },
  9955. {
  9956. "name": "symfony/process",
  9957. "version": "v3.4.34",
  9958. "source": {
  9959. "type": "git",
  9960. "url": "https://github.com/symfony/process.git",
  9961. "reference": "c19da50bc3e8fa7d60628fdb4ab5d67de534cf3e"
  9962. },
  9963. "dist": {
  9964. "type": "zip",
  9965. "url": "https://api.github.com/repos/symfony/process/zipball/c19da50bc3e8fa7d60628fdb4ab5d67de534cf3e",
  9966. "reference": "c19da50bc3e8fa7d60628fdb4ab5d67de534cf3e",
  9967. "shasum": ""
  9968. },
  9969. "require": {
  9970. "php": "^5.5.9|>=7.0.8"
  9971. },
  9972. "type": "library",
  9973. "extra": {
  9974. "branch-alias": {
  9975. "dev-master": "3.4-dev"
  9976. }
  9977. },
  9978. "autoload": {
  9979. "psr-4": {
  9980. "Symfony\\Component\\Process\\": ""
  9981. },
  9982. "exclude-from-classmap": [
  9983. "/Tests/"
  9984. ]
  9985. },
  9986. "notification-url": "https://packagist.org/downloads/",
  9987. "license": [
  9988. "MIT"
  9989. ],
  9990. "authors": [
  9991. {
  9992. "name": "Fabien Potencier",
  9993. "email": "fabien@symfony.com"
  9994. },
  9995. {
  9996. "name": "Symfony Community",
  9997. "homepage": "https://symfony.com/contributors"
  9998. }
  9999. ],
  10000. "description": "Symfony Process Component",
  10001. "homepage": "https://symfony.com",
  10002. "time": "2019-10-24T15:33:53+00:00"
  10003. },
  10004. {
  10005. "name": "symfony/psr-http-message-bridge",
  10006. "version": "v1.1.2",
  10007. "source": {
  10008. "type": "git",
  10009. "url": "https://github.com/symfony/psr-http-message-bridge.git",
  10010. "reference": "a33352af16f78a5ff4f9d90811536abf210df12b"
  10011. },
  10012. "dist": {
  10013. "type": "zip",
  10014. "url": "https://api.github.com/repos/symfony/psr-http-message-bridge/zipball/a33352af16f78a5ff4f9d90811536abf210df12b",
  10015. "reference": "a33352af16f78a5ff4f9d90811536abf210df12b",
  10016. "shasum": ""
  10017. },
  10018. "require": {
  10019. "php": "^5.3.3 || ^7.0",
  10020. "psr/http-message": "^1.0",
  10021. "symfony/http-foundation": "^2.3.42 || ^3.4 || ^4.0"
  10022. },
  10023. "require-dev": {
  10024. "symfony/phpunit-bridge": "^3.4 || ^4.0"
  10025. },
  10026. "suggest": {
  10027. "nyholm/psr7": "For a super lightweight PSR-7/17 implementation"
  10028. },
  10029. "type": "symfony-bridge",
  10030. "extra": {
  10031. "branch-alias": {
  10032. "dev-master": "1.1-dev"
  10033. }
  10034. },
  10035. "autoload": {
  10036. "psr-4": {
  10037. "Symfony\\Bridge\\PsrHttpMessage\\": ""
  10038. },
  10039. "exclude-from-classmap": [
  10040. "/Tests/"
  10041. ]
  10042. },
  10043. "notification-url": "https://packagist.org/downloads/",
  10044. "license": [
  10045. "MIT"
  10046. ],
  10047. "authors": [
  10048. {
  10049. "name": "Symfony Community",
  10050. "homepage": "http://symfony.com/contributors"
  10051. },
  10052. {
  10053. "name": "Fabien Potencier",
  10054. "email": "fabien@symfony.com"
  10055. }
  10056. ],
  10057. "description": "PSR HTTP message bridge",
  10058. "homepage": "http://symfony.com",
  10059. "keywords": [
  10060. "http",
  10061. "http-message",
  10062. "psr-17",
  10063. "psr-7"
  10064. ],
  10065. "time": "2019-04-03T17:09:40+00:00"
  10066. },
  10067. {
  10068. "name": "symfony/routing",
  10069. "version": "v3.4.34",
  10070. "source": {
  10071. "type": "git",
  10072. "url": "https://github.com/symfony/routing.git",
  10073. "reference": "afc10b9c6b5196e0fecbc3bd373c7b4482e5b6b5"
  10074. },
  10075. "dist": {
  10076. "type": "zip",
  10077. "url": "https://api.github.com/repos/symfony/routing/zipball/afc10b9c6b5196e0fecbc3bd373c7b4482e5b6b5",
  10078. "reference": "afc10b9c6b5196e0fecbc3bd373c7b4482e5b6b5",
  10079. "shasum": ""
  10080. },
  10081. "require": {
  10082. "php": "^5.5.9|>=7.0.8"
  10083. },
  10084. "conflict": {
  10085. "symfony/config": "<3.3.1",
  10086. "symfony/dependency-injection": "<3.3",
  10087. "symfony/yaml": "<3.4"
  10088. },
  10089. "require-dev": {
  10090. "doctrine/annotations": "~1.0",
  10091. "psr/log": "~1.0",
  10092. "symfony/config": "^3.3.1|~4.0",
  10093. "symfony/dependency-injection": "~3.3|~4.0",
  10094. "symfony/expression-language": "~2.8|~3.0|~4.0",
  10095. "symfony/http-foundation": "~2.8|~3.0|~4.0",
  10096. "symfony/yaml": "~3.4|~4.0"
  10097. },
  10098. "suggest": {
  10099. "doctrine/annotations": "For using the annotation loader",
  10100. "symfony/config": "For using the all-in-one router or any loader",
  10101. "symfony/expression-language": "For using expression matching",
  10102. "symfony/http-foundation": "For using a Symfony Request object",
  10103. "symfony/yaml": "For using the YAML loader"
  10104. },
  10105. "type": "library",
  10106. "extra": {
  10107. "branch-alias": {
  10108. "dev-master": "3.4-dev"
  10109. }
  10110. },
  10111. "autoload": {
  10112. "psr-4": {
  10113. "Symfony\\Component\\Routing\\": ""
  10114. },
  10115. "exclude-from-classmap": [
  10116. "/Tests/"
  10117. ]
  10118. },
  10119. "notification-url": "https://packagist.org/downloads/",
  10120. "license": [
  10121. "MIT"
  10122. ],
  10123. "authors": [
  10124. {
  10125. "name": "Fabien Potencier",
  10126. "email": "fabien@symfony.com"
  10127. },
  10128. {
  10129. "name": "Symfony Community",
  10130. "homepage": "https://symfony.com/contributors"
  10131. }
  10132. ],
  10133. "description": "Symfony Routing Component",
  10134. "homepage": "https://symfony.com",
  10135. "keywords": [
  10136. "router",
  10137. "routing",
  10138. "uri",
  10139. "url"
  10140. ],
  10141. "time": "2019-11-08T17:25:00+00:00"
  10142. },
  10143. {
  10144. "name": "symfony/serializer",
  10145. "version": "v3.4.34",
  10146. "source": {
  10147. "type": "git",
  10148. "url": "https://github.com/symfony/serializer.git",
  10149. "reference": "a9b988899604cf3ecb144834ffbd11134c6f7773"
  10150. },
  10151. "dist": {
  10152. "type": "zip",
  10153. "url": "https://api.github.com/repos/symfony/serializer/zipball/a9b988899604cf3ecb144834ffbd11134c6f7773",
  10154. "reference": "a9b988899604cf3ecb144834ffbd11134c6f7773",
  10155. "shasum": ""
  10156. },
  10157. "require": {
  10158. "php": "^5.5.9|>=7.0.8",
  10159. "symfony/polyfill-ctype": "~1.8"
  10160. },
  10161. "conflict": {
  10162. "phpdocumentor/type-resolver": "<0.2.1",
  10163. "symfony/dependency-injection": "<3.2",
  10164. "symfony/property-access": ">=3.0,<3.0.4|>=2.8,<2.8.4",
  10165. "symfony/property-info": "<3.1",
  10166. "symfony/yaml": "<3.4"
  10167. },
  10168. "require-dev": {
  10169. "doctrine/annotations": "~1.0",
  10170. "doctrine/cache": "~1.0",
  10171. "phpdocumentor/reflection-docblock": "^3.0|^4.0",
  10172. "symfony/cache": "~3.1|~4.0",
  10173. "symfony/config": "~2.8|~3.0|~4.0",
  10174. "symfony/dependency-injection": "~3.2|~4.0",
  10175. "symfony/http-foundation": "~2.8|~3.0|~4.0",
  10176. "symfony/property-access": "~2.8|~3.0|~4.0",
  10177. "symfony/property-info": "^3.4.13|~4.0",
  10178. "symfony/yaml": "~3.4|~4.0"
  10179. },
  10180. "suggest": {
  10181. "doctrine/annotations": "For using the annotation mapping. You will also need doctrine/cache.",
  10182. "doctrine/cache": "For using the default cached annotation reader and metadata cache.",
  10183. "psr/cache-implementation": "For using the metadata cache.",
  10184. "symfony/config": "For using the XML mapping loader.",
  10185. "symfony/http-foundation": "For using a MIME type guesser within the DataUriNormalizer.",
  10186. "symfony/property-access": "For using the ObjectNormalizer.",
  10187. "symfony/property-info": "To deserialize relations.",
  10188. "symfony/yaml": "For using the default YAML mapping loader."
  10189. },
  10190. "type": "library",
  10191. "extra": {
  10192. "branch-alias": {
  10193. "dev-master": "3.4-dev"
  10194. }
  10195. },
  10196. "autoload": {
  10197. "psr-4": {
  10198. "Symfony\\Component\\Serializer\\": ""
  10199. },
  10200. "exclude-from-classmap": [
  10201. "/Tests/"
  10202. ]
  10203. },
  10204. "notification-url": "https://packagist.org/downloads/",
  10205. "license": [
  10206. "MIT"
  10207. ],
  10208. "authors": [
  10209. {
  10210. "name": "Fabien Potencier",
  10211. "email": "fabien@symfony.com"
  10212. },
  10213. {
  10214. "name": "Symfony Community",
  10215. "homepage": "https://symfony.com/contributors"
  10216. }
  10217. ],
  10218. "description": "Symfony Serializer Component",
  10219. "homepage": "https://symfony.com",
  10220. "time": "2019-10-29T11:09:57+00:00"
  10221. },
  10222. {
  10223. "name": "symfony/translation",
  10224. "version": "v3.4.34",
  10225. "source": {
  10226. "type": "git",
  10227. "url": "https://github.com/symfony/translation.git",
  10228. "reference": "2031c895bc97ac1787d418d90bd1ed7d299f2772"
  10229. },
  10230. "dist": {
  10231. "type": "zip",
  10232. "url": "https://api.github.com/repos/symfony/translation/zipball/2031c895bc97ac1787d418d90bd1ed7d299f2772",
  10233. "reference": "2031c895bc97ac1787d418d90bd1ed7d299f2772",
  10234. "shasum": ""
  10235. },
  10236. "require": {
  10237. "php": "^5.5.9|>=7.0.8",
  10238. "symfony/polyfill-mbstring": "~1.0"
  10239. },
  10240. "conflict": {
  10241. "symfony/config": "<2.8",
  10242. "symfony/dependency-injection": "<3.4",
  10243. "symfony/yaml": "<3.4"
  10244. },
  10245. "require-dev": {
  10246. "psr/log": "~1.0",
  10247. "symfony/config": "~2.8|~3.0|~4.0",
  10248. "symfony/dependency-injection": "~3.4|~4.0",
  10249. "symfony/finder": "~2.8|~3.0|~4.0",
  10250. "symfony/http-kernel": "~3.4|~4.0",
  10251. "symfony/intl": "^2.8.18|^3.2.5|~4.0",
  10252. "symfony/var-dumper": "~3.4|~4.0",
  10253. "symfony/yaml": "~3.4|~4.0"
  10254. },
  10255. "suggest": {
  10256. "psr/log-implementation": "To use logging capability in translator",
  10257. "symfony/config": "",
  10258. "symfony/yaml": ""
  10259. },
  10260. "type": "library",
  10261. "extra": {
  10262. "branch-alias": {
  10263. "dev-master": "3.4-dev"
  10264. }
  10265. },
  10266. "autoload": {
  10267. "psr-4": {
  10268. "Symfony\\Component\\Translation\\": ""
  10269. },
  10270. "exclude-from-classmap": [
  10271. "/Tests/"
  10272. ]
  10273. },
  10274. "notification-url": "https://packagist.org/downloads/",
  10275. "license": [
  10276. "MIT"
  10277. ],
  10278. "authors": [
  10279. {
  10280. "name": "Fabien Potencier",
  10281. "email": "fabien@symfony.com"
  10282. },
  10283. {
  10284. "name": "Symfony Community",
  10285. "homepage": "https://symfony.com/contributors"
  10286. }
  10287. ],
  10288. "description": "Symfony Translation Component",
  10289. "homepage": "https://symfony.com",
  10290. "time": "2019-10-30T12:43:22+00:00"
  10291. },
  10292. {
  10293. "name": "symfony/validator",
  10294. "version": "v3.4.34",
  10295. "source": {
  10296. "type": "git",
  10297. "url": "https://github.com/symfony/validator.git",
  10298. "reference": "b11f45742c5c9a228cedc46b70c6317780a1ac80"
  10299. },
  10300. "dist": {
  10301. "type": "zip",
  10302. "url": "https://api.github.com/repos/symfony/validator/zipball/b11f45742c5c9a228cedc46b70c6317780a1ac80",
  10303. "reference": "b11f45742c5c9a228cedc46b70c6317780a1ac80",
  10304. "shasum": ""
  10305. },
  10306. "require": {
  10307. "php": "^5.5.9|>=7.0.8",
  10308. "symfony/polyfill-ctype": "~1.8",
  10309. "symfony/polyfill-mbstring": "~1.0",
  10310. "symfony/translation": "~2.8|~3.0|~4.0"
  10311. },
  10312. "conflict": {
  10313. "doctrine/lexer": "<1.0.2",
  10314. "phpunit/phpunit": "<4.8.35|<5.4.3,>=5.0",
  10315. "symfony/dependency-injection": "<3.3",
  10316. "symfony/http-kernel": "<3.3.5",
  10317. "symfony/yaml": "<3.4"
  10318. },
  10319. "require-dev": {
  10320. "doctrine/annotations": "~1.7",
  10321. "doctrine/cache": "~1.0",
  10322. "egulias/email-validator": "^2.1.10",
  10323. "symfony/cache": "~3.1|~4.0",
  10324. "symfony/config": "~2.8|~3.0|~4.0",
  10325. "symfony/dependency-injection": "~3.3|~4.0",
  10326. "symfony/expression-language": "~2.8|~3.0|~4.0",
  10327. "symfony/http-foundation": "~2.8|~3.0|~4.0",
  10328. "symfony/http-kernel": "^3.3.5|~4.0",
  10329. "symfony/intl": "^2.8.18|^3.2.5|~4.0",
  10330. "symfony/property-access": "~2.8|~3.0|~4.0",
  10331. "symfony/var-dumper": "~3.3|~4.0",
  10332. "symfony/yaml": "~3.4|~4.0"
  10333. },
  10334. "suggest": {
  10335. "doctrine/annotations": "For using the annotation mapping. You will also need doctrine/cache.",
  10336. "doctrine/cache": "For using the default cached annotation reader and metadata cache.",
  10337. "egulias/email-validator": "Strict (RFC compliant) email validation",
  10338. "psr/cache-implementation": "For using the metadata cache.",
  10339. "symfony/config": "",
  10340. "symfony/expression-language": "For using the Expression validator",
  10341. "symfony/http-foundation": "",
  10342. "symfony/intl": "",
  10343. "symfony/property-access": "For accessing properties within comparison constraints",
  10344. "symfony/yaml": ""
  10345. },
  10346. "type": "library",
  10347. "extra": {
  10348. "branch-alias": {
  10349. "dev-master": "3.4-dev"
  10350. }
  10351. },
  10352. "autoload": {
  10353. "psr-4": {
  10354. "Symfony\\Component\\Validator\\": ""
  10355. },
  10356. "exclude-from-classmap": [
  10357. "/Tests/"
  10358. ]
  10359. },
  10360. "notification-url": "https://packagist.org/downloads/",
  10361. "license": [
  10362. "MIT"
  10363. ],
  10364. "authors": [
  10365. {
  10366. "name": "Fabien Potencier",
  10367. "email": "fabien@symfony.com"
  10368. },
  10369. {
  10370. "name": "Symfony Community",
  10371. "homepage": "https://symfony.com/contributors"
  10372. }
  10373. ],
  10374. "description": "Symfony Validator Component",
  10375. "homepage": "https://symfony.com",
  10376. "time": "2019-11-05T22:03:38+00:00"
  10377. },
  10378. {
  10379. "name": "symfony/var-dumper",
  10380. "version": "v3.4.34",
  10381. "source": {
  10382. "type": "git",
  10383. "url": "https://github.com/symfony/var-dumper.git",
  10384. "reference": "569e261461600810845a8305ca3f64abd3e712c0"
  10385. },
  10386. "dist": {
  10387. "type": "zip",
  10388. "url": "https://api.github.com/repos/symfony/var-dumper/zipball/569e261461600810845a8305ca3f64abd3e712c0",
  10389. "reference": "569e261461600810845a8305ca3f64abd3e712c0",
  10390. "shasum": ""
  10391. },
  10392. "require": {
  10393. "php": "^5.5.9|>=7.0.8",
  10394. "symfony/polyfill-mbstring": "~1.0"
  10395. },
  10396. "conflict": {
  10397. "phpunit/phpunit": "<4.8.35|<5.4.3,>=5.0"
  10398. },
  10399. "require-dev": {
  10400. "ext-iconv": "*",
  10401. "twig/twig": "~1.34|~2.4"
  10402. },
  10403. "suggest": {
  10404. "ext-iconv": "To convert non-UTF-8 strings to UTF-8 (or symfony/polyfill-iconv in case ext-iconv cannot be used).",
  10405. "ext-intl": "To show region name in time zone dump",
  10406. "ext-symfony_debug": ""
  10407. },
  10408. "type": "library",
  10409. "extra": {
  10410. "branch-alias": {
  10411. "dev-master": "3.4-dev"
  10412. }
  10413. },
  10414. "autoload": {
  10415. "files": [
  10416. "Resources/functions/dump.php"
  10417. ],
  10418. "psr-4": {
  10419. "Symfony\\Component\\VarDumper\\": ""
  10420. },
  10421. "exclude-from-classmap": [
  10422. "/Tests/"
  10423. ]
  10424. },
  10425. "notification-url": "https://packagist.org/downloads/",
  10426. "license": [
  10427. "MIT"
  10428. ],
  10429. "authors": [
  10430. {
  10431. "name": "Nicolas Grekas",
  10432. "email": "p@tchwork.com"
  10433. },
  10434. {
  10435. "name": "Symfony Community",
  10436. "homepage": "https://symfony.com/contributors"
  10437. }
  10438. ],
  10439. "description": "Symfony mechanism for exploring and dumping PHP variables",
  10440. "homepage": "https://symfony.com",
  10441. "keywords": [
  10442. "debug",
  10443. "dump"
  10444. ],
  10445. "time": "2019-10-10T11:03:19+00:00"
  10446. },
  10447. {
  10448. "name": "symfony/yaml",
  10449. "version": "v3.4.34",
  10450. "source": {
  10451. "type": "git",
  10452. "url": "https://github.com/symfony/yaml.git",
  10453. "reference": "dab657db15207879217fc81df4f875947bf68804"
  10454. },
  10455. "dist": {
  10456. "type": "zip",
  10457. "url": "https://api.github.com/repos/symfony/yaml/zipball/dab657db15207879217fc81df4f875947bf68804",
  10458. "reference": "dab657db15207879217fc81df4f875947bf68804",
  10459. "shasum": ""
  10460. },
  10461. "require": {
  10462. "php": "^5.5.9|>=7.0.8",
  10463. "symfony/polyfill-ctype": "~1.8"
  10464. },
  10465. "conflict": {
  10466. "symfony/console": "<3.4"
  10467. },
  10468. "require-dev": {
  10469. "symfony/console": "~3.4|~4.0"
  10470. },
  10471. "suggest": {
  10472. "symfony/console": "For validating YAML files using the lint command"
  10473. },
  10474. "type": "library",
  10475. "extra": {
  10476. "branch-alias": {
  10477. "dev-master": "3.4-dev"
  10478. }
  10479. },
  10480. "autoload": {
  10481. "psr-4": {
  10482. "Symfony\\Component\\Yaml\\": ""
  10483. },
  10484. "exclude-from-classmap": [
  10485. "/Tests/"
  10486. ]
  10487. },
  10488. "notification-url": "https://packagist.org/downloads/",
  10489. "license": [
  10490. "MIT"
  10491. ],
  10492. "authors": [
  10493. {
  10494. "name": "Fabien Potencier",
  10495. "email": "fabien@symfony.com"
  10496. },
  10497. {
  10498. "name": "Symfony Community",
  10499. "homepage": "https://symfony.com/contributors"
  10500. }
  10501. ],
  10502. "description": "Symfony Yaml Component",
  10503. "homepage": "https://symfony.com",
  10504. "time": "2019-10-24T15:33:53+00:00"
  10505. },
  10506. {
  10507. "name": "theseer/tokenizer",
  10508. "version": "1.1.3",
  10509. "source": {
  10510. "type": "git",
  10511. "url": "https://github.com/theseer/tokenizer.git",
  10512. "reference": "11336f6f84e16a720dae9d8e6ed5019efa85a0f9"
  10513. },
  10514. "dist": {
  10515. "type": "zip",
  10516. "url": "https://api.github.com/repos/theseer/tokenizer/zipball/11336f6f84e16a720dae9d8e6ed5019efa85a0f9",
  10517. "reference": "11336f6f84e16a720dae9d8e6ed5019efa85a0f9",
  10518. "shasum": ""
  10519. },
  10520. "require": {
  10521. "ext-dom": "*",
  10522. "ext-tokenizer": "*",
  10523. "ext-xmlwriter": "*",
  10524. "php": "^7.0"
  10525. },
  10526. "type": "library",
  10527. "autoload": {
  10528. "classmap": [
  10529. "src/"
  10530. ]
  10531. },
  10532. "notification-url": "https://packagist.org/downloads/",
  10533. "license": [
  10534. "BSD-3-Clause"
  10535. ],
  10536. "authors": [
  10537. {
  10538. "name": "Arne Blankerts",
  10539. "email": "arne@blankerts.de",
  10540. "role": "Developer"
  10541. }
  10542. ],
  10543. "description": "A small library for converting tokenized PHP source code into XML and potentially other formats",
  10544. "time": "2019-06-13T22:48:21+00:00"
  10545. },
  10546. {
  10547. "name": "twig/twig",
  10548. "version": "v1.42.4",
  10549. "source": {
  10550. "type": "git",
  10551. "url": "https://github.com/twigphp/Twig.git",
  10552. "reference": "e587180584c3d2d6cb864a0454e777bb6dcb6152"
  10553. },
  10554. "dist": {
  10555. "type": "zip",
  10556. "url": "https://api.github.com/repos/twigphp/Twig/zipball/e587180584c3d2d6cb864a0454e777bb6dcb6152",
  10557. "reference": "e587180584c3d2d6cb864a0454e777bb6dcb6152",
  10558. "shasum": ""
  10559. },
  10560. "require": {
  10561. "php": ">=5.5.0",
  10562. "symfony/polyfill-ctype": "^1.8"
  10563. },
  10564. "require-dev": {
  10565. "psr/container": "^1.0",
  10566. "symfony/debug": "^3.4|^4.2",
  10567. "symfony/phpunit-bridge": "^4.4@dev|^5.0"
  10568. },
  10569. "type": "library",
  10570. "extra": {
  10571. "branch-alias": {
  10572. "dev-master": "1.42-dev"
  10573. }
  10574. },
  10575. "autoload": {
  10576. "psr-0": {
  10577. "Twig_": "lib/"
  10578. },
  10579. "psr-4": {
  10580. "Twig\\": "src/"
  10581. }
  10582. },
  10583. "notification-url": "https://packagist.org/downloads/",
  10584. "license": [
  10585. "BSD-3-Clause"
  10586. ],
  10587. "authors": [
  10588. {
  10589. "name": "Fabien Potencier",
  10590. "email": "fabien@symfony.com",
  10591. "homepage": "http://fabien.potencier.org",
  10592. "role": "Lead Developer"
  10593. },
  10594. {
  10595. "name": "Twig Team",
  10596. "homepage": "https://twig.symfony.com/contributors",
  10597. "role": "Contributors"
  10598. },
  10599. {
  10600. "name": "Armin Ronacher",
  10601. "email": "armin.ronacher@active-4.com",
  10602. "role": "Project Founder"
  10603. }
  10604. ],
  10605. "description": "Twig, the flexible, fast, and secure template language for PHP",
  10606. "homepage": "https://twig.symfony.com",
  10607. "keywords": [
  10608. "templating"
  10609. ],
  10610. "time": "2019-11-11T16:49:32+00:00"
  10611. },
  10612. {
  10613. "name": "typo3/phar-stream-wrapper",
  10614. "version": "v2.1.3",
  10615. "source": {
  10616. "type": "git",
  10617. "url": "https://github.com/TYPO3/phar-stream-wrapper.git",
  10618. "reference": "e8a656d72028b97ab9f61ed993734f3cded02eeb"
  10619. },
  10620. "dist": {
  10621. "type": "zip",
  10622. "url": "https://api.github.com/repos/TYPO3/phar-stream-wrapper/zipball/e8a656d72028b97ab9f61ed993734f3cded02eeb",
  10623. "reference": "e8a656d72028b97ab9f61ed993734f3cded02eeb",
  10624. "shasum": ""
  10625. },
  10626. "require": {
  10627. "brumann/polyfill-unserialize": "^1.0",
  10628. "ext-json": "*",
  10629. "php": "^5.3.3|^7.0"
  10630. },
  10631. "require-dev": {
  10632. "ext-xdebug": "*",
  10633. "phpunit/phpunit": "^4.8.36"
  10634. },
  10635. "suggest": {
  10636. "ext-fileinfo": "For PHP builtin file type guessing, otherwise uses internal processing"
  10637. },
  10638. "type": "library",
  10639. "autoload": {
  10640. "psr-4": {
  10641. "TYPO3\\PharStreamWrapper\\": "src/"
  10642. }
  10643. },
  10644. "notification-url": "https://packagist.org/downloads/",
  10645. "license": [
  10646. "MIT"
  10647. ],
  10648. "description": "Interceptors for PHP's native phar:// stream handling",
  10649. "homepage": "https://typo3.org/",
  10650. "keywords": [
  10651. "phar",
  10652. "php",
  10653. "security",
  10654. "stream-wrapper"
  10655. ],
  10656. "time": "2019-10-18T11:59:10+00:00"
  10657. },
  10658. {
  10659. "name": "vlucas/phpdotenv",
  10660. "version": "v2.6.1",
  10661. "source": {
  10662. "type": "git",
  10663. "url": "https://github.com/vlucas/phpdotenv.git",
  10664. "reference": "2a7dcf7e3e02dc5e701004e51a6f304b713107d5"
  10665. },
  10666. "dist": {
  10667. "type": "zip",
  10668. "url": "https://api.github.com/repos/vlucas/phpdotenv/zipball/2a7dcf7e3e02dc5e701004e51a6f304b713107d5",
  10669. "reference": "2a7dcf7e3e02dc5e701004e51a6f304b713107d5",
  10670. "shasum": ""
  10671. },
  10672. "require": {
  10673. "php": ">=5.3.9",
  10674. "symfony/polyfill-ctype": "^1.9"
  10675. },
  10676. "require-dev": {
  10677. "phpunit/phpunit": "^4.8.35 || ^5.0"
  10678. },
  10679. "type": "library",
  10680. "extra": {
  10681. "branch-alias": {
  10682. "dev-master": "2.6-dev"
  10683. }
  10684. },
  10685. "autoload": {
  10686. "psr-4": {
  10687. "Dotenv\\": "src/"
  10688. }
  10689. },
  10690. "notification-url": "https://packagist.org/downloads/",
  10691. "license": [
  10692. "BSD-3-Clause"
  10693. ],
  10694. "authors": [
  10695. {
  10696. "name": "Vance Lucas",
  10697. "email": "vance@vancelucas.com",
  10698. "homepage": "http://www.vancelucas.com"
  10699. }
  10700. ],
  10701. "description": "Loads environment variables from `.env` to `getenv()`, `$_ENV` and `$_SERVER` automagically.",
  10702. "keywords": [
  10703. "dotenv",
  10704. "env",
  10705. "environment"
  10706. ],
  10707. "time": "2019-01-29T11:11:52+00:00"
  10708. },
  10709. {
  10710. "name": "webflo/drupal-core-require-dev",
  10711. "version": "8.6.17",
  10712. "source": {
  10713. "type": "git",
  10714. "url": "https://github.com/webflo/drupal-core-require-dev.git",
  10715. "reference": "8a903ea6bde393937dc129c9721bd97ccb57c661"
  10716. },
  10717. "dist": {
  10718. "type": "zip",
  10719. "url": "https://api.github.com/repos/webflo/drupal-core-require-dev/zipball/8a903ea6bde393937dc129c9721bd97ccb57c661",
  10720. "reference": "8a903ea6bde393937dc129c9721bd97ccb57c661",
  10721. "shasum": ""
  10722. },
  10723. "require": {
  10724. "behat/mink": "1.7.x-dev",
  10725. "behat/mink-goutte-driver": "^1.2",
  10726. "behat/mink-selenium2-driver": "1.3.x-dev",
  10727. "drupal/coder": "^8.2.12",
  10728. "drupal/core": "8.6.17",
  10729. "jcalderonzumba/gastonjs": "^1.0.2",
  10730. "jcalderonzumba/mink-phantomjs-driver": "^0.3.1",
  10731. "mikey179/vfsstream": "^1.2",
  10732. "phpspec/prophecy": "^1.7",
  10733. "phpunit/phpunit": "^4.8.35 || ^6.5",
  10734. "symfony/css-selector": "^3.4.0",
  10735. "symfony/debug": "^3.4.0",
  10736. "symfony/phpunit-bridge": "^3.4.3"
  10737. },
  10738. "type": "metapackage",
  10739. "notification-url": "https://packagist.org/downloads/",
  10740. "license": [
  10741. "GPL-2.0-or-later"
  10742. ],
  10743. "description": "require-dev dependencies from drupal/core",
  10744. "time": "2019-06-17T07:31:39+00:00"
  10745. },
  10746. {
  10747. "name": "webflo/drupal-core-strict",
  10748. "version": "8.0.0-beta15",
  10749. "source": {
  10750. "type": "git",
  10751. "url": "https://github.com/webflo/drupal-core-strict.git",
  10752. "reference": "1eb044b722ebe44bc6af86a03888415d7f31c057"
  10753. },
  10754. "dist": {
  10755. "type": "zip",
  10756. "url": "https://api.github.com/repos/webflo/drupal-core-strict/zipball/1eb044b722ebe44bc6af86a03888415d7f31c057",
  10757. "reference": "1eb044b722ebe44bc6af86a03888415d7f31c057",
  10758. "shasum": ""
  10759. },
  10760. "type": "metapackage",
  10761. "notification-url": "https://packagist.org/downloads/",
  10762. "license": [
  10763. "GPL-2.0-or-later"
  10764. ],
  10765. "description": "Locked core dependencies",
  10766. "time": "2018-01-30T18:48:19+00:00"
  10767. },
  10768. {
  10769. "name": "webflo/drupal-finder",
  10770. "version": "1.2.0",
  10771. "source": {
  10772. "type": "git",
  10773. "url": "https://github.com/webflo/drupal-finder.git",
  10774. "reference": "123e248e14ee8dd3fbe89fb5a733a6cf91f5820e"
  10775. },
  10776. "dist": {
  10777. "type": "zip",
  10778. "url": "https://api.github.com/repos/webflo/drupal-finder/zipball/123e248e14ee8dd3fbe89fb5a733a6cf91f5820e",
  10779. "reference": "123e248e14ee8dd3fbe89fb5a733a6cf91f5820e",
  10780. "shasum": ""
  10781. },
  10782. "require": {
  10783. "ext-json": "*"
  10784. },
  10785. "require-dev": {
  10786. "mikey179/vfsstream": "^1.6",
  10787. "phpunit/phpunit": "^4.8"
  10788. },
  10789. "type": "library",
  10790. "autoload": {
  10791. "classmap": [
  10792. "src/DrupalFinder.php"
  10793. ]
  10794. },
  10795. "notification-url": "https://packagist.org/downloads/",
  10796. "license": [
  10797. "GPL-2.0+"
  10798. ],
  10799. "authors": [
  10800. {
  10801. "name": "Florian Weber",
  10802. "email": "florian@webflo.org"
  10803. }
  10804. ],
  10805. "description": "Helper class to locate a Drupal installation from a given path.",
  10806. "time": "2019-08-02T08:06:18+00:00"
  10807. },
  10808. {
  10809. "name": "webmozart/assert",
  10810. "version": "1.5.0",
  10811. "source": {
  10812. "type": "git",
  10813. "url": "https://github.com/webmozart/assert.git",
  10814. "reference": "88e6d84706d09a236046d686bbea96f07b3a34f4"
  10815. },
  10816. "dist": {
  10817. "type": "zip",
  10818. "url": "https://api.github.com/repos/webmozart/assert/zipball/88e6d84706d09a236046d686bbea96f07b3a34f4",
  10819. "reference": "88e6d84706d09a236046d686bbea96f07b3a34f4",
  10820. "shasum": ""
  10821. },
  10822. "require": {
  10823. "php": "^5.3.3 || ^7.0",
  10824. "symfony/polyfill-ctype": "^1.8"
  10825. },
  10826. "require-dev": {
  10827. "phpunit/phpunit": "^4.8.36 || ^7.5.13"
  10828. },
  10829. "type": "library",
  10830. "extra": {
  10831. "branch-alias": {
  10832. "dev-master": "1.3-dev"
  10833. }
  10834. },
  10835. "autoload": {
  10836. "psr-4": {
  10837. "Webmozart\\Assert\\": "src/"
  10838. }
  10839. },
  10840. "notification-url": "https://packagist.org/downloads/",
  10841. "license": [
  10842. "MIT"
  10843. ],
  10844. "authors": [
  10845. {
  10846. "name": "Bernhard Schussek",
  10847. "email": "bschussek@gmail.com"
  10848. }
  10849. ],
  10850. "description": "Assertions to validate method input/output with nice error messages.",
  10851. "keywords": [
  10852. "assert",
  10853. "check",
  10854. "validate"
  10855. ],
  10856. "time": "2019-08-24T08:43:50+00:00"
  10857. },
  10858. {
  10859. "name": "webmozart/path-util",
  10860. "version": "2.3.0",
  10861. "source": {
  10862. "type": "git",
  10863. "url": "https://github.com/webmozart/path-util.git",
  10864. "reference": "d939f7edc24c9a1bb9c0dee5cb05d8e859490725"
  10865. },
  10866. "dist": {
  10867. "type": "zip",
  10868. "url": "https://api.github.com/repos/webmozart/path-util/zipball/d939f7edc24c9a1bb9c0dee5cb05d8e859490725",
  10869. "reference": "d939f7edc24c9a1bb9c0dee5cb05d8e859490725",
  10870. "shasum": ""
  10871. },
  10872. "require": {
  10873. "php": ">=5.3.3",
  10874. "webmozart/assert": "~1.0"
  10875. },
  10876. "require-dev": {
  10877. "phpunit/phpunit": "^4.6",
  10878. "sebastian/version": "^1.0.1"
  10879. },
  10880. "type": "library",
  10881. "extra": {
  10882. "branch-alias": {
  10883. "dev-master": "2.3-dev"
  10884. }
  10885. },
  10886. "autoload": {
  10887. "psr-4": {
  10888. "Webmozart\\PathUtil\\": "src/"
  10889. }
  10890. },
  10891. "notification-url": "https://packagist.org/downloads/",
  10892. "license": [
  10893. "MIT"
  10894. ],
  10895. "authors": [
  10896. {
  10897. "name": "Bernhard Schussek",
  10898. "email": "bschussek@gmail.com"
  10899. }
  10900. ],
  10901. "description": "A robust cross-platform utility for normalizing, comparing and modifying file paths.",
  10902. "time": "2015-12-17T08:42:14+00:00"
  10903. },
  10904. {
  10905. "name": "zaporylie/composer-drupal-optimizations",
  10906. "version": "1.1.1",
  10907. "source": {
  10908. "type": "git",
  10909. "url": "https://github.com/zaporylie/composer-drupal-optimizations.git",
  10910. "reference": "fb231d92adc862a2c9276bccbc90f684816dc75d"
  10911. },
  10912. "dist": {
  10913. "type": "zip",
  10914. "url": "https://api.github.com/repos/zaporylie/composer-drupal-optimizations/zipball/fb231d92adc862a2c9276bccbc90f684816dc75d",
  10915. "reference": "fb231d92adc862a2c9276bccbc90f684816dc75d",
  10916. "shasum": ""
  10917. },
  10918. "require": {
  10919. "composer-plugin-api": "^1.1"
  10920. },
  10921. "require-dev": {
  10922. "composer/composer": "^1.6",
  10923. "phpunit/phpunit": "^6"
  10924. },
  10925. "type": "composer-plugin",
  10926. "extra": {
  10927. "class": "zaporylie\\ComposerDrupalOptimizations\\Plugin"
  10928. },
  10929. "autoload": {
  10930. "psr-4": {
  10931. "zaporylie\\ComposerDrupalOptimizations\\": "src/"
  10932. }
  10933. },
  10934. "notification-url": "https://packagist.org/downloads/",
  10935. "license": [
  10936. "GPL-2.0-or-later"
  10937. ],
  10938. "authors": [
  10939. {
  10940. "name": "Jakub Piasecki",
  10941. "email": "jakub@piaseccy.pl"
  10942. }
  10943. ],
  10944. "description": "Composer plugin to improve composer performance for Drupal projects",
  10945. "time": "2019-10-02T17:01:11+00:00"
  10946. },
  10947. {
  10948. "name": "zendframework/zend-diactoros",
  10949. "version": "1.8.7",
  10950. "source": {
  10951. "type": "git",
  10952. "url": "https://github.com/zendframework/zend-diactoros.git",
  10953. "reference": "a85e67b86e9b8520d07e6415fcbcb8391b44a75b"
  10954. },
  10955. "dist": {
  10956. "type": "zip",
  10957. "url": "https://api.github.com/repos/zendframework/zend-diactoros/zipball/a85e67b86e9b8520d07e6415fcbcb8391b44a75b",
  10958. "reference": "a85e67b86e9b8520d07e6415fcbcb8391b44a75b",
  10959. "shasum": ""
  10960. },
  10961. "require": {
  10962. "php": "^5.6 || ^7.0",
  10963. "psr/http-message": "^1.0"
  10964. },
  10965. "provide": {
  10966. "psr/http-message-implementation": "1.0"
  10967. },
  10968. "require-dev": {
  10969. "ext-dom": "*",
  10970. "ext-libxml": "*",
  10971. "php-http/psr7-integration-tests": "dev-master",
  10972. "phpunit/phpunit": "^5.7.16 || ^6.0.8 || ^7.2.7",
  10973. "zendframework/zend-coding-standard": "~1.0"
  10974. },
  10975. "type": "library",
  10976. "extra": {
  10977. "branch-alias": {
  10978. "dev-release-1.8": "1.8.x-dev"
  10979. }
  10980. },
  10981. "autoload": {
  10982. "files": [
  10983. "src/functions/create_uploaded_file.php",
  10984. "src/functions/marshal_headers_from_sapi.php",
  10985. "src/functions/marshal_method_from_sapi.php",
  10986. "src/functions/marshal_protocol_version_from_sapi.php",
  10987. "src/functions/marshal_uri_from_sapi.php",
  10988. "src/functions/normalize_server.php",
  10989. "src/functions/normalize_uploaded_files.php",
  10990. "src/functions/parse_cookie_header.php"
  10991. ],
  10992. "psr-4": {
  10993. "Zend\\Diactoros\\": "src/"
  10994. }
  10995. },
  10996. "notification-url": "https://packagist.org/downloads/",
  10997. "license": [
  10998. "BSD-2-Clause"
  10999. ],
  11000. "description": "PSR HTTP Message implementations",
  11001. "homepage": "https://github.com/zendframework/zend-diactoros",
  11002. "keywords": [
  11003. "http",
  11004. "psr",
  11005. "psr-7"
  11006. ],
  11007. "time": "2019-08-06T17:53:53+00:00"
  11008. },
  11009. {
  11010. "name": "zendframework/zend-escaper",
  11011. "version": "2.6.1",
  11012. "source": {
  11013. "type": "git",
  11014. "url": "https://github.com/zendframework/zend-escaper.git",
  11015. "reference": "3801caa21b0ca6aca57fa1c42b08d35c395ebd5f"
  11016. },
  11017. "dist": {
  11018. "type": "zip",
  11019. "url": "https://api.github.com/repos/zendframework/zend-escaper/zipball/3801caa21b0ca6aca57fa1c42b08d35c395ebd5f",
  11020. "reference": "3801caa21b0ca6aca57fa1c42b08d35c395ebd5f",
  11021. "shasum": ""
  11022. },
  11023. "require": {
  11024. "php": "^5.6 || ^7.0"
  11025. },
  11026. "require-dev": {
  11027. "phpunit/phpunit": "^5.7.27 || ^6.5.8 || ^7.1.2",
  11028. "zendframework/zend-coding-standard": "~1.0.0"
  11029. },
  11030. "type": "library",
  11031. "extra": {
  11032. "branch-alias": {
  11033. "dev-master": "2.6.x-dev",
  11034. "dev-develop": "2.7.x-dev"
  11035. }
  11036. },
  11037. "autoload": {
  11038. "psr-4": {
  11039. "Zend\\Escaper\\": "src/"
  11040. }
  11041. },
  11042. "notification-url": "https://packagist.org/downloads/",
  11043. "license": [
  11044. "BSD-3-Clause"
  11045. ],
  11046. "description": "Securely and safely escape HTML, HTML attributes, JavaScript, CSS, and URLs",
  11047. "keywords": [
  11048. "ZendFramework",
  11049. "escaper",
  11050. "zf"
  11051. ],
  11052. "time": "2019-09-05T20:03:20+00:00"
  11053. },
  11054. {
  11055. "name": "zendframework/zend-feed",
  11056. "version": "2.12.0",
  11057. "source": {
  11058. "type": "git",
  11059. "url": "https://github.com/zendframework/zend-feed.git",
  11060. "reference": "d926c5af34b93a0121d5e2641af34ddb1533d733"
  11061. },
  11062. "dist": {
  11063. "type": "zip",
  11064. "url": "https://api.github.com/repos/zendframework/zend-feed/zipball/d926c5af34b93a0121d5e2641af34ddb1533d733",
  11065. "reference": "d926c5af34b93a0121d5e2641af34ddb1533d733",
  11066. "shasum": ""
  11067. },
  11068. "require": {
  11069. "ext-dom": "*",
  11070. "ext-libxml": "*",
  11071. "php": "^5.6 || ^7.0",
  11072. "zendframework/zend-escaper": "^2.5.2",
  11073. "zendframework/zend-stdlib": "^3.2.1"
  11074. },
  11075. "require-dev": {
  11076. "phpunit/phpunit": "^5.7.23 || ^6.4.3",
  11077. "psr/http-message": "^1.0.1",
  11078. "zendframework/zend-cache": "^2.7.2",
  11079. "zendframework/zend-coding-standard": "~1.0.0",
  11080. "zendframework/zend-db": "^2.8.2",
  11081. "zendframework/zend-http": "^2.7",
  11082. "zendframework/zend-servicemanager": "^2.7.8 || ^3.3",
  11083. "zendframework/zend-validator": "^2.10.1"
  11084. },
  11085. "suggest": {
  11086. "psr/http-message": "PSR-7 ^1.0.1, if you wish to use Zend\\Feed\\Reader\\Http\\Psr7ResponseDecorator",
  11087. "zendframework/zend-cache": "Zend\\Cache component, for optionally caching feeds between requests",
  11088. "zendframework/zend-db": "Zend\\Db component, for use with PubSubHubbub",
  11089. "zendframework/zend-http": "Zend\\Http for PubSubHubbub, and optionally for use with Zend\\Feed\\Reader",
  11090. "zendframework/zend-servicemanager": "Zend\\ServiceManager component, for easily extending ExtensionManager implementations",
  11091. "zendframework/zend-validator": "Zend\\Validator component, for validating email addresses used in Atom feeds and entries when using the Writer subcomponent"
  11092. },
  11093. "type": "library",
  11094. "extra": {
  11095. "branch-alias": {
  11096. "dev-master": "2.12.x-dev",
  11097. "dev-develop": "2.13.x-dev"
  11098. }
  11099. },
  11100. "autoload": {
  11101. "psr-4": {
  11102. "Zend\\Feed\\": "src/"
  11103. }
  11104. },
  11105. "notification-url": "https://packagist.org/downloads/",
  11106. "license": [
  11107. "BSD-3-Clause"
  11108. ],
  11109. "description": "provides functionality for consuming RSS and Atom feeds",
  11110. "keywords": [
  11111. "ZendFramework",
  11112. "feed",
  11113. "zf"
  11114. ],
  11115. "time": "2019-03-05T20:08:49+00:00"
  11116. },
  11117. {
  11118. "name": "zendframework/zend-stdlib",
  11119. "version": "3.2.1",
  11120. "source": {
  11121. "type": "git",
  11122. "url": "https://github.com/zendframework/zend-stdlib.git",
  11123. "reference": "66536006722aff9e62d1b331025089b7ec71c065"
  11124. },
  11125. "dist": {
  11126. "type": "zip",
  11127. "url": "https://api.github.com/repos/zendframework/zend-stdlib/zipball/66536006722aff9e62d1b331025089b7ec71c065",
  11128. "reference": "66536006722aff9e62d1b331025089b7ec71c065",
  11129. "shasum": ""
  11130. },
  11131. "require": {
  11132. "php": "^5.6 || ^7.0"
  11133. },
  11134. "require-dev": {
  11135. "phpbench/phpbench": "^0.13",
  11136. "phpunit/phpunit": "^5.7.27 || ^6.5.8 || ^7.1.2",
  11137. "zendframework/zend-coding-standard": "~1.0.0"
  11138. },
  11139. "type": "library",
  11140. "extra": {
  11141. "branch-alias": {
  11142. "dev-master": "3.2.x-dev",
  11143. "dev-develop": "3.3.x-dev"
  11144. }
  11145. },
  11146. "autoload": {
  11147. "psr-4": {
  11148. "Zend\\Stdlib\\": "src/"
  11149. }
  11150. },
  11151. "notification-url": "https://packagist.org/downloads/",
  11152. "license": [
  11153. "BSD-3-Clause"
  11154. ],
  11155. "description": "SPL extensions, array utilities, error handlers, and more",
  11156. "keywords": [
  11157. "ZendFramework",
  11158. "stdlib",
  11159. "zf"
  11160. ],
  11161. "time": "2018-08-28T21:34:05+00:00"
  11162. }
  11163. ],
  11164. "packages-dev": [],
  11165. "aliases": [],
  11166. "minimum-stability": "dev",
  11167. "stability-flags": {
  11168. "drupal/bulkdelete": 20,
  11169. "drupal/domain_menu_access": 20,
  11170. "drupal/filefield_sources": 20,
  11171. "drupal/filter_perms": 20,
  11172. "drupal/maillog": 20,
  11173. "drupal/path_alias_xt": 20,
  11174. "drupal/synonyms": 20,
  11175. "drupal/toolbar_themes": 20,
  11176. "drupal/workflow": 20
  11177. },
  11178. "prefer-stable": true,
  11179. "prefer-lowest": false,
  11180. "platform": {
  11181. "php": ">=5.6"
  11182. },
  11183. "platform-dev": []
  11184. }