composer.lock 463 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556155715581559156015611562156315641565156615671568156915701571157215731574157515761577157815791580158115821583158415851586158715881589159015911592159315941595159615971598159916001601160216031604160516061607160816091610161116121613161416151616161716181619162016211622162316241625162616271628162916301631163216331634163516361637163816391640164116421643164416451646164716481649165016511652165316541655165616571658165916601661166216631664166516661667166816691670167116721673167416751676167716781679168016811682168316841685168616871688168916901691169216931694169516961697169816991700170117021703170417051706170717081709171017111712171317141715171617171718171917201721172217231724172517261727172817291730173117321733173417351736173717381739174017411742174317441745174617471748174917501751175217531754175517561757175817591760176117621763176417651766176717681769177017711772177317741775177617771778177917801781178217831784178517861787178817891790179117921793179417951796179717981799180018011802180318041805180618071808180918101811181218131814181518161817181818191820182118221823182418251826182718281829183018311832183318341835183618371838183918401841184218431844184518461847184818491850185118521853185418551856185718581859186018611862186318641865186618671868186918701871187218731874187518761877187818791880188118821883188418851886188718881889189018911892189318941895189618971898189919001901190219031904190519061907190819091910191119121913191419151916191719181919192019211922192319241925192619271928192919301931193219331934193519361937193819391940194119421943194419451946194719481949195019511952195319541955195619571958195919601961196219631964196519661967196819691970197119721973197419751976197719781979198019811982198319841985198619871988198919901991199219931994199519961997199819992000200120022003200420052006200720082009201020112012201320142015201620172018201920202021202220232024202520262027202820292030203120322033203420352036203720382039204020412042204320442045204620472048204920502051205220532054205520562057205820592060206120622063206420652066206720682069207020712072207320742075207620772078207920802081208220832084208520862087208820892090209120922093209420952096209720982099210021012102210321042105210621072108210921102111211221132114211521162117211821192120212121222123212421252126212721282129213021312132213321342135213621372138213921402141214221432144214521462147214821492150215121522153215421552156215721582159216021612162216321642165216621672168216921702171217221732174217521762177217821792180218121822183218421852186218721882189219021912192219321942195219621972198219922002201220222032204220522062207220822092210221122122213221422152216221722182219222022212222222322242225222622272228222922302231223222332234223522362237223822392240224122422243224422452246224722482249225022512252225322542255225622572258225922602261226222632264226522662267226822692270227122722273227422752276227722782279228022812282228322842285228622872288228922902291229222932294229522962297229822992300230123022303230423052306230723082309231023112312231323142315231623172318231923202321232223232324232523262327232823292330233123322333233423352336233723382339234023412342234323442345234623472348234923502351235223532354235523562357235823592360236123622363236423652366236723682369237023712372237323742375237623772378237923802381238223832384238523862387238823892390239123922393239423952396239723982399240024012402240324042405240624072408240924102411241224132414241524162417241824192420242124222423242424252426242724282429243024312432243324342435243624372438243924402441244224432444244524462447244824492450245124522453245424552456245724582459246024612462246324642465246624672468246924702471247224732474247524762477247824792480248124822483248424852486248724882489249024912492249324942495249624972498249925002501250225032504250525062507250825092510251125122513251425152516251725182519252025212522252325242525252625272528252925302531253225332534253525362537253825392540254125422543254425452546254725482549255025512552255325542555255625572558255925602561256225632564256525662567256825692570257125722573257425752576257725782579258025812582258325842585258625872588258925902591259225932594259525962597259825992600260126022603260426052606260726082609261026112612261326142615261626172618261926202621262226232624262526262627262826292630263126322633263426352636263726382639264026412642264326442645264626472648264926502651265226532654265526562657265826592660266126622663266426652666266726682669267026712672267326742675267626772678267926802681268226832684268526862687268826892690269126922693269426952696269726982699270027012702270327042705270627072708270927102711271227132714271527162717271827192720272127222723272427252726272727282729273027312732273327342735273627372738273927402741274227432744274527462747274827492750275127522753275427552756275727582759276027612762276327642765276627672768276927702771277227732774277527762777277827792780278127822783278427852786278727882789279027912792279327942795279627972798279928002801280228032804280528062807280828092810281128122813281428152816281728182819282028212822282328242825282628272828282928302831283228332834283528362837283828392840284128422843284428452846284728482849285028512852285328542855285628572858285928602861286228632864286528662867286828692870287128722873287428752876287728782879288028812882288328842885288628872888288928902891289228932894289528962897289828992900290129022903290429052906290729082909291029112912291329142915291629172918291929202921292229232924292529262927292829292930293129322933293429352936293729382939294029412942294329442945294629472948294929502951295229532954295529562957295829592960296129622963296429652966296729682969297029712972297329742975297629772978297929802981298229832984298529862987298829892990299129922993299429952996299729982999300030013002300330043005300630073008300930103011301230133014301530163017301830193020302130223023302430253026302730283029303030313032303330343035303630373038303930403041304230433044304530463047304830493050305130523053305430553056305730583059306030613062306330643065306630673068306930703071307230733074307530763077307830793080308130823083308430853086308730883089309030913092309330943095309630973098309931003101310231033104310531063107310831093110311131123113311431153116311731183119312031213122312331243125312631273128312931303131313231333134313531363137313831393140314131423143314431453146314731483149315031513152315331543155315631573158315931603161316231633164316531663167316831693170317131723173317431753176317731783179318031813182318331843185318631873188318931903191319231933194319531963197319831993200320132023203320432053206320732083209321032113212321332143215321632173218321932203221322232233224322532263227322832293230323132323233323432353236323732383239324032413242324332443245324632473248324932503251325232533254325532563257325832593260326132623263326432653266326732683269327032713272327332743275327632773278327932803281328232833284328532863287328832893290329132923293329432953296329732983299330033013302330333043305330633073308330933103311331233133314331533163317331833193320332133223323332433253326332733283329333033313332333333343335333633373338333933403341334233433344334533463347334833493350335133523353335433553356335733583359336033613362336333643365336633673368336933703371337233733374337533763377337833793380338133823383338433853386338733883389339033913392339333943395339633973398339934003401340234033404340534063407340834093410341134123413341434153416341734183419342034213422342334243425342634273428342934303431343234333434343534363437343834393440344134423443344434453446344734483449345034513452345334543455345634573458345934603461346234633464346534663467346834693470347134723473347434753476347734783479348034813482348334843485348634873488348934903491349234933494349534963497349834993500350135023503350435053506350735083509351035113512351335143515351635173518351935203521352235233524352535263527352835293530353135323533353435353536353735383539354035413542354335443545354635473548354935503551355235533554355535563557355835593560356135623563356435653566356735683569357035713572357335743575357635773578357935803581358235833584358535863587358835893590359135923593359435953596359735983599360036013602360336043605360636073608360936103611361236133614361536163617361836193620362136223623362436253626362736283629363036313632363336343635363636373638363936403641364236433644364536463647364836493650365136523653365436553656365736583659366036613662366336643665366636673668366936703671367236733674367536763677367836793680368136823683368436853686368736883689369036913692369336943695369636973698369937003701370237033704370537063707370837093710371137123713371437153716371737183719372037213722372337243725372637273728372937303731373237333734373537363737373837393740374137423743374437453746374737483749375037513752375337543755375637573758375937603761376237633764376537663767376837693770377137723773377437753776377737783779378037813782378337843785378637873788378937903791379237933794379537963797379837993800380138023803380438053806380738083809381038113812381338143815381638173818381938203821382238233824382538263827382838293830383138323833383438353836383738383839384038413842384338443845384638473848384938503851385238533854385538563857385838593860386138623863386438653866386738683869387038713872387338743875387638773878387938803881388238833884388538863887388838893890389138923893389438953896389738983899390039013902390339043905390639073908390939103911391239133914391539163917391839193920392139223923392439253926392739283929393039313932393339343935393639373938393939403941394239433944394539463947394839493950395139523953395439553956395739583959396039613962396339643965396639673968396939703971397239733974397539763977397839793980398139823983398439853986398739883989399039913992399339943995399639973998399940004001400240034004400540064007400840094010401140124013401440154016401740184019402040214022402340244025402640274028402940304031403240334034403540364037403840394040404140424043404440454046404740484049405040514052405340544055405640574058405940604061406240634064406540664067406840694070407140724073407440754076407740784079408040814082408340844085408640874088408940904091409240934094409540964097409840994100410141024103410441054106410741084109411041114112411341144115411641174118411941204121412241234124412541264127412841294130413141324133413441354136413741384139414041414142414341444145414641474148414941504151415241534154415541564157415841594160416141624163416441654166416741684169417041714172417341744175417641774178417941804181418241834184418541864187418841894190419141924193419441954196419741984199420042014202420342044205420642074208420942104211421242134214421542164217421842194220422142224223422442254226422742284229423042314232423342344235423642374238423942404241424242434244424542464247424842494250425142524253425442554256425742584259426042614262426342644265426642674268426942704271427242734274427542764277427842794280428142824283428442854286428742884289429042914292429342944295429642974298429943004301430243034304430543064307430843094310431143124313431443154316431743184319432043214322432343244325432643274328432943304331433243334334433543364337433843394340434143424343434443454346434743484349435043514352435343544355435643574358435943604361436243634364436543664367436843694370437143724373437443754376437743784379438043814382438343844385438643874388438943904391439243934394439543964397439843994400440144024403440444054406440744084409441044114412441344144415441644174418441944204421442244234424442544264427442844294430443144324433443444354436443744384439444044414442444344444445444644474448444944504451445244534454445544564457445844594460446144624463446444654466446744684469447044714472447344744475447644774478447944804481448244834484448544864487448844894490449144924493449444954496449744984499450045014502450345044505450645074508450945104511451245134514451545164517451845194520452145224523452445254526452745284529453045314532453345344535453645374538453945404541454245434544454545464547454845494550455145524553455445554556455745584559456045614562456345644565456645674568456945704571457245734574457545764577457845794580458145824583458445854586458745884589459045914592459345944595459645974598459946004601460246034604460546064607460846094610461146124613461446154616461746184619462046214622462346244625462646274628462946304631463246334634463546364637463846394640464146424643464446454646464746484649465046514652465346544655465646574658465946604661466246634664466546664667466846694670467146724673467446754676467746784679468046814682468346844685468646874688468946904691469246934694469546964697469846994700470147024703470447054706470747084709471047114712471347144715471647174718471947204721472247234724472547264727472847294730473147324733473447354736473747384739474047414742474347444745474647474748474947504751475247534754475547564757475847594760476147624763476447654766476747684769477047714772477347744775477647774778477947804781478247834784478547864787478847894790479147924793479447954796479747984799480048014802480348044805480648074808480948104811481248134814481548164817481848194820482148224823482448254826482748284829483048314832483348344835483648374838483948404841484248434844484548464847484848494850485148524853485448554856485748584859486048614862486348644865486648674868486948704871487248734874487548764877487848794880488148824883488448854886488748884889489048914892489348944895489648974898489949004901490249034904490549064907490849094910491149124913491449154916491749184919492049214922492349244925492649274928492949304931493249334934493549364937493849394940494149424943494449454946494749484949495049514952495349544955495649574958495949604961496249634964496549664967496849694970497149724973497449754976497749784979498049814982498349844985498649874988498949904991499249934994499549964997499849995000500150025003500450055006500750085009501050115012501350145015501650175018501950205021502250235024502550265027502850295030503150325033503450355036503750385039504050415042504350445045504650475048504950505051505250535054505550565057505850595060506150625063506450655066506750685069507050715072507350745075507650775078507950805081508250835084508550865087508850895090509150925093509450955096509750985099510051015102510351045105510651075108510951105111511251135114511551165117511851195120512151225123512451255126512751285129513051315132513351345135513651375138513951405141514251435144514551465147514851495150515151525153515451555156515751585159516051615162516351645165516651675168516951705171517251735174517551765177517851795180518151825183518451855186518751885189519051915192519351945195519651975198519952005201520252035204520552065207520852095210521152125213521452155216521752185219522052215222522352245225522652275228522952305231523252335234523552365237523852395240524152425243524452455246524752485249525052515252525352545255525652575258525952605261526252635264526552665267526852695270527152725273527452755276527752785279528052815282528352845285528652875288528952905291529252935294529552965297529852995300530153025303530453055306530753085309531053115312531353145315531653175318531953205321532253235324532553265327532853295330533153325333533453355336533753385339534053415342534353445345534653475348534953505351535253535354535553565357535853595360536153625363536453655366536753685369537053715372537353745375537653775378537953805381538253835384538553865387538853895390539153925393539453955396539753985399540054015402540354045405540654075408540954105411541254135414541554165417541854195420542154225423542454255426542754285429543054315432543354345435543654375438543954405441544254435444544554465447544854495450545154525453545454555456545754585459546054615462546354645465546654675468546954705471547254735474547554765477547854795480548154825483548454855486548754885489549054915492549354945495549654975498549955005501550255035504550555065507550855095510551155125513551455155516551755185519552055215522552355245525552655275528552955305531553255335534553555365537553855395540554155425543554455455546554755485549555055515552555355545555555655575558555955605561556255635564556555665567556855695570557155725573557455755576557755785579558055815582558355845585558655875588558955905591559255935594559555965597559855995600560156025603560456055606560756085609561056115612561356145615561656175618561956205621562256235624562556265627562856295630563156325633563456355636563756385639564056415642564356445645564656475648564956505651565256535654565556565657565856595660566156625663566456655666566756685669567056715672567356745675567656775678567956805681568256835684568556865687568856895690569156925693569456955696569756985699570057015702570357045705570657075708570957105711571257135714571557165717571857195720572157225723572457255726572757285729573057315732573357345735573657375738573957405741574257435744574557465747574857495750575157525753575457555756575757585759576057615762576357645765576657675768576957705771577257735774577557765777577857795780578157825783578457855786578757885789579057915792579357945795579657975798579958005801580258035804580558065807580858095810581158125813581458155816581758185819582058215822582358245825582658275828582958305831583258335834583558365837583858395840584158425843584458455846584758485849585058515852585358545855585658575858585958605861586258635864586558665867586858695870587158725873587458755876587758785879588058815882588358845885588658875888588958905891589258935894589558965897589858995900590159025903590459055906590759085909591059115912591359145915591659175918591959205921592259235924592559265927592859295930593159325933593459355936593759385939594059415942594359445945594659475948594959505951595259535954595559565957595859595960596159625963596459655966596759685969597059715972597359745975597659775978597959805981598259835984598559865987598859895990599159925993599459955996599759985999600060016002600360046005600660076008600960106011601260136014601560166017601860196020602160226023602460256026602760286029603060316032603360346035603660376038603960406041604260436044604560466047604860496050605160526053605460556056605760586059606060616062606360646065606660676068606960706071607260736074607560766077607860796080608160826083608460856086608760886089609060916092609360946095609660976098609961006101610261036104610561066107610861096110611161126113611461156116611761186119612061216122612361246125612661276128612961306131613261336134613561366137613861396140614161426143614461456146614761486149615061516152615361546155615661576158615961606161616261636164616561666167616861696170617161726173617461756176617761786179618061816182618361846185618661876188618961906191619261936194619561966197619861996200620162026203620462056206620762086209621062116212621362146215621662176218621962206221622262236224622562266227622862296230623162326233623462356236623762386239624062416242624362446245624662476248624962506251625262536254625562566257625862596260626162626263626462656266626762686269627062716272627362746275627662776278627962806281628262836284628562866287628862896290629162926293629462956296629762986299630063016302630363046305630663076308630963106311631263136314631563166317631863196320632163226323632463256326632763286329633063316332633363346335633663376338633963406341634263436344634563466347634863496350635163526353635463556356635763586359636063616362636363646365636663676368636963706371637263736374637563766377637863796380638163826383638463856386638763886389639063916392639363946395639663976398639964006401640264036404640564066407640864096410641164126413641464156416641764186419642064216422642364246425642664276428642964306431643264336434643564366437643864396440644164426443644464456446644764486449645064516452645364546455645664576458645964606461646264636464646564666467646864696470647164726473647464756476647764786479648064816482648364846485648664876488648964906491649264936494649564966497649864996500650165026503650465056506650765086509651065116512651365146515651665176518651965206521652265236524652565266527652865296530653165326533653465356536653765386539654065416542654365446545654665476548654965506551655265536554655565566557655865596560656165626563656465656566656765686569657065716572657365746575657665776578657965806581658265836584658565866587658865896590659165926593659465956596659765986599660066016602660366046605660666076608660966106611661266136614661566166617661866196620662166226623662466256626662766286629663066316632663366346635663666376638663966406641664266436644664566466647664866496650665166526653665466556656665766586659666066616662666366646665666666676668666966706671667266736674667566766677667866796680668166826683668466856686668766886689669066916692669366946695669666976698669967006701670267036704670567066707670867096710671167126713671467156716671767186719672067216722672367246725672667276728672967306731673267336734673567366737673867396740674167426743674467456746674767486749675067516752675367546755675667576758675967606761676267636764676567666767676867696770677167726773677467756776677767786779678067816782678367846785678667876788678967906791679267936794679567966797679867996800680168026803680468056806680768086809681068116812681368146815681668176818681968206821682268236824682568266827682868296830683168326833683468356836683768386839684068416842684368446845684668476848684968506851685268536854685568566857685868596860686168626863686468656866686768686869687068716872687368746875687668776878687968806881688268836884688568866887688868896890689168926893689468956896689768986899690069016902690369046905690669076908690969106911691269136914691569166917691869196920692169226923692469256926692769286929693069316932693369346935693669376938693969406941694269436944694569466947694869496950695169526953695469556956695769586959696069616962696369646965696669676968696969706971697269736974697569766977697869796980698169826983698469856986698769886989699069916992699369946995699669976998699970007001700270037004700570067007700870097010701170127013701470157016701770187019702070217022702370247025702670277028702970307031703270337034703570367037703870397040704170427043704470457046704770487049705070517052705370547055705670577058705970607061706270637064706570667067706870697070707170727073707470757076707770787079708070817082708370847085708670877088708970907091709270937094709570967097709870997100710171027103710471057106710771087109711071117112711371147115711671177118711971207121712271237124712571267127712871297130713171327133713471357136713771387139714071417142714371447145714671477148714971507151715271537154715571567157715871597160716171627163716471657166716771687169717071717172717371747175717671777178717971807181718271837184718571867187718871897190719171927193719471957196719771987199720072017202720372047205720672077208720972107211721272137214721572167217721872197220722172227223722472257226722772287229723072317232723372347235723672377238723972407241724272437244724572467247724872497250725172527253725472557256725772587259726072617262726372647265726672677268726972707271727272737274727572767277727872797280728172827283728472857286728772887289729072917292729372947295729672977298729973007301730273037304730573067307730873097310731173127313731473157316731773187319732073217322732373247325732673277328732973307331733273337334733573367337733873397340734173427343734473457346734773487349735073517352735373547355735673577358735973607361736273637364736573667367736873697370737173727373737473757376737773787379738073817382738373847385738673877388738973907391739273937394739573967397739873997400740174027403740474057406740774087409741074117412741374147415741674177418741974207421742274237424742574267427742874297430743174327433743474357436743774387439744074417442744374447445744674477448744974507451745274537454745574567457745874597460746174627463746474657466746774687469747074717472747374747475747674777478747974807481748274837484748574867487748874897490749174927493749474957496749774987499750075017502750375047505750675077508750975107511751275137514751575167517751875197520752175227523752475257526752775287529753075317532753375347535753675377538753975407541754275437544754575467547754875497550755175527553755475557556755775587559756075617562756375647565756675677568756975707571757275737574757575767577757875797580758175827583758475857586758775887589759075917592759375947595759675977598759976007601760276037604760576067607760876097610761176127613761476157616761776187619762076217622762376247625762676277628762976307631763276337634763576367637763876397640764176427643764476457646764776487649765076517652765376547655765676577658765976607661766276637664766576667667766876697670767176727673767476757676767776787679768076817682768376847685768676877688768976907691769276937694769576967697769876997700770177027703770477057706770777087709771077117712771377147715771677177718771977207721772277237724772577267727772877297730773177327733773477357736773777387739774077417742774377447745774677477748774977507751775277537754775577567757775877597760776177627763776477657766776777687769777077717772777377747775777677777778777977807781778277837784778577867787778877897790779177927793779477957796779777987799780078017802780378047805780678077808780978107811781278137814781578167817781878197820782178227823782478257826782778287829783078317832783378347835783678377838783978407841784278437844784578467847784878497850785178527853785478557856785778587859786078617862786378647865786678677868786978707871787278737874787578767877787878797880788178827883788478857886788778887889789078917892789378947895789678977898789979007901790279037904790579067907790879097910791179127913791479157916791779187919792079217922792379247925792679277928792979307931793279337934793579367937793879397940794179427943794479457946794779487949795079517952795379547955795679577958795979607961796279637964796579667967796879697970797179727973797479757976797779787979798079817982798379847985798679877988798979907991799279937994799579967997799879998000800180028003800480058006800780088009801080118012801380148015801680178018801980208021802280238024802580268027802880298030803180328033803480358036803780388039804080418042804380448045804680478048804980508051805280538054805580568057805880598060806180628063806480658066806780688069807080718072807380748075807680778078807980808081808280838084808580868087808880898090809180928093809480958096809780988099810081018102810381048105810681078108810981108111811281138114811581168117811881198120812181228123812481258126812781288129813081318132813381348135813681378138813981408141814281438144814581468147814881498150815181528153815481558156815781588159816081618162816381648165816681678168816981708171817281738174817581768177817881798180818181828183818481858186818781888189819081918192819381948195819681978198819982008201820282038204820582068207820882098210821182128213821482158216821782188219822082218222822382248225822682278228822982308231823282338234823582368237823882398240824182428243824482458246824782488249825082518252825382548255825682578258825982608261826282638264826582668267826882698270827182728273827482758276827782788279828082818282828382848285828682878288828982908291829282938294829582968297829882998300830183028303830483058306830783088309831083118312831383148315831683178318831983208321832283238324832583268327832883298330833183328333833483358336833783388339834083418342834383448345834683478348834983508351835283538354835583568357835883598360836183628363836483658366836783688369837083718372837383748375837683778378837983808381838283838384838583868387838883898390839183928393839483958396839783988399840084018402840384048405840684078408840984108411841284138414841584168417841884198420842184228423842484258426842784288429843084318432843384348435843684378438843984408441844284438444844584468447844884498450845184528453845484558456845784588459846084618462846384648465846684678468846984708471847284738474847584768477847884798480848184828483848484858486848784888489849084918492849384948495849684978498849985008501850285038504850585068507850885098510851185128513851485158516851785188519852085218522852385248525852685278528852985308531853285338534853585368537853885398540854185428543854485458546854785488549855085518552855385548555855685578558855985608561856285638564856585668567856885698570857185728573857485758576857785788579858085818582858385848585858685878588858985908591859285938594859585968597859885998600860186028603860486058606860786088609861086118612861386148615861686178618861986208621862286238624862586268627862886298630863186328633863486358636863786388639864086418642864386448645864686478648864986508651865286538654865586568657865886598660866186628663866486658666866786688669867086718672867386748675867686778678867986808681868286838684868586868687868886898690869186928693869486958696869786988699870087018702870387048705870687078708870987108711871287138714871587168717871887198720872187228723872487258726872787288729873087318732873387348735873687378738873987408741874287438744874587468747874887498750875187528753875487558756875787588759876087618762876387648765876687678768876987708771877287738774877587768777877887798780878187828783878487858786878787888789879087918792879387948795879687978798879988008801880288038804880588068807880888098810881188128813881488158816881788188819882088218822882388248825882688278828882988308831883288338834883588368837883888398840884188428843884488458846884788488849885088518852885388548855885688578858885988608861886288638864886588668867886888698870887188728873887488758876887788788879888088818882888388848885888688878888888988908891889288938894889588968897889888998900890189028903890489058906890789088909891089118912891389148915891689178918891989208921892289238924892589268927892889298930893189328933893489358936893789388939894089418942894389448945894689478948894989508951895289538954895589568957895889598960896189628963896489658966896789688969897089718972897389748975897689778978897989808981898289838984898589868987898889898990899189928993899489958996899789988999900090019002900390049005900690079008900990109011901290139014901590169017901890199020902190229023902490259026902790289029903090319032903390349035903690379038903990409041904290439044904590469047904890499050905190529053905490559056905790589059906090619062906390649065906690679068906990709071907290739074907590769077907890799080908190829083908490859086908790889089909090919092909390949095909690979098909991009101910291039104910591069107910891099110911191129113911491159116911791189119912091219122912391249125912691279128912991309131913291339134913591369137913891399140914191429143914491459146914791489149915091519152915391549155915691579158915991609161916291639164916591669167916891699170917191729173917491759176917791789179918091819182918391849185918691879188918991909191919291939194919591969197919891999200920192029203920492059206920792089209921092119212921392149215921692179218921992209221922292239224922592269227922892299230923192329233923492359236923792389239924092419242924392449245924692479248924992509251925292539254925592569257925892599260926192629263926492659266926792689269927092719272927392749275927692779278927992809281928292839284928592869287928892899290929192929293929492959296929792989299930093019302930393049305930693079308930993109311931293139314931593169317931893199320932193229323932493259326932793289329933093319332933393349335933693379338933993409341934293439344934593469347934893499350935193529353935493559356935793589359936093619362936393649365936693679368936993709371937293739374937593769377937893799380938193829383938493859386938793889389939093919392939393949395939693979398939994009401940294039404940594069407940894099410941194129413941494159416941794189419942094219422942394249425942694279428942994309431943294339434943594369437943894399440944194429443944494459446944794489449945094519452945394549455945694579458945994609461946294639464946594669467946894699470947194729473947494759476947794789479948094819482948394849485948694879488948994909491949294939494949594969497949894999500950195029503950495059506950795089509951095119512951395149515951695179518951995209521952295239524952595269527952895299530953195329533953495359536953795389539954095419542954395449545954695479548954995509551955295539554955595569557955895599560956195629563956495659566956795689569957095719572957395749575957695779578957995809581958295839584958595869587958895899590959195929593959495959596959795989599960096019602960396049605960696079608960996109611961296139614961596169617961896199620962196229623962496259626962796289629963096319632963396349635963696379638963996409641964296439644964596469647964896499650965196529653965496559656965796589659966096619662966396649665966696679668966996709671967296739674967596769677967896799680968196829683968496859686968796889689969096919692969396949695969696979698969997009701970297039704970597069707970897099710971197129713971497159716971797189719972097219722972397249725972697279728972997309731973297339734973597369737973897399740974197429743974497459746974797489749975097519752975397549755975697579758975997609761976297639764976597669767976897699770977197729773977497759776977797789779978097819782978397849785978697879788978997909791979297939794979597969797979897999800980198029803980498059806980798089809981098119812981398149815981698179818981998209821982298239824982598269827982898299830983198329833983498359836983798389839984098419842984398449845984698479848984998509851985298539854985598569857985898599860986198629863986498659866986798689869987098719872987398749875987698779878987998809881988298839884988598869887988898899890989198929893989498959896989798989899990099019902990399049905990699079908990999109911991299139914991599169917991899199920992199229923992499259926992799289929993099319932993399349935993699379938993999409941994299439944994599469947994899499950995199529953995499559956995799589959996099619962996399649965996699679968996999709971997299739974997599769977997899799980998199829983998499859986998799889989999099919992999399949995999699979998999910000100011000210003100041000510006100071000810009100101001110012100131001410015100161001710018100191002010021100221002310024100251002610027100281002910030100311003210033100341003510036100371003810039100401004110042100431004410045100461004710048100491005010051100521005310054100551005610057100581005910060100611006210063100641006510066100671006810069100701007110072100731007410075100761007710078100791008010081100821008310084100851008610087100881008910090100911009210093100941009510096100971009810099101001010110102101031010410105101061010710108101091011010111101121011310114101151011610117101181011910120101211012210123101241012510126101271012810129101301013110132101331013410135101361013710138101391014010141101421014310144101451014610147101481014910150101511015210153101541015510156101571015810159101601016110162101631016410165101661016710168101691017010171101721017310174101751017610177101781017910180101811018210183101841018510186101871018810189101901019110192101931019410195101961019710198101991020010201102021020310204102051020610207102081020910210102111021210213102141021510216102171021810219102201022110222102231022410225102261022710228102291023010231102321023310234102351023610237102381023910240102411024210243102441024510246102471024810249102501025110252102531025410255102561025710258102591026010261102621026310264102651026610267102681026910270102711027210273102741027510276102771027810279102801028110282102831028410285102861028710288102891029010291102921029310294102951029610297102981029910300103011030210303103041030510306103071030810309103101031110312103131031410315103161031710318103191032010321103221032310324103251032610327103281032910330103311033210333103341033510336103371033810339103401034110342103431034410345103461034710348103491035010351103521035310354103551035610357103581035910360103611036210363103641036510366103671036810369103701037110372103731037410375103761037710378103791038010381103821038310384103851038610387103881038910390103911039210393103941039510396103971039810399104001040110402104031040410405104061040710408104091041010411104121041310414104151041610417104181041910420104211042210423104241042510426104271042810429104301043110432104331043410435104361043710438104391044010441104421044310444104451044610447104481044910450104511045210453104541045510456104571045810459104601046110462104631046410465104661046710468104691047010471104721047310474104751047610477104781047910480104811048210483104841048510486104871048810489104901049110492104931049410495104961049710498104991050010501105021050310504105051050610507105081050910510105111051210513105141051510516105171051810519105201052110522105231052410525105261052710528105291053010531105321053310534105351053610537105381053910540105411054210543105441054510546105471054810549105501055110552105531055410555105561055710558105591056010561105621056310564105651056610567105681056910570105711057210573105741057510576105771057810579105801058110582105831058410585105861058710588105891059010591105921059310594105951059610597105981059910600106011060210603106041060510606106071060810609106101061110612106131061410615106161061710618106191062010621106221062310624106251062610627106281062910630106311063210633106341063510636106371063810639106401064110642106431064410645106461064710648106491065010651106521065310654106551065610657106581065910660106611066210663106641066510666106671066810669106701067110672106731067410675106761067710678106791068010681106821068310684106851068610687106881068910690106911069210693106941069510696106971069810699107001070110702107031070410705107061070710708107091071010711107121071310714107151071610717107181071910720107211072210723107241072510726107271072810729107301073110732107331073410735107361073710738107391074010741107421074310744107451074610747107481074910750107511075210753107541075510756107571075810759107601076110762107631076410765107661076710768107691077010771107721077310774107751077610777107781077910780107811078210783107841078510786107871078810789107901079110792107931079410795107961079710798107991080010801108021080310804108051080610807108081080910810108111081210813108141081510816108171081810819108201082110822108231082410825108261082710828108291083010831108321083310834108351083610837108381083910840108411084210843108441084510846108471084810849108501085110852108531085410855108561085710858108591086010861108621086310864108651086610867108681086910870108711087210873108741087510876108771087810879108801088110882108831088410885108861088710888108891089010891108921089310894108951089610897108981089910900109011090210903109041090510906109071090810909109101091110912109131091410915109161091710918109191092010921109221092310924109251092610927109281092910930109311093210933109341093510936109371093810939109401094110942109431094410945109461094710948109491095010951109521095310954109551095610957109581095910960109611096210963109641096510966109671096810969109701097110972109731097410975109761097710978109791098010981109821098310984109851098610987109881098910990109911099210993109941099510996109971099810999110001100111002110031100411005110061100711008110091101011011110121101311014110151101611017110181101911020110211102211023110241102511026110271102811029110301103111032110331103411035110361103711038110391104011041110421104311044110451104611047110481104911050110511105211053110541105511056110571105811059110601106111062110631106411065110661106711068110691107011071110721107311074110751107611077110781107911080110811108211083110841108511086110871108811089110901109111092110931109411095110961109711098110991110011101111021110311104111051110611107111081110911110111111111211113111141111511116111171111811119111201112111122111231112411125111261112711128111291113011131111321113311134111351113611137111381113911140111411114211143111441114511146111471114811149111501115111152111531115411155111561115711158111591116011161111621116311164111651116611167111681116911170111711117211173111741117511176111771117811179111801118111182111831118411185111861118711188111891119011191111921119311194111951119611197111981119911200112011120211203112041120511206112071120811209112101121111212112131121411215112161121711218112191122011221112221122311224112251122611227112281122911230112311123211233112341123511236112371123811239112401124111242112431124411245112461124711248112491125011251112521125311254112551125611257112581125911260112611126211263112641126511266112671126811269112701127111272112731127411275112761127711278112791128011281112821128311284112851128611287112881128911290112911129211293112941129511296112971129811299113001130111302113031130411305113061130711308113091131011311113121131311314113151131611317113181131911320113211132211323113241132511326113271132811329113301133111332113331133411335113361133711338113391134011341113421134311344113451134611347113481134911350113511135211353113541135511356113571135811359113601136111362113631136411365113661136711368113691137011371113721137311374113751137611377113781137911380113811138211383113841138511386113871138811389113901139111392113931139411395113961139711398113991140011401114021140311404114051140611407114081140911410114111141211413114141141511416114171141811419114201142111422114231142411425114261142711428114291143011431114321143311434114351143611437114381143911440114411144211443114441144511446114471144811449114501145111452114531145411455114561145711458114591146011461114621146311464114651146611467114681146911470114711147211473114741147511476114771147811479114801148111482114831148411485114861148711488114891149011491114921149311494114951149611497114981149911500115011150211503115041150511506115071150811509115101151111512115131151411515115161151711518115191152011521115221152311524115251152611527115281152911530115311153211533115341153511536115371153811539115401154111542115431154411545115461154711548115491155011551115521155311554115551155611557115581155911560115611156211563115641156511566115671156811569115701157111572115731157411575115761157711578115791158011581115821158311584115851158611587115881158911590115911159211593115941159511596115971159811599116001160111602116031160411605116061160711608116091161011611116121161311614116151161611617116181161911620116211162211623116241162511626116271162811629116301163111632116331163411635116361163711638116391164011641116421164311644116451164611647116481164911650116511165211653116541165511656116571165811659116601166111662116631166411665116661166711668116691167011671116721167311674116751167611677116781167911680116811168211683116841168511686116871168811689116901169111692116931169411695116961169711698116991170011701117021170311704117051170611707117081170911710117111171211713117141171511716117171171811719117201172111722117231172411725117261172711728117291173011731117321173311734117351173611737117381173911740117411174211743117441174511746117471174811749117501175111752117531175411755117561175711758117591176011761117621176311764117651176611767117681176911770117711177211773117741177511776117771177811779117801178111782117831178411785117861178711788117891179011791117921179311794117951179611797117981179911800118011180211803118041180511806118071180811809118101181111812118131181411815118161181711818118191182011821118221182311824118251182611827118281182911830118311183211833118341183511836118371183811839118401184111842118431184411845118461184711848118491185011851118521185311854118551185611857118581185911860118611186211863118641186511866118671186811869118701187111872118731187411875118761187711878118791188011881118821188311884118851188611887118881188911890118911189211893118941189511896118971189811899119001190111902119031190411905119061190711908119091191011911119121191311914119151191611917119181191911920119211192211923119241192511926119271192811929119301193111932119331193411935119361193711938119391194011941119421194311944119451194611947119481194911950119511195211953119541195511956119571195811959119601196111962119631196411965119661196711968119691197011971119721197311974119751197611977119781197911980119811198211983119841198511986119871198811989119901199111992119931199411995119961199711998119991200012001120021200312004120051200612007120081200912010120111201212013120141201512016120171201812019120201202112022120231202412025120261202712028120291203012031120321203312034120351203612037120381203912040120411204212043120441204512046120471204812049120501205112052120531205412055120561205712058120591206012061120621206312064120651206612067120681206912070120711207212073120741207512076120771207812079120801208112082120831208412085120861208712088120891209012091120921209312094120951209612097120981209912100121011210212103121041210512106121071210812109121101211112112121131211412115121161211712118121191212012121121221212312124121251212612127121281212912130121311213212133121341213512136121371213812139121401214112142121431214412145121461214712148121491215012151121521215312154121551215612157121581215912160121611216212163121641216512166121671216812169121701217112172121731217412175121761217712178121791218012181121821218312184121851218612187121881218912190121911219212193121941219512196121971219812199122001220112202122031220412205122061220712208122091221012211122121221312214122151221612217122181221912220122211222212223122241222512226122271222812229122301223112232122331223412235122361223712238122391224012241122421224312244122451224612247122481224912250122511225212253122541225512256122571225812259122601226112262122631226412265122661226712268122691227012271122721227312274122751227612277122781227912280122811228212283122841228512286122871228812289122901229112292122931229412295122961229712298122991230012301123021230312304123051230612307123081230912310123111231212313123141231512316123171231812319123201232112322123231232412325123261232712328123291233012331123321233312334123351233612337123381233912340123411234212343123441234512346123471234812349123501235112352123531235412355123561235712358123591236012361123621236312364123651236612367123681236912370123711237212373123741237512376123771237812379123801238112382123831238412385123861238712388123891239012391123921239312394123951239612397123981239912400124011240212403124041240512406124071240812409124101241112412124131241412415124161241712418124191242012421124221242312424124251242612427124281242912430124311243212433124341243512436124371243812439124401244112442124431244412445124461244712448124491245012451124521245312454124551245612457124581245912460124611246212463124641246512466124671246812469124701247112472124731247412475124761247712478124791248012481124821248312484124851248612487124881248912490124911249212493124941249512496124971249812499125001250112502125031250412505125061250712508125091251012511125121251312514125151251612517125181251912520125211252212523125241252512526125271252812529125301253112532125331253412535125361253712538125391254012541125421254312544125451254612547125481254912550125511255212553125541255512556125571255812559125601256112562125631256412565125661256712568125691257012571125721257312574125751257612577125781257912580125811258212583125841258512586125871258812589125901259112592125931259412595125961259712598125991260012601126021260312604126051260612607126081260912610126111261212613126141261512616126171261812619126201262112622126231262412625126261262712628126291263012631126321263312634126351263612637126381263912640126411264212643126441264512646126471264812649126501265112652126531265412655126561265712658126591266012661126621266312664126651266612667126681266912670126711267212673126741267512676126771267812679126801268112682126831268412685126861268712688126891269012691126921269312694126951269612697126981269912700127011270212703127041270512706127071270812709127101271112712127131271412715127161271712718127191272012721127221272312724127251272612727127281272912730127311273212733127341273512736127371273812739127401274112742127431274412745127461274712748127491275012751127521275312754127551275612757127581275912760127611276212763127641276512766127671276812769127701277112772127731277412775127761277712778127791278012781127821278312784127851278612787127881278912790127911279212793127941279512796127971279812799128001280112802128031280412805128061280712808128091281012811128121281312814128151281612817128181281912820128211282212823128241282512826128271282812829128301283112832128331283412835128361283712838128391284012841128421284312844128451284612847128481284912850128511285212853128541285512856128571285812859128601286112862128631286412865128661286712868128691287012871128721287312874128751287612877128781287912880128811288212883128841288512886128871288812889128901289112892128931289412895128961289712898128991290012901
  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": "642c91c0457b11187936b0b39f8371a2",
  8. "packages": [
  9. {
  10. "name": "alchemy/zippy",
  11. "version": "0.4.3",
  12. "source": {
  13. "type": "git",
  14. "url": "https://github.com/alchemy-fr/Zippy.git",
  15. "reference": "5ffdc93de0af2770d396bf433d8b2667c77277ea"
  16. },
  17. "dist": {
  18. "type": "zip",
  19. "url": "https://api.github.com/repos/alchemy-fr/Zippy/zipball/5ffdc93de0af2770d396bf433d8b2667c77277ea",
  20. "reference": "5ffdc93de0af2770d396bf433d8b2667c77277ea",
  21. "shasum": ""
  22. },
  23. "require": {
  24. "doctrine/collections": "~1.0",
  25. "ext-mbstring": "*",
  26. "php": ">=5.5",
  27. "symfony/filesystem": "^2.0.5|^3.0",
  28. "symfony/process": "^2.1|^3.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"
  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": "2016-11-03T16:10:31+00:00"
  72. },
  73. {
  74. "name": "asm89/stack-cors",
  75. "version": "1.2.0",
  76. "source": {
  77. "type": "git",
  78. "url": "https://github.com/asm89/stack-cors.git",
  79. "reference": "c163e2b614550aedcf71165db2473d936abbced6"
  80. },
  81. "dist": {
  82. "type": "zip",
  83. "url": "https://api.github.com/repos/asm89/stack-cors/zipball/c163e2b614550aedcf71165db2473d936abbced6",
  84. "reference": "c163e2b614550aedcf71165db2473d936abbced6",
  85. "shasum": ""
  86. },
  87. "require": {
  88. "php": ">=5.5.9",
  89. "symfony/http-foundation": "~2.7|~3.0|~4.0",
  90. "symfony/http-kernel": "~2.7|~3.0|~4.0"
  91. },
  92. "require-dev": {
  93. "phpunit/phpunit": "^5.0 || ^4.8.10",
  94. "squizlabs/php_codesniffer": "^2.3"
  95. },
  96. "type": "library",
  97. "extra": {
  98. "branch-alias": {
  99. "dev-master": "1.2-dev"
  100. }
  101. },
  102. "autoload": {
  103. "psr-4": {
  104. "Asm89\\Stack\\": "src/Asm89/Stack/"
  105. }
  106. },
  107. "notification-url": "https://packagist.org/downloads/",
  108. "license": [
  109. "MIT"
  110. ],
  111. "authors": [
  112. {
  113. "name": "Alexander",
  114. "email": "iam.asm89@gmail.com"
  115. }
  116. ],
  117. "description": "Cross-origin resource sharing library and stack middleware",
  118. "homepage": "https://github.com/asm89/stack-cors",
  119. "keywords": [
  120. "cors",
  121. "stack"
  122. ],
  123. "time": "2017-12-20T14:37:45+00:00"
  124. },
  125. {
  126. "name": "chi-teck/drupal-code-generator",
  127. "version": "1.27.0",
  128. "source": {
  129. "type": "git",
  130. "url": "https://github.com/Chi-teck/drupal-code-generator.git",
  131. "reference": "a839bc89d385087d8a7a96a9c1c4bd470ffb627e"
  132. },
  133. "dist": {
  134. "type": "zip",
  135. "url": "https://api.github.com/repos/Chi-teck/drupal-code-generator/zipball/a839bc89d385087d8a7a96a9c1c4bd470ffb627e",
  136. "reference": "a839bc89d385087d8a7a96a9c1c4bd470ffb627e",
  137. "shasum": ""
  138. },
  139. "require": {
  140. "ext-json": "*",
  141. "php": ">=5.5.9",
  142. "symfony/console": "~2.7|^3",
  143. "symfony/filesystem": "~2.7|^3",
  144. "twig/twig": "^1.23.1"
  145. },
  146. "bin": [
  147. "bin/dcg"
  148. ],
  149. "type": "library",
  150. "extra": {
  151. "branch-alias": {
  152. "dev-master": "1.x-dev"
  153. }
  154. },
  155. "autoload": {
  156. "files": [
  157. "src/bootstrap.php"
  158. ],
  159. "psr-4": {
  160. "DrupalCodeGenerator\\": "src"
  161. }
  162. },
  163. "notification-url": "https://packagist.org/downloads/",
  164. "license": [
  165. "GPL-2.0-or-later"
  166. ],
  167. "description": "Drupal code generator",
  168. "time": "2018-10-11T08:05:59+00:00"
  169. },
  170. {
  171. "name": "commerceguys/addressing",
  172. "version": "v1.0.2",
  173. "source": {
  174. "type": "git",
  175. "url": "https://github.com/commerceguys/addressing.git",
  176. "reference": "f23ce2596ccfb47bcdaa9d14fbf9b4f699dc3d4b"
  177. },
  178. "dist": {
  179. "type": "zip",
  180. "url": "https://api.github.com/repos/commerceguys/addressing/zipball/f23ce2596ccfb47bcdaa9d14fbf9b4f699dc3d4b",
  181. "reference": "f23ce2596ccfb47bcdaa9d14fbf9b4f699dc3d4b",
  182. "shasum": ""
  183. },
  184. "require": {
  185. "doctrine/collections": "~1.0",
  186. "php": ">=5.5.0"
  187. },
  188. "require-dev": {
  189. "mikey179/vfsstream": "1.*",
  190. "phpunit/phpunit": "~4.0",
  191. "squizlabs/php_codesniffer": "2.*",
  192. "symfony/validator": ">=3.2"
  193. },
  194. "suggest": {
  195. "symfony/validator": "to validate addresses"
  196. },
  197. "type": "library",
  198. "extra": {
  199. "branch-alias": {
  200. "dev-master": "1.x-dev"
  201. }
  202. },
  203. "autoload": {
  204. "psr-4": {
  205. "CommerceGuys\\Addressing\\": "src"
  206. }
  207. },
  208. "notification-url": "https://packagist.org/downloads/",
  209. "license": [
  210. "MIT"
  211. ],
  212. "authors": [
  213. {
  214. "name": "Bojan Zivanovic"
  215. },
  216. {
  217. "name": "Damien Tournoud"
  218. }
  219. ],
  220. "description": "Addressing library powered by CLDR and Google's address data.",
  221. "keywords": [
  222. "address",
  223. "internationalization",
  224. "localization",
  225. "postal"
  226. ],
  227. "time": "2018-10-21T23:38:05+00:00"
  228. },
  229. {
  230. "name": "composer/installers",
  231. "version": "v1.6.0",
  232. "source": {
  233. "type": "git",
  234. "url": "https://github.com/composer/installers.git",
  235. "reference": "cfcca6b1b60bc4974324efb5783c13dca6932b5b"
  236. },
  237. "dist": {
  238. "type": "zip",
  239. "url": "https://api.github.com/repos/composer/installers/zipball/cfcca6b1b60bc4974324efb5783c13dca6932b5b",
  240. "reference": "cfcca6b1b60bc4974324efb5783c13dca6932b5b",
  241. "shasum": ""
  242. },
  243. "require": {
  244. "composer-plugin-api": "^1.0"
  245. },
  246. "replace": {
  247. "roundcube/plugin-installer": "*",
  248. "shama/baton": "*"
  249. },
  250. "require-dev": {
  251. "composer/composer": "1.0.*@dev",
  252. "phpunit/phpunit": "^4.8.36"
  253. },
  254. "type": "composer-plugin",
  255. "extra": {
  256. "class": "Composer\\Installers\\Plugin",
  257. "branch-alias": {
  258. "dev-master": "1.0-dev"
  259. }
  260. },
  261. "autoload": {
  262. "psr-4": {
  263. "Composer\\Installers\\": "src/Composer/Installers"
  264. }
  265. },
  266. "notification-url": "https://packagist.org/downloads/",
  267. "license": [
  268. "MIT"
  269. ],
  270. "authors": [
  271. {
  272. "name": "Kyle Robinson Young",
  273. "email": "kyle@dontkry.com",
  274. "homepage": "https://github.com/shama"
  275. }
  276. ],
  277. "description": "A multi-framework Composer library installer",
  278. "homepage": "https://composer.github.io/installers/",
  279. "keywords": [
  280. "Craft",
  281. "Dolibarr",
  282. "Eliasis",
  283. "Hurad",
  284. "ImageCMS",
  285. "Kanboard",
  286. "Lan Management System",
  287. "MODX Evo",
  288. "Mautic",
  289. "Maya",
  290. "OXID",
  291. "Plentymarkets",
  292. "Porto",
  293. "RadPHP",
  294. "SMF",
  295. "Thelia",
  296. "WolfCMS",
  297. "agl",
  298. "aimeos",
  299. "annotatecms",
  300. "attogram",
  301. "bitrix",
  302. "cakephp",
  303. "chef",
  304. "cockpit",
  305. "codeigniter",
  306. "concrete5",
  307. "croogo",
  308. "dokuwiki",
  309. "drupal",
  310. "eZ Platform",
  311. "elgg",
  312. "expressionengine",
  313. "fuelphp",
  314. "grav",
  315. "installer",
  316. "itop",
  317. "joomla",
  318. "kohana",
  319. "laravel",
  320. "lavalite",
  321. "lithium",
  322. "magento",
  323. "majima",
  324. "mako",
  325. "mediawiki",
  326. "modulework",
  327. "modx",
  328. "moodle",
  329. "osclass",
  330. "phpbb",
  331. "piwik",
  332. "ppi",
  333. "puppet",
  334. "pxcms",
  335. "reindex",
  336. "roundcube",
  337. "shopware",
  338. "silverstripe",
  339. "sydes",
  340. "symfony",
  341. "typo3",
  342. "wordpress",
  343. "yawik",
  344. "zend",
  345. "zikula"
  346. ],
  347. "time": "2018-08-27T06:10:37+00:00"
  348. },
  349. {
  350. "name": "composer/semver",
  351. "version": "1.4.2",
  352. "source": {
  353. "type": "git",
  354. "url": "https://github.com/composer/semver.git",
  355. "reference": "c7cb9a2095a074d131b65a8a0cd294479d785573"
  356. },
  357. "dist": {
  358. "type": "zip",
  359. "url": "https://api.github.com/repos/composer/semver/zipball/c7cb9a2095a074d131b65a8a0cd294479d785573",
  360. "reference": "c7cb9a2095a074d131b65a8a0cd294479d785573",
  361. "shasum": ""
  362. },
  363. "require": {
  364. "php": "^5.3.2 || ^7.0"
  365. },
  366. "require-dev": {
  367. "phpunit/phpunit": "^4.5 || ^5.0.5",
  368. "phpunit/phpunit-mock-objects": "2.3.0 || ^3.0"
  369. },
  370. "type": "library",
  371. "extra": {
  372. "branch-alias": {
  373. "dev-master": "1.x-dev"
  374. }
  375. },
  376. "autoload": {
  377. "psr-4": {
  378. "Composer\\Semver\\": "src"
  379. }
  380. },
  381. "notification-url": "https://packagist.org/downloads/",
  382. "license": [
  383. "MIT"
  384. ],
  385. "authors": [
  386. {
  387. "name": "Nils Adermann",
  388. "email": "naderman@naderman.de",
  389. "homepage": "http://www.naderman.de"
  390. },
  391. {
  392. "name": "Jordi Boggiano",
  393. "email": "j.boggiano@seld.be",
  394. "homepage": "http://seld.be"
  395. },
  396. {
  397. "name": "Rob Bast",
  398. "email": "rob.bast@gmail.com",
  399. "homepage": "http://robbast.nl"
  400. }
  401. ],
  402. "description": "Semver library that offers utilities, version constraint parsing and validation.",
  403. "keywords": [
  404. "semantic",
  405. "semver",
  406. "validation",
  407. "versioning"
  408. ],
  409. "time": "2016-08-30T16:08:34+00:00"
  410. },
  411. {
  412. "name": "consolidation/annotated-command",
  413. "version": "2.11.0",
  414. "source": {
  415. "type": "git",
  416. "url": "https://github.com/consolidation/annotated-command.git",
  417. "reference": "edea407f57104ed518cc3c3b47d5b84403ee267a"
  418. },
  419. "dist": {
  420. "type": "zip",
  421. "url": "https://api.github.com/repos/consolidation/annotated-command/zipball/edea407f57104ed518cc3c3b47d5b84403ee267a",
  422. "reference": "edea407f57104ed518cc3c3b47d5b84403ee267a",
  423. "shasum": ""
  424. },
  425. "require": {
  426. "consolidation/output-formatters": "^3.4",
  427. "php": ">=5.4.0",
  428. "psr/log": "^1",
  429. "symfony/console": "^2.8|^3|^4",
  430. "symfony/event-dispatcher": "^2.5|^3|^4",
  431. "symfony/finder": "^2.5|^3|^4"
  432. },
  433. "require-dev": {
  434. "g1a/composer-test-scenarios": "^3",
  435. "php-coveralls/php-coveralls": "^1",
  436. "phpunit/phpunit": "^6",
  437. "squizlabs/php_codesniffer": "^2.7"
  438. },
  439. "type": "library",
  440. "extra": {
  441. "scenarios": {
  442. "symfony4": {
  443. "require": {
  444. "symfony/console": "^4.0"
  445. },
  446. "config": {
  447. "platform": {
  448. "php": "7.1.3"
  449. }
  450. }
  451. },
  452. "symfony2": {
  453. "require": {
  454. "symfony/console": "^2.8"
  455. },
  456. "require-dev": {
  457. "phpunit/phpunit": "^4.8.36"
  458. },
  459. "remove": [
  460. "php-coveralls/php-coveralls"
  461. ],
  462. "config": {
  463. "platform": {
  464. "php": "5.4.8"
  465. }
  466. },
  467. "scenario-options": {
  468. "create-lockfile": "false"
  469. }
  470. },
  471. "phpunit4": {
  472. "require-dev": {
  473. "phpunit/phpunit": "^4.8.36"
  474. },
  475. "remove": [
  476. "php-coveralls/php-coveralls"
  477. ],
  478. "config": {
  479. "platform": {
  480. "php": "5.4.8"
  481. }
  482. }
  483. }
  484. },
  485. "branch-alias": {
  486. "dev-master": "2.x-dev"
  487. }
  488. },
  489. "autoload": {
  490. "psr-4": {
  491. "Consolidation\\AnnotatedCommand\\": "src"
  492. }
  493. },
  494. "notification-url": "https://packagist.org/downloads/",
  495. "license": [
  496. "MIT"
  497. ],
  498. "authors": [
  499. {
  500. "name": "Greg Anderson",
  501. "email": "greg.1.anderson@greenknowe.org"
  502. }
  503. ],
  504. "description": "Initialize Symfony Console commands from annotated command class methods.",
  505. "time": "2018-12-29T04:43:17+00:00"
  506. },
  507. {
  508. "name": "consolidation/config",
  509. "version": "1.1.1",
  510. "source": {
  511. "type": "git",
  512. "url": "https://github.com/consolidation/config.git",
  513. "reference": "925231dfff32f05b787e1fddb265e789b939cf4c"
  514. },
  515. "dist": {
  516. "type": "zip",
  517. "url": "https://api.github.com/repos/consolidation/config/zipball/925231dfff32f05b787e1fddb265e789b939cf4c",
  518. "reference": "925231dfff32f05b787e1fddb265e789b939cf4c",
  519. "shasum": ""
  520. },
  521. "require": {
  522. "dflydev/dot-access-data": "^1.1.0",
  523. "grasmash/expander": "^1",
  524. "php": ">=5.4.0"
  525. },
  526. "require-dev": {
  527. "g1a/composer-test-scenarios": "^1",
  528. "phpunit/phpunit": "^5",
  529. "satooshi/php-coveralls": "^1.0",
  530. "squizlabs/php_codesniffer": "2.*",
  531. "symfony/console": "^2.5|^3|^4",
  532. "symfony/yaml": "^2.8.11|^3|^4"
  533. },
  534. "suggest": {
  535. "symfony/yaml": "Required to use Consolidation\\Config\\Loader\\YamlConfigLoader"
  536. },
  537. "type": "library",
  538. "extra": {
  539. "branch-alias": {
  540. "dev-master": "1.x-dev"
  541. }
  542. },
  543. "autoload": {
  544. "psr-4": {
  545. "Consolidation\\Config\\": "src"
  546. }
  547. },
  548. "notification-url": "https://packagist.org/downloads/",
  549. "license": [
  550. "MIT"
  551. ],
  552. "authors": [
  553. {
  554. "name": "Greg Anderson",
  555. "email": "greg.1.anderson@greenknowe.org"
  556. }
  557. ],
  558. "description": "Provide configuration services for a commandline tool.",
  559. "time": "2018-10-24T17:55:35+00:00"
  560. },
  561. {
  562. "name": "consolidation/log",
  563. "version": "1.1.1",
  564. "source": {
  565. "type": "git",
  566. "url": "https://github.com/consolidation/log.git",
  567. "reference": "b2e887325ee90abc96b0a8b7b474cd9e7c896e3a"
  568. },
  569. "dist": {
  570. "type": "zip",
  571. "url": "https://api.github.com/repos/consolidation/log/zipball/b2e887325ee90abc96b0a8b7b474cd9e7c896e3a",
  572. "reference": "b2e887325ee90abc96b0a8b7b474cd9e7c896e3a",
  573. "shasum": ""
  574. },
  575. "require": {
  576. "php": ">=5.4.5",
  577. "psr/log": "^1.0",
  578. "symfony/console": "^2.8|^3|^4"
  579. },
  580. "require-dev": {
  581. "g1a/composer-test-scenarios": "^3",
  582. "php-coveralls/php-coveralls": "^1",
  583. "phpunit/phpunit": "^6",
  584. "squizlabs/php_codesniffer": "^2"
  585. },
  586. "type": "library",
  587. "extra": {
  588. "scenarios": {
  589. "symfony4": {
  590. "require": {
  591. "symfony/console": "^4.0"
  592. },
  593. "config": {
  594. "platform": {
  595. "php": "7.1.3"
  596. }
  597. }
  598. },
  599. "symfony2": {
  600. "require": {
  601. "symfony/console": "^2.8"
  602. },
  603. "require-dev": {
  604. "phpunit/phpunit": "^4.8.36"
  605. },
  606. "remove": [
  607. "php-coveralls/php-coveralls"
  608. ],
  609. "config": {
  610. "platform": {
  611. "php": "5.4.8"
  612. }
  613. }
  614. },
  615. "phpunit4": {
  616. "require-dev": {
  617. "phpunit/phpunit": "^4.8.36"
  618. },
  619. "remove": [
  620. "php-coveralls/php-coveralls"
  621. ],
  622. "config": {
  623. "platform": {
  624. "php": "5.4.8"
  625. }
  626. }
  627. }
  628. },
  629. "branch-alias": {
  630. "dev-master": "1.x-dev"
  631. }
  632. },
  633. "autoload": {
  634. "psr-4": {
  635. "Consolidation\\Log\\": "src"
  636. }
  637. },
  638. "notification-url": "https://packagist.org/downloads/",
  639. "license": [
  640. "MIT"
  641. ],
  642. "authors": [
  643. {
  644. "name": "Greg Anderson",
  645. "email": "greg.1.anderson@greenknowe.org"
  646. }
  647. ],
  648. "description": "Improved Psr-3 / Psr\\Log logger based on Symfony Console components.",
  649. "time": "2019-01-01T17:30:51+00:00"
  650. },
  651. {
  652. "name": "consolidation/output-formatters",
  653. "version": "3.4.0",
  654. "source": {
  655. "type": "git",
  656. "url": "https://github.com/consolidation/output-formatters.git",
  657. "reference": "a942680232094c4a5b21c0b7e54c20cce623ae19"
  658. },
  659. "dist": {
  660. "type": "zip",
  661. "url": "https://api.github.com/repos/consolidation/output-formatters/zipball/a942680232094c4a5b21c0b7e54c20cce623ae19",
  662. "reference": "a942680232094c4a5b21c0b7e54c20cce623ae19",
  663. "shasum": ""
  664. },
  665. "require": {
  666. "dflydev/dot-access-data": "^1.1.0",
  667. "php": ">=5.4.0",
  668. "symfony/console": "^2.8|^3|^4",
  669. "symfony/finder": "^2.5|^3|^4"
  670. },
  671. "require-dev": {
  672. "g1a/composer-test-scenarios": "^2",
  673. "phpunit/phpunit": "^5.7.27",
  674. "satooshi/php-coveralls": "^2",
  675. "squizlabs/php_codesniffer": "^2.7",
  676. "symfony/console": "3.2.3",
  677. "symfony/var-dumper": "^2.8|^3|^4",
  678. "victorjonsson/markdowndocs": "^1.3"
  679. },
  680. "suggest": {
  681. "symfony/var-dumper": "For using the var_dump formatter"
  682. },
  683. "type": "library",
  684. "extra": {
  685. "branch-alias": {
  686. "dev-master": "3.x-dev"
  687. }
  688. },
  689. "autoload": {
  690. "psr-4": {
  691. "Consolidation\\OutputFormatters\\": "src"
  692. }
  693. },
  694. "notification-url": "https://packagist.org/downloads/",
  695. "license": [
  696. "MIT"
  697. ],
  698. "authors": [
  699. {
  700. "name": "Greg Anderson",
  701. "email": "greg.1.anderson@greenknowe.org"
  702. }
  703. ],
  704. "description": "Format text by applying transformations provided by plug-in formatters.",
  705. "time": "2018-10-19T22:35:38+00:00"
  706. },
  707. {
  708. "name": "consolidation/robo",
  709. "version": "1.4.3",
  710. "source": {
  711. "type": "git",
  712. "url": "https://github.com/consolidation/Robo.git",
  713. "reference": "d0b6f516ec940add7abed4f1432d30cca5f8ae0c"
  714. },
  715. "dist": {
  716. "type": "zip",
  717. "url": "https://api.github.com/repos/consolidation/Robo/zipball/d0b6f516ec940add7abed4f1432d30cca5f8ae0c",
  718. "reference": "d0b6f516ec940add7abed4f1432d30cca5f8ae0c",
  719. "shasum": ""
  720. },
  721. "require": {
  722. "consolidation/annotated-command": "^2.10.2",
  723. "consolidation/config": "^1.0.10",
  724. "consolidation/log": "~1",
  725. "consolidation/output-formatters": "^3.1.13",
  726. "consolidation/self-update": "^1",
  727. "grasmash/yaml-expander": "^1.3",
  728. "league/container": "^2.2",
  729. "php": ">=5.5.0",
  730. "symfony/console": "^2.8|^3|^4",
  731. "symfony/event-dispatcher": "^2.5|^3|^4",
  732. "symfony/filesystem": "^2.5|^3|^4",
  733. "symfony/finder": "^2.5|^3|^4",
  734. "symfony/process": "^2.5|^3|^4"
  735. },
  736. "replace": {
  737. "codegyre/robo": "< 1.0"
  738. },
  739. "require-dev": {
  740. "codeception/aspect-mock": "^1|^2.1.1",
  741. "codeception/base": "^2.3.7",
  742. "codeception/verify": "^0.3.2",
  743. "g1a/composer-test-scenarios": "^3",
  744. "goaop/framework": "~2.1.2",
  745. "goaop/parser-reflection": "^1.1.0",
  746. "natxet/cssmin": "3.0.4",
  747. "nikic/php-parser": "^3.1.5",
  748. "patchwork/jsqueeze": "~2",
  749. "pear/archive_tar": "^1.4.2",
  750. "php-coveralls/php-coveralls": "^1",
  751. "phpunit/php-code-coverage": "~2|~4",
  752. "squizlabs/php_codesniffer": "^2.8"
  753. },
  754. "suggest": {
  755. "henrikbjorn/lurker": "For monitoring filesystem changes in taskWatch",
  756. "natxet/CssMin": "For minifying CSS files in taskMinify",
  757. "patchwork/jsqueeze": "For minifying JS files in taskMinify",
  758. "pear/archive_tar": "Allows tar archives to be created and extracted in taskPack and taskExtract, respectively."
  759. },
  760. "bin": [
  761. "robo"
  762. ],
  763. "type": "library",
  764. "extra": {
  765. "scenarios": {
  766. "symfony4": {
  767. "require": {
  768. "symfony/console": "^4"
  769. },
  770. "config": {
  771. "platform": {
  772. "php": "7.1.3"
  773. }
  774. }
  775. },
  776. "symfony2": {
  777. "require": {
  778. "symfony/console": "^2.8"
  779. },
  780. "remove": [
  781. "goaop/framework"
  782. ],
  783. "config": {
  784. "platform": {
  785. "php": "5.5.9"
  786. }
  787. },
  788. "scenario-options": {
  789. "create-lockfile": "false"
  790. }
  791. }
  792. },
  793. "branch-alias": {
  794. "dev-master": "2.x-dev"
  795. }
  796. },
  797. "autoload": {
  798. "psr-4": {
  799. "Robo\\": "src"
  800. }
  801. },
  802. "notification-url": "https://packagist.org/downloads/",
  803. "license": [
  804. "MIT"
  805. ],
  806. "authors": [
  807. {
  808. "name": "Davert",
  809. "email": "davert.php@resend.cc"
  810. }
  811. ],
  812. "description": "Modern task runner",
  813. "time": "2019-01-02T21:33:28+00:00"
  814. },
  815. {
  816. "name": "consolidation/self-update",
  817. "version": "1.1.5",
  818. "source": {
  819. "type": "git",
  820. "url": "https://github.com/consolidation/self-update.git",
  821. "reference": "a1c273b14ce334789825a09d06d4c87c0a02ad54"
  822. },
  823. "dist": {
  824. "type": "zip",
  825. "url": "https://api.github.com/repos/consolidation/self-update/zipball/a1c273b14ce334789825a09d06d4c87c0a02ad54",
  826. "reference": "a1c273b14ce334789825a09d06d4c87c0a02ad54",
  827. "shasum": ""
  828. },
  829. "require": {
  830. "php": ">=5.5.0",
  831. "symfony/console": "^2.8|^3|^4",
  832. "symfony/filesystem": "^2.5|^3|^4"
  833. },
  834. "bin": [
  835. "scripts/release"
  836. ],
  837. "type": "library",
  838. "extra": {
  839. "branch-alias": {
  840. "dev-master": "1.x-dev"
  841. }
  842. },
  843. "autoload": {
  844. "psr-4": {
  845. "SelfUpdate\\": "src"
  846. }
  847. },
  848. "notification-url": "https://packagist.org/downloads/",
  849. "license": [
  850. "MIT"
  851. ],
  852. "authors": [
  853. {
  854. "name": "Greg Anderson",
  855. "email": "greg.1.anderson@greenknowe.org"
  856. },
  857. {
  858. "name": "Alexander Menk",
  859. "email": "menk@mestrona.net"
  860. }
  861. ],
  862. "description": "Provides a self:update command for Symfony Console applications.",
  863. "time": "2018-10-28T01:52:03+00:00"
  864. },
  865. {
  866. "name": "consolidation/site-alias",
  867. "version": "1.1.11",
  868. "source": {
  869. "type": "git",
  870. "url": "https://github.com/consolidation/site-alias.git",
  871. "reference": "54ea74ee7dbd54ef356798028ca9a3548cb8df14"
  872. },
  873. "dist": {
  874. "type": "zip",
  875. "url": "https://api.github.com/repos/consolidation/site-alias/zipball/54ea74ee7dbd54ef356798028ca9a3548cb8df14",
  876. "reference": "54ea74ee7dbd54ef356798028ca9a3548cb8df14",
  877. "shasum": ""
  878. },
  879. "require": {
  880. "php": ">=5.5.0"
  881. },
  882. "require-dev": {
  883. "consolidation/robo": "^1.2.3",
  884. "g1a/composer-test-scenarios": "^2",
  885. "knplabs/github-api": "^2.7",
  886. "php-http/guzzle6-adapter": "^1.1",
  887. "phpunit/phpunit": "^5",
  888. "satooshi/php-coveralls": "^2",
  889. "squizlabs/php_codesniffer": "^2.8",
  890. "symfony/console": "^2.8|^3|^4",
  891. "symfony/yaml": "~2.3|^3"
  892. },
  893. "type": "library",
  894. "extra": {
  895. "branch-alias": {
  896. "dev-master": "1.x-dev"
  897. }
  898. },
  899. "autoload": {
  900. "psr-4": {
  901. "Consolidation\\SiteAlias\\": "src"
  902. }
  903. },
  904. "notification-url": "https://packagist.org/downloads/",
  905. "license": [
  906. "MIT"
  907. ],
  908. "authors": [
  909. {
  910. "name": "Moshe Weitzman",
  911. "email": "weitzman@tejasa.com"
  912. },
  913. {
  914. "name": "Greg Anderson",
  915. "email": "greg.1.anderson@greenknowe.org"
  916. }
  917. ],
  918. "description": "Manage alias records for local and remote sites.",
  919. "time": "2018-11-03T05:07:56+00:00"
  920. },
  921. {
  922. "name": "container-interop/container-interop",
  923. "version": "1.2.0",
  924. "source": {
  925. "type": "git",
  926. "url": "https://github.com/container-interop/container-interop.git",
  927. "reference": "79cbf1341c22ec75643d841642dd5d6acd83bdb8"
  928. },
  929. "dist": {
  930. "type": "zip",
  931. "url": "https://api.github.com/repos/container-interop/container-interop/zipball/79cbf1341c22ec75643d841642dd5d6acd83bdb8",
  932. "reference": "79cbf1341c22ec75643d841642dd5d6acd83bdb8",
  933. "shasum": ""
  934. },
  935. "require": {
  936. "psr/container": "^1.0"
  937. },
  938. "type": "library",
  939. "autoload": {
  940. "psr-4": {
  941. "Interop\\Container\\": "src/Interop/Container/"
  942. }
  943. },
  944. "notification-url": "https://packagist.org/downloads/",
  945. "license": [
  946. "MIT"
  947. ],
  948. "description": "Promoting the interoperability of container objects (DIC, SL, etc.)",
  949. "homepage": "https://github.com/container-interop/container-interop",
  950. "time": "2017-02-14T19:40:03+00:00"
  951. },
  952. {
  953. "name": "cweagans/composer-patches",
  954. "version": "1.6.5",
  955. "source": {
  956. "type": "git",
  957. "url": "https://github.com/cweagans/composer-patches.git",
  958. "reference": "2ec4f00ff5fb64de584c8c4aea53bf9053ecb0b3"
  959. },
  960. "dist": {
  961. "type": "zip",
  962. "url": "https://api.github.com/repos/cweagans/composer-patches/zipball/2ec4f00ff5fb64de584c8c4aea53bf9053ecb0b3",
  963. "reference": "2ec4f00ff5fb64de584c8c4aea53bf9053ecb0b3",
  964. "shasum": ""
  965. },
  966. "require": {
  967. "composer-plugin-api": "^1.0",
  968. "php": ">=5.3.0"
  969. },
  970. "require-dev": {
  971. "composer/composer": "~1.0",
  972. "phpunit/phpunit": "~4.6"
  973. },
  974. "type": "composer-plugin",
  975. "extra": {
  976. "class": "cweagans\\Composer\\Patches"
  977. },
  978. "autoload": {
  979. "psr-4": {
  980. "cweagans\\Composer\\": "src"
  981. }
  982. },
  983. "notification-url": "https://packagist.org/downloads/",
  984. "license": [
  985. "BSD-3-Clause"
  986. ],
  987. "authors": [
  988. {
  989. "name": "Cameron Eagans",
  990. "email": "me@cweagans.net"
  991. }
  992. ],
  993. "description": "Provides a way to patch Composer packages.",
  994. "time": "2018-05-11T18:00:16+00:00"
  995. },
  996. {
  997. "name": "dflydev/dot-access-configuration",
  998. "version": "v1.0.3",
  999. "source": {
  1000. "type": "git",
  1001. "url": "https://github.com/dflydev/dflydev-dot-access-configuration.git",
  1002. "reference": "2e6eb0c8b8830b26bb23defcfc38d4276508fc49"
  1003. },
  1004. "dist": {
  1005. "type": "zip",
  1006. "url": "https://api.github.com/repos/dflydev/dflydev-dot-access-configuration/zipball/2e6eb0c8b8830b26bb23defcfc38d4276508fc49",
  1007. "reference": "2e6eb0c8b8830b26bb23defcfc38d4276508fc49",
  1008. "shasum": ""
  1009. },
  1010. "require": {
  1011. "dflydev/dot-access-data": "1.*",
  1012. "dflydev/placeholder-resolver": "1.*",
  1013. "php": ">=5.3.2"
  1014. },
  1015. "require-dev": {
  1016. "symfony/yaml": "~2.1"
  1017. },
  1018. "suggest": {
  1019. "symfony/yaml": "Required for using the YAML Configuration Builders"
  1020. },
  1021. "type": "library",
  1022. "extra": {
  1023. "branch-alias": {
  1024. "dev-master": "1.0-dev"
  1025. }
  1026. },
  1027. "autoload": {
  1028. "psr-0": {
  1029. "Dflydev\\DotAccessConfiguration": "src"
  1030. }
  1031. },
  1032. "notification-url": "https://packagist.org/downloads/",
  1033. "license": [
  1034. "MIT"
  1035. ],
  1036. "authors": [
  1037. {
  1038. "name": "Dragonfly Development Inc.",
  1039. "email": "info@dflydev.com",
  1040. "homepage": "http://dflydev.com"
  1041. },
  1042. {
  1043. "name": "Beau Simensen",
  1044. "email": "beau@dflydev.com",
  1045. "homepage": "http://beausimensen.com"
  1046. }
  1047. ],
  1048. "description": "Given a deep data structure representing a configuration, access configuration by dot notation.",
  1049. "homepage": "https://github.com/dflydev/dflydev-dot-access-configuration",
  1050. "keywords": [
  1051. "config",
  1052. "configuration"
  1053. ],
  1054. "time": "2018-09-08T23:00:17+00:00"
  1055. },
  1056. {
  1057. "name": "dflydev/dot-access-data",
  1058. "version": "v1.1.0",
  1059. "source": {
  1060. "type": "git",
  1061. "url": "https://github.com/dflydev/dflydev-dot-access-data.git",
  1062. "reference": "3fbd874921ab2c041e899d044585a2ab9795df8a"
  1063. },
  1064. "dist": {
  1065. "type": "zip",
  1066. "url": "https://api.github.com/repos/dflydev/dflydev-dot-access-data/zipball/3fbd874921ab2c041e899d044585a2ab9795df8a",
  1067. "reference": "3fbd874921ab2c041e899d044585a2ab9795df8a",
  1068. "shasum": ""
  1069. },
  1070. "require": {
  1071. "php": ">=5.3.2"
  1072. },
  1073. "type": "library",
  1074. "extra": {
  1075. "branch-alias": {
  1076. "dev-master": "1.0-dev"
  1077. }
  1078. },
  1079. "autoload": {
  1080. "psr-0": {
  1081. "Dflydev\\DotAccessData": "src"
  1082. }
  1083. },
  1084. "notification-url": "https://packagist.org/downloads/",
  1085. "license": [
  1086. "MIT"
  1087. ],
  1088. "authors": [
  1089. {
  1090. "name": "Dragonfly Development Inc.",
  1091. "email": "info@dflydev.com",
  1092. "homepage": "http://dflydev.com"
  1093. },
  1094. {
  1095. "name": "Beau Simensen",
  1096. "email": "beau@dflydev.com",
  1097. "homepage": "http://beausimensen.com"
  1098. },
  1099. {
  1100. "name": "Carlos Frutos",
  1101. "email": "carlos@kiwing.it",
  1102. "homepage": "https://github.com/cfrutos"
  1103. }
  1104. ],
  1105. "description": "Given a deep data structure, access data by dot notation.",
  1106. "homepage": "https://github.com/dflydev/dflydev-dot-access-data",
  1107. "keywords": [
  1108. "access",
  1109. "data",
  1110. "dot",
  1111. "notation"
  1112. ],
  1113. "time": "2017-01-20T21:14:22+00:00"
  1114. },
  1115. {
  1116. "name": "dflydev/placeholder-resolver",
  1117. "version": "v1.0.2",
  1118. "source": {
  1119. "type": "git",
  1120. "url": "https://github.com/dflydev/dflydev-placeholder-resolver.git",
  1121. "reference": "c498d0cae91b1bb36cc7d60906dab8e62bb7c356"
  1122. },
  1123. "dist": {
  1124. "type": "zip",
  1125. "url": "https://api.github.com/repos/dflydev/dflydev-placeholder-resolver/zipball/c498d0cae91b1bb36cc7d60906dab8e62bb7c356",
  1126. "reference": "c498d0cae91b1bb36cc7d60906dab8e62bb7c356",
  1127. "shasum": ""
  1128. },
  1129. "require": {
  1130. "php": ">=5.3.2"
  1131. },
  1132. "type": "library",
  1133. "extra": {
  1134. "branch-alias": {
  1135. "dev-master": "1.0-dev"
  1136. }
  1137. },
  1138. "autoload": {
  1139. "psr-0": {
  1140. "Dflydev\\PlaceholderResolver": "src"
  1141. }
  1142. },
  1143. "notification-url": "https://packagist.org/downloads/",
  1144. "license": [
  1145. "MIT"
  1146. ],
  1147. "authors": [
  1148. {
  1149. "name": "Dragonfly Development Inc.",
  1150. "email": "info@dflydev.com",
  1151. "homepage": "http://dflydev.com"
  1152. },
  1153. {
  1154. "name": "Beau Simensen",
  1155. "email": "beau@dflydev.com",
  1156. "homepage": "http://beausimensen.com"
  1157. }
  1158. ],
  1159. "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.",
  1160. "homepage": "https://github.com/dflydev/dflydev-placeholder-resolver",
  1161. "keywords": [
  1162. "placeholder",
  1163. "resolver"
  1164. ],
  1165. "time": "2012-10-28T21:08:28+00:00"
  1166. },
  1167. {
  1168. "name": "dnoegel/php-xdg-base-dir",
  1169. "version": "0.1",
  1170. "source": {
  1171. "type": "git",
  1172. "url": "https://github.com/dnoegel/php-xdg-base-dir.git",
  1173. "reference": "265b8593498b997dc2d31e75b89f053b5cc9621a"
  1174. },
  1175. "dist": {
  1176. "type": "zip",
  1177. "url": "https://api.github.com/repos/dnoegel/php-xdg-base-dir/zipball/265b8593498b997dc2d31e75b89f053b5cc9621a",
  1178. "reference": "265b8593498b997dc2d31e75b89f053b5cc9621a",
  1179. "shasum": ""
  1180. },
  1181. "require": {
  1182. "php": ">=5.3.2"
  1183. },
  1184. "require-dev": {
  1185. "phpunit/phpunit": "@stable"
  1186. },
  1187. "type": "project",
  1188. "autoload": {
  1189. "psr-4": {
  1190. "XdgBaseDir\\": "src/"
  1191. }
  1192. },
  1193. "notification-url": "https://packagist.org/downloads/",
  1194. "license": [
  1195. "MIT"
  1196. ],
  1197. "description": "implementation of xdg base directory specification for php",
  1198. "time": "2014-10-24T07:27:01+00:00"
  1199. },
  1200. {
  1201. "name": "doctrine/annotations",
  1202. "version": "v1.4.0",
  1203. "source": {
  1204. "type": "git",
  1205. "url": "https://github.com/doctrine/annotations.git",
  1206. "reference": "54cacc9b81758b14e3ce750f205a393d52339e97"
  1207. },
  1208. "dist": {
  1209. "type": "zip",
  1210. "url": "https://api.github.com/repos/doctrine/annotations/zipball/54cacc9b81758b14e3ce750f205a393d52339e97",
  1211. "reference": "54cacc9b81758b14e3ce750f205a393d52339e97",
  1212. "shasum": ""
  1213. },
  1214. "require": {
  1215. "doctrine/lexer": "1.*",
  1216. "php": "^5.6 || ^7.0"
  1217. },
  1218. "require-dev": {
  1219. "doctrine/cache": "1.*",
  1220. "phpunit/phpunit": "^5.7"
  1221. },
  1222. "type": "library",
  1223. "extra": {
  1224. "branch-alias": {
  1225. "dev-master": "1.4.x-dev"
  1226. }
  1227. },
  1228. "autoload": {
  1229. "psr-4": {
  1230. "Doctrine\\Common\\Annotations\\": "lib/Doctrine/Common/Annotations"
  1231. }
  1232. },
  1233. "notification-url": "https://packagist.org/downloads/",
  1234. "license": [
  1235. "MIT"
  1236. ],
  1237. "authors": [
  1238. {
  1239. "name": "Roman Borschel",
  1240. "email": "roman@code-factory.org"
  1241. },
  1242. {
  1243. "name": "Benjamin Eberlei",
  1244. "email": "kontakt@beberlei.de"
  1245. },
  1246. {
  1247. "name": "Guilherme Blanco",
  1248. "email": "guilhermeblanco@gmail.com"
  1249. },
  1250. {
  1251. "name": "Jonathan Wage",
  1252. "email": "jonwage@gmail.com"
  1253. },
  1254. {
  1255. "name": "Johannes Schmitt",
  1256. "email": "schmittjoh@gmail.com"
  1257. }
  1258. ],
  1259. "description": "Docblock Annotations Parser",
  1260. "homepage": "http://www.doctrine-project.org",
  1261. "keywords": [
  1262. "annotations",
  1263. "docblock",
  1264. "parser"
  1265. ],
  1266. "time": "2017-02-24T16:22:25+00:00"
  1267. },
  1268. {
  1269. "name": "doctrine/cache",
  1270. "version": "v1.6.2",
  1271. "source": {
  1272. "type": "git",
  1273. "url": "https://github.com/doctrine/cache.git",
  1274. "reference": "eb152c5100571c7a45470ff2a35095ab3f3b900b"
  1275. },
  1276. "dist": {
  1277. "type": "zip",
  1278. "url": "https://api.github.com/repos/doctrine/cache/zipball/eb152c5100571c7a45470ff2a35095ab3f3b900b",
  1279. "reference": "eb152c5100571c7a45470ff2a35095ab3f3b900b",
  1280. "shasum": ""
  1281. },
  1282. "require": {
  1283. "php": "~5.5|~7.0"
  1284. },
  1285. "conflict": {
  1286. "doctrine/common": ">2.2,<2.4"
  1287. },
  1288. "require-dev": {
  1289. "phpunit/phpunit": "~4.8|~5.0",
  1290. "predis/predis": "~1.0",
  1291. "satooshi/php-coveralls": "~0.6"
  1292. },
  1293. "type": "library",
  1294. "extra": {
  1295. "branch-alias": {
  1296. "dev-master": "1.6.x-dev"
  1297. }
  1298. },
  1299. "autoload": {
  1300. "psr-4": {
  1301. "Doctrine\\Common\\Cache\\": "lib/Doctrine/Common/Cache"
  1302. }
  1303. },
  1304. "notification-url": "https://packagist.org/downloads/",
  1305. "license": [
  1306. "MIT"
  1307. ],
  1308. "authors": [
  1309. {
  1310. "name": "Roman Borschel",
  1311. "email": "roman@code-factory.org"
  1312. },
  1313. {
  1314. "name": "Benjamin Eberlei",
  1315. "email": "kontakt@beberlei.de"
  1316. },
  1317. {
  1318. "name": "Guilherme Blanco",
  1319. "email": "guilhermeblanco@gmail.com"
  1320. },
  1321. {
  1322. "name": "Jonathan Wage",
  1323. "email": "jonwage@gmail.com"
  1324. },
  1325. {
  1326. "name": "Johannes Schmitt",
  1327. "email": "schmittjoh@gmail.com"
  1328. }
  1329. ],
  1330. "description": "Caching library offering an object-oriented API for many cache backends",
  1331. "homepage": "http://www.doctrine-project.org",
  1332. "keywords": [
  1333. "cache",
  1334. "caching"
  1335. ],
  1336. "time": "2017-07-22T12:49:21+00:00"
  1337. },
  1338. {
  1339. "name": "doctrine/collections",
  1340. "version": "v1.4.0",
  1341. "source": {
  1342. "type": "git",
  1343. "url": "https://github.com/doctrine/collections.git",
  1344. "reference": "1a4fb7e902202c33cce8c55989b945612943c2ba"
  1345. },
  1346. "dist": {
  1347. "type": "zip",
  1348. "url": "https://api.github.com/repos/doctrine/collections/zipball/1a4fb7e902202c33cce8c55989b945612943c2ba",
  1349. "reference": "1a4fb7e902202c33cce8c55989b945612943c2ba",
  1350. "shasum": ""
  1351. },
  1352. "require": {
  1353. "php": "^5.6 || ^7.0"
  1354. },
  1355. "require-dev": {
  1356. "doctrine/coding-standard": "~0.1@dev",
  1357. "phpunit/phpunit": "^5.7"
  1358. },
  1359. "type": "library",
  1360. "extra": {
  1361. "branch-alias": {
  1362. "dev-master": "1.3.x-dev"
  1363. }
  1364. },
  1365. "autoload": {
  1366. "psr-0": {
  1367. "Doctrine\\Common\\Collections\\": "lib/"
  1368. }
  1369. },
  1370. "notification-url": "https://packagist.org/downloads/",
  1371. "license": [
  1372. "MIT"
  1373. ],
  1374. "authors": [
  1375. {
  1376. "name": "Roman Borschel",
  1377. "email": "roman@code-factory.org"
  1378. },
  1379. {
  1380. "name": "Benjamin Eberlei",
  1381. "email": "kontakt@beberlei.de"
  1382. },
  1383. {
  1384. "name": "Guilherme Blanco",
  1385. "email": "guilhermeblanco@gmail.com"
  1386. },
  1387. {
  1388. "name": "Jonathan Wage",
  1389. "email": "jonwage@gmail.com"
  1390. },
  1391. {
  1392. "name": "Johannes Schmitt",
  1393. "email": "schmittjoh@gmail.com"
  1394. }
  1395. ],
  1396. "description": "Collections Abstraction library",
  1397. "homepage": "http://www.doctrine-project.org",
  1398. "keywords": [
  1399. "array",
  1400. "collections",
  1401. "iterator"
  1402. ],
  1403. "time": "2017-01-03T10:49:41+00:00"
  1404. },
  1405. {
  1406. "name": "doctrine/common",
  1407. "version": "v2.7.3",
  1408. "source": {
  1409. "type": "git",
  1410. "url": "https://github.com/doctrine/common.git",
  1411. "reference": "4acb8f89626baafede6ee5475bc5844096eba8a9"
  1412. },
  1413. "dist": {
  1414. "type": "zip",
  1415. "url": "https://api.github.com/repos/doctrine/common/zipball/4acb8f89626baafede6ee5475bc5844096eba8a9",
  1416. "reference": "4acb8f89626baafede6ee5475bc5844096eba8a9",
  1417. "shasum": ""
  1418. },
  1419. "require": {
  1420. "doctrine/annotations": "1.*",
  1421. "doctrine/cache": "1.*",
  1422. "doctrine/collections": "1.*",
  1423. "doctrine/inflector": "1.*",
  1424. "doctrine/lexer": "1.*",
  1425. "php": "~5.6|~7.0"
  1426. },
  1427. "require-dev": {
  1428. "phpunit/phpunit": "^5.4.6"
  1429. },
  1430. "type": "library",
  1431. "extra": {
  1432. "branch-alias": {
  1433. "dev-master": "2.7.x-dev"
  1434. }
  1435. },
  1436. "autoload": {
  1437. "psr-4": {
  1438. "Doctrine\\Common\\": "lib/Doctrine/Common"
  1439. }
  1440. },
  1441. "notification-url": "https://packagist.org/downloads/",
  1442. "license": [
  1443. "MIT"
  1444. ],
  1445. "authors": [
  1446. {
  1447. "name": "Roman Borschel",
  1448. "email": "roman@code-factory.org"
  1449. },
  1450. {
  1451. "name": "Benjamin Eberlei",
  1452. "email": "kontakt@beberlei.de"
  1453. },
  1454. {
  1455. "name": "Guilherme Blanco",
  1456. "email": "guilhermeblanco@gmail.com"
  1457. },
  1458. {
  1459. "name": "Jonathan Wage",
  1460. "email": "jonwage@gmail.com"
  1461. },
  1462. {
  1463. "name": "Johannes Schmitt",
  1464. "email": "schmittjoh@gmail.com"
  1465. }
  1466. ],
  1467. "description": "Common Library for Doctrine projects",
  1468. "homepage": "http://www.doctrine-project.org",
  1469. "keywords": [
  1470. "annotations",
  1471. "collections",
  1472. "eventmanager",
  1473. "persistence",
  1474. "spl"
  1475. ],
  1476. "time": "2017-07-22T08:35:12+00:00"
  1477. },
  1478. {
  1479. "name": "doctrine/inflector",
  1480. "version": "v1.2.0",
  1481. "source": {
  1482. "type": "git",
  1483. "url": "https://github.com/doctrine/inflector.git",
  1484. "reference": "e11d84c6e018beedd929cff5220969a3c6d1d462"
  1485. },
  1486. "dist": {
  1487. "type": "zip",
  1488. "url": "https://api.github.com/repos/doctrine/inflector/zipball/e11d84c6e018beedd929cff5220969a3c6d1d462",
  1489. "reference": "e11d84c6e018beedd929cff5220969a3c6d1d462",
  1490. "shasum": ""
  1491. },
  1492. "require": {
  1493. "php": "^7.0"
  1494. },
  1495. "require-dev": {
  1496. "phpunit/phpunit": "^6.2"
  1497. },
  1498. "type": "library",
  1499. "extra": {
  1500. "branch-alias": {
  1501. "dev-master": "1.2.x-dev"
  1502. }
  1503. },
  1504. "autoload": {
  1505. "psr-4": {
  1506. "Doctrine\\Common\\Inflector\\": "lib/Doctrine/Common/Inflector"
  1507. }
  1508. },
  1509. "notification-url": "https://packagist.org/downloads/",
  1510. "license": [
  1511. "MIT"
  1512. ],
  1513. "authors": [
  1514. {
  1515. "name": "Roman Borschel",
  1516. "email": "roman@code-factory.org"
  1517. },
  1518. {
  1519. "name": "Benjamin Eberlei",
  1520. "email": "kontakt@beberlei.de"
  1521. },
  1522. {
  1523. "name": "Guilherme Blanco",
  1524. "email": "guilhermeblanco@gmail.com"
  1525. },
  1526. {
  1527. "name": "Jonathan Wage",
  1528. "email": "jonwage@gmail.com"
  1529. },
  1530. {
  1531. "name": "Johannes Schmitt",
  1532. "email": "schmittjoh@gmail.com"
  1533. }
  1534. ],
  1535. "description": "Common String Manipulations with regard to casing and singular/plural rules.",
  1536. "homepage": "http://www.doctrine-project.org",
  1537. "keywords": [
  1538. "inflection",
  1539. "pluralize",
  1540. "singularize",
  1541. "string"
  1542. ],
  1543. "time": "2017-07-22T12:18:28+00:00"
  1544. },
  1545. {
  1546. "name": "doctrine/lexer",
  1547. "version": "v1.0.1",
  1548. "source": {
  1549. "type": "git",
  1550. "url": "https://github.com/doctrine/lexer.git",
  1551. "reference": "83893c552fd2045dd78aef794c31e694c37c0b8c"
  1552. },
  1553. "dist": {
  1554. "type": "zip",
  1555. "url": "https://api.github.com/repos/doctrine/lexer/zipball/83893c552fd2045dd78aef794c31e694c37c0b8c",
  1556. "reference": "83893c552fd2045dd78aef794c31e694c37c0b8c",
  1557. "shasum": ""
  1558. },
  1559. "require": {
  1560. "php": ">=5.3.2"
  1561. },
  1562. "type": "library",
  1563. "extra": {
  1564. "branch-alias": {
  1565. "dev-master": "1.0.x-dev"
  1566. }
  1567. },
  1568. "autoload": {
  1569. "psr-0": {
  1570. "Doctrine\\Common\\Lexer\\": "lib/"
  1571. }
  1572. },
  1573. "notification-url": "https://packagist.org/downloads/",
  1574. "license": [
  1575. "MIT"
  1576. ],
  1577. "authors": [
  1578. {
  1579. "name": "Roman Borschel",
  1580. "email": "roman@code-factory.org"
  1581. },
  1582. {
  1583. "name": "Guilherme Blanco",
  1584. "email": "guilhermeblanco@gmail.com"
  1585. },
  1586. {
  1587. "name": "Johannes Schmitt",
  1588. "email": "schmittjoh@gmail.com"
  1589. }
  1590. ],
  1591. "description": "Base library for a lexer that can be used in Top-Down, Recursive Descent Parsers.",
  1592. "homepage": "http://www.doctrine-project.org",
  1593. "keywords": [
  1594. "lexer",
  1595. "parser"
  1596. ],
  1597. "time": "2014-09-09T13:34:57+00:00"
  1598. },
  1599. {
  1600. "name": "drupal-composer/drupal-scaffold",
  1601. "version": "2.5.4",
  1602. "source": {
  1603. "type": "git",
  1604. "url": "https://github.com/drupal-composer/drupal-scaffold.git",
  1605. "reference": "fc6bf4ceecb5d47327f54d48d4d4f67b17da956d"
  1606. },
  1607. "dist": {
  1608. "type": "zip",
  1609. "url": "https://api.github.com/repos/drupal-composer/drupal-scaffold/zipball/fc6bf4ceecb5d47327f54d48d4d4f67b17da956d",
  1610. "reference": "fc6bf4ceecb5d47327f54d48d4d4f67b17da956d",
  1611. "shasum": ""
  1612. },
  1613. "require": {
  1614. "composer-plugin-api": "^1.0.0",
  1615. "composer/semver": "^1.4",
  1616. "php": ">=5.4.5"
  1617. },
  1618. "require-dev": {
  1619. "composer/composer": "dev-master",
  1620. "g1a/composer-test-scenarios": "^2.1.0",
  1621. "phpunit/phpunit": "^6",
  1622. "squizlabs/php_codesniffer": "^2.8"
  1623. },
  1624. "type": "composer-plugin",
  1625. "extra": {
  1626. "class": "DrupalComposer\\DrupalScaffold\\Plugin",
  1627. "branch-alias": {
  1628. "dev-master": "2.0.x-dev"
  1629. }
  1630. },
  1631. "autoload": {
  1632. "psr-4": {
  1633. "DrupalComposer\\DrupalScaffold\\": "src/"
  1634. }
  1635. },
  1636. "notification-url": "https://packagist.org/downloads/",
  1637. "license": [
  1638. "GPL-2.0-or-later"
  1639. ],
  1640. "description": "Composer Plugin for updating the Drupal scaffold files when using drupal/core",
  1641. "time": "2018-07-27T10:07:07+00:00"
  1642. },
  1643. {
  1644. "name": "drupal/actions_permissions",
  1645. "version": "2.4.0",
  1646. "require": {
  1647. "drupal/core": "*",
  1648. "drupal/views_bulk_operations": "self.version"
  1649. },
  1650. "type": "metapackage",
  1651. "extra": {
  1652. "branch-alias": {
  1653. "dev-2.x": "2.x-dev"
  1654. },
  1655. "drupal": {
  1656. "version": "8.x-2.4",
  1657. "datestamp": "1530516821",
  1658. "security-coverage": {
  1659. "status": "covered",
  1660. "message": "Covered by Drupal's security advisory policy"
  1661. }
  1662. }
  1663. },
  1664. "notification-url": "https://packages.drupal.org/8/downloads",
  1665. "license": [
  1666. "GPL-2.0-or-later"
  1667. ],
  1668. "authors": [
  1669. {
  1670. "name": "Graber",
  1671. "homepage": "https://www.drupal.org/user/1599440"
  1672. },
  1673. {
  1674. "name": "Jon Pugh",
  1675. "homepage": "https://www.drupal.org/user/17028"
  1676. },
  1677. {
  1678. "name": "bojanz",
  1679. "homepage": "https://www.drupal.org/user/86106"
  1680. },
  1681. {
  1682. "name": "infojunkie",
  1683. "homepage": "https://www.drupal.org/user/48424"
  1684. },
  1685. {
  1686. "name": "joelpittet",
  1687. "homepage": "https://www.drupal.org/user/160302"
  1688. }
  1689. ],
  1690. "description": "Adds access permissions on all actions allowing admins to restrict access on a per-role basis.",
  1691. "homepage": "https://www.drupal.org/project/views_bulk_operations",
  1692. "support": {
  1693. "source": "http://cgit.drupalcode.org/views_bulk_operations"
  1694. }
  1695. },
  1696. {
  1697. "name": "drupal/address",
  1698. "version": "1.4.0",
  1699. "source": {
  1700. "type": "git",
  1701. "url": "https://git.drupal.org/project/address",
  1702. "reference": "8.x-1.4"
  1703. },
  1704. "dist": {
  1705. "type": "zip",
  1706. "url": "https://ftp.drupal.org/files/projects/address-8.x-1.4.zip",
  1707. "reference": "8.x-1.4",
  1708. "shasum": "143e426be73418c719c6bddd5fb81c610604e860"
  1709. },
  1710. "require": {
  1711. "commerceguys/addressing": "^1.0.0",
  1712. "drupal/core": "*"
  1713. },
  1714. "require-dev": {
  1715. "drupal/token": "*"
  1716. },
  1717. "type": "drupal-module",
  1718. "extra": {
  1719. "branch-alias": {
  1720. "dev-1.x": "1.x-dev"
  1721. },
  1722. "drupal": {
  1723. "version": "8.x-1.4",
  1724. "datestamp": "1527081784",
  1725. "security-coverage": {
  1726. "status": "covered",
  1727. "message": "Covered by Drupal's security advisory policy"
  1728. }
  1729. }
  1730. },
  1731. "notification-url": "https://packages.drupal.org/8/downloads",
  1732. "license": [
  1733. "GPL-2.0+"
  1734. ],
  1735. "authors": [
  1736. {
  1737. "name": "bojanz",
  1738. "homepage": "https://www.drupal.org/user/86106"
  1739. },
  1740. {
  1741. "name": "googletorp",
  1742. "homepage": "https://www.drupal.org/user/386230"
  1743. },
  1744. {
  1745. "name": "rszrama",
  1746. "homepage": "https://www.drupal.org/user/49344"
  1747. }
  1748. ],
  1749. "description": "Provides functionality for storing, validating and displaying international postal addresses.",
  1750. "homepage": "http://drupal.org/project/address",
  1751. "support": {
  1752. "source": "http://cgit.drupalcode.org/address"
  1753. }
  1754. },
  1755. {
  1756. "name": "drupal/admin_toolbar",
  1757. "version": "1.25.0",
  1758. "source": {
  1759. "type": "git",
  1760. "url": "https://git.drupal.org/project/admin_toolbar",
  1761. "reference": "8.x-1.25"
  1762. },
  1763. "dist": {
  1764. "type": "zip",
  1765. "url": "https://ftp.drupal.org/files/projects/admin_toolbar-8.x-1.25.zip",
  1766. "reference": "8.x-1.25",
  1767. "shasum": "bc24929d5e49932518797c1228e647e98b03542b"
  1768. },
  1769. "require": {
  1770. "drupal/core": "*"
  1771. },
  1772. "type": "drupal-module",
  1773. "extra": {
  1774. "branch-alias": {
  1775. "dev-1.x": "1.x-dev"
  1776. },
  1777. "drupal": {
  1778. "version": "8.x-1.25",
  1779. "datestamp": "1542915384",
  1780. "security-coverage": {
  1781. "status": "covered",
  1782. "message": "Covered by Drupal's security advisory policy"
  1783. }
  1784. }
  1785. },
  1786. "notification-url": "https://packages.drupal.org/8/downloads",
  1787. "license": [
  1788. "GPL-2.0+"
  1789. ],
  1790. "authors": [
  1791. {
  1792. "name": "Wilfrid Roze (eme)",
  1793. "homepage": "https://www.drupal.org/u/eme",
  1794. "role": "Maintainer"
  1795. },
  1796. {
  1797. "name": "Romain Jarraud (romainj)",
  1798. "homepage": "https://www.drupal.org/u/romainj",
  1799. "role": "Maintainer"
  1800. },
  1801. {
  1802. "name": "Adrian Cid Almaguer (adriancid)",
  1803. "homepage": "https://www.drupal.org/u/adriancid",
  1804. "email": "adriancid@gmail.com",
  1805. "role": "Maintainer"
  1806. },
  1807. {
  1808. "name": "Mohamed Anis Taktak (matio89)",
  1809. "homepage": "https://www.drupal.org/u/matio89",
  1810. "role": "Maintainer"
  1811. },
  1812. {
  1813. "name": "fethi.krout",
  1814. "homepage": "https://www.drupal.org/user/3206765"
  1815. },
  1816. {
  1817. "name": "matio89",
  1818. "homepage": "https://www.drupal.org/user/2320090"
  1819. },
  1820. {
  1821. "name": "romainj",
  1822. "homepage": "https://www.drupal.org/user/370706"
  1823. }
  1824. ],
  1825. "description": "Provides a drop-down menu interface to the core Drupal Toolbar.",
  1826. "homepage": "http://drupal.org/project/admin_toolbar",
  1827. "keywords": [
  1828. "Drupal",
  1829. "Toolbar"
  1830. ],
  1831. "support": {
  1832. "source": "http://cgit.drupalcode.org/admin_toolbar",
  1833. "issues": "https://www.drupal.org/project/issues/admin_toolbar"
  1834. }
  1835. },
  1836. {
  1837. "name": "drupal/adminimal_theme",
  1838. "version": "1.4.0",
  1839. "source": {
  1840. "type": "git",
  1841. "url": "https://git.drupal.org/project/adminimal_theme",
  1842. "reference": "8.x-1.4"
  1843. },
  1844. "dist": {
  1845. "type": "zip",
  1846. "url": "https://ftp.drupal.org/files/projects/adminimal_theme-8.x-1.4.zip",
  1847. "reference": "8.x-1.4",
  1848. "shasum": "af9cbce473d0bd9590889992200ed175cb7e1159"
  1849. },
  1850. "require": {
  1851. "drupal/core": "~8.0"
  1852. },
  1853. "type": "drupal-theme",
  1854. "extra": {
  1855. "branch-alias": {
  1856. "dev-1.x": "1.x-dev"
  1857. },
  1858. "drupal": {
  1859. "version": "8.x-1.4",
  1860. "datestamp": "1547996580",
  1861. "security-coverage": {
  1862. "status": "covered",
  1863. "message": "Covered by Drupal's security advisory policy"
  1864. }
  1865. }
  1866. },
  1867. "notification-url": "https://packages.drupal.org/8/downloads",
  1868. "license": [
  1869. "GPL-2.0+"
  1870. ],
  1871. "authors": [
  1872. {
  1873. "name": "ANDiTKO",
  1874. "homepage": "https://www.drupal.org/user/1428124"
  1875. },
  1876. {
  1877. "name": "andrey.troeglazov",
  1878. "homepage": "https://www.drupal.org/user/3145389"
  1879. },
  1880. {
  1881. "name": "realityloop",
  1882. "homepage": "https://www.drupal.org/user/139189"
  1883. }
  1884. ],
  1885. "description": "Drupal administration theme with modern minimalist design.",
  1886. "homepage": "https://www.drupal.org/project/adminimal_theme",
  1887. "support": {
  1888. "source": "http://cgit.drupalcode.org/adminimal_theme",
  1889. "issues": "https://www.drupal.org/project/issues/adminimal_theme"
  1890. }
  1891. },
  1892. {
  1893. "name": "drupal/advanced_text_formatter",
  1894. "version": "1.0.0-beta3",
  1895. "source": {
  1896. "type": "git",
  1897. "url": "https://git.drupal.org/project/advanced_text_formatter",
  1898. "reference": "8.x-1.0-beta3"
  1899. },
  1900. "dist": {
  1901. "type": "zip",
  1902. "url": "https://ftp.drupal.org/files/projects/advanced_text_formatter-8.x-1.0-beta3.zip",
  1903. "reference": "8.x-1.0-beta3",
  1904. "shasum": "35e0154440ba7836dda70b8627f156872da75302"
  1905. },
  1906. "require": {
  1907. "drupal/core": "*"
  1908. },
  1909. "type": "drupal-module",
  1910. "extra": {
  1911. "branch-alias": {
  1912. "dev-1.x": "1.x-dev"
  1913. },
  1914. "drupal": {
  1915. "version": "8.x-1.0-beta3",
  1916. "datestamp": "1445163539",
  1917. "security-coverage": {
  1918. "status": "not-covered",
  1919. "message": "Beta releases are not covered by Drupal security advisories."
  1920. }
  1921. }
  1922. },
  1923. "notification-url": "https://packages.drupal.org/8/downloads",
  1924. "license": [
  1925. "GPL-2.0-or-later"
  1926. ],
  1927. "authors": [
  1928. {
  1929. "name": "thmnhat",
  1930. "homepage": "https://www.drupal.org/user/998946"
  1931. }
  1932. ],
  1933. "description": "Provides an additional formatter for text field, text area and text format.",
  1934. "homepage": "https://www.drupal.org/project/advanced_text_formatter",
  1935. "support": {
  1936. "source": "http://cgit.drupalcode.org/advanced_text_formatter"
  1937. }
  1938. },
  1939. {
  1940. "name": "drupal/audiofield",
  1941. "version": "1.8.0",
  1942. "source": {
  1943. "type": "git",
  1944. "url": "https://git.drupal.org/project/audiofield",
  1945. "reference": "8.x-1.8"
  1946. },
  1947. "dist": {
  1948. "type": "zip",
  1949. "url": "https://ftp.drupal.org/files/projects/audiofield-8.x-1.8.zip",
  1950. "reference": "8.x-1.8",
  1951. "shasum": "a2e4c5b7f81ec6d3d015b22a63560fd1a8f56682"
  1952. },
  1953. "require": {
  1954. "drupal/core": "~8.0"
  1955. },
  1956. "type": "drupal-module",
  1957. "extra": {
  1958. "branch-alias": {
  1959. "dev-1.x": "1.x-dev"
  1960. },
  1961. "drupal": {
  1962. "version": "8.x-1.8",
  1963. "datestamp": "1543249980",
  1964. "security-coverage": {
  1965. "status": "covered",
  1966. "message": "Covered by Drupal's security advisory policy"
  1967. }
  1968. },
  1969. "drush": {
  1970. "services": {
  1971. "drush.services.yml": "^9"
  1972. }
  1973. }
  1974. },
  1975. "notification-url": "https://packages.drupal.org/8/downloads",
  1976. "license": [
  1977. "GPL-2.0+"
  1978. ],
  1979. "authors": [
  1980. {
  1981. "name": "Daniel Moberly",
  1982. "homepage": "https://www.drupal.org/u/danielmoberly",
  1983. "role": "Maintainer"
  1984. },
  1985. {
  1986. "name": "josipsaric",
  1987. "homepage": "https://www.drupal.org/user/3063287"
  1988. },
  1989. {
  1990. "name": "tamerzg",
  1991. "homepage": "https://www.drupal.org/user/464564"
  1992. }
  1993. ],
  1994. "description": "AudioField Module",
  1995. "homepage": "https://www.drupal.org/project/audiofield",
  1996. "support": {
  1997. "source": "http://cgit.drupalcode.org/audiofield",
  1998. "issues": "https://www.drupal.org/project/issues/audiofield"
  1999. }
  2000. },
  2001. {
  2002. "name": "drupal/autocomplete_deluxe",
  2003. "version": "1.0.0-beta1",
  2004. "source": {
  2005. "type": "git",
  2006. "url": "https://git.drupal.org/project/autocomplete_deluxe",
  2007. "reference": "8.x-1.0-beta1"
  2008. },
  2009. "dist": {
  2010. "type": "zip",
  2011. "url": "https://ftp.drupal.org/files/projects/autocomplete_deluxe-8.x-1.0-beta1.zip",
  2012. "reference": "8.x-1.0-beta1",
  2013. "shasum": "f59d928761a01a055c2240155a84b1d7286fe666"
  2014. },
  2015. "require": {
  2016. "drupal/core": "~8.0"
  2017. },
  2018. "type": "drupal-module",
  2019. "extra": {
  2020. "branch-alias": {
  2021. "dev-1.x": "1.x-dev"
  2022. },
  2023. "drupal": {
  2024. "version": "8.x-1.0-beta1",
  2025. "datestamp": "1502921644",
  2026. "security-coverage": {
  2027. "status": "not-covered",
  2028. "message": "Beta releases are not covered by Drupal security advisories."
  2029. }
  2030. }
  2031. },
  2032. "notification-url": "https://packages.drupal.org/8/downloads",
  2033. "license": [
  2034. "GPL-2.0+"
  2035. ],
  2036. "authors": [
  2037. {
  2038. "name": "Edward Chan",
  2039. "homepage": "https://www.drupal.org/user/1781334"
  2040. },
  2041. {
  2042. "name": "edwardchiapet",
  2043. "homepage": "https://www.drupal.org/user/2354784"
  2044. },
  2045. {
  2046. "name": "mpriscella",
  2047. "homepage": "https://www.drupal.org/user/2354820"
  2048. },
  2049. {
  2050. "name": "sepgil",
  2051. "homepage": "https://www.drupal.org/user/512828"
  2052. }
  2053. ],
  2054. "description": "Enhanced autocomplete using Jquery UI autocomplete.",
  2055. "homepage": "https://www.drupal.org/sandbox/edwardchan/2888186",
  2056. "support": {
  2057. "source": "http://cgit.drupalcode.org/autocomplete_deluxe",
  2058. "issues": "https://www.drupal.org/project/issues/2888186"
  2059. }
  2060. },
  2061. {
  2062. "name": "drupal/autologout",
  2063. "version": "1.0.0",
  2064. "source": {
  2065. "type": "git",
  2066. "url": "https://git.drupal.org/project/autologout",
  2067. "reference": "8.x-1.0"
  2068. },
  2069. "dist": {
  2070. "type": "zip",
  2071. "url": "https://ftp.drupal.org/files/projects/autologout-8.x-1.0.zip",
  2072. "reference": "8.x-1.0",
  2073. "shasum": "0a5f67d4393b0acdf8522b1b1a5c9eb40bb05d93"
  2074. },
  2075. "require": {
  2076. "drupal/core": "~8.0"
  2077. },
  2078. "type": "drupal-module",
  2079. "extra": {
  2080. "branch-alias": {
  2081. "dev-1.x": "1.x-dev"
  2082. },
  2083. "drupal": {
  2084. "version": "8.x-1.0",
  2085. "datestamp": "1494237185",
  2086. "security-coverage": {
  2087. "status": "covered",
  2088. "message": "Covered by Drupal's security advisory policy"
  2089. }
  2090. }
  2091. },
  2092. "notification-url": "https://packages.drupal.org/8/downloads",
  2093. "license": [
  2094. "GPL-2.0+"
  2095. ],
  2096. "authors": [
  2097. {
  2098. "name": "AjK",
  2099. "homepage": "https://www.drupal.org/user/39030"
  2100. },
  2101. {
  2102. "name": "AjitS",
  2103. "homepage": "https://www.drupal.org/user/981944"
  2104. },
  2105. {
  2106. "name": "boshtian",
  2107. "homepage": "https://www.drupal.org/user/1773456"
  2108. },
  2109. {
  2110. "name": "dandrews",
  2111. "homepage": "https://www.drupal.org/user/2014490"
  2112. },
  2113. {
  2114. "name": "darksnow",
  2115. "homepage": "https://www.drupal.org/user/391915"
  2116. },
  2117. {
  2118. "name": "johnennew",
  2119. "homepage": "https://www.drupal.org/user/1150042"
  2120. },
  2121. {
  2122. "name": "jrglasgow",
  2123. "homepage": "https://www.drupal.org/user/36590"
  2124. },
  2125. {
  2126. "name": "kmasood",
  2127. "homepage": "https://www.drupal.org/user/1262860"
  2128. },
  2129. {
  2130. "name": "levelos",
  2131. "homepage": "https://www.drupal.org/user/54135"
  2132. },
  2133. {
  2134. "name": "prabeen.giri",
  2135. "homepage": "https://www.drupal.org/user/913078"
  2136. },
  2137. {
  2138. "name": "str8",
  2139. "homepage": "https://www.drupal.org/user/2865063"
  2140. }
  2141. ],
  2142. "description": "Adds automated timed logout.",
  2143. "homepage": "http://drupal.org/project/autologout",
  2144. "support": {
  2145. "source": "http://cgit.drupalcode.org/autologout"
  2146. }
  2147. },
  2148. {
  2149. "name": "drupal/better_exposed_filters",
  2150. "version": "3.0.0-alpha5",
  2151. "source": {
  2152. "type": "git",
  2153. "url": "https://git.drupal.org/project/better_exposed_filters",
  2154. "reference": "8.x-3.0-alpha5"
  2155. },
  2156. "dist": {
  2157. "type": "zip",
  2158. "url": "https://ftp.drupal.org/files/projects/better_exposed_filters-8.x-3.0-alpha5.zip",
  2159. "reference": "8.x-3.0-alpha5",
  2160. "shasum": "8dbcff4b3bcd24f753d5d1ba6a523442a3690a76"
  2161. },
  2162. "require": {
  2163. "drupal/core": "*"
  2164. },
  2165. "type": "drupal-module",
  2166. "extra": {
  2167. "branch-alias": {
  2168. "dev-3.x": "3.x-dev"
  2169. },
  2170. "drupal": {
  2171. "version": "8.x-3.0-alpha5",
  2172. "datestamp": "1540513084",
  2173. "security-coverage": {
  2174. "status": "not-covered",
  2175. "message": "Alpha releases are not covered by Drupal security advisories."
  2176. }
  2177. }
  2178. },
  2179. "notification-url": "https://packages.drupal.org/8/downloads",
  2180. "license": [
  2181. "GPL-2.0-or-later"
  2182. ],
  2183. "authors": [
  2184. {
  2185. "name": "chr.fritsch",
  2186. "homepage": "https://www.drupal.org/user/2103716"
  2187. },
  2188. {
  2189. "name": "jkopel",
  2190. "homepage": "https://www.drupal.org/user/66207"
  2191. },
  2192. {
  2193. "name": "mikeker",
  2194. "homepage": "https://www.drupal.org/user/192273"
  2195. },
  2196. {
  2197. "name": "mortona2k",
  2198. "homepage": "https://www.drupal.org/user/1029484"
  2199. },
  2200. {
  2201. "name": "rlhawk",
  2202. "homepage": "https://www.drupal.org/user/352283"
  2203. }
  2204. ],
  2205. "description": "Provides advanced options (such as links, checkboxes, or jQueryUI widgets) for exposed Views elements.",
  2206. "homepage": "https://www.drupal.org/project/better_exposed_filters",
  2207. "support": {
  2208. "source": "http://cgit.drupalcode.org/better_exposed_filters"
  2209. }
  2210. },
  2211. {
  2212. "name": "drupal/better_messages",
  2213. "version": "1.0.0-alpha2",
  2214. "source": {
  2215. "type": "git",
  2216. "url": "https://git.drupal.org/project/better_messages",
  2217. "reference": "8.x-1.0-alpha2"
  2218. },
  2219. "dist": {
  2220. "type": "zip",
  2221. "url": "https://ftp.drupal.org/files/projects/better_messages-8.x-1.0-alpha2.zip",
  2222. "reference": "8.x-1.0-alpha2",
  2223. "shasum": "ca09231502d5e0d8a5c0d16f9efc5430091b8a38"
  2224. },
  2225. "require": {
  2226. "drupal/core": "~8.0"
  2227. },
  2228. "type": "drupal-module",
  2229. "extra": {
  2230. "branch-alias": {
  2231. "dev-1.x": "1.x-dev"
  2232. },
  2233. "drupal": {
  2234. "version": "8.x-1.0-alpha2",
  2235. "datestamp": "1517663880",
  2236. "security-coverage": {
  2237. "status": "not-covered",
  2238. "message": "Alpha releases are not covered by Drupal security advisories."
  2239. }
  2240. }
  2241. },
  2242. "notification-url": "https://packages.drupal.org/8/downloads",
  2243. "license": [
  2244. "GPL-2.0-or-later"
  2245. ],
  2246. "authors": [
  2247. {
  2248. "name": "Mohammed J. Razem",
  2249. "homepage": "https://www.drupal.org/user/255384"
  2250. },
  2251. {
  2252. "name": "bucefal91",
  2253. "homepage": "https://www.drupal.org/user/504128"
  2254. },
  2255. {
  2256. "name": "le72",
  2257. "homepage": "https://www.drupal.org/user/1866896"
  2258. }
  2259. ],
  2260. "description": "Better Messages module for Drupal 8.",
  2261. "homepage": "https://www.drupal.org/project/better_messages",
  2262. "support": {
  2263. "source": "http://cgit.drupalcode.org/better_messages"
  2264. }
  2265. },
  2266. {
  2267. "name": "drupal/betterlogin",
  2268. "version": "1.2.0",
  2269. "source": {
  2270. "type": "git",
  2271. "url": "https://git.drupal.org/project/betterlogin",
  2272. "reference": "8.x-1.2"
  2273. },
  2274. "dist": {
  2275. "type": "zip",
  2276. "url": "https://ftp.drupal.org/files/projects/betterlogin-8.x-1.2.zip",
  2277. "reference": "8.x-1.2",
  2278. "shasum": "6b9ab142bf563685346d2b4e2db46ada209ed6ad"
  2279. },
  2280. "require": {
  2281. "drupal/core": "~8.0"
  2282. },
  2283. "type": "drupal-module",
  2284. "extra": {
  2285. "branch-alias": {
  2286. "dev-1.x": "1.x-dev"
  2287. },
  2288. "drupal": {
  2289. "version": "8.x-1.2",
  2290. "datestamp": "1515587585",
  2291. "security-coverage": {
  2292. "status": "covered",
  2293. "message": "Covered by Drupal's security advisory policy"
  2294. }
  2295. }
  2296. },
  2297. "notification-url": "https://packages.drupal.org/8/downloads",
  2298. "license": [
  2299. "GPL-2.0-or-later"
  2300. ],
  2301. "authors": [
  2302. {
  2303. "name": "Yogesh Pawar",
  2304. "homepage": "https://www.drupal.org/user/2922907"
  2305. },
  2306. {
  2307. "name": "theamoeba",
  2308. "homepage": "https://www.drupal.org/user/251700"
  2309. }
  2310. ],
  2311. "description": "Make the login screens better :)",
  2312. "homepage": "https://www.drupal.org/project/betterlogin",
  2313. "support": {
  2314. "source": "http://cgit.drupalcode.org/betterlogin"
  2315. }
  2316. },
  2317. {
  2318. "name": "drupal/block_class",
  2319. "version": "1.0.0",
  2320. "source": {
  2321. "type": "git",
  2322. "url": "https://git.drupal.org/project/block_class",
  2323. "reference": "8.x-1.0"
  2324. },
  2325. "dist": {
  2326. "type": "zip",
  2327. "url": "https://ftp.drupal.org/files/projects/block_class-8.x-1.0.zip",
  2328. "reference": "8.x-1.0",
  2329. "shasum": "1a691999d051a3c010c2b6f2df73954ee02f424d"
  2330. },
  2331. "require": {
  2332. "drupal/core": "*"
  2333. },
  2334. "type": "drupal-module",
  2335. "extra": {
  2336. "branch-alias": {
  2337. "dev-1.x": "1.x-dev"
  2338. },
  2339. "drupal": {
  2340. "version": "8.x-1.0",
  2341. "datestamp": "1531440821",
  2342. "security-coverage": {
  2343. "status": "covered",
  2344. "message": "Covered by Drupal's security advisory policy"
  2345. }
  2346. }
  2347. },
  2348. "notification-url": "https://packages.drupal.org/8/downloads",
  2349. "license": [
  2350. "GPL-2.0+"
  2351. ],
  2352. "authors": [
  2353. {
  2354. "name": "Todd Nienkerk",
  2355. "homepage": "https://www.drupal.org/u/todd-nienkerk",
  2356. "role": "Maintainer"
  2357. },
  2358. {
  2359. "name": "Renato Gonçalves (RenatoG)",
  2360. "homepage": "https://www.drupal.org/u/RenatoG",
  2361. "email": "renatog@ciandt.com",
  2362. "role": "Maintainer"
  2363. },
  2364. {
  2365. "name": "Aaron Stanush",
  2366. "homepage": "https://www.drupal.org/u/aaron-stanush",
  2367. "role": "Maintainer"
  2368. },
  2369. {
  2370. "name": "David Suissa (DYdave)",
  2371. "homepage": "https://www.drupal.org/u/DYdave",
  2372. "role": "Maintainer"
  2373. },
  2374. {
  2375. "name": "Four Kitchens",
  2376. "homepage": "https://www.drupal.org/user/358502",
  2377. "role": "Maintainer"
  2378. },
  2379. {
  2380. "name": "berenddeboer",
  2381. "homepage": "https://www.drupal.org/u/berenddeboer",
  2382. "role": "Maintainer"
  2383. },
  2384. {
  2385. "name": "elliotttf",
  2386. "homepage": "https://www.drupal.org/u/elliotttf",
  2387. "role": "Maintainer"
  2388. },
  2389. {
  2390. "name": "Michal Minecki (mirzu)",
  2391. "homepage": "https://www.drupal.org/u/mirzu",
  2392. "role": "Maintainer"
  2393. },
  2394. {
  2395. "name": "Patrick Coffey (pcoffey)",
  2396. "homepage": "https://www.drupal.org/u/pcoffey",
  2397. "role": "Maintainer"
  2398. },
  2399. {
  2400. "name": "Taylor Smith (tsmith512)",
  2401. "homepage": "https://www.drupal.org/u/tsmith512",
  2402. "role": "Maintainer"
  2403. },
  2404. {
  2405. "name": "tsmith512",
  2406. "homepage": "https://www.drupal.org/user/2031446"
  2407. }
  2408. ],
  2409. "description": "Allows assigning classes to Blocks.",
  2410. "homepage": "https://www.drupal.org/project/block_class",
  2411. "support": {
  2412. "source": "https://cgit.drupalcode.org/block_class",
  2413. "issues": "https://www.drupal.org/project/issues/block_class",
  2414. "irc": "irc://irc.freenode.org/drupal-contribute"
  2415. }
  2416. },
  2417. {
  2418. "name": "drupal/bulkdelete",
  2419. "version": "dev-1.x",
  2420. "source": {
  2421. "type": "git",
  2422. "url": "https://git.drupal.org/project/bulkdelete",
  2423. "reference": "24499e0f069301d605ab0691e2d6e17ecbcb4060"
  2424. },
  2425. "require": {
  2426. "drupal/core": "~8.0"
  2427. },
  2428. "type": "drupal-module",
  2429. "extra": {
  2430. "branch-alias": {
  2431. "dev-1.x": "1.x-dev"
  2432. },
  2433. "drupal": {
  2434. "version": "8.x-1.x-dev",
  2435. "datestamp": "1495565583",
  2436. "security-coverage": {
  2437. "status": "not-covered",
  2438. "message": "Dev releases are not covered by Drupal security advisories."
  2439. }
  2440. }
  2441. },
  2442. "notification-url": "https://packages.drupal.org/8/downloads",
  2443. "license": [
  2444. "GPL-2.0-or-later"
  2445. ],
  2446. "authors": [
  2447. {
  2448. "name": "Kars-T",
  2449. "homepage": "https://www.drupal.org/user/224499"
  2450. },
  2451. {
  2452. "name": "Rahul Seth",
  2453. "homepage": "https://www.drupal.org/user/2694359"
  2454. },
  2455. {
  2456. "name": "adriancid",
  2457. "homepage": "https://www.drupal.org/user/1962106"
  2458. },
  2459. {
  2460. "name": "robertDouglass",
  2461. "homepage": "https://www.drupal.org/user/5449"
  2462. }
  2463. ],
  2464. "description": "Adds an administrative option to bulk delete nodes by content type using the batch API.",
  2465. "homepage": "https://www.drupal.org/project/bulkdelete",
  2466. "support": {
  2467. "source": "http://cgit.drupalcode.org/bulkdelete"
  2468. },
  2469. "time": "2017-05-23T18:49:48+00:00"
  2470. },
  2471. {
  2472. "name": "drupal/computed_field",
  2473. "version": "2.0.0-beta1",
  2474. "source": {
  2475. "type": "git",
  2476. "url": "https://git.drupal.org/project/computed_field",
  2477. "reference": "8.x-2.0-beta1"
  2478. },
  2479. "dist": {
  2480. "type": "zip",
  2481. "url": "https://ftp.drupal.org/files/projects/computed_field-8.x-2.0-beta1.zip",
  2482. "reference": "8.x-2.0-beta1",
  2483. "shasum": "a918cb85b7865f15cc5a5c327e37964e53545161"
  2484. },
  2485. "require": {
  2486. "drupal/core": "~8.0"
  2487. },
  2488. "type": "drupal-module",
  2489. "extra": {
  2490. "branch-alias": {
  2491. "dev-2.x": "2.x-dev"
  2492. },
  2493. "drupal": {
  2494. "version": "8.x-2.0-beta1",
  2495. "datestamp": "1546032480",
  2496. "security-coverage": {
  2497. "status": "not-covered",
  2498. "message": "Beta releases are not covered by Drupal security advisories."
  2499. }
  2500. }
  2501. },
  2502. "notification-url": "https://packages.drupal.org/8/downloads",
  2503. "license": [
  2504. "GPL-2.0-or-later"
  2505. ],
  2506. "authors": [
  2507. {
  2508. "name": "Agileware",
  2509. "homepage": "https://www.drupal.org/user/89106"
  2510. },
  2511. {
  2512. "name": "Moonshine",
  2513. "homepage": "https://www.drupal.org/user/133705"
  2514. },
  2515. {
  2516. "name": "Pedro Lozano",
  2517. "homepage": "https://www.drupal.org/user/123766"
  2518. },
  2519. {
  2520. "name": "colan",
  2521. "homepage": "https://www.drupal.org/user/58704"
  2522. },
  2523. {
  2524. "name": "dealancer",
  2525. "homepage": "https://www.drupal.org/user/243418"
  2526. },
  2527. {
  2528. "name": "markus_petrux",
  2529. "homepage": "https://www.drupal.org/user/39593"
  2530. },
  2531. {
  2532. "name": "nickcaballero",
  2533. "homepage": "https://www.drupal.org/user/588336"
  2534. },
  2535. {
  2536. "name": "ram4nd",
  2537. "homepage": "https://www.drupal.org/user/601534"
  2538. }
  2539. ],
  2540. "description": "Defines a field type that allows values to be \"computed\" via PHP code.",
  2541. "homepage": "https://www.drupal.org/project/computed_field",
  2542. "support": {
  2543. "source": "http://cgit.drupalcode.org/computed_field"
  2544. }
  2545. },
  2546. {
  2547. "name": "drupal/config_devel",
  2548. "version": "1.2.0",
  2549. "source": {
  2550. "type": "git",
  2551. "url": "https://git.drupal.org/project/config_devel",
  2552. "reference": "8.x-1.2"
  2553. },
  2554. "dist": {
  2555. "type": "zip",
  2556. "url": "https://ftp.drupal.org/files/projects/config_devel-8.x-1.2.zip",
  2557. "reference": "8.x-1.2",
  2558. "shasum": "203bf299b1ad395d1451e22ea5a8f25ae462d880"
  2559. },
  2560. "require": {
  2561. "drupal/core": "~8.0"
  2562. },
  2563. "type": "drupal-module",
  2564. "extra": {
  2565. "branch-alias": {
  2566. "dev-1.x": "1.x-dev"
  2567. },
  2568. "drupal": {
  2569. "version": "8.x-1.2",
  2570. "datestamp": "1510843084",
  2571. "security-coverage": {
  2572. "status": "covered",
  2573. "message": "Covered by Drupal's security advisory policy"
  2574. }
  2575. }
  2576. },
  2577. "notification-url": "https://packages.drupal.org/8/downloads",
  2578. "license": [
  2579. "GPL-2.0+"
  2580. ],
  2581. "authors": [
  2582. {
  2583. "name": "alexpott",
  2584. "homepage": "https://www.drupal.org/user/157725"
  2585. },
  2586. {
  2587. "name": "benjy",
  2588. "homepage": "https://www.drupal.org/user/1852732"
  2589. },
  2590. {
  2591. "name": "chx",
  2592. "homepage": "https://www.drupal.org/user/9446"
  2593. },
  2594. {
  2595. "name": "joachim",
  2596. "homepage": "https://www.drupal.org/user/107701"
  2597. },
  2598. {
  2599. "name": "nedjo",
  2600. "homepage": "https://www.drupal.org/user/4481"
  2601. },
  2602. {
  2603. "name": "tim.plunkett",
  2604. "homepage": "https://www.drupal.org/user/241634"
  2605. },
  2606. {
  2607. "name": "vijaycs85",
  2608. "homepage": "https://www.drupal.org/user/93488"
  2609. }
  2610. ],
  2611. "description": "Helps developers work with configuration.",
  2612. "homepage": "https://www.drupal.org/project/config_devel",
  2613. "support": {
  2614. "source": "http://cgit.drupalcode.org/config_devel"
  2615. }
  2616. },
  2617. {
  2618. "name": "drupal/config_filter",
  2619. "version": "1.4.0",
  2620. "source": {
  2621. "type": "git",
  2622. "url": "https://git.drupal.org/project/config_filter",
  2623. "reference": "8.x-1.4"
  2624. },
  2625. "dist": {
  2626. "type": "zip",
  2627. "url": "https://ftp.drupal.org/files/projects/config_filter-8.x-1.4.zip",
  2628. "reference": "8.x-1.4",
  2629. "shasum": "4b2b7f4dfc8358212f9e25f63dcc77cc2c1dcf6c"
  2630. },
  2631. "require": {
  2632. "drupal/core": "~8.0"
  2633. },
  2634. "suggest": {
  2635. "drupal/config_split": "Split site configuration for different environments."
  2636. },
  2637. "type": "drupal-module",
  2638. "extra": {
  2639. "branch-alias": {
  2640. "dev-1.x": "1.x-dev"
  2641. },
  2642. "drupal": {
  2643. "version": "8.x-1.4",
  2644. "datestamp": "1542184982",
  2645. "security-coverage": {
  2646. "status": "covered",
  2647. "message": "Covered by Drupal's security advisory policy"
  2648. }
  2649. }
  2650. },
  2651. "notification-url": "https://packages.drupal.org/8/downloads",
  2652. "license": [
  2653. "GPL-2.0+"
  2654. ],
  2655. "authors": [
  2656. {
  2657. "name": "Fabian Bircher",
  2658. "homepage": "https://www.drupal.org/u/bircher",
  2659. "email": "opensource@fabianbircher.com",
  2660. "role": "Maintainer"
  2661. },
  2662. {
  2663. "name": "Nuvole Web",
  2664. "homepage": "http://nuvole.org",
  2665. "email": "info@nuvole.org",
  2666. "role": "Maintainer"
  2667. },
  2668. {
  2669. "name": "pescetti",
  2670. "homepage": "https://www.drupal.org/user/436244"
  2671. }
  2672. ],
  2673. "description": "Config Filter allows other modules to interact with a ConfigStorage through filter plugins.",
  2674. "homepage": "https://www.drupal.org/project/config_filter",
  2675. "keywords": [
  2676. "Drupal",
  2677. "configuration",
  2678. "configuration management"
  2679. ],
  2680. "support": {
  2681. "source": "http://cgit.drupalcode.org/config_filter",
  2682. "issues": "https://www.drupal.org/project/issues/config_filter",
  2683. "irc": "irc://irc.freenode.org/drupal-contribute"
  2684. }
  2685. },
  2686. {
  2687. "name": "drupal/config_ignore",
  2688. "version": "2.1.0",
  2689. "source": {
  2690. "type": "git",
  2691. "url": "https://git.drupal.org/project/config_ignore",
  2692. "reference": "8.x-2.1"
  2693. },
  2694. "dist": {
  2695. "type": "zip",
  2696. "url": "https://ftp.drupal.org/files/projects/config_ignore-8.x-2.1.zip",
  2697. "reference": "8.x-2.1",
  2698. "shasum": "07e00684930706632b3f2fc2a7433ffdae57cde7"
  2699. },
  2700. "require": {
  2701. "drupal/config_filter": "1.*",
  2702. "drupal/core": "~8.0"
  2703. },
  2704. "type": "drupal-module",
  2705. "extra": {
  2706. "branch-alias": {
  2707. "dev-2.x": "2.x-dev"
  2708. },
  2709. "drupal": {
  2710. "version": "8.x-2.1",
  2711. "datestamp": "1507706044",
  2712. "security-coverage": {
  2713. "status": "covered",
  2714. "message": "Covered by Drupal's security advisory policy"
  2715. }
  2716. }
  2717. },
  2718. "notification-url": "https://packages.drupal.org/8/downloads",
  2719. "license": [
  2720. "GPL-2.0+"
  2721. ],
  2722. "authors": [
  2723. {
  2724. "name": "Tommy Lynge Jørgensen",
  2725. "homepage": "https://www.drupal.org/u/tlyngej",
  2726. "email": "tlyngej@gmail.com",
  2727. "role": "Maintainer"
  2728. },
  2729. {
  2730. "name": "Fabian Bircher",
  2731. "homepage": "https://www.drupal.org/u/bircher",
  2732. "role": "Maintainer"
  2733. }
  2734. ],
  2735. "description": "Ignore certain configuration during import.",
  2736. "homepage": "http://drupal.org/project/config_ignore",
  2737. "support": {
  2738. "source": "http://cgit.drupalcode.org/config_ignore",
  2739. "issues": "http://drupal.org/project/config_ignore",
  2740. "irc": "irc://irc.freenode.org/drupal-contribute"
  2741. }
  2742. },
  2743. {
  2744. "name": "drupal/config_update",
  2745. "version": "1.6.0",
  2746. "source": {
  2747. "type": "git",
  2748. "url": "https://git.drupal.org/project/config_update",
  2749. "reference": "8.x-1.6"
  2750. },
  2751. "dist": {
  2752. "type": "zip",
  2753. "url": "https://ftp.drupal.org/files/projects/config_update-8.x-1.6.zip",
  2754. "reference": "8.x-1.6",
  2755. "shasum": "04bbd0fc440017fd0129dceae240a8bba409a450"
  2756. },
  2757. "require": {
  2758. "drupal/core": "*"
  2759. },
  2760. "type": "drupal-module",
  2761. "extra": {
  2762. "branch-alias": {
  2763. "dev-1.x": "1.x-dev"
  2764. },
  2765. "drupal": {
  2766. "version": "8.x-1.6",
  2767. "datestamp": "1545090480",
  2768. "security-coverage": {
  2769. "status": "covered",
  2770. "message": "Covered by Drupal's security advisory policy"
  2771. }
  2772. }
  2773. },
  2774. "notification-url": "https://packages.drupal.org/8/downloads",
  2775. "license": [
  2776. "GPL-2.0-or-later"
  2777. ],
  2778. "authors": [
  2779. {
  2780. "name": "jhodgdon",
  2781. "homepage": "https://www.drupal.org/user/155601"
  2782. },
  2783. {
  2784. "name": "nedjo",
  2785. "homepage": "https://www.drupal.org/user/4481"
  2786. }
  2787. ],
  2788. "description": "Provides basic revert and update functionality for other modules",
  2789. "homepage": "https://www.drupal.org/project/config_update",
  2790. "support": {
  2791. "source": "http://cgit.drupalcode.org/config_update"
  2792. }
  2793. },
  2794. {
  2795. "name": "drupal/console",
  2796. "version": "1.8.0",
  2797. "source": {
  2798. "type": "git",
  2799. "url": "https://github.com/hechoendrupal/drupal-console.git",
  2800. "reference": "368bbfa44dc6b957eb4db01977f7c39e83032d18"
  2801. },
  2802. "dist": {
  2803. "type": "zip",
  2804. "url": "https://api.github.com/repos/hechoendrupal/drupal-console/zipball/368bbfa44dc6b957eb4db01977f7c39e83032d18",
  2805. "reference": "368bbfa44dc6b957eb4db01977f7c39e83032d18",
  2806. "shasum": ""
  2807. },
  2808. "require": {
  2809. "alchemy/zippy": "0.4.3",
  2810. "composer/installers": "~1.0",
  2811. "doctrine/annotations": "^1.2",
  2812. "doctrine/collections": "^1.3",
  2813. "drupal/console-core": "1.8.0",
  2814. "drupal/console-extend-plugin": "~0",
  2815. "guzzlehttp/guzzle": "~6.1",
  2816. "php": "^5.5.9 || ^7.0",
  2817. "psy/psysh": "0.6.* || ~0.8",
  2818. "symfony/css-selector": "~2.8|~3.0",
  2819. "symfony/dom-crawler": "~2.8|~3.0",
  2820. "symfony/http-foundation": "~2.8|~3.0"
  2821. },
  2822. "suggest": {
  2823. "symfony/thanks": "Thank your favorite PHP projects on Github using the CLI!",
  2824. "vlucas/phpdotenv": "Loads environment variables from .env to getenv(), $_ENV and $_SERVER automagically."
  2825. },
  2826. "bin": [
  2827. "bin/drupal"
  2828. ],
  2829. "type": "library",
  2830. "autoload": {
  2831. "psr-4": {
  2832. "Drupal\\Console\\": "src"
  2833. }
  2834. },
  2835. "notification-url": "https://packagist.org/downloads/",
  2836. "license": [
  2837. "GPL-2.0-or-later"
  2838. ],
  2839. "authors": [
  2840. {
  2841. "name": "David Flores",
  2842. "email": "dmousex@gmail.com",
  2843. "homepage": "http://dmouse.net"
  2844. },
  2845. {
  2846. "name": "Jesus Manuel Olivas",
  2847. "email": "jesus.olivas@gmail.com",
  2848. "homepage": "http://jmolivas.com"
  2849. },
  2850. {
  2851. "name": "Eduardo Garcia",
  2852. "email": "enzo@enzolutions.com",
  2853. "homepage": "http://enzolutions.com/"
  2854. },
  2855. {
  2856. "name": "Omar Aguirre",
  2857. "email": "omersguchigu@gmail.com"
  2858. },
  2859. {
  2860. "name": "Drupal Console Contributors",
  2861. "homepage": "https://github.com/hechoendrupal/drupal-console/graphs/contributors"
  2862. }
  2863. ],
  2864. "description": "The Drupal CLI. A tool to generate boilerplate code, interact with and debug Drupal.",
  2865. "homepage": "http://drupalconsole.com/",
  2866. "keywords": [
  2867. "console",
  2868. "development",
  2869. "drupal",
  2870. "symfony"
  2871. ],
  2872. "time": "2018-03-21T20:50:16+00:00"
  2873. },
  2874. {
  2875. "name": "drupal/console-core",
  2876. "version": "1.8.0",
  2877. "source": {
  2878. "type": "git",
  2879. "url": "https://github.com/hechoendrupal/drupal-console-core.git",
  2880. "reference": "bf1fb4a6f689377acec1694267f674178d28e5d1"
  2881. },
  2882. "dist": {
  2883. "type": "zip",
  2884. "url": "https://api.github.com/repos/hechoendrupal/drupal-console-core/zipball/bf1fb4a6f689377acec1694267f674178d28e5d1",
  2885. "reference": "bf1fb4a6f689377acec1694267f674178d28e5d1",
  2886. "shasum": ""
  2887. },
  2888. "require": {
  2889. "dflydev/dot-access-configuration": "^1.0",
  2890. "drupal/console-en": "1.8.0",
  2891. "php": "^5.5.9 || ^7.0",
  2892. "stecman/symfony-console-completion": "~0.7",
  2893. "symfony/config": "~2.8|~3.0",
  2894. "symfony/console": "~2.8|~3.0",
  2895. "symfony/debug": "~2.8|~3.0",
  2896. "symfony/dependency-injection": "~2.8|~3.0",
  2897. "symfony/event-dispatcher": "~2.8|~3.0",
  2898. "symfony/filesystem": "~2.8|~3.0",
  2899. "symfony/finder": "~2.8|~3.0",
  2900. "symfony/process": "~2.8|~3.0",
  2901. "symfony/translation": "~2.8|~3.0",
  2902. "symfony/yaml": "~2.8|~3.0",
  2903. "twig/twig": "^1.23.1",
  2904. "webflo/drupal-finder": "^1.0",
  2905. "webmozart/path-util": "^2.3"
  2906. },
  2907. "type": "library",
  2908. "autoload": {
  2909. "files": [
  2910. "src/functions.php"
  2911. ],
  2912. "psr-4": {
  2913. "Drupal\\Console\\Core\\": "src"
  2914. }
  2915. },
  2916. "notification-url": "https://packagist.org/downloads/",
  2917. "license": [
  2918. "GPL-2.0-or-later"
  2919. ],
  2920. "authors": [
  2921. {
  2922. "name": "David Flores",
  2923. "email": "dmousex@gmail.com",
  2924. "homepage": "http://dmouse.net"
  2925. },
  2926. {
  2927. "name": "Jesus Manuel Olivas",
  2928. "email": "jesus.olivas@gmail.com",
  2929. "homepage": "http://jmolivas.com"
  2930. },
  2931. {
  2932. "name": "Drupal Console Contributors",
  2933. "homepage": "https://github.com/hechoendrupal/DrupalConsole/graphs/contributors"
  2934. },
  2935. {
  2936. "name": "Eduardo Garcia",
  2937. "email": "enzo@enzolutions.com",
  2938. "homepage": "http://enzolutions.com/"
  2939. },
  2940. {
  2941. "name": "Omar Aguirre",
  2942. "email": "omersguchigu@gmail.com"
  2943. }
  2944. ],
  2945. "description": "Drupal Console Core",
  2946. "homepage": "http://drupalconsole.com/",
  2947. "keywords": [
  2948. "console",
  2949. "development",
  2950. "drupal",
  2951. "symfony"
  2952. ],
  2953. "time": "2018-03-21T19:33:23+00:00"
  2954. },
  2955. {
  2956. "name": "drupal/console-en",
  2957. "version": "1.8.0",
  2958. "source": {
  2959. "type": "git",
  2960. "url": "https://github.com/hechoendrupal/drupal-console-en.git",
  2961. "reference": "ea956ddffab04f519a89858810e5f695b9def92b"
  2962. },
  2963. "dist": {
  2964. "type": "zip",
  2965. "url": "https://api.github.com/repos/hechoendrupal/drupal-console-en/zipball/ea956ddffab04f519a89858810e5f695b9def92b",
  2966. "reference": "ea956ddffab04f519a89858810e5f695b9def92b",
  2967. "shasum": ""
  2968. },
  2969. "type": "drupal-console-language",
  2970. "notification-url": "https://packagist.org/downloads/",
  2971. "license": [
  2972. "GPL-2.0-or-later"
  2973. ],
  2974. "authors": [
  2975. {
  2976. "name": "David Flores",
  2977. "email": "dmousex@gmail.com",
  2978. "homepage": "http://dmouse.net"
  2979. },
  2980. {
  2981. "name": "Jesus Manuel Olivas",
  2982. "email": "jesus.olivas@gmail.com",
  2983. "homepage": "http://jmolivas.com"
  2984. },
  2985. {
  2986. "name": "Drupal Console Contributors",
  2987. "homepage": "https://github.com/hechoendrupal/DrupalConsole/graphs/contributors"
  2988. },
  2989. {
  2990. "name": "Eduardo Garcia",
  2991. "email": "enzo@enzolutions.com",
  2992. "homepage": "http://enzolutions.com/"
  2993. },
  2994. {
  2995. "name": "Omar Aguirre",
  2996. "email": "omersguchigu@gmail.com"
  2997. }
  2998. ],
  2999. "description": "Drupal Console English Language",
  3000. "homepage": "http://drupalconsole.com/",
  3001. "keywords": [
  3002. "console",
  3003. "development",
  3004. "drupal",
  3005. "symfony"
  3006. ],
  3007. "time": "2018-03-21T19:16:27+00:00"
  3008. },
  3009. {
  3010. "name": "drupal/console-extend-plugin",
  3011. "version": "0.9.2",
  3012. "source": {
  3013. "type": "git",
  3014. "url": "https://github.com/hechoendrupal/drupal-console-extend-plugin.git",
  3015. "reference": "f3bac233fd305359c33e96621443b3bd065555cc"
  3016. },
  3017. "dist": {
  3018. "type": "zip",
  3019. "url": "https://api.github.com/repos/hechoendrupal/drupal-console-extend-plugin/zipball/f3bac233fd305359c33e96621443b3bd065555cc",
  3020. "reference": "f3bac233fd305359c33e96621443b3bd065555cc",
  3021. "shasum": ""
  3022. },
  3023. "require": {
  3024. "composer-plugin-api": "^1.0",
  3025. "symfony/finder": "~2.7|~3.0",
  3026. "symfony/yaml": "~2.7|~3.0"
  3027. },
  3028. "type": "composer-plugin",
  3029. "extra": {
  3030. "class": "Drupal\\Console\\Composer\\Plugin\\Extender"
  3031. },
  3032. "autoload": {
  3033. "psr-4": {
  3034. "Drupal\\Console\\Composer\\Plugin\\": "src"
  3035. }
  3036. },
  3037. "notification-url": "https://packagist.org/downloads/",
  3038. "license": [
  3039. "GPL-2.0+"
  3040. ],
  3041. "authors": [
  3042. {
  3043. "name": "Jesus Manuel Olivas",
  3044. "email": "jesus.olivas@gmail.com"
  3045. }
  3046. ],
  3047. "description": "Drupal Console Extend Plugin",
  3048. "time": "2017-07-28T17:11:54+00:00"
  3049. },
  3050. {
  3051. "name": "drupal/content_lock",
  3052. "version": "1.0.0-alpha8",
  3053. "source": {
  3054. "type": "git",
  3055. "url": "https://git.drupal.org/project/content_lock",
  3056. "reference": "8.x-1.0-alpha8"
  3057. },
  3058. "dist": {
  3059. "type": "zip",
  3060. "url": "https://ftp.drupal.org/files/projects/content_lock-8.x-1.0-alpha8.zip",
  3061. "reference": "8.x-1.0-alpha8",
  3062. "shasum": "dbb5986dbfbe325eb869a4ac42b88b266dc089c6"
  3063. },
  3064. "require": {
  3065. "drupal/core": "~8"
  3066. },
  3067. "require-dev": {
  3068. "drupal/conflict": "dev-2.x",
  3069. "drupal/prefetch_cache": "dev-1.x"
  3070. },
  3071. "type": "drupal-module",
  3072. "extra": {
  3073. "branch-alias": {
  3074. "dev-1.x": "1.x-dev"
  3075. },
  3076. "drupal": {
  3077. "version": "8.x-1.0-alpha8",
  3078. "datestamp": "1520356080",
  3079. "security-coverage": {
  3080. "status": "not-covered",
  3081. "message": "Alpha releases are not covered by Drupal security advisories."
  3082. }
  3083. }
  3084. },
  3085. "notification-url": "https://packages.drupal.org/8/downloads",
  3086. "license": [
  3087. "GPL-2.0-or-later"
  3088. ],
  3089. "authors": [
  3090. {
  3091. "name": "Joseph Zhao",
  3092. "homepage": "https://www.drupal.org/user/1987218"
  3093. },
  3094. {
  3095. "name": "chr.fritsch",
  3096. "homepage": "https://www.drupal.org/user/2103716"
  3097. },
  3098. {
  3099. "name": "ergonlogic",
  3100. "homepage": "https://www.drupal.org/user/368613"
  3101. }
  3102. ],
  3103. "description": "Prevents multiple users from trying to edit a content entity simultaneously to prevent edit conflicts.",
  3104. "homepage": "https://www.drupal.org/project/content_lock",
  3105. "support": {
  3106. "source": "http://cgit.drupalcode.org/content_lock"
  3107. }
  3108. },
  3109. {
  3110. "name": "drupal/context",
  3111. "version": "4.0.0-beta2",
  3112. "source": {
  3113. "type": "git",
  3114. "url": "https://git.drupal.org/project/context",
  3115. "reference": "8.x-4.0-beta2"
  3116. },
  3117. "dist": {
  3118. "type": "zip",
  3119. "url": "https://ftp.drupal.org/files/projects/context-8.x-4.0-beta2.zip",
  3120. "reference": "8.x-4.0-beta2",
  3121. "shasum": "e41bc912e1ec73bc4d08a3cf730dc2405a9213d3"
  3122. },
  3123. "require": {
  3124. "drupal/core": "~8.0"
  3125. },
  3126. "type": "drupal-module",
  3127. "extra": {
  3128. "branch-alias": {
  3129. "dev-4.x": "4.x-dev"
  3130. },
  3131. "drupal": {
  3132. "version": "8.x-4.0-beta2",
  3133. "datestamp": "1505378944",
  3134. "security-coverage": {
  3135. "status": "not-covered",
  3136. "message": "Beta releases are not covered by Drupal security advisories."
  3137. }
  3138. }
  3139. },
  3140. "notification-url": "https://packages.drupal.org/8/downloads",
  3141. "license": [
  3142. "MIT"
  3143. ],
  3144. "authors": [
  3145. {
  3146. "name": "Christoffer Palm",
  3147. "homepage": "http://www.oddhill.se/",
  3148. "email": "christoffer.palm@oddhill.se",
  3149. "role": "Developer"
  3150. },
  3151. {
  3152. "name": "Steven Jones",
  3153. "homepage": "https://www.drupal.org/user/99644"
  3154. },
  3155. {
  3156. "name": "alex_b",
  3157. "homepage": "https://www.drupal.org/user/53995"
  3158. },
  3159. {
  3160. "name": "boshtian",
  3161. "homepage": "https://www.drupal.org/user/1773456"
  3162. },
  3163. {
  3164. "name": "colan",
  3165. "homepage": "https://www.drupal.org/user/58704"
  3166. },
  3167. {
  3168. "name": "emanaton",
  3169. "homepage": "https://www.drupal.org/user/120853"
  3170. },
  3171. {
  3172. "name": "febbraro",
  3173. "homepage": "https://www.drupal.org/user/43670"
  3174. },
  3175. {
  3176. "name": "fizk",
  3177. "homepage": "https://www.drupal.org/user/473174"
  3178. },
  3179. {
  3180. "name": "hass",
  3181. "homepage": "https://www.drupal.org/user/85918"
  3182. },
  3183. {
  3184. "name": "hefox",
  3185. "homepage": "https://www.drupal.org/user/426416"
  3186. },
  3187. {
  3188. "name": "hyrcan",
  3189. "homepage": "https://www.drupal.org/user/26618"
  3190. },
  3191. {
  3192. "name": "jmiccolis",
  3193. "homepage": "https://www.drupal.org/user/31731"
  3194. },
  3195. {
  3196. "name": "nedjo",
  3197. "homepage": "https://www.drupal.org/user/4481"
  3198. },
  3199. {
  3200. "name": "tekante",
  3201. "homepage": "https://www.drupal.org/user/640024"
  3202. },
  3203. {
  3204. "name": "yhahn",
  3205. "homepage": "https://www.drupal.org/user/264833"
  3206. }
  3207. ],
  3208. "description": "Manage contextual conditions and reactions for different portions of your site.",
  3209. "homepage": "https://github.com/oddhill/context",
  3210. "keywords": [
  3211. "Drupal",
  3212. "block",
  3213. "conditions",
  3214. "context",
  3215. "visibility"
  3216. ],
  3217. "support": {
  3218. "source": "https://github.com/oddhill/context",
  3219. "issues": "https://github.com/oddhill/context/issues",
  3220. "docs": "https://github.com/oddhill/context"
  3221. }
  3222. },
  3223. {
  3224. "name": "drupal/core",
  3225. "version": "8.6.7",
  3226. "source": {
  3227. "type": "git",
  3228. "url": "https://github.com/drupal/core.git",
  3229. "reference": "e0a09bda1da7552204464894811a59387608c9f9"
  3230. },
  3231. "dist": {
  3232. "type": "zip",
  3233. "url": "https://api.github.com/repos/drupal/core/zipball/e0a09bda1da7552204464894811a59387608c9f9",
  3234. "reference": "e0a09bda1da7552204464894811a59387608c9f9",
  3235. "shasum": ""
  3236. },
  3237. "require": {
  3238. "asm89/stack-cors": "^1.1",
  3239. "composer/semver": "^1.0",
  3240. "doctrine/annotations": "^1.2",
  3241. "doctrine/common": "^2.5",
  3242. "easyrdf/easyrdf": "^0.9",
  3243. "egulias/email-validator": "^1.2",
  3244. "ext-date": "*",
  3245. "ext-dom": "*",
  3246. "ext-filter": "*",
  3247. "ext-gd": "*",
  3248. "ext-hash": "*",
  3249. "ext-json": "*",
  3250. "ext-pcre": "*",
  3251. "ext-pdo": "*",
  3252. "ext-session": "*",
  3253. "ext-simplexml": "*",
  3254. "ext-spl": "*",
  3255. "ext-tokenizer": "*",
  3256. "ext-xml": "*",
  3257. "guzzlehttp/guzzle": "^6.2.1",
  3258. "masterminds/html5": "^2.1",
  3259. "paragonie/random_compat": "^1.0|^2.0",
  3260. "php": "^5.5.9|>=7.0.8",
  3261. "stack/builder": "^1.0",
  3262. "symfony-cmf/routing": "^1.4",
  3263. "symfony/class-loader": "~3.4.0",
  3264. "symfony/console": "~3.4.0",
  3265. "symfony/dependency-injection": "~3.4.0",
  3266. "symfony/event-dispatcher": "~3.4.0",
  3267. "symfony/http-foundation": "~3.4.14",
  3268. "symfony/http-kernel": "~3.4.14",
  3269. "symfony/polyfill-iconv": "^1.0",
  3270. "symfony/process": "~3.4.0",
  3271. "symfony/psr-http-message-bridge": "^1.0",
  3272. "symfony/routing": "~3.4.0",
  3273. "symfony/serializer": "~3.4.0",
  3274. "symfony/translation": "~3.4.0",
  3275. "symfony/validator": "~3.4.0",
  3276. "symfony/yaml": "~3.4.5",
  3277. "twig/twig": "^1.35.0",
  3278. "typo3/phar-stream-wrapper": "^2.0.1",
  3279. "zendframework/zend-diactoros": "^1.1",
  3280. "zendframework/zend-feed": "^2.4"
  3281. },
  3282. "conflict": {
  3283. "drush/drush": "<8.1.10"
  3284. },
  3285. "replace": {
  3286. "drupal/action": "self.version",
  3287. "drupal/aggregator": "self.version",
  3288. "drupal/automated_cron": "self.version",
  3289. "drupal/ban": "self.version",
  3290. "drupal/bartik": "self.version",
  3291. "drupal/basic_auth": "self.version",
  3292. "drupal/big_pipe": "self.version",
  3293. "drupal/block": "self.version",
  3294. "drupal/block_content": "self.version",
  3295. "drupal/block_place": "self.version",
  3296. "drupal/book": "self.version",
  3297. "drupal/breakpoint": "self.version",
  3298. "drupal/ckeditor": "self.version",
  3299. "drupal/classy": "self.version",
  3300. "drupal/color": "self.version",
  3301. "drupal/comment": "self.version",
  3302. "drupal/config": "self.version",
  3303. "drupal/config_translation": "self.version",
  3304. "drupal/contact": "self.version",
  3305. "drupal/content_moderation": "self.version",
  3306. "drupal/content_translation": "self.version",
  3307. "drupal/contextual": "self.version",
  3308. "drupal/core-annotation": "self.version",
  3309. "drupal/core-assertion": "self.version",
  3310. "drupal/core-bridge": "self.version",
  3311. "drupal/core-class-finder": "self.version",
  3312. "drupal/core-datetime": "self.version",
  3313. "drupal/core-dependency-injection": "self.version",
  3314. "drupal/core-diff": "self.version",
  3315. "drupal/core-discovery": "self.version",
  3316. "drupal/core-event-dispatcher": "self.version",
  3317. "drupal/core-file-cache": "self.version",
  3318. "drupal/core-filesystem": "self.version",
  3319. "drupal/core-gettext": "self.version",
  3320. "drupal/core-graph": "self.version",
  3321. "drupal/core-http-foundation": "self.version",
  3322. "drupal/core-php-storage": "self.version",
  3323. "drupal/core-plugin": "self.version",
  3324. "drupal/core-proxy-builder": "self.version",
  3325. "drupal/core-render": "self.version",
  3326. "drupal/core-serialization": "self.version",
  3327. "drupal/core-transliteration": "self.version",
  3328. "drupal/core-utility": "self.version",
  3329. "drupal/core-uuid": "self.version",
  3330. "drupal/datetime": "self.version",
  3331. "drupal/datetime_range": "self.version",
  3332. "drupal/dblog": "self.version",
  3333. "drupal/dynamic_page_cache": "self.version",
  3334. "drupal/editor": "self.version",
  3335. "drupal/entity_reference": "self.version",
  3336. "drupal/field": "self.version",
  3337. "drupal/field_layout": "self.version",
  3338. "drupal/field_ui": "self.version",
  3339. "drupal/file": "self.version",
  3340. "drupal/filter": "self.version",
  3341. "drupal/forum": "self.version",
  3342. "drupal/hal": "self.version",
  3343. "drupal/help": "self.version",
  3344. "drupal/history": "self.version",
  3345. "drupal/image": "self.version",
  3346. "drupal/inline_form_errors": "self.version",
  3347. "drupal/language": "self.version",
  3348. "drupal/layout_builder": "self.version",
  3349. "drupal/layout_discovery": "self.version",
  3350. "drupal/link": "self.version",
  3351. "drupal/locale": "self.version",
  3352. "drupal/media": "self.version",
  3353. "drupal/media_library": "self.version",
  3354. "drupal/menu_link_content": "self.version",
  3355. "drupal/menu_ui": "self.version",
  3356. "drupal/migrate": "self.version",
  3357. "drupal/migrate_drupal": "self.version",
  3358. "drupal/migrate_drupal_multilingual": "self.version",
  3359. "drupal/migrate_drupal_ui": "self.version",
  3360. "drupal/minimal": "self.version",
  3361. "drupal/node": "self.version",
  3362. "drupal/options": "self.version",
  3363. "drupal/page_cache": "self.version",
  3364. "drupal/path": "self.version",
  3365. "drupal/quickedit": "self.version",
  3366. "drupal/rdf": "self.version",
  3367. "drupal/responsive_image": "self.version",
  3368. "drupal/rest": "self.version",
  3369. "drupal/search": "self.version",
  3370. "drupal/serialization": "self.version",
  3371. "drupal/settings_tray": "self.version",
  3372. "drupal/seven": "self.version",
  3373. "drupal/shortcut": "self.version",
  3374. "drupal/simpletest": "self.version",
  3375. "drupal/standard": "self.version",
  3376. "drupal/stark": "self.version",
  3377. "drupal/statistics": "self.version",
  3378. "drupal/syslog": "self.version",
  3379. "drupal/system": "self.version",
  3380. "drupal/taxonomy": "self.version",
  3381. "drupal/telephone": "self.version",
  3382. "drupal/text": "self.version",
  3383. "drupal/toolbar": "self.version",
  3384. "drupal/tour": "self.version",
  3385. "drupal/tracker": "self.version",
  3386. "drupal/update": "self.version",
  3387. "drupal/user": "self.version",
  3388. "drupal/views": "self.version",
  3389. "drupal/views_ui": "self.version",
  3390. "drupal/workflows": "self.version",
  3391. "drupal/workspaces": "self.version"
  3392. },
  3393. "require-dev": {
  3394. "behat/mink": "1.7.x-dev",
  3395. "behat/mink-goutte-driver": "^1.2",
  3396. "behat/mink-selenium2-driver": "1.3.x-dev",
  3397. "drupal/coder": "^8.2.12",
  3398. "jcalderonzumba/gastonjs": "^1.0.2",
  3399. "jcalderonzumba/mink-phantomjs-driver": "^0.3.1",
  3400. "mikey179/vfsstream": "^1.2",
  3401. "phpspec/prophecy": "^1.7",
  3402. "phpunit/phpunit": "^4.8.35 || ^6.5",
  3403. "symfony/css-selector": "^3.4.0",
  3404. "symfony/debug": "^3.4.0",
  3405. "symfony/phpunit-bridge": "^3.4.3"
  3406. },
  3407. "type": "drupal-core",
  3408. "extra": {
  3409. "merge-plugin": {
  3410. "require": [
  3411. "core/lib/Drupal/Component/Annotation/composer.json",
  3412. "core/lib/Drupal/Component/Assertion/composer.json",
  3413. "core/lib/Drupal/Component/Bridge/composer.json",
  3414. "core/lib/Drupal/Component/ClassFinder/composer.json",
  3415. "core/lib/Drupal/Component/Datetime/composer.json",
  3416. "core/lib/Drupal/Component/DependencyInjection/composer.json",
  3417. "core/lib/Drupal/Component/Diff/composer.json",
  3418. "core/lib/Drupal/Component/Discovery/composer.json",
  3419. "core/lib/Drupal/Component/EventDispatcher/composer.json",
  3420. "core/lib/Drupal/Component/FileCache/composer.json",
  3421. "core/lib/Drupal/Component/FileSystem/composer.json",
  3422. "core/lib/Drupal/Component/Gettext/composer.json",
  3423. "core/lib/Drupal/Component/Graph/composer.json",
  3424. "core/lib/Drupal/Component/HttpFoundation/composer.json",
  3425. "core/lib/Drupal/Component/PhpStorage/composer.json",
  3426. "core/lib/Drupal/Component/Plugin/composer.json",
  3427. "core/lib/Drupal/Component/ProxyBuilder/composer.json",
  3428. "core/lib/Drupal/Component/Render/composer.json",
  3429. "core/lib/Drupal/Component/Serialization/composer.json",
  3430. "core/lib/Drupal/Component/Transliteration/composer.json",
  3431. "core/lib/Drupal/Component/Utility/composer.json",
  3432. "core/lib/Drupal/Component/Uuid/composer.json"
  3433. ],
  3434. "recurse": false,
  3435. "replace": false,
  3436. "merge-extra": false
  3437. }
  3438. },
  3439. "autoload": {
  3440. "psr-4": {
  3441. "Drupal\\Core\\": "lib/Drupal/Core",
  3442. "Drupal\\Component\\": "lib/Drupal/Component",
  3443. "Drupal\\Driver\\": "../drivers/lib/Drupal/Driver"
  3444. },
  3445. "classmap": [
  3446. "lib/Drupal.php",
  3447. "lib/Drupal/Component/Utility/Timer.php",
  3448. "lib/Drupal/Component/Utility/Unicode.php",
  3449. "lib/Drupal/Core/Database/Database.php",
  3450. "lib/Drupal/Core/DrupalKernel.php",
  3451. "lib/Drupal/Core/DrupalKernelInterface.php",
  3452. "lib/Drupal/Core/Site/Settings.php"
  3453. ]
  3454. },
  3455. "notification-url": "https://packagist.org/downloads/",
  3456. "license": [
  3457. "GPL-2.0-or-later"
  3458. ],
  3459. "description": "Drupal is an open source content management platform powering millions of websites and applications.",
  3460. "time": "2019-01-16T23:30:03+00:00"
  3461. },
  3462. {
  3463. "name": "drupal/cshs",
  3464. "version": "dev-1.x",
  3465. "source": {
  3466. "type": "git",
  3467. "url": "https://git.drupal.org/project/cshs",
  3468. "reference": "c4a2deff253e24c83b14f960ce9dce49fa115f60"
  3469. },
  3470. "require": {
  3471. "drupal/core": "*"
  3472. },
  3473. "type": "drupal-module",
  3474. "extra": {
  3475. "branch-alias": {
  3476. "dev-1.x": "1.x-dev"
  3477. },
  3478. "drupal": {
  3479. "version": "8.x-1.0-beta4+4-dev",
  3480. "datestamp": "1512800285",
  3481. "security-coverage": {
  3482. "status": "not-covered",
  3483. "message": "Dev releases are not covered by Drupal security advisories."
  3484. }
  3485. }
  3486. },
  3487. "notification-url": "https://packages.drupal.org/8/downloads",
  3488. "license": [
  3489. "GPL-2.0-or-later"
  3490. ],
  3491. "authors": [
  3492. {
  3493. "name": "BR0kEN",
  3494. "homepage": "https://www.drupal.org/user/2802285"
  3495. },
  3496. {
  3497. "name": "purushotam.rai",
  3498. "homepage": "https://www.drupal.org/user/3193859"
  3499. },
  3500. {
  3501. "name": "valderama",
  3502. "homepage": "https://www.drupal.org/user/103634"
  3503. }
  3504. ],
  3505. "description": "A simple client-side hierarchical select widget for taxonomy terms.",
  3506. "homepage": "https://www.drupal.org/project/cshs",
  3507. "support": {
  3508. "source": "http://cgit.drupalcode.org/cshs"
  3509. },
  3510. "time": "2018-06-24T13:39:17+00:00"
  3511. },
  3512. {
  3513. "name": "drupal/ctools",
  3514. "version": "3.0.0",
  3515. "source": {
  3516. "type": "git",
  3517. "url": "https://git.drupal.org/project/ctools",
  3518. "reference": "8.x-3.0"
  3519. },
  3520. "dist": {
  3521. "type": "zip",
  3522. "url": "https://ftp.drupal.org/files/projects/ctools-8.x-3.0.zip",
  3523. "reference": "8.x-3.0",
  3524. "shasum": "302e869ecd1e59fe55663673999fee2ccac5daa8"
  3525. },
  3526. "require": {
  3527. "drupal/core": "~8.0"
  3528. },
  3529. "type": "drupal-module",
  3530. "extra": {
  3531. "branch-alias": {
  3532. "dev-3.x": "3.x-dev"
  3533. },
  3534. "drupal": {
  3535. "version": "8.x-3.0",
  3536. "datestamp": "1493401742",
  3537. "security-coverage": {
  3538. "status": "covered",
  3539. "message": "Covered by Drupal's security advisory policy"
  3540. }
  3541. }
  3542. },
  3543. "notification-url": "https://packages.drupal.org/8/downloads",
  3544. "license": [
  3545. "GPL-2.0+"
  3546. ],
  3547. "authors": [
  3548. {
  3549. "name": "Kris Vanderwater (EclipseGc)",
  3550. "homepage": "https://www.drupal.org/u/eclipsegc",
  3551. "role": "Maintainer"
  3552. },
  3553. {
  3554. "name": "Jakob Perry (japerry)",
  3555. "homepage": "https://www.drupal.org/u/japerry",
  3556. "role": "Maintainer"
  3557. },
  3558. {
  3559. "name": "Tim Plunkett (tim.plunkett)",
  3560. "homepage": "https://www.drupal.org/u/timplunkett",
  3561. "role": "Maintainer"
  3562. },
  3563. {
  3564. "name": "James Gilliland (neclimdul)",
  3565. "homepage": "https://www.drupal.org/u/neclimdul",
  3566. "role": "Maintainer"
  3567. },
  3568. {
  3569. "name": "Daniel Wehner (dawehner)",
  3570. "homepage": "https://www.drupal.org/u/dawehner",
  3571. "role": "Maintainer"
  3572. },
  3573. {
  3574. "name": "joelpittet",
  3575. "homepage": "https://www.drupal.org/user/160302"
  3576. },
  3577. {
  3578. "name": "merlinofchaos",
  3579. "homepage": "https://www.drupal.org/user/26979"
  3580. },
  3581. {
  3582. "name": "neclimdul",
  3583. "homepage": "https://www.drupal.org/user/48673"
  3584. },
  3585. {
  3586. "name": "sdboyer",
  3587. "homepage": "https://www.drupal.org/user/146719"
  3588. },
  3589. {
  3590. "name": "sun",
  3591. "homepage": "https://www.drupal.org/user/54136"
  3592. },
  3593. {
  3594. "name": "tim.plunkett",
  3595. "homepage": "https://www.drupal.org/user/241634"
  3596. }
  3597. ],
  3598. "description": "Provides a number of utility and helper APIs for Drupal developers and site builders.",
  3599. "homepage": "https://www.drupal.org/project/ctools",
  3600. "support": {
  3601. "source": "http://cgit.drupalcode.org/ctools",
  3602. "issues": "https://www.drupal.org/project/issues/ctools"
  3603. }
  3604. },
  3605. {
  3606. "name": "drupal/date_range_formatter",
  3607. "version": "3.1.0",
  3608. "source": {
  3609. "type": "git",
  3610. "url": "https://git.drupal.org/project/date_range_formatter",
  3611. "reference": "8.x-3.1"
  3612. },
  3613. "dist": {
  3614. "type": "zip",
  3615. "url": "https://ftp.drupal.org/files/projects/date_range_formatter-8.x-3.1.zip",
  3616. "reference": "8.x-3.1",
  3617. "shasum": "a98c511ac90eb92879235bc82a3aa643f7b5c173"
  3618. },
  3619. "require": {
  3620. "drupal/core": "*"
  3621. },
  3622. "type": "drupal-module",
  3623. "extra": {
  3624. "branch-alias": {
  3625. "dev-3.x": "3.x-dev"
  3626. },
  3627. "drupal": {
  3628. "version": "8.x-3.1",
  3629. "datestamp": "1502454544",
  3630. "security-coverage": {
  3631. "status": "covered",
  3632. "message": "Covered by Drupal's security advisory policy"
  3633. }
  3634. }
  3635. },
  3636. "notification-url": "https://packages.drupal.org/8/downloads",
  3637. "license": [
  3638. "GPL-2.0-or-later"
  3639. ],
  3640. "authors": [
  3641. {
  3642. "name": "Sudishth",
  3643. "homepage": "https://www.drupal.org/user/1440562"
  3644. },
  3645. {
  3646. "name": "maximpodorov",
  3647. "homepage": "https://www.drupal.org/user/515310"
  3648. }
  3649. ],
  3650. "description": "Formats date ranges.",
  3651. "homepage": "https://www.drupal.org/project/date_range_formatter",
  3652. "support": {
  3653. "source": "http://cgit.drupalcode.org/date_range_formatter"
  3654. }
  3655. },
  3656. {
  3657. "name": "drupal/devel",
  3658. "version": "1.2.0",
  3659. "source": {
  3660. "type": "git",
  3661. "url": "https://git.drupal.org/project/devel",
  3662. "reference": "8.x-1.2"
  3663. },
  3664. "dist": {
  3665. "type": "zip",
  3666. "url": "https://ftp.drupal.org/files/projects/devel-8.x-1.2.zip",
  3667. "reference": "8.x-1.2",
  3668. "shasum": "01f3349ef75f6e21fceef24be9d3d6506ca29647"
  3669. },
  3670. "require": {
  3671. "drupal/core": "~8.0"
  3672. },
  3673. "suggest": {
  3674. "symfony/var-dumper": "Pretty print complex values better with var-dumper available"
  3675. },
  3676. "type": "drupal-module",
  3677. "extra": {
  3678. "branch-alias": {
  3679. "dev-1.x": "1.x-dev"
  3680. },
  3681. "drupal": {
  3682. "version": "8.x-1.2",
  3683. "datestamp": "1507197844",
  3684. "security-coverage": {
  3685. "status": "covered",
  3686. "message": "Covered by Drupal's security advisory policy"
  3687. }
  3688. }
  3689. },
  3690. "notification-url": "https://packages.drupal.org/8/downloads",
  3691. "license": [
  3692. "GPL-2.0+"
  3693. ],
  3694. "authors": [
  3695. {
  3696. "name": "Moshe Weitzman",
  3697. "homepage": "https://github.com/weitzman",
  3698. "email": "weitzman@tejasa.com",
  3699. "role": "Maintainer"
  3700. },
  3701. {
  3702. "name": "Hans Salvisberg",
  3703. "homepage": "https://www.drupal.org/u/salvis",
  3704. "email": "drupal@salvisberg.com",
  3705. "role": "Maintainer"
  3706. },
  3707. {
  3708. "name": "Luca Lusso",
  3709. "homepage": "https://www.drupal.org/u/lussoluca",
  3710. "role": "Maintainer"
  3711. },
  3712. {
  3713. "name": "Marco (willzyx)",
  3714. "homepage": "https://www.drupal.org/u/willzyx",
  3715. "role": "Maintainer"
  3716. },
  3717. {
  3718. "name": "See contributors",
  3719. "homepage": "https://www.drupal.org/node/3236/committers"
  3720. },
  3721. {
  3722. "name": "salvis",
  3723. "homepage": "https://www.drupal.org/user/82964"
  3724. },
  3725. {
  3726. "name": "willzyx",
  3727. "homepage": "https://www.drupal.org/user/1043862"
  3728. }
  3729. ],
  3730. "description": "Various blocks, pages, and functions for developers.",
  3731. "homepage": "http://drupal.org/project/devel",
  3732. "support": {
  3733. "source": "http://cgit.drupalcode.org/devel",
  3734. "issues": "http://drupal.org/project/devel",
  3735. "irc": "irc://irc.freenode.org/drupal-contribute"
  3736. }
  3737. },
  3738. {
  3739. "name": "drupal/devel_generate",
  3740. "version": "1.2.0",
  3741. "require": {
  3742. "drupal/core": "~8.0",
  3743. "drupal/devel": "self.version"
  3744. },
  3745. "type": "metapackage",
  3746. "extra": {
  3747. "branch-alias": {
  3748. "dev-1.x": "1.x-dev"
  3749. },
  3750. "drupal": {
  3751. "version": "8.x-1.2",
  3752. "datestamp": "1507197844",
  3753. "security-coverage": {
  3754. "status": "covered",
  3755. "message": "Covered by Drupal's security advisory policy"
  3756. }
  3757. }
  3758. },
  3759. "notification-url": "https://packages.drupal.org/8/downloads",
  3760. "license": [
  3761. "GPL-2.0-or-later"
  3762. ],
  3763. "authors": [
  3764. {
  3765. "name": "catch",
  3766. "homepage": "https://www.drupal.org/user/35733"
  3767. },
  3768. {
  3769. "name": "juampynr",
  3770. "homepage": "https://www.drupal.org/user/682736"
  3771. },
  3772. {
  3773. "name": "lussoluca",
  3774. "homepage": "https://www.drupal.org/user/138068"
  3775. },
  3776. {
  3777. "name": "moshe weitzman",
  3778. "homepage": "https://www.drupal.org/user/23"
  3779. },
  3780. {
  3781. "name": "pcambra",
  3782. "homepage": "https://www.drupal.org/user/122101"
  3783. },
  3784. {
  3785. "name": "salvis",
  3786. "homepage": "https://www.drupal.org/user/82964"
  3787. },
  3788. {
  3789. "name": "willzyx",
  3790. "homepage": "https://www.drupal.org/user/1043862"
  3791. }
  3792. ],
  3793. "description": "Generate dummy users, nodes, menus, taxonomy terms...",
  3794. "homepage": "https://www.drupal.org/project/devel",
  3795. "support": {
  3796. "source": "http://cgit.drupalcode.org/devel"
  3797. }
  3798. },
  3799. {
  3800. "name": "drupal/domain",
  3801. "version": "dev-1.x",
  3802. "source": {
  3803. "type": "git",
  3804. "url": "https://git.drupal.org/project/domain",
  3805. "reference": "ff62d2096b166f4709e0e0d6ddf4b120cb3647ca"
  3806. },
  3807. "require": {
  3808. "drupal/core": "^8.5"
  3809. },
  3810. "require-dev": {
  3811. "drupal/domain_access": "*"
  3812. },
  3813. "type": "drupal-module",
  3814. "extra": {
  3815. "branch-alias": {
  3816. "dev-1.x": "1.x-dev"
  3817. },
  3818. "drupal": {
  3819. "version": "8.x-1.0-alpha14+23-dev",
  3820. "datestamp": "1543354380",
  3821. "security-coverage": {
  3822. "status": "not-covered",
  3823. "message": "Dev releases are not covered by Drupal security advisories."
  3824. }
  3825. }
  3826. },
  3827. "notification-url": "https://packages.drupal.org/8/downloads",
  3828. "license": [
  3829. "GPL-2.0-or-later"
  3830. ],
  3831. "authors": [
  3832. {
  3833. "name": "agentrickard",
  3834. "homepage": "https://www.drupal.org/user/20975"
  3835. },
  3836. {
  3837. "name": "nonsie",
  3838. "homepage": "https://www.drupal.org/user/29899"
  3839. }
  3840. ],
  3841. "description": "Creates domain records within a Drupal installation.",
  3842. "homepage": "https://www.drupal.org/project/domain",
  3843. "support": {
  3844. "source": "http://cgit.drupalcode.org/domain"
  3845. },
  3846. "time": "2019-01-04T19:11:55+00:00"
  3847. },
  3848. {
  3849. "name": "drupal/domain_alias",
  3850. "version": "dev-1.x",
  3851. "require": {
  3852. "drupal/core": "~8.0",
  3853. "drupal/domain": "self.version"
  3854. },
  3855. "type": "metapackage",
  3856. "extra": {
  3857. "branch-alias": {
  3858. "dev-1.x": "1.x-dev"
  3859. },
  3860. "drupal": {
  3861. "version": "8.x-1.0-alpha14+23-dev",
  3862. "datestamp": "1543354380",
  3863. "security-coverage": {
  3864. "status": "not-covered",
  3865. "message": "Dev releases are not covered by Drupal security advisories."
  3866. }
  3867. }
  3868. },
  3869. "notification-url": "https://packages.drupal.org/8/downloads",
  3870. "license": [
  3871. "GPL-2.0-or-later"
  3872. ],
  3873. "authors": [
  3874. {
  3875. "name": "agentrickard",
  3876. "homepage": "https://www.drupal.org/user/20975"
  3877. },
  3878. {
  3879. "name": "nonsie",
  3880. "homepage": "https://www.drupal.org/user/29899"
  3881. }
  3882. ],
  3883. "description": "Maps multiple host requests to a single domain record.",
  3884. "homepage": "https://www.drupal.org/project/domain",
  3885. "support": {
  3886. "source": "http://cgit.drupalcode.org/domain"
  3887. }
  3888. },
  3889. {
  3890. "name": "drupal/domain_config",
  3891. "version": "dev-1.x",
  3892. "require": {
  3893. "drupal/core": "~8.0",
  3894. "drupal/domain": "self.version"
  3895. },
  3896. "type": "metapackage",
  3897. "extra": {
  3898. "branch-alias": {
  3899. "dev-1.x": "1.x-dev"
  3900. },
  3901. "drupal": {
  3902. "version": "8.x-1.0-alpha14+23-dev",
  3903. "datestamp": "1543354380",
  3904. "security-coverage": {
  3905. "status": "not-covered",
  3906. "message": "Dev releases are not covered by Drupal security advisories."
  3907. }
  3908. }
  3909. },
  3910. "notification-url": "https://packages.drupal.org/8/downloads",
  3911. "license": [
  3912. "GPL-2.0-or-later"
  3913. ],
  3914. "authors": [
  3915. {
  3916. "name": "agentrickard",
  3917. "homepage": "https://www.drupal.org/user/20975"
  3918. },
  3919. {
  3920. "name": "nonsie",
  3921. "homepage": "https://www.drupal.org/user/29899"
  3922. }
  3923. ],
  3924. "description": "Allows domain specific configuration.",
  3925. "homepage": "https://www.drupal.org/project/domain",
  3926. "support": {
  3927. "source": "http://cgit.drupalcode.org/domain"
  3928. }
  3929. },
  3930. {
  3931. "name": "drupal/domain_site_settings",
  3932. "version": "1.3.0",
  3933. "source": {
  3934. "type": "git",
  3935. "url": "https://git.drupal.org/project/domain_site_settings",
  3936. "reference": "8.x-1.3"
  3937. },
  3938. "dist": {
  3939. "type": "zip",
  3940. "url": "https://ftp.drupal.org/files/projects/domain_site_settings-8.x-1.3.zip",
  3941. "reference": "8.x-1.3",
  3942. "shasum": "36ad22d8e31400f372b9e7f587578061b4fdc5db"
  3943. },
  3944. "require": {
  3945. "drupal/core": "~8.0",
  3946. "drupal/domain": "*",
  3947. "drupal/domain_config": "*"
  3948. },
  3949. "type": "drupal-module",
  3950. "extra": {
  3951. "branch-alias": {
  3952. "dev-1.x": "1.x-dev"
  3953. },
  3954. "drupal": {
  3955. "version": "8.x-1.3",
  3956. "datestamp": "1537684980",
  3957. "security-coverage": {
  3958. "status": "covered",
  3959. "message": "Covered by Drupal's security advisory policy"
  3960. }
  3961. }
  3962. },
  3963. "notification-url": "https://packages.drupal.org/8/downloads",
  3964. "license": [
  3965. "GPL-2.0+"
  3966. ],
  3967. "authors": [
  3968. {
  3969. "name": "aloknarwaria",
  3970. "homepage": "https://www.drupal.org/user/906640"
  3971. }
  3972. ],
  3973. "description": "Basic Site Setting for Domains.",
  3974. "homepage": "https://www.drupal.org/project/domain_site_settings",
  3975. "keywords": [
  3976. "Drupal"
  3977. ],
  3978. "support": {
  3979. "source": "http://cgit.drupalcode.org/domain_site_settings",
  3980. "issues": "https://www.drupal.org/project/issues/domain_site_settings"
  3981. }
  3982. },
  3983. {
  3984. "name": "drupal/email_registration",
  3985. "version": "1.0.0-rc6",
  3986. "source": {
  3987. "type": "git",
  3988. "url": "https://git.drupal.org/project/email_registration",
  3989. "reference": "8.x-1.0-rc6"
  3990. },
  3991. "dist": {
  3992. "type": "zip",
  3993. "url": "https://ftp.drupal.org/files/projects/email_registration-8.x-1.0-rc6.zip",
  3994. "reference": "8.x-1.0-rc6",
  3995. "shasum": "b004bc24b79faaa9e8b2fe59a04eaab02f44c363"
  3996. },
  3997. "require": {
  3998. "drupal/core": "*"
  3999. },
  4000. "type": "drupal-module",
  4001. "extra": {
  4002. "branch-alias": {
  4003. "dev-1.x": "1.x-dev"
  4004. },
  4005. "drupal": {
  4006. "version": "8.x-1.0-rc6",
  4007. "datestamp": "1545350880",
  4008. "security-coverage": {
  4009. "status": "not-covered",
  4010. "message": "RC releases are not covered by Drupal security advisories."
  4011. }
  4012. }
  4013. },
  4014. "notification-url": "https://packages.drupal.org/8/downloads",
  4015. "license": [
  4016. "GPL-2.0+"
  4017. ],
  4018. "authors": [
  4019. {
  4020. "name": "Greg Knaddison (greggles)",
  4021. "homepage": "https://www.drupal.org/u/greggles",
  4022. "role": "Maintainer"
  4023. },
  4024. {
  4025. "name": "Andrey Postnikov (andypost)",
  4026. "homepage": "https://www.drupal.org/u/andypost",
  4027. "role": "Maintainer"
  4028. },
  4029. {
  4030. "name": "Chris Herberte",
  4031. "homepage": "https://www.drupal.org/u/chris-herberte",
  4032. "role": "Maintainer"
  4033. },
  4034. {
  4035. "name": "Moshe Weitzman (moshe weitzman)",
  4036. "homepage": "https://www.drupal.org/u/moshe-weitzman",
  4037. "role": "Maintainer"
  4038. }
  4039. ],
  4040. "description": "Allows users to register with an email address as their username.",
  4041. "homepage": "https://www.drupal.org/project/email_registration",
  4042. "support": {
  4043. "source": "http://cgit.drupalcode.org/email_registration",
  4044. "issues": "http://drupal.org/project/issues/email_registration"
  4045. }
  4046. },
  4047. {
  4048. "name": "drupal/embed",
  4049. "version": "1.0.0",
  4050. "source": {
  4051. "type": "git",
  4052. "url": "https://git.drupal.org/project/embed",
  4053. "reference": "8.x-1.0"
  4054. },
  4055. "dist": {
  4056. "type": "zip",
  4057. "url": "https://ftp.drupal.org/files/projects/embed-8.x-1.0.zip",
  4058. "reference": "8.x-1.0",
  4059. "shasum": "cc746ad807260e01c7788dd82110dcebbb4d678a"
  4060. },
  4061. "require": {
  4062. "drupal/core": "~8.0"
  4063. },
  4064. "type": "drupal-module",
  4065. "extra": {
  4066. "branch-alias": {
  4067. "dev-1.x": "1.x-dev"
  4068. },
  4069. "drupal": {
  4070. "version": "8.x-1.0",
  4071. "datestamp": "1490755685",
  4072. "security-coverage": {
  4073. "status": "covered",
  4074. "message": "Covered by Drupal's security advisory policy"
  4075. }
  4076. }
  4077. },
  4078. "notification-url": "https://packages.drupal.org/8/downloads",
  4079. "license": [
  4080. "GPL-2.0+"
  4081. ],
  4082. "authors": [
  4083. {
  4084. "name": "Dave Reid",
  4085. "homepage": "https://www.drupal.org/user/53892"
  4086. },
  4087. {
  4088. "name": "Devin Carlson",
  4089. "homepage": "https://www.drupal.org/user/290182"
  4090. },
  4091. {
  4092. "name": "Drupal Media Team",
  4093. "homepage": "https://www.drupal.org/user/3260690"
  4094. },
  4095. {
  4096. "name": "cs_shadow",
  4097. "homepage": "https://www.drupal.org/user/2828287"
  4098. },
  4099. {
  4100. "name": "slashrsm",
  4101. "homepage": "https://www.drupal.org/user/744628"
  4102. }
  4103. ],
  4104. "description": "Provide a framework for various different types of embeds in WYSIWYG editors, common functionality, interfaces, and standards.",
  4105. "homepage": "https://www.drupal.org/project/embed",
  4106. "support": {
  4107. "source": "http://cgit.drupalcode.org/embed",
  4108. "issues": "https://www.drupal.org/project/issues/embed",
  4109. "irc": "irc://irc.freenode.org/drupal-media"
  4110. }
  4111. },
  4112. {
  4113. "name": "drupal/entity",
  4114. "version": "1.0.0-rc1",
  4115. "source": {
  4116. "type": "git",
  4117. "url": "https://git.drupal.org/project/entity",
  4118. "reference": "8.x-1.0-rc1"
  4119. },
  4120. "dist": {
  4121. "type": "zip",
  4122. "url": "https://ftp.drupal.org/files/projects/entity-8.x-1.0-rc1.zip",
  4123. "reference": "8.x-1.0-rc1",
  4124. "shasum": "f2dcd7afd0d36b6f261b10a204057a5c801ad20b"
  4125. },
  4126. "require": {
  4127. "drupal/core": "^8.6"
  4128. },
  4129. "type": "drupal-module",
  4130. "extra": {
  4131. "branch-alias": {
  4132. "dev-1.x": "1.x-dev"
  4133. },
  4134. "drupal": {
  4135. "version": "8.x-1.0-rc1",
  4136. "datestamp": "1539272769",
  4137. "security-coverage": {
  4138. "status": "not-covered",
  4139. "message": "RC releases are not covered by Drupal security advisories."
  4140. }
  4141. }
  4142. },
  4143. "notification-url": "https://packages.drupal.org/8/downloads",
  4144. "license": [
  4145. "GPL-2.0+"
  4146. ],
  4147. "authors": [
  4148. {
  4149. "name": "Berdir",
  4150. "homepage": "https://www.drupal.org/user/214652"
  4151. },
  4152. {
  4153. "name": "bojanz",
  4154. "homepage": "https://www.drupal.org/user/86106"
  4155. },
  4156. {
  4157. "name": "dawehner",
  4158. "homepage": "https://www.drupal.org/user/99340"
  4159. },
  4160. {
  4161. "name": "dixon_",
  4162. "homepage": "https://www.drupal.org/user/239911"
  4163. },
  4164. {
  4165. "name": "fago",
  4166. "homepage": "https://www.drupal.org/user/16747"
  4167. }
  4168. ],
  4169. "description": "Provides expanded entity APIs, which will be moved to Drupal core one day.",
  4170. "homepage": "http://drupal.org/project/entity",
  4171. "support": {
  4172. "source": "http://cgit.drupalcode.org/entity"
  4173. }
  4174. },
  4175. {
  4176. "name": "drupal/entity_browser",
  4177. "version": "2.0.0",
  4178. "source": {
  4179. "type": "git",
  4180. "url": "https://git.drupal.org/project/entity_browser",
  4181. "reference": "8.x-2.0"
  4182. },
  4183. "dist": {
  4184. "type": "zip",
  4185. "url": "https://ftp.drupal.org/files/projects/entity_browser-8.x-2.0.zip",
  4186. "reference": "8.x-2.0",
  4187. "shasum": "683a7a252c947433c7b78bb838d6d8973c13cf77"
  4188. },
  4189. "require": {
  4190. "drupal/core": "~8.0"
  4191. },
  4192. "require-dev": {
  4193. "drupal/ctools": "*",
  4194. "drupal/inline_entity_form": "*",
  4195. "drupal/paragraphs": "*",
  4196. "drupal/token": "*"
  4197. },
  4198. "type": "drupal-module",
  4199. "extra": {
  4200. "branch-alias": {
  4201. "dev-2.x": "2.x-dev",
  4202. "dev-8.x-1.x": "8.1.x-dev"
  4203. },
  4204. "drupal": {
  4205. "version": "8.x-2.0",
  4206. "datestamp": "1536328684",
  4207. "security-coverage": {
  4208. "status": "covered",
  4209. "message": "Covered by Drupal's security advisory policy"
  4210. }
  4211. }
  4212. },
  4213. "notification-url": "https://packages.drupal.org/8/downloads",
  4214. "license": [
  4215. "GPL-2.0+"
  4216. ],
  4217. "authors": [
  4218. {
  4219. "name": "Janez Urevc",
  4220. "homepage": "https://github.com/slashrsm",
  4221. "role": "Maintainer"
  4222. },
  4223. {
  4224. "name": "Primoz Hmeljak",
  4225. "homepage": "https://github.com/primsi",
  4226. "role": "Maintainer"
  4227. },
  4228. {
  4229. "name": "See other contributors",
  4230. "homepage": "https://www.drupal.org/node/1943336/committers",
  4231. "role": "contributor"
  4232. },
  4233. {
  4234. "name": "Primsi",
  4235. "homepage": "https://www.drupal.org/user/282629"
  4236. },
  4237. {
  4238. "name": "marcingy",
  4239. "homepage": "https://www.drupal.org/user/77320"
  4240. },
  4241. {
  4242. "name": "samuel.mortenson",
  4243. "homepage": "https://www.drupal.org/user/2582268"
  4244. },
  4245. {
  4246. "name": "slashrsm",
  4247. "homepage": "https://www.drupal.org/user/744628"
  4248. }
  4249. ],
  4250. "description": "Entity browsing and selecting component.",
  4251. "homepage": "http://drupal.org/project/entity_browser",
  4252. "support": {
  4253. "source": "http://cgit.drupalcode.org/entity_browser",
  4254. "issues": "http://drupal.org/project/issues/entity_browser",
  4255. "irc": "irc://irc.freenode.org/drupal-contribute"
  4256. }
  4257. },
  4258. {
  4259. "name": "drupal/entity_browser_enhanced",
  4260. "version": "1.0.0-rc3",
  4261. "source": {
  4262. "type": "git",
  4263. "url": "https://git.drupal.org/project/entity_browser_enhanced",
  4264. "reference": "8.x-1.0-rc3"
  4265. },
  4266. "dist": {
  4267. "type": "zip",
  4268. "url": "https://ftp.drupal.org/files/projects/entity_browser_enhanced-8.x-1.0-rc3.zip",
  4269. "reference": "8.x-1.0-rc3",
  4270. "shasum": "041a93dac5ec9f74a8834faee60995c4db7d1e65"
  4271. },
  4272. "require": {
  4273. "drupal/core": "~8.0",
  4274. "drupal/entity_browser": "*"
  4275. },
  4276. "type": "drupal-module",
  4277. "extra": {
  4278. "branch-alias": {
  4279. "dev-1.x": "1.x-dev",
  4280. "dev-8.x-1.x": "8.1.x-dev"
  4281. },
  4282. "drupal": {
  4283. "version": "8.x-1.0-rc3",
  4284. "datestamp": "1528884525",
  4285. "security-coverage": {
  4286. "status": "not-covered",
  4287. "message": "RC releases are not covered by Drupal security advisories."
  4288. }
  4289. }
  4290. },
  4291. "notification-url": "https://packages.drupal.org/8/downloads",
  4292. "license": [
  4293. "GPL-2.0-or-later"
  4294. ],
  4295. "authors": [
  4296. {
  4297. "name": "Vardot",
  4298. "homepage": "https://www.drupal.org/vardot",
  4299. "role": "Maintainer"
  4300. },
  4301. {
  4302. "name": "RajabNatshah",
  4303. "homepage": "https://www.drupal.org/user/1414312"
  4304. }
  4305. ],
  4306. "description": "Provides some behavior and style enhancements to Entity Browsers, specifically for multiselect and image/media browsers.",
  4307. "homepage": "https://www.drupal.org/project/entity_browser_enhanced",
  4308. "support": {
  4309. "source": "http://cgit.drupalcode.org/entity_browser_enhanced",
  4310. "issues": "https://www.drupal.org/project/issues/entity_browser_enhanced"
  4311. }
  4312. },
  4313. {
  4314. "name": "drupal/entity_clone",
  4315. "version": "1.0.0-beta1",
  4316. "source": {
  4317. "type": "git",
  4318. "url": "https://git.drupal.org/project/entity_clone",
  4319. "reference": "8.x-1.0-beta1"
  4320. },
  4321. "dist": {
  4322. "type": "zip",
  4323. "url": "https://ftp.drupal.org/files/projects/entity_clone-8.x-1.0-beta1.zip",
  4324. "reference": "8.x-1.0-beta1",
  4325. "shasum": "d0ace20bbe1672fbe6d0cdd6da8f5b80cd156643"
  4326. },
  4327. "require": {
  4328. "drupal/core": "~8.0"
  4329. },
  4330. "type": "drupal-module",
  4331. "extra": {
  4332. "branch-alias": {
  4333. "dev-1.x": "1.x-dev"
  4334. },
  4335. "drupal": {
  4336. "version": "8.x-1.0-beta1",
  4337. "datestamp": "1546583284",
  4338. "security-coverage": {
  4339. "status": "not-covered",
  4340. "message": "Beta releases are not covered by Drupal security advisories."
  4341. }
  4342. }
  4343. },
  4344. "notification-url": "https://packages.drupal.org/8/downloads",
  4345. "license": [
  4346. "GPL-2.0-or-later"
  4347. ],
  4348. "authors": [
  4349. {
  4350. "name": "vpeltot",
  4351. "homepage": "https://www.drupal.org/user/1361586"
  4352. }
  4353. ],
  4354. "description": "Add a clone action for all entities",
  4355. "homepage": "https://www.drupal.org/project/entity_clone",
  4356. "support": {
  4357. "source": "http://cgit.drupalcode.org/entity_clone"
  4358. }
  4359. },
  4360. {
  4361. "name": "drupal/extlink",
  4362. "version": "1.1.0",
  4363. "source": {
  4364. "type": "git",
  4365. "url": "https://git.drupal.org/project/extlink",
  4366. "reference": "8.x-1.1"
  4367. },
  4368. "dist": {
  4369. "type": "zip",
  4370. "url": "https://ftp.drupal.org/files/projects/extlink-8.x-1.1.zip",
  4371. "reference": "8.x-1.1",
  4372. "shasum": "0894f1cd12e2e1aa6b00ea4a6dd5e7234eb2b2b2"
  4373. },
  4374. "require": {
  4375. "drupal/core": "~8.0"
  4376. },
  4377. "type": "drupal-module",
  4378. "extra": {
  4379. "branch-alias": {
  4380. "dev-1.x": "1.x-dev"
  4381. },
  4382. "drupal": {
  4383. "version": "8.x-1.1",
  4384. "datestamp": "1524232684",
  4385. "security-coverage": {
  4386. "status": "covered",
  4387. "message": "Covered by Drupal's security advisory policy"
  4388. }
  4389. }
  4390. },
  4391. "notification-url": "https://packages.drupal.org/8/downloads",
  4392. "license": [
  4393. "GPL-2.0-or-later"
  4394. ],
  4395. "authors": [
  4396. {
  4397. "name": "elachlan",
  4398. "homepage": "https://www.drupal.org/user/1021502"
  4399. },
  4400. {
  4401. "name": "jjeff",
  4402. "homepage": "https://www.drupal.org/user/17190"
  4403. },
  4404. {
  4405. "name": "quicksketch",
  4406. "homepage": "https://www.drupal.org/user/35821"
  4407. }
  4408. ],
  4409. "description": "Modify behavior and appearance of external links.",
  4410. "homepage": "https://www.drupal.org/project/extlink",
  4411. "support": {
  4412. "source": "http://cgit.drupalcode.org/extlink"
  4413. }
  4414. },
  4415. {
  4416. "name": "drupal/field_group",
  4417. "version": "1.0.0",
  4418. "source": {
  4419. "type": "git",
  4420. "url": "https://git.drupal.org/project/field_group",
  4421. "reference": "8.x-1.0"
  4422. },
  4423. "dist": {
  4424. "type": "zip",
  4425. "url": "https://ftp.drupal.org/files/projects/field_group-8.x-1.0.zip",
  4426. "reference": "8.x-1.0",
  4427. "shasum": "e8aa3fae5c3c5dec84644bb577996938d638a611"
  4428. },
  4429. "require": {
  4430. "drupal/core": "*"
  4431. },
  4432. "type": "drupal-module",
  4433. "extra": {
  4434. "branch-alias": {
  4435. "dev-1.x": "1.x-dev"
  4436. },
  4437. "drupal": {
  4438. "version": "8.x-1.0",
  4439. "datestamp": "1510352885",
  4440. "security-coverage": {
  4441. "status": "covered",
  4442. "message": "Covered by Drupal's security advisory policy"
  4443. }
  4444. }
  4445. },
  4446. "notification-url": "https://packages.drupal.org/8/downloads",
  4447. "license": [
  4448. "GPL-2.0+"
  4449. ],
  4450. "authors": [
  4451. {
  4452. "name": "Hydra",
  4453. "homepage": "https://www.drupal.org/user/647364"
  4454. },
  4455. {
  4456. "name": "Stalski",
  4457. "homepage": "https://www.drupal.org/user/322618"
  4458. },
  4459. {
  4460. "name": "jyve",
  4461. "homepage": "https://www.drupal.org/user/591438"
  4462. },
  4463. {
  4464. "name": "swentel",
  4465. "homepage": "https://www.drupal.org/user/107403"
  4466. },
  4467. {
  4468. "name": "zuuperman",
  4469. "homepage": "https://www.drupal.org/user/361625"
  4470. }
  4471. ],
  4472. "description": "Provides the field_group module.",
  4473. "homepage": "https://www.drupal.org/project/field_group",
  4474. "support": {
  4475. "source": "http://cgit.drupalcode.org/field_group"
  4476. }
  4477. },
  4478. {
  4479. "name": "drupal/file_mdm",
  4480. "version": "1.1.0",
  4481. "source": {
  4482. "type": "git",
  4483. "url": "https://git.drupal.org/project/file_mdm",
  4484. "reference": "8.x-1.1"
  4485. },
  4486. "dist": {
  4487. "type": "zip",
  4488. "url": "https://ftp.drupal.org/files/projects/file_mdm-8.x-1.1.zip",
  4489. "reference": "8.x-1.1",
  4490. "shasum": "7f354aec6f89e3141c2aa1fb3747ad5d4578c13f"
  4491. },
  4492. "require": {
  4493. "drupal/core": "~8.0",
  4494. "lsolesen/pel": "0.9.6",
  4495. "phenx/php-font-lib": "0.5",
  4496. "php": ">=5.6"
  4497. },
  4498. "require-dev": {
  4499. "drupal/image_effects": "*"
  4500. },
  4501. "type": "drupal-module",
  4502. "extra": {
  4503. "branch-alias": {
  4504. "dev-1.x": "1.x-dev"
  4505. },
  4506. "drupal": {
  4507. "version": "8.x-1.1",
  4508. "datestamp": "1488273785",
  4509. "security-coverage": {
  4510. "status": "covered",
  4511. "message": "Covered by Drupal's security advisory policy"
  4512. }
  4513. }
  4514. },
  4515. "notification-url": "https://packages.drupal.org/8/downloads",
  4516. "license": [
  4517. "GPL-2.0-or-later"
  4518. ],
  4519. "authors": [
  4520. {
  4521. "name": "mondrake",
  4522. "homepage": "https://www.drupal.org/user/1307444"
  4523. }
  4524. ],
  4525. "description": "Provides a service to manage file metadata.",
  4526. "homepage": "https://www.drupal.org/project/file_mdm",
  4527. "support": {
  4528. "source": "http://cgit.drupalcode.org/file_mdm"
  4529. }
  4530. },
  4531. {
  4532. "name": "drupal/file_mdm_exif",
  4533. "version": "1.1.0",
  4534. "require": {
  4535. "drupal/core": "~8.0",
  4536. "drupal/file_mdm": "self.version"
  4537. },
  4538. "require-dev": {
  4539. "drupal/image_effects": "*"
  4540. },
  4541. "type": "metapackage",
  4542. "extra": {
  4543. "branch-alias": {
  4544. "dev-1.x": "1.x-dev"
  4545. },
  4546. "drupal": {
  4547. "version": "8.x-1.1",
  4548. "datestamp": "1488273785",
  4549. "security-coverage": {
  4550. "status": "covered",
  4551. "message": "Covered by Drupal's security advisory policy"
  4552. }
  4553. }
  4554. },
  4555. "notification-url": "https://packages.drupal.org/8/downloads",
  4556. "license": [
  4557. "GPL-2.0-or-later"
  4558. ],
  4559. "authors": [
  4560. {
  4561. "name": "mondrake",
  4562. "homepage": "https://www.drupal.org/user/1307444"
  4563. }
  4564. ],
  4565. "description": "Provides a file metadata plugin for EXIF image information.",
  4566. "homepage": "https://www.drupal.org/project/file_mdm",
  4567. "support": {
  4568. "source": "http://cgit.drupalcode.org/file_mdm"
  4569. }
  4570. },
  4571. {
  4572. "name": "drupal/filefield_sources",
  4573. "version": "dev-1.x",
  4574. "source": {
  4575. "type": "git",
  4576. "url": "https://git.drupal.org/project/filefield_sources",
  4577. "reference": "b19c6a839804f47587828d4a50e29e0720fa4c08"
  4578. },
  4579. "require": {
  4580. "drupal/core": "*"
  4581. },
  4582. "type": "drupal-module",
  4583. "extra": {
  4584. "branch-alias": {
  4585. "dev-1.x": "1.x-dev"
  4586. },
  4587. "drupal": {
  4588. "version": "8.x-1.x-dev",
  4589. "datestamp": "1487711283",
  4590. "security-coverage": {
  4591. "status": "not-covered",
  4592. "message": "Dev releases are not covered by Drupal security advisories."
  4593. }
  4594. }
  4595. },
  4596. "notification-url": "https://packages.drupal.org/8/downloads",
  4597. "license": [
  4598. "GPL-2.0-or-later"
  4599. ],
  4600. "authors": [
  4601. {
  4602. "name": "profak",
  4603. "homepage": "https://www.drupal.org/user/782534"
  4604. },
  4605. {
  4606. "name": "quicksketch",
  4607. "homepage": "https://www.drupal.org/user/35821"
  4608. }
  4609. ],
  4610. "description": "Extends File fields to allow referencing of existing files, remote files, and server files.",
  4611. "homepage": "https://www.drupal.org/project/filefield_sources",
  4612. "support": {
  4613. "source": "http://cgit.drupalcode.org/filefield_sources"
  4614. },
  4615. "time": "2017-02-21T21:07:00+00:00"
  4616. },
  4617. {
  4618. "name": "drupal/filter_perms",
  4619. "version": "dev-1.x",
  4620. "source": {
  4621. "type": "git",
  4622. "url": "https://git.drupal.org/project/filter_perms",
  4623. "reference": "f491dd73fd876f6de0b2252c6b9bf18e0e27b357"
  4624. },
  4625. "require": {
  4626. "drupal/core": "*"
  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.x-dev",
  4635. "datestamp": "1469645939",
  4636. "security-coverage": {
  4637. "status": "not-covered",
  4638. "message": "Dev releases are not covered by Drupal security advisories."
  4639. }
  4640. }
  4641. },
  4642. "notification-url": "https://packages.drupal.org/8/downloads",
  4643. "license": [
  4644. "GPL-2.0-or-later"
  4645. ],
  4646. "authors": [
  4647. {
  4648. "name": "cYu",
  4649. "homepage": "https://www.drupal.org/user/202205"
  4650. },
  4651. {
  4652. "name": "deekayen",
  4653. "homepage": "https://www.drupal.org/user/972"
  4654. },
  4655. {
  4656. "name": "willzyx",
  4657. "homepage": "https://www.drupal.org/user/1043862"
  4658. }
  4659. ],
  4660. "description": "Provides role and module filters to simplify the user permissions page.",
  4661. "homepage": "https://www.drupal.org/project/filter_perms",
  4662. "support": {
  4663. "source": "http://cgit.drupalcode.org/filter_perms"
  4664. },
  4665. "time": "2016-07-27T19:01:11+00:00"
  4666. },
  4667. {
  4668. "name": "drupal/honeypot",
  4669. "version": "1.29.0",
  4670. "source": {
  4671. "type": "git",
  4672. "url": "https://git.drupal.org/project/honeypot",
  4673. "reference": "8.x-1.29"
  4674. },
  4675. "dist": {
  4676. "type": "zip",
  4677. "url": "https://ftp.drupal.org/files/projects/honeypot-8.x-1.29.zip",
  4678. "reference": "8.x-1.29",
  4679. "shasum": "029d9e068d8f6a5db52434c27dc71bd3f06da487"
  4680. },
  4681. "require": {
  4682. "drupal/core": "~8.0"
  4683. },
  4684. "type": "drupal-module",
  4685. "extra": {
  4686. "branch-alias": {
  4687. "dev-1.x": "1.x-dev"
  4688. },
  4689. "drupal": {
  4690. "version": "8.x-1.29",
  4691. "datestamp": "1536179280",
  4692. "security-coverage": {
  4693. "status": "covered",
  4694. "message": "Covered by Drupal's security advisory policy"
  4695. }
  4696. }
  4697. },
  4698. "notification-url": "https://packages.drupal.org/8/downloads",
  4699. "license": [
  4700. "GPL-2.0+"
  4701. ],
  4702. "authors": [
  4703. {
  4704. "name": "Jeff Geerling",
  4705. "homepage": "https://www.drupal.org/user/389011",
  4706. "email": "geerlingguy@mac.com"
  4707. }
  4708. ],
  4709. "description": "Mitigates spam form submissions using the honeypot method.",
  4710. "homepage": "https://www.drupal.org/project/honeypot",
  4711. "keywords": [
  4712. "deterrent",
  4713. "form",
  4714. "honeypot",
  4715. "honeytrap",
  4716. "php",
  4717. "spam"
  4718. ],
  4719. "support": {
  4720. "source": "http://cgit.drupalcode.org/honeypot"
  4721. }
  4722. },
  4723. {
  4724. "name": "drupal/imagemagick",
  4725. "version": "2.3.0",
  4726. "source": {
  4727. "type": "git",
  4728. "url": "https://git.drupal.org/project/imagemagick",
  4729. "reference": "8.x-2.3"
  4730. },
  4731. "dist": {
  4732. "type": "zip",
  4733. "url": "https://ftp.drupal.org/files/projects/imagemagick-8.x-2.3.zip",
  4734. "reference": "8.x-2.3",
  4735. "shasum": "8359921d4700e954364c2633332c20579bb75a34"
  4736. },
  4737. "require": {
  4738. "drupal/core": "^8.3",
  4739. "drupal/file_mdm": "^1.1",
  4740. "drupal/file_mdm_exif": "^1.1"
  4741. },
  4742. "type": "drupal-module",
  4743. "extra": {
  4744. "branch-alias": {
  4745. "dev-2.x": "2.x-dev"
  4746. },
  4747. "drupal": {
  4748. "version": "8.x-2.3",
  4749. "datestamp": "1520958305",
  4750. "security-coverage": {
  4751. "status": "covered",
  4752. "message": "Covered by Drupal's security advisory policy"
  4753. }
  4754. }
  4755. },
  4756. "notification-url": "https://packages.drupal.org/8/downloads",
  4757. "license": [
  4758. "GPL-2.0-or-later"
  4759. ],
  4760. "authors": [
  4761. {
  4762. "name": "Chris Charlton",
  4763. "homepage": "https://www.drupal.org/user/17089"
  4764. },
  4765. {
  4766. "name": "chx",
  4767. "homepage": "https://www.drupal.org/user/9446"
  4768. },
  4769. {
  4770. "name": "claudiu.cristea",
  4771. "homepage": "https://www.drupal.org/user/56348"
  4772. },
  4773. {
  4774. "name": "dman",
  4775. "homepage": "https://www.drupal.org/user/33240"
  4776. },
  4777. {
  4778. "name": "dopry",
  4779. "homepage": "https://www.drupal.org/user/22202"
  4780. },
  4781. {
  4782. "name": "drewish",
  4783. "homepage": "https://www.drupal.org/user/34869"
  4784. },
  4785. {
  4786. "name": "gdl",
  4787. "homepage": "https://www.drupal.org/user/507326"
  4788. },
  4789. {
  4790. "name": "mondrake",
  4791. "homepage": "https://www.drupal.org/user/1307444"
  4792. },
  4793. {
  4794. "name": "quicksketch",
  4795. "homepage": "https://www.drupal.org/user/35821"
  4796. },
  4797. {
  4798. "name": "sun",
  4799. "homepage": "https://www.drupal.org/user/54136"
  4800. },
  4801. {
  4802. "name": "walkah",
  4803. "homepage": "https://www.drupal.org/user/1531"
  4804. }
  4805. ],
  4806. "description": "Provides an image toolkit to integrate ImageMagick with the Image API.",
  4807. "homepage": "https://www.drupal.org/project/imagemagick",
  4808. "support": {
  4809. "source": "http://cgit.drupalcode.org/imagemagick"
  4810. }
  4811. },
  4812. {
  4813. "name": "drupal/inline_entity_form",
  4814. "version": "1.0.0-rc1",
  4815. "source": {
  4816. "type": "git",
  4817. "url": "https://git.drupal.org/project/inline_entity_form",
  4818. "reference": "8.x-1.0-rc1"
  4819. },
  4820. "dist": {
  4821. "type": "zip",
  4822. "url": "https://ftp.drupal.org/files/projects/inline_entity_form-8.x-1.0-rc1.zip",
  4823. "reference": "8.x-1.0-rc1",
  4824. "shasum": "898789fb6a0662fc2572b87f8d0654a0241473f9"
  4825. },
  4826. "require": {
  4827. "drupal/core": "~8.0"
  4828. },
  4829. "require-dev": {
  4830. "drupal/entity_reference_revisions": "*"
  4831. },
  4832. "type": "drupal-module",
  4833. "extra": {
  4834. "branch-alias": {
  4835. "dev-1.x": "1.x-dev"
  4836. },
  4837. "drupal": {
  4838. "version": "8.x-1.0-rc1",
  4839. "datestamp": "1527030784",
  4840. "security-coverage": {
  4841. "status": "not-covered",
  4842. "message": "RC releases are not covered by Drupal security advisories."
  4843. }
  4844. }
  4845. },
  4846. "notification-url": "https://packages.drupal.org/8/downloads",
  4847. "license": [
  4848. "GPL-2.0+"
  4849. ],
  4850. "authors": [
  4851. {
  4852. "name": "bojanz",
  4853. "homepage": "https://www.drupal.org/user/86106"
  4854. },
  4855. {
  4856. "name": "dawehner",
  4857. "homepage": "https://www.drupal.org/user/99340"
  4858. },
  4859. {
  4860. "name": "rszrama",
  4861. "homepage": "https://www.drupal.org/user/49344"
  4862. },
  4863. {
  4864. "name": "slashrsm",
  4865. "homepage": "https://www.drupal.org/user/744628"
  4866. },
  4867. {
  4868. "name": "webflo",
  4869. "homepage": "https://www.drupal.org/user/254778"
  4870. }
  4871. ],
  4872. "description": "Provides a widget for inline management (creation, modification, removal) of referenced entities.",
  4873. "homepage": "https://www.drupal.org/project/inline_entity_form",
  4874. "support": {
  4875. "source": "http://cgit.drupalcode.org/inline_entity_form"
  4876. }
  4877. },
  4878. {
  4879. "name": "drupal/kint",
  4880. "version": "1.2.0",
  4881. "require": {
  4882. "drupal/core": "~8.0",
  4883. "drupal/devel": "self.version"
  4884. },
  4885. "type": "metapackage",
  4886. "extra": {
  4887. "branch-alias": {
  4888. "dev-1.x": "1.x-dev"
  4889. },
  4890. "drupal": {
  4891. "version": "8.x-1.2",
  4892. "datestamp": "1507197844",
  4893. "security-coverage": {
  4894. "status": "covered",
  4895. "message": "Covered by Drupal's security advisory policy"
  4896. }
  4897. }
  4898. },
  4899. "notification-url": "https://packages.drupal.org/8/downloads",
  4900. "license": [
  4901. "GPL-2.0-or-later"
  4902. ],
  4903. "authors": [
  4904. {
  4905. "name": "catch",
  4906. "homepage": "https://www.drupal.org/user/35733"
  4907. },
  4908. {
  4909. "name": "juampynr",
  4910. "homepage": "https://www.drupal.org/user/682736"
  4911. },
  4912. {
  4913. "name": "lussoluca",
  4914. "homepage": "https://www.drupal.org/user/138068"
  4915. },
  4916. {
  4917. "name": "moshe weitzman",
  4918. "homepage": "https://www.drupal.org/user/23"
  4919. },
  4920. {
  4921. "name": "pcambra",
  4922. "homepage": "https://www.drupal.org/user/122101"
  4923. },
  4924. {
  4925. "name": "salvis",
  4926. "homepage": "https://www.drupal.org/user/82964"
  4927. },
  4928. {
  4929. "name": "willzyx",
  4930. "homepage": "https://www.drupal.org/user/1043862"
  4931. }
  4932. ],
  4933. "description": "Wrapper for Kint debugging tool",
  4934. "homepage": "https://www.drupal.org/project/devel",
  4935. "support": {
  4936. "source": "http://cgit.drupalcode.org/devel"
  4937. }
  4938. },
  4939. {
  4940. "name": "drupal/link_attributes",
  4941. "version": "1.5.0",
  4942. "source": {
  4943. "type": "git",
  4944. "url": "https://git.drupal.org/project/link_attributes",
  4945. "reference": "8.x-1.5"
  4946. },
  4947. "dist": {
  4948. "type": "zip",
  4949. "url": "https://ftp.drupal.org/files/projects/link_attributes-8.x-1.5.zip",
  4950. "reference": "8.x-1.5",
  4951. "shasum": "48c0e6ac2c3f4843372abb394c1aabe380dfa604"
  4952. },
  4953. "require": {
  4954. "drupal/core": "*"
  4955. },
  4956. "type": "drupal-module",
  4957. "extra": {
  4958. "branch-alias": {
  4959. "dev-1.x": "1.x-dev"
  4960. },
  4961. "drupal": {
  4962. "version": "8.x-1.5",
  4963. "datestamp": "1537173781",
  4964. "security-coverage": {
  4965. "status": "covered",
  4966. "message": "Covered by Drupal's security advisory policy"
  4967. }
  4968. }
  4969. },
  4970. "notification-url": "https://packages.drupal.org/8/downloads",
  4971. "license": [
  4972. "GPL-2.0-or-later"
  4973. ],
  4974. "authors": [
  4975. {
  4976. "name": "larowlan",
  4977. "homepage": "https://www.drupal.org/user/395439"
  4978. }
  4979. ],
  4980. "description": "Provides a widget to allow settings of link attributes for menu links.",
  4981. "homepage": "https://www.drupal.org/project/link_attributes",
  4982. "support": {
  4983. "source": "http://cgit.drupalcode.org/link_attributes"
  4984. }
  4985. },
  4986. {
  4987. "name": "drupal/linkit",
  4988. "version": "4.3.0",
  4989. "source": {
  4990. "type": "git",
  4991. "url": "https://git.drupal.org/project/linkit",
  4992. "reference": "8.x-4.3"
  4993. },
  4994. "dist": {
  4995. "type": "zip",
  4996. "url": "https://ftp.drupal.org/files/projects/linkit-8.x-4.3.zip",
  4997. "reference": "8.x-4.3",
  4998. "shasum": "e624ea2f18a6100b76a8337e24f7c08df6e2235e"
  4999. },
  5000. "require": {
  5001. "drupal/core": "~8.0"
  5002. },
  5003. "type": "drupal-module",
  5004. "extra": {
  5005. "branch-alias": {
  5006. "dev-4.x": "4.x-dev"
  5007. },
  5008. "drupal": {
  5009. "version": "8.x-4.3",
  5010. "datestamp": "1490205830",
  5011. "security-coverage": {
  5012. "status": "covered",
  5013. "message": "Covered by Drupal's security advisory policy"
  5014. }
  5015. }
  5016. },
  5017. "notification-url": "https://packages.drupal.org/8/downloads",
  5018. "license": [
  5019. "GPL-2.0+"
  5020. ],
  5021. "authors": [
  5022. {
  5023. "name": "Emil Stjerneman",
  5024. "homepage": "https://stjerneman.com",
  5025. "email": "emil@stjerneman.com",
  5026. "role": "Maintainer"
  5027. }
  5028. ],
  5029. "description": "Linkit - Enriched linking experience",
  5030. "homepage": "http://drupal.org/project/linkit",
  5031. "support": {
  5032. "source": "http://cgit.drupalcode.org/linkit",
  5033. "issues": "http://drupal.org/project/linkit"
  5034. }
  5035. },
  5036. {
  5037. "name": "drupal/login_destination",
  5038. "version": "dev-1.x",
  5039. "source": {
  5040. "type": "git",
  5041. "url": "https://git.drupal.org/project/login_destination",
  5042. "reference": "54be8b89fdc073ca40af6b9b2eeb050e0aeb7908"
  5043. },
  5044. "require": {
  5045. "drupal/core": "~8.0"
  5046. },
  5047. "type": "drupal-module",
  5048. "extra": {
  5049. "branch-alias": {
  5050. "dev-1.x": "1.x-dev"
  5051. },
  5052. "drupal": {
  5053. "version": "8.x-1.x-dev",
  5054. "datestamp": "1514805485",
  5055. "security-coverage": {
  5056. "status": "not-covered",
  5057. "message": "Dev releases are not covered by Drupal security advisories."
  5058. }
  5059. }
  5060. },
  5061. "notification-url": "https://packages.drupal.org/8/downloads",
  5062. "license": [
  5063. "GPL-2.0-or-later"
  5064. ],
  5065. "authors": [
  5066. {
  5067. "name": "Oliver Huynh",
  5068. "homepage": "https://www.drupal.org/user/243730"
  5069. },
  5070. {
  5071. "name": "akashjain132",
  5072. "homepage": "https://www.drupal.org/user/2622667"
  5073. },
  5074. {
  5075. "name": "beautifulmind",
  5076. "homepage": "https://www.drupal.org/user/219482"
  5077. },
  5078. {
  5079. "name": "ddrozdik",
  5080. "homepage": "https://www.drupal.org/user/574124"
  5081. },
  5082. {
  5083. "name": "jng12",
  5084. "homepage": "https://www.drupal.org/user/204316"
  5085. },
  5086. {
  5087. "name": "marcp",
  5088. "homepage": "https://www.drupal.org/user/20885"
  5089. },
  5090. {
  5091. "name": "mithy",
  5092. "homepage": "https://www.drupal.org/user/258911"
  5093. },
  5094. {
  5095. "name": "moshe weitzman",
  5096. "homepage": "https://www.drupal.org/user/23"
  5097. },
  5098. {
  5099. "name": "quantumized",
  5100. "homepage": "https://www.drupal.org/user/61221"
  5101. },
  5102. {
  5103. "name": "rsvelko",
  5104. "homepage": "https://www.drupal.org/user/337401"
  5105. }
  5106. ],
  5107. "description": "The Login Destination module add possibility customize the destination that the user is redirected to after login.",
  5108. "homepage": "https://www.drupal.org/project/login_destination",
  5109. "support": {
  5110. "source": "http://cgit.drupalcode.org/login_destination"
  5111. },
  5112. "time": "2018-01-01T11:13:09+00:00"
  5113. },
  5114. {
  5115. "name": "drupal/maillog",
  5116. "version": "dev-1.x",
  5117. "source": {
  5118. "type": "git",
  5119. "url": "https://git.drupal.org/project/maillog",
  5120. "reference": "14fd24cd89e299ad271608cd52706c60b753c26d"
  5121. },
  5122. "require": {
  5123. "drupal/core": "*"
  5124. },
  5125. "type": "drupal-module",
  5126. "extra": {
  5127. "branch-alias": {
  5128. "dev-1.x": "1.x-dev"
  5129. },
  5130. "drupal": {
  5131. "version": "8.x-1.x-dev",
  5132. "datestamp": "1470431939",
  5133. "security-coverage": {
  5134. "status": "not-covered",
  5135. "message": "Project has not opted into security advisory coverage!"
  5136. }
  5137. }
  5138. },
  5139. "notification-url": "https://packages.drupal.org/8/downloads",
  5140. "license": [
  5141. "GPL-2.0-or-later"
  5142. ],
  5143. "authors": [
  5144. {
  5145. "name": "Berdir",
  5146. "homepage": "https://www.drupal.org/user/214652"
  5147. },
  5148. {
  5149. "name": "DamienMcKenna",
  5150. "homepage": "https://www.drupal.org/user/108450"
  5151. },
  5152. {
  5153. "name": "miro_dietiker",
  5154. "homepage": "https://www.drupal.org/user/227761"
  5155. },
  5156. {
  5157. "name": "pluess",
  5158. "homepage": "https://www.drupal.org/user/84659"
  5159. }
  5160. ],
  5161. "description": "Utility to log all Mails for debugging purposes. It is possible to suppress mail delivery for e.g. dev or staging systems.",
  5162. "homepage": "https://www.drupal.org/project/maillog",
  5163. "support": {
  5164. "source": "http://cgit.drupalcode.org/maillog"
  5165. },
  5166. "time": "2016-08-05T21:18:07+00:00"
  5167. },
  5168. {
  5169. "name": "drupal/mailsystem",
  5170. "version": "4.1.0",
  5171. "source": {
  5172. "type": "git",
  5173. "url": "https://git.drupal.org/project/mailsystem",
  5174. "reference": "8.x-4.1"
  5175. },
  5176. "dist": {
  5177. "type": "zip",
  5178. "url": "https://ftp.drupal.org/files/projects/mailsystem-8.x-4.1.zip",
  5179. "reference": "8.x-4.1",
  5180. "shasum": "318b87f1fdf96e6db30b04a98108af02a0fc3dcc"
  5181. },
  5182. "require": {
  5183. "drupal/core": "^8.0.5"
  5184. },
  5185. "type": "drupal-module",
  5186. "extra": {
  5187. "branch-alias": {
  5188. "dev-4.x": "4.x-dev"
  5189. },
  5190. "drupal": {
  5191. "version": "8.x-4.1",
  5192. "datestamp": "1467993646",
  5193. "security-coverage": {
  5194. "status": "covered",
  5195. "message": "Covered by Drupal's security advisory policy"
  5196. }
  5197. }
  5198. },
  5199. "notification-url": "https://packages.drupal.org/8/downloads",
  5200. "license": [
  5201. "GPL-2.0+"
  5202. ],
  5203. "authors": [
  5204. {
  5205. "name": "Berdir",
  5206. "homepage": "https://www.drupal.org/user/214652"
  5207. },
  5208. {
  5209. "name": "Les Lim",
  5210. "homepage": "https://www.drupal.org/user/84263"
  5211. },
  5212. {
  5213. "name": "Nafes",
  5214. "homepage": "https://www.drupal.org/user/2489926"
  5215. },
  5216. {
  5217. "name": "miro_dietiker",
  5218. "homepage": "https://www.drupal.org/user/227761"
  5219. },
  5220. {
  5221. "name": "pillarsdotnet",
  5222. "homepage": "https://www.drupal.org/user/36148"
  5223. }
  5224. ],
  5225. "description": "Mail System",
  5226. "homepage": "https://www.drupal.org/project/mailsystem",
  5227. "support": {
  5228. "source": "http://cgit.drupalcode.org/mailsystem"
  5229. }
  5230. },
  5231. {
  5232. "name": "drupal/matomo",
  5233. "version": "1.7.0",
  5234. "source": {
  5235. "type": "git",
  5236. "url": "https://git.drupal.org/project/matomo",
  5237. "reference": "8.x-1.7"
  5238. },
  5239. "dist": {
  5240. "type": "zip",
  5241. "url": "https://ftp.drupal.org/files/projects/matomo-8.x-1.7.zip",
  5242. "reference": "8.x-1.7",
  5243. "shasum": "6b7dbc8c76800a6dadb7568cf2a3f3efdde88e13"
  5244. },
  5245. "require": {
  5246. "drupal/core": "~8.0"
  5247. },
  5248. "require-dev": {
  5249. "drupal/php": "*",
  5250. "drupal/token": "*"
  5251. },
  5252. "type": "drupal-module",
  5253. "extra": {
  5254. "branch-alias": {
  5255. "dev-1.x": "1.x-dev"
  5256. },
  5257. "drupal": {
  5258. "version": "8.x-1.7",
  5259. "datestamp": "1531470197",
  5260. "security-coverage": {
  5261. "status": "covered",
  5262. "message": "Covered by Drupal's security advisory policy"
  5263. }
  5264. }
  5265. },
  5266. "notification-url": "https://packages.drupal.org/8/downloads",
  5267. "license": [
  5268. "GPL-2.0+"
  5269. ],
  5270. "authors": [
  5271. {
  5272. "name": "hass",
  5273. "homepage": "https://www.drupal.org/u/hass"
  5274. },
  5275. {
  5276. "name": "See other contributors",
  5277. "homepage": "https://www.drupal.org/node/247808/committers"
  5278. }
  5279. ],
  5280. "description": "Adds Matomo javascript tracking code to all your site's pages",
  5281. "homepage": "https://www.drupal.org/project/matomo",
  5282. "support": {
  5283. "source": "http://git.drupal.org/project/matomo.git",
  5284. "issues": "https://www.drupal.org/project/issues/matomo"
  5285. }
  5286. },
  5287. {
  5288. "name": "drupal/maxlength",
  5289. "version": "1.0.0-beta2",
  5290. "source": {
  5291. "type": "git",
  5292. "url": "https://git.drupal.org/project/maxlength",
  5293. "reference": "8.x-1.0-beta2"
  5294. },
  5295. "dist": {
  5296. "type": "zip",
  5297. "url": "https://ftp.drupal.org/files/projects/maxlength-8.x-1.0-beta2.zip",
  5298. "reference": "8.x-1.0-beta2",
  5299. "shasum": "27f7374e55ebdcc696d22d98be8cf4cf9bf58204"
  5300. },
  5301. "require": {
  5302. "drupal/core": "~8.0"
  5303. },
  5304. "type": "drupal-module",
  5305. "extra": {
  5306. "branch-alias": {
  5307. "dev-1.x": "1.x-dev"
  5308. },
  5309. "drupal": {
  5310. "version": "8.x-1.0-beta2",
  5311. "datestamp": "1527856384",
  5312. "security-coverage": {
  5313. "status": "not-covered",
  5314. "message": "Beta releases are not covered by Drupal security advisories."
  5315. }
  5316. }
  5317. },
  5318. "notification-url": "https://packages.drupal.org/8/downloads",
  5319. "license": [
  5320. "GPL-2.0-or-later"
  5321. ],
  5322. "authors": [
  5323. {
  5324. "name": "Aron Novak",
  5325. "homepage": "https://www.drupal.org/user/61864"
  5326. },
  5327. {
  5328. "name": "Schnitzel",
  5329. "homepage": "https://www.drupal.org/user/643820"
  5330. },
  5331. {
  5332. "name": "a_c_m",
  5333. "homepage": "https://www.drupal.org/user/195063"
  5334. },
  5335. {
  5336. "name": "artur.thiessen",
  5337. "homepage": "https://www.drupal.org/user/2390554"
  5338. },
  5339. {
  5340. "name": "barneytech",
  5341. "homepage": "https://www.drupal.org/user/669922"
  5342. },
  5343. {
  5344. "name": "claudiu_cristea",
  5345. "homepage": "https://www.drupal.org/user/2623935"
  5346. },
  5347. {
  5348. "name": "dawehner",
  5349. "homepage": "https://www.drupal.org/user/99340"
  5350. },
  5351. {
  5352. "name": "derhasi",
  5353. "homepage": "https://www.drupal.org/user/83474"
  5354. },
  5355. {
  5356. "name": "frjo",
  5357. "homepage": "https://www.drupal.org/user/5546"
  5358. },
  5359. {
  5360. "name": "hefox",
  5361. "homepage": "https://www.drupal.org/user/426416"
  5362. },
  5363. {
  5364. "name": "jm.federico",
  5365. "homepage": "https://www.drupal.org/user/509892"
  5366. },
  5367. {
  5368. "name": "k4v",
  5369. "homepage": "https://www.drupal.org/user/744246"
  5370. },
  5371. {
  5372. "name": "mariano73",
  5373. "homepage": "https://www.drupal.org/user/1324866"
  5374. },
  5375. {
  5376. "name": "mariuss",
  5377. "homepage": "https://www.drupal.org/user/28539"
  5378. },
  5379. {
  5380. "name": "sanduhrs",
  5381. "homepage": "https://www.drupal.org/user/28074"
  5382. },
  5383. {
  5384. "name": "vasi1186",
  5385. "homepage": "https://www.drupal.org/user/342104"
  5386. }
  5387. ],
  5388. "description": "Limit the number of characters in textfields and textareas and shows the amount of characters left.",
  5389. "homepage": "https://www.drupal.org/project/maxlength",
  5390. "support": {
  5391. "source": "http://cgit.drupalcode.org/maxlength"
  5392. }
  5393. },
  5394. {
  5395. "name": "drupal/menu_admin_per_menu",
  5396. "version": "1.0.0",
  5397. "source": {
  5398. "type": "git",
  5399. "url": "https://git.drupal.org/project/menu_admin_per_menu",
  5400. "reference": "8.x-1.0"
  5401. },
  5402. "dist": {
  5403. "type": "zip",
  5404. "url": "https://ftp.drupal.org/files/projects/menu_admin_per_menu-8.x-1.0.zip",
  5405. "reference": "8.x-1.0",
  5406. "shasum": "27dbef0025146a382feab67db5e93eaf280b8de4"
  5407. },
  5408. "require": {
  5409. "drupal/core": "*"
  5410. },
  5411. "type": "drupal-module",
  5412. "extra": {
  5413. "branch-alias": {
  5414. "dev-1.x": "1.x-dev"
  5415. },
  5416. "drupal": {
  5417. "version": "8.x-1.0",
  5418. "datestamp": "1507184944",
  5419. "security-coverage": {
  5420. "status": "covered",
  5421. "message": "Covered by Drupal's security advisory policy"
  5422. }
  5423. }
  5424. },
  5425. "notification-url": "https://packages.drupal.org/8/downloads",
  5426. "license": [
  5427. "GPL-2.0-or-later"
  5428. ],
  5429. "authors": [
  5430. {
  5431. "name": "anrikun",
  5432. "homepage": "https://www.drupal.org/user/410199"
  5433. },
  5434. {
  5435. "name": "mkdok",
  5436. "homepage": "https://www.drupal.org/user/3308753"
  5437. }
  5438. ],
  5439. "description": "Allows to give roles per menu admin permissions without giving them full administer menu permission.",
  5440. "homepage": "https://www.drupal.org/project/menu_admin_per_menu",
  5441. "support": {
  5442. "source": "http://cgit.drupalcode.org/menu_admin_per_menu"
  5443. }
  5444. },
  5445. {
  5446. "name": "drupal/menu_block",
  5447. "version": "1.5.0",
  5448. "source": {
  5449. "type": "git",
  5450. "url": "https://git.drupal.org/project/menu_block",
  5451. "reference": "8.x-1.5"
  5452. },
  5453. "dist": {
  5454. "type": "zip",
  5455. "url": "https://ftp.drupal.org/files/projects/menu_block-8.x-1.5.zip",
  5456. "reference": "8.x-1.5",
  5457. "shasum": "b3ac3e23e426f702974d88cc8bf93bf2a0b6236b"
  5458. },
  5459. "require": {
  5460. "drupal/core": "*"
  5461. },
  5462. "type": "drupal-module",
  5463. "extra": {
  5464. "branch-alias": {
  5465. "dev-1.x": "1.x-dev"
  5466. },
  5467. "drupal": {
  5468. "version": "8.x-1.5",
  5469. "datestamp": "1525200184",
  5470. "security-coverage": {
  5471. "status": "covered",
  5472. "message": "Covered by Drupal's security advisory policy"
  5473. }
  5474. }
  5475. },
  5476. "notification-url": "https://packages.drupal.org/8/downloads",
  5477. "license": [
  5478. "GPL-2.0-or-later"
  5479. ],
  5480. "authors": [
  5481. {
  5482. "name": "Dave Reid",
  5483. "homepage": "https://www.drupal.org/user/53892"
  5484. },
  5485. {
  5486. "name": "JohnAlbin",
  5487. "homepage": "https://www.drupal.org/user/32095"
  5488. },
  5489. {
  5490. "name": "joelpittet",
  5491. "homepage": "https://www.drupal.org/user/160302"
  5492. },
  5493. {
  5494. "name": "kim.pepper",
  5495. "homepage": "https://www.drupal.org/user/370574"
  5496. },
  5497. {
  5498. "name": "rrrob",
  5499. "homepage": "https://www.drupal.org/user/273533"
  5500. }
  5501. ],
  5502. "description": "Provides configurable blocks of menu links.",
  5503. "homepage": "https://www.drupal.org/project/menu_block",
  5504. "support": {
  5505. "source": "http://cgit.drupalcode.org/menu_block"
  5506. }
  5507. },
  5508. {
  5509. "name": "drupal/menu_position",
  5510. "version": "dev-1.x",
  5511. "source": {
  5512. "type": "git",
  5513. "url": "https://git.drupal.org/project/menu_position",
  5514. "reference": "552e5b1fc5baaec4d0496dd1c67df710093beccb"
  5515. },
  5516. "require": {
  5517. "drupal/core": "~8.0"
  5518. },
  5519. "type": "drupal-module",
  5520. "extra": {
  5521. "branch-alias": {
  5522. "dev-1.x": "1.x-dev"
  5523. },
  5524. "drupal": {
  5525. "version": "8.x-1.x-dev",
  5526. "datestamp": "1546518480",
  5527. "security-coverage": {
  5528. "status": "not-covered",
  5529. "message": "Dev releases are not covered by Drupal security advisories."
  5530. }
  5531. }
  5532. },
  5533. "notification-url": "https://packages.drupal.org/8/downloads",
  5534. "license": [
  5535. "GPL-2.0+"
  5536. ],
  5537. "authors": [
  5538. {
  5539. "name": "BarisW",
  5540. "homepage": "https://www.drupal.org/user/107229"
  5541. },
  5542. {
  5543. "name": "JohnAlbin",
  5544. "homepage": "https://www.drupal.org/user/32095"
  5545. },
  5546. {
  5547. "name": "lbainbridge",
  5548. "homepage": "https://www.drupal.org/user/2406996"
  5549. }
  5550. ],
  5551. "description": "This module allows for the creation of rules that will dynamically add the current page into the menu system at the requested spots.",
  5552. "homepage": "https://www.drupal.org/project/menu_position",
  5553. "support": {
  5554. "source": "http://cgit.drupalcode.org/menu_position",
  5555. "issues": "https://www.drupal.org/project/issues/menu_position"
  5556. },
  5557. "time": "2019-01-03T12:23:26+00:00"
  5558. },
  5559. {
  5560. "name": "drupal/migrate_plus",
  5561. "version": "dev-4.x",
  5562. "source": {
  5563. "type": "git",
  5564. "url": "https://git.drupal.org/project/migrate_plus",
  5565. "reference": "022baac45c5b1d630b18cd90e1648d0932cc3478"
  5566. },
  5567. "require": {
  5568. "drupal/core": "^8.3"
  5569. },
  5570. "require-dev": {
  5571. "drupal/migrate_example_advanced_setup": "*",
  5572. "drupal/migrate_example_setup": "*",
  5573. "drupal/migrate_tools": "*"
  5574. },
  5575. "suggest": {
  5576. "ext-soap": "*",
  5577. "sainsburys/guzzle-oauth2-plugin": "3.0 required for the OAuth2 authentication plugin"
  5578. },
  5579. "type": "drupal-module",
  5580. "extra": {
  5581. "branch-alias": {
  5582. "dev-4.x": "4.x-dev"
  5583. },
  5584. "drupal": {
  5585. "version": "8.x-4.0+17-dev",
  5586. "datestamp": "1546539780",
  5587. "security-coverage": {
  5588. "status": "not-covered",
  5589. "message": "Dev releases are not covered by Drupal security advisories."
  5590. }
  5591. }
  5592. },
  5593. "notification-url": "https://packages.drupal.org/8/downloads",
  5594. "license": [
  5595. "GPL-2.0+"
  5596. ],
  5597. "authors": [
  5598. {
  5599. "name": "Mike Ryan",
  5600. "homepage": "https://www.drupal.org/u/mikeryan",
  5601. "role": "Maintainer"
  5602. },
  5603. {
  5604. "name": "mikeryan",
  5605. "homepage": "https://www.drupal.org/user/4420"
  5606. }
  5607. ],
  5608. "description": "Enhancements to core migration support.",
  5609. "homepage": "https://www.drupal.org/project/migrate_plus",
  5610. "support": {
  5611. "source": "https://cgit.drupalcode.org/migrate_plus",
  5612. "issues": "https://www.drupal.org/project/issues/migrate_plus",
  5613. "irc": "irc://irc.freenode.org/drupal-migrate"
  5614. },
  5615. "time": "2019-01-03T18:20:23+00:00"
  5616. },
  5617. {
  5618. "name": "drupal/migrate_tools",
  5619. "version": "dev-4.x",
  5620. "source": {
  5621. "type": "git",
  5622. "url": "https://git.drupal.org/project/migrate_tools",
  5623. "reference": "853604c682a28b7d6960fa3d55eba36a443182bb"
  5624. },
  5625. "require": {
  5626. "drupal/core": "^8.3",
  5627. "drupal/migrate_plus": "^4"
  5628. },
  5629. "require-dev": {
  5630. "drupal/migrate_plus": "4.x-dev",
  5631. "drupal/migrate_source_csv": "^2.2",
  5632. "drush/drush": "^9"
  5633. },
  5634. "type": "drupal-module",
  5635. "extra": {
  5636. "branch-alias": {
  5637. "dev-4.x": "4.x-dev"
  5638. },
  5639. "drupal": {
  5640. "version": "8.x-4.0+14-dev",
  5641. "datestamp": "1545344880",
  5642. "security-coverage": {
  5643. "status": "not-covered",
  5644. "message": "Dev releases are not covered by Drupal security advisories."
  5645. }
  5646. },
  5647. "drush": {
  5648. "services": {
  5649. "drush.services.yml": "^9"
  5650. }
  5651. }
  5652. },
  5653. "notification-url": "https://packages.drupal.org/8/downloads",
  5654. "license": [
  5655. "GPL-2.0-or-later"
  5656. ],
  5657. "authors": [
  5658. {
  5659. "name": "heddn",
  5660. "homepage": "https://www.drupal.org/user/1463982"
  5661. },
  5662. {
  5663. "name": "mikeryan",
  5664. "homepage": "https://www.drupal.org/user/4420"
  5665. },
  5666. {
  5667. "name": "moshe weitzman",
  5668. "homepage": "https://www.drupal.org/user/23"
  5669. }
  5670. ],
  5671. "description": "Tools to assist in developing and running migrations.",
  5672. "homepage": "http://drupal.org/project/migrate_tools",
  5673. "support": {
  5674. "source": "http://cgit.drupalcode.org/migrate_tools",
  5675. "issues": "http://drupal.org/project/migrate_tools",
  5676. "irc": "irc://irc.freenode.org/drupal-migrate"
  5677. },
  5678. "time": "2018-12-20T22:27:32+00:00"
  5679. },
  5680. {
  5681. "name": "drupal/pagerer",
  5682. "version": "1.4.0",
  5683. "source": {
  5684. "type": "git",
  5685. "url": "https://git.drupal.org/project/pagerer",
  5686. "reference": "8.x-1.4"
  5687. },
  5688. "dist": {
  5689. "type": "zip",
  5690. "url": "https://ftp.drupal.org/files/projects/pagerer-8.x-1.4.zip",
  5691. "reference": "8.x-1.4",
  5692. "shasum": "9b4eb6899b0927859e7d5198f1fd814a10a66ddb"
  5693. },
  5694. "require": {
  5695. "drupal/core": "^8.1"
  5696. },
  5697. "type": "drupal-module",
  5698. "extra": {
  5699. "branch-alias": {
  5700. "dev-1.x": "1.x-dev"
  5701. },
  5702. "drupal": {
  5703. "version": "8.x-1.4",
  5704. "datestamp": "1522851484",
  5705. "security-coverage": {
  5706. "status": "covered",
  5707. "message": "Covered by Drupal's security advisory policy"
  5708. }
  5709. }
  5710. },
  5711. "notification-url": "https://packages.drupal.org/8/downloads",
  5712. "license": [
  5713. "GPL-2.0-or-later"
  5714. ],
  5715. "authors": [
  5716. {
  5717. "name": "mondrake",
  5718. "homepage": "https://www.drupal.org/user/1307444"
  5719. }
  5720. ],
  5721. "description": "Configurable pager styles.",
  5722. "homepage": "https://www.drupal.org/project/pagerer",
  5723. "support": {
  5724. "source": "http://cgit.drupalcode.org/pagerer"
  5725. }
  5726. },
  5727. {
  5728. "name": "drupal/path_alias_xt",
  5729. "version": "dev-1.x",
  5730. "source": {
  5731. "type": "git",
  5732. "url": "https://git.drupal.org/project/path_alias_xt",
  5733. "reference": "3a2d9beffd86d155c3a38a5194516f27c8793f14"
  5734. },
  5735. "require": {
  5736. "drupal/core": "*"
  5737. },
  5738. "type": "drupal-module",
  5739. "extra": {
  5740. "branch-alias": {
  5741. "dev-1.x": "1.x-dev"
  5742. },
  5743. "drupal": {
  5744. "version": "8.x-1.x-dev",
  5745. "datestamp": "1500044942",
  5746. "security-coverage": {
  5747. "status": "not-covered",
  5748. "message": "Dev releases are not covered by Drupal security advisories."
  5749. }
  5750. }
  5751. },
  5752. "notification-url": "https://packages.drupal.org/8/downloads",
  5753. "license": [
  5754. "GPL-2.0-or-later"
  5755. ],
  5756. "authors": [
  5757. {
  5758. "name": "RdeBoer",
  5759. "homepage": "https://www.drupal.org/user/404007"
  5760. },
  5761. {
  5762. "name": "adriancid",
  5763. "homepage": "https://www.drupal.org/user/1962106"
  5764. },
  5765. {
  5766. "name": "sdstyles",
  5767. "homepage": "https://www.drupal.org/user/1420228"
  5768. }
  5769. ],
  5770. "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.",
  5771. "homepage": "https://www.drupal.org/project/path_alias_xt",
  5772. "support": {
  5773. "source": "http://cgit.drupalcode.org/path_alias_xt"
  5774. },
  5775. "time": "2018-11-19T15:25:48+00:00"
  5776. },
  5777. {
  5778. "name": "drupal/pathauto",
  5779. "version": "1.3.0",
  5780. "source": {
  5781. "type": "git",
  5782. "url": "https://git.drupal.org/project/pathauto",
  5783. "reference": "8.x-1.3"
  5784. },
  5785. "dist": {
  5786. "type": "zip",
  5787. "url": "https://ftp.drupal.org/files/projects/pathauto-8.x-1.3.zip",
  5788. "reference": "8.x-1.3",
  5789. "shasum": "115d5998d7636a03e26c7ce34261b65809d53965"
  5790. },
  5791. "require": {
  5792. "drupal/core": "^8.5",
  5793. "drupal/ctools": "*",
  5794. "drupal/token": "*"
  5795. },
  5796. "type": "drupal-module",
  5797. "extra": {
  5798. "branch-alias": {
  5799. "dev-1.x": "1.x-dev"
  5800. },
  5801. "drupal": {
  5802. "version": "8.x-1.3",
  5803. "datestamp": "1536407884",
  5804. "security-coverage": {
  5805. "status": "covered",
  5806. "message": "Covered by Drupal's security advisory policy"
  5807. }
  5808. }
  5809. },
  5810. "notification-url": "https://packages.drupal.org/8/downloads",
  5811. "license": [
  5812. "GPL-2.0-or-later"
  5813. ],
  5814. "authors": [
  5815. {
  5816. "name": "Berdir",
  5817. "homepage": "https://www.drupal.org/user/214652"
  5818. },
  5819. {
  5820. "name": "Dave Reid",
  5821. "homepage": "https://www.drupal.org/user/53892"
  5822. },
  5823. {
  5824. "name": "Freso",
  5825. "homepage": "https://www.drupal.org/user/27504"
  5826. },
  5827. {
  5828. "name": "greggles",
  5829. "homepage": "https://www.drupal.org/user/36762"
  5830. }
  5831. ],
  5832. "description": "Provides a mechanism for modules to automatically generate aliases for the content they manage.",
  5833. "homepage": "https://www.drupal.org/project/pathauto",
  5834. "support": {
  5835. "source": "http://cgit.drupalcode.org/pathauto"
  5836. }
  5837. },
  5838. {
  5839. "name": "drupal/pathologic",
  5840. "version": "1.0.0-alpha1",
  5841. "source": {
  5842. "type": "git",
  5843. "url": "https://git.drupal.org/project/pathologic",
  5844. "reference": "8.x-1.0-alpha1"
  5845. },
  5846. "dist": {
  5847. "type": "zip",
  5848. "url": "https://ftp.drupal.org/files/projects/pathologic-8.x-1.0-alpha1.zip",
  5849. "reference": "8.x-1.0-alpha1",
  5850. "shasum": "51c699cc001969baa00cca60cf2302a32e578090"
  5851. },
  5852. "require": {
  5853. "drupal/core": "*"
  5854. },
  5855. "type": "drupal-module",
  5856. "extra": {
  5857. "branch-alias": {
  5858. "dev-1.x": "1.x-dev"
  5859. },
  5860. "drupal": {
  5861. "version": "8.x-1.0-alpha1",
  5862. "datestamp": "1525211884",
  5863. "security-coverage": {
  5864. "status": "not-covered",
  5865. "message": "Alpha releases are not covered by Drupal security advisories."
  5866. }
  5867. }
  5868. },
  5869. "notification-url": "https://packages.drupal.org/8/downloads",
  5870. "license": [
  5871. "GPL-2.0-or-later"
  5872. ],
  5873. "authors": [
  5874. {
  5875. "name": "Berdir",
  5876. "homepage": "https://www.drupal.org/user/214652"
  5877. },
  5878. {
  5879. "name": "Garrett Albright",
  5880. "homepage": "https://www.drupal.org/user/191212"
  5881. },
  5882. {
  5883. "name": "dww",
  5884. "homepage": "https://www.drupal.org/user/46549"
  5885. }
  5886. ],
  5887. "description": "Helps avoid broken links and incorrect paths in content.",
  5888. "homepage": "https://www.drupal.org/project/pathologic",
  5889. "support": {
  5890. "source": "http://cgit.drupalcode.org/pathologic"
  5891. }
  5892. },
  5893. {
  5894. "name": "drupal/persistent_login",
  5895. "version": "1.1.0",
  5896. "source": {
  5897. "type": "git",
  5898. "url": "https://git.drupal.org/project/persistent_login",
  5899. "reference": "8.x-1.1"
  5900. },
  5901. "dist": {
  5902. "type": "zip",
  5903. "url": "https://ftp.drupal.org/files/projects/persistent_login-8.x-1.1.zip",
  5904. "reference": "8.x-1.1",
  5905. "shasum": "b1e8f725662ab915767f339e00d7b185ac9097b2"
  5906. },
  5907. "require": {
  5908. "drupal/core": "^8.3"
  5909. },
  5910. "type": "drupal-module",
  5911. "extra": {
  5912. "branch-alias": {
  5913. "dev-1.x": "1.x-dev"
  5914. },
  5915. "drupal": {
  5916. "version": "8.x-1.1",
  5917. "datestamp": "1539379980",
  5918. "security-coverage": {
  5919. "status": "covered",
  5920. "message": "Covered by Drupal's security advisory policy"
  5921. }
  5922. }
  5923. },
  5924. "notification-url": "https://packages.drupal.org/8/downloads",
  5925. "license": [
  5926. "GPL-2.0+"
  5927. ],
  5928. "authors": [
  5929. {
  5930. "name": "gapple",
  5931. "homepage": "https://www.drupal.org/user/490940"
  5932. }
  5933. ],
  5934. "description": "Provides a \"Remember Me\" feature on the login form.",
  5935. "homepage": "https://www.drupal.org/project/persistent_login",
  5936. "keywords": [
  5937. "Drupal"
  5938. ],
  5939. "support": {
  5940. "source": "http://cgit.drupalcode.org/persistent_login",
  5941. "issues": "http://drupal.org/project/issues/persistent_login"
  5942. }
  5943. },
  5944. {
  5945. "name": "drupal/profile",
  5946. "version": "1.0.0-rc1",
  5947. "source": {
  5948. "type": "git",
  5949. "url": "https://git.drupal.org/project/profile",
  5950. "reference": "8.x-1.0-rc1"
  5951. },
  5952. "dist": {
  5953. "type": "zip",
  5954. "url": "https://ftp.drupal.org/files/projects/profile-8.x-1.0-rc1.zip",
  5955. "reference": "8.x-1.0-rc1",
  5956. "shasum": "cc537ca25412adc4fa601ff42cf2fb5cbc6e7b6b"
  5957. },
  5958. "require": {
  5959. "drupal/core": "~8.1",
  5960. "drupal/entity": "*"
  5961. },
  5962. "type": "drupal-module",
  5963. "extra": {
  5964. "branch-alias": {
  5965. "dev-1.x": "1.x-dev"
  5966. },
  5967. "drupal": {
  5968. "version": "8.x-1.0-rc1",
  5969. "datestamp": "1505830324",
  5970. "security-coverage": {
  5971. "status": "not-covered",
  5972. "message": "RC releases are not covered by Drupal security advisories."
  5973. }
  5974. }
  5975. },
  5976. "notification-url": "https://packages.drupal.org/8/downloads",
  5977. "license": [
  5978. "GPL-2.0+"
  5979. ],
  5980. "authors": [
  5981. {
  5982. "name": "bojanz",
  5983. "homepage": "https://www.drupal.org/user/86106"
  5984. },
  5985. {
  5986. "name": "daggerhart",
  5987. "homepage": "https://www.drupal.org/user/167806"
  5988. },
  5989. {
  5990. "name": "dakala",
  5991. "homepage": "https://www.drupal.org/user/53175"
  5992. },
  5993. {
  5994. "name": "fago",
  5995. "homepage": "https://www.drupal.org/user/16747"
  5996. },
  5997. {
  5998. "name": "mglaman",
  5999. "homepage": "https://www.drupal.org/user/2416470"
  6000. },
  6001. {
  6002. "name": "pcambra",
  6003. "homepage": "https://www.drupal.org/user/122101"
  6004. }
  6005. ],
  6006. "description": "Provides configurable user profiles.",
  6007. "homepage": "http://drupal.org/project/profile",
  6008. "support": {
  6009. "source": "http://cgit.drupalcode.org/profile"
  6010. }
  6011. },
  6012. {
  6013. "name": "drupal/redirect",
  6014. "version": "1.3.0",
  6015. "source": {
  6016. "type": "git",
  6017. "url": "https://git.drupal.org/project/redirect",
  6018. "reference": "8.x-1.3"
  6019. },
  6020. "dist": {
  6021. "type": "zip",
  6022. "url": "https://ftp.drupal.org/files/projects/redirect-8.x-1.3.zip",
  6023. "reference": "8.x-1.3",
  6024. "shasum": "3f9620d186e25f36ac56755979932b8ea965b8c7"
  6025. },
  6026. "require": {
  6027. "drupal/core": "~8"
  6028. },
  6029. "type": "drupal-module",
  6030. "extra": {
  6031. "branch-alias": {
  6032. "dev-1.x": "1.x-dev"
  6033. },
  6034. "drupal": {
  6035. "version": "8.x-1.3",
  6036. "datestamp": "1539682684",
  6037. "security-coverage": {
  6038. "status": "covered",
  6039. "message": "Covered by Drupal's security advisory policy"
  6040. }
  6041. }
  6042. },
  6043. "notification-url": "https://packages.drupal.org/8/downloads",
  6044. "license": [
  6045. "GPL-2.0+"
  6046. ],
  6047. "authors": [
  6048. {
  6049. "name": "Berdir",
  6050. "homepage": "https://www.drupal.org/user/214652"
  6051. },
  6052. {
  6053. "name": "Dave Reid",
  6054. "homepage": "https://www.drupal.org/user/53892"
  6055. },
  6056. {
  6057. "name": "pifagor",
  6058. "homepage": "https://www.drupal.org/user/2375692"
  6059. }
  6060. ],
  6061. "description": "Allows users to redirect from old URLs to new URLs.",
  6062. "homepage": "https://www.drupal.org/project/redirect",
  6063. "support": {
  6064. "source": "http://cgit.drupalcode.org/redirect"
  6065. }
  6066. },
  6067. {
  6068. "name": "drupal/redis",
  6069. "version": "1.1.0",
  6070. "source": {
  6071. "type": "git",
  6072. "url": "https://git.drupal.org/project/redis",
  6073. "reference": "8.x-1.1"
  6074. },
  6075. "dist": {
  6076. "type": "zip",
  6077. "url": "https://ftp.drupal.org/files/projects/redis-8.x-1.1.zip",
  6078. "reference": "8.x-1.1",
  6079. "shasum": "33337fe1cbd2824797e87533b30e4886b48ecd77"
  6080. },
  6081. "require": {
  6082. "drupal/core": "~8.0"
  6083. },
  6084. "suggest": {
  6085. "predis/predis": "^1.1.1"
  6086. },
  6087. "type": "drupal-module",
  6088. "extra": {
  6089. "branch-alias": {
  6090. "dev-1.x": "1.x-dev"
  6091. },
  6092. "drupal": {
  6093. "version": "8.x-1.1",
  6094. "datestamp": "1541600580",
  6095. "security-coverage": {
  6096. "status": "covered",
  6097. "message": "Covered by Drupal's security advisory policy"
  6098. }
  6099. }
  6100. },
  6101. "autoload": {
  6102. "psr-4": {
  6103. "Drupal\\redis\\": "src"
  6104. }
  6105. },
  6106. "notification-url": "https://packages.drupal.org/8/downloads",
  6107. "license": [
  6108. "GPL-2.0"
  6109. ],
  6110. "authors": [
  6111. {
  6112. "name": "Berdir",
  6113. "homepage": "https://www.drupal.org/user/214652"
  6114. },
  6115. {
  6116. "name": "pounard",
  6117. "homepage": "https://www.drupal.org/user/240164"
  6118. }
  6119. ],
  6120. "description": "Provide a module placeholder, for using as dependency for module that needs Redis.",
  6121. "homepage": "https://www.drupal.org/project/redis",
  6122. "support": {
  6123. "source": "http://cgit.drupalcode.org/redis"
  6124. }
  6125. },
  6126. {
  6127. "name": "drupal/search_api",
  6128. "version": "1.11.0",
  6129. "source": {
  6130. "type": "git",
  6131. "url": "https://git.drupal.org/project/search_api",
  6132. "reference": "8.x-1.11"
  6133. },
  6134. "dist": {
  6135. "type": "zip",
  6136. "url": "https://ftp.drupal.org/files/projects/search_api-8.x-1.11.zip",
  6137. "reference": "8.x-1.11",
  6138. "shasum": "d2bf92afa2ee760977dde1fadcb5bb64a4c2d7c1"
  6139. },
  6140. "require": {
  6141. "drupal/core": "^8.5"
  6142. },
  6143. "require-dev": {
  6144. "drupal/search_api_autocomplete": "@dev",
  6145. "drupal/search_api_db": "*"
  6146. },
  6147. "suggest": {
  6148. "drupal/facets": "Adds the ability to create faceted searches.",
  6149. "drupal/search_api_autocomplete": "Allows adding autocomplete suggestions to search fields.",
  6150. "drupal/search_api_solr": "Adds support for using Apache Solr as a backend."
  6151. },
  6152. "type": "drupal-module",
  6153. "extra": {
  6154. "branch-alias": {
  6155. "dev-1.x": "1.x-dev"
  6156. },
  6157. "drupal": {
  6158. "version": "8.x-1.11",
  6159. "datestamp": "1542564480",
  6160. "security-coverage": {
  6161. "status": "covered",
  6162. "message": "Covered by Drupal's security advisory policy"
  6163. }
  6164. },
  6165. "drush": {
  6166. "services": {
  6167. "drush.services.yml": "^9"
  6168. }
  6169. }
  6170. },
  6171. "notification-url": "https://packages.drupal.org/8/downloads",
  6172. "license": [
  6173. "GPL-2.0+"
  6174. ],
  6175. "authors": [
  6176. {
  6177. "name": "Thomas Seidl",
  6178. "homepage": "https://www.drupal.org/u/drunken-monkey"
  6179. },
  6180. {
  6181. "name": "Nick Veenhof",
  6182. "homepage": "https://www.drupal.org/u/nick_vh"
  6183. },
  6184. {
  6185. "name": "See other contributors",
  6186. "homepage": "https://www.drupal.org/node/790418/committers"
  6187. }
  6188. ],
  6189. "description": "Provides a generic framework for modules offering search capabilities.",
  6190. "homepage": "https://www.drupal.org/project/search_api",
  6191. "support": {
  6192. "source": "http://git.drupal.org/project/search_api.git",
  6193. "issues": "https://www.drupal.org/project/issues/search_api",
  6194. "irc": "irc://irc.freenode.org/drupal-search-api"
  6195. }
  6196. },
  6197. {
  6198. "name": "drupal/search_api_db",
  6199. "version": "1.11.0",
  6200. "require": {
  6201. "drupal/core": "~8.0",
  6202. "drupal/search_api": "self.version"
  6203. },
  6204. "type": "metapackage",
  6205. "extra": {
  6206. "branch-alias": {
  6207. "dev-1.x": "1.x-dev"
  6208. },
  6209. "drupal": {
  6210. "version": "8.x-1.11",
  6211. "datestamp": "1542564480",
  6212. "security-coverage": {
  6213. "status": "covered",
  6214. "message": "Covered by Drupal's security advisory policy"
  6215. }
  6216. }
  6217. },
  6218. "notification-url": "https://packages.drupal.org/8/downloads",
  6219. "license": [
  6220. "GPL-2.0-or-later"
  6221. ],
  6222. "authors": [
  6223. {
  6224. "name": "Nick_vh",
  6225. "homepage": "https://www.drupal.org/user/122682"
  6226. },
  6227. {
  6228. "name": "drunken monkey",
  6229. "homepage": "https://www.drupal.org/user/205582"
  6230. }
  6231. ],
  6232. "description": "Offers an implementation of the Search API that uses database tables for indexing content.",
  6233. "homepage": "https://www.drupal.org/project/search_api",
  6234. "support": {
  6235. "source": "http://cgit.drupalcode.org/search_api"
  6236. }
  6237. },
  6238. {
  6239. "name": "drupal/smart_trim",
  6240. "version": "1.1.0",
  6241. "source": {
  6242. "type": "git",
  6243. "url": "https://git.drupal.org/project/smart_trim",
  6244. "reference": "8.x-1.1"
  6245. },
  6246. "dist": {
  6247. "type": "zip",
  6248. "url": "https://ftp.drupal.org/files/projects/smart_trim-8.x-1.1.zip",
  6249. "reference": "8.x-1.1",
  6250. "shasum": "5f1c0f15914208e0ad2ec5cce1d6419040596fc0"
  6251. },
  6252. "require": {
  6253. "drupal/core": "*"
  6254. },
  6255. "type": "drupal-module",
  6256. "extra": {
  6257. "branch-alias": {
  6258. "dev-1.x": "1.x-dev"
  6259. },
  6260. "drupal": {
  6261. "version": "8.x-1.1",
  6262. "datestamp": "1516301286",
  6263. "security-coverage": {
  6264. "status": "covered",
  6265. "message": "Covered by Drupal's security advisory policy"
  6266. }
  6267. }
  6268. },
  6269. "notification-url": "https://packages.drupal.org/8/downloads",
  6270. "license": [
  6271. "GPL-2.0+"
  6272. ],
  6273. "authors": [
  6274. {
  6275. "name": "Mark Casias (markie)",
  6276. "homepage": "https://www.drupal.org/u/markie",
  6277. "role": "Maintainer"
  6278. },
  6279. {
  6280. "name": "chrisjlee",
  6281. "homepage": "https://www.drupal.org/user/760600"
  6282. },
  6283. {
  6284. "name": "drywall",
  6285. "homepage": "https://www.drupal.org/user/192591"
  6286. },
  6287. {
  6288. "name": "jsenich",
  6289. "homepage": "https://www.drupal.org/user/58871"
  6290. },
  6291. {
  6292. "name": "markie",
  6293. "homepage": "https://www.drupal.org/user/206687"
  6294. },
  6295. {
  6296. "name": "newsignature",
  6297. "homepage": "https://www.drupal.org/user/765518"
  6298. }
  6299. ],
  6300. "description": "Provides a more robust alternative to 'summary or trimmed' textfield format.",
  6301. "homepage": "https://drupal.org/project/smart_trim",
  6302. "support": {
  6303. "source": "https://cgit.drupalcode.org/smart_trim",
  6304. "issues": "https://drupal.org/project/issues/smart_trim"
  6305. }
  6306. },
  6307. {
  6308. "name": "drupal/smtp",
  6309. "version": "1.0.0-beta4",
  6310. "source": {
  6311. "type": "git",
  6312. "url": "https://git.drupal.org/project/smtp",
  6313. "reference": "8.x-1.0-beta4"
  6314. },
  6315. "dist": {
  6316. "type": "zip",
  6317. "url": "https://ftp.drupal.org/files/projects/smtp-8.x-1.0-beta4.zip",
  6318. "reference": "8.x-1.0-beta4",
  6319. "shasum": "80a4df4b2fd2d1b2dc653552d232ce98cb54bb9d"
  6320. },
  6321. "require": {
  6322. "drupal/core": "~8.0"
  6323. },
  6324. "type": "drupal-module",
  6325. "extra": {
  6326. "branch-alias": {
  6327. "dev-1.x": "1.x-dev"
  6328. },
  6329. "drupal": {
  6330. "version": "8.x-1.0-beta4",
  6331. "datestamp": "1527598380",
  6332. "security-coverage": {
  6333. "status": "not-covered",
  6334. "message": "Beta releases are not covered by Drupal security advisories."
  6335. }
  6336. }
  6337. },
  6338. "notification-url": "https://packages.drupal.org/8/downloads",
  6339. "license": [
  6340. "GPL-2.0"
  6341. ],
  6342. "authors": [
  6343. {
  6344. "name": "LukeLast",
  6345. "homepage": "https://www.drupal.org/user/30151"
  6346. },
  6347. {
  6348. "name": "japerry",
  6349. "homepage": "https://www.drupal.org/user/45640"
  6350. },
  6351. {
  6352. "name": "josesanmartin",
  6353. "homepage": "https://www.drupal.org/user/72012"
  6354. },
  6355. {
  6356. "name": "oadaeh",
  6357. "homepage": "https://www.drupal.org/user/4649"
  6358. },
  6359. {
  6360. "name": "wundo",
  6361. "homepage": "https://www.drupal.org/user/25523"
  6362. },
  6363. {
  6364. "name": "yettyn",
  6365. "homepage": "https://www.drupal.org/user/93281"
  6366. }
  6367. ],
  6368. "description": "Allow for site emails to be sent through an SMTP server of your choice.",
  6369. "homepage": "https://www.drupal.org/project/smtp",
  6370. "support": {
  6371. "source": "http://cgit.drupalcode.org/smtp",
  6372. "issues": "https://www.drupal.org/project/issues/smtp"
  6373. }
  6374. },
  6375. {
  6376. "name": "drupal/synonyms",
  6377. "version": "1.0.0-alpha1",
  6378. "source": {
  6379. "type": "git",
  6380. "url": "https://git.drupal.org/project/synonyms",
  6381. "reference": "8.x-1.0-alpha1"
  6382. },
  6383. "dist": {
  6384. "type": "zip",
  6385. "url": "https://ftp.drupal.org/files/projects/synonyms-8.x-1.0-alpha1.zip",
  6386. "reference": "8.x-1.0-alpha1",
  6387. "shasum": "98d39b5b0a26c7b5f9e6dfc4f72285ad014d14f4"
  6388. },
  6389. "require": {
  6390. "drupal/core": "~8.0"
  6391. },
  6392. "type": "drupal-module",
  6393. "extra": {
  6394. "branch-alias": {
  6395. "dev-1.x": "1.x-dev"
  6396. },
  6397. "drupal": {
  6398. "version": "8.x-1.0-alpha1",
  6399. "datestamp": "1477604941",
  6400. "security-coverage": {
  6401. "status": "not-covered",
  6402. "message": "Alpha releases are not covered by Drupal security advisories."
  6403. }
  6404. }
  6405. },
  6406. "notification-url": "https://packages.drupal.org/8/downloads",
  6407. "license": [
  6408. "GPL-2.0-or-later"
  6409. ],
  6410. "authors": [
  6411. {
  6412. "name": "Zen",
  6413. "homepage": "https://www.drupal.org/user/21209"
  6414. },
  6415. {
  6416. "name": "bojanz",
  6417. "homepage": "https://www.drupal.org/user/86106"
  6418. },
  6419. {
  6420. "name": "bucefal91",
  6421. "homepage": "https://www.drupal.org/user/504128"
  6422. }
  6423. ],
  6424. "description": "Provides synonyms feature for content entities.",
  6425. "homepage": "https://www.drupal.org/project/synonyms",
  6426. "support": {
  6427. "source": "http://cgit.drupalcode.org/synonyms"
  6428. }
  6429. },
  6430. {
  6431. "name": "drupal/telephone_formatter",
  6432. "version": "1.0.0-beta1",
  6433. "source": {
  6434. "type": "git",
  6435. "url": "https://git.drupal.org/project/telephone_formatter",
  6436. "reference": "8.x-1.0-beta1"
  6437. },
  6438. "dist": {
  6439. "type": "zip",
  6440. "url": "https://ftp.drupal.org/files/projects/telephone_formatter-8.x-1.0-beta1.zip",
  6441. "reference": "8.x-1.0-beta1",
  6442. "shasum": "6d606d98840d983ace3f642879cb49683f2c1711"
  6443. },
  6444. "require": {
  6445. "drupal/core": "*",
  6446. "giggsey/libphonenumber-for-php": "^8.0"
  6447. },
  6448. "suggest": {
  6449. "drupal/telephone_validation": "Unsure data quality"
  6450. },
  6451. "type": "drupal-module",
  6452. "extra": {
  6453. "branch-alias": {
  6454. "dev-1.x": "1.x-dev"
  6455. },
  6456. "drupal": {
  6457. "version": "8.x-1.0-beta1",
  6458. "datestamp": "1492638542",
  6459. "security-coverage": {
  6460. "status": "not-covered",
  6461. "message": "Beta releases are not covered by Drupal security advisories."
  6462. }
  6463. }
  6464. },
  6465. "notification-url": "https://packages.drupal.org/8/downloads",
  6466. "license": [
  6467. "GPL-2.0+"
  6468. ],
  6469. "authors": [
  6470. {
  6471. "name": "Jakub Piasecki",
  6472. "homepage": "https://www.drupal.org/user/1532844",
  6473. "email": "jakub@piaseccy.pl"
  6474. }
  6475. ],
  6476. "description": "Additional formatters to Telephone field.",
  6477. "homepage": "https://www.drupal.org/project/telephone_formatter",
  6478. "support": {
  6479. "source": "http://cgit.drupalcode.org/telephone_formatter",
  6480. "issues": "http://drupal.org/project/issues/telephone_formatter"
  6481. }
  6482. },
  6483. {
  6484. "name": "drupal/telephone_validation",
  6485. "version": "2.1.0",
  6486. "source": {
  6487. "type": "git",
  6488. "url": "https://git.drupal.org/project/telephone_validation",
  6489. "reference": "8.x-2.1"
  6490. },
  6491. "dist": {
  6492. "type": "zip",
  6493. "url": "https://ftp.drupal.org/files/projects/telephone_validation-8.x-2.1.zip",
  6494. "reference": "8.x-2.1",
  6495. "shasum": "fcdb0c3c5541b06e6dd469a7aacefd2d0a891b74"
  6496. },
  6497. "require": {
  6498. "drupal/core": "^8.0",
  6499. "drupal/telephone": "*",
  6500. "giggsey/libphonenumber-for-php": "~8.0"
  6501. },
  6502. "type": "drupal-module",
  6503. "extra": {
  6504. "branch-alias": {
  6505. "dev-2.x": "2.x-dev"
  6506. },
  6507. "drupal": {
  6508. "version": "8.x-2.1",
  6509. "datestamp": "1527165785",
  6510. "security-coverage": {
  6511. "status": "covered",
  6512. "message": "Covered by Drupal's security advisory policy"
  6513. }
  6514. }
  6515. },
  6516. "notification-url": "https://packages.drupal.org/8/downloads",
  6517. "license": [
  6518. "GPL-2.0+"
  6519. ],
  6520. "authors": [
  6521. {
  6522. "name": "zaporylie",
  6523. "homepage": "https://www.drupal.org/user/1532844"
  6524. }
  6525. ],
  6526. "description": "Use 3rd party library to validate telephone field.",
  6527. "homepage": "http://drupal.org/project/telephone_validation",
  6528. "support": {
  6529. "source": "http://cgit.drupalcode.org/telephone_validation",
  6530. "issues": "http://drupal.org/project/issues/telephone_validation"
  6531. }
  6532. },
  6533. {
  6534. "name": "drupal/token",
  6535. "version": "1.5.0",
  6536. "source": {
  6537. "type": "git",
  6538. "url": "https://git.drupal.org/project/token",
  6539. "reference": "8.x-1.5"
  6540. },
  6541. "dist": {
  6542. "type": "zip",
  6543. "url": "https://ftp.drupal.org/files/projects/token-8.x-1.5.zip",
  6544. "reference": "8.x-1.5",
  6545. "shasum": "6382a7e1aabbd8246f1117a26bf4916d285b401d"
  6546. },
  6547. "require": {
  6548. "drupal/core": "^8.5"
  6549. },
  6550. "type": "drupal-module",
  6551. "extra": {
  6552. "branch-alias": {
  6553. "dev-1.x": "1.x-dev"
  6554. },
  6555. "drupal": {
  6556. "version": "8.x-1.5",
  6557. "datestamp": "1537557481",
  6558. "security-coverage": {
  6559. "status": "covered",
  6560. "message": "Covered by Drupal's security advisory policy"
  6561. }
  6562. }
  6563. },
  6564. "notification-url": "https://packages.drupal.org/8/downloads",
  6565. "license": [
  6566. "GPL-2.0-or-later"
  6567. ],
  6568. "authors": [
  6569. {
  6570. "name": "Berdir",
  6571. "homepage": "https://www.drupal.org/user/214652"
  6572. },
  6573. {
  6574. "name": "Dave Reid",
  6575. "homepage": "https://www.drupal.org/user/53892"
  6576. },
  6577. {
  6578. "name": "eaton",
  6579. "homepage": "https://www.drupal.org/user/16496"
  6580. },
  6581. {
  6582. "name": "fago",
  6583. "homepage": "https://www.drupal.org/user/16747"
  6584. },
  6585. {
  6586. "name": "greggles",
  6587. "homepage": "https://www.drupal.org/user/36762"
  6588. },
  6589. {
  6590. "name": "mikeryan",
  6591. "homepage": "https://www.drupal.org/user/4420"
  6592. }
  6593. ],
  6594. "description": "Provides a user interface for the Token API and some missing core tokens.",
  6595. "homepage": "https://www.drupal.org/project/token",
  6596. "support": {
  6597. "source": "http://cgit.drupalcode.org/token"
  6598. }
  6599. },
  6600. {
  6601. "name": "drupal/toolbar_themes",
  6602. "version": "1.0.0-alpha4",
  6603. "source": {
  6604. "type": "git",
  6605. "url": "https://git.drupal.org/project/toolbar_themes",
  6606. "reference": "8.x-1.0-alpha4"
  6607. },
  6608. "dist": {
  6609. "type": "zip",
  6610. "url": "https://ftp.drupal.org/files/projects/toolbar_themes-8.x-1.0-alpha4.zip",
  6611. "reference": "8.x-1.0-alpha4",
  6612. "shasum": "15c38da8bfd5a44e47e436d8f432a0aaf6b2cd70"
  6613. },
  6614. "require": {
  6615. "drupal/core": "*"
  6616. },
  6617. "type": "drupal-module",
  6618. "extra": {
  6619. "branch-alias": {
  6620. "dev-1.x": "1.x-dev"
  6621. },
  6622. "drupal": {
  6623. "version": "8.x-1.0-alpha4",
  6624. "datestamp": "1474198439",
  6625. "security-coverage": {
  6626. "status": "not-covered",
  6627. "message": "Project has not opted into security advisory coverage!"
  6628. }
  6629. }
  6630. },
  6631. "notification-url": "https://packages.drupal.org/8/downloads",
  6632. "license": [
  6633. "GPL-2.0-or-later"
  6634. ],
  6635. "authors": [
  6636. {
  6637. "name": "Jeff Burnz",
  6638. "homepage": "https://www.drupal.org/user/61393"
  6639. }
  6640. ],
  6641. "description": "Apply themes to the toolbar.",
  6642. "homepage": "https://www.drupal.org/project/toolbar_themes",
  6643. "support": {
  6644. "source": "http://cgit.drupalcode.org/toolbar_themes"
  6645. }
  6646. },
  6647. {
  6648. "name": "drupal/translation_views",
  6649. "version": "1.0.0-alpha4",
  6650. "source": {
  6651. "type": "git",
  6652. "url": "https://git.drupal.org/project/translation_views",
  6653. "reference": "8.x-1.0-alpha4"
  6654. },
  6655. "dist": {
  6656. "type": "zip",
  6657. "url": "https://ftp.drupal.org/files/projects/translation_views-8.x-1.0-alpha4.zip",
  6658. "reference": "8.x-1.0-alpha4",
  6659. "shasum": "96f7828005a8d559f31f0dfcb471a68698311cda"
  6660. },
  6661. "require": {
  6662. "drupal/core": "*"
  6663. },
  6664. "type": "drupal-module",
  6665. "extra": {
  6666. "branch-alias": {
  6667. "dev-1.x": "1.x-dev"
  6668. },
  6669. "drupal": {
  6670. "version": "8.x-1.0-alpha4",
  6671. "datestamp": "1538124180",
  6672. "security-coverage": {
  6673. "status": "not-covered",
  6674. "message": "Project has not opted into security advisory coverage!"
  6675. }
  6676. }
  6677. },
  6678. "notification-url": "https://packages.drupal.org/8/downloads",
  6679. "license": [
  6680. "GPL-2.0-or-later"
  6681. ],
  6682. "authors": [
  6683. {
  6684. "name": "matsbla",
  6685. "homepage": "https://www.drupal.org/user/2325394"
  6686. },
  6687. {
  6688. "name": "vlad.dancer",
  6689. "homepage": "https://www.drupal.org/user/903844"
  6690. }
  6691. ],
  6692. "description": "Create customized lists and queries of translations from your database.",
  6693. "homepage": "https://www.drupal.org/project/translation_views",
  6694. "support": {
  6695. "source": "http://cgit.drupalcode.org/translation_views"
  6696. }
  6697. },
  6698. {
  6699. "name": "drupal/ultimate_cron",
  6700. "version": "2.0.0-alpha4",
  6701. "source": {
  6702. "type": "git",
  6703. "url": "https://git.drupal.org/project/ultimate_cron",
  6704. "reference": "8.x-2.0-alpha4"
  6705. },
  6706. "dist": {
  6707. "type": "zip",
  6708. "url": "https://ftp.drupal.org/files/projects/ultimate_cron-8.x-2.0-alpha4.zip",
  6709. "reference": "8.x-2.0-alpha4",
  6710. "shasum": "50cdadd061f1f6fadb961b04ed04348bcc4719d3"
  6711. },
  6712. "require": {
  6713. "drupal/core": "~8.0"
  6714. },
  6715. "type": "drupal-module",
  6716. "extra": {
  6717. "branch-alias": {
  6718. "dev-2.x": "2.x-dev"
  6719. },
  6720. "drupal": {
  6721. "version": "8.x-2.0-alpha4",
  6722. "datestamp": "1527925385",
  6723. "security-coverage": {
  6724. "status": "not-covered",
  6725. "message": "Alpha releases are not covered by Drupal security advisories."
  6726. }
  6727. }
  6728. },
  6729. "notification-url": "https://packages.drupal.org/8/downloads",
  6730. "license": [
  6731. "GPL-2.0-or-later"
  6732. ],
  6733. "authors": [
  6734. {
  6735. "name": "Berdir",
  6736. "homepage": "https://www.drupal.org/user/214652"
  6737. },
  6738. {
  6739. "name": "Dane Powell",
  6740. "homepage": "https://www.drupal.org/user/339326"
  6741. },
  6742. {
  6743. "name": "arnested",
  6744. "homepage": "https://www.drupal.org/user/245635"
  6745. },
  6746. {
  6747. "name": "gielfeldt",
  6748. "homepage": "https://www.drupal.org/user/366993"
  6749. },
  6750. {
  6751. "name": "miro_dietiker",
  6752. "homepage": "https://www.drupal.org/user/227761"
  6753. }
  6754. ],
  6755. "description": "Cron",
  6756. "homepage": "https://www.drupal.org/project/ultimate_cron",
  6757. "support": {
  6758. "source": "http://cgit.drupalcode.org/ultimate_cron"
  6759. }
  6760. },
  6761. {
  6762. "name": "drupal/url_to_video_filter",
  6763. "version": "1.3.0",
  6764. "source": {
  6765. "type": "git",
  6766. "url": "https://git.drupal.org/project/url_to_video_filter",
  6767. "reference": "8.x-1.3"
  6768. },
  6769. "dist": {
  6770. "type": "zip",
  6771. "url": "https://ftp.drupal.org/files/projects/url_to_video_filter-8.x-1.3.zip",
  6772. "reference": "8.x-1.3",
  6773. "shasum": "40a27d1d8948638c0202c1b0c8afe0d92f8362a6"
  6774. },
  6775. "require": {
  6776. "drupal/core": "~8.0"
  6777. },
  6778. "type": "drupal-module",
  6779. "extra": {
  6780. "branch-alias": {
  6781. "dev-1.x": "1.x-dev"
  6782. },
  6783. "drupal": {
  6784. "version": "8.x-1.3",
  6785. "datestamp": "1532695981",
  6786. "security-coverage": {
  6787. "status": "covered",
  6788. "message": "Covered by Drupal's security advisory policy"
  6789. }
  6790. }
  6791. },
  6792. "notification-url": "https://packages.drupal.org/8/downloads",
  6793. "license": [
  6794. "GPL-2.0-or-later"
  6795. ],
  6796. "authors": [
  6797. {
  6798. "name": "Jaypan",
  6799. "homepage": "https://www.drupal.org/user/324696"
  6800. }
  6801. ],
  6802. "description": "Text filter to convert URLs to embedded videos",
  6803. "homepage": "https://www.drupal.org/project/url_to_video_filter",
  6804. "support": {
  6805. "source": "http://cgit.drupalcode.org/url_to_video_filter"
  6806. }
  6807. },
  6808. {
  6809. "name": "drupal/video_embed_field",
  6810. "version": "2.0.0",
  6811. "source": {
  6812. "type": "git",
  6813. "url": "https://git.drupal.org/project/video_embed_field",
  6814. "reference": "8.x-2.0"
  6815. },
  6816. "dist": {
  6817. "type": "zip",
  6818. "url": "https://ftp.drupal.org/files/projects/video_embed_field-8.x-2.0.zip",
  6819. "reference": "8.x-2.0",
  6820. "shasum": "e864f090b3cb9405376ca324d81ace83613e2019"
  6821. },
  6822. "require": {
  6823. "drupal/core": "*"
  6824. },
  6825. "require-dev": {
  6826. "drupal/colorbox": "*",
  6827. "drupal/media_entity": "*",
  6828. "drupal/media_entity_embeddable_video": "*"
  6829. },
  6830. "type": "drupal-module",
  6831. "extra": {
  6832. "branch-alias": {
  6833. "dev-2.x": "2.x-dev"
  6834. },
  6835. "drupal": {
  6836. "version": "8.x-1.x",
  6837. "datestamp": "1523338084",
  6838. "security-coverage": {
  6839. "status": "covered",
  6840. "message": "Covered by Drupal's security advisory policy"
  6841. },
  6842. "package": "Field types"
  6843. }
  6844. },
  6845. "notification-url": "https://packages.drupal.org/8/downloads",
  6846. "license": [
  6847. "GPL-2.0+"
  6848. ],
  6849. "authors": [
  6850. {
  6851. "name": "Sam152",
  6852. "homepage": "https://www.drupal.org/user/1485048"
  6853. },
  6854. {
  6855. "name": "jec006",
  6856. "homepage": "https://www.drupal.org/user/855980"
  6857. },
  6858. {
  6859. "name": "plopesc",
  6860. "homepage": "https://www.drupal.org/user/282415"
  6861. }
  6862. ],
  6863. "description": "A pluggable field type for storing videos from external video hosts such as Vimeo and YouTube.",
  6864. "homepage": "https://www.drupal.org/project/video_embed_field",
  6865. "support": {
  6866. "source": "http://cgit.drupalcode.org/video_embed_field"
  6867. }
  6868. },
  6869. {
  6870. "name": "drupal/views_bulk_edit",
  6871. "version": "2.2.0",
  6872. "source": {
  6873. "type": "git",
  6874. "url": "https://git.drupal.org/project/views_bulk_edit",
  6875. "reference": "8.x-2.2"
  6876. },
  6877. "dist": {
  6878. "type": "zip",
  6879. "url": "https://ftp.drupal.org/files/projects/views_bulk_edit-8.x-2.2.zip",
  6880. "reference": "8.x-2.2",
  6881. "shasum": "6a096dc73fab842c1b000d8788241ed9d3a17427"
  6882. },
  6883. "require": {
  6884. "drupal/core": "*",
  6885. "drupal/views_bulk_operations": "~1.0 | ~2.0"
  6886. },
  6887. "type": "drupal-module",
  6888. "extra": {
  6889. "branch-alias": {
  6890. "dev-2.x": "2.x-dev"
  6891. },
  6892. "drupal": {
  6893. "version": "8.x-2.2",
  6894. "datestamp": "1532689085",
  6895. "security-coverage": {
  6896. "status": "covered",
  6897. "message": "Covered by Drupal's security advisory policy"
  6898. }
  6899. }
  6900. },
  6901. "notification-url": "https://packages.drupal.org/8/downloads",
  6902. "license": [
  6903. "GPL-2.0+"
  6904. ],
  6905. "authors": [
  6906. {
  6907. "name": "Marcin Grabias",
  6908. "homepage": "https://www.drupal.org/u/graber"
  6909. },
  6910. {
  6911. "name": "benjy",
  6912. "homepage": "https://www.drupal.org/user/1852732"
  6913. }
  6914. ],
  6915. "description": "Allows bulk edition of entity field values.",
  6916. "homepage": "https://www.drupal.org/project/views_bulk_edit",
  6917. "support": {
  6918. "source": "http://cgit.drupalcode.org/views_bulk_edit",
  6919. "issues": "https://www.drupal.org/project/issues/views_bulk_edit?version=8.x"
  6920. }
  6921. },
  6922. {
  6923. "name": "drupal/views_bulk_operations",
  6924. "version": "2.4.0",
  6925. "source": {
  6926. "type": "git",
  6927. "url": "https://git.drupal.org/project/views_bulk_operations",
  6928. "reference": "8.x-2.4"
  6929. },
  6930. "dist": {
  6931. "type": "zip",
  6932. "url": "https://ftp.drupal.org/files/projects/views_bulk_operations-8.x-2.4.zip",
  6933. "reference": "8.x-2.4",
  6934. "shasum": "50c5778770f3a92e38ecf664301b77146e3cc931"
  6935. },
  6936. "require": {
  6937. "drupal/core": "^8.4"
  6938. },
  6939. "type": "drupal-module",
  6940. "extra": {
  6941. "branch-alias": {
  6942. "dev-2.x": "2.x-dev"
  6943. },
  6944. "drupal": {
  6945. "version": "8.x-2.4",
  6946. "datestamp": "1530516821",
  6947. "security-coverage": {
  6948. "status": "covered",
  6949. "message": "Covered by Drupal's security advisory policy"
  6950. }
  6951. },
  6952. "drush": {
  6953. "services": {
  6954. "drush.services.yml": "^9"
  6955. }
  6956. }
  6957. },
  6958. "notification-url": "https://packages.drupal.org/8/downloads",
  6959. "license": [
  6960. "GPL-2.0+"
  6961. ],
  6962. "authors": [
  6963. {
  6964. "name": "Marcin Grabias",
  6965. "homepage": "https://www.drupal.org/u/graber"
  6966. },
  6967. {
  6968. "name": "Jon Pugh",
  6969. "homepage": "https://www.drupal.org/user/17028"
  6970. },
  6971. {
  6972. "name": "bojanz",
  6973. "homepage": "https://www.drupal.org/user/86106"
  6974. },
  6975. {
  6976. "name": "infojunkie",
  6977. "homepage": "https://www.drupal.org/user/48424"
  6978. },
  6979. {
  6980. "name": "joelpittet",
  6981. "homepage": "https://www.drupal.org/user/160302"
  6982. }
  6983. ],
  6984. "description": "Adds an ability to perform bulk operations on selected entities from view results. Provides an API to create such operations.",
  6985. "homepage": "https://www.drupal.org/project/views_bulk_operations",
  6986. "support": {
  6987. "source": "http://cgit.drupalcode.org/views_bulk_operations",
  6988. "issues": "https://www.drupal.org/project/issues/views_bulk_operations?version=8.x",
  6989. "docs": "https://www.drupal.org/docs/8/modules/views-bulk-operations-vbo"
  6990. }
  6991. },
  6992. {
  6993. "name": "drupal/views_ef_fieldset",
  6994. "version": "dev-1.x",
  6995. "source": {
  6996. "type": "git",
  6997. "url": "https://git.drupal.org/project/views_ef_fieldset",
  6998. "reference": "f53f9e3390f1491ace93662634477bc43f844759"
  6999. },
  7000. "require": {
  7001. "drupal/core": "*"
  7002. },
  7003. "type": "drupal-module",
  7004. "extra": {
  7005. "branch-alias": {
  7006. "dev-1.x": "1.x-dev"
  7007. },
  7008. "drupal": {
  7009. "version": "8.x-1.1+4-dev",
  7010. "datestamp": "1538990580",
  7011. "security-coverage": {
  7012. "status": "not-covered",
  7013. "message": "Dev releases are not covered by Drupal security advisories."
  7014. }
  7015. }
  7016. },
  7017. "notification-url": "https://packages.drupal.org/8/downloads",
  7018. "license": [
  7019. "GPL-2.0-or-later"
  7020. ],
  7021. "authors": [
  7022. {
  7023. "name": "Pol",
  7024. "homepage": "https://www.drupal.org/user/47194"
  7025. },
  7026. {
  7027. "name": "ciss",
  7028. "homepage": "https://www.drupal.org/user/1632364"
  7029. }
  7030. ],
  7031. "description": "Provide an option to render the \"exposed form widgets\" in a fieldset.",
  7032. "homepage": "https://www.drupal.org/project/views_ef_fieldset",
  7033. "support": {
  7034. "source": "http://cgit.drupalcode.org/views_ef_fieldset"
  7035. },
  7036. "time": "2018-11-16T09:23:47+00:00"
  7037. },
  7038. {
  7039. "name": "drupal/workflow",
  7040. "version": "dev-1.x",
  7041. "source": {
  7042. "type": "git",
  7043. "url": "https://git.drupal.org/project/workflow",
  7044. "reference": "77445dbb57f3f51e3d3014e9a1a12a0334db2c14"
  7045. },
  7046. "require": {
  7047. "drupal/core": "*"
  7048. },
  7049. "type": "drupal-module",
  7050. "extra": {
  7051. "branch-alias": {
  7052. "dev-1.x": "1.x-dev"
  7053. },
  7054. "drupal": {
  7055. "version": "8.x-1.1+32-dev",
  7056. "datestamp": "1547456880",
  7057. "security-coverage": {
  7058. "status": "not-covered",
  7059. "message": "Dev releases are not covered by Drupal security advisories."
  7060. }
  7061. }
  7062. },
  7063. "notification-url": "https://packages.drupal.org/8/downloads",
  7064. "license": [
  7065. "GPL-2.0-or-later"
  7066. ],
  7067. "authors": [
  7068. {
  7069. "name": "Bastlynn",
  7070. "homepage": "https://www.drupal.org/user/275249"
  7071. },
  7072. {
  7073. "name": "Heine",
  7074. "homepage": "https://www.drupal.org/user/17943"
  7075. },
  7076. {
  7077. "name": "JacobSingh",
  7078. "homepage": "https://www.drupal.org/user/68912"
  7079. },
  7080. {
  7081. "name": "NancyDru",
  7082. "homepage": "https://www.drupal.org/user/101412"
  7083. },
  7084. {
  7085. "name": "eaton",
  7086. "homepage": "https://www.drupal.org/user/16496"
  7087. },
  7088. {
  7089. "name": "johnv",
  7090. "homepage": "https://www.drupal.org/user/591042"
  7091. },
  7092. {
  7093. "name": "jvandyk",
  7094. "homepage": "https://www.drupal.org/user/2375"
  7095. },
  7096. {
  7097. "name": "mfredrickson",
  7098. "homepage": "https://www.drupal.org/user/31994"
  7099. },
  7100. {
  7101. "name": "q0rban",
  7102. "homepage": "https://www.drupal.org/user/31022"
  7103. }
  7104. ],
  7105. "description": "Defines a field type with Workflows, containing customizable state transitions.",
  7106. "homepage": "https://www.drupal.org/project/workflow",
  7107. "support": {
  7108. "source": "http://cgit.drupalcode.org/workflow"
  7109. },
  7110. "time": "2019-01-24T10:33:55+00:00"
  7111. },
  7112. {
  7113. "name": "drush/drush",
  7114. "version": "9.5.2",
  7115. "source": {
  7116. "type": "git",
  7117. "url": "https://github.com/drush-ops/drush.git",
  7118. "reference": "17f0106706391675a281c6d212850853bdbe90f9"
  7119. },
  7120. "dist": {
  7121. "type": "zip",
  7122. "url": "https://api.github.com/repos/drush-ops/drush/zipball/17f0106706391675a281c6d212850853bdbe90f9",
  7123. "reference": "17f0106706391675a281c6d212850853bdbe90f9",
  7124. "shasum": ""
  7125. },
  7126. "require": {
  7127. "chi-teck/drupal-code-generator": "^1.27.0",
  7128. "composer/semver": "^1.4",
  7129. "consolidation/annotated-command": "^2.9.1",
  7130. "consolidation/config": "^1.1.0",
  7131. "consolidation/output-formatters": "^3.1.12",
  7132. "consolidation/robo": "^1.1.5",
  7133. "consolidation/site-alias": "^1.1.5",
  7134. "ext-dom": "*",
  7135. "grasmash/yaml-expander": "^1.1.1",
  7136. "league/container": "~2",
  7137. "php": ">=5.6.0",
  7138. "psr/log": "~1.0",
  7139. "psy/psysh": "~0.6",
  7140. "symfony/config": "^3.4",
  7141. "symfony/console": "^3.4",
  7142. "symfony/event-dispatcher": "^3.4",
  7143. "symfony/finder": "^3.4",
  7144. "symfony/process": "^3.4",
  7145. "symfony/var-dumper": "^3.4",
  7146. "symfony/yaml": "^3.4",
  7147. "webflo/drupal-finder": "^1.1",
  7148. "webmozart/path-util": "^2.1.0"
  7149. },
  7150. "require-dev": {
  7151. "composer/installers": "^1.2",
  7152. "cweagans/composer-patches": "~1.0",
  7153. "drupal/alinks": "1.0.0",
  7154. "drupal/devel": "^1.0@RC",
  7155. "drupal/empty_theme": "1.0",
  7156. "g1a/composer-test-scenarios": "^2.2.0",
  7157. "lox/xhprof": "dev-master",
  7158. "phpunit/phpunit": "^4.8.36 || ^6.1",
  7159. "squizlabs/php_codesniffer": "^2.7",
  7160. "vlucas/phpdotenv": "^2.4",
  7161. "webflo/drupal-core-strict": "8.6.x-dev"
  7162. },
  7163. "bin": [
  7164. "drush"
  7165. ],
  7166. "type": "library",
  7167. "extra": {
  7168. "installer-paths": {
  7169. "sut/core": [
  7170. "type:drupal-core"
  7171. ],
  7172. "sut/libraries/{$name}": [
  7173. "type:drupal-library"
  7174. ],
  7175. "sut/modules/unish/{$name}": [
  7176. "drupal/devel"
  7177. ],
  7178. "sut/themes/unish/{$name}": [
  7179. "drupal/empty_theme"
  7180. ],
  7181. "sut/modules/contrib/{$name}": [
  7182. "type:drupal-module"
  7183. ],
  7184. "sut/profiles/contrib/{$name}": [
  7185. "type:drupal-profile"
  7186. ],
  7187. "sut/themes/contrib/{$name}": [
  7188. "type:drupal-theme"
  7189. ],
  7190. "sut/drush/contrib/{$name}": [
  7191. "type:drupal-drush"
  7192. ]
  7193. },
  7194. "branch-alias": {
  7195. "dev-master": "9.x-dev"
  7196. }
  7197. },
  7198. "autoload": {
  7199. "psr-4": {
  7200. "Drush\\": "src/",
  7201. "Drush\\Internal\\": "internal-copy/",
  7202. "Unish\\": "tests/"
  7203. }
  7204. },
  7205. "notification-url": "https://packagist.org/downloads/",
  7206. "license": [
  7207. "GPL-2.0-or-later"
  7208. ],
  7209. "authors": [
  7210. {
  7211. "name": "Moshe Weitzman",
  7212. "email": "weitzman@tejasa.com"
  7213. },
  7214. {
  7215. "name": "Owen Barton",
  7216. "email": "drupal@owenbarton.com"
  7217. },
  7218. {
  7219. "name": "Greg Anderson",
  7220. "email": "greg.1.anderson@greenknowe.org"
  7221. },
  7222. {
  7223. "name": "Jonathan Araña Cruz",
  7224. "email": "jonhattan@faita.net"
  7225. },
  7226. {
  7227. "name": "Jonathan Hedstrom",
  7228. "email": "jhedstrom@gmail.com"
  7229. },
  7230. {
  7231. "name": "Christopher Gervais",
  7232. "email": "chris@ergonlogic.com"
  7233. },
  7234. {
  7235. "name": "Dave Reid",
  7236. "email": "dave@davereid.net"
  7237. },
  7238. {
  7239. "name": "Damian Lee",
  7240. "email": "damiankloip@googlemail.com"
  7241. }
  7242. ],
  7243. "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.",
  7244. "homepage": "http://www.drush.org",
  7245. "time": "2018-10-17T18:37:53+00:00"
  7246. },
  7247. {
  7248. "name": "easyrdf/easyrdf",
  7249. "version": "0.9.1",
  7250. "source": {
  7251. "type": "git",
  7252. "url": "https://github.com/njh/easyrdf.git",
  7253. "reference": "acd09dfe0555fbcfa254291e433c45fdd4652566"
  7254. },
  7255. "dist": {
  7256. "type": "zip",
  7257. "url": "https://api.github.com/repos/njh/easyrdf/zipball/acd09dfe0555fbcfa254291e433c45fdd4652566",
  7258. "reference": "acd09dfe0555fbcfa254291e433c45fdd4652566",
  7259. "shasum": ""
  7260. },
  7261. "require": {
  7262. "ext-mbstring": "*",
  7263. "ext-pcre": "*",
  7264. "php": ">=5.2.8"
  7265. },
  7266. "require-dev": {
  7267. "phpunit/phpunit": "~3.5",
  7268. "sami/sami": "~1.4",
  7269. "squizlabs/php_codesniffer": "~1.4.3"
  7270. },
  7271. "suggest": {
  7272. "ml/json-ld": "~1.0"
  7273. },
  7274. "type": "library",
  7275. "autoload": {
  7276. "psr-0": {
  7277. "EasyRdf_": "lib/"
  7278. }
  7279. },
  7280. "notification-url": "https://packagist.org/downloads/",
  7281. "license": [
  7282. "BSD-3-Clause"
  7283. ],
  7284. "authors": [
  7285. {
  7286. "name": "Nicholas Humfrey",
  7287. "email": "njh@aelius.com",
  7288. "homepage": "http://www.aelius.com/njh/",
  7289. "role": "Developer"
  7290. },
  7291. {
  7292. "name": "Alexey Zakhlestin",
  7293. "email": "indeyets@gmail.com",
  7294. "role": "Developer"
  7295. }
  7296. ],
  7297. "description": "EasyRdf is a PHP library designed to make it easy to consume and produce RDF.",
  7298. "homepage": "http://www.easyrdf.org/",
  7299. "keywords": [
  7300. "Linked Data",
  7301. "RDF",
  7302. "Semantic Web",
  7303. "Turtle",
  7304. "rdfa",
  7305. "sparql"
  7306. ],
  7307. "time": "2015-02-27T09:45:49+00:00"
  7308. },
  7309. {
  7310. "name": "egulias/email-validator",
  7311. "version": "1.2.15",
  7312. "source": {
  7313. "type": "git",
  7314. "url": "https://github.com/egulias/EmailValidator.git",
  7315. "reference": "758a77525bdaabd6c0f5669176bd4361cb2dda9e"
  7316. },
  7317. "dist": {
  7318. "type": "zip",
  7319. "url": "https://api.github.com/repos/egulias/EmailValidator/zipball/758a77525bdaabd6c0f5669176bd4361cb2dda9e",
  7320. "reference": "758a77525bdaabd6c0f5669176bd4361cb2dda9e",
  7321. "shasum": ""
  7322. },
  7323. "require": {
  7324. "doctrine/lexer": "^1.0.1",
  7325. "php": ">= 5.3.3"
  7326. },
  7327. "require-dev": {
  7328. "phpunit/phpunit": "^4.8.24"
  7329. },
  7330. "type": "library",
  7331. "extra": {
  7332. "branch-alias": {
  7333. "dev-master": "2.0.x-dev"
  7334. }
  7335. },
  7336. "autoload": {
  7337. "psr-0": {
  7338. "Egulias\\": "src/"
  7339. }
  7340. },
  7341. "notification-url": "https://packagist.org/downloads/",
  7342. "license": [
  7343. "MIT"
  7344. ],
  7345. "authors": [
  7346. {
  7347. "name": "Eduardo Gulias Davis"
  7348. }
  7349. ],
  7350. "description": "A library for validating emails",
  7351. "homepage": "https://github.com/egulias/EmailValidator",
  7352. "keywords": [
  7353. "email",
  7354. "emailvalidation",
  7355. "emailvalidator",
  7356. "validation",
  7357. "validator"
  7358. ],
  7359. "time": "2018-09-25T20:59:41+00:00"
  7360. },
  7361. {
  7362. "name": "giggsey/libphonenumber-for-php",
  7363. "version": "8.10.4",
  7364. "source": {
  7365. "type": "git",
  7366. "url": "https://github.com/giggsey/libphonenumber-for-php.git",
  7367. "reference": "3cda94a4a442c24259fb0893618422a56cb8a898"
  7368. },
  7369. "dist": {
  7370. "type": "zip",
  7371. "url": "https://api.github.com/repos/giggsey/libphonenumber-for-php/zipball/3cda94a4a442c24259fb0893618422a56cb8a898",
  7372. "reference": "3cda94a4a442c24259fb0893618422a56cb8a898",
  7373. "shasum": ""
  7374. },
  7375. "require": {
  7376. "ext-mbstring": "*",
  7377. "giggsey/locale": "^1.2",
  7378. "php": ">=5.3.2"
  7379. },
  7380. "require-dev": {
  7381. "pear/pear-core-minimal": "^1.9",
  7382. "pear/pear_exception": "^1.0",
  7383. "pear/versioncontrol_git": "^0.5",
  7384. "phing/phing": "^2.7",
  7385. "php-coveralls/php-coveralls": "^1.0|^2.0",
  7386. "phpunit/phpunit": "^4.8.36|^5.0",
  7387. "symfony/console": "^2.8|^3.0"
  7388. },
  7389. "type": "library",
  7390. "extra": {
  7391. "branch-alias": {
  7392. "dev-master": "8.x-dev"
  7393. }
  7394. },
  7395. "autoload": {
  7396. "psr-4": {
  7397. "libphonenumber\\": "src/"
  7398. },
  7399. "exclude-from-classmap": [
  7400. "/src/data/",
  7401. "/src/carrier/data/",
  7402. "/src/geocoding/data/",
  7403. "/src/timezone/data/"
  7404. ]
  7405. },
  7406. "notification-url": "https://packagist.org/downloads/",
  7407. "license": [
  7408. "Apache-2.0"
  7409. ],
  7410. "authors": [
  7411. {
  7412. "name": "Joshua Gigg",
  7413. "email": "giggsey@gmail.com",
  7414. "homepage": "https://giggsey.com/"
  7415. }
  7416. ],
  7417. "description": "PHP Port of Google's libphonenumber",
  7418. "homepage": "https://github.com/giggsey/libphonenumber-for-php",
  7419. "keywords": [
  7420. "geocoding",
  7421. "geolocation",
  7422. "libphonenumber",
  7423. "mobile",
  7424. "phonenumber",
  7425. "validation"
  7426. ],
  7427. "time": "2019-01-24T15:41:24+00:00"
  7428. },
  7429. {
  7430. "name": "giggsey/locale",
  7431. "version": "1.6",
  7432. "source": {
  7433. "type": "git",
  7434. "url": "https://github.com/giggsey/Locale.git",
  7435. "reference": "da6845720b5d104d319d7e84576f54e44dd9e4f5"
  7436. },
  7437. "dist": {
  7438. "type": "zip",
  7439. "url": "https://api.github.com/repos/giggsey/Locale/zipball/da6845720b5d104d319d7e84576f54e44dd9e4f5",
  7440. "reference": "da6845720b5d104d319d7e84576f54e44dd9e4f5",
  7441. "shasum": ""
  7442. },
  7443. "require": {
  7444. "php": ">=5.3.2"
  7445. },
  7446. "require-dev": {
  7447. "pear/pear-core-minimal": "^1.9",
  7448. "pear/pear_exception": "^1.0",
  7449. "pear/versioncontrol_git": "^0.5",
  7450. "phing/phing": "~2.7",
  7451. "phpunit/phpunit": "^4.8|^5.0",
  7452. "satooshi/php-coveralls": "^1.0",
  7453. "symfony/console": "^2.8|^3.0|^4.0",
  7454. "symfony/filesystem": "^2.8|^3.0|^4.0",
  7455. "symfony/finder": "^2.8|^3.0|^4.0",
  7456. "symfony/process": "^2.8|^3.0|^4.0"
  7457. },
  7458. "type": "library",
  7459. "autoload": {
  7460. "psr-4": {
  7461. "Giggsey\\Locale\\": "src/"
  7462. }
  7463. },
  7464. "notification-url": "https://packagist.org/downloads/",
  7465. "license": [
  7466. "MIT"
  7467. ],
  7468. "authors": [
  7469. {
  7470. "name": "Joshua Gigg",
  7471. "email": "giggsey@gmail.com",
  7472. "homepage": "http://giggsey.com/"
  7473. }
  7474. ],
  7475. "description": "Locale functions required by libphonenumber-for-php",
  7476. "time": "2018-10-18T07:17:52+00:00"
  7477. },
  7478. {
  7479. "name": "grasmash/expander",
  7480. "version": "1.0.0",
  7481. "source": {
  7482. "type": "git",
  7483. "url": "https://github.com/grasmash/expander.git",
  7484. "reference": "95d6037344a4be1dd5f8e0b0b2571a28c397578f"
  7485. },
  7486. "dist": {
  7487. "type": "zip",
  7488. "url": "https://api.github.com/repos/grasmash/expander/zipball/95d6037344a4be1dd5f8e0b0b2571a28c397578f",
  7489. "reference": "95d6037344a4be1dd5f8e0b0b2571a28c397578f",
  7490. "shasum": ""
  7491. },
  7492. "require": {
  7493. "dflydev/dot-access-data": "^1.1.0",
  7494. "php": ">=5.4"
  7495. },
  7496. "require-dev": {
  7497. "greg-1-anderson/composer-test-scenarios": "^1",
  7498. "phpunit/phpunit": "^4|^5.5.4",
  7499. "satooshi/php-coveralls": "^1.0.2|dev-master",
  7500. "squizlabs/php_codesniffer": "^2.7"
  7501. },
  7502. "type": "library",
  7503. "extra": {
  7504. "branch-alias": {
  7505. "dev-master": "1.x-dev"
  7506. }
  7507. },
  7508. "autoload": {
  7509. "psr-4": {
  7510. "Grasmash\\Expander\\": "src/"
  7511. }
  7512. },
  7513. "notification-url": "https://packagist.org/downloads/",
  7514. "license": [
  7515. "MIT"
  7516. ],
  7517. "authors": [
  7518. {
  7519. "name": "Matthew Grasmick"
  7520. }
  7521. ],
  7522. "description": "Expands internal property references in PHP arrays file.",
  7523. "time": "2017-12-21T22:14:55+00:00"
  7524. },
  7525. {
  7526. "name": "grasmash/yaml-expander",
  7527. "version": "1.4.0",
  7528. "source": {
  7529. "type": "git",
  7530. "url": "https://github.com/grasmash/yaml-expander.git",
  7531. "reference": "3f0f6001ae707a24f4d9733958d77d92bf9693b1"
  7532. },
  7533. "dist": {
  7534. "type": "zip",
  7535. "url": "https://api.github.com/repos/grasmash/yaml-expander/zipball/3f0f6001ae707a24f4d9733958d77d92bf9693b1",
  7536. "reference": "3f0f6001ae707a24f4d9733958d77d92bf9693b1",
  7537. "shasum": ""
  7538. },
  7539. "require": {
  7540. "dflydev/dot-access-data": "^1.1.0",
  7541. "php": ">=5.4",
  7542. "symfony/yaml": "^2.8.11|^3|^4"
  7543. },
  7544. "require-dev": {
  7545. "greg-1-anderson/composer-test-scenarios": "^1",
  7546. "phpunit/phpunit": "^4.8|^5.5.4",
  7547. "satooshi/php-coveralls": "^1.0.2|dev-master",
  7548. "squizlabs/php_codesniffer": "^2.7"
  7549. },
  7550. "type": "library",
  7551. "extra": {
  7552. "branch-alias": {
  7553. "dev-master": "1.x-dev"
  7554. }
  7555. },
  7556. "autoload": {
  7557. "psr-4": {
  7558. "Grasmash\\YamlExpander\\": "src/"
  7559. }
  7560. },
  7561. "notification-url": "https://packagist.org/downloads/",
  7562. "license": [
  7563. "MIT"
  7564. ],
  7565. "authors": [
  7566. {
  7567. "name": "Matthew Grasmick"
  7568. }
  7569. ],
  7570. "description": "Expands internal property references in a yaml file.",
  7571. "time": "2017-12-16T16:06:03+00:00"
  7572. },
  7573. {
  7574. "name": "guzzlehttp/guzzle",
  7575. "version": "6.3.3",
  7576. "source": {
  7577. "type": "git",
  7578. "url": "https://github.com/guzzle/guzzle.git",
  7579. "reference": "407b0cb880ace85c9b63c5f9551db498cb2d50ba"
  7580. },
  7581. "dist": {
  7582. "type": "zip",
  7583. "url": "https://api.github.com/repos/guzzle/guzzle/zipball/407b0cb880ace85c9b63c5f9551db498cb2d50ba",
  7584. "reference": "407b0cb880ace85c9b63c5f9551db498cb2d50ba",
  7585. "shasum": ""
  7586. },
  7587. "require": {
  7588. "guzzlehttp/promises": "^1.0",
  7589. "guzzlehttp/psr7": "^1.4",
  7590. "php": ">=5.5"
  7591. },
  7592. "require-dev": {
  7593. "ext-curl": "*",
  7594. "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.4 || ^7.0",
  7595. "psr/log": "^1.0"
  7596. },
  7597. "suggest": {
  7598. "psr/log": "Required for using the Log middleware"
  7599. },
  7600. "type": "library",
  7601. "extra": {
  7602. "branch-alias": {
  7603. "dev-master": "6.3-dev"
  7604. }
  7605. },
  7606. "autoload": {
  7607. "files": [
  7608. "src/functions_include.php"
  7609. ],
  7610. "psr-4": {
  7611. "GuzzleHttp\\": "src/"
  7612. }
  7613. },
  7614. "notification-url": "https://packagist.org/downloads/",
  7615. "license": [
  7616. "MIT"
  7617. ],
  7618. "authors": [
  7619. {
  7620. "name": "Michael Dowling",
  7621. "email": "mtdowling@gmail.com",
  7622. "homepage": "https://github.com/mtdowling"
  7623. }
  7624. ],
  7625. "description": "Guzzle is a PHP HTTP client library",
  7626. "homepage": "http://guzzlephp.org/",
  7627. "keywords": [
  7628. "client",
  7629. "curl",
  7630. "framework",
  7631. "http",
  7632. "http client",
  7633. "rest",
  7634. "web service"
  7635. ],
  7636. "time": "2018-04-22T15:46:56+00:00"
  7637. },
  7638. {
  7639. "name": "guzzlehttp/promises",
  7640. "version": "v1.3.1",
  7641. "source": {
  7642. "type": "git",
  7643. "url": "https://github.com/guzzle/promises.git",
  7644. "reference": "a59da6cf61d80060647ff4d3eb2c03a2bc694646"
  7645. },
  7646. "dist": {
  7647. "type": "zip",
  7648. "url": "https://api.github.com/repos/guzzle/promises/zipball/a59da6cf61d80060647ff4d3eb2c03a2bc694646",
  7649. "reference": "a59da6cf61d80060647ff4d3eb2c03a2bc694646",
  7650. "shasum": ""
  7651. },
  7652. "require": {
  7653. "php": ">=5.5.0"
  7654. },
  7655. "require-dev": {
  7656. "phpunit/phpunit": "^4.0"
  7657. },
  7658. "type": "library",
  7659. "extra": {
  7660. "branch-alias": {
  7661. "dev-master": "1.4-dev"
  7662. }
  7663. },
  7664. "autoload": {
  7665. "psr-4": {
  7666. "GuzzleHttp\\Promise\\": "src/"
  7667. },
  7668. "files": [
  7669. "src/functions_include.php"
  7670. ]
  7671. },
  7672. "notification-url": "https://packagist.org/downloads/",
  7673. "license": [
  7674. "MIT"
  7675. ],
  7676. "authors": [
  7677. {
  7678. "name": "Michael Dowling",
  7679. "email": "mtdowling@gmail.com",
  7680. "homepage": "https://github.com/mtdowling"
  7681. }
  7682. ],
  7683. "description": "Guzzle promises library",
  7684. "keywords": [
  7685. "promise"
  7686. ],
  7687. "time": "2016-12-20T10:07:11+00:00"
  7688. },
  7689. {
  7690. "name": "guzzlehttp/psr7",
  7691. "version": "1.5.2",
  7692. "source": {
  7693. "type": "git",
  7694. "url": "https://github.com/guzzle/psr7.git",
  7695. "reference": "9f83dded91781a01c63574e387eaa769be769115"
  7696. },
  7697. "dist": {
  7698. "type": "zip",
  7699. "url": "https://api.github.com/repos/guzzle/psr7/zipball/9f83dded91781a01c63574e387eaa769be769115",
  7700. "reference": "9f83dded91781a01c63574e387eaa769be769115",
  7701. "shasum": ""
  7702. },
  7703. "require": {
  7704. "php": ">=5.4.0",
  7705. "psr/http-message": "~1.0",
  7706. "ralouphie/getallheaders": "^2.0.5"
  7707. },
  7708. "provide": {
  7709. "psr/http-message-implementation": "1.0"
  7710. },
  7711. "require-dev": {
  7712. "phpunit/phpunit": "~4.8.36 || ^5.7.27 || ^6.5.8"
  7713. },
  7714. "type": "library",
  7715. "extra": {
  7716. "branch-alias": {
  7717. "dev-master": "1.5-dev"
  7718. }
  7719. },
  7720. "autoload": {
  7721. "psr-4": {
  7722. "GuzzleHttp\\Psr7\\": "src/"
  7723. },
  7724. "files": [
  7725. "src/functions_include.php"
  7726. ]
  7727. },
  7728. "notification-url": "https://packagist.org/downloads/",
  7729. "license": [
  7730. "MIT"
  7731. ],
  7732. "authors": [
  7733. {
  7734. "name": "Michael Dowling",
  7735. "email": "mtdowling@gmail.com",
  7736. "homepage": "https://github.com/mtdowling"
  7737. },
  7738. {
  7739. "name": "Tobias Schultze",
  7740. "homepage": "https://github.com/Tobion"
  7741. }
  7742. ],
  7743. "description": "PSR-7 message implementation that also provides common utility methods",
  7744. "keywords": [
  7745. "http",
  7746. "message",
  7747. "psr-7",
  7748. "request",
  7749. "response",
  7750. "stream",
  7751. "uri",
  7752. "url"
  7753. ],
  7754. "time": "2018-12-04T20:46:45+00:00"
  7755. },
  7756. {
  7757. "name": "jakub-onderka/php-console-color",
  7758. "version": "v0.2",
  7759. "source": {
  7760. "type": "git",
  7761. "url": "https://github.com/JakubOnderka/PHP-Console-Color.git",
  7762. "reference": "d5deaecff52a0d61ccb613bb3804088da0307191"
  7763. },
  7764. "dist": {
  7765. "type": "zip",
  7766. "url": "https://api.github.com/repos/JakubOnderka/PHP-Console-Color/zipball/d5deaecff52a0d61ccb613bb3804088da0307191",
  7767. "reference": "d5deaecff52a0d61ccb613bb3804088da0307191",
  7768. "shasum": ""
  7769. },
  7770. "require": {
  7771. "php": ">=5.4.0"
  7772. },
  7773. "require-dev": {
  7774. "jakub-onderka/php-code-style": "1.0",
  7775. "jakub-onderka/php-parallel-lint": "1.0",
  7776. "jakub-onderka/php-var-dump-check": "0.*",
  7777. "phpunit/phpunit": "~4.3",
  7778. "squizlabs/php_codesniffer": "1.*"
  7779. },
  7780. "type": "library",
  7781. "autoload": {
  7782. "psr-4": {
  7783. "JakubOnderka\\PhpConsoleColor\\": "src/"
  7784. }
  7785. },
  7786. "notification-url": "https://packagist.org/downloads/",
  7787. "license": [
  7788. "BSD-2-Clause"
  7789. ],
  7790. "authors": [
  7791. {
  7792. "name": "Jakub Onderka",
  7793. "email": "jakub.onderka@gmail.com"
  7794. }
  7795. ],
  7796. "time": "2018-09-29T17:23:10+00:00"
  7797. },
  7798. {
  7799. "name": "jakub-onderka/php-console-highlighter",
  7800. "version": "v0.4",
  7801. "source": {
  7802. "type": "git",
  7803. "url": "https://github.com/JakubOnderka/PHP-Console-Highlighter.git",
  7804. "reference": "9f7a229a69d52506914b4bc61bfdb199d90c5547"
  7805. },
  7806. "dist": {
  7807. "type": "zip",
  7808. "url": "https://api.github.com/repos/JakubOnderka/PHP-Console-Highlighter/zipball/9f7a229a69d52506914b4bc61bfdb199d90c5547",
  7809. "reference": "9f7a229a69d52506914b4bc61bfdb199d90c5547",
  7810. "shasum": ""
  7811. },
  7812. "require": {
  7813. "ext-tokenizer": "*",
  7814. "jakub-onderka/php-console-color": "~0.2",
  7815. "php": ">=5.4.0"
  7816. },
  7817. "require-dev": {
  7818. "jakub-onderka/php-code-style": "~1.0",
  7819. "jakub-onderka/php-parallel-lint": "~1.0",
  7820. "jakub-onderka/php-var-dump-check": "~0.1",
  7821. "phpunit/phpunit": "~4.0",
  7822. "squizlabs/php_codesniffer": "~1.5"
  7823. },
  7824. "type": "library",
  7825. "autoload": {
  7826. "psr-4": {
  7827. "JakubOnderka\\PhpConsoleHighlighter\\": "src/"
  7828. }
  7829. },
  7830. "notification-url": "https://packagist.org/downloads/",
  7831. "license": [
  7832. "MIT"
  7833. ],
  7834. "authors": [
  7835. {
  7836. "name": "Jakub Onderka",
  7837. "email": "acci@acci.cz",
  7838. "homepage": "http://www.acci.cz/"
  7839. }
  7840. ],
  7841. "description": "Highlight PHP code in terminal",
  7842. "time": "2018-09-29T18:48:56+00:00"
  7843. },
  7844. {
  7845. "name": "league/container",
  7846. "version": "2.4.1",
  7847. "source": {
  7848. "type": "git",
  7849. "url": "https://github.com/thephpleague/container.git",
  7850. "reference": "43f35abd03a12977a60ffd7095efd6a7808488c0"
  7851. },
  7852. "dist": {
  7853. "type": "zip",
  7854. "url": "https://api.github.com/repos/thephpleague/container/zipball/43f35abd03a12977a60ffd7095efd6a7808488c0",
  7855. "reference": "43f35abd03a12977a60ffd7095efd6a7808488c0",
  7856. "shasum": ""
  7857. },
  7858. "require": {
  7859. "container-interop/container-interop": "^1.2",
  7860. "php": "^5.4.0 || ^7.0"
  7861. },
  7862. "provide": {
  7863. "container-interop/container-interop-implementation": "^1.2",
  7864. "psr/container-implementation": "^1.0"
  7865. },
  7866. "replace": {
  7867. "orno/di": "~2.0"
  7868. },
  7869. "require-dev": {
  7870. "phpunit/phpunit": "4.*"
  7871. },
  7872. "type": "library",
  7873. "extra": {
  7874. "branch-alias": {
  7875. "dev-2.x": "2.x-dev",
  7876. "dev-1.x": "1.x-dev"
  7877. }
  7878. },
  7879. "autoload": {
  7880. "psr-4": {
  7881. "League\\Container\\": "src"
  7882. }
  7883. },
  7884. "notification-url": "https://packagist.org/downloads/",
  7885. "license": [
  7886. "MIT"
  7887. ],
  7888. "authors": [
  7889. {
  7890. "name": "Phil Bennett",
  7891. "email": "philipobenito@gmail.com",
  7892. "homepage": "http://www.philipobenito.com",
  7893. "role": "Developer"
  7894. }
  7895. ],
  7896. "description": "A fast and intuitive dependency injection container.",
  7897. "homepage": "https://github.com/thephpleague/container",
  7898. "keywords": [
  7899. "container",
  7900. "dependency",
  7901. "di",
  7902. "injection",
  7903. "league",
  7904. "provider",
  7905. "service"
  7906. ],
  7907. "time": "2017-05-10T09:20:27+00:00"
  7908. },
  7909. {
  7910. "name": "lsolesen/pel",
  7911. "version": "0.9.6",
  7912. "source": {
  7913. "type": "git",
  7914. "url": "https://github.com/lsolesen/pel.git",
  7915. "reference": "c9e3919f5db3b85c3c422d4f8d448dbcb2a87a23"
  7916. },
  7917. "dist": {
  7918. "type": "zip",
  7919. "url": "https://api.github.com/repos/lsolesen/pel/zipball/c9e3919f5db3b85c3c422d4f8d448dbcb2a87a23",
  7920. "reference": "c9e3919f5db3b85c3c422d4f8d448dbcb2a87a23",
  7921. "shasum": ""
  7922. },
  7923. "require": {
  7924. "php": ">=5.0.0"
  7925. },
  7926. "require-dev": {
  7927. "ext-gd": "*",
  7928. "phpunit/phpunit": "5.7.*",
  7929. "satooshi/php-coveralls": "1.0.*",
  7930. "squizlabs/php_codesniffer": "3.0.0RC3"
  7931. },
  7932. "type": "library",
  7933. "autoload": {
  7934. "psr-4": {
  7935. "lsolesen\\pel\\": "src/"
  7936. }
  7937. },
  7938. "notification-url": "https://packagist.org/downloads/",
  7939. "license": [
  7940. "GPL-2.0"
  7941. ],
  7942. "authors": [
  7943. {
  7944. "name": "Lars Olesen",
  7945. "email": "lars@intraface.dk",
  7946. "homepage": "http://intraface.dk",
  7947. "role": "Developer"
  7948. },
  7949. {
  7950. "name": "Martin Geisler",
  7951. "email": "martin@geisler.net",
  7952. "homepage": "http://geisler.net",
  7953. "role": "Developer"
  7954. }
  7955. ],
  7956. "description": "PHP Exif Library. A library for reading and writing Exif headers in JPEG and TIFF images using PHP.",
  7957. "homepage": "http://lsolesen.github.com/pel/",
  7958. "keywords": [
  7959. "exif",
  7960. "image"
  7961. ],
  7962. "time": "2017-02-03T11:58:58+00:00"
  7963. },
  7964. {
  7965. "name": "masterminds/html5",
  7966. "version": "2.5.0",
  7967. "source": {
  7968. "type": "git",
  7969. "url": "https://github.com/Masterminds/html5-php.git",
  7970. "reference": "b5d892a4bd058d61f736935d32a9c248f11ccc93"
  7971. },
  7972. "dist": {
  7973. "type": "zip",
  7974. "url": "https://api.github.com/repos/Masterminds/html5-php/zipball/b5d892a4bd058d61f736935d32a9c248f11ccc93",
  7975. "reference": "b5d892a4bd058d61f736935d32a9c248f11ccc93",
  7976. "shasum": ""
  7977. },
  7978. "require": {
  7979. "ext-ctype": "*",
  7980. "ext-dom": "*",
  7981. "ext-libxml": "*",
  7982. "php": ">=5.3.0"
  7983. },
  7984. "require-dev": {
  7985. "phpunit/phpunit": "^4.8.35",
  7986. "sami/sami": "~2.0",
  7987. "satooshi/php-coveralls": "1.0.*"
  7988. },
  7989. "type": "library",
  7990. "extra": {
  7991. "branch-alias": {
  7992. "dev-master": "2.4-dev"
  7993. }
  7994. },
  7995. "autoload": {
  7996. "psr-4": {
  7997. "Masterminds\\": "src"
  7998. }
  7999. },
  8000. "notification-url": "https://packagist.org/downloads/",
  8001. "license": [
  8002. "MIT"
  8003. ],
  8004. "authors": [
  8005. {
  8006. "name": "Matt Butcher",
  8007. "email": "technosophos@gmail.com"
  8008. },
  8009. {
  8010. "name": "Asmir Mustafic",
  8011. "email": "goetas@gmail.com"
  8012. },
  8013. {
  8014. "name": "Matt Farina",
  8015. "email": "matt@mattfarina.com"
  8016. }
  8017. ],
  8018. "description": "An HTML5 parser and serializer.",
  8019. "homepage": "http://masterminds.github.io/html5-php",
  8020. "keywords": [
  8021. "HTML5",
  8022. "dom",
  8023. "html",
  8024. "parser",
  8025. "querypath",
  8026. "serializer",
  8027. "xml"
  8028. ],
  8029. "time": "2018-12-27T22:03:43+00:00"
  8030. },
  8031. {
  8032. "name": "nikic/php-parser",
  8033. "version": "v4.2.0",
  8034. "source": {
  8035. "type": "git",
  8036. "url": "https://github.com/nikic/PHP-Parser.git",
  8037. "reference": "594bcae1fc0bccd3993d2f0d61a018e26ac2865a"
  8038. },
  8039. "dist": {
  8040. "type": "zip",
  8041. "url": "https://api.github.com/repos/nikic/PHP-Parser/zipball/594bcae1fc0bccd3993d2f0d61a018e26ac2865a",
  8042. "reference": "594bcae1fc0bccd3993d2f0d61a018e26ac2865a",
  8043. "shasum": ""
  8044. },
  8045. "require": {
  8046. "ext-tokenizer": "*",
  8047. "php": ">=7.0"
  8048. },
  8049. "require-dev": {
  8050. "phpunit/phpunit": "^6.5 || ^7.0"
  8051. },
  8052. "bin": [
  8053. "bin/php-parse"
  8054. ],
  8055. "type": "library",
  8056. "extra": {
  8057. "branch-alias": {
  8058. "dev-master": "4.2-dev"
  8059. }
  8060. },
  8061. "autoload": {
  8062. "psr-4": {
  8063. "PhpParser\\": "lib/PhpParser"
  8064. }
  8065. },
  8066. "notification-url": "https://packagist.org/downloads/",
  8067. "license": [
  8068. "BSD-3-Clause"
  8069. ],
  8070. "authors": [
  8071. {
  8072. "name": "Nikita Popov"
  8073. }
  8074. ],
  8075. "description": "A PHP parser written in PHP",
  8076. "keywords": [
  8077. "parser",
  8078. "php"
  8079. ],
  8080. "time": "2019-01-12T16:31:37+00:00"
  8081. },
  8082. {
  8083. "name": "paragonie/random_compat",
  8084. "version": "v2.0.18",
  8085. "source": {
  8086. "type": "git",
  8087. "url": "https://github.com/paragonie/random_compat.git",
  8088. "reference": "0a58ef6e3146256cc3dc7cc393927bcc7d1b72db"
  8089. },
  8090. "dist": {
  8091. "type": "zip",
  8092. "url": "https://api.github.com/repos/paragonie/random_compat/zipball/0a58ef6e3146256cc3dc7cc393927bcc7d1b72db",
  8093. "reference": "0a58ef6e3146256cc3dc7cc393927bcc7d1b72db",
  8094. "shasum": ""
  8095. },
  8096. "require": {
  8097. "php": ">=5.2.0"
  8098. },
  8099. "require-dev": {
  8100. "phpunit/phpunit": "4.*|5.*"
  8101. },
  8102. "suggest": {
  8103. "ext-libsodium": "Provides a modern crypto API that can be used to generate random bytes."
  8104. },
  8105. "type": "library",
  8106. "autoload": {
  8107. "files": [
  8108. "lib/random.php"
  8109. ]
  8110. },
  8111. "notification-url": "https://packagist.org/downloads/",
  8112. "license": [
  8113. "MIT"
  8114. ],
  8115. "authors": [
  8116. {
  8117. "name": "Paragon Initiative Enterprises",
  8118. "email": "security@paragonie.com",
  8119. "homepage": "https://paragonie.com"
  8120. }
  8121. ],
  8122. "description": "PHP 5.x polyfill for random_bytes() and random_int() from PHP 7",
  8123. "keywords": [
  8124. "csprng",
  8125. "polyfill",
  8126. "pseudorandom",
  8127. "random"
  8128. ],
  8129. "time": "2019-01-03T20:59:08+00:00"
  8130. },
  8131. {
  8132. "name": "phenx/php-font-lib",
  8133. "version": "0.5",
  8134. "source": {
  8135. "type": "git",
  8136. "url": "https://github.com/PhenX/php-font-lib.git",
  8137. "reference": "19ad2bebc35be028fcc0221025fcbf3d436a3962"
  8138. },
  8139. "dist": {
  8140. "type": "zip",
  8141. "url": "https://api.github.com/repos/PhenX/php-font-lib/zipball/19ad2bebc35be028fcc0221025fcbf3d436a3962",
  8142. "reference": "19ad2bebc35be028fcc0221025fcbf3d436a3962",
  8143. "shasum": ""
  8144. },
  8145. "require-dev": {
  8146. "phpunit/phpunit": "^4.8"
  8147. },
  8148. "type": "library",
  8149. "autoload": {
  8150. "psr-4": {
  8151. "FontLib\\": "src/FontLib"
  8152. }
  8153. },
  8154. "notification-url": "https://packagist.org/downloads/",
  8155. "license": [
  8156. "LGPL-3.0"
  8157. ],
  8158. "authors": [
  8159. {
  8160. "name": "Fabien Ménager",
  8161. "email": "fabien.menager@gmail.com"
  8162. }
  8163. ],
  8164. "description": "A library to read, parse, export and make subsets of different types of font files.",
  8165. "homepage": "https://github.com/PhenX/php-font-lib",
  8166. "time": "2017-02-11T10:58:43+00:00"
  8167. },
  8168. {
  8169. "name": "psr/container",
  8170. "version": "1.0.0",
  8171. "source": {
  8172. "type": "git",
  8173. "url": "https://github.com/php-fig/container.git",
  8174. "reference": "b7ce3b176482dbbc1245ebf52b181af44c2cf55f"
  8175. },
  8176. "dist": {
  8177. "type": "zip",
  8178. "url": "https://api.github.com/repos/php-fig/container/zipball/b7ce3b176482dbbc1245ebf52b181af44c2cf55f",
  8179. "reference": "b7ce3b176482dbbc1245ebf52b181af44c2cf55f",
  8180. "shasum": ""
  8181. },
  8182. "require": {
  8183. "php": ">=5.3.0"
  8184. },
  8185. "type": "library",
  8186. "extra": {
  8187. "branch-alias": {
  8188. "dev-master": "1.0.x-dev"
  8189. }
  8190. },
  8191. "autoload": {
  8192. "psr-4": {
  8193. "Psr\\Container\\": "src/"
  8194. }
  8195. },
  8196. "notification-url": "https://packagist.org/downloads/",
  8197. "license": [
  8198. "MIT"
  8199. ],
  8200. "authors": [
  8201. {
  8202. "name": "PHP-FIG",
  8203. "homepage": "http://www.php-fig.org/"
  8204. }
  8205. ],
  8206. "description": "Common Container Interface (PHP FIG PSR-11)",
  8207. "homepage": "https://github.com/php-fig/container",
  8208. "keywords": [
  8209. "PSR-11",
  8210. "container",
  8211. "container-interface",
  8212. "container-interop",
  8213. "psr"
  8214. ],
  8215. "time": "2017-02-14T16:28:37+00:00"
  8216. },
  8217. {
  8218. "name": "psr/http-message",
  8219. "version": "1.0.1",
  8220. "source": {
  8221. "type": "git",
  8222. "url": "https://github.com/php-fig/http-message.git",
  8223. "reference": "f6561bf28d520154e4b0ec72be95418abe6d9363"
  8224. },
  8225. "dist": {
  8226. "type": "zip",
  8227. "url": "https://api.github.com/repos/php-fig/http-message/zipball/f6561bf28d520154e4b0ec72be95418abe6d9363",
  8228. "reference": "f6561bf28d520154e4b0ec72be95418abe6d9363",
  8229. "shasum": ""
  8230. },
  8231. "require": {
  8232. "php": ">=5.3.0"
  8233. },
  8234. "type": "library",
  8235. "extra": {
  8236. "branch-alias": {
  8237. "dev-master": "1.0.x-dev"
  8238. }
  8239. },
  8240. "autoload": {
  8241. "psr-4": {
  8242. "Psr\\Http\\Message\\": "src/"
  8243. }
  8244. },
  8245. "notification-url": "https://packagist.org/downloads/",
  8246. "license": [
  8247. "MIT"
  8248. ],
  8249. "authors": [
  8250. {
  8251. "name": "PHP-FIG",
  8252. "homepage": "http://www.php-fig.org/"
  8253. }
  8254. ],
  8255. "description": "Common interface for HTTP messages",
  8256. "homepage": "https://github.com/php-fig/http-message",
  8257. "keywords": [
  8258. "http",
  8259. "http-message",
  8260. "psr",
  8261. "psr-7",
  8262. "request",
  8263. "response"
  8264. ],
  8265. "time": "2016-08-06T14:39:51+00:00"
  8266. },
  8267. {
  8268. "name": "psr/log",
  8269. "version": "1.1.0",
  8270. "source": {
  8271. "type": "git",
  8272. "url": "https://github.com/php-fig/log.git",
  8273. "reference": "6c001f1daafa3a3ac1d8ff69ee4db8e799a654dd"
  8274. },
  8275. "dist": {
  8276. "type": "zip",
  8277. "url": "https://api.github.com/repos/php-fig/log/zipball/6c001f1daafa3a3ac1d8ff69ee4db8e799a654dd",
  8278. "reference": "6c001f1daafa3a3ac1d8ff69ee4db8e799a654dd",
  8279. "shasum": ""
  8280. },
  8281. "require": {
  8282. "php": ">=5.3.0"
  8283. },
  8284. "type": "library",
  8285. "extra": {
  8286. "branch-alias": {
  8287. "dev-master": "1.0.x-dev"
  8288. }
  8289. },
  8290. "autoload": {
  8291. "psr-4": {
  8292. "Psr\\Log\\": "Psr/Log/"
  8293. }
  8294. },
  8295. "notification-url": "https://packagist.org/downloads/",
  8296. "license": [
  8297. "MIT"
  8298. ],
  8299. "authors": [
  8300. {
  8301. "name": "PHP-FIG",
  8302. "homepage": "http://www.php-fig.org/"
  8303. }
  8304. ],
  8305. "description": "Common interface for logging libraries",
  8306. "homepage": "https://github.com/php-fig/log",
  8307. "keywords": [
  8308. "log",
  8309. "psr",
  8310. "psr-3"
  8311. ],
  8312. "time": "2018-11-20T15:27:04+00:00"
  8313. },
  8314. {
  8315. "name": "psy/psysh",
  8316. "version": "v0.9.9",
  8317. "source": {
  8318. "type": "git",
  8319. "url": "https://github.com/bobthecow/psysh.git",
  8320. "reference": "9aaf29575bb8293206bb0420c1e1c87ff2ffa94e"
  8321. },
  8322. "dist": {
  8323. "type": "zip",
  8324. "url": "https://api.github.com/repos/bobthecow/psysh/zipball/9aaf29575bb8293206bb0420c1e1c87ff2ffa94e",
  8325. "reference": "9aaf29575bb8293206bb0420c1e1c87ff2ffa94e",
  8326. "shasum": ""
  8327. },
  8328. "require": {
  8329. "dnoegel/php-xdg-base-dir": "0.1",
  8330. "ext-json": "*",
  8331. "ext-tokenizer": "*",
  8332. "jakub-onderka/php-console-highlighter": "0.3.*|0.4.*",
  8333. "nikic/php-parser": "~1.3|~2.0|~3.0|~4.0",
  8334. "php": ">=5.4.0",
  8335. "symfony/console": "~2.3.10|^2.4.2|~3.0|~4.0",
  8336. "symfony/var-dumper": "~2.7|~3.0|~4.0"
  8337. },
  8338. "require-dev": {
  8339. "bamarni/composer-bin-plugin": "^1.2",
  8340. "hoa/console": "~2.15|~3.16",
  8341. "phpunit/phpunit": "~4.8.35|~5.0|~6.0|~7.0"
  8342. },
  8343. "suggest": {
  8344. "ext-pcntl": "Enabling the PCNTL extension makes PsySH a lot happier :)",
  8345. "ext-pdo-sqlite": "The doc command requires SQLite to work.",
  8346. "ext-posix": "If you have PCNTL, you'll want the POSIX extension as well.",
  8347. "ext-readline": "Enables support for arrow-key history navigation, and showing and manipulating command history.",
  8348. "hoa/console": "A pure PHP readline implementation. You'll want this if your PHP install doesn't already support readline or libedit."
  8349. },
  8350. "bin": [
  8351. "bin/psysh"
  8352. ],
  8353. "type": "library",
  8354. "extra": {
  8355. "branch-alias": {
  8356. "dev-develop": "0.9.x-dev"
  8357. }
  8358. },
  8359. "autoload": {
  8360. "files": [
  8361. "src/functions.php"
  8362. ],
  8363. "psr-4": {
  8364. "Psy\\": "src/"
  8365. }
  8366. },
  8367. "notification-url": "https://packagist.org/downloads/",
  8368. "license": [
  8369. "MIT"
  8370. ],
  8371. "authors": [
  8372. {
  8373. "name": "Justin Hileman",
  8374. "email": "justin@justinhileman.info",
  8375. "homepage": "http://justinhileman.com"
  8376. }
  8377. ],
  8378. "description": "An interactive shell for modern PHP.",
  8379. "homepage": "http://psysh.org",
  8380. "keywords": [
  8381. "REPL",
  8382. "console",
  8383. "interactive",
  8384. "shell"
  8385. ],
  8386. "time": "2018-10-13T15:16:03+00:00"
  8387. },
  8388. {
  8389. "name": "ralouphie/getallheaders",
  8390. "version": "2.0.5",
  8391. "source": {
  8392. "type": "git",
  8393. "url": "https://github.com/ralouphie/getallheaders.git",
  8394. "reference": "5601c8a83fbba7ef674a7369456d12f1e0d0eafa"
  8395. },
  8396. "dist": {
  8397. "type": "zip",
  8398. "url": "https://api.github.com/repos/ralouphie/getallheaders/zipball/5601c8a83fbba7ef674a7369456d12f1e0d0eafa",
  8399. "reference": "5601c8a83fbba7ef674a7369456d12f1e0d0eafa",
  8400. "shasum": ""
  8401. },
  8402. "require": {
  8403. "php": ">=5.3"
  8404. },
  8405. "require-dev": {
  8406. "phpunit/phpunit": "~3.7.0",
  8407. "satooshi/php-coveralls": ">=1.0"
  8408. },
  8409. "type": "library",
  8410. "autoload": {
  8411. "files": [
  8412. "src/getallheaders.php"
  8413. ]
  8414. },
  8415. "notification-url": "https://packagist.org/downloads/",
  8416. "license": [
  8417. "MIT"
  8418. ],
  8419. "authors": [
  8420. {
  8421. "name": "Ralph Khattar",
  8422. "email": "ralph.khattar@gmail.com"
  8423. }
  8424. ],
  8425. "description": "A polyfill for getallheaders.",
  8426. "time": "2016-02-11T07:05:27+00:00"
  8427. },
  8428. {
  8429. "name": "stack/builder",
  8430. "version": "v1.0.5",
  8431. "source": {
  8432. "type": "git",
  8433. "url": "https://github.com/stackphp/builder.git",
  8434. "reference": "fb3d136d04c6be41120ebf8c0cc71fe9507d750a"
  8435. },
  8436. "dist": {
  8437. "type": "zip",
  8438. "url": "https://api.github.com/repos/stackphp/builder/zipball/fb3d136d04c6be41120ebf8c0cc71fe9507d750a",
  8439. "reference": "fb3d136d04c6be41120ebf8c0cc71fe9507d750a",
  8440. "shasum": ""
  8441. },
  8442. "require": {
  8443. "php": ">=5.3.0",
  8444. "symfony/http-foundation": "~2.1|~3.0|~4.0",
  8445. "symfony/http-kernel": "~2.1|~3.0|~4.0"
  8446. },
  8447. "require-dev": {
  8448. "silex/silex": "~1.0"
  8449. },
  8450. "type": "library",
  8451. "extra": {
  8452. "branch-alias": {
  8453. "dev-master": "1.0-dev"
  8454. }
  8455. },
  8456. "autoload": {
  8457. "psr-0": {
  8458. "Stack": "src"
  8459. }
  8460. },
  8461. "notification-url": "https://packagist.org/downloads/",
  8462. "license": [
  8463. "MIT"
  8464. ],
  8465. "authors": [
  8466. {
  8467. "name": "Igor Wiedler",
  8468. "email": "igor@wiedler.ch"
  8469. }
  8470. ],
  8471. "description": "Builder for stack middlewares based on HttpKernelInterface.",
  8472. "keywords": [
  8473. "stack"
  8474. ],
  8475. "time": "2017-11-18T14:57:29+00:00"
  8476. },
  8477. {
  8478. "name": "stecman/symfony-console-completion",
  8479. "version": "0.9.0",
  8480. "source": {
  8481. "type": "git",
  8482. "url": "https://github.com/stecman/symfony-console-completion.git",
  8483. "reference": "bd07a24190541de2828c1d6469a8ddce599d3c5a"
  8484. },
  8485. "dist": {
  8486. "type": "zip",
  8487. "url": "https://api.github.com/repos/stecman/symfony-console-completion/zipball/bd07a24190541de2828c1d6469a8ddce599d3c5a",
  8488. "reference": "bd07a24190541de2828c1d6469a8ddce599d3c5a",
  8489. "shasum": ""
  8490. },
  8491. "require": {
  8492. "php": ">=5.3.2",
  8493. "symfony/console": "~2.3 || ~3.0 || ~4.0"
  8494. },
  8495. "require-dev": {
  8496. "phpunit/phpunit": "~4.8.36 || ~5.7 || ~6.4"
  8497. },
  8498. "type": "library",
  8499. "extra": {
  8500. "branch-alias": {
  8501. "dev-master": "0.6.x-dev"
  8502. }
  8503. },
  8504. "autoload": {
  8505. "psr-4": {
  8506. "Stecman\\Component\\Symfony\\Console\\BashCompletion\\": "src/"
  8507. }
  8508. },
  8509. "notification-url": "https://packagist.org/downloads/",
  8510. "license": [
  8511. "MIT"
  8512. ],
  8513. "authors": [
  8514. {
  8515. "name": "Stephen Holdaway",
  8516. "email": "stephen@stecman.co.nz"
  8517. }
  8518. ],
  8519. "description": "Automatic BASH completion for Symfony Console Component based applications.",
  8520. "time": "2019-01-19T21:25:25+00:00"
  8521. },
  8522. {
  8523. "name": "symfony-cmf/routing",
  8524. "version": "1.4.1",
  8525. "source": {
  8526. "type": "git",
  8527. "url": "https://github.com/symfony-cmf/routing.git",
  8528. "reference": "fb1e7f85ff8c6866238b7e73a490a0a0243ae8ac"
  8529. },
  8530. "dist": {
  8531. "type": "zip",
  8532. "url": "https://api.github.com/repos/symfony-cmf/routing/zipball/fb1e7f85ff8c6866238b7e73a490a0a0243ae8ac",
  8533. "reference": "fb1e7f85ff8c6866238b7e73a490a0a0243ae8ac",
  8534. "shasum": ""
  8535. },
  8536. "require": {
  8537. "php": "^5.3.9|^7.0",
  8538. "psr/log": "1.*",
  8539. "symfony/http-kernel": "^2.2|3.*",
  8540. "symfony/routing": "^2.2|3.*"
  8541. },
  8542. "require-dev": {
  8543. "friendsofsymfony/jsrouting-bundle": "^1.1",
  8544. "symfony-cmf/testing": "^1.3",
  8545. "symfony/config": "^2.2|3.*",
  8546. "symfony/dependency-injection": "^2.0.5|3.*",
  8547. "symfony/event-dispatcher": "^2.1|3.*"
  8548. },
  8549. "suggest": {
  8550. "symfony/event-dispatcher": "DynamicRouter can optionally trigger an event at the start of matching. Minimal version (~2.1)"
  8551. },
  8552. "type": "library",
  8553. "extra": {
  8554. "branch-alias": {
  8555. "dev-master": "1.4-dev"
  8556. }
  8557. },
  8558. "autoload": {
  8559. "psr-4": {
  8560. "Symfony\\Cmf\\Component\\Routing\\": ""
  8561. }
  8562. },
  8563. "notification-url": "https://packagist.org/downloads/",
  8564. "license": [
  8565. "MIT"
  8566. ],
  8567. "authors": [
  8568. {
  8569. "name": "Symfony CMF Community",
  8570. "homepage": "https://github.com/symfony-cmf/Routing/contributors"
  8571. }
  8572. ],
  8573. "description": "Extends the Symfony2 routing component for dynamic routes and chaining several routers",
  8574. "homepage": "http://cmf.symfony.com",
  8575. "keywords": [
  8576. "database",
  8577. "routing"
  8578. ],
  8579. "time": "2017-05-09T08:10:41+00:00"
  8580. },
  8581. {
  8582. "name": "symfony/class-loader",
  8583. "version": "v3.4.21",
  8584. "source": {
  8585. "type": "git",
  8586. "url": "https://github.com/symfony/class-loader.git",
  8587. "reference": "4513348012c25148f8cbc3a7761a1d1e60ca3e87"
  8588. },
  8589. "dist": {
  8590. "type": "zip",
  8591. "url": "https://api.github.com/repos/symfony/class-loader/zipball/4513348012c25148f8cbc3a7761a1d1e60ca3e87",
  8592. "reference": "4513348012c25148f8cbc3a7761a1d1e60ca3e87",
  8593. "shasum": ""
  8594. },
  8595. "require": {
  8596. "php": "^5.5.9|>=7.0.8"
  8597. },
  8598. "require-dev": {
  8599. "symfony/finder": "~2.8|~3.0|~4.0",
  8600. "symfony/polyfill-apcu": "~1.1"
  8601. },
  8602. "suggest": {
  8603. "symfony/polyfill-apcu": "For using ApcClassLoader on HHVM"
  8604. },
  8605. "type": "library",
  8606. "extra": {
  8607. "branch-alias": {
  8608. "dev-master": "3.4-dev"
  8609. }
  8610. },
  8611. "autoload": {
  8612. "psr-4": {
  8613. "Symfony\\Component\\ClassLoader\\": ""
  8614. },
  8615. "exclude-from-classmap": [
  8616. "/Tests/"
  8617. ]
  8618. },
  8619. "notification-url": "https://packagist.org/downloads/",
  8620. "license": [
  8621. "MIT"
  8622. ],
  8623. "authors": [
  8624. {
  8625. "name": "Fabien Potencier",
  8626. "email": "fabien@symfony.com"
  8627. },
  8628. {
  8629. "name": "Symfony Community",
  8630. "homepage": "https://symfony.com/contributors"
  8631. }
  8632. ],
  8633. "description": "Symfony ClassLoader Component",
  8634. "homepage": "https://symfony.com",
  8635. "time": "2019-01-01T13:45:19+00:00"
  8636. },
  8637. {
  8638. "name": "symfony/config",
  8639. "version": "v3.4.21",
  8640. "source": {
  8641. "type": "git",
  8642. "url": "https://github.com/symfony/config.git",
  8643. "reference": "17c5d8941eb75a03d19bc76a43757738632d87b3"
  8644. },
  8645. "dist": {
  8646. "type": "zip",
  8647. "url": "https://api.github.com/repos/symfony/config/zipball/17c5d8941eb75a03d19bc76a43757738632d87b3",
  8648. "reference": "17c5d8941eb75a03d19bc76a43757738632d87b3",
  8649. "shasum": ""
  8650. },
  8651. "require": {
  8652. "php": "^5.5.9|>=7.0.8",
  8653. "symfony/filesystem": "~2.8|~3.0|~4.0",
  8654. "symfony/polyfill-ctype": "~1.8"
  8655. },
  8656. "conflict": {
  8657. "symfony/dependency-injection": "<3.3",
  8658. "symfony/finder": "<3.3"
  8659. },
  8660. "require-dev": {
  8661. "symfony/dependency-injection": "~3.3|~4.0",
  8662. "symfony/event-dispatcher": "~3.3|~4.0",
  8663. "symfony/finder": "~3.3|~4.0",
  8664. "symfony/yaml": "~3.0|~4.0"
  8665. },
  8666. "suggest": {
  8667. "symfony/yaml": "To use the yaml reference dumper"
  8668. },
  8669. "type": "library",
  8670. "extra": {
  8671. "branch-alias": {
  8672. "dev-master": "3.4-dev"
  8673. }
  8674. },
  8675. "autoload": {
  8676. "psr-4": {
  8677. "Symfony\\Component\\Config\\": ""
  8678. },
  8679. "exclude-from-classmap": [
  8680. "/Tests/"
  8681. ]
  8682. },
  8683. "notification-url": "https://packagist.org/downloads/",
  8684. "license": [
  8685. "MIT"
  8686. ],
  8687. "authors": [
  8688. {
  8689. "name": "Fabien Potencier",
  8690. "email": "fabien@symfony.com"
  8691. },
  8692. {
  8693. "name": "Symfony Community",
  8694. "homepage": "https://symfony.com/contributors"
  8695. }
  8696. ],
  8697. "description": "Symfony Config Component",
  8698. "homepage": "https://symfony.com",
  8699. "time": "2019-01-01T13:45:19+00:00"
  8700. },
  8701. {
  8702. "name": "symfony/console",
  8703. "version": "v3.4.21",
  8704. "source": {
  8705. "type": "git",
  8706. "url": "https://github.com/symfony/console.git",
  8707. "reference": "a700b874d3692bc8342199adfb6d3b99f62cc61a"
  8708. },
  8709. "dist": {
  8710. "type": "zip",
  8711. "url": "https://api.github.com/repos/symfony/console/zipball/a700b874d3692bc8342199adfb6d3b99f62cc61a",
  8712. "reference": "a700b874d3692bc8342199adfb6d3b99f62cc61a",
  8713. "shasum": ""
  8714. },
  8715. "require": {
  8716. "php": "^5.5.9|>=7.0.8",
  8717. "symfony/debug": "~2.8|~3.0|~4.0",
  8718. "symfony/polyfill-mbstring": "~1.0"
  8719. },
  8720. "conflict": {
  8721. "symfony/dependency-injection": "<3.4",
  8722. "symfony/process": "<3.3"
  8723. },
  8724. "require-dev": {
  8725. "psr/log": "~1.0",
  8726. "symfony/config": "~3.3|~4.0",
  8727. "symfony/dependency-injection": "~3.4|~4.0",
  8728. "symfony/event-dispatcher": "~2.8|~3.0|~4.0",
  8729. "symfony/lock": "~3.4|~4.0",
  8730. "symfony/process": "~3.3|~4.0"
  8731. },
  8732. "suggest": {
  8733. "psr/log-implementation": "For using the console logger",
  8734. "symfony/event-dispatcher": "",
  8735. "symfony/lock": "",
  8736. "symfony/process": ""
  8737. },
  8738. "type": "library",
  8739. "extra": {
  8740. "branch-alias": {
  8741. "dev-master": "3.4-dev"
  8742. }
  8743. },
  8744. "autoload": {
  8745. "psr-4": {
  8746. "Symfony\\Component\\Console\\": ""
  8747. },
  8748. "exclude-from-classmap": [
  8749. "/Tests/"
  8750. ]
  8751. },
  8752. "notification-url": "https://packagist.org/downloads/",
  8753. "license": [
  8754. "MIT"
  8755. ],
  8756. "authors": [
  8757. {
  8758. "name": "Fabien Potencier",
  8759. "email": "fabien@symfony.com"
  8760. },
  8761. {
  8762. "name": "Symfony Community",
  8763. "homepage": "https://symfony.com/contributors"
  8764. }
  8765. ],
  8766. "description": "Symfony Console Component",
  8767. "homepage": "https://symfony.com",
  8768. "time": "2019-01-04T04:42:43+00:00"
  8769. },
  8770. {
  8771. "name": "symfony/css-selector",
  8772. "version": "v3.4.21",
  8773. "source": {
  8774. "type": "git",
  8775. "url": "https://github.com/symfony/css-selector.git",
  8776. "reference": "12f86295c46c36af9896cf21db6b6b8a1465315d"
  8777. },
  8778. "dist": {
  8779. "type": "zip",
  8780. "url": "https://api.github.com/repos/symfony/css-selector/zipball/12f86295c46c36af9896cf21db6b6b8a1465315d",
  8781. "reference": "12f86295c46c36af9896cf21db6b6b8a1465315d",
  8782. "shasum": ""
  8783. },
  8784. "require": {
  8785. "php": "^5.5.9|>=7.0.8"
  8786. },
  8787. "type": "library",
  8788. "extra": {
  8789. "branch-alias": {
  8790. "dev-master": "3.4-dev"
  8791. }
  8792. },
  8793. "autoload": {
  8794. "psr-4": {
  8795. "Symfony\\Component\\CssSelector\\": ""
  8796. },
  8797. "exclude-from-classmap": [
  8798. "/Tests/"
  8799. ]
  8800. },
  8801. "notification-url": "https://packagist.org/downloads/",
  8802. "license": [
  8803. "MIT"
  8804. ],
  8805. "authors": [
  8806. {
  8807. "name": "Jean-François Simon",
  8808. "email": "jeanfrancois.simon@sensiolabs.com"
  8809. },
  8810. {
  8811. "name": "Fabien Potencier",
  8812. "email": "fabien@symfony.com"
  8813. },
  8814. {
  8815. "name": "Symfony Community",
  8816. "homepage": "https://symfony.com/contributors"
  8817. }
  8818. ],
  8819. "description": "Symfony CssSelector Component",
  8820. "homepage": "https://symfony.com",
  8821. "time": "2019-01-02T09:30:52+00:00"
  8822. },
  8823. {
  8824. "name": "symfony/debug",
  8825. "version": "v3.4.21",
  8826. "source": {
  8827. "type": "git",
  8828. "url": "https://github.com/symfony/debug.git",
  8829. "reference": "26d7f23b9bd0b93bee5583e4d6ca5cb1ab31b186"
  8830. },
  8831. "dist": {
  8832. "type": "zip",
  8833. "url": "https://api.github.com/repos/symfony/debug/zipball/26d7f23b9bd0b93bee5583e4d6ca5cb1ab31b186",
  8834. "reference": "26d7f23b9bd0b93bee5583e4d6ca5cb1ab31b186",
  8835. "shasum": ""
  8836. },
  8837. "require": {
  8838. "php": "^5.5.9|>=7.0.8",
  8839. "psr/log": "~1.0"
  8840. },
  8841. "conflict": {
  8842. "symfony/http-kernel": ">=2.3,<2.3.24|~2.4.0|>=2.5,<2.5.9|>=2.6,<2.6.2"
  8843. },
  8844. "require-dev": {
  8845. "symfony/http-kernel": "~2.8|~3.0|~4.0"
  8846. },
  8847. "type": "library",
  8848. "extra": {
  8849. "branch-alias": {
  8850. "dev-master": "3.4-dev"
  8851. }
  8852. },
  8853. "autoload": {
  8854. "psr-4": {
  8855. "Symfony\\Component\\Debug\\": ""
  8856. },
  8857. "exclude-from-classmap": [
  8858. "/Tests/"
  8859. ]
  8860. },
  8861. "notification-url": "https://packagist.org/downloads/",
  8862. "license": [
  8863. "MIT"
  8864. ],
  8865. "authors": [
  8866. {
  8867. "name": "Fabien Potencier",
  8868. "email": "fabien@symfony.com"
  8869. },
  8870. {
  8871. "name": "Symfony Community",
  8872. "homepage": "https://symfony.com/contributors"
  8873. }
  8874. ],
  8875. "description": "Symfony Debug Component",
  8876. "homepage": "https://symfony.com",
  8877. "time": "2019-01-01T13:45:19+00:00"
  8878. },
  8879. {
  8880. "name": "symfony/dependency-injection",
  8881. "version": "v3.4.21",
  8882. "source": {
  8883. "type": "git",
  8884. "url": "https://github.com/symfony/dependency-injection.git",
  8885. "reference": "928a38b18bd632d67acbca74d0b2eed09915e83e"
  8886. },
  8887. "dist": {
  8888. "type": "zip",
  8889. "url": "https://api.github.com/repos/symfony/dependency-injection/zipball/928a38b18bd632d67acbca74d0b2eed09915e83e",
  8890. "reference": "928a38b18bd632d67acbca74d0b2eed09915e83e",
  8891. "shasum": ""
  8892. },
  8893. "require": {
  8894. "php": "^5.5.9|>=7.0.8",
  8895. "psr/container": "^1.0"
  8896. },
  8897. "conflict": {
  8898. "symfony/config": "<3.3.7",
  8899. "symfony/finder": "<3.3",
  8900. "symfony/proxy-manager-bridge": "<3.4",
  8901. "symfony/yaml": "<3.4"
  8902. },
  8903. "provide": {
  8904. "psr/container-implementation": "1.0"
  8905. },
  8906. "require-dev": {
  8907. "symfony/config": "~3.3|~4.0",
  8908. "symfony/expression-language": "~2.8|~3.0|~4.0",
  8909. "symfony/yaml": "~3.4|~4.0"
  8910. },
  8911. "suggest": {
  8912. "symfony/config": "",
  8913. "symfony/expression-language": "For using expressions in service container configuration",
  8914. "symfony/finder": "For using double-star glob patterns or when GLOB_BRACE portability is required",
  8915. "symfony/proxy-manager-bridge": "Generate service proxies to lazy load them",
  8916. "symfony/yaml": ""
  8917. },
  8918. "type": "library",
  8919. "extra": {
  8920. "branch-alias": {
  8921. "dev-master": "3.4-dev"
  8922. }
  8923. },
  8924. "autoload": {
  8925. "psr-4": {
  8926. "Symfony\\Component\\DependencyInjection\\": ""
  8927. },
  8928. "exclude-from-classmap": [
  8929. "/Tests/"
  8930. ]
  8931. },
  8932. "notification-url": "https://packagist.org/downloads/",
  8933. "license": [
  8934. "MIT"
  8935. ],
  8936. "authors": [
  8937. {
  8938. "name": "Fabien Potencier",
  8939. "email": "fabien@symfony.com"
  8940. },
  8941. {
  8942. "name": "Symfony Community",
  8943. "homepage": "https://symfony.com/contributors"
  8944. }
  8945. ],
  8946. "description": "Symfony DependencyInjection Component",
  8947. "homepage": "https://symfony.com",
  8948. "time": "2019-01-05T12:26:58+00:00"
  8949. },
  8950. {
  8951. "name": "symfony/dom-crawler",
  8952. "version": "v3.4.21",
  8953. "source": {
  8954. "type": "git",
  8955. "url": "https://github.com/symfony/dom-crawler.git",
  8956. "reference": "311f666d85d1075b0a294ba1f3de4ae9307d8180"
  8957. },
  8958. "dist": {
  8959. "type": "zip",
  8960. "url": "https://api.github.com/repos/symfony/dom-crawler/zipball/311f666d85d1075b0a294ba1f3de4ae9307d8180",
  8961. "reference": "311f666d85d1075b0a294ba1f3de4ae9307d8180",
  8962. "shasum": ""
  8963. },
  8964. "require": {
  8965. "php": "^5.5.9|>=7.0.8",
  8966. "symfony/polyfill-ctype": "~1.8",
  8967. "symfony/polyfill-mbstring": "~1.0"
  8968. },
  8969. "require-dev": {
  8970. "symfony/css-selector": "~2.8|~3.0|~4.0"
  8971. },
  8972. "suggest": {
  8973. "symfony/css-selector": ""
  8974. },
  8975. "type": "library",
  8976. "extra": {
  8977. "branch-alias": {
  8978. "dev-master": "3.4-dev"
  8979. }
  8980. },
  8981. "autoload": {
  8982. "psr-4": {
  8983. "Symfony\\Component\\DomCrawler\\": ""
  8984. },
  8985. "exclude-from-classmap": [
  8986. "/Tests/"
  8987. ]
  8988. },
  8989. "notification-url": "https://packagist.org/downloads/",
  8990. "license": [
  8991. "MIT"
  8992. ],
  8993. "authors": [
  8994. {
  8995. "name": "Fabien Potencier",
  8996. "email": "fabien@symfony.com"
  8997. },
  8998. {
  8999. "name": "Symfony Community",
  9000. "homepage": "https://symfony.com/contributors"
  9001. }
  9002. ],
  9003. "description": "Symfony DomCrawler Component",
  9004. "homepage": "https://symfony.com",
  9005. "time": "2019-01-01T13:45:19+00:00"
  9006. },
  9007. {
  9008. "name": "symfony/event-dispatcher",
  9009. "version": "v3.4.21",
  9010. "source": {
  9011. "type": "git",
  9012. "url": "https://github.com/symfony/event-dispatcher.git",
  9013. "reference": "d1cdd46c53c264a2bd42505bd0e8ce21423bd0e2"
  9014. },
  9015. "dist": {
  9016. "type": "zip",
  9017. "url": "https://api.github.com/repos/symfony/event-dispatcher/zipball/d1cdd46c53c264a2bd42505bd0e8ce21423bd0e2",
  9018. "reference": "d1cdd46c53c264a2bd42505bd0e8ce21423bd0e2",
  9019. "shasum": ""
  9020. },
  9021. "require": {
  9022. "php": "^5.5.9|>=7.0.8"
  9023. },
  9024. "conflict": {
  9025. "symfony/dependency-injection": "<3.3"
  9026. },
  9027. "require-dev": {
  9028. "psr/log": "~1.0",
  9029. "symfony/config": "~2.8|~3.0|~4.0",
  9030. "symfony/dependency-injection": "~3.3|~4.0",
  9031. "symfony/expression-language": "~2.8|~3.0|~4.0",
  9032. "symfony/stopwatch": "~2.8|~3.0|~4.0"
  9033. },
  9034. "suggest": {
  9035. "symfony/dependency-injection": "",
  9036. "symfony/http-kernel": ""
  9037. },
  9038. "type": "library",
  9039. "extra": {
  9040. "branch-alias": {
  9041. "dev-master": "3.4-dev"
  9042. }
  9043. },
  9044. "autoload": {
  9045. "psr-4": {
  9046. "Symfony\\Component\\EventDispatcher\\": ""
  9047. },
  9048. "exclude-from-classmap": [
  9049. "/Tests/"
  9050. ]
  9051. },
  9052. "notification-url": "https://packagist.org/downloads/",
  9053. "license": [
  9054. "MIT"
  9055. ],
  9056. "authors": [
  9057. {
  9058. "name": "Fabien Potencier",
  9059. "email": "fabien@symfony.com"
  9060. },
  9061. {
  9062. "name": "Symfony Community",
  9063. "homepage": "https://symfony.com/contributors"
  9064. }
  9065. ],
  9066. "description": "Symfony EventDispatcher Component",
  9067. "homepage": "https://symfony.com",
  9068. "time": "2019-01-01T18:08:36+00:00"
  9069. },
  9070. {
  9071. "name": "symfony/filesystem",
  9072. "version": "v3.4.21",
  9073. "source": {
  9074. "type": "git",
  9075. "url": "https://github.com/symfony/filesystem.git",
  9076. "reference": "c24ce3d18ccc9bb9d7e1d6ce9330fcc6061cafde"
  9077. },
  9078. "dist": {
  9079. "type": "zip",
  9080. "url": "https://api.github.com/repos/symfony/filesystem/zipball/c24ce3d18ccc9bb9d7e1d6ce9330fcc6061cafde",
  9081. "reference": "c24ce3d18ccc9bb9d7e1d6ce9330fcc6061cafde",
  9082. "shasum": ""
  9083. },
  9084. "require": {
  9085. "php": "^5.5.9|>=7.0.8",
  9086. "symfony/polyfill-ctype": "~1.8"
  9087. },
  9088. "type": "library",
  9089. "extra": {
  9090. "branch-alias": {
  9091. "dev-master": "3.4-dev"
  9092. }
  9093. },
  9094. "autoload": {
  9095. "psr-4": {
  9096. "Symfony\\Component\\Filesystem\\": ""
  9097. },
  9098. "exclude-from-classmap": [
  9099. "/Tests/"
  9100. ]
  9101. },
  9102. "notification-url": "https://packagist.org/downloads/",
  9103. "license": [
  9104. "MIT"
  9105. ],
  9106. "authors": [
  9107. {
  9108. "name": "Fabien Potencier",
  9109. "email": "fabien@symfony.com"
  9110. },
  9111. {
  9112. "name": "Symfony Community",
  9113. "homepage": "https://symfony.com/contributors"
  9114. }
  9115. ],
  9116. "description": "Symfony Filesystem Component",
  9117. "homepage": "https://symfony.com",
  9118. "time": "2019-01-01T13:45:19+00:00"
  9119. },
  9120. {
  9121. "name": "symfony/finder",
  9122. "version": "v3.4.21",
  9123. "source": {
  9124. "type": "git",
  9125. "url": "https://github.com/symfony/finder.git",
  9126. "reference": "3f2a2ab6315dd7682d4c16dcae1e7b95c8b8555e"
  9127. },
  9128. "dist": {
  9129. "type": "zip",
  9130. "url": "https://api.github.com/repos/symfony/finder/zipball/3f2a2ab6315dd7682d4c16dcae1e7b95c8b8555e",
  9131. "reference": "3f2a2ab6315dd7682d4c16dcae1e7b95c8b8555e",
  9132. "shasum": ""
  9133. },
  9134. "require": {
  9135. "php": "^5.5.9|>=7.0.8"
  9136. },
  9137. "type": "library",
  9138. "extra": {
  9139. "branch-alias": {
  9140. "dev-master": "3.4-dev"
  9141. }
  9142. },
  9143. "autoload": {
  9144. "psr-4": {
  9145. "Symfony\\Component\\Finder\\": ""
  9146. },
  9147. "exclude-from-classmap": [
  9148. "/Tests/"
  9149. ]
  9150. },
  9151. "notification-url": "https://packagist.org/downloads/",
  9152. "license": [
  9153. "MIT"
  9154. ],
  9155. "authors": [
  9156. {
  9157. "name": "Fabien Potencier",
  9158. "email": "fabien@symfony.com"
  9159. },
  9160. {
  9161. "name": "Symfony Community",
  9162. "homepage": "https://symfony.com/contributors"
  9163. }
  9164. ],
  9165. "description": "Symfony Finder Component",
  9166. "homepage": "https://symfony.com",
  9167. "time": "2019-01-01T13:45:19+00:00"
  9168. },
  9169. {
  9170. "name": "symfony/http-foundation",
  9171. "version": "v3.4.21",
  9172. "source": {
  9173. "type": "git",
  9174. "url": "https://github.com/symfony/http-foundation.git",
  9175. "reference": "2b97319e68816d2120eee7f13f4b76da12e04d03"
  9176. },
  9177. "dist": {
  9178. "type": "zip",
  9179. "url": "https://api.github.com/repos/symfony/http-foundation/zipball/2b97319e68816d2120eee7f13f4b76da12e04d03",
  9180. "reference": "2b97319e68816d2120eee7f13f4b76da12e04d03",
  9181. "shasum": ""
  9182. },
  9183. "require": {
  9184. "php": "^5.5.9|>=7.0.8",
  9185. "symfony/polyfill-mbstring": "~1.1",
  9186. "symfony/polyfill-php70": "~1.6"
  9187. },
  9188. "require-dev": {
  9189. "symfony/expression-language": "~2.8|~3.0|~4.0"
  9190. },
  9191. "type": "library",
  9192. "extra": {
  9193. "branch-alias": {
  9194. "dev-master": "3.4-dev"
  9195. }
  9196. },
  9197. "autoload": {
  9198. "psr-4": {
  9199. "Symfony\\Component\\HttpFoundation\\": ""
  9200. },
  9201. "exclude-from-classmap": [
  9202. "/Tests/"
  9203. ]
  9204. },
  9205. "notification-url": "https://packagist.org/downloads/",
  9206. "license": [
  9207. "MIT"
  9208. ],
  9209. "authors": [
  9210. {
  9211. "name": "Fabien Potencier",
  9212. "email": "fabien@symfony.com"
  9213. },
  9214. {
  9215. "name": "Symfony Community",
  9216. "homepage": "https://symfony.com/contributors"
  9217. }
  9218. ],
  9219. "description": "Symfony HttpFoundation Component",
  9220. "homepage": "https://symfony.com",
  9221. "time": "2019-01-05T08:05:37+00:00"
  9222. },
  9223. {
  9224. "name": "symfony/http-kernel",
  9225. "version": "v3.4.21",
  9226. "source": {
  9227. "type": "git",
  9228. "url": "https://github.com/symfony/http-kernel.git",
  9229. "reference": "60bd9d7444ca436e131c347d78ec039dd99a34b4"
  9230. },
  9231. "dist": {
  9232. "type": "zip",
  9233. "url": "https://api.github.com/repos/symfony/http-kernel/zipball/60bd9d7444ca436e131c347d78ec039dd99a34b4",
  9234. "reference": "60bd9d7444ca436e131c347d78ec039dd99a34b4",
  9235. "shasum": ""
  9236. },
  9237. "require": {
  9238. "php": "^5.5.9|>=7.0.8",
  9239. "psr/log": "~1.0",
  9240. "symfony/debug": "~2.8|~3.0|~4.0",
  9241. "symfony/event-dispatcher": "~2.8|~3.0|~4.0",
  9242. "symfony/http-foundation": "~3.4.12|~4.0.12|^4.1.1",
  9243. "symfony/polyfill-ctype": "~1.8"
  9244. },
  9245. "conflict": {
  9246. "symfony/config": "<2.8",
  9247. "symfony/dependency-injection": "<3.4.10|<4.0.10,>=4",
  9248. "symfony/var-dumper": "<3.3",
  9249. "twig/twig": "<1.34|<2.4,>=2"
  9250. },
  9251. "provide": {
  9252. "psr/log-implementation": "1.0"
  9253. },
  9254. "require-dev": {
  9255. "psr/cache": "~1.0",
  9256. "symfony/browser-kit": "~2.8|~3.0|~4.0",
  9257. "symfony/class-loader": "~2.8|~3.0",
  9258. "symfony/config": "~2.8|~3.0|~4.0",
  9259. "symfony/console": "~2.8|~3.0|~4.0",
  9260. "symfony/css-selector": "~2.8|~3.0|~4.0",
  9261. "symfony/dependency-injection": "^3.4.10|^4.0.10",
  9262. "symfony/dom-crawler": "~2.8|~3.0|~4.0",
  9263. "symfony/expression-language": "~2.8|~3.0|~4.0",
  9264. "symfony/finder": "~2.8|~3.0|~4.0",
  9265. "symfony/process": "~2.8|~3.0|~4.0",
  9266. "symfony/routing": "~3.4|~4.0",
  9267. "symfony/stopwatch": "~2.8|~3.0|~4.0",
  9268. "symfony/templating": "~2.8|~3.0|~4.0",
  9269. "symfony/translation": "~2.8|~3.0|~4.0",
  9270. "symfony/var-dumper": "~3.3|~4.0"
  9271. },
  9272. "suggest": {
  9273. "symfony/browser-kit": "",
  9274. "symfony/config": "",
  9275. "symfony/console": "",
  9276. "symfony/dependency-injection": "",
  9277. "symfony/finder": "",
  9278. "symfony/var-dumper": ""
  9279. },
  9280. "type": "library",
  9281. "extra": {
  9282. "branch-alias": {
  9283. "dev-master": "3.4-dev"
  9284. }
  9285. },
  9286. "autoload": {
  9287. "psr-4": {
  9288. "Symfony\\Component\\HttpKernel\\": ""
  9289. },
  9290. "exclude-from-classmap": [
  9291. "/Tests/"
  9292. ]
  9293. },
  9294. "notification-url": "https://packagist.org/downloads/",
  9295. "license": [
  9296. "MIT"
  9297. ],
  9298. "authors": [
  9299. {
  9300. "name": "Fabien Potencier",
  9301. "email": "fabien@symfony.com"
  9302. },
  9303. {
  9304. "name": "Symfony Community",
  9305. "homepage": "https://symfony.com/contributors"
  9306. }
  9307. ],
  9308. "description": "Symfony HttpKernel Component",
  9309. "homepage": "https://symfony.com",
  9310. "time": "2019-01-06T15:53:59+00:00"
  9311. },
  9312. {
  9313. "name": "symfony/polyfill-ctype",
  9314. "version": "v1.10.0",
  9315. "source": {
  9316. "type": "git",
  9317. "url": "https://github.com/symfony/polyfill-ctype.git",
  9318. "reference": "e3d826245268269cd66f8326bd8bc066687b4a19"
  9319. },
  9320. "dist": {
  9321. "type": "zip",
  9322. "url": "https://api.github.com/repos/symfony/polyfill-ctype/zipball/e3d826245268269cd66f8326bd8bc066687b4a19",
  9323. "reference": "e3d826245268269cd66f8326bd8bc066687b4a19",
  9324. "shasum": ""
  9325. },
  9326. "require": {
  9327. "php": ">=5.3.3"
  9328. },
  9329. "suggest": {
  9330. "ext-ctype": "For best performance"
  9331. },
  9332. "type": "library",
  9333. "extra": {
  9334. "branch-alias": {
  9335. "dev-master": "1.9-dev"
  9336. }
  9337. },
  9338. "autoload": {
  9339. "psr-4": {
  9340. "Symfony\\Polyfill\\Ctype\\": ""
  9341. },
  9342. "files": [
  9343. "bootstrap.php"
  9344. ]
  9345. },
  9346. "notification-url": "https://packagist.org/downloads/",
  9347. "license": [
  9348. "MIT"
  9349. ],
  9350. "authors": [
  9351. {
  9352. "name": "Symfony Community",
  9353. "homepage": "https://symfony.com/contributors"
  9354. },
  9355. {
  9356. "name": "Gert de Pagter",
  9357. "email": "backendtea@gmail.com"
  9358. }
  9359. ],
  9360. "description": "Symfony polyfill for ctype functions",
  9361. "homepage": "https://symfony.com",
  9362. "keywords": [
  9363. "compatibility",
  9364. "ctype",
  9365. "polyfill",
  9366. "portable"
  9367. ],
  9368. "time": "2018-08-06T14:22:27+00:00"
  9369. },
  9370. {
  9371. "name": "symfony/polyfill-iconv",
  9372. "version": "v1.10.0",
  9373. "source": {
  9374. "type": "git",
  9375. "url": "https://github.com/symfony/polyfill-iconv.git",
  9376. "reference": "97001cfc283484c9691769f51cdf25259037eba2"
  9377. },
  9378. "dist": {
  9379. "type": "zip",
  9380. "url": "https://api.github.com/repos/symfony/polyfill-iconv/zipball/97001cfc283484c9691769f51cdf25259037eba2",
  9381. "reference": "97001cfc283484c9691769f51cdf25259037eba2",
  9382. "shasum": ""
  9383. },
  9384. "require": {
  9385. "php": ">=5.3.3"
  9386. },
  9387. "suggest": {
  9388. "ext-iconv": "For best performance"
  9389. },
  9390. "type": "library",
  9391. "extra": {
  9392. "branch-alias": {
  9393. "dev-master": "1.9-dev"
  9394. }
  9395. },
  9396. "autoload": {
  9397. "psr-4": {
  9398. "Symfony\\Polyfill\\Iconv\\": ""
  9399. },
  9400. "files": [
  9401. "bootstrap.php"
  9402. ]
  9403. },
  9404. "notification-url": "https://packagist.org/downloads/",
  9405. "license": [
  9406. "MIT"
  9407. ],
  9408. "authors": [
  9409. {
  9410. "name": "Nicolas Grekas",
  9411. "email": "p@tchwork.com"
  9412. },
  9413. {
  9414. "name": "Symfony Community",
  9415. "homepage": "https://symfony.com/contributors"
  9416. }
  9417. ],
  9418. "description": "Symfony polyfill for the Iconv extension",
  9419. "homepage": "https://symfony.com",
  9420. "keywords": [
  9421. "compatibility",
  9422. "iconv",
  9423. "polyfill",
  9424. "portable",
  9425. "shim"
  9426. ],
  9427. "time": "2018-09-21T06:26:08+00:00"
  9428. },
  9429. {
  9430. "name": "symfony/polyfill-mbstring",
  9431. "version": "v1.10.0",
  9432. "source": {
  9433. "type": "git",
  9434. "url": "https://github.com/symfony/polyfill-mbstring.git",
  9435. "reference": "c79c051f5b3a46be09205c73b80b346e4153e494"
  9436. },
  9437. "dist": {
  9438. "type": "zip",
  9439. "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/c79c051f5b3a46be09205c73b80b346e4153e494",
  9440. "reference": "c79c051f5b3a46be09205c73b80b346e4153e494",
  9441. "shasum": ""
  9442. },
  9443. "require": {
  9444. "php": ">=5.3.3"
  9445. },
  9446. "suggest": {
  9447. "ext-mbstring": "For best performance"
  9448. },
  9449. "type": "library",
  9450. "extra": {
  9451. "branch-alias": {
  9452. "dev-master": "1.9-dev"
  9453. }
  9454. },
  9455. "autoload": {
  9456. "psr-4": {
  9457. "Symfony\\Polyfill\\Mbstring\\": ""
  9458. },
  9459. "files": [
  9460. "bootstrap.php"
  9461. ]
  9462. },
  9463. "notification-url": "https://packagist.org/downloads/",
  9464. "license": [
  9465. "MIT"
  9466. ],
  9467. "authors": [
  9468. {
  9469. "name": "Nicolas Grekas",
  9470. "email": "p@tchwork.com"
  9471. },
  9472. {
  9473. "name": "Symfony Community",
  9474. "homepage": "https://symfony.com/contributors"
  9475. }
  9476. ],
  9477. "description": "Symfony polyfill for the Mbstring extension",
  9478. "homepage": "https://symfony.com",
  9479. "keywords": [
  9480. "compatibility",
  9481. "mbstring",
  9482. "polyfill",
  9483. "portable",
  9484. "shim"
  9485. ],
  9486. "time": "2018-09-21T13:07:52+00:00"
  9487. },
  9488. {
  9489. "name": "symfony/polyfill-php70",
  9490. "version": "v1.10.0",
  9491. "source": {
  9492. "type": "git",
  9493. "url": "https://github.com/symfony/polyfill-php70.git",
  9494. "reference": "6b88000cdd431cd2e940caa2cb569201f3f84224"
  9495. },
  9496. "dist": {
  9497. "type": "zip",
  9498. "url": "https://api.github.com/repos/symfony/polyfill-php70/zipball/6b88000cdd431cd2e940caa2cb569201f3f84224",
  9499. "reference": "6b88000cdd431cd2e940caa2cb569201f3f84224",
  9500. "shasum": ""
  9501. },
  9502. "require": {
  9503. "paragonie/random_compat": "~1.0|~2.0|~9.99",
  9504. "php": ">=5.3.3"
  9505. },
  9506. "type": "library",
  9507. "extra": {
  9508. "branch-alias": {
  9509. "dev-master": "1.9-dev"
  9510. }
  9511. },
  9512. "autoload": {
  9513. "psr-4": {
  9514. "Symfony\\Polyfill\\Php70\\": ""
  9515. },
  9516. "files": [
  9517. "bootstrap.php"
  9518. ],
  9519. "classmap": [
  9520. "Resources/stubs"
  9521. ]
  9522. },
  9523. "notification-url": "https://packagist.org/downloads/",
  9524. "license": [
  9525. "MIT"
  9526. ],
  9527. "authors": [
  9528. {
  9529. "name": "Nicolas Grekas",
  9530. "email": "p@tchwork.com"
  9531. },
  9532. {
  9533. "name": "Symfony Community",
  9534. "homepage": "https://symfony.com/contributors"
  9535. }
  9536. ],
  9537. "description": "Symfony polyfill backporting some PHP 7.0+ features to lower PHP versions",
  9538. "homepage": "https://symfony.com",
  9539. "keywords": [
  9540. "compatibility",
  9541. "polyfill",
  9542. "portable",
  9543. "shim"
  9544. ],
  9545. "time": "2018-09-21T06:26:08+00:00"
  9546. },
  9547. {
  9548. "name": "symfony/process",
  9549. "version": "v3.4.21",
  9550. "source": {
  9551. "type": "git",
  9552. "url": "https://github.com/symfony/process.git",
  9553. "reference": "0d41dd7d95ed179aed6a13393b0f4f97bfa2d25c"
  9554. },
  9555. "dist": {
  9556. "type": "zip",
  9557. "url": "https://api.github.com/repos/symfony/process/zipball/0d41dd7d95ed179aed6a13393b0f4f97bfa2d25c",
  9558. "reference": "0d41dd7d95ed179aed6a13393b0f4f97bfa2d25c",
  9559. "shasum": ""
  9560. },
  9561. "require": {
  9562. "php": "^5.5.9|>=7.0.8"
  9563. },
  9564. "type": "library",
  9565. "extra": {
  9566. "branch-alias": {
  9567. "dev-master": "3.4-dev"
  9568. }
  9569. },
  9570. "autoload": {
  9571. "psr-4": {
  9572. "Symfony\\Component\\Process\\": ""
  9573. },
  9574. "exclude-from-classmap": [
  9575. "/Tests/"
  9576. ]
  9577. },
  9578. "notification-url": "https://packagist.org/downloads/",
  9579. "license": [
  9580. "MIT"
  9581. ],
  9582. "authors": [
  9583. {
  9584. "name": "Fabien Potencier",
  9585. "email": "fabien@symfony.com"
  9586. },
  9587. {
  9588. "name": "Symfony Community",
  9589. "homepage": "https://symfony.com/contributors"
  9590. }
  9591. ],
  9592. "description": "Symfony Process Component",
  9593. "homepage": "https://symfony.com",
  9594. "time": "2019-01-02T21:24:08+00:00"
  9595. },
  9596. {
  9597. "name": "symfony/psr-http-message-bridge",
  9598. "version": "v1.1.0",
  9599. "source": {
  9600. "type": "git",
  9601. "url": "https://github.com/symfony/psr-http-message-bridge.git",
  9602. "reference": "53c15a6a7918e6c2ab16ae370ea607fb40cab196"
  9603. },
  9604. "dist": {
  9605. "type": "zip",
  9606. "url": "https://api.github.com/repos/symfony/psr-http-message-bridge/zipball/53c15a6a7918e6c2ab16ae370ea607fb40cab196",
  9607. "reference": "53c15a6a7918e6c2ab16ae370ea607fb40cab196",
  9608. "shasum": ""
  9609. },
  9610. "require": {
  9611. "php": "^5.3.3 || ^7.0",
  9612. "psr/http-message": "^1.0",
  9613. "symfony/http-foundation": "^2.3.42 || ^3.4 || ^4.0"
  9614. },
  9615. "require-dev": {
  9616. "symfony/phpunit-bridge": "^3.4 || 4.0"
  9617. },
  9618. "suggest": {
  9619. "psr/http-factory-implementation": "To use the PSR-17 factory",
  9620. "psr/http-message-implementation": "To use the HttpFoundation factory",
  9621. "zendframework/zend-diactoros": "To use the Zend Diactoros factory"
  9622. },
  9623. "type": "symfony-bridge",
  9624. "extra": {
  9625. "branch-alias": {
  9626. "dev-master": "1.1-dev"
  9627. }
  9628. },
  9629. "autoload": {
  9630. "psr-4": {
  9631. "Symfony\\Bridge\\PsrHttpMessage\\": ""
  9632. }
  9633. },
  9634. "notification-url": "https://packagist.org/downloads/",
  9635. "license": [
  9636. "MIT"
  9637. ],
  9638. "authors": [
  9639. {
  9640. "name": "Symfony Community",
  9641. "homepage": "http://symfony.com/contributors"
  9642. },
  9643. {
  9644. "name": "Fabien Potencier",
  9645. "email": "fabien@symfony.com"
  9646. }
  9647. ],
  9648. "description": "PSR HTTP message bridge",
  9649. "homepage": "http://symfony.com",
  9650. "keywords": [
  9651. "http",
  9652. "http-message",
  9653. "psr-7"
  9654. ],
  9655. "time": "2018-08-30T16:28:28+00:00"
  9656. },
  9657. {
  9658. "name": "symfony/routing",
  9659. "version": "v3.4.21",
  9660. "source": {
  9661. "type": "git",
  9662. "url": "https://github.com/symfony/routing.git",
  9663. "reference": "445d3629a26930158347a50d1a5f2456c49e0ae6"
  9664. },
  9665. "dist": {
  9666. "type": "zip",
  9667. "url": "https://api.github.com/repos/symfony/routing/zipball/445d3629a26930158347a50d1a5f2456c49e0ae6",
  9668. "reference": "445d3629a26930158347a50d1a5f2456c49e0ae6",
  9669. "shasum": ""
  9670. },
  9671. "require": {
  9672. "php": "^5.5.9|>=7.0.8"
  9673. },
  9674. "conflict": {
  9675. "symfony/config": "<3.3.1",
  9676. "symfony/dependency-injection": "<3.3",
  9677. "symfony/yaml": "<3.4"
  9678. },
  9679. "require-dev": {
  9680. "doctrine/annotations": "~1.0",
  9681. "psr/log": "~1.0",
  9682. "symfony/config": "^3.3.1|~4.0",
  9683. "symfony/dependency-injection": "~3.3|~4.0",
  9684. "symfony/expression-language": "~2.8|~3.0|~4.0",
  9685. "symfony/http-foundation": "~2.8|~3.0|~4.0",
  9686. "symfony/yaml": "~3.4|~4.0"
  9687. },
  9688. "suggest": {
  9689. "doctrine/annotations": "For using the annotation loader",
  9690. "symfony/config": "For using the all-in-one router or any loader",
  9691. "symfony/dependency-injection": "For loading routes from a service",
  9692. "symfony/expression-language": "For using expression matching",
  9693. "symfony/http-foundation": "For using a Symfony Request object",
  9694. "symfony/yaml": "For using the YAML loader"
  9695. },
  9696. "type": "library",
  9697. "extra": {
  9698. "branch-alias": {
  9699. "dev-master": "3.4-dev"
  9700. }
  9701. },
  9702. "autoload": {
  9703. "psr-4": {
  9704. "Symfony\\Component\\Routing\\": ""
  9705. },
  9706. "exclude-from-classmap": [
  9707. "/Tests/"
  9708. ]
  9709. },
  9710. "notification-url": "https://packagist.org/downloads/",
  9711. "license": [
  9712. "MIT"
  9713. ],
  9714. "authors": [
  9715. {
  9716. "name": "Fabien Potencier",
  9717. "email": "fabien@symfony.com"
  9718. },
  9719. {
  9720. "name": "Symfony Community",
  9721. "homepage": "https://symfony.com/contributors"
  9722. }
  9723. ],
  9724. "description": "Symfony Routing Component",
  9725. "homepage": "https://symfony.com",
  9726. "keywords": [
  9727. "router",
  9728. "routing",
  9729. "uri",
  9730. "url"
  9731. ],
  9732. "time": "2019-01-01T13:45:19+00:00"
  9733. },
  9734. {
  9735. "name": "symfony/serializer",
  9736. "version": "v3.4.21",
  9737. "source": {
  9738. "type": "git",
  9739. "url": "https://github.com/symfony/serializer.git",
  9740. "reference": "3bb84f8a785bf30be3d4aef6f3c80f103acc54df"
  9741. },
  9742. "dist": {
  9743. "type": "zip",
  9744. "url": "https://api.github.com/repos/symfony/serializer/zipball/3bb84f8a785bf30be3d4aef6f3c80f103acc54df",
  9745. "reference": "3bb84f8a785bf30be3d4aef6f3c80f103acc54df",
  9746. "shasum": ""
  9747. },
  9748. "require": {
  9749. "php": "^5.5.9|>=7.0.8",
  9750. "symfony/polyfill-ctype": "~1.8"
  9751. },
  9752. "conflict": {
  9753. "phpdocumentor/type-resolver": "<0.2.1",
  9754. "symfony/dependency-injection": "<3.2",
  9755. "symfony/property-access": ">=3.0,<3.0.4|>=2.8,<2.8.4",
  9756. "symfony/property-info": "<3.1",
  9757. "symfony/yaml": "<3.4"
  9758. },
  9759. "require-dev": {
  9760. "doctrine/annotations": "~1.0",
  9761. "doctrine/cache": "~1.0",
  9762. "phpdocumentor/reflection-docblock": "^3.0|^4.0",
  9763. "symfony/cache": "~3.1|~4.0",
  9764. "symfony/config": "~2.8|~3.0|~4.0",
  9765. "symfony/dependency-injection": "~3.2|~4.0",
  9766. "symfony/http-foundation": "~2.8|~3.0|~4.0",
  9767. "symfony/property-access": "~2.8|~3.0|~4.0",
  9768. "symfony/property-info": "~3.1|~4.0",
  9769. "symfony/yaml": "~3.4|~4.0"
  9770. },
  9771. "suggest": {
  9772. "doctrine/annotations": "For using the annotation mapping. You will also need doctrine/cache.",
  9773. "doctrine/cache": "For using the default cached annotation reader and metadata cache.",
  9774. "psr/cache-implementation": "For using the metadata cache.",
  9775. "symfony/config": "For using the XML mapping loader.",
  9776. "symfony/http-foundation": "To use the DataUriNormalizer.",
  9777. "symfony/property-access": "For using the ObjectNormalizer.",
  9778. "symfony/property-info": "To deserialize relations.",
  9779. "symfony/yaml": "For using the default YAML mapping loader."
  9780. },
  9781. "type": "library",
  9782. "extra": {
  9783. "branch-alias": {
  9784. "dev-master": "3.4-dev"
  9785. }
  9786. },
  9787. "autoload": {
  9788. "psr-4": {
  9789. "Symfony\\Component\\Serializer\\": ""
  9790. },
  9791. "exclude-from-classmap": [
  9792. "/Tests/"
  9793. ]
  9794. },
  9795. "notification-url": "https://packagist.org/downloads/",
  9796. "license": [
  9797. "MIT"
  9798. ],
  9799. "authors": [
  9800. {
  9801. "name": "Fabien Potencier",
  9802. "email": "fabien@symfony.com"
  9803. },
  9804. {
  9805. "name": "Symfony Community",
  9806. "homepage": "https://symfony.com/contributors"
  9807. }
  9808. ],
  9809. "description": "Symfony Serializer Component",
  9810. "homepage": "https://symfony.com",
  9811. "time": "2019-01-01T13:45:19+00:00"
  9812. },
  9813. {
  9814. "name": "symfony/translation",
  9815. "version": "v3.4.21",
  9816. "source": {
  9817. "type": "git",
  9818. "url": "https://github.com/symfony/translation.git",
  9819. "reference": "5f357063f4907cef47e5cf82fa3187fbfb700456"
  9820. },
  9821. "dist": {
  9822. "type": "zip",
  9823. "url": "https://api.github.com/repos/symfony/translation/zipball/5f357063f4907cef47e5cf82fa3187fbfb700456",
  9824. "reference": "5f357063f4907cef47e5cf82fa3187fbfb700456",
  9825. "shasum": ""
  9826. },
  9827. "require": {
  9828. "php": "^5.5.9|>=7.0.8",
  9829. "symfony/polyfill-mbstring": "~1.0"
  9830. },
  9831. "conflict": {
  9832. "symfony/config": "<2.8",
  9833. "symfony/dependency-injection": "<3.4",
  9834. "symfony/yaml": "<3.4"
  9835. },
  9836. "require-dev": {
  9837. "psr/log": "~1.0",
  9838. "symfony/config": "~2.8|~3.0|~4.0",
  9839. "symfony/dependency-injection": "~3.4|~4.0",
  9840. "symfony/finder": "~2.8|~3.0|~4.0",
  9841. "symfony/intl": "^2.8.18|^3.2.5|~4.0",
  9842. "symfony/yaml": "~3.4|~4.0"
  9843. },
  9844. "suggest": {
  9845. "psr/log-implementation": "To use logging capability in translator",
  9846. "symfony/config": "",
  9847. "symfony/yaml": ""
  9848. },
  9849. "type": "library",
  9850. "extra": {
  9851. "branch-alias": {
  9852. "dev-master": "3.4-dev"
  9853. }
  9854. },
  9855. "autoload": {
  9856. "psr-4": {
  9857. "Symfony\\Component\\Translation\\": ""
  9858. },
  9859. "exclude-from-classmap": [
  9860. "/Tests/"
  9861. ]
  9862. },
  9863. "notification-url": "https://packagist.org/downloads/",
  9864. "license": [
  9865. "MIT"
  9866. ],
  9867. "authors": [
  9868. {
  9869. "name": "Fabien Potencier",
  9870. "email": "fabien@symfony.com"
  9871. },
  9872. {
  9873. "name": "Symfony Community",
  9874. "homepage": "https://symfony.com/contributors"
  9875. }
  9876. ],
  9877. "description": "Symfony Translation Component",
  9878. "homepage": "https://symfony.com",
  9879. "time": "2019-01-01T13:45:19+00:00"
  9880. },
  9881. {
  9882. "name": "symfony/validator",
  9883. "version": "v3.4.21",
  9884. "source": {
  9885. "type": "git",
  9886. "url": "https://github.com/symfony/validator.git",
  9887. "reference": "cd3fba16d309347883b74bb0ee8cb4720a60554c"
  9888. },
  9889. "dist": {
  9890. "type": "zip",
  9891. "url": "https://api.github.com/repos/symfony/validator/zipball/cd3fba16d309347883b74bb0ee8cb4720a60554c",
  9892. "reference": "cd3fba16d309347883b74bb0ee8cb4720a60554c",
  9893. "shasum": ""
  9894. },
  9895. "require": {
  9896. "php": "^5.5.9|>=7.0.8",
  9897. "symfony/polyfill-ctype": "~1.8",
  9898. "symfony/polyfill-mbstring": "~1.0",
  9899. "symfony/translation": "~2.8|~3.0|~4.0"
  9900. },
  9901. "conflict": {
  9902. "phpunit/phpunit": "<4.8.35|<5.4.3,>=5.0",
  9903. "symfony/dependency-injection": "<3.3",
  9904. "symfony/http-kernel": "<3.3.5",
  9905. "symfony/yaml": "<3.4"
  9906. },
  9907. "require-dev": {
  9908. "doctrine/annotations": "~1.0",
  9909. "doctrine/cache": "~1.0",
  9910. "egulias/email-validator": "^1.2.8|~2.0",
  9911. "symfony/cache": "~3.1|~4.0",
  9912. "symfony/config": "~2.8|~3.0|~4.0",
  9913. "symfony/dependency-injection": "~3.3|~4.0",
  9914. "symfony/expression-language": "~2.8|~3.0|~4.0",
  9915. "symfony/http-foundation": "~2.8|~3.0|~4.0",
  9916. "symfony/http-kernel": "^3.3.5|~4.0",
  9917. "symfony/intl": "^2.8.18|^3.2.5|~4.0",
  9918. "symfony/property-access": "~2.8|~3.0|~4.0",
  9919. "symfony/var-dumper": "~3.3|~4.0",
  9920. "symfony/yaml": "~3.4|~4.0"
  9921. },
  9922. "suggest": {
  9923. "doctrine/annotations": "For using the annotation mapping. You will also need doctrine/cache.",
  9924. "doctrine/cache": "For using the default cached annotation reader and metadata cache.",
  9925. "egulias/email-validator": "Strict (RFC compliant) email validation",
  9926. "psr/cache-implementation": "For using the metadata cache.",
  9927. "symfony/config": "",
  9928. "symfony/expression-language": "For using the Expression validator",
  9929. "symfony/http-foundation": "",
  9930. "symfony/intl": "",
  9931. "symfony/property-access": "For accessing properties within comparison constraints",
  9932. "symfony/yaml": ""
  9933. },
  9934. "type": "library",
  9935. "extra": {
  9936. "branch-alias": {
  9937. "dev-master": "3.4-dev"
  9938. }
  9939. },
  9940. "autoload": {
  9941. "psr-4": {
  9942. "Symfony\\Component\\Validator\\": ""
  9943. },
  9944. "exclude-from-classmap": [
  9945. "/Tests/"
  9946. ]
  9947. },
  9948. "notification-url": "https://packagist.org/downloads/",
  9949. "license": [
  9950. "MIT"
  9951. ],
  9952. "authors": [
  9953. {
  9954. "name": "Fabien Potencier",
  9955. "email": "fabien@symfony.com"
  9956. },
  9957. {
  9958. "name": "Symfony Community",
  9959. "homepage": "https://symfony.com/contributors"
  9960. }
  9961. ],
  9962. "description": "Symfony Validator Component",
  9963. "homepage": "https://symfony.com",
  9964. "time": "2019-01-06T14:07:11+00:00"
  9965. },
  9966. {
  9967. "name": "symfony/var-dumper",
  9968. "version": "v3.4.21",
  9969. "source": {
  9970. "type": "git",
  9971. "url": "https://github.com/symfony/var-dumper.git",
  9972. "reference": "a5f39641bb62e8b74e343467b145331273f615a2"
  9973. },
  9974. "dist": {
  9975. "type": "zip",
  9976. "url": "https://api.github.com/repos/symfony/var-dumper/zipball/a5f39641bb62e8b74e343467b145331273f615a2",
  9977. "reference": "a5f39641bb62e8b74e343467b145331273f615a2",
  9978. "shasum": ""
  9979. },
  9980. "require": {
  9981. "php": "^5.5.9|>=7.0.8",
  9982. "symfony/polyfill-mbstring": "~1.0"
  9983. },
  9984. "conflict": {
  9985. "phpunit/phpunit": "<4.8.35|<5.4.3,>=5.0"
  9986. },
  9987. "require-dev": {
  9988. "ext-iconv": "*",
  9989. "twig/twig": "~1.34|~2.4"
  9990. },
  9991. "suggest": {
  9992. "ext-iconv": "To convert non-UTF-8 strings to UTF-8 (or symfony/polyfill-iconv in case ext-iconv cannot be used).",
  9993. "ext-intl": "To show region name in time zone dump",
  9994. "ext-symfony_debug": ""
  9995. },
  9996. "type": "library",
  9997. "extra": {
  9998. "branch-alias": {
  9999. "dev-master": "3.4-dev"
  10000. }
  10001. },
  10002. "autoload": {
  10003. "files": [
  10004. "Resources/functions/dump.php"
  10005. ],
  10006. "psr-4": {
  10007. "Symfony\\Component\\VarDumper\\": ""
  10008. },
  10009. "exclude-from-classmap": [
  10010. "/Tests/"
  10011. ]
  10012. },
  10013. "notification-url": "https://packagist.org/downloads/",
  10014. "license": [
  10015. "MIT"
  10016. ],
  10017. "authors": [
  10018. {
  10019. "name": "Nicolas Grekas",
  10020. "email": "p@tchwork.com"
  10021. },
  10022. {
  10023. "name": "Symfony Community",
  10024. "homepage": "https://symfony.com/contributors"
  10025. }
  10026. ],
  10027. "description": "Symfony mechanism for exploring and dumping PHP variables",
  10028. "homepage": "https://symfony.com",
  10029. "keywords": [
  10030. "debug",
  10031. "dump"
  10032. ],
  10033. "time": "2019-01-01T13:45:19+00:00"
  10034. },
  10035. {
  10036. "name": "symfony/yaml",
  10037. "version": "v3.4.21",
  10038. "source": {
  10039. "type": "git",
  10040. "url": "https://github.com/symfony/yaml.git",
  10041. "reference": "554a59a1ccbaac238a89b19c8e551a556fd0e2ea"
  10042. },
  10043. "dist": {
  10044. "type": "zip",
  10045. "url": "https://api.github.com/repos/symfony/yaml/zipball/554a59a1ccbaac238a89b19c8e551a556fd0e2ea",
  10046. "reference": "554a59a1ccbaac238a89b19c8e551a556fd0e2ea",
  10047. "shasum": ""
  10048. },
  10049. "require": {
  10050. "php": "^5.5.9|>=7.0.8",
  10051. "symfony/polyfill-ctype": "~1.8"
  10052. },
  10053. "conflict": {
  10054. "symfony/console": "<3.4"
  10055. },
  10056. "require-dev": {
  10057. "symfony/console": "~3.4|~4.0"
  10058. },
  10059. "suggest": {
  10060. "symfony/console": "For validating YAML files using the lint command"
  10061. },
  10062. "type": "library",
  10063. "extra": {
  10064. "branch-alias": {
  10065. "dev-master": "3.4-dev"
  10066. }
  10067. },
  10068. "autoload": {
  10069. "psr-4": {
  10070. "Symfony\\Component\\Yaml\\": ""
  10071. },
  10072. "exclude-from-classmap": [
  10073. "/Tests/"
  10074. ]
  10075. },
  10076. "notification-url": "https://packagist.org/downloads/",
  10077. "license": [
  10078. "MIT"
  10079. ],
  10080. "authors": [
  10081. {
  10082. "name": "Fabien Potencier",
  10083. "email": "fabien@symfony.com"
  10084. },
  10085. {
  10086. "name": "Symfony Community",
  10087. "homepage": "https://symfony.com/contributors"
  10088. }
  10089. ],
  10090. "description": "Symfony Yaml Component",
  10091. "homepage": "https://symfony.com",
  10092. "time": "2019-01-01T13:45:19+00:00"
  10093. },
  10094. {
  10095. "name": "twig/twig",
  10096. "version": "v1.37.1",
  10097. "source": {
  10098. "type": "git",
  10099. "url": "https://github.com/twigphp/Twig.git",
  10100. "reference": "66be9366c76cbf23e82e7171d47cbfa54a057a62"
  10101. },
  10102. "dist": {
  10103. "type": "zip",
  10104. "url": "https://api.github.com/repos/twigphp/Twig/zipball/66be9366c76cbf23e82e7171d47cbfa54a057a62",
  10105. "reference": "66be9366c76cbf23e82e7171d47cbfa54a057a62",
  10106. "shasum": ""
  10107. },
  10108. "require": {
  10109. "php": ">=5.4.0",
  10110. "symfony/polyfill-ctype": "^1.8"
  10111. },
  10112. "require-dev": {
  10113. "psr/container": "^1.0",
  10114. "symfony/debug": "^2.7",
  10115. "symfony/phpunit-bridge": "^3.4.19|^4.1.8"
  10116. },
  10117. "type": "library",
  10118. "extra": {
  10119. "branch-alias": {
  10120. "dev-master": "1.37-dev"
  10121. }
  10122. },
  10123. "autoload": {
  10124. "psr-0": {
  10125. "Twig_": "lib/"
  10126. },
  10127. "psr-4": {
  10128. "Twig\\": "src/"
  10129. }
  10130. },
  10131. "notification-url": "https://packagist.org/downloads/",
  10132. "license": [
  10133. "BSD-3-Clause"
  10134. ],
  10135. "authors": [
  10136. {
  10137. "name": "Fabien Potencier",
  10138. "email": "fabien@symfony.com",
  10139. "homepage": "http://fabien.potencier.org",
  10140. "role": "Lead Developer"
  10141. },
  10142. {
  10143. "name": "Armin Ronacher",
  10144. "email": "armin.ronacher@active-4.com",
  10145. "role": "Project Founder"
  10146. },
  10147. {
  10148. "name": "Twig Team",
  10149. "homepage": "https://twig.symfony.com/contributors",
  10150. "role": "Contributors"
  10151. }
  10152. ],
  10153. "description": "Twig, the flexible, fast, and secure template language for PHP",
  10154. "homepage": "https://twig.symfony.com",
  10155. "keywords": [
  10156. "templating"
  10157. ],
  10158. "time": "2019-01-14T14:59:29+00:00"
  10159. },
  10160. {
  10161. "name": "typo3/phar-stream-wrapper",
  10162. "version": "v2.0.1",
  10163. "source": {
  10164. "type": "git",
  10165. "url": "https://github.com/TYPO3/phar-stream-wrapper.git",
  10166. "reference": "0469d9fefa0146ea4299d3b11cfbb76faa7045bf"
  10167. },
  10168. "dist": {
  10169. "type": "zip",
  10170. "url": "https://api.github.com/repos/TYPO3/phar-stream-wrapper/zipball/0469d9fefa0146ea4299d3b11cfbb76faa7045bf",
  10171. "reference": "0469d9fefa0146ea4299d3b11cfbb76faa7045bf",
  10172. "shasum": ""
  10173. },
  10174. "require": {
  10175. "php": "^5.3.3|^7.0"
  10176. },
  10177. "require-dev": {
  10178. "phpunit/phpunit": "^4.8.36"
  10179. },
  10180. "type": "library",
  10181. "autoload": {
  10182. "psr-4": {
  10183. "TYPO3\\PharStreamWrapper\\": "src/"
  10184. }
  10185. },
  10186. "notification-url": "https://packagist.org/downloads/",
  10187. "license": [
  10188. "MIT"
  10189. ],
  10190. "description": "Interceptors for PHP's native phar:// stream handling",
  10191. "homepage": "https://typo3.org/",
  10192. "keywords": [
  10193. "phar",
  10194. "php",
  10195. "security",
  10196. "stream-wrapper"
  10197. ],
  10198. "time": "2018-10-18T08:46:28+00:00"
  10199. },
  10200. {
  10201. "name": "vlucas/phpdotenv",
  10202. "version": "v2.5.2",
  10203. "source": {
  10204. "type": "git",
  10205. "url": "https://github.com/vlucas/phpdotenv.git",
  10206. "reference": "cfd5dc225767ca154853752abc93aeec040fcf36"
  10207. },
  10208. "dist": {
  10209. "type": "zip",
  10210. "url": "https://api.github.com/repos/vlucas/phpdotenv/zipball/cfd5dc225767ca154853752abc93aeec040fcf36",
  10211. "reference": "cfd5dc225767ca154853752abc93aeec040fcf36",
  10212. "shasum": ""
  10213. },
  10214. "require": {
  10215. "php": ">=5.3.9"
  10216. },
  10217. "require-dev": {
  10218. "phpunit/phpunit": "^4.8.35 || ^5.0"
  10219. },
  10220. "type": "library",
  10221. "extra": {
  10222. "branch-alias": {
  10223. "dev-master": "2.5-dev"
  10224. }
  10225. },
  10226. "autoload": {
  10227. "psr-4": {
  10228. "Dotenv\\": "src/"
  10229. }
  10230. },
  10231. "notification-url": "https://packagist.org/downloads/",
  10232. "license": [
  10233. "BSD-3-Clause"
  10234. ],
  10235. "authors": [
  10236. {
  10237. "name": "Vance Lucas",
  10238. "email": "vance@vancelucas.com",
  10239. "homepage": "http://www.vancelucas.com"
  10240. }
  10241. ],
  10242. "description": "Loads environment variables from `.env` to `getenv()`, `$_ENV` and `$_SERVER` automagically.",
  10243. "keywords": [
  10244. "dotenv",
  10245. "env",
  10246. "environment"
  10247. ],
  10248. "time": "2018-10-30T17:29:25+00:00"
  10249. },
  10250. {
  10251. "name": "webflo/drupal-finder",
  10252. "version": "1.1.0",
  10253. "source": {
  10254. "type": "git",
  10255. "url": "https://github.com/webflo/drupal-finder.git",
  10256. "reference": "8a7886c575d6eaa67a425dceccc84e735c0b9637"
  10257. },
  10258. "dist": {
  10259. "type": "zip",
  10260. "url": "https://api.github.com/repos/webflo/drupal-finder/zipball/8a7886c575d6eaa67a425dceccc84e735c0b9637",
  10261. "reference": "8a7886c575d6eaa67a425dceccc84e735c0b9637",
  10262. "shasum": ""
  10263. },
  10264. "require-dev": {
  10265. "mikey179/vfsstream": "^1.6",
  10266. "phpunit/phpunit": "^4.8"
  10267. },
  10268. "type": "library",
  10269. "autoload": {
  10270. "classmap": [
  10271. "src/DrupalFinder.php"
  10272. ]
  10273. },
  10274. "notification-url": "https://packagist.org/downloads/",
  10275. "license": [
  10276. "GPL-2.0+"
  10277. ],
  10278. "authors": [
  10279. {
  10280. "name": "Florian Weber",
  10281. "email": "florian@webflo.org"
  10282. }
  10283. ],
  10284. "description": "Helper class to locate a Drupal installation from a given path.",
  10285. "time": "2017-10-24T08:12:11+00:00"
  10286. },
  10287. {
  10288. "name": "webmozart/assert",
  10289. "version": "1.4.0",
  10290. "source": {
  10291. "type": "git",
  10292. "url": "https://github.com/webmozart/assert.git",
  10293. "reference": "83e253c8e0be5b0257b881e1827274667c5c17a9"
  10294. },
  10295. "dist": {
  10296. "type": "zip",
  10297. "url": "https://api.github.com/repos/webmozart/assert/zipball/83e253c8e0be5b0257b881e1827274667c5c17a9",
  10298. "reference": "83e253c8e0be5b0257b881e1827274667c5c17a9",
  10299. "shasum": ""
  10300. },
  10301. "require": {
  10302. "php": "^5.3.3 || ^7.0",
  10303. "symfony/polyfill-ctype": "^1.8"
  10304. },
  10305. "require-dev": {
  10306. "phpunit/phpunit": "^4.6",
  10307. "sebastian/version": "^1.0.1"
  10308. },
  10309. "type": "library",
  10310. "extra": {
  10311. "branch-alias": {
  10312. "dev-master": "1.3-dev"
  10313. }
  10314. },
  10315. "autoload": {
  10316. "psr-4": {
  10317. "Webmozart\\Assert\\": "src/"
  10318. }
  10319. },
  10320. "notification-url": "https://packagist.org/downloads/",
  10321. "license": [
  10322. "MIT"
  10323. ],
  10324. "authors": [
  10325. {
  10326. "name": "Bernhard Schussek",
  10327. "email": "bschussek@gmail.com"
  10328. }
  10329. ],
  10330. "description": "Assertions to validate method input/output with nice error messages.",
  10331. "keywords": [
  10332. "assert",
  10333. "check",
  10334. "validate"
  10335. ],
  10336. "time": "2018-12-25T11:19:39+00:00"
  10337. },
  10338. {
  10339. "name": "webmozart/path-util",
  10340. "version": "2.3.0",
  10341. "source": {
  10342. "type": "git",
  10343. "url": "https://github.com/webmozart/path-util.git",
  10344. "reference": "d939f7edc24c9a1bb9c0dee5cb05d8e859490725"
  10345. },
  10346. "dist": {
  10347. "type": "zip",
  10348. "url": "https://api.github.com/repos/webmozart/path-util/zipball/d939f7edc24c9a1bb9c0dee5cb05d8e859490725",
  10349. "reference": "d939f7edc24c9a1bb9c0dee5cb05d8e859490725",
  10350. "shasum": ""
  10351. },
  10352. "require": {
  10353. "php": ">=5.3.3",
  10354. "webmozart/assert": "~1.0"
  10355. },
  10356. "require-dev": {
  10357. "phpunit/phpunit": "^4.6",
  10358. "sebastian/version": "^1.0.1"
  10359. },
  10360. "type": "library",
  10361. "extra": {
  10362. "branch-alias": {
  10363. "dev-master": "2.3-dev"
  10364. }
  10365. },
  10366. "autoload": {
  10367. "psr-4": {
  10368. "Webmozart\\PathUtil\\": "src/"
  10369. }
  10370. },
  10371. "notification-url": "https://packagist.org/downloads/",
  10372. "license": [
  10373. "MIT"
  10374. ],
  10375. "authors": [
  10376. {
  10377. "name": "Bernhard Schussek",
  10378. "email": "bschussek@gmail.com"
  10379. }
  10380. ],
  10381. "description": "A robust cross-platform utility for normalizing, comparing and modifying file paths.",
  10382. "time": "2015-12-17T08:42:14+00:00"
  10383. },
  10384. {
  10385. "name": "wikimedia/composer-merge-plugin",
  10386. "version": "v1.4.1",
  10387. "source": {
  10388. "type": "git",
  10389. "url": "https://github.com/wikimedia/composer-merge-plugin.git",
  10390. "reference": "81c6ac72a24a67383419c7eb9aa2b3437f2ab100"
  10391. },
  10392. "dist": {
  10393. "type": "zip",
  10394. "url": "https://api.github.com/repos/wikimedia/composer-merge-plugin/zipball/81c6ac72a24a67383419c7eb9aa2b3437f2ab100",
  10395. "reference": "81c6ac72a24a67383419c7eb9aa2b3437f2ab100",
  10396. "shasum": ""
  10397. },
  10398. "require": {
  10399. "composer-plugin-api": "^1.0",
  10400. "php": ">=5.3.2"
  10401. },
  10402. "require-dev": {
  10403. "composer/composer": "~1.0.0",
  10404. "jakub-onderka/php-parallel-lint": "~0.8",
  10405. "phpunit/phpunit": "~4.8|~5.0",
  10406. "squizlabs/php_codesniffer": "~2.1.0"
  10407. },
  10408. "type": "composer-plugin",
  10409. "extra": {
  10410. "branch-alias": {
  10411. "dev-master": "1.3.x-dev"
  10412. },
  10413. "class": "Wikimedia\\Composer\\MergePlugin"
  10414. },
  10415. "autoload": {
  10416. "psr-4": {
  10417. "Wikimedia\\Composer\\": "src/"
  10418. }
  10419. },
  10420. "notification-url": "https://packagist.org/downloads/",
  10421. "license": [
  10422. "MIT"
  10423. ],
  10424. "authors": [
  10425. {
  10426. "name": "Bryan Davis",
  10427. "email": "bd808@wikimedia.org"
  10428. }
  10429. ],
  10430. "description": "Composer plugin to merge multiple composer.json files",
  10431. "time": "2017-04-25T02:31:25+00:00"
  10432. },
  10433. {
  10434. "name": "zaporylie/composer-drupal-optimizations",
  10435. "version": "1.0.2",
  10436. "source": {
  10437. "type": "git",
  10438. "url": "https://github.com/zaporylie/composer-drupal-optimizations.git",
  10439. "reference": "cc5eb9f0b5fa664885765748ce5190c1de7d2571"
  10440. },
  10441. "dist": {
  10442. "type": "zip",
  10443. "url": "https://api.github.com/repos/zaporylie/composer-drupal-optimizations/zipball/cc5eb9f0b5fa664885765748ce5190c1de7d2571",
  10444. "reference": "cc5eb9f0b5fa664885765748ce5190c1de7d2571",
  10445. "shasum": ""
  10446. },
  10447. "require": {
  10448. "composer-plugin-api": "^1.1",
  10449. "drupal/core": "^8.5"
  10450. },
  10451. "require-dev": {
  10452. "composer/composer": "^1.6"
  10453. },
  10454. "type": "composer-plugin",
  10455. "extra": {
  10456. "class": "zaporylie\\ComposerDrupalOptimizations\\Plugin"
  10457. },
  10458. "autoload": {
  10459. "psr-4": {
  10460. "zaporylie\\ComposerDrupalOptimizations\\": "src/"
  10461. }
  10462. },
  10463. "notification-url": "https://packagist.org/downloads/",
  10464. "license": [
  10465. "GPL-2.0-or-later"
  10466. ],
  10467. "authors": [
  10468. {
  10469. "name": "Jakub Piasecki",
  10470. "email": "jakub@piaseccy.pl"
  10471. }
  10472. ],
  10473. "description": "Composer plugin to improve composer performance for Drupal projects",
  10474. "time": "2018-07-15T18:04:58+00:00"
  10475. },
  10476. {
  10477. "name": "zendframework/zend-diactoros",
  10478. "version": "1.8.6",
  10479. "source": {
  10480. "type": "git",
  10481. "url": "https://github.com/zendframework/zend-diactoros.git",
  10482. "reference": "20da13beba0dde8fb648be3cc19765732790f46e"
  10483. },
  10484. "dist": {
  10485. "type": "zip",
  10486. "url": "https://api.github.com/repos/zendframework/zend-diactoros/zipball/20da13beba0dde8fb648be3cc19765732790f46e",
  10487. "reference": "20da13beba0dde8fb648be3cc19765732790f46e",
  10488. "shasum": ""
  10489. },
  10490. "require": {
  10491. "php": "^5.6 || ^7.0",
  10492. "psr/http-message": "^1.0"
  10493. },
  10494. "provide": {
  10495. "psr/http-message-implementation": "1.0"
  10496. },
  10497. "require-dev": {
  10498. "ext-dom": "*",
  10499. "ext-libxml": "*",
  10500. "php-http/psr7-integration-tests": "dev-master",
  10501. "phpunit/phpunit": "^5.7.16 || ^6.0.8 || ^7.2.7",
  10502. "zendframework/zend-coding-standard": "~1.0"
  10503. },
  10504. "type": "library",
  10505. "extra": {
  10506. "branch-alias": {
  10507. "dev-master": "1.8.x-dev",
  10508. "dev-develop": "1.9.x-dev",
  10509. "dev-release-2.0": "2.0.x-dev"
  10510. }
  10511. },
  10512. "autoload": {
  10513. "files": [
  10514. "src/functions/create_uploaded_file.php",
  10515. "src/functions/marshal_headers_from_sapi.php",
  10516. "src/functions/marshal_method_from_sapi.php",
  10517. "src/functions/marshal_protocol_version_from_sapi.php",
  10518. "src/functions/marshal_uri_from_sapi.php",
  10519. "src/functions/normalize_server.php",
  10520. "src/functions/normalize_uploaded_files.php",
  10521. "src/functions/parse_cookie_header.php"
  10522. ],
  10523. "psr-4": {
  10524. "Zend\\Diactoros\\": "src/"
  10525. }
  10526. },
  10527. "notification-url": "https://packagist.org/downloads/",
  10528. "license": [
  10529. "BSD-2-Clause"
  10530. ],
  10531. "description": "PSR HTTP Message implementations",
  10532. "homepage": "https://github.com/zendframework/zend-diactoros",
  10533. "keywords": [
  10534. "http",
  10535. "psr",
  10536. "psr-7"
  10537. ],
  10538. "time": "2018-09-05T19:29:37+00:00"
  10539. },
  10540. {
  10541. "name": "zendframework/zend-escaper",
  10542. "version": "2.6.0",
  10543. "source": {
  10544. "type": "git",
  10545. "url": "https://github.com/zendframework/zend-escaper.git",
  10546. "reference": "31d8aafae982f9568287cb4dce987e6aff8fd074"
  10547. },
  10548. "dist": {
  10549. "type": "zip",
  10550. "url": "https://api.github.com/repos/zendframework/zend-escaper/zipball/31d8aafae982f9568287cb4dce987e6aff8fd074",
  10551. "reference": "31d8aafae982f9568287cb4dce987e6aff8fd074",
  10552. "shasum": ""
  10553. },
  10554. "require": {
  10555. "php": "^5.6 || ^7.0"
  10556. },
  10557. "require-dev": {
  10558. "phpunit/phpunit": "^5.7.27 || ^6.5.8 || ^7.1.2",
  10559. "zendframework/zend-coding-standard": "~1.0.0"
  10560. },
  10561. "type": "library",
  10562. "extra": {
  10563. "branch-alias": {
  10564. "dev-master": "2.6.x-dev",
  10565. "dev-develop": "2.7.x-dev"
  10566. }
  10567. },
  10568. "autoload": {
  10569. "psr-4": {
  10570. "Zend\\Escaper\\": "src/"
  10571. }
  10572. },
  10573. "notification-url": "https://packagist.org/downloads/",
  10574. "license": [
  10575. "BSD-3-Clause"
  10576. ],
  10577. "description": "Securely and safely escape HTML, HTML attributes, JavaScript, CSS, and URLs",
  10578. "keywords": [
  10579. "ZendFramework",
  10580. "escaper",
  10581. "zf"
  10582. ],
  10583. "time": "2018-04-25T15:48:53+00:00"
  10584. },
  10585. {
  10586. "name": "zendframework/zend-feed",
  10587. "version": "2.10.3",
  10588. "source": {
  10589. "type": "git",
  10590. "url": "https://github.com/zendframework/zend-feed.git",
  10591. "reference": "6641f4cf3f4586c63f83fd70b6d19966025c8888"
  10592. },
  10593. "dist": {
  10594. "type": "zip",
  10595. "url": "https://api.github.com/repos/zendframework/zend-feed/zipball/6641f4cf3f4586c63f83fd70b6d19966025c8888",
  10596. "reference": "6641f4cf3f4586c63f83fd70b6d19966025c8888",
  10597. "shasum": ""
  10598. },
  10599. "require": {
  10600. "php": "^5.6 || ^7.0",
  10601. "zendframework/zend-escaper": "^2.5.2",
  10602. "zendframework/zend-stdlib": "^2.7.7 || ^3.1"
  10603. },
  10604. "require-dev": {
  10605. "phpunit/phpunit": "^5.7.23 || ^6.4.3",
  10606. "psr/http-message": "^1.0.1",
  10607. "zendframework/zend-cache": "^2.7.2",
  10608. "zendframework/zend-coding-standard": "~1.0.0",
  10609. "zendframework/zend-db": "^2.8.2",
  10610. "zendframework/zend-http": "^2.7",
  10611. "zendframework/zend-servicemanager": "^2.7.8 || ^3.3",
  10612. "zendframework/zend-validator": "^2.10.1"
  10613. },
  10614. "suggest": {
  10615. "psr/http-message": "PSR-7 ^1.0.1, if you wish to use Zend\\Feed\\Reader\\Http\\Psr7ResponseDecorator",
  10616. "zendframework/zend-cache": "Zend\\Cache component, for optionally caching feeds between requests",
  10617. "zendframework/zend-db": "Zend\\Db component, for use with PubSubHubbub",
  10618. "zendframework/zend-http": "Zend\\Http for PubSubHubbub, and optionally for use with Zend\\Feed\\Reader",
  10619. "zendframework/zend-servicemanager": "Zend\\ServiceManager component, for easily extending ExtensionManager implementations",
  10620. "zendframework/zend-validator": "Zend\\Validator component, for validating email addresses used in Atom feeds and entries when using the Writer subcomponent"
  10621. },
  10622. "type": "library",
  10623. "extra": {
  10624. "branch-alias": {
  10625. "dev-master": "2.10.x-dev",
  10626. "dev-develop": "2.11.x-dev"
  10627. }
  10628. },
  10629. "autoload": {
  10630. "psr-4": {
  10631. "Zend\\Feed\\": "src/"
  10632. }
  10633. },
  10634. "notification-url": "https://packagist.org/downloads/",
  10635. "license": [
  10636. "BSD-3-Clause"
  10637. ],
  10638. "description": "provides functionality for consuming RSS and Atom feeds",
  10639. "keywords": [
  10640. "ZendFramework",
  10641. "feed",
  10642. "zf"
  10643. ],
  10644. "time": "2018-08-01T13:53:20+00:00"
  10645. },
  10646. {
  10647. "name": "zendframework/zend-stdlib",
  10648. "version": "3.2.1",
  10649. "source": {
  10650. "type": "git",
  10651. "url": "https://github.com/zendframework/zend-stdlib.git",
  10652. "reference": "66536006722aff9e62d1b331025089b7ec71c065"
  10653. },
  10654. "dist": {
  10655. "type": "zip",
  10656. "url": "https://api.github.com/repos/zendframework/zend-stdlib/zipball/66536006722aff9e62d1b331025089b7ec71c065",
  10657. "reference": "66536006722aff9e62d1b331025089b7ec71c065",
  10658. "shasum": ""
  10659. },
  10660. "require": {
  10661. "php": "^5.6 || ^7.0"
  10662. },
  10663. "require-dev": {
  10664. "phpbench/phpbench": "^0.13",
  10665. "phpunit/phpunit": "^5.7.27 || ^6.5.8 || ^7.1.2",
  10666. "zendframework/zend-coding-standard": "~1.0.0"
  10667. },
  10668. "type": "library",
  10669. "extra": {
  10670. "branch-alias": {
  10671. "dev-master": "3.2.x-dev",
  10672. "dev-develop": "3.3.x-dev"
  10673. }
  10674. },
  10675. "autoload": {
  10676. "psr-4": {
  10677. "Zend\\Stdlib\\": "src/"
  10678. }
  10679. },
  10680. "notification-url": "https://packagist.org/downloads/",
  10681. "license": [
  10682. "BSD-3-Clause"
  10683. ],
  10684. "description": "SPL extensions, array utilities, error handlers, and more",
  10685. "keywords": [
  10686. "ZendFramework",
  10687. "stdlib",
  10688. "zf"
  10689. ],
  10690. "time": "2018-08-28T21:34:05+00:00"
  10691. }
  10692. ],
  10693. "packages-dev": [
  10694. {
  10695. "name": "behat/mink",
  10696. "version": "dev-master",
  10697. "source": {
  10698. "type": "git",
  10699. "url": "https://github.com/minkphp/Mink.git",
  10700. "reference": "d5ee350c40baff5f331a05ebdbe1927345c9ac8b"
  10701. },
  10702. "dist": {
  10703. "type": "zip",
  10704. "url": "https://api.github.com/repos/minkphp/Mink/zipball/d5ee350c40baff5f331a05ebdbe1927345c9ac8b",
  10705. "reference": "d5ee350c40baff5f331a05ebdbe1927345c9ac8b",
  10706. "shasum": ""
  10707. },
  10708. "require": {
  10709. "php": ">=5.3.1",
  10710. "symfony/css-selector": "^2.7|^3.0|^4.0"
  10711. },
  10712. "require-dev": {
  10713. "symfony/phpunit-bridge": "^3.3|^4.0"
  10714. },
  10715. "suggest": {
  10716. "behat/mink-browserkit-driver": "extremely fast headless driver for Symfony\\Kernel-based apps (Sf2, Silex)",
  10717. "behat/mink-goutte-driver": "fast headless driver for any app without JS emulation",
  10718. "behat/mink-selenium2-driver": "slow, but JS-enabled driver for any app (requires Selenium2)",
  10719. "behat/mink-zombie-driver": "fast and JS-enabled headless driver for any app (requires node.js)",
  10720. "dmore/chrome-mink-driver": "fast and JS-enabled driver for any app (requires chromium or google chrome)"
  10721. },
  10722. "type": "library",
  10723. "extra": {
  10724. "branch-alias": {
  10725. "dev-master": "1.7.x-dev"
  10726. }
  10727. },
  10728. "autoload": {
  10729. "psr-4": {
  10730. "Behat\\Mink\\": "src/"
  10731. }
  10732. },
  10733. "notification-url": "https://packagist.org/downloads/",
  10734. "license": [
  10735. "MIT"
  10736. ],
  10737. "authors": [
  10738. {
  10739. "name": "Konstantin Kudryashov",
  10740. "email": "ever.zet@gmail.com",
  10741. "homepage": "http://everzet.com"
  10742. }
  10743. ],
  10744. "description": "Browser controller/emulator abstraction for PHP",
  10745. "homepage": "http://mink.behat.org/",
  10746. "keywords": [
  10747. "browser",
  10748. "testing",
  10749. "web"
  10750. ],
  10751. "time": "2018-06-24T20:08:51+00:00"
  10752. },
  10753. {
  10754. "name": "behat/mink-browserkit-driver",
  10755. "version": "1.3.3",
  10756. "source": {
  10757. "type": "git",
  10758. "url": "https://github.com/minkphp/MinkBrowserKitDriver.git",
  10759. "reference": "1b9a7ce903cfdaaec5fb32bfdbb26118343662eb"
  10760. },
  10761. "dist": {
  10762. "type": "zip",
  10763. "url": "https://api.github.com/repos/minkphp/MinkBrowserKitDriver/zipball/1b9a7ce903cfdaaec5fb32bfdbb26118343662eb",
  10764. "reference": "1b9a7ce903cfdaaec5fb32bfdbb26118343662eb",
  10765. "shasum": ""
  10766. },
  10767. "require": {
  10768. "behat/mink": "^1.7.1@dev",
  10769. "php": ">=5.3.6",
  10770. "symfony/browser-kit": "~2.3|~3.0|~4.0",
  10771. "symfony/dom-crawler": "~2.3|~3.0|~4.0"
  10772. },
  10773. "require-dev": {
  10774. "mink/driver-testsuite": "dev-master",
  10775. "symfony/http-kernel": "~2.3|~3.0|~4.0"
  10776. },
  10777. "type": "mink-driver",
  10778. "extra": {
  10779. "branch-alias": {
  10780. "dev-master": "1.3.x-dev"
  10781. }
  10782. },
  10783. "autoload": {
  10784. "psr-4": {
  10785. "Behat\\Mink\\Driver\\": "src/"
  10786. }
  10787. },
  10788. "notification-url": "https://packagist.org/downloads/",
  10789. "license": [
  10790. "MIT"
  10791. ],
  10792. "authors": [
  10793. {
  10794. "name": "Konstantin Kudryashov",
  10795. "email": "ever.zet@gmail.com",
  10796. "homepage": "http://everzet.com"
  10797. }
  10798. ],
  10799. "description": "Symfony2 BrowserKit driver for Mink framework",
  10800. "homepage": "http://mink.behat.org/",
  10801. "keywords": [
  10802. "Mink",
  10803. "Symfony2",
  10804. "browser",
  10805. "testing"
  10806. ],
  10807. "time": "2018-05-02T09:25:31+00:00"
  10808. },
  10809. {
  10810. "name": "behat/mink-goutte-driver",
  10811. "version": "v1.2.1",
  10812. "source": {
  10813. "type": "git",
  10814. "url": "https://github.com/minkphp/MinkGoutteDriver.git",
  10815. "reference": "8b9ad6d2d95bc70b840d15323365f52fcdaea6ca"
  10816. },
  10817. "dist": {
  10818. "type": "zip",
  10819. "url": "https://api.github.com/repos/minkphp/MinkGoutteDriver/zipball/8b9ad6d2d95bc70b840d15323365f52fcdaea6ca",
  10820. "reference": "8b9ad6d2d95bc70b840d15323365f52fcdaea6ca",
  10821. "shasum": ""
  10822. },
  10823. "require": {
  10824. "behat/mink": "~1.6@dev",
  10825. "behat/mink-browserkit-driver": "~1.2@dev",
  10826. "fabpot/goutte": "~1.0.4|~2.0|~3.1",
  10827. "php": ">=5.3.1"
  10828. },
  10829. "require-dev": {
  10830. "symfony/phpunit-bridge": "~2.7|~3.0"
  10831. },
  10832. "type": "mink-driver",
  10833. "extra": {
  10834. "branch-alias": {
  10835. "dev-master": "1.2.x-dev"
  10836. }
  10837. },
  10838. "autoload": {
  10839. "psr-4": {
  10840. "Behat\\Mink\\Driver\\": "src/"
  10841. }
  10842. },
  10843. "notification-url": "https://packagist.org/downloads/",
  10844. "license": [
  10845. "MIT"
  10846. ],
  10847. "authors": [
  10848. {
  10849. "name": "Konstantin Kudryashov",
  10850. "email": "ever.zet@gmail.com",
  10851. "homepage": "http://everzet.com"
  10852. }
  10853. ],
  10854. "description": "Goutte driver for Mink framework",
  10855. "homepage": "http://mink.behat.org/",
  10856. "keywords": [
  10857. "browser",
  10858. "goutte",
  10859. "headless",
  10860. "testing"
  10861. ],
  10862. "time": "2016-03-05T09:04:22+00:00"
  10863. },
  10864. {
  10865. "name": "behat/mink-selenium2-driver",
  10866. "version": "dev-master",
  10867. "source": {
  10868. "type": "git",
  10869. "url": "https://github.com/minkphp/MinkSelenium2Driver.git",
  10870. "reference": "8684ee4e634db7abda9039ea53545f86fc1e105a"
  10871. },
  10872. "dist": {
  10873. "type": "zip",
  10874. "url": "https://api.github.com/repos/minkphp/MinkSelenium2Driver/zipball/8684ee4e634db7abda9039ea53545f86fc1e105a",
  10875. "reference": "8684ee4e634db7abda9039ea53545f86fc1e105a",
  10876. "shasum": ""
  10877. },
  10878. "require": {
  10879. "behat/mink": "~1.7@dev",
  10880. "instaclick/php-webdriver": "~1.1",
  10881. "php": ">=5.3.1"
  10882. },
  10883. "require-dev": {
  10884. "mink/driver-testsuite": "dev-master"
  10885. },
  10886. "type": "mink-driver",
  10887. "extra": {
  10888. "branch-alias": {
  10889. "dev-master": "1.3.x-dev"
  10890. }
  10891. },
  10892. "autoload": {
  10893. "psr-4": {
  10894. "Behat\\Mink\\Driver\\": "src/"
  10895. }
  10896. },
  10897. "notification-url": "https://packagist.org/downloads/",
  10898. "license": [
  10899. "MIT"
  10900. ],
  10901. "authors": [
  10902. {
  10903. "name": "Konstantin Kudryashov",
  10904. "email": "ever.zet@gmail.com",
  10905. "homepage": "http://everzet.com"
  10906. },
  10907. {
  10908. "name": "Pete Otaqui",
  10909. "email": "pete@otaqui.com",
  10910. "homepage": "https://github.com/pete-otaqui"
  10911. }
  10912. ],
  10913. "description": "Selenium2 (WebDriver) driver for Mink framework",
  10914. "homepage": "http://mink.behat.org/",
  10915. "keywords": [
  10916. "ajax",
  10917. "browser",
  10918. "javascript",
  10919. "selenium",
  10920. "testing",
  10921. "webdriver"
  10922. ],
  10923. "time": "2018-10-10T12:39:06+00:00"
  10924. },
  10925. {
  10926. "name": "doctrine/instantiator",
  10927. "version": "1.0.5",
  10928. "source": {
  10929. "type": "git",
  10930. "url": "https://github.com/doctrine/instantiator.git",
  10931. "reference": "8e884e78f9f0eb1329e445619e04456e64d8051d"
  10932. },
  10933. "dist": {
  10934. "type": "zip",
  10935. "url": "https://api.github.com/repos/doctrine/instantiator/zipball/8e884e78f9f0eb1329e445619e04456e64d8051d",
  10936. "reference": "8e884e78f9f0eb1329e445619e04456e64d8051d",
  10937. "shasum": ""
  10938. },
  10939. "require": {
  10940. "php": ">=5.3,<8.0-DEV"
  10941. },
  10942. "require-dev": {
  10943. "athletic/athletic": "~0.1.8",
  10944. "ext-pdo": "*",
  10945. "ext-phar": "*",
  10946. "phpunit/phpunit": "~4.0",
  10947. "squizlabs/php_codesniffer": "~2.0"
  10948. },
  10949. "type": "library",
  10950. "extra": {
  10951. "branch-alias": {
  10952. "dev-master": "1.0.x-dev"
  10953. }
  10954. },
  10955. "autoload": {
  10956. "psr-4": {
  10957. "Doctrine\\Instantiator\\": "src/Doctrine/Instantiator/"
  10958. }
  10959. },
  10960. "notification-url": "https://packagist.org/downloads/",
  10961. "license": [
  10962. "MIT"
  10963. ],
  10964. "authors": [
  10965. {
  10966. "name": "Marco Pivetta",
  10967. "email": "ocramius@gmail.com",
  10968. "homepage": "http://ocramius.github.com/"
  10969. }
  10970. ],
  10971. "description": "A small, lightweight utility to instantiate objects in PHP without invoking their constructors",
  10972. "homepage": "https://github.com/doctrine/instantiator",
  10973. "keywords": [
  10974. "constructor",
  10975. "instantiate"
  10976. ],
  10977. "time": "2015-06-14T21:17:01+00:00"
  10978. },
  10979. {
  10980. "name": "drupal/coder",
  10981. "version": "8.3.1",
  10982. "source": {
  10983. "type": "git",
  10984. "url": "https://git.drupal.org/project/coder.git",
  10985. "reference": "29a25627e7148b3119c84f18e087fc3b8c85b959"
  10986. },
  10987. "require": {
  10988. "ext-mbstring": "*",
  10989. "php": ">=5.4.0",
  10990. "squizlabs/php_codesniffer": "^3.0.1",
  10991. "symfony/yaml": ">=2.0.0"
  10992. },
  10993. "require-dev": {
  10994. "phpunit/phpunit": ">=3.7 <6"
  10995. },
  10996. "type": "phpcodesniffer-standard",
  10997. "autoload": {
  10998. "psr-0": {
  10999. "Drupal\\": "coder_sniffer/Drupal/",
  11000. "DrupalPractice\\": "coder_sniffer/Drupal/"
  11001. }
  11002. },
  11003. "notification-url": "https://packagist.org/downloads/",
  11004. "license": [
  11005. "GPL-2.0+"
  11006. ],
  11007. "description": "Coder is a library to review Drupal code.",
  11008. "homepage": "https://www.drupal.org/project/coder",
  11009. "keywords": [
  11010. "code review",
  11011. "phpcs",
  11012. "standards"
  11013. ],
  11014. "time": "2018-09-21T14:22:49+00:00"
  11015. },
  11016. {
  11017. "name": "fabpot/goutte",
  11018. "version": "v3.2.3",
  11019. "source": {
  11020. "type": "git",
  11021. "url": "https://github.com/FriendsOfPHP/Goutte.git",
  11022. "reference": "3f0eaf0a40181359470651f1565b3e07e3dd31b8"
  11023. },
  11024. "dist": {
  11025. "type": "zip",
  11026. "url": "https://api.github.com/repos/FriendsOfPHP/Goutte/zipball/3f0eaf0a40181359470651f1565b3e07e3dd31b8",
  11027. "reference": "3f0eaf0a40181359470651f1565b3e07e3dd31b8",
  11028. "shasum": ""
  11029. },
  11030. "require": {
  11031. "guzzlehttp/guzzle": "^6.0",
  11032. "php": ">=5.5.0",
  11033. "symfony/browser-kit": "~2.1|~3.0|~4.0",
  11034. "symfony/css-selector": "~2.1|~3.0|~4.0",
  11035. "symfony/dom-crawler": "~2.1|~3.0|~4.0"
  11036. },
  11037. "require-dev": {
  11038. "symfony/phpunit-bridge": "^3.3 || ^4"
  11039. },
  11040. "type": "application",
  11041. "extra": {
  11042. "branch-alias": {
  11043. "dev-master": "3.2-dev"
  11044. }
  11045. },
  11046. "autoload": {
  11047. "psr-4": {
  11048. "Goutte\\": "Goutte"
  11049. },
  11050. "exclude-from-classmap": [
  11051. "Goutte/Tests"
  11052. ]
  11053. },
  11054. "notification-url": "https://packagist.org/downloads/",
  11055. "license": [
  11056. "MIT"
  11057. ],
  11058. "authors": [
  11059. {
  11060. "name": "Fabien Potencier",
  11061. "email": "fabien@symfony.com"
  11062. }
  11063. ],
  11064. "description": "A simple PHP Web Scraper",
  11065. "homepage": "https://github.com/FriendsOfPHP/Goutte",
  11066. "keywords": [
  11067. "scraper"
  11068. ],
  11069. "time": "2018-06-29T15:13:57+00:00"
  11070. },
  11071. {
  11072. "name": "instaclick/php-webdriver",
  11073. "version": "1.4.5",
  11074. "source": {
  11075. "type": "git",
  11076. "url": "https://github.com/instaclick/php-webdriver.git",
  11077. "reference": "6fa959452e774dcaed543faad3a9d1a37d803327"
  11078. },
  11079. "dist": {
  11080. "type": "zip",
  11081. "url": "https://api.github.com/repos/instaclick/php-webdriver/zipball/6fa959452e774dcaed543faad3a9d1a37d803327",
  11082. "reference": "6fa959452e774dcaed543faad3a9d1a37d803327",
  11083. "shasum": ""
  11084. },
  11085. "require": {
  11086. "ext-curl": "*",
  11087. "php": ">=5.3.2"
  11088. },
  11089. "require-dev": {
  11090. "phpunit/phpunit": "^4.8",
  11091. "satooshi/php-coveralls": "^1.0||^2.0"
  11092. },
  11093. "type": "library",
  11094. "extra": {
  11095. "branch-alias": {
  11096. "dev-master": "1.4.x-dev"
  11097. }
  11098. },
  11099. "autoload": {
  11100. "psr-0": {
  11101. "WebDriver": "lib/"
  11102. }
  11103. },
  11104. "notification-url": "https://packagist.org/downloads/",
  11105. "license": [
  11106. "Apache-2.0"
  11107. ],
  11108. "authors": [
  11109. {
  11110. "name": "Justin Bishop",
  11111. "email": "jubishop@gmail.com",
  11112. "role": "Developer"
  11113. },
  11114. {
  11115. "name": "Anthon Pang",
  11116. "email": "apang@softwaredevelopment.ca",
  11117. "role": "Fork Maintainer"
  11118. }
  11119. ],
  11120. "description": "PHP WebDriver for Selenium 2",
  11121. "homepage": "http://instaclick.com/",
  11122. "keywords": [
  11123. "browser",
  11124. "selenium",
  11125. "webdriver",
  11126. "webtest"
  11127. ],
  11128. "time": "2017-06-30T04:02:48+00:00"
  11129. },
  11130. {
  11131. "name": "jcalderonzumba/gastonjs",
  11132. "version": "v1.2.0",
  11133. "source": {
  11134. "type": "git",
  11135. "url": "https://github.com/jcalderonzumba/gastonjs.git",
  11136. "reference": "575a9c18d8b87990c37252e8d9707b29f0a313f3"
  11137. },
  11138. "dist": {
  11139. "type": "zip",
  11140. "url": "https://api.github.com/repos/jcalderonzumba/gastonjs/zipball/575a9c18d8b87990c37252e8d9707b29f0a313f3",
  11141. "reference": "575a9c18d8b87990c37252e8d9707b29f0a313f3",
  11142. "shasum": ""
  11143. },
  11144. "require": {
  11145. "guzzlehttp/guzzle": "~5.0|~6.0",
  11146. "php": ">=5.4"
  11147. },
  11148. "require-dev": {
  11149. "phpunit/phpunit": "~4.6",
  11150. "silex/silex": "~1.2",
  11151. "symfony/phpunit-bridge": "~2.7",
  11152. "symfony/process": "~2.1"
  11153. },
  11154. "type": "phantomjs-api",
  11155. "extra": {
  11156. "branch-alias": {
  11157. "dev-master": "1.1.x-dev"
  11158. }
  11159. },
  11160. "autoload": {
  11161. "psr-4": {
  11162. "Zumba\\GastonJS\\": "src"
  11163. }
  11164. },
  11165. "notification-url": "https://packagist.org/downloads/",
  11166. "license": [
  11167. "MIT"
  11168. ],
  11169. "authors": [
  11170. {
  11171. "name": "Juan Francisco Calderón Zumba",
  11172. "email": "juanfcz@gmail.com",
  11173. "homepage": "http://github.com/jcalderonzumba"
  11174. }
  11175. ],
  11176. "description": "PhantomJS API based server for webpage automation",
  11177. "homepage": "https://github.com/jcalderonzumba/gastonjs",
  11178. "keywords": [
  11179. "api",
  11180. "automation",
  11181. "browser",
  11182. "headless",
  11183. "phantomjs"
  11184. ],
  11185. "time": "2017-03-31T07:31:47+00:00"
  11186. },
  11187. {
  11188. "name": "jcalderonzumba/mink-phantomjs-driver",
  11189. "version": "v0.3.3",
  11190. "source": {
  11191. "type": "git",
  11192. "url": "https://github.com/jcalderonzumba/MinkPhantomJSDriver.git",
  11193. "reference": "008f43670e94acd39273d15add1e7348eb23848d"
  11194. },
  11195. "dist": {
  11196. "type": "zip",
  11197. "url": "https://api.github.com/repos/jcalderonzumba/MinkPhantomJSDriver/zipball/008f43670e94acd39273d15add1e7348eb23848d",
  11198. "reference": "008f43670e94acd39273d15add1e7348eb23848d",
  11199. "shasum": ""
  11200. },
  11201. "require": {
  11202. "behat/mink": "~1.7",
  11203. "jcalderonzumba/gastonjs": "~1.0",
  11204. "php": ">=5.4",
  11205. "twig/twig": "~1.20|~2.0"
  11206. },
  11207. "require-dev": {
  11208. "mink/driver-testsuite": "dev-master",
  11209. "phpunit/phpunit": "~4.6"
  11210. },
  11211. "type": "mink-driver",
  11212. "extra": {
  11213. "branch-alias": {
  11214. "dev-master": "0.4.x-dev"
  11215. }
  11216. },
  11217. "autoload": {
  11218. "psr-4": {
  11219. "Zumba\\Mink\\Driver\\": "src"
  11220. }
  11221. },
  11222. "notification-url": "https://packagist.org/downloads/",
  11223. "license": [
  11224. "MIT"
  11225. ],
  11226. "authors": [
  11227. {
  11228. "name": "Juan Francisco Calderón Zumba",
  11229. "email": "juanfcz@gmail.com",
  11230. "homepage": "http://github.com/jcalderonzumba"
  11231. }
  11232. ],
  11233. "description": "PhantomJS driver for Mink framework",
  11234. "homepage": "http://mink.behat.org/",
  11235. "keywords": [
  11236. "ajax",
  11237. "browser",
  11238. "headless",
  11239. "javascript",
  11240. "phantomjs",
  11241. "testing"
  11242. ],
  11243. "time": "2016-12-01T10:57:30+00:00"
  11244. },
  11245. {
  11246. "name": "mikey179/vfsStream",
  11247. "version": "v1.6.5",
  11248. "source": {
  11249. "type": "git",
  11250. "url": "https://github.com/mikey179/vfsStream.git",
  11251. "reference": "d5fec95f541d4d71c4823bb5e30cf9b9e5b96145"
  11252. },
  11253. "dist": {
  11254. "type": "zip",
  11255. "url": "https://api.github.com/repos/mikey179/vfsStream/zipball/d5fec95f541d4d71c4823bb5e30cf9b9e5b96145",
  11256. "reference": "d5fec95f541d4d71c4823bb5e30cf9b9e5b96145",
  11257. "shasum": ""
  11258. },
  11259. "require": {
  11260. "php": ">=5.3.0"
  11261. },
  11262. "require-dev": {
  11263. "phpunit/phpunit": "~4.5"
  11264. },
  11265. "type": "library",
  11266. "extra": {
  11267. "branch-alias": {
  11268. "dev-master": "1.6.x-dev"
  11269. }
  11270. },
  11271. "autoload": {
  11272. "psr-0": {
  11273. "org\\bovigo\\vfs\\": "src/main/php"
  11274. }
  11275. },
  11276. "notification-url": "https://packagist.org/downloads/",
  11277. "license": [
  11278. "BSD-3-Clause"
  11279. ],
  11280. "authors": [
  11281. {
  11282. "name": "Frank Kleine",
  11283. "homepage": "http://frankkleine.de/",
  11284. "role": "Developer"
  11285. }
  11286. ],
  11287. "description": "Virtual file system to mock the real file system in unit tests.",
  11288. "homepage": "http://vfs.bovigo.org/",
  11289. "time": "2017-08-01T08:02:14+00:00"
  11290. },
  11291. {
  11292. "name": "myclabs/deep-copy",
  11293. "version": "1.7.0",
  11294. "source": {
  11295. "type": "git",
  11296. "url": "https://github.com/myclabs/DeepCopy.git",
  11297. "reference": "3b8a3a99ba1f6a3952ac2747d989303cbd6b7a3e"
  11298. },
  11299. "dist": {
  11300. "type": "zip",
  11301. "url": "https://api.github.com/repos/myclabs/DeepCopy/zipball/3b8a3a99ba1f6a3952ac2747d989303cbd6b7a3e",
  11302. "reference": "3b8a3a99ba1f6a3952ac2747d989303cbd6b7a3e",
  11303. "shasum": ""
  11304. },
  11305. "require": {
  11306. "php": "^5.6 || ^7.0"
  11307. },
  11308. "require-dev": {
  11309. "doctrine/collections": "^1.0",
  11310. "doctrine/common": "^2.6",
  11311. "phpunit/phpunit": "^4.1"
  11312. },
  11313. "type": "library",
  11314. "autoload": {
  11315. "psr-4": {
  11316. "DeepCopy\\": "src/DeepCopy/"
  11317. },
  11318. "files": [
  11319. "src/DeepCopy/deep_copy.php"
  11320. ]
  11321. },
  11322. "notification-url": "https://packagist.org/downloads/",
  11323. "license": [
  11324. "MIT"
  11325. ],
  11326. "description": "Create deep copies (clones) of your objects",
  11327. "keywords": [
  11328. "clone",
  11329. "copy",
  11330. "duplicate",
  11331. "object",
  11332. "object graph"
  11333. ],
  11334. "time": "2017-10-19T19:58:43+00:00"
  11335. },
  11336. {
  11337. "name": "phar-io/manifest",
  11338. "version": "1.0.1",
  11339. "source": {
  11340. "type": "git",
  11341. "url": "https://github.com/phar-io/manifest.git",
  11342. "reference": "2df402786ab5368a0169091f61a7c1e0eb6852d0"
  11343. },
  11344. "dist": {
  11345. "type": "zip",
  11346. "url": "https://api.github.com/repos/phar-io/manifest/zipball/2df402786ab5368a0169091f61a7c1e0eb6852d0",
  11347. "reference": "2df402786ab5368a0169091f61a7c1e0eb6852d0",
  11348. "shasum": ""
  11349. },
  11350. "require": {
  11351. "ext-dom": "*",
  11352. "ext-phar": "*",
  11353. "phar-io/version": "^1.0.1",
  11354. "php": "^5.6 || ^7.0"
  11355. },
  11356. "type": "library",
  11357. "extra": {
  11358. "branch-alias": {
  11359. "dev-master": "1.0.x-dev"
  11360. }
  11361. },
  11362. "autoload": {
  11363. "classmap": [
  11364. "src/"
  11365. ]
  11366. },
  11367. "notification-url": "https://packagist.org/downloads/",
  11368. "license": [
  11369. "BSD-3-Clause"
  11370. ],
  11371. "authors": [
  11372. {
  11373. "name": "Arne Blankerts",
  11374. "email": "arne@blankerts.de",
  11375. "role": "Developer"
  11376. },
  11377. {
  11378. "name": "Sebastian Heuer",
  11379. "email": "sebastian@phpeople.de",
  11380. "role": "Developer"
  11381. },
  11382. {
  11383. "name": "Sebastian Bergmann",
  11384. "email": "sebastian@phpunit.de",
  11385. "role": "Developer"
  11386. }
  11387. ],
  11388. "description": "Component for reading phar.io manifest information from a PHP Archive (PHAR)",
  11389. "time": "2017-03-05T18:14:27+00:00"
  11390. },
  11391. {
  11392. "name": "phar-io/version",
  11393. "version": "1.0.1",
  11394. "source": {
  11395. "type": "git",
  11396. "url": "https://github.com/phar-io/version.git",
  11397. "reference": "a70c0ced4be299a63d32fa96d9281d03e94041df"
  11398. },
  11399. "dist": {
  11400. "type": "zip",
  11401. "url": "https://api.github.com/repos/phar-io/version/zipball/a70c0ced4be299a63d32fa96d9281d03e94041df",
  11402. "reference": "a70c0ced4be299a63d32fa96d9281d03e94041df",
  11403. "shasum": ""
  11404. },
  11405. "require": {
  11406. "php": "^5.6 || ^7.0"
  11407. },
  11408. "type": "library",
  11409. "autoload": {
  11410. "classmap": [
  11411. "src/"
  11412. ]
  11413. },
  11414. "notification-url": "https://packagist.org/downloads/",
  11415. "license": [
  11416. "BSD-3-Clause"
  11417. ],
  11418. "authors": [
  11419. {
  11420. "name": "Arne Blankerts",
  11421. "email": "arne@blankerts.de",
  11422. "role": "Developer"
  11423. },
  11424. {
  11425. "name": "Sebastian Heuer",
  11426. "email": "sebastian@phpeople.de",
  11427. "role": "Developer"
  11428. },
  11429. {
  11430. "name": "Sebastian Bergmann",
  11431. "email": "sebastian@phpunit.de",
  11432. "role": "Developer"
  11433. }
  11434. ],
  11435. "description": "Library for handling version information and constraints",
  11436. "time": "2017-03-05T17:38:23+00:00"
  11437. },
  11438. {
  11439. "name": "phpdocumentor/reflection-common",
  11440. "version": "1.0.1",
  11441. "source": {
  11442. "type": "git",
  11443. "url": "https://github.com/phpDocumentor/ReflectionCommon.git",
  11444. "reference": "21bdeb5f65d7ebf9f43b1b25d404f87deab5bfb6"
  11445. },
  11446. "dist": {
  11447. "type": "zip",
  11448. "url": "https://api.github.com/repos/phpDocumentor/ReflectionCommon/zipball/21bdeb5f65d7ebf9f43b1b25d404f87deab5bfb6",
  11449. "reference": "21bdeb5f65d7ebf9f43b1b25d404f87deab5bfb6",
  11450. "shasum": ""
  11451. },
  11452. "require": {
  11453. "php": ">=5.5"
  11454. },
  11455. "require-dev": {
  11456. "phpunit/phpunit": "^4.6"
  11457. },
  11458. "type": "library",
  11459. "extra": {
  11460. "branch-alias": {
  11461. "dev-master": "1.0.x-dev"
  11462. }
  11463. },
  11464. "autoload": {
  11465. "psr-4": {
  11466. "phpDocumentor\\Reflection\\": [
  11467. "src"
  11468. ]
  11469. }
  11470. },
  11471. "notification-url": "https://packagist.org/downloads/",
  11472. "license": [
  11473. "MIT"
  11474. ],
  11475. "authors": [
  11476. {
  11477. "name": "Jaap van Otterdijk",
  11478. "email": "opensource@ijaap.nl"
  11479. }
  11480. ],
  11481. "description": "Common reflection classes used by phpdocumentor to reflect the code structure",
  11482. "homepage": "http://www.phpdoc.org",
  11483. "keywords": [
  11484. "FQSEN",
  11485. "phpDocumentor",
  11486. "phpdoc",
  11487. "reflection",
  11488. "static analysis"
  11489. ],
  11490. "time": "2017-09-11T18:02:19+00:00"
  11491. },
  11492. {
  11493. "name": "phpdocumentor/reflection-docblock",
  11494. "version": "4.3.0",
  11495. "source": {
  11496. "type": "git",
  11497. "url": "https://github.com/phpDocumentor/ReflectionDocBlock.git",
  11498. "reference": "94fd0001232e47129dd3504189fa1c7225010d08"
  11499. },
  11500. "dist": {
  11501. "type": "zip",
  11502. "url": "https://api.github.com/repos/phpDocumentor/ReflectionDocBlock/zipball/94fd0001232e47129dd3504189fa1c7225010d08",
  11503. "reference": "94fd0001232e47129dd3504189fa1c7225010d08",
  11504. "shasum": ""
  11505. },
  11506. "require": {
  11507. "php": "^7.0",
  11508. "phpdocumentor/reflection-common": "^1.0.0",
  11509. "phpdocumentor/type-resolver": "^0.4.0",
  11510. "webmozart/assert": "^1.0"
  11511. },
  11512. "require-dev": {
  11513. "doctrine/instantiator": "~1.0.5",
  11514. "mockery/mockery": "^1.0",
  11515. "phpunit/phpunit": "^6.4"
  11516. },
  11517. "type": "library",
  11518. "extra": {
  11519. "branch-alias": {
  11520. "dev-master": "4.x-dev"
  11521. }
  11522. },
  11523. "autoload": {
  11524. "psr-4": {
  11525. "phpDocumentor\\Reflection\\": [
  11526. "src/"
  11527. ]
  11528. }
  11529. },
  11530. "notification-url": "https://packagist.org/downloads/",
  11531. "license": [
  11532. "MIT"
  11533. ],
  11534. "authors": [
  11535. {
  11536. "name": "Mike van Riel",
  11537. "email": "me@mikevanriel.com"
  11538. }
  11539. ],
  11540. "description": "With this component, a library can provide support for annotations via DocBlocks or otherwise retrieve information that is embedded in a DocBlock.",
  11541. "time": "2017-11-30T07:14:17+00:00"
  11542. },
  11543. {
  11544. "name": "phpdocumentor/type-resolver",
  11545. "version": "0.4.0",
  11546. "source": {
  11547. "type": "git",
  11548. "url": "https://github.com/phpDocumentor/TypeResolver.git",
  11549. "reference": "9c977708995954784726e25d0cd1dddf4e65b0f7"
  11550. },
  11551. "dist": {
  11552. "type": "zip",
  11553. "url": "https://api.github.com/repos/phpDocumentor/TypeResolver/zipball/9c977708995954784726e25d0cd1dddf4e65b0f7",
  11554. "reference": "9c977708995954784726e25d0cd1dddf4e65b0f7",
  11555. "shasum": ""
  11556. },
  11557. "require": {
  11558. "php": "^5.5 || ^7.0",
  11559. "phpdocumentor/reflection-common": "^1.0"
  11560. },
  11561. "require-dev": {
  11562. "mockery/mockery": "^0.9.4",
  11563. "phpunit/phpunit": "^5.2||^4.8.24"
  11564. },
  11565. "type": "library",
  11566. "extra": {
  11567. "branch-alias": {
  11568. "dev-master": "1.0.x-dev"
  11569. }
  11570. },
  11571. "autoload": {
  11572. "psr-4": {
  11573. "phpDocumentor\\Reflection\\": [
  11574. "src/"
  11575. ]
  11576. }
  11577. },
  11578. "notification-url": "https://packagist.org/downloads/",
  11579. "license": [
  11580. "MIT"
  11581. ],
  11582. "authors": [
  11583. {
  11584. "name": "Mike van Riel",
  11585. "email": "me@mikevanriel.com"
  11586. }
  11587. ],
  11588. "time": "2017-07-14T14:27:02+00:00"
  11589. },
  11590. {
  11591. "name": "phpspec/prophecy",
  11592. "version": "1.8.0",
  11593. "source": {
  11594. "type": "git",
  11595. "url": "https://github.com/phpspec/prophecy.git",
  11596. "reference": "4ba436b55987b4bf311cb7c6ba82aa528aac0a06"
  11597. },
  11598. "dist": {
  11599. "type": "zip",
  11600. "url": "https://api.github.com/repos/phpspec/prophecy/zipball/4ba436b55987b4bf311cb7c6ba82aa528aac0a06",
  11601. "reference": "4ba436b55987b4bf311cb7c6ba82aa528aac0a06",
  11602. "shasum": ""
  11603. },
  11604. "require": {
  11605. "doctrine/instantiator": "^1.0.2",
  11606. "php": "^5.3|^7.0",
  11607. "phpdocumentor/reflection-docblock": "^2.0|^3.0.2|^4.0",
  11608. "sebastian/comparator": "^1.1|^2.0|^3.0",
  11609. "sebastian/recursion-context": "^1.0|^2.0|^3.0"
  11610. },
  11611. "require-dev": {
  11612. "phpspec/phpspec": "^2.5|^3.2",
  11613. "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.5 || ^7.1"
  11614. },
  11615. "type": "library",
  11616. "extra": {
  11617. "branch-alias": {
  11618. "dev-master": "1.8.x-dev"
  11619. }
  11620. },
  11621. "autoload": {
  11622. "psr-0": {
  11623. "Prophecy\\": "src/"
  11624. }
  11625. },
  11626. "notification-url": "https://packagist.org/downloads/",
  11627. "license": [
  11628. "MIT"
  11629. ],
  11630. "authors": [
  11631. {
  11632. "name": "Konstantin Kudryashov",
  11633. "email": "ever.zet@gmail.com",
  11634. "homepage": "http://everzet.com"
  11635. },
  11636. {
  11637. "name": "Marcello Duarte",
  11638. "email": "marcello.duarte@gmail.com"
  11639. }
  11640. ],
  11641. "description": "Highly opinionated mocking framework for PHP 5.3+",
  11642. "homepage": "https://github.com/phpspec/prophecy",
  11643. "keywords": [
  11644. "Double",
  11645. "Dummy",
  11646. "fake",
  11647. "mock",
  11648. "spy",
  11649. "stub"
  11650. ],
  11651. "time": "2018-08-05T17:53:17+00:00"
  11652. },
  11653. {
  11654. "name": "phpunit/php-code-coverage",
  11655. "version": "5.3.2",
  11656. "source": {
  11657. "type": "git",
  11658. "url": "https://github.com/sebastianbergmann/php-code-coverage.git",
  11659. "reference": "c89677919c5dd6d3b3852f230a663118762218ac"
  11660. },
  11661. "dist": {
  11662. "type": "zip",
  11663. "url": "https://api.github.com/repos/sebastianbergmann/php-code-coverage/zipball/c89677919c5dd6d3b3852f230a663118762218ac",
  11664. "reference": "c89677919c5dd6d3b3852f230a663118762218ac",
  11665. "shasum": ""
  11666. },
  11667. "require": {
  11668. "ext-dom": "*",
  11669. "ext-xmlwriter": "*",
  11670. "php": "^7.0",
  11671. "phpunit/php-file-iterator": "^1.4.2",
  11672. "phpunit/php-text-template": "^1.2.1",
  11673. "phpunit/php-token-stream": "^2.0.1",
  11674. "sebastian/code-unit-reverse-lookup": "^1.0.1",
  11675. "sebastian/environment": "^3.0",
  11676. "sebastian/version": "^2.0.1",
  11677. "theseer/tokenizer": "^1.1"
  11678. },
  11679. "require-dev": {
  11680. "phpunit/phpunit": "^6.0"
  11681. },
  11682. "suggest": {
  11683. "ext-xdebug": "^2.5.5"
  11684. },
  11685. "type": "library",
  11686. "extra": {
  11687. "branch-alias": {
  11688. "dev-master": "5.3.x-dev"
  11689. }
  11690. },
  11691. "autoload": {
  11692. "classmap": [
  11693. "src/"
  11694. ]
  11695. },
  11696. "notification-url": "https://packagist.org/downloads/",
  11697. "license": [
  11698. "BSD-3-Clause"
  11699. ],
  11700. "authors": [
  11701. {
  11702. "name": "Sebastian Bergmann",
  11703. "email": "sebastian@phpunit.de",
  11704. "role": "lead"
  11705. }
  11706. ],
  11707. "description": "Library that provides collection, processing, and rendering functionality for PHP code coverage information.",
  11708. "homepage": "https://github.com/sebastianbergmann/php-code-coverage",
  11709. "keywords": [
  11710. "coverage",
  11711. "testing",
  11712. "xunit"
  11713. ],
  11714. "time": "2018-04-06T15:36:58+00:00"
  11715. },
  11716. {
  11717. "name": "phpunit/php-file-iterator",
  11718. "version": "1.4.5",
  11719. "source": {
  11720. "type": "git",
  11721. "url": "https://github.com/sebastianbergmann/php-file-iterator.git",
  11722. "reference": "730b01bc3e867237eaac355e06a36b85dd93a8b4"
  11723. },
  11724. "dist": {
  11725. "type": "zip",
  11726. "url": "https://api.github.com/repos/sebastianbergmann/php-file-iterator/zipball/730b01bc3e867237eaac355e06a36b85dd93a8b4",
  11727. "reference": "730b01bc3e867237eaac355e06a36b85dd93a8b4",
  11728. "shasum": ""
  11729. },
  11730. "require": {
  11731. "php": ">=5.3.3"
  11732. },
  11733. "type": "library",
  11734. "extra": {
  11735. "branch-alias": {
  11736. "dev-master": "1.4.x-dev"
  11737. }
  11738. },
  11739. "autoload": {
  11740. "classmap": [
  11741. "src/"
  11742. ]
  11743. },
  11744. "notification-url": "https://packagist.org/downloads/",
  11745. "license": [
  11746. "BSD-3-Clause"
  11747. ],
  11748. "authors": [
  11749. {
  11750. "name": "Sebastian Bergmann",
  11751. "email": "sb@sebastian-bergmann.de",
  11752. "role": "lead"
  11753. }
  11754. ],
  11755. "description": "FilterIterator implementation that filters files based on a list of suffixes.",
  11756. "homepage": "https://github.com/sebastianbergmann/php-file-iterator/",
  11757. "keywords": [
  11758. "filesystem",
  11759. "iterator"
  11760. ],
  11761. "time": "2017-11-27T13:52:08+00:00"
  11762. },
  11763. {
  11764. "name": "phpunit/php-text-template",
  11765. "version": "1.2.1",
  11766. "source": {
  11767. "type": "git",
  11768. "url": "https://github.com/sebastianbergmann/php-text-template.git",
  11769. "reference": "31f8b717e51d9a2afca6c9f046f5d69fc27c8686"
  11770. },
  11771. "dist": {
  11772. "type": "zip",
  11773. "url": "https://api.github.com/repos/sebastianbergmann/php-text-template/zipball/31f8b717e51d9a2afca6c9f046f5d69fc27c8686",
  11774. "reference": "31f8b717e51d9a2afca6c9f046f5d69fc27c8686",
  11775. "shasum": ""
  11776. },
  11777. "require": {
  11778. "php": ">=5.3.3"
  11779. },
  11780. "type": "library",
  11781. "autoload": {
  11782. "classmap": [
  11783. "src/"
  11784. ]
  11785. },
  11786. "notification-url": "https://packagist.org/downloads/",
  11787. "license": [
  11788. "BSD-3-Clause"
  11789. ],
  11790. "authors": [
  11791. {
  11792. "name": "Sebastian Bergmann",
  11793. "email": "sebastian@phpunit.de",
  11794. "role": "lead"
  11795. }
  11796. ],
  11797. "description": "Simple template engine.",
  11798. "homepage": "https://github.com/sebastianbergmann/php-text-template/",
  11799. "keywords": [
  11800. "template"
  11801. ],
  11802. "time": "2015-06-21T13:50:34+00:00"
  11803. },
  11804. {
  11805. "name": "phpunit/php-timer",
  11806. "version": "1.0.9",
  11807. "source": {
  11808. "type": "git",
  11809. "url": "https://github.com/sebastianbergmann/php-timer.git",
  11810. "reference": "3dcf38ca72b158baf0bc245e9184d3fdffa9c46f"
  11811. },
  11812. "dist": {
  11813. "type": "zip",
  11814. "url": "https://api.github.com/repos/sebastianbergmann/php-timer/zipball/3dcf38ca72b158baf0bc245e9184d3fdffa9c46f",
  11815. "reference": "3dcf38ca72b158baf0bc245e9184d3fdffa9c46f",
  11816. "shasum": ""
  11817. },
  11818. "require": {
  11819. "php": "^5.3.3 || ^7.0"
  11820. },
  11821. "require-dev": {
  11822. "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.0"
  11823. },
  11824. "type": "library",
  11825. "extra": {
  11826. "branch-alias": {
  11827. "dev-master": "1.0-dev"
  11828. }
  11829. },
  11830. "autoload": {
  11831. "classmap": [
  11832. "src/"
  11833. ]
  11834. },
  11835. "notification-url": "https://packagist.org/downloads/",
  11836. "license": [
  11837. "BSD-3-Clause"
  11838. ],
  11839. "authors": [
  11840. {
  11841. "name": "Sebastian Bergmann",
  11842. "email": "sb@sebastian-bergmann.de",
  11843. "role": "lead"
  11844. }
  11845. ],
  11846. "description": "Utility class for timing",
  11847. "homepage": "https://github.com/sebastianbergmann/php-timer/",
  11848. "keywords": [
  11849. "timer"
  11850. ],
  11851. "time": "2017-02-26T11:10:40+00:00"
  11852. },
  11853. {
  11854. "name": "phpunit/php-token-stream",
  11855. "version": "2.0.2",
  11856. "source": {
  11857. "type": "git",
  11858. "url": "https://github.com/sebastianbergmann/php-token-stream.git",
  11859. "reference": "791198a2c6254db10131eecfe8c06670700904db"
  11860. },
  11861. "dist": {
  11862. "type": "zip",
  11863. "url": "https://api.github.com/repos/sebastianbergmann/php-token-stream/zipball/791198a2c6254db10131eecfe8c06670700904db",
  11864. "reference": "791198a2c6254db10131eecfe8c06670700904db",
  11865. "shasum": ""
  11866. },
  11867. "require": {
  11868. "ext-tokenizer": "*",
  11869. "php": "^7.0"
  11870. },
  11871. "require-dev": {
  11872. "phpunit/phpunit": "^6.2.4"
  11873. },
  11874. "type": "library",
  11875. "extra": {
  11876. "branch-alias": {
  11877. "dev-master": "2.0-dev"
  11878. }
  11879. },
  11880. "autoload": {
  11881. "classmap": [
  11882. "src/"
  11883. ]
  11884. },
  11885. "notification-url": "https://packagist.org/downloads/",
  11886. "license": [
  11887. "BSD-3-Clause"
  11888. ],
  11889. "authors": [
  11890. {
  11891. "name": "Sebastian Bergmann",
  11892. "email": "sebastian@phpunit.de"
  11893. }
  11894. ],
  11895. "description": "Wrapper around PHP's tokenizer extension.",
  11896. "homepage": "https://github.com/sebastianbergmann/php-token-stream/",
  11897. "keywords": [
  11898. "tokenizer"
  11899. ],
  11900. "time": "2017-11-27T05:48:46+00:00"
  11901. },
  11902. {
  11903. "name": "phpunit/phpunit",
  11904. "version": "6.5.13",
  11905. "source": {
  11906. "type": "git",
  11907. "url": "https://github.com/sebastianbergmann/phpunit.git",
  11908. "reference": "0973426fb012359b2f18d3bd1e90ef1172839693"
  11909. },
  11910. "dist": {
  11911. "type": "zip",
  11912. "url": "https://api.github.com/repos/sebastianbergmann/phpunit/zipball/0973426fb012359b2f18d3bd1e90ef1172839693",
  11913. "reference": "0973426fb012359b2f18d3bd1e90ef1172839693",
  11914. "shasum": ""
  11915. },
  11916. "require": {
  11917. "ext-dom": "*",
  11918. "ext-json": "*",
  11919. "ext-libxml": "*",
  11920. "ext-mbstring": "*",
  11921. "ext-xml": "*",
  11922. "myclabs/deep-copy": "^1.6.1",
  11923. "phar-io/manifest": "^1.0.1",
  11924. "phar-io/version": "^1.0",
  11925. "php": "^7.0",
  11926. "phpspec/prophecy": "^1.7",
  11927. "phpunit/php-code-coverage": "^5.3",
  11928. "phpunit/php-file-iterator": "^1.4.3",
  11929. "phpunit/php-text-template": "^1.2.1",
  11930. "phpunit/php-timer": "^1.0.9",
  11931. "phpunit/phpunit-mock-objects": "^5.0.9",
  11932. "sebastian/comparator": "^2.1",
  11933. "sebastian/diff": "^2.0",
  11934. "sebastian/environment": "^3.1",
  11935. "sebastian/exporter": "^3.1",
  11936. "sebastian/global-state": "^2.0",
  11937. "sebastian/object-enumerator": "^3.0.3",
  11938. "sebastian/resource-operations": "^1.0",
  11939. "sebastian/version": "^2.0.1"
  11940. },
  11941. "conflict": {
  11942. "phpdocumentor/reflection-docblock": "3.0.2",
  11943. "phpunit/dbunit": "<3.0"
  11944. },
  11945. "require-dev": {
  11946. "ext-pdo": "*"
  11947. },
  11948. "suggest": {
  11949. "ext-xdebug": "*",
  11950. "phpunit/php-invoker": "^1.1"
  11951. },
  11952. "bin": [
  11953. "phpunit"
  11954. ],
  11955. "type": "library",
  11956. "extra": {
  11957. "branch-alias": {
  11958. "dev-master": "6.5.x-dev"
  11959. }
  11960. },
  11961. "autoload": {
  11962. "classmap": [
  11963. "src/"
  11964. ]
  11965. },
  11966. "notification-url": "https://packagist.org/downloads/",
  11967. "license": [
  11968. "BSD-3-Clause"
  11969. ],
  11970. "authors": [
  11971. {
  11972. "name": "Sebastian Bergmann",
  11973. "email": "sebastian@phpunit.de",
  11974. "role": "lead"
  11975. }
  11976. ],
  11977. "description": "The PHP Unit Testing framework.",
  11978. "homepage": "https://phpunit.de/",
  11979. "keywords": [
  11980. "phpunit",
  11981. "testing",
  11982. "xunit"
  11983. ],
  11984. "time": "2018-09-08T15:10:43+00:00"
  11985. },
  11986. {
  11987. "name": "phpunit/phpunit-mock-objects",
  11988. "version": "5.0.10",
  11989. "source": {
  11990. "type": "git",
  11991. "url": "https://github.com/sebastianbergmann/phpunit-mock-objects.git",
  11992. "reference": "cd1cf05c553ecfec36b170070573e540b67d3f1f"
  11993. },
  11994. "dist": {
  11995. "type": "zip",
  11996. "url": "https://api.github.com/repos/sebastianbergmann/phpunit-mock-objects/zipball/cd1cf05c553ecfec36b170070573e540b67d3f1f",
  11997. "reference": "cd1cf05c553ecfec36b170070573e540b67d3f1f",
  11998. "shasum": ""
  11999. },
  12000. "require": {
  12001. "doctrine/instantiator": "^1.0.5",
  12002. "php": "^7.0",
  12003. "phpunit/php-text-template": "^1.2.1",
  12004. "sebastian/exporter": "^3.1"
  12005. },
  12006. "conflict": {
  12007. "phpunit/phpunit": "<6.0"
  12008. },
  12009. "require-dev": {
  12010. "phpunit/phpunit": "^6.5.11"
  12011. },
  12012. "suggest": {
  12013. "ext-soap": "*"
  12014. },
  12015. "type": "library",
  12016. "extra": {
  12017. "branch-alias": {
  12018. "dev-master": "5.0.x-dev"
  12019. }
  12020. },
  12021. "autoload": {
  12022. "classmap": [
  12023. "src/"
  12024. ]
  12025. },
  12026. "notification-url": "https://packagist.org/downloads/",
  12027. "license": [
  12028. "BSD-3-Clause"
  12029. ],
  12030. "authors": [
  12031. {
  12032. "name": "Sebastian Bergmann",
  12033. "email": "sebastian@phpunit.de",
  12034. "role": "lead"
  12035. }
  12036. ],
  12037. "description": "Mock Object library for PHPUnit",
  12038. "homepage": "https://github.com/sebastianbergmann/phpunit-mock-objects/",
  12039. "keywords": [
  12040. "mock",
  12041. "xunit"
  12042. ],
  12043. "time": "2018-08-09T05:50:03+00:00"
  12044. },
  12045. {
  12046. "name": "sebastian/code-unit-reverse-lookup",
  12047. "version": "1.0.1",
  12048. "source": {
  12049. "type": "git",
  12050. "url": "https://github.com/sebastianbergmann/code-unit-reverse-lookup.git",
  12051. "reference": "4419fcdb5eabb9caa61a27c7a1db532a6b55dd18"
  12052. },
  12053. "dist": {
  12054. "type": "zip",
  12055. "url": "https://api.github.com/repos/sebastianbergmann/code-unit-reverse-lookup/zipball/4419fcdb5eabb9caa61a27c7a1db532a6b55dd18",
  12056. "reference": "4419fcdb5eabb9caa61a27c7a1db532a6b55dd18",
  12057. "shasum": ""
  12058. },
  12059. "require": {
  12060. "php": "^5.6 || ^7.0"
  12061. },
  12062. "require-dev": {
  12063. "phpunit/phpunit": "^5.7 || ^6.0"
  12064. },
  12065. "type": "library",
  12066. "extra": {
  12067. "branch-alias": {
  12068. "dev-master": "1.0.x-dev"
  12069. }
  12070. },
  12071. "autoload": {
  12072. "classmap": [
  12073. "src/"
  12074. ]
  12075. },
  12076. "notification-url": "https://packagist.org/downloads/",
  12077. "license": [
  12078. "BSD-3-Clause"
  12079. ],
  12080. "authors": [
  12081. {
  12082. "name": "Sebastian Bergmann",
  12083. "email": "sebastian@phpunit.de"
  12084. }
  12085. ],
  12086. "description": "Looks up which function or method a line of code belongs to",
  12087. "homepage": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/",
  12088. "time": "2017-03-04T06:30:41+00:00"
  12089. },
  12090. {
  12091. "name": "sebastian/comparator",
  12092. "version": "2.1.3",
  12093. "source": {
  12094. "type": "git",
  12095. "url": "https://github.com/sebastianbergmann/comparator.git",
  12096. "reference": "34369daee48eafb2651bea869b4b15d75ccc35f9"
  12097. },
  12098. "dist": {
  12099. "type": "zip",
  12100. "url": "https://api.github.com/repos/sebastianbergmann/comparator/zipball/34369daee48eafb2651bea869b4b15d75ccc35f9",
  12101. "reference": "34369daee48eafb2651bea869b4b15d75ccc35f9",
  12102. "shasum": ""
  12103. },
  12104. "require": {
  12105. "php": "^7.0",
  12106. "sebastian/diff": "^2.0 || ^3.0",
  12107. "sebastian/exporter": "^3.1"
  12108. },
  12109. "require-dev": {
  12110. "phpunit/phpunit": "^6.4"
  12111. },
  12112. "type": "library",
  12113. "extra": {
  12114. "branch-alias": {
  12115. "dev-master": "2.1.x-dev"
  12116. }
  12117. },
  12118. "autoload": {
  12119. "classmap": [
  12120. "src/"
  12121. ]
  12122. },
  12123. "notification-url": "https://packagist.org/downloads/",
  12124. "license": [
  12125. "BSD-3-Clause"
  12126. ],
  12127. "authors": [
  12128. {
  12129. "name": "Jeff Welch",
  12130. "email": "whatthejeff@gmail.com"
  12131. },
  12132. {
  12133. "name": "Volker Dusch",
  12134. "email": "github@wallbash.com"
  12135. },
  12136. {
  12137. "name": "Bernhard Schussek",
  12138. "email": "bschussek@2bepublished.at"
  12139. },
  12140. {
  12141. "name": "Sebastian Bergmann",
  12142. "email": "sebastian@phpunit.de"
  12143. }
  12144. ],
  12145. "description": "Provides the functionality to compare PHP values for equality",
  12146. "homepage": "https://github.com/sebastianbergmann/comparator",
  12147. "keywords": [
  12148. "comparator",
  12149. "compare",
  12150. "equality"
  12151. ],
  12152. "time": "2018-02-01T13:46:46+00:00"
  12153. },
  12154. {
  12155. "name": "sebastian/diff",
  12156. "version": "2.0.1",
  12157. "source": {
  12158. "type": "git",
  12159. "url": "https://github.com/sebastianbergmann/diff.git",
  12160. "reference": "347c1d8b49c5c3ee30c7040ea6fc446790e6bddd"
  12161. },
  12162. "dist": {
  12163. "type": "zip",
  12164. "url": "https://api.github.com/repos/sebastianbergmann/diff/zipball/347c1d8b49c5c3ee30c7040ea6fc446790e6bddd",
  12165. "reference": "347c1d8b49c5c3ee30c7040ea6fc446790e6bddd",
  12166. "shasum": ""
  12167. },
  12168. "require": {
  12169. "php": "^7.0"
  12170. },
  12171. "require-dev": {
  12172. "phpunit/phpunit": "^6.2"
  12173. },
  12174. "type": "library",
  12175. "extra": {
  12176. "branch-alias": {
  12177. "dev-master": "2.0-dev"
  12178. }
  12179. },
  12180. "autoload": {
  12181. "classmap": [
  12182. "src/"
  12183. ]
  12184. },
  12185. "notification-url": "https://packagist.org/downloads/",
  12186. "license": [
  12187. "BSD-3-Clause"
  12188. ],
  12189. "authors": [
  12190. {
  12191. "name": "Kore Nordmann",
  12192. "email": "mail@kore-nordmann.de"
  12193. },
  12194. {
  12195. "name": "Sebastian Bergmann",
  12196. "email": "sebastian@phpunit.de"
  12197. }
  12198. ],
  12199. "description": "Diff implementation",
  12200. "homepage": "https://github.com/sebastianbergmann/diff",
  12201. "keywords": [
  12202. "diff"
  12203. ],
  12204. "time": "2017-08-03T08:09:46+00:00"
  12205. },
  12206. {
  12207. "name": "sebastian/environment",
  12208. "version": "3.1.0",
  12209. "source": {
  12210. "type": "git",
  12211. "url": "https://github.com/sebastianbergmann/environment.git",
  12212. "reference": "cd0871b3975fb7fc44d11314fd1ee20925fce4f5"
  12213. },
  12214. "dist": {
  12215. "type": "zip",
  12216. "url": "https://api.github.com/repos/sebastianbergmann/environment/zipball/cd0871b3975fb7fc44d11314fd1ee20925fce4f5",
  12217. "reference": "cd0871b3975fb7fc44d11314fd1ee20925fce4f5",
  12218. "shasum": ""
  12219. },
  12220. "require": {
  12221. "php": "^7.0"
  12222. },
  12223. "require-dev": {
  12224. "phpunit/phpunit": "^6.1"
  12225. },
  12226. "type": "library",
  12227. "extra": {
  12228. "branch-alias": {
  12229. "dev-master": "3.1.x-dev"
  12230. }
  12231. },
  12232. "autoload": {
  12233. "classmap": [
  12234. "src/"
  12235. ]
  12236. },
  12237. "notification-url": "https://packagist.org/downloads/",
  12238. "license": [
  12239. "BSD-3-Clause"
  12240. ],
  12241. "authors": [
  12242. {
  12243. "name": "Sebastian Bergmann",
  12244. "email": "sebastian@phpunit.de"
  12245. }
  12246. ],
  12247. "description": "Provides functionality to handle HHVM/PHP environments",
  12248. "homepage": "http://www.github.com/sebastianbergmann/environment",
  12249. "keywords": [
  12250. "Xdebug",
  12251. "environment",
  12252. "hhvm"
  12253. ],
  12254. "time": "2017-07-01T08:51:00+00:00"
  12255. },
  12256. {
  12257. "name": "sebastian/exporter",
  12258. "version": "3.1.0",
  12259. "source": {
  12260. "type": "git",
  12261. "url": "https://github.com/sebastianbergmann/exporter.git",
  12262. "reference": "234199f4528de6d12aaa58b612e98f7d36adb937"
  12263. },
  12264. "dist": {
  12265. "type": "zip",
  12266. "url": "https://api.github.com/repos/sebastianbergmann/exporter/zipball/234199f4528de6d12aaa58b612e98f7d36adb937",
  12267. "reference": "234199f4528de6d12aaa58b612e98f7d36adb937",
  12268. "shasum": ""
  12269. },
  12270. "require": {
  12271. "php": "^7.0",
  12272. "sebastian/recursion-context": "^3.0"
  12273. },
  12274. "require-dev": {
  12275. "ext-mbstring": "*",
  12276. "phpunit/phpunit": "^6.0"
  12277. },
  12278. "type": "library",
  12279. "extra": {
  12280. "branch-alias": {
  12281. "dev-master": "3.1.x-dev"
  12282. }
  12283. },
  12284. "autoload": {
  12285. "classmap": [
  12286. "src/"
  12287. ]
  12288. },
  12289. "notification-url": "https://packagist.org/downloads/",
  12290. "license": [
  12291. "BSD-3-Clause"
  12292. ],
  12293. "authors": [
  12294. {
  12295. "name": "Jeff Welch",
  12296. "email": "whatthejeff@gmail.com"
  12297. },
  12298. {
  12299. "name": "Volker Dusch",
  12300. "email": "github@wallbash.com"
  12301. },
  12302. {
  12303. "name": "Bernhard Schussek",
  12304. "email": "bschussek@2bepublished.at"
  12305. },
  12306. {
  12307. "name": "Sebastian Bergmann",
  12308. "email": "sebastian@phpunit.de"
  12309. },
  12310. {
  12311. "name": "Adam Harvey",
  12312. "email": "aharvey@php.net"
  12313. }
  12314. ],
  12315. "description": "Provides the functionality to export PHP variables for visualization",
  12316. "homepage": "http://www.github.com/sebastianbergmann/exporter",
  12317. "keywords": [
  12318. "export",
  12319. "exporter"
  12320. ],
  12321. "time": "2017-04-03T13:19:02+00:00"
  12322. },
  12323. {
  12324. "name": "sebastian/global-state",
  12325. "version": "2.0.0",
  12326. "source": {
  12327. "type": "git",
  12328. "url": "https://github.com/sebastianbergmann/global-state.git",
  12329. "reference": "e8ba02eed7bbbb9e59e43dedd3dddeff4a56b0c4"
  12330. },
  12331. "dist": {
  12332. "type": "zip",
  12333. "url": "https://api.github.com/repos/sebastianbergmann/global-state/zipball/e8ba02eed7bbbb9e59e43dedd3dddeff4a56b0c4",
  12334. "reference": "e8ba02eed7bbbb9e59e43dedd3dddeff4a56b0c4",
  12335. "shasum": ""
  12336. },
  12337. "require": {
  12338. "php": "^7.0"
  12339. },
  12340. "require-dev": {
  12341. "phpunit/phpunit": "^6.0"
  12342. },
  12343. "suggest": {
  12344. "ext-uopz": "*"
  12345. },
  12346. "type": "library",
  12347. "extra": {
  12348. "branch-alias": {
  12349. "dev-master": "2.0-dev"
  12350. }
  12351. },
  12352. "autoload": {
  12353. "classmap": [
  12354. "src/"
  12355. ]
  12356. },
  12357. "notification-url": "https://packagist.org/downloads/",
  12358. "license": [
  12359. "BSD-3-Clause"
  12360. ],
  12361. "authors": [
  12362. {
  12363. "name": "Sebastian Bergmann",
  12364. "email": "sebastian@phpunit.de"
  12365. }
  12366. ],
  12367. "description": "Snapshotting of global state",
  12368. "homepage": "http://www.github.com/sebastianbergmann/global-state",
  12369. "keywords": [
  12370. "global state"
  12371. ],
  12372. "time": "2017-04-27T15:39:26+00:00"
  12373. },
  12374. {
  12375. "name": "sebastian/object-enumerator",
  12376. "version": "3.0.3",
  12377. "source": {
  12378. "type": "git",
  12379. "url": "https://github.com/sebastianbergmann/object-enumerator.git",
  12380. "reference": "7cfd9e65d11ffb5af41198476395774d4c8a84c5"
  12381. },
  12382. "dist": {
  12383. "type": "zip",
  12384. "url": "https://api.github.com/repos/sebastianbergmann/object-enumerator/zipball/7cfd9e65d11ffb5af41198476395774d4c8a84c5",
  12385. "reference": "7cfd9e65d11ffb5af41198476395774d4c8a84c5",
  12386. "shasum": ""
  12387. },
  12388. "require": {
  12389. "php": "^7.0",
  12390. "sebastian/object-reflector": "^1.1.1",
  12391. "sebastian/recursion-context": "^3.0"
  12392. },
  12393. "require-dev": {
  12394. "phpunit/phpunit": "^6.0"
  12395. },
  12396. "type": "library",
  12397. "extra": {
  12398. "branch-alias": {
  12399. "dev-master": "3.0.x-dev"
  12400. }
  12401. },
  12402. "autoload": {
  12403. "classmap": [
  12404. "src/"
  12405. ]
  12406. },
  12407. "notification-url": "https://packagist.org/downloads/",
  12408. "license": [
  12409. "BSD-3-Clause"
  12410. ],
  12411. "authors": [
  12412. {
  12413. "name": "Sebastian Bergmann",
  12414. "email": "sebastian@phpunit.de"
  12415. }
  12416. ],
  12417. "description": "Traverses array structures and object graphs to enumerate all referenced objects",
  12418. "homepage": "https://github.com/sebastianbergmann/object-enumerator/",
  12419. "time": "2017-08-03T12:35:26+00:00"
  12420. },
  12421. {
  12422. "name": "sebastian/object-reflector",
  12423. "version": "1.1.1",
  12424. "source": {
  12425. "type": "git",
  12426. "url": "https://github.com/sebastianbergmann/object-reflector.git",
  12427. "reference": "773f97c67f28de00d397be301821b06708fca0be"
  12428. },
  12429. "dist": {
  12430. "type": "zip",
  12431. "url": "https://api.github.com/repos/sebastianbergmann/object-reflector/zipball/773f97c67f28de00d397be301821b06708fca0be",
  12432. "reference": "773f97c67f28de00d397be301821b06708fca0be",
  12433. "shasum": ""
  12434. },
  12435. "require": {
  12436. "php": "^7.0"
  12437. },
  12438. "require-dev": {
  12439. "phpunit/phpunit": "^6.0"
  12440. },
  12441. "type": "library",
  12442. "extra": {
  12443. "branch-alias": {
  12444. "dev-master": "1.1-dev"
  12445. }
  12446. },
  12447. "autoload": {
  12448. "classmap": [
  12449. "src/"
  12450. ]
  12451. },
  12452. "notification-url": "https://packagist.org/downloads/",
  12453. "license": [
  12454. "BSD-3-Clause"
  12455. ],
  12456. "authors": [
  12457. {
  12458. "name": "Sebastian Bergmann",
  12459. "email": "sebastian@phpunit.de"
  12460. }
  12461. ],
  12462. "description": "Allows reflection of object attributes, including inherited and non-public ones",
  12463. "homepage": "https://github.com/sebastianbergmann/object-reflector/",
  12464. "time": "2017-03-29T09:07:27+00:00"
  12465. },
  12466. {
  12467. "name": "sebastian/recursion-context",
  12468. "version": "3.0.0",
  12469. "source": {
  12470. "type": "git",
  12471. "url": "https://github.com/sebastianbergmann/recursion-context.git",
  12472. "reference": "5b0cd723502bac3b006cbf3dbf7a1e3fcefe4fa8"
  12473. },
  12474. "dist": {
  12475. "type": "zip",
  12476. "url": "https://api.github.com/repos/sebastianbergmann/recursion-context/zipball/5b0cd723502bac3b006cbf3dbf7a1e3fcefe4fa8",
  12477. "reference": "5b0cd723502bac3b006cbf3dbf7a1e3fcefe4fa8",
  12478. "shasum": ""
  12479. },
  12480. "require": {
  12481. "php": "^7.0"
  12482. },
  12483. "require-dev": {
  12484. "phpunit/phpunit": "^6.0"
  12485. },
  12486. "type": "library",
  12487. "extra": {
  12488. "branch-alias": {
  12489. "dev-master": "3.0.x-dev"
  12490. }
  12491. },
  12492. "autoload": {
  12493. "classmap": [
  12494. "src/"
  12495. ]
  12496. },
  12497. "notification-url": "https://packagist.org/downloads/",
  12498. "license": [
  12499. "BSD-3-Clause"
  12500. ],
  12501. "authors": [
  12502. {
  12503. "name": "Jeff Welch",
  12504. "email": "whatthejeff@gmail.com"
  12505. },
  12506. {
  12507. "name": "Sebastian Bergmann",
  12508. "email": "sebastian@phpunit.de"
  12509. },
  12510. {
  12511. "name": "Adam Harvey",
  12512. "email": "aharvey@php.net"
  12513. }
  12514. ],
  12515. "description": "Provides functionality to recursively process PHP variables",
  12516. "homepage": "http://www.github.com/sebastianbergmann/recursion-context",
  12517. "time": "2017-03-03T06:23:57+00:00"
  12518. },
  12519. {
  12520. "name": "sebastian/resource-operations",
  12521. "version": "1.0.0",
  12522. "source": {
  12523. "type": "git",
  12524. "url": "https://github.com/sebastianbergmann/resource-operations.git",
  12525. "reference": "ce990bb21759f94aeafd30209e8cfcdfa8bc3f52"
  12526. },
  12527. "dist": {
  12528. "type": "zip",
  12529. "url": "https://api.github.com/repos/sebastianbergmann/resource-operations/zipball/ce990bb21759f94aeafd30209e8cfcdfa8bc3f52",
  12530. "reference": "ce990bb21759f94aeafd30209e8cfcdfa8bc3f52",
  12531. "shasum": ""
  12532. },
  12533. "require": {
  12534. "php": ">=5.6.0"
  12535. },
  12536. "type": "library",
  12537. "extra": {
  12538. "branch-alias": {
  12539. "dev-master": "1.0.x-dev"
  12540. }
  12541. },
  12542. "autoload": {
  12543. "classmap": [
  12544. "src/"
  12545. ]
  12546. },
  12547. "notification-url": "https://packagist.org/downloads/",
  12548. "license": [
  12549. "BSD-3-Clause"
  12550. ],
  12551. "authors": [
  12552. {
  12553. "name": "Sebastian Bergmann",
  12554. "email": "sebastian@phpunit.de"
  12555. }
  12556. ],
  12557. "description": "Provides a list of PHP built-in functions that operate on resources",
  12558. "homepage": "https://www.github.com/sebastianbergmann/resource-operations",
  12559. "time": "2015-07-28T20:34:47+00:00"
  12560. },
  12561. {
  12562. "name": "sebastian/version",
  12563. "version": "2.0.1",
  12564. "source": {
  12565. "type": "git",
  12566. "url": "https://github.com/sebastianbergmann/version.git",
  12567. "reference": "99732be0ddb3361e16ad77b68ba41efc8e979019"
  12568. },
  12569. "dist": {
  12570. "type": "zip",
  12571. "url": "https://api.github.com/repos/sebastianbergmann/version/zipball/99732be0ddb3361e16ad77b68ba41efc8e979019",
  12572. "reference": "99732be0ddb3361e16ad77b68ba41efc8e979019",
  12573. "shasum": ""
  12574. },
  12575. "require": {
  12576. "php": ">=5.6"
  12577. },
  12578. "type": "library",
  12579. "extra": {
  12580. "branch-alias": {
  12581. "dev-master": "2.0.x-dev"
  12582. }
  12583. },
  12584. "autoload": {
  12585. "classmap": [
  12586. "src/"
  12587. ]
  12588. },
  12589. "notification-url": "https://packagist.org/downloads/",
  12590. "license": [
  12591. "BSD-3-Clause"
  12592. ],
  12593. "authors": [
  12594. {
  12595. "name": "Sebastian Bergmann",
  12596. "email": "sebastian@phpunit.de",
  12597. "role": "lead"
  12598. }
  12599. ],
  12600. "description": "Library that helps with managing the version number of Git-hosted PHP projects",
  12601. "homepage": "https://github.com/sebastianbergmann/version",
  12602. "time": "2016-10-03T07:35:21+00:00"
  12603. },
  12604. {
  12605. "name": "squizlabs/php_codesniffer",
  12606. "version": "3.4.0",
  12607. "source": {
  12608. "type": "git",
  12609. "url": "https://github.com/squizlabs/PHP_CodeSniffer.git",
  12610. "reference": "379deb987e26c7cd103a7b387aea178baec96e48"
  12611. },
  12612. "dist": {
  12613. "type": "zip",
  12614. "url": "https://api.github.com/repos/squizlabs/PHP_CodeSniffer/zipball/379deb987e26c7cd103a7b387aea178baec96e48",
  12615. "reference": "379deb987e26c7cd103a7b387aea178baec96e48",
  12616. "shasum": ""
  12617. },
  12618. "require": {
  12619. "ext-simplexml": "*",
  12620. "ext-tokenizer": "*",
  12621. "ext-xmlwriter": "*",
  12622. "php": ">=5.4.0"
  12623. },
  12624. "require-dev": {
  12625. "phpunit/phpunit": "^4.0 || ^5.0 || ^6.0 || ^7.0"
  12626. },
  12627. "bin": [
  12628. "bin/phpcs",
  12629. "bin/phpcbf"
  12630. ],
  12631. "type": "library",
  12632. "extra": {
  12633. "branch-alias": {
  12634. "dev-master": "3.x-dev"
  12635. }
  12636. },
  12637. "notification-url": "https://packagist.org/downloads/",
  12638. "license": [
  12639. "BSD-3-Clause"
  12640. ],
  12641. "authors": [
  12642. {
  12643. "name": "Greg Sherwood",
  12644. "role": "lead"
  12645. }
  12646. ],
  12647. "description": "PHP_CodeSniffer tokenizes PHP, JavaScript and CSS files and detects violations of a defined set of coding standards.",
  12648. "homepage": "http://www.squizlabs.com/php-codesniffer",
  12649. "keywords": [
  12650. "phpcs",
  12651. "standards"
  12652. ],
  12653. "time": "2018-12-19T23:57:18+00:00"
  12654. },
  12655. {
  12656. "name": "symfony/browser-kit",
  12657. "version": "v3.4.21",
  12658. "source": {
  12659. "type": "git",
  12660. "url": "https://github.com/symfony/browser-kit.git",
  12661. "reference": "6d98fb221a263c66b1311203fe4eed154035f508"
  12662. },
  12663. "dist": {
  12664. "type": "zip",
  12665. "url": "https://api.github.com/repos/symfony/browser-kit/zipball/6d98fb221a263c66b1311203fe4eed154035f508",
  12666. "reference": "6d98fb221a263c66b1311203fe4eed154035f508",
  12667. "shasum": ""
  12668. },
  12669. "require": {
  12670. "php": "^5.5.9|>=7.0.8",
  12671. "symfony/dom-crawler": "~2.8|~3.0|~4.0"
  12672. },
  12673. "require-dev": {
  12674. "symfony/css-selector": "~2.8|~3.0|~4.0",
  12675. "symfony/process": "~2.8|~3.0|~4.0"
  12676. },
  12677. "suggest": {
  12678. "symfony/process": ""
  12679. },
  12680. "type": "library",
  12681. "extra": {
  12682. "branch-alias": {
  12683. "dev-master": "3.4-dev"
  12684. }
  12685. },
  12686. "autoload": {
  12687. "psr-4": {
  12688. "Symfony\\Component\\BrowserKit\\": ""
  12689. },
  12690. "exclude-from-classmap": [
  12691. "/Tests/"
  12692. ]
  12693. },
  12694. "notification-url": "https://packagist.org/downloads/",
  12695. "license": [
  12696. "MIT"
  12697. ],
  12698. "authors": [
  12699. {
  12700. "name": "Fabien Potencier",
  12701. "email": "fabien@symfony.com"
  12702. },
  12703. {
  12704. "name": "Symfony Community",
  12705. "homepage": "https://symfony.com/contributors"
  12706. }
  12707. ],
  12708. "description": "Symfony BrowserKit Component",
  12709. "homepage": "https://symfony.com",
  12710. "time": "2019-01-01T13:45:19+00:00"
  12711. },
  12712. {
  12713. "name": "symfony/phpunit-bridge",
  12714. "version": "v3.4.21",
  12715. "source": {
  12716. "type": "git",
  12717. "url": "https://github.com/symfony/phpunit-bridge.git",
  12718. "reference": "5dab0d4b2ac99ab22b447b615fdfdc10ec4af3d5"
  12719. },
  12720. "dist": {
  12721. "type": "zip",
  12722. "url": "https://api.github.com/repos/symfony/phpunit-bridge/zipball/5dab0d4b2ac99ab22b447b615fdfdc10ec4af3d5",
  12723. "reference": "5dab0d4b2ac99ab22b447b615fdfdc10ec4af3d5",
  12724. "shasum": ""
  12725. },
  12726. "require": {
  12727. "php": ">=5.3.3"
  12728. },
  12729. "conflict": {
  12730. "phpunit/phpunit": "<4.8.35|<5.4.3,>=5.0"
  12731. },
  12732. "suggest": {
  12733. "ext-zip": "Zip support is required when using bin/simple-phpunit",
  12734. "symfony/debug": "For tracking deprecated interfaces usages at runtime with DebugClassLoader"
  12735. },
  12736. "bin": [
  12737. "bin/simple-phpunit"
  12738. ],
  12739. "type": "symfony-bridge",
  12740. "extra": {
  12741. "branch-alias": {
  12742. "dev-master": "3.4-dev"
  12743. },
  12744. "thanks": {
  12745. "name": "phpunit/phpunit",
  12746. "url": "https://github.com/sebastianbergmann/phpunit"
  12747. }
  12748. },
  12749. "autoload": {
  12750. "files": [
  12751. "bootstrap.php"
  12752. ],
  12753. "psr-4": {
  12754. "Symfony\\Bridge\\PhpUnit\\": ""
  12755. },
  12756. "exclude-from-classmap": [
  12757. "/Tests/"
  12758. ]
  12759. },
  12760. "notification-url": "https://packagist.org/downloads/",
  12761. "license": [
  12762. "MIT"
  12763. ],
  12764. "authors": [
  12765. {
  12766. "name": "Nicolas Grekas",
  12767. "email": "p@tchwork.com"
  12768. },
  12769. {
  12770. "name": "Symfony Community",
  12771. "homepage": "https://symfony.com/contributors"
  12772. }
  12773. ],
  12774. "description": "Symfony PHPUnit Bridge",
  12775. "homepage": "https://symfony.com",
  12776. "time": "2019-01-01T13:45:19+00:00"
  12777. },
  12778. {
  12779. "name": "theseer/tokenizer",
  12780. "version": "1.1.0",
  12781. "source": {
  12782. "type": "git",
  12783. "url": "https://github.com/theseer/tokenizer.git",
  12784. "reference": "cb2f008f3f05af2893a87208fe6a6c4985483f8b"
  12785. },
  12786. "dist": {
  12787. "type": "zip",
  12788. "url": "https://api.github.com/repos/theseer/tokenizer/zipball/cb2f008f3f05af2893a87208fe6a6c4985483f8b",
  12789. "reference": "cb2f008f3f05af2893a87208fe6a6c4985483f8b",
  12790. "shasum": ""
  12791. },
  12792. "require": {
  12793. "ext-dom": "*",
  12794. "ext-tokenizer": "*",
  12795. "ext-xmlwriter": "*",
  12796. "php": "^7.0"
  12797. },
  12798. "type": "library",
  12799. "autoload": {
  12800. "classmap": [
  12801. "src/"
  12802. ]
  12803. },
  12804. "notification-url": "https://packagist.org/downloads/",
  12805. "license": [
  12806. "BSD-3-Clause"
  12807. ],
  12808. "authors": [
  12809. {
  12810. "name": "Arne Blankerts",
  12811. "email": "arne@blankerts.de",
  12812. "role": "Developer"
  12813. }
  12814. ],
  12815. "description": "A small library for converting tokenized PHP source code into XML and potentially other formats",
  12816. "time": "2017-04-07T12:08:54+00:00"
  12817. },
  12818. {
  12819. "name": "webflo/drupal-core-require-dev",
  12820. "version": "8.6.7",
  12821. "source": {
  12822. "type": "git",
  12823. "url": "https://github.com/webflo/drupal-core-require-dev.git",
  12824. "reference": "7a65363ed9d6a0a2030252629f1ed9e76693094e"
  12825. },
  12826. "dist": {
  12827. "type": "zip",
  12828. "url": "https://api.github.com/repos/webflo/drupal-core-require-dev/zipball/7a65363ed9d6a0a2030252629f1ed9e76693094e",
  12829. "reference": "7a65363ed9d6a0a2030252629f1ed9e76693094e",
  12830. "shasum": ""
  12831. },
  12832. "require": {
  12833. "behat/mink": "1.7.x-dev",
  12834. "behat/mink-goutte-driver": "^1.2",
  12835. "behat/mink-selenium2-driver": "1.3.x-dev",
  12836. "drupal/coder": "^8.2.12",
  12837. "drupal/core": "8.6.7",
  12838. "jcalderonzumba/gastonjs": "^1.0.2",
  12839. "jcalderonzumba/mink-phantomjs-driver": "^0.3.1",
  12840. "mikey179/vfsstream": "^1.2",
  12841. "phpspec/prophecy": "^1.7",
  12842. "phpunit/phpunit": "^4.8.35 || ^6.5",
  12843. "symfony/css-selector": "^3.4.0",
  12844. "symfony/debug": "^3.4.0",
  12845. "symfony/phpunit-bridge": "^3.4.3"
  12846. },
  12847. "type": "metapackage",
  12848. "notification-url": "https://packagist.org/downloads/",
  12849. "license": [
  12850. "GPL-2.0-or-later"
  12851. ],
  12852. "description": "require-dev dependencies from drupal/core",
  12853. "time": "2019-01-17T00:01:35+00:00"
  12854. }
  12855. ],
  12856. "aliases": [],
  12857. "minimum-stability": "dev",
  12858. "stability-flags": {
  12859. "drupal/computed_field": 10,
  12860. "drupal/migrate_plus": 20,
  12861. "drupal/migrate_tools": 20,
  12862. "drupal/telephone_formatter": 10,
  12863. "drupal/advanced_text_formatter": 10,
  12864. "drupal/autocomplete_deluxe": 10,
  12865. "drupal/better_exposed_filters": 15,
  12866. "drupal/better_messages": 15,
  12867. "drupal/bulkdelete": 20,
  12868. "drupal/cshs": 20,
  12869. "drupal/content_lock": 15,
  12870. "drupal/context": 10,
  12871. "drupal/domain": 20,
  12872. "drupal/domain_alias": 20,
  12873. "drupal/domain_config": 20,
  12874. "drupal/email_registration": 5,
  12875. "drupal/entity_browser_enhanced": 5,
  12876. "drupal/entity_clone": 15,
  12877. "drupal/filefield_sources": 20,
  12878. "drupal/filter_perms": 20,
  12879. "drupal/inline_entity_form": 5,
  12880. "drupal/login_destination": 20,
  12881. "drupal/maillog": 20,
  12882. "drupal/maxlength": 10,
  12883. "drupal/menu_position": 20,
  12884. "drupal/path_alias_xt": 20,
  12885. "drupal/pathologic": 15,
  12886. "drupal/profile": 5,
  12887. "drupal/smtp": 10,
  12888. "drupal/synonyms": 15,
  12889. "drupal/translation_views": 15,
  12890. "drupal/toolbar_themes": 15,
  12891. "drupal/ultimate_cron": 15,
  12892. "drupal/views_ef_fieldset": 20,
  12893. "drupal/workflow": 20
  12894. },
  12895. "prefer-stable": true,
  12896. "prefer-lowest": false,
  12897. "platform": {
  12898. "php": ">=5.6"
  12899. },
  12900. "platform-dev": []
  12901. }