composer.lock 424 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298529953005301530253035304530553065307530853095310531153125313531453155316531753185319532053215322532353245325532653275328532953305331533253335334533553365337533853395340534153425343534453455346534753485349535053515352535353545355535653575358535953605361536253635364536553665367536853695370537153725373537453755376537753785379538053815382538353845385538653875388538953905391539253935394539553965397539853995400540154025403540454055406540754085409541054115412541354145415541654175418541954205421542254235424542554265427542854295430543154325433543454355436543754385439544054415442544354445445544654475448544954505451545254535454545554565457545854595460546154625463546454655466546754685469547054715472547354745475547654775478547954805481548254835484548554865487548854895490549154925493549454955496549754985499550055015502550355045505550655075508550955105511551255135514551555165517551855195520552155225523552455255526552755285529553055315532553355345535553655375538553955405541554255435544554555465547554855495550555155525553555455555556555755585559556055615562556355645565556655675568556955705571557255735574557555765577557855795580558155825583558455855586558755885589559055915592559355945595559655975598559956005601560256035604560556065607560856095610561156125613561456155616561756185619562056215622562356245625562656275628562956305631563256335634563556365637563856395640564156425643564456455646564756485649565056515652565356545655565656575658565956605661566256635664566556665667566856695670567156725673567456755676567756785679568056815682568356845685568656875688568956905691569256935694569556965697569856995700570157025703570457055706570757085709571057115712571357145715571657175718571957205721572257235724572557265727572857295730573157325733573457355736573757385739574057415742574357445745574657475748574957505751575257535754575557565757575857595760576157625763576457655766576757685769577057715772577357745775577657775778577957805781578257835784578557865787578857895790579157925793579457955796579757985799580058015802580358045805580658075808580958105811581258135814581558165817581858195820582158225823582458255826582758285829583058315832583358345835583658375838583958405841584258435844584558465847584858495850585158525853585458555856585758585859586058615862586358645865586658675868586958705871587258735874587558765877587858795880588158825883588458855886588758885889589058915892589358945895589658975898589959005901590259035904590559065907590859095910591159125913591459155916591759185919592059215922592359245925592659275928592959305931593259335934593559365937593859395940594159425943594459455946594759485949595059515952595359545955595659575958595959605961596259635964596559665967596859695970597159725973597459755976597759785979598059815982598359845985598659875988598959905991599259935994599559965997599859996000600160026003600460056006600760086009601060116012601360146015601660176018601960206021602260236024602560266027602860296030603160326033603460356036603760386039604060416042604360446045604660476048604960506051605260536054605560566057605860596060606160626063606460656066606760686069607060716072607360746075607660776078607960806081608260836084608560866087608860896090609160926093609460956096609760986099610061016102610361046105610661076108610961106111611261136114611561166117611861196120612161226123612461256126612761286129613061316132613361346135613661376138613961406141614261436144614561466147614861496150615161526153615461556156615761586159616061616162616361646165616661676168616961706171617261736174617561766177617861796180618161826183618461856186618761886189619061916192619361946195619661976198619962006201620262036204620562066207620862096210621162126213621462156216621762186219622062216222622362246225622662276228622962306231623262336234623562366237623862396240624162426243624462456246624762486249625062516252625362546255625662576258625962606261626262636264626562666267626862696270627162726273627462756276627762786279628062816282628362846285628662876288628962906291629262936294629562966297629862996300630163026303630463056306630763086309631063116312631363146315631663176318631963206321632263236324632563266327632863296330633163326333633463356336633763386339634063416342634363446345634663476348634963506351635263536354635563566357635863596360636163626363636463656366636763686369637063716372637363746375637663776378637963806381638263836384638563866387638863896390639163926393639463956396639763986399640064016402640364046405640664076408640964106411641264136414641564166417641864196420642164226423642464256426642764286429643064316432643364346435643664376438643964406441644264436444644564466447644864496450645164526453645464556456645764586459646064616462646364646465646664676468646964706471647264736474647564766477647864796480648164826483648464856486648764886489649064916492649364946495649664976498649965006501650265036504650565066507650865096510651165126513651465156516651765186519652065216522652365246525652665276528652965306531653265336534653565366537653865396540654165426543654465456546654765486549655065516552655365546555655665576558655965606561656265636564656565666567656865696570657165726573657465756576657765786579658065816582658365846585658665876588658965906591659265936594659565966597659865996600660166026603660466056606660766086609661066116612661366146615661666176618661966206621662266236624662566266627662866296630663166326633663466356636663766386639664066416642664366446645664666476648664966506651665266536654665566566657665866596660666166626663666466656666666766686669667066716672667366746675667666776678667966806681668266836684668566866687668866896690669166926693669466956696669766986699670067016702670367046705670667076708670967106711671267136714671567166717671867196720672167226723672467256726672767286729673067316732673367346735673667376738673967406741674267436744674567466747674867496750675167526753675467556756675767586759676067616762676367646765676667676768676967706771677267736774677567766777677867796780678167826783678467856786678767886789679067916792679367946795679667976798679968006801680268036804680568066807680868096810681168126813681468156816681768186819682068216822682368246825682668276828682968306831683268336834683568366837683868396840684168426843684468456846684768486849685068516852685368546855685668576858685968606861686268636864686568666867686868696870687168726873687468756876687768786879688068816882688368846885688668876888688968906891689268936894689568966897689868996900690169026903690469056906690769086909691069116912691369146915691669176918691969206921692269236924692569266927692869296930693169326933693469356936693769386939694069416942694369446945694669476948694969506951695269536954695569566957695869596960696169626963696469656966696769686969697069716972697369746975697669776978697969806981698269836984698569866987698869896990699169926993699469956996699769986999700070017002700370047005700670077008700970107011701270137014701570167017701870197020702170227023702470257026702770287029703070317032703370347035703670377038703970407041704270437044704570467047704870497050705170527053705470557056705770587059706070617062706370647065706670677068706970707071707270737074707570767077707870797080708170827083708470857086708770887089709070917092709370947095709670977098709971007101710271037104710571067107710871097110711171127113711471157116711771187119712071217122712371247125712671277128712971307131713271337134713571367137713871397140714171427143714471457146714771487149715071517152715371547155715671577158715971607161716271637164716571667167716871697170717171727173717471757176717771787179718071817182718371847185718671877188718971907191719271937194719571967197719871997200720172027203720472057206720772087209721072117212721372147215721672177218721972207221722272237224722572267227722872297230723172327233723472357236723772387239724072417242724372447245724672477248724972507251725272537254725572567257725872597260726172627263726472657266726772687269727072717272727372747275727672777278727972807281728272837284728572867287728872897290729172927293729472957296729772987299730073017302730373047305730673077308730973107311731273137314731573167317731873197320732173227323732473257326732773287329733073317332733373347335733673377338733973407341734273437344734573467347734873497350735173527353735473557356735773587359736073617362736373647365736673677368736973707371737273737374737573767377737873797380738173827383738473857386738773887389739073917392739373947395739673977398739974007401740274037404740574067407740874097410741174127413741474157416741774187419742074217422742374247425742674277428742974307431743274337434743574367437743874397440744174427443744474457446744774487449745074517452745374547455745674577458745974607461746274637464746574667467746874697470747174727473747474757476747774787479748074817482748374847485748674877488748974907491749274937494749574967497749874997500750175027503750475057506750775087509751075117512751375147515751675177518751975207521752275237524752575267527752875297530753175327533753475357536753775387539754075417542754375447545754675477548754975507551755275537554755575567557755875597560756175627563756475657566756775687569757075717572757375747575757675777578757975807581758275837584758575867587758875897590759175927593759475957596759775987599760076017602760376047605760676077608760976107611761276137614761576167617761876197620762176227623762476257626762776287629763076317632763376347635763676377638763976407641764276437644764576467647764876497650765176527653765476557656765776587659766076617662766376647665766676677668766976707671767276737674767576767677767876797680768176827683768476857686768776887689769076917692769376947695769676977698769977007701770277037704770577067707770877097710771177127713771477157716771777187719772077217722772377247725772677277728772977307731773277337734773577367737773877397740774177427743774477457746774777487749775077517752775377547755775677577758775977607761776277637764776577667767776877697770777177727773777477757776777777787779778077817782778377847785778677877788778977907791779277937794779577967797779877997800780178027803780478057806780778087809781078117812781378147815781678177818781978207821782278237824782578267827782878297830783178327833783478357836783778387839784078417842784378447845784678477848784978507851785278537854785578567857785878597860786178627863786478657866786778687869787078717872787378747875787678777878787978807881788278837884788578867887788878897890789178927893789478957896789778987899790079017902790379047905790679077908790979107911791279137914791579167917791879197920792179227923792479257926792779287929793079317932793379347935793679377938793979407941794279437944794579467947794879497950795179527953795479557956795779587959796079617962796379647965796679677968796979707971797279737974797579767977797879797980798179827983798479857986798779887989799079917992799379947995799679977998799980008001800280038004800580068007800880098010801180128013801480158016801780188019802080218022802380248025802680278028802980308031803280338034803580368037803880398040804180428043804480458046804780488049805080518052805380548055805680578058805980608061806280638064806580668067806880698070807180728073807480758076807780788079808080818082808380848085808680878088808980908091809280938094809580968097809880998100810181028103810481058106810781088109811081118112811381148115811681178118811981208121812281238124812581268127812881298130813181328133813481358136813781388139814081418142814381448145814681478148814981508151815281538154815581568157815881598160816181628163816481658166816781688169817081718172817381748175817681778178817981808181818281838184818581868187818881898190819181928193819481958196819781988199820082018202820382048205820682078208820982108211821282138214821582168217821882198220822182228223822482258226822782288229823082318232823382348235823682378238823982408241824282438244824582468247824882498250825182528253825482558256825782588259826082618262826382648265826682678268826982708271827282738274827582768277827882798280828182828283828482858286828782888289829082918292829382948295829682978298829983008301830283038304830583068307830883098310831183128313831483158316831783188319832083218322832383248325832683278328832983308331833283338334833583368337833883398340834183428343834483458346834783488349835083518352835383548355835683578358835983608361836283638364836583668367836883698370837183728373837483758376837783788379838083818382838383848385838683878388838983908391839283938394839583968397839883998400840184028403840484058406840784088409841084118412841384148415841684178418841984208421842284238424842584268427842884298430843184328433843484358436843784388439844084418442844384448445844684478448844984508451845284538454845584568457845884598460846184628463846484658466846784688469847084718472847384748475847684778478847984808481848284838484848584868487848884898490849184928493849484958496849784988499850085018502850385048505850685078508850985108511851285138514851585168517851885198520852185228523852485258526852785288529853085318532853385348535853685378538853985408541854285438544854585468547854885498550855185528553855485558556855785588559856085618562856385648565856685678568856985708571857285738574857585768577857885798580858185828583858485858586858785888589859085918592859385948595859685978598859986008601860286038604860586068607860886098610861186128613861486158616861786188619862086218622862386248625862686278628862986308631863286338634863586368637863886398640864186428643864486458646864786488649865086518652865386548655865686578658865986608661866286638664866586668667866886698670867186728673867486758676867786788679868086818682868386848685868686878688868986908691869286938694869586968697869886998700870187028703870487058706870787088709871087118712871387148715871687178718871987208721872287238724872587268727872887298730873187328733873487358736873787388739874087418742874387448745874687478748874987508751875287538754875587568757875887598760876187628763876487658766876787688769877087718772877387748775877687778778877987808781878287838784878587868787878887898790879187928793879487958796879787988799880088018802880388048805880688078808880988108811881288138814881588168817881888198820882188228823882488258826882788288829883088318832883388348835883688378838883988408841884288438844884588468847884888498850885188528853885488558856885788588859886088618862886388648865886688678868886988708871887288738874887588768877887888798880888188828883888488858886888788888889889088918892889388948895889688978898889989008901890289038904890589068907890889098910891189128913891489158916891789188919892089218922892389248925892689278928892989308931893289338934893589368937893889398940894189428943894489458946894789488949895089518952895389548955895689578958895989608961896289638964896589668967896889698970897189728973897489758976897789788979898089818982898389848985898689878988898989908991899289938994899589968997899889999000900190029003900490059006900790089009901090119012901390149015901690179018901990209021902290239024902590269027902890299030903190329033903490359036903790389039904090419042904390449045904690479048904990509051905290539054905590569057905890599060906190629063906490659066906790689069907090719072907390749075907690779078907990809081908290839084908590869087908890899090909190929093909490959096909790989099910091019102910391049105910691079108910991109111911291139114911591169117911891199120912191229123912491259126912791289129913091319132913391349135913691379138913991409141914291439144914591469147914891499150915191529153915491559156915791589159916091619162916391649165916691679168916991709171917291739174917591769177917891799180918191829183918491859186918791889189919091919192919391949195919691979198919992009201920292039204920592069207920892099210921192129213921492159216921792189219922092219222922392249225922692279228922992309231923292339234923592369237923892399240924192429243924492459246924792489249925092519252925392549255925692579258925992609261926292639264926592669267926892699270927192729273927492759276927792789279928092819282928392849285928692879288928992909291929292939294929592969297929892999300930193029303930493059306930793089309931093119312931393149315931693179318931993209321932293239324932593269327932893299330933193329333933493359336933793389339934093419342934393449345934693479348934993509351935293539354935593569357935893599360936193629363936493659366936793689369937093719372937393749375937693779378937993809381938293839384938593869387938893899390939193929393939493959396939793989399940094019402940394049405940694079408940994109411941294139414941594169417941894199420942194229423942494259426942794289429943094319432943394349435943694379438943994409441944294439444944594469447944894499450945194529453945494559456945794589459946094619462946394649465946694679468946994709471947294739474947594769477947894799480948194829483948494859486948794889489949094919492949394949495949694979498949995009501950295039504950595069507950895099510951195129513951495159516951795189519952095219522952395249525952695279528952995309531953295339534953595369537953895399540954195429543954495459546954795489549955095519552955395549555955695579558955995609561956295639564956595669567956895699570957195729573957495759576957795789579958095819582958395849585958695879588958995909591959295939594959595969597959895999600960196029603960496059606960796089609961096119612961396149615961696179618961996209621962296239624962596269627962896299630963196329633963496359636963796389639964096419642964396449645964696479648964996509651965296539654965596569657965896599660966196629663966496659666966796689669967096719672967396749675967696779678967996809681968296839684968596869687968896899690969196929693969496959696969796989699970097019702970397049705970697079708970997109711971297139714971597169717971897199720972197229723972497259726972797289729973097319732973397349735973697379738973997409741974297439744974597469747974897499750975197529753975497559756975797589759976097619762976397649765976697679768976997709771977297739774977597769777977897799780978197829783978497859786978797889789979097919792979397949795979697979798979998009801980298039804980598069807980898099810981198129813981498159816981798189819982098219822982398249825982698279828982998309831983298339834983598369837983898399840984198429843984498459846984798489849985098519852985398549855985698579858985998609861986298639864986598669867986898699870987198729873987498759876987798789879988098819882988398849885988698879888988998909891989298939894989598969897989898999900990199029903990499059906990799089909991099119912991399149915991699179918991999209921992299239924992599269927992899299930993199329933993499359936993799389939994099419942994399449945994699479948994999509951995299539954995599569957995899599960996199629963996499659966996799689969997099719972997399749975997699779978997999809981998299839984998599869987998899899990999199929993999499959996999799989999100001000110002100031000410005100061000710008100091001010011100121001310014100151001610017100181001910020100211002210023100241002510026100271002810029100301003110032100331003410035100361003710038100391004010041100421004310044100451004610047100481004910050100511005210053100541005510056100571005810059100601006110062100631006410065100661006710068100691007010071100721007310074100751007610077100781007910080100811008210083100841008510086100871008810089100901009110092100931009410095100961009710098100991010010101101021010310104101051010610107101081010910110101111011210113101141011510116101171011810119101201012110122101231012410125101261012710128101291013010131101321013310134101351013610137101381013910140101411014210143101441014510146101471014810149101501015110152101531015410155101561015710158101591016010161101621016310164101651016610167101681016910170101711017210173101741017510176101771017810179101801018110182101831018410185101861018710188101891019010191101921019310194101951019610197101981019910200102011020210203102041020510206102071020810209102101021110212102131021410215102161021710218102191022010221102221022310224102251022610227102281022910230102311023210233102341023510236102371023810239102401024110242102431024410245102461024710248102491025010251102521025310254102551025610257102581025910260102611026210263102641026510266102671026810269102701027110272102731027410275102761027710278102791028010281102821028310284102851028610287102881028910290102911029210293102941029510296102971029810299103001030110302103031030410305103061030710308103091031010311103121031310314103151031610317103181031910320103211032210323103241032510326103271032810329103301033110332103331033410335103361033710338103391034010341103421034310344103451034610347103481034910350103511035210353103541035510356103571035810359103601036110362103631036410365103661036710368103691037010371103721037310374103751037610377103781037910380103811038210383103841038510386103871038810389103901039110392103931039410395103961039710398103991040010401104021040310404104051040610407104081040910410104111041210413104141041510416104171041810419104201042110422104231042410425104261042710428104291043010431104321043310434104351043610437104381043910440104411044210443104441044510446104471044810449104501045110452104531045410455104561045710458104591046010461104621046310464104651046610467104681046910470104711047210473104741047510476104771047810479104801048110482104831048410485104861048710488104891049010491104921049310494104951049610497104981049910500105011050210503105041050510506105071050810509105101051110512105131051410515105161051710518105191052010521105221052310524105251052610527105281052910530105311053210533105341053510536105371053810539105401054110542105431054410545105461054710548105491055010551105521055310554105551055610557105581055910560105611056210563105641056510566105671056810569105701057110572105731057410575105761057710578105791058010581105821058310584105851058610587105881058910590105911059210593105941059510596105971059810599106001060110602106031060410605106061060710608106091061010611106121061310614106151061610617106181061910620106211062210623106241062510626106271062810629106301063110632106331063410635106361063710638106391064010641106421064310644106451064610647106481064910650106511065210653106541065510656106571065810659106601066110662106631066410665106661066710668106691067010671106721067310674106751067610677106781067910680106811068210683106841068510686106871068810689106901069110692106931069410695106961069710698106991070010701107021070310704107051070610707107081070910710107111071210713107141071510716107171071810719107201072110722107231072410725107261072710728107291073010731107321073310734107351073610737107381073910740107411074210743107441074510746107471074810749107501075110752107531075410755107561075710758107591076010761107621076310764107651076610767107681076910770107711077210773107741077510776107771077810779107801078110782107831078410785107861078710788107891079010791107921079310794107951079610797107981079910800108011080210803108041080510806108071080810809108101081110812108131081410815108161081710818108191082010821108221082310824108251082610827108281082910830108311083210833108341083510836108371083810839108401084110842108431084410845108461084710848108491085010851108521085310854108551085610857108581085910860108611086210863108641086510866108671086810869108701087110872108731087410875108761087710878108791088010881108821088310884108851088610887108881088910890108911089210893108941089510896108971089810899109001090110902109031090410905109061090710908109091091010911109121091310914109151091610917109181091910920109211092210923109241092510926109271092810929109301093110932109331093410935109361093710938109391094010941109421094310944109451094610947109481094910950109511095210953109541095510956109571095810959109601096110962109631096410965109661096710968109691097010971109721097310974109751097610977109781097910980109811098210983109841098510986109871098810989109901099110992109931099410995109961099710998109991100011001110021100311004110051100611007110081100911010110111101211013110141101511016110171101811019110201102111022110231102411025110261102711028110291103011031110321103311034110351103611037110381103911040110411104211043110441104511046110471104811049110501105111052110531105411055110561105711058110591106011061110621106311064110651106611067110681106911070110711107211073110741107511076110771107811079110801108111082110831108411085110861108711088110891109011091110921109311094110951109611097110981109911100111011110211103111041110511106111071110811109111101111111112111131111411115111161111711118111191112011121111221112311124111251112611127111281112911130111311113211133111341113511136111371113811139111401114111142111431114411145111461114711148111491115011151111521115311154111551115611157111581115911160111611116211163111641116511166111671116811169111701117111172111731117411175111761117711178111791118011181111821118311184111851118611187111881118911190111911119211193111941119511196111971119811199112001120111202112031120411205112061120711208112091121011211112121121311214112151121611217112181121911220112211122211223112241122511226112271122811229112301123111232112331123411235112361123711238112391124011241112421124311244112451124611247112481124911250112511125211253112541125511256112571125811259112601126111262112631126411265112661126711268112691127011271112721127311274112751127611277112781127911280112811128211283112841128511286112871128811289112901129111292112931129411295112961129711298112991130011301113021130311304113051130611307113081130911310113111131211313113141131511316113171131811319113201132111322113231132411325113261132711328113291133011331113321133311334113351133611337113381133911340113411134211343113441134511346113471134811349113501135111352113531135411355113561135711358113591136011361113621136311364113651136611367113681136911370113711137211373113741137511376113771137811379113801138111382113831138411385113861138711388113891139011391113921139311394113951139611397113981139911400114011140211403114041140511406114071140811409114101141111412114131141411415114161141711418114191142011421114221142311424114251142611427114281142911430114311143211433114341143511436114371143811439114401144111442114431144411445114461144711448114491145011451114521145311454114551145611457114581145911460114611146211463114641146511466114671146811469114701147111472114731147411475114761147711478114791148011481114821148311484114851148611487114881148911490114911149211493114941149511496114971149811499115001150111502115031150411505115061150711508115091151011511115121151311514115151151611517115181151911520115211152211523115241152511526115271152811529115301153111532115331153411535115361153711538115391154011541115421154311544115451154611547115481154911550115511155211553115541155511556115571155811559115601156111562115631156411565115661156711568115691157011571115721157311574115751157611577115781157911580115811158211583115841158511586115871158811589115901159111592115931159411595115961159711598115991160011601116021160311604116051160611607116081160911610116111161211613116141161511616116171161811619116201162111622116231162411625116261162711628116291163011631116321163311634116351163611637116381163911640116411164211643116441164511646116471164811649116501165111652116531165411655116561165711658116591166011661116621166311664116651166611667116681166911670116711167211673116741167511676116771167811679116801168111682116831168411685116861168711688116891169011691116921169311694116951169611697116981169911700117011170211703117041170511706117071170811709117101171111712117131171411715117161171711718117191172011721117221172311724117251172611727117281172911730117311173211733117341173511736117371173811739117401174111742117431174411745117461174711748117491175011751117521175311754117551175611757117581175911760117611176211763117641176511766117671176811769117701177111772117731177411775117761177711778117791178011781117821178311784117851178611787117881178911790117911179211793117941179511796117971179811799118001180111802118031180411805118061180711808118091181011811118121181311814118151181611817118181181911820
  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": "7d2b5b2ca9c25c987e10cfd63e7ebaba",
  8. "packages": [
  9. {
  10. "name": "alchemy/zippy",
  11. "version": "0.4.9",
  12. "source": {
  13. "type": "git",
  14. "url": "https://github.com/alchemy-fr/Zippy.git",
  15. "reference": "59fbeefb9a249122867ef25e53addfcce31850d7"
  16. },
  17. "dist": {
  18. "type": "zip",
  19. "url": "https://api.github.com/repos/alchemy-fr/Zippy/zipball/59fbeefb9a249122867ef25e53addfcce31850d7",
  20. "reference": "59fbeefb9a249122867ef25e53addfcce31850d7",
  21. "shasum": ""
  22. },
  23. "require": {
  24. "doctrine/collections": "~1.0",
  25. "php": ">=5.5",
  26. "symfony/filesystem": "^2.0.5 || ^3.0 || ^4.0",
  27. "symfony/polyfill-mbstring": "^1.3",
  28. "symfony/process": "^2.1 || ^3.0 || ^4.0"
  29. },
  30. "require-dev": {
  31. "ext-zip": "*",
  32. "guzzle/guzzle": "~3.0",
  33. "guzzlehttp/guzzle": "^6.0",
  34. "phpunit/phpunit": "^4.0 || ^5.0",
  35. "symfony/finder": "^2.0.5 || ^3.0 || ^4.0"
  36. },
  37. "suggest": {
  38. "ext-zip": "To use the ZipExtensionAdapter",
  39. "guzzle/guzzle": "To use the GuzzleTeleporter with Guzzle 3",
  40. "guzzlehttp/guzzle": "To use the GuzzleTeleporter with Guzzle 6"
  41. },
  42. "type": "library",
  43. "extra": {
  44. "branch-alias": {
  45. "dev-master": "0.4.x-dev"
  46. }
  47. },
  48. "autoload": {
  49. "psr-4": {
  50. "Alchemy\\Zippy\\": "src/"
  51. }
  52. },
  53. "notification-url": "https://packagist.org/downloads/",
  54. "license": [
  55. "MIT"
  56. ],
  57. "authors": [
  58. {
  59. "name": "Alchemy",
  60. "email": "dev.team@alchemy.fr",
  61. "homepage": "http://www.alchemy.fr/"
  62. }
  63. ],
  64. "description": "Zippy, the archive manager companion",
  65. "keywords": [
  66. "bzip",
  67. "compression",
  68. "tar",
  69. "zip"
  70. ],
  71. "time": "2018-02-22T13:58:36+00:00"
  72. },
  73. {
  74. "name": "asm89/stack-cors",
  75. "version": "1.3.0",
  76. "source": {
  77. "type": "git",
  78. "url": "https://github.com/asm89/stack-cors.git",
  79. "reference": "b9c31def6a83f84b4d4a40d35996d375755f0e08"
  80. },
  81. "dist": {
  82. "type": "zip",
  83. "url": "https://api.github.com/repos/asm89/stack-cors/zipball/b9c31def6a83f84b4d4a40d35996d375755f0e08",
  84. "reference": "b9c31def6a83f84b4d4a40d35996d375755f0e08",
  85. "shasum": ""
  86. },
  87. "require": {
  88. "php": ">=5.5.9",
  89. "symfony/http-foundation": "~2.7|~3.0|~4.0|~5.0",
  90. "symfony/http-kernel": "~2.7|~3.0|~4.0|~5.0"
  91. },
  92. "require-dev": {
  93. "phpunit/phpunit": "^5.0 || ^4.8.10",
  94. "squizlabs/php_codesniffer": "^2.3"
  95. },
  96. "type": "library",
  97. "extra": {
  98. "branch-alias": {
  99. "dev-master": "1.2-dev"
  100. }
  101. },
  102. "autoload": {
  103. "psr-4": {
  104. "Asm89\\Stack\\": "src/Asm89/Stack/"
  105. }
  106. },
  107. "notification-url": "https://packagist.org/downloads/",
  108. "license": [
  109. "MIT"
  110. ],
  111. "authors": [
  112. {
  113. "name": "Alexander",
  114. "email": "iam.asm89@gmail.com"
  115. }
  116. ],
  117. "description": "Cross-origin resource sharing library and stack middleware",
  118. "homepage": "https://github.com/asm89/stack-cors",
  119. "keywords": [
  120. "cors",
  121. "stack"
  122. ],
  123. "time": "2019-12-24T22:41:47+00:00"
  124. },
  125. {
  126. "name": "behat/mink",
  127. "version": "1.7.x-dev",
  128. "source": {
  129. "type": "git",
  130. "url": "https://github.com/minkphp/Mink.git",
  131. "reference": "b2e031b747be637236c55f3158e4da280427bfa3"
  132. },
  133. "dist": {
  134. "type": "zip",
  135. "url": "https://api.github.com/repos/minkphp/Mink/zipball/b2e031b747be637236c55f3158e4da280427bfa3",
  136. "reference": "b2e031b747be637236c55f3158e4da280427bfa3",
  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": "2020-03-06T06:18:25+00:00"
  183. },
  184. {
  185. "name": "behat/mink-browserkit-driver",
  186. "version": "v1.3.4",
  187. "source": {
  188. "type": "git",
  189. "url": "https://github.com/minkphp/MinkBrowserKitDriver.git",
  190. "reference": "e3b90840022ebcd544c7b394a3c9597ae242cbee"
  191. },
  192. "dist": {
  193. "type": "zip",
  194. "url": "https://api.github.com/repos/minkphp/MinkBrowserKitDriver/zipball/e3b90840022ebcd544c7b394a3c9597ae242cbee",
  195. "reference": "e3b90840022ebcd544c7b394a3c9597ae242cbee",
  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/debug": "^2.7|^3.0|^4.0",
  207. "symfony/http-kernel": "~2.3|~3.0|~4.0"
  208. },
  209. "type": "mink-driver",
  210. "extra": {
  211. "branch-alias": {
  212. "dev-master": "1.3.x-dev"
  213. }
  214. },
  215. "autoload": {
  216. "psr-4": {
  217. "Behat\\Mink\\Driver\\": "src/"
  218. }
  219. },
  220. "notification-url": "https://packagist.org/downloads/",
  221. "license": [
  222. "MIT"
  223. ],
  224. "authors": [
  225. {
  226. "name": "Konstantin Kudryashov",
  227. "email": "ever.zet@gmail.com",
  228. "homepage": "http://everzet.com"
  229. }
  230. ],
  231. "description": "Symfony2 BrowserKit driver for Mink framework",
  232. "homepage": "http://mink.behat.org/",
  233. "keywords": [
  234. "Mink",
  235. "Symfony2",
  236. "browser",
  237. "testing"
  238. ],
  239. "time": "2020-03-11T09:49:45+00:00"
  240. },
  241. {
  242. "name": "behat/mink-goutte-driver",
  243. "version": "v1.2.1",
  244. "source": {
  245. "type": "git",
  246. "url": "https://github.com/minkphp/MinkGoutteDriver.git",
  247. "reference": "8b9ad6d2d95bc70b840d15323365f52fcdaea6ca"
  248. },
  249. "dist": {
  250. "type": "zip",
  251. "url": "https://api.github.com/repos/minkphp/MinkGoutteDriver/zipball/8b9ad6d2d95bc70b840d15323365f52fcdaea6ca",
  252. "reference": "8b9ad6d2d95bc70b840d15323365f52fcdaea6ca",
  253. "shasum": ""
  254. },
  255. "require": {
  256. "behat/mink": "~1.6@dev",
  257. "behat/mink-browserkit-driver": "~1.2@dev",
  258. "fabpot/goutte": "~1.0.4|~2.0|~3.1",
  259. "php": ">=5.3.1"
  260. },
  261. "require-dev": {
  262. "symfony/phpunit-bridge": "~2.7|~3.0"
  263. },
  264. "type": "mink-driver",
  265. "extra": {
  266. "branch-alias": {
  267. "dev-master": "1.2.x-dev"
  268. }
  269. },
  270. "autoload": {
  271. "psr-4": {
  272. "Behat\\Mink\\Driver\\": "src/"
  273. }
  274. },
  275. "notification-url": "https://packagist.org/downloads/",
  276. "license": [
  277. "MIT"
  278. ],
  279. "authors": [
  280. {
  281. "name": "Konstantin Kudryashov",
  282. "email": "ever.zet@gmail.com",
  283. "homepage": "http://everzet.com"
  284. }
  285. ],
  286. "description": "Goutte driver for Mink framework",
  287. "homepage": "http://mink.behat.org/",
  288. "keywords": [
  289. "browser",
  290. "goutte",
  291. "headless",
  292. "testing"
  293. ],
  294. "time": "2016-03-05T09:04:22+00:00"
  295. },
  296. {
  297. "name": "behat/mink-selenium2-driver",
  298. "version": "dev-master",
  299. "source": {
  300. "type": "git",
  301. "url": "https://github.com/minkphp/MinkSelenium2Driver.git",
  302. "reference": "8684ee4e634db7abda9039ea53545f86fc1e105a"
  303. },
  304. "dist": {
  305. "type": "zip",
  306. "url": "https://api.github.com/repos/minkphp/MinkSelenium2Driver/zipball/8684ee4e634db7abda9039ea53545f86fc1e105a",
  307. "reference": "8684ee4e634db7abda9039ea53545f86fc1e105a",
  308. "shasum": ""
  309. },
  310. "require": {
  311. "behat/mink": "~1.7@dev",
  312. "instaclick/php-webdriver": "~1.1",
  313. "php": ">=5.4"
  314. },
  315. "require-dev": {
  316. "mink/driver-testsuite": "dev-master"
  317. },
  318. "type": "mink-driver",
  319. "extra": {
  320. "branch-alias": {
  321. "dev-master": "1.3.x-dev"
  322. }
  323. },
  324. "autoload": {
  325. "psr-4": {
  326. "Behat\\Mink\\Driver\\": "src/"
  327. }
  328. },
  329. "notification-url": "https://packagist.org/downloads/",
  330. "license": [
  331. "MIT"
  332. ],
  333. "authors": [
  334. {
  335. "name": "Konstantin Kudryashov",
  336. "email": "ever.zet@gmail.com",
  337. "homepage": "http://everzet.com"
  338. },
  339. {
  340. "name": "Pete Otaqui",
  341. "email": "pete@otaqui.com",
  342. "homepage": "https://github.com/pete-otaqui"
  343. }
  344. ],
  345. "description": "Selenium2 (WebDriver) driver for Mink framework",
  346. "homepage": "http://mink.behat.org/",
  347. "keywords": [
  348. "ajax",
  349. "browser",
  350. "javascript",
  351. "selenium",
  352. "testing",
  353. "webdriver"
  354. ],
  355. "time": "2018-10-10T12:39:06+00:00"
  356. },
  357. {
  358. "name": "brumann/polyfill-unserialize",
  359. "version": "v1.0.4",
  360. "source": {
  361. "type": "git",
  362. "url": "https://github.com/dbrumann/polyfill-unserialize.git",
  363. "reference": "8ed1cd343ddc134a7ef649aca0aa0fe2a1b45008"
  364. },
  365. "dist": {
  366. "type": "zip",
  367. "url": "https://api.github.com/repos/dbrumann/polyfill-unserialize/zipball/8ed1cd343ddc134a7ef649aca0aa0fe2a1b45008",
  368. "reference": "8ed1cd343ddc134a7ef649aca0aa0fe2a1b45008",
  369. "shasum": ""
  370. },
  371. "require": {
  372. "php": "^5.3|^7.0"
  373. },
  374. "type": "library",
  375. "autoload": {
  376. "psr-4": {
  377. "Brumann\\Polyfill\\": "src/"
  378. }
  379. },
  380. "notification-url": "https://packagist.org/downloads/",
  381. "license": [
  382. "MIT"
  383. ],
  384. "authors": [
  385. {
  386. "name": "Denis Brumann",
  387. "email": "denis.brumann@sensiolabs.de"
  388. }
  389. ],
  390. "description": "Backports unserialize options introduced in PHP 7.0 to older PHP versions.",
  391. "time": "2019-07-14T23:16:24+00:00"
  392. },
  393. {
  394. "name": "chi-teck/drupal-code-generator",
  395. "version": "1.30.5",
  396. "source": {
  397. "type": "git",
  398. "url": "https://github.com/Chi-teck/drupal-code-generator.git",
  399. "reference": "c59c31ee6d8eefe76a5d367feef902e259c90c7b"
  400. },
  401. "dist": {
  402. "type": "zip",
  403. "url": "https://api.github.com/repos/Chi-teck/drupal-code-generator/zipball/c59c31ee6d8eefe76a5d367feef902e259c90c7b",
  404. "reference": "c59c31ee6d8eefe76a5d367feef902e259c90c7b",
  405. "shasum": ""
  406. },
  407. "require": {
  408. "ext-json": "*",
  409. "php": ">=5.5.9",
  410. "symfony/console": "^3.4 || ^4.0",
  411. "symfony/filesystem": "^2.7 || ^3.4 || ^4.0",
  412. "twig/twig": "^1.38.2 || ^2.10"
  413. },
  414. "bin": [
  415. "bin/dcg"
  416. ],
  417. "type": "library",
  418. "extra": {
  419. "branch-alias": {
  420. "dev-master": "1.x-dev"
  421. }
  422. },
  423. "autoload": {
  424. "files": [
  425. "src/bootstrap.php"
  426. ],
  427. "psr-4": {
  428. "DrupalCodeGenerator\\": "src"
  429. }
  430. },
  431. "notification-url": "https://packagist.org/downloads/",
  432. "license": [
  433. "GPL-2.0-or-later"
  434. ],
  435. "description": "Drupal code generator",
  436. "time": "2019-10-27T14:27:26+00:00"
  437. },
  438. {
  439. "name": "composer/installers",
  440. "version": "v1.7.0",
  441. "source": {
  442. "type": "git",
  443. "url": "https://github.com/composer/installers.git",
  444. "reference": "141b272484481432cda342727a427dc1e206bfa0"
  445. },
  446. "dist": {
  447. "type": "zip",
  448. "url": "https://api.github.com/repos/composer/installers/zipball/141b272484481432cda342727a427dc1e206bfa0",
  449. "reference": "141b272484481432cda342727a427dc1e206bfa0",
  450. "shasum": ""
  451. },
  452. "require": {
  453. "composer-plugin-api": "^1.0"
  454. },
  455. "replace": {
  456. "roundcube/plugin-installer": "*",
  457. "shama/baton": "*"
  458. },
  459. "require-dev": {
  460. "composer/composer": "1.0.*@dev",
  461. "phpunit/phpunit": "^4.8.36"
  462. },
  463. "type": "composer-plugin",
  464. "extra": {
  465. "class": "Composer\\Installers\\Plugin",
  466. "branch-alias": {
  467. "dev-master": "1.0-dev"
  468. }
  469. },
  470. "autoload": {
  471. "psr-4": {
  472. "Composer\\Installers\\": "src/Composer/Installers"
  473. }
  474. },
  475. "notification-url": "https://packagist.org/downloads/",
  476. "license": [
  477. "MIT"
  478. ],
  479. "authors": [
  480. {
  481. "name": "Kyle Robinson Young",
  482. "email": "kyle@dontkry.com",
  483. "homepage": "https://github.com/shama"
  484. }
  485. ],
  486. "description": "A multi-framework Composer library installer",
  487. "homepage": "https://composer.github.io/installers/",
  488. "keywords": [
  489. "Craft",
  490. "Dolibarr",
  491. "Eliasis",
  492. "Hurad",
  493. "ImageCMS",
  494. "Kanboard",
  495. "Lan Management System",
  496. "MODX Evo",
  497. "Mautic",
  498. "Maya",
  499. "OXID",
  500. "Plentymarkets",
  501. "Porto",
  502. "RadPHP",
  503. "SMF",
  504. "Thelia",
  505. "Whmcs",
  506. "WolfCMS",
  507. "agl",
  508. "aimeos",
  509. "annotatecms",
  510. "attogram",
  511. "bitrix",
  512. "cakephp",
  513. "chef",
  514. "cockpit",
  515. "codeigniter",
  516. "concrete5",
  517. "croogo",
  518. "dokuwiki",
  519. "drupal",
  520. "eZ Platform",
  521. "elgg",
  522. "expressionengine",
  523. "fuelphp",
  524. "grav",
  525. "installer",
  526. "itop",
  527. "joomla",
  528. "known",
  529. "kohana",
  530. "laravel",
  531. "lavalite",
  532. "lithium",
  533. "magento",
  534. "majima",
  535. "mako",
  536. "mediawiki",
  537. "modulework",
  538. "modx",
  539. "moodle",
  540. "osclass",
  541. "phpbb",
  542. "piwik",
  543. "ppi",
  544. "puppet",
  545. "pxcms",
  546. "reindex",
  547. "roundcube",
  548. "shopware",
  549. "silverstripe",
  550. "sydes",
  551. "symfony",
  552. "typo3",
  553. "wordpress",
  554. "yawik",
  555. "zend",
  556. "zikula"
  557. ],
  558. "time": "2019-08-12T15:00:31+00:00"
  559. },
  560. {
  561. "name": "composer/semver",
  562. "version": "1.5.1",
  563. "source": {
  564. "type": "git",
  565. "url": "https://github.com/composer/semver.git",
  566. "reference": "c6bea70230ef4dd483e6bbcab6005f682ed3a8de"
  567. },
  568. "dist": {
  569. "type": "zip",
  570. "url": "https://api.github.com/repos/composer/semver/zipball/c6bea70230ef4dd483e6bbcab6005f682ed3a8de",
  571. "reference": "c6bea70230ef4dd483e6bbcab6005f682ed3a8de",
  572. "shasum": ""
  573. },
  574. "require": {
  575. "php": "^5.3.2 || ^7.0"
  576. },
  577. "require-dev": {
  578. "phpunit/phpunit": "^4.5 || ^5.0.5"
  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": "2020-01-13T12:06:48+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. "abandoned": "psr/container",
  1389. "time": "2017-02-14T19:40:03+00:00"
  1390. },
  1391. {
  1392. "name": "cweagans/composer-patches",
  1393. "version": "1.6.7",
  1394. "source": {
  1395. "type": "git",
  1396. "url": "https://github.com/cweagans/composer-patches.git",
  1397. "reference": "2e6f72a2ad8d59cd7e2b729f218bf42adb14f590"
  1398. },
  1399. "dist": {
  1400. "type": "zip",
  1401. "url": "https://api.github.com/repos/cweagans/composer-patches/zipball/2e6f72a2ad8d59cd7e2b729f218bf42adb14f590",
  1402. "reference": "2e6f72a2ad8d59cd7e2b729f218bf42adb14f590",
  1403. "shasum": ""
  1404. },
  1405. "require": {
  1406. "composer-plugin-api": "^1.0",
  1407. "php": ">=5.3.0"
  1408. },
  1409. "require-dev": {
  1410. "composer/composer": "~1.0",
  1411. "phpunit/phpunit": "~4.6"
  1412. },
  1413. "type": "composer-plugin",
  1414. "extra": {
  1415. "class": "cweagans\\Composer\\Patches"
  1416. },
  1417. "autoload": {
  1418. "psr-4": {
  1419. "cweagans\\Composer\\": "src"
  1420. }
  1421. },
  1422. "notification-url": "https://packagist.org/downloads/",
  1423. "license": [
  1424. "BSD-3-Clause"
  1425. ],
  1426. "authors": [
  1427. {
  1428. "name": "Cameron Eagans",
  1429. "email": "me@cweagans.net"
  1430. }
  1431. ],
  1432. "description": "Provides a way to patch Composer packages.",
  1433. "time": "2019-08-29T20:11:49+00:00"
  1434. },
  1435. {
  1436. "name": "dflydev/dot-access-configuration",
  1437. "version": "v1.0.3",
  1438. "source": {
  1439. "type": "git",
  1440. "url": "https://github.com/dflydev/dflydev-dot-access-configuration.git",
  1441. "reference": "2e6eb0c8b8830b26bb23defcfc38d4276508fc49"
  1442. },
  1443. "dist": {
  1444. "type": "zip",
  1445. "url": "https://api.github.com/repos/dflydev/dflydev-dot-access-configuration/zipball/2e6eb0c8b8830b26bb23defcfc38d4276508fc49",
  1446. "reference": "2e6eb0c8b8830b26bb23defcfc38d4276508fc49",
  1447. "shasum": ""
  1448. },
  1449. "require": {
  1450. "dflydev/dot-access-data": "1.*",
  1451. "dflydev/placeholder-resolver": "1.*",
  1452. "php": ">=5.3.2"
  1453. },
  1454. "require-dev": {
  1455. "symfony/yaml": "~2.1"
  1456. },
  1457. "suggest": {
  1458. "symfony/yaml": "Required for using the YAML Configuration Builders"
  1459. },
  1460. "type": "library",
  1461. "extra": {
  1462. "branch-alias": {
  1463. "dev-master": "1.0-dev"
  1464. }
  1465. },
  1466. "autoload": {
  1467. "psr-0": {
  1468. "Dflydev\\DotAccessConfiguration": "src"
  1469. }
  1470. },
  1471. "notification-url": "https://packagist.org/downloads/",
  1472. "license": [
  1473. "MIT"
  1474. ],
  1475. "authors": [
  1476. {
  1477. "name": "Dragonfly Development Inc.",
  1478. "email": "info@dflydev.com",
  1479. "homepage": "http://dflydev.com"
  1480. },
  1481. {
  1482. "name": "Beau Simensen",
  1483. "email": "beau@dflydev.com",
  1484. "homepage": "http://beausimensen.com"
  1485. }
  1486. ],
  1487. "description": "Given a deep data structure representing a configuration, access configuration by dot notation.",
  1488. "homepage": "https://github.com/dflydev/dflydev-dot-access-configuration",
  1489. "keywords": [
  1490. "config",
  1491. "configuration"
  1492. ],
  1493. "time": "2018-09-08T23:00:17+00:00"
  1494. },
  1495. {
  1496. "name": "dflydev/dot-access-data",
  1497. "version": "v1.1.0",
  1498. "source": {
  1499. "type": "git",
  1500. "url": "https://github.com/dflydev/dflydev-dot-access-data.git",
  1501. "reference": "3fbd874921ab2c041e899d044585a2ab9795df8a"
  1502. },
  1503. "dist": {
  1504. "type": "zip",
  1505. "url": "https://api.github.com/repos/dflydev/dflydev-dot-access-data/zipball/3fbd874921ab2c041e899d044585a2ab9795df8a",
  1506. "reference": "3fbd874921ab2c041e899d044585a2ab9795df8a",
  1507. "shasum": ""
  1508. },
  1509. "require": {
  1510. "php": ">=5.3.2"
  1511. },
  1512. "type": "library",
  1513. "extra": {
  1514. "branch-alias": {
  1515. "dev-master": "1.0-dev"
  1516. }
  1517. },
  1518. "autoload": {
  1519. "psr-0": {
  1520. "Dflydev\\DotAccessData": "src"
  1521. }
  1522. },
  1523. "notification-url": "https://packagist.org/downloads/",
  1524. "license": [
  1525. "MIT"
  1526. ],
  1527. "authors": [
  1528. {
  1529. "name": "Dragonfly Development Inc.",
  1530. "email": "info@dflydev.com",
  1531. "homepage": "http://dflydev.com"
  1532. },
  1533. {
  1534. "name": "Beau Simensen",
  1535. "email": "beau@dflydev.com",
  1536. "homepage": "http://beausimensen.com"
  1537. },
  1538. {
  1539. "name": "Carlos Frutos",
  1540. "email": "carlos@kiwing.it",
  1541. "homepage": "https://github.com/cfrutos"
  1542. }
  1543. ],
  1544. "description": "Given a deep data structure, access data by dot notation.",
  1545. "homepage": "https://github.com/dflydev/dflydev-dot-access-data",
  1546. "keywords": [
  1547. "access",
  1548. "data",
  1549. "dot",
  1550. "notation"
  1551. ],
  1552. "time": "2017-01-20T21:14:22+00:00"
  1553. },
  1554. {
  1555. "name": "dflydev/placeholder-resolver",
  1556. "version": "v1.0.2",
  1557. "source": {
  1558. "type": "git",
  1559. "url": "https://github.com/dflydev/dflydev-placeholder-resolver.git",
  1560. "reference": "c498d0cae91b1bb36cc7d60906dab8e62bb7c356"
  1561. },
  1562. "dist": {
  1563. "type": "zip",
  1564. "url": "https://api.github.com/repos/dflydev/dflydev-placeholder-resolver/zipball/c498d0cae91b1bb36cc7d60906dab8e62bb7c356",
  1565. "reference": "c498d0cae91b1bb36cc7d60906dab8e62bb7c356",
  1566. "shasum": ""
  1567. },
  1568. "require": {
  1569. "php": ">=5.3.2"
  1570. },
  1571. "type": "library",
  1572. "extra": {
  1573. "branch-alias": {
  1574. "dev-master": "1.0-dev"
  1575. }
  1576. },
  1577. "autoload": {
  1578. "psr-0": {
  1579. "Dflydev\\PlaceholderResolver": "src"
  1580. }
  1581. },
  1582. "notification-url": "https://packagist.org/downloads/",
  1583. "license": [
  1584. "MIT"
  1585. ],
  1586. "authors": [
  1587. {
  1588. "name": "Dragonfly Development Inc.",
  1589. "email": "info@dflydev.com",
  1590. "homepage": "http://dflydev.com"
  1591. },
  1592. {
  1593. "name": "Beau Simensen",
  1594. "email": "beau@dflydev.com",
  1595. "homepage": "http://beausimensen.com"
  1596. }
  1597. ],
  1598. "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.",
  1599. "homepage": "https://github.com/dflydev/dflydev-placeholder-resolver",
  1600. "keywords": [
  1601. "placeholder",
  1602. "resolver"
  1603. ],
  1604. "time": "2012-10-28T21:08:28+00:00"
  1605. },
  1606. {
  1607. "name": "dnoegel/php-xdg-base-dir",
  1608. "version": "0.1",
  1609. "source": {
  1610. "type": "git",
  1611. "url": "https://github.com/dnoegel/php-xdg-base-dir.git",
  1612. "reference": "265b8593498b997dc2d31e75b89f053b5cc9621a"
  1613. },
  1614. "dist": {
  1615. "type": "zip",
  1616. "url": "https://api.github.com/repos/dnoegel/php-xdg-base-dir/zipball/265b8593498b997dc2d31e75b89f053b5cc9621a",
  1617. "reference": "265b8593498b997dc2d31e75b89f053b5cc9621a",
  1618. "shasum": ""
  1619. },
  1620. "require": {
  1621. "php": ">=5.3.2"
  1622. },
  1623. "require-dev": {
  1624. "phpunit/phpunit": "@stable"
  1625. },
  1626. "type": "project",
  1627. "autoload": {
  1628. "psr-4": {
  1629. "XdgBaseDir\\": "src/"
  1630. }
  1631. },
  1632. "notification-url": "https://packagist.org/downloads/",
  1633. "license": [
  1634. "MIT"
  1635. ],
  1636. "description": "implementation of xdg base directory specification for php",
  1637. "time": "2014-10-24T07:27:01+00:00"
  1638. },
  1639. {
  1640. "name": "doctrine/annotations",
  1641. "version": "v1.4.0",
  1642. "source": {
  1643. "type": "git",
  1644. "url": "https://github.com/doctrine/annotations.git",
  1645. "reference": "54cacc9b81758b14e3ce750f205a393d52339e97"
  1646. },
  1647. "dist": {
  1648. "type": "zip",
  1649. "url": "https://api.github.com/repos/doctrine/annotations/zipball/54cacc9b81758b14e3ce750f205a393d52339e97",
  1650. "reference": "54cacc9b81758b14e3ce750f205a393d52339e97",
  1651. "shasum": ""
  1652. },
  1653. "require": {
  1654. "doctrine/lexer": "1.*",
  1655. "php": "^5.6 || ^7.0"
  1656. },
  1657. "require-dev": {
  1658. "doctrine/cache": "1.*",
  1659. "phpunit/phpunit": "^5.7"
  1660. },
  1661. "type": "library",
  1662. "extra": {
  1663. "branch-alias": {
  1664. "dev-master": "1.4.x-dev"
  1665. }
  1666. },
  1667. "autoload": {
  1668. "psr-4": {
  1669. "Doctrine\\Common\\Annotations\\": "lib/Doctrine/Common/Annotations"
  1670. }
  1671. },
  1672. "notification-url": "https://packagist.org/downloads/",
  1673. "license": [
  1674. "MIT"
  1675. ],
  1676. "authors": [
  1677. {
  1678. "name": "Roman Borschel",
  1679. "email": "roman@code-factory.org"
  1680. },
  1681. {
  1682. "name": "Benjamin Eberlei",
  1683. "email": "kontakt@beberlei.de"
  1684. },
  1685. {
  1686. "name": "Guilherme Blanco",
  1687. "email": "guilhermeblanco@gmail.com"
  1688. },
  1689. {
  1690. "name": "Jonathan Wage",
  1691. "email": "jonwage@gmail.com"
  1692. },
  1693. {
  1694. "name": "Johannes Schmitt",
  1695. "email": "schmittjoh@gmail.com"
  1696. }
  1697. ],
  1698. "description": "Docblock Annotations Parser",
  1699. "homepage": "http://www.doctrine-project.org",
  1700. "keywords": [
  1701. "annotations",
  1702. "docblock",
  1703. "parser"
  1704. ],
  1705. "time": "2017-02-24T16:22:25+00:00"
  1706. },
  1707. {
  1708. "name": "doctrine/cache",
  1709. "version": "v1.6.2",
  1710. "source": {
  1711. "type": "git",
  1712. "url": "https://github.com/doctrine/cache.git",
  1713. "reference": "eb152c5100571c7a45470ff2a35095ab3f3b900b"
  1714. },
  1715. "dist": {
  1716. "type": "zip",
  1717. "url": "https://api.github.com/repos/doctrine/cache/zipball/eb152c5100571c7a45470ff2a35095ab3f3b900b",
  1718. "reference": "eb152c5100571c7a45470ff2a35095ab3f3b900b",
  1719. "shasum": ""
  1720. },
  1721. "require": {
  1722. "php": "~5.5|~7.0"
  1723. },
  1724. "conflict": {
  1725. "doctrine/common": ">2.2,<2.4"
  1726. },
  1727. "require-dev": {
  1728. "phpunit/phpunit": "~4.8|~5.0",
  1729. "predis/predis": "~1.0",
  1730. "satooshi/php-coveralls": "~0.6"
  1731. },
  1732. "type": "library",
  1733. "extra": {
  1734. "branch-alias": {
  1735. "dev-master": "1.6.x-dev"
  1736. }
  1737. },
  1738. "autoload": {
  1739. "psr-4": {
  1740. "Doctrine\\Common\\Cache\\": "lib/Doctrine/Common/Cache"
  1741. }
  1742. },
  1743. "notification-url": "https://packagist.org/downloads/",
  1744. "license": [
  1745. "MIT"
  1746. ],
  1747. "authors": [
  1748. {
  1749. "name": "Roman Borschel",
  1750. "email": "roman@code-factory.org"
  1751. },
  1752. {
  1753. "name": "Benjamin Eberlei",
  1754. "email": "kontakt@beberlei.de"
  1755. },
  1756. {
  1757. "name": "Guilherme Blanco",
  1758. "email": "guilhermeblanco@gmail.com"
  1759. },
  1760. {
  1761. "name": "Jonathan Wage",
  1762. "email": "jonwage@gmail.com"
  1763. },
  1764. {
  1765. "name": "Johannes Schmitt",
  1766. "email": "schmittjoh@gmail.com"
  1767. }
  1768. ],
  1769. "description": "Caching library offering an object-oriented API for many cache backends",
  1770. "homepage": "http://www.doctrine-project.org",
  1771. "keywords": [
  1772. "cache",
  1773. "caching"
  1774. ],
  1775. "time": "2017-07-22T12:49:21+00:00"
  1776. },
  1777. {
  1778. "name": "doctrine/collections",
  1779. "version": "v1.4.0",
  1780. "source": {
  1781. "type": "git",
  1782. "url": "https://github.com/doctrine/collections.git",
  1783. "reference": "1a4fb7e902202c33cce8c55989b945612943c2ba"
  1784. },
  1785. "dist": {
  1786. "type": "zip",
  1787. "url": "https://api.github.com/repos/doctrine/collections/zipball/1a4fb7e902202c33cce8c55989b945612943c2ba",
  1788. "reference": "1a4fb7e902202c33cce8c55989b945612943c2ba",
  1789. "shasum": ""
  1790. },
  1791. "require": {
  1792. "php": "^5.6 || ^7.0"
  1793. },
  1794. "require-dev": {
  1795. "doctrine/coding-standard": "~0.1@dev",
  1796. "phpunit/phpunit": "^5.7"
  1797. },
  1798. "type": "library",
  1799. "extra": {
  1800. "branch-alias": {
  1801. "dev-master": "1.3.x-dev"
  1802. }
  1803. },
  1804. "autoload": {
  1805. "psr-0": {
  1806. "Doctrine\\Common\\Collections\\": "lib/"
  1807. }
  1808. },
  1809. "notification-url": "https://packagist.org/downloads/",
  1810. "license": [
  1811. "MIT"
  1812. ],
  1813. "authors": [
  1814. {
  1815. "name": "Roman Borschel",
  1816. "email": "roman@code-factory.org"
  1817. },
  1818. {
  1819. "name": "Benjamin Eberlei",
  1820. "email": "kontakt@beberlei.de"
  1821. },
  1822. {
  1823. "name": "Guilherme Blanco",
  1824. "email": "guilhermeblanco@gmail.com"
  1825. },
  1826. {
  1827. "name": "Jonathan Wage",
  1828. "email": "jonwage@gmail.com"
  1829. },
  1830. {
  1831. "name": "Johannes Schmitt",
  1832. "email": "schmittjoh@gmail.com"
  1833. }
  1834. ],
  1835. "description": "Collections Abstraction library",
  1836. "homepage": "http://www.doctrine-project.org",
  1837. "keywords": [
  1838. "array",
  1839. "collections",
  1840. "iterator"
  1841. ],
  1842. "time": "2017-01-03T10:49:41+00:00"
  1843. },
  1844. {
  1845. "name": "doctrine/common",
  1846. "version": "v2.7.3",
  1847. "source": {
  1848. "type": "git",
  1849. "url": "https://github.com/doctrine/common.git",
  1850. "reference": "4acb8f89626baafede6ee5475bc5844096eba8a9"
  1851. },
  1852. "dist": {
  1853. "type": "zip",
  1854. "url": "https://api.github.com/repos/doctrine/common/zipball/4acb8f89626baafede6ee5475bc5844096eba8a9",
  1855. "reference": "4acb8f89626baafede6ee5475bc5844096eba8a9",
  1856. "shasum": ""
  1857. },
  1858. "require": {
  1859. "doctrine/annotations": "1.*",
  1860. "doctrine/cache": "1.*",
  1861. "doctrine/collections": "1.*",
  1862. "doctrine/inflector": "1.*",
  1863. "doctrine/lexer": "1.*",
  1864. "php": "~5.6|~7.0"
  1865. },
  1866. "require-dev": {
  1867. "phpunit/phpunit": "^5.4.6"
  1868. },
  1869. "type": "library",
  1870. "extra": {
  1871. "branch-alias": {
  1872. "dev-master": "2.7.x-dev"
  1873. }
  1874. },
  1875. "autoload": {
  1876. "psr-4": {
  1877. "Doctrine\\Common\\": "lib/Doctrine/Common"
  1878. }
  1879. },
  1880. "notification-url": "https://packagist.org/downloads/",
  1881. "license": [
  1882. "MIT"
  1883. ],
  1884. "authors": [
  1885. {
  1886. "name": "Roman Borschel",
  1887. "email": "roman@code-factory.org"
  1888. },
  1889. {
  1890. "name": "Benjamin Eberlei",
  1891. "email": "kontakt@beberlei.de"
  1892. },
  1893. {
  1894. "name": "Guilherme Blanco",
  1895. "email": "guilhermeblanco@gmail.com"
  1896. },
  1897. {
  1898. "name": "Jonathan Wage",
  1899. "email": "jonwage@gmail.com"
  1900. },
  1901. {
  1902. "name": "Johannes Schmitt",
  1903. "email": "schmittjoh@gmail.com"
  1904. }
  1905. ],
  1906. "description": "Common Library for Doctrine projects",
  1907. "homepage": "http://www.doctrine-project.org",
  1908. "keywords": [
  1909. "annotations",
  1910. "collections",
  1911. "eventmanager",
  1912. "persistence",
  1913. "spl"
  1914. ],
  1915. "time": "2017-07-22T08:35:12+00:00"
  1916. },
  1917. {
  1918. "name": "doctrine/inflector",
  1919. "version": "v1.2.0",
  1920. "source": {
  1921. "type": "git",
  1922. "url": "https://github.com/doctrine/inflector.git",
  1923. "reference": "e11d84c6e018beedd929cff5220969a3c6d1d462"
  1924. },
  1925. "dist": {
  1926. "type": "zip",
  1927. "url": "https://api.github.com/repos/doctrine/inflector/zipball/e11d84c6e018beedd929cff5220969a3c6d1d462",
  1928. "reference": "e11d84c6e018beedd929cff5220969a3c6d1d462",
  1929. "shasum": ""
  1930. },
  1931. "require": {
  1932. "php": "^7.0"
  1933. },
  1934. "require-dev": {
  1935. "phpunit/phpunit": "^6.2"
  1936. },
  1937. "type": "library",
  1938. "extra": {
  1939. "branch-alias": {
  1940. "dev-master": "1.2.x-dev"
  1941. }
  1942. },
  1943. "autoload": {
  1944. "psr-4": {
  1945. "Doctrine\\Common\\Inflector\\": "lib/Doctrine/Common/Inflector"
  1946. }
  1947. },
  1948. "notification-url": "https://packagist.org/downloads/",
  1949. "license": [
  1950. "MIT"
  1951. ],
  1952. "authors": [
  1953. {
  1954. "name": "Roman Borschel",
  1955. "email": "roman@code-factory.org"
  1956. },
  1957. {
  1958. "name": "Benjamin Eberlei",
  1959. "email": "kontakt@beberlei.de"
  1960. },
  1961. {
  1962. "name": "Guilherme Blanco",
  1963. "email": "guilhermeblanco@gmail.com"
  1964. },
  1965. {
  1966. "name": "Jonathan Wage",
  1967. "email": "jonwage@gmail.com"
  1968. },
  1969. {
  1970. "name": "Johannes Schmitt",
  1971. "email": "schmittjoh@gmail.com"
  1972. }
  1973. ],
  1974. "description": "Common String Manipulations with regard to casing and singular/plural rules.",
  1975. "homepage": "http://www.doctrine-project.org",
  1976. "keywords": [
  1977. "inflection",
  1978. "pluralize",
  1979. "singularize",
  1980. "string"
  1981. ],
  1982. "time": "2017-07-22T12:18:28+00:00"
  1983. },
  1984. {
  1985. "name": "doctrine/instantiator",
  1986. "version": "1.0.5",
  1987. "source": {
  1988. "type": "git",
  1989. "url": "https://github.com/doctrine/instantiator.git",
  1990. "reference": "8e884e78f9f0eb1329e445619e04456e64d8051d"
  1991. },
  1992. "dist": {
  1993. "type": "zip",
  1994. "url": "https://api.github.com/repos/doctrine/instantiator/zipball/8e884e78f9f0eb1329e445619e04456e64d8051d",
  1995. "reference": "8e884e78f9f0eb1329e445619e04456e64d8051d",
  1996. "shasum": ""
  1997. },
  1998. "require": {
  1999. "php": ">=5.3,<8.0-DEV"
  2000. },
  2001. "require-dev": {
  2002. "athletic/athletic": "~0.1.8",
  2003. "ext-pdo": "*",
  2004. "ext-phar": "*",
  2005. "phpunit/phpunit": "~4.0",
  2006. "squizlabs/php_codesniffer": "~2.0"
  2007. },
  2008. "type": "library",
  2009. "extra": {
  2010. "branch-alias": {
  2011. "dev-master": "1.0.x-dev"
  2012. }
  2013. },
  2014. "autoload": {
  2015. "psr-4": {
  2016. "Doctrine\\Instantiator\\": "src/Doctrine/Instantiator/"
  2017. }
  2018. },
  2019. "notification-url": "https://packagist.org/downloads/",
  2020. "license": [
  2021. "MIT"
  2022. ],
  2023. "authors": [
  2024. {
  2025. "name": "Marco Pivetta",
  2026. "email": "ocramius@gmail.com",
  2027. "homepage": "http://ocramius.github.com/"
  2028. }
  2029. ],
  2030. "description": "A small, lightweight utility to instantiate objects in PHP without invoking their constructors",
  2031. "homepage": "https://github.com/doctrine/instantiator",
  2032. "keywords": [
  2033. "constructor",
  2034. "instantiate"
  2035. ],
  2036. "time": "2015-06-14T21:17:01+00:00"
  2037. },
  2038. {
  2039. "name": "doctrine/lexer",
  2040. "version": "1.0.2",
  2041. "source": {
  2042. "type": "git",
  2043. "url": "https://github.com/doctrine/lexer.git",
  2044. "reference": "1febd6c3ef84253d7c815bed85fc622ad207a9f8"
  2045. },
  2046. "dist": {
  2047. "type": "zip",
  2048. "url": "https://api.github.com/repos/doctrine/lexer/zipball/1febd6c3ef84253d7c815bed85fc622ad207a9f8",
  2049. "reference": "1febd6c3ef84253d7c815bed85fc622ad207a9f8",
  2050. "shasum": ""
  2051. },
  2052. "require": {
  2053. "php": ">=5.3.2"
  2054. },
  2055. "require-dev": {
  2056. "phpunit/phpunit": "^4.5"
  2057. },
  2058. "type": "library",
  2059. "extra": {
  2060. "branch-alias": {
  2061. "dev-master": "1.0.x-dev"
  2062. }
  2063. },
  2064. "autoload": {
  2065. "psr-4": {
  2066. "Doctrine\\Common\\Lexer\\": "lib/Doctrine/Common/Lexer"
  2067. }
  2068. },
  2069. "notification-url": "https://packagist.org/downloads/",
  2070. "license": [
  2071. "MIT"
  2072. ],
  2073. "authors": [
  2074. {
  2075. "name": "Roman Borschel",
  2076. "email": "roman@code-factory.org"
  2077. },
  2078. {
  2079. "name": "Guilherme Blanco",
  2080. "email": "guilhermeblanco@gmail.com"
  2081. },
  2082. {
  2083. "name": "Johannes Schmitt",
  2084. "email": "schmittjoh@gmail.com"
  2085. }
  2086. ],
  2087. "description": "PHP Doctrine Lexer parser library that can be used in Top-Down, Recursive Descent Parsers.",
  2088. "homepage": "https://www.doctrine-project.org/projects/lexer.html",
  2089. "keywords": [
  2090. "annotations",
  2091. "docblock",
  2092. "lexer",
  2093. "parser",
  2094. "php"
  2095. ],
  2096. "time": "2019-06-08T11:03:04+00:00"
  2097. },
  2098. {
  2099. "name": "drupal-composer/drupal-scaffold",
  2100. "version": "2.6.1",
  2101. "source": {
  2102. "type": "git",
  2103. "url": "https://github.com/drupal-composer/drupal-scaffold.git",
  2104. "reference": "13c1ffc7dd4925cb03707759128b85c0cd6276f8"
  2105. },
  2106. "dist": {
  2107. "type": "zip",
  2108. "url": "https://api.github.com/repos/drupal-composer/drupal-scaffold/zipball/13c1ffc7dd4925cb03707759128b85c0cd6276f8",
  2109. "reference": "13c1ffc7dd4925cb03707759128b85c0cd6276f8",
  2110. "shasum": ""
  2111. },
  2112. "require": {
  2113. "composer-plugin-api": "^1.0.0",
  2114. "composer/semver": "^1.4",
  2115. "php": "^5.5.9|>=7.0.8"
  2116. },
  2117. "require-dev": {
  2118. "composer/composer": "dev-master",
  2119. "g1a/composer-test-scenarios": "^2.1.0",
  2120. "phpunit/phpunit": "^6",
  2121. "squizlabs/php_codesniffer": "^2.8"
  2122. },
  2123. "type": "composer-plugin",
  2124. "extra": {
  2125. "class": "DrupalComposer\\DrupalScaffold\\Plugin",
  2126. "branch-alias": {
  2127. "dev-master": "2.0.x-dev"
  2128. }
  2129. },
  2130. "autoload": {
  2131. "psr-4": {
  2132. "DrupalComposer\\DrupalScaffold\\": "src/"
  2133. }
  2134. },
  2135. "notification-url": "https://packagist.org/downloads/",
  2136. "license": [
  2137. "GPL-2.0-or-later"
  2138. ],
  2139. "description": "Composer Plugin for updating the Drupal scaffold files when using drupal/core",
  2140. "time": "2019-03-30T10:41:38+00:00"
  2141. },
  2142. {
  2143. "name": "drupal/addtoany",
  2144. "version": "1.12.0",
  2145. "source": {
  2146. "type": "git",
  2147. "url": "https://git.drupalcode.org/project/addtoany.git",
  2148. "reference": "8.x-1.12"
  2149. },
  2150. "dist": {
  2151. "type": "zip",
  2152. "url": "https://ftp.drupal.org/files/projects/addtoany-8.x-1.12.zip",
  2153. "reference": "8.x-1.12",
  2154. "shasum": "f66b3cb0a95b500e4802e8ff9c29af04554327d8"
  2155. },
  2156. "require": {
  2157. "drupal/core": "*"
  2158. },
  2159. "type": "drupal-module",
  2160. "extra": {
  2161. "branch-alias": {
  2162. "dev-1.x": "1.x-dev"
  2163. },
  2164. "drupal": {
  2165. "version": "8.x-1.12",
  2166. "datestamp": "1554702781",
  2167. "security-coverage": {
  2168. "status": "covered",
  2169. "message": "Covered by Drupal's security advisory policy"
  2170. }
  2171. }
  2172. },
  2173. "notification-url": "https://packages.drupal.org/8/downloads",
  2174. "license": [
  2175. "GPL-2.0-or-later"
  2176. ],
  2177. "authors": [
  2178. {
  2179. "name": "AddToAny",
  2180. "homepage": "https://www.drupal.org/user/2640913"
  2181. },
  2182. {
  2183. "name": "micropat",
  2184. "homepage": "https://www.drupal.org/user/260224"
  2185. }
  2186. ],
  2187. "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.",
  2188. "homepage": "https://www.drupal.org/project/addtoany",
  2189. "support": {
  2190. "source": "https://git.drupalcode.org/project/addtoany"
  2191. }
  2192. },
  2193. {
  2194. "name": "drupal/admin_toolbar",
  2195. "version": "2.0.0",
  2196. "source": {
  2197. "type": "git",
  2198. "url": "https://git.drupalcode.org/project/admin_toolbar.git",
  2199. "reference": "8.x-2.0"
  2200. },
  2201. "dist": {
  2202. "type": "zip",
  2203. "url": "https://ftp.drupal.org/files/projects/admin_toolbar-8.x-2.0.zip",
  2204. "reference": "8.x-2.0",
  2205. "shasum": "568de63dbaa8046a82d327dbd0b892ab79fb87aa"
  2206. },
  2207. "require": {
  2208. "drupal/core": "*"
  2209. },
  2210. "type": "drupal-module",
  2211. "extra": {
  2212. "branch-alias": {
  2213. "dev-2.x": "2.x-dev"
  2214. },
  2215. "drupal": {
  2216. "version": "8.x-2.0",
  2217. "datestamp": "1573751237",
  2218. "security-coverage": {
  2219. "status": "covered",
  2220. "message": "Covered by Drupal's security advisory policy"
  2221. }
  2222. }
  2223. },
  2224. "notification-url": "https://packages.drupal.org/8/downloads",
  2225. "license": [
  2226. "GPL-2.0+"
  2227. ],
  2228. "authors": [
  2229. {
  2230. "name": "Wilfrid Roze (eme)",
  2231. "homepage": "https://www.drupal.org/u/eme",
  2232. "role": "Maintainer"
  2233. },
  2234. {
  2235. "name": "Romain Jarraud (romainj)",
  2236. "homepage": "https://www.drupal.org/u/romainj",
  2237. "role": "Maintainer"
  2238. },
  2239. {
  2240. "name": "Adrian Cid Almaguer (adriancid)",
  2241. "homepage": "https://www.drupal.org/u/adriancid",
  2242. "email": "adriancid@gmail.com",
  2243. "role": "Maintainer"
  2244. },
  2245. {
  2246. "name": "Mohamed Anis Taktak (matio89)",
  2247. "homepage": "https://www.drupal.org/u/matio89",
  2248. "role": "Maintainer"
  2249. },
  2250. {
  2251. "name": "fethi.krout",
  2252. "homepage": "https://www.drupal.org/user/3206765"
  2253. },
  2254. {
  2255. "name": "matio89",
  2256. "homepage": "https://www.drupal.org/user/2320090"
  2257. },
  2258. {
  2259. "name": "romainj",
  2260. "homepage": "https://www.drupal.org/user/370706"
  2261. }
  2262. ],
  2263. "description": "Provides a drop-down menu interface to the core Drupal Toolbar.",
  2264. "homepage": "http://drupal.org/project/admin_toolbar",
  2265. "keywords": [
  2266. "Drupal",
  2267. "Toolbar"
  2268. ],
  2269. "support": {
  2270. "source": "http://cgit.drupalcode.org/admin_toolbar",
  2271. "issues": "https://www.drupal.org/project/issues/admin_toolbar"
  2272. }
  2273. },
  2274. {
  2275. "name": "drupal/adminimal_theme",
  2276. "version": "1.5.0",
  2277. "source": {
  2278. "type": "git",
  2279. "url": "https://git.drupalcode.org/project/adminimal_theme.git",
  2280. "reference": "8.x-1.5"
  2281. },
  2282. "dist": {
  2283. "type": "zip",
  2284. "url": "https://ftp.drupal.org/files/projects/adminimal_theme-8.x-1.5.zip",
  2285. "reference": "8.x-1.5",
  2286. "shasum": "fb4457015d743faafecaa0776d2bebf2829a6738"
  2287. },
  2288. "require": {
  2289. "drupal/core": "~8.0"
  2290. },
  2291. "type": "drupal-theme",
  2292. "extra": {
  2293. "branch-alias": {
  2294. "dev-1.x": "1.x-dev"
  2295. },
  2296. "drupal": {
  2297. "version": "8.x-1.5",
  2298. "datestamp": "1558584484",
  2299. "security-coverage": {
  2300. "status": "covered",
  2301. "message": "Covered by Drupal's security advisory policy"
  2302. }
  2303. }
  2304. },
  2305. "notification-url": "https://packages.drupal.org/8/downloads",
  2306. "license": [
  2307. "GPL-2.0+"
  2308. ],
  2309. "authors": [
  2310. {
  2311. "name": "ANDiTKO",
  2312. "homepage": "https://www.drupal.org/user/1428124"
  2313. },
  2314. {
  2315. "name": "andrey.troeglazov",
  2316. "homepage": "https://www.drupal.org/user/3145389"
  2317. },
  2318. {
  2319. "name": "realityloop",
  2320. "homepage": "https://www.drupal.org/user/139189"
  2321. }
  2322. ],
  2323. "description": "Drupal administration theme with modern minimalist design.",
  2324. "homepage": "https://www.drupal.org/project/adminimal_theme",
  2325. "support": {
  2326. "source": "https://git.drupalcode.org/project/adminimal_theme",
  2327. "issues": "https://www.drupal.org/project/issues/adminimal_theme"
  2328. }
  2329. },
  2330. {
  2331. "name": "drupal/audiofield",
  2332. "version": "1.9.0",
  2333. "source": {
  2334. "type": "git",
  2335. "url": "https://git.drupalcode.org/project/audiofield.git",
  2336. "reference": "8.x-1.9"
  2337. },
  2338. "dist": {
  2339. "type": "zip",
  2340. "url": "https://ftp.drupal.org/files/projects/audiofield-8.x-1.9.zip",
  2341. "reference": "8.x-1.9",
  2342. "shasum": "ddb2ca8dd5125a2bd0104e0001037c6fa2716682"
  2343. },
  2344. "require": {
  2345. "drupal/core": "~8.0"
  2346. },
  2347. "type": "drupal-module",
  2348. "extra": {
  2349. "branch-alias": {
  2350. "dev-1.x": "1.x-dev"
  2351. },
  2352. "drupal": {
  2353. "version": "8.x-1.9",
  2354. "datestamp": "1553712781",
  2355. "security-coverage": {
  2356. "status": "covered",
  2357. "message": "Covered by Drupal's security advisory policy"
  2358. }
  2359. },
  2360. "drush": {
  2361. "services": {
  2362. "drush.services.yml": "^9"
  2363. }
  2364. }
  2365. },
  2366. "notification-url": "https://packages.drupal.org/8/downloads",
  2367. "license": [
  2368. "GPL-2.0+"
  2369. ],
  2370. "authors": [
  2371. {
  2372. "name": "Daniel Moberly",
  2373. "homepage": "https://www.drupal.org/u/danielmoberly",
  2374. "role": "Maintainer"
  2375. },
  2376. {
  2377. "name": "josipsaric",
  2378. "homepage": "https://www.drupal.org/user/3063287"
  2379. },
  2380. {
  2381. "name": "tamerzg",
  2382. "homepage": "https://www.drupal.org/user/464564"
  2383. }
  2384. ],
  2385. "description": "AudioField Module",
  2386. "homepage": "https://www.drupal.org/project/audiofield",
  2387. "support": {
  2388. "source": "https://git.drupalcode.org/project/audiofield",
  2389. "issues": "https://www.drupal.org/project/issues/audiofield"
  2390. }
  2391. },
  2392. {
  2393. "name": "drupal/autologout",
  2394. "version": "1.0.0",
  2395. "source": {
  2396. "type": "git",
  2397. "url": "https://git.drupalcode.org/project/autologout.git",
  2398. "reference": "8.x-1.0"
  2399. },
  2400. "dist": {
  2401. "type": "zip",
  2402. "url": "https://ftp.drupal.org/files/projects/autologout-8.x-1.0.zip",
  2403. "reference": "8.x-1.0",
  2404. "shasum": "0a5f67d4393b0acdf8522b1b1a5c9eb40bb05d93"
  2405. },
  2406. "require": {
  2407. "drupal/core": "~8.0"
  2408. },
  2409. "type": "drupal-module",
  2410. "extra": {
  2411. "branch-alias": {
  2412. "dev-1.x": "1.x-dev"
  2413. },
  2414. "drupal": {
  2415. "version": "8.x-1.0",
  2416. "datestamp": "1494237185",
  2417. "security-coverage": {
  2418. "status": "covered",
  2419. "message": "Covered by Drupal's security advisory policy"
  2420. }
  2421. }
  2422. },
  2423. "notification-url": "https://packages.drupal.org/8/downloads",
  2424. "license": [
  2425. "GPL-2.0+"
  2426. ],
  2427. "authors": [
  2428. {
  2429. "name": "AjK",
  2430. "homepage": "https://www.drupal.org/user/39030"
  2431. },
  2432. {
  2433. "name": "AjitS",
  2434. "homepage": "https://www.drupal.org/user/981944"
  2435. },
  2436. {
  2437. "name": "boshtian",
  2438. "homepage": "https://www.drupal.org/user/1773456"
  2439. },
  2440. {
  2441. "name": "dandrews",
  2442. "homepage": "https://www.drupal.org/user/2014490"
  2443. },
  2444. {
  2445. "name": "darksnow",
  2446. "homepage": "https://www.drupal.org/user/391915"
  2447. },
  2448. {
  2449. "name": "johnennew",
  2450. "homepage": "https://www.drupal.org/user/1150042"
  2451. },
  2452. {
  2453. "name": "jrglasgow",
  2454. "homepage": "https://www.drupal.org/user/36590"
  2455. },
  2456. {
  2457. "name": "kmasood",
  2458. "homepage": "https://www.drupal.org/user/1262860"
  2459. },
  2460. {
  2461. "name": "levelos",
  2462. "homepage": "https://www.drupal.org/user/54135"
  2463. },
  2464. {
  2465. "name": "prabeen.giri",
  2466. "homepage": "https://www.drupal.org/user/913078"
  2467. },
  2468. {
  2469. "name": "str8",
  2470. "homepage": "https://www.drupal.org/user/2865063"
  2471. }
  2472. ],
  2473. "description": "Adds automated timed logout.",
  2474. "homepage": "http://drupal.org/project/autologout",
  2475. "support": {
  2476. "source": "https://git.drupalcode.org/project/autologout"
  2477. }
  2478. },
  2479. {
  2480. "name": "drupal/basic",
  2481. "version": "1.3.0",
  2482. "source": {
  2483. "type": "git",
  2484. "url": "https://git.drupalcode.org/project/basic.git",
  2485. "reference": "8.x-1.3"
  2486. },
  2487. "dist": {
  2488. "type": "zip",
  2489. "url": "https://ftp.drupal.org/files/projects/basic-8.x-1.3.zip",
  2490. "reference": "8.x-1.3",
  2491. "shasum": "d42e75327d54ae38cf988ebe77f995b44fbc45f7"
  2492. },
  2493. "require": {
  2494. "drupal/core": "~8.0"
  2495. },
  2496. "type": "drupal-theme",
  2497. "extra": {
  2498. "branch-alias": {
  2499. "dev-1.x": "1.x-dev"
  2500. },
  2501. "drupal": {
  2502. "version": "8.x-1.3",
  2503. "datestamp": "1508096944",
  2504. "security-coverage": {
  2505. "status": "covered",
  2506. "message": "Covered by Drupal's security advisory policy"
  2507. }
  2508. }
  2509. },
  2510. "notification-url": "https://packages.drupal.org/8/downloads",
  2511. "license": [
  2512. "GPL-2.0+"
  2513. ],
  2514. "authors": [
  2515. {
  2516. "name": "Steve Krueger",
  2517. "homepage": "http://thejibe.com",
  2518. "email": "steve@thejibe.com",
  2519. "role": "Maintainer"
  2520. },
  2521. {
  2522. "name": "Joël Pittet",
  2523. "homepage": "https://www.drupal.org/u/joelpittet",
  2524. "email": "joel@pittet.ca",
  2525. "role": "Maintainer"
  2526. },
  2527. {
  2528. "name": "Leah Wagner",
  2529. "homepage": "http://thejibe.com",
  2530. "email": "leah@thejibe.com",
  2531. "role": "Maintainer"
  2532. },
  2533. {
  2534. "name": "Catherine Winters",
  2535. "homepage": "http://www.catherinewinters.com",
  2536. "email": "catherine@catherinewinters.com",
  2537. "role": "Maintainer"
  2538. },
  2539. {
  2540. "name": "Johannes Schmidt",
  2541. "homepage": "http://2tabs.com",
  2542. "email": "mail@2tabs.com",
  2543. "role": "Maintainer"
  2544. },
  2545. {
  2546. "name": "johannez",
  2547. "homepage": "https://www.drupal.org/user/670988"
  2548. },
  2549. {
  2550. "name": "leahtard",
  2551. "homepage": "https://www.drupal.org/user/683812"
  2552. }
  2553. ],
  2554. "description": "HTML5, SASS, Responsive grid starter theme.",
  2555. "homepage": "http://drupal.org/project/basic",
  2556. "support": {
  2557. "source": "http://cgit.drupalcode.org/basic",
  2558. "issues": "https://www.drupal.org/project/issues/basic",
  2559. "irc": "irc://irc.freenode.org/drupal-contribute"
  2560. }
  2561. },
  2562. {
  2563. "name": "drupal/better_messages",
  2564. "version": "1.0.0-alpha2",
  2565. "source": {
  2566. "type": "git",
  2567. "url": "https://git.drupalcode.org/project/better_messages.git",
  2568. "reference": "8.x-1.0-alpha2"
  2569. },
  2570. "dist": {
  2571. "type": "zip",
  2572. "url": "https://ftp.drupal.org/files/projects/better_messages-8.x-1.0-alpha2.zip",
  2573. "reference": "8.x-1.0-alpha2",
  2574. "shasum": "ca09231502d5e0d8a5c0d16f9efc5430091b8a38"
  2575. },
  2576. "require": {
  2577. "drupal/core": "~8.0"
  2578. },
  2579. "type": "drupal-module",
  2580. "extra": {
  2581. "branch-alias": {
  2582. "dev-1.x": "1.x-dev"
  2583. },
  2584. "drupal": {
  2585. "version": "8.x-1.0-alpha2",
  2586. "datestamp": "1517663880",
  2587. "security-coverage": {
  2588. "status": "not-covered",
  2589. "message": "Alpha releases are not covered by Drupal security advisories."
  2590. }
  2591. }
  2592. },
  2593. "notification-url": "https://packages.drupal.org/8/downloads",
  2594. "license": [
  2595. "GPL-2.0-or-later"
  2596. ],
  2597. "authors": [
  2598. {
  2599. "name": "Mohammed J. Razem",
  2600. "homepage": "https://www.drupal.org/user/255384"
  2601. },
  2602. {
  2603. "name": "bucefal91",
  2604. "homepage": "https://www.drupal.org/user/504128"
  2605. },
  2606. {
  2607. "name": "le72",
  2608. "homepage": "https://www.drupal.org/user/1866896"
  2609. }
  2610. ],
  2611. "description": "Better Messages module for Drupal 8.",
  2612. "homepage": "https://www.drupal.org/project/better_messages",
  2613. "support": {
  2614. "source": "https://git.drupalcode.org/project/better_messages"
  2615. }
  2616. },
  2617. {
  2618. "name": "drupal/bulkdelete",
  2619. "version": "dev-1.x",
  2620. "source": {
  2621. "type": "git",
  2622. "url": "https://git.drupalcode.org/project/bulkdelete.git",
  2623. "reference": "22e6ff410cf345609e83605d086cf7885bf4e865"
  2624. },
  2625. "require": {
  2626. "drupal/core": "~8.0"
  2627. },
  2628. "type": "drupal-module",
  2629. "extra": {
  2630. "branch-alias": {
  2631. "dev-1.x": "1.x-dev"
  2632. },
  2633. "drupal": {
  2634. "version": "8.x-1.x-dev",
  2635. "datestamp": "1495565583",
  2636. "security-coverage": {
  2637. "status": "not-covered",
  2638. "message": "Dev releases are not covered by Drupal security advisories."
  2639. }
  2640. }
  2641. },
  2642. "notification-url": "https://packages.drupal.org/8/downloads",
  2643. "license": [
  2644. "GPL-2.0-or-later"
  2645. ],
  2646. "authors": [
  2647. {
  2648. "name": "Kars-T",
  2649. "homepage": "https://www.drupal.org/user/224499"
  2650. },
  2651. {
  2652. "name": "Rahul Seth",
  2653. "homepage": "https://www.drupal.org/user/2694359"
  2654. },
  2655. {
  2656. "name": "adriancid",
  2657. "homepage": "https://www.drupal.org/user/1962106"
  2658. },
  2659. {
  2660. "name": "robertDouglass",
  2661. "homepage": "https://www.drupal.org/user/5449"
  2662. }
  2663. ],
  2664. "description": "Adds an administrative option to bulk delete nodes by content type using the batch API.",
  2665. "homepage": "https://www.drupal.org/project/bulkdelete",
  2666. "support": {
  2667. "source": "https://git.drupalcode.org/project/bulkdelete"
  2668. },
  2669. "time": "2019-09-27T12:11:08+00:00"
  2670. },
  2671. {
  2672. "name": "drupal/coder",
  2673. "version": "8.3.8",
  2674. "source": {
  2675. "type": "git",
  2676. "url": "https://git.drupalcode.org/project/coder.git",
  2677. "reference": "e53e75b45842a5d2b454b08c318a17f57339e60e"
  2678. },
  2679. "require": {
  2680. "ext-mbstring": "*",
  2681. "php": ">=7.0.8",
  2682. "squizlabs/php_codesniffer": "^3.5.4",
  2683. "symfony/yaml": ">=2.0.5"
  2684. },
  2685. "require-dev": {
  2686. "phpstan/phpstan": "^0.12.5",
  2687. "phpunit/phpunit": "^6.0 || ^7.0"
  2688. },
  2689. "type": "phpcodesniffer-standard",
  2690. "autoload": {
  2691. "psr-4": {
  2692. "Drupal\\": "coder_sniffer/Drupal/",
  2693. "DrupalPractice\\": "coder_sniffer/DrupalPractice/"
  2694. }
  2695. },
  2696. "notification-url": "https://packagist.org/downloads/",
  2697. "license": [
  2698. "GPL-2.0+"
  2699. ],
  2700. "description": "Coder is a library to review Drupal code.",
  2701. "homepage": "https://www.drupal.org/project/coder",
  2702. "keywords": [
  2703. "code review",
  2704. "phpcs",
  2705. "standards"
  2706. ],
  2707. "time": "2020-03-08T19:03:35+00:00"
  2708. },
  2709. {
  2710. "name": "drupal/color_field",
  2711. "version": "2.0.0",
  2712. "source": {
  2713. "type": "git",
  2714. "url": "https://git.drupalcode.org/project/color_field.git",
  2715. "reference": "8.x-2.0"
  2716. },
  2717. "dist": {
  2718. "type": "zip",
  2719. "url": "https://ftp.drupal.org/files/projects/color_field-8.x-2.0.zip",
  2720. "reference": "8.x-2.0",
  2721. "shasum": "27c510d258e409e1d029d69cf7747e96c1087df6"
  2722. },
  2723. "require": {
  2724. "drupal/core": "*"
  2725. },
  2726. "require-dev": {
  2727. "drupal/token": "~1.3"
  2728. },
  2729. "suggest": {
  2730. "bower-asset/jquery-simple-color": "^v1.2.2: Provides JavaScript library necessary for the Color Grid widget",
  2731. "bower-asset/spectrum": "^1.8: Provides JavaScript library necessary for Spectrum widget."
  2732. },
  2733. "type": "drupal-module",
  2734. "extra": {
  2735. "branch-alias": {
  2736. "dev-2.x": "2.x-dev"
  2737. },
  2738. "drupal": {
  2739. "version": "8.x-2.0",
  2740. "datestamp": "1579324387",
  2741. "security-coverage": {
  2742. "status": "covered",
  2743. "message": "Covered by Drupal's security advisory policy"
  2744. }
  2745. }
  2746. },
  2747. "notification-url": "https://packages.drupal.org/8/downloads",
  2748. "license": [
  2749. "GPL-2.0-or-later"
  2750. ],
  2751. "authors": [
  2752. {
  2753. "name": "targoo",
  2754. "homepage": "https://www.drupal.org/user/431910",
  2755. "role": "Maintainer"
  2756. },
  2757. {
  2758. "name": "Nick Wilde",
  2759. "homepage": "https://www.drupal.org/user/nickwilde",
  2760. "role": "Maintainer"
  2761. }
  2762. ],
  2763. "description": "Provides a color field type to store the color value and opacity",
  2764. "homepage": "https://www.drupal.org/project/color_field",
  2765. "support": {
  2766. "source": "http://cgit.drupalcode.org/color_field",
  2767. "issues": "https://www.drupal.org/project/issues/color_field?version=8.x"
  2768. }
  2769. },
  2770. {
  2771. "name": "drupal/config_devel",
  2772. "version": "1.4.0",
  2773. "source": {
  2774. "type": "git",
  2775. "url": "https://git.drupalcode.org/project/config_devel.git",
  2776. "reference": "8.x-1.4"
  2777. },
  2778. "dist": {
  2779. "type": "zip",
  2780. "url": "https://ftp.drupal.org/files/projects/config_devel-8.x-1.4.zip",
  2781. "reference": "8.x-1.4",
  2782. "shasum": "93cbecd4811cbf357cd0a8be19e480f7af32f756"
  2783. },
  2784. "require": {
  2785. "drupal/core": "~8.0"
  2786. },
  2787. "type": "drupal-module",
  2788. "extra": {
  2789. "branch-alias": {
  2790. "dev-1.x": "1.x-dev"
  2791. },
  2792. "drupal": {
  2793. "version": "8.x-1.4",
  2794. "datestamp": "1569934685",
  2795. "security-coverage": {
  2796. "status": "covered",
  2797. "message": "Covered by Drupal's security advisory policy"
  2798. }
  2799. }
  2800. },
  2801. "notification-url": "https://packages.drupal.org/8/downloads",
  2802. "license": [
  2803. "GPL-2.0+"
  2804. ],
  2805. "authors": [
  2806. {
  2807. "name": "alexpott",
  2808. "homepage": "https://www.drupal.org/user/157725"
  2809. },
  2810. {
  2811. "name": "benjy",
  2812. "homepage": "https://www.drupal.org/user/1852732"
  2813. },
  2814. {
  2815. "name": "chx",
  2816. "homepage": "https://www.drupal.org/user/9446"
  2817. },
  2818. {
  2819. "name": "joachim",
  2820. "homepage": "https://www.drupal.org/user/107701"
  2821. },
  2822. {
  2823. "name": "nedjo",
  2824. "homepage": "https://www.drupal.org/user/4481"
  2825. },
  2826. {
  2827. "name": "tim.plunkett",
  2828. "homepage": "https://www.drupal.org/user/241634"
  2829. },
  2830. {
  2831. "name": "vijaycs85",
  2832. "homepage": "https://www.drupal.org/user/93488"
  2833. }
  2834. ],
  2835. "description": "Helps developers work with configuration.",
  2836. "homepage": "https://www.drupal.org/project/config_devel",
  2837. "support": {
  2838. "source": "https://git.drupalcode.org/project/config_devel"
  2839. }
  2840. },
  2841. {
  2842. "name": "drupal/config_filter",
  2843. "version": "1.5.0",
  2844. "source": {
  2845. "type": "git",
  2846. "url": "https://git.drupalcode.org/project/config_filter.git",
  2847. "reference": "8.x-1.5"
  2848. },
  2849. "dist": {
  2850. "type": "zip",
  2851. "url": "https://ftp.drupal.org/files/projects/config_filter-8.x-1.5.zip",
  2852. "reference": "8.x-1.5",
  2853. "shasum": "81210684c378dab856b3c2bce5eeaa58992d2efc"
  2854. },
  2855. "require": {
  2856. "drupal/core": "^8 || ^9"
  2857. },
  2858. "suggest": {
  2859. "drupal/config_split": "Split site configuration for different environments."
  2860. },
  2861. "type": "drupal-module",
  2862. "extra": {
  2863. "branch-alias": {
  2864. "dev-1.x": "1.x-dev"
  2865. },
  2866. "drupal": {
  2867. "version": "8.x-1.5",
  2868. "datestamp": "1572542288",
  2869. "security-coverage": {
  2870. "status": "covered",
  2871. "message": "Covered by Drupal's security advisory policy"
  2872. }
  2873. }
  2874. },
  2875. "notification-url": "https://packages.drupal.org/8/downloads",
  2876. "license": [
  2877. "GPL-2.0+"
  2878. ],
  2879. "authors": [
  2880. {
  2881. "name": "Fabian Bircher",
  2882. "homepage": "https://www.drupal.org/u/bircher",
  2883. "email": "opensource@fabianbircher.com",
  2884. "role": "Maintainer"
  2885. },
  2886. {
  2887. "name": "Nuvole Web",
  2888. "homepage": "http://nuvole.org",
  2889. "email": "info@nuvole.org",
  2890. "role": "Maintainer"
  2891. },
  2892. {
  2893. "name": "pescetti",
  2894. "homepage": "https://www.drupal.org/user/436244"
  2895. }
  2896. ],
  2897. "description": "Config Filter allows other modules to interact with a ConfigStorage through filter plugins.",
  2898. "homepage": "https://www.drupal.org/project/config_filter",
  2899. "keywords": [
  2900. "Drupal",
  2901. "configuration",
  2902. "configuration management"
  2903. ],
  2904. "support": {
  2905. "source": "http://cgit.drupalcode.org/config_filter",
  2906. "issues": "https://www.drupal.org/project/issues/config_filter",
  2907. "irc": "irc://irc.freenode.org/drupal-contribute"
  2908. }
  2909. },
  2910. {
  2911. "name": "drupal/config_ignore",
  2912. "version": "2.1.0",
  2913. "source": {
  2914. "type": "git",
  2915. "url": "https://git.drupalcode.org/project/config_ignore.git",
  2916. "reference": "8.x-2.1"
  2917. },
  2918. "dist": {
  2919. "type": "zip",
  2920. "url": "https://ftp.drupal.org/files/projects/config_ignore-8.x-2.1.zip",
  2921. "reference": "8.x-2.1",
  2922. "shasum": "07e00684930706632b3f2fc2a7433ffdae57cde7"
  2923. },
  2924. "require": {
  2925. "drupal/config_filter": "1.*",
  2926. "drupal/core": "~8.0"
  2927. },
  2928. "type": "drupal-module",
  2929. "extra": {
  2930. "branch-alias": {
  2931. "dev-2.x": "2.x-dev"
  2932. },
  2933. "drupal": {
  2934. "version": "8.x-2.1",
  2935. "datestamp": "1507706044",
  2936. "security-coverage": {
  2937. "status": "covered",
  2938. "message": "Covered by Drupal's security advisory policy"
  2939. }
  2940. }
  2941. },
  2942. "notification-url": "https://packages.drupal.org/8/downloads",
  2943. "license": [
  2944. "GPL-2.0+"
  2945. ],
  2946. "authors": [
  2947. {
  2948. "name": "Tommy Lynge Jørgensen",
  2949. "homepage": "https://www.drupal.org/u/tlyngej",
  2950. "email": "tlyngej@gmail.com",
  2951. "role": "Maintainer"
  2952. },
  2953. {
  2954. "name": "Fabian Bircher",
  2955. "homepage": "https://www.drupal.org/u/bircher",
  2956. "role": "Maintainer"
  2957. }
  2958. ],
  2959. "description": "Ignore certain configuration during import.",
  2960. "homepage": "http://drupal.org/project/config_ignore",
  2961. "support": {
  2962. "source": "http://cgit.drupalcode.org/config_ignore",
  2963. "issues": "http://drupal.org/project/config_ignore",
  2964. "irc": "irc://irc.freenode.org/drupal-contribute"
  2965. }
  2966. },
  2967. {
  2968. "name": "drupal/config_update",
  2969. "version": "1.6.0",
  2970. "source": {
  2971. "type": "git",
  2972. "url": "https://git.drupalcode.org/project/config_update.git",
  2973. "reference": "8.x-1.6"
  2974. },
  2975. "dist": {
  2976. "type": "zip",
  2977. "url": "https://ftp.drupal.org/files/projects/config_update-8.x-1.6.zip",
  2978. "reference": "8.x-1.6",
  2979. "shasum": "04bbd0fc440017fd0129dceae240a8bba409a450"
  2980. },
  2981. "require": {
  2982. "drupal/core": "*"
  2983. },
  2984. "type": "drupal-module",
  2985. "extra": {
  2986. "branch-alias": {
  2987. "dev-1.x": "1.x-dev"
  2988. },
  2989. "drupal": {
  2990. "version": "8.x-1.6",
  2991. "datestamp": "1545090480",
  2992. "security-coverage": {
  2993. "status": "covered",
  2994. "message": "Covered by Drupal's security advisory policy"
  2995. }
  2996. }
  2997. },
  2998. "notification-url": "https://packages.drupal.org/8/downloads",
  2999. "license": [
  3000. "GPL-2.0-or-later"
  3001. ],
  3002. "authors": [
  3003. {
  3004. "name": "jhodgdon",
  3005. "homepage": "https://www.drupal.org/user/155601"
  3006. },
  3007. {
  3008. "name": "nedjo",
  3009. "homepage": "https://www.drupal.org/user/4481"
  3010. }
  3011. ],
  3012. "description": "Provides basic revert and update functionality for other modules",
  3013. "homepage": "https://www.drupal.org/project/config_update",
  3014. "support": {
  3015. "source": "https://git.drupalcode.org/project/config_update"
  3016. }
  3017. },
  3018. {
  3019. "name": "drupal/console",
  3020. "version": "1.9.4",
  3021. "source": {
  3022. "type": "git",
  3023. "url": "https://github.com/hechoendrupal/drupal-console.git",
  3024. "reference": "04522b687b2149dc1f808599e716421a20d50a5b"
  3025. },
  3026. "dist": {
  3027. "type": "zip",
  3028. "url": "https://api.github.com/repos/hechoendrupal/drupal-console/zipball/04522b687b2149dc1f808599e716421a20d50a5b",
  3029. "reference": "04522b687b2149dc1f808599e716421a20d50a5b",
  3030. "shasum": ""
  3031. },
  3032. "require": {
  3033. "alchemy/zippy": "~0.4",
  3034. "composer/installers": "~1.0",
  3035. "doctrine/annotations": "^1.2",
  3036. "doctrine/collections": "^1.3",
  3037. "drupal/console-core": "1.9.4",
  3038. "drupal/console-extend-plugin": "~0",
  3039. "php": "^5.5.9 || ^7.0",
  3040. "psy/psysh": "0.6.* || ~0.8",
  3041. "symfony/css-selector": "~2.8|~3.0",
  3042. "symfony/dom-crawler": "~2.8|~3.0",
  3043. "symfony/http-foundation": "~2.8|~3.0"
  3044. },
  3045. "suggest": {
  3046. "symfony/thanks": "Thank your favorite PHP projects on GitHub using the CLI",
  3047. "vlucas/phpdotenv": "Loads environment variables from .env to getenv(), $_ENV and $_SERVER automagically"
  3048. },
  3049. "bin": [
  3050. "bin/drupal"
  3051. ],
  3052. "type": "library",
  3053. "autoload": {
  3054. "psr-4": {
  3055. "Drupal\\Console\\": "src"
  3056. }
  3057. },
  3058. "notification-url": "https://packagist.org/downloads/",
  3059. "license": [
  3060. "GPL-2.0-or-later"
  3061. ],
  3062. "authors": [
  3063. {
  3064. "name": "David Flores",
  3065. "email": "dmousex@gmail.com",
  3066. "homepage": "http://dmouse.net"
  3067. },
  3068. {
  3069. "name": "Jesus Manuel Olivas",
  3070. "email": "jesus.olivas@gmail.com",
  3071. "homepage": "http://jmolivas.com"
  3072. },
  3073. {
  3074. "name": "Eduardo Garcia",
  3075. "email": "enzo@enzolutions.com",
  3076. "homepage": "http://enzolutions.com/"
  3077. },
  3078. {
  3079. "name": "Omar Aguirre",
  3080. "email": "omersguchigu@gmail.com"
  3081. },
  3082. {
  3083. "name": "Drupal Console Contributors",
  3084. "homepage": "https://github.com/hechoendrupal/drupal-console/graphs/contributors"
  3085. }
  3086. ],
  3087. "description": "The Drupal CLI. A tool to generate boilerplate code, interact with and debug Drupal.",
  3088. "homepage": "http://drupalconsole.com/",
  3089. "keywords": [
  3090. "console",
  3091. "development",
  3092. "drupal",
  3093. "symfony"
  3094. ],
  3095. "time": "2019-11-11T19:35:01+00:00"
  3096. },
  3097. {
  3098. "name": "drupal/console-core",
  3099. "version": "1.9.4",
  3100. "source": {
  3101. "type": "git",
  3102. "url": "https://github.com/hechoendrupal/drupal-console-core.git",
  3103. "reference": "cc6f50c6ac8199140224347c862df75fd2d2f5ed"
  3104. },
  3105. "dist": {
  3106. "type": "zip",
  3107. "url": "https://api.github.com/repos/hechoendrupal/drupal-console-core/zipball/cc6f50c6ac8199140224347c862df75fd2d2f5ed",
  3108. "reference": "cc6f50c6ac8199140224347c862df75fd2d2f5ed",
  3109. "shasum": ""
  3110. },
  3111. "require": {
  3112. "dflydev/dot-access-configuration": "^1.0",
  3113. "drupal/console-en": "1.9.4",
  3114. "guzzlehttp/guzzle": "~6.1",
  3115. "php": "^5.5.9 || ^7.0",
  3116. "stecman/symfony-console-completion": "~0.7",
  3117. "symfony/config": "~2.8|~3.0",
  3118. "symfony/console": "~2.8|~3.0",
  3119. "symfony/debug": "~2.8|~3.0",
  3120. "symfony/dependency-injection": "~2.8|~3.0",
  3121. "symfony/event-dispatcher": "~2.8|~3.0",
  3122. "symfony/filesystem": "~2.8|~3.0",
  3123. "symfony/finder": "~2.8|~3.0",
  3124. "symfony/process": "~2.8|~3.0",
  3125. "symfony/translation": "~2.8|~3.0",
  3126. "symfony/yaml": "~2.8|~3.0",
  3127. "twig/twig": "^1.23.1",
  3128. "webflo/drupal-finder": "^1.0",
  3129. "webmozart/path-util": "^2.3"
  3130. },
  3131. "type": "library",
  3132. "autoload": {
  3133. "files": [
  3134. "src/functions.php"
  3135. ],
  3136. "psr-4": {
  3137. "Drupal\\Console\\Core\\": "src"
  3138. }
  3139. },
  3140. "notification-url": "https://packagist.org/downloads/",
  3141. "license": [
  3142. "GPL-2.0-or-later"
  3143. ],
  3144. "authors": [
  3145. {
  3146. "name": "David Flores",
  3147. "email": "dmousex@gmail.com",
  3148. "homepage": "http://dmouse.net"
  3149. },
  3150. {
  3151. "name": "Jesus Manuel Olivas",
  3152. "email": "jesus.olivas@gmail.com",
  3153. "homepage": "http://jmolivas.com"
  3154. },
  3155. {
  3156. "name": "Eduardo Garcia",
  3157. "email": "enzo@enzolutions.com",
  3158. "homepage": "http://enzolutions.com/"
  3159. },
  3160. {
  3161. "name": "Omar Aguirre",
  3162. "email": "omersguchigu@gmail.com"
  3163. },
  3164. {
  3165. "name": "Drupal Console Contributors",
  3166. "homepage": "https://github.com/hechoendrupal/DrupalConsole/graphs/contributors"
  3167. }
  3168. ],
  3169. "description": "Drupal Console Core",
  3170. "homepage": "http://drupalconsole.com/",
  3171. "keywords": [
  3172. "console",
  3173. "development",
  3174. "drupal",
  3175. "symfony"
  3176. ],
  3177. "time": "2019-11-11T19:26:28+00:00"
  3178. },
  3179. {
  3180. "name": "drupal/console-en",
  3181. "version": "1.9.4",
  3182. "source": {
  3183. "type": "git",
  3184. "url": "https://github.com/hechoendrupal/drupal-console-en.git",
  3185. "reference": "30813a832fdb1244e84cbcc012cd103d5e9d673d"
  3186. },
  3187. "dist": {
  3188. "type": "zip",
  3189. "url": "https://api.github.com/repos/hechoendrupal/drupal-console-en/zipball/30813a832fdb1244e84cbcc012cd103d5e9d673d",
  3190. "reference": "30813a832fdb1244e84cbcc012cd103d5e9d673d",
  3191. "shasum": ""
  3192. },
  3193. "type": "library",
  3194. "notification-url": "https://packagist.org/downloads/",
  3195. "license": [
  3196. "GPL-2.0-or-later"
  3197. ],
  3198. "authors": [
  3199. {
  3200. "name": "David Flores",
  3201. "email": "dmousex@gmail.com",
  3202. "homepage": "http://dmouse.net"
  3203. },
  3204. {
  3205. "name": "Jesus Manuel Olivas",
  3206. "email": "jesus.olivas@gmail.com",
  3207. "homepage": "http://jmolivas.com"
  3208. },
  3209. {
  3210. "name": "Eduardo Garcia",
  3211. "email": "enzo@enzolutions.com",
  3212. "homepage": "http://enzolutions.com/"
  3213. },
  3214. {
  3215. "name": "Omar Aguirre",
  3216. "email": "omersguchigu@gmail.com"
  3217. },
  3218. {
  3219. "name": "Drupal Console Contributors",
  3220. "homepage": "https://github.com/hechoendrupal/DrupalConsole/graphs/contributors"
  3221. }
  3222. ],
  3223. "description": "Drupal Console English Language",
  3224. "homepage": "http://drupalconsole.com/",
  3225. "keywords": [
  3226. "console",
  3227. "development",
  3228. "drupal",
  3229. "symfony"
  3230. ],
  3231. "time": "2019-10-07T23:45:30+00:00"
  3232. },
  3233. {
  3234. "name": "drupal/console-extend-plugin",
  3235. "version": "0.9.3",
  3236. "source": {
  3237. "type": "git",
  3238. "url": "https://github.com/hechoendrupal/drupal-console-extend-plugin.git",
  3239. "reference": "ad8e52df34b2e78bdacfffecc9fe8edf41843342"
  3240. },
  3241. "dist": {
  3242. "type": "zip",
  3243. "url": "https://api.github.com/repos/hechoendrupal/drupal-console-extend-plugin/zipball/ad8e52df34b2e78bdacfffecc9fe8edf41843342",
  3244. "reference": "ad8e52df34b2e78bdacfffecc9fe8edf41843342",
  3245. "shasum": ""
  3246. },
  3247. "require": {
  3248. "composer-plugin-api": "^1.0",
  3249. "composer/installers": "^1.2",
  3250. "symfony/finder": "~2.7|~3.0",
  3251. "symfony/yaml": "~2.7|~3.0"
  3252. },
  3253. "type": "composer-plugin",
  3254. "extra": {
  3255. "class": "Drupal\\Console\\Composer\\Plugin\\Extender"
  3256. },
  3257. "autoload": {
  3258. "psr-4": {
  3259. "Drupal\\Console\\Composer\\Plugin\\": "src"
  3260. }
  3261. },
  3262. "notification-url": "https://packagist.org/downloads/",
  3263. "license": [
  3264. "GPL-2.0+"
  3265. ],
  3266. "authors": [
  3267. {
  3268. "name": "Jesus Manuel Olivas",
  3269. "email": "jesus.olivas@gmail.com"
  3270. }
  3271. ],
  3272. "description": "Drupal Console Extend Plugin",
  3273. "time": "2019-11-07T20:15:27+00:00"
  3274. },
  3275. {
  3276. "name": "drupal/context",
  3277. "version": "4.0.0-beta2",
  3278. "source": {
  3279. "type": "git",
  3280. "url": "https://git.drupalcode.org/project/context.git",
  3281. "reference": "8.x-4.0-beta2"
  3282. },
  3283. "dist": {
  3284. "type": "zip",
  3285. "url": "https://ftp.drupal.org/files/projects/context-8.x-4.0-beta2.zip",
  3286. "reference": "8.x-4.0-beta2",
  3287. "shasum": "e41bc912e1ec73bc4d08a3cf730dc2405a9213d3"
  3288. },
  3289. "require": {
  3290. "drupal/core": "~8.0"
  3291. },
  3292. "type": "drupal-module",
  3293. "extra": {
  3294. "branch-alias": {
  3295. "dev-4.x": "4.x-dev"
  3296. },
  3297. "drupal": {
  3298. "version": "8.x-4.0-beta2",
  3299. "datestamp": "1505378944",
  3300. "security-coverage": {
  3301. "status": "not-covered",
  3302. "message": "Beta releases are not covered by Drupal security advisories."
  3303. }
  3304. }
  3305. },
  3306. "notification-url": "https://packages.drupal.org/8/downloads",
  3307. "license": [
  3308. "MIT"
  3309. ],
  3310. "authors": [
  3311. {
  3312. "name": "Christoffer Palm",
  3313. "homepage": "http://www.oddhill.se/",
  3314. "email": "christoffer.palm@oddhill.se",
  3315. "role": "Developer"
  3316. },
  3317. {
  3318. "name": "Steven Jones",
  3319. "homepage": "https://www.drupal.org/user/99644"
  3320. },
  3321. {
  3322. "name": "alex_b",
  3323. "homepage": "https://www.drupal.org/user/53995"
  3324. },
  3325. {
  3326. "name": "boshtian",
  3327. "homepage": "https://www.drupal.org/user/1773456"
  3328. },
  3329. {
  3330. "name": "colan",
  3331. "homepage": "https://www.drupal.org/user/58704"
  3332. },
  3333. {
  3334. "name": "emanaton",
  3335. "homepage": "https://www.drupal.org/user/120853"
  3336. },
  3337. {
  3338. "name": "febbraro",
  3339. "homepage": "https://www.drupal.org/user/43670"
  3340. },
  3341. {
  3342. "name": "fizk",
  3343. "homepage": "https://www.drupal.org/user/473174"
  3344. },
  3345. {
  3346. "name": "hass",
  3347. "homepage": "https://www.drupal.org/user/85918"
  3348. },
  3349. {
  3350. "name": "hefox",
  3351. "homepage": "https://www.drupal.org/user/426416"
  3352. },
  3353. {
  3354. "name": "hyrcan",
  3355. "homepage": "https://www.drupal.org/user/26618"
  3356. },
  3357. {
  3358. "name": "jmiccolis",
  3359. "homepage": "https://www.drupal.org/user/31731"
  3360. },
  3361. {
  3362. "name": "nedjo",
  3363. "homepage": "https://www.drupal.org/user/4481"
  3364. },
  3365. {
  3366. "name": "tekante",
  3367. "homepage": "https://www.drupal.org/user/640024"
  3368. },
  3369. {
  3370. "name": "yhahn",
  3371. "homepage": "https://www.drupal.org/user/264833"
  3372. }
  3373. ],
  3374. "description": "Manage contextual conditions and reactions for different portions of your site.",
  3375. "homepage": "https://github.com/oddhill/context",
  3376. "keywords": [
  3377. "Drupal",
  3378. "block",
  3379. "conditions",
  3380. "context",
  3381. "visibility"
  3382. ],
  3383. "support": {
  3384. "source": "https://github.com/oddhill/context",
  3385. "issues": "https://github.com/oddhill/context/issues",
  3386. "docs": "https://github.com/oddhill/context"
  3387. }
  3388. },
  3389. {
  3390. "name": "drupal/core",
  3391. "version": "8.7.12",
  3392. "source": {
  3393. "type": "git",
  3394. "url": "https://github.com/drupal/core.git",
  3395. "reference": "412ac47f5a17a718617a844504db15208ff61245"
  3396. },
  3397. "dist": {
  3398. "type": "zip",
  3399. "url": "https://api.github.com/repos/drupal/core/zipball/412ac47f5a17a718617a844504db15208ff61245",
  3400. "reference": "412ac47f5a17a718617a844504db15208ff61245",
  3401. "shasum": ""
  3402. },
  3403. "require": {
  3404. "asm89/stack-cors": "^1.1",
  3405. "composer/semver": "^1.0",
  3406. "doctrine/annotations": "^1.2",
  3407. "doctrine/common": "^2.5",
  3408. "easyrdf/easyrdf": "^0.9",
  3409. "egulias/email-validator": "^2.0",
  3410. "ext-date": "*",
  3411. "ext-dom": "*",
  3412. "ext-filter": "*",
  3413. "ext-gd": "*",
  3414. "ext-hash": "*",
  3415. "ext-json": "*",
  3416. "ext-pcre": "*",
  3417. "ext-pdo": "*",
  3418. "ext-session": "*",
  3419. "ext-simplexml": "*",
  3420. "ext-spl": "*",
  3421. "ext-tokenizer": "*",
  3422. "ext-xml": "*",
  3423. "guzzlehttp/guzzle": "^6.2.1",
  3424. "masterminds/html5": "^2.1",
  3425. "paragonie/random_compat": "^1.0|^2.0|^9.99.99",
  3426. "pear/archive_tar": "^1.4.9",
  3427. "php": "^5.5.9|>=7.0.8",
  3428. "stack/builder": "^1.0",
  3429. "symfony-cmf/routing": "^1.4",
  3430. "symfony/class-loader": "~3.4.0",
  3431. "symfony/console": "~3.4.0",
  3432. "symfony/dependency-injection": "~3.4.26",
  3433. "symfony/event-dispatcher": "~3.4.0",
  3434. "symfony/http-foundation": "~3.4.27",
  3435. "symfony/http-kernel": "~3.4.14",
  3436. "symfony/polyfill-iconv": "^1.0",
  3437. "symfony/process": "~3.4.0",
  3438. "symfony/psr-http-message-bridge": "^1.1.2",
  3439. "symfony/routing": "~3.4.0",
  3440. "symfony/serializer": "~3.4.0",
  3441. "symfony/translation": "~3.4.0",
  3442. "symfony/validator": "~3.4.0",
  3443. "symfony/yaml": "~3.4.5",
  3444. "twig/twig": "^1.38.2",
  3445. "typo3/phar-stream-wrapper": "^2.1.1",
  3446. "zendframework/zend-diactoros": "^1.1",
  3447. "zendframework/zend-feed": "^2.4"
  3448. },
  3449. "conflict": {
  3450. "drush/drush": "<8.1.10",
  3451. "symfony/dom-crawler": ">=4"
  3452. },
  3453. "replace": {
  3454. "drupal/action": "self.version",
  3455. "drupal/aggregator": "self.version",
  3456. "drupal/automated_cron": "self.version",
  3457. "drupal/ban": "self.version",
  3458. "drupal/bartik": "self.version",
  3459. "drupal/basic_auth": "self.version",
  3460. "drupal/big_pipe": "self.version",
  3461. "drupal/block": "self.version",
  3462. "drupal/block_content": "self.version",
  3463. "drupal/block_place": "self.version",
  3464. "drupal/book": "self.version",
  3465. "drupal/breakpoint": "self.version",
  3466. "drupal/ckeditor": "self.version",
  3467. "drupal/classy": "self.version",
  3468. "drupal/color": "self.version",
  3469. "drupal/comment": "self.version",
  3470. "drupal/config": "self.version",
  3471. "drupal/config_translation": "self.version",
  3472. "drupal/contact": "self.version",
  3473. "drupal/content_moderation": "self.version",
  3474. "drupal/content_translation": "self.version",
  3475. "drupal/contextual": "self.version",
  3476. "drupal/core-annotation": "self.version",
  3477. "drupal/core-assertion": "self.version",
  3478. "drupal/core-bridge": "self.version",
  3479. "drupal/core-class-finder": "self.version",
  3480. "drupal/core-datetime": "self.version",
  3481. "drupal/core-dependency-injection": "self.version",
  3482. "drupal/core-diff": "self.version",
  3483. "drupal/core-discovery": "self.version",
  3484. "drupal/core-event-dispatcher": "self.version",
  3485. "drupal/core-file-cache": "self.version",
  3486. "drupal/core-filesystem": "self.version",
  3487. "drupal/core-gettext": "self.version",
  3488. "drupal/core-graph": "self.version",
  3489. "drupal/core-http-foundation": "self.version",
  3490. "drupal/core-php-storage": "self.version",
  3491. "drupal/core-plugin": "self.version",
  3492. "drupal/core-proxy-builder": "self.version",
  3493. "drupal/core-render": "self.version",
  3494. "drupal/core-serialization": "self.version",
  3495. "drupal/core-transliteration": "self.version",
  3496. "drupal/core-utility": "self.version",
  3497. "drupal/core-uuid": "self.version",
  3498. "drupal/core-version": "self.version",
  3499. "drupal/datetime": "self.version",
  3500. "drupal/datetime_range": "self.version",
  3501. "drupal/dblog": "self.version",
  3502. "drupal/dynamic_page_cache": "self.version",
  3503. "drupal/editor": "self.version",
  3504. "drupal/entity_reference": "self.version",
  3505. "drupal/field": "self.version",
  3506. "drupal/field_layout": "self.version",
  3507. "drupal/field_ui": "self.version",
  3508. "drupal/file": "self.version",
  3509. "drupal/filter": "self.version",
  3510. "drupal/forum": "self.version",
  3511. "drupal/hal": "self.version",
  3512. "drupal/help": "self.version",
  3513. "drupal/history": "self.version",
  3514. "drupal/image": "self.version",
  3515. "drupal/inline_form_errors": "self.version",
  3516. "drupal/jsonapi": "self.version",
  3517. "drupal/language": "self.version",
  3518. "drupal/layout_builder": "self.version",
  3519. "drupal/layout_discovery": "self.version",
  3520. "drupal/link": "self.version",
  3521. "drupal/locale": "self.version",
  3522. "drupal/media": "self.version",
  3523. "drupal/media_library": "self.version",
  3524. "drupal/menu_link_content": "self.version",
  3525. "drupal/menu_ui": "self.version",
  3526. "drupal/migrate": "self.version",
  3527. "drupal/migrate_drupal": "self.version",
  3528. "drupal/migrate_drupal_multilingual": "self.version",
  3529. "drupal/migrate_drupal_ui": "self.version",
  3530. "drupal/minimal": "self.version",
  3531. "drupal/node": "self.version",
  3532. "drupal/options": "self.version",
  3533. "drupal/page_cache": "self.version",
  3534. "drupal/path": "self.version",
  3535. "drupal/quickedit": "self.version",
  3536. "drupal/rdf": "self.version",
  3537. "drupal/responsive_image": "self.version",
  3538. "drupal/rest": "self.version",
  3539. "drupal/search": "self.version",
  3540. "drupal/serialization": "self.version",
  3541. "drupal/settings_tray": "self.version",
  3542. "drupal/seven": "self.version",
  3543. "drupal/shortcut": "self.version",
  3544. "drupal/simpletest": "self.version",
  3545. "drupal/standard": "self.version",
  3546. "drupal/stark": "self.version",
  3547. "drupal/statistics": "self.version",
  3548. "drupal/syslog": "self.version",
  3549. "drupal/system": "self.version",
  3550. "drupal/taxonomy": "self.version",
  3551. "drupal/telephone": "self.version",
  3552. "drupal/text": "self.version",
  3553. "drupal/toolbar": "self.version",
  3554. "drupal/tour": "self.version",
  3555. "drupal/tracker": "self.version",
  3556. "drupal/update": "self.version",
  3557. "drupal/user": "self.version",
  3558. "drupal/views": "self.version",
  3559. "drupal/views_ui": "self.version",
  3560. "drupal/workflows": "self.version",
  3561. "drupal/workspaces": "self.version"
  3562. },
  3563. "require-dev": {
  3564. "behat/mink": "1.7.x-dev",
  3565. "behat/mink-goutte-driver": "^1.2",
  3566. "behat/mink-selenium2-driver": "1.3.x-dev",
  3567. "drupal/coder": "^8.3.1",
  3568. "jcalderonzumba/gastonjs": "^1.0.2",
  3569. "jcalderonzumba/mink-phantomjs-driver": "^0.3.1",
  3570. "justinrainbow/json-schema": "^5.2",
  3571. "mikey179/vfsstream": "^1.2",
  3572. "phpspec/prophecy": "^1.7",
  3573. "phpunit/phpunit": "^4.8.35 || ^6.5",
  3574. "symfony/css-selector": "^3.4.0",
  3575. "symfony/debug": "^3.4.0",
  3576. "symfony/phpunit-bridge": "^3.4.3"
  3577. },
  3578. "type": "drupal-core",
  3579. "extra": {
  3580. "merge-plugin": {
  3581. "require": [
  3582. "core/lib/Drupal/Component/Annotation/composer.json",
  3583. "core/lib/Drupal/Component/Assertion/composer.json",
  3584. "core/lib/Drupal/Component/Bridge/composer.json",
  3585. "core/lib/Drupal/Component/ClassFinder/composer.json",
  3586. "core/lib/Drupal/Component/Datetime/composer.json",
  3587. "core/lib/Drupal/Component/DependencyInjection/composer.json",
  3588. "core/lib/Drupal/Component/Diff/composer.json",
  3589. "core/lib/Drupal/Component/Discovery/composer.json",
  3590. "core/lib/Drupal/Component/EventDispatcher/composer.json",
  3591. "core/lib/Drupal/Component/FileCache/composer.json",
  3592. "core/lib/Drupal/Component/FileSystem/composer.json",
  3593. "core/lib/Drupal/Component/Gettext/composer.json",
  3594. "core/lib/Drupal/Component/Graph/composer.json",
  3595. "core/lib/Drupal/Component/HttpFoundation/composer.json",
  3596. "core/lib/Drupal/Component/PhpStorage/composer.json",
  3597. "core/lib/Drupal/Component/Plugin/composer.json",
  3598. "core/lib/Drupal/Component/ProxyBuilder/composer.json",
  3599. "core/lib/Drupal/Component/Render/composer.json",
  3600. "core/lib/Drupal/Component/Serialization/composer.json",
  3601. "core/lib/Drupal/Component/Transliteration/composer.json",
  3602. "core/lib/Drupal/Component/Utility/composer.json",
  3603. "core/lib/Drupal/Component/Uuid/composer.json",
  3604. "core/lib/Drupal/Component/Version/composer.json"
  3605. ],
  3606. "recurse": false,
  3607. "replace": false,
  3608. "merge-extra": false
  3609. }
  3610. },
  3611. "autoload": {
  3612. "psr-4": {
  3613. "Drupal\\Core\\": "lib/Drupal/Core",
  3614. "Drupal\\Component\\": "lib/Drupal/Component",
  3615. "Drupal\\Driver\\": "../drivers/lib/Drupal/Driver"
  3616. },
  3617. "classmap": [
  3618. "lib/Drupal.php",
  3619. "lib/Drupal/Component/Utility/Timer.php",
  3620. "lib/Drupal/Component/Utility/Unicode.php",
  3621. "lib/Drupal/Core/Database/Database.php",
  3622. "lib/Drupal/Core/DrupalKernel.php",
  3623. "lib/Drupal/Core/DrupalKernelInterface.php",
  3624. "lib/Drupal/Core/Site/Settings.php"
  3625. ]
  3626. },
  3627. "notification-url": "https://packagist.org/downloads/",
  3628. "license": [
  3629. "GPL-2.0-or-later"
  3630. ],
  3631. "description": "Drupal is an open source content management platform powering millions of websites and applications.",
  3632. "time": "2020-03-18T16:27:19+00:00"
  3633. },
  3634. {
  3635. "name": "drupal/ctools",
  3636. "version": "3.2.0",
  3637. "source": {
  3638. "type": "git",
  3639. "url": "https://git.drupalcode.org/project/ctools.git",
  3640. "reference": "8.x-3.2"
  3641. },
  3642. "dist": {
  3643. "type": "zip",
  3644. "url": "https://ftp.drupal.org/files/projects/ctools-8.x-3.2.zip",
  3645. "reference": "8.x-3.2",
  3646. "shasum": "d6da87239b64ba708a5977e7b33b1e009e36b091"
  3647. },
  3648. "require": {
  3649. "drupal/core": "^8.5"
  3650. },
  3651. "type": "drupal-module",
  3652. "extra": {
  3653. "branch-alias": {
  3654. "dev-3.x": "3.x-dev"
  3655. },
  3656. "drupal": {
  3657. "version": "8.x-3.2",
  3658. "datestamp": "1550728386",
  3659. "security-coverage": {
  3660. "status": "covered",
  3661. "message": "Covered by Drupal's security advisory policy"
  3662. }
  3663. }
  3664. },
  3665. "notification-url": "https://packages.drupal.org/8/downloads",
  3666. "license": [
  3667. "GPL-2.0+"
  3668. ],
  3669. "authors": [
  3670. {
  3671. "name": "Kris Vanderwater (EclipseGc)",
  3672. "homepage": "https://www.drupal.org/u/eclipsegc",
  3673. "role": "Maintainer"
  3674. },
  3675. {
  3676. "name": "Jakob Perry (japerry)",
  3677. "homepage": "https://www.drupal.org/u/japerry",
  3678. "role": "Maintainer"
  3679. },
  3680. {
  3681. "name": "Tim Plunkett (tim.plunkett)",
  3682. "homepage": "https://www.drupal.org/u/timplunkett",
  3683. "role": "Maintainer"
  3684. },
  3685. {
  3686. "name": "James Gilliland (neclimdul)",
  3687. "homepage": "https://www.drupal.org/u/neclimdul",
  3688. "role": "Maintainer"
  3689. },
  3690. {
  3691. "name": "Daniel Wehner (dawehner)",
  3692. "homepage": "https://www.drupal.org/u/dawehner",
  3693. "role": "Maintainer"
  3694. },
  3695. {
  3696. "name": "joelpittet",
  3697. "homepage": "https://www.drupal.org/user/160302"
  3698. },
  3699. {
  3700. "name": "merlinofchaos",
  3701. "homepage": "https://www.drupal.org/user/26979"
  3702. },
  3703. {
  3704. "name": "neclimdul",
  3705. "homepage": "https://www.drupal.org/user/48673"
  3706. },
  3707. {
  3708. "name": "sdboyer",
  3709. "homepage": "https://www.drupal.org/user/146719"
  3710. },
  3711. {
  3712. "name": "sun",
  3713. "homepage": "https://www.drupal.org/user/54136"
  3714. },
  3715. {
  3716. "name": "tim.plunkett",
  3717. "homepage": "https://www.drupal.org/user/241634"
  3718. }
  3719. ],
  3720. "description": "Provides a number of utility and helper APIs for Drupal developers and site builders.",
  3721. "homepage": "https://www.drupal.org/project/ctools",
  3722. "support": {
  3723. "source": "http://cgit.drupalcode.org/ctools",
  3724. "issues": "https://www.drupal.org/project/issues/ctools"
  3725. }
  3726. },
  3727. {
  3728. "name": "drupal/date_range_formatter",
  3729. "version": "3.1.0",
  3730. "source": {
  3731. "type": "git",
  3732. "url": "https://git.drupalcode.org/project/date_range_formatter.git",
  3733. "reference": "8.x-3.1"
  3734. },
  3735. "dist": {
  3736. "type": "zip",
  3737. "url": "https://ftp.drupal.org/files/projects/date_range_formatter-8.x-3.1.zip",
  3738. "reference": "8.x-3.1",
  3739. "shasum": "a98c511ac90eb92879235bc82a3aa643f7b5c173"
  3740. },
  3741. "require": {
  3742. "drupal/core": "*"
  3743. },
  3744. "type": "drupal-module",
  3745. "extra": {
  3746. "branch-alias": {
  3747. "dev-3.x": "3.x-dev"
  3748. },
  3749. "drupal": {
  3750. "version": "8.x-3.1",
  3751. "datestamp": "1502454544",
  3752. "security-coverage": {
  3753. "status": "covered",
  3754. "message": "Covered by Drupal's security advisory policy"
  3755. }
  3756. }
  3757. },
  3758. "notification-url": "https://packages.drupal.org/8/downloads",
  3759. "license": [
  3760. "GPL-2.0-or-later"
  3761. ],
  3762. "authors": [
  3763. {
  3764. "name": "maximpodorov",
  3765. "homepage": "https://www.drupal.org/user/515310"
  3766. },
  3767. {
  3768. "name": "sudishth",
  3769. "homepage": "https://www.drupal.org/user/1440562"
  3770. }
  3771. ],
  3772. "description": "Formats date ranges.",
  3773. "homepage": "https://www.drupal.org/project/date_range_formatter",
  3774. "support": {
  3775. "source": "https://git.drupalcode.org/project/date_range_formatter"
  3776. }
  3777. },
  3778. {
  3779. "name": "drupal/devel",
  3780. "version": "2.1.0",
  3781. "source": {
  3782. "type": "git",
  3783. "url": "https://git.drupalcode.org/project/devel.git",
  3784. "reference": "8.x-2.1"
  3785. },
  3786. "dist": {
  3787. "type": "zip",
  3788. "url": "https://ftp.drupal.org/files/projects/devel-8.x-2.1.zip",
  3789. "reference": "8.x-2.1",
  3790. "shasum": "8f735892922aa5f228e681e645e5f02b1c008f14"
  3791. },
  3792. "require": {
  3793. "drupal/core": "~8.0",
  3794. "symfony/var-dumper": "~2.7|^3|^4"
  3795. },
  3796. "type": "drupal-module",
  3797. "extra": {
  3798. "branch-alias": {
  3799. "dev-2.x": "2.x-dev"
  3800. },
  3801. "drupal": {
  3802. "version": "8.x-2.1",
  3803. "datestamp": "1556799496",
  3804. "security-coverage": {
  3805. "status": "covered",
  3806. "message": "Covered by Drupal's security advisory policy"
  3807. }
  3808. },
  3809. "drush": {
  3810. "services": {
  3811. "drush.services.yml": "^9"
  3812. }
  3813. }
  3814. },
  3815. "notification-url": "https://packages.drupal.org/8/downloads",
  3816. "license": [
  3817. "GPL-2.0+"
  3818. ],
  3819. "authors": [
  3820. {
  3821. "name": "Moshe Weitzman",
  3822. "homepage": "https://github.com/weitzman",
  3823. "email": "weitzman@tejasa.com",
  3824. "role": "Maintainer"
  3825. },
  3826. {
  3827. "name": "Hans Salvisberg",
  3828. "homepage": "https://www.drupal.org/u/salvis",
  3829. "email": "drupal@salvisberg.com",
  3830. "role": "Maintainer"
  3831. },
  3832. {
  3833. "name": "Luca Lusso",
  3834. "homepage": "https://www.drupal.org/u/lussoluca",
  3835. "role": "Maintainer"
  3836. },
  3837. {
  3838. "name": "Marco (willzyx)",
  3839. "homepage": "https://www.drupal.org/u/willzyx",
  3840. "role": "Maintainer"
  3841. },
  3842. {
  3843. "name": "See contributors",
  3844. "homepage": "https://www.drupal.org/node/3236/committers"
  3845. },
  3846. {
  3847. "name": "pcambra",
  3848. "homepage": "https://www.drupal.org/user/122101"
  3849. },
  3850. {
  3851. "name": "salvis",
  3852. "homepage": "https://www.drupal.org/user/82964"
  3853. },
  3854. {
  3855. "name": "willzyx",
  3856. "homepage": "https://www.drupal.org/user/1043862"
  3857. }
  3858. ],
  3859. "description": "Various blocks, pages, and functions for developers.",
  3860. "homepage": "http://drupal.org/project/devel",
  3861. "support": {
  3862. "source": "http://cgit.drupalcode.org/devel",
  3863. "issues": "http://drupal.org/project/devel",
  3864. "irc": "irc://irc.freenode.org/drupal-contribute"
  3865. }
  3866. },
  3867. {
  3868. "name": "drupal/domain",
  3869. "version": "1.0.0-alpha16",
  3870. "source": {
  3871. "type": "git",
  3872. "url": "https://git.drupalcode.org/project/domain.git",
  3873. "reference": "8.x-1.0-alpha16"
  3874. },
  3875. "dist": {
  3876. "type": "zip",
  3877. "url": "https://ftp.drupal.org/files/projects/domain-8.x-1.0-alpha16.zip",
  3878. "reference": "8.x-1.0-alpha16",
  3879. "shasum": "d0088936af09e922ec873080d7960a1dc020bef8"
  3880. },
  3881. "require": {
  3882. "drupal/core": "^8.5"
  3883. },
  3884. "require-dev": {
  3885. "drupal/domain_access": "*"
  3886. },
  3887. "type": "drupal-module",
  3888. "extra": {
  3889. "branch-alias": {
  3890. "dev-1.x": "1.x-dev"
  3891. },
  3892. "drupal": {
  3893. "version": "8.x-1.0-alpha16",
  3894. "datestamp": "1561126081",
  3895. "security-coverage": {
  3896. "status": "not-covered",
  3897. "message": "Alpha releases are not covered by Drupal security advisories."
  3898. }
  3899. }
  3900. },
  3901. "notification-url": "https://packages.drupal.org/8/downloads",
  3902. "license": [
  3903. "GPL-2.0-or-later"
  3904. ],
  3905. "authors": [
  3906. {
  3907. "name": "agentrickard",
  3908. "homepage": "https://www.drupal.org/user/20975"
  3909. },
  3910. {
  3911. "name": "nonsie",
  3912. "homepage": "https://www.drupal.org/user/29899"
  3913. }
  3914. ],
  3915. "description": "Creates domain records within a Drupal installation.",
  3916. "homepage": "https://www.drupal.org/project/domain",
  3917. "support": {
  3918. "source": "https://git.drupalcode.org/project/domain"
  3919. }
  3920. },
  3921. {
  3922. "name": "drupal/domain_access",
  3923. "version": "1.0.0-alpha16",
  3924. "require": {
  3925. "drupal/core": "*",
  3926. "drupal/domain": "self.version"
  3927. },
  3928. "type": "metapackage",
  3929. "extra": {
  3930. "branch-alias": {
  3931. "dev-1.x": "1.x-dev"
  3932. },
  3933. "drupal": {
  3934. "version": "8.x-1.0-alpha16",
  3935. "datestamp": "1561126081",
  3936. "security-coverage": {
  3937. "status": "not-covered",
  3938. "message": "Alpha releases are not covered by Drupal security advisories."
  3939. }
  3940. }
  3941. },
  3942. "notification-url": "https://packages.drupal.org/8/downloads",
  3943. "license": [
  3944. "GPL-2.0-or-later"
  3945. ],
  3946. "authors": [
  3947. {
  3948. "name": "agentrickard",
  3949. "homepage": "https://www.drupal.org/user/20975"
  3950. },
  3951. {
  3952. "name": "nonsie",
  3953. "homepage": "https://www.drupal.org/user/29899"
  3954. }
  3955. ],
  3956. "description": "Domain-based access control for content.",
  3957. "homepage": "https://www.drupal.org/project/domain",
  3958. "support": {
  3959. "source": "https://git.drupalcode.org/project/domain"
  3960. }
  3961. },
  3962. {
  3963. "name": "drupal/domain_config",
  3964. "version": "1.0.0-alpha16",
  3965. "require": {
  3966. "drupal/core": "~8.0",
  3967. "drupal/domain": "self.version"
  3968. },
  3969. "type": "metapackage",
  3970. "extra": {
  3971. "branch-alias": {
  3972. "dev-1.x": "1.x-dev"
  3973. },
  3974. "drupal": {
  3975. "version": "8.x-1.0-alpha16",
  3976. "datestamp": "1561126081",
  3977. "security-coverage": {
  3978. "status": "not-covered",
  3979. "message": "Alpha releases are not covered by Drupal security advisories."
  3980. }
  3981. }
  3982. },
  3983. "notification-url": "https://packages.drupal.org/8/downloads",
  3984. "license": [
  3985. "GPL-2.0-or-later"
  3986. ],
  3987. "authors": [
  3988. {
  3989. "name": "agentrickard",
  3990. "homepage": "https://www.drupal.org/user/20975"
  3991. },
  3992. {
  3993. "name": "nonsie",
  3994. "homepage": "https://www.drupal.org/user/29899"
  3995. }
  3996. ],
  3997. "description": "Allows domain specific configuration.",
  3998. "homepage": "https://www.drupal.org/project/domain",
  3999. "support": {
  4000. "source": "https://git.drupalcode.org/project/domain"
  4001. }
  4002. },
  4003. {
  4004. "name": "drupal/domain_menu_access",
  4005. "version": "dev-1.x",
  4006. "source": {
  4007. "type": "git",
  4008. "url": "https://git.drupalcode.org/project/domain_menu_access.git",
  4009. "reference": "cd62e57ec09be4eca491e18e50092e10c19750f2"
  4010. },
  4011. "require": {
  4012. "drupal/core": "~8.0",
  4013. "drupal/domain": "^1",
  4014. "drupal/domain_access": "^1"
  4015. },
  4016. "type": "drupal-module",
  4017. "extra": {
  4018. "branch-alias": {
  4019. "dev-1.x": "1.x-dev"
  4020. },
  4021. "drupal": {
  4022. "version": "8.x-1.0-alpha2+3-dev",
  4023. "datestamp": "1551553085",
  4024. "security-coverage": {
  4025. "status": "not-covered",
  4026. "message": "Dev releases are not covered by Drupal security advisories."
  4027. }
  4028. }
  4029. },
  4030. "notification-url": "https://packages.drupal.org/8/downloads",
  4031. "license": [
  4032. "GPL-2.0+"
  4033. ],
  4034. "authors": [
  4035. {
  4036. "name": "Sebastien @Actualys",
  4037. "homepage": "https://www.drupal.org/user/380104"
  4038. },
  4039. {
  4040. "name": "maciej.zgadzaj",
  4041. "homepage": "https://www.drupal.org/user/271491"
  4042. },
  4043. {
  4044. "name": "pifagor",
  4045. "homepage": "https://www.drupal.org/user/2375692"
  4046. }
  4047. ],
  4048. "description": "Domain-based access control for menu link.",
  4049. "homepage": "https://www.drupal.org/project/domain_menu_access",
  4050. "support": {
  4051. "source": "https://git.drupalcode.org/project/domain_menu_access"
  4052. },
  4053. "time": "2019-04-11T06:07:16+00:00"
  4054. },
  4055. {
  4056. "name": "drupal/domain_site_settings",
  4057. "version": "1.3.0",
  4058. "source": {
  4059. "type": "git",
  4060. "url": "https://git.drupalcode.org/project/domain_site_settings.git",
  4061. "reference": "8.x-1.3"
  4062. },
  4063. "dist": {
  4064. "type": "zip",
  4065. "url": "https://ftp.drupal.org/files/projects/domain_site_settings-8.x-1.3.zip",
  4066. "reference": "8.x-1.3",
  4067. "shasum": "36ad22d8e31400f372b9e7f587578061b4fdc5db"
  4068. },
  4069. "require": {
  4070. "drupal/core": "~8.0",
  4071. "drupal/domain": "*",
  4072. "drupal/domain_config": "*"
  4073. },
  4074. "type": "drupal-module",
  4075. "extra": {
  4076. "branch-alias": {
  4077. "dev-1.x": "1.x-dev"
  4078. },
  4079. "drupal": {
  4080. "version": "8.x-1.3",
  4081. "datestamp": "1537684980",
  4082. "security-coverage": {
  4083. "status": "covered",
  4084. "message": "Covered by Drupal's security advisory policy"
  4085. }
  4086. },
  4087. "patches_applied": {
  4088. "Circular Error or Conflict with Language_Manager": "https://www.drupal.org/files/issues/2018-10-09/2930391-21.patch"
  4089. }
  4090. },
  4091. "notification-url": "https://packages.drupal.org/8/downloads",
  4092. "license": [
  4093. "GPL-2.0+"
  4094. ],
  4095. "authors": [
  4096. {
  4097. "name": "aloknarwaria",
  4098. "homepage": "https://www.drupal.org/user/906640"
  4099. },
  4100. {
  4101. "name": "malaynayak",
  4102. "homepage": "https://www.drupal.org/user/3529755"
  4103. }
  4104. ],
  4105. "description": "Basic Site Setting for Domains.",
  4106. "homepage": "https://www.drupal.org/project/domain_site_settings",
  4107. "keywords": [
  4108. "Drupal"
  4109. ],
  4110. "support": {
  4111. "source": "http://cgit.drupalcode.org/domain_site_settings",
  4112. "issues": "https://www.drupal.org/project/issues/domain_site_settings"
  4113. }
  4114. },
  4115. {
  4116. "name": "drupal/email_registration",
  4117. "version": "1.0.0-rc7",
  4118. "source": {
  4119. "type": "git",
  4120. "url": "https://git.drupalcode.org/project/email_registration.git",
  4121. "reference": "8.x-1.0-rc7"
  4122. },
  4123. "dist": {
  4124. "type": "zip",
  4125. "url": "https://ftp.drupal.org/files/projects/email_registration-8.x-1.0-rc7.zip",
  4126. "reference": "8.x-1.0-rc7",
  4127. "shasum": "a3ebc1e38539e7916f48e827d5bd7b1abeef0011"
  4128. },
  4129. "require": {
  4130. "drupal/core": "*"
  4131. },
  4132. "type": "drupal-module",
  4133. "extra": {
  4134. "branch-alias": {
  4135. "dev-1.x": "1.x-dev"
  4136. },
  4137. "drupal": {
  4138. "version": "8.x-1.0-rc7",
  4139. "datestamp": "1557344281",
  4140. "security-coverage": {
  4141. "status": "not-covered",
  4142. "message": "RC releases are not covered by Drupal security advisories."
  4143. }
  4144. }
  4145. },
  4146. "notification-url": "https://packages.drupal.org/8/downloads",
  4147. "license": [
  4148. "GPL-2.0+"
  4149. ],
  4150. "authors": [
  4151. {
  4152. "name": "Greg Knaddison (greggles)",
  4153. "homepage": "https://www.drupal.org/u/greggles",
  4154. "role": "Maintainer"
  4155. },
  4156. {
  4157. "name": "Andrey Postnikov (andypost)",
  4158. "homepage": "https://www.drupal.org/u/andypost",
  4159. "role": "Maintainer"
  4160. },
  4161. {
  4162. "name": "Chris Herberte",
  4163. "homepage": "https://www.drupal.org/u/chris-herberte",
  4164. "role": "Maintainer"
  4165. },
  4166. {
  4167. "name": "Moshe Weitzman (moshe weitzman)",
  4168. "homepage": "https://www.drupal.org/u/moshe-weitzman",
  4169. "role": "Maintainer"
  4170. }
  4171. ],
  4172. "description": "Allows users to register with an email address as their username.",
  4173. "homepage": "https://www.drupal.org/project/email_registration",
  4174. "support": {
  4175. "source": "http://cgit.drupalcode.org/email_registration",
  4176. "issues": "http://drupal.org/project/issues/email_registration"
  4177. }
  4178. },
  4179. {
  4180. "name": "drupal/entity",
  4181. "version": "1.0.0-rc3",
  4182. "source": {
  4183. "type": "git",
  4184. "url": "https://git.drupalcode.org/project/entity.git",
  4185. "reference": "8.x-1.0-rc3"
  4186. },
  4187. "dist": {
  4188. "type": "zip",
  4189. "url": "https://ftp.drupal.org/files/projects/entity-8.x-1.0-rc3.zip",
  4190. "reference": "8.x-1.0-rc3",
  4191. "shasum": "6b4ccc0231c52ed9594502a0718057f53d98404d"
  4192. },
  4193. "require": {
  4194. "drupal/core": "^8.6"
  4195. },
  4196. "type": "drupal-module",
  4197. "extra": {
  4198. "branch-alias": {
  4199. "dev-1.x": "1.x-dev"
  4200. },
  4201. "drupal": {
  4202. "version": "8.x-1.0-rc3",
  4203. "datestamp": "1559579884",
  4204. "security-coverage": {
  4205. "status": "not-covered",
  4206. "message": "RC releases are not covered by Drupal security advisories."
  4207. }
  4208. }
  4209. },
  4210. "notification-url": "https://packages.drupal.org/8/downloads",
  4211. "license": [
  4212. "GPL-2.0+"
  4213. ],
  4214. "authors": [
  4215. {
  4216. "name": "Berdir",
  4217. "homepage": "https://www.drupal.org/user/214652"
  4218. },
  4219. {
  4220. "name": "bojanz",
  4221. "homepage": "https://www.drupal.org/user/86106"
  4222. },
  4223. {
  4224. "name": "dawehner",
  4225. "homepage": "https://www.drupal.org/user/99340"
  4226. },
  4227. {
  4228. "name": "dixon_",
  4229. "homepage": "https://www.drupal.org/user/239911"
  4230. },
  4231. {
  4232. "name": "fago",
  4233. "homepage": "https://www.drupal.org/user/16747"
  4234. }
  4235. ],
  4236. "description": "Provides expanded entity APIs, which will be moved to Drupal core one day.",
  4237. "homepage": "http://drupal.org/project/entity",
  4238. "support": {
  4239. "source": "https://git.drupalcode.org/project/entity"
  4240. }
  4241. },
  4242. {
  4243. "name": "drupal/features",
  4244. "version": "3.8.0",
  4245. "source": {
  4246. "type": "git",
  4247. "url": "https://git.drupalcode.org/project/features.git",
  4248. "reference": "8.x-3.8"
  4249. },
  4250. "dist": {
  4251. "type": "zip",
  4252. "url": "https://ftp.drupal.org/files/projects/features-8.x-3.8.zip",
  4253. "reference": "8.x-3.8",
  4254. "shasum": "15cebd00e38d63c0d946682e76327a03499c27be"
  4255. },
  4256. "require": {
  4257. "drupal/config_update": "^1.4",
  4258. "drupal/core": "*"
  4259. },
  4260. "type": "drupal-module",
  4261. "extra": {
  4262. "branch-alias": {
  4263. "dev-3.x": "3.x-dev"
  4264. },
  4265. "drupal": {
  4266. "version": "8.x-3.8",
  4267. "datestamp": "1536512284",
  4268. "security-coverage": {
  4269. "status": "covered",
  4270. "message": "Covered by Drupal's security advisory policy"
  4271. }
  4272. },
  4273. "drush": {
  4274. "services": {
  4275. "drush.services.yml": "^9"
  4276. }
  4277. }
  4278. },
  4279. "notification-url": "https://packages.drupal.org/8/downloads",
  4280. "license": [
  4281. "GPL-2.0+"
  4282. ],
  4283. "authors": [
  4284. {
  4285. "name": "dawehner",
  4286. "homepage": "https://www.drupal.org/user/99340"
  4287. },
  4288. {
  4289. "name": "e2thex",
  4290. "homepage": "https://www.drupal.org/user/189123"
  4291. },
  4292. {
  4293. "name": "febbraro",
  4294. "homepage": "https://www.drupal.org/user/43670"
  4295. },
  4296. {
  4297. "name": "jmiccolis",
  4298. "homepage": "https://www.drupal.org/user/31731"
  4299. },
  4300. {
  4301. "name": "joseph.olstad",
  4302. "homepage": "https://www.drupal.org/user/1321830"
  4303. },
  4304. {
  4305. "name": "mpotter",
  4306. "homepage": "https://www.drupal.org/user/616192"
  4307. },
  4308. {
  4309. "name": "nedjo",
  4310. "homepage": "https://www.drupal.org/user/4481"
  4311. },
  4312. {
  4313. "name": "tim.plunkett",
  4314. "homepage": "https://www.drupal.org/user/241634"
  4315. }
  4316. ],
  4317. "description": "Enables administrators to package configuration into modules",
  4318. "homepage": "https://www.drupal.org/project/features",
  4319. "support": {
  4320. "source": "https://git.drupalcode.org/project/features"
  4321. }
  4322. },
  4323. {
  4324. "name": "drupal/field_group",
  4325. "version": "3.0.0-rc1",
  4326. "source": {
  4327. "type": "git",
  4328. "url": "https://git.drupalcode.org/project/field_group.git",
  4329. "reference": "8.x-3.0-rc1"
  4330. },
  4331. "dist": {
  4332. "type": "zip",
  4333. "url": "https://ftp.drupal.org/files/projects/field_group-8.x-3.0-rc1.zip",
  4334. "reference": "8.x-3.0-rc1",
  4335. "shasum": "e291b5468c834a344e9aa6cafd3a76171d473a22"
  4336. },
  4337. "require": {
  4338. "drupal/core": "*"
  4339. },
  4340. "type": "drupal-module",
  4341. "extra": {
  4342. "branch-alias": {
  4343. "dev-3.x": "3.x-dev"
  4344. },
  4345. "drupal": {
  4346. "version": "8.x-3.0-rc1",
  4347. "datestamp": "1558678323",
  4348. "security-coverage": {
  4349. "status": "not-covered",
  4350. "message": "RC releases are not covered by Drupal security advisories."
  4351. }
  4352. }
  4353. },
  4354. "notification-url": "https://packages.drupal.org/8/downloads",
  4355. "license": [
  4356. "GPL-2.0+"
  4357. ],
  4358. "authors": [
  4359. {
  4360. "name": "Hydra",
  4361. "homepage": "https://www.drupal.org/user/647364"
  4362. },
  4363. {
  4364. "name": "Stalski",
  4365. "homepage": "https://www.drupal.org/user/322618"
  4366. },
  4367. {
  4368. "name": "jyve",
  4369. "homepage": "https://www.drupal.org/user/591438"
  4370. },
  4371. {
  4372. "name": "swentel",
  4373. "homepage": "https://www.drupal.org/user/107403"
  4374. },
  4375. {
  4376. "name": "zuuperman",
  4377. "homepage": "https://www.drupal.org/user/361625"
  4378. }
  4379. ],
  4380. "description": "Provides the field_group module.",
  4381. "homepage": "https://www.drupal.org/project/field_group",
  4382. "support": {
  4383. "source": "https://git.drupalcode.org/project/field_group"
  4384. }
  4385. },
  4386. {
  4387. "name": "drupal/filefield_sources",
  4388. "version": "dev-1.x",
  4389. "source": {
  4390. "type": "git",
  4391. "url": "https://git.drupalcode.org/project/filefield_sources.git",
  4392. "reference": "6da74b585fcdc66bf5b1f5b3d9c6985df137fa2a"
  4393. },
  4394. "require": {
  4395. "drupal/core": "*"
  4396. },
  4397. "require-dev": {
  4398. "drupal/imce": "*"
  4399. },
  4400. "type": "drupal-module",
  4401. "extra": {
  4402. "branch-alias": {
  4403. "dev-1.x": "1.x-dev"
  4404. },
  4405. "drupal": {
  4406. "version": "8.x-1.0-alpha1+5-dev",
  4407. "datestamp": "1556769786",
  4408. "security-coverage": {
  4409. "status": "not-covered",
  4410. "message": "Dev releases are not covered by Drupal security advisories."
  4411. }
  4412. }
  4413. },
  4414. "notification-url": "https://packages.drupal.org/8/downloads",
  4415. "license": [
  4416. "GPL-2.0-or-later"
  4417. ],
  4418. "authors": [
  4419. {
  4420. "name": "Nate Lampton (quicksketch)",
  4421. "homepage": "https://www.drupal.org/u/quicksketch",
  4422. "role": "Maintainer"
  4423. },
  4424. {
  4425. "name": "Andrey Khromyshev (profak)",
  4426. "homepage": "https://www.drupal.org/u/profak",
  4427. "role": "Maintainer"
  4428. },
  4429. {
  4430. "name": "David Valdez (gnuget)",
  4431. "homepage": "https://www.drupal.org/u/gnuget",
  4432. "role": "Maintainer"
  4433. }
  4434. ],
  4435. "description": "Extends File fields to allow referencing of existing files, remote files, and server files.",
  4436. "homepage": "https://www.drupal.org/project/filefield_sources",
  4437. "support": {
  4438. "source": "https://git.drupalcode.org/project/filefield_sources",
  4439. "issues": "https://www.drupal.org/project/issues/filefield_sources",
  4440. "irc": "irc://irc.freenode.org/drupal-contribute"
  4441. },
  4442. "time": "2019-05-03T18:32:19+00:00"
  4443. },
  4444. {
  4445. "name": "drupal/filter_perms",
  4446. "version": "dev-1.x",
  4447. "source": {
  4448. "type": "git",
  4449. "url": "https://git.drupalcode.org/project/filter_perms.git",
  4450. "reference": "f491dd73fd876f6de0b2252c6b9bf18e0e27b357"
  4451. },
  4452. "require": {
  4453. "drupal/core": "*"
  4454. },
  4455. "type": "drupal-module",
  4456. "extra": {
  4457. "branch-alias": {
  4458. "dev-1.x": "1.x-dev"
  4459. },
  4460. "drupal": {
  4461. "version": "8.x-1.x-dev",
  4462. "datestamp": "1469645939",
  4463. "security-coverage": {
  4464. "status": "not-covered",
  4465. "message": "Dev releases are not covered by Drupal security advisories."
  4466. }
  4467. }
  4468. },
  4469. "notification-url": "https://packages.drupal.org/8/downloads",
  4470. "license": [
  4471. "GPL-2.0-or-later"
  4472. ],
  4473. "authors": [
  4474. {
  4475. "name": "cYu",
  4476. "homepage": "https://www.drupal.org/user/202205"
  4477. },
  4478. {
  4479. "name": "deekayen",
  4480. "homepage": "https://www.drupal.org/user/972"
  4481. },
  4482. {
  4483. "name": "willzyx",
  4484. "homepage": "https://www.drupal.org/user/1043862"
  4485. }
  4486. ],
  4487. "description": "Provides role and module filters to simplify the user permissions page.",
  4488. "homepage": "https://www.drupal.org/project/filter_perms",
  4489. "support": {
  4490. "source": "https://git.drupalcode.org/project/filter_perms"
  4491. },
  4492. "time": "2016-07-27T19:01:11+00:00"
  4493. },
  4494. {
  4495. "name": "drupal/honeypot",
  4496. "version": "1.29.0",
  4497. "source": {
  4498. "type": "git",
  4499. "url": "https://git.drupalcode.org/project/honeypot.git",
  4500. "reference": "8.x-1.29"
  4501. },
  4502. "dist": {
  4503. "type": "zip",
  4504. "url": "https://ftp.drupal.org/files/projects/honeypot-8.x-1.29.zip",
  4505. "reference": "8.x-1.29",
  4506. "shasum": "029d9e068d8f6a5db52434c27dc71bd3f06da487"
  4507. },
  4508. "require": {
  4509. "drupal/core": "~8.0"
  4510. },
  4511. "type": "drupal-module",
  4512. "extra": {
  4513. "branch-alias": {
  4514. "dev-1.x": "1.x-dev"
  4515. },
  4516. "drupal": {
  4517. "version": "8.x-1.29",
  4518. "datestamp": "1536179280",
  4519. "security-coverage": {
  4520. "status": "covered",
  4521. "message": "Covered by Drupal's security advisory policy"
  4522. }
  4523. }
  4524. },
  4525. "notification-url": "https://packages.drupal.org/8/downloads",
  4526. "license": [
  4527. "GPL-2.0+"
  4528. ],
  4529. "authors": [
  4530. {
  4531. "name": "Jeff Geerling",
  4532. "homepage": "https://www.drupal.org/user/213194",
  4533. "email": "geerlingguy@mac.com"
  4534. },
  4535. {
  4536. "name": "geerlingguy",
  4537. "homepage": "https://www.drupal.org/user/389011"
  4538. },
  4539. {
  4540. "name": "vijaycs85",
  4541. "homepage": "https://www.drupal.org/user/93488"
  4542. }
  4543. ],
  4544. "description": "Mitigates spam form submissions using the honeypot method.",
  4545. "homepage": "https://www.drupal.org/project/honeypot",
  4546. "keywords": [
  4547. "deterrent",
  4548. "form",
  4549. "honeypot",
  4550. "honeytrap",
  4551. "php",
  4552. "spam"
  4553. ],
  4554. "support": {
  4555. "source": "https://git.drupalcode.org/project/honeypot"
  4556. }
  4557. },
  4558. {
  4559. "name": "drupal/linkit",
  4560. "version": "5.0.0-beta9",
  4561. "source": {
  4562. "type": "git",
  4563. "url": "https://git.drupalcode.org/project/linkit.git",
  4564. "reference": "8.x-5.0-beta9"
  4565. },
  4566. "dist": {
  4567. "type": "zip",
  4568. "url": "https://ftp.drupal.org/files/projects/linkit-8.x-5.0-beta9.zip",
  4569. "reference": "8.x-5.0-beta9",
  4570. "shasum": "150291dd87a4f65027492020c28635e2b5249d1a"
  4571. },
  4572. "require": {
  4573. "drupal/core": "~8.0"
  4574. },
  4575. "require-dev": {
  4576. "drupal/imce": "*"
  4577. },
  4578. "type": "drupal-module",
  4579. "extra": {
  4580. "branch-alias": {
  4581. "dev-5.x": "5.x-dev"
  4582. },
  4583. "drupal": {
  4584. "version": "8.x-5.0-beta9",
  4585. "datestamp": "1562194985",
  4586. "security-coverage": {
  4587. "status": "not-covered",
  4588. "message": "Beta releases are not covered by Drupal security advisories."
  4589. }
  4590. }
  4591. },
  4592. "notification-url": "https://packages.drupal.org/8/downloads",
  4593. "license": [
  4594. "GPL-2.0+"
  4595. ],
  4596. "authors": [
  4597. {
  4598. "name": "Emil Stjerneman",
  4599. "homepage": "https://stjerneman.com",
  4600. "email": "emil@stjerneman.com",
  4601. "role": "Maintainer"
  4602. }
  4603. ],
  4604. "description": "Linkit - Enriched linking experience",
  4605. "homepage": "http://drupal.org/project/linkit",
  4606. "support": {
  4607. "source": "http://cgit.drupalcode.org/linkit",
  4608. "issues": "http://drupal.org/project/linkit"
  4609. }
  4610. },
  4611. {
  4612. "name": "drupal/login_emailusername",
  4613. "version": "1.1.0",
  4614. "source": {
  4615. "type": "git",
  4616. "url": "https://git.drupalcode.org/project/login_emailusername.git",
  4617. "reference": "8.x-1.1"
  4618. },
  4619. "dist": {
  4620. "type": "zip",
  4621. "url": "https://ftp.drupal.org/files/projects/login_emailusername-8.x-1.1.zip",
  4622. "reference": "8.x-1.1",
  4623. "shasum": "f484b76b538f4dbbae5a75b49577f4ddf576809e"
  4624. },
  4625. "require": {
  4626. "drupal/core": "~8.0"
  4627. },
  4628. "type": "drupal-module",
  4629. "extra": {
  4630. "branch-alias": {
  4631. "dev-1.x": "1.x-dev"
  4632. },
  4633. "drupal": {
  4634. "version": "8.x-1.1",
  4635. "datestamp": "1483456142",
  4636. "security-coverage": {
  4637. "status": "covered",
  4638. "message": "Covered by Drupal's security advisory policy"
  4639. }
  4640. },
  4641. "patches_applied": {
  4642. "rest login email or user name https://www.drupal.org/project/login_emailusername/issues/2910511#comment-12564801": "https://www.drupal.org/files/issues/2018-04-10/allow-rest-login-with-email-2910511-9.patch"
  4643. }
  4644. },
  4645. "notification-url": "https://packages.drupal.org/8/downloads",
  4646. "license": [
  4647. "GPL-2.0-or-later"
  4648. ],
  4649. "authors": [
  4650. {
  4651. "name": "rjjakes",
  4652. "homepage": "https://www.drupal.org/user/3457245"
  4653. }
  4654. ],
  4655. "description": "Allow users to log in with either their username OR email address using the same input box on the login form.",
  4656. "homepage": "https://www.drupal.org/project/login_emailusername",
  4657. "support": {
  4658. "source": "https://git.drupalcode.org/project/login_emailusername"
  4659. }
  4660. },
  4661. {
  4662. "name": "drupal/maillog",
  4663. "version": "dev-1.x",
  4664. "source": {
  4665. "type": "git",
  4666. "url": "https://git.drupalcode.org/project/maillog.git",
  4667. "reference": "14fd24cd89e299ad271608cd52706c60b753c26d"
  4668. },
  4669. "require": {
  4670. "drupal/core": "*"
  4671. },
  4672. "type": "drupal-module",
  4673. "extra": {
  4674. "branch-alias": {
  4675. "dev-1.x": "1.x-dev"
  4676. },
  4677. "drupal": {
  4678. "version": "8.x-1.x-dev",
  4679. "datestamp": "1470431939",
  4680. "security-coverage": {
  4681. "status": "not-covered",
  4682. "message": "Project has not opted into security advisory coverage!"
  4683. }
  4684. }
  4685. },
  4686. "notification-url": "https://packages.drupal.org/8/downloads",
  4687. "license": [
  4688. "GPL-2.0-or-later"
  4689. ],
  4690. "authors": [
  4691. {
  4692. "name": "Berdir",
  4693. "homepage": "https://www.drupal.org/user/214652"
  4694. },
  4695. {
  4696. "name": "DamienMcKenna",
  4697. "homepage": "https://www.drupal.org/user/108450"
  4698. },
  4699. {
  4700. "name": "miro_dietiker",
  4701. "homepage": "https://www.drupal.org/user/227761"
  4702. },
  4703. {
  4704. "name": "pluess",
  4705. "homepage": "https://www.drupal.org/user/84659"
  4706. }
  4707. ],
  4708. "description": "Utility to log all Mails for debugging purposes. It is possible to suppress mail delivery for e.g. dev or staging systems.",
  4709. "homepage": "https://www.drupal.org/project/maillog",
  4710. "support": {
  4711. "source": "https://git.drupalcode.org/project/maillog"
  4712. },
  4713. "time": "2016-08-05T21:18:07+00:00"
  4714. },
  4715. {
  4716. "name": "drupal/matomo",
  4717. "version": "1.9.0",
  4718. "source": {
  4719. "type": "git",
  4720. "url": "https://git.drupalcode.org/project/matomo.git",
  4721. "reference": "8.x-1.9"
  4722. },
  4723. "dist": {
  4724. "type": "zip",
  4725. "url": "https://ftp.drupal.org/files/projects/matomo-8.x-1.9.zip",
  4726. "reference": "8.x-1.9",
  4727. "shasum": "2c818af730f834d3aef3f6b7aa29f05e6fa9246d"
  4728. },
  4729. "require": {
  4730. "drupal/core": "~8.5"
  4731. },
  4732. "require-dev": {
  4733. "drupal/php": "*",
  4734. "drupal/token": "*"
  4735. },
  4736. "type": "drupal-module",
  4737. "extra": {
  4738. "branch-alias": {
  4739. "dev-1.x": "1.x-dev"
  4740. },
  4741. "drupal": {
  4742. "version": "8.x-1.9",
  4743. "datestamp": "1549615080",
  4744. "security-coverage": {
  4745. "status": "covered",
  4746. "message": "Covered by Drupal's security advisory policy"
  4747. }
  4748. }
  4749. },
  4750. "notification-url": "https://packages.drupal.org/8/downloads",
  4751. "license": [
  4752. "GPL-2.0+"
  4753. ],
  4754. "authors": [
  4755. {
  4756. "name": "hass",
  4757. "homepage": "https://www.drupal.org/u/hass"
  4758. },
  4759. {
  4760. "name": "See other contributors",
  4761. "homepage": "https://www.drupal.org/node/247808/committers"
  4762. }
  4763. ],
  4764. "description": "Adds Matomo javascript tracking code to all your site's pages",
  4765. "homepage": "https://www.drupal.org/project/matomo",
  4766. "support": {
  4767. "source": "https://git.drupal.org/project/matomo.git",
  4768. "issues": "https://www.drupal.org/project/issues/matomo"
  4769. }
  4770. },
  4771. {
  4772. "name": "drupal/menu_admin_per_menu",
  4773. "version": "1.0.0",
  4774. "source": {
  4775. "type": "git",
  4776. "url": "https://git.drupalcode.org/project/menu_admin_per_menu.git",
  4777. "reference": "8.x-1.0"
  4778. },
  4779. "dist": {
  4780. "type": "zip",
  4781. "url": "https://ftp.drupal.org/files/projects/menu_admin_per_menu-8.x-1.0.zip",
  4782. "reference": "8.x-1.0",
  4783. "shasum": "27dbef0025146a382feab67db5e93eaf280b8de4"
  4784. },
  4785. "require": {
  4786. "drupal/core": "*"
  4787. },
  4788. "type": "drupal-module",
  4789. "extra": {
  4790. "branch-alias": {
  4791. "dev-1.x": "1.x-dev"
  4792. },
  4793. "drupal": {
  4794. "version": "8.x-1.0",
  4795. "datestamp": "1507184944",
  4796. "security-coverage": {
  4797. "status": "covered",
  4798. "message": "Covered by Drupal's security advisory policy"
  4799. }
  4800. }
  4801. },
  4802. "notification-url": "https://packages.drupal.org/8/downloads",
  4803. "license": [
  4804. "GPL-2.0-or-later"
  4805. ],
  4806. "authors": [
  4807. {
  4808. "name": "anrikun",
  4809. "homepage": "https://www.drupal.org/user/410199"
  4810. },
  4811. {
  4812. "name": "mkdok",
  4813. "homepage": "https://www.drupal.org/user/3308753"
  4814. }
  4815. ],
  4816. "description": "Allows to give roles per menu admin permissions without giving them full administer menu permission.",
  4817. "homepage": "https://www.drupal.org/project/menu_admin_per_menu",
  4818. "support": {
  4819. "source": "https://git.drupalcode.org/project/menu_admin_per_menu"
  4820. }
  4821. },
  4822. {
  4823. "name": "drupal/metatag",
  4824. "version": "1.10.0",
  4825. "source": {
  4826. "type": "git",
  4827. "url": "https://git.drupalcode.org/project/metatag.git",
  4828. "reference": "8.x-1.10"
  4829. },
  4830. "dist": {
  4831. "type": "zip",
  4832. "url": "https://ftp.drupal.org/files/projects/metatag-8.x-1.10.zip",
  4833. "reference": "8.x-1.10",
  4834. "shasum": "06275ae0f72cfcdbec8b8e8fd5d0863a5967bbcc"
  4835. },
  4836. "require": {
  4837. "drupal/core": "*",
  4838. "drupal/token": "^1.0"
  4839. },
  4840. "require-dev": {
  4841. "drupal/devel": "^2.0",
  4842. "drupal/metatag_dc": "*",
  4843. "drupal/metatag_open_graph": "*",
  4844. "drupal/page_manager": "^4.0",
  4845. "drupal/redirect": "^1.0",
  4846. "drupal/restui": "^1.0",
  4847. "drupal/schema_metatag": "^1.0",
  4848. "drupal/schema_web_page": "*"
  4849. },
  4850. "type": "drupal-module",
  4851. "extra": {
  4852. "branch-alias": {
  4853. "dev-1.x": "1.x-dev"
  4854. },
  4855. "drupal": {
  4856. "version": "8.x-1.10",
  4857. "datestamp": "1567099985",
  4858. "security-coverage": {
  4859. "status": "covered",
  4860. "message": "Covered by Drupal's security advisory policy"
  4861. }
  4862. }
  4863. },
  4864. "notification-url": "https://packages.drupal.org/8/downloads",
  4865. "license": [
  4866. "GPL-2.0+"
  4867. ],
  4868. "authors": [
  4869. {
  4870. "name": "See contributors",
  4871. "homepage": "https://www.drupal.org/node/640498/committers",
  4872. "role": "Developer"
  4873. },
  4874. {
  4875. "name": "Dave Reid",
  4876. "homepage": "https://www.drupal.org/user/53892"
  4877. }
  4878. ],
  4879. "description": "Manage meta tags for all entities.",
  4880. "homepage": "https://www.drupal.org/project/metatag",
  4881. "keywords": [
  4882. "Drupal",
  4883. "seo"
  4884. ],
  4885. "support": {
  4886. "source": "http://cgit.drupalcode.org/metatag",
  4887. "issues": "http://drupal.org/project/issues/metatag"
  4888. }
  4889. },
  4890. {
  4891. "name": "drupal/migrate_plus",
  4892. "version": "4.2.0",
  4893. "source": {
  4894. "type": "git",
  4895. "url": "https://git.drupalcode.org/project/migrate_plus.git",
  4896. "reference": "8.x-4.2"
  4897. },
  4898. "dist": {
  4899. "type": "zip",
  4900. "url": "https://ftp.drupal.org/files/projects/migrate_plus-8.x-4.2.zip",
  4901. "reference": "8.x-4.2",
  4902. "shasum": "5736a43e39cc5c091d54ceef2849ea35ba979af3"
  4903. },
  4904. "require": {
  4905. "drupal/core": "^8.3"
  4906. },
  4907. "require-dev": {
  4908. "drupal/entity": "*",
  4909. "drupal/migrate_example_advanced_setup": "*",
  4910. "drupal/migrate_example_setup": "*",
  4911. "drupal/migrate_tools": "*",
  4912. "drupal/profile": "*"
  4913. },
  4914. "suggest": {
  4915. "ext-soap": "*",
  4916. "sainsburys/guzzle-oauth2-plugin": "3.0 required for the OAuth2 authentication plugin"
  4917. },
  4918. "type": "drupal-module",
  4919. "extra": {
  4920. "branch-alias": {
  4921. "dev-4.x": "4.x-dev"
  4922. },
  4923. "drupal": {
  4924. "version": "8.x-4.2",
  4925. "datestamp": "1555683487",
  4926. "security-coverage": {
  4927. "status": "covered",
  4928. "message": "Covered by Drupal's security advisory policy"
  4929. }
  4930. }
  4931. },
  4932. "notification-url": "https://packages.drupal.org/8/downloads",
  4933. "license": [
  4934. "GPL-2.0+"
  4935. ],
  4936. "authors": [
  4937. {
  4938. "name": "Mike Ryan",
  4939. "homepage": "https://www.drupal.org/u/mikeryan",
  4940. "role": "Maintainer"
  4941. },
  4942. {
  4943. "name": "mikeryan",
  4944. "homepage": "https://www.drupal.org/user/4420"
  4945. }
  4946. ],
  4947. "description": "Enhancements to core migration support.",
  4948. "homepage": "https://www.drupal.org/project/migrate_plus",
  4949. "support": {
  4950. "source": "https://cgit.drupalcode.org/migrate_plus",
  4951. "issues": "https://www.drupal.org/project/issues/migrate_plus",
  4952. "irc": "irc://irc.freenode.org/drupal-migrate"
  4953. }
  4954. },
  4955. {
  4956. "name": "drupal/migrate_tools",
  4957. "version": "4.4.0",
  4958. "source": {
  4959. "type": "git",
  4960. "url": "https://git.drupalcode.org/project/migrate_tools.git",
  4961. "reference": "8.x-4.4"
  4962. },
  4963. "dist": {
  4964. "type": "zip",
  4965. "url": "https://ftp.drupal.org/files/projects/migrate_tools-8.x-4.4.zip",
  4966. "reference": "8.x-4.4",
  4967. "shasum": "54a9f138809564c7e89d0e37e9fbb2ed57b562e2"
  4968. },
  4969. "require": {
  4970. "drupal/core": "^8.3",
  4971. "drupal/migrate_plus": "^4 || ^5"
  4972. },
  4973. "require-dev": {
  4974. "drupal/migrate_plus": "4.x-dev",
  4975. "drupal/migrate_source_csv": "^2.2",
  4976. "drush/drush": "^10"
  4977. },
  4978. "type": "drupal-module",
  4979. "extra": {
  4980. "branch-alias": {
  4981. "dev-4.x": "4.x-dev"
  4982. },
  4983. "drupal": {
  4984. "version": "8.x-4.4",
  4985. "datestamp": "1570477985",
  4986. "security-coverage": {
  4987. "status": "covered",
  4988. "message": "Covered by Drupal's security advisory policy"
  4989. }
  4990. },
  4991. "drush": {
  4992. "services": {
  4993. "drush.services.yml": "^9 || ^10"
  4994. }
  4995. }
  4996. },
  4997. "notification-url": "https://packages.drupal.org/8/downloads",
  4998. "license": [
  4999. "GPL-2.0-or-later"
  5000. ],
  5001. "authors": [
  5002. {
  5003. "name": "heddn",
  5004. "homepage": "https://www.drupal.org/user/1463982"
  5005. },
  5006. {
  5007. "name": "mikeryan",
  5008. "homepage": "https://www.drupal.org/user/4420"
  5009. },
  5010. {
  5011. "name": "moshe weitzman",
  5012. "homepage": "https://www.drupal.org/user/23"
  5013. }
  5014. ],
  5015. "description": "Tools to assist in developing and running migrations.",
  5016. "homepage": "http://drupal.org/project/migrate_tools",
  5017. "support": {
  5018. "source": "http://cgit.drupalcode.org/migrate_tools",
  5019. "issues": "http://drupal.org/project/migrate_tools",
  5020. "irc": "irc://irc.freenode.org/drupal-migrate"
  5021. }
  5022. },
  5023. {
  5024. "name": "drupal/path_alias_xt",
  5025. "version": "dev-1.x",
  5026. "source": {
  5027. "type": "git",
  5028. "url": "https://git.drupalcode.org/project/path_alias_xt.git",
  5029. "reference": "30e7fc03f4f8572516160ea3a7d7282653e71818"
  5030. },
  5031. "require": {
  5032. "drupal/core": "*"
  5033. },
  5034. "type": "drupal-module",
  5035. "extra": {
  5036. "branch-alias": {
  5037. "dev-1.x": "1.x-dev"
  5038. },
  5039. "drupal": {
  5040. "version": "8.x-1.x-dev",
  5041. "datestamp": "1557514381",
  5042. "security-coverage": {
  5043. "status": "not-covered",
  5044. "message": "Dev releases are not covered by Drupal security advisories."
  5045. }
  5046. }
  5047. },
  5048. "notification-url": "https://packages.drupal.org/8/downloads",
  5049. "license": [
  5050. "GPL-2.0-or-later"
  5051. ],
  5052. "authors": [
  5053. {
  5054. "name": "RdeBoer",
  5055. "homepage": "https://www.drupal.org/user/404007"
  5056. },
  5057. {
  5058. "name": "adriancid",
  5059. "homepage": "https://www.drupal.org/user/1962106"
  5060. },
  5061. {
  5062. "name": "sdstyles",
  5063. "homepage": "https://www.drupal.org/user/1420228"
  5064. }
  5065. ],
  5066. "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.",
  5067. "homepage": "https://www.drupal.org/project/path_alias_xt",
  5068. "support": {
  5069. "source": "https://git.drupalcode.org/project/path_alias_xt"
  5070. },
  5071. "time": "2019-05-28T17:44:23+00:00"
  5072. },
  5073. {
  5074. "name": "drupal/pathauto",
  5075. "version": "1.5.0",
  5076. "source": {
  5077. "type": "git",
  5078. "url": "https://git.drupalcode.org/project/pathauto.git",
  5079. "reference": "8.x-1.5"
  5080. },
  5081. "dist": {
  5082. "type": "zip",
  5083. "url": "https://ftp.drupal.org/files/projects/pathauto-8.x-1.5.zip",
  5084. "reference": "8.x-1.5",
  5085. "shasum": "ae3c13f26d625e63da3b13dc64016888eca519c7"
  5086. },
  5087. "require": {
  5088. "drupal/core": "^8.6",
  5089. "drupal/ctools": "*",
  5090. "drupal/token": "*"
  5091. },
  5092. "type": "drupal-module",
  5093. "extra": {
  5094. "branch-alias": {
  5095. "dev-1.x": "1.x-dev"
  5096. },
  5097. "drupal": {
  5098. "version": "8.x-1.5",
  5099. "datestamp": "1570828084",
  5100. "security-coverage": {
  5101. "status": "covered",
  5102. "message": "Covered by Drupal's security advisory policy"
  5103. }
  5104. }
  5105. },
  5106. "notification-url": "https://packages.drupal.org/8/downloads",
  5107. "license": [
  5108. "GPL-2.0-or-later"
  5109. ],
  5110. "authors": [
  5111. {
  5112. "name": "Berdir",
  5113. "homepage": "https://www.drupal.org/user/214652"
  5114. },
  5115. {
  5116. "name": "Dave Reid",
  5117. "homepage": "https://www.drupal.org/user/53892"
  5118. },
  5119. {
  5120. "name": "Freso",
  5121. "homepage": "https://www.drupal.org/user/27504"
  5122. },
  5123. {
  5124. "name": "greggles",
  5125. "homepage": "https://www.drupal.org/user/36762"
  5126. }
  5127. ],
  5128. "description": "Provides a mechanism for modules to automatically generate aliases for the content they manage.",
  5129. "homepage": "https://www.drupal.org/project/pathauto",
  5130. "support": {
  5131. "source": "https://git.drupalcode.org/project/pathauto"
  5132. }
  5133. },
  5134. {
  5135. "name": "drupal/piwik",
  5136. "version": "1.4.0",
  5137. "source": {
  5138. "type": "git",
  5139. "url": "https://git.drupalcode.org/project/piwik.git",
  5140. "reference": "8.x-1.4"
  5141. },
  5142. "dist": {
  5143. "type": "zip",
  5144. "url": "https://ftp.drupal.org/files/projects/piwik-8.x-1.4.zip",
  5145. "reference": "8.x-1.4",
  5146. "shasum": "3692831f4b3de636e90679fb052ba8f30e49ac97"
  5147. },
  5148. "require": {
  5149. "drupal/core": "~8.0",
  5150. "drupal/matomo": "^1.0"
  5151. },
  5152. "require-dev": {
  5153. "drupal/php": "*",
  5154. "drupal/token": "*"
  5155. },
  5156. "type": "drupal-module",
  5157. "extra": {
  5158. "branch-alias": {
  5159. "dev-1.x": "1.x-dev"
  5160. },
  5161. "drupal": {
  5162. "version": "8.x-1.4",
  5163. "datestamp": "1530437786",
  5164. "security-coverage": {
  5165. "status": "covered",
  5166. "message": "Covered by Drupal's security advisory policy"
  5167. }
  5168. }
  5169. },
  5170. "notification-url": "https://packages.drupal.org/8/downloads",
  5171. "license": [
  5172. "GPL-2.0+"
  5173. ],
  5174. "authors": [
  5175. {
  5176. "name": "hass",
  5177. "homepage": "https://www.drupal.org/u/hass"
  5178. },
  5179. {
  5180. "name": "See other contributors",
  5181. "homepage": "https://www.drupal.org/node/247808/committers"
  5182. }
  5183. ],
  5184. "description": "Adds Piwik javascript tracking code to all your site's pages",
  5185. "homepage": "https://www.drupal.org/project/piwik",
  5186. "support": {
  5187. "source": "http://git.drupal.org/project/piwik.git",
  5188. "issues": "https://www.drupal.org/project/issues/piwik"
  5189. }
  5190. },
  5191. {
  5192. "name": "drupal/profile",
  5193. "version": "1.0.0",
  5194. "source": {
  5195. "type": "git",
  5196. "url": "https://git.drupalcode.org/project/profile.git",
  5197. "reference": "8.x-1.0"
  5198. },
  5199. "dist": {
  5200. "type": "zip",
  5201. "url": "https://ftp.drupal.org/files/projects/profile-8.x-1.0.zip",
  5202. "reference": "8.x-1.0",
  5203. "shasum": "45f5ad7f274d5e1e7ec8b72d98f9a20136073112"
  5204. },
  5205. "require": {
  5206. "drupal/core": "^8.6",
  5207. "drupal/entity": "^1.0-rc2"
  5208. },
  5209. "require-dev": {
  5210. "drupal/token": "^1.0"
  5211. },
  5212. "type": "drupal-module",
  5213. "extra": {
  5214. "branch-alias": {
  5215. "dev-1.x": "1.x-dev"
  5216. },
  5217. "drupal": {
  5218. "version": "8.x-1.0",
  5219. "datestamp": "1567007888",
  5220. "security-coverage": {
  5221. "status": "covered",
  5222. "message": "Covered by Drupal's security advisory policy"
  5223. }
  5224. }
  5225. },
  5226. "notification-url": "https://packages.drupal.org/8/downloads",
  5227. "license": [
  5228. "GPL-2.0+"
  5229. ],
  5230. "authors": [
  5231. {
  5232. "name": "bojanz",
  5233. "homepage": "https://www.drupal.org/user/86106"
  5234. },
  5235. {
  5236. "name": "daggerhart",
  5237. "homepage": "https://www.drupal.org/user/167806"
  5238. },
  5239. {
  5240. "name": "fago",
  5241. "homepage": "https://www.drupal.org/user/16747"
  5242. },
  5243. {
  5244. "name": "jsacksick",
  5245. "homepage": "https://www.drupal.org/user/972218"
  5246. },
  5247. {
  5248. "name": "mglaman",
  5249. "homepage": "https://www.drupal.org/user/2416470"
  5250. },
  5251. {
  5252. "name": "pcambra",
  5253. "homepage": "https://www.drupal.org/user/122101"
  5254. }
  5255. ],
  5256. "description": "Provides configurable user profiles.",
  5257. "homepage": "http://drupal.org/project/profile",
  5258. "support": {
  5259. "source": "https://git.drupalcode.org/project/profile"
  5260. }
  5261. },
  5262. {
  5263. "name": "drupal/redirect",
  5264. "version": "1.4.0",
  5265. "source": {
  5266. "type": "git",
  5267. "url": "https://git.drupalcode.org/project/redirect.git",
  5268. "reference": "8.x-1.4"
  5269. },
  5270. "dist": {
  5271. "type": "zip",
  5272. "url": "https://ftp.drupal.org/files/projects/redirect-8.x-1.4.zip",
  5273. "reference": "8.x-1.4",
  5274. "shasum": "4c7e0dc0ab0cbcc7d66e16cc684882c0eaa71c1c"
  5275. },
  5276. "require": {
  5277. "drupal/core": "~8"
  5278. },
  5279. "type": "drupal-module",
  5280. "extra": {
  5281. "branch-alias": {
  5282. "dev-1.x": "1.x-dev"
  5283. },
  5284. "drupal": {
  5285. "version": "8.x-1.4",
  5286. "datestamp": "1561757585",
  5287. "security-coverage": {
  5288. "status": "covered",
  5289. "message": "Covered by Drupal's security advisory policy"
  5290. }
  5291. }
  5292. },
  5293. "notification-url": "https://packages.drupal.org/8/downloads",
  5294. "license": [
  5295. "GPL-2.0+"
  5296. ],
  5297. "authors": [
  5298. {
  5299. "name": "Berdir",
  5300. "homepage": "https://www.drupal.org/user/214652"
  5301. },
  5302. {
  5303. "name": "Dave Reid",
  5304. "homepage": "https://www.drupal.org/user/53892"
  5305. },
  5306. {
  5307. "name": "pifagor",
  5308. "homepage": "https://www.drupal.org/user/2375692"
  5309. }
  5310. ],
  5311. "description": "Allows users to redirect from old URLs to new URLs.",
  5312. "homepage": "https://www.drupal.org/project/redirect",
  5313. "support": {
  5314. "source": "https://git.drupalcode.org/project/redirect"
  5315. }
  5316. },
  5317. {
  5318. "name": "drupal/redis",
  5319. "version": "1.2.0",
  5320. "source": {
  5321. "type": "git",
  5322. "url": "https://git.drupalcode.org/project/redis.git",
  5323. "reference": "8.x-1.2"
  5324. },
  5325. "dist": {
  5326. "type": "zip",
  5327. "url": "https://ftp.drupal.org/files/projects/redis-8.x-1.2.zip",
  5328. "reference": "8.x-1.2",
  5329. "shasum": "6b8847a0816a6e400d495aed1e9dde4c594d6e2b"
  5330. },
  5331. "require": {
  5332. "drupal/core": "~8.0"
  5333. },
  5334. "suggest": {
  5335. "predis/predis": "^1.1.1"
  5336. },
  5337. "type": "drupal-module",
  5338. "extra": {
  5339. "branch-alias": {
  5340. "dev-1.x": "1.x-dev"
  5341. },
  5342. "drupal": {
  5343. "version": "8.x-1.2",
  5344. "datestamp": "1568275684",
  5345. "security-coverage": {
  5346. "status": "covered",
  5347. "message": "Covered by Drupal's security advisory policy"
  5348. }
  5349. }
  5350. },
  5351. "autoload": {
  5352. "psr-4": {
  5353. "Drupal\\redis\\": "src"
  5354. }
  5355. },
  5356. "notification-url": "https://packages.drupal.org/8/downloads",
  5357. "license": [
  5358. "GPL-2.0"
  5359. ],
  5360. "authors": [
  5361. {
  5362. "name": "Berdir",
  5363. "homepage": "https://www.drupal.org/user/214652"
  5364. },
  5365. {
  5366. "name": "pounard",
  5367. "homepage": "https://www.drupal.org/user/240164"
  5368. }
  5369. ],
  5370. "description": "Provide a module placeholder, for using as dependency for module that needs Redis.",
  5371. "homepage": "https://www.drupal.org/project/redis",
  5372. "support": {
  5373. "source": "https://git.drupalcode.org/project/redis"
  5374. }
  5375. },
  5376. {
  5377. "name": "drupal/restui",
  5378. "version": "1.17.0",
  5379. "source": {
  5380. "type": "git",
  5381. "url": "https://git.drupalcode.org/project/restui.git",
  5382. "reference": "8.x-1.17"
  5383. },
  5384. "dist": {
  5385. "type": "zip",
  5386. "url": "https://ftp.drupal.org/files/projects/restui-8.x-1.17.zip",
  5387. "reference": "8.x-1.17",
  5388. "shasum": "2fff1b74759d5e490884d002330ad04d1bf241ba"
  5389. },
  5390. "require": {
  5391. "drupal/core": "^8.2.0"
  5392. },
  5393. "type": "drupal-module",
  5394. "extra": {
  5395. "branch-alias": {
  5396. "dev-1.x": "1.x-dev"
  5397. },
  5398. "drupal": {
  5399. "version": "8.x-1.17",
  5400. "datestamp": "1557845581",
  5401. "security-coverage": {
  5402. "status": "covered",
  5403. "message": "Covered by Drupal's security advisory policy"
  5404. }
  5405. }
  5406. },
  5407. "notification-url": "https://packages.drupal.org/8/downloads",
  5408. "license": [
  5409. "GPL-2.0-or-later"
  5410. ],
  5411. "authors": [
  5412. {
  5413. "name": "-enzo-",
  5414. "homepage": "https://www.drupal.org/user/294937"
  5415. },
  5416. {
  5417. "name": "clemens.tolboom",
  5418. "homepage": "https://www.drupal.org/user/125814"
  5419. },
  5420. {
  5421. "name": "juampynr",
  5422. "homepage": "https://www.drupal.org/user/682736"
  5423. },
  5424. {
  5425. "name": "klausi",
  5426. "homepage": "https://www.drupal.org/user/262198"
  5427. }
  5428. ],
  5429. "description": "Provides a user interface to manage REST resources.",
  5430. "homepage": "https://www.drupal.org/project/restui",
  5431. "support": {
  5432. "source": "https://git.drupalcode.org/project/restui"
  5433. }
  5434. },
  5435. {
  5436. "name": "drupal/search_api",
  5437. "version": "1.15.0",
  5438. "source": {
  5439. "type": "git",
  5440. "url": "https://git.drupalcode.org/project/search_api.git",
  5441. "reference": "8.x-1.15"
  5442. },
  5443. "dist": {
  5444. "type": "zip",
  5445. "url": "https://ftp.drupal.org/files/projects/search_api-8.x-1.15.zip",
  5446. "reference": "8.x-1.15",
  5447. "shasum": "12c13141adb6b687fe36781ac9269a49ef810323"
  5448. },
  5449. "require": {
  5450. "drupal/core": "^8.6"
  5451. },
  5452. "conflict": {
  5453. "drupal/search_api_solr": "2.* || 3.0 || 3.1"
  5454. },
  5455. "require-dev": {
  5456. "drupal/language_fallback_fix": "@dev",
  5457. "drupal/search_api_autocomplete": "@dev",
  5458. "drupal/search_api_db": "*"
  5459. },
  5460. "suggest": {
  5461. "drupal/facets": "Adds the ability to create faceted searches.",
  5462. "drupal/search_api_autocomplete": "Allows adding autocomplete suggestions to search fields.",
  5463. "drupal/search_api_solr": "Adds support for using Apache Solr as a backend."
  5464. },
  5465. "type": "drupal-module",
  5466. "extra": {
  5467. "branch-alias": {
  5468. "dev-1.x": "1.x-dev"
  5469. },
  5470. "drupal": {
  5471. "version": "8.x-1.15",
  5472. "datestamp": "1573122785",
  5473. "security-coverage": {
  5474. "status": "covered",
  5475. "message": "Covered by Drupal's security advisory policy"
  5476. }
  5477. },
  5478. "drush": {
  5479. "services": {
  5480. "drush.services.yml": "^9"
  5481. }
  5482. }
  5483. },
  5484. "notification-url": "https://packages.drupal.org/8/downloads",
  5485. "license": [
  5486. "GPL-2.0+"
  5487. ],
  5488. "authors": [
  5489. {
  5490. "name": "Thomas Seidl",
  5491. "homepage": "https://www.drupal.org/u/drunken-monkey"
  5492. },
  5493. {
  5494. "name": "Nick Veenhof",
  5495. "homepage": "https://www.drupal.org/u/nick_vh"
  5496. },
  5497. {
  5498. "name": "See other contributors",
  5499. "homepage": "https://www.drupal.org/node/790418/committers"
  5500. }
  5501. ],
  5502. "description": "Provides a generic framework for modules offering search capabilities.",
  5503. "homepage": "https://www.drupal.org/project/search_api",
  5504. "support": {
  5505. "source": "http://git.drupal.org/project/search_api.git",
  5506. "issues": "https://www.drupal.org/project/issues/search_api",
  5507. "irc": "irc://irc.freenode.org/drupal-search-api"
  5508. }
  5509. },
  5510. {
  5511. "name": "drupal/simple_sitemap",
  5512. "version": "3.4.0",
  5513. "source": {
  5514. "type": "git",
  5515. "url": "https://git.drupalcode.org/project/simple_sitemap.git",
  5516. "reference": "8.x-3.4"
  5517. },
  5518. "dist": {
  5519. "type": "zip",
  5520. "url": "https://ftp.drupal.org/files/projects/simple_sitemap-8.x-3.4.zip",
  5521. "reference": "8.x-3.4",
  5522. "shasum": "7cb1944ca2659e426e20680ef8e7cd48747545c8"
  5523. },
  5524. "require": {
  5525. "drupal/core": "~8.0",
  5526. "ext-xmlwriter": "*"
  5527. },
  5528. "type": "drupal-module",
  5529. "extra": {
  5530. "branch-alias": {
  5531. "dev-3.x": "3.x-dev"
  5532. },
  5533. "drupal": {
  5534. "version": "8.x-3.4",
  5535. "datestamp": "1570445886",
  5536. "security-coverage": {
  5537. "status": "covered",
  5538. "message": "Covered by Drupal's security advisory policy"
  5539. }
  5540. },
  5541. "drush": {
  5542. "services": {
  5543. "drush.services.yml": "^9"
  5544. }
  5545. }
  5546. },
  5547. "notification-url": "https://packages.drupal.org/8/downloads",
  5548. "license": [
  5549. "GPL-2.0+"
  5550. ],
  5551. "authors": [
  5552. {
  5553. "name": "Pawel Ginalski (gbyte.co)",
  5554. "homepage": "https://www.drupal.org/u/gbyte.co",
  5555. "email": "contact@gbyte.co",
  5556. "role": "Maintainer"
  5557. },
  5558. {
  5559. "name": "gbyte.co",
  5560. "homepage": "https://www.drupal.org/user/2381352"
  5561. }
  5562. ],
  5563. "description": "Creates a standard conform hreflang XML sitemap of the site content and provides a framework for developing other sitemap types.",
  5564. "homepage": "https://drupal.org/project/simple_sitemap",
  5565. "support": {
  5566. "source": "https://cgit.drupalcode.org/simple_sitemap",
  5567. "issues": "https://drupal.org/project/issues/simple_sitemap",
  5568. "irc": "irc://irc.freenode.org/drupal-contribute"
  5569. }
  5570. },
  5571. {
  5572. "name": "drupal/synonyms",
  5573. "version": "dev-1.x",
  5574. "source": {
  5575. "type": "git",
  5576. "url": "https://git.drupalcode.org/project/synonyms.git",
  5577. "reference": "5327ef244bad11e859eed9ff71b49cb8f9955190"
  5578. },
  5579. "require": {
  5580. "drupal/core": "^8.2"
  5581. },
  5582. "type": "drupal-module",
  5583. "extra": {
  5584. "branch-alias": {
  5585. "dev-1.x": "1.x-dev"
  5586. },
  5587. "drupal": {
  5588. "version": "8.x-1.0-alpha1+5-dev",
  5589. "datestamp": "1540141681",
  5590. "security-coverage": {
  5591. "status": "not-covered",
  5592. "message": "Dev releases are not covered by Drupal security advisories."
  5593. }
  5594. }
  5595. },
  5596. "notification-url": "https://packages.drupal.org/8/downloads",
  5597. "license": [
  5598. "GPL-2.0-or-later"
  5599. ],
  5600. "authors": [
  5601. {
  5602. "name": "Zen",
  5603. "homepage": "https://www.drupal.org/user/21209"
  5604. },
  5605. {
  5606. "name": "bojanz",
  5607. "homepage": "https://www.drupal.org/user/86106"
  5608. },
  5609. {
  5610. "name": "bucefal91",
  5611. "homepage": "https://www.drupal.org/user/504128"
  5612. }
  5613. ],
  5614. "description": "Provides synonyms feature for content entities.",
  5615. "homepage": "https://www.drupal.org/project/synonyms",
  5616. "support": {
  5617. "source": "https://git.drupalcode.org/project/synonyms"
  5618. },
  5619. "time": "2018-10-21T17:05:25+00:00"
  5620. },
  5621. {
  5622. "name": "drupal/token",
  5623. "version": "1.5.0",
  5624. "source": {
  5625. "type": "git",
  5626. "url": "https://git.drupalcode.org/project/token.git",
  5627. "reference": "8.x-1.5"
  5628. },
  5629. "dist": {
  5630. "type": "zip",
  5631. "url": "https://ftp.drupal.org/files/projects/token-8.x-1.5.zip",
  5632. "reference": "8.x-1.5",
  5633. "shasum": "6382a7e1aabbd8246f1117a26bf4916d285b401d"
  5634. },
  5635. "require": {
  5636. "drupal/core": "^8.5"
  5637. },
  5638. "type": "drupal-module",
  5639. "extra": {
  5640. "branch-alias": {
  5641. "dev-1.x": "1.x-dev"
  5642. },
  5643. "drupal": {
  5644. "version": "8.x-1.5",
  5645. "datestamp": "1537557481",
  5646. "security-coverage": {
  5647. "status": "covered",
  5648. "message": "Covered by Drupal's security advisory policy"
  5649. }
  5650. }
  5651. },
  5652. "notification-url": "https://packages.drupal.org/8/downloads",
  5653. "license": [
  5654. "GPL-2.0-or-later"
  5655. ],
  5656. "authors": [
  5657. {
  5658. "name": "Berdir",
  5659. "homepage": "https://www.drupal.org/user/214652"
  5660. },
  5661. {
  5662. "name": "Dave Reid",
  5663. "homepage": "https://www.drupal.org/user/53892"
  5664. },
  5665. {
  5666. "name": "eaton",
  5667. "homepage": "https://www.drupal.org/user/16496"
  5668. },
  5669. {
  5670. "name": "fago",
  5671. "homepage": "https://www.drupal.org/user/16747"
  5672. },
  5673. {
  5674. "name": "greggles",
  5675. "homepage": "https://www.drupal.org/user/36762"
  5676. },
  5677. {
  5678. "name": "mikeryan",
  5679. "homepage": "https://www.drupal.org/user/4420"
  5680. }
  5681. ],
  5682. "description": "Provides a user interface for the Token API and some missing core tokens.",
  5683. "homepage": "https://www.drupal.org/project/token",
  5684. "support": {
  5685. "source": "https://git.drupalcode.org/project/token"
  5686. }
  5687. },
  5688. {
  5689. "name": "drupal/toolbar_themes",
  5690. "version": "dev-1.x",
  5691. "source": {
  5692. "type": "git",
  5693. "url": "https://git.drupalcode.org/project/toolbar_themes.git",
  5694. "reference": "62e79c8635ec13fe5a4dd67b87f698a14822c044"
  5695. },
  5696. "require": {
  5697. "drupal/core": "*"
  5698. },
  5699. "type": "drupal-module",
  5700. "extra": {
  5701. "branch-alias": {
  5702. "dev-1.x": "1.x-dev"
  5703. },
  5704. "drupal": {
  5705. "version": "8.x-1.0-alpha4+10-dev",
  5706. "datestamp": "1510689485",
  5707. "security-coverage": {
  5708. "status": "not-covered",
  5709. "message": "Project has not opted into security advisory coverage!"
  5710. }
  5711. }
  5712. },
  5713. "notification-url": "https://packages.drupal.org/8/downloads",
  5714. "license": [
  5715. "GPL-2.0-or-later"
  5716. ],
  5717. "authors": [
  5718. {
  5719. "name": "Jeff Burnz",
  5720. "homepage": "https://www.drupal.org/user/61393"
  5721. }
  5722. ],
  5723. "description": "Apply themes to the toolbar.",
  5724. "homepage": "https://www.drupal.org/project/toolbar_themes",
  5725. "support": {
  5726. "source": "https://git.drupalcode.org/project/toolbar_themes"
  5727. },
  5728. "time": "2017-11-14T19:57:02+00:00"
  5729. },
  5730. {
  5731. "name": "drupal/translation_views",
  5732. "version": "1.0.0-alpha8",
  5733. "source": {
  5734. "type": "git",
  5735. "url": "https://git.drupalcode.org/project/translation_views.git",
  5736. "reference": "8.x-1.0-alpha8"
  5737. },
  5738. "dist": {
  5739. "type": "zip",
  5740. "url": "https://ftp.drupal.org/files/projects/translation_views-8.x-1.0-alpha8.zip",
  5741. "reference": "8.x-1.0-alpha8",
  5742. "shasum": "5903869f77129aa46daf46cd9a34bd9706072eb5"
  5743. },
  5744. "require": {
  5745. "drupal/core": "*"
  5746. },
  5747. "require-dev": {
  5748. "drupal/translators": "*",
  5749. "drupal/translators_content": "*"
  5750. },
  5751. "type": "drupal-module",
  5752. "extra": {
  5753. "branch-alias": {
  5754. "dev-1.x": "1.x-dev"
  5755. },
  5756. "drupal": {
  5757. "version": "8.x-1.0-alpha8",
  5758. "datestamp": "1572571385",
  5759. "security-coverage": {
  5760. "status": "not-covered",
  5761. "message": "Project has not opted into security advisory coverage!"
  5762. }
  5763. }
  5764. },
  5765. "notification-url": "https://packages.drupal.org/8/downloads",
  5766. "license": [
  5767. "GPL-2.0-or-later"
  5768. ],
  5769. "authors": [
  5770. {
  5771. "name": "matsbla",
  5772. "homepage": "https://www.drupal.org/user/2325394"
  5773. },
  5774. {
  5775. "name": "vlad.dancer",
  5776. "homepage": "https://www.drupal.org/user/903844"
  5777. }
  5778. ],
  5779. "description": "Create customized lists and queries of translations from your database.",
  5780. "homepage": "https://www.drupal.org/project/translation_views",
  5781. "support": {
  5782. "source": "https://git.drupalcode.org/project/translation_views"
  5783. }
  5784. },
  5785. {
  5786. "name": "drupal/url_to_video_filter",
  5787. "version": "1.3.0",
  5788. "source": {
  5789. "type": "git",
  5790. "url": "https://git.drupalcode.org/project/url_to_video_filter.git",
  5791. "reference": "8.x-1.3"
  5792. },
  5793. "dist": {
  5794. "type": "zip",
  5795. "url": "https://ftp.drupal.org/files/projects/url_to_video_filter-8.x-1.3.zip",
  5796. "reference": "8.x-1.3",
  5797. "shasum": "40a27d1d8948638c0202c1b0c8afe0d92f8362a6"
  5798. },
  5799. "require": {
  5800. "drupal/core": "~8.0"
  5801. },
  5802. "type": "drupal-module",
  5803. "extra": {
  5804. "branch-alias": {
  5805. "dev-1.x": "1.x-dev"
  5806. },
  5807. "drupal": {
  5808. "version": "8.x-1.3",
  5809. "datestamp": "1532695981",
  5810. "security-coverage": {
  5811. "status": "covered",
  5812. "message": "Covered by Drupal's security advisory policy"
  5813. }
  5814. }
  5815. },
  5816. "notification-url": "https://packages.drupal.org/8/downloads",
  5817. "license": [
  5818. "GPL-2.0-or-later"
  5819. ],
  5820. "authors": [
  5821. {
  5822. "name": "Jaypan",
  5823. "homepage": "https://www.drupal.org/user/324696"
  5824. }
  5825. ],
  5826. "description": "Text filter to convert URLs to embedded videos",
  5827. "homepage": "https://www.drupal.org/project/url_to_video_filter",
  5828. "support": {
  5829. "source": "https://git.drupalcode.org/project/url_to_video_filter"
  5830. }
  5831. },
  5832. {
  5833. "name": "drupal/views_bulk_edit",
  5834. "version": "2.4.0",
  5835. "source": {
  5836. "type": "git",
  5837. "url": "https://git.drupalcode.org/project/views_bulk_edit.git",
  5838. "reference": "8.x-2.4"
  5839. },
  5840. "dist": {
  5841. "type": "zip",
  5842. "url": "https://ftp.drupal.org/files/projects/views_bulk_edit-8.x-2.4.zip",
  5843. "reference": "8.x-2.4",
  5844. "shasum": "039ebf9c6ae3cdd0555c7bfb97c629ebfee61ddb"
  5845. },
  5846. "require": {
  5847. "drupal/core": "*",
  5848. "drupal/views_bulk_operations": "~1.0 | ~2.0 | ~3.0"
  5849. },
  5850. "type": "drupal-module",
  5851. "extra": {
  5852. "branch-alias": {
  5853. "dev-2.x": "2.x-dev"
  5854. },
  5855. "drupal": {
  5856. "version": "8.x-2.4",
  5857. "datestamp": "1570030085",
  5858. "security-coverage": {
  5859. "status": "covered",
  5860. "message": "Covered by Drupal's security advisory policy"
  5861. }
  5862. }
  5863. },
  5864. "notification-url": "https://packages.drupal.org/8/downloads",
  5865. "license": [
  5866. "GPL-2.0+"
  5867. ],
  5868. "authors": [
  5869. {
  5870. "name": "Marcin Grabias",
  5871. "homepage": "https://www.drupal.org/u/graber"
  5872. },
  5873. {
  5874. "name": "benjy",
  5875. "homepage": "https://www.drupal.org/user/1852732"
  5876. }
  5877. ],
  5878. "description": "Allows bulk edition of entity field values.",
  5879. "homepage": "https://www.drupal.org/project/views_bulk_edit",
  5880. "support": {
  5881. "source": "https://git.drupalcode.org/project/views_bulk_edit",
  5882. "issues": "https://www.drupal.org/project/issues/views_bulk_edit?version=8.x"
  5883. }
  5884. },
  5885. {
  5886. "name": "drupal/views_bulk_operations",
  5887. "version": "3.3.0",
  5888. "source": {
  5889. "type": "git",
  5890. "url": "https://git.drupalcode.org/project/views_bulk_operations.git",
  5891. "reference": "8.x-3.3"
  5892. },
  5893. "dist": {
  5894. "type": "zip",
  5895. "url": "https://ftp.drupal.org/files/projects/views_bulk_operations-8.x-3.3.zip",
  5896. "reference": "8.x-3.3",
  5897. "shasum": "480fec7c4a21ce8a57328af45735b5086a5bd178"
  5898. },
  5899. "require": {
  5900. "drupal/core": "~8.5"
  5901. },
  5902. "type": "drupal-module",
  5903. "extra": {
  5904. "branch-alias": {
  5905. "dev-3.x": "3.x-dev"
  5906. },
  5907. "drupal": {
  5908. "version": "8.x-3.3",
  5909. "datestamp": "1570032485",
  5910. "security-coverage": {
  5911. "status": "covered",
  5912. "message": "Covered by Drupal's security advisory policy"
  5913. }
  5914. },
  5915. "drush": {
  5916. "services": {
  5917. "drush.services.yml": "^9"
  5918. }
  5919. }
  5920. },
  5921. "notification-url": "https://packages.drupal.org/8/downloads",
  5922. "license": [
  5923. "GPL-2.0+"
  5924. ],
  5925. "authors": [
  5926. {
  5927. "name": "Marcin Grabias",
  5928. "homepage": "https://www.drupal.org/u/graber"
  5929. },
  5930. {
  5931. "name": "Jon Pugh",
  5932. "homepage": "https://www.drupal.org/user/17028"
  5933. },
  5934. {
  5935. "name": "bojanz",
  5936. "homepage": "https://www.drupal.org/user/86106"
  5937. },
  5938. {
  5939. "name": "infojunkie",
  5940. "homepage": "https://www.drupal.org/user/48424"
  5941. },
  5942. {
  5943. "name": "joelpittet",
  5944. "homepage": "https://www.drupal.org/user/160302"
  5945. }
  5946. ],
  5947. "description": "Adds an ability to perform bulk operations on selected entities from view results. Provides an API to create such operations.",
  5948. "homepage": "https://www.drupal.org/project/views_bulk_operations",
  5949. "support": {
  5950. "source": "https://git.drupalcode.org/project/views_bulk_operations",
  5951. "issues": "https://www.drupal.org/project/issues/views_bulk_operations?version=8.x",
  5952. "docs": "https://www.drupal.org/docs/8/modules/views-bulk-operations-vbo"
  5953. }
  5954. },
  5955. {
  5956. "name": "drupal/workflow",
  5957. "version": "dev-1.x",
  5958. "source": {
  5959. "type": "git",
  5960. "url": "https://git.drupalcode.org/project/workflow.git",
  5961. "reference": "920f1e5acc99da722592eb0f3b3cb32c0e96a560"
  5962. },
  5963. "require": {
  5964. "drupal/core": "*"
  5965. },
  5966. "type": "drupal-module",
  5967. "extra": {
  5968. "branch-alias": {
  5969. "dev-1.x": "1.x-dev"
  5970. },
  5971. "drupal": {
  5972. "version": "8.x-1.1+38-dev",
  5973. "datestamp": "1571663284",
  5974. "security-coverage": {
  5975. "status": "not-covered",
  5976. "message": "Dev releases are not covered by Drupal security advisories."
  5977. }
  5978. }
  5979. },
  5980. "notification-url": "https://packages.drupal.org/8/downloads",
  5981. "license": [
  5982. "GPL-2.0-or-later"
  5983. ],
  5984. "authors": [
  5985. {
  5986. "name": "Bastlynn",
  5987. "homepage": "https://www.drupal.org/user/275249"
  5988. },
  5989. {
  5990. "name": "Heine",
  5991. "homepage": "https://www.drupal.org/user/17943"
  5992. },
  5993. {
  5994. "name": "JacobSingh",
  5995. "homepage": "https://www.drupal.org/user/68912"
  5996. },
  5997. {
  5998. "name": "NancyDru",
  5999. "homepage": "https://www.drupal.org/user/101412"
  6000. },
  6001. {
  6002. "name": "eaton",
  6003. "homepage": "https://www.drupal.org/user/16496"
  6004. },
  6005. {
  6006. "name": "johnv",
  6007. "homepage": "https://www.drupal.org/user/591042"
  6008. },
  6009. {
  6010. "name": "jvandyk",
  6011. "homepage": "https://www.drupal.org/user/2375"
  6012. },
  6013. {
  6014. "name": "mfredrickson",
  6015. "homepage": "https://www.drupal.org/user/31994"
  6016. },
  6017. {
  6018. "name": "q0rban",
  6019. "homepage": "https://www.drupal.org/user/31022"
  6020. }
  6021. ],
  6022. "description": "Defines a field type with Workflows, containing customizable state transitions.",
  6023. "homepage": "https://www.drupal.org/project/workflow",
  6024. "support": {
  6025. "source": "https://git.drupalcode.org/project/workflow"
  6026. },
  6027. "time": "2019-11-12T11:10:01+00:00"
  6028. },
  6029. {
  6030. "name": "drush/drush",
  6031. "version": "9.7.1",
  6032. "source": {
  6033. "type": "git",
  6034. "url": "https://github.com/drush-ops/drush.git",
  6035. "reference": "6f9a8d235daec06fd6f47b2d84da675750566479"
  6036. },
  6037. "dist": {
  6038. "type": "zip",
  6039. "url": "https://api.github.com/repos/drush-ops/drush/zipball/6f9a8d235daec06fd6f47b2d84da675750566479",
  6040. "reference": "6f9a8d235daec06fd6f47b2d84da675750566479",
  6041. "shasum": ""
  6042. },
  6043. "require": {
  6044. "chi-teck/drupal-code-generator": "^1.28.1",
  6045. "composer/semver": "^1.4",
  6046. "consolidation/annotated-command": "^2.12",
  6047. "consolidation/config": "^1.2",
  6048. "consolidation/filter-via-dot-access-data": "^1",
  6049. "consolidation/output-formatters": "^3.3.1",
  6050. "consolidation/robo": "^1.4.6",
  6051. "consolidation/site-alias": "^3.0.0@stable",
  6052. "consolidation/site-process": "^2.0.3",
  6053. "ext-dom": "*",
  6054. "grasmash/yaml-expander": "^1.1.1",
  6055. "league/container": "~2",
  6056. "php": ">=5.6.0",
  6057. "psr/log": "~1.0",
  6058. "psy/psysh": "~0.6",
  6059. "symfony/console": "^3.4",
  6060. "symfony/event-dispatcher": "^3.4",
  6061. "symfony/finder": "^3.4 || ^4.0",
  6062. "symfony/process": "^3.4",
  6063. "symfony/var-dumper": "^3.4 || ^4.0",
  6064. "symfony/yaml": "^3.4",
  6065. "webflo/drupal-finder": "^1.1",
  6066. "webmozart/path-util": "^2.1.0"
  6067. },
  6068. "require-dev": {
  6069. "composer/installers": "^1.2",
  6070. "cweagans/composer-patches": "~1.0",
  6071. "drupal/alinks": "1.0.0",
  6072. "drupal/devel": "^2",
  6073. "drupal/empty_theme": "1.0",
  6074. "g1a/composer-test-scenarios": "^3",
  6075. "lox/xhprof": "dev-master",
  6076. "phpunit/phpunit": "^4.8.36 || ^6.1",
  6077. "squizlabs/php_codesniffer": "^2.7 || ^3",
  6078. "vlucas/phpdotenv": "^2.4",
  6079. "webflo/drupal-core-require-dev": "8.7.x-dev",
  6080. "webflo/drupal-core-strict": "8.7.x-dev"
  6081. },
  6082. "bin": [
  6083. "drush"
  6084. ],
  6085. "type": "library",
  6086. "extra": {
  6087. "installer-paths": {
  6088. "sut/core": [
  6089. "type:drupal-core"
  6090. ],
  6091. "sut/libraries/{$name}": [
  6092. "type:drupal-library"
  6093. ],
  6094. "sut/modules/unish/{$name}": [
  6095. "drupal/devel"
  6096. ],
  6097. "sut/themes/unish/{$name}": [
  6098. "drupal/empty_theme"
  6099. ],
  6100. "sut/modules/contrib/{$name}": [
  6101. "type:drupal-module"
  6102. ],
  6103. "sut/profiles/contrib/{$name}": [
  6104. "type:drupal-profile"
  6105. ],
  6106. "sut/themes/contrib/{$name}": [
  6107. "type:drupal-theme"
  6108. ],
  6109. "sut/drush/contrib/{$name}": [
  6110. "type:drupal-drush"
  6111. ]
  6112. },
  6113. "scenarios": {
  6114. "php5": {
  6115. "config": {
  6116. "platform": {
  6117. "php": "5.6.38"
  6118. }
  6119. },
  6120. "require-dev": {
  6121. "webflo/drupal-core-strict": "8.6.x-dev",
  6122. "webflo/drupal-core-require-dev": "8.6.x-dev"
  6123. }
  6124. }
  6125. },
  6126. "branch-alias": {
  6127. "dev-master": "9.x-dev"
  6128. }
  6129. },
  6130. "autoload": {
  6131. "psr-4": {
  6132. "Drush\\": "src/",
  6133. "Drush\\Internal\\": "src/internal-forks"
  6134. }
  6135. },
  6136. "notification-url": "https://packagist.org/downloads/",
  6137. "license": [
  6138. "GPL-2.0-or-later"
  6139. ],
  6140. "authors": [
  6141. {
  6142. "name": "Moshe Weitzman",
  6143. "email": "weitzman@tejasa.com"
  6144. },
  6145. {
  6146. "name": "Owen Barton",
  6147. "email": "drupal@owenbarton.com"
  6148. },
  6149. {
  6150. "name": "Greg Anderson",
  6151. "email": "greg.1.anderson@greenknowe.org"
  6152. },
  6153. {
  6154. "name": "Jonathan Araña Cruz",
  6155. "email": "jonhattan@faita.net"
  6156. },
  6157. {
  6158. "name": "Jonathan Hedstrom",
  6159. "email": "jhedstrom@gmail.com"
  6160. },
  6161. {
  6162. "name": "Christopher Gervais",
  6163. "email": "chris@ergonlogic.com"
  6164. },
  6165. {
  6166. "name": "Dave Reid",
  6167. "email": "dave@davereid.net"
  6168. },
  6169. {
  6170. "name": "Damian Lee",
  6171. "email": "damiankloip@googlemail.com"
  6172. }
  6173. ],
  6174. "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.",
  6175. "homepage": "http://www.drush.org",
  6176. "time": "2019-06-30T19:46:39+00:00"
  6177. },
  6178. {
  6179. "name": "easyrdf/easyrdf",
  6180. "version": "0.9.1",
  6181. "source": {
  6182. "type": "git",
  6183. "url": "https://github.com/njh/easyrdf.git",
  6184. "reference": "acd09dfe0555fbcfa254291e433c45fdd4652566"
  6185. },
  6186. "dist": {
  6187. "type": "zip",
  6188. "url": "https://api.github.com/repos/njh/easyrdf/zipball/acd09dfe0555fbcfa254291e433c45fdd4652566",
  6189. "reference": "acd09dfe0555fbcfa254291e433c45fdd4652566",
  6190. "shasum": ""
  6191. },
  6192. "require": {
  6193. "ext-mbstring": "*",
  6194. "ext-pcre": "*",
  6195. "php": ">=5.2.8"
  6196. },
  6197. "require-dev": {
  6198. "phpunit/phpunit": "~3.5",
  6199. "sami/sami": "~1.4",
  6200. "squizlabs/php_codesniffer": "~1.4.3"
  6201. },
  6202. "suggest": {
  6203. "ml/json-ld": "~1.0"
  6204. },
  6205. "type": "library",
  6206. "autoload": {
  6207. "psr-0": {
  6208. "EasyRdf_": "lib/"
  6209. }
  6210. },
  6211. "notification-url": "https://packagist.org/downloads/",
  6212. "license": [
  6213. "BSD-3-Clause"
  6214. ],
  6215. "authors": [
  6216. {
  6217. "name": "Nicholas Humfrey",
  6218. "email": "njh@aelius.com",
  6219. "homepage": "http://www.aelius.com/njh/",
  6220. "role": "Developer"
  6221. },
  6222. {
  6223. "name": "Alexey Zakhlestin",
  6224. "email": "indeyets@gmail.com",
  6225. "role": "Developer"
  6226. }
  6227. ],
  6228. "description": "EasyRdf is a PHP library designed to make it easy to consume and produce RDF.",
  6229. "homepage": "http://www.easyrdf.org/",
  6230. "keywords": [
  6231. "Linked Data",
  6232. "RDF",
  6233. "Semantic Web",
  6234. "Turtle",
  6235. "rdfa",
  6236. "sparql"
  6237. ],
  6238. "time": "2015-02-27T09:45:49+00:00"
  6239. },
  6240. {
  6241. "name": "egulias/email-validator",
  6242. "version": "2.1.17",
  6243. "source": {
  6244. "type": "git",
  6245. "url": "https://github.com/egulias/EmailValidator.git",
  6246. "reference": "ade6887fd9bd74177769645ab5c474824f8a418a"
  6247. },
  6248. "dist": {
  6249. "type": "zip",
  6250. "url": "https://api.github.com/repos/egulias/EmailValidator/zipball/ade6887fd9bd74177769645ab5c474824f8a418a",
  6251. "reference": "ade6887fd9bd74177769645ab5c474824f8a418a",
  6252. "shasum": ""
  6253. },
  6254. "require": {
  6255. "doctrine/lexer": "^1.0.1",
  6256. "php": ">=5.5",
  6257. "symfony/polyfill-intl-idn": "^1.10"
  6258. },
  6259. "require-dev": {
  6260. "dominicsayers/isemail": "^3.0.7",
  6261. "phpunit/phpunit": "^4.8.36|^7.5.15",
  6262. "satooshi/php-coveralls": "^1.0.1"
  6263. },
  6264. "suggest": {
  6265. "ext-intl": "PHP Internationalization Libraries are required to use the SpoofChecking validation"
  6266. },
  6267. "type": "library",
  6268. "extra": {
  6269. "branch-alias": {
  6270. "dev-master": "2.1.x-dev"
  6271. }
  6272. },
  6273. "autoload": {
  6274. "psr-4": {
  6275. "Egulias\\EmailValidator\\": "EmailValidator"
  6276. }
  6277. },
  6278. "notification-url": "https://packagist.org/downloads/",
  6279. "license": [
  6280. "MIT"
  6281. ],
  6282. "authors": [
  6283. {
  6284. "name": "Eduardo Gulias Davis"
  6285. }
  6286. ],
  6287. "description": "A library for validating emails against several RFCs",
  6288. "homepage": "https://github.com/egulias/EmailValidator",
  6289. "keywords": [
  6290. "email",
  6291. "emailvalidation",
  6292. "emailvalidator",
  6293. "validation",
  6294. "validator"
  6295. ],
  6296. "time": "2020-02-13T22:36:52+00:00"
  6297. },
  6298. {
  6299. "name": "fabpot/goutte",
  6300. "version": "v3.2.3",
  6301. "source": {
  6302. "type": "git",
  6303. "url": "https://github.com/FriendsOfPHP/Goutte.git",
  6304. "reference": "3f0eaf0a40181359470651f1565b3e07e3dd31b8"
  6305. },
  6306. "dist": {
  6307. "type": "zip",
  6308. "url": "https://api.github.com/repos/FriendsOfPHP/Goutte/zipball/3f0eaf0a40181359470651f1565b3e07e3dd31b8",
  6309. "reference": "3f0eaf0a40181359470651f1565b3e07e3dd31b8",
  6310. "shasum": ""
  6311. },
  6312. "require": {
  6313. "guzzlehttp/guzzle": "^6.0",
  6314. "php": ">=5.5.0",
  6315. "symfony/browser-kit": "~2.1|~3.0|~4.0",
  6316. "symfony/css-selector": "~2.1|~3.0|~4.0",
  6317. "symfony/dom-crawler": "~2.1|~3.0|~4.0"
  6318. },
  6319. "require-dev": {
  6320. "symfony/phpunit-bridge": "^3.3 || ^4"
  6321. },
  6322. "type": "application",
  6323. "extra": {
  6324. "branch-alias": {
  6325. "dev-master": "3.2-dev"
  6326. }
  6327. },
  6328. "autoload": {
  6329. "psr-4": {
  6330. "Goutte\\": "Goutte"
  6331. },
  6332. "exclude-from-classmap": [
  6333. "Goutte/Tests"
  6334. ]
  6335. },
  6336. "notification-url": "https://packagist.org/downloads/",
  6337. "license": [
  6338. "MIT"
  6339. ],
  6340. "authors": [
  6341. {
  6342. "name": "Fabien Potencier",
  6343. "email": "fabien@symfony.com"
  6344. }
  6345. ],
  6346. "description": "A simple PHP Web Scraper",
  6347. "homepage": "https://github.com/FriendsOfPHP/Goutte",
  6348. "keywords": [
  6349. "scraper"
  6350. ],
  6351. "time": "2018-06-29T15:13:57+00:00"
  6352. },
  6353. {
  6354. "name": "grasmash/expander",
  6355. "version": "1.0.0",
  6356. "source": {
  6357. "type": "git",
  6358. "url": "https://github.com/grasmash/expander.git",
  6359. "reference": "95d6037344a4be1dd5f8e0b0b2571a28c397578f"
  6360. },
  6361. "dist": {
  6362. "type": "zip",
  6363. "url": "https://api.github.com/repos/grasmash/expander/zipball/95d6037344a4be1dd5f8e0b0b2571a28c397578f",
  6364. "reference": "95d6037344a4be1dd5f8e0b0b2571a28c397578f",
  6365. "shasum": ""
  6366. },
  6367. "require": {
  6368. "dflydev/dot-access-data": "^1.1.0",
  6369. "php": ">=5.4"
  6370. },
  6371. "require-dev": {
  6372. "greg-1-anderson/composer-test-scenarios": "^1",
  6373. "phpunit/phpunit": "^4|^5.5.4",
  6374. "satooshi/php-coveralls": "^1.0.2|dev-master",
  6375. "squizlabs/php_codesniffer": "^2.7"
  6376. },
  6377. "type": "library",
  6378. "extra": {
  6379. "branch-alias": {
  6380. "dev-master": "1.x-dev"
  6381. }
  6382. },
  6383. "autoload": {
  6384. "psr-4": {
  6385. "Grasmash\\Expander\\": "src/"
  6386. }
  6387. },
  6388. "notification-url": "https://packagist.org/downloads/",
  6389. "license": [
  6390. "MIT"
  6391. ],
  6392. "authors": [
  6393. {
  6394. "name": "Matthew Grasmick"
  6395. }
  6396. ],
  6397. "description": "Expands internal property references in PHP arrays file.",
  6398. "time": "2017-12-21T22:14:55+00:00"
  6399. },
  6400. {
  6401. "name": "grasmash/yaml-expander",
  6402. "version": "1.4.0",
  6403. "source": {
  6404. "type": "git",
  6405. "url": "https://github.com/grasmash/yaml-expander.git",
  6406. "reference": "3f0f6001ae707a24f4d9733958d77d92bf9693b1"
  6407. },
  6408. "dist": {
  6409. "type": "zip",
  6410. "url": "https://api.github.com/repos/grasmash/yaml-expander/zipball/3f0f6001ae707a24f4d9733958d77d92bf9693b1",
  6411. "reference": "3f0f6001ae707a24f4d9733958d77d92bf9693b1",
  6412. "shasum": ""
  6413. },
  6414. "require": {
  6415. "dflydev/dot-access-data": "^1.1.0",
  6416. "php": ">=5.4",
  6417. "symfony/yaml": "^2.8.11|^3|^4"
  6418. },
  6419. "require-dev": {
  6420. "greg-1-anderson/composer-test-scenarios": "^1",
  6421. "phpunit/phpunit": "^4.8|^5.5.4",
  6422. "satooshi/php-coveralls": "^1.0.2|dev-master",
  6423. "squizlabs/php_codesniffer": "^2.7"
  6424. },
  6425. "type": "library",
  6426. "extra": {
  6427. "branch-alias": {
  6428. "dev-master": "1.x-dev"
  6429. }
  6430. },
  6431. "autoload": {
  6432. "psr-4": {
  6433. "Grasmash\\YamlExpander\\": "src/"
  6434. }
  6435. },
  6436. "notification-url": "https://packagist.org/downloads/",
  6437. "license": [
  6438. "MIT"
  6439. ],
  6440. "authors": [
  6441. {
  6442. "name": "Matthew Grasmick"
  6443. }
  6444. ],
  6445. "description": "Expands internal property references in a yaml file.",
  6446. "time": "2017-12-16T16:06:03+00:00"
  6447. },
  6448. {
  6449. "name": "guzzlehttp/guzzle",
  6450. "version": "6.5.2",
  6451. "source": {
  6452. "type": "git",
  6453. "url": "https://github.com/guzzle/guzzle.git",
  6454. "reference": "43ece0e75098b7ecd8d13918293029e555a50f82"
  6455. },
  6456. "dist": {
  6457. "type": "zip",
  6458. "url": "https://api.github.com/repos/guzzle/guzzle/zipball/43ece0e75098b7ecd8d13918293029e555a50f82",
  6459. "reference": "43ece0e75098b7ecd8d13918293029e555a50f82",
  6460. "shasum": ""
  6461. },
  6462. "require": {
  6463. "ext-json": "*",
  6464. "guzzlehttp/promises": "^1.0",
  6465. "guzzlehttp/psr7": "^1.6.1",
  6466. "php": ">=5.5"
  6467. },
  6468. "require-dev": {
  6469. "ext-curl": "*",
  6470. "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.4 || ^7.0",
  6471. "psr/log": "^1.1"
  6472. },
  6473. "suggest": {
  6474. "ext-intl": "Required for Internationalized Domain Name (IDN) support",
  6475. "psr/log": "Required for using the Log middleware"
  6476. },
  6477. "type": "library",
  6478. "extra": {
  6479. "branch-alias": {
  6480. "dev-master": "6.5-dev"
  6481. }
  6482. },
  6483. "autoload": {
  6484. "psr-4": {
  6485. "GuzzleHttp\\": "src/"
  6486. },
  6487. "files": [
  6488. "src/functions_include.php"
  6489. ]
  6490. },
  6491. "notification-url": "https://packagist.org/downloads/",
  6492. "license": [
  6493. "MIT"
  6494. ],
  6495. "authors": [
  6496. {
  6497. "name": "Michael Dowling",
  6498. "email": "mtdowling@gmail.com",
  6499. "homepage": "https://github.com/mtdowling"
  6500. }
  6501. ],
  6502. "description": "Guzzle is a PHP HTTP client library",
  6503. "homepage": "http://guzzlephp.org/",
  6504. "keywords": [
  6505. "client",
  6506. "curl",
  6507. "framework",
  6508. "http",
  6509. "http client",
  6510. "rest",
  6511. "web service"
  6512. ],
  6513. "time": "2019-12-23T11:57:10+00:00"
  6514. },
  6515. {
  6516. "name": "guzzlehttp/promises",
  6517. "version": "v1.3.1",
  6518. "source": {
  6519. "type": "git",
  6520. "url": "https://github.com/guzzle/promises.git",
  6521. "reference": "a59da6cf61d80060647ff4d3eb2c03a2bc694646"
  6522. },
  6523. "dist": {
  6524. "type": "zip",
  6525. "url": "https://api.github.com/repos/guzzle/promises/zipball/a59da6cf61d80060647ff4d3eb2c03a2bc694646",
  6526. "reference": "a59da6cf61d80060647ff4d3eb2c03a2bc694646",
  6527. "shasum": ""
  6528. },
  6529. "require": {
  6530. "php": ">=5.5.0"
  6531. },
  6532. "require-dev": {
  6533. "phpunit/phpunit": "^4.0"
  6534. },
  6535. "type": "library",
  6536. "extra": {
  6537. "branch-alias": {
  6538. "dev-master": "1.4-dev"
  6539. }
  6540. },
  6541. "autoload": {
  6542. "psr-4": {
  6543. "GuzzleHttp\\Promise\\": "src/"
  6544. },
  6545. "files": [
  6546. "src/functions_include.php"
  6547. ]
  6548. },
  6549. "notification-url": "https://packagist.org/downloads/",
  6550. "license": [
  6551. "MIT"
  6552. ],
  6553. "authors": [
  6554. {
  6555. "name": "Michael Dowling",
  6556. "email": "mtdowling@gmail.com",
  6557. "homepage": "https://github.com/mtdowling"
  6558. }
  6559. ],
  6560. "description": "Guzzle promises library",
  6561. "keywords": [
  6562. "promise"
  6563. ],
  6564. "time": "2016-12-20T10:07:11+00:00"
  6565. },
  6566. {
  6567. "name": "guzzlehttp/psr7",
  6568. "version": "1.6.1",
  6569. "source": {
  6570. "type": "git",
  6571. "url": "https://github.com/guzzle/psr7.git",
  6572. "reference": "239400de7a173fe9901b9ac7c06497751f00727a"
  6573. },
  6574. "dist": {
  6575. "type": "zip",
  6576. "url": "https://api.github.com/repos/guzzle/psr7/zipball/239400de7a173fe9901b9ac7c06497751f00727a",
  6577. "reference": "239400de7a173fe9901b9ac7c06497751f00727a",
  6578. "shasum": ""
  6579. },
  6580. "require": {
  6581. "php": ">=5.4.0",
  6582. "psr/http-message": "~1.0",
  6583. "ralouphie/getallheaders": "^2.0.5 || ^3.0.0"
  6584. },
  6585. "provide": {
  6586. "psr/http-message-implementation": "1.0"
  6587. },
  6588. "require-dev": {
  6589. "ext-zlib": "*",
  6590. "phpunit/phpunit": "~4.8.36 || ^5.7.27 || ^6.5.8"
  6591. },
  6592. "suggest": {
  6593. "zendframework/zend-httphandlerrunner": "Emit PSR-7 responses"
  6594. },
  6595. "type": "library",
  6596. "extra": {
  6597. "branch-alias": {
  6598. "dev-master": "1.6-dev"
  6599. }
  6600. },
  6601. "autoload": {
  6602. "psr-4": {
  6603. "GuzzleHttp\\Psr7\\": "src/"
  6604. },
  6605. "files": [
  6606. "src/functions_include.php"
  6607. ]
  6608. },
  6609. "notification-url": "https://packagist.org/downloads/",
  6610. "license": [
  6611. "MIT"
  6612. ],
  6613. "authors": [
  6614. {
  6615. "name": "Michael Dowling",
  6616. "email": "mtdowling@gmail.com",
  6617. "homepage": "https://github.com/mtdowling"
  6618. },
  6619. {
  6620. "name": "Tobias Schultze",
  6621. "homepage": "https://github.com/Tobion"
  6622. }
  6623. ],
  6624. "description": "PSR-7 message implementation that also provides common utility methods",
  6625. "keywords": [
  6626. "http",
  6627. "message",
  6628. "psr-7",
  6629. "request",
  6630. "response",
  6631. "stream",
  6632. "uri",
  6633. "url"
  6634. ],
  6635. "time": "2019-07-01T23:21:34+00:00"
  6636. },
  6637. {
  6638. "name": "instaclick/php-webdriver",
  6639. "version": "1.4.7",
  6640. "source": {
  6641. "type": "git",
  6642. "url": "https://github.com/instaclick/php-webdriver.git",
  6643. "reference": "b5f330e900e9b3edfc18024a5ec8c07136075712"
  6644. },
  6645. "dist": {
  6646. "type": "zip",
  6647. "url": "https://api.github.com/repos/instaclick/php-webdriver/zipball/b5f330e900e9b3edfc18024a5ec8c07136075712",
  6648. "reference": "b5f330e900e9b3edfc18024a5ec8c07136075712",
  6649. "shasum": ""
  6650. },
  6651. "require": {
  6652. "ext-curl": "*",
  6653. "php": ">=5.3.2"
  6654. },
  6655. "require-dev": {
  6656. "phpunit/phpunit": "^4.8",
  6657. "satooshi/php-coveralls": "^1.0||^2.0"
  6658. },
  6659. "type": "library",
  6660. "extra": {
  6661. "branch-alias": {
  6662. "dev-master": "1.4.x-dev"
  6663. }
  6664. },
  6665. "autoload": {
  6666. "psr-0": {
  6667. "WebDriver": "lib/"
  6668. }
  6669. },
  6670. "notification-url": "https://packagist.org/downloads/",
  6671. "license": [
  6672. "Apache-2.0"
  6673. ],
  6674. "authors": [
  6675. {
  6676. "name": "Justin Bishop",
  6677. "email": "jubishop@gmail.com",
  6678. "role": "Developer"
  6679. },
  6680. {
  6681. "name": "Anthon Pang",
  6682. "email": "apang@softwaredevelopment.ca",
  6683. "role": "Fork Maintainer"
  6684. }
  6685. ],
  6686. "description": "PHP WebDriver for Selenium 2",
  6687. "homepage": "http://instaclick.com/",
  6688. "keywords": [
  6689. "browser",
  6690. "selenium",
  6691. "webdriver",
  6692. "webtest"
  6693. ],
  6694. "time": "2019-09-25T09:05:11+00:00"
  6695. },
  6696. {
  6697. "name": "jakub-onderka/php-console-color",
  6698. "version": "v0.2",
  6699. "source": {
  6700. "type": "git",
  6701. "url": "https://github.com/JakubOnderka/PHP-Console-Color.git",
  6702. "reference": "d5deaecff52a0d61ccb613bb3804088da0307191"
  6703. },
  6704. "dist": {
  6705. "type": "zip",
  6706. "url": "https://api.github.com/repos/JakubOnderka/PHP-Console-Color/zipball/d5deaecff52a0d61ccb613bb3804088da0307191",
  6707. "reference": "d5deaecff52a0d61ccb613bb3804088da0307191",
  6708. "shasum": ""
  6709. },
  6710. "require": {
  6711. "php": ">=5.4.0"
  6712. },
  6713. "require-dev": {
  6714. "jakub-onderka/php-code-style": "1.0",
  6715. "jakub-onderka/php-parallel-lint": "1.0",
  6716. "jakub-onderka/php-var-dump-check": "0.*",
  6717. "phpunit/phpunit": "~4.3",
  6718. "squizlabs/php_codesniffer": "1.*"
  6719. },
  6720. "type": "library",
  6721. "autoload": {
  6722. "psr-4": {
  6723. "JakubOnderka\\PhpConsoleColor\\": "src/"
  6724. }
  6725. },
  6726. "notification-url": "https://packagist.org/downloads/",
  6727. "license": [
  6728. "BSD-2-Clause"
  6729. ],
  6730. "authors": [
  6731. {
  6732. "name": "Jakub Onderka",
  6733. "email": "jakub.onderka@gmail.com"
  6734. }
  6735. ],
  6736. "time": "2018-09-29T17:23:10+00:00"
  6737. },
  6738. {
  6739. "name": "jakub-onderka/php-console-highlighter",
  6740. "version": "v0.4",
  6741. "source": {
  6742. "type": "git",
  6743. "url": "https://github.com/JakubOnderka/PHP-Console-Highlighter.git",
  6744. "reference": "9f7a229a69d52506914b4bc61bfdb199d90c5547"
  6745. },
  6746. "dist": {
  6747. "type": "zip",
  6748. "url": "https://api.github.com/repos/JakubOnderka/PHP-Console-Highlighter/zipball/9f7a229a69d52506914b4bc61bfdb199d90c5547",
  6749. "reference": "9f7a229a69d52506914b4bc61bfdb199d90c5547",
  6750. "shasum": ""
  6751. },
  6752. "require": {
  6753. "ext-tokenizer": "*",
  6754. "jakub-onderka/php-console-color": "~0.2",
  6755. "php": ">=5.4.0"
  6756. },
  6757. "require-dev": {
  6758. "jakub-onderka/php-code-style": "~1.0",
  6759. "jakub-onderka/php-parallel-lint": "~1.0",
  6760. "jakub-onderka/php-var-dump-check": "~0.1",
  6761. "phpunit/phpunit": "~4.0",
  6762. "squizlabs/php_codesniffer": "~1.5"
  6763. },
  6764. "type": "library",
  6765. "autoload": {
  6766. "psr-4": {
  6767. "JakubOnderka\\PhpConsoleHighlighter\\": "src/"
  6768. }
  6769. },
  6770. "notification-url": "https://packagist.org/downloads/",
  6771. "license": [
  6772. "MIT"
  6773. ],
  6774. "authors": [
  6775. {
  6776. "name": "Jakub Onderka",
  6777. "email": "acci@acci.cz",
  6778. "homepage": "http://www.acci.cz/"
  6779. }
  6780. ],
  6781. "description": "Highlight PHP code in terminal",
  6782. "time": "2018-09-29T18:48:56+00:00"
  6783. },
  6784. {
  6785. "name": "jcalderonzumba/gastonjs",
  6786. "version": "v1.2.0",
  6787. "source": {
  6788. "type": "git",
  6789. "url": "https://github.com/jcalderonzumba/gastonjs.git",
  6790. "reference": "575a9c18d8b87990c37252e8d9707b29f0a313f3"
  6791. },
  6792. "dist": {
  6793. "type": "zip",
  6794. "url": "https://api.github.com/repos/jcalderonzumba/gastonjs/zipball/575a9c18d8b87990c37252e8d9707b29f0a313f3",
  6795. "reference": "575a9c18d8b87990c37252e8d9707b29f0a313f3",
  6796. "shasum": ""
  6797. },
  6798. "require": {
  6799. "guzzlehttp/guzzle": "~5.0|~6.0",
  6800. "php": ">=5.4"
  6801. },
  6802. "require-dev": {
  6803. "phpunit/phpunit": "~4.6",
  6804. "silex/silex": "~1.2",
  6805. "symfony/phpunit-bridge": "~2.7",
  6806. "symfony/process": "~2.1"
  6807. },
  6808. "type": "phantomjs-api",
  6809. "extra": {
  6810. "branch-alias": {
  6811. "dev-master": "1.1.x-dev"
  6812. }
  6813. },
  6814. "autoload": {
  6815. "psr-4": {
  6816. "Zumba\\GastonJS\\": "src"
  6817. }
  6818. },
  6819. "notification-url": "https://packagist.org/downloads/",
  6820. "license": [
  6821. "MIT"
  6822. ],
  6823. "authors": [
  6824. {
  6825. "name": "Juan Francisco Calderón Zumba",
  6826. "email": "juanfcz@gmail.com",
  6827. "homepage": "http://github.com/jcalderonzumba"
  6828. }
  6829. ],
  6830. "description": "PhantomJS API based server for webpage automation",
  6831. "homepage": "https://github.com/jcalderonzumba/gastonjs",
  6832. "keywords": [
  6833. "api",
  6834. "automation",
  6835. "browser",
  6836. "headless",
  6837. "phantomjs"
  6838. ],
  6839. "time": "2017-03-31T07:31:47+00:00"
  6840. },
  6841. {
  6842. "name": "jcalderonzumba/mink-phantomjs-driver",
  6843. "version": "v0.3.3",
  6844. "source": {
  6845. "type": "git",
  6846. "url": "https://github.com/jcalderonzumba/MinkPhantomJSDriver.git",
  6847. "reference": "008f43670e94acd39273d15add1e7348eb23848d"
  6848. },
  6849. "dist": {
  6850. "type": "zip",
  6851. "url": "https://api.github.com/repos/jcalderonzumba/MinkPhantomJSDriver/zipball/008f43670e94acd39273d15add1e7348eb23848d",
  6852. "reference": "008f43670e94acd39273d15add1e7348eb23848d",
  6853. "shasum": ""
  6854. },
  6855. "require": {
  6856. "behat/mink": "~1.7",
  6857. "jcalderonzumba/gastonjs": "~1.0",
  6858. "php": ">=5.4",
  6859. "twig/twig": "~1.20|~2.0"
  6860. },
  6861. "require-dev": {
  6862. "mink/driver-testsuite": "dev-master",
  6863. "phpunit/phpunit": "~4.6"
  6864. },
  6865. "type": "mink-driver",
  6866. "extra": {
  6867. "branch-alias": {
  6868. "dev-master": "0.4.x-dev"
  6869. }
  6870. },
  6871. "autoload": {
  6872. "psr-4": {
  6873. "Zumba\\Mink\\Driver\\": "src"
  6874. }
  6875. },
  6876. "notification-url": "https://packagist.org/downloads/",
  6877. "license": [
  6878. "MIT"
  6879. ],
  6880. "authors": [
  6881. {
  6882. "name": "Juan Francisco Calderón Zumba",
  6883. "email": "juanfcz@gmail.com",
  6884. "homepage": "http://github.com/jcalderonzumba"
  6885. }
  6886. ],
  6887. "description": "PhantomJS driver for Mink framework",
  6888. "homepage": "http://mink.behat.org/",
  6889. "keywords": [
  6890. "ajax",
  6891. "browser",
  6892. "headless",
  6893. "javascript",
  6894. "phantomjs",
  6895. "testing"
  6896. ],
  6897. "time": "2016-12-01T10:57:30+00:00"
  6898. },
  6899. {
  6900. "name": "justinrainbow/json-schema",
  6901. "version": "5.2.9",
  6902. "source": {
  6903. "type": "git",
  6904. "url": "https://github.com/justinrainbow/json-schema.git",
  6905. "reference": "44c6787311242a979fa15c704327c20e7221a0e4"
  6906. },
  6907. "dist": {
  6908. "type": "zip",
  6909. "url": "https://api.github.com/repos/justinrainbow/json-schema/zipball/44c6787311242a979fa15c704327c20e7221a0e4",
  6910. "reference": "44c6787311242a979fa15c704327c20e7221a0e4",
  6911. "shasum": ""
  6912. },
  6913. "require": {
  6914. "php": ">=5.3.3"
  6915. },
  6916. "require-dev": {
  6917. "friendsofphp/php-cs-fixer": "~2.2.20||~2.15.1",
  6918. "json-schema/json-schema-test-suite": "1.2.0",
  6919. "phpunit/phpunit": "^4.8.35"
  6920. },
  6921. "bin": [
  6922. "bin/validate-json"
  6923. ],
  6924. "type": "library",
  6925. "extra": {
  6926. "branch-alias": {
  6927. "dev-master": "5.0.x-dev"
  6928. }
  6929. },
  6930. "autoload": {
  6931. "psr-4": {
  6932. "JsonSchema\\": "src/JsonSchema/"
  6933. }
  6934. },
  6935. "notification-url": "https://packagist.org/downloads/",
  6936. "license": [
  6937. "MIT"
  6938. ],
  6939. "authors": [
  6940. {
  6941. "name": "Bruno Prieto Reis",
  6942. "email": "bruno.p.reis@gmail.com"
  6943. },
  6944. {
  6945. "name": "Justin Rainbow",
  6946. "email": "justin.rainbow@gmail.com"
  6947. },
  6948. {
  6949. "name": "Igor Wiedler",
  6950. "email": "igor@wiedler.ch"
  6951. },
  6952. {
  6953. "name": "Robert Schönthal",
  6954. "email": "seroscho@googlemail.com"
  6955. }
  6956. ],
  6957. "description": "A library to validate a json schema.",
  6958. "homepage": "https://github.com/justinrainbow/json-schema",
  6959. "keywords": [
  6960. "json",
  6961. "schema"
  6962. ],
  6963. "time": "2019-09-25T14:49:45+00:00"
  6964. },
  6965. {
  6966. "name": "league/container",
  6967. "version": "2.4.1",
  6968. "source": {
  6969. "type": "git",
  6970. "url": "https://github.com/thephpleague/container.git",
  6971. "reference": "43f35abd03a12977a60ffd7095efd6a7808488c0"
  6972. },
  6973. "dist": {
  6974. "type": "zip",
  6975. "url": "https://api.github.com/repos/thephpleague/container/zipball/43f35abd03a12977a60ffd7095efd6a7808488c0",
  6976. "reference": "43f35abd03a12977a60ffd7095efd6a7808488c0",
  6977. "shasum": ""
  6978. },
  6979. "require": {
  6980. "container-interop/container-interop": "^1.2",
  6981. "php": "^5.4.0 || ^7.0"
  6982. },
  6983. "provide": {
  6984. "container-interop/container-interop-implementation": "^1.2",
  6985. "psr/container-implementation": "^1.0"
  6986. },
  6987. "replace": {
  6988. "orno/di": "~2.0"
  6989. },
  6990. "require-dev": {
  6991. "phpunit/phpunit": "4.*"
  6992. },
  6993. "type": "library",
  6994. "extra": {
  6995. "branch-alias": {
  6996. "dev-2.x": "2.x-dev",
  6997. "dev-1.x": "1.x-dev"
  6998. }
  6999. },
  7000. "autoload": {
  7001. "psr-4": {
  7002. "League\\Container\\": "src"
  7003. }
  7004. },
  7005. "notification-url": "https://packagist.org/downloads/",
  7006. "license": [
  7007. "MIT"
  7008. ],
  7009. "authors": [
  7010. {
  7011. "name": "Phil Bennett",
  7012. "email": "philipobenito@gmail.com",
  7013. "homepage": "http://www.philipobenito.com",
  7014. "role": "Developer"
  7015. }
  7016. ],
  7017. "description": "A fast and intuitive dependency injection container.",
  7018. "homepage": "https://github.com/thephpleague/container",
  7019. "keywords": [
  7020. "container",
  7021. "dependency",
  7022. "di",
  7023. "injection",
  7024. "league",
  7025. "provider",
  7026. "service"
  7027. ],
  7028. "time": "2017-05-10T09:20:27+00:00"
  7029. },
  7030. {
  7031. "name": "masterminds/html5",
  7032. "version": "2.7.0",
  7033. "source": {
  7034. "type": "git",
  7035. "url": "https://github.com/Masterminds/html5-php.git",
  7036. "reference": "104443ad663d15981225f99532ba73c2f1d6b6f2"
  7037. },
  7038. "dist": {
  7039. "type": "zip",
  7040. "url": "https://api.github.com/repos/Masterminds/html5-php/zipball/104443ad663d15981225f99532ba73c2f1d6b6f2",
  7041. "reference": "104443ad663d15981225f99532ba73c2f1d6b6f2",
  7042. "shasum": ""
  7043. },
  7044. "require": {
  7045. "ext-ctype": "*",
  7046. "ext-dom": "*",
  7047. "ext-libxml": "*",
  7048. "php": ">=5.3.0"
  7049. },
  7050. "require-dev": {
  7051. "phpunit/phpunit": "^4.8.35",
  7052. "sami/sami": "~2.0",
  7053. "satooshi/php-coveralls": "1.0.*"
  7054. },
  7055. "type": "library",
  7056. "extra": {
  7057. "branch-alias": {
  7058. "dev-master": "2.7-dev"
  7059. }
  7060. },
  7061. "autoload": {
  7062. "psr-4": {
  7063. "Masterminds\\": "src"
  7064. }
  7065. },
  7066. "notification-url": "https://packagist.org/downloads/",
  7067. "license": [
  7068. "MIT"
  7069. ],
  7070. "authors": [
  7071. {
  7072. "name": "Matt Butcher",
  7073. "email": "technosophos@gmail.com"
  7074. },
  7075. {
  7076. "name": "Matt Farina",
  7077. "email": "matt@mattfarina.com"
  7078. },
  7079. {
  7080. "name": "Asmir Mustafic",
  7081. "email": "goetas@gmail.com"
  7082. }
  7083. ],
  7084. "description": "An HTML5 parser and serializer.",
  7085. "homepage": "http://masterminds.github.io/html5-php",
  7086. "keywords": [
  7087. "HTML5",
  7088. "dom",
  7089. "html",
  7090. "parser",
  7091. "querypath",
  7092. "serializer",
  7093. "xml"
  7094. ],
  7095. "time": "2019-07-25T07:03:26+00:00"
  7096. },
  7097. {
  7098. "name": "mikey179/vfsstream",
  7099. "version": "v1.6.8",
  7100. "source": {
  7101. "type": "git",
  7102. "url": "https://github.com/bovigo/vfsStream.git",
  7103. "reference": "231c73783ebb7dd9ec77916c10037eff5a2b6efe"
  7104. },
  7105. "dist": {
  7106. "type": "zip",
  7107. "url": "https://api.github.com/repos/bovigo/vfsStream/zipball/231c73783ebb7dd9ec77916c10037eff5a2b6efe",
  7108. "reference": "231c73783ebb7dd9ec77916c10037eff5a2b6efe",
  7109. "shasum": ""
  7110. },
  7111. "require": {
  7112. "php": ">=5.3.0"
  7113. },
  7114. "require-dev": {
  7115. "phpunit/phpunit": "^4.5|^5.0"
  7116. },
  7117. "type": "library",
  7118. "extra": {
  7119. "branch-alias": {
  7120. "dev-master": "1.6.x-dev"
  7121. }
  7122. },
  7123. "autoload": {
  7124. "psr-0": {
  7125. "org\\bovigo\\vfs\\": "src/main/php"
  7126. }
  7127. },
  7128. "notification-url": "https://packagist.org/downloads/",
  7129. "license": [
  7130. "BSD-3-Clause"
  7131. ],
  7132. "authors": [
  7133. {
  7134. "name": "Frank Kleine",
  7135. "homepage": "http://frankkleine.de/",
  7136. "role": "Developer"
  7137. }
  7138. ],
  7139. "description": "Virtual file system to mock the real file system in unit tests.",
  7140. "homepage": "http://vfs.bovigo.org/",
  7141. "time": "2019-10-30T15:31:00+00:00"
  7142. },
  7143. {
  7144. "name": "myclabs/deep-copy",
  7145. "version": "1.7.0",
  7146. "source": {
  7147. "type": "git",
  7148. "url": "https://github.com/myclabs/DeepCopy.git",
  7149. "reference": "3b8a3a99ba1f6a3952ac2747d989303cbd6b7a3e"
  7150. },
  7151. "dist": {
  7152. "type": "zip",
  7153. "url": "https://api.github.com/repos/myclabs/DeepCopy/zipball/3b8a3a99ba1f6a3952ac2747d989303cbd6b7a3e",
  7154. "reference": "3b8a3a99ba1f6a3952ac2747d989303cbd6b7a3e",
  7155. "shasum": ""
  7156. },
  7157. "require": {
  7158. "php": "^5.6 || ^7.0"
  7159. },
  7160. "require-dev": {
  7161. "doctrine/collections": "^1.0",
  7162. "doctrine/common": "^2.6",
  7163. "phpunit/phpunit": "^4.1"
  7164. },
  7165. "type": "library",
  7166. "autoload": {
  7167. "psr-4": {
  7168. "DeepCopy\\": "src/DeepCopy/"
  7169. },
  7170. "files": [
  7171. "src/DeepCopy/deep_copy.php"
  7172. ]
  7173. },
  7174. "notification-url": "https://packagist.org/downloads/",
  7175. "license": [
  7176. "MIT"
  7177. ],
  7178. "description": "Create deep copies (clones) of your objects",
  7179. "keywords": [
  7180. "clone",
  7181. "copy",
  7182. "duplicate",
  7183. "object",
  7184. "object graph"
  7185. ],
  7186. "time": "2017-10-19T19:58:43+00:00"
  7187. },
  7188. {
  7189. "name": "nikic/php-parser",
  7190. "version": "v4.3.0",
  7191. "source": {
  7192. "type": "git",
  7193. "url": "https://github.com/nikic/PHP-Parser.git",
  7194. "reference": "9a9981c347c5c49d6dfe5cf826bb882b824080dc"
  7195. },
  7196. "dist": {
  7197. "type": "zip",
  7198. "url": "https://api.github.com/repos/nikic/PHP-Parser/zipball/9a9981c347c5c49d6dfe5cf826bb882b824080dc",
  7199. "reference": "9a9981c347c5c49d6dfe5cf826bb882b824080dc",
  7200. "shasum": ""
  7201. },
  7202. "require": {
  7203. "ext-tokenizer": "*",
  7204. "php": ">=7.0"
  7205. },
  7206. "require-dev": {
  7207. "ircmaxell/php-yacc": "0.0.5",
  7208. "phpunit/phpunit": "^6.5 || ^7.0 || ^8.0"
  7209. },
  7210. "bin": [
  7211. "bin/php-parse"
  7212. ],
  7213. "type": "library",
  7214. "extra": {
  7215. "branch-alias": {
  7216. "dev-master": "4.3-dev"
  7217. }
  7218. },
  7219. "autoload": {
  7220. "psr-4": {
  7221. "PhpParser\\": "lib/PhpParser"
  7222. }
  7223. },
  7224. "notification-url": "https://packagist.org/downloads/",
  7225. "license": [
  7226. "BSD-3-Clause"
  7227. ],
  7228. "authors": [
  7229. {
  7230. "name": "Nikita Popov"
  7231. }
  7232. ],
  7233. "description": "A PHP parser written in PHP",
  7234. "keywords": [
  7235. "parser",
  7236. "php"
  7237. ],
  7238. "time": "2019-11-08T13:50:10+00:00"
  7239. },
  7240. {
  7241. "name": "oomphinc/composer-installers-extender",
  7242. "version": "v1.1.2",
  7243. "source": {
  7244. "type": "git",
  7245. "url": "https://github.com/oomphinc/composer-installers-extender.git",
  7246. "reference": "ca1c4b16b0905c81d1e77e608f36a2eff1a56f56"
  7247. },
  7248. "dist": {
  7249. "type": "zip",
  7250. "url": "https://api.github.com/repos/oomphinc/composer-installers-extender/zipball/ca1c4b16b0905c81d1e77e608f36a2eff1a56f56",
  7251. "reference": "ca1c4b16b0905c81d1e77e608f36a2eff1a56f56",
  7252. "shasum": ""
  7253. },
  7254. "require": {
  7255. "composer-plugin-api": "^1.0",
  7256. "composer/installers": "^1.0"
  7257. },
  7258. "type": "composer-plugin",
  7259. "extra": {
  7260. "class": "OomphInc\\ComposerInstallersExtender\\Plugin"
  7261. },
  7262. "autoload": {
  7263. "psr-4": {
  7264. "OomphInc\\ComposerInstallersExtender\\": "src/"
  7265. }
  7266. },
  7267. "notification-url": "https://packagist.org/downloads/",
  7268. "license": [
  7269. "MIT"
  7270. ],
  7271. "authors": [
  7272. {
  7273. "name": "Stephen Beemsterboer",
  7274. "email": "stephen@oomphinc.com",
  7275. "homepage": "https://github.com/balbuf"
  7276. }
  7277. ],
  7278. "description": "Extend the composer/installers plugin to accept any arbitrary package type.",
  7279. "homepage": "http://www.oomphinc.com/",
  7280. "time": "2017-03-31T16:57:39+00:00"
  7281. },
  7282. {
  7283. "name": "paragonie/random_compat",
  7284. "version": "v9.99.99",
  7285. "source": {
  7286. "type": "git",
  7287. "url": "https://github.com/paragonie/random_compat.git",
  7288. "reference": "84b4dfb120c6f9b4ff7b3685f9b8f1aa365a0c95"
  7289. },
  7290. "dist": {
  7291. "type": "zip",
  7292. "url": "https://api.github.com/repos/paragonie/random_compat/zipball/84b4dfb120c6f9b4ff7b3685f9b8f1aa365a0c95",
  7293. "reference": "84b4dfb120c6f9b4ff7b3685f9b8f1aa365a0c95",
  7294. "shasum": ""
  7295. },
  7296. "require": {
  7297. "php": "^7"
  7298. },
  7299. "require-dev": {
  7300. "phpunit/phpunit": "4.*|5.*",
  7301. "vimeo/psalm": "^1"
  7302. },
  7303. "suggest": {
  7304. "ext-libsodium": "Provides a modern crypto API that can be used to generate random bytes."
  7305. },
  7306. "type": "library",
  7307. "notification-url": "https://packagist.org/downloads/",
  7308. "license": [
  7309. "MIT"
  7310. ],
  7311. "authors": [
  7312. {
  7313. "name": "Paragon Initiative Enterprises",
  7314. "email": "security@paragonie.com",
  7315. "homepage": "https://paragonie.com"
  7316. }
  7317. ],
  7318. "description": "PHP 5.x polyfill for random_bytes() and random_int() from PHP 7",
  7319. "keywords": [
  7320. "csprng",
  7321. "polyfill",
  7322. "pseudorandom",
  7323. "random"
  7324. ],
  7325. "time": "2018-07-02T15:55:56+00:00"
  7326. },
  7327. {
  7328. "name": "pear/archive_tar",
  7329. "version": "1.4.9",
  7330. "source": {
  7331. "type": "git",
  7332. "url": "https://github.com/pear/Archive_Tar.git",
  7333. "reference": "c5b00053770e1d72128252c62c2c1a12c26639f0"
  7334. },
  7335. "dist": {
  7336. "type": "zip",
  7337. "url": "https://api.github.com/repos/pear/Archive_Tar/zipball/c5b00053770e1d72128252c62c2c1a12c26639f0",
  7338. "reference": "c5b00053770e1d72128252c62c2c1a12c26639f0",
  7339. "shasum": ""
  7340. },
  7341. "require": {
  7342. "pear/pear-core-minimal": "^1.10.0alpha2",
  7343. "php": ">=5.2.0"
  7344. },
  7345. "require-dev": {
  7346. "phpunit/phpunit": "*"
  7347. },
  7348. "suggest": {
  7349. "ext-bz2": "Bz2 compression support.",
  7350. "ext-xz": "Lzma2 compression support.",
  7351. "ext-zlib": "Gzip compression support."
  7352. },
  7353. "type": "library",
  7354. "extra": {
  7355. "branch-alias": {
  7356. "dev-master": "1.4.x-dev"
  7357. }
  7358. },
  7359. "autoload": {
  7360. "psr-0": {
  7361. "Archive_Tar": ""
  7362. }
  7363. },
  7364. "notification-url": "https://packagist.org/downloads/",
  7365. "include-path": [
  7366. "./"
  7367. ],
  7368. "license": [
  7369. "BSD-3-Clause"
  7370. ],
  7371. "authors": [
  7372. {
  7373. "name": "Vincent Blavet",
  7374. "email": "vincent@phpconcept.net"
  7375. },
  7376. {
  7377. "name": "Greg Beaver",
  7378. "email": "greg@chiaraquartet.net"
  7379. },
  7380. {
  7381. "name": "Michiel Rook",
  7382. "email": "mrook@php.net"
  7383. }
  7384. ],
  7385. "description": "Tar file management class with compression support (gzip, bzip2, lzma2)",
  7386. "homepage": "https://github.com/pear/Archive_Tar",
  7387. "keywords": [
  7388. "archive",
  7389. "tar"
  7390. ],
  7391. "time": "2019-12-04T10:17:28+00:00"
  7392. },
  7393. {
  7394. "name": "pear/console_getopt",
  7395. "version": "v1.4.3",
  7396. "source": {
  7397. "type": "git",
  7398. "url": "https://github.com/pear/Console_Getopt.git",
  7399. "reference": "a41f8d3e668987609178c7c4a9fe48fecac53fa0"
  7400. },
  7401. "dist": {
  7402. "type": "zip",
  7403. "url": "https://api.github.com/repos/pear/Console_Getopt/zipball/a41f8d3e668987609178c7c4a9fe48fecac53fa0",
  7404. "reference": "a41f8d3e668987609178c7c4a9fe48fecac53fa0",
  7405. "shasum": ""
  7406. },
  7407. "type": "library",
  7408. "autoload": {
  7409. "psr-0": {
  7410. "Console": "./"
  7411. }
  7412. },
  7413. "notification-url": "https://packagist.org/downloads/",
  7414. "include-path": [
  7415. "./"
  7416. ],
  7417. "license": [
  7418. "BSD-2-Clause"
  7419. ],
  7420. "authors": [
  7421. {
  7422. "name": "Andrei Zmievski",
  7423. "email": "andrei@php.net",
  7424. "role": "Lead"
  7425. },
  7426. {
  7427. "name": "Stig Bakken",
  7428. "email": "stig@php.net",
  7429. "role": "Developer"
  7430. },
  7431. {
  7432. "name": "Greg Beaver",
  7433. "email": "cellog@php.net",
  7434. "role": "Helper"
  7435. }
  7436. ],
  7437. "description": "More info available on: http://pear.php.net/package/Console_Getopt",
  7438. "time": "2019-11-20T18:27:48+00:00"
  7439. },
  7440. {
  7441. "name": "pear/pear-core-minimal",
  7442. "version": "v1.10.10",
  7443. "source": {
  7444. "type": "git",
  7445. "url": "https://github.com/pear/pear-core-minimal.git",
  7446. "reference": "625a3c429d9b2c1546438679074cac1b089116a7"
  7447. },
  7448. "dist": {
  7449. "type": "zip",
  7450. "url": "https://api.github.com/repos/pear/pear-core-minimal/zipball/625a3c429d9b2c1546438679074cac1b089116a7",
  7451. "reference": "625a3c429d9b2c1546438679074cac1b089116a7",
  7452. "shasum": ""
  7453. },
  7454. "require": {
  7455. "pear/console_getopt": "~1.4",
  7456. "pear/pear_exception": "~1.0"
  7457. },
  7458. "replace": {
  7459. "rsky/pear-core-min": "self.version"
  7460. },
  7461. "type": "library",
  7462. "autoload": {
  7463. "psr-0": {
  7464. "": "src/"
  7465. }
  7466. },
  7467. "notification-url": "https://packagist.org/downloads/",
  7468. "include-path": [
  7469. "src/"
  7470. ],
  7471. "license": [
  7472. "BSD-3-Clause"
  7473. ],
  7474. "authors": [
  7475. {
  7476. "name": "Christian Weiske",
  7477. "email": "cweiske@php.net",
  7478. "role": "Lead"
  7479. }
  7480. ],
  7481. "description": "Minimal set of PEAR core files to be used as composer dependency",
  7482. "time": "2019-11-19T19:00:24+00:00"
  7483. },
  7484. {
  7485. "name": "pear/pear_exception",
  7486. "version": "v1.0.1",
  7487. "source": {
  7488. "type": "git",
  7489. "url": "https://github.com/pear/PEAR_Exception.git",
  7490. "reference": "dbb42a5a0e45f3adcf99babfb2a1ba77b8ac36a7"
  7491. },
  7492. "dist": {
  7493. "type": "zip",
  7494. "url": "https://api.github.com/repos/pear/PEAR_Exception/zipball/dbb42a5a0e45f3adcf99babfb2a1ba77b8ac36a7",
  7495. "reference": "dbb42a5a0e45f3adcf99babfb2a1ba77b8ac36a7",
  7496. "shasum": ""
  7497. },
  7498. "require": {
  7499. "php": ">=4.4.0"
  7500. },
  7501. "require-dev": {
  7502. "phpunit/phpunit": "*"
  7503. },
  7504. "type": "class",
  7505. "extra": {
  7506. "branch-alias": {
  7507. "dev-master": "1.0.x-dev"
  7508. }
  7509. },
  7510. "autoload": {
  7511. "classmap": [
  7512. "PEAR/"
  7513. ]
  7514. },
  7515. "notification-url": "https://packagist.org/downloads/",
  7516. "include-path": [
  7517. "."
  7518. ],
  7519. "license": [
  7520. "BSD-2-Clause"
  7521. ],
  7522. "authors": [
  7523. {
  7524. "name": "Helgi Thormar",
  7525. "email": "dufuz@php.net"
  7526. },
  7527. {
  7528. "name": "Greg Beaver",
  7529. "email": "cellog@php.net"
  7530. }
  7531. ],
  7532. "description": "The PEAR Exception base class.",
  7533. "homepage": "https://github.com/pear/PEAR_Exception",
  7534. "keywords": [
  7535. "exception"
  7536. ],
  7537. "time": "2019-12-10T10:24:42+00:00"
  7538. },
  7539. {
  7540. "name": "phar-io/manifest",
  7541. "version": "1.0.1",
  7542. "source": {
  7543. "type": "git",
  7544. "url": "https://github.com/phar-io/manifest.git",
  7545. "reference": "2df402786ab5368a0169091f61a7c1e0eb6852d0"
  7546. },
  7547. "dist": {
  7548. "type": "zip",
  7549. "url": "https://api.github.com/repos/phar-io/manifest/zipball/2df402786ab5368a0169091f61a7c1e0eb6852d0",
  7550. "reference": "2df402786ab5368a0169091f61a7c1e0eb6852d0",
  7551. "shasum": ""
  7552. },
  7553. "require": {
  7554. "ext-dom": "*",
  7555. "ext-phar": "*",
  7556. "phar-io/version": "^1.0.1",
  7557. "php": "^5.6 || ^7.0"
  7558. },
  7559. "type": "library",
  7560. "extra": {
  7561. "branch-alias": {
  7562. "dev-master": "1.0.x-dev"
  7563. }
  7564. },
  7565. "autoload": {
  7566. "classmap": [
  7567. "src/"
  7568. ]
  7569. },
  7570. "notification-url": "https://packagist.org/downloads/",
  7571. "license": [
  7572. "BSD-3-Clause"
  7573. ],
  7574. "authors": [
  7575. {
  7576. "name": "Arne Blankerts",
  7577. "email": "arne@blankerts.de",
  7578. "role": "Developer"
  7579. },
  7580. {
  7581. "name": "Sebastian Heuer",
  7582. "email": "sebastian@phpeople.de",
  7583. "role": "Developer"
  7584. },
  7585. {
  7586. "name": "Sebastian Bergmann",
  7587. "email": "sebastian@phpunit.de",
  7588. "role": "Developer"
  7589. }
  7590. ],
  7591. "description": "Component for reading phar.io manifest information from a PHP Archive (PHAR)",
  7592. "time": "2017-03-05T18:14:27+00:00"
  7593. },
  7594. {
  7595. "name": "phar-io/version",
  7596. "version": "1.0.1",
  7597. "source": {
  7598. "type": "git",
  7599. "url": "https://github.com/phar-io/version.git",
  7600. "reference": "a70c0ced4be299a63d32fa96d9281d03e94041df"
  7601. },
  7602. "dist": {
  7603. "type": "zip",
  7604. "url": "https://api.github.com/repos/phar-io/version/zipball/a70c0ced4be299a63d32fa96d9281d03e94041df",
  7605. "reference": "a70c0ced4be299a63d32fa96d9281d03e94041df",
  7606. "shasum": ""
  7607. },
  7608. "require": {
  7609. "php": "^5.6 || ^7.0"
  7610. },
  7611. "type": "library",
  7612. "autoload": {
  7613. "classmap": [
  7614. "src/"
  7615. ]
  7616. },
  7617. "notification-url": "https://packagist.org/downloads/",
  7618. "license": [
  7619. "BSD-3-Clause"
  7620. ],
  7621. "authors": [
  7622. {
  7623. "name": "Arne Blankerts",
  7624. "email": "arne@blankerts.de",
  7625. "role": "Developer"
  7626. },
  7627. {
  7628. "name": "Sebastian Heuer",
  7629. "email": "sebastian@phpeople.de",
  7630. "role": "Developer"
  7631. },
  7632. {
  7633. "name": "Sebastian Bergmann",
  7634. "email": "sebastian@phpunit.de",
  7635. "role": "Developer"
  7636. }
  7637. ],
  7638. "description": "Library for handling version information and constraints",
  7639. "time": "2017-03-05T17:38:23+00:00"
  7640. },
  7641. {
  7642. "name": "phpdocumentor/reflection-common",
  7643. "version": "1.0.1",
  7644. "source": {
  7645. "type": "git",
  7646. "url": "https://github.com/phpDocumentor/ReflectionCommon.git",
  7647. "reference": "21bdeb5f65d7ebf9f43b1b25d404f87deab5bfb6"
  7648. },
  7649. "dist": {
  7650. "type": "zip",
  7651. "url": "https://api.github.com/repos/phpDocumentor/ReflectionCommon/zipball/21bdeb5f65d7ebf9f43b1b25d404f87deab5bfb6",
  7652. "reference": "21bdeb5f65d7ebf9f43b1b25d404f87deab5bfb6",
  7653. "shasum": ""
  7654. },
  7655. "require": {
  7656. "php": ">=5.5"
  7657. },
  7658. "require-dev": {
  7659. "phpunit/phpunit": "^4.6"
  7660. },
  7661. "type": "library",
  7662. "extra": {
  7663. "branch-alias": {
  7664. "dev-master": "1.0.x-dev"
  7665. }
  7666. },
  7667. "autoload": {
  7668. "psr-4": {
  7669. "phpDocumentor\\Reflection\\": [
  7670. "src"
  7671. ]
  7672. }
  7673. },
  7674. "notification-url": "https://packagist.org/downloads/",
  7675. "license": [
  7676. "MIT"
  7677. ],
  7678. "authors": [
  7679. {
  7680. "name": "Jaap van Otterdijk",
  7681. "email": "opensource@ijaap.nl"
  7682. }
  7683. ],
  7684. "description": "Common reflection classes used by phpdocumentor to reflect the code structure",
  7685. "homepage": "http://www.phpdoc.org",
  7686. "keywords": [
  7687. "FQSEN",
  7688. "phpDocumentor",
  7689. "phpdoc",
  7690. "reflection",
  7691. "static analysis"
  7692. ],
  7693. "time": "2017-09-11T18:02:19+00:00"
  7694. },
  7695. {
  7696. "name": "phpdocumentor/reflection-docblock",
  7697. "version": "4.3.4",
  7698. "source": {
  7699. "type": "git",
  7700. "url": "https://github.com/phpDocumentor/ReflectionDocBlock.git",
  7701. "reference": "da3fd972d6bafd628114f7e7e036f45944b62e9c"
  7702. },
  7703. "dist": {
  7704. "type": "zip",
  7705. "url": "https://api.github.com/repos/phpDocumentor/ReflectionDocBlock/zipball/da3fd972d6bafd628114f7e7e036f45944b62e9c",
  7706. "reference": "da3fd972d6bafd628114f7e7e036f45944b62e9c",
  7707. "shasum": ""
  7708. },
  7709. "require": {
  7710. "php": "^7.0",
  7711. "phpdocumentor/reflection-common": "^1.0.0 || ^2.0.0",
  7712. "phpdocumentor/type-resolver": "~0.4 || ^1.0.0",
  7713. "webmozart/assert": "^1.0"
  7714. },
  7715. "require-dev": {
  7716. "doctrine/instantiator": "^1.0.5",
  7717. "mockery/mockery": "^1.0",
  7718. "phpdocumentor/type-resolver": "0.4.*",
  7719. "phpunit/phpunit": "^6.4"
  7720. },
  7721. "type": "library",
  7722. "extra": {
  7723. "branch-alias": {
  7724. "dev-master": "4.x-dev"
  7725. }
  7726. },
  7727. "autoload": {
  7728. "psr-4": {
  7729. "phpDocumentor\\Reflection\\": [
  7730. "src/"
  7731. ]
  7732. }
  7733. },
  7734. "notification-url": "https://packagist.org/downloads/",
  7735. "license": [
  7736. "MIT"
  7737. ],
  7738. "authors": [
  7739. {
  7740. "name": "Mike van Riel",
  7741. "email": "me@mikevanriel.com"
  7742. }
  7743. ],
  7744. "description": "With this component, a library can provide support for annotations via DocBlocks or otherwise retrieve information that is embedded in a DocBlock.",
  7745. "time": "2019-12-28T18:55:12+00:00"
  7746. },
  7747. {
  7748. "name": "phpdocumentor/type-resolver",
  7749. "version": "0.5.1",
  7750. "source": {
  7751. "type": "git",
  7752. "url": "https://github.com/phpDocumentor/TypeResolver.git",
  7753. "reference": "cf842904952e64e703800d094cdf34e715a8a3ae"
  7754. },
  7755. "dist": {
  7756. "type": "zip",
  7757. "url": "https://api.github.com/repos/phpDocumentor/TypeResolver/zipball/cf842904952e64e703800d094cdf34e715a8a3ae",
  7758. "reference": "cf842904952e64e703800d094cdf34e715a8a3ae",
  7759. "shasum": ""
  7760. },
  7761. "require": {
  7762. "php": "^7.0",
  7763. "phpdocumentor/reflection-common": "^1.0"
  7764. },
  7765. "require-dev": {
  7766. "mockery/mockery": "^1.0",
  7767. "phpunit/phpunit": "^6.4"
  7768. },
  7769. "type": "library",
  7770. "extra": {
  7771. "branch-alias": {
  7772. "dev-master": "1.0.x-dev"
  7773. }
  7774. },
  7775. "autoload": {
  7776. "psr-4": {
  7777. "phpDocumentor\\Reflection\\": "src"
  7778. }
  7779. },
  7780. "notification-url": "https://packagist.org/downloads/",
  7781. "license": [
  7782. "MIT"
  7783. ],
  7784. "authors": [
  7785. {
  7786. "name": "Mike van Riel",
  7787. "email": "me@mikevanriel.com"
  7788. }
  7789. ],
  7790. "time": "2017-12-30T13:23:38+00:00"
  7791. },
  7792. {
  7793. "name": "phpspec/prophecy",
  7794. "version": "v1.10.3",
  7795. "source": {
  7796. "type": "git",
  7797. "url": "https://github.com/phpspec/prophecy.git",
  7798. "reference": "451c3cd1418cf640de218914901e51b064abb093"
  7799. },
  7800. "dist": {
  7801. "type": "zip",
  7802. "url": "https://api.github.com/repos/phpspec/prophecy/zipball/451c3cd1418cf640de218914901e51b064abb093",
  7803. "reference": "451c3cd1418cf640de218914901e51b064abb093",
  7804. "shasum": ""
  7805. },
  7806. "require": {
  7807. "doctrine/instantiator": "^1.0.2",
  7808. "php": "^5.3|^7.0",
  7809. "phpdocumentor/reflection-docblock": "^2.0|^3.0.2|^4.0|^5.0",
  7810. "sebastian/comparator": "^1.2.3|^2.0|^3.0|^4.0",
  7811. "sebastian/recursion-context": "^1.0|^2.0|^3.0|^4.0"
  7812. },
  7813. "require-dev": {
  7814. "phpspec/phpspec": "^2.5 || ^3.2",
  7815. "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.5 || ^7.1"
  7816. },
  7817. "type": "library",
  7818. "extra": {
  7819. "branch-alias": {
  7820. "dev-master": "1.10.x-dev"
  7821. }
  7822. },
  7823. "autoload": {
  7824. "psr-4": {
  7825. "Prophecy\\": "src/Prophecy"
  7826. }
  7827. },
  7828. "notification-url": "https://packagist.org/downloads/",
  7829. "license": [
  7830. "MIT"
  7831. ],
  7832. "authors": [
  7833. {
  7834. "name": "Konstantin Kudryashov",
  7835. "email": "ever.zet@gmail.com",
  7836. "homepage": "http://everzet.com"
  7837. },
  7838. {
  7839. "name": "Marcello Duarte",
  7840. "email": "marcello.duarte@gmail.com"
  7841. }
  7842. ],
  7843. "description": "Highly opinionated mocking framework for PHP 5.3+",
  7844. "homepage": "https://github.com/phpspec/prophecy",
  7845. "keywords": [
  7846. "Double",
  7847. "Dummy",
  7848. "fake",
  7849. "mock",
  7850. "spy",
  7851. "stub"
  7852. ],
  7853. "time": "2020-03-05T15:02:03+00:00"
  7854. },
  7855. {
  7856. "name": "phpunit/php-code-coverage",
  7857. "version": "5.3.2",
  7858. "source": {
  7859. "type": "git",
  7860. "url": "https://github.com/sebastianbergmann/php-code-coverage.git",
  7861. "reference": "c89677919c5dd6d3b3852f230a663118762218ac"
  7862. },
  7863. "dist": {
  7864. "type": "zip",
  7865. "url": "https://api.github.com/repos/sebastianbergmann/php-code-coverage/zipball/c89677919c5dd6d3b3852f230a663118762218ac",
  7866. "reference": "c89677919c5dd6d3b3852f230a663118762218ac",
  7867. "shasum": ""
  7868. },
  7869. "require": {
  7870. "ext-dom": "*",
  7871. "ext-xmlwriter": "*",
  7872. "php": "^7.0",
  7873. "phpunit/php-file-iterator": "^1.4.2",
  7874. "phpunit/php-text-template": "^1.2.1",
  7875. "phpunit/php-token-stream": "^2.0.1",
  7876. "sebastian/code-unit-reverse-lookup": "^1.0.1",
  7877. "sebastian/environment": "^3.0",
  7878. "sebastian/version": "^2.0.1",
  7879. "theseer/tokenizer": "^1.1"
  7880. },
  7881. "require-dev": {
  7882. "phpunit/phpunit": "^6.0"
  7883. },
  7884. "suggest": {
  7885. "ext-xdebug": "^2.5.5"
  7886. },
  7887. "type": "library",
  7888. "extra": {
  7889. "branch-alias": {
  7890. "dev-master": "5.3.x-dev"
  7891. }
  7892. },
  7893. "autoload": {
  7894. "classmap": [
  7895. "src/"
  7896. ]
  7897. },
  7898. "notification-url": "https://packagist.org/downloads/",
  7899. "license": [
  7900. "BSD-3-Clause"
  7901. ],
  7902. "authors": [
  7903. {
  7904. "name": "Sebastian Bergmann",
  7905. "email": "sebastian@phpunit.de",
  7906. "role": "lead"
  7907. }
  7908. ],
  7909. "description": "Library that provides collection, processing, and rendering functionality for PHP code coverage information.",
  7910. "homepage": "https://github.com/sebastianbergmann/php-code-coverage",
  7911. "keywords": [
  7912. "coverage",
  7913. "testing",
  7914. "xunit"
  7915. ],
  7916. "time": "2018-04-06T15:36:58+00:00"
  7917. },
  7918. {
  7919. "name": "phpunit/php-file-iterator",
  7920. "version": "1.4.5",
  7921. "source": {
  7922. "type": "git",
  7923. "url": "https://github.com/sebastianbergmann/php-file-iterator.git",
  7924. "reference": "730b01bc3e867237eaac355e06a36b85dd93a8b4"
  7925. },
  7926. "dist": {
  7927. "type": "zip",
  7928. "url": "https://api.github.com/repos/sebastianbergmann/php-file-iterator/zipball/730b01bc3e867237eaac355e06a36b85dd93a8b4",
  7929. "reference": "730b01bc3e867237eaac355e06a36b85dd93a8b4",
  7930. "shasum": ""
  7931. },
  7932. "require": {
  7933. "php": ">=5.3.3"
  7934. },
  7935. "type": "library",
  7936. "extra": {
  7937. "branch-alias": {
  7938. "dev-master": "1.4.x-dev"
  7939. }
  7940. },
  7941. "autoload": {
  7942. "classmap": [
  7943. "src/"
  7944. ]
  7945. },
  7946. "notification-url": "https://packagist.org/downloads/",
  7947. "license": [
  7948. "BSD-3-Clause"
  7949. ],
  7950. "authors": [
  7951. {
  7952. "name": "Sebastian Bergmann",
  7953. "email": "sb@sebastian-bergmann.de",
  7954. "role": "lead"
  7955. }
  7956. ],
  7957. "description": "FilterIterator implementation that filters files based on a list of suffixes.",
  7958. "homepage": "https://github.com/sebastianbergmann/php-file-iterator/",
  7959. "keywords": [
  7960. "filesystem",
  7961. "iterator"
  7962. ],
  7963. "time": "2017-11-27T13:52:08+00:00"
  7964. },
  7965. {
  7966. "name": "phpunit/php-text-template",
  7967. "version": "1.2.1",
  7968. "source": {
  7969. "type": "git",
  7970. "url": "https://github.com/sebastianbergmann/php-text-template.git",
  7971. "reference": "31f8b717e51d9a2afca6c9f046f5d69fc27c8686"
  7972. },
  7973. "dist": {
  7974. "type": "zip",
  7975. "url": "https://api.github.com/repos/sebastianbergmann/php-text-template/zipball/31f8b717e51d9a2afca6c9f046f5d69fc27c8686",
  7976. "reference": "31f8b717e51d9a2afca6c9f046f5d69fc27c8686",
  7977. "shasum": ""
  7978. },
  7979. "require": {
  7980. "php": ">=5.3.3"
  7981. },
  7982. "type": "library",
  7983. "autoload": {
  7984. "classmap": [
  7985. "src/"
  7986. ]
  7987. },
  7988. "notification-url": "https://packagist.org/downloads/",
  7989. "license": [
  7990. "BSD-3-Clause"
  7991. ],
  7992. "authors": [
  7993. {
  7994. "name": "Sebastian Bergmann",
  7995. "email": "sebastian@phpunit.de",
  7996. "role": "lead"
  7997. }
  7998. ],
  7999. "description": "Simple template engine.",
  8000. "homepage": "https://github.com/sebastianbergmann/php-text-template/",
  8001. "keywords": [
  8002. "template"
  8003. ],
  8004. "time": "2015-06-21T13:50:34+00:00"
  8005. },
  8006. {
  8007. "name": "phpunit/php-timer",
  8008. "version": "1.0.9",
  8009. "source": {
  8010. "type": "git",
  8011. "url": "https://github.com/sebastianbergmann/php-timer.git",
  8012. "reference": "3dcf38ca72b158baf0bc245e9184d3fdffa9c46f"
  8013. },
  8014. "dist": {
  8015. "type": "zip",
  8016. "url": "https://api.github.com/repos/sebastianbergmann/php-timer/zipball/3dcf38ca72b158baf0bc245e9184d3fdffa9c46f",
  8017. "reference": "3dcf38ca72b158baf0bc245e9184d3fdffa9c46f",
  8018. "shasum": ""
  8019. },
  8020. "require": {
  8021. "php": "^5.3.3 || ^7.0"
  8022. },
  8023. "require-dev": {
  8024. "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.0"
  8025. },
  8026. "type": "library",
  8027. "extra": {
  8028. "branch-alias": {
  8029. "dev-master": "1.0-dev"
  8030. }
  8031. },
  8032. "autoload": {
  8033. "classmap": [
  8034. "src/"
  8035. ]
  8036. },
  8037. "notification-url": "https://packagist.org/downloads/",
  8038. "license": [
  8039. "BSD-3-Clause"
  8040. ],
  8041. "authors": [
  8042. {
  8043. "name": "Sebastian Bergmann",
  8044. "email": "sb@sebastian-bergmann.de",
  8045. "role": "lead"
  8046. }
  8047. ],
  8048. "description": "Utility class for timing",
  8049. "homepage": "https://github.com/sebastianbergmann/php-timer/",
  8050. "keywords": [
  8051. "timer"
  8052. ],
  8053. "time": "2017-02-26T11:10:40+00:00"
  8054. },
  8055. {
  8056. "name": "phpunit/php-token-stream",
  8057. "version": "2.0.2",
  8058. "source": {
  8059. "type": "git",
  8060. "url": "https://github.com/sebastianbergmann/php-token-stream.git",
  8061. "reference": "791198a2c6254db10131eecfe8c06670700904db"
  8062. },
  8063. "dist": {
  8064. "type": "zip",
  8065. "url": "https://api.github.com/repos/sebastianbergmann/php-token-stream/zipball/791198a2c6254db10131eecfe8c06670700904db",
  8066. "reference": "791198a2c6254db10131eecfe8c06670700904db",
  8067. "shasum": ""
  8068. },
  8069. "require": {
  8070. "ext-tokenizer": "*",
  8071. "php": "^7.0"
  8072. },
  8073. "require-dev": {
  8074. "phpunit/phpunit": "^6.2.4"
  8075. },
  8076. "type": "library",
  8077. "extra": {
  8078. "branch-alias": {
  8079. "dev-master": "2.0-dev"
  8080. }
  8081. },
  8082. "autoload": {
  8083. "classmap": [
  8084. "src/"
  8085. ]
  8086. },
  8087. "notification-url": "https://packagist.org/downloads/",
  8088. "license": [
  8089. "BSD-3-Clause"
  8090. ],
  8091. "authors": [
  8092. {
  8093. "name": "Sebastian Bergmann",
  8094. "email": "sebastian@phpunit.de"
  8095. }
  8096. ],
  8097. "description": "Wrapper around PHP's tokenizer extension.",
  8098. "homepage": "https://github.com/sebastianbergmann/php-token-stream/",
  8099. "keywords": [
  8100. "tokenizer"
  8101. ],
  8102. "time": "2017-11-27T05:48:46+00:00"
  8103. },
  8104. {
  8105. "name": "phpunit/phpunit",
  8106. "version": "6.5.14",
  8107. "source": {
  8108. "type": "git",
  8109. "url": "https://github.com/sebastianbergmann/phpunit.git",
  8110. "reference": "bac23fe7ff13dbdb461481f706f0e9fe746334b7"
  8111. },
  8112. "dist": {
  8113. "type": "zip",
  8114. "url": "https://api.github.com/repos/sebastianbergmann/phpunit/zipball/bac23fe7ff13dbdb461481f706f0e9fe746334b7",
  8115. "reference": "bac23fe7ff13dbdb461481f706f0e9fe746334b7",
  8116. "shasum": ""
  8117. },
  8118. "require": {
  8119. "ext-dom": "*",
  8120. "ext-json": "*",
  8121. "ext-libxml": "*",
  8122. "ext-mbstring": "*",
  8123. "ext-xml": "*",
  8124. "myclabs/deep-copy": "^1.6.1",
  8125. "phar-io/manifest": "^1.0.1",
  8126. "phar-io/version": "^1.0",
  8127. "php": "^7.0",
  8128. "phpspec/prophecy": "^1.7",
  8129. "phpunit/php-code-coverage": "^5.3",
  8130. "phpunit/php-file-iterator": "^1.4.3",
  8131. "phpunit/php-text-template": "^1.2.1",
  8132. "phpunit/php-timer": "^1.0.9",
  8133. "phpunit/phpunit-mock-objects": "^5.0.9",
  8134. "sebastian/comparator": "^2.1",
  8135. "sebastian/diff": "^2.0",
  8136. "sebastian/environment": "^3.1",
  8137. "sebastian/exporter": "^3.1",
  8138. "sebastian/global-state": "^2.0",
  8139. "sebastian/object-enumerator": "^3.0.3",
  8140. "sebastian/resource-operations": "^1.0",
  8141. "sebastian/version": "^2.0.1"
  8142. },
  8143. "conflict": {
  8144. "phpdocumentor/reflection-docblock": "3.0.2",
  8145. "phpunit/dbunit": "<3.0"
  8146. },
  8147. "require-dev": {
  8148. "ext-pdo": "*"
  8149. },
  8150. "suggest": {
  8151. "ext-xdebug": "*",
  8152. "phpunit/php-invoker": "^1.1"
  8153. },
  8154. "bin": [
  8155. "phpunit"
  8156. ],
  8157. "type": "library",
  8158. "extra": {
  8159. "branch-alias": {
  8160. "dev-master": "6.5.x-dev"
  8161. }
  8162. },
  8163. "autoload": {
  8164. "classmap": [
  8165. "src/"
  8166. ]
  8167. },
  8168. "notification-url": "https://packagist.org/downloads/",
  8169. "license": [
  8170. "BSD-3-Clause"
  8171. ],
  8172. "authors": [
  8173. {
  8174. "name": "Sebastian Bergmann",
  8175. "email": "sebastian@phpunit.de",
  8176. "role": "lead"
  8177. }
  8178. ],
  8179. "description": "The PHP Unit Testing framework.",
  8180. "homepage": "https://phpunit.de/",
  8181. "keywords": [
  8182. "phpunit",
  8183. "testing",
  8184. "xunit"
  8185. ],
  8186. "time": "2019-02-01T05:22:47+00:00"
  8187. },
  8188. {
  8189. "name": "phpunit/phpunit-mock-objects",
  8190. "version": "5.0.10",
  8191. "source": {
  8192. "type": "git",
  8193. "url": "https://github.com/sebastianbergmann/phpunit-mock-objects.git",
  8194. "reference": "cd1cf05c553ecfec36b170070573e540b67d3f1f"
  8195. },
  8196. "dist": {
  8197. "type": "zip",
  8198. "url": "https://api.github.com/repos/sebastianbergmann/phpunit-mock-objects/zipball/cd1cf05c553ecfec36b170070573e540b67d3f1f",
  8199. "reference": "cd1cf05c553ecfec36b170070573e540b67d3f1f",
  8200. "shasum": ""
  8201. },
  8202. "require": {
  8203. "doctrine/instantiator": "^1.0.5",
  8204. "php": "^7.0",
  8205. "phpunit/php-text-template": "^1.2.1",
  8206. "sebastian/exporter": "^3.1"
  8207. },
  8208. "conflict": {
  8209. "phpunit/phpunit": "<6.0"
  8210. },
  8211. "require-dev": {
  8212. "phpunit/phpunit": "^6.5.11"
  8213. },
  8214. "suggest": {
  8215. "ext-soap": "*"
  8216. },
  8217. "type": "library",
  8218. "extra": {
  8219. "branch-alias": {
  8220. "dev-master": "5.0.x-dev"
  8221. }
  8222. },
  8223. "autoload": {
  8224. "classmap": [
  8225. "src/"
  8226. ]
  8227. },
  8228. "notification-url": "https://packagist.org/downloads/",
  8229. "license": [
  8230. "BSD-3-Clause"
  8231. ],
  8232. "authors": [
  8233. {
  8234. "name": "Sebastian Bergmann",
  8235. "email": "sebastian@phpunit.de",
  8236. "role": "lead"
  8237. }
  8238. ],
  8239. "description": "Mock Object library for PHPUnit",
  8240. "homepage": "https://github.com/sebastianbergmann/phpunit-mock-objects/",
  8241. "keywords": [
  8242. "mock",
  8243. "xunit"
  8244. ],
  8245. "abandoned": true,
  8246. "time": "2018-08-09T05:50:03+00:00"
  8247. },
  8248. {
  8249. "name": "psr/container",
  8250. "version": "1.0.0",
  8251. "source": {
  8252. "type": "git",
  8253. "url": "https://github.com/php-fig/container.git",
  8254. "reference": "b7ce3b176482dbbc1245ebf52b181af44c2cf55f"
  8255. },
  8256. "dist": {
  8257. "type": "zip",
  8258. "url": "https://api.github.com/repos/php-fig/container/zipball/b7ce3b176482dbbc1245ebf52b181af44c2cf55f",
  8259. "reference": "b7ce3b176482dbbc1245ebf52b181af44c2cf55f",
  8260. "shasum": ""
  8261. },
  8262. "require": {
  8263. "php": ">=5.3.0"
  8264. },
  8265. "type": "library",
  8266. "extra": {
  8267. "branch-alias": {
  8268. "dev-master": "1.0.x-dev"
  8269. }
  8270. },
  8271. "autoload": {
  8272. "psr-4": {
  8273. "Psr\\Container\\": "src/"
  8274. }
  8275. },
  8276. "notification-url": "https://packagist.org/downloads/",
  8277. "license": [
  8278. "MIT"
  8279. ],
  8280. "authors": [
  8281. {
  8282. "name": "PHP-FIG",
  8283. "homepage": "http://www.php-fig.org/"
  8284. }
  8285. ],
  8286. "description": "Common Container Interface (PHP FIG PSR-11)",
  8287. "homepage": "https://github.com/php-fig/container",
  8288. "keywords": [
  8289. "PSR-11",
  8290. "container",
  8291. "container-interface",
  8292. "container-interop",
  8293. "psr"
  8294. ],
  8295. "time": "2017-02-14T16:28:37+00:00"
  8296. },
  8297. {
  8298. "name": "psr/http-message",
  8299. "version": "1.0.1",
  8300. "source": {
  8301. "type": "git",
  8302. "url": "https://github.com/php-fig/http-message.git",
  8303. "reference": "f6561bf28d520154e4b0ec72be95418abe6d9363"
  8304. },
  8305. "dist": {
  8306. "type": "zip",
  8307. "url": "https://api.github.com/repos/php-fig/http-message/zipball/f6561bf28d520154e4b0ec72be95418abe6d9363",
  8308. "reference": "f6561bf28d520154e4b0ec72be95418abe6d9363",
  8309. "shasum": ""
  8310. },
  8311. "require": {
  8312. "php": ">=5.3.0"
  8313. },
  8314. "type": "library",
  8315. "extra": {
  8316. "branch-alias": {
  8317. "dev-master": "1.0.x-dev"
  8318. }
  8319. },
  8320. "autoload": {
  8321. "psr-4": {
  8322. "Psr\\Http\\Message\\": "src/"
  8323. }
  8324. },
  8325. "notification-url": "https://packagist.org/downloads/",
  8326. "license": [
  8327. "MIT"
  8328. ],
  8329. "authors": [
  8330. {
  8331. "name": "PHP-FIG",
  8332. "homepage": "http://www.php-fig.org/"
  8333. }
  8334. ],
  8335. "description": "Common interface for HTTP messages",
  8336. "homepage": "https://github.com/php-fig/http-message",
  8337. "keywords": [
  8338. "http",
  8339. "http-message",
  8340. "psr",
  8341. "psr-7",
  8342. "request",
  8343. "response"
  8344. ],
  8345. "time": "2016-08-06T14:39:51+00:00"
  8346. },
  8347. {
  8348. "name": "psr/log",
  8349. "version": "1.1.3",
  8350. "source": {
  8351. "type": "git",
  8352. "url": "https://github.com/php-fig/log.git",
  8353. "reference": "0f73288fd15629204f9d42b7055f72dacbe811fc"
  8354. },
  8355. "dist": {
  8356. "type": "zip",
  8357. "url": "https://api.github.com/repos/php-fig/log/zipball/0f73288fd15629204f9d42b7055f72dacbe811fc",
  8358. "reference": "0f73288fd15629204f9d42b7055f72dacbe811fc",
  8359. "shasum": ""
  8360. },
  8361. "require": {
  8362. "php": ">=5.3.0"
  8363. },
  8364. "type": "library",
  8365. "extra": {
  8366. "branch-alias": {
  8367. "dev-master": "1.1.x-dev"
  8368. }
  8369. },
  8370. "autoload": {
  8371. "psr-4": {
  8372. "Psr\\Log\\": "Psr/Log/"
  8373. }
  8374. },
  8375. "notification-url": "https://packagist.org/downloads/",
  8376. "license": [
  8377. "MIT"
  8378. ],
  8379. "authors": [
  8380. {
  8381. "name": "PHP-FIG",
  8382. "homepage": "http://www.php-fig.org/"
  8383. }
  8384. ],
  8385. "description": "Common interface for logging libraries",
  8386. "homepage": "https://github.com/php-fig/log",
  8387. "keywords": [
  8388. "log",
  8389. "psr",
  8390. "psr-3"
  8391. ],
  8392. "time": "2020-03-23T09:12:05+00:00"
  8393. },
  8394. {
  8395. "name": "psy/psysh",
  8396. "version": "v0.9.9",
  8397. "source": {
  8398. "type": "git",
  8399. "url": "https://github.com/bobthecow/psysh.git",
  8400. "reference": "9aaf29575bb8293206bb0420c1e1c87ff2ffa94e"
  8401. },
  8402. "dist": {
  8403. "type": "zip",
  8404. "url": "https://api.github.com/repos/bobthecow/psysh/zipball/9aaf29575bb8293206bb0420c1e1c87ff2ffa94e",
  8405. "reference": "9aaf29575bb8293206bb0420c1e1c87ff2ffa94e",
  8406. "shasum": ""
  8407. },
  8408. "require": {
  8409. "dnoegel/php-xdg-base-dir": "0.1",
  8410. "ext-json": "*",
  8411. "ext-tokenizer": "*",
  8412. "jakub-onderka/php-console-highlighter": "0.3.*|0.4.*",
  8413. "nikic/php-parser": "~1.3|~2.0|~3.0|~4.0",
  8414. "php": ">=5.4.0",
  8415. "symfony/console": "~2.3.10|^2.4.2|~3.0|~4.0",
  8416. "symfony/var-dumper": "~2.7|~3.0|~4.0"
  8417. },
  8418. "require-dev": {
  8419. "bamarni/composer-bin-plugin": "^1.2",
  8420. "hoa/console": "~2.15|~3.16",
  8421. "phpunit/phpunit": "~4.8.35|~5.0|~6.0|~7.0"
  8422. },
  8423. "suggest": {
  8424. "ext-pcntl": "Enabling the PCNTL extension makes PsySH a lot happier :)",
  8425. "ext-pdo-sqlite": "The doc command requires SQLite to work.",
  8426. "ext-posix": "If you have PCNTL, you'll want the POSIX extension as well.",
  8427. "ext-readline": "Enables support for arrow-key history navigation, and showing and manipulating command history.",
  8428. "hoa/console": "A pure PHP readline implementation. You'll want this if your PHP install doesn't already support readline or libedit."
  8429. },
  8430. "bin": [
  8431. "bin/psysh"
  8432. ],
  8433. "type": "library",
  8434. "extra": {
  8435. "branch-alias": {
  8436. "dev-develop": "0.9.x-dev"
  8437. }
  8438. },
  8439. "autoload": {
  8440. "files": [
  8441. "src/functions.php"
  8442. ],
  8443. "psr-4": {
  8444. "Psy\\": "src/"
  8445. }
  8446. },
  8447. "notification-url": "https://packagist.org/downloads/",
  8448. "license": [
  8449. "MIT"
  8450. ],
  8451. "authors": [
  8452. {
  8453. "name": "Justin Hileman",
  8454. "email": "justin@justinhileman.info",
  8455. "homepage": "http://justinhileman.com"
  8456. }
  8457. ],
  8458. "description": "An interactive shell for modern PHP.",
  8459. "homepage": "http://psysh.org",
  8460. "keywords": [
  8461. "REPL",
  8462. "console",
  8463. "interactive",
  8464. "shell"
  8465. ],
  8466. "time": "2018-10-13T15:16:03+00:00"
  8467. },
  8468. {
  8469. "name": "ralouphie/getallheaders",
  8470. "version": "3.0.3",
  8471. "source": {
  8472. "type": "git",
  8473. "url": "https://github.com/ralouphie/getallheaders.git",
  8474. "reference": "120b605dfeb996808c31b6477290a714d356e822"
  8475. },
  8476. "dist": {
  8477. "type": "zip",
  8478. "url": "https://api.github.com/repos/ralouphie/getallheaders/zipball/120b605dfeb996808c31b6477290a714d356e822",
  8479. "reference": "120b605dfeb996808c31b6477290a714d356e822",
  8480. "shasum": ""
  8481. },
  8482. "require": {
  8483. "php": ">=5.6"
  8484. },
  8485. "require-dev": {
  8486. "php-coveralls/php-coveralls": "^2.1",
  8487. "phpunit/phpunit": "^5 || ^6.5"
  8488. },
  8489. "type": "library",
  8490. "autoload": {
  8491. "files": [
  8492. "src/getallheaders.php"
  8493. ]
  8494. },
  8495. "notification-url": "https://packagist.org/downloads/",
  8496. "license": [
  8497. "MIT"
  8498. ],
  8499. "authors": [
  8500. {
  8501. "name": "Ralph Khattar",
  8502. "email": "ralph.khattar@gmail.com"
  8503. }
  8504. ],
  8505. "description": "A polyfill for getallheaders.",
  8506. "time": "2019-03-08T08:55:37+00:00"
  8507. },
  8508. {
  8509. "name": "sebastian/code-unit-reverse-lookup",
  8510. "version": "1.0.1",
  8511. "source": {
  8512. "type": "git",
  8513. "url": "https://github.com/sebastianbergmann/code-unit-reverse-lookup.git",
  8514. "reference": "4419fcdb5eabb9caa61a27c7a1db532a6b55dd18"
  8515. },
  8516. "dist": {
  8517. "type": "zip",
  8518. "url": "https://api.github.com/repos/sebastianbergmann/code-unit-reverse-lookup/zipball/4419fcdb5eabb9caa61a27c7a1db532a6b55dd18",
  8519. "reference": "4419fcdb5eabb9caa61a27c7a1db532a6b55dd18",
  8520. "shasum": ""
  8521. },
  8522. "require": {
  8523. "php": "^5.6 || ^7.0"
  8524. },
  8525. "require-dev": {
  8526. "phpunit/phpunit": "^5.7 || ^6.0"
  8527. },
  8528. "type": "library",
  8529. "extra": {
  8530. "branch-alias": {
  8531. "dev-master": "1.0.x-dev"
  8532. }
  8533. },
  8534. "autoload": {
  8535. "classmap": [
  8536. "src/"
  8537. ]
  8538. },
  8539. "notification-url": "https://packagist.org/downloads/",
  8540. "license": [
  8541. "BSD-3-Clause"
  8542. ],
  8543. "authors": [
  8544. {
  8545. "name": "Sebastian Bergmann",
  8546. "email": "sebastian@phpunit.de"
  8547. }
  8548. ],
  8549. "description": "Looks up which function or method a line of code belongs to",
  8550. "homepage": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/",
  8551. "time": "2017-03-04T06:30:41+00:00"
  8552. },
  8553. {
  8554. "name": "sebastian/comparator",
  8555. "version": "2.1.3",
  8556. "source": {
  8557. "type": "git",
  8558. "url": "https://github.com/sebastianbergmann/comparator.git",
  8559. "reference": "34369daee48eafb2651bea869b4b15d75ccc35f9"
  8560. },
  8561. "dist": {
  8562. "type": "zip",
  8563. "url": "https://api.github.com/repos/sebastianbergmann/comparator/zipball/34369daee48eafb2651bea869b4b15d75ccc35f9",
  8564. "reference": "34369daee48eafb2651bea869b4b15d75ccc35f9",
  8565. "shasum": ""
  8566. },
  8567. "require": {
  8568. "php": "^7.0",
  8569. "sebastian/diff": "^2.0 || ^3.0",
  8570. "sebastian/exporter": "^3.1"
  8571. },
  8572. "require-dev": {
  8573. "phpunit/phpunit": "^6.4"
  8574. },
  8575. "type": "library",
  8576. "extra": {
  8577. "branch-alias": {
  8578. "dev-master": "2.1.x-dev"
  8579. }
  8580. },
  8581. "autoload": {
  8582. "classmap": [
  8583. "src/"
  8584. ]
  8585. },
  8586. "notification-url": "https://packagist.org/downloads/",
  8587. "license": [
  8588. "BSD-3-Clause"
  8589. ],
  8590. "authors": [
  8591. {
  8592. "name": "Jeff Welch",
  8593. "email": "whatthejeff@gmail.com"
  8594. },
  8595. {
  8596. "name": "Volker Dusch",
  8597. "email": "github@wallbash.com"
  8598. },
  8599. {
  8600. "name": "Bernhard Schussek",
  8601. "email": "bschussek@2bepublished.at"
  8602. },
  8603. {
  8604. "name": "Sebastian Bergmann",
  8605. "email": "sebastian@phpunit.de"
  8606. }
  8607. ],
  8608. "description": "Provides the functionality to compare PHP values for equality",
  8609. "homepage": "https://github.com/sebastianbergmann/comparator",
  8610. "keywords": [
  8611. "comparator",
  8612. "compare",
  8613. "equality"
  8614. ],
  8615. "time": "2018-02-01T13:46:46+00:00"
  8616. },
  8617. {
  8618. "name": "sebastian/diff",
  8619. "version": "2.0.1",
  8620. "source": {
  8621. "type": "git",
  8622. "url": "https://github.com/sebastianbergmann/diff.git",
  8623. "reference": "347c1d8b49c5c3ee30c7040ea6fc446790e6bddd"
  8624. },
  8625. "dist": {
  8626. "type": "zip",
  8627. "url": "https://api.github.com/repos/sebastianbergmann/diff/zipball/347c1d8b49c5c3ee30c7040ea6fc446790e6bddd",
  8628. "reference": "347c1d8b49c5c3ee30c7040ea6fc446790e6bddd",
  8629. "shasum": ""
  8630. },
  8631. "require": {
  8632. "php": "^7.0"
  8633. },
  8634. "require-dev": {
  8635. "phpunit/phpunit": "^6.2"
  8636. },
  8637. "type": "library",
  8638. "extra": {
  8639. "branch-alias": {
  8640. "dev-master": "2.0-dev"
  8641. }
  8642. },
  8643. "autoload": {
  8644. "classmap": [
  8645. "src/"
  8646. ]
  8647. },
  8648. "notification-url": "https://packagist.org/downloads/",
  8649. "license": [
  8650. "BSD-3-Clause"
  8651. ],
  8652. "authors": [
  8653. {
  8654. "name": "Kore Nordmann",
  8655. "email": "mail@kore-nordmann.de"
  8656. },
  8657. {
  8658. "name": "Sebastian Bergmann",
  8659. "email": "sebastian@phpunit.de"
  8660. }
  8661. ],
  8662. "description": "Diff implementation",
  8663. "homepage": "https://github.com/sebastianbergmann/diff",
  8664. "keywords": [
  8665. "diff"
  8666. ],
  8667. "time": "2017-08-03T08:09:46+00:00"
  8668. },
  8669. {
  8670. "name": "sebastian/environment",
  8671. "version": "3.1.0",
  8672. "source": {
  8673. "type": "git",
  8674. "url": "https://github.com/sebastianbergmann/environment.git",
  8675. "reference": "cd0871b3975fb7fc44d11314fd1ee20925fce4f5"
  8676. },
  8677. "dist": {
  8678. "type": "zip",
  8679. "url": "https://api.github.com/repos/sebastianbergmann/environment/zipball/cd0871b3975fb7fc44d11314fd1ee20925fce4f5",
  8680. "reference": "cd0871b3975fb7fc44d11314fd1ee20925fce4f5",
  8681. "shasum": ""
  8682. },
  8683. "require": {
  8684. "php": "^7.0"
  8685. },
  8686. "require-dev": {
  8687. "phpunit/phpunit": "^6.1"
  8688. },
  8689. "type": "library",
  8690. "extra": {
  8691. "branch-alias": {
  8692. "dev-master": "3.1.x-dev"
  8693. }
  8694. },
  8695. "autoload": {
  8696. "classmap": [
  8697. "src/"
  8698. ]
  8699. },
  8700. "notification-url": "https://packagist.org/downloads/",
  8701. "license": [
  8702. "BSD-3-Clause"
  8703. ],
  8704. "authors": [
  8705. {
  8706. "name": "Sebastian Bergmann",
  8707. "email": "sebastian@phpunit.de"
  8708. }
  8709. ],
  8710. "description": "Provides functionality to handle HHVM/PHP environments",
  8711. "homepage": "http://www.github.com/sebastianbergmann/environment",
  8712. "keywords": [
  8713. "Xdebug",
  8714. "environment",
  8715. "hhvm"
  8716. ],
  8717. "time": "2017-07-01T08:51:00+00:00"
  8718. },
  8719. {
  8720. "name": "sebastian/exporter",
  8721. "version": "3.1.2",
  8722. "source": {
  8723. "type": "git",
  8724. "url": "https://github.com/sebastianbergmann/exporter.git",
  8725. "reference": "68609e1261d215ea5b21b7987539cbfbe156ec3e"
  8726. },
  8727. "dist": {
  8728. "type": "zip",
  8729. "url": "https://api.github.com/repos/sebastianbergmann/exporter/zipball/68609e1261d215ea5b21b7987539cbfbe156ec3e",
  8730. "reference": "68609e1261d215ea5b21b7987539cbfbe156ec3e",
  8731. "shasum": ""
  8732. },
  8733. "require": {
  8734. "php": "^7.0",
  8735. "sebastian/recursion-context": "^3.0"
  8736. },
  8737. "require-dev": {
  8738. "ext-mbstring": "*",
  8739. "phpunit/phpunit": "^6.0"
  8740. },
  8741. "type": "library",
  8742. "extra": {
  8743. "branch-alias": {
  8744. "dev-master": "3.1.x-dev"
  8745. }
  8746. },
  8747. "autoload": {
  8748. "classmap": [
  8749. "src/"
  8750. ]
  8751. },
  8752. "notification-url": "https://packagist.org/downloads/",
  8753. "license": [
  8754. "BSD-3-Clause"
  8755. ],
  8756. "authors": [
  8757. {
  8758. "name": "Sebastian Bergmann",
  8759. "email": "sebastian@phpunit.de"
  8760. },
  8761. {
  8762. "name": "Jeff Welch",
  8763. "email": "whatthejeff@gmail.com"
  8764. },
  8765. {
  8766. "name": "Volker Dusch",
  8767. "email": "github@wallbash.com"
  8768. },
  8769. {
  8770. "name": "Adam Harvey",
  8771. "email": "aharvey@php.net"
  8772. },
  8773. {
  8774. "name": "Bernhard Schussek",
  8775. "email": "bschussek@gmail.com"
  8776. }
  8777. ],
  8778. "description": "Provides the functionality to export PHP variables for visualization",
  8779. "homepage": "http://www.github.com/sebastianbergmann/exporter",
  8780. "keywords": [
  8781. "export",
  8782. "exporter"
  8783. ],
  8784. "time": "2019-09-14T09:02:43+00:00"
  8785. },
  8786. {
  8787. "name": "sebastian/global-state",
  8788. "version": "2.0.0",
  8789. "source": {
  8790. "type": "git",
  8791. "url": "https://github.com/sebastianbergmann/global-state.git",
  8792. "reference": "e8ba02eed7bbbb9e59e43dedd3dddeff4a56b0c4"
  8793. },
  8794. "dist": {
  8795. "type": "zip",
  8796. "url": "https://api.github.com/repos/sebastianbergmann/global-state/zipball/e8ba02eed7bbbb9e59e43dedd3dddeff4a56b0c4",
  8797. "reference": "e8ba02eed7bbbb9e59e43dedd3dddeff4a56b0c4",
  8798. "shasum": ""
  8799. },
  8800. "require": {
  8801. "php": "^7.0"
  8802. },
  8803. "require-dev": {
  8804. "phpunit/phpunit": "^6.0"
  8805. },
  8806. "suggest": {
  8807. "ext-uopz": "*"
  8808. },
  8809. "type": "library",
  8810. "extra": {
  8811. "branch-alias": {
  8812. "dev-master": "2.0-dev"
  8813. }
  8814. },
  8815. "autoload": {
  8816. "classmap": [
  8817. "src/"
  8818. ]
  8819. },
  8820. "notification-url": "https://packagist.org/downloads/",
  8821. "license": [
  8822. "BSD-3-Clause"
  8823. ],
  8824. "authors": [
  8825. {
  8826. "name": "Sebastian Bergmann",
  8827. "email": "sebastian@phpunit.de"
  8828. }
  8829. ],
  8830. "description": "Snapshotting of global state",
  8831. "homepage": "http://www.github.com/sebastianbergmann/global-state",
  8832. "keywords": [
  8833. "global state"
  8834. ],
  8835. "time": "2017-04-27T15:39:26+00:00"
  8836. },
  8837. {
  8838. "name": "sebastian/object-enumerator",
  8839. "version": "3.0.3",
  8840. "source": {
  8841. "type": "git",
  8842. "url": "https://github.com/sebastianbergmann/object-enumerator.git",
  8843. "reference": "7cfd9e65d11ffb5af41198476395774d4c8a84c5"
  8844. },
  8845. "dist": {
  8846. "type": "zip",
  8847. "url": "https://api.github.com/repos/sebastianbergmann/object-enumerator/zipball/7cfd9e65d11ffb5af41198476395774d4c8a84c5",
  8848. "reference": "7cfd9e65d11ffb5af41198476395774d4c8a84c5",
  8849. "shasum": ""
  8850. },
  8851. "require": {
  8852. "php": "^7.0",
  8853. "sebastian/object-reflector": "^1.1.1",
  8854. "sebastian/recursion-context": "^3.0"
  8855. },
  8856. "require-dev": {
  8857. "phpunit/phpunit": "^6.0"
  8858. },
  8859. "type": "library",
  8860. "extra": {
  8861. "branch-alias": {
  8862. "dev-master": "3.0.x-dev"
  8863. }
  8864. },
  8865. "autoload": {
  8866. "classmap": [
  8867. "src/"
  8868. ]
  8869. },
  8870. "notification-url": "https://packagist.org/downloads/",
  8871. "license": [
  8872. "BSD-3-Clause"
  8873. ],
  8874. "authors": [
  8875. {
  8876. "name": "Sebastian Bergmann",
  8877. "email": "sebastian@phpunit.de"
  8878. }
  8879. ],
  8880. "description": "Traverses array structures and object graphs to enumerate all referenced objects",
  8881. "homepage": "https://github.com/sebastianbergmann/object-enumerator/",
  8882. "time": "2017-08-03T12:35:26+00:00"
  8883. },
  8884. {
  8885. "name": "sebastian/object-reflector",
  8886. "version": "1.1.1",
  8887. "source": {
  8888. "type": "git",
  8889. "url": "https://github.com/sebastianbergmann/object-reflector.git",
  8890. "reference": "773f97c67f28de00d397be301821b06708fca0be"
  8891. },
  8892. "dist": {
  8893. "type": "zip",
  8894. "url": "https://api.github.com/repos/sebastianbergmann/object-reflector/zipball/773f97c67f28de00d397be301821b06708fca0be",
  8895. "reference": "773f97c67f28de00d397be301821b06708fca0be",
  8896. "shasum": ""
  8897. },
  8898. "require": {
  8899. "php": "^7.0"
  8900. },
  8901. "require-dev": {
  8902. "phpunit/phpunit": "^6.0"
  8903. },
  8904. "type": "library",
  8905. "extra": {
  8906. "branch-alias": {
  8907. "dev-master": "1.1-dev"
  8908. }
  8909. },
  8910. "autoload": {
  8911. "classmap": [
  8912. "src/"
  8913. ]
  8914. },
  8915. "notification-url": "https://packagist.org/downloads/",
  8916. "license": [
  8917. "BSD-3-Clause"
  8918. ],
  8919. "authors": [
  8920. {
  8921. "name": "Sebastian Bergmann",
  8922. "email": "sebastian@phpunit.de"
  8923. }
  8924. ],
  8925. "description": "Allows reflection of object attributes, including inherited and non-public ones",
  8926. "homepage": "https://github.com/sebastianbergmann/object-reflector/",
  8927. "time": "2017-03-29T09:07:27+00:00"
  8928. },
  8929. {
  8930. "name": "sebastian/recursion-context",
  8931. "version": "3.0.0",
  8932. "source": {
  8933. "type": "git",
  8934. "url": "https://github.com/sebastianbergmann/recursion-context.git",
  8935. "reference": "5b0cd723502bac3b006cbf3dbf7a1e3fcefe4fa8"
  8936. },
  8937. "dist": {
  8938. "type": "zip",
  8939. "url": "https://api.github.com/repos/sebastianbergmann/recursion-context/zipball/5b0cd723502bac3b006cbf3dbf7a1e3fcefe4fa8",
  8940. "reference": "5b0cd723502bac3b006cbf3dbf7a1e3fcefe4fa8",
  8941. "shasum": ""
  8942. },
  8943. "require": {
  8944. "php": "^7.0"
  8945. },
  8946. "require-dev": {
  8947. "phpunit/phpunit": "^6.0"
  8948. },
  8949. "type": "library",
  8950. "extra": {
  8951. "branch-alias": {
  8952. "dev-master": "3.0.x-dev"
  8953. }
  8954. },
  8955. "autoload": {
  8956. "classmap": [
  8957. "src/"
  8958. ]
  8959. },
  8960. "notification-url": "https://packagist.org/downloads/",
  8961. "license": [
  8962. "BSD-3-Clause"
  8963. ],
  8964. "authors": [
  8965. {
  8966. "name": "Jeff Welch",
  8967. "email": "whatthejeff@gmail.com"
  8968. },
  8969. {
  8970. "name": "Sebastian Bergmann",
  8971. "email": "sebastian@phpunit.de"
  8972. },
  8973. {
  8974. "name": "Adam Harvey",
  8975. "email": "aharvey@php.net"
  8976. }
  8977. ],
  8978. "description": "Provides functionality to recursively process PHP variables",
  8979. "homepage": "http://www.github.com/sebastianbergmann/recursion-context",
  8980. "time": "2017-03-03T06:23:57+00:00"
  8981. },
  8982. {
  8983. "name": "sebastian/resource-operations",
  8984. "version": "1.0.0",
  8985. "source": {
  8986. "type": "git",
  8987. "url": "https://github.com/sebastianbergmann/resource-operations.git",
  8988. "reference": "ce990bb21759f94aeafd30209e8cfcdfa8bc3f52"
  8989. },
  8990. "dist": {
  8991. "type": "zip",
  8992. "url": "https://api.github.com/repos/sebastianbergmann/resource-operations/zipball/ce990bb21759f94aeafd30209e8cfcdfa8bc3f52",
  8993. "reference": "ce990bb21759f94aeafd30209e8cfcdfa8bc3f52",
  8994. "shasum": ""
  8995. },
  8996. "require": {
  8997. "php": ">=5.6.0"
  8998. },
  8999. "type": "library",
  9000. "extra": {
  9001. "branch-alias": {
  9002. "dev-master": "1.0.x-dev"
  9003. }
  9004. },
  9005. "autoload": {
  9006. "classmap": [
  9007. "src/"
  9008. ]
  9009. },
  9010. "notification-url": "https://packagist.org/downloads/",
  9011. "license": [
  9012. "BSD-3-Clause"
  9013. ],
  9014. "authors": [
  9015. {
  9016. "name": "Sebastian Bergmann",
  9017. "email": "sebastian@phpunit.de"
  9018. }
  9019. ],
  9020. "description": "Provides a list of PHP built-in functions that operate on resources",
  9021. "homepage": "https://www.github.com/sebastianbergmann/resource-operations",
  9022. "time": "2015-07-28T20:34:47+00:00"
  9023. },
  9024. {
  9025. "name": "sebastian/version",
  9026. "version": "2.0.1",
  9027. "source": {
  9028. "type": "git",
  9029. "url": "https://github.com/sebastianbergmann/version.git",
  9030. "reference": "99732be0ddb3361e16ad77b68ba41efc8e979019"
  9031. },
  9032. "dist": {
  9033. "type": "zip",
  9034. "url": "https://api.github.com/repos/sebastianbergmann/version/zipball/99732be0ddb3361e16ad77b68ba41efc8e979019",
  9035. "reference": "99732be0ddb3361e16ad77b68ba41efc8e979019",
  9036. "shasum": ""
  9037. },
  9038. "require": {
  9039. "php": ">=5.6"
  9040. },
  9041. "type": "library",
  9042. "extra": {
  9043. "branch-alias": {
  9044. "dev-master": "2.0.x-dev"
  9045. }
  9046. },
  9047. "autoload": {
  9048. "classmap": [
  9049. "src/"
  9050. ]
  9051. },
  9052. "notification-url": "https://packagist.org/downloads/",
  9053. "license": [
  9054. "BSD-3-Clause"
  9055. ],
  9056. "authors": [
  9057. {
  9058. "name": "Sebastian Bergmann",
  9059. "email": "sebastian@phpunit.de",
  9060. "role": "lead"
  9061. }
  9062. ],
  9063. "description": "Library that helps with managing the version number of Git-hosted PHP projects",
  9064. "homepage": "https://github.com/sebastianbergmann/version",
  9065. "time": "2016-10-03T07:35:21+00:00"
  9066. },
  9067. {
  9068. "name": "squizlabs/php_codesniffer",
  9069. "version": "3.5.4",
  9070. "source": {
  9071. "type": "git",
  9072. "url": "https://github.com/squizlabs/PHP_CodeSniffer.git",
  9073. "reference": "dceec07328401de6211037abbb18bda423677e26"
  9074. },
  9075. "dist": {
  9076. "type": "zip",
  9077. "url": "https://api.github.com/repos/squizlabs/PHP_CodeSniffer/zipball/dceec07328401de6211037abbb18bda423677e26",
  9078. "reference": "dceec07328401de6211037abbb18bda423677e26",
  9079. "shasum": ""
  9080. },
  9081. "require": {
  9082. "ext-simplexml": "*",
  9083. "ext-tokenizer": "*",
  9084. "ext-xmlwriter": "*",
  9085. "php": ">=5.4.0"
  9086. },
  9087. "require-dev": {
  9088. "phpunit/phpunit": "^4.0 || ^5.0 || ^6.0 || ^7.0"
  9089. },
  9090. "bin": [
  9091. "bin/phpcs",
  9092. "bin/phpcbf"
  9093. ],
  9094. "type": "library",
  9095. "extra": {
  9096. "branch-alias": {
  9097. "dev-master": "3.x-dev"
  9098. }
  9099. },
  9100. "notification-url": "https://packagist.org/downloads/",
  9101. "license": [
  9102. "BSD-3-Clause"
  9103. ],
  9104. "authors": [
  9105. {
  9106. "name": "Greg Sherwood",
  9107. "role": "lead"
  9108. }
  9109. ],
  9110. "description": "PHP_CodeSniffer tokenizes PHP, JavaScript and CSS files and detects violations of a defined set of coding standards.",
  9111. "homepage": "https://github.com/squizlabs/PHP_CodeSniffer",
  9112. "keywords": [
  9113. "phpcs",
  9114. "standards"
  9115. ],
  9116. "time": "2020-01-30T22:20:29+00:00"
  9117. },
  9118. {
  9119. "name": "stack/builder",
  9120. "version": "v1.0.5",
  9121. "source": {
  9122. "type": "git",
  9123. "url": "https://github.com/stackphp/builder.git",
  9124. "reference": "fb3d136d04c6be41120ebf8c0cc71fe9507d750a"
  9125. },
  9126. "dist": {
  9127. "type": "zip",
  9128. "url": "https://api.github.com/repos/stackphp/builder/zipball/fb3d136d04c6be41120ebf8c0cc71fe9507d750a",
  9129. "reference": "fb3d136d04c6be41120ebf8c0cc71fe9507d750a",
  9130. "shasum": ""
  9131. },
  9132. "require": {
  9133. "php": ">=5.3.0",
  9134. "symfony/http-foundation": "~2.1|~3.0|~4.0",
  9135. "symfony/http-kernel": "~2.1|~3.0|~4.0"
  9136. },
  9137. "require-dev": {
  9138. "silex/silex": "~1.0"
  9139. },
  9140. "type": "library",
  9141. "extra": {
  9142. "branch-alias": {
  9143. "dev-master": "1.0-dev"
  9144. }
  9145. },
  9146. "autoload": {
  9147. "psr-0": {
  9148. "Stack": "src"
  9149. }
  9150. },
  9151. "notification-url": "https://packagist.org/downloads/",
  9152. "license": [
  9153. "MIT"
  9154. ],
  9155. "authors": [
  9156. {
  9157. "name": "Igor Wiedler",
  9158. "email": "igor@wiedler.ch"
  9159. }
  9160. ],
  9161. "description": "Builder for stack middlewares based on HttpKernelInterface.",
  9162. "keywords": [
  9163. "stack"
  9164. ],
  9165. "time": "2017-11-18T14:57:29+00:00"
  9166. },
  9167. {
  9168. "name": "stecman/symfony-console-completion",
  9169. "version": "0.10.1",
  9170. "source": {
  9171. "type": "git",
  9172. "url": "https://github.com/stecman/symfony-console-completion.git",
  9173. "reference": "7bfa9b93e216896419f2f8de659935d7e04fecd8"
  9174. },
  9175. "dist": {
  9176. "type": "zip",
  9177. "url": "https://api.github.com/repos/stecman/symfony-console-completion/zipball/7bfa9b93e216896419f2f8de659935d7e04fecd8",
  9178. "reference": "7bfa9b93e216896419f2f8de659935d7e04fecd8",
  9179. "shasum": ""
  9180. },
  9181. "require": {
  9182. "php": ">=5.3.2",
  9183. "symfony/console": "~2.3 || ~3.0 || ~4.0"
  9184. },
  9185. "require-dev": {
  9186. "phpunit/phpunit": "~4.8.36 || ~5.7 || ~6.4"
  9187. },
  9188. "type": "library",
  9189. "extra": {
  9190. "branch-alias": {
  9191. "dev-master": "0.10.x-dev"
  9192. }
  9193. },
  9194. "autoload": {
  9195. "psr-4": {
  9196. "Stecman\\Component\\Symfony\\Console\\BashCompletion\\": "src/"
  9197. }
  9198. },
  9199. "notification-url": "https://packagist.org/downloads/",
  9200. "license": [
  9201. "MIT"
  9202. ],
  9203. "authors": [
  9204. {
  9205. "name": "Stephen Holdaway",
  9206. "email": "stephen@stecman.co.nz"
  9207. }
  9208. ],
  9209. "description": "Automatic BASH completion for Symfony Console Component based applications.",
  9210. "time": "2019-04-29T03:20:18+00:00"
  9211. },
  9212. {
  9213. "name": "symfony-cmf/routing",
  9214. "version": "1.4.1",
  9215. "source": {
  9216. "type": "git",
  9217. "url": "https://github.com/symfony-cmf/routing.git",
  9218. "reference": "fb1e7f85ff8c6866238b7e73a490a0a0243ae8ac"
  9219. },
  9220. "dist": {
  9221. "type": "zip",
  9222. "url": "https://api.github.com/repos/symfony-cmf/routing/zipball/fb1e7f85ff8c6866238b7e73a490a0a0243ae8ac",
  9223. "reference": "fb1e7f85ff8c6866238b7e73a490a0a0243ae8ac",
  9224. "shasum": ""
  9225. },
  9226. "require": {
  9227. "php": "^5.3.9|^7.0",
  9228. "psr/log": "1.*",
  9229. "symfony/http-kernel": "^2.2|3.*",
  9230. "symfony/routing": "^2.2|3.*"
  9231. },
  9232. "require-dev": {
  9233. "friendsofsymfony/jsrouting-bundle": "^1.1",
  9234. "symfony-cmf/testing": "^1.3",
  9235. "symfony/config": "^2.2|3.*",
  9236. "symfony/dependency-injection": "^2.0.5|3.*",
  9237. "symfony/event-dispatcher": "^2.1|3.*"
  9238. },
  9239. "suggest": {
  9240. "symfony/event-dispatcher": "DynamicRouter can optionally trigger an event at the start of matching. Minimal version (~2.1)"
  9241. },
  9242. "type": "library",
  9243. "extra": {
  9244. "branch-alias": {
  9245. "dev-master": "1.4-dev"
  9246. }
  9247. },
  9248. "autoload": {
  9249. "psr-4": {
  9250. "Symfony\\Cmf\\Component\\Routing\\": ""
  9251. }
  9252. },
  9253. "notification-url": "https://packagist.org/downloads/",
  9254. "license": [
  9255. "MIT"
  9256. ],
  9257. "authors": [
  9258. {
  9259. "name": "Symfony CMF Community",
  9260. "homepage": "https://github.com/symfony-cmf/Routing/contributors"
  9261. }
  9262. ],
  9263. "description": "Extends the Symfony2 routing component for dynamic routes and chaining several routers",
  9264. "homepage": "http://cmf.symfony.com",
  9265. "keywords": [
  9266. "database",
  9267. "routing"
  9268. ],
  9269. "time": "2017-05-09T08:10:41+00:00"
  9270. },
  9271. {
  9272. "name": "symfony/browser-kit",
  9273. "version": "v3.4.39",
  9274. "source": {
  9275. "type": "git",
  9276. "url": "https://github.com/symfony/browser-kit.git",
  9277. "reference": "1c7bcd954ad1fc02354c4cfd3fcd1b0c95245367"
  9278. },
  9279. "dist": {
  9280. "type": "zip",
  9281. "url": "https://api.github.com/repos/symfony/browser-kit/zipball/1c7bcd954ad1fc02354c4cfd3fcd1b0c95245367",
  9282. "reference": "1c7bcd954ad1fc02354c4cfd3fcd1b0c95245367",
  9283. "shasum": ""
  9284. },
  9285. "require": {
  9286. "php": "^5.5.9|>=7.0.8",
  9287. "symfony/dom-crawler": "~2.8|~3.0|~4.0"
  9288. },
  9289. "require-dev": {
  9290. "symfony/css-selector": "~2.8|~3.0|~4.0",
  9291. "symfony/process": "~2.8|~3.0|~4.0"
  9292. },
  9293. "suggest": {
  9294. "symfony/process": ""
  9295. },
  9296. "type": "library",
  9297. "extra": {
  9298. "branch-alias": {
  9299. "dev-master": "3.4-dev"
  9300. }
  9301. },
  9302. "autoload": {
  9303. "psr-4": {
  9304. "Symfony\\Component\\BrowserKit\\": ""
  9305. },
  9306. "exclude-from-classmap": [
  9307. "/Tests/"
  9308. ]
  9309. },
  9310. "notification-url": "https://packagist.org/downloads/",
  9311. "license": [
  9312. "MIT"
  9313. ],
  9314. "authors": [
  9315. {
  9316. "name": "Fabien Potencier",
  9317. "email": "fabien@symfony.com"
  9318. },
  9319. {
  9320. "name": "Symfony Community",
  9321. "homepage": "https://symfony.com/contributors"
  9322. }
  9323. ],
  9324. "description": "Symfony BrowserKit Component",
  9325. "homepage": "https://symfony.com",
  9326. "time": "2020-03-15T09:38:08+00:00"
  9327. },
  9328. {
  9329. "name": "symfony/class-loader",
  9330. "version": "v3.4.39",
  9331. "source": {
  9332. "type": "git",
  9333. "url": "https://github.com/symfony/class-loader.git",
  9334. "reference": "e4636a4f23f157278a19e5db160c63de0da297d8"
  9335. },
  9336. "dist": {
  9337. "type": "zip",
  9338. "url": "https://api.github.com/repos/symfony/class-loader/zipball/e4636a4f23f157278a19e5db160c63de0da297d8",
  9339. "reference": "e4636a4f23f157278a19e5db160c63de0da297d8",
  9340. "shasum": ""
  9341. },
  9342. "require": {
  9343. "php": "^5.5.9|>=7.0.8"
  9344. },
  9345. "require-dev": {
  9346. "symfony/finder": "~2.8|~3.0|~4.0",
  9347. "symfony/polyfill-apcu": "~1.1"
  9348. },
  9349. "suggest": {
  9350. "symfony/polyfill-apcu": "For using ApcClassLoader on HHVM"
  9351. },
  9352. "type": "library",
  9353. "extra": {
  9354. "branch-alias": {
  9355. "dev-master": "3.4-dev"
  9356. }
  9357. },
  9358. "autoload": {
  9359. "psr-4": {
  9360. "Symfony\\Component\\ClassLoader\\": ""
  9361. },
  9362. "exclude-from-classmap": [
  9363. "/Tests/"
  9364. ]
  9365. },
  9366. "notification-url": "https://packagist.org/downloads/",
  9367. "license": [
  9368. "MIT"
  9369. ],
  9370. "authors": [
  9371. {
  9372. "name": "Fabien Potencier",
  9373. "email": "fabien@symfony.com"
  9374. },
  9375. {
  9376. "name": "Symfony Community",
  9377. "homepage": "https://symfony.com/contributors"
  9378. }
  9379. ],
  9380. "description": "Symfony ClassLoader Component",
  9381. "homepage": "https://symfony.com",
  9382. "time": "2020-03-15T09:38:08+00:00"
  9383. },
  9384. {
  9385. "name": "symfony/config",
  9386. "version": "v3.4.34",
  9387. "source": {
  9388. "type": "git",
  9389. "url": "https://github.com/symfony/config.git",
  9390. "reference": "c3a30587de97263d2813a3c81b74126c58b67a4f"
  9391. },
  9392. "dist": {
  9393. "type": "zip",
  9394. "url": "https://api.github.com/repos/symfony/config/zipball/c3a30587de97263d2813a3c81b74126c58b67a4f",
  9395. "reference": "c3a30587de97263d2813a3c81b74126c58b67a4f",
  9396. "shasum": ""
  9397. },
  9398. "require": {
  9399. "php": "^5.5.9|>=7.0.8",
  9400. "symfony/filesystem": "~2.8|~3.0|~4.0",
  9401. "symfony/polyfill-ctype": "~1.8"
  9402. },
  9403. "conflict": {
  9404. "symfony/dependency-injection": "<3.3",
  9405. "symfony/finder": "<3.3"
  9406. },
  9407. "require-dev": {
  9408. "symfony/dependency-injection": "~3.3|~4.0",
  9409. "symfony/event-dispatcher": "~3.3|~4.0",
  9410. "symfony/finder": "~3.3|~4.0",
  9411. "symfony/yaml": "~3.0|~4.0"
  9412. },
  9413. "suggest": {
  9414. "symfony/yaml": "To use the yaml reference dumper"
  9415. },
  9416. "type": "library",
  9417. "extra": {
  9418. "branch-alias": {
  9419. "dev-master": "3.4-dev"
  9420. }
  9421. },
  9422. "autoload": {
  9423. "psr-4": {
  9424. "Symfony\\Component\\Config\\": ""
  9425. },
  9426. "exclude-from-classmap": [
  9427. "/Tests/"
  9428. ]
  9429. },
  9430. "notification-url": "https://packagist.org/downloads/",
  9431. "license": [
  9432. "MIT"
  9433. ],
  9434. "authors": [
  9435. {
  9436. "name": "Fabien Potencier",
  9437. "email": "fabien@symfony.com"
  9438. },
  9439. {
  9440. "name": "Symfony Community",
  9441. "homepage": "https://symfony.com/contributors"
  9442. }
  9443. ],
  9444. "description": "Symfony Config Component",
  9445. "homepage": "https://symfony.com",
  9446. "time": "2019-11-08T08:28:59+00:00"
  9447. },
  9448. {
  9449. "name": "symfony/console",
  9450. "version": "v3.4.39",
  9451. "source": {
  9452. "type": "git",
  9453. "url": "https://github.com/symfony/console.git",
  9454. "reference": "bf60d5e606cd595391c5f82bf6b570d9573fa120"
  9455. },
  9456. "dist": {
  9457. "type": "zip",
  9458. "url": "https://api.github.com/repos/symfony/console/zipball/bf60d5e606cd595391c5f82bf6b570d9573fa120",
  9459. "reference": "bf60d5e606cd595391c5f82bf6b570d9573fa120",
  9460. "shasum": ""
  9461. },
  9462. "require": {
  9463. "php": "^5.5.9|>=7.0.8",
  9464. "symfony/debug": "~2.8|~3.0|~4.0",
  9465. "symfony/polyfill-mbstring": "~1.0"
  9466. },
  9467. "conflict": {
  9468. "symfony/dependency-injection": "<3.4",
  9469. "symfony/process": "<3.3"
  9470. },
  9471. "provide": {
  9472. "psr/log-implementation": "1.0"
  9473. },
  9474. "require-dev": {
  9475. "psr/log": "~1.0",
  9476. "symfony/config": "~3.3|~4.0",
  9477. "symfony/dependency-injection": "~3.4|~4.0",
  9478. "symfony/event-dispatcher": "~2.8|~3.0|~4.0",
  9479. "symfony/lock": "~3.4|~4.0",
  9480. "symfony/process": "~3.3|~4.0"
  9481. },
  9482. "suggest": {
  9483. "psr/log": "For using the console logger",
  9484. "symfony/event-dispatcher": "",
  9485. "symfony/lock": "",
  9486. "symfony/process": ""
  9487. },
  9488. "type": "library",
  9489. "extra": {
  9490. "branch-alias": {
  9491. "dev-master": "3.4-dev"
  9492. }
  9493. },
  9494. "autoload": {
  9495. "psr-4": {
  9496. "Symfony\\Component\\Console\\": ""
  9497. },
  9498. "exclude-from-classmap": [
  9499. "/Tests/"
  9500. ]
  9501. },
  9502. "notification-url": "https://packagist.org/downloads/",
  9503. "license": [
  9504. "MIT"
  9505. ],
  9506. "authors": [
  9507. {
  9508. "name": "Fabien Potencier",
  9509. "email": "fabien@symfony.com"
  9510. },
  9511. {
  9512. "name": "Symfony Community",
  9513. "homepage": "https://symfony.com/contributors"
  9514. }
  9515. ],
  9516. "description": "Symfony Console Component",
  9517. "homepage": "https://symfony.com",
  9518. "time": "2020-03-27T17:07:22+00:00"
  9519. },
  9520. {
  9521. "name": "symfony/css-selector",
  9522. "version": "v3.4.39",
  9523. "source": {
  9524. "type": "git",
  9525. "url": "https://github.com/symfony/css-selector.git",
  9526. "reference": "9ccf6e78077a3fc1596e6c7b5958008965a11518"
  9527. },
  9528. "dist": {
  9529. "type": "zip",
  9530. "url": "https://api.github.com/repos/symfony/css-selector/zipball/9ccf6e78077a3fc1596e6c7b5958008965a11518",
  9531. "reference": "9ccf6e78077a3fc1596e6c7b5958008965a11518",
  9532. "shasum": ""
  9533. },
  9534. "require": {
  9535. "php": "^5.5.9|>=7.0.8"
  9536. },
  9537. "type": "library",
  9538. "extra": {
  9539. "branch-alias": {
  9540. "dev-master": "3.4-dev"
  9541. }
  9542. },
  9543. "autoload": {
  9544. "psr-4": {
  9545. "Symfony\\Component\\CssSelector\\": ""
  9546. },
  9547. "exclude-from-classmap": [
  9548. "/Tests/"
  9549. ]
  9550. },
  9551. "notification-url": "https://packagist.org/downloads/",
  9552. "license": [
  9553. "MIT"
  9554. ],
  9555. "authors": [
  9556. {
  9557. "name": "Fabien Potencier",
  9558. "email": "fabien@symfony.com"
  9559. },
  9560. {
  9561. "name": "Jean-François Simon",
  9562. "email": "jeanfrancois.simon@sensiolabs.com"
  9563. },
  9564. {
  9565. "name": "Symfony Community",
  9566. "homepage": "https://symfony.com/contributors"
  9567. }
  9568. ],
  9569. "description": "Symfony CssSelector Component",
  9570. "homepage": "https://symfony.com",
  9571. "time": "2020-03-16T08:31:04+00:00"
  9572. },
  9573. {
  9574. "name": "symfony/debug",
  9575. "version": "v3.4.39",
  9576. "source": {
  9577. "type": "git",
  9578. "url": "https://github.com/symfony/debug.git",
  9579. "reference": "ce9f3b5e8e1c50f849fded59b3a1b6bc3562ec29"
  9580. },
  9581. "dist": {
  9582. "type": "zip",
  9583. "url": "https://api.github.com/repos/symfony/debug/zipball/ce9f3b5e8e1c50f849fded59b3a1b6bc3562ec29",
  9584. "reference": "ce9f3b5e8e1c50f849fded59b3a1b6bc3562ec29",
  9585. "shasum": ""
  9586. },
  9587. "require": {
  9588. "php": "^5.5.9|>=7.0.8",
  9589. "psr/log": "~1.0"
  9590. },
  9591. "conflict": {
  9592. "symfony/http-kernel": ">=2.3,<2.3.24|~2.4.0|>=2.5,<2.5.9|>=2.6,<2.6.2"
  9593. },
  9594. "require-dev": {
  9595. "symfony/http-kernel": "~2.8|~3.0|~4.0"
  9596. },
  9597. "type": "library",
  9598. "extra": {
  9599. "branch-alias": {
  9600. "dev-master": "3.4-dev"
  9601. }
  9602. },
  9603. "autoload": {
  9604. "psr-4": {
  9605. "Symfony\\Component\\Debug\\": ""
  9606. },
  9607. "exclude-from-classmap": [
  9608. "/Tests/"
  9609. ]
  9610. },
  9611. "notification-url": "https://packagist.org/downloads/",
  9612. "license": [
  9613. "MIT"
  9614. ],
  9615. "authors": [
  9616. {
  9617. "name": "Fabien Potencier",
  9618. "email": "fabien@symfony.com"
  9619. },
  9620. {
  9621. "name": "Symfony Community",
  9622. "homepage": "https://symfony.com/contributors"
  9623. }
  9624. ],
  9625. "description": "Symfony Debug Component",
  9626. "homepage": "https://symfony.com",
  9627. "time": "2020-03-23T10:22:40+00:00"
  9628. },
  9629. {
  9630. "name": "symfony/dependency-injection",
  9631. "version": "v3.4.39",
  9632. "source": {
  9633. "type": "git",
  9634. "url": "https://github.com/symfony/dependency-injection.git",
  9635. "reference": "f516f2bd2f43c82124392fa0a846d8c3261b324b"
  9636. },
  9637. "dist": {
  9638. "type": "zip",
  9639. "url": "https://api.github.com/repos/symfony/dependency-injection/zipball/f516f2bd2f43c82124392fa0a846d8c3261b324b",
  9640. "reference": "f516f2bd2f43c82124392fa0a846d8c3261b324b",
  9641. "shasum": ""
  9642. },
  9643. "require": {
  9644. "php": "^5.5.9|>=7.0.8",
  9645. "psr/container": "^1.0"
  9646. },
  9647. "conflict": {
  9648. "symfony/config": "<3.3.7",
  9649. "symfony/finder": "<3.3",
  9650. "symfony/proxy-manager-bridge": "<3.4",
  9651. "symfony/yaml": "<3.4"
  9652. },
  9653. "provide": {
  9654. "psr/container-implementation": "1.0"
  9655. },
  9656. "require-dev": {
  9657. "symfony/config": "~3.3|~4.0",
  9658. "symfony/expression-language": "~2.8|~3.0|~4.0",
  9659. "symfony/yaml": "~3.4|~4.0"
  9660. },
  9661. "suggest": {
  9662. "symfony/config": "",
  9663. "symfony/expression-language": "For using expressions in service container configuration",
  9664. "symfony/finder": "For using double-star glob patterns or when GLOB_BRACE portability is required",
  9665. "symfony/proxy-manager-bridge": "Generate service proxies to lazy load them",
  9666. "symfony/yaml": ""
  9667. },
  9668. "type": "library",
  9669. "extra": {
  9670. "branch-alias": {
  9671. "dev-master": "3.4-dev"
  9672. }
  9673. },
  9674. "autoload": {
  9675. "psr-4": {
  9676. "Symfony\\Component\\DependencyInjection\\": ""
  9677. },
  9678. "exclude-from-classmap": [
  9679. "/Tests/"
  9680. ]
  9681. },
  9682. "notification-url": "https://packagist.org/downloads/",
  9683. "license": [
  9684. "MIT"
  9685. ],
  9686. "authors": [
  9687. {
  9688. "name": "Fabien Potencier",
  9689. "email": "fabien@symfony.com"
  9690. },
  9691. {
  9692. "name": "Symfony Community",
  9693. "homepage": "https://symfony.com/contributors"
  9694. }
  9695. ],
  9696. "description": "Symfony DependencyInjection Component",
  9697. "homepage": "https://symfony.com",
  9698. "time": "2020-03-16T08:31:04+00:00"
  9699. },
  9700. {
  9701. "name": "symfony/dom-crawler",
  9702. "version": "v3.4.39",
  9703. "source": {
  9704. "type": "git",
  9705. "url": "https://github.com/symfony/dom-crawler.git",
  9706. "reference": "ceacdab4abf7695ef6bec77c8b7983e1544c6358"
  9707. },
  9708. "dist": {
  9709. "type": "zip",
  9710. "url": "https://api.github.com/repos/symfony/dom-crawler/zipball/ceacdab4abf7695ef6bec77c8b7983e1544c6358",
  9711. "reference": "ceacdab4abf7695ef6bec77c8b7983e1544c6358",
  9712. "shasum": ""
  9713. },
  9714. "require": {
  9715. "php": "^5.5.9|>=7.0.8",
  9716. "symfony/polyfill-ctype": "~1.8",
  9717. "symfony/polyfill-mbstring": "~1.0"
  9718. },
  9719. "require-dev": {
  9720. "symfony/css-selector": "~2.8|~3.0|~4.0"
  9721. },
  9722. "suggest": {
  9723. "symfony/css-selector": ""
  9724. },
  9725. "type": "library",
  9726. "extra": {
  9727. "branch-alias": {
  9728. "dev-master": "3.4-dev"
  9729. }
  9730. },
  9731. "autoload": {
  9732. "psr-4": {
  9733. "Symfony\\Component\\DomCrawler\\": ""
  9734. },
  9735. "exclude-from-classmap": [
  9736. "/Tests/"
  9737. ]
  9738. },
  9739. "notification-url": "https://packagist.org/downloads/",
  9740. "license": [
  9741. "MIT"
  9742. ],
  9743. "authors": [
  9744. {
  9745. "name": "Fabien Potencier",
  9746. "email": "fabien@symfony.com"
  9747. },
  9748. {
  9749. "name": "Symfony Community",
  9750. "homepage": "https://symfony.com/contributors"
  9751. }
  9752. ],
  9753. "description": "Symfony DomCrawler Component",
  9754. "homepage": "https://symfony.com",
  9755. "time": "2020-03-16T08:31:04+00:00"
  9756. },
  9757. {
  9758. "name": "symfony/event-dispatcher",
  9759. "version": "v3.4.39",
  9760. "source": {
  9761. "type": "git",
  9762. "url": "https://github.com/symfony/event-dispatcher.git",
  9763. "reference": "9d4e22943b73acc1ba50595b7de1a01fe9dbad48"
  9764. },
  9765. "dist": {
  9766. "type": "zip",
  9767. "url": "https://api.github.com/repos/symfony/event-dispatcher/zipball/9d4e22943b73acc1ba50595b7de1a01fe9dbad48",
  9768. "reference": "9d4e22943b73acc1ba50595b7de1a01fe9dbad48",
  9769. "shasum": ""
  9770. },
  9771. "require": {
  9772. "php": "^5.5.9|>=7.0.8"
  9773. },
  9774. "conflict": {
  9775. "symfony/dependency-injection": "<3.3"
  9776. },
  9777. "require-dev": {
  9778. "psr/log": "~1.0",
  9779. "symfony/config": "~2.8|~3.0|~4.0",
  9780. "symfony/dependency-injection": "~3.3|~4.0",
  9781. "symfony/expression-language": "~2.8|~3.0|~4.0",
  9782. "symfony/stopwatch": "~2.8|~3.0|~4.0"
  9783. },
  9784. "suggest": {
  9785. "symfony/dependency-injection": "",
  9786. "symfony/http-kernel": ""
  9787. },
  9788. "type": "library",
  9789. "extra": {
  9790. "branch-alias": {
  9791. "dev-master": "3.4-dev"
  9792. }
  9793. },
  9794. "autoload": {
  9795. "psr-4": {
  9796. "Symfony\\Component\\EventDispatcher\\": ""
  9797. },
  9798. "exclude-from-classmap": [
  9799. "/Tests/"
  9800. ]
  9801. },
  9802. "notification-url": "https://packagist.org/downloads/",
  9803. "license": [
  9804. "MIT"
  9805. ],
  9806. "authors": [
  9807. {
  9808. "name": "Fabien Potencier",
  9809. "email": "fabien@symfony.com"
  9810. },
  9811. {
  9812. "name": "Symfony Community",
  9813. "homepage": "https://symfony.com/contributors"
  9814. }
  9815. ],
  9816. "description": "Symfony EventDispatcher Component",
  9817. "homepage": "https://symfony.com",
  9818. "time": "2020-03-15T09:38:08+00:00"
  9819. },
  9820. {
  9821. "name": "symfony/filesystem",
  9822. "version": "v3.4.34",
  9823. "source": {
  9824. "type": "git",
  9825. "url": "https://github.com/symfony/filesystem.git",
  9826. "reference": "00e3a6ddd723b8bcfe4f2a1b6f82b98eeeb51516"
  9827. },
  9828. "dist": {
  9829. "type": "zip",
  9830. "url": "https://api.github.com/repos/symfony/filesystem/zipball/00e3a6ddd723b8bcfe4f2a1b6f82b98eeeb51516",
  9831. "reference": "00e3a6ddd723b8bcfe4f2a1b6f82b98eeeb51516",
  9832. "shasum": ""
  9833. },
  9834. "require": {
  9835. "php": "^5.5.9|>=7.0.8",
  9836. "symfony/polyfill-ctype": "~1.8"
  9837. },
  9838. "type": "library",
  9839. "extra": {
  9840. "branch-alias": {
  9841. "dev-master": "3.4-dev"
  9842. }
  9843. },
  9844. "autoload": {
  9845. "psr-4": {
  9846. "Symfony\\Component\\Filesystem\\": ""
  9847. },
  9848. "exclude-from-classmap": [
  9849. "/Tests/"
  9850. ]
  9851. },
  9852. "notification-url": "https://packagist.org/downloads/",
  9853. "license": [
  9854. "MIT"
  9855. ],
  9856. "authors": [
  9857. {
  9858. "name": "Fabien Potencier",
  9859. "email": "fabien@symfony.com"
  9860. },
  9861. {
  9862. "name": "Symfony Community",
  9863. "homepage": "https://symfony.com/contributors"
  9864. }
  9865. ],
  9866. "description": "Symfony Filesystem Component",
  9867. "homepage": "https://symfony.com",
  9868. "time": "2019-08-20T13:31:17+00:00"
  9869. },
  9870. {
  9871. "name": "symfony/finder",
  9872. "version": "v3.4.34",
  9873. "source": {
  9874. "type": "git",
  9875. "url": "https://github.com/symfony/finder.git",
  9876. "reference": "3e915e5ce305f8bc8017597f71f1f4095092ddf8"
  9877. },
  9878. "dist": {
  9879. "type": "zip",
  9880. "url": "https://api.github.com/repos/symfony/finder/zipball/3e915e5ce305f8bc8017597f71f1f4095092ddf8",
  9881. "reference": "3e915e5ce305f8bc8017597f71f1f4095092ddf8",
  9882. "shasum": ""
  9883. },
  9884. "require": {
  9885. "php": "^5.5.9|>=7.0.8"
  9886. },
  9887. "type": "library",
  9888. "extra": {
  9889. "branch-alias": {
  9890. "dev-master": "3.4-dev"
  9891. }
  9892. },
  9893. "autoload": {
  9894. "psr-4": {
  9895. "Symfony\\Component\\Finder\\": ""
  9896. },
  9897. "exclude-from-classmap": [
  9898. "/Tests/"
  9899. ]
  9900. },
  9901. "notification-url": "https://packagist.org/downloads/",
  9902. "license": [
  9903. "MIT"
  9904. ],
  9905. "authors": [
  9906. {
  9907. "name": "Fabien Potencier",
  9908. "email": "fabien@symfony.com"
  9909. },
  9910. {
  9911. "name": "Symfony Community",
  9912. "homepage": "https://symfony.com/contributors"
  9913. }
  9914. ],
  9915. "description": "Symfony Finder Component",
  9916. "homepage": "https://symfony.com",
  9917. "time": "2019-10-30T12:43:22+00:00"
  9918. },
  9919. {
  9920. "name": "symfony/http-foundation",
  9921. "version": "v3.4.39",
  9922. "source": {
  9923. "type": "git",
  9924. "url": "https://github.com/symfony/http-foundation.git",
  9925. "reference": "a8833c56f6a4abcf17a319d830d71fdb0ba93675"
  9926. },
  9927. "dist": {
  9928. "type": "zip",
  9929. "url": "https://api.github.com/repos/symfony/http-foundation/zipball/a8833c56f6a4abcf17a319d830d71fdb0ba93675",
  9930. "reference": "a8833c56f6a4abcf17a319d830d71fdb0ba93675",
  9931. "shasum": ""
  9932. },
  9933. "require": {
  9934. "php": "^5.5.9|>=7.0.8",
  9935. "symfony/polyfill-mbstring": "~1.1",
  9936. "symfony/polyfill-php70": "~1.6"
  9937. },
  9938. "require-dev": {
  9939. "symfony/expression-language": "~2.8|~3.0|~4.0"
  9940. },
  9941. "type": "library",
  9942. "extra": {
  9943. "branch-alias": {
  9944. "dev-master": "3.4-dev"
  9945. }
  9946. },
  9947. "autoload": {
  9948. "psr-4": {
  9949. "Symfony\\Component\\HttpFoundation\\": ""
  9950. },
  9951. "exclude-from-classmap": [
  9952. "/Tests/"
  9953. ]
  9954. },
  9955. "notification-url": "https://packagist.org/downloads/",
  9956. "license": [
  9957. "MIT"
  9958. ],
  9959. "authors": [
  9960. {
  9961. "name": "Fabien Potencier",
  9962. "email": "fabien@symfony.com"
  9963. },
  9964. {
  9965. "name": "Symfony Community",
  9966. "homepage": "https://symfony.com/contributors"
  9967. }
  9968. ],
  9969. "description": "Symfony HttpFoundation Component",
  9970. "homepage": "https://symfony.com",
  9971. "time": "2020-03-23T12:14:52+00:00"
  9972. },
  9973. {
  9974. "name": "symfony/http-kernel",
  9975. "version": "v3.4.39",
  9976. "source": {
  9977. "type": "git",
  9978. "url": "https://github.com/symfony/http-kernel.git",
  9979. "reference": "c15b5acab571224b1bf792692ff2ad63239081fe"
  9980. },
  9981. "dist": {
  9982. "type": "zip",
  9983. "url": "https://api.github.com/repos/symfony/http-kernel/zipball/c15b5acab571224b1bf792692ff2ad63239081fe",
  9984. "reference": "c15b5acab571224b1bf792692ff2ad63239081fe",
  9985. "shasum": ""
  9986. },
  9987. "require": {
  9988. "php": "^5.5.9|>=7.0.8",
  9989. "psr/log": "~1.0",
  9990. "symfony/debug": "^3.3.3|~4.0",
  9991. "symfony/event-dispatcher": "~2.8|~3.0|~4.0",
  9992. "symfony/http-foundation": "~3.4.12|~4.0.12|^4.1.1",
  9993. "symfony/polyfill-ctype": "~1.8",
  9994. "symfony/polyfill-php56": "~1.8"
  9995. },
  9996. "conflict": {
  9997. "symfony/config": "<2.8",
  9998. "symfony/dependency-injection": "<3.4.10|<4.0.10,>=4",
  9999. "symfony/var-dumper": "<3.3",
  10000. "twig/twig": "<1.34|<2.4,>=2"
  10001. },
  10002. "provide": {
  10003. "psr/log-implementation": "1.0"
  10004. },
  10005. "require-dev": {
  10006. "psr/cache": "~1.0",
  10007. "symfony/browser-kit": "~2.8|~3.0|~4.0",
  10008. "symfony/class-loader": "~2.8|~3.0",
  10009. "symfony/config": "~2.8|~3.0|~4.0",
  10010. "symfony/console": "~2.8|~3.0|~4.0",
  10011. "symfony/css-selector": "~2.8|~3.0|~4.0",
  10012. "symfony/dependency-injection": "^3.4.10|^4.0.10",
  10013. "symfony/dom-crawler": "~2.8|~3.0|~4.0",
  10014. "symfony/expression-language": "~2.8|~3.0|~4.0",
  10015. "symfony/finder": "~2.8|~3.0|~4.0",
  10016. "symfony/process": "~2.8|~3.0|~4.0",
  10017. "symfony/routing": "~3.4|~4.0",
  10018. "symfony/stopwatch": "~2.8|~3.0|~4.0",
  10019. "symfony/templating": "~2.8|~3.0|~4.0",
  10020. "symfony/translation": "~2.8|~3.0|~4.0",
  10021. "symfony/var-dumper": "~3.3|~4.0"
  10022. },
  10023. "suggest": {
  10024. "symfony/browser-kit": "",
  10025. "symfony/config": "",
  10026. "symfony/console": "",
  10027. "symfony/dependency-injection": "",
  10028. "symfony/finder": "",
  10029. "symfony/var-dumper": ""
  10030. },
  10031. "type": "library",
  10032. "extra": {
  10033. "branch-alias": {
  10034. "dev-master": "3.4-dev"
  10035. }
  10036. },
  10037. "autoload": {
  10038. "psr-4": {
  10039. "Symfony\\Component\\HttpKernel\\": ""
  10040. },
  10041. "exclude-from-classmap": [
  10042. "/Tests/"
  10043. ]
  10044. },
  10045. "notification-url": "https://packagist.org/downloads/",
  10046. "license": [
  10047. "MIT"
  10048. ],
  10049. "authors": [
  10050. {
  10051. "name": "Fabien Potencier",
  10052. "email": "fabien@symfony.com"
  10053. },
  10054. {
  10055. "name": "Symfony Community",
  10056. "homepage": "https://symfony.com/contributors"
  10057. }
  10058. ],
  10059. "description": "Symfony HttpKernel Component",
  10060. "homepage": "https://symfony.com",
  10061. "time": "2020-03-30T06:25:13+00:00"
  10062. },
  10063. {
  10064. "name": "symfony/phpunit-bridge",
  10065. "version": "v3.4.39",
  10066. "source": {
  10067. "type": "git",
  10068. "url": "https://github.com/symfony/phpunit-bridge.git",
  10069. "reference": "c02893ae43532b46a4f0e0f207d088b939f278d9"
  10070. },
  10071. "dist": {
  10072. "type": "zip",
  10073. "url": "https://api.github.com/repos/symfony/phpunit-bridge/zipball/c02893ae43532b46a4f0e0f207d088b939f278d9",
  10074. "reference": "c02893ae43532b46a4f0e0f207d088b939f278d9",
  10075. "shasum": ""
  10076. },
  10077. "require": {
  10078. "php": ">=5.3.3"
  10079. },
  10080. "conflict": {
  10081. "phpunit/phpunit": "<4.8.35|<5.4.3,>=5.0|<6.4,>=6.0"
  10082. },
  10083. "suggest": {
  10084. "symfony/debug": "For tracking deprecated interfaces usages at runtime with DebugClassLoader"
  10085. },
  10086. "bin": [
  10087. "bin/simple-phpunit"
  10088. ],
  10089. "type": "symfony-bridge",
  10090. "extra": {
  10091. "branch-alias": {
  10092. "dev-master": "3.4-dev"
  10093. },
  10094. "thanks": {
  10095. "name": "phpunit/phpunit",
  10096. "url": "https://github.com/sebastianbergmann/phpunit"
  10097. }
  10098. },
  10099. "autoload": {
  10100. "files": [
  10101. "bootstrap.php"
  10102. ],
  10103. "psr-4": {
  10104. "Symfony\\Bridge\\PhpUnit\\": ""
  10105. },
  10106. "exclude-from-classmap": [
  10107. "/Tests/"
  10108. ]
  10109. },
  10110. "notification-url": "https://packagist.org/downloads/",
  10111. "license": [
  10112. "MIT"
  10113. ],
  10114. "authors": [
  10115. {
  10116. "name": "Nicolas Grekas",
  10117. "email": "p@tchwork.com"
  10118. },
  10119. {
  10120. "name": "Symfony Community",
  10121. "homepage": "https://symfony.com/contributors"
  10122. }
  10123. ],
  10124. "description": "Symfony PHPUnit Bridge",
  10125. "homepage": "https://symfony.com",
  10126. "time": "2020-02-21T08:01:47+00:00"
  10127. },
  10128. {
  10129. "name": "symfony/polyfill-ctype",
  10130. "version": "v1.15.0",
  10131. "source": {
  10132. "type": "git",
  10133. "url": "https://github.com/symfony/polyfill-ctype.git",
  10134. "reference": "4719fa9c18b0464d399f1a63bf624b42b6fa8d14"
  10135. },
  10136. "dist": {
  10137. "type": "zip",
  10138. "url": "https://api.github.com/repos/symfony/polyfill-ctype/zipball/4719fa9c18b0464d399f1a63bf624b42b6fa8d14",
  10139. "reference": "4719fa9c18b0464d399f1a63bf624b42b6fa8d14",
  10140. "shasum": ""
  10141. },
  10142. "require": {
  10143. "php": ">=5.3.3"
  10144. },
  10145. "suggest": {
  10146. "ext-ctype": "For best performance"
  10147. },
  10148. "type": "library",
  10149. "extra": {
  10150. "branch-alias": {
  10151. "dev-master": "1.15-dev"
  10152. }
  10153. },
  10154. "autoload": {
  10155. "psr-4": {
  10156. "Symfony\\Polyfill\\Ctype\\": ""
  10157. },
  10158. "files": [
  10159. "bootstrap.php"
  10160. ]
  10161. },
  10162. "notification-url": "https://packagist.org/downloads/",
  10163. "license": [
  10164. "MIT"
  10165. ],
  10166. "authors": [
  10167. {
  10168. "name": "Gert de Pagter",
  10169. "email": "BackEndTea@gmail.com"
  10170. },
  10171. {
  10172. "name": "Symfony Community",
  10173. "homepage": "https://symfony.com/contributors"
  10174. }
  10175. ],
  10176. "description": "Symfony polyfill for ctype functions",
  10177. "homepage": "https://symfony.com",
  10178. "keywords": [
  10179. "compatibility",
  10180. "ctype",
  10181. "polyfill",
  10182. "portable"
  10183. ],
  10184. "time": "2020-02-27T09:26:54+00:00"
  10185. },
  10186. {
  10187. "name": "symfony/polyfill-iconv",
  10188. "version": "v1.15.0",
  10189. "source": {
  10190. "type": "git",
  10191. "url": "https://github.com/symfony/polyfill-iconv.git",
  10192. "reference": "ad6d62792bfbcfc385dd34b424d4fcf9712a32c8"
  10193. },
  10194. "dist": {
  10195. "type": "zip",
  10196. "url": "https://api.github.com/repos/symfony/polyfill-iconv/zipball/ad6d62792bfbcfc385dd34b424d4fcf9712a32c8",
  10197. "reference": "ad6d62792bfbcfc385dd34b424d4fcf9712a32c8",
  10198. "shasum": ""
  10199. },
  10200. "require": {
  10201. "php": ">=5.3.3"
  10202. },
  10203. "suggest": {
  10204. "ext-iconv": "For best performance"
  10205. },
  10206. "type": "library",
  10207. "extra": {
  10208. "branch-alias": {
  10209. "dev-master": "1.15-dev"
  10210. }
  10211. },
  10212. "autoload": {
  10213. "psr-4": {
  10214. "Symfony\\Polyfill\\Iconv\\": ""
  10215. },
  10216. "files": [
  10217. "bootstrap.php"
  10218. ]
  10219. },
  10220. "notification-url": "https://packagist.org/downloads/",
  10221. "license": [
  10222. "MIT"
  10223. ],
  10224. "authors": [
  10225. {
  10226. "name": "Nicolas Grekas",
  10227. "email": "p@tchwork.com"
  10228. },
  10229. {
  10230. "name": "Symfony Community",
  10231. "homepage": "https://symfony.com/contributors"
  10232. }
  10233. ],
  10234. "description": "Symfony polyfill for the Iconv extension",
  10235. "homepage": "https://symfony.com",
  10236. "keywords": [
  10237. "compatibility",
  10238. "iconv",
  10239. "polyfill",
  10240. "portable",
  10241. "shim"
  10242. ],
  10243. "time": "2020-03-09T19:04:49+00:00"
  10244. },
  10245. {
  10246. "name": "symfony/polyfill-intl-idn",
  10247. "version": "v1.15.0",
  10248. "source": {
  10249. "type": "git",
  10250. "url": "https://github.com/symfony/polyfill-intl-idn.git",
  10251. "reference": "47bd6aa45beb1cd7c6a16b7d1810133b728bdfcf"
  10252. },
  10253. "dist": {
  10254. "type": "zip",
  10255. "url": "https://api.github.com/repos/symfony/polyfill-intl-idn/zipball/47bd6aa45beb1cd7c6a16b7d1810133b728bdfcf",
  10256. "reference": "47bd6aa45beb1cd7c6a16b7d1810133b728bdfcf",
  10257. "shasum": ""
  10258. },
  10259. "require": {
  10260. "php": ">=5.3.3",
  10261. "symfony/polyfill-mbstring": "^1.3",
  10262. "symfony/polyfill-php72": "^1.10"
  10263. },
  10264. "suggest": {
  10265. "ext-intl": "For best performance"
  10266. },
  10267. "type": "library",
  10268. "extra": {
  10269. "branch-alias": {
  10270. "dev-master": "1.15-dev"
  10271. }
  10272. },
  10273. "autoload": {
  10274. "psr-4": {
  10275. "Symfony\\Polyfill\\Intl\\Idn\\": ""
  10276. },
  10277. "files": [
  10278. "bootstrap.php"
  10279. ]
  10280. },
  10281. "notification-url": "https://packagist.org/downloads/",
  10282. "license": [
  10283. "MIT"
  10284. ],
  10285. "authors": [
  10286. {
  10287. "name": "Laurent Bassin",
  10288. "email": "laurent@bassin.info"
  10289. },
  10290. {
  10291. "name": "Symfony Community",
  10292. "homepage": "https://symfony.com/contributors"
  10293. }
  10294. ],
  10295. "description": "Symfony polyfill for intl's idn_to_ascii and idn_to_utf8 functions",
  10296. "homepage": "https://symfony.com",
  10297. "keywords": [
  10298. "compatibility",
  10299. "idn",
  10300. "intl",
  10301. "polyfill",
  10302. "portable",
  10303. "shim"
  10304. ],
  10305. "time": "2020-03-09T19:04:49+00:00"
  10306. },
  10307. {
  10308. "name": "symfony/polyfill-mbstring",
  10309. "version": "v1.15.0",
  10310. "source": {
  10311. "type": "git",
  10312. "url": "https://github.com/symfony/polyfill-mbstring.git",
  10313. "reference": "81ffd3a9c6d707be22e3012b827de1c9775fc5ac"
  10314. },
  10315. "dist": {
  10316. "type": "zip",
  10317. "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/81ffd3a9c6d707be22e3012b827de1c9775fc5ac",
  10318. "reference": "81ffd3a9c6d707be22e3012b827de1c9775fc5ac",
  10319. "shasum": ""
  10320. },
  10321. "require": {
  10322. "php": ">=5.3.3"
  10323. },
  10324. "suggest": {
  10325. "ext-mbstring": "For best performance"
  10326. },
  10327. "type": "library",
  10328. "extra": {
  10329. "branch-alias": {
  10330. "dev-master": "1.15-dev"
  10331. }
  10332. },
  10333. "autoload": {
  10334. "psr-4": {
  10335. "Symfony\\Polyfill\\Mbstring\\": ""
  10336. },
  10337. "files": [
  10338. "bootstrap.php"
  10339. ]
  10340. },
  10341. "notification-url": "https://packagist.org/downloads/",
  10342. "license": [
  10343. "MIT"
  10344. ],
  10345. "authors": [
  10346. {
  10347. "name": "Nicolas Grekas",
  10348. "email": "p@tchwork.com"
  10349. },
  10350. {
  10351. "name": "Symfony Community",
  10352. "homepage": "https://symfony.com/contributors"
  10353. }
  10354. ],
  10355. "description": "Symfony polyfill for the Mbstring extension",
  10356. "homepage": "https://symfony.com",
  10357. "keywords": [
  10358. "compatibility",
  10359. "mbstring",
  10360. "polyfill",
  10361. "portable",
  10362. "shim"
  10363. ],
  10364. "time": "2020-03-09T19:04:49+00:00"
  10365. },
  10366. {
  10367. "name": "symfony/polyfill-php56",
  10368. "version": "v1.15.0",
  10369. "source": {
  10370. "type": "git",
  10371. "url": "https://github.com/symfony/polyfill-php56.git",
  10372. "reference": "d51ec491c8ddceae7dca8dd6c7e30428f543f37d"
  10373. },
  10374. "dist": {
  10375. "type": "zip",
  10376. "url": "https://api.github.com/repos/symfony/polyfill-php56/zipball/d51ec491c8ddceae7dca8dd6c7e30428f543f37d",
  10377. "reference": "d51ec491c8ddceae7dca8dd6c7e30428f543f37d",
  10378. "shasum": ""
  10379. },
  10380. "require": {
  10381. "php": ">=5.3.3",
  10382. "symfony/polyfill-util": "~1.0"
  10383. },
  10384. "type": "library",
  10385. "extra": {
  10386. "branch-alias": {
  10387. "dev-master": "1.15-dev"
  10388. }
  10389. },
  10390. "autoload": {
  10391. "psr-4": {
  10392. "Symfony\\Polyfill\\Php56\\": ""
  10393. },
  10394. "files": [
  10395. "bootstrap.php"
  10396. ]
  10397. },
  10398. "notification-url": "https://packagist.org/downloads/",
  10399. "license": [
  10400. "MIT"
  10401. ],
  10402. "authors": [
  10403. {
  10404. "name": "Nicolas Grekas",
  10405. "email": "p@tchwork.com"
  10406. },
  10407. {
  10408. "name": "Symfony Community",
  10409. "homepage": "https://symfony.com/contributors"
  10410. }
  10411. ],
  10412. "description": "Symfony polyfill backporting some PHP 5.6+ features to lower PHP versions",
  10413. "homepage": "https://symfony.com",
  10414. "keywords": [
  10415. "compatibility",
  10416. "polyfill",
  10417. "portable",
  10418. "shim"
  10419. ],
  10420. "time": "2020-03-09T19:04:49+00:00"
  10421. },
  10422. {
  10423. "name": "symfony/polyfill-php70",
  10424. "version": "v1.15.0",
  10425. "source": {
  10426. "type": "git",
  10427. "url": "https://github.com/symfony/polyfill-php70.git",
  10428. "reference": "2a18e37a489803559284416df58c71ccebe50bf0"
  10429. },
  10430. "dist": {
  10431. "type": "zip",
  10432. "url": "https://api.github.com/repos/symfony/polyfill-php70/zipball/2a18e37a489803559284416df58c71ccebe50bf0",
  10433. "reference": "2a18e37a489803559284416df58c71ccebe50bf0",
  10434. "shasum": ""
  10435. },
  10436. "require": {
  10437. "paragonie/random_compat": "~1.0|~2.0|~9.99",
  10438. "php": ">=5.3.3"
  10439. },
  10440. "type": "library",
  10441. "extra": {
  10442. "branch-alias": {
  10443. "dev-master": "1.15-dev"
  10444. }
  10445. },
  10446. "autoload": {
  10447. "psr-4": {
  10448. "Symfony\\Polyfill\\Php70\\": ""
  10449. },
  10450. "files": [
  10451. "bootstrap.php"
  10452. ],
  10453. "classmap": [
  10454. "Resources/stubs"
  10455. ]
  10456. },
  10457. "notification-url": "https://packagist.org/downloads/",
  10458. "license": [
  10459. "MIT"
  10460. ],
  10461. "authors": [
  10462. {
  10463. "name": "Nicolas Grekas",
  10464. "email": "p@tchwork.com"
  10465. },
  10466. {
  10467. "name": "Symfony Community",
  10468. "homepage": "https://symfony.com/contributors"
  10469. }
  10470. ],
  10471. "description": "Symfony polyfill backporting some PHP 7.0+ features to lower PHP versions",
  10472. "homepage": "https://symfony.com",
  10473. "keywords": [
  10474. "compatibility",
  10475. "polyfill",
  10476. "portable",
  10477. "shim"
  10478. ],
  10479. "time": "2020-02-27T09:26:54+00:00"
  10480. },
  10481. {
  10482. "name": "symfony/polyfill-php72",
  10483. "version": "v1.15.0",
  10484. "source": {
  10485. "type": "git",
  10486. "url": "https://github.com/symfony/polyfill-php72.git",
  10487. "reference": "37b0976c78b94856543260ce09b460a7bc852747"
  10488. },
  10489. "dist": {
  10490. "type": "zip",
  10491. "url": "https://api.github.com/repos/symfony/polyfill-php72/zipball/37b0976c78b94856543260ce09b460a7bc852747",
  10492. "reference": "37b0976c78b94856543260ce09b460a7bc852747",
  10493. "shasum": ""
  10494. },
  10495. "require": {
  10496. "php": ">=5.3.3"
  10497. },
  10498. "type": "library",
  10499. "extra": {
  10500. "branch-alias": {
  10501. "dev-master": "1.15-dev"
  10502. }
  10503. },
  10504. "autoload": {
  10505. "psr-4": {
  10506. "Symfony\\Polyfill\\Php72\\": ""
  10507. },
  10508. "files": [
  10509. "bootstrap.php"
  10510. ]
  10511. },
  10512. "notification-url": "https://packagist.org/downloads/",
  10513. "license": [
  10514. "MIT"
  10515. ],
  10516. "authors": [
  10517. {
  10518. "name": "Nicolas Grekas",
  10519. "email": "p@tchwork.com"
  10520. },
  10521. {
  10522. "name": "Symfony Community",
  10523. "homepage": "https://symfony.com/contributors"
  10524. }
  10525. ],
  10526. "description": "Symfony polyfill backporting some PHP 7.2+ features to lower PHP versions",
  10527. "homepage": "https://symfony.com",
  10528. "keywords": [
  10529. "compatibility",
  10530. "polyfill",
  10531. "portable",
  10532. "shim"
  10533. ],
  10534. "time": "2020-02-27T09:26:54+00:00"
  10535. },
  10536. {
  10537. "name": "symfony/polyfill-util",
  10538. "version": "v1.15.0",
  10539. "source": {
  10540. "type": "git",
  10541. "url": "https://github.com/symfony/polyfill-util.git",
  10542. "reference": "d8e76c104127675d0ea3df3be0f2ae24a8619027"
  10543. },
  10544. "dist": {
  10545. "type": "zip",
  10546. "url": "https://api.github.com/repos/symfony/polyfill-util/zipball/d8e76c104127675d0ea3df3be0f2ae24a8619027",
  10547. "reference": "d8e76c104127675d0ea3df3be0f2ae24a8619027",
  10548. "shasum": ""
  10549. },
  10550. "require": {
  10551. "php": ">=5.3.3"
  10552. },
  10553. "type": "library",
  10554. "extra": {
  10555. "branch-alias": {
  10556. "dev-master": "1.15-dev"
  10557. }
  10558. },
  10559. "autoload": {
  10560. "psr-4": {
  10561. "Symfony\\Polyfill\\Util\\": ""
  10562. }
  10563. },
  10564. "notification-url": "https://packagist.org/downloads/",
  10565. "license": [
  10566. "MIT"
  10567. ],
  10568. "authors": [
  10569. {
  10570. "name": "Nicolas Grekas",
  10571. "email": "p@tchwork.com"
  10572. },
  10573. {
  10574. "name": "Symfony Community",
  10575. "homepage": "https://symfony.com/contributors"
  10576. }
  10577. ],
  10578. "description": "Symfony utilities for portability of PHP codes",
  10579. "homepage": "https://symfony.com",
  10580. "keywords": [
  10581. "compat",
  10582. "compatibility",
  10583. "polyfill",
  10584. "shim"
  10585. ],
  10586. "time": "2020-03-02T11:55:35+00:00"
  10587. },
  10588. {
  10589. "name": "symfony/process",
  10590. "version": "v3.4.39",
  10591. "source": {
  10592. "type": "git",
  10593. "url": "https://github.com/symfony/process.git",
  10594. "reference": "1dbc09f6e14703ae2398efc86b02ae2bcd9a9931"
  10595. },
  10596. "dist": {
  10597. "type": "zip",
  10598. "url": "https://api.github.com/repos/symfony/process/zipball/1dbc09f6e14703ae2398efc86b02ae2bcd9a9931",
  10599. "reference": "1dbc09f6e14703ae2398efc86b02ae2bcd9a9931",
  10600. "shasum": ""
  10601. },
  10602. "require": {
  10603. "php": "^5.5.9|>=7.0.8"
  10604. },
  10605. "type": "library",
  10606. "extra": {
  10607. "branch-alias": {
  10608. "dev-master": "3.4-dev"
  10609. }
  10610. },
  10611. "autoload": {
  10612. "psr-4": {
  10613. "Symfony\\Component\\Process\\": ""
  10614. },
  10615. "exclude-from-classmap": [
  10616. "/Tests/"
  10617. ]
  10618. },
  10619. "notification-url": "https://packagist.org/downloads/",
  10620. "license": [
  10621. "MIT"
  10622. ],
  10623. "authors": [
  10624. {
  10625. "name": "Fabien Potencier",
  10626. "email": "fabien@symfony.com"
  10627. },
  10628. {
  10629. "name": "Symfony Community",
  10630. "homepage": "https://symfony.com/contributors"
  10631. }
  10632. ],
  10633. "description": "Symfony Process Component",
  10634. "homepage": "https://symfony.com",
  10635. "time": "2020-03-20T06:07:50+00:00"
  10636. },
  10637. {
  10638. "name": "symfony/psr-http-message-bridge",
  10639. "version": "v1.1.2",
  10640. "source": {
  10641. "type": "git",
  10642. "url": "https://github.com/symfony/psr-http-message-bridge.git",
  10643. "reference": "a33352af16f78a5ff4f9d90811536abf210df12b"
  10644. },
  10645. "dist": {
  10646. "type": "zip",
  10647. "url": "https://api.github.com/repos/symfony/psr-http-message-bridge/zipball/a33352af16f78a5ff4f9d90811536abf210df12b",
  10648. "reference": "a33352af16f78a5ff4f9d90811536abf210df12b",
  10649. "shasum": ""
  10650. },
  10651. "require": {
  10652. "php": "^5.3.3 || ^7.0",
  10653. "psr/http-message": "^1.0",
  10654. "symfony/http-foundation": "^2.3.42 || ^3.4 || ^4.0"
  10655. },
  10656. "require-dev": {
  10657. "symfony/phpunit-bridge": "^3.4 || ^4.0"
  10658. },
  10659. "suggest": {
  10660. "nyholm/psr7": "For a super lightweight PSR-7/17 implementation"
  10661. },
  10662. "type": "symfony-bridge",
  10663. "extra": {
  10664. "branch-alias": {
  10665. "dev-master": "1.1-dev"
  10666. }
  10667. },
  10668. "autoload": {
  10669. "psr-4": {
  10670. "Symfony\\Bridge\\PsrHttpMessage\\": ""
  10671. },
  10672. "exclude-from-classmap": [
  10673. "/Tests/"
  10674. ]
  10675. },
  10676. "notification-url": "https://packagist.org/downloads/",
  10677. "license": [
  10678. "MIT"
  10679. ],
  10680. "authors": [
  10681. {
  10682. "name": "Symfony Community",
  10683. "homepage": "http://symfony.com/contributors"
  10684. },
  10685. {
  10686. "name": "Fabien Potencier",
  10687. "email": "fabien@symfony.com"
  10688. }
  10689. ],
  10690. "description": "PSR HTTP message bridge",
  10691. "homepage": "http://symfony.com",
  10692. "keywords": [
  10693. "http",
  10694. "http-message",
  10695. "psr-17",
  10696. "psr-7"
  10697. ],
  10698. "time": "2019-04-03T17:09:40+00:00"
  10699. },
  10700. {
  10701. "name": "symfony/routing",
  10702. "version": "v3.4.39",
  10703. "source": {
  10704. "type": "git",
  10705. "url": "https://github.com/symfony/routing.git",
  10706. "reference": "785e4e6b835e9ab4f9412862855d0e1b7a2b4627"
  10707. },
  10708. "dist": {
  10709. "type": "zip",
  10710. "url": "https://api.github.com/repos/symfony/routing/zipball/785e4e6b835e9ab4f9412862855d0e1b7a2b4627",
  10711. "reference": "785e4e6b835e9ab4f9412862855d0e1b7a2b4627",
  10712. "shasum": ""
  10713. },
  10714. "require": {
  10715. "php": "^5.5.9|>=7.0.8"
  10716. },
  10717. "conflict": {
  10718. "symfony/config": "<3.3.1",
  10719. "symfony/dependency-injection": "<3.3",
  10720. "symfony/yaml": "<3.4"
  10721. },
  10722. "require-dev": {
  10723. "doctrine/annotations": "~1.0",
  10724. "psr/log": "~1.0",
  10725. "symfony/config": "^3.3.1|~4.0",
  10726. "symfony/dependency-injection": "~3.3|~4.0",
  10727. "symfony/expression-language": "~2.8|~3.0|~4.0",
  10728. "symfony/http-foundation": "~2.8|~3.0|~4.0",
  10729. "symfony/yaml": "~3.4|~4.0"
  10730. },
  10731. "suggest": {
  10732. "doctrine/annotations": "For using the annotation loader",
  10733. "symfony/config": "For using the all-in-one router or any loader",
  10734. "symfony/expression-language": "For using expression matching",
  10735. "symfony/http-foundation": "For using a Symfony Request object",
  10736. "symfony/yaml": "For using the YAML loader"
  10737. },
  10738. "type": "library",
  10739. "extra": {
  10740. "branch-alias": {
  10741. "dev-master": "3.4-dev"
  10742. }
  10743. },
  10744. "autoload": {
  10745. "psr-4": {
  10746. "Symfony\\Component\\Routing\\": ""
  10747. },
  10748. "exclude-from-classmap": [
  10749. "/Tests/"
  10750. ]
  10751. },
  10752. "notification-url": "https://packagist.org/downloads/",
  10753. "license": [
  10754. "MIT"
  10755. ],
  10756. "authors": [
  10757. {
  10758. "name": "Fabien Potencier",
  10759. "email": "fabien@symfony.com"
  10760. },
  10761. {
  10762. "name": "Symfony Community",
  10763. "homepage": "https://symfony.com/contributors"
  10764. }
  10765. ],
  10766. "description": "Symfony Routing Component",
  10767. "homepage": "https://symfony.com",
  10768. "keywords": [
  10769. "router",
  10770. "routing",
  10771. "uri",
  10772. "url"
  10773. ],
  10774. "time": "2020-03-25T12:02:26+00:00"
  10775. },
  10776. {
  10777. "name": "symfony/serializer",
  10778. "version": "v3.4.39",
  10779. "source": {
  10780. "type": "git",
  10781. "url": "https://github.com/symfony/serializer.git",
  10782. "reference": "2b5a266b4e9b4403d669449de059686dd186ed33"
  10783. },
  10784. "dist": {
  10785. "type": "zip",
  10786. "url": "https://api.github.com/repos/symfony/serializer/zipball/2b5a266b4e9b4403d669449de059686dd186ed33",
  10787. "reference": "2b5a266b4e9b4403d669449de059686dd186ed33",
  10788. "shasum": ""
  10789. },
  10790. "require": {
  10791. "php": "^5.5.9|>=7.0.8",
  10792. "symfony/polyfill-ctype": "~1.8"
  10793. },
  10794. "conflict": {
  10795. "phpdocumentor/type-resolver": "<0.2.1",
  10796. "symfony/dependency-injection": "<3.2",
  10797. "symfony/property-access": ">=3.0,<3.0.4|>=2.8,<2.8.4",
  10798. "symfony/property-info": "<3.1",
  10799. "symfony/yaml": "<3.4"
  10800. },
  10801. "require-dev": {
  10802. "doctrine/annotations": "~1.0",
  10803. "doctrine/cache": "~1.0",
  10804. "phpdocumentor/reflection-docblock": "^3.0|^4.0",
  10805. "symfony/cache": "~3.1|~4.0",
  10806. "symfony/config": "~2.8|~3.0|~4.0",
  10807. "symfony/dependency-injection": "~3.2|~4.0",
  10808. "symfony/http-foundation": "~2.8|~3.0|~4.0",
  10809. "symfony/property-access": "~2.8|~3.0|~4.0",
  10810. "symfony/property-info": "^3.4.13|~4.0",
  10811. "symfony/yaml": "~3.4|~4.0"
  10812. },
  10813. "suggest": {
  10814. "doctrine/annotations": "For using the annotation mapping. You will also need doctrine/cache.",
  10815. "doctrine/cache": "For using the default cached annotation reader and metadata cache.",
  10816. "psr/cache-implementation": "For using the metadata cache.",
  10817. "symfony/config": "For using the XML mapping loader.",
  10818. "symfony/http-foundation": "For using a MIME type guesser within the DataUriNormalizer.",
  10819. "symfony/property-access": "For using the ObjectNormalizer.",
  10820. "symfony/property-info": "To deserialize relations.",
  10821. "symfony/yaml": "For using the default YAML mapping loader."
  10822. },
  10823. "type": "library",
  10824. "extra": {
  10825. "branch-alias": {
  10826. "dev-master": "3.4-dev"
  10827. }
  10828. },
  10829. "autoload": {
  10830. "psr-4": {
  10831. "Symfony\\Component\\Serializer\\": ""
  10832. },
  10833. "exclude-from-classmap": [
  10834. "/Tests/"
  10835. ]
  10836. },
  10837. "notification-url": "https://packagist.org/downloads/",
  10838. "license": [
  10839. "MIT"
  10840. ],
  10841. "authors": [
  10842. {
  10843. "name": "Fabien Potencier",
  10844. "email": "fabien@symfony.com"
  10845. },
  10846. {
  10847. "name": "Symfony Community",
  10848. "homepage": "https://symfony.com/contributors"
  10849. }
  10850. ],
  10851. "description": "Symfony Serializer Component",
  10852. "homepage": "https://symfony.com",
  10853. "time": "2020-03-16T08:31:04+00:00"
  10854. },
  10855. {
  10856. "name": "symfony/translation",
  10857. "version": "v3.4.39",
  10858. "source": {
  10859. "type": "git",
  10860. "url": "https://github.com/symfony/translation.git",
  10861. "reference": "e06ca83b2682eba25854b97a8a9af22c1da491f5"
  10862. },
  10863. "dist": {
  10864. "type": "zip",
  10865. "url": "https://api.github.com/repos/symfony/translation/zipball/e06ca83b2682eba25854b97a8a9af22c1da491f5",
  10866. "reference": "e06ca83b2682eba25854b97a8a9af22c1da491f5",
  10867. "shasum": ""
  10868. },
  10869. "require": {
  10870. "php": "^5.5.9|>=7.0.8",
  10871. "symfony/polyfill-mbstring": "~1.0"
  10872. },
  10873. "conflict": {
  10874. "symfony/config": "<2.8",
  10875. "symfony/dependency-injection": "<3.4",
  10876. "symfony/yaml": "<3.4"
  10877. },
  10878. "require-dev": {
  10879. "psr/log": "~1.0",
  10880. "symfony/config": "~2.8|~3.0|~4.0",
  10881. "symfony/dependency-injection": "~3.4|~4.0",
  10882. "symfony/finder": "~2.8|~3.0|~4.0",
  10883. "symfony/http-kernel": "~3.4|~4.0",
  10884. "symfony/intl": "^2.8.18|^3.2.5|~4.0",
  10885. "symfony/var-dumper": "~3.4|~4.0",
  10886. "symfony/yaml": "~3.4|~4.0"
  10887. },
  10888. "suggest": {
  10889. "psr/log-implementation": "To use logging capability in translator",
  10890. "symfony/config": "",
  10891. "symfony/yaml": ""
  10892. },
  10893. "type": "library",
  10894. "extra": {
  10895. "branch-alias": {
  10896. "dev-master": "3.4-dev"
  10897. }
  10898. },
  10899. "autoload": {
  10900. "psr-4": {
  10901. "Symfony\\Component\\Translation\\": ""
  10902. },
  10903. "exclude-from-classmap": [
  10904. "/Tests/"
  10905. ]
  10906. },
  10907. "notification-url": "https://packagist.org/downloads/",
  10908. "license": [
  10909. "MIT"
  10910. ],
  10911. "authors": [
  10912. {
  10913. "name": "Fabien Potencier",
  10914. "email": "fabien@symfony.com"
  10915. },
  10916. {
  10917. "name": "Symfony Community",
  10918. "homepage": "https://symfony.com/contributors"
  10919. }
  10920. ],
  10921. "description": "Symfony Translation Component",
  10922. "homepage": "https://symfony.com",
  10923. "time": "2020-03-16T08:31:04+00:00"
  10924. },
  10925. {
  10926. "name": "symfony/validator",
  10927. "version": "v3.4.39",
  10928. "source": {
  10929. "type": "git",
  10930. "url": "https://github.com/symfony/validator.git",
  10931. "reference": "5d4d0184dbf402233c4d73491285ac3615206e62"
  10932. },
  10933. "dist": {
  10934. "type": "zip",
  10935. "url": "https://api.github.com/repos/symfony/validator/zipball/5d4d0184dbf402233c4d73491285ac3615206e62",
  10936. "reference": "5d4d0184dbf402233c4d73491285ac3615206e62",
  10937. "shasum": ""
  10938. },
  10939. "require": {
  10940. "php": "^5.5.9|>=7.0.8",
  10941. "symfony/polyfill-ctype": "~1.8",
  10942. "symfony/polyfill-mbstring": "~1.0",
  10943. "symfony/translation": "~2.8|~3.0|~4.0"
  10944. },
  10945. "conflict": {
  10946. "doctrine/lexer": "<1.0.2",
  10947. "phpunit/phpunit": "<4.8.35|<5.4.3,>=5.0",
  10948. "symfony/dependency-injection": "<3.3",
  10949. "symfony/http-kernel": "<3.3.5",
  10950. "symfony/yaml": "<3.4"
  10951. },
  10952. "require-dev": {
  10953. "doctrine/annotations": "~1.7",
  10954. "doctrine/cache": "~1.0",
  10955. "egulias/email-validator": "^2.1.10",
  10956. "symfony/cache": "~3.1|~4.0",
  10957. "symfony/config": "~2.8|~3.0|~4.0",
  10958. "symfony/dependency-injection": "~3.3|~4.0",
  10959. "symfony/expression-language": "~2.8|~3.0|~4.0",
  10960. "symfony/http-foundation": "~2.8|~3.0|~4.0",
  10961. "symfony/http-kernel": "^3.3.5|~4.0",
  10962. "symfony/intl": "^2.8.18|^3.2.5|~4.0",
  10963. "symfony/property-access": "~2.8|~3.0|~4.0",
  10964. "symfony/var-dumper": "~3.3|~4.0",
  10965. "symfony/yaml": "~3.4|~4.0"
  10966. },
  10967. "suggest": {
  10968. "doctrine/annotations": "For using the annotation mapping. You will also need doctrine/cache.",
  10969. "doctrine/cache": "For using the default cached annotation reader and metadata cache.",
  10970. "egulias/email-validator": "Strict (RFC compliant) email validation",
  10971. "psr/cache-implementation": "For using the metadata cache.",
  10972. "symfony/config": "",
  10973. "symfony/expression-language": "For using the Expression validator",
  10974. "symfony/http-foundation": "",
  10975. "symfony/intl": "",
  10976. "symfony/property-access": "For accessing properties within comparison constraints",
  10977. "symfony/yaml": ""
  10978. },
  10979. "type": "library",
  10980. "extra": {
  10981. "branch-alias": {
  10982. "dev-master": "3.4-dev"
  10983. }
  10984. },
  10985. "autoload": {
  10986. "psr-4": {
  10987. "Symfony\\Component\\Validator\\": ""
  10988. },
  10989. "exclude-from-classmap": [
  10990. "/Tests/"
  10991. ]
  10992. },
  10993. "notification-url": "https://packagist.org/downloads/",
  10994. "license": [
  10995. "MIT"
  10996. ],
  10997. "authors": [
  10998. {
  10999. "name": "Fabien Potencier",
  11000. "email": "fabien@symfony.com"
  11001. },
  11002. {
  11003. "name": "Symfony Community",
  11004. "homepage": "https://symfony.com/contributors"
  11005. }
  11006. ],
  11007. "description": "Symfony Validator Component",
  11008. "homepage": "https://symfony.com",
  11009. "time": "2020-03-28T10:14:53+00:00"
  11010. },
  11011. {
  11012. "name": "symfony/var-dumper",
  11013. "version": "v3.4.34",
  11014. "source": {
  11015. "type": "git",
  11016. "url": "https://github.com/symfony/var-dumper.git",
  11017. "reference": "569e261461600810845a8305ca3f64abd3e712c0"
  11018. },
  11019. "dist": {
  11020. "type": "zip",
  11021. "url": "https://api.github.com/repos/symfony/var-dumper/zipball/569e261461600810845a8305ca3f64abd3e712c0",
  11022. "reference": "569e261461600810845a8305ca3f64abd3e712c0",
  11023. "shasum": ""
  11024. },
  11025. "require": {
  11026. "php": "^5.5.9|>=7.0.8",
  11027. "symfony/polyfill-mbstring": "~1.0"
  11028. },
  11029. "conflict": {
  11030. "phpunit/phpunit": "<4.8.35|<5.4.3,>=5.0"
  11031. },
  11032. "require-dev": {
  11033. "ext-iconv": "*",
  11034. "twig/twig": "~1.34|~2.4"
  11035. },
  11036. "suggest": {
  11037. "ext-iconv": "To convert non-UTF-8 strings to UTF-8 (or symfony/polyfill-iconv in case ext-iconv cannot be used).",
  11038. "ext-intl": "To show region name in time zone dump",
  11039. "ext-symfony_debug": ""
  11040. },
  11041. "type": "library",
  11042. "extra": {
  11043. "branch-alias": {
  11044. "dev-master": "3.4-dev"
  11045. }
  11046. },
  11047. "autoload": {
  11048. "files": [
  11049. "Resources/functions/dump.php"
  11050. ],
  11051. "psr-4": {
  11052. "Symfony\\Component\\VarDumper\\": ""
  11053. },
  11054. "exclude-from-classmap": [
  11055. "/Tests/"
  11056. ]
  11057. },
  11058. "notification-url": "https://packagist.org/downloads/",
  11059. "license": [
  11060. "MIT"
  11061. ],
  11062. "authors": [
  11063. {
  11064. "name": "Nicolas Grekas",
  11065. "email": "p@tchwork.com"
  11066. },
  11067. {
  11068. "name": "Symfony Community",
  11069. "homepage": "https://symfony.com/contributors"
  11070. }
  11071. ],
  11072. "description": "Symfony mechanism for exploring and dumping PHP variables",
  11073. "homepage": "https://symfony.com",
  11074. "keywords": [
  11075. "debug",
  11076. "dump"
  11077. ],
  11078. "time": "2019-10-10T11:03:19+00:00"
  11079. },
  11080. {
  11081. "name": "symfony/yaml",
  11082. "version": "v3.4.39",
  11083. "source": {
  11084. "type": "git",
  11085. "url": "https://github.com/symfony/yaml.git",
  11086. "reference": "e701b47e11749970f63803879c4febb520f07b6c"
  11087. },
  11088. "dist": {
  11089. "type": "zip",
  11090. "url": "https://api.github.com/repos/symfony/yaml/zipball/e701b47e11749970f63803879c4febb520f07b6c",
  11091. "reference": "e701b47e11749970f63803879c4febb520f07b6c",
  11092. "shasum": ""
  11093. },
  11094. "require": {
  11095. "php": "^5.5.9|>=7.0.8",
  11096. "symfony/polyfill-ctype": "~1.8"
  11097. },
  11098. "conflict": {
  11099. "symfony/console": "<3.4"
  11100. },
  11101. "require-dev": {
  11102. "symfony/console": "~3.4|~4.0"
  11103. },
  11104. "suggest": {
  11105. "symfony/console": "For validating YAML files using the lint command"
  11106. },
  11107. "type": "library",
  11108. "extra": {
  11109. "branch-alias": {
  11110. "dev-master": "3.4-dev"
  11111. }
  11112. },
  11113. "autoload": {
  11114. "psr-4": {
  11115. "Symfony\\Component\\Yaml\\": ""
  11116. },
  11117. "exclude-from-classmap": [
  11118. "/Tests/"
  11119. ]
  11120. },
  11121. "notification-url": "https://packagist.org/downloads/",
  11122. "license": [
  11123. "MIT"
  11124. ],
  11125. "authors": [
  11126. {
  11127. "name": "Fabien Potencier",
  11128. "email": "fabien@symfony.com"
  11129. },
  11130. {
  11131. "name": "Symfony Community",
  11132. "homepage": "https://symfony.com/contributors"
  11133. }
  11134. ],
  11135. "description": "Symfony Yaml Component",
  11136. "homepage": "https://symfony.com",
  11137. "time": "2020-03-25T12:02:26+00:00"
  11138. },
  11139. {
  11140. "name": "theseer/tokenizer",
  11141. "version": "1.1.3",
  11142. "source": {
  11143. "type": "git",
  11144. "url": "https://github.com/theseer/tokenizer.git",
  11145. "reference": "11336f6f84e16a720dae9d8e6ed5019efa85a0f9"
  11146. },
  11147. "dist": {
  11148. "type": "zip",
  11149. "url": "https://api.github.com/repos/theseer/tokenizer/zipball/11336f6f84e16a720dae9d8e6ed5019efa85a0f9",
  11150. "reference": "11336f6f84e16a720dae9d8e6ed5019efa85a0f9",
  11151. "shasum": ""
  11152. },
  11153. "require": {
  11154. "ext-dom": "*",
  11155. "ext-tokenizer": "*",
  11156. "ext-xmlwriter": "*",
  11157. "php": "^7.0"
  11158. },
  11159. "type": "library",
  11160. "autoload": {
  11161. "classmap": [
  11162. "src/"
  11163. ]
  11164. },
  11165. "notification-url": "https://packagist.org/downloads/",
  11166. "license": [
  11167. "BSD-3-Clause"
  11168. ],
  11169. "authors": [
  11170. {
  11171. "name": "Arne Blankerts",
  11172. "email": "arne@blankerts.de",
  11173. "role": "Developer"
  11174. }
  11175. ],
  11176. "description": "A small library for converting tokenized PHP source code into XML and potentially other formats",
  11177. "time": "2019-06-13T22:48:21+00:00"
  11178. },
  11179. {
  11180. "name": "twig/twig",
  11181. "version": "v1.42.5",
  11182. "source": {
  11183. "type": "git",
  11184. "url": "https://github.com/twigphp/Twig.git",
  11185. "reference": "87b2ea9d8f6fd014d0621ca089bb1b3769ea3f8e"
  11186. },
  11187. "dist": {
  11188. "type": "zip",
  11189. "url": "https://api.github.com/repos/twigphp/Twig/zipball/87b2ea9d8f6fd014d0621ca089bb1b3769ea3f8e",
  11190. "reference": "87b2ea9d8f6fd014d0621ca089bb1b3769ea3f8e",
  11191. "shasum": ""
  11192. },
  11193. "require": {
  11194. "php": ">=5.5.0",
  11195. "symfony/polyfill-ctype": "^1.8"
  11196. },
  11197. "require-dev": {
  11198. "psr/container": "^1.0",
  11199. "symfony/phpunit-bridge": "^4.4|^5.0"
  11200. },
  11201. "type": "library",
  11202. "extra": {
  11203. "branch-alias": {
  11204. "dev-master": "1.42-dev"
  11205. }
  11206. },
  11207. "autoload": {
  11208. "psr-0": {
  11209. "Twig_": "lib/"
  11210. },
  11211. "psr-4": {
  11212. "Twig\\": "src/"
  11213. }
  11214. },
  11215. "notification-url": "https://packagist.org/downloads/",
  11216. "license": [
  11217. "BSD-3-Clause"
  11218. ],
  11219. "authors": [
  11220. {
  11221. "name": "Fabien Potencier",
  11222. "email": "fabien@symfony.com",
  11223. "homepage": "http://fabien.potencier.org",
  11224. "role": "Lead Developer"
  11225. },
  11226. {
  11227. "name": "Twig Team",
  11228. "role": "Contributors"
  11229. },
  11230. {
  11231. "name": "Armin Ronacher",
  11232. "email": "armin.ronacher@active-4.com",
  11233. "role": "Project Founder"
  11234. }
  11235. ],
  11236. "description": "Twig, the flexible, fast, and secure template language for PHP",
  11237. "homepage": "https://twig.symfony.com",
  11238. "keywords": [
  11239. "templating"
  11240. ],
  11241. "time": "2020-02-11T05:59:23+00:00"
  11242. },
  11243. {
  11244. "name": "typo3/phar-stream-wrapper",
  11245. "version": "v2.1.4",
  11246. "source": {
  11247. "type": "git",
  11248. "url": "https://github.com/TYPO3/phar-stream-wrapper.git",
  11249. "reference": "ade693720ad562224281f8984319b7337cfae99e"
  11250. },
  11251. "dist": {
  11252. "type": "zip",
  11253. "url": "https://api.github.com/repos/TYPO3/phar-stream-wrapper/zipball/ade693720ad562224281f8984319b7337cfae99e",
  11254. "reference": "ade693720ad562224281f8984319b7337cfae99e",
  11255. "shasum": ""
  11256. },
  11257. "require": {
  11258. "brumann/polyfill-unserialize": "^1.0",
  11259. "ext-json": "*",
  11260. "php": "^5.3.3|^7.0"
  11261. },
  11262. "require-dev": {
  11263. "ext-xdebug": "*",
  11264. "phpunit/phpunit": "^4.8.36"
  11265. },
  11266. "suggest": {
  11267. "ext-fileinfo": "For PHP builtin file type guessing, otherwise uses internal processing"
  11268. },
  11269. "type": "library",
  11270. "autoload": {
  11271. "psr-4": {
  11272. "TYPO3\\PharStreamWrapper\\": "src/"
  11273. }
  11274. },
  11275. "notification-url": "https://packagist.org/downloads/",
  11276. "license": [
  11277. "MIT"
  11278. ],
  11279. "description": "Interceptors for PHP's native phar:// stream handling",
  11280. "homepage": "https://typo3.org/",
  11281. "keywords": [
  11282. "phar",
  11283. "php",
  11284. "security",
  11285. "stream-wrapper"
  11286. ],
  11287. "time": "2019-12-10T11:53:54+00:00"
  11288. },
  11289. {
  11290. "name": "vlucas/phpdotenv",
  11291. "version": "v2.6.1",
  11292. "source": {
  11293. "type": "git",
  11294. "url": "https://github.com/vlucas/phpdotenv.git",
  11295. "reference": "2a7dcf7e3e02dc5e701004e51a6f304b713107d5"
  11296. },
  11297. "dist": {
  11298. "type": "zip",
  11299. "url": "https://api.github.com/repos/vlucas/phpdotenv/zipball/2a7dcf7e3e02dc5e701004e51a6f304b713107d5",
  11300. "reference": "2a7dcf7e3e02dc5e701004e51a6f304b713107d5",
  11301. "shasum": ""
  11302. },
  11303. "require": {
  11304. "php": ">=5.3.9",
  11305. "symfony/polyfill-ctype": "^1.9"
  11306. },
  11307. "require-dev": {
  11308. "phpunit/phpunit": "^4.8.35 || ^5.0"
  11309. },
  11310. "type": "library",
  11311. "extra": {
  11312. "branch-alias": {
  11313. "dev-master": "2.6-dev"
  11314. }
  11315. },
  11316. "autoload": {
  11317. "psr-4": {
  11318. "Dotenv\\": "src/"
  11319. }
  11320. },
  11321. "notification-url": "https://packagist.org/downloads/",
  11322. "license": [
  11323. "BSD-3-Clause"
  11324. ],
  11325. "authors": [
  11326. {
  11327. "name": "Vance Lucas",
  11328. "email": "vance@vancelucas.com",
  11329. "homepage": "http://www.vancelucas.com"
  11330. }
  11331. ],
  11332. "description": "Loads environment variables from `.env` to `getenv()`, `$_ENV` and `$_SERVER` automagically.",
  11333. "keywords": [
  11334. "dotenv",
  11335. "env",
  11336. "environment"
  11337. ],
  11338. "time": "2019-01-29T11:11:52+00:00"
  11339. },
  11340. {
  11341. "name": "webflo/drupal-core-require-dev",
  11342. "version": "8.7.12",
  11343. "source": {
  11344. "type": "git",
  11345. "url": "https://github.com/webflo/drupal-core-require-dev.git",
  11346. "reference": "11908afc3d07725c93db7ef5f9f4ca3cd6f6a716"
  11347. },
  11348. "dist": {
  11349. "type": "zip",
  11350. "url": "https://api.github.com/repos/webflo/drupal-core-require-dev/zipball/11908afc3d07725c93db7ef5f9f4ca3cd6f6a716",
  11351. "reference": "11908afc3d07725c93db7ef5f9f4ca3cd6f6a716",
  11352. "shasum": ""
  11353. },
  11354. "require": {
  11355. "behat/mink": "1.7.x-dev",
  11356. "behat/mink-goutte-driver": "^1.2",
  11357. "behat/mink-selenium2-driver": "1.3.x-dev",
  11358. "drupal/coder": "^8.3.1",
  11359. "drupal/core": "8.7.12",
  11360. "jcalderonzumba/gastonjs": "^1.0.2",
  11361. "jcalderonzumba/mink-phantomjs-driver": "^0.3.1",
  11362. "justinrainbow/json-schema": "^5.2",
  11363. "mikey179/vfsstream": "^1.2",
  11364. "phpspec/prophecy": "^1.7",
  11365. "phpunit/phpunit": "^4.8.35 || ^6.5",
  11366. "symfony/css-selector": "^3.4.0",
  11367. "symfony/debug": "^3.4.0",
  11368. "symfony/phpunit-bridge": "^3.4.3"
  11369. },
  11370. "type": "metapackage",
  11371. "notification-url": "https://packagist.org/downloads/",
  11372. "license": [
  11373. "GPL-2.0-or-later"
  11374. ],
  11375. "description": "require-dev dependencies from drupal/core",
  11376. "abandoned": "drupal/core-dev",
  11377. "time": "2020-03-18T17:32:01+00:00"
  11378. },
  11379. {
  11380. "name": "webflo/drupal-core-strict",
  11381. "version": "8.0.0-beta15",
  11382. "source": {
  11383. "type": "git",
  11384. "url": "https://github.com/webflo/drupal-core-strict.git",
  11385. "reference": "1eb044b722ebe44bc6af86a03888415d7f31c057"
  11386. },
  11387. "dist": {
  11388. "type": "zip",
  11389. "url": "https://api.github.com/repos/webflo/drupal-core-strict/zipball/1eb044b722ebe44bc6af86a03888415d7f31c057",
  11390. "reference": "1eb044b722ebe44bc6af86a03888415d7f31c057",
  11391. "shasum": ""
  11392. },
  11393. "type": "metapackage",
  11394. "notification-url": "https://packagist.org/downloads/",
  11395. "license": [
  11396. "GPL-2.0-or-later"
  11397. ],
  11398. "description": "Locked core dependencies",
  11399. "abandoned": "drupal/core-recommended",
  11400. "time": "2018-01-30T18:48:19+00:00"
  11401. },
  11402. {
  11403. "name": "webflo/drupal-finder",
  11404. "version": "1.2.0",
  11405. "source": {
  11406. "type": "git",
  11407. "url": "https://github.com/webflo/drupal-finder.git",
  11408. "reference": "123e248e14ee8dd3fbe89fb5a733a6cf91f5820e"
  11409. },
  11410. "dist": {
  11411. "type": "zip",
  11412. "url": "https://api.github.com/repos/webflo/drupal-finder/zipball/123e248e14ee8dd3fbe89fb5a733a6cf91f5820e",
  11413. "reference": "123e248e14ee8dd3fbe89fb5a733a6cf91f5820e",
  11414. "shasum": ""
  11415. },
  11416. "require": {
  11417. "ext-json": "*"
  11418. },
  11419. "require-dev": {
  11420. "mikey179/vfsstream": "^1.6",
  11421. "phpunit/phpunit": "^4.8"
  11422. },
  11423. "type": "library",
  11424. "autoload": {
  11425. "classmap": [
  11426. "src/DrupalFinder.php"
  11427. ]
  11428. },
  11429. "notification-url": "https://packagist.org/downloads/",
  11430. "license": [
  11431. "GPL-2.0+"
  11432. ],
  11433. "authors": [
  11434. {
  11435. "name": "Florian Weber",
  11436. "email": "florian@webflo.org"
  11437. }
  11438. ],
  11439. "description": "Helper class to locate a Drupal installation from a given path.",
  11440. "time": "2019-08-02T08:06:18+00:00"
  11441. },
  11442. {
  11443. "name": "webmozart/assert",
  11444. "version": "1.7.0",
  11445. "source": {
  11446. "type": "git",
  11447. "url": "https://github.com/webmozart/assert.git",
  11448. "reference": "aed98a490f9a8f78468232db345ab9cf606cf598"
  11449. },
  11450. "dist": {
  11451. "type": "zip",
  11452. "url": "https://api.github.com/repos/webmozart/assert/zipball/aed98a490f9a8f78468232db345ab9cf606cf598",
  11453. "reference": "aed98a490f9a8f78468232db345ab9cf606cf598",
  11454. "shasum": ""
  11455. },
  11456. "require": {
  11457. "php": "^5.3.3 || ^7.0",
  11458. "symfony/polyfill-ctype": "^1.8"
  11459. },
  11460. "conflict": {
  11461. "vimeo/psalm": "<3.6.0"
  11462. },
  11463. "require-dev": {
  11464. "phpunit/phpunit": "^4.8.36 || ^7.5.13"
  11465. },
  11466. "type": "library",
  11467. "autoload": {
  11468. "psr-4": {
  11469. "Webmozart\\Assert\\": "src/"
  11470. }
  11471. },
  11472. "notification-url": "https://packagist.org/downloads/",
  11473. "license": [
  11474. "MIT"
  11475. ],
  11476. "authors": [
  11477. {
  11478. "name": "Bernhard Schussek",
  11479. "email": "bschussek@gmail.com"
  11480. }
  11481. ],
  11482. "description": "Assertions to validate method input/output with nice error messages.",
  11483. "keywords": [
  11484. "assert",
  11485. "check",
  11486. "validate"
  11487. ],
  11488. "time": "2020-02-14T12:15:55+00:00"
  11489. },
  11490. {
  11491. "name": "webmozart/path-util",
  11492. "version": "2.3.0",
  11493. "source": {
  11494. "type": "git",
  11495. "url": "https://github.com/webmozart/path-util.git",
  11496. "reference": "d939f7edc24c9a1bb9c0dee5cb05d8e859490725"
  11497. },
  11498. "dist": {
  11499. "type": "zip",
  11500. "url": "https://api.github.com/repos/webmozart/path-util/zipball/d939f7edc24c9a1bb9c0dee5cb05d8e859490725",
  11501. "reference": "d939f7edc24c9a1bb9c0dee5cb05d8e859490725",
  11502. "shasum": ""
  11503. },
  11504. "require": {
  11505. "php": ">=5.3.3",
  11506. "webmozart/assert": "~1.0"
  11507. },
  11508. "require-dev": {
  11509. "phpunit/phpunit": "^4.6",
  11510. "sebastian/version": "^1.0.1"
  11511. },
  11512. "type": "library",
  11513. "extra": {
  11514. "branch-alias": {
  11515. "dev-master": "2.3-dev"
  11516. }
  11517. },
  11518. "autoload": {
  11519. "psr-4": {
  11520. "Webmozart\\PathUtil\\": "src/"
  11521. }
  11522. },
  11523. "notification-url": "https://packagist.org/downloads/",
  11524. "license": [
  11525. "MIT"
  11526. ],
  11527. "authors": [
  11528. {
  11529. "name": "Bernhard Schussek",
  11530. "email": "bschussek@gmail.com"
  11531. }
  11532. ],
  11533. "description": "A robust cross-platform utility for normalizing, comparing and modifying file paths.",
  11534. "time": "2015-12-17T08:42:14+00:00"
  11535. },
  11536. {
  11537. "name": "zaporylie/composer-drupal-optimizations",
  11538. "version": "1.1.1",
  11539. "source": {
  11540. "type": "git",
  11541. "url": "https://github.com/zaporylie/composer-drupal-optimizations.git",
  11542. "reference": "fb231d92adc862a2c9276bccbc90f684816dc75d"
  11543. },
  11544. "dist": {
  11545. "type": "zip",
  11546. "url": "https://api.github.com/repos/zaporylie/composer-drupal-optimizations/zipball/fb231d92adc862a2c9276bccbc90f684816dc75d",
  11547. "reference": "fb231d92adc862a2c9276bccbc90f684816dc75d",
  11548. "shasum": ""
  11549. },
  11550. "require": {
  11551. "composer-plugin-api": "^1.1"
  11552. },
  11553. "require-dev": {
  11554. "composer/composer": "^1.6",
  11555. "phpunit/phpunit": "^6"
  11556. },
  11557. "type": "composer-plugin",
  11558. "extra": {
  11559. "class": "zaporylie\\ComposerDrupalOptimizations\\Plugin"
  11560. },
  11561. "autoload": {
  11562. "psr-4": {
  11563. "zaporylie\\ComposerDrupalOptimizations\\": "src/"
  11564. }
  11565. },
  11566. "notification-url": "https://packagist.org/downloads/",
  11567. "license": [
  11568. "GPL-2.0-or-later"
  11569. ],
  11570. "authors": [
  11571. {
  11572. "name": "Jakub Piasecki",
  11573. "email": "jakub@piaseccy.pl"
  11574. }
  11575. ],
  11576. "description": "Composer plugin to improve composer performance for Drupal projects",
  11577. "time": "2019-10-02T17:01:11+00:00"
  11578. },
  11579. {
  11580. "name": "zendframework/zend-diactoros",
  11581. "version": "1.8.7",
  11582. "source": {
  11583. "type": "git",
  11584. "url": "https://github.com/zendframework/zend-diactoros.git",
  11585. "reference": "a85e67b86e9b8520d07e6415fcbcb8391b44a75b"
  11586. },
  11587. "dist": {
  11588. "type": "zip",
  11589. "url": "https://api.github.com/repos/zendframework/zend-diactoros/zipball/a85e67b86e9b8520d07e6415fcbcb8391b44a75b",
  11590. "reference": "a85e67b86e9b8520d07e6415fcbcb8391b44a75b",
  11591. "shasum": ""
  11592. },
  11593. "require": {
  11594. "php": "^5.6 || ^7.0",
  11595. "psr/http-message": "^1.0"
  11596. },
  11597. "provide": {
  11598. "psr/http-message-implementation": "1.0"
  11599. },
  11600. "require-dev": {
  11601. "ext-dom": "*",
  11602. "ext-libxml": "*",
  11603. "php-http/psr7-integration-tests": "dev-master",
  11604. "phpunit/phpunit": "^5.7.16 || ^6.0.8 || ^7.2.7",
  11605. "zendframework/zend-coding-standard": "~1.0"
  11606. },
  11607. "type": "library",
  11608. "extra": {
  11609. "branch-alias": {
  11610. "dev-release-1.8": "1.8.x-dev"
  11611. }
  11612. },
  11613. "autoload": {
  11614. "files": [
  11615. "src/functions/create_uploaded_file.php",
  11616. "src/functions/marshal_headers_from_sapi.php",
  11617. "src/functions/marshal_method_from_sapi.php",
  11618. "src/functions/marshal_protocol_version_from_sapi.php",
  11619. "src/functions/marshal_uri_from_sapi.php",
  11620. "src/functions/normalize_server.php",
  11621. "src/functions/normalize_uploaded_files.php",
  11622. "src/functions/parse_cookie_header.php"
  11623. ],
  11624. "psr-4": {
  11625. "Zend\\Diactoros\\": "src/"
  11626. }
  11627. },
  11628. "notification-url": "https://packagist.org/downloads/",
  11629. "license": [
  11630. "BSD-2-Clause"
  11631. ],
  11632. "description": "PSR HTTP Message implementations",
  11633. "homepage": "https://github.com/zendframework/zend-diactoros",
  11634. "keywords": [
  11635. "http",
  11636. "psr",
  11637. "psr-7"
  11638. ],
  11639. "abandoned": "laminas/laminas-diactoros",
  11640. "time": "2019-08-06T17:53:53+00:00"
  11641. },
  11642. {
  11643. "name": "zendframework/zend-escaper",
  11644. "version": "2.6.1",
  11645. "source": {
  11646. "type": "git",
  11647. "url": "https://github.com/zendframework/zend-escaper.git",
  11648. "reference": "3801caa21b0ca6aca57fa1c42b08d35c395ebd5f"
  11649. },
  11650. "dist": {
  11651. "type": "zip",
  11652. "url": "https://api.github.com/repos/zendframework/zend-escaper/zipball/3801caa21b0ca6aca57fa1c42b08d35c395ebd5f",
  11653. "reference": "3801caa21b0ca6aca57fa1c42b08d35c395ebd5f",
  11654. "shasum": ""
  11655. },
  11656. "require": {
  11657. "php": "^5.6 || ^7.0"
  11658. },
  11659. "require-dev": {
  11660. "phpunit/phpunit": "^5.7.27 || ^6.5.8 || ^7.1.2",
  11661. "zendframework/zend-coding-standard": "~1.0.0"
  11662. },
  11663. "type": "library",
  11664. "extra": {
  11665. "branch-alias": {
  11666. "dev-master": "2.6.x-dev",
  11667. "dev-develop": "2.7.x-dev"
  11668. }
  11669. },
  11670. "autoload": {
  11671. "psr-4": {
  11672. "Zend\\Escaper\\": "src/"
  11673. }
  11674. },
  11675. "notification-url": "https://packagist.org/downloads/",
  11676. "license": [
  11677. "BSD-3-Clause"
  11678. ],
  11679. "description": "Securely and safely escape HTML, HTML attributes, JavaScript, CSS, and URLs",
  11680. "keywords": [
  11681. "ZendFramework",
  11682. "escaper",
  11683. "zf"
  11684. ],
  11685. "abandoned": "laminas/laminas-escaper",
  11686. "time": "2019-09-05T20:03:20+00:00"
  11687. },
  11688. {
  11689. "name": "zendframework/zend-feed",
  11690. "version": "2.12.0",
  11691. "source": {
  11692. "type": "git",
  11693. "url": "https://github.com/zendframework/zend-feed.git",
  11694. "reference": "d926c5af34b93a0121d5e2641af34ddb1533d733"
  11695. },
  11696. "dist": {
  11697. "type": "zip",
  11698. "url": "https://api.github.com/repos/zendframework/zend-feed/zipball/d926c5af34b93a0121d5e2641af34ddb1533d733",
  11699. "reference": "d926c5af34b93a0121d5e2641af34ddb1533d733",
  11700. "shasum": ""
  11701. },
  11702. "require": {
  11703. "ext-dom": "*",
  11704. "ext-libxml": "*",
  11705. "php": "^5.6 || ^7.0",
  11706. "zendframework/zend-escaper": "^2.5.2",
  11707. "zendframework/zend-stdlib": "^3.2.1"
  11708. },
  11709. "require-dev": {
  11710. "phpunit/phpunit": "^5.7.23 || ^6.4.3",
  11711. "psr/http-message": "^1.0.1",
  11712. "zendframework/zend-cache": "^2.7.2",
  11713. "zendframework/zend-coding-standard": "~1.0.0",
  11714. "zendframework/zend-db": "^2.8.2",
  11715. "zendframework/zend-http": "^2.7",
  11716. "zendframework/zend-servicemanager": "^2.7.8 || ^3.3",
  11717. "zendframework/zend-validator": "^2.10.1"
  11718. },
  11719. "suggest": {
  11720. "psr/http-message": "PSR-7 ^1.0.1, if you wish to use Zend\\Feed\\Reader\\Http\\Psr7ResponseDecorator",
  11721. "zendframework/zend-cache": "Zend\\Cache component, for optionally caching feeds between requests",
  11722. "zendframework/zend-db": "Zend\\Db component, for use with PubSubHubbub",
  11723. "zendframework/zend-http": "Zend\\Http for PubSubHubbub, and optionally for use with Zend\\Feed\\Reader",
  11724. "zendframework/zend-servicemanager": "Zend\\ServiceManager component, for easily extending ExtensionManager implementations",
  11725. "zendframework/zend-validator": "Zend\\Validator component, for validating email addresses used in Atom feeds and entries when using the Writer subcomponent"
  11726. },
  11727. "type": "library",
  11728. "extra": {
  11729. "branch-alias": {
  11730. "dev-master": "2.12.x-dev",
  11731. "dev-develop": "2.13.x-dev"
  11732. }
  11733. },
  11734. "autoload": {
  11735. "psr-4": {
  11736. "Zend\\Feed\\": "src/"
  11737. }
  11738. },
  11739. "notification-url": "https://packagist.org/downloads/",
  11740. "license": [
  11741. "BSD-3-Clause"
  11742. ],
  11743. "description": "provides functionality for consuming RSS and Atom feeds",
  11744. "keywords": [
  11745. "ZendFramework",
  11746. "feed",
  11747. "zf"
  11748. ],
  11749. "abandoned": "laminas/laminas-feed",
  11750. "time": "2019-03-05T20:08:49+00:00"
  11751. },
  11752. {
  11753. "name": "zendframework/zend-stdlib",
  11754. "version": "3.2.1",
  11755. "source": {
  11756. "type": "git",
  11757. "url": "https://github.com/zendframework/zend-stdlib.git",
  11758. "reference": "66536006722aff9e62d1b331025089b7ec71c065"
  11759. },
  11760. "dist": {
  11761. "type": "zip",
  11762. "url": "https://api.github.com/repos/zendframework/zend-stdlib/zipball/66536006722aff9e62d1b331025089b7ec71c065",
  11763. "reference": "66536006722aff9e62d1b331025089b7ec71c065",
  11764. "shasum": ""
  11765. },
  11766. "require": {
  11767. "php": "^5.6 || ^7.0"
  11768. },
  11769. "require-dev": {
  11770. "phpbench/phpbench": "^0.13",
  11771. "phpunit/phpunit": "^5.7.27 || ^6.5.8 || ^7.1.2",
  11772. "zendframework/zend-coding-standard": "~1.0.0"
  11773. },
  11774. "type": "library",
  11775. "extra": {
  11776. "branch-alias": {
  11777. "dev-master": "3.2.x-dev",
  11778. "dev-develop": "3.3.x-dev"
  11779. }
  11780. },
  11781. "autoload": {
  11782. "psr-4": {
  11783. "Zend\\Stdlib\\": "src/"
  11784. }
  11785. },
  11786. "notification-url": "https://packagist.org/downloads/",
  11787. "license": [
  11788. "BSD-3-Clause"
  11789. ],
  11790. "description": "SPL extensions, array utilities, error handlers, and more",
  11791. "keywords": [
  11792. "ZendFramework",
  11793. "stdlib",
  11794. "zf"
  11795. ],
  11796. "abandoned": "laminas/laminas-stdlib",
  11797. "time": "2018-08-28T21:34:05+00:00"
  11798. }
  11799. ],
  11800. "packages-dev": [],
  11801. "aliases": [],
  11802. "minimum-stability": "dev",
  11803. "stability-flags": {
  11804. "drupal/bulkdelete": 20,
  11805. "drupal/domain_menu_access": 20,
  11806. "drupal/filefield_sources": 20,
  11807. "drupal/filter_perms": 20,
  11808. "drupal/maillog": 20,
  11809. "drupal/path_alias_xt": 20,
  11810. "drupal/synonyms": 20,
  11811. "drupal/toolbar_themes": 20,
  11812. "drupal/workflow": 20
  11813. },
  11814. "prefer-stable": true,
  11815. "prefer-lowest": false,
  11816. "platform": {
  11817. "php": ">=5.6"
  11818. },
  11819. "platform-dev": []
  11820. }