composer.lock 443 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556155715581559156015611562156315641565156615671568156915701571157215731574157515761577157815791580158115821583158415851586158715881589159015911592159315941595159615971598159916001601160216031604160516061607160816091610161116121613161416151616161716181619162016211622162316241625162616271628162916301631163216331634163516361637163816391640164116421643164416451646164716481649165016511652165316541655165616571658165916601661166216631664166516661667166816691670167116721673167416751676167716781679168016811682168316841685168616871688168916901691169216931694169516961697169816991700170117021703170417051706170717081709171017111712171317141715171617171718171917201721172217231724172517261727172817291730173117321733173417351736173717381739174017411742174317441745174617471748174917501751175217531754175517561757175817591760176117621763176417651766176717681769177017711772177317741775177617771778177917801781178217831784178517861787178817891790179117921793179417951796179717981799180018011802180318041805180618071808180918101811181218131814181518161817181818191820182118221823182418251826182718281829183018311832183318341835183618371838183918401841184218431844184518461847184818491850185118521853185418551856185718581859186018611862186318641865186618671868186918701871187218731874187518761877187818791880188118821883188418851886188718881889189018911892189318941895189618971898189919001901190219031904190519061907190819091910191119121913191419151916191719181919192019211922192319241925192619271928192919301931193219331934193519361937193819391940194119421943194419451946194719481949195019511952195319541955195619571958195919601961196219631964196519661967196819691970197119721973197419751976197719781979198019811982198319841985198619871988198919901991199219931994199519961997199819992000200120022003200420052006200720082009201020112012201320142015201620172018201920202021202220232024202520262027202820292030203120322033203420352036203720382039204020412042204320442045204620472048204920502051205220532054205520562057205820592060206120622063206420652066206720682069207020712072207320742075207620772078207920802081208220832084208520862087208820892090209120922093209420952096209720982099210021012102210321042105210621072108210921102111211221132114211521162117211821192120212121222123212421252126212721282129213021312132213321342135213621372138213921402141214221432144214521462147214821492150215121522153215421552156215721582159216021612162216321642165216621672168216921702171217221732174217521762177217821792180218121822183218421852186218721882189219021912192219321942195219621972198219922002201220222032204220522062207220822092210221122122213221422152216221722182219222022212222222322242225222622272228222922302231223222332234223522362237223822392240224122422243224422452246224722482249225022512252225322542255225622572258225922602261226222632264226522662267226822692270227122722273227422752276227722782279228022812282228322842285228622872288228922902291229222932294229522962297229822992300230123022303230423052306230723082309231023112312231323142315231623172318231923202321232223232324232523262327232823292330233123322333233423352336233723382339234023412342234323442345234623472348234923502351235223532354235523562357235823592360236123622363236423652366236723682369237023712372237323742375237623772378237923802381238223832384238523862387238823892390239123922393239423952396239723982399240024012402240324042405240624072408240924102411241224132414241524162417241824192420242124222423242424252426242724282429243024312432243324342435243624372438243924402441244224432444244524462447244824492450245124522453245424552456245724582459246024612462246324642465246624672468246924702471247224732474247524762477247824792480248124822483248424852486248724882489249024912492249324942495249624972498249925002501250225032504250525062507250825092510251125122513251425152516251725182519252025212522252325242525252625272528252925302531253225332534253525362537253825392540254125422543254425452546254725482549255025512552255325542555255625572558255925602561256225632564256525662567256825692570257125722573257425752576257725782579258025812582258325842585258625872588258925902591259225932594259525962597259825992600260126022603260426052606260726082609261026112612261326142615261626172618261926202621262226232624262526262627262826292630263126322633263426352636263726382639264026412642264326442645264626472648264926502651265226532654265526562657265826592660266126622663266426652666266726682669267026712672267326742675267626772678267926802681268226832684268526862687268826892690269126922693269426952696269726982699270027012702270327042705270627072708270927102711271227132714271527162717271827192720272127222723272427252726272727282729273027312732273327342735273627372738273927402741274227432744274527462747274827492750275127522753275427552756275727582759276027612762276327642765276627672768276927702771277227732774277527762777277827792780278127822783278427852786278727882789279027912792279327942795279627972798279928002801280228032804280528062807280828092810281128122813281428152816281728182819282028212822282328242825282628272828282928302831283228332834283528362837283828392840284128422843284428452846284728482849285028512852285328542855285628572858285928602861286228632864286528662867286828692870287128722873287428752876287728782879288028812882288328842885288628872888288928902891289228932894289528962897289828992900290129022903290429052906290729082909291029112912291329142915291629172918291929202921292229232924292529262927292829292930293129322933293429352936293729382939294029412942294329442945294629472948294929502951295229532954295529562957295829592960296129622963296429652966296729682969297029712972297329742975297629772978297929802981298229832984298529862987298829892990299129922993299429952996299729982999300030013002300330043005300630073008300930103011301230133014301530163017301830193020302130223023302430253026302730283029303030313032303330343035303630373038303930403041304230433044304530463047304830493050305130523053305430553056305730583059306030613062306330643065306630673068306930703071307230733074307530763077307830793080308130823083308430853086308730883089309030913092309330943095309630973098309931003101310231033104310531063107310831093110311131123113311431153116311731183119312031213122312331243125312631273128312931303131313231333134313531363137313831393140314131423143314431453146314731483149315031513152315331543155315631573158315931603161316231633164316531663167316831693170317131723173317431753176317731783179318031813182318331843185318631873188318931903191319231933194319531963197319831993200320132023203320432053206320732083209321032113212321332143215321632173218321932203221322232233224322532263227322832293230323132323233323432353236323732383239324032413242324332443245324632473248324932503251325232533254325532563257325832593260326132623263326432653266326732683269327032713272327332743275327632773278327932803281328232833284328532863287328832893290329132923293329432953296329732983299330033013302330333043305330633073308330933103311331233133314331533163317331833193320332133223323332433253326332733283329333033313332333333343335333633373338333933403341334233433344334533463347334833493350335133523353335433553356335733583359336033613362336333643365336633673368336933703371337233733374337533763377337833793380338133823383338433853386338733883389339033913392339333943395339633973398339934003401340234033404340534063407340834093410341134123413341434153416341734183419342034213422342334243425342634273428342934303431343234333434343534363437343834393440344134423443344434453446344734483449345034513452345334543455345634573458345934603461346234633464346534663467346834693470347134723473347434753476347734783479348034813482348334843485348634873488348934903491349234933494349534963497349834993500350135023503350435053506350735083509351035113512351335143515351635173518351935203521352235233524352535263527352835293530353135323533353435353536353735383539354035413542354335443545354635473548354935503551355235533554355535563557355835593560356135623563356435653566356735683569357035713572357335743575357635773578357935803581358235833584358535863587358835893590359135923593359435953596359735983599360036013602360336043605360636073608360936103611361236133614361536163617361836193620362136223623362436253626362736283629363036313632363336343635363636373638363936403641364236433644364536463647364836493650365136523653365436553656365736583659366036613662366336643665366636673668366936703671367236733674367536763677367836793680368136823683368436853686368736883689369036913692369336943695369636973698369937003701370237033704370537063707370837093710371137123713371437153716371737183719372037213722372337243725372637273728372937303731373237333734373537363737373837393740374137423743374437453746374737483749375037513752375337543755375637573758375937603761376237633764376537663767376837693770377137723773377437753776377737783779378037813782378337843785378637873788378937903791379237933794379537963797379837993800380138023803380438053806380738083809381038113812381338143815381638173818381938203821382238233824382538263827382838293830383138323833383438353836383738383839384038413842384338443845384638473848384938503851385238533854385538563857385838593860386138623863386438653866386738683869387038713872387338743875387638773878387938803881388238833884388538863887388838893890389138923893389438953896389738983899390039013902390339043905390639073908390939103911391239133914391539163917391839193920392139223923392439253926392739283929393039313932393339343935393639373938393939403941394239433944394539463947394839493950395139523953395439553956395739583959396039613962396339643965396639673968396939703971397239733974397539763977397839793980398139823983398439853986398739883989399039913992399339943995399639973998399940004001400240034004400540064007400840094010401140124013401440154016401740184019402040214022402340244025402640274028402940304031403240334034403540364037403840394040404140424043404440454046404740484049405040514052405340544055405640574058405940604061406240634064406540664067406840694070407140724073407440754076407740784079408040814082408340844085408640874088408940904091409240934094409540964097409840994100410141024103410441054106410741084109411041114112411341144115411641174118411941204121412241234124412541264127412841294130413141324133413441354136413741384139414041414142414341444145414641474148414941504151415241534154415541564157415841594160416141624163416441654166416741684169417041714172417341744175417641774178417941804181418241834184418541864187418841894190419141924193419441954196419741984199420042014202420342044205420642074208420942104211421242134214421542164217421842194220422142224223422442254226422742284229423042314232423342344235423642374238423942404241424242434244424542464247424842494250425142524253425442554256425742584259426042614262426342644265426642674268426942704271427242734274427542764277427842794280428142824283428442854286428742884289429042914292429342944295429642974298429943004301430243034304430543064307430843094310431143124313431443154316431743184319432043214322432343244325432643274328432943304331433243334334433543364337433843394340434143424343434443454346434743484349435043514352435343544355435643574358435943604361436243634364436543664367436843694370437143724373437443754376437743784379438043814382438343844385438643874388438943904391439243934394439543964397439843994400440144024403440444054406440744084409441044114412441344144415441644174418441944204421442244234424442544264427442844294430443144324433443444354436443744384439444044414442444344444445444644474448444944504451445244534454445544564457445844594460446144624463446444654466446744684469447044714472447344744475447644774478447944804481448244834484448544864487448844894490449144924493449444954496449744984499450045014502450345044505450645074508450945104511451245134514451545164517451845194520452145224523452445254526452745284529453045314532453345344535453645374538453945404541454245434544454545464547454845494550455145524553455445554556455745584559456045614562456345644565456645674568456945704571457245734574457545764577457845794580458145824583458445854586458745884589459045914592459345944595459645974598459946004601460246034604460546064607460846094610461146124613461446154616461746184619462046214622462346244625462646274628462946304631463246334634463546364637463846394640464146424643464446454646464746484649465046514652465346544655465646574658465946604661466246634664466546664667466846694670467146724673467446754676467746784679468046814682468346844685468646874688468946904691469246934694469546964697469846994700470147024703470447054706470747084709471047114712471347144715471647174718471947204721472247234724472547264727472847294730473147324733473447354736473747384739474047414742474347444745474647474748474947504751475247534754475547564757475847594760476147624763476447654766476747684769477047714772477347744775477647774778477947804781478247834784478547864787478847894790479147924793479447954796479747984799480048014802480348044805480648074808480948104811481248134814481548164817481848194820482148224823482448254826482748284829483048314832483348344835483648374838483948404841484248434844484548464847484848494850485148524853485448554856485748584859486048614862486348644865486648674868486948704871487248734874487548764877487848794880488148824883488448854886488748884889489048914892489348944895489648974898489949004901490249034904490549064907490849094910491149124913491449154916491749184919492049214922492349244925492649274928492949304931493249334934493549364937493849394940494149424943494449454946494749484949495049514952495349544955495649574958495949604961496249634964496549664967496849694970497149724973497449754976497749784979498049814982498349844985498649874988498949904991499249934994499549964997499849995000500150025003500450055006500750085009501050115012501350145015501650175018501950205021502250235024502550265027502850295030503150325033503450355036503750385039504050415042504350445045504650475048504950505051505250535054505550565057505850595060506150625063506450655066506750685069507050715072507350745075507650775078507950805081508250835084508550865087508850895090509150925093509450955096509750985099510051015102510351045105510651075108510951105111511251135114511551165117511851195120512151225123512451255126512751285129513051315132513351345135513651375138513951405141514251435144514551465147514851495150515151525153515451555156515751585159516051615162516351645165516651675168516951705171517251735174517551765177517851795180518151825183518451855186518751885189519051915192519351945195519651975198519952005201520252035204520552065207520852095210521152125213521452155216521752185219522052215222522352245225522652275228522952305231523252335234523552365237523852395240524152425243524452455246524752485249525052515252525352545255525652575258525952605261526252635264526552665267526852695270527152725273527452755276527752785279528052815282528352845285528652875288528952905291529252935294529552965297529852995300530153025303530453055306530753085309531053115312531353145315531653175318531953205321532253235324532553265327532853295330533153325333533453355336533753385339534053415342534353445345534653475348534953505351535253535354535553565357535853595360536153625363536453655366536753685369537053715372537353745375537653775378537953805381538253835384538553865387538853895390539153925393539453955396539753985399540054015402540354045405540654075408540954105411541254135414541554165417541854195420542154225423542454255426542754285429543054315432543354345435543654375438543954405441544254435444544554465447544854495450545154525453545454555456545754585459546054615462546354645465546654675468546954705471547254735474547554765477547854795480548154825483548454855486548754885489549054915492549354945495549654975498549955005501550255035504550555065507550855095510551155125513551455155516551755185519552055215522552355245525552655275528552955305531553255335534553555365537553855395540554155425543554455455546554755485549555055515552555355545555555655575558555955605561556255635564556555665567556855695570557155725573557455755576557755785579558055815582558355845585558655875588558955905591559255935594559555965597559855995600560156025603560456055606560756085609561056115612561356145615561656175618561956205621562256235624562556265627562856295630563156325633563456355636563756385639564056415642564356445645564656475648564956505651565256535654565556565657565856595660566156625663566456655666566756685669567056715672567356745675567656775678567956805681568256835684568556865687568856895690569156925693569456955696569756985699570057015702570357045705570657075708570957105711571257135714571557165717571857195720572157225723572457255726572757285729573057315732573357345735573657375738573957405741574257435744574557465747574857495750575157525753575457555756575757585759576057615762576357645765576657675768576957705771577257735774577557765777577857795780578157825783578457855786578757885789579057915792579357945795579657975798579958005801580258035804580558065807580858095810581158125813581458155816581758185819582058215822582358245825582658275828582958305831583258335834583558365837583858395840584158425843584458455846584758485849585058515852585358545855585658575858585958605861586258635864586558665867586858695870587158725873587458755876587758785879588058815882588358845885588658875888588958905891589258935894589558965897589858995900590159025903590459055906590759085909591059115912591359145915591659175918591959205921592259235924592559265927592859295930593159325933593459355936593759385939594059415942594359445945594659475948594959505951595259535954595559565957595859595960596159625963596459655966596759685969597059715972597359745975597659775978597959805981598259835984598559865987598859895990599159925993599459955996599759985999600060016002600360046005600660076008600960106011601260136014601560166017601860196020602160226023602460256026602760286029603060316032603360346035603660376038603960406041604260436044604560466047604860496050605160526053605460556056605760586059606060616062606360646065606660676068606960706071607260736074607560766077607860796080608160826083608460856086608760886089609060916092609360946095609660976098609961006101610261036104610561066107610861096110611161126113611461156116611761186119612061216122612361246125612661276128612961306131613261336134613561366137613861396140614161426143614461456146614761486149615061516152615361546155615661576158615961606161616261636164616561666167616861696170617161726173617461756176617761786179618061816182618361846185618661876188618961906191619261936194619561966197619861996200620162026203620462056206620762086209621062116212621362146215621662176218621962206221622262236224622562266227622862296230623162326233623462356236623762386239624062416242624362446245624662476248624962506251625262536254625562566257625862596260626162626263626462656266626762686269627062716272627362746275627662776278627962806281628262836284628562866287628862896290629162926293629462956296629762986299630063016302630363046305630663076308630963106311631263136314631563166317631863196320632163226323632463256326632763286329633063316332633363346335633663376338633963406341634263436344634563466347634863496350635163526353635463556356635763586359636063616362636363646365636663676368636963706371637263736374637563766377637863796380638163826383638463856386638763886389639063916392639363946395639663976398639964006401640264036404640564066407640864096410641164126413641464156416641764186419642064216422642364246425642664276428642964306431643264336434643564366437643864396440644164426443644464456446644764486449645064516452645364546455645664576458645964606461646264636464646564666467646864696470647164726473647464756476647764786479648064816482648364846485648664876488648964906491649264936494649564966497649864996500650165026503650465056506650765086509651065116512651365146515651665176518651965206521652265236524652565266527652865296530653165326533653465356536653765386539654065416542654365446545654665476548654965506551655265536554655565566557655865596560656165626563656465656566656765686569657065716572657365746575657665776578657965806581658265836584658565866587658865896590659165926593659465956596659765986599660066016602660366046605660666076608660966106611661266136614661566166617661866196620662166226623662466256626662766286629663066316632663366346635663666376638663966406641664266436644664566466647664866496650665166526653665466556656665766586659666066616662666366646665666666676668666966706671667266736674667566766677667866796680668166826683668466856686668766886689669066916692669366946695669666976698669967006701670267036704670567066707670867096710671167126713671467156716671767186719672067216722672367246725672667276728672967306731673267336734673567366737673867396740674167426743674467456746674767486749675067516752675367546755675667576758675967606761676267636764676567666767676867696770677167726773677467756776677767786779678067816782678367846785678667876788678967906791679267936794679567966797679867996800680168026803680468056806680768086809681068116812681368146815681668176818681968206821682268236824682568266827682868296830683168326833683468356836683768386839684068416842684368446845684668476848684968506851685268536854685568566857685868596860686168626863686468656866686768686869687068716872687368746875687668776878687968806881688268836884688568866887688868896890689168926893689468956896689768986899690069016902690369046905690669076908690969106911691269136914691569166917691869196920692169226923692469256926692769286929693069316932693369346935693669376938693969406941694269436944694569466947694869496950695169526953695469556956695769586959696069616962696369646965696669676968696969706971697269736974697569766977697869796980698169826983698469856986698769886989699069916992699369946995699669976998699970007001700270037004700570067007700870097010701170127013701470157016701770187019702070217022702370247025702670277028702970307031703270337034703570367037703870397040704170427043704470457046704770487049705070517052705370547055705670577058705970607061706270637064706570667067706870697070707170727073707470757076707770787079708070817082708370847085708670877088708970907091709270937094709570967097709870997100710171027103710471057106710771087109711071117112711371147115711671177118711971207121712271237124712571267127712871297130713171327133713471357136713771387139714071417142714371447145714671477148714971507151715271537154715571567157715871597160716171627163716471657166716771687169717071717172717371747175717671777178717971807181718271837184718571867187718871897190719171927193719471957196719771987199720072017202720372047205720672077208720972107211721272137214721572167217721872197220722172227223722472257226722772287229723072317232723372347235723672377238723972407241724272437244724572467247724872497250725172527253725472557256725772587259726072617262726372647265726672677268726972707271727272737274727572767277727872797280728172827283728472857286728772887289729072917292729372947295729672977298729973007301730273037304730573067307730873097310731173127313731473157316731773187319732073217322732373247325732673277328732973307331733273337334733573367337733873397340734173427343734473457346734773487349735073517352735373547355735673577358735973607361736273637364736573667367736873697370737173727373737473757376737773787379738073817382738373847385738673877388738973907391739273937394739573967397739873997400740174027403740474057406740774087409741074117412741374147415741674177418741974207421742274237424742574267427742874297430743174327433743474357436743774387439744074417442744374447445744674477448744974507451745274537454745574567457745874597460746174627463746474657466746774687469747074717472747374747475747674777478747974807481748274837484748574867487748874897490749174927493749474957496749774987499750075017502750375047505750675077508750975107511751275137514751575167517751875197520752175227523752475257526752775287529753075317532753375347535753675377538753975407541754275437544754575467547754875497550755175527553755475557556755775587559756075617562756375647565756675677568756975707571757275737574757575767577757875797580758175827583758475857586758775887589759075917592759375947595759675977598759976007601760276037604760576067607760876097610761176127613761476157616761776187619762076217622762376247625762676277628762976307631763276337634763576367637763876397640764176427643764476457646764776487649765076517652765376547655765676577658765976607661766276637664766576667667766876697670767176727673767476757676767776787679768076817682768376847685768676877688768976907691769276937694769576967697769876997700770177027703770477057706770777087709771077117712771377147715771677177718771977207721772277237724772577267727772877297730773177327733773477357736773777387739774077417742774377447745774677477748774977507751775277537754775577567757775877597760776177627763776477657766776777687769777077717772777377747775777677777778777977807781778277837784778577867787778877897790779177927793779477957796779777987799780078017802780378047805780678077808780978107811781278137814781578167817781878197820782178227823782478257826782778287829783078317832783378347835783678377838783978407841784278437844784578467847784878497850785178527853785478557856785778587859786078617862786378647865786678677868786978707871787278737874787578767877787878797880788178827883788478857886788778887889789078917892789378947895789678977898789979007901790279037904790579067907790879097910791179127913791479157916791779187919792079217922792379247925792679277928792979307931793279337934793579367937793879397940794179427943794479457946794779487949795079517952795379547955795679577958795979607961796279637964796579667967796879697970797179727973797479757976797779787979798079817982798379847985798679877988798979907991799279937994799579967997799879998000800180028003800480058006800780088009801080118012801380148015801680178018801980208021802280238024802580268027802880298030803180328033803480358036803780388039804080418042804380448045804680478048804980508051805280538054805580568057805880598060806180628063806480658066806780688069807080718072807380748075807680778078807980808081808280838084808580868087808880898090809180928093809480958096809780988099810081018102810381048105810681078108810981108111811281138114811581168117811881198120812181228123812481258126812781288129813081318132813381348135813681378138813981408141814281438144814581468147814881498150815181528153815481558156815781588159816081618162816381648165816681678168816981708171817281738174817581768177817881798180818181828183818481858186818781888189819081918192819381948195819681978198819982008201820282038204820582068207820882098210821182128213821482158216821782188219822082218222822382248225822682278228822982308231823282338234823582368237823882398240824182428243824482458246824782488249825082518252825382548255825682578258825982608261826282638264826582668267826882698270827182728273827482758276827782788279828082818282828382848285828682878288828982908291829282938294829582968297829882998300830183028303830483058306830783088309831083118312831383148315831683178318831983208321832283238324832583268327832883298330833183328333833483358336833783388339834083418342834383448345834683478348834983508351835283538354835583568357835883598360836183628363836483658366836783688369837083718372837383748375837683778378837983808381838283838384838583868387838883898390839183928393839483958396839783988399840084018402840384048405840684078408840984108411841284138414841584168417841884198420842184228423842484258426842784288429843084318432843384348435843684378438843984408441844284438444844584468447844884498450845184528453845484558456845784588459846084618462846384648465846684678468846984708471847284738474847584768477847884798480848184828483848484858486848784888489849084918492849384948495849684978498849985008501850285038504850585068507850885098510851185128513851485158516851785188519852085218522852385248525852685278528852985308531853285338534853585368537853885398540854185428543854485458546854785488549855085518552855385548555855685578558855985608561856285638564856585668567856885698570857185728573857485758576857785788579858085818582858385848585858685878588858985908591859285938594859585968597859885998600860186028603860486058606860786088609861086118612861386148615861686178618861986208621862286238624862586268627862886298630863186328633863486358636863786388639864086418642864386448645864686478648864986508651865286538654865586568657865886598660866186628663866486658666866786688669867086718672867386748675867686778678867986808681868286838684868586868687868886898690869186928693869486958696869786988699870087018702870387048705870687078708870987108711871287138714871587168717871887198720872187228723872487258726872787288729873087318732873387348735873687378738873987408741874287438744874587468747874887498750875187528753875487558756875787588759876087618762876387648765876687678768876987708771877287738774877587768777877887798780878187828783878487858786878787888789879087918792879387948795879687978798879988008801880288038804880588068807880888098810881188128813881488158816881788188819882088218822882388248825882688278828882988308831883288338834883588368837883888398840884188428843884488458846884788488849885088518852885388548855885688578858885988608861886288638864886588668867886888698870887188728873887488758876887788788879888088818882888388848885888688878888888988908891889288938894889588968897889888998900890189028903890489058906890789088909891089118912891389148915891689178918891989208921892289238924892589268927892889298930893189328933893489358936893789388939894089418942894389448945894689478948894989508951895289538954895589568957895889598960896189628963896489658966896789688969897089718972897389748975897689778978897989808981898289838984898589868987898889898990899189928993899489958996899789988999900090019002900390049005900690079008900990109011901290139014901590169017901890199020902190229023902490259026902790289029903090319032903390349035903690379038903990409041904290439044904590469047904890499050905190529053905490559056905790589059906090619062906390649065906690679068906990709071907290739074907590769077907890799080908190829083908490859086908790889089909090919092909390949095909690979098909991009101910291039104910591069107910891099110911191129113911491159116911791189119912091219122912391249125912691279128912991309131913291339134913591369137913891399140914191429143914491459146914791489149915091519152915391549155915691579158915991609161916291639164916591669167916891699170917191729173917491759176917791789179918091819182918391849185918691879188918991909191919291939194919591969197919891999200920192029203920492059206920792089209921092119212921392149215921692179218921992209221922292239224922592269227922892299230923192329233923492359236923792389239924092419242924392449245924692479248924992509251925292539254925592569257925892599260926192629263926492659266926792689269927092719272927392749275927692779278927992809281928292839284928592869287928892899290929192929293929492959296929792989299930093019302930393049305930693079308930993109311931293139314931593169317931893199320932193229323932493259326932793289329933093319332933393349335933693379338933993409341934293439344934593469347934893499350935193529353935493559356935793589359936093619362936393649365936693679368936993709371937293739374937593769377937893799380938193829383938493859386938793889389939093919392939393949395939693979398939994009401940294039404940594069407940894099410941194129413941494159416941794189419942094219422942394249425942694279428942994309431943294339434943594369437943894399440944194429443944494459446944794489449945094519452945394549455945694579458945994609461946294639464946594669467946894699470947194729473947494759476947794789479948094819482948394849485948694879488948994909491949294939494949594969497949894999500950195029503950495059506950795089509951095119512951395149515951695179518951995209521952295239524952595269527952895299530953195329533953495359536953795389539954095419542954395449545954695479548954995509551955295539554955595569557955895599560956195629563956495659566956795689569957095719572957395749575957695779578957995809581958295839584958595869587958895899590959195929593959495959596959795989599960096019602960396049605960696079608960996109611961296139614961596169617961896199620962196229623962496259626962796289629963096319632963396349635963696379638963996409641964296439644964596469647964896499650965196529653965496559656965796589659966096619662966396649665966696679668966996709671967296739674967596769677967896799680968196829683968496859686968796889689969096919692969396949695969696979698969997009701970297039704970597069707970897099710971197129713971497159716971797189719972097219722972397249725972697279728972997309731973297339734973597369737973897399740974197429743974497459746974797489749975097519752975397549755975697579758975997609761976297639764976597669767976897699770977197729773977497759776977797789779978097819782978397849785978697879788978997909791979297939794979597969797979897999800980198029803980498059806980798089809981098119812981398149815981698179818981998209821982298239824982598269827982898299830983198329833983498359836983798389839984098419842984398449845984698479848984998509851985298539854985598569857985898599860986198629863986498659866986798689869987098719872987398749875987698779878987998809881988298839884988598869887988898899890989198929893989498959896989798989899990099019902990399049905990699079908990999109911991299139914991599169917991899199920992199229923992499259926992799289929993099319932993399349935993699379938993999409941994299439944994599469947994899499950995199529953995499559956995799589959996099619962996399649965996699679968996999709971997299739974997599769977997899799980998199829983998499859986998799889989999099919992999399949995999699979998999910000100011000210003100041000510006100071000810009100101001110012100131001410015100161001710018100191002010021100221002310024100251002610027100281002910030100311003210033100341003510036100371003810039100401004110042100431004410045100461004710048100491005010051100521005310054100551005610057100581005910060100611006210063100641006510066100671006810069100701007110072100731007410075100761007710078100791008010081100821008310084100851008610087100881008910090100911009210093100941009510096100971009810099101001010110102101031010410105101061010710108101091011010111101121011310114101151011610117101181011910120101211012210123101241012510126101271012810129101301013110132101331013410135101361013710138101391014010141101421014310144101451014610147101481014910150101511015210153101541015510156101571015810159101601016110162101631016410165101661016710168101691017010171101721017310174101751017610177101781017910180101811018210183101841018510186101871018810189101901019110192101931019410195101961019710198101991020010201102021020310204102051020610207102081020910210102111021210213102141021510216102171021810219102201022110222102231022410225102261022710228102291023010231102321023310234102351023610237102381023910240102411024210243102441024510246102471024810249102501025110252102531025410255102561025710258102591026010261102621026310264102651026610267102681026910270102711027210273102741027510276102771027810279102801028110282102831028410285102861028710288102891029010291102921029310294102951029610297102981029910300103011030210303103041030510306103071030810309103101031110312103131031410315103161031710318103191032010321103221032310324103251032610327103281032910330103311033210333103341033510336103371033810339103401034110342103431034410345103461034710348103491035010351103521035310354103551035610357103581035910360103611036210363103641036510366103671036810369103701037110372103731037410375103761037710378103791038010381103821038310384103851038610387103881038910390103911039210393103941039510396103971039810399104001040110402104031040410405104061040710408104091041010411104121041310414104151041610417104181041910420104211042210423104241042510426104271042810429104301043110432104331043410435104361043710438104391044010441104421044310444104451044610447104481044910450104511045210453104541045510456104571045810459104601046110462104631046410465104661046710468104691047010471104721047310474104751047610477104781047910480104811048210483104841048510486104871048810489104901049110492104931049410495104961049710498104991050010501105021050310504105051050610507105081050910510105111051210513105141051510516105171051810519105201052110522105231052410525105261052710528105291053010531105321053310534105351053610537105381053910540105411054210543105441054510546105471054810549105501055110552105531055410555105561055710558105591056010561105621056310564105651056610567105681056910570105711057210573105741057510576105771057810579105801058110582105831058410585105861058710588105891059010591105921059310594105951059610597105981059910600106011060210603106041060510606106071060810609106101061110612106131061410615106161061710618106191062010621106221062310624106251062610627106281062910630106311063210633106341063510636106371063810639106401064110642106431064410645106461064710648106491065010651106521065310654106551065610657106581065910660106611066210663106641066510666106671066810669106701067110672106731067410675106761067710678106791068010681106821068310684106851068610687106881068910690106911069210693106941069510696106971069810699107001070110702107031070410705107061070710708107091071010711107121071310714107151071610717107181071910720107211072210723107241072510726107271072810729107301073110732107331073410735107361073710738107391074010741107421074310744107451074610747107481074910750107511075210753107541075510756107571075810759107601076110762107631076410765107661076710768107691077010771107721077310774107751077610777107781077910780107811078210783107841078510786107871078810789107901079110792107931079410795107961079710798107991080010801108021080310804108051080610807108081080910810108111081210813108141081510816108171081810819108201082110822108231082410825108261082710828108291083010831108321083310834108351083610837108381083910840108411084210843108441084510846108471084810849108501085110852108531085410855108561085710858108591086010861108621086310864108651086610867108681086910870108711087210873108741087510876108771087810879108801088110882108831088410885108861088710888108891089010891108921089310894108951089610897108981089910900109011090210903109041090510906109071090810909109101091110912109131091410915109161091710918109191092010921109221092310924109251092610927109281092910930109311093210933109341093510936109371093810939109401094110942109431094410945109461094710948109491095010951109521095310954109551095610957109581095910960109611096210963109641096510966109671096810969109701097110972109731097410975109761097710978109791098010981109821098310984109851098610987109881098910990109911099210993109941099510996109971099810999110001100111002110031100411005110061100711008110091101011011110121101311014110151101611017110181101911020110211102211023110241102511026110271102811029110301103111032110331103411035110361103711038110391104011041110421104311044110451104611047110481104911050110511105211053110541105511056110571105811059110601106111062110631106411065110661106711068110691107011071110721107311074110751107611077110781107911080110811108211083110841108511086110871108811089110901109111092110931109411095110961109711098110991110011101111021110311104111051110611107111081110911110111111111211113111141111511116111171111811119111201112111122111231112411125111261112711128111291113011131111321113311134111351113611137111381113911140111411114211143111441114511146111471114811149111501115111152111531115411155111561115711158111591116011161111621116311164111651116611167111681116911170111711117211173111741117511176111771117811179111801118111182111831118411185111861118711188111891119011191111921119311194111951119611197111981119911200112011120211203112041120511206112071120811209112101121111212112131121411215112161121711218112191122011221112221122311224112251122611227112281122911230112311123211233112341123511236112371123811239112401124111242112431124411245112461124711248112491125011251112521125311254112551125611257112581125911260112611126211263112641126511266112671126811269112701127111272112731127411275112761127711278112791128011281112821128311284112851128611287112881128911290112911129211293112941129511296112971129811299113001130111302113031130411305113061130711308113091131011311113121131311314113151131611317113181131911320113211132211323113241132511326113271132811329113301133111332113331133411335113361133711338113391134011341113421134311344113451134611347113481134911350113511135211353113541135511356113571135811359113601136111362113631136411365113661136711368113691137011371113721137311374113751137611377113781137911380113811138211383113841138511386113871138811389113901139111392113931139411395113961139711398113991140011401114021140311404114051140611407114081140911410114111141211413114141141511416114171141811419114201142111422114231142411425114261142711428114291143011431114321143311434114351143611437114381143911440114411144211443114441144511446114471144811449114501145111452114531145411455114561145711458114591146011461114621146311464114651146611467114681146911470114711147211473114741147511476114771147811479114801148111482114831148411485114861148711488114891149011491114921149311494114951149611497114981149911500115011150211503115041150511506115071150811509115101151111512115131151411515115161151711518115191152011521115221152311524115251152611527115281152911530115311153211533115341153511536115371153811539115401154111542115431154411545115461154711548115491155011551115521155311554115551155611557115581155911560115611156211563115641156511566115671156811569115701157111572115731157411575115761157711578115791158011581115821158311584115851158611587115881158911590115911159211593115941159511596115971159811599116001160111602116031160411605116061160711608116091161011611116121161311614116151161611617116181161911620116211162211623116241162511626116271162811629116301163111632116331163411635116361163711638116391164011641116421164311644116451164611647116481164911650116511165211653116541165511656116571165811659116601166111662116631166411665116661166711668116691167011671116721167311674116751167611677116781167911680116811168211683116841168511686116871168811689116901169111692116931169411695116961169711698116991170011701117021170311704117051170611707117081170911710117111171211713117141171511716117171171811719117201172111722117231172411725117261172711728117291173011731117321173311734117351173611737117381173911740117411174211743117441174511746117471174811749117501175111752117531175411755117561175711758117591176011761117621176311764117651176611767117681176911770117711177211773117741177511776117771177811779117801178111782117831178411785117861178711788117891179011791117921179311794117951179611797117981179911800118011180211803118041180511806118071180811809118101181111812118131181411815118161181711818118191182011821118221182311824118251182611827118281182911830118311183211833118341183511836118371183811839118401184111842118431184411845118461184711848118491185011851118521185311854118551185611857118581185911860118611186211863118641186511866118671186811869118701187111872118731187411875118761187711878118791188011881118821188311884118851188611887118881188911890118911189211893118941189511896118971189811899119001190111902119031190411905119061190711908119091191011911119121191311914119151191611917119181191911920119211192211923119241192511926119271192811929119301193111932119331193411935119361193711938119391194011941119421194311944119451194611947119481194911950119511195211953119541195511956119571195811959119601196111962119631196411965119661196711968119691197011971119721197311974119751197611977119781197911980119811198211983119841198511986119871198811989119901199111992119931199411995119961199711998119991200012001120021200312004120051200612007120081200912010120111201212013120141201512016120171201812019120201202112022120231202412025120261202712028120291203012031120321203312034120351203612037120381203912040120411204212043120441204512046120471204812049120501205112052120531205412055120561205712058120591206012061120621206312064120651206612067120681206912070120711207212073120741207512076120771207812079120801208112082120831208412085120861208712088120891209012091120921209312094120951209612097120981209912100121011210212103121041210512106121071210812109121101211112112121131211412115121161211712118121191212012121121221212312124121251212612127121281212912130121311213212133121341213512136121371213812139121401214112142121431214412145121461214712148121491215012151121521215312154121551215612157121581215912160121611216212163121641216512166121671216812169121701217112172121731217412175121761217712178121791218012181121821218312184121851218612187121881218912190121911219212193121941219512196121971219812199122001220112202122031220412205122061220712208122091221012211122121221312214122151221612217122181221912220122211222212223122241222512226122271222812229122301223112232122331223412235122361223712238122391224012241122421224312244122451224612247122481224912250122511225212253122541225512256122571225812259122601226112262122631226412265122661226712268122691227012271122721227312274122751227612277122781227912280122811228212283122841228512286122871228812289122901229112292122931229412295122961229712298122991230012301123021230312304123051230612307123081230912310123111231212313123141231512316123171231812319123201232112322123231232412325123261232712328123291233012331123321233312334123351233612337123381233912340123411234212343123441234512346123471234812349123501235112352123531235412355123561235712358123591236012361123621236312364123651236612367123681236912370123711237212373123741237512376123771237812379123801238112382123831238412385123861238712388123891239012391123921239312394123951239612397123981239912400124011240212403124041240512406124071240812409124101241112412124131241412415124161241712418124191242012421124221242312424124251242612427124281242912430124311243212433124341243512436124371243812439124401244112442124431244412445124461244712448124491245012451124521245312454
  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": "e5c93550d2c4086fc08a14ecabccb564",
  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": "components/highlightjs",
  231. "version": "9.7.0",
  232. "dist": {
  233. "type": "zip",
  234. "url": "https://github.com/components/highlightjs/archive/9.7.0.zip",
  235. "reference": null,
  236. "shasum": null
  237. },
  238. "type": "drupal-library"
  239. },
  240. {
  241. "name": "composer/installers",
  242. "version": "v1.6.0",
  243. "source": {
  244. "type": "git",
  245. "url": "https://github.com/composer/installers.git",
  246. "reference": "cfcca6b1b60bc4974324efb5783c13dca6932b5b"
  247. },
  248. "dist": {
  249. "type": "zip",
  250. "url": "https://api.github.com/repos/composer/installers/zipball/cfcca6b1b60bc4974324efb5783c13dca6932b5b",
  251. "reference": "cfcca6b1b60bc4974324efb5783c13dca6932b5b",
  252. "shasum": ""
  253. },
  254. "require": {
  255. "composer-plugin-api": "^1.0"
  256. },
  257. "replace": {
  258. "roundcube/plugin-installer": "*",
  259. "shama/baton": "*"
  260. },
  261. "require-dev": {
  262. "composer/composer": "1.0.*@dev",
  263. "phpunit/phpunit": "^4.8.36"
  264. },
  265. "type": "composer-plugin",
  266. "extra": {
  267. "class": "Composer\\Installers\\Plugin",
  268. "branch-alias": {
  269. "dev-master": "1.0-dev"
  270. }
  271. },
  272. "autoload": {
  273. "psr-4": {
  274. "Composer\\Installers\\": "src/Composer/Installers"
  275. }
  276. },
  277. "notification-url": "https://packagist.org/downloads/",
  278. "license": [
  279. "MIT"
  280. ],
  281. "authors": [
  282. {
  283. "name": "Kyle Robinson Young",
  284. "email": "kyle@dontkry.com",
  285. "homepage": "https://github.com/shama"
  286. }
  287. ],
  288. "description": "A multi-framework Composer library installer",
  289. "homepage": "https://composer.github.io/installers/",
  290. "keywords": [
  291. "Craft",
  292. "Dolibarr",
  293. "Eliasis",
  294. "Hurad",
  295. "ImageCMS",
  296. "Kanboard",
  297. "Lan Management System",
  298. "MODX Evo",
  299. "Mautic",
  300. "Maya",
  301. "OXID",
  302. "Plentymarkets",
  303. "Porto",
  304. "RadPHP",
  305. "SMF",
  306. "Thelia",
  307. "WolfCMS",
  308. "agl",
  309. "aimeos",
  310. "annotatecms",
  311. "attogram",
  312. "bitrix",
  313. "cakephp",
  314. "chef",
  315. "cockpit",
  316. "codeigniter",
  317. "concrete5",
  318. "croogo",
  319. "dokuwiki",
  320. "drupal",
  321. "eZ Platform",
  322. "elgg",
  323. "expressionengine",
  324. "fuelphp",
  325. "grav",
  326. "installer",
  327. "itop",
  328. "joomla",
  329. "kohana",
  330. "laravel",
  331. "lavalite",
  332. "lithium",
  333. "magento",
  334. "majima",
  335. "mako",
  336. "mediawiki",
  337. "modulework",
  338. "modx",
  339. "moodle",
  340. "osclass",
  341. "phpbb",
  342. "piwik",
  343. "ppi",
  344. "puppet",
  345. "pxcms",
  346. "reindex",
  347. "roundcube",
  348. "shopware",
  349. "silverstripe",
  350. "sydes",
  351. "symfony",
  352. "typo3",
  353. "wordpress",
  354. "yawik",
  355. "zend",
  356. "zikula"
  357. ],
  358. "time": "2018-08-27T06:10:37+00:00"
  359. },
  360. {
  361. "name": "composer/semver",
  362. "version": "1.4.2",
  363. "source": {
  364. "type": "git",
  365. "url": "https://github.com/composer/semver.git",
  366. "reference": "c7cb9a2095a074d131b65a8a0cd294479d785573"
  367. },
  368. "dist": {
  369. "type": "zip",
  370. "url": "https://api.github.com/repos/composer/semver/zipball/c7cb9a2095a074d131b65a8a0cd294479d785573",
  371. "reference": "c7cb9a2095a074d131b65a8a0cd294479d785573",
  372. "shasum": ""
  373. },
  374. "require": {
  375. "php": "^5.3.2 || ^7.0"
  376. },
  377. "require-dev": {
  378. "phpunit/phpunit": "^4.5 || ^5.0.5",
  379. "phpunit/phpunit-mock-objects": "2.3.0 || ^3.0"
  380. },
  381. "type": "library",
  382. "extra": {
  383. "branch-alias": {
  384. "dev-master": "1.x-dev"
  385. }
  386. },
  387. "autoload": {
  388. "psr-4": {
  389. "Composer\\Semver\\": "src"
  390. }
  391. },
  392. "notification-url": "https://packagist.org/downloads/",
  393. "license": [
  394. "MIT"
  395. ],
  396. "authors": [
  397. {
  398. "name": "Nils Adermann",
  399. "email": "naderman@naderman.de",
  400. "homepage": "http://www.naderman.de"
  401. },
  402. {
  403. "name": "Jordi Boggiano",
  404. "email": "j.boggiano@seld.be",
  405. "homepage": "http://seld.be"
  406. },
  407. {
  408. "name": "Rob Bast",
  409. "email": "rob.bast@gmail.com",
  410. "homepage": "http://robbast.nl"
  411. }
  412. ],
  413. "description": "Semver library that offers utilities, version constraint parsing and validation.",
  414. "keywords": [
  415. "semantic",
  416. "semver",
  417. "validation",
  418. "versioning"
  419. ],
  420. "time": "2016-08-30T16:08:34+00:00"
  421. },
  422. {
  423. "name": "consolidation/annotated-command",
  424. "version": "2.9.1",
  425. "source": {
  426. "type": "git",
  427. "url": "https://github.com/consolidation/annotated-command.git",
  428. "reference": "4bdbb8fa149e1cc1511bd77b0bc4729fd66bccac"
  429. },
  430. "dist": {
  431. "type": "zip",
  432. "url": "https://api.github.com/repos/consolidation/annotated-command/zipball/4bdbb8fa149e1cc1511bd77b0bc4729fd66bccac",
  433. "reference": "4bdbb8fa149e1cc1511bd77b0bc4729fd66bccac",
  434. "shasum": ""
  435. },
  436. "require": {
  437. "consolidation/output-formatters": "^3.1.12",
  438. "php": ">=5.4.0",
  439. "psr/log": "^1",
  440. "symfony/console": "^2.8|^3|^4",
  441. "symfony/event-dispatcher": "^2.5|^3|^4",
  442. "symfony/finder": "^2.5|^3|^4"
  443. },
  444. "require-dev": {
  445. "g1a/composer-test-scenarios": "^2",
  446. "phpunit/phpunit": "^6",
  447. "satooshi/php-coveralls": "^2",
  448. "squizlabs/php_codesniffer": "^2.7"
  449. },
  450. "type": "library",
  451. "extra": {
  452. "branch-alias": {
  453. "dev-master": "2.x-dev"
  454. }
  455. },
  456. "autoload": {
  457. "psr-4": {
  458. "Consolidation\\AnnotatedCommand\\": "src"
  459. }
  460. },
  461. "notification-url": "https://packagist.org/downloads/",
  462. "license": [
  463. "MIT"
  464. ],
  465. "authors": [
  466. {
  467. "name": "Greg Anderson",
  468. "email": "greg.1.anderson@greenknowe.org"
  469. }
  470. ],
  471. "description": "Initialize Symfony Console commands from annotated command class methods.",
  472. "time": "2018-09-19T17:47:18+00:00"
  473. },
  474. {
  475. "name": "consolidation/config",
  476. "version": "1.1.1",
  477. "source": {
  478. "type": "git",
  479. "url": "https://github.com/consolidation/config.git",
  480. "reference": "925231dfff32f05b787e1fddb265e789b939cf4c"
  481. },
  482. "dist": {
  483. "type": "zip",
  484. "url": "https://api.github.com/repos/consolidation/config/zipball/925231dfff32f05b787e1fddb265e789b939cf4c",
  485. "reference": "925231dfff32f05b787e1fddb265e789b939cf4c",
  486. "shasum": ""
  487. },
  488. "require": {
  489. "dflydev/dot-access-data": "^1.1.0",
  490. "grasmash/expander": "^1",
  491. "php": ">=5.4.0"
  492. },
  493. "require-dev": {
  494. "g1a/composer-test-scenarios": "^1",
  495. "phpunit/phpunit": "^5",
  496. "satooshi/php-coveralls": "^1.0",
  497. "squizlabs/php_codesniffer": "2.*",
  498. "symfony/console": "^2.5|^3|^4",
  499. "symfony/yaml": "^2.8.11|^3|^4"
  500. },
  501. "suggest": {
  502. "symfony/yaml": "Required to use Consolidation\\Config\\Loader\\YamlConfigLoader"
  503. },
  504. "type": "library",
  505. "extra": {
  506. "branch-alias": {
  507. "dev-master": "1.x-dev"
  508. }
  509. },
  510. "autoload": {
  511. "psr-4": {
  512. "Consolidation\\Config\\": "src"
  513. }
  514. },
  515. "notification-url": "https://packagist.org/downloads/",
  516. "license": [
  517. "MIT"
  518. ],
  519. "authors": [
  520. {
  521. "name": "Greg Anderson",
  522. "email": "greg.1.anderson@greenknowe.org"
  523. }
  524. ],
  525. "description": "Provide configuration services for a commandline tool.",
  526. "time": "2018-10-24T17:55:35+00:00"
  527. },
  528. {
  529. "name": "consolidation/log",
  530. "version": "1.0.6",
  531. "source": {
  532. "type": "git",
  533. "url": "https://github.com/consolidation/log.git",
  534. "reference": "dfd8189a771fe047bf3cd669111b2de5f1c79395"
  535. },
  536. "dist": {
  537. "type": "zip",
  538. "url": "https://api.github.com/repos/consolidation/log/zipball/dfd8189a771fe047bf3cd669111b2de5f1c79395",
  539. "reference": "dfd8189a771fe047bf3cd669111b2de5f1c79395",
  540. "shasum": ""
  541. },
  542. "require": {
  543. "php": ">=5.5.0",
  544. "psr/log": "~1.0",
  545. "symfony/console": "^2.8|^3|^4"
  546. },
  547. "require-dev": {
  548. "g1a/composer-test-scenarios": "^1",
  549. "phpunit/phpunit": "4.*",
  550. "satooshi/php-coveralls": "^2",
  551. "squizlabs/php_codesniffer": "2.*"
  552. },
  553. "type": "library",
  554. "extra": {
  555. "branch-alias": {
  556. "dev-master": "1.x-dev"
  557. }
  558. },
  559. "autoload": {
  560. "psr-4": {
  561. "Consolidation\\Log\\": "src"
  562. }
  563. },
  564. "notification-url": "https://packagist.org/downloads/",
  565. "license": [
  566. "MIT"
  567. ],
  568. "authors": [
  569. {
  570. "name": "Greg Anderson",
  571. "email": "greg.1.anderson@greenknowe.org"
  572. }
  573. ],
  574. "description": "Improved Psr-3 / Psr\\Log logger based on Symfony Console components.",
  575. "time": "2018-05-25T18:14:39+00:00"
  576. },
  577. {
  578. "name": "consolidation/output-formatters",
  579. "version": "3.4.0",
  580. "source": {
  581. "type": "git",
  582. "url": "https://github.com/consolidation/output-formatters.git",
  583. "reference": "a942680232094c4a5b21c0b7e54c20cce623ae19"
  584. },
  585. "dist": {
  586. "type": "zip",
  587. "url": "https://api.github.com/repos/consolidation/output-formatters/zipball/a942680232094c4a5b21c0b7e54c20cce623ae19",
  588. "reference": "a942680232094c4a5b21c0b7e54c20cce623ae19",
  589. "shasum": ""
  590. },
  591. "require": {
  592. "dflydev/dot-access-data": "^1.1.0",
  593. "php": ">=5.4.0",
  594. "symfony/console": "^2.8|^3|^4",
  595. "symfony/finder": "^2.5|^3|^4"
  596. },
  597. "require-dev": {
  598. "g1a/composer-test-scenarios": "^2",
  599. "phpunit/phpunit": "^5.7.27",
  600. "satooshi/php-coveralls": "^2",
  601. "squizlabs/php_codesniffer": "^2.7",
  602. "symfony/console": "3.2.3",
  603. "symfony/var-dumper": "^2.8|^3|^4",
  604. "victorjonsson/markdowndocs": "^1.3"
  605. },
  606. "suggest": {
  607. "symfony/var-dumper": "For using the var_dump formatter"
  608. },
  609. "type": "library",
  610. "extra": {
  611. "branch-alias": {
  612. "dev-master": "3.x-dev"
  613. }
  614. },
  615. "autoload": {
  616. "psr-4": {
  617. "Consolidation\\OutputFormatters\\": "src"
  618. }
  619. },
  620. "notification-url": "https://packagist.org/downloads/",
  621. "license": [
  622. "MIT"
  623. ],
  624. "authors": [
  625. {
  626. "name": "Greg Anderson",
  627. "email": "greg.1.anderson@greenknowe.org"
  628. }
  629. ],
  630. "description": "Format text by applying transformations provided by plug-in formatters.",
  631. "time": "2018-10-19T22:35:38+00:00"
  632. },
  633. {
  634. "name": "consolidation/robo",
  635. "version": "1.3.1",
  636. "source": {
  637. "type": "git",
  638. "url": "https://github.com/consolidation/Robo.git",
  639. "reference": "31f2d2562c4e1dcde70f2659eefd59aa9c7f5b2d"
  640. },
  641. "dist": {
  642. "type": "zip",
  643. "url": "https://api.github.com/repos/consolidation/Robo/zipball/31f2d2562c4e1dcde70f2659eefd59aa9c7f5b2d",
  644. "reference": "31f2d2562c4e1dcde70f2659eefd59aa9c7f5b2d",
  645. "shasum": ""
  646. },
  647. "require": {
  648. "consolidation/annotated-command": "^2.8.2",
  649. "consolidation/config": "^1.0.10",
  650. "consolidation/log": "~1",
  651. "consolidation/output-formatters": "^3.1.13",
  652. "consolidation/self-update": "^1",
  653. "g1a/composer-test-scenarios": "^2",
  654. "grasmash/yaml-expander": "^1.3",
  655. "league/container": "^2.2",
  656. "php": ">=5.5.0",
  657. "symfony/console": "^2.8|^3|^4",
  658. "symfony/event-dispatcher": "^2.5|^3|^4",
  659. "symfony/filesystem": "^2.5|^3|^4",
  660. "symfony/finder": "^2.5|^3|^4",
  661. "symfony/process": "^2.5|^3|^4"
  662. },
  663. "replace": {
  664. "codegyre/robo": "< 1.0"
  665. },
  666. "require-dev": {
  667. "codeception/aspect-mock": "^1|^2.1.1",
  668. "codeception/base": "^2.3.7",
  669. "codeception/verify": "^0.3.2",
  670. "goaop/framework": "~2.1.2",
  671. "goaop/parser-reflection": "^1.1.0",
  672. "natxet/cssmin": "3.0.4",
  673. "nikic/php-parser": "^3.1.5",
  674. "patchwork/jsqueeze": "~2",
  675. "pear/archive_tar": "^1.4.2",
  676. "phpunit/php-code-coverage": "~2|~4",
  677. "satooshi/php-coveralls": "^2",
  678. "squizlabs/php_codesniffer": "^2.8"
  679. },
  680. "suggest": {
  681. "henrikbjorn/lurker": "For monitoring filesystem changes in taskWatch",
  682. "natxet/CssMin": "For minifying CSS files in taskMinify",
  683. "patchwork/jsqueeze": "For minifying JS files in taskMinify",
  684. "pear/archive_tar": "Allows tar archives to be created and extracted in taskPack and taskExtract, respectively."
  685. },
  686. "bin": [
  687. "robo"
  688. ],
  689. "type": "library",
  690. "extra": {
  691. "branch-alias": {
  692. "dev-master": "1.x-dev",
  693. "dev-state": "1.x-dev"
  694. }
  695. },
  696. "autoload": {
  697. "psr-4": {
  698. "Robo\\": "src"
  699. }
  700. },
  701. "notification-url": "https://packagist.org/downloads/",
  702. "license": [
  703. "MIT"
  704. ],
  705. "authors": [
  706. {
  707. "name": "Davert",
  708. "email": "davert.php@resend.cc"
  709. }
  710. ],
  711. "description": "Modern task runner",
  712. "time": "2018-08-17T18:44:18+00:00"
  713. },
  714. {
  715. "name": "consolidation/self-update",
  716. "version": "1.1.5",
  717. "source": {
  718. "type": "git",
  719. "url": "https://github.com/consolidation/self-update.git",
  720. "reference": "a1c273b14ce334789825a09d06d4c87c0a02ad54"
  721. },
  722. "dist": {
  723. "type": "zip",
  724. "url": "https://api.github.com/repos/consolidation/self-update/zipball/a1c273b14ce334789825a09d06d4c87c0a02ad54",
  725. "reference": "a1c273b14ce334789825a09d06d4c87c0a02ad54",
  726. "shasum": ""
  727. },
  728. "require": {
  729. "php": ">=5.5.0",
  730. "symfony/console": "^2.8|^3|^4",
  731. "symfony/filesystem": "^2.5|^3|^4"
  732. },
  733. "bin": [
  734. "scripts/release"
  735. ],
  736. "type": "library",
  737. "extra": {
  738. "branch-alias": {
  739. "dev-master": "1.x-dev"
  740. }
  741. },
  742. "autoload": {
  743. "psr-4": {
  744. "SelfUpdate\\": "src"
  745. }
  746. },
  747. "notification-url": "https://packagist.org/downloads/",
  748. "license": [
  749. "MIT"
  750. ],
  751. "authors": [
  752. {
  753. "name": "Greg Anderson",
  754. "email": "greg.1.anderson@greenknowe.org"
  755. },
  756. {
  757. "name": "Alexander Menk",
  758. "email": "menk@mestrona.net"
  759. }
  760. ],
  761. "description": "Provides a self:update command for Symfony Console applications.",
  762. "time": "2018-10-28T01:52:03+00:00"
  763. },
  764. {
  765. "name": "consolidation/site-alias",
  766. "version": "1.1.9",
  767. "source": {
  768. "type": "git",
  769. "url": "https://github.com/consolidation/site-alias.git",
  770. "reference": "0a4c49f91e44b0b7bb288f3547875a136a7ed704"
  771. },
  772. "dist": {
  773. "type": "zip",
  774. "url": "https://api.github.com/repos/consolidation/site-alias/zipball/0a4c49f91e44b0b7bb288f3547875a136a7ed704",
  775. "reference": "0a4c49f91e44b0b7bb288f3547875a136a7ed704",
  776. "shasum": ""
  777. },
  778. "require": {
  779. "php": ">=5.5.0"
  780. },
  781. "require-dev": {
  782. "consolidation/robo": "^1.2.3",
  783. "g1a/composer-test-scenarios": "^2",
  784. "knplabs/github-api": "^2.7",
  785. "php-http/guzzle6-adapter": "^1.1",
  786. "phpunit/phpunit": "^5",
  787. "satooshi/php-coveralls": "^2",
  788. "squizlabs/php_codesniffer": "^2.8",
  789. "symfony/console": "^2.8|^3|^4",
  790. "symfony/yaml": "~2.3|^3"
  791. },
  792. "type": "library",
  793. "extra": {
  794. "branch-alias": {
  795. "dev-master": "1.x-dev"
  796. }
  797. },
  798. "autoload": {
  799. "psr-4": {
  800. "Consolidation\\SiteAlias\\": "src"
  801. }
  802. },
  803. "notification-url": "https://packagist.org/downloads/",
  804. "license": [
  805. "MIT"
  806. ],
  807. "authors": [
  808. {
  809. "name": "Moshe Weitzman",
  810. "email": "weitzman@tejasa.com"
  811. },
  812. {
  813. "name": "Greg Anderson",
  814. "email": "greg.1.anderson@greenknowe.org"
  815. }
  816. ],
  817. "description": "Manage alias records for local and remote sites.",
  818. "time": "2018-10-31T01:29:05+00:00"
  819. },
  820. {
  821. "name": "container-interop/container-interop",
  822. "version": "1.2.0",
  823. "source": {
  824. "type": "git",
  825. "url": "https://github.com/container-interop/container-interop.git",
  826. "reference": "79cbf1341c22ec75643d841642dd5d6acd83bdb8"
  827. },
  828. "dist": {
  829. "type": "zip",
  830. "url": "https://api.github.com/repos/container-interop/container-interop/zipball/79cbf1341c22ec75643d841642dd5d6acd83bdb8",
  831. "reference": "79cbf1341c22ec75643d841642dd5d6acd83bdb8",
  832. "shasum": ""
  833. },
  834. "require": {
  835. "psr/container": "^1.0"
  836. },
  837. "type": "library",
  838. "autoload": {
  839. "psr-4": {
  840. "Interop\\Container\\": "src/Interop/Container/"
  841. }
  842. },
  843. "notification-url": "https://packagist.org/downloads/",
  844. "license": [
  845. "MIT"
  846. ],
  847. "description": "Promoting the interoperability of container objects (DIC, SL, etc.)",
  848. "homepage": "https://github.com/container-interop/container-interop",
  849. "time": "2017-02-14T19:40:03+00:00"
  850. },
  851. {
  852. "name": "cweagans/composer-patches",
  853. "version": "1.6.5",
  854. "source": {
  855. "type": "git",
  856. "url": "https://github.com/cweagans/composer-patches.git",
  857. "reference": "2ec4f00ff5fb64de584c8c4aea53bf9053ecb0b3"
  858. },
  859. "dist": {
  860. "type": "zip",
  861. "url": "https://api.github.com/repos/cweagans/composer-patches/zipball/2ec4f00ff5fb64de584c8c4aea53bf9053ecb0b3",
  862. "reference": "2ec4f00ff5fb64de584c8c4aea53bf9053ecb0b3",
  863. "shasum": ""
  864. },
  865. "require": {
  866. "composer-plugin-api": "^1.0",
  867. "php": ">=5.3.0"
  868. },
  869. "require-dev": {
  870. "composer/composer": "~1.0",
  871. "phpunit/phpunit": "~4.6"
  872. },
  873. "type": "composer-plugin",
  874. "extra": {
  875. "class": "cweagans\\Composer\\Patches"
  876. },
  877. "autoload": {
  878. "psr-4": {
  879. "cweagans\\Composer\\": "src"
  880. }
  881. },
  882. "notification-url": "https://packagist.org/downloads/",
  883. "license": [
  884. "BSD-3-Clause"
  885. ],
  886. "authors": [
  887. {
  888. "name": "Cameron Eagans",
  889. "email": "me@cweagans.net"
  890. }
  891. ],
  892. "description": "Provides a way to patch Composer packages.",
  893. "time": "2018-05-11T18:00:16+00:00"
  894. },
  895. {
  896. "name": "d3/d3",
  897. "version": "v3.5.17",
  898. "dist": {
  899. "type": "zip",
  900. "url": "https://github.com/d3/d3/archive/v3.5.17.zip",
  901. "reference": null,
  902. "shasum": null
  903. },
  904. "type": "drupal-library"
  905. },
  906. {
  907. "name": "dflydev/dot-access-configuration",
  908. "version": "v1.0.3",
  909. "source": {
  910. "type": "git",
  911. "url": "https://github.com/dflydev/dflydev-dot-access-configuration.git",
  912. "reference": "2e6eb0c8b8830b26bb23defcfc38d4276508fc49"
  913. },
  914. "dist": {
  915. "type": "zip",
  916. "url": "https://api.github.com/repos/dflydev/dflydev-dot-access-configuration/zipball/2e6eb0c8b8830b26bb23defcfc38d4276508fc49",
  917. "reference": "2e6eb0c8b8830b26bb23defcfc38d4276508fc49",
  918. "shasum": ""
  919. },
  920. "require": {
  921. "dflydev/dot-access-data": "1.*",
  922. "dflydev/placeholder-resolver": "1.*",
  923. "php": ">=5.3.2"
  924. },
  925. "require-dev": {
  926. "symfony/yaml": "~2.1"
  927. },
  928. "suggest": {
  929. "symfony/yaml": "Required for using the YAML Configuration Builders"
  930. },
  931. "type": "library",
  932. "extra": {
  933. "branch-alias": {
  934. "dev-master": "1.0-dev"
  935. }
  936. },
  937. "autoload": {
  938. "psr-0": {
  939. "Dflydev\\DotAccessConfiguration": "src"
  940. }
  941. },
  942. "notification-url": "https://packagist.org/downloads/",
  943. "license": [
  944. "MIT"
  945. ],
  946. "authors": [
  947. {
  948. "name": "Dragonfly Development Inc.",
  949. "email": "info@dflydev.com",
  950. "homepage": "http://dflydev.com"
  951. },
  952. {
  953. "name": "Beau Simensen",
  954. "email": "beau@dflydev.com",
  955. "homepage": "http://beausimensen.com"
  956. }
  957. ],
  958. "description": "Given a deep data structure representing a configuration, access configuration by dot notation.",
  959. "homepage": "https://github.com/dflydev/dflydev-dot-access-configuration",
  960. "keywords": [
  961. "config",
  962. "configuration"
  963. ],
  964. "time": "2018-09-08T23:00:17+00:00"
  965. },
  966. {
  967. "name": "dflydev/dot-access-data",
  968. "version": "v1.1.0",
  969. "source": {
  970. "type": "git",
  971. "url": "https://github.com/dflydev/dflydev-dot-access-data.git",
  972. "reference": "3fbd874921ab2c041e899d044585a2ab9795df8a"
  973. },
  974. "dist": {
  975. "type": "zip",
  976. "url": "https://api.github.com/repos/dflydev/dflydev-dot-access-data/zipball/3fbd874921ab2c041e899d044585a2ab9795df8a",
  977. "reference": "3fbd874921ab2c041e899d044585a2ab9795df8a",
  978. "shasum": ""
  979. },
  980. "require": {
  981. "php": ">=5.3.2"
  982. },
  983. "type": "library",
  984. "extra": {
  985. "branch-alias": {
  986. "dev-master": "1.0-dev"
  987. }
  988. },
  989. "autoload": {
  990. "psr-0": {
  991. "Dflydev\\DotAccessData": "src"
  992. }
  993. },
  994. "notification-url": "https://packagist.org/downloads/",
  995. "license": [
  996. "MIT"
  997. ],
  998. "authors": [
  999. {
  1000. "name": "Dragonfly Development Inc.",
  1001. "email": "info@dflydev.com",
  1002. "homepage": "http://dflydev.com"
  1003. },
  1004. {
  1005. "name": "Beau Simensen",
  1006. "email": "beau@dflydev.com",
  1007. "homepage": "http://beausimensen.com"
  1008. },
  1009. {
  1010. "name": "Carlos Frutos",
  1011. "email": "carlos@kiwing.it",
  1012. "homepage": "https://github.com/cfrutos"
  1013. }
  1014. ],
  1015. "description": "Given a deep data structure, access data by dot notation.",
  1016. "homepage": "https://github.com/dflydev/dflydev-dot-access-data",
  1017. "keywords": [
  1018. "access",
  1019. "data",
  1020. "dot",
  1021. "notation"
  1022. ],
  1023. "time": "2017-01-20T21:14:22+00:00"
  1024. },
  1025. {
  1026. "name": "dflydev/placeholder-resolver",
  1027. "version": "v1.0.2",
  1028. "source": {
  1029. "type": "git",
  1030. "url": "https://github.com/dflydev/dflydev-placeholder-resolver.git",
  1031. "reference": "c498d0cae91b1bb36cc7d60906dab8e62bb7c356"
  1032. },
  1033. "dist": {
  1034. "type": "zip",
  1035. "url": "https://api.github.com/repos/dflydev/dflydev-placeholder-resolver/zipball/c498d0cae91b1bb36cc7d60906dab8e62bb7c356",
  1036. "reference": "c498d0cae91b1bb36cc7d60906dab8e62bb7c356",
  1037. "shasum": ""
  1038. },
  1039. "require": {
  1040. "php": ">=5.3.2"
  1041. },
  1042. "type": "library",
  1043. "extra": {
  1044. "branch-alias": {
  1045. "dev-master": "1.0-dev"
  1046. }
  1047. },
  1048. "autoload": {
  1049. "psr-0": {
  1050. "Dflydev\\PlaceholderResolver": "src"
  1051. }
  1052. },
  1053. "notification-url": "https://packagist.org/downloads/",
  1054. "license": [
  1055. "MIT"
  1056. ],
  1057. "authors": [
  1058. {
  1059. "name": "Dragonfly Development Inc.",
  1060. "email": "info@dflydev.com",
  1061. "homepage": "http://dflydev.com"
  1062. },
  1063. {
  1064. "name": "Beau Simensen",
  1065. "email": "beau@dflydev.com",
  1066. "homepage": "http://beausimensen.com"
  1067. }
  1068. ],
  1069. "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.",
  1070. "homepage": "https://github.com/dflydev/dflydev-placeholder-resolver",
  1071. "keywords": [
  1072. "placeholder",
  1073. "resolver"
  1074. ],
  1075. "time": "2012-10-28T21:08:28+00:00"
  1076. },
  1077. {
  1078. "name": "dnoegel/php-xdg-base-dir",
  1079. "version": "0.1",
  1080. "source": {
  1081. "type": "git",
  1082. "url": "https://github.com/dnoegel/php-xdg-base-dir.git",
  1083. "reference": "265b8593498b997dc2d31e75b89f053b5cc9621a"
  1084. },
  1085. "dist": {
  1086. "type": "zip",
  1087. "url": "https://api.github.com/repos/dnoegel/php-xdg-base-dir/zipball/265b8593498b997dc2d31e75b89f053b5cc9621a",
  1088. "reference": "265b8593498b997dc2d31e75b89f053b5cc9621a",
  1089. "shasum": ""
  1090. },
  1091. "require": {
  1092. "php": ">=5.3.2"
  1093. },
  1094. "require-dev": {
  1095. "phpunit/phpunit": "@stable"
  1096. },
  1097. "type": "project",
  1098. "autoload": {
  1099. "psr-4": {
  1100. "XdgBaseDir\\": "src/"
  1101. }
  1102. },
  1103. "notification-url": "https://packagist.org/downloads/",
  1104. "license": [
  1105. "MIT"
  1106. ],
  1107. "description": "implementation of xdg base directory specification for php",
  1108. "time": "2014-10-24T07:27:01+00:00"
  1109. },
  1110. {
  1111. "name": "doctrine/annotations",
  1112. "version": "v1.2.7",
  1113. "source": {
  1114. "type": "git",
  1115. "url": "https://github.com/doctrine/annotations.git",
  1116. "reference": "f25c8aab83e0c3e976fd7d19875f198ccf2f7535"
  1117. },
  1118. "dist": {
  1119. "type": "zip",
  1120. "url": "https://api.github.com/repos/doctrine/annotations/zipball/f25c8aab83e0c3e976fd7d19875f198ccf2f7535",
  1121. "reference": "f25c8aab83e0c3e976fd7d19875f198ccf2f7535",
  1122. "shasum": ""
  1123. },
  1124. "require": {
  1125. "doctrine/lexer": "1.*",
  1126. "php": ">=5.3.2"
  1127. },
  1128. "require-dev": {
  1129. "doctrine/cache": "1.*",
  1130. "phpunit/phpunit": "4.*"
  1131. },
  1132. "type": "library",
  1133. "extra": {
  1134. "branch-alias": {
  1135. "dev-master": "1.3.x-dev"
  1136. }
  1137. },
  1138. "autoload": {
  1139. "psr-0": {
  1140. "Doctrine\\Common\\Annotations\\": "lib/"
  1141. }
  1142. },
  1143. "notification-url": "https://packagist.org/downloads/",
  1144. "license": [
  1145. "MIT"
  1146. ],
  1147. "authors": [
  1148. {
  1149. "name": "Roman Borschel",
  1150. "email": "roman@code-factory.org"
  1151. },
  1152. {
  1153. "name": "Benjamin Eberlei",
  1154. "email": "kontakt@beberlei.de"
  1155. },
  1156. {
  1157. "name": "Guilherme Blanco",
  1158. "email": "guilhermeblanco@gmail.com"
  1159. },
  1160. {
  1161. "name": "Jonathan Wage",
  1162. "email": "jonwage@gmail.com"
  1163. },
  1164. {
  1165. "name": "Johannes Schmitt",
  1166. "email": "schmittjoh@gmail.com"
  1167. }
  1168. ],
  1169. "description": "Docblock Annotations Parser",
  1170. "homepage": "http://www.doctrine-project.org",
  1171. "keywords": [
  1172. "annotations",
  1173. "docblock",
  1174. "parser"
  1175. ],
  1176. "time": "2015-08-31T12:32:49+00:00"
  1177. },
  1178. {
  1179. "name": "doctrine/cache",
  1180. "version": "v1.6.2",
  1181. "source": {
  1182. "type": "git",
  1183. "url": "https://github.com/doctrine/cache.git",
  1184. "reference": "eb152c5100571c7a45470ff2a35095ab3f3b900b"
  1185. },
  1186. "dist": {
  1187. "type": "zip",
  1188. "url": "https://api.github.com/repos/doctrine/cache/zipball/eb152c5100571c7a45470ff2a35095ab3f3b900b",
  1189. "reference": "eb152c5100571c7a45470ff2a35095ab3f3b900b",
  1190. "shasum": ""
  1191. },
  1192. "require": {
  1193. "php": "~5.5|~7.0"
  1194. },
  1195. "conflict": {
  1196. "doctrine/common": ">2.2,<2.4"
  1197. },
  1198. "require-dev": {
  1199. "phpunit/phpunit": "~4.8|~5.0",
  1200. "predis/predis": "~1.0",
  1201. "satooshi/php-coveralls": "~0.6"
  1202. },
  1203. "type": "library",
  1204. "extra": {
  1205. "branch-alias": {
  1206. "dev-master": "1.6.x-dev"
  1207. }
  1208. },
  1209. "autoload": {
  1210. "psr-4": {
  1211. "Doctrine\\Common\\Cache\\": "lib/Doctrine/Common/Cache"
  1212. }
  1213. },
  1214. "notification-url": "https://packagist.org/downloads/",
  1215. "license": [
  1216. "MIT"
  1217. ],
  1218. "authors": [
  1219. {
  1220. "name": "Roman Borschel",
  1221. "email": "roman@code-factory.org"
  1222. },
  1223. {
  1224. "name": "Benjamin Eberlei",
  1225. "email": "kontakt@beberlei.de"
  1226. },
  1227. {
  1228. "name": "Guilherme Blanco",
  1229. "email": "guilhermeblanco@gmail.com"
  1230. },
  1231. {
  1232. "name": "Jonathan Wage",
  1233. "email": "jonwage@gmail.com"
  1234. },
  1235. {
  1236. "name": "Johannes Schmitt",
  1237. "email": "schmittjoh@gmail.com"
  1238. }
  1239. ],
  1240. "description": "Caching library offering an object-oriented API for many cache backends",
  1241. "homepage": "http://www.doctrine-project.org",
  1242. "keywords": [
  1243. "cache",
  1244. "caching"
  1245. ],
  1246. "time": "2017-07-22T12:49:21+00:00"
  1247. },
  1248. {
  1249. "name": "doctrine/collections",
  1250. "version": "v1.4.0",
  1251. "source": {
  1252. "type": "git",
  1253. "url": "https://github.com/doctrine/collections.git",
  1254. "reference": "1a4fb7e902202c33cce8c55989b945612943c2ba"
  1255. },
  1256. "dist": {
  1257. "type": "zip",
  1258. "url": "https://api.github.com/repos/doctrine/collections/zipball/1a4fb7e902202c33cce8c55989b945612943c2ba",
  1259. "reference": "1a4fb7e902202c33cce8c55989b945612943c2ba",
  1260. "shasum": ""
  1261. },
  1262. "require": {
  1263. "php": "^5.6 || ^7.0"
  1264. },
  1265. "require-dev": {
  1266. "doctrine/coding-standard": "~0.1@dev",
  1267. "phpunit/phpunit": "^5.7"
  1268. },
  1269. "type": "library",
  1270. "extra": {
  1271. "branch-alias": {
  1272. "dev-master": "1.3.x-dev"
  1273. }
  1274. },
  1275. "autoload": {
  1276. "psr-0": {
  1277. "Doctrine\\Common\\Collections\\": "lib/"
  1278. }
  1279. },
  1280. "notification-url": "https://packagist.org/downloads/",
  1281. "license": [
  1282. "MIT"
  1283. ],
  1284. "authors": [
  1285. {
  1286. "name": "Roman Borschel",
  1287. "email": "roman@code-factory.org"
  1288. },
  1289. {
  1290. "name": "Benjamin Eberlei",
  1291. "email": "kontakt@beberlei.de"
  1292. },
  1293. {
  1294. "name": "Guilherme Blanco",
  1295. "email": "guilhermeblanco@gmail.com"
  1296. },
  1297. {
  1298. "name": "Jonathan Wage",
  1299. "email": "jonwage@gmail.com"
  1300. },
  1301. {
  1302. "name": "Johannes Schmitt",
  1303. "email": "schmittjoh@gmail.com"
  1304. }
  1305. ],
  1306. "description": "Collections Abstraction library",
  1307. "homepage": "http://www.doctrine-project.org",
  1308. "keywords": [
  1309. "array",
  1310. "collections",
  1311. "iterator"
  1312. ],
  1313. "time": "2017-01-03T10:49:41+00:00"
  1314. },
  1315. {
  1316. "name": "doctrine/common",
  1317. "version": "v2.7.3",
  1318. "source": {
  1319. "type": "git",
  1320. "url": "https://github.com/doctrine/common.git",
  1321. "reference": "4acb8f89626baafede6ee5475bc5844096eba8a9"
  1322. },
  1323. "dist": {
  1324. "type": "zip",
  1325. "url": "https://api.github.com/repos/doctrine/common/zipball/4acb8f89626baafede6ee5475bc5844096eba8a9",
  1326. "reference": "4acb8f89626baafede6ee5475bc5844096eba8a9",
  1327. "shasum": ""
  1328. },
  1329. "require": {
  1330. "doctrine/annotations": "1.*",
  1331. "doctrine/cache": "1.*",
  1332. "doctrine/collections": "1.*",
  1333. "doctrine/inflector": "1.*",
  1334. "doctrine/lexer": "1.*",
  1335. "php": "~5.6|~7.0"
  1336. },
  1337. "require-dev": {
  1338. "phpunit/phpunit": "^5.4.6"
  1339. },
  1340. "type": "library",
  1341. "extra": {
  1342. "branch-alias": {
  1343. "dev-master": "2.7.x-dev"
  1344. }
  1345. },
  1346. "autoload": {
  1347. "psr-4": {
  1348. "Doctrine\\Common\\": "lib/Doctrine/Common"
  1349. }
  1350. },
  1351. "notification-url": "https://packagist.org/downloads/",
  1352. "license": [
  1353. "MIT"
  1354. ],
  1355. "authors": [
  1356. {
  1357. "name": "Roman Borschel",
  1358. "email": "roman@code-factory.org"
  1359. },
  1360. {
  1361. "name": "Benjamin Eberlei",
  1362. "email": "kontakt@beberlei.de"
  1363. },
  1364. {
  1365. "name": "Guilherme Blanco",
  1366. "email": "guilhermeblanco@gmail.com"
  1367. },
  1368. {
  1369. "name": "Jonathan Wage",
  1370. "email": "jonwage@gmail.com"
  1371. },
  1372. {
  1373. "name": "Johannes Schmitt",
  1374. "email": "schmittjoh@gmail.com"
  1375. }
  1376. ],
  1377. "description": "Common Library for Doctrine projects",
  1378. "homepage": "http://www.doctrine-project.org",
  1379. "keywords": [
  1380. "annotations",
  1381. "collections",
  1382. "eventmanager",
  1383. "persistence",
  1384. "spl"
  1385. ],
  1386. "time": "2017-07-22T08:35:12+00:00"
  1387. },
  1388. {
  1389. "name": "doctrine/inflector",
  1390. "version": "v1.2.0",
  1391. "source": {
  1392. "type": "git",
  1393. "url": "https://github.com/doctrine/inflector.git",
  1394. "reference": "e11d84c6e018beedd929cff5220969a3c6d1d462"
  1395. },
  1396. "dist": {
  1397. "type": "zip",
  1398. "url": "https://api.github.com/repos/doctrine/inflector/zipball/e11d84c6e018beedd929cff5220969a3c6d1d462",
  1399. "reference": "e11d84c6e018beedd929cff5220969a3c6d1d462",
  1400. "shasum": ""
  1401. },
  1402. "require": {
  1403. "php": "^7.0"
  1404. },
  1405. "require-dev": {
  1406. "phpunit/phpunit": "^6.2"
  1407. },
  1408. "type": "library",
  1409. "extra": {
  1410. "branch-alias": {
  1411. "dev-master": "1.2.x-dev"
  1412. }
  1413. },
  1414. "autoload": {
  1415. "psr-4": {
  1416. "Doctrine\\Common\\Inflector\\": "lib/Doctrine/Common/Inflector"
  1417. }
  1418. },
  1419. "notification-url": "https://packagist.org/downloads/",
  1420. "license": [
  1421. "MIT"
  1422. ],
  1423. "authors": [
  1424. {
  1425. "name": "Roman Borschel",
  1426. "email": "roman@code-factory.org"
  1427. },
  1428. {
  1429. "name": "Benjamin Eberlei",
  1430. "email": "kontakt@beberlei.de"
  1431. },
  1432. {
  1433. "name": "Guilherme Blanco",
  1434. "email": "guilhermeblanco@gmail.com"
  1435. },
  1436. {
  1437. "name": "Jonathan Wage",
  1438. "email": "jonwage@gmail.com"
  1439. },
  1440. {
  1441. "name": "Johannes Schmitt",
  1442. "email": "schmittjoh@gmail.com"
  1443. }
  1444. ],
  1445. "description": "Common String Manipulations with regard to casing and singular/plural rules.",
  1446. "homepage": "http://www.doctrine-project.org",
  1447. "keywords": [
  1448. "inflection",
  1449. "pluralize",
  1450. "singularize",
  1451. "string"
  1452. ],
  1453. "time": "2017-07-22T12:18:28+00:00"
  1454. },
  1455. {
  1456. "name": "doctrine/lexer",
  1457. "version": "v1.0.1",
  1458. "source": {
  1459. "type": "git",
  1460. "url": "https://github.com/doctrine/lexer.git",
  1461. "reference": "83893c552fd2045dd78aef794c31e694c37c0b8c"
  1462. },
  1463. "dist": {
  1464. "type": "zip",
  1465. "url": "https://api.github.com/repos/doctrine/lexer/zipball/83893c552fd2045dd78aef794c31e694c37c0b8c",
  1466. "reference": "83893c552fd2045dd78aef794c31e694c37c0b8c",
  1467. "shasum": ""
  1468. },
  1469. "require": {
  1470. "php": ">=5.3.2"
  1471. },
  1472. "type": "library",
  1473. "extra": {
  1474. "branch-alias": {
  1475. "dev-master": "1.0.x-dev"
  1476. }
  1477. },
  1478. "autoload": {
  1479. "psr-0": {
  1480. "Doctrine\\Common\\Lexer\\": "lib/"
  1481. }
  1482. },
  1483. "notification-url": "https://packagist.org/downloads/",
  1484. "license": [
  1485. "MIT"
  1486. ],
  1487. "authors": [
  1488. {
  1489. "name": "Roman Borschel",
  1490. "email": "roman@code-factory.org"
  1491. },
  1492. {
  1493. "name": "Guilherme Blanco",
  1494. "email": "guilhermeblanco@gmail.com"
  1495. },
  1496. {
  1497. "name": "Johannes Schmitt",
  1498. "email": "schmittjoh@gmail.com"
  1499. }
  1500. ],
  1501. "description": "Base library for a lexer that can be used in Top-Down, Recursive Descent Parsers.",
  1502. "homepage": "http://www.doctrine-project.org",
  1503. "keywords": [
  1504. "lexer",
  1505. "parser"
  1506. ],
  1507. "time": "2014-09-09T13:34:57+00:00"
  1508. },
  1509. {
  1510. "name": "drupal/actions_permissions",
  1511. "version": "2.4.0",
  1512. "require": {
  1513. "drupal/core": "*",
  1514. "drupal/views_bulk_operations": "self.version"
  1515. },
  1516. "type": "metapackage",
  1517. "extra": {
  1518. "branch-alias": {
  1519. "dev-2.x": "2.x-dev"
  1520. },
  1521. "drupal": {
  1522. "version": "8.x-2.4",
  1523. "datestamp": "1530516821",
  1524. "security-coverage": {
  1525. "status": "covered",
  1526. "message": "Covered by Drupal's security advisory policy"
  1527. }
  1528. }
  1529. },
  1530. "notification-url": "https://packages.drupal.org/8/downloads",
  1531. "license": [
  1532. "GPL-2.0-or-later"
  1533. ],
  1534. "authors": [
  1535. {
  1536. "name": "Graber",
  1537. "homepage": "https://www.drupal.org/user/1599440"
  1538. },
  1539. {
  1540. "name": "Jon Pugh",
  1541. "homepage": "https://www.drupal.org/user/17028"
  1542. },
  1543. {
  1544. "name": "bojanz",
  1545. "homepage": "https://www.drupal.org/user/86106"
  1546. },
  1547. {
  1548. "name": "infojunkie",
  1549. "homepage": "https://www.drupal.org/user/48424"
  1550. },
  1551. {
  1552. "name": "joelpittet",
  1553. "homepage": "https://www.drupal.org/user/160302"
  1554. }
  1555. ],
  1556. "description": "Adds access permissions on all actions allowing admins to restrict access on a per-role basis.",
  1557. "homepage": "https://www.drupal.org/project/views_bulk_operations",
  1558. "support": {
  1559. "source": "http://cgit.drupalcode.org/views_bulk_operations"
  1560. }
  1561. },
  1562. {
  1563. "name": "drupal/address",
  1564. "version": "1.4.0",
  1565. "source": {
  1566. "type": "git",
  1567. "url": "https://git.drupal.org/project/address",
  1568. "reference": "8.x-1.4"
  1569. },
  1570. "dist": {
  1571. "type": "zip",
  1572. "url": "https://ftp.drupal.org/files/projects/address-8.x-1.4.zip",
  1573. "reference": "8.x-1.4",
  1574. "shasum": "143e426be73418c719c6bddd5fb81c610604e860"
  1575. },
  1576. "require": {
  1577. "commerceguys/addressing": "^1.0.0",
  1578. "drupal/core": "*"
  1579. },
  1580. "require-dev": {
  1581. "drupal/token": "*"
  1582. },
  1583. "type": "drupal-module",
  1584. "extra": {
  1585. "branch-alias": {
  1586. "dev-1.x": "1.x-dev"
  1587. },
  1588. "drupal": {
  1589. "version": "8.x-1.4",
  1590. "datestamp": "1527081784",
  1591. "security-coverage": {
  1592. "status": "covered",
  1593. "message": "Covered by Drupal's security advisory policy"
  1594. }
  1595. }
  1596. },
  1597. "notification-url": "https://packages.drupal.org/8/downloads",
  1598. "license": [
  1599. "GPL-2.0+"
  1600. ],
  1601. "authors": [
  1602. {
  1603. "name": "bojanz",
  1604. "homepage": "https://www.drupal.org/user/86106"
  1605. },
  1606. {
  1607. "name": "googletorp",
  1608. "homepage": "https://www.drupal.org/user/386230"
  1609. },
  1610. {
  1611. "name": "rszrama",
  1612. "homepage": "https://www.drupal.org/user/49344"
  1613. }
  1614. ],
  1615. "description": "Provides functionality for storing, validating and displaying international postal addresses.",
  1616. "homepage": "http://drupal.org/project/address",
  1617. "support": {
  1618. "source": "http://cgit.drupalcode.org/address"
  1619. }
  1620. },
  1621. {
  1622. "name": "drupal/admin_toolbar",
  1623. "version": "1.24.0",
  1624. "source": {
  1625. "type": "git",
  1626. "url": "https://git.drupal.org/project/admin_toolbar",
  1627. "reference": "8.x-1.24"
  1628. },
  1629. "dist": {
  1630. "type": "zip",
  1631. "url": "https://ftp.drupal.org/files/projects/admin_toolbar-8.x-1.24.zip",
  1632. "reference": "8.x-1.24",
  1633. "shasum": "682ffa443a1e339583022eb6adbb00c1103ea6d4"
  1634. },
  1635. "require": {
  1636. "drupal/core": "*"
  1637. },
  1638. "type": "drupal-module",
  1639. "extra": {
  1640. "branch-alias": {
  1641. "dev-1.x": "1.x-dev"
  1642. },
  1643. "drupal": {
  1644. "version": "8.x-1.24",
  1645. "datestamp": "1527523080",
  1646. "security-coverage": {
  1647. "status": "covered",
  1648. "message": "Covered by Drupal's security advisory policy"
  1649. }
  1650. }
  1651. },
  1652. "notification-url": "https://packages.drupal.org/8/downloads",
  1653. "license": [
  1654. "GPL-2.0+"
  1655. ],
  1656. "authors": [
  1657. {
  1658. "name": "Wilfrid Roze (eme)",
  1659. "homepage": "https://www.drupal.org/u/eme",
  1660. "role": "Maintainer"
  1661. },
  1662. {
  1663. "name": "Romain Jarraud (romainj)",
  1664. "homepage": "https://www.drupal.org/u/romainj",
  1665. "role": "Maintainer"
  1666. },
  1667. {
  1668. "name": "Adrian Cid Almaguer (adriancid)",
  1669. "homepage": "https://www.drupal.org/u/adriancid",
  1670. "email": "adriancid@gmail.com",
  1671. "role": "Maintainer"
  1672. },
  1673. {
  1674. "name": "Mohamed Anis Taktak (matio89)",
  1675. "homepage": "https://www.drupal.org/u/matio89",
  1676. "role": "Maintainer"
  1677. },
  1678. {
  1679. "name": "fethi.krout",
  1680. "homepage": "https://www.drupal.org/user/3206765"
  1681. },
  1682. {
  1683. "name": "matio89",
  1684. "homepage": "https://www.drupal.org/user/2320090"
  1685. },
  1686. {
  1687. "name": "romainj",
  1688. "homepage": "https://www.drupal.org/user/370706"
  1689. }
  1690. ],
  1691. "description": "Provides a drop-down menu interface to the core Drupal Toolbar.",
  1692. "homepage": "http://drupal.org/project/admin_toolbar",
  1693. "keywords": [
  1694. "Drupal",
  1695. "Toolbar"
  1696. ],
  1697. "support": {
  1698. "source": "http://cgit.drupalcode.org/admin_toolbar",
  1699. "issues": "https://www.drupal.org/project/issues/admin_toolbar"
  1700. }
  1701. },
  1702. {
  1703. "name": "drupal/adminimal_theme",
  1704. "version": "1.3.0",
  1705. "source": {
  1706. "type": "git",
  1707. "url": "https://git.drupal.org/project/adminimal_theme",
  1708. "reference": "8.x-1.3"
  1709. },
  1710. "dist": {
  1711. "type": "zip",
  1712. "url": "https://ftp.drupal.org/files/projects/adminimal_theme-8.x-1.3.zip",
  1713. "reference": "8.x-1.3",
  1714. "shasum": "bb9f280bcdbd7e4d384a925c685a2aa1feed8419"
  1715. },
  1716. "require": {
  1717. "drupal/core": "~8.0"
  1718. },
  1719. "type": "drupal-theme",
  1720. "extra": {
  1721. "branch-alias": {
  1722. "dev-1.x": "1.x-dev"
  1723. },
  1724. "drupal": {
  1725. "version": "8.x-1.3",
  1726. "datestamp": "1480507083",
  1727. "security-coverage": {
  1728. "status": "covered",
  1729. "message": "Covered by Drupal's security advisory policy"
  1730. }
  1731. }
  1732. },
  1733. "notification-url": "https://packages.drupal.org/8/downloads",
  1734. "license": [
  1735. "GPL-2.0-or-later"
  1736. ],
  1737. "authors": [
  1738. {
  1739. "name": "ANDiTKO",
  1740. "homepage": "https://www.drupal.org/user/1428124"
  1741. },
  1742. {
  1743. "name": "realityloop",
  1744. "homepage": "https://www.drupal.org/user/139189"
  1745. }
  1746. ],
  1747. "description": "Drupal administration theme with modern minimalist design.",
  1748. "homepage": "https://www.drupal.org/project/adminimal_theme",
  1749. "support": {
  1750. "source": "http://cgit.drupalcode.org/adminimal_theme"
  1751. }
  1752. },
  1753. {
  1754. "name": "drupal/advanced_text_formatter",
  1755. "version": "1.0.0-beta3",
  1756. "source": {
  1757. "type": "git",
  1758. "url": "https://git.drupal.org/project/advanced_text_formatter",
  1759. "reference": "8.x-1.0-beta3"
  1760. },
  1761. "dist": {
  1762. "type": "zip",
  1763. "url": "https://ftp.drupal.org/files/projects/advanced_text_formatter-8.x-1.0-beta3.zip",
  1764. "reference": "8.x-1.0-beta3",
  1765. "shasum": "35e0154440ba7836dda70b8627f156872da75302"
  1766. },
  1767. "require": {
  1768. "drupal/core": "*"
  1769. },
  1770. "type": "drupal-module",
  1771. "extra": {
  1772. "branch-alias": {
  1773. "dev-1.x": "1.x-dev"
  1774. },
  1775. "drupal": {
  1776. "version": "8.x-1.0-beta3",
  1777. "datestamp": "1445163539",
  1778. "security-coverage": {
  1779. "status": "not-covered",
  1780. "message": "Beta releases are not covered by Drupal security advisories."
  1781. }
  1782. }
  1783. },
  1784. "notification-url": "https://packages.drupal.org/8/downloads",
  1785. "license": [
  1786. "GPL-2.0-or-later"
  1787. ],
  1788. "authors": [
  1789. {
  1790. "name": "thmnhat",
  1791. "homepage": "https://www.drupal.org/user/998946"
  1792. }
  1793. ],
  1794. "description": "Provides an additional formatter for text field, text area and text format.",
  1795. "homepage": "https://www.drupal.org/project/advanced_text_formatter",
  1796. "support": {
  1797. "source": "http://cgit.drupalcode.org/advanced_text_formatter"
  1798. }
  1799. },
  1800. {
  1801. "name": "drupal/audiofield",
  1802. "version": "1.6.0",
  1803. "source": {
  1804. "type": "git",
  1805. "url": "https://git.drupal.org/project/audiofield",
  1806. "reference": "8.x-1.6"
  1807. },
  1808. "dist": {
  1809. "type": "zip",
  1810. "url": "https://ftp.drupal.org/files/projects/audiofield-8.x-1.6.zip",
  1811. "reference": "8.x-1.6",
  1812. "shasum": "bd63641c2ed9e9774b82423bf03c95540b395126"
  1813. },
  1814. "require": {
  1815. "drupal/core": "~8.0"
  1816. },
  1817. "type": "drupal-module",
  1818. "extra": {
  1819. "branch-alias": {
  1820. "dev-1.x": "1.x-dev"
  1821. },
  1822. "drupal": {
  1823. "version": "8.x-1.6",
  1824. "datestamp": "1514414884",
  1825. "security-coverage": {
  1826. "status": "covered",
  1827. "message": "Covered by Drupal's security advisory policy"
  1828. }
  1829. }
  1830. },
  1831. "notification-url": "https://packages.drupal.org/8/downloads",
  1832. "license": [
  1833. "GPL-2.0+"
  1834. ],
  1835. "authors": [
  1836. {
  1837. "name": "Daniel Moberly",
  1838. "homepage": "https://www.drupal.org/u/danielmoberly",
  1839. "role": "Maintainer"
  1840. },
  1841. {
  1842. "name": "josipsaric",
  1843. "homepage": "https://www.drupal.org/user/3063287"
  1844. },
  1845. {
  1846. "name": "msajko",
  1847. "homepage": "https://www.drupal.org/user/3483723"
  1848. },
  1849. {
  1850. "name": "tamerzg",
  1851. "homepage": "https://www.drupal.org/user/464564"
  1852. }
  1853. ],
  1854. "description": "AudioField Module",
  1855. "homepage": "https://www.drupal.org/project/audiofield",
  1856. "support": {
  1857. "source": "http://cgit.drupalcode.org/audiofield",
  1858. "issues": "https://www.drupal.org/project/issues/audiofield"
  1859. }
  1860. },
  1861. {
  1862. "name": "drupal/autocomplete_deluxe",
  1863. "version": "1.0.0-beta1",
  1864. "source": {
  1865. "type": "git",
  1866. "url": "https://git.drupal.org/project/autocomplete_deluxe",
  1867. "reference": "8.x-1.0-beta1"
  1868. },
  1869. "dist": {
  1870. "type": "zip",
  1871. "url": "https://ftp.drupal.org/files/projects/autocomplete_deluxe-8.x-1.0-beta1.zip",
  1872. "reference": "8.x-1.0-beta1",
  1873. "shasum": "f59d928761a01a055c2240155a84b1d7286fe666"
  1874. },
  1875. "require": {
  1876. "drupal/core": "~8.0"
  1877. },
  1878. "type": "drupal-module",
  1879. "extra": {
  1880. "branch-alias": {
  1881. "dev-1.x": "1.x-dev"
  1882. },
  1883. "drupal": {
  1884. "version": "8.x-1.0-beta1",
  1885. "datestamp": "1502921644",
  1886. "security-coverage": {
  1887. "status": "not-covered",
  1888. "message": "Beta releases are not covered by Drupal security advisories."
  1889. }
  1890. }
  1891. },
  1892. "notification-url": "https://packages.drupal.org/8/downloads",
  1893. "license": [
  1894. "GPL-2.0+"
  1895. ],
  1896. "authors": [
  1897. {
  1898. "name": "Edward Chan",
  1899. "homepage": "https://www.drupal.org/user/1781334"
  1900. },
  1901. {
  1902. "name": "edwardchiapet",
  1903. "homepage": "https://www.drupal.org/user/2354784"
  1904. },
  1905. {
  1906. "name": "mpriscella",
  1907. "homepage": "https://www.drupal.org/user/2354820"
  1908. },
  1909. {
  1910. "name": "sepgil",
  1911. "homepage": "https://www.drupal.org/user/512828"
  1912. }
  1913. ],
  1914. "description": "Enhanced autocomplete using Jquery UI autocomplete.",
  1915. "homepage": "https://www.drupal.org/sandbox/edwardchan/2888186",
  1916. "support": {
  1917. "source": "http://cgit.drupalcode.org/autocomplete_deluxe",
  1918. "issues": "https://www.drupal.org/project/issues/2888186"
  1919. }
  1920. },
  1921. {
  1922. "name": "drupal/autologout",
  1923. "version": "1.0.0",
  1924. "source": {
  1925. "type": "git",
  1926. "url": "https://git.drupal.org/project/autologout",
  1927. "reference": "8.x-1.0"
  1928. },
  1929. "dist": {
  1930. "type": "zip",
  1931. "url": "https://ftp.drupal.org/files/projects/autologout-8.x-1.0.zip",
  1932. "reference": "8.x-1.0",
  1933. "shasum": "0a5f67d4393b0acdf8522b1b1a5c9eb40bb05d93"
  1934. },
  1935. "require": {
  1936. "drupal/core": "~8.0"
  1937. },
  1938. "type": "drupal-module",
  1939. "extra": {
  1940. "branch-alias": {
  1941. "dev-1.x": "1.x-dev"
  1942. },
  1943. "drupal": {
  1944. "version": "8.x-1.0",
  1945. "datestamp": "1494237185",
  1946. "security-coverage": {
  1947. "status": "covered",
  1948. "message": "Covered by Drupal's security advisory policy"
  1949. }
  1950. }
  1951. },
  1952. "notification-url": "https://packages.drupal.org/8/downloads",
  1953. "license": [
  1954. "GPL-2.0+"
  1955. ],
  1956. "authors": [
  1957. {
  1958. "name": "AjK",
  1959. "homepage": "https://www.drupal.org/user/39030"
  1960. },
  1961. {
  1962. "name": "AjitS",
  1963. "homepage": "https://www.drupal.org/user/981944"
  1964. },
  1965. {
  1966. "name": "dandrews",
  1967. "homepage": "https://www.drupal.org/user/2014490"
  1968. },
  1969. {
  1970. "name": "johnennew",
  1971. "homepage": "https://www.drupal.org/user/1150042"
  1972. },
  1973. {
  1974. "name": "jrglasgow",
  1975. "homepage": "https://www.drupal.org/user/36590"
  1976. },
  1977. {
  1978. "name": "kmasood",
  1979. "homepage": "https://www.drupal.org/user/1262860"
  1980. },
  1981. {
  1982. "name": "levelos",
  1983. "homepage": "https://www.drupal.org/user/54135"
  1984. },
  1985. {
  1986. "name": "prabeen.giri",
  1987. "homepage": "https://www.drupal.org/user/913078"
  1988. },
  1989. {
  1990. "name": "str8",
  1991. "homepage": "https://www.drupal.org/user/2865063"
  1992. }
  1993. ],
  1994. "description": "Adds automated timed logout.",
  1995. "homepage": "http://drupal.org/project/autologout",
  1996. "support": {
  1997. "source": "http://cgit.drupalcode.org/autologout"
  1998. }
  1999. },
  2000. {
  2001. "name": "drupal/better_exposed_filters",
  2002. "version": "3.0.0-alpha5",
  2003. "source": {
  2004. "type": "git",
  2005. "url": "https://git.drupal.org/project/better_exposed_filters",
  2006. "reference": "8.x-3.0-alpha5"
  2007. },
  2008. "dist": {
  2009. "type": "zip",
  2010. "url": "https://ftp.drupal.org/files/projects/better_exposed_filters-8.x-3.0-alpha5.zip",
  2011. "reference": "8.x-3.0-alpha5",
  2012. "shasum": "8dbcff4b3bcd24f753d5d1ba6a523442a3690a76"
  2013. },
  2014. "require": {
  2015. "drupal/core": "*"
  2016. },
  2017. "type": "drupal-module",
  2018. "extra": {
  2019. "branch-alias": {
  2020. "dev-3.x": "3.x-dev"
  2021. },
  2022. "drupal": {
  2023. "version": "8.x-3.0-alpha5",
  2024. "datestamp": "1540513084",
  2025. "security-coverage": {
  2026. "status": "not-covered",
  2027. "message": "Alpha releases are not covered by Drupal security advisories."
  2028. }
  2029. }
  2030. },
  2031. "notification-url": "https://packages.drupal.org/8/downloads",
  2032. "license": [
  2033. "GPL-2.0-or-later"
  2034. ],
  2035. "authors": [
  2036. {
  2037. "name": "chr.fritsch",
  2038. "homepage": "https://www.drupal.org/user/2103716"
  2039. },
  2040. {
  2041. "name": "jkopel",
  2042. "homepage": "https://www.drupal.org/user/66207"
  2043. },
  2044. {
  2045. "name": "mikeker",
  2046. "homepage": "https://www.drupal.org/user/192273"
  2047. },
  2048. {
  2049. "name": "mortona2k",
  2050. "homepage": "https://www.drupal.org/user/1029484"
  2051. },
  2052. {
  2053. "name": "rlhawk",
  2054. "homepage": "https://www.drupal.org/user/352283"
  2055. }
  2056. ],
  2057. "description": "Provides advanced options (such as links, checkboxes, or jQueryUI widgets) for exposed Views elements.",
  2058. "homepage": "https://www.drupal.org/project/better_exposed_filters",
  2059. "support": {
  2060. "source": "http://cgit.drupalcode.org/better_exposed_filters"
  2061. }
  2062. },
  2063. {
  2064. "name": "drupal/better_messages",
  2065. "version": "1.0.0-alpha2",
  2066. "source": {
  2067. "type": "git",
  2068. "url": "https://git.drupal.org/project/better_messages",
  2069. "reference": "8.x-1.0-alpha2"
  2070. },
  2071. "dist": {
  2072. "type": "zip",
  2073. "url": "https://ftp.drupal.org/files/projects/better_messages-8.x-1.0-alpha2.zip",
  2074. "reference": "8.x-1.0-alpha2",
  2075. "shasum": "ca09231502d5e0d8a5c0d16f9efc5430091b8a38"
  2076. },
  2077. "require": {
  2078. "drupal/core": "~8.0"
  2079. },
  2080. "type": "drupal-module",
  2081. "extra": {
  2082. "branch-alias": {
  2083. "dev-1.x": "1.x-dev"
  2084. },
  2085. "drupal": {
  2086. "version": "8.x-1.0-alpha2",
  2087. "datestamp": "1517663880",
  2088. "security-coverage": {
  2089. "status": "not-covered",
  2090. "message": "Alpha releases are not covered by Drupal security advisories."
  2091. }
  2092. }
  2093. },
  2094. "notification-url": "https://packages.drupal.org/8/downloads",
  2095. "license": [
  2096. "GPL-2.0-or-later"
  2097. ],
  2098. "authors": [
  2099. {
  2100. "name": "Mohammed J. Razem",
  2101. "homepage": "https://www.drupal.org/user/255384"
  2102. },
  2103. {
  2104. "name": "bucefal91",
  2105. "homepage": "https://www.drupal.org/user/504128"
  2106. },
  2107. {
  2108. "name": "le72",
  2109. "homepage": "https://www.drupal.org/user/1866896"
  2110. }
  2111. ],
  2112. "description": "Better Messages module for Drupal 8.",
  2113. "homepage": "https://www.drupal.org/project/better_messages",
  2114. "support": {
  2115. "source": "http://cgit.drupalcode.org/better_messages"
  2116. }
  2117. },
  2118. {
  2119. "name": "drupal/betterlogin",
  2120. "version": "1.2.0",
  2121. "source": {
  2122. "type": "git",
  2123. "url": "https://git.drupal.org/project/betterlogin",
  2124. "reference": "8.x-1.2"
  2125. },
  2126. "dist": {
  2127. "type": "zip",
  2128. "url": "https://ftp.drupal.org/files/projects/betterlogin-8.x-1.2.zip",
  2129. "reference": "8.x-1.2",
  2130. "shasum": "6b9ab142bf563685346d2b4e2db46ada209ed6ad"
  2131. },
  2132. "require": {
  2133. "drupal/core": "~8.0"
  2134. },
  2135. "type": "drupal-module",
  2136. "extra": {
  2137. "branch-alias": {
  2138. "dev-1.x": "1.x-dev"
  2139. },
  2140. "drupal": {
  2141. "version": "8.x-1.2",
  2142. "datestamp": "1515587585",
  2143. "security-coverage": {
  2144. "status": "covered",
  2145. "message": "Covered by Drupal's security advisory policy"
  2146. }
  2147. }
  2148. },
  2149. "notification-url": "https://packages.drupal.org/8/downloads",
  2150. "license": [
  2151. "GPL-2.0-or-later"
  2152. ],
  2153. "authors": [
  2154. {
  2155. "name": "Yogesh Pawar",
  2156. "homepage": "https://www.drupal.org/user/2922907"
  2157. },
  2158. {
  2159. "name": "theamoeba",
  2160. "homepage": "https://www.drupal.org/user/251700"
  2161. }
  2162. ],
  2163. "description": "Make the login screens better :)",
  2164. "homepage": "https://www.drupal.org/project/betterlogin",
  2165. "support": {
  2166. "source": "http://cgit.drupalcode.org/betterlogin"
  2167. }
  2168. },
  2169. {
  2170. "name": "drupal/block_class",
  2171. "version": "1.0.0",
  2172. "source": {
  2173. "type": "git",
  2174. "url": "https://git.drupal.org/project/block_class",
  2175. "reference": "8.x-1.0"
  2176. },
  2177. "dist": {
  2178. "type": "zip",
  2179. "url": "https://ftp.drupal.org/files/projects/block_class-8.x-1.0.zip",
  2180. "reference": "8.x-1.0",
  2181. "shasum": "1a691999d051a3c010c2b6f2df73954ee02f424d"
  2182. },
  2183. "require": {
  2184. "drupal/core": "*"
  2185. },
  2186. "type": "drupal-module",
  2187. "extra": {
  2188. "branch-alias": {
  2189. "dev-1.x": "1.x-dev"
  2190. },
  2191. "drupal": {
  2192. "version": "8.x-1.0",
  2193. "datestamp": "1531440821",
  2194. "security-coverage": {
  2195. "status": "covered",
  2196. "message": "Covered by Drupal's security advisory policy"
  2197. }
  2198. }
  2199. },
  2200. "notification-url": "https://packages.drupal.org/8/downloads",
  2201. "license": [
  2202. "GPL-2.0+"
  2203. ],
  2204. "authors": [
  2205. {
  2206. "name": "Todd Nienkerk",
  2207. "homepage": "https://www.drupal.org/u/todd-nienkerk",
  2208. "role": "Maintainer"
  2209. },
  2210. {
  2211. "name": "Renato Gonçalves (RenatoG)",
  2212. "homepage": "https://www.drupal.org/u/RenatoG",
  2213. "email": "renatog@ciandt.com",
  2214. "role": "Maintainer"
  2215. },
  2216. {
  2217. "name": "Aaron Stanush",
  2218. "homepage": "https://www.drupal.org/u/aaron-stanush",
  2219. "role": "Maintainer"
  2220. },
  2221. {
  2222. "name": "David Suissa (DYdave)",
  2223. "homepage": "https://www.drupal.org/u/DYdave",
  2224. "role": "Maintainer"
  2225. },
  2226. {
  2227. "name": "Four Kitchens",
  2228. "homepage": "https://www.drupal.org/user/358502",
  2229. "role": "Maintainer"
  2230. },
  2231. {
  2232. "name": "berenddeboer",
  2233. "homepage": "https://www.drupal.org/u/berenddeboer",
  2234. "role": "Maintainer"
  2235. },
  2236. {
  2237. "name": "elliotttf",
  2238. "homepage": "https://www.drupal.org/u/elliotttf",
  2239. "role": "Maintainer"
  2240. },
  2241. {
  2242. "name": "Michal Minecki (mirzu)",
  2243. "homepage": "https://www.drupal.org/u/mirzu",
  2244. "role": "Maintainer"
  2245. },
  2246. {
  2247. "name": "Patrick Coffey (pcoffey)",
  2248. "homepage": "https://www.drupal.org/u/pcoffey",
  2249. "role": "Maintainer"
  2250. },
  2251. {
  2252. "name": "Taylor Smith (tsmith512)",
  2253. "homepage": "https://www.drupal.org/u/tsmith512",
  2254. "role": "Maintainer"
  2255. },
  2256. {
  2257. "name": "tsmith512",
  2258. "homepage": "https://www.drupal.org/user/2031446"
  2259. }
  2260. ],
  2261. "description": "Allows assigning classes to Blocks.",
  2262. "homepage": "https://www.drupal.org/project/block_class",
  2263. "support": {
  2264. "source": "https://cgit.drupalcode.org/block_class",
  2265. "issues": "https://www.drupal.org/project/issues/block_class",
  2266. "irc": "irc://irc.freenode.org/drupal-contribute"
  2267. }
  2268. },
  2269. {
  2270. "name": "drupal/bulkdelete",
  2271. "version": "dev-1.x",
  2272. "source": {
  2273. "type": "git",
  2274. "url": "https://git.drupal.org/project/bulkdelete",
  2275. "reference": "24499e0f069301d605ab0691e2d6e17ecbcb4060"
  2276. },
  2277. "require": {
  2278. "drupal/core": "~8.0"
  2279. },
  2280. "type": "drupal-module",
  2281. "extra": {
  2282. "branch-alias": {
  2283. "dev-1.x": "1.x-dev"
  2284. },
  2285. "drupal": {
  2286. "version": "8.x-1.x-dev",
  2287. "datestamp": "1495565583",
  2288. "security-coverage": {
  2289. "status": "not-covered",
  2290. "message": "Dev releases are not covered by Drupal security advisories."
  2291. }
  2292. }
  2293. },
  2294. "notification-url": "https://packages.drupal.org/8/downloads",
  2295. "license": [
  2296. "GPL-2.0-or-later"
  2297. ],
  2298. "authors": [
  2299. {
  2300. "name": "Kars-T",
  2301. "homepage": "https://www.drupal.org/user/224499"
  2302. },
  2303. {
  2304. "name": "Rahul Seth",
  2305. "homepage": "https://www.drupal.org/user/2694359"
  2306. },
  2307. {
  2308. "name": "adriancid",
  2309. "homepage": "https://www.drupal.org/user/1962106"
  2310. },
  2311. {
  2312. "name": "robertDouglass",
  2313. "homepage": "https://www.drupal.org/user/5449"
  2314. }
  2315. ],
  2316. "description": "Adds an administrative option to bulk delete nodes by content type using the batch API.",
  2317. "homepage": "https://www.drupal.org/project/bulkdelete",
  2318. "support": {
  2319. "source": "http://cgit.drupalcode.org/bulkdelete"
  2320. },
  2321. "time": "2017-05-23T18:49:48+00:00"
  2322. },
  2323. {
  2324. "name": "drupal/computed_field",
  2325. "version": "2.0.0-alpha4",
  2326. "source": {
  2327. "type": "git",
  2328. "url": "https://git.drupal.org/project/computed_field",
  2329. "reference": "8.x-2.0-alpha4"
  2330. },
  2331. "dist": {
  2332. "type": "zip",
  2333. "url": "https://ftp.drupal.org/files/projects/computed_field-8.x-2.0-alpha4.zip",
  2334. "reference": "8.x-2.0-alpha4",
  2335. "shasum": "daf67f2ecbb2785fa3c01416690ac48fd6737c9c"
  2336. },
  2337. "require": {
  2338. "drupal/core": "~8.0"
  2339. },
  2340. "type": "drupal-module",
  2341. "extra": {
  2342. "branch-alias": {
  2343. "dev-2.x": "2.x-dev"
  2344. },
  2345. "drupal": {
  2346. "version": "8.x-2.0-alpha4",
  2347. "datestamp": "1498842542",
  2348. "security-coverage": {
  2349. "status": "not-covered",
  2350. "message": "Alpha releases are not covered by Drupal security advisories."
  2351. }
  2352. }
  2353. },
  2354. "notification-url": "https://packages.drupal.org/8/downloads",
  2355. "license": [
  2356. "GPL-2.0-or-later"
  2357. ],
  2358. "authors": [
  2359. {
  2360. "name": "Agileware",
  2361. "homepage": "https://www.drupal.org/user/89106"
  2362. },
  2363. {
  2364. "name": "Moonshine",
  2365. "homepage": "https://www.drupal.org/user/133705"
  2366. },
  2367. {
  2368. "name": "Pedro Lozano",
  2369. "homepage": "https://www.drupal.org/user/123766"
  2370. },
  2371. {
  2372. "name": "colan",
  2373. "homepage": "https://www.drupal.org/user/58704"
  2374. },
  2375. {
  2376. "name": "dealancer",
  2377. "homepage": "https://www.drupal.org/user/243418"
  2378. },
  2379. {
  2380. "name": "markus_petrux",
  2381. "homepage": "https://www.drupal.org/user/39593"
  2382. },
  2383. {
  2384. "name": "nickcaballero",
  2385. "homepage": "https://www.drupal.org/user/588336"
  2386. },
  2387. {
  2388. "name": "ram4nd",
  2389. "homepage": "https://www.drupal.org/user/601534"
  2390. }
  2391. ],
  2392. "description": "Defines a field type that allows values to be \"computed\" via PHP code.",
  2393. "homepage": "https://www.drupal.org/project/computed_field",
  2394. "support": {
  2395. "source": "http://cgit.drupalcode.org/computed_field"
  2396. }
  2397. },
  2398. {
  2399. "name": "drupal/config_devel",
  2400. "version": "1.2.0",
  2401. "source": {
  2402. "type": "git",
  2403. "url": "https://git.drupal.org/project/config_devel",
  2404. "reference": "8.x-1.2"
  2405. },
  2406. "dist": {
  2407. "type": "zip",
  2408. "url": "https://ftp.drupal.org/files/projects/config_devel-8.x-1.2.zip",
  2409. "reference": "8.x-1.2",
  2410. "shasum": "203bf299b1ad395d1451e22ea5a8f25ae462d880"
  2411. },
  2412. "require": {
  2413. "drupal/core": "~8.0"
  2414. },
  2415. "type": "drupal-module",
  2416. "extra": {
  2417. "branch-alias": {
  2418. "dev-1.x": "1.x-dev"
  2419. },
  2420. "drupal": {
  2421. "version": "8.x-1.2",
  2422. "datestamp": "1510843084",
  2423. "security-coverage": {
  2424. "status": "covered",
  2425. "message": "Covered by Drupal's security advisory policy"
  2426. }
  2427. }
  2428. },
  2429. "notification-url": "https://packages.drupal.org/8/downloads",
  2430. "license": [
  2431. "GPL-2.0+"
  2432. ],
  2433. "authors": [
  2434. {
  2435. "name": "alexpott",
  2436. "homepage": "https://www.drupal.org/user/157725"
  2437. },
  2438. {
  2439. "name": "benjy",
  2440. "homepage": "https://www.drupal.org/user/1852732"
  2441. },
  2442. {
  2443. "name": "chx",
  2444. "homepage": "https://www.drupal.org/user/9446"
  2445. },
  2446. {
  2447. "name": "joachim",
  2448. "homepage": "https://www.drupal.org/user/107701"
  2449. },
  2450. {
  2451. "name": "nedjo",
  2452. "homepage": "https://www.drupal.org/user/4481"
  2453. },
  2454. {
  2455. "name": "tim.plunkett",
  2456. "homepage": "https://www.drupal.org/user/241634"
  2457. },
  2458. {
  2459. "name": "vijaycs85",
  2460. "homepage": "https://www.drupal.org/user/93488"
  2461. }
  2462. ],
  2463. "description": "Helps developers work with configuration.",
  2464. "homepage": "https://www.drupal.org/project/config_devel",
  2465. "support": {
  2466. "source": "http://cgit.drupalcode.org/config_devel"
  2467. }
  2468. },
  2469. {
  2470. "name": "drupal/config_filter",
  2471. "version": "1.3.0",
  2472. "source": {
  2473. "type": "git",
  2474. "url": "https://git.drupal.org/project/config_filter",
  2475. "reference": "8.x-1.3"
  2476. },
  2477. "dist": {
  2478. "type": "zip",
  2479. "url": "https://ftp.drupal.org/files/projects/config_filter-8.x-1.3.zip",
  2480. "reference": "8.x-1.3",
  2481. "shasum": "56255a17c45dcbb0af713215885a8d74214d2ebc"
  2482. },
  2483. "require": {
  2484. "drupal/core": "~8.0"
  2485. },
  2486. "suggest": {
  2487. "drupal/config_split": "Split site configuration for different environments."
  2488. },
  2489. "type": "drupal-module",
  2490. "extra": {
  2491. "branch-alias": {
  2492. "dev-1.x": "1.x-dev"
  2493. },
  2494. "drupal": {
  2495. "version": "8.x-1.3",
  2496. "datestamp": "1537978080",
  2497. "security-coverage": {
  2498. "status": "covered",
  2499. "message": "Covered by Drupal's security advisory policy"
  2500. }
  2501. }
  2502. },
  2503. "notification-url": "https://packages.drupal.org/8/downloads",
  2504. "license": [
  2505. "GPL-2.0+"
  2506. ],
  2507. "authors": [
  2508. {
  2509. "name": "Fabian Bircher",
  2510. "homepage": "https://www.drupal.org/u/bircher",
  2511. "email": "opensource@fabianbircher.com",
  2512. "role": "Maintainer"
  2513. },
  2514. {
  2515. "name": "Nuvole Web",
  2516. "homepage": "http://nuvole.org",
  2517. "email": "info@nuvole.org",
  2518. "role": "Maintainer"
  2519. },
  2520. {
  2521. "name": "pescetti",
  2522. "homepage": "https://www.drupal.org/user/436244"
  2523. }
  2524. ],
  2525. "description": "Config Filter allows other modules to interact with a ConfigStorage through filter plugins.",
  2526. "homepage": "https://www.drupal.org/project/config_filter",
  2527. "keywords": [
  2528. "Drupal",
  2529. "configuration",
  2530. "configuration management"
  2531. ],
  2532. "support": {
  2533. "source": "http://cgit.drupalcode.org/config_filter",
  2534. "issues": "https://www.drupal.org/project/issues/config_filter",
  2535. "irc": "irc://irc.freenode.org/drupal-contribute"
  2536. }
  2537. },
  2538. {
  2539. "name": "drupal/config_ignore",
  2540. "version": "2.1.0",
  2541. "source": {
  2542. "type": "git",
  2543. "url": "https://git.drupal.org/project/config_ignore",
  2544. "reference": "8.x-2.1"
  2545. },
  2546. "dist": {
  2547. "type": "zip",
  2548. "url": "https://ftp.drupal.org/files/projects/config_ignore-8.x-2.1.zip",
  2549. "reference": "8.x-2.1",
  2550. "shasum": "07e00684930706632b3f2fc2a7433ffdae57cde7"
  2551. },
  2552. "require": {
  2553. "drupal/config_filter": "1.*",
  2554. "drupal/core": "~8.0"
  2555. },
  2556. "type": "drupal-module",
  2557. "extra": {
  2558. "branch-alias": {
  2559. "dev-2.x": "2.x-dev"
  2560. },
  2561. "drupal": {
  2562. "version": "8.x-2.1",
  2563. "datestamp": "1507706044",
  2564. "security-coverage": {
  2565. "status": "covered",
  2566. "message": "Covered by Drupal's security advisory policy"
  2567. }
  2568. }
  2569. },
  2570. "notification-url": "https://packages.drupal.org/8/downloads",
  2571. "license": [
  2572. "GPL-2.0+"
  2573. ],
  2574. "authors": [
  2575. {
  2576. "name": "Tommy Lynge Jørgensen",
  2577. "homepage": "https://www.drupal.org/u/tlyngej",
  2578. "email": "tlyngej@gmail.com",
  2579. "role": "Maintainer"
  2580. },
  2581. {
  2582. "name": "Fabian Bircher",
  2583. "homepage": "https://www.drupal.org/u/bircher",
  2584. "role": "Maintainer"
  2585. }
  2586. ],
  2587. "description": "Ignore certain configuration during import.",
  2588. "homepage": "http://drupal.org/project/config_ignore",
  2589. "support": {
  2590. "source": "http://cgit.drupalcode.org/config_ignore",
  2591. "issues": "http://drupal.org/project/config_ignore",
  2592. "irc": "irc://irc.freenode.org/drupal-contribute"
  2593. }
  2594. },
  2595. {
  2596. "name": "drupal/config_update",
  2597. "version": "1.5.0",
  2598. "source": {
  2599. "type": "git",
  2600. "url": "https://git.drupal.org/project/config_update",
  2601. "reference": "8.x-1.5"
  2602. },
  2603. "dist": {
  2604. "type": "zip",
  2605. "url": "https://ftp.drupal.org/files/projects/config_update-8.x-1.5.zip",
  2606. "reference": "8.x-1.5",
  2607. "shasum": "2f7ae5f90b1c0ab8edf84680d2651e81fab6a126"
  2608. },
  2609. "require": {
  2610. "drupal/core": "*"
  2611. },
  2612. "type": "drupal-module",
  2613. "extra": {
  2614. "branch-alias": {
  2615. "dev-1.x": "1.x-dev"
  2616. },
  2617. "drupal": {
  2618. "version": "8.x-1.5",
  2619. "datestamp": "1512587912",
  2620. "security-coverage": {
  2621. "status": "covered",
  2622. "message": "Covered by Drupal's security advisory policy"
  2623. }
  2624. }
  2625. },
  2626. "notification-url": "https://packages.drupal.org/8/downloads",
  2627. "license": [
  2628. "GPL-2.0-or-later"
  2629. ],
  2630. "authors": [
  2631. {
  2632. "name": "jhodgdon",
  2633. "homepage": "https://www.drupal.org/user/155601"
  2634. },
  2635. {
  2636. "name": "nedjo",
  2637. "homepage": "https://www.drupal.org/user/4481"
  2638. }
  2639. ],
  2640. "description": "Provides basic revert and update functionality for other modules",
  2641. "homepage": "https://www.drupal.org/project/config_update",
  2642. "support": {
  2643. "source": "http://cgit.drupalcode.org/config_update"
  2644. }
  2645. },
  2646. {
  2647. "name": "drupal/console",
  2648. "version": "1.8.0",
  2649. "source": {
  2650. "type": "git",
  2651. "url": "https://github.com/hechoendrupal/drupal-console.git",
  2652. "reference": "368bbfa44dc6b957eb4db01977f7c39e83032d18"
  2653. },
  2654. "dist": {
  2655. "type": "zip",
  2656. "url": "https://api.github.com/repos/hechoendrupal/drupal-console/zipball/368bbfa44dc6b957eb4db01977f7c39e83032d18",
  2657. "reference": "368bbfa44dc6b957eb4db01977f7c39e83032d18",
  2658. "shasum": ""
  2659. },
  2660. "require": {
  2661. "alchemy/zippy": "0.4.3",
  2662. "composer/installers": "~1.0",
  2663. "doctrine/annotations": "^1.2",
  2664. "doctrine/collections": "^1.3",
  2665. "drupal/console-core": "1.8.0",
  2666. "drupal/console-extend-plugin": "~0",
  2667. "guzzlehttp/guzzle": "~6.1",
  2668. "php": "^5.5.9 || ^7.0",
  2669. "psy/psysh": "0.6.* || ~0.8",
  2670. "symfony/css-selector": "~2.8|~3.0",
  2671. "symfony/dom-crawler": "~2.8|~3.0",
  2672. "symfony/http-foundation": "~2.8|~3.0"
  2673. },
  2674. "suggest": {
  2675. "symfony/thanks": "Thank your favorite PHP projects on Github using the CLI!",
  2676. "vlucas/phpdotenv": "Loads environment variables from .env to getenv(), $_ENV and $_SERVER automagically."
  2677. },
  2678. "bin": [
  2679. "bin/drupal"
  2680. ],
  2681. "type": "library",
  2682. "autoload": {
  2683. "psr-4": {
  2684. "Drupal\\Console\\": "src"
  2685. }
  2686. },
  2687. "notification-url": "https://packagist.org/downloads/",
  2688. "license": [
  2689. "GPL-2.0-or-later"
  2690. ],
  2691. "authors": [
  2692. {
  2693. "name": "David Flores",
  2694. "email": "dmousex@gmail.com",
  2695. "homepage": "http://dmouse.net"
  2696. },
  2697. {
  2698. "name": "Jesus Manuel Olivas",
  2699. "email": "jesus.olivas@gmail.com",
  2700. "homepage": "http://jmolivas.com"
  2701. },
  2702. {
  2703. "name": "Eduardo Garcia",
  2704. "email": "enzo@enzolutions.com",
  2705. "homepage": "http://enzolutions.com/"
  2706. },
  2707. {
  2708. "name": "Omar Aguirre",
  2709. "email": "omersguchigu@gmail.com"
  2710. },
  2711. {
  2712. "name": "Drupal Console Contributors",
  2713. "homepage": "https://github.com/hechoendrupal/drupal-console/graphs/contributors"
  2714. }
  2715. ],
  2716. "description": "The Drupal CLI. A tool to generate boilerplate code, interact with and debug Drupal.",
  2717. "homepage": "http://drupalconsole.com/",
  2718. "keywords": [
  2719. "console",
  2720. "development",
  2721. "drupal",
  2722. "symfony"
  2723. ],
  2724. "time": "2018-03-21T20:50:16+00:00"
  2725. },
  2726. {
  2727. "name": "drupal/console-core",
  2728. "version": "1.8.0",
  2729. "source": {
  2730. "type": "git",
  2731. "url": "https://github.com/hechoendrupal/drupal-console-core.git",
  2732. "reference": "bf1fb4a6f689377acec1694267f674178d28e5d1"
  2733. },
  2734. "dist": {
  2735. "type": "zip",
  2736. "url": "https://api.github.com/repos/hechoendrupal/drupal-console-core/zipball/bf1fb4a6f689377acec1694267f674178d28e5d1",
  2737. "reference": "bf1fb4a6f689377acec1694267f674178d28e5d1",
  2738. "shasum": ""
  2739. },
  2740. "require": {
  2741. "dflydev/dot-access-configuration": "^1.0",
  2742. "drupal/console-en": "1.8.0",
  2743. "php": "^5.5.9 || ^7.0",
  2744. "stecman/symfony-console-completion": "~0.7",
  2745. "symfony/config": "~2.8|~3.0",
  2746. "symfony/console": "~2.8|~3.0",
  2747. "symfony/debug": "~2.8|~3.0",
  2748. "symfony/dependency-injection": "~2.8|~3.0",
  2749. "symfony/event-dispatcher": "~2.8|~3.0",
  2750. "symfony/filesystem": "~2.8|~3.0",
  2751. "symfony/finder": "~2.8|~3.0",
  2752. "symfony/process": "~2.8|~3.0",
  2753. "symfony/translation": "~2.8|~3.0",
  2754. "symfony/yaml": "~2.8|~3.0",
  2755. "twig/twig": "^1.23.1",
  2756. "webflo/drupal-finder": "^1.0",
  2757. "webmozart/path-util": "^2.3"
  2758. },
  2759. "type": "library",
  2760. "autoload": {
  2761. "files": [
  2762. "src/functions.php"
  2763. ],
  2764. "psr-4": {
  2765. "Drupal\\Console\\Core\\": "src"
  2766. }
  2767. },
  2768. "notification-url": "https://packagist.org/downloads/",
  2769. "license": [
  2770. "GPL-2.0-or-later"
  2771. ],
  2772. "authors": [
  2773. {
  2774. "name": "David Flores",
  2775. "email": "dmousex@gmail.com",
  2776. "homepage": "http://dmouse.net"
  2777. },
  2778. {
  2779. "name": "Jesus Manuel Olivas",
  2780. "email": "jesus.olivas@gmail.com",
  2781. "homepage": "http://jmolivas.com"
  2782. },
  2783. {
  2784. "name": "Drupal Console Contributors",
  2785. "homepage": "https://github.com/hechoendrupal/DrupalConsole/graphs/contributors"
  2786. },
  2787. {
  2788. "name": "Eduardo Garcia",
  2789. "email": "enzo@enzolutions.com",
  2790. "homepage": "http://enzolutions.com/"
  2791. },
  2792. {
  2793. "name": "Omar Aguirre",
  2794. "email": "omersguchigu@gmail.com"
  2795. }
  2796. ],
  2797. "description": "Drupal Console Core",
  2798. "homepage": "http://drupalconsole.com/",
  2799. "keywords": [
  2800. "console",
  2801. "development",
  2802. "drupal",
  2803. "symfony"
  2804. ],
  2805. "time": "2018-03-21T19:33:23+00:00"
  2806. },
  2807. {
  2808. "name": "drupal/console-en",
  2809. "version": "1.8.0",
  2810. "source": {
  2811. "type": "git",
  2812. "url": "https://github.com/hechoendrupal/drupal-console-en.git",
  2813. "reference": "ea956ddffab04f519a89858810e5f695b9def92b"
  2814. },
  2815. "dist": {
  2816. "type": "zip",
  2817. "url": "https://api.github.com/repos/hechoendrupal/drupal-console-en/zipball/ea956ddffab04f519a89858810e5f695b9def92b",
  2818. "reference": "ea956ddffab04f519a89858810e5f695b9def92b",
  2819. "shasum": ""
  2820. },
  2821. "type": "drupal-console-language",
  2822. "notification-url": "https://packagist.org/downloads/",
  2823. "license": [
  2824. "GPL-2.0-or-later"
  2825. ],
  2826. "authors": [
  2827. {
  2828. "name": "David Flores",
  2829. "email": "dmousex@gmail.com",
  2830. "homepage": "http://dmouse.net"
  2831. },
  2832. {
  2833. "name": "Jesus Manuel Olivas",
  2834. "email": "jesus.olivas@gmail.com",
  2835. "homepage": "http://jmolivas.com"
  2836. },
  2837. {
  2838. "name": "Drupal Console Contributors",
  2839. "homepage": "https://github.com/hechoendrupal/DrupalConsole/graphs/contributors"
  2840. },
  2841. {
  2842. "name": "Eduardo Garcia",
  2843. "email": "enzo@enzolutions.com",
  2844. "homepage": "http://enzolutions.com/"
  2845. },
  2846. {
  2847. "name": "Omar Aguirre",
  2848. "email": "omersguchigu@gmail.com"
  2849. }
  2850. ],
  2851. "description": "Drupal Console English Language",
  2852. "homepage": "http://drupalconsole.com/",
  2853. "keywords": [
  2854. "console",
  2855. "development",
  2856. "drupal",
  2857. "symfony"
  2858. ],
  2859. "time": "2018-03-21T19:16:27+00:00"
  2860. },
  2861. {
  2862. "name": "drupal/console-extend-plugin",
  2863. "version": "0.9.2",
  2864. "source": {
  2865. "type": "git",
  2866. "url": "https://github.com/hechoendrupal/drupal-console-extend-plugin.git",
  2867. "reference": "f3bac233fd305359c33e96621443b3bd065555cc"
  2868. },
  2869. "dist": {
  2870. "type": "zip",
  2871. "url": "https://api.github.com/repos/hechoendrupal/drupal-console-extend-plugin/zipball/f3bac233fd305359c33e96621443b3bd065555cc",
  2872. "reference": "f3bac233fd305359c33e96621443b3bd065555cc",
  2873. "shasum": ""
  2874. },
  2875. "require": {
  2876. "composer-plugin-api": "^1.0",
  2877. "symfony/finder": "~2.7|~3.0",
  2878. "symfony/yaml": "~2.7|~3.0"
  2879. },
  2880. "type": "composer-plugin",
  2881. "extra": {
  2882. "class": "Drupal\\Console\\Composer\\Plugin\\Extender"
  2883. },
  2884. "autoload": {
  2885. "psr-4": {
  2886. "Drupal\\Console\\Composer\\Plugin\\": "src"
  2887. }
  2888. },
  2889. "notification-url": "https://packagist.org/downloads/",
  2890. "license": [
  2891. "GPL-2.0+"
  2892. ],
  2893. "authors": [
  2894. {
  2895. "name": "Jesus Manuel Olivas",
  2896. "email": "jesus.olivas@gmail.com"
  2897. }
  2898. ],
  2899. "description": "Drupal Console Extend Plugin",
  2900. "time": "2017-07-28T17:11:54+00:00"
  2901. },
  2902. {
  2903. "name": "drupal/content_lock",
  2904. "version": "1.0.0-alpha8",
  2905. "source": {
  2906. "type": "git",
  2907. "url": "https://git.drupal.org/project/content_lock",
  2908. "reference": "8.x-1.0-alpha8"
  2909. },
  2910. "dist": {
  2911. "type": "zip",
  2912. "url": "https://ftp.drupal.org/files/projects/content_lock-8.x-1.0-alpha8.zip",
  2913. "reference": "8.x-1.0-alpha8",
  2914. "shasum": "dbb5986dbfbe325eb869a4ac42b88b266dc089c6"
  2915. },
  2916. "require": {
  2917. "drupal/core": "~8"
  2918. },
  2919. "require-dev": {
  2920. "drupal/conflict": "dev-2.x",
  2921. "drupal/prefetch_cache": "dev-1.x"
  2922. },
  2923. "type": "drupal-module",
  2924. "extra": {
  2925. "branch-alias": {
  2926. "dev-1.x": "1.x-dev"
  2927. },
  2928. "drupal": {
  2929. "version": "8.x-1.0-alpha8",
  2930. "datestamp": "1520356080",
  2931. "security-coverage": {
  2932. "status": "not-covered",
  2933. "message": "Alpha releases are not covered by Drupal security advisories."
  2934. }
  2935. }
  2936. },
  2937. "notification-url": "https://packages.drupal.org/8/downloads",
  2938. "license": [
  2939. "GPL-2.0-or-later"
  2940. ],
  2941. "authors": [
  2942. {
  2943. "name": "Joseph Zhao",
  2944. "homepage": "https://www.drupal.org/user/1987218"
  2945. },
  2946. {
  2947. "name": "chr.fritsch",
  2948. "homepage": "https://www.drupal.org/user/2103716"
  2949. },
  2950. {
  2951. "name": "ergonlogic",
  2952. "homepage": "https://www.drupal.org/user/368613"
  2953. }
  2954. ],
  2955. "description": "Prevents multiple users from trying to edit a content entity simultaneously to prevent edit conflicts.",
  2956. "homepage": "https://www.drupal.org/project/content_lock",
  2957. "support": {
  2958. "source": "http://cgit.drupalcode.org/content_lock"
  2959. }
  2960. },
  2961. {
  2962. "name": "drupal/context",
  2963. "version": "4.0.0-beta2",
  2964. "source": {
  2965. "type": "git",
  2966. "url": "https://git.drupal.org/project/context",
  2967. "reference": "8.x-4.0-beta2"
  2968. },
  2969. "dist": {
  2970. "type": "zip",
  2971. "url": "https://ftp.drupal.org/files/projects/context-8.x-4.0-beta2.zip",
  2972. "reference": "8.x-4.0-beta2",
  2973. "shasum": "e41bc912e1ec73bc4d08a3cf730dc2405a9213d3"
  2974. },
  2975. "require": {
  2976. "drupal/core": "~8.0"
  2977. },
  2978. "type": "drupal-module",
  2979. "extra": {
  2980. "branch-alias": {
  2981. "dev-4.x": "4.x-dev"
  2982. },
  2983. "drupal": {
  2984. "version": "8.x-4.0-beta2",
  2985. "datestamp": "1505378944",
  2986. "security-coverage": {
  2987. "status": "not-covered",
  2988. "message": "Beta releases are not covered by Drupal security advisories."
  2989. }
  2990. }
  2991. },
  2992. "notification-url": "https://packages.drupal.org/8/downloads",
  2993. "license": [
  2994. "MIT"
  2995. ],
  2996. "authors": [
  2997. {
  2998. "name": "Christoffer Palm",
  2999. "homepage": "http://www.oddhill.se/",
  3000. "email": "christoffer.palm@oddhill.se",
  3001. "role": "Developer"
  3002. },
  3003. {
  3004. "name": "Steven Jones",
  3005. "homepage": "https://www.drupal.org/user/99644"
  3006. },
  3007. {
  3008. "name": "alex_b",
  3009. "homepage": "https://www.drupal.org/user/53995"
  3010. },
  3011. {
  3012. "name": "boshtian",
  3013. "homepage": "https://www.drupal.org/user/1773456"
  3014. },
  3015. {
  3016. "name": "colan",
  3017. "homepage": "https://www.drupal.org/user/58704"
  3018. },
  3019. {
  3020. "name": "emanaton",
  3021. "homepage": "https://www.drupal.org/user/120853"
  3022. },
  3023. {
  3024. "name": "febbraro",
  3025. "homepage": "https://www.drupal.org/user/43670"
  3026. },
  3027. {
  3028. "name": "fizk",
  3029. "homepage": "https://www.drupal.org/user/473174"
  3030. },
  3031. {
  3032. "name": "hass",
  3033. "homepage": "https://www.drupal.org/user/85918"
  3034. },
  3035. {
  3036. "name": "hefox",
  3037. "homepage": "https://www.drupal.org/user/426416"
  3038. },
  3039. {
  3040. "name": "hyrcan",
  3041. "homepage": "https://www.drupal.org/user/26618"
  3042. },
  3043. {
  3044. "name": "jmiccolis",
  3045. "homepage": "https://www.drupal.org/user/31731"
  3046. },
  3047. {
  3048. "name": "tekante",
  3049. "homepage": "https://www.drupal.org/user/640024"
  3050. },
  3051. {
  3052. "name": "yhahn",
  3053. "homepage": "https://www.drupal.org/user/264833"
  3054. }
  3055. ],
  3056. "description": "Manage contextual conditions and reactions for different portions of your site.",
  3057. "homepage": "https://github.com/oddhill/context",
  3058. "keywords": [
  3059. "Drupal",
  3060. "block",
  3061. "conditions",
  3062. "context",
  3063. "visibility"
  3064. ],
  3065. "support": {
  3066. "source": "https://github.com/oddhill/context",
  3067. "issues": "https://github.com/oddhill/context/issues",
  3068. "docs": "https://github.com/oddhill/context"
  3069. }
  3070. },
  3071. {
  3072. "name": "drupal/cshs",
  3073. "version": "dev-1.x",
  3074. "source": {
  3075. "type": "git",
  3076. "url": "https://git.drupal.org/project/cshs",
  3077. "reference": "c4a2deff253e24c83b14f960ce9dce49fa115f60"
  3078. },
  3079. "require": {
  3080. "drupal/core": "*"
  3081. },
  3082. "type": "drupal-module",
  3083. "extra": {
  3084. "branch-alias": {
  3085. "dev-1.x": "1.x-dev"
  3086. },
  3087. "drupal": {
  3088. "version": "8.x-1.0-beta4+4-dev",
  3089. "datestamp": "1512800285",
  3090. "security-coverage": {
  3091. "status": "not-covered",
  3092. "message": "Dev releases are not covered by Drupal security advisories."
  3093. }
  3094. }
  3095. },
  3096. "notification-url": "https://packages.drupal.org/8/downloads",
  3097. "license": [
  3098. "GPL-2.0-or-later"
  3099. ],
  3100. "authors": [
  3101. {
  3102. "name": "BR0kEN",
  3103. "homepage": "https://www.drupal.org/user/2802285"
  3104. },
  3105. {
  3106. "name": "purushotam.rai",
  3107. "homepage": "https://www.drupal.org/user/3193859"
  3108. },
  3109. {
  3110. "name": "valderama",
  3111. "homepage": "https://www.drupal.org/user/103634"
  3112. }
  3113. ],
  3114. "description": "A simple client-side hierarchical select widget for taxonomy terms.",
  3115. "homepage": "https://www.drupal.org/project/cshs",
  3116. "support": {
  3117. "source": "http://cgit.drupalcode.org/cshs"
  3118. },
  3119. "time": "2018-06-24T13:39:17+00:00"
  3120. },
  3121. {
  3122. "name": "drupal/ctools",
  3123. "version": "3.0.0",
  3124. "source": {
  3125. "type": "git",
  3126. "url": "https://git.drupal.org/project/ctools",
  3127. "reference": "8.x-3.0"
  3128. },
  3129. "dist": {
  3130. "type": "zip",
  3131. "url": "https://ftp.drupal.org/files/projects/ctools-8.x-3.0.zip",
  3132. "reference": "8.x-3.0",
  3133. "shasum": "302e869ecd1e59fe55663673999fee2ccac5daa8"
  3134. },
  3135. "require": {
  3136. "drupal/core": "~8.0"
  3137. },
  3138. "type": "drupal-module",
  3139. "extra": {
  3140. "branch-alias": {
  3141. "dev-3.x": "3.x-dev"
  3142. },
  3143. "drupal": {
  3144. "version": "8.x-3.0",
  3145. "datestamp": "1493401742",
  3146. "security-coverage": {
  3147. "status": "covered",
  3148. "message": "Covered by Drupal's security advisory policy"
  3149. }
  3150. }
  3151. },
  3152. "notification-url": "https://packages.drupal.org/8/downloads",
  3153. "license": [
  3154. "GPL-2.0+"
  3155. ],
  3156. "authors": [
  3157. {
  3158. "name": "Kris Vanderwater (EclipseGc)",
  3159. "homepage": "https://www.drupal.org/u/eclipsegc",
  3160. "role": "Maintainer"
  3161. },
  3162. {
  3163. "name": "Jakob Perry (japerry)",
  3164. "homepage": "https://www.drupal.org/u/japerry",
  3165. "role": "Maintainer"
  3166. },
  3167. {
  3168. "name": "Tim Plunkett (tim.plunkett)",
  3169. "homepage": "https://www.drupal.org/u/timplunkett",
  3170. "role": "Maintainer"
  3171. },
  3172. {
  3173. "name": "James Gilliland (neclimdul)",
  3174. "homepage": "https://www.drupal.org/u/neclimdul",
  3175. "role": "Maintainer"
  3176. },
  3177. {
  3178. "name": "Daniel Wehner (dawehner)",
  3179. "homepage": "https://www.drupal.org/u/dawehner",
  3180. "role": "Maintainer"
  3181. },
  3182. {
  3183. "name": "joelpittet",
  3184. "homepage": "https://www.drupal.org/user/160302"
  3185. },
  3186. {
  3187. "name": "merlinofchaos",
  3188. "homepage": "https://www.drupal.org/user/26979"
  3189. },
  3190. {
  3191. "name": "neclimdul",
  3192. "homepage": "https://www.drupal.org/user/48673"
  3193. },
  3194. {
  3195. "name": "sdboyer",
  3196. "homepage": "https://www.drupal.org/user/146719"
  3197. },
  3198. {
  3199. "name": "sun",
  3200. "homepage": "https://www.drupal.org/user/54136"
  3201. },
  3202. {
  3203. "name": "tim.plunkett",
  3204. "homepage": "https://www.drupal.org/user/241634"
  3205. }
  3206. ],
  3207. "description": "Provides a number of utility and helper APIs for Drupal developers and site builders.",
  3208. "homepage": "https://www.drupal.org/project/ctools",
  3209. "support": {
  3210. "source": "http://cgit.drupalcode.org/ctools",
  3211. "issues": "https://www.drupal.org/project/issues/ctools"
  3212. }
  3213. },
  3214. {
  3215. "name": "drupal/date_range_formatter",
  3216. "version": "3.1.0",
  3217. "source": {
  3218. "type": "git",
  3219. "url": "https://git.drupal.org/project/date_range_formatter",
  3220. "reference": "8.x-3.1"
  3221. },
  3222. "dist": {
  3223. "type": "zip",
  3224. "url": "https://ftp.drupal.org/files/projects/date_range_formatter-8.x-3.1.zip",
  3225. "reference": "8.x-3.1",
  3226. "shasum": "a98c511ac90eb92879235bc82a3aa643f7b5c173"
  3227. },
  3228. "require": {
  3229. "drupal/core": "*"
  3230. },
  3231. "type": "drupal-module",
  3232. "extra": {
  3233. "branch-alias": {
  3234. "dev-3.x": "3.x-dev"
  3235. },
  3236. "drupal": {
  3237. "version": "8.x-3.1",
  3238. "datestamp": "1502454544",
  3239. "security-coverage": {
  3240. "status": "covered",
  3241. "message": "Covered by Drupal's security advisory policy"
  3242. }
  3243. }
  3244. },
  3245. "notification-url": "https://packages.drupal.org/8/downloads",
  3246. "license": [
  3247. "GPL-2.0-or-later"
  3248. ],
  3249. "authors": [
  3250. {
  3251. "name": "Sudishth",
  3252. "homepage": "https://www.drupal.org/user/1440562"
  3253. },
  3254. {
  3255. "name": "maximpodorov",
  3256. "homepage": "https://www.drupal.org/user/515310"
  3257. }
  3258. ],
  3259. "description": "Formats date ranges.",
  3260. "homepage": "https://www.drupal.org/project/date_range_formatter",
  3261. "support": {
  3262. "source": "http://cgit.drupalcode.org/date_range_formatter"
  3263. }
  3264. },
  3265. {
  3266. "name": "drupal/devel",
  3267. "version": "1.2.0",
  3268. "source": {
  3269. "type": "git",
  3270. "url": "https://git.drupal.org/project/devel",
  3271. "reference": "8.x-1.2"
  3272. },
  3273. "dist": {
  3274. "type": "zip",
  3275. "url": "https://ftp.drupal.org/files/projects/devel-8.x-1.2.zip",
  3276. "reference": "8.x-1.2",
  3277. "shasum": "01f3349ef75f6e21fceef24be9d3d6506ca29647"
  3278. },
  3279. "require": {
  3280. "drupal/core": "~8.0"
  3281. },
  3282. "suggest": {
  3283. "symfony/var-dumper": "Pretty print complex values better with var-dumper available"
  3284. },
  3285. "type": "drupal-module",
  3286. "extra": {
  3287. "branch-alias": {
  3288. "dev-1.x": "1.x-dev"
  3289. },
  3290. "drupal": {
  3291. "version": "8.x-1.2",
  3292. "datestamp": "1507197844",
  3293. "security-coverage": {
  3294. "status": "covered",
  3295. "message": "Covered by Drupal's security advisory policy"
  3296. }
  3297. }
  3298. },
  3299. "notification-url": "https://packages.drupal.org/8/downloads",
  3300. "license": [
  3301. "GPL-2.0+"
  3302. ],
  3303. "authors": [
  3304. {
  3305. "name": "Moshe Weitzman",
  3306. "homepage": "https://github.com/weitzman",
  3307. "email": "weitzman@tejasa.com",
  3308. "role": "Maintainer"
  3309. },
  3310. {
  3311. "name": "Hans Salvisberg",
  3312. "homepage": "https://www.drupal.org/u/salvis",
  3313. "email": "drupal@salvisberg.com",
  3314. "role": "Maintainer"
  3315. },
  3316. {
  3317. "name": "Luca Lusso",
  3318. "homepage": "https://www.drupal.org/u/lussoluca",
  3319. "role": "Maintainer"
  3320. },
  3321. {
  3322. "name": "Marco (willzyx)",
  3323. "homepage": "https://www.drupal.org/u/willzyx",
  3324. "role": "Maintainer"
  3325. },
  3326. {
  3327. "name": "See contributors",
  3328. "homepage": "https://www.drupal.org/node/3236/committers"
  3329. },
  3330. {
  3331. "name": "salvis",
  3332. "homepage": "https://www.drupal.org/user/82964"
  3333. },
  3334. {
  3335. "name": "willzyx",
  3336. "homepage": "https://www.drupal.org/user/1043862"
  3337. }
  3338. ],
  3339. "description": "Various blocks, pages, and functions for developers.",
  3340. "homepage": "http://drupal.org/project/devel",
  3341. "support": {
  3342. "source": "http://cgit.drupalcode.org/devel",
  3343. "issues": "http://drupal.org/project/devel",
  3344. "irc": "irc://irc.freenode.org/drupal-contribute"
  3345. }
  3346. },
  3347. {
  3348. "name": "drupal/devel_generate",
  3349. "version": "1.2.0",
  3350. "require": {
  3351. "drupal/core": "~8.0",
  3352. "drupal/devel": "self.version"
  3353. },
  3354. "type": "metapackage",
  3355. "extra": {
  3356. "branch-alias": {
  3357. "dev-1.x": "1.x-dev"
  3358. },
  3359. "drupal": {
  3360. "version": "8.x-1.2",
  3361. "datestamp": "1507197844",
  3362. "security-coverage": {
  3363. "status": "covered",
  3364. "message": "Covered by Drupal's security advisory policy"
  3365. }
  3366. }
  3367. },
  3368. "notification-url": "https://packages.drupal.org/8/downloads",
  3369. "license": [
  3370. "GPL-2.0-or-later"
  3371. ],
  3372. "authors": [
  3373. {
  3374. "name": "catch",
  3375. "homepage": "https://www.drupal.org/user/35733"
  3376. },
  3377. {
  3378. "name": "juampynr",
  3379. "homepage": "https://www.drupal.org/user/682736"
  3380. },
  3381. {
  3382. "name": "lussoluca",
  3383. "homepage": "https://www.drupal.org/user/138068"
  3384. },
  3385. {
  3386. "name": "moshe weitzman",
  3387. "homepage": "https://www.drupal.org/user/23"
  3388. },
  3389. {
  3390. "name": "pcambra",
  3391. "homepage": "https://www.drupal.org/user/122101"
  3392. },
  3393. {
  3394. "name": "salvis",
  3395. "homepage": "https://www.drupal.org/user/82964"
  3396. },
  3397. {
  3398. "name": "willzyx",
  3399. "homepage": "https://www.drupal.org/user/1043862"
  3400. }
  3401. ],
  3402. "description": "Generate dummy users, nodes, menus, taxonomy terms...",
  3403. "homepage": "https://www.drupal.org/project/devel",
  3404. "support": {
  3405. "source": "http://cgit.drupalcode.org/devel"
  3406. }
  3407. },
  3408. {
  3409. "name": "drupal/domain",
  3410. "version": "1.0.0-alpha14",
  3411. "source": {
  3412. "type": "git",
  3413. "url": "https://git.drupal.org/project/domain",
  3414. "reference": "8.x-1.0-alpha14"
  3415. },
  3416. "dist": {
  3417. "type": "zip",
  3418. "url": "https://ftp.drupal.org/files/projects/domain-8.x-1.0-alpha14.zip",
  3419. "reference": "8.x-1.0-alpha14",
  3420. "shasum": "9889669ee19ae07fc44ab3bbe6fd7049e1317499"
  3421. },
  3422. "require": {
  3423. "drupal/core": "^8.5"
  3424. },
  3425. "require-dev": {
  3426. "drupal/domain_access": "*"
  3427. },
  3428. "type": "drupal-module",
  3429. "extra": {
  3430. "branch-alias": {
  3431. "dev-1.x": "1.x-dev"
  3432. },
  3433. "drupal": {
  3434. "version": "8.x-1.0-alpha14",
  3435. "datestamp": "1539981780",
  3436. "security-coverage": {
  3437. "status": "not-covered",
  3438. "message": "Alpha releases are not covered by Drupal security advisories."
  3439. }
  3440. }
  3441. },
  3442. "notification-url": "https://packages.drupal.org/8/downloads",
  3443. "license": [
  3444. "GPL-2.0-or-later"
  3445. ],
  3446. "authors": [
  3447. {
  3448. "name": "agentrickard",
  3449. "homepage": "https://www.drupal.org/user/20975"
  3450. },
  3451. {
  3452. "name": "nonsie",
  3453. "homepage": "https://www.drupal.org/user/29899"
  3454. }
  3455. ],
  3456. "description": "Creates domain records within a Drupal installation.",
  3457. "homepage": "https://www.drupal.org/project/domain",
  3458. "support": {
  3459. "source": "http://cgit.drupalcode.org/domain"
  3460. }
  3461. },
  3462. {
  3463. "name": "drupal/domain_alias",
  3464. "version": "1.0.0-alpha14",
  3465. "require": {
  3466. "drupal/core": "~8.0",
  3467. "drupal/domain": "self.version"
  3468. },
  3469. "type": "metapackage",
  3470. "extra": {
  3471. "branch-alias": {
  3472. "dev-1.x": "1.x-dev"
  3473. },
  3474. "drupal": {
  3475. "version": "8.x-1.0-alpha14",
  3476. "datestamp": "1539981780",
  3477. "security-coverage": {
  3478. "status": "not-covered",
  3479. "message": "Alpha releases are not covered by Drupal security advisories."
  3480. }
  3481. }
  3482. },
  3483. "notification-url": "https://packages.drupal.org/8/downloads",
  3484. "license": [
  3485. "GPL-2.0-or-later"
  3486. ],
  3487. "authors": [
  3488. {
  3489. "name": "agentrickard",
  3490. "homepage": "https://www.drupal.org/user/20975"
  3491. },
  3492. {
  3493. "name": "nonsie",
  3494. "homepage": "https://www.drupal.org/user/29899"
  3495. }
  3496. ],
  3497. "description": "Maps multiple host requests to a single domain record.",
  3498. "homepage": "https://www.drupal.org/project/domain",
  3499. "support": {
  3500. "source": "http://cgit.drupalcode.org/domain"
  3501. }
  3502. },
  3503. {
  3504. "name": "drupal/domain_config",
  3505. "version": "1.0.0-alpha14",
  3506. "require": {
  3507. "drupal/core": "~8.0",
  3508. "drupal/domain": "self.version"
  3509. },
  3510. "type": "metapackage",
  3511. "extra": {
  3512. "branch-alias": {
  3513. "dev-1.x": "1.x-dev"
  3514. },
  3515. "drupal": {
  3516. "version": "8.x-1.0-alpha14",
  3517. "datestamp": "1539981780",
  3518. "security-coverage": {
  3519. "status": "not-covered",
  3520. "message": "Alpha releases are not covered by Drupal security advisories."
  3521. }
  3522. }
  3523. },
  3524. "notification-url": "https://packages.drupal.org/8/downloads",
  3525. "license": [
  3526. "GPL-2.0-or-later"
  3527. ],
  3528. "authors": [
  3529. {
  3530. "name": "agentrickard",
  3531. "homepage": "https://www.drupal.org/user/20975"
  3532. },
  3533. {
  3534. "name": "nonsie",
  3535. "homepage": "https://www.drupal.org/user/29899"
  3536. }
  3537. ],
  3538. "description": "Allows domain specific configuration.",
  3539. "homepage": "https://www.drupal.org/project/domain",
  3540. "support": {
  3541. "source": "http://cgit.drupalcode.org/domain"
  3542. }
  3543. },
  3544. {
  3545. "name": "drupal/domain_site_settings",
  3546. "version": "1.3.0",
  3547. "source": {
  3548. "type": "git",
  3549. "url": "https://git.drupal.org/project/domain_site_settings",
  3550. "reference": "8.x-1.3"
  3551. },
  3552. "dist": {
  3553. "type": "zip",
  3554. "url": "https://ftp.drupal.org/files/projects/domain_site_settings-8.x-1.3.zip",
  3555. "reference": "8.x-1.3",
  3556. "shasum": "36ad22d8e31400f372b9e7f587578061b4fdc5db"
  3557. },
  3558. "require": {
  3559. "drupal/core": "~8.0",
  3560. "drupal/domain": "*",
  3561. "drupal/domain_config": "*"
  3562. },
  3563. "type": "drupal-module",
  3564. "extra": {
  3565. "branch-alias": {
  3566. "dev-1.x": "1.x-dev"
  3567. },
  3568. "drupal": {
  3569. "version": "8.x-1.3",
  3570. "datestamp": "1537684980",
  3571. "security-coverage": {
  3572. "status": "covered",
  3573. "message": "Covered by Drupal's security advisory policy"
  3574. }
  3575. }
  3576. },
  3577. "notification-url": "https://packages.drupal.org/8/downloads",
  3578. "license": [
  3579. "GPL-2.0+"
  3580. ],
  3581. "authors": [
  3582. {
  3583. "name": "aloknarwaria",
  3584. "homepage": "https://www.drupal.org/user/906640"
  3585. }
  3586. ],
  3587. "description": "Basic Site Setting for Domains.",
  3588. "homepage": "https://www.drupal.org/project/domain_site_settings",
  3589. "keywords": [
  3590. "Drupal"
  3591. ],
  3592. "support": {
  3593. "source": "http://cgit.drupalcode.org/domain_site_settings",
  3594. "issues": "https://www.drupal.org/project/issues/domain_site_settings"
  3595. }
  3596. },
  3597. {
  3598. "name": "drupal/email_registration",
  3599. "version": "1.0.0-rc5",
  3600. "source": {
  3601. "type": "git",
  3602. "url": "https://git.drupal.org/project/email_registration",
  3603. "reference": "8.x-1.0-rc5"
  3604. },
  3605. "dist": {
  3606. "type": "zip",
  3607. "url": "https://ftp.drupal.org/files/projects/email_registration-8.x-1.0-rc5.zip",
  3608. "reference": "8.x-1.0-rc5",
  3609. "shasum": "8e068ad37077bb3937150155ce13617d98b9b6b1"
  3610. },
  3611. "require": {
  3612. "drupal/core": "*"
  3613. },
  3614. "type": "drupal-module",
  3615. "extra": {
  3616. "branch-alias": {
  3617. "dev-1.x": "1.x-dev"
  3618. },
  3619. "drupal": {
  3620. "version": "8.x-1.0-rc5",
  3621. "datestamp": "1491318182",
  3622. "security-coverage": {
  3623. "status": "not-covered",
  3624. "message": "RC releases are not covered by Drupal security advisories."
  3625. }
  3626. }
  3627. },
  3628. "notification-url": "https://packages.drupal.org/8/downloads",
  3629. "license": [
  3630. "GPL-2.0-or-later"
  3631. ],
  3632. "authors": [
  3633. {
  3634. "name": "Chris Herberte",
  3635. "homepage": "https://www.drupal.org/user/1171"
  3636. },
  3637. {
  3638. "name": "andypost",
  3639. "homepage": "https://www.drupal.org/user/118908"
  3640. },
  3641. {
  3642. "name": "greggles",
  3643. "homepage": "https://www.drupal.org/user/36762"
  3644. },
  3645. {
  3646. "name": "moshe weitzman",
  3647. "homepage": "https://www.drupal.org/user/23"
  3648. }
  3649. ],
  3650. "description": "Allows users to register with an e-mail address as their username.",
  3651. "homepage": "https://www.drupal.org/project/email_registration",
  3652. "support": {
  3653. "source": "http://cgit.drupalcode.org/email_registration"
  3654. }
  3655. },
  3656. {
  3657. "name": "drupal/embed",
  3658. "version": "1.0.0",
  3659. "source": {
  3660. "type": "git",
  3661. "url": "https://git.drupal.org/project/embed",
  3662. "reference": "8.x-1.0"
  3663. },
  3664. "dist": {
  3665. "type": "zip",
  3666. "url": "https://ftp.drupal.org/files/projects/embed-8.x-1.0.zip",
  3667. "reference": "8.x-1.0",
  3668. "shasum": "cc746ad807260e01c7788dd82110dcebbb4d678a"
  3669. },
  3670. "require": {
  3671. "drupal/core": "~8.0"
  3672. },
  3673. "type": "drupal-module",
  3674. "extra": {
  3675. "branch-alias": {
  3676. "dev-1.x": "1.x-dev"
  3677. },
  3678. "drupal": {
  3679. "version": "8.x-1.0",
  3680. "datestamp": "1490755685",
  3681. "security-coverage": {
  3682. "status": "covered",
  3683. "message": "Covered by Drupal's security advisory policy"
  3684. }
  3685. }
  3686. },
  3687. "notification-url": "https://packages.drupal.org/8/downloads",
  3688. "license": [
  3689. "GPL-2.0+"
  3690. ],
  3691. "authors": [
  3692. {
  3693. "name": "Dave Reid",
  3694. "homepage": "https://www.drupal.org/user/53892"
  3695. },
  3696. {
  3697. "name": "Devin Carlson",
  3698. "homepage": "https://www.drupal.org/user/290182"
  3699. },
  3700. {
  3701. "name": "Drupal Media Team",
  3702. "homepage": "https://www.drupal.org/user/3260690"
  3703. },
  3704. {
  3705. "name": "cs_shadow",
  3706. "homepage": "https://www.drupal.org/user/2828287"
  3707. },
  3708. {
  3709. "name": "slashrsm",
  3710. "homepage": "https://www.drupal.org/user/744628"
  3711. }
  3712. ],
  3713. "description": "Provide a framework for various different types of embeds in WYSIWYG editors, common functionality, interfaces, and standards.",
  3714. "homepage": "https://www.drupal.org/project/embed",
  3715. "support": {
  3716. "source": "http://cgit.drupalcode.org/embed",
  3717. "issues": "https://www.drupal.org/project/issues/embed",
  3718. "irc": "irc://irc.freenode.org/drupal-media"
  3719. }
  3720. },
  3721. {
  3722. "name": "drupal/entity",
  3723. "version": "1.0.0-rc1",
  3724. "source": {
  3725. "type": "git",
  3726. "url": "https://git.drupal.org/project/entity",
  3727. "reference": "8.x-1.0-rc1"
  3728. },
  3729. "dist": {
  3730. "type": "zip",
  3731. "url": "https://ftp.drupal.org/files/projects/entity-8.x-1.0-rc1.zip",
  3732. "reference": "8.x-1.0-rc1",
  3733. "shasum": "f2dcd7afd0d36b6f261b10a204057a5c801ad20b"
  3734. },
  3735. "require": {
  3736. "drupal/core": "^8.6"
  3737. },
  3738. "type": "drupal-module",
  3739. "extra": {
  3740. "branch-alias": {
  3741. "dev-1.x": "1.x-dev"
  3742. },
  3743. "drupal": {
  3744. "version": "8.x-1.0-rc1",
  3745. "datestamp": "1539272769",
  3746. "security-coverage": {
  3747. "status": "not-covered",
  3748. "message": "RC releases are not covered by Drupal security advisories."
  3749. }
  3750. }
  3751. },
  3752. "notification-url": "https://packages.drupal.org/8/downloads",
  3753. "license": [
  3754. "GPL-2.0+"
  3755. ],
  3756. "authors": [
  3757. {
  3758. "name": "Berdir",
  3759. "homepage": "https://www.drupal.org/user/214652"
  3760. },
  3761. {
  3762. "name": "bojanz",
  3763. "homepage": "https://www.drupal.org/user/86106"
  3764. },
  3765. {
  3766. "name": "dawehner",
  3767. "homepage": "https://www.drupal.org/user/99340"
  3768. },
  3769. {
  3770. "name": "dixon_",
  3771. "homepage": "https://www.drupal.org/user/239911"
  3772. },
  3773. {
  3774. "name": "fago",
  3775. "homepage": "https://www.drupal.org/user/16747"
  3776. }
  3777. ],
  3778. "description": "Provides expanded entity APIs, which will be moved to Drupal core one day.",
  3779. "homepage": "http://drupal.org/project/entity",
  3780. "support": {
  3781. "source": "http://cgit.drupalcode.org/entity"
  3782. }
  3783. },
  3784. {
  3785. "name": "drupal/entity_browser",
  3786. "version": "2.0.0",
  3787. "source": {
  3788. "type": "git",
  3789. "url": "https://git.drupal.org/project/entity_browser",
  3790. "reference": "8.x-2.0"
  3791. },
  3792. "dist": {
  3793. "type": "zip",
  3794. "url": "https://ftp.drupal.org/files/projects/entity_browser-8.x-2.0.zip",
  3795. "reference": "8.x-2.0",
  3796. "shasum": "683a7a252c947433c7b78bb838d6d8973c13cf77"
  3797. },
  3798. "require": {
  3799. "drupal/core": "~8.0"
  3800. },
  3801. "require-dev": {
  3802. "drupal/ctools": "*",
  3803. "drupal/inline_entity_form": "*",
  3804. "drupal/paragraphs": "*",
  3805. "drupal/token": "*"
  3806. },
  3807. "type": "drupal-module",
  3808. "extra": {
  3809. "branch-alias": {
  3810. "dev-2.x": "2.x-dev",
  3811. "dev-8.x-1.x": "8.1.x-dev"
  3812. },
  3813. "drupal": {
  3814. "version": "8.x-2.0",
  3815. "datestamp": "1536328684",
  3816. "security-coverage": {
  3817. "status": "covered",
  3818. "message": "Covered by Drupal's security advisory policy"
  3819. }
  3820. }
  3821. },
  3822. "notification-url": "https://packages.drupal.org/8/downloads",
  3823. "license": [
  3824. "GPL-2.0+"
  3825. ],
  3826. "authors": [
  3827. {
  3828. "name": "Janez Urevc",
  3829. "homepage": "https://github.com/slashrsm",
  3830. "role": "Maintainer"
  3831. },
  3832. {
  3833. "name": "Primoz Hmeljak",
  3834. "homepage": "https://github.com/primsi",
  3835. "role": "Maintainer"
  3836. },
  3837. {
  3838. "name": "See other contributors",
  3839. "homepage": "https://www.drupal.org/node/1943336/committers",
  3840. "role": "contributor"
  3841. },
  3842. {
  3843. "name": "Primsi",
  3844. "homepage": "https://www.drupal.org/user/282629"
  3845. },
  3846. {
  3847. "name": "marcingy",
  3848. "homepage": "https://www.drupal.org/user/77320"
  3849. },
  3850. {
  3851. "name": "samuel.mortenson",
  3852. "homepage": "https://www.drupal.org/user/2582268"
  3853. },
  3854. {
  3855. "name": "slashrsm",
  3856. "homepage": "https://www.drupal.org/user/744628"
  3857. }
  3858. ],
  3859. "description": "Entity browsing and selecting component.",
  3860. "homepage": "http://drupal.org/project/entity_browser",
  3861. "support": {
  3862. "source": "http://cgit.drupalcode.org/entity_browser",
  3863. "issues": "http://drupal.org/project/issues/entity_browser",
  3864. "irc": "irc://irc.freenode.org/drupal-contribute"
  3865. }
  3866. },
  3867. {
  3868. "name": "drupal/entity_browser_enhanced",
  3869. "version": "1.0.0-rc3",
  3870. "source": {
  3871. "type": "git",
  3872. "url": "https://git.drupal.org/project/entity_browser_enhanced",
  3873. "reference": "8.x-1.0-rc3"
  3874. },
  3875. "dist": {
  3876. "type": "zip",
  3877. "url": "https://ftp.drupal.org/files/projects/entity_browser_enhanced-8.x-1.0-rc3.zip",
  3878. "reference": "8.x-1.0-rc3",
  3879. "shasum": "041a93dac5ec9f74a8834faee60995c4db7d1e65"
  3880. },
  3881. "require": {
  3882. "drupal/core": "~8.0",
  3883. "drupal/entity_browser": "*"
  3884. },
  3885. "type": "drupal-module",
  3886. "extra": {
  3887. "branch-alias": {
  3888. "dev-1.x": "1.x-dev",
  3889. "dev-8.x-1.x": "8.1.x-dev"
  3890. },
  3891. "drupal": {
  3892. "version": "8.x-1.0-rc3",
  3893. "datestamp": "1528884525",
  3894. "security-coverage": {
  3895. "status": "not-covered",
  3896. "message": "RC releases are not covered by Drupal security advisories."
  3897. }
  3898. }
  3899. },
  3900. "notification-url": "https://packages.drupal.org/8/downloads",
  3901. "license": [
  3902. "GPL-2.0-or-later"
  3903. ],
  3904. "authors": [
  3905. {
  3906. "name": "Vardot",
  3907. "homepage": "https://www.drupal.org/vardot",
  3908. "role": "Maintainer"
  3909. },
  3910. {
  3911. "name": "RajabNatshah",
  3912. "homepage": "https://www.drupal.org/user/1414312"
  3913. }
  3914. ],
  3915. "description": "Provides some behavior and style enhancements to Entity Browsers, specifically for multiselect and image/media browsers.",
  3916. "homepage": "https://www.drupal.org/project/entity_browser_enhanced",
  3917. "support": {
  3918. "source": "http://cgit.drupalcode.org/entity_browser_enhanced",
  3919. "issues": "https://www.drupal.org/project/issues/entity_browser_enhanced"
  3920. }
  3921. },
  3922. {
  3923. "name": "drupal/entity_clone",
  3924. "version": "1.0.0-alpha2",
  3925. "source": {
  3926. "type": "git",
  3927. "url": "https://git.drupal.org/project/entity_clone",
  3928. "reference": "8.x-1.0-alpha2"
  3929. },
  3930. "dist": {
  3931. "type": "zip",
  3932. "url": "https://ftp.drupal.org/files/projects/entity_clone-8.x-1.0-alpha2.zip",
  3933. "reference": "8.x-1.0-alpha2",
  3934. "shasum": "55a533e56853b78f949796040ee68881a68917b5"
  3935. },
  3936. "require": {
  3937. "drupal/core": "~8.0"
  3938. },
  3939. "type": "drupal-module",
  3940. "extra": {
  3941. "branch-alias": {
  3942. "dev-1.x": "1.x-dev"
  3943. },
  3944. "drupal": {
  3945. "version": "8.x-1.0-alpha2",
  3946. "datestamp": "1513145285",
  3947. "security-coverage": {
  3948. "status": "not-covered",
  3949. "message": "Alpha releases are not covered by Drupal security advisories."
  3950. }
  3951. }
  3952. },
  3953. "notification-url": "https://packages.drupal.org/8/downloads",
  3954. "license": [
  3955. "GPL-2.0-or-later"
  3956. ],
  3957. "authors": [
  3958. {
  3959. "name": "vpeltot",
  3960. "homepage": "https://www.drupal.org/user/1361586"
  3961. }
  3962. ],
  3963. "description": "Add a clone action for all entities",
  3964. "homepage": "https://www.drupal.org/project/entity_clone",
  3965. "support": {
  3966. "source": "http://cgit.drupalcode.org/entity_clone"
  3967. }
  3968. },
  3969. {
  3970. "name": "drupal/examples",
  3971. "version": "dev-1.x",
  3972. "source": {
  3973. "type": "git",
  3974. "url": "https://git.drupal.org/project/examples",
  3975. "reference": "0be75808520a7c921ad7c87ac1cc87d716f5dc51"
  3976. },
  3977. "require": {
  3978. "drupal/core": "*"
  3979. },
  3980. "require-dev": {
  3981. "drupal/stream_wrapper_example": "*"
  3982. },
  3983. "suggest": {
  3984. "drupal/devel": "Some modules will be able to pretty-print PHP with this module."
  3985. },
  3986. "type": "drupal-module",
  3987. "extra": {
  3988. "branch-alias": {
  3989. "dev-1.x": "1.x-dev"
  3990. },
  3991. "drupal": {
  3992. "version": "8.x-1.x-dev",
  3993. "datestamp": "1536200285",
  3994. "security-coverage": {
  3995. "status": "not-covered",
  3996. "message": "Project has not opted into security advisory coverage!"
  3997. }
  3998. }
  3999. },
  4000. "notification-url": "https://packages.drupal.org/8/downloads",
  4001. "license": [
  4002. "GPL-2.0+"
  4003. ],
  4004. "authors": [
  4005. {
  4006. "name": "Dave Reid",
  4007. "homepage": "https://www.drupal.org/user/53892"
  4008. },
  4009. {
  4010. "name": "Itangalo",
  4011. "homepage": "https://www.drupal.org/user/153998"
  4012. },
  4013. {
  4014. "name": "Mile23",
  4015. "homepage": "https://www.drupal.org/user/116231"
  4016. },
  4017. {
  4018. "name": "Torenware",
  4019. "homepage": "https://www.drupal.org/user/18784"
  4020. },
  4021. {
  4022. "name": "add1sun",
  4023. "homepage": "https://www.drupal.org/user/65088"
  4024. },
  4025. {
  4026. "name": "cyberswat",
  4027. "homepage": "https://www.drupal.org/user/27802"
  4028. },
  4029. {
  4030. "name": "ilo",
  4031. "homepage": "https://www.drupal.org/user/118449"
  4032. },
  4033. {
  4034. "name": "jhodgdon",
  4035. "homepage": "https://www.drupal.org/user/155601"
  4036. },
  4037. {
  4038. "name": "jn2",
  4039. "homepage": "https://www.drupal.org/user/1001014"
  4040. },
  4041. {
  4042. "name": "katbailey",
  4043. "homepage": "https://www.drupal.org/user/172987"
  4044. },
  4045. {
  4046. "name": "linclark",
  4047. "homepage": "https://www.drupal.org/user/396253"
  4048. },
  4049. {
  4050. "name": "marvil07",
  4051. "homepage": "https://www.drupal.org/user/132175"
  4052. },
  4053. {
  4054. "name": "mikl",
  4055. "homepage": "https://www.drupal.org/user/58679"
  4056. },
  4057. {
  4058. "name": "rfay",
  4059. "homepage": "https://www.drupal.org/user/30906"
  4060. },
  4061. {
  4062. "name": "socketwench",
  4063. "homepage": "https://www.drupal.org/user/65793"
  4064. },
  4065. {
  4066. "name": "yched",
  4067. "homepage": "https://www.drupal.org/user/39567"
  4068. }
  4069. ],
  4070. "description": "The Examples for Developers project aims to provide high-quality, well-documented API examples for a broad range of Drupal core functionality.",
  4071. "homepage": "https://www.drupal.org/project/examples",
  4072. "support": {
  4073. "source": "http://cgit.drupalcode.org/examples",
  4074. "issues": "https://www.drupal.org/project/issues/examples",
  4075. "documentation": "https://api.drupal.org/api/examples"
  4076. },
  4077. "time": "2018-09-10T23:01:03+00:00"
  4078. },
  4079. {
  4080. "name": "drupal/extlink",
  4081. "version": "1.1.0",
  4082. "source": {
  4083. "type": "git",
  4084. "url": "https://git.drupal.org/project/extlink",
  4085. "reference": "8.x-1.1"
  4086. },
  4087. "dist": {
  4088. "type": "zip",
  4089. "url": "https://ftp.drupal.org/files/projects/extlink-8.x-1.1.zip",
  4090. "reference": "8.x-1.1",
  4091. "shasum": "0894f1cd12e2e1aa6b00ea4a6dd5e7234eb2b2b2"
  4092. },
  4093. "require": {
  4094. "drupal/core": "~8.0"
  4095. },
  4096. "type": "drupal-module",
  4097. "extra": {
  4098. "branch-alias": {
  4099. "dev-1.x": "1.x-dev"
  4100. },
  4101. "drupal": {
  4102. "version": "8.x-1.1",
  4103. "datestamp": "1524232684",
  4104. "security-coverage": {
  4105. "status": "covered",
  4106. "message": "Covered by Drupal's security advisory policy"
  4107. }
  4108. }
  4109. },
  4110. "notification-url": "https://packages.drupal.org/8/downloads",
  4111. "license": [
  4112. "GPL-2.0-or-later"
  4113. ],
  4114. "authors": [
  4115. {
  4116. "name": "elachlan",
  4117. "homepage": "https://www.drupal.org/user/1021502"
  4118. },
  4119. {
  4120. "name": "jjeff",
  4121. "homepage": "https://www.drupal.org/user/17190"
  4122. },
  4123. {
  4124. "name": "quicksketch",
  4125. "homepage": "https://www.drupal.org/user/35821"
  4126. }
  4127. ],
  4128. "description": "Modify behavior and appearance of external links.",
  4129. "homepage": "https://www.drupal.org/project/extlink",
  4130. "support": {
  4131. "source": "http://cgit.drupalcode.org/extlink"
  4132. }
  4133. },
  4134. {
  4135. "name": "drupal/field_group",
  4136. "version": "1.0.0",
  4137. "source": {
  4138. "type": "git",
  4139. "url": "https://git.drupal.org/project/field_group",
  4140. "reference": "8.x-1.0"
  4141. },
  4142. "dist": {
  4143. "type": "zip",
  4144. "url": "https://ftp.drupal.org/files/projects/field_group-8.x-1.0.zip",
  4145. "reference": "8.x-1.0",
  4146. "shasum": "e8aa3fae5c3c5dec84644bb577996938d638a611"
  4147. },
  4148. "require": {
  4149. "drupal/core": "*"
  4150. },
  4151. "type": "drupal-module",
  4152. "extra": {
  4153. "branch-alias": {
  4154. "dev-1.x": "1.x-dev"
  4155. },
  4156. "drupal": {
  4157. "version": "8.x-1.0",
  4158. "datestamp": "1510352885",
  4159. "security-coverage": {
  4160. "status": "covered",
  4161. "message": "Covered by Drupal's security advisory policy"
  4162. }
  4163. }
  4164. },
  4165. "notification-url": "https://packages.drupal.org/8/downloads",
  4166. "license": [
  4167. "GPL-2.0+"
  4168. ],
  4169. "authors": [
  4170. {
  4171. "name": "Hydra",
  4172. "homepage": "https://www.drupal.org/user/647364"
  4173. },
  4174. {
  4175. "name": "Stalski",
  4176. "homepage": "https://www.drupal.org/user/322618"
  4177. },
  4178. {
  4179. "name": "jyve",
  4180. "homepage": "https://www.drupal.org/user/591438"
  4181. },
  4182. {
  4183. "name": "swentel",
  4184. "homepage": "https://www.drupal.org/user/107403"
  4185. },
  4186. {
  4187. "name": "zuuperman",
  4188. "homepage": "https://www.drupal.org/user/361625"
  4189. }
  4190. ],
  4191. "description": "Provides the field_group module.",
  4192. "homepage": "https://www.drupal.org/project/field_group",
  4193. "support": {
  4194. "source": "http://cgit.drupalcode.org/field_group"
  4195. }
  4196. },
  4197. {
  4198. "name": "drupal/file_mdm",
  4199. "version": "1.1.0",
  4200. "source": {
  4201. "type": "git",
  4202. "url": "https://git.drupal.org/project/file_mdm",
  4203. "reference": "8.x-1.1"
  4204. },
  4205. "dist": {
  4206. "type": "zip",
  4207. "url": "https://ftp.drupal.org/files/projects/file_mdm-8.x-1.1.zip",
  4208. "reference": "8.x-1.1",
  4209. "shasum": "7f354aec6f89e3141c2aa1fb3747ad5d4578c13f"
  4210. },
  4211. "require": {
  4212. "drupal/core": "~8.0",
  4213. "lsolesen/pel": "0.9.6",
  4214. "phenx/php-font-lib": "0.5",
  4215. "php": ">=5.6"
  4216. },
  4217. "require-dev": {
  4218. "drupal/image_effects": "*"
  4219. },
  4220. "type": "drupal-module",
  4221. "extra": {
  4222. "branch-alias": {
  4223. "dev-1.x": "1.x-dev"
  4224. },
  4225. "drupal": {
  4226. "version": "8.x-1.1",
  4227. "datestamp": "1488273785",
  4228. "security-coverage": {
  4229. "status": "covered",
  4230. "message": "Covered by Drupal's security advisory policy"
  4231. }
  4232. }
  4233. },
  4234. "notification-url": "https://packages.drupal.org/8/downloads",
  4235. "license": [
  4236. "GPL-2.0-or-later"
  4237. ],
  4238. "authors": [
  4239. {
  4240. "name": "mondrake",
  4241. "homepage": "https://www.drupal.org/user/1307444"
  4242. }
  4243. ],
  4244. "description": "Provides a service to manage file metadata.",
  4245. "homepage": "https://www.drupal.org/project/file_mdm",
  4246. "support": {
  4247. "source": "http://cgit.drupalcode.org/file_mdm"
  4248. }
  4249. },
  4250. {
  4251. "name": "drupal/file_mdm_exif",
  4252. "version": "1.1.0",
  4253. "require": {
  4254. "drupal/core": "~8.0",
  4255. "drupal/file_mdm": "self.version"
  4256. },
  4257. "require-dev": {
  4258. "drupal/image_effects": "*"
  4259. },
  4260. "type": "metapackage",
  4261. "extra": {
  4262. "branch-alias": {
  4263. "dev-1.x": "1.x-dev"
  4264. },
  4265. "drupal": {
  4266. "version": "8.x-1.1",
  4267. "datestamp": "1488273785",
  4268. "security-coverage": {
  4269. "status": "covered",
  4270. "message": "Covered by Drupal's security advisory policy"
  4271. }
  4272. }
  4273. },
  4274. "notification-url": "https://packages.drupal.org/8/downloads",
  4275. "license": [
  4276. "GPL-2.0-or-later"
  4277. ],
  4278. "authors": [
  4279. {
  4280. "name": "mondrake",
  4281. "homepage": "https://www.drupal.org/user/1307444"
  4282. }
  4283. ],
  4284. "description": "Provides a file metadata plugin for EXIF image information.",
  4285. "homepage": "https://www.drupal.org/project/file_mdm",
  4286. "support": {
  4287. "source": "http://cgit.drupalcode.org/file_mdm"
  4288. }
  4289. },
  4290. {
  4291. "name": "drupal/filefield_sources",
  4292. "version": "dev-1.x",
  4293. "source": {
  4294. "type": "git",
  4295. "url": "https://git.drupal.org/project/filefield_sources",
  4296. "reference": "b19c6a839804f47587828d4a50e29e0720fa4c08"
  4297. },
  4298. "require": {
  4299. "drupal/core": "*"
  4300. },
  4301. "type": "drupal-module",
  4302. "extra": {
  4303. "branch-alias": {
  4304. "dev-1.x": "1.x-dev"
  4305. },
  4306. "drupal": {
  4307. "version": "8.x-1.x-dev",
  4308. "datestamp": "1487711283",
  4309. "security-coverage": {
  4310. "status": "not-covered",
  4311. "message": "Dev releases are not covered by Drupal security advisories."
  4312. }
  4313. }
  4314. },
  4315. "notification-url": "https://packages.drupal.org/8/downloads",
  4316. "license": [
  4317. "GPL-2.0-or-later"
  4318. ],
  4319. "authors": [
  4320. {
  4321. "name": "profak",
  4322. "homepage": "https://www.drupal.org/user/782534"
  4323. },
  4324. {
  4325. "name": "quicksketch",
  4326. "homepage": "https://www.drupal.org/user/35821"
  4327. }
  4328. ],
  4329. "description": "Extends File fields to allow referencing of existing files, remote files, and server files.",
  4330. "homepage": "https://www.drupal.org/project/filefield_sources",
  4331. "support": {
  4332. "source": "http://cgit.drupalcode.org/filefield_sources"
  4333. },
  4334. "time": "2017-02-21T21:07:00+00:00"
  4335. },
  4336. {
  4337. "name": "drupal/filter_perms",
  4338. "version": "dev-1.x",
  4339. "source": {
  4340. "type": "git",
  4341. "url": "https://git.drupal.org/project/filter_perms",
  4342. "reference": "f491dd73fd876f6de0b2252c6b9bf18e0e27b357"
  4343. },
  4344. "require": {
  4345. "drupal/core": "*"
  4346. },
  4347. "type": "drupal-module",
  4348. "extra": {
  4349. "branch-alias": {
  4350. "dev-1.x": "1.x-dev"
  4351. },
  4352. "drupal": {
  4353. "version": "8.x-1.x-dev",
  4354. "datestamp": "1469645939",
  4355. "security-coverage": {
  4356. "status": "not-covered",
  4357. "message": "Dev releases are not covered by Drupal security advisories."
  4358. }
  4359. }
  4360. },
  4361. "notification-url": "https://packages.drupal.org/8/downloads",
  4362. "license": [
  4363. "GPL-2.0-or-later"
  4364. ],
  4365. "authors": [
  4366. {
  4367. "name": "cYu",
  4368. "homepage": "https://www.drupal.org/user/202205"
  4369. },
  4370. {
  4371. "name": "deekayen",
  4372. "homepage": "https://www.drupal.org/user/972"
  4373. },
  4374. {
  4375. "name": "willzyx",
  4376. "homepage": "https://www.drupal.org/user/1043862"
  4377. }
  4378. ],
  4379. "description": "Provides role and module filters to simplify the user permissions page.",
  4380. "homepage": "https://www.drupal.org/project/filter_perms",
  4381. "support": {
  4382. "source": "http://cgit.drupalcode.org/filter_perms"
  4383. },
  4384. "time": "2016-07-27T19:01:11+00:00"
  4385. },
  4386. {
  4387. "name": "drupal/honeypot",
  4388. "version": "1.29.0",
  4389. "source": {
  4390. "type": "git",
  4391. "url": "https://git.drupal.org/project/honeypot",
  4392. "reference": "8.x-1.29"
  4393. },
  4394. "dist": {
  4395. "type": "zip",
  4396. "url": "https://ftp.drupal.org/files/projects/honeypot-8.x-1.29.zip",
  4397. "reference": "8.x-1.29",
  4398. "shasum": "029d9e068d8f6a5db52434c27dc71bd3f06da487"
  4399. },
  4400. "require": {
  4401. "drupal/core": "~8.0"
  4402. },
  4403. "type": "drupal-module",
  4404. "extra": {
  4405. "branch-alias": {
  4406. "dev-1.x": "1.x-dev"
  4407. },
  4408. "drupal": {
  4409. "version": "8.x-1.29",
  4410. "datestamp": "1536179280",
  4411. "security-coverage": {
  4412. "status": "covered",
  4413. "message": "Covered by Drupal's security advisory policy"
  4414. }
  4415. }
  4416. },
  4417. "notification-url": "https://packages.drupal.org/8/downloads",
  4418. "license": [
  4419. "GPL-2.0+"
  4420. ],
  4421. "authors": [
  4422. {
  4423. "name": "Jeff Geerling",
  4424. "homepage": "https://www.drupal.org/user/389011",
  4425. "email": "geerlingguy@mac.com"
  4426. }
  4427. ],
  4428. "description": "Mitigates spam form submissions using the honeypot method.",
  4429. "homepage": "https://www.drupal.org/project/honeypot",
  4430. "keywords": [
  4431. "deterrent",
  4432. "form",
  4433. "honeypot",
  4434. "honeytrap",
  4435. "php",
  4436. "spam"
  4437. ],
  4438. "support": {
  4439. "source": "http://cgit.drupalcode.org/honeypot"
  4440. }
  4441. },
  4442. {
  4443. "name": "drupal/imagemagick",
  4444. "version": "2.3.0",
  4445. "source": {
  4446. "type": "git",
  4447. "url": "https://git.drupal.org/project/imagemagick",
  4448. "reference": "8.x-2.3"
  4449. },
  4450. "dist": {
  4451. "type": "zip",
  4452. "url": "https://ftp.drupal.org/files/projects/imagemagick-8.x-2.3.zip",
  4453. "reference": "8.x-2.3",
  4454. "shasum": "8359921d4700e954364c2633332c20579bb75a34"
  4455. },
  4456. "require": {
  4457. "drupal/core": "^8.3",
  4458. "drupal/file_mdm": "^1.1",
  4459. "drupal/file_mdm_exif": "^1.1"
  4460. },
  4461. "type": "drupal-module",
  4462. "extra": {
  4463. "branch-alias": {
  4464. "dev-2.x": "2.x-dev"
  4465. },
  4466. "drupal": {
  4467. "version": "8.x-2.3",
  4468. "datestamp": "1520958305",
  4469. "security-coverage": {
  4470. "status": "covered",
  4471. "message": "Covered by Drupal's security advisory policy"
  4472. }
  4473. }
  4474. },
  4475. "notification-url": "https://packages.drupal.org/8/downloads",
  4476. "license": [
  4477. "GPL-2.0-or-later"
  4478. ],
  4479. "authors": [
  4480. {
  4481. "name": "Chris Charlton",
  4482. "homepage": "https://www.drupal.org/user/17089"
  4483. },
  4484. {
  4485. "name": "chx",
  4486. "homepage": "https://www.drupal.org/user/9446"
  4487. },
  4488. {
  4489. "name": "claudiu.cristea",
  4490. "homepage": "https://www.drupal.org/user/56348"
  4491. },
  4492. {
  4493. "name": "dman",
  4494. "homepage": "https://www.drupal.org/user/33240"
  4495. },
  4496. {
  4497. "name": "dopry",
  4498. "homepage": "https://www.drupal.org/user/22202"
  4499. },
  4500. {
  4501. "name": "drewish",
  4502. "homepage": "https://www.drupal.org/user/34869"
  4503. },
  4504. {
  4505. "name": "gdl",
  4506. "homepage": "https://www.drupal.org/user/507326"
  4507. },
  4508. {
  4509. "name": "mondrake",
  4510. "homepage": "https://www.drupal.org/user/1307444"
  4511. },
  4512. {
  4513. "name": "quicksketch",
  4514. "homepage": "https://www.drupal.org/user/35821"
  4515. },
  4516. {
  4517. "name": "sun",
  4518. "homepage": "https://www.drupal.org/user/54136"
  4519. },
  4520. {
  4521. "name": "walkah",
  4522. "homepage": "https://www.drupal.org/user/1531"
  4523. }
  4524. ],
  4525. "description": "Provides an image toolkit to integrate ImageMagick with the Image API.",
  4526. "homepage": "https://www.drupal.org/project/imagemagick",
  4527. "support": {
  4528. "source": "http://cgit.drupalcode.org/imagemagick"
  4529. }
  4530. },
  4531. {
  4532. "name": "drupal/inline_entity_form",
  4533. "version": "1.0.0-rc1",
  4534. "source": {
  4535. "type": "git",
  4536. "url": "https://git.drupal.org/project/inline_entity_form",
  4537. "reference": "8.x-1.0-rc1"
  4538. },
  4539. "dist": {
  4540. "type": "zip",
  4541. "url": "https://ftp.drupal.org/files/projects/inline_entity_form-8.x-1.0-rc1.zip",
  4542. "reference": "8.x-1.0-rc1",
  4543. "shasum": "898789fb6a0662fc2572b87f8d0654a0241473f9"
  4544. },
  4545. "require": {
  4546. "drupal/core": "~8.0"
  4547. },
  4548. "require-dev": {
  4549. "drupal/entity_reference_revisions": "*"
  4550. },
  4551. "type": "drupal-module",
  4552. "extra": {
  4553. "branch-alias": {
  4554. "dev-1.x": "1.x-dev"
  4555. },
  4556. "drupal": {
  4557. "version": "8.x-1.0-rc1",
  4558. "datestamp": "1527030784",
  4559. "security-coverage": {
  4560. "status": "not-covered",
  4561. "message": "RC releases are not covered by Drupal security advisories."
  4562. }
  4563. }
  4564. },
  4565. "notification-url": "https://packages.drupal.org/8/downloads",
  4566. "license": [
  4567. "GPL-2.0+"
  4568. ],
  4569. "authors": [
  4570. {
  4571. "name": "bojanz",
  4572. "homepage": "https://www.drupal.org/user/86106"
  4573. },
  4574. {
  4575. "name": "dawehner",
  4576. "homepage": "https://www.drupal.org/user/99340"
  4577. },
  4578. {
  4579. "name": "rszrama",
  4580. "homepage": "https://www.drupal.org/user/49344"
  4581. },
  4582. {
  4583. "name": "slashrsm",
  4584. "homepage": "https://www.drupal.org/user/744628"
  4585. },
  4586. {
  4587. "name": "webflo",
  4588. "homepage": "https://www.drupal.org/user/254778"
  4589. }
  4590. ],
  4591. "description": "Provides a widget for inline management (creation, modification, removal) of referenced entities.",
  4592. "homepage": "https://www.drupal.org/project/inline_entity_form",
  4593. "support": {
  4594. "source": "http://cgit.drupalcode.org/inline_entity_form"
  4595. }
  4596. },
  4597. {
  4598. "name": "drupal/kint",
  4599. "version": "1.2.0",
  4600. "require": {
  4601. "drupal/core": "~8.0",
  4602. "drupal/devel": "self.version"
  4603. },
  4604. "type": "metapackage",
  4605. "extra": {
  4606. "branch-alias": {
  4607. "dev-1.x": "1.x-dev"
  4608. },
  4609. "drupal": {
  4610. "version": "8.x-1.2",
  4611. "datestamp": "1507197844",
  4612. "security-coverage": {
  4613. "status": "covered",
  4614. "message": "Covered by Drupal's security advisory policy"
  4615. }
  4616. }
  4617. },
  4618. "notification-url": "https://packages.drupal.org/8/downloads",
  4619. "license": [
  4620. "GPL-2.0-or-later"
  4621. ],
  4622. "authors": [
  4623. {
  4624. "name": "catch",
  4625. "homepage": "https://www.drupal.org/user/35733"
  4626. },
  4627. {
  4628. "name": "juampynr",
  4629. "homepage": "https://www.drupal.org/user/682736"
  4630. },
  4631. {
  4632. "name": "lussoluca",
  4633. "homepage": "https://www.drupal.org/user/138068"
  4634. },
  4635. {
  4636. "name": "moshe weitzman",
  4637. "homepage": "https://www.drupal.org/user/23"
  4638. },
  4639. {
  4640. "name": "pcambra",
  4641. "homepage": "https://www.drupal.org/user/122101"
  4642. },
  4643. {
  4644. "name": "salvis",
  4645. "homepage": "https://www.drupal.org/user/82964"
  4646. },
  4647. {
  4648. "name": "willzyx",
  4649. "homepage": "https://www.drupal.org/user/1043862"
  4650. }
  4651. ],
  4652. "description": "Wrapper for Kint debugging tool",
  4653. "homepage": "https://www.drupal.org/project/devel",
  4654. "support": {
  4655. "source": "http://cgit.drupalcode.org/devel"
  4656. }
  4657. },
  4658. {
  4659. "name": "drupal/link_attributes",
  4660. "version": "1.5.0",
  4661. "source": {
  4662. "type": "git",
  4663. "url": "https://git.drupal.org/project/link_attributes",
  4664. "reference": "8.x-1.5"
  4665. },
  4666. "dist": {
  4667. "type": "zip",
  4668. "url": "https://ftp.drupal.org/files/projects/link_attributes-8.x-1.5.zip",
  4669. "reference": "8.x-1.5",
  4670. "shasum": "48c0e6ac2c3f4843372abb394c1aabe380dfa604"
  4671. },
  4672. "require": {
  4673. "drupal/core": "*"
  4674. },
  4675. "type": "drupal-module",
  4676. "extra": {
  4677. "branch-alias": {
  4678. "dev-1.x": "1.x-dev"
  4679. },
  4680. "drupal": {
  4681. "version": "8.x-1.5",
  4682. "datestamp": "1537173781",
  4683. "security-coverage": {
  4684. "status": "covered",
  4685. "message": "Covered by Drupal's security advisory policy"
  4686. }
  4687. }
  4688. },
  4689. "notification-url": "https://packages.drupal.org/8/downloads",
  4690. "license": [
  4691. "GPL-2.0-or-later"
  4692. ],
  4693. "authors": [
  4694. {
  4695. "name": "larowlan",
  4696. "homepage": "https://www.drupal.org/user/395439"
  4697. }
  4698. ],
  4699. "description": "Provides a widget to allow settings of link attributes for menu links.",
  4700. "homepage": "https://www.drupal.org/project/link_attributes",
  4701. "support": {
  4702. "source": "http://cgit.drupalcode.org/link_attributes"
  4703. }
  4704. },
  4705. {
  4706. "name": "drupal/linkit",
  4707. "version": "4.3.0",
  4708. "source": {
  4709. "type": "git",
  4710. "url": "https://git.drupal.org/project/linkit",
  4711. "reference": "8.x-4.3"
  4712. },
  4713. "dist": {
  4714. "type": "zip",
  4715. "url": "https://ftp.drupal.org/files/projects/linkit-8.x-4.3.zip",
  4716. "reference": "8.x-4.3",
  4717. "shasum": "e624ea2f18a6100b76a8337e24f7c08df6e2235e"
  4718. },
  4719. "require": {
  4720. "drupal/core": "~8.0"
  4721. },
  4722. "type": "drupal-module",
  4723. "extra": {
  4724. "branch-alias": {
  4725. "dev-4.x": "4.x-dev"
  4726. },
  4727. "drupal": {
  4728. "version": "8.x-4.3",
  4729. "datestamp": "1490205830",
  4730. "security-coverage": {
  4731. "status": "covered",
  4732. "message": "Covered by Drupal's security advisory policy"
  4733. }
  4734. }
  4735. },
  4736. "notification-url": "https://packages.drupal.org/8/downloads",
  4737. "license": [
  4738. "GPL-2.0+"
  4739. ],
  4740. "authors": [
  4741. {
  4742. "name": "Emil Stjerneman",
  4743. "homepage": "https://stjerneman.com",
  4744. "email": "emil@stjerneman.com",
  4745. "role": "Maintainer"
  4746. }
  4747. ],
  4748. "description": "Linkit - Enriched linking experience",
  4749. "homepage": "http://drupal.org/project/linkit",
  4750. "support": {
  4751. "source": "http://cgit.drupalcode.org/linkit",
  4752. "issues": "http://drupal.org/project/linkit"
  4753. }
  4754. },
  4755. {
  4756. "name": "drupal/login_destination",
  4757. "version": "dev-1.x",
  4758. "source": {
  4759. "type": "git",
  4760. "url": "https://git.drupal.org/project/login_destination",
  4761. "reference": "54be8b89fdc073ca40af6b9b2eeb050e0aeb7908"
  4762. },
  4763. "require": {
  4764. "drupal/core": "~8.0"
  4765. },
  4766. "type": "drupal-module",
  4767. "extra": {
  4768. "branch-alias": {
  4769. "dev-1.x": "1.x-dev"
  4770. },
  4771. "drupal": {
  4772. "version": "8.x-1.x-dev",
  4773. "datestamp": "1514805485",
  4774. "security-coverage": {
  4775. "status": "not-covered",
  4776. "message": "Dev releases are not covered by Drupal security advisories."
  4777. }
  4778. }
  4779. },
  4780. "notification-url": "https://packages.drupal.org/8/downloads",
  4781. "license": [
  4782. "GPL-2.0-or-later"
  4783. ],
  4784. "authors": [
  4785. {
  4786. "name": "Oliver Huynh",
  4787. "homepage": "https://www.drupal.org/user/243730"
  4788. },
  4789. {
  4790. "name": "akashjain132",
  4791. "homepage": "https://www.drupal.org/user/2622667"
  4792. },
  4793. {
  4794. "name": "beautifulmind",
  4795. "homepage": "https://www.drupal.org/user/219482"
  4796. },
  4797. {
  4798. "name": "ddrozdik",
  4799. "homepage": "https://www.drupal.org/user/574124"
  4800. },
  4801. {
  4802. "name": "jng12",
  4803. "homepage": "https://www.drupal.org/user/204316"
  4804. },
  4805. {
  4806. "name": "marcp",
  4807. "homepage": "https://www.drupal.org/user/20885"
  4808. },
  4809. {
  4810. "name": "mithy",
  4811. "homepage": "https://www.drupal.org/user/258911"
  4812. },
  4813. {
  4814. "name": "moshe weitzman",
  4815. "homepage": "https://www.drupal.org/user/23"
  4816. },
  4817. {
  4818. "name": "quantumized",
  4819. "homepage": "https://www.drupal.org/user/61221"
  4820. },
  4821. {
  4822. "name": "rsvelko",
  4823. "homepage": "https://www.drupal.org/user/337401"
  4824. }
  4825. ],
  4826. "description": "The Login Destination module add possibility customize the destination that the user is redirected to after login.",
  4827. "homepage": "https://www.drupal.org/project/login_destination",
  4828. "support": {
  4829. "source": "http://cgit.drupalcode.org/login_destination"
  4830. },
  4831. "time": "2018-01-01T11:13:09+00:00"
  4832. },
  4833. {
  4834. "name": "drupal/maillog",
  4835. "version": "dev-1.x",
  4836. "source": {
  4837. "type": "git",
  4838. "url": "https://git.drupal.org/project/maillog",
  4839. "reference": "14fd24cd89e299ad271608cd52706c60b753c26d"
  4840. },
  4841. "require": {
  4842. "drupal/core": "*"
  4843. },
  4844. "type": "drupal-module",
  4845. "extra": {
  4846. "branch-alias": {
  4847. "dev-1.x": "1.x-dev"
  4848. },
  4849. "drupal": {
  4850. "version": "8.x-1.x-dev",
  4851. "datestamp": "1470431939",
  4852. "security-coverage": {
  4853. "status": "not-covered",
  4854. "message": "Project has not opted into security advisory coverage!"
  4855. }
  4856. }
  4857. },
  4858. "notification-url": "https://packages.drupal.org/8/downloads",
  4859. "license": [
  4860. "GPL-2.0-or-later"
  4861. ],
  4862. "authors": [
  4863. {
  4864. "name": "Berdir",
  4865. "homepage": "https://www.drupal.org/user/214652"
  4866. },
  4867. {
  4868. "name": "DamienMcKenna",
  4869. "homepage": "https://www.drupal.org/user/108450"
  4870. },
  4871. {
  4872. "name": "miro_dietiker",
  4873. "homepage": "https://www.drupal.org/user/227761"
  4874. },
  4875. {
  4876. "name": "pluess",
  4877. "homepage": "https://www.drupal.org/user/84659"
  4878. }
  4879. ],
  4880. "description": "Utility to log all Mails for debugging purposes. It is possible to suppress mail delivery for e.g. dev or staging systems.",
  4881. "homepage": "https://www.drupal.org/project/maillog",
  4882. "support": {
  4883. "source": "http://cgit.drupalcode.org/maillog"
  4884. },
  4885. "time": "2016-08-05T21:18:07+00:00"
  4886. },
  4887. {
  4888. "name": "drupal/mailsystem",
  4889. "version": "4.1.0",
  4890. "source": {
  4891. "type": "git",
  4892. "url": "https://git.drupal.org/project/mailsystem",
  4893. "reference": "8.x-4.1"
  4894. },
  4895. "dist": {
  4896. "type": "zip",
  4897. "url": "https://ftp.drupal.org/files/projects/mailsystem-8.x-4.1.zip",
  4898. "reference": "8.x-4.1",
  4899. "shasum": "318b87f1fdf96e6db30b04a98108af02a0fc3dcc"
  4900. },
  4901. "require": {
  4902. "drupal/core": "^8.0.5"
  4903. },
  4904. "type": "drupal-module",
  4905. "extra": {
  4906. "branch-alias": {
  4907. "dev-4.x": "4.x-dev"
  4908. },
  4909. "drupal": {
  4910. "version": "8.x-4.1",
  4911. "datestamp": "1467993646",
  4912. "security-coverage": {
  4913. "status": "covered",
  4914. "message": "Covered by Drupal's security advisory policy"
  4915. }
  4916. }
  4917. },
  4918. "notification-url": "https://packages.drupal.org/8/downloads",
  4919. "license": [
  4920. "GPL-2.0+"
  4921. ],
  4922. "authors": [
  4923. {
  4924. "name": "Berdir",
  4925. "homepage": "https://www.drupal.org/user/214652"
  4926. },
  4927. {
  4928. "name": "Les Lim",
  4929. "homepage": "https://www.drupal.org/user/84263"
  4930. },
  4931. {
  4932. "name": "Nafes",
  4933. "homepage": "https://www.drupal.org/user/2489926"
  4934. },
  4935. {
  4936. "name": "miro_dietiker",
  4937. "homepage": "https://www.drupal.org/user/227761"
  4938. },
  4939. {
  4940. "name": "pillarsdotnet",
  4941. "homepage": "https://www.drupal.org/user/36148"
  4942. }
  4943. ],
  4944. "description": "Mail System",
  4945. "homepage": "https://www.drupal.org/project/mailsystem",
  4946. "support": {
  4947. "source": "http://cgit.drupalcode.org/mailsystem"
  4948. }
  4949. },
  4950. {
  4951. "name": "drupal/matomo",
  4952. "version": "1.7.0",
  4953. "source": {
  4954. "type": "git",
  4955. "url": "https://git.drupal.org/project/matomo",
  4956. "reference": "8.x-1.7"
  4957. },
  4958. "dist": {
  4959. "type": "zip",
  4960. "url": "https://ftp.drupal.org/files/projects/matomo-8.x-1.7.zip",
  4961. "reference": "8.x-1.7",
  4962. "shasum": "6b7dbc8c76800a6dadb7568cf2a3f3efdde88e13"
  4963. },
  4964. "require": {
  4965. "drupal/core": "~8.0"
  4966. },
  4967. "require-dev": {
  4968. "drupal/php": "*",
  4969. "drupal/token": "*"
  4970. },
  4971. "type": "drupal-module",
  4972. "extra": {
  4973. "branch-alias": {
  4974. "dev-1.x": "1.x-dev"
  4975. },
  4976. "drupal": {
  4977. "version": "8.x-1.7",
  4978. "datestamp": "1531470197",
  4979. "security-coverage": {
  4980. "status": "covered",
  4981. "message": "Covered by Drupal's security advisory policy"
  4982. }
  4983. }
  4984. },
  4985. "notification-url": "https://packages.drupal.org/8/downloads",
  4986. "license": [
  4987. "GPL-2.0+"
  4988. ],
  4989. "authors": [
  4990. {
  4991. "name": "hass",
  4992. "homepage": "https://www.drupal.org/u/hass"
  4993. },
  4994. {
  4995. "name": "See other contributors",
  4996. "homepage": "https://www.drupal.org/node/247808/committers"
  4997. }
  4998. ],
  4999. "description": "Adds Matomo javascript tracking code to all your site's pages",
  5000. "homepage": "https://www.drupal.org/project/matomo",
  5001. "support": {
  5002. "source": "http://git.drupal.org/project/matomo.git",
  5003. "issues": "https://www.drupal.org/project/issues/matomo"
  5004. }
  5005. },
  5006. {
  5007. "name": "drupal/maxlength",
  5008. "version": "1.0.0-beta2",
  5009. "source": {
  5010. "type": "git",
  5011. "url": "https://git.drupal.org/project/maxlength",
  5012. "reference": "8.x-1.0-beta2"
  5013. },
  5014. "dist": {
  5015. "type": "zip",
  5016. "url": "https://ftp.drupal.org/files/projects/maxlength-8.x-1.0-beta2.zip",
  5017. "reference": "8.x-1.0-beta2",
  5018. "shasum": "27f7374e55ebdcc696d22d98be8cf4cf9bf58204"
  5019. },
  5020. "require": {
  5021. "drupal/core": "~8.0"
  5022. },
  5023. "type": "drupal-module",
  5024. "extra": {
  5025. "branch-alias": {
  5026. "dev-1.x": "1.x-dev"
  5027. },
  5028. "drupal": {
  5029. "version": "8.x-1.0-beta2",
  5030. "datestamp": "1527856384",
  5031. "security-coverage": {
  5032. "status": "not-covered",
  5033. "message": "Beta releases are not covered by Drupal security advisories."
  5034. }
  5035. }
  5036. },
  5037. "notification-url": "https://packages.drupal.org/8/downloads",
  5038. "license": [
  5039. "GPL-2.0-or-later"
  5040. ],
  5041. "authors": [
  5042. {
  5043. "name": "Aron Novak",
  5044. "homepage": "https://www.drupal.org/user/61864"
  5045. },
  5046. {
  5047. "name": "Schnitzel",
  5048. "homepage": "https://www.drupal.org/user/643820"
  5049. },
  5050. {
  5051. "name": "a_c_m",
  5052. "homepage": "https://www.drupal.org/user/195063"
  5053. },
  5054. {
  5055. "name": "artur.thiessen",
  5056. "homepage": "https://www.drupal.org/user/2390554"
  5057. },
  5058. {
  5059. "name": "barneytech",
  5060. "homepage": "https://www.drupal.org/user/669922"
  5061. },
  5062. {
  5063. "name": "claudiu_cristea",
  5064. "homepage": "https://www.drupal.org/user/2623935"
  5065. },
  5066. {
  5067. "name": "dawehner",
  5068. "homepage": "https://www.drupal.org/user/99340"
  5069. },
  5070. {
  5071. "name": "derhasi",
  5072. "homepage": "https://www.drupal.org/user/83474"
  5073. },
  5074. {
  5075. "name": "frjo",
  5076. "homepage": "https://www.drupal.org/user/5546"
  5077. },
  5078. {
  5079. "name": "hefox",
  5080. "homepage": "https://www.drupal.org/user/426416"
  5081. },
  5082. {
  5083. "name": "jm.federico",
  5084. "homepage": "https://www.drupal.org/user/509892"
  5085. },
  5086. {
  5087. "name": "k4v",
  5088. "homepage": "https://www.drupal.org/user/744246"
  5089. },
  5090. {
  5091. "name": "mariano73",
  5092. "homepage": "https://www.drupal.org/user/1324866"
  5093. },
  5094. {
  5095. "name": "mariuss",
  5096. "homepage": "https://www.drupal.org/user/28539"
  5097. },
  5098. {
  5099. "name": "sanduhrs",
  5100. "homepage": "https://www.drupal.org/user/28074"
  5101. },
  5102. {
  5103. "name": "vasi1186",
  5104. "homepage": "https://www.drupal.org/user/342104"
  5105. }
  5106. ],
  5107. "description": "Limit the number of characters in textfields and textareas and shows the amount of characters left.",
  5108. "homepage": "https://www.drupal.org/project/maxlength",
  5109. "support": {
  5110. "source": "http://cgit.drupalcode.org/maxlength"
  5111. }
  5112. },
  5113. {
  5114. "name": "drupal/menu_admin_per_menu",
  5115. "version": "1.0.0",
  5116. "source": {
  5117. "type": "git",
  5118. "url": "https://git.drupal.org/project/menu_admin_per_menu",
  5119. "reference": "8.x-1.0"
  5120. },
  5121. "dist": {
  5122. "type": "zip",
  5123. "url": "https://ftp.drupal.org/files/projects/menu_admin_per_menu-8.x-1.0.zip",
  5124. "reference": "8.x-1.0",
  5125. "shasum": "27dbef0025146a382feab67db5e93eaf280b8de4"
  5126. },
  5127. "require": {
  5128. "drupal/core": "*"
  5129. },
  5130. "type": "drupal-module",
  5131. "extra": {
  5132. "branch-alias": {
  5133. "dev-1.x": "1.x-dev"
  5134. },
  5135. "drupal": {
  5136. "version": "8.x-1.0",
  5137. "datestamp": "1507184944",
  5138. "security-coverage": {
  5139. "status": "covered",
  5140. "message": "Covered by Drupal's security advisory policy"
  5141. }
  5142. }
  5143. },
  5144. "notification-url": "https://packages.drupal.org/8/downloads",
  5145. "license": [
  5146. "GPL-2.0-or-later"
  5147. ],
  5148. "authors": [
  5149. {
  5150. "name": "anrikun",
  5151. "homepage": "https://www.drupal.org/user/410199"
  5152. },
  5153. {
  5154. "name": "mkdok",
  5155. "homepage": "https://www.drupal.org/user/3308753"
  5156. }
  5157. ],
  5158. "description": "Allows to give roles per menu admin permissions without giving them full administer menu permission.",
  5159. "homepage": "https://www.drupal.org/project/menu_admin_per_menu",
  5160. "support": {
  5161. "source": "http://cgit.drupalcode.org/menu_admin_per_menu"
  5162. }
  5163. },
  5164. {
  5165. "name": "drupal/menu_block",
  5166. "version": "1.5.0",
  5167. "source": {
  5168. "type": "git",
  5169. "url": "https://git.drupal.org/project/menu_block",
  5170. "reference": "8.x-1.5"
  5171. },
  5172. "dist": {
  5173. "type": "zip",
  5174. "url": "https://ftp.drupal.org/files/projects/menu_block-8.x-1.5.zip",
  5175. "reference": "8.x-1.5",
  5176. "shasum": "b3ac3e23e426f702974d88cc8bf93bf2a0b6236b"
  5177. },
  5178. "require": {
  5179. "drupal/core": "*"
  5180. },
  5181. "type": "drupal-module",
  5182. "extra": {
  5183. "branch-alias": {
  5184. "dev-1.x": "1.x-dev"
  5185. },
  5186. "drupal": {
  5187. "version": "8.x-1.5",
  5188. "datestamp": "1525200184",
  5189. "security-coverage": {
  5190. "status": "covered",
  5191. "message": "Covered by Drupal's security advisory policy"
  5192. }
  5193. }
  5194. },
  5195. "notification-url": "https://packages.drupal.org/8/downloads",
  5196. "license": [
  5197. "GPL-2.0-or-later"
  5198. ],
  5199. "authors": [
  5200. {
  5201. "name": "Dave Reid",
  5202. "homepage": "https://www.drupal.org/user/53892"
  5203. },
  5204. {
  5205. "name": "JohnAlbin",
  5206. "homepage": "https://www.drupal.org/user/32095"
  5207. },
  5208. {
  5209. "name": "joelpittet",
  5210. "homepage": "https://www.drupal.org/user/160302"
  5211. },
  5212. {
  5213. "name": "kim.pepper",
  5214. "homepage": "https://www.drupal.org/user/370574"
  5215. },
  5216. {
  5217. "name": "rrrob",
  5218. "homepage": "https://www.drupal.org/user/273533"
  5219. }
  5220. ],
  5221. "description": "Provides configurable blocks of menu links.",
  5222. "homepage": "https://www.drupal.org/project/menu_block",
  5223. "support": {
  5224. "source": "http://cgit.drupalcode.org/menu_block"
  5225. }
  5226. },
  5227. {
  5228. "name": "drupal/menu_position",
  5229. "version": "dev-1.x",
  5230. "source": {
  5231. "type": "git",
  5232. "url": "https://git.drupal.org/project/menu_position",
  5233. "reference": "11191df8dc7bdb1ef215c3f623c098555f571552"
  5234. },
  5235. "require": {
  5236. "drupal/core": "~8.0"
  5237. },
  5238. "type": "drupal-module",
  5239. "extra": {
  5240. "branch-alias": {
  5241. "dev-1.x": "1.x-dev"
  5242. },
  5243. "drupal": {
  5244. "version": "8.x-1.x-dev",
  5245. "datestamp": "1520418485",
  5246. "security-coverage": {
  5247. "status": "not-covered",
  5248. "message": "Dev releases are not covered by Drupal security advisories."
  5249. }
  5250. }
  5251. },
  5252. "notification-url": "https://packages.drupal.org/8/downloads",
  5253. "license": [
  5254. "GPL-2.0+"
  5255. ],
  5256. "authors": [
  5257. {
  5258. "name": "BarisW",
  5259. "homepage": "https://www.drupal.org/user/107229"
  5260. },
  5261. {
  5262. "name": "JohnAlbin",
  5263. "homepage": "https://www.drupal.org/user/32095"
  5264. },
  5265. {
  5266. "name": "lbainbridge",
  5267. "homepage": "https://www.drupal.org/user/2406996"
  5268. }
  5269. ],
  5270. "description": "This module allows for the creation of rules that will dynamically add the current page into the menu system at the requested spots.",
  5271. "homepage": "https://www.drupal.org/project/menu_position",
  5272. "support": {
  5273. "source": "http://cgit.drupalcode.org/menu_position",
  5274. "issues": "https://www.drupal.org/project/issues/menu_position"
  5275. },
  5276. "time": "2018-08-02T13:52:40+00:00"
  5277. },
  5278. {
  5279. "name": "drupal/migrate_plus",
  5280. "version": "4.0.0",
  5281. "source": {
  5282. "type": "git",
  5283. "url": "https://git.drupal.org/project/migrate_plus",
  5284. "reference": "8.x-4.0"
  5285. },
  5286. "dist": {
  5287. "type": "zip",
  5288. "url": "https://ftp.drupal.org/files/projects/migrate_plus-8.x-4.0.zip",
  5289. "reference": "8.x-4.0",
  5290. "shasum": "63dad289defe8298aa5ca5e30062fe9761d19eca"
  5291. },
  5292. "require": {
  5293. "drupal/core": "^8.3"
  5294. },
  5295. "require-dev": {
  5296. "drupal/migrate_example_advanced_setup": "*",
  5297. "drupal/migrate_example_setup": "*"
  5298. },
  5299. "suggest": {
  5300. "ext-soap": "*",
  5301. "sainsburys/guzzle-oauth2-plugin": "3.0 required for the OAuth2 authentication plugin"
  5302. },
  5303. "type": "drupal-module",
  5304. "extra": {
  5305. "branch-alias": {
  5306. "dev-4.x": "4.x-dev"
  5307. },
  5308. "drupal": {
  5309. "version": "8.x-4.0",
  5310. "datestamp": "1536264180",
  5311. "security-coverage": {
  5312. "status": "covered",
  5313. "message": "Covered by Drupal's security advisory policy"
  5314. }
  5315. }
  5316. },
  5317. "notification-url": "https://packages.drupal.org/8/downloads",
  5318. "license": [
  5319. "GPL-2.0+"
  5320. ],
  5321. "authors": [
  5322. {
  5323. "name": "Mike Ryan",
  5324. "homepage": "https://www.drupal.org/u/mikeryan",
  5325. "role": "Maintainer"
  5326. },
  5327. {
  5328. "name": "mikeryan",
  5329. "homepage": "https://www.drupal.org/user/4420"
  5330. }
  5331. ],
  5332. "description": "Enhancements to core migration support.",
  5333. "homepage": "https://www.drupal.org/project/migrate_plus",
  5334. "support": {
  5335. "source": "https://cgit.drupalcode.org/migrate_plus",
  5336. "issues": "https://www.drupal.org/project/issues/migrate_plus",
  5337. "irc": "irc://irc.freenode.org/drupal-migrate"
  5338. }
  5339. },
  5340. {
  5341. "name": "drupal/migrate_tools",
  5342. "version": "dev-4.x",
  5343. "source": {
  5344. "type": "git",
  5345. "url": "https://git.drupal.org/project/migrate_tools",
  5346. "reference": "9fc2977a80ad46dab0caa11682d269fe3bfe4985"
  5347. },
  5348. "require": {
  5349. "drupal/core": "^8.3",
  5350. "drupal/migrate_plus": "^4"
  5351. },
  5352. "require-dev": {
  5353. "drupal/coder": "^8",
  5354. "drupal/migrate_source_csv": "^2.2"
  5355. },
  5356. "type": "drupal-module",
  5357. "extra": {
  5358. "branch-alias": {
  5359. "dev-4.x": "4.x-dev"
  5360. },
  5361. "drupal": {
  5362. "version": "8.x-4.0+4-dev",
  5363. "datestamp": "1540829581",
  5364. "security-coverage": {
  5365. "status": "not-covered",
  5366. "message": "Dev releases are not covered by Drupal security advisories."
  5367. }
  5368. },
  5369. "drush": {
  5370. "services": {
  5371. "drush.services.yml": "^9"
  5372. }
  5373. }
  5374. },
  5375. "notification-url": "https://packages.drupal.org/8/downloads",
  5376. "license": [
  5377. "GPL-2.0+"
  5378. ],
  5379. "authors": [
  5380. {
  5381. "name": "heddn",
  5382. "homepage": "https://www.drupal.org/user/1463982"
  5383. },
  5384. {
  5385. "name": "mikeryan",
  5386. "homepage": "https://www.drupal.org/user/4420"
  5387. },
  5388. {
  5389. "name": "moshe weitzman",
  5390. "homepage": "https://www.drupal.org/user/23"
  5391. }
  5392. ],
  5393. "description": "Tools to assist in developing and running migrations.",
  5394. "homepage": "http://drupal.org/project/migrate_tools",
  5395. "support": {
  5396. "source": "http://cgit.drupalcode.org/migrate_tools",
  5397. "issues": "http://drupal.org/project/migrate_tools",
  5398. "irc": "irc://irc.freenode.org/drupal-migrate"
  5399. },
  5400. "time": "2018-11-06T14:19:48+00:00"
  5401. },
  5402. {
  5403. "name": "drupal/pagerer",
  5404. "version": "1.4.0",
  5405. "source": {
  5406. "type": "git",
  5407. "url": "https://git.drupal.org/project/pagerer",
  5408. "reference": "8.x-1.4"
  5409. },
  5410. "dist": {
  5411. "type": "zip",
  5412. "url": "https://ftp.drupal.org/files/projects/pagerer-8.x-1.4.zip",
  5413. "reference": "8.x-1.4",
  5414. "shasum": "9b4eb6899b0927859e7d5198f1fd814a10a66ddb"
  5415. },
  5416. "require": {
  5417. "drupal/core": "^8.1"
  5418. },
  5419. "type": "drupal-module",
  5420. "extra": {
  5421. "branch-alias": {
  5422. "dev-1.x": "1.x-dev"
  5423. },
  5424. "drupal": {
  5425. "version": "8.x-1.4",
  5426. "datestamp": "1522851484",
  5427. "security-coverage": {
  5428. "status": "covered",
  5429. "message": "Covered by Drupal's security advisory policy"
  5430. }
  5431. }
  5432. },
  5433. "notification-url": "https://packages.drupal.org/8/downloads",
  5434. "license": [
  5435. "GPL-2.0-or-later"
  5436. ],
  5437. "authors": [
  5438. {
  5439. "name": "mondrake",
  5440. "homepage": "https://www.drupal.org/user/1307444"
  5441. }
  5442. ],
  5443. "description": "Configurable pager styles.",
  5444. "homepage": "https://www.drupal.org/project/pagerer",
  5445. "support": {
  5446. "source": "http://cgit.drupalcode.org/pagerer"
  5447. }
  5448. },
  5449. {
  5450. "name": "drupal/path_alias_xt",
  5451. "version": "dev-1.x",
  5452. "source": {
  5453. "type": "git",
  5454. "url": "https://git.drupal.org/project/path_alias_xt",
  5455. "reference": "5d88c9297e4629f390b03ce3ec8c1c8c890b296b"
  5456. },
  5457. "require": {
  5458. "drupal/core": "*"
  5459. },
  5460. "type": "drupal-module",
  5461. "extra": {
  5462. "branch-alias": {
  5463. "dev-1.x": "1.x-dev"
  5464. },
  5465. "drupal": {
  5466. "version": "8.x-1.x-dev",
  5467. "datestamp": "1500044942",
  5468. "security-coverage": {
  5469. "status": "not-covered",
  5470. "message": "Dev releases are not covered by Drupal security advisories."
  5471. }
  5472. }
  5473. },
  5474. "notification-url": "https://packages.drupal.org/8/downloads",
  5475. "license": [
  5476. "GPL-2.0-or-later"
  5477. ],
  5478. "authors": [
  5479. {
  5480. "name": "RdeBoer",
  5481. "homepage": "https://www.drupal.org/user/404007"
  5482. },
  5483. {
  5484. "name": "adriancid",
  5485. "homepage": "https://www.drupal.org/user/1962106"
  5486. },
  5487. {
  5488. "name": "sdstyles",
  5489. "homepage": "https://www.drupal.org/user/1420228"
  5490. }
  5491. ],
  5492. "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.",
  5493. "homepage": "https://www.drupal.org/project/path_alias_xt",
  5494. "support": {
  5495. "source": "http://cgit.drupalcode.org/path_alias_xt"
  5496. },
  5497. "time": "2017-07-14T15:06:28+00:00"
  5498. },
  5499. {
  5500. "name": "drupal/pathauto",
  5501. "version": "1.3.0",
  5502. "source": {
  5503. "type": "git",
  5504. "url": "https://git.drupal.org/project/pathauto",
  5505. "reference": "8.x-1.3"
  5506. },
  5507. "dist": {
  5508. "type": "zip",
  5509. "url": "https://ftp.drupal.org/files/projects/pathauto-8.x-1.3.zip",
  5510. "reference": "8.x-1.3",
  5511. "shasum": "115d5998d7636a03e26c7ce34261b65809d53965"
  5512. },
  5513. "require": {
  5514. "drupal/core": "^8.5",
  5515. "drupal/ctools": "*",
  5516. "drupal/token": "*"
  5517. },
  5518. "type": "drupal-module",
  5519. "extra": {
  5520. "branch-alias": {
  5521. "dev-1.x": "1.x-dev"
  5522. },
  5523. "drupal": {
  5524. "version": "8.x-1.3",
  5525. "datestamp": "1536407884",
  5526. "security-coverage": {
  5527. "status": "covered",
  5528. "message": "Covered by Drupal's security advisory policy"
  5529. }
  5530. }
  5531. },
  5532. "notification-url": "https://packages.drupal.org/8/downloads",
  5533. "license": [
  5534. "GPL-2.0-or-later"
  5535. ],
  5536. "authors": [
  5537. {
  5538. "name": "Berdir",
  5539. "homepage": "https://www.drupal.org/user/214652"
  5540. },
  5541. {
  5542. "name": "Dave Reid",
  5543. "homepage": "https://www.drupal.org/user/53892"
  5544. },
  5545. {
  5546. "name": "Freso",
  5547. "homepage": "https://www.drupal.org/user/27504"
  5548. },
  5549. {
  5550. "name": "greggles",
  5551. "homepage": "https://www.drupal.org/user/36762"
  5552. }
  5553. ],
  5554. "description": "Provides a mechanism for modules to automatically generate aliases for the content they manage.",
  5555. "homepage": "https://www.drupal.org/project/pathauto",
  5556. "support": {
  5557. "source": "http://cgit.drupalcode.org/pathauto"
  5558. }
  5559. },
  5560. {
  5561. "name": "drupal/pathologic",
  5562. "version": "1.0.0-alpha1",
  5563. "source": {
  5564. "type": "git",
  5565. "url": "https://git.drupal.org/project/pathologic",
  5566. "reference": "8.x-1.0-alpha1"
  5567. },
  5568. "dist": {
  5569. "type": "zip",
  5570. "url": "https://ftp.drupal.org/files/projects/pathologic-8.x-1.0-alpha1.zip",
  5571. "reference": "8.x-1.0-alpha1",
  5572. "shasum": "51c699cc001969baa00cca60cf2302a32e578090"
  5573. },
  5574. "require": {
  5575. "drupal/core": "*"
  5576. },
  5577. "type": "drupal-module",
  5578. "extra": {
  5579. "branch-alias": {
  5580. "dev-1.x": "1.x-dev"
  5581. },
  5582. "drupal": {
  5583. "version": "8.x-1.0-alpha1",
  5584. "datestamp": "1525211884",
  5585. "security-coverage": {
  5586. "status": "not-covered",
  5587. "message": "Alpha releases are not covered by Drupal security advisories."
  5588. }
  5589. }
  5590. },
  5591. "notification-url": "https://packages.drupal.org/8/downloads",
  5592. "license": [
  5593. "GPL-2.0-or-later"
  5594. ],
  5595. "authors": [
  5596. {
  5597. "name": "Berdir",
  5598. "homepage": "https://www.drupal.org/user/214652"
  5599. },
  5600. {
  5601. "name": "Garrett Albright",
  5602. "homepage": "https://www.drupal.org/user/191212"
  5603. },
  5604. {
  5605. "name": "dww",
  5606. "homepage": "https://www.drupal.org/user/46549"
  5607. }
  5608. ],
  5609. "description": "Helps avoid broken links and incorrect paths in content.",
  5610. "homepage": "https://www.drupal.org/project/pathologic",
  5611. "support": {
  5612. "source": "http://cgit.drupalcode.org/pathologic"
  5613. }
  5614. },
  5615. {
  5616. "name": "drupal/persistent_login",
  5617. "version": "1.1.0",
  5618. "source": {
  5619. "type": "git",
  5620. "url": "https://git.drupal.org/project/persistent_login",
  5621. "reference": "8.x-1.1"
  5622. },
  5623. "dist": {
  5624. "type": "zip",
  5625. "url": "https://ftp.drupal.org/files/projects/persistent_login-8.x-1.1.zip",
  5626. "reference": "8.x-1.1",
  5627. "shasum": "b1e8f725662ab915767f339e00d7b185ac9097b2"
  5628. },
  5629. "require": {
  5630. "drupal/core": "^8.3"
  5631. },
  5632. "type": "drupal-module",
  5633. "extra": {
  5634. "branch-alias": {
  5635. "dev-1.x": "1.x-dev"
  5636. },
  5637. "drupal": {
  5638. "version": "8.x-1.1",
  5639. "datestamp": "1539379980",
  5640. "security-coverage": {
  5641. "status": "covered",
  5642. "message": "Covered by Drupal's security advisory policy"
  5643. }
  5644. }
  5645. },
  5646. "notification-url": "https://packages.drupal.org/8/downloads",
  5647. "license": [
  5648. "GPL-2.0+"
  5649. ],
  5650. "authors": [
  5651. {
  5652. "name": "gapple",
  5653. "homepage": "https://www.drupal.org/user/490940"
  5654. }
  5655. ],
  5656. "description": "Provides a \"Remember Me\" feature on the login form.",
  5657. "homepage": "https://www.drupal.org/project/persistent_login",
  5658. "keywords": [
  5659. "Drupal"
  5660. ],
  5661. "support": {
  5662. "source": "http://cgit.drupalcode.org/persistent_login",
  5663. "issues": "http://drupal.org/project/issues/persistent_login"
  5664. }
  5665. },
  5666. {
  5667. "name": "drupal/profile",
  5668. "version": "1.0.0-rc1",
  5669. "source": {
  5670. "type": "git",
  5671. "url": "https://git.drupal.org/project/profile",
  5672. "reference": "8.x-1.0-rc1"
  5673. },
  5674. "dist": {
  5675. "type": "zip",
  5676. "url": "https://ftp.drupal.org/files/projects/profile-8.x-1.0-rc1.zip",
  5677. "reference": "8.x-1.0-rc1",
  5678. "shasum": "cc537ca25412adc4fa601ff42cf2fb5cbc6e7b6b"
  5679. },
  5680. "require": {
  5681. "drupal/core": "~8.1",
  5682. "drupal/entity": "*"
  5683. },
  5684. "type": "drupal-module",
  5685. "extra": {
  5686. "branch-alias": {
  5687. "dev-1.x": "1.x-dev"
  5688. },
  5689. "drupal": {
  5690. "version": "8.x-1.0-rc1",
  5691. "datestamp": "1505830324",
  5692. "security-coverage": {
  5693. "status": "not-covered",
  5694. "message": "RC releases are not covered by Drupal security advisories."
  5695. }
  5696. }
  5697. },
  5698. "notification-url": "https://packages.drupal.org/8/downloads",
  5699. "license": [
  5700. "GPL-2.0+"
  5701. ],
  5702. "authors": [
  5703. {
  5704. "name": "bojanz",
  5705. "homepage": "https://www.drupal.org/user/86106"
  5706. },
  5707. {
  5708. "name": "daggerhart",
  5709. "homepage": "https://www.drupal.org/user/167806"
  5710. },
  5711. {
  5712. "name": "dakala",
  5713. "homepage": "https://www.drupal.org/user/53175"
  5714. },
  5715. {
  5716. "name": "fago",
  5717. "homepage": "https://www.drupal.org/user/16747"
  5718. },
  5719. {
  5720. "name": "mglaman",
  5721. "homepage": "https://www.drupal.org/user/2416470"
  5722. },
  5723. {
  5724. "name": "pcambra",
  5725. "homepage": "https://www.drupal.org/user/122101"
  5726. }
  5727. ],
  5728. "description": "Provides configurable user profiles.",
  5729. "homepage": "http://drupal.org/project/profile",
  5730. "support": {
  5731. "source": "http://cgit.drupalcode.org/profile"
  5732. }
  5733. },
  5734. {
  5735. "name": "drupal/redirect",
  5736. "version": "1.3.0",
  5737. "source": {
  5738. "type": "git",
  5739. "url": "https://git.drupal.org/project/redirect",
  5740. "reference": "8.x-1.3"
  5741. },
  5742. "dist": {
  5743. "type": "zip",
  5744. "url": "https://ftp.drupal.org/files/projects/redirect-8.x-1.3.zip",
  5745. "reference": "8.x-1.3",
  5746. "shasum": "3f9620d186e25f36ac56755979932b8ea965b8c7"
  5747. },
  5748. "require": {
  5749. "drupal/core": "~8"
  5750. },
  5751. "type": "drupal-module",
  5752. "extra": {
  5753. "branch-alias": {
  5754. "dev-1.x": "1.x-dev"
  5755. },
  5756. "drupal": {
  5757. "version": "8.x-1.3",
  5758. "datestamp": "1539682684",
  5759. "security-coverage": {
  5760. "status": "covered",
  5761. "message": "Covered by Drupal's security advisory policy"
  5762. }
  5763. }
  5764. },
  5765. "notification-url": "https://packages.drupal.org/8/downloads",
  5766. "license": [
  5767. "GPL-2.0+"
  5768. ],
  5769. "authors": [
  5770. {
  5771. "name": "Berdir",
  5772. "homepage": "https://www.drupal.org/user/214652"
  5773. },
  5774. {
  5775. "name": "Dave Reid",
  5776. "homepage": "https://www.drupal.org/user/53892"
  5777. },
  5778. {
  5779. "name": "pifagor",
  5780. "homepage": "https://www.drupal.org/user/2375692"
  5781. }
  5782. ],
  5783. "description": "Allows users to redirect from old URLs to new URLs.",
  5784. "homepage": "https://www.drupal.org/project/redirect",
  5785. "support": {
  5786. "source": "http://cgit.drupalcode.org/redirect"
  5787. }
  5788. },
  5789. {
  5790. "name": "drupal/redis",
  5791. "version": "1.0.0",
  5792. "source": {
  5793. "type": "git",
  5794. "url": "https://git.drupal.org/project/redis",
  5795. "reference": "8.x-1.0"
  5796. },
  5797. "dist": {
  5798. "type": "zip",
  5799. "url": "https://ftp.drupal.org/files/projects/redis-8.x-1.0.zip",
  5800. "reference": "8.x-1.0",
  5801. "shasum": "98cf460db5c9aaacf3d5c02ac51e0c9e8e85edbb"
  5802. },
  5803. "require": {
  5804. "drupal/core": "~8.0"
  5805. },
  5806. "suggest": {
  5807. "predis/predis": "^1.1.1"
  5808. },
  5809. "type": "drupal-module",
  5810. "extra": {
  5811. "branch-alias": {
  5812. "dev-1.x": "1.x-dev"
  5813. },
  5814. "drupal": {
  5815. "version": "8.x-1.0",
  5816. "datestamp": "1527699484",
  5817. "security-coverage": {
  5818. "status": "covered",
  5819. "message": "Covered by Drupal's security advisory policy"
  5820. }
  5821. }
  5822. },
  5823. "autoload": {
  5824. "psr-4": {
  5825. "Drupal\\redis\\": "src"
  5826. }
  5827. },
  5828. "notification-url": "https://packages.drupal.org/8/downloads",
  5829. "license": [
  5830. "GPL-2.0"
  5831. ],
  5832. "authors": [
  5833. {
  5834. "name": "Berdir",
  5835. "homepage": "https://www.drupal.org/user/214652"
  5836. },
  5837. {
  5838. "name": "pounard",
  5839. "homepage": "https://www.drupal.org/user/240164"
  5840. }
  5841. ],
  5842. "description": "Provide a module placeholder, for using as dependency for module that needs Redis.",
  5843. "homepage": "https://www.drupal.org/project/redis",
  5844. "support": {
  5845. "source": "http://cgit.drupalcode.org/redis"
  5846. }
  5847. },
  5848. {
  5849. "name": "drupal/search_api",
  5850. "version": "1.10.0",
  5851. "source": {
  5852. "type": "git",
  5853. "url": "https://git.drupal.org/project/search_api",
  5854. "reference": "8.x-1.10"
  5855. },
  5856. "dist": {
  5857. "type": "zip",
  5858. "url": "https://ftp.drupal.org/files/projects/search_api-8.x-1.10.zip",
  5859. "reference": "8.x-1.10",
  5860. "shasum": "1c1d038310a079f8e8154545f743ff7a506c4b8e"
  5861. },
  5862. "require": {
  5863. "drupal/core": "^8.5"
  5864. },
  5865. "require-dev": {
  5866. "drupal/search_api_autocomplete": "@dev",
  5867. "drupal/search_api_db": "*"
  5868. },
  5869. "suggest": {
  5870. "drupal/facets": "Adds the ability to create faceted searches.",
  5871. "drupal/search_api_autocomplete": "Allows adding autocomplete suggestions to search fields.",
  5872. "drupal/search_api_solr": "Adds support for using Apache Solr as a backend."
  5873. },
  5874. "type": "drupal-module",
  5875. "extra": {
  5876. "branch-alias": {
  5877. "dev-1.x": "1.x-dev"
  5878. },
  5879. "drupal": {
  5880. "version": "8.x-1.10",
  5881. "datestamp": "1537175280",
  5882. "security-coverage": {
  5883. "status": "covered",
  5884. "message": "Covered by Drupal's security advisory policy"
  5885. }
  5886. },
  5887. "drush": {
  5888. "services": {
  5889. "drush.services.yml": "^9"
  5890. }
  5891. }
  5892. },
  5893. "notification-url": "https://packages.drupal.org/8/downloads",
  5894. "license": [
  5895. "GPL-2.0+"
  5896. ],
  5897. "authors": [
  5898. {
  5899. "name": "Thomas Seidl",
  5900. "homepage": "https://www.drupal.org/u/drunken-monkey"
  5901. },
  5902. {
  5903. "name": "Nick Veenhof",
  5904. "homepage": "https://www.drupal.org/u/nick_vh"
  5905. },
  5906. {
  5907. "name": "See other contributors",
  5908. "homepage": "https://www.drupal.org/node/790418/committers"
  5909. }
  5910. ],
  5911. "description": "Provides a generic framework for modules offering search capabilities.",
  5912. "homepage": "https://www.drupal.org/project/search_api",
  5913. "support": {
  5914. "source": "http://git.drupal.org/project/search_api.git",
  5915. "issues": "https://www.drupal.org/project/issues/search_api",
  5916. "irc": "irc://irc.freenode.org/drupal-search-api"
  5917. }
  5918. },
  5919. {
  5920. "name": "drupal/search_api_db",
  5921. "version": "1.10.0",
  5922. "require": {
  5923. "drupal/core": "~8.0",
  5924. "drupal/search_api": "self.version"
  5925. },
  5926. "type": "metapackage",
  5927. "extra": {
  5928. "branch-alias": {
  5929. "dev-1.x": "1.x-dev"
  5930. },
  5931. "drupal": {
  5932. "version": "8.x-1.10",
  5933. "datestamp": "1537175280",
  5934. "security-coverage": {
  5935. "status": "covered",
  5936. "message": "Covered by Drupal's security advisory policy"
  5937. }
  5938. }
  5939. },
  5940. "notification-url": "https://packages.drupal.org/8/downloads",
  5941. "license": [
  5942. "GPL-2.0-or-later"
  5943. ],
  5944. "authors": [
  5945. {
  5946. "name": "Nick_vh",
  5947. "homepage": "https://www.drupal.org/user/122682"
  5948. },
  5949. {
  5950. "name": "drunken monkey",
  5951. "homepage": "https://www.drupal.org/user/205582"
  5952. }
  5953. ],
  5954. "description": "Offers an implementation of the Search API that uses database tables for indexing content.",
  5955. "homepage": "https://www.drupal.org/project/search_api",
  5956. "support": {
  5957. "source": "http://cgit.drupalcode.org/search_api"
  5958. }
  5959. },
  5960. {
  5961. "name": "drupal/smart_trim",
  5962. "version": "1.1.0",
  5963. "source": {
  5964. "type": "git",
  5965. "url": "https://git.drupal.org/project/smart_trim",
  5966. "reference": "8.x-1.1"
  5967. },
  5968. "dist": {
  5969. "type": "zip",
  5970. "url": "https://ftp.drupal.org/files/projects/smart_trim-8.x-1.1.zip",
  5971. "reference": "8.x-1.1",
  5972. "shasum": "5f1c0f15914208e0ad2ec5cce1d6419040596fc0"
  5973. },
  5974. "require": {
  5975. "drupal/core": "*"
  5976. },
  5977. "type": "drupal-module",
  5978. "extra": {
  5979. "branch-alias": {
  5980. "dev-1.x": "1.x-dev"
  5981. },
  5982. "drupal": {
  5983. "version": "8.x-1.1",
  5984. "datestamp": "1516301286",
  5985. "security-coverage": {
  5986. "status": "covered",
  5987. "message": "Covered by Drupal's security advisory policy"
  5988. }
  5989. }
  5990. },
  5991. "notification-url": "https://packages.drupal.org/8/downloads",
  5992. "license": [
  5993. "GPL-2.0+"
  5994. ],
  5995. "authors": [
  5996. {
  5997. "name": "Mark Casias (markie)",
  5998. "homepage": "https://www.drupal.org/u/markie",
  5999. "role": "Maintainer"
  6000. },
  6001. {
  6002. "name": "chrisjlee",
  6003. "homepage": "https://www.drupal.org/user/760600"
  6004. },
  6005. {
  6006. "name": "drywall",
  6007. "homepage": "https://www.drupal.org/user/192591"
  6008. },
  6009. {
  6010. "name": "jsenich",
  6011. "homepage": "https://www.drupal.org/user/58871"
  6012. },
  6013. {
  6014. "name": "markie",
  6015. "homepage": "https://www.drupal.org/user/206687"
  6016. },
  6017. {
  6018. "name": "newsignature",
  6019. "homepage": "https://www.drupal.org/user/765518"
  6020. }
  6021. ],
  6022. "description": "Provides a more robust alternative to 'summary or trimmed' textfield format.",
  6023. "homepage": "https://drupal.org/project/smart_trim",
  6024. "support": {
  6025. "source": "https://cgit.drupalcode.org/smart_trim",
  6026. "issues": "https://drupal.org/project/issues/smart_trim"
  6027. }
  6028. },
  6029. {
  6030. "name": "drupal/smtp",
  6031. "version": "1.0.0-beta4",
  6032. "source": {
  6033. "type": "git",
  6034. "url": "https://git.drupal.org/project/smtp",
  6035. "reference": "8.x-1.0-beta4"
  6036. },
  6037. "dist": {
  6038. "type": "zip",
  6039. "url": "https://ftp.drupal.org/files/projects/smtp-8.x-1.0-beta4.zip",
  6040. "reference": "8.x-1.0-beta4",
  6041. "shasum": "80a4df4b2fd2d1b2dc653552d232ce98cb54bb9d"
  6042. },
  6043. "require": {
  6044. "drupal/core": "~8.0"
  6045. },
  6046. "type": "drupal-module",
  6047. "extra": {
  6048. "branch-alias": {
  6049. "dev-1.x": "1.x-dev"
  6050. },
  6051. "drupal": {
  6052. "version": "8.x-1.0-beta4",
  6053. "datestamp": "1527598380",
  6054. "security-coverage": {
  6055. "status": "not-covered",
  6056. "message": "Beta releases are not covered by Drupal security advisories."
  6057. }
  6058. }
  6059. },
  6060. "notification-url": "https://packages.drupal.org/8/downloads",
  6061. "license": [
  6062. "GPL-2.0"
  6063. ],
  6064. "authors": [
  6065. {
  6066. "name": "LukeLast",
  6067. "homepage": "https://www.drupal.org/user/30151"
  6068. },
  6069. {
  6070. "name": "japerry",
  6071. "homepage": "https://www.drupal.org/user/45640"
  6072. },
  6073. {
  6074. "name": "josesanmartin",
  6075. "homepage": "https://www.drupal.org/user/72012"
  6076. },
  6077. {
  6078. "name": "oadaeh",
  6079. "homepage": "https://www.drupal.org/user/4649"
  6080. },
  6081. {
  6082. "name": "wundo",
  6083. "homepage": "https://www.drupal.org/user/25523"
  6084. },
  6085. {
  6086. "name": "yettyn",
  6087. "homepage": "https://www.drupal.org/user/93281"
  6088. }
  6089. ],
  6090. "description": "Allow for site emails to be sent through an SMTP server of your choice.",
  6091. "homepage": "https://www.drupal.org/project/smtp",
  6092. "support": {
  6093. "source": "http://cgit.drupalcode.org/smtp",
  6094. "issues": "https://www.drupal.org/project/issues/smtp"
  6095. }
  6096. },
  6097. {
  6098. "name": "drupal/synonyms",
  6099. "version": "dev-1.x",
  6100. "source": {
  6101. "type": "git",
  6102. "url": "https://git.drupal.org/project/synonyms",
  6103. "reference": "5327ef244bad11e859eed9ff71b49cb8f9955190"
  6104. },
  6105. "require": {
  6106. "drupal/core": "^8.2"
  6107. },
  6108. "type": "drupal-module",
  6109. "extra": {
  6110. "branch-alias": {
  6111. "dev-1.x": "1.x-dev"
  6112. },
  6113. "drupal": {
  6114. "version": "8.x-1.0-alpha1+4-dev",
  6115. "datestamp": "1520765584",
  6116. "security-coverage": {
  6117. "status": "not-covered",
  6118. "message": "Dev releases are not covered by Drupal security advisories."
  6119. }
  6120. }
  6121. },
  6122. "notification-url": "https://packages.drupal.org/8/downloads",
  6123. "license": [
  6124. "GPL-2.0-or-later"
  6125. ],
  6126. "authors": [
  6127. {
  6128. "name": "Zen",
  6129. "homepage": "https://www.drupal.org/user/21209"
  6130. },
  6131. {
  6132. "name": "bojanz",
  6133. "homepage": "https://www.drupal.org/user/86106"
  6134. },
  6135. {
  6136. "name": "bucefal91",
  6137. "homepage": "https://www.drupal.org/user/504128"
  6138. }
  6139. ],
  6140. "description": "Provides synonyms feature for content entities.",
  6141. "homepage": "https://www.drupal.org/project/synonyms",
  6142. "support": {
  6143. "source": "http://cgit.drupalcode.org/synonyms"
  6144. },
  6145. "time": "2018-10-21T17:05:25+00:00"
  6146. },
  6147. {
  6148. "name": "drupal/telephone_formatter",
  6149. "version": "1.0.0-beta1",
  6150. "source": {
  6151. "type": "git",
  6152. "url": "https://git.drupal.org/project/telephone_formatter",
  6153. "reference": "8.x-1.0-beta1"
  6154. },
  6155. "dist": {
  6156. "type": "zip",
  6157. "url": "https://ftp.drupal.org/files/projects/telephone_formatter-8.x-1.0-beta1.zip",
  6158. "reference": "8.x-1.0-beta1",
  6159. "shasum": "6d606d98840d983ace3f642879cb49683f2c1711"
  6160. },
  6161. "require": {
  6162. "drupal/core": "*",
  6163. "giggsey/libphonenumber-for-php": "^8.0"
  6164. },
  6165. "suggest": {
  6166. "drupal/telephone_validation": "Unsure data quality"
  6167. },
  6168. "type": "drupal-module",
  6169. "extra": {
  6170. "branch-alias": {
  6171. "dev-1.x": "1.x-dev"
  6172. },
  6173. "drupal": {
  6174. "version": "8.x-1.0-beta1",
  6175. "datestamp": "1492638542",
  6176. "security-coverage": {
  6177. "status": "not-covered",
  6178. "message": "Beta releases are not covered by Drupal security advisories."
  6179. }
  6180. }
  6181. },
  6182. "notification-url": "https://packages.drupal.org/8/downloads",
  6183. "license": [
  6184. "GPL-2.0+"
  6185. ],
  6186. "authors": [
  6187. {
  6188. "name": "Jakub Piasecki",
  6189. "homepage": "https://www.drupal.org/user/1532844",
  6190. "email": "jakub@piaseccy.pl"
  6191. }
  6192. ],
  6193. "description": "Additional formatters to Telephone field.",
  6194. "homepage": "https://www.drupal.org/project/telephone_formatter",
  6195. "support": {
  6196. "source": "http://cgit.drupalcode.org/telephone_formatter",
  6197. "issues": "http://drupal.org/project/issues/telephone_formatter"
  6198. }
  6199. },
  6200. {
  6201. "name": "drupal/telephone_validation",
  6202. "version": "2.1.0",
  6203. "source": {
  6204. "type": "git",
  6205. "url": "https://git.drupal.org/project/telephone_validation",
  6206. "reference": "8.x-2.1"
  6207. },
  6208. "dist": {
  6209. "type": "zip",
  6210. "url": "https://ftp.drupal.org/files/projects/telephone_validation-8.x-2.1.zip",
  6211. "reference": "8.x-2.1",
  6212. "shasum": "fcdb0c3c5541b06e6dd469a7aacefd2d0a891b74"
  6213. },
  6214. "require": {
  6215. "drupal/core": "^8.0",
  6216. "drupal/telephone": "*",
  6217. "giggsey/libphonenumber-for-php": "~8.0"
  6218. },
  6219. "type": "drupal-module",
  6220. "extra": {
  6221. "branch-alias": {
  6222. "dev-2.x": "2.x-dev"
  6223. },
  6224. "drupal": {
  6225. "version": "8.x-2.1",
  6226. "datestamp": "1527165785",
  6227. "security-coverage": {
  6228. "status": "covered",
  6229. "message": "Covered by Drupal's security advisory policy"
  6230. }
  6231. }
  6232. },
  6233. "notification-url": "https://packages.drupal.org/8/downloads",
  6234. "license": [
  6235. "GPL-2.0+"
  6236. ],
  6237. "authors": [
  6238. {
  6239. "name": "zaporylie",
  6240. "homepage": "https://www.drupal.org/user/1532844"
  6241. }
  6242. ],
  6243. "description": "Use 3rd party library to validate telephone field.",
  6244. "homepage": "http://drupal.org/project/telephone_validation",
  6245. "support": {
  6246. "source": "http://cgit.drupalcode.org/telephone_validation",
  6247. "issues": "http://drupal.org/project/issues/telephone_validation"
  6248. }
  6249. },
  6250. {
  6251. "name": "drupal/token",
  6252. "version": "1.5.0",
  6253. "source": {
  6254. "type": "git",
  6255. "url": "https://git.drupal.org/project/token",
  6256. "reference": "8.x-1.5"
  6257. },
  6258. "dist": {
  6259. "type": "zip",
  6260. "url": "https://ftp.drupal.org/files/projects/token-8.x-1.5.zip",
  6261. "reference": "8.x-1.5",
  6262. "shasum": "6382a7e1aabbd8246f1117a26bf4916d285b401d"
  6263. },
  6264. "require": {
  6265. "drupal/core": "^8.5"
  6266. },
  6267. "type": "drupal-module",
  6268. "extra": {
  6269. "branch-alias": {
  6270. "dev-1.x": "1.x-dev"
  6271. },
  6272. "drupal": {
  6273. "version": "8.x-1.5",
  6274. "datestamp": "1537557481",
  6275. "security-coverage": {
  6276. "status": "covered",
  6277. "message": "Covered by Drupal's security advisory policy"
  6278. }
  6279. }
  6280. },
  6281. "notification-url": "https://packages.drupal.org/8/downloads",
  6282. "license": [
  6283. "GPL-2.0-or-later"
  6284. ],
  6285. "authors": [
  6286. {
  6287. "name": "Berdir",
  6288. "homepage": "https://www.drupal.org/user/214652"
  6289. },
  6290. {
  6291. "name": "Dave Reid",
  6292. "homepage": "https://www.drupal.org/user/53892"
  6293. },
  6294. {
  6295. "name": "eaton",
  6296. "homepage": "https://www.drupal.org/user/16496"
  6297. },
  6298. {
  6299. "name": "fago",
  6300. "homepage": "https://www.drupal.org/user/16747"
  6301. },
  6302. {
  6303. "name": "greggles",
  6304. "homepage": "https://www.drupal.org/user/36762"
  6305. },
  6306. {
  6307. "name": "mikeryan",
  6308. "homepage": "https://www.drupal.org/user/4420"
  6309. }
  6310. ],
  6311. "description": "Provides a user interface for the Token API and some missing core tokens.",
  6312. "homepage": "https://www.drupal.org/project/token",
  6313. "support": {
  6314. "source": "http://cgit.drupalcode.org/token"
  6315. }
  6316. },
  6317. {
  6318. "name": "drupal/toolbar_themes",
  6319. "version": "1.0.0-alpha4",
  6320. "source": {
  6321. "type": "git",
  6322. "url": "https://git.drupal.org/project/toolbar_themes",
  6323. "reference": "8.x-1.0-alpha4"
  6324. },
  6325. "dist": {
  6326. "type": "zip",
  6327. "url": "https://ftp.drupal.org/files/projects/toolbar_themes-8.x-1.0-alpha4.zip",
  6328. "reference": "8.x-1.0-alpha4",
  6329. "shasum": "15c38da8bfd5a44e47e436d8f432a0aaf6b2cd70"
  6330. },
  6331. "require": {
  6332. "drupal/core": "*"
  6333. },
  6334. "type": "drupal-module",
  6335. "extra": {
  6336. "branch-alias": {
  6337. "dev-1.x": "1.x-dev"
  6338. },
  6339. "drupal": {
  6340. "version": "8.x-1.0-alpha4",
  6341. "datestamp": "1474198439",
  6342. "security-coverage": {
  6343. "status": "not-covered",
  6344. "message": "Project has not opted into security advisory coverage!"
  6345. }
  6346. }
  6347. },
  6348. "notification-url": "https://packages.drupal.org/8/downloads",
  6349. "license": [
  6350. "GPL-2.0-or-later"
  6351. ],
  6352. "authors": [
  6353. {
  6354. "name": "Jeff Burnz",
  6355. "homepage": "https://www.drupal.org/user/61393"
  6356. }
  6357. ],
  6358. "description": "Apply themes to the toolbar.",
  6359. "homepage": "https://www.drupal.org/project/toolbar_themes",
  6360. "support": {
  6361. "source": "http://cgit.drupalcode.org/toolbar_themes"
  6362. }
  6363. },
  6364. {
  6365. "name": "drupal/translation_views",
  6366. "version": "1.0.0-alpha4",
  6367. "source": {
  6368. "type": "git",
  6369. "url": "https://git.drupal.org/project/translation_views",
  6370. "reference": "8.x-1.0-alpha4"
  6371. },
  6372. "dist": {
  6373. "type": "zip",
  6374. "url": "https://ftp.drupal.org/files/projects/translation_views-8.x-1.0-alpha4.zip",
  6375. "reference": "8.x-1.0-alpha4",
  6376. "shasum": "96f7828005a8d559f31f0dfcb471a68698311cda"
  6377. },
  6378. "require": {
  6379. "drupal/core": "*"
  6380. },
  6381. "type": "drupal-module",
  6382. "extra": {
  6383. "branch-alias": {
  6384. "dev-1.x": "1.x-dev"
  6385. },
  6386. "drupal": {
  6387. "version": "8.x-1.0-alpha4",
  6388. "datestamp": "1538124180",
  6389. "security-coverage": {
  6390. "status": "not-covered",
  6391. "message": "Project has not opted into security advisory coverage!"
  6392. }
  6393. }
  6394. },
  6395. "notification-url": "https://packages.drupal.org/8/downloads",
  6396. "license": [
  6397. "GPL-2.0-or-later"
  6398. ],
  6399. "authors": [
  6400. {
  6401. "name": "matsbla",
  6402. "homepage": "https://www.drupal.org/user/2325394"
  6403. },
  6404. {
  6405. "name": "vlad.dancer",
  6406. "homepage": "https://www.drupal.org/user/903844"
  6407. }
  6408. ],
  6409. "description": "Create customized lists and queries of translations from your database.",
  6410. "homepage": "https://www.drupal.org/project/translation_views",
  6411. "support": {
  6412. "source": "http://cgit.drupalcode.org/translation_views"
  6413. }
  6414. },
  6415. {
  6416. "name": "drupal/ultimate_cron",
  6417. "version": "2.0.0-alpha4",
  6418. "source": {
  6419. "type": "git",
  6420. "url": "https://git.drupal.org/project/ultimate_cron",
  6421. "reference": "8.x-2.0-alpha4"
  6422. },
  6423. "dist": {
  6424. "type": "zip",
  6425. "url": "https://ftp.drupal.org/files/projects/ultimate_cron-8.x-2.0-alpha4.zip",
  6426. "reference": "8.x-2.0-alpha4",
  6427. "shasum": "50cdadd061f1f6fadb961b04ed04348bcc4719d3"
  6428. },
  6429. "require": {
  6430. "drupal/core": "~8.0"
  6431. },
  6432. "type": "drupal-module",
  6433. "extra": {
  6434. "branch-alias": {
  6435. "dev-2.x": "2.x-dev"
  6436. },
  6437. "drupal": {
  6438. "version": "8.x-2.0-alpha4",
  6439. "datestamp": "1527925385",
  6440. "security-coverage": {
  6441. "status": "not-covered",
  6442. "message": "Alpha releases are not covered by Drupal security advisories."
  6443. }
  6444. }
  6445. },
  6446. "notification-url": "https://packages.drupal.org/8/downloads",
  6447. "license": [
  6448. "GPL-2.0-or-later"
  6449. ],
  6450. "authors": [
  6451. {
  6452. "name": "Berdir",
  6453. "homepage": "https://www.drupal.org/user/214652"
  6454. },
  6455. {
  6456. "name": "Dane Powell",
  6457. "homepage": "https://www.drupal.org/user/339326"
  6458. },
  6459. {
  6460. "name": "arnested",
  6461. "homepage": "https://www.drupal.org/user/245635"
  6462. },
  6463. {
  6464. "name": "gielfeldt",
  6465. "homepage": "https://www.drupal.org/user/366993"
  6466. },
  6467. {
  6468. "name": "miro_dietiker",
  6469. "homepage": "https://www.drupal.org/user/227761"
  6470. }
  6471. ],
  6472. "description": "Cron",
  6473. "homepage": "https://www.drupal.org/project/ultimate_cron",
  6474. "support": {
  6475. "source": "http://cgit.drupalcode.org/ultimate_cron"
  6476. }
  6477. },
  6478. {
  6479. "name": "drupal/url_to_video_filter",
  6480. "version": "1.3.0",
  6481. "source": {
  6482. "type": "git",
  6483. "url": "https://git.drupal.org/project/url_to_video_filter",
  6484. "reference": "8.x-1.3"
  6485. },
  6486. "dist": {
  6487. "type": "zip",
  6488. "url": "https://ftp.drupal.org/files/projects/url_to_video_filter-8.x-1.3.zip",
  6489. "reference": "8.x-1.3",
  6490. "shasum": "40a27d1d8948638c0202c1b0c8afe0d92f8362a6"
  6491. },
  6492. "require": {
  6493. "drupal/core": "~8.0"
  6494. },
  6495. "type": "drupal-module",
  6496. "extra": {
  6497. "branch-alias": {
  6498. "dev-1.x": "1.x-dev"
  6499. },
  6500. "drupal": {
  6501. "version": "8.x-1.3",
  6502. "datestamp": "1532695981",
  6503. "security-coverage": {
  6504. "status": "covered",
  6505. "message": "Covered by Drupal's security advisory policy"
  6506. }
  6507. }
  6508. },
  6509. "notification-url": "https://packages.drupal.org/8/downloads",
  6510. "license": [
  6511. "GPL-2.0-or-later"
  6512. ],
  6513. "authors": [
  6514. {
  6515. "name": "Jaypan",
  6516. "homepage": "https://www.drupal.org/user/324696"
  6517. }
  6518. ],
  6519. "description": "Text filter to convert URLs to embedded videos",
  6520. "homepage": "https://www.drupal.org/project/url_to_video_filter",
  6521. "support": {
  6522. "source": "http://cgit.drupalcode.org/url_to_video_filter"
  6523. }
  6524. },
  6525. {
  6526. "name": "drupal/video_embed_field",
  6527. "version": "2.0.0",
  6528. "source": {
  6529. "type": "git",
  6530. "url": "https://git.drupal.org/project/video_embed_field",
  6531. "reference": "8.x-2.0"
  6532. },
  6533. "dist": {
  6534. "type": "zip",
  6535. "url": "https://ftp.drupal.org/files/projects/video_embed_field-8.x-2.0.zip",
  6536. "reference": "8.x-2.0",
  6537. "shasum": "e864f090b3cb9405376ca324d81ace83613e2019"
  6538. },
  6539. "require": {
  6540. "drupal/core": "*"
  6541. },
  6542. "require-dev": {
  6543. "drupal/colorbox": "*",
  6544. "drupal/media_entity": "*",
  6545. "drupal/media_entity_embeddable_video": "*"
  6546. },
  6547. "type": "drupal-module",
  6548. "extra": {
  6549. "branch-alias": {
  6550. "dev-2.x": "2.x-dev"
  6551. },
  6552. "drupal": {
  6553. "version": "8.x-1.x",
  6554. "datestamp": "1523338084",
  6555. "security-coverage": {
  6556. "status": "covered",
  6557. "message": "Covered by Drupal's security advisory policy"
  6558. },
  6559. "package": "Field types"
  6560. }
  6561. },
  6562. "notification-url": "https://packages.drupal.org/8/downloads",
  6563. "license": [
  6564. "GPL-2.0+"
  6565. ],
  6566. "authors": [
  6567. {
  6568. "name": "Sam152",
  6569. "homepage": "https://www.drupal.org/user/1485048"
  6570. },
  6571. {
  6572. "name": "jec006",
  6573. "homepage": "https://www.drupal.org/user/855980"
  6574. },
  6575. {
  6576. "name": "plopesc",
  6577. "homepage": "https://www.drupal.org/user/282415"
  6578. }
  6579. ],
  6580. "description": "A pluggable field type for storing videos from external video hosts such as Vimeo and YouTube.",
  6581. "homepage": "https://www.drupal.org/project/video_embed_field",
  6582. "support": {
  6583. "source": "http://cgit.drupalcode.org/video_embed_field"
  6584. }
  6585. },
  6586. {
  6587. "name": "drupal/views_bulk_edit",
  6588. "version": "2.2.0",
  6589. "source": {
  6590. "type": "git",
  6591. "url": "https://git.drupal.org/project/views_bulk_edit",
  6592. "reference": "8.x-2.2"
  6593. },
  6594. "dist": {
  6595. "type": "zip",
  6596. "url": "https://ftp.drupal.org/files/projects/views_bulk_edit-8.x-2.2.zip",
  6597. "reference": "8.x-2.2",
  6598. "shasum": "6a096dc73fab842c1b000d8788241ed9d3a17427"
  6599. },
  6600. "require": {
  6601. "drupal/core": "*",
  6602. "drupal/views_bulk_operations": "~1.0 | ~2.0"
  6603. },
  6604. "type": "drupal-module",
  6605. "extra": {
  6606. "branch-alias": {
  6607. "dev-2.x": "2.x-dev"
  6608. },
  6609. "drupal": {
  6610. "version": "8.x-2.2",
  6611. "datestamp": "1532689085",
  6612. "security-coverage": {
  6613. "status": "covered",
  6614. "message": "Covered by Drupal's security advisory policy"
  6615. }
  6616. }
  6617. },
  6618. "notification-url": "https://packages.drupal.org/8/downloads",
  6619. "license": [
  6620. "GPL-2.0+"
  6621. ],
  6622. "authors": [
  6623. {
  6624. "name": "Marcin Grabias",
  6625. "homepage": "https://www.drupal.org/u/graber"
  6626. },
  6627. {
  6628. "name": "benjy",
  6629. "homepage": "https://www.drupal.org/user/1852732"
  6630. }
  6631. ],
  6632. "description": "Allows bulk edition of entity field values.",
  6633. "homepage": "https://www.drupal.org/project/views_bulk_edit",
  6634. "support": {
  6635. "source": "http://cgit.drupalcode.org/views_bulk_edit",
  6636. "issues": "https://www.drupal.org/project/issues/views_bulk_edit?version=8.x"
  6637. }
  6638. },
  6639. {
  6640. "name": "drupal/views_bulk_operations",
  6641. "version": "2.4.0",
  6642. "source": {
  6643. "type": "git",
  6644. "url": "https://git.drupal.org/project/views_bulk_operations",
  6645. "reference": "8.x-2.4"
  6646. },
  6647. "dist": {
  6648. "type": "zip",
  6649. "url": "https://ftp.drupal.org/files/projects/views_bulk_operations-8.x-2.4.zip",
  6650. "reference": "8.x-2.4",
  6651. "shasum": "50c5778770f3a92e38ecf664301b77146e3cc931"
  6652. },
  6653. "require": {
  6654. "drupal/core": "^8.4"
  6655. },
  6656. "type": "drupal-module",
  6657. "extra": {
  6658. "branch-alias": {
  6659. "dev-2.x": "2.x-dev"
  6660. },
  6661. "drupal": {
  6662. "version": "8.x-2.4",
  6663. "datestamp": "1530516821",
  6664. "security-coverage": {
  6665. "status": "covered",
  6666. "message": "Covered by Drupal's security advisory policy"
  6667. }
  6668. },
  6669. "drush": {
  6670. "services": {
  6671. "drush.services.yml": "^9"
  6672. }
  6673. }
  6674. },
  6675. "notification-url": "https://packages.drupal.org/8/downloads",
  6676. "license": [
  6677. "GPL-2.0+"
  6678. ],
  6679. "authors": [
  6680. {
  6681. "name": "Marcin Grabias",
  6682. "homepage": "https://www.drupal.org/u/graber"
  6683. },
  6684. {
  6685. "name": "Jon Pugh",
  6686. "homepage": "https://www.drupal.org/user/17028"
  6687. },
  6688. {
  6689. "name": "bojanz",
  6690. "homepage": "https://www.drupal.org/user/86106"
  6691. },
  6692. {
  6693. "name": "infojunkie",
  6694. "homepage": "https://www.drupal.org/user/48424"
  6695. },
  6696. {
  6697. "name": "joelpittet",
  6698. "homepage": "https://www.drupal.org/user/160302"
  6699. }
  6700. ],
  6701. "description": "Adds an ability to perform bulk operations on selected entities from view results. Provides an API to create such operations.",
  6702. "homepage": "https://www.drupal.org/project/views_bulk_operations",
  6703. "support": {
  6704. "source": "http://cgit.drupalcode.org/views_bulk_operations",
  6705. "issues": "https://www.drupal.org/project/issues/views_bulk_operations?version=8.x",
  6706. "docs": "https://www.drupal.org/docs/8/modules/views-bulk-operations-vbo"
  6707. }
  6708. },
  6709. {
  6710. "name": "drupal/views_ef_fieldset",
  6711. "version": "dev-1.x",
  6712. "source": {
  6713. "type": "git",
  6714. "url": "https://git.drupal.org/project/views_ef_fieldset",
  6715. "reference": "f53f9e3390f1491ace93662634477bc43f844759"
  6716. },
  6717. "require": {
  6718. "drupal/core": "*"
  6719. },
  6720. "type": "drupal-module",
  6721. "extra": {
  6722. "branch-alias": {
  6723. "dev-1.x": "1.x-dev"
  6724. },
  6725. "drupal": {
  6726. "version": "8.x-1.1+4-dev",
  6727. "datestamp": "1538990580",
  6728. "security-coverage": {
  6729. "status": "not-covered",
  6730. "message": "Dev releases are not covered by Drupal security advisories."
  6731. }
  6732. }
  6733. },
  6734. "notification-url": "https://packages.drupal.org/8/downloads",
  6735. "license": [
  6736. "GPL-2.0-or-later"
  6737. ],
  6738. "authors": [
  6739. {
  6740. "name": "Pol",
  6741. "homepage": "https://www.drupal.org/user/47194"
  6742. },
  6743. {
  6744. "name": "ciss",
  6745. "homepage": "https://www.drupal.org/user/1632364"
  6746. }
  6747. ],
  6748. "description": "Provide an option to render the \"exposed form widgets\" in a fieldset.",
  6749. "homepage": "https://www.drupal.org/project/views_ef_fieldset",
  6750. "support": {
  6751. "source": "http://cgit.drupalcode.org/views_ef_fieldset"
  6752. },
  6753. "time": "2018-11-16T09:23:47+00:00"
  6754. },
  6755. {
  6756. "name": "drupal/workflow",
  6757. "version": "dev-1.x",
  6758. "source": {
  6759. "type": "git",
  6760. "url": "https://git.drupal.org/project/workflow",
  6761. "reference": "942b2a293696fd4c40fbb906f742a2d9293e5fcb"
  6762. },
  6763. "require": {
  6764. "drupal/core": "*"
  6765. },
  6766. "type": "drupal-module",
  6767. "extra": {
  6768. "branch-alias": {
  6769. "dev-1.x": "1.x-dev"
  6770. },
  6771. "drupal": {
  6772. "version": "8.x-1.1+19-dev",
  6773. "datestamp": "1537125481",
  6774. "security-coverage": {
  6775. "status": "not-covered",
  6776. "message": "Dev releases are not covered by Drupal security advisories."
  6777. }
  6778. },
  6779. "patches_applied": {
  6780. "fix bad way of including files": "https://www.drupal.org/files/issues/2018-11-01/workflow-include.patch"
  6781. }
  6782. },
  6783. "notification-url": "https://packages.drupal.org/8/downloads",
  6784. "license": [
  6785. "GPL-2.0-or-later"
  6786. ],
  6787. "authors": [
  6788. {
  6789. "name": "Bastlynn",
  6790. "homepage": "https://www.drupal.org/user/275249"
  6791. },
  6792. {
  6793. "name": "Heine",
  6794. "homepage": "https://www.drupal.org/user/17943"
  6795. },
  6796. {
  6797. "name": "JacobSingh",
  6798. "homepage": "https://www.drupal.org/user/68912"
  6799. },
  6800. {
  6801. "name": "NancyDru",
  6802. "homepage": "https://www.drupal.org/user/101412"
  6803. },
  6804. {
  6805. "name": "eaton",
  6806. "homepage": "https://www.drupal.org/user/16496"
  6807. },
  6808. {
  6809. "name": "johnv",
  6810. "homepage": "https://www.drupal.org/user/591042"
  6811. },
  6812. {
  6813. "name": "jvandyk",
  6814. "homepage": "https://www.drupal.org/user/2375"
  6815. },
  6816. {
  6817. "name": "mfredrickson",
  6818. "homepage": "https://www.drupal.org/user/31994"
  6819. },
  6820. {
  6821. "name": "q0rban",
  6822. "homepage": "https://www.drupal.org/user/31022"
  6823. }
  6824. ],
  6825. "description": "Defines a field type with Workflows, containing customizable state transitions.",
  6826. "homepage": "https://www.drupal.org/project/workflow",
  6827. "support": {
  6828. "source": "http://cgit.drupalcode.org/workflow"
  6829. },
  6830. "time": "2018-09-16T19:25:10+00:00"
  6831. },
  6832. {
  6833. "name": "drush/drush",
  6834. "version": "9.5.2",
  6835. "source": {
  6836. "type": "git",
  6837. "url": "https://github.com/drush-ops/drush.git",
  6838. "reference": "17f0106706391675a281c6d212850853bdbe90f9"
  6839. },
  6840. "dist": {
  6841. "type": "zip",
  6842. "url": "https://api.github.com/repos/drush-ops/drush/zipball/17f0106706391675a281c6d212850853bdbe90f9",
  6843. "reference": "17f0106706391675a281c6d212850853bdbe90f9",
  6844. "shasum": ""
  6845. },
  6846. "require": {
  6847. "chi-teck/drupal-code-generator": "^1.27.0",
  6848. "composer/semver": "^1.4",
  6849. "consolidation/annotated-command": "^2.9.1",
  6850. "consolidation/config": "^1.1.0",
  6851. "consolidation/output-formatters": "^3.1.12",
  6852. "consolidation/robo": "^1.1.5",
  6853. "consolidation/site-alias": "^1.1.5",
  6854. "ext-dom": "*",
  6855. "grasmash/yaml-expander": "^1.1.1",
  6856. "league/container": "~2",
  6857. "php": ">=5.6.0",
  6858. "psr/log": "~1.0",
  6859. "psy/psysh": "~0.6",
  6860. "symfony/config": "^3.4",
  6861. "symfony/console": "^3.4",
  6862. "symfony/event-dispatcher": "^3.4",
  6863. "symfony/finder": "^3.4",
  6864. "symfony/process": "^3.4",
  6865. "symfony/var-dumper": "^3.4",
  6866. "symfony/yaml": "^3.4",
  6867. "webflo/drupal-finder": "^1.1",
  6868. "webmozart/path-util": "^2.1.0"
  6869. },
  6870. "require-dev": {
  6871. "composer/installers": "^1.2",
  6872. "cweagans/composer-patches": "~1.0",
  6873. "drupal/alinks": "1.0.0",
  6874. "drupal/devel": "^1.0@RC",
  6875. "drupal/empty_theme": "1.0",
  6876. "g1a/composer-test-scenarios": "^2.2.0",
  6877. "lox/xhprof": "dev-master",
  6878. "phpunit/phpunit": "^4.8.36 || ^6.1",
  6879. "squizlabs/php_codesniffer": "^2.7",
  6880. "vlucas/phpdotenv": "^2.4",
  6881. "webflo/drupal-core-strict": "8.6.x-dev"
  6882. },
  6883. "bin": [
  6884. "drush"
  6885. ],
  6886. "type": "library",
  6887. "extra": {
  6888. "installer-paths": {
  6889. "sut/core": [
  6890. "type:drupal-core"
  6891. ],
  6892. "sut/libraries/{$name}": [
  6893. "type:drupal-library"
  6894. ],
  6895. "sut/modules/unish/{$name}": [
  6896. "drupal/devel"
  6897. ],
  6898. "sut/themes/unish/{$name}": [
  6899. "drupal/empty_theme"
  6900. ],
  6901. "sut/modules/contrib/{$name}": [
  6902. "type:drupal-module"
  6903. ],
  6904. "sut/profiles/contrib/{$name}": [
  6905. "type:drupal-profile"
  6906. ],
  6907. "sut/themes/contrib/{$name}": [
  6908. "type:drupal-theme"
  6909. ],
  6910. "sut/drush/contrib/{$name}": [
  6911. "type:drupal-drush"
  6912. ]
  6913. },
  6914. "branch-alias": {
  6915. "dev-master": "9.x-dev"
  6916. }
  6917. },
  6918. "autoload": {
  6919. "psr-4": {
  6920. "Drush\\": "src/",
  6921. "Drush\\Internal\\": "internal-copy/",
  6922. "Unish\\": "tests/"
  6923. }
  6924. },
  6925. "notification-url": "https://packagist.org/downloads/",
  6926. "license": [
  6927. "GPL-2.0-or-later"
  6928. ],
  6929. "authors": [
  6930. {
  6931. "name": "Moshe Weitzman",
  6932. "email": "weitzman@tejasa.com"
  6933. },
  6934. {
  6935. "name": "Owen Barton",
  6936. "email": "drupal@owenbarton.com"
  6937. },
  6938. {
  6939. "name": "Greg Anderson",
  6940. "email": "greg.1.anderson@greenknowe.org"
  6941. },
  6942. {
  6943. "name": "Jonathan Araña Cruz",
  6944. "email": "jonhattan@faita.net"
  6945. },
  6946. {
  6947. "name": "Jonathan Hedstrom",
  6948. "email": "jhedstrom@gmail.com"
  6949. },
  6950. {
  6951. "name": "Christopher Gervais",
  6952. "email": "chris@ergonlogic.com"
  6953. },
  6954. {
  6955. "name": "Dave Reid",
  6956. "email": "dave@davereid.net"
  6957. },
  6958. {
  6959. "name": "Damian Lee",
  6960. "email": "damiankloip@googlemail.com"
  6961. }
  6962. ],
  6963. "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.",
  6964. "homepage": "http://www.drush.org",
  6965. "time": "2018-10-17T18:37:53+00:00"
  6966. },
  6967. {
  6968. "name": "easyrdf/easyrdf",
  6969. "version": "0.9.1",
  6970. "source": {
  6971. "type": "git",
  6972. "url": "https://github.com/njh/easyrdf.git",
  6973. "reference": "acd09dfe0555fbcfa254291e433c45fdd4652566"
  6974. },
  6975. "dist": {
  6976. "type": "zip",
  6977. "url": "https://api.github.com/repos/njh/easyrdf/zipball/acd09dfe0555fbcfa254291e433c45fdd4652566",
  6978. "reference": "acd09dfe0555fbcfa254291e433c45fdd4652566",
  6979. "shasum": ""
  6980. },
  6981. "require": {
  6982. "ext-mbstring": "*",
  6983. "ext-pcre": "*",
  6984. "php": ">=5.2.8"
  6985. },
  6986. "require-dev": {
  6987. "phpunit/phpunit": "~3.5",
  6988. "sami/sami": "~1.4",
  6989. "squizlabs/php_codesniffer": "~1.4.3"
  6990. },
  6991. "suggest": {
  6992. "ml/json-ld": "~1.0"
  6993. },
  6994. "type": "library",
  6995. "autoload": {
  6996. "psr-0": {
  6997. "EasyRdf_": "lib/"
  6998. }
  6999. },
  7000. "notification-url": "https://packagist.org/downloads/",
  7001. "license": [
  7002. "BSD-3-Clause"
  7003. ],
  7004. "authors": [
  7005. {
  7006. "name": "Nicholas Humfrey",
  7007. "email": "njh@aelius.com",
  7008. "homepage": "http://www.aelius.com/njh/",
  7009. "role": "Developer"
  7010. },
  7011. {
  7012. "name": "Alexey Zakhlestin",
  7013. "email": "indeyets@gmail.com",
  7014. "role": "Developer"
  7015. }
  7016. ],
  7017. "description": "EasyRdf is a PHP library designed to make it easy to consume and produce RDF.",
  7018. "homepage": "http://www.easyrdf.org/",
  7019. "keywords": [
  7020. "Linked Data",
  7021. "RDF",
  7022. "Semantic Web",
  7023. "Turtle",
  7024. "rdfa",
  7025. "sparql"
  7026. ],
  7027. "time": "2015-02-27T09:45:49+00:00"
  7028. },
  7029. {
  7030. "name": "egulias/email-validator",
  7031. "version": "1.2.15",
  7032. "source": {
  7033. "type": "git",
  7034. "url": "https://github.com/egulias/EmailValidator.git",
  7035. "reference": "758a77525bdaabd6c0f5669176bd4361cb2dda9e"
  7036. },
  7037. "dist": {
  7038. "type": "zip",
  7039. "url": "https://api.github.com/repos/egulias/EmailValidator/zipball/758a77525bdaabd6c0f5669176bd4361cb2dda9e",
  7040. "reference": "758a77525bdaabd6c0f5669176bd4361cb2dda9e",
  7041. "shasum": ""
  7042. },
  7043. "require": {
  7044. "doctrine/lexer": "^1.0.1",
  7045. "php": ">= 5.3.3"
  7046. },
  7047. "require-dev": {
  7048. "phpunit/phpunit": "^4.8.24"
  7049. },
  7050. "type": "library",
  7051. "extra": {
  7052. "branch-alias": {
  7053. "dev-master": "2.0.x-dev"
  7054. }
  7055. },
  7056. "autoload": {
  7057. "psr-0": {
  7058. "Egulias\\": "src/"
  7059. }
  7060. },
  7061. "notification-url": "https://packagist.org/downloads/",
  7062. "license": [
  7063. "MIT"
  7064. ],
  7065. "authors": [
  7066. {
  7067. "name": "Eduardo Gulias Davis"
  7068. }
  7069. ],
  7070. "description": "A library for validating emails",
  7071. "homepage": "https://github.com/egulias/EmailValidator",
  7072. "keywords": [
  7073. "email",
  7074. "emailvalidation",
  7075. "emailvalidator",
  7076. "validation",
  7077. "validator"
  7078. ],
  7079. "time": "2018-09-25T20:59:41+00:00"
  7080. },
  7081. {
  7082. "name": "g1a/composer-test-scenarios",
  7083. "version": "2.2.0",
  7084. "source": {
  7085. "type": "git",
  7086. "url": "https://github.com/g1a/composer-test-scenarios.git",
  7087. "reference": "a166fd15191aceab89f30c097e694b7cf3db4880"
  7088. },
  7089. "dist": {
  7090. "type": "zip",
  7091. "url": "https://api.github.com/repos/g1a/composer-test-scenarios/zipball/a166fd15191aceab89f30c097e694b7cf3db4880",
  7092. "reference": "a166fd15191aceab89f30c097e694b7cf3db4880",
  7093. "shasum": ""
  7094. },
  7095. "bin": [
  7096. "scripts/create-scenario",
  7097. "scripts/dependency-licenses",
  7098. "scripts/install-scenario"
  7099. ],
  7100. "type": "library",
  7101. "notification-url": "https://packagist.org/downloads/",
  7102. "license": [
  7103. "MIT"
  7104. ],
  7105. "authors": [
  7106. {
  7107. "name": "Greg Anderson",
  7108. "email": "greg.1.anderson@greenknowe.org"
  7109. }
  7110. ],
  7111. "description": "Useful scripts for testing multiple sets of Composer dependencies.",
  7112. "time": "2018-08-08T23:37:23+00:00"
  7113. },
  7114. {
  7115. "name": "giggsey/libphonenumber-for-php",
  7116. "version": "8.10.2",
  7117. "source": {
  7118. "type": "git",
  7119. "url": "https://github.com/giggsey/libphonenumber-for-php.git",
  7120. "reference": "a71f260c2efce10ded8af030a20fa13edfb0e9be"
  7121. },
  7122. "dist": {
  7123. "type": "zip",
  7124. "url": "https://api.github.com/repos/giggsey/libphonenumber-for-php/zipball/a71f260c2efce10ded8af030a20fa13edfb0e9be",
  7125. "reference": "a71f260c2efce10ded8af030a20fa13edfb0e9be",
  7126. "shasum": ""
  7127. },
  7128. "require": {
  7129. "ext-mbstring": "*",
  7130. "giggsey/locale": "^1.2",
  7131. "php": ">=5.3.2"
  7132. },
  7133. "require-dev": {
  7134. "pear/pear-core-minimal": "^1.9",
  7135. "pear/pear_exception": "^1.0",
  7136. "pear/versioncontrol_git": "^0.5",
  7137. "phing/phing": "^2.7",
  7138. "php-coveralls/php-coveralls": "^1.0|^2.0",
  7139. "phpunit/phpunit": "^4.8.36|^5.0",
  7140. "symfony/console": "^2.8|^3.0"
  7141. },
  7142. "type": "library",
  7143. "extra": {
  7144. "branch-alias": {
  7145. "dev-master": "8.x-dev"
  7146. }
  7147. },
  7148. "autoload": {
  7149. "psr-4": {
  7150. "libphonenumber\\": "src/"
  7151. },
  7152. "exclude-from-classmap": [
  7153. "/src/data/",
  7154. "/src/carrier/data/",
  7155. "/src/geocoding/data/",
  7156. "/src/timezone/data/"
  7157. ]
  7158. },
  7159. "notification-url": "https://packagist.org/downloads/",
  7160. "license": [
  7161. "Apache-2.0"
  7162. ],
  7163. "authors": [
  7164. {
  7165. "name": "Joshua Gigg",
  7166. "email": "giggsey@gmail.com",
  7167. "homepage": "https://giggsey.com/"
  7168. }
  7169. ],
  7170. "description": "PHP Port of Google's libphonenumber",
  7171. "homepage": "https://github.com/giggsey/libphonenumber-for-php",
  7172. "keywords": [
  7173. "geocoding",
  7174. "geolocation",
  7175. "libphonenumber",
  7176. "mobile",
  7177. "phonenumber",
  7178. "validation"
  7179. ],
  7180. "time": "2018-12-06T10:42:08+00:00"
  7181. },
  7182. {
  7183. "name": "giggsey/locale",
  7184. "version": "1.6",
  7185. "source": {
  7186. "type": "git",
  7187. "url": "https://github.com/giggsey/Locale.git",
  7188. "reference": "da6845720b5d104d319d7e84576f54e44dd9e4f5"
  7189. },
  7190. "dist": {
  7191. "type": "zip",
  7192. "url": "https://api.github.com/repos/giggsey/Locale/zipball/da6845720b5d104d319d7e84576f54e44dd9e4f5",
  7193. "reference": "da6845720b5d104d319d7e84576f54e44dd9e4f5",
  7194. "shasum": ""
  7195. },
  7196. "require": {
  7197. "php": ">=5.3.2"
  7198. },
  7199. "require-dev": {
  7200. "pear/pear-core-minimal": "^1.9",
  7201. "pear/pear_exception": "^1.0",
  7202. "pear/versioncontrol_git": "^0.5",
  7203. "phing/phing": "~2.7",
  7204. "phpunit/phpunit": "^4.8|^5.0",
  7205. "satooshi/php-coveralls": "^1.0",
  7206. "symfony/console": "^2.8|^3.0|^4.0",
  7207. "symfony/filesystem": "^2.8|^3.0|^4.0",
  7208. "symfony/finder": "^2.8|^3.0|^4.0",
  7209. "symfony/process": "^2.8|^3.0|^4.0"
  7210. },
  7211. "type": "library",
  7212. "autoload": {
  7213. "psr-4": {
  7214. "Giggsey\\Locale\\": "src/"
  7215. }
  7216. },
  7217. "notification-url": "https://packagist.org/downloads/",
  7218. "license": [
  7219. "MIT"
  7220. ],
  7221. "authors": [
  7222. {
  7223. "name": "Joshua Gigg",
  7224. "email": "giggsey@gmail.com",
  7225. "homepage": "http://giggsey.com/"
  7226. }
  7227. ],
  7228. "description": "Locale functions required by libphonenumber-for-php",
  7229. "time": "2018-10-18T07:17:52+00:00"
  7230. },
  7231. {
  7232. "name": "grasmash/expander",
  7233. "version": "1.0.0",
  7234. "source": {
  7235. "type": "git",
  7236. "url": "https://github.com/grasmash/expander.git",
  7237. "reference": "95d6037344a4be1dd5f8e0b0b2571a28c397578f"
  7238. },
  7239. "dist": {
  7240. "type": "zip",
  7241. "url": "https://api.github.com/repos/grasmash/expander/zipball/95d6037344a4be1dd5f8e0b0b2571a28c397578f",
  7242. "reference": "95d6037344a4be1dd5f8e0b0b2571a28c397578f",
  7243. "shasum": ""
  7244. },
  7245. "require": {
  7246. "dflydev/dot-access-data": "^1.1.0",
  7247. "php": ">=5.4"
  7248. },
  7249. "require-dev": {
  7250. "greg-1-anderson/composer-test-scenarios": "^1",
  7251. "phpunit/phpunit": "^4|^5.5.4",
  7252. "satooshi/php-coveralls": "^1.0.2|dev-master",
  7253. "squizlabs/php_codesniffer": "^2.7"
  7254. },
  7255. "type": "library",
  7256. "extra": {
  7257. "branch-alias": {
  7258. "dev-master": "1.x-dev"
  7259. }
  7260. },
  7261. "autoload": {
  7262. "psr-4": {
  7263. "Grasmash\\Expander\\": "src/"
  7264. }
  7265. },
  7266. "notification-url": "https://packagist.org/downloads/",
  7267. "license": [
  7268. "MIT"
  7269. ],
  7270. "authors": [
  7271. {
  7272. "name": "Matthew Grasmick"
  7273. }
  7274. ],
  7275. "description": "Expands internal property references in PHP arrays file.",
  7276. "time": "2017-12-21T22:14:55+00:00"
  7277. },
  7278. {
  7279. "name": "grasmash/yaml-expander",
  7280. "version": "1.4.0",
  7281. "source": {
  7282. "type": "git",
  7283. "url": "https://github.com/grasmash/yaml-expander.git",
  7284. "reference": "3f0f6001ae707a24f4d9733958d77d92bf9693b1"
  7285. },
  7286. "dist": {
  7287. "type": "zip",
  7288. "url": "https://api.github.com/repos/grasmash/yaml-expander/zipball/3f0f6001ae707a24f4d9733958d77d92bf9693b1",
  7289. "reference": "3f0f6001ae707a24f4d9733958d77d92bf9693b1",
  7290. "shasum": ""
  7291. },
  7292. "require": {
  7293. "dflydev/dot-access-data": "^1.1.0",
  7294. "php": ">=5.4",
  7295. "symfony/yaml": "^2.8.11|^3|^4"
  7296. },
  7297. "require-dev": {
  7298. "greg-1-anderson/composer-test-scenarios": "^1",
  7299. "phpunit/phpunit": "^4.8|^5.5.4",
  7300. "satooshi/php-coveralls": "^1.0.2|dev-master",
  7301. "squizlabs/php_codesniffer": "^2.7"
  7302. },
  7303. "type": "library",
  7304. "extra": {
  7305. "branch-alias": {
  7306. "dev-master": "1.x-dev"
  7307. }
  7308. },
  7309. "autoload": {
  7310. "psr-4": {
  7311. "Grasmash\\YamlExpander\\": "src/"
  7312. }
  7313. },
  7314. "notification-url": "https://packagist.org/downloads/",
  7315. "license": [
  7316. "MIT"
  7317. ],
  7318. "authors": [
  7319. {
  7320. "name": "Matthew Grasmick"
  7321. }
  7322. ],
  7323. "description": "Expands internal property references in a yaml file.",
  7324. "time": "2017-12-16T16:06:03+00:00"
  7325. },
  7326. {
  7327. "name": "guzzlehttp/guzzle",
  7328. "version": "6.3.3",
  7329. "source": {
  7330. "type": "git",
  7331. "url": "https://github.com/guzzle/guzzle.git",
  7332. "reference": "407b0cb880ace85c9b63c5f9551db498cb2d50ba"
  7333. },
  7334. "dist": {
  7335. "type": "zip",
  7336. "url": "https://api.github.com/repos/guzzle/guzzle/zipball/407b0cb880ace85c9b63c5f9551db498cb2d50ba",
  7337. "reference": "407b0cb880ace85c9b63c5f9551db498cb2d50ba",
  7338. "shasum": ""
  7339. },
  7340. "require": {
  7341. "guzzlehttp/promises": "^1.0",
  7342. "guzzlehttp/psr7": "^1.4",
  7343. "php": ">=5.5"
  7344. },
  7345. "require-dev": {
  7346. "ext-curl": "*",
  7347. "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.4 || ^7.0",
  7348. "psr/log": "^1.0"
  7349. },
  7350. "suggest": {
  7351. "psr/log": "Required for using the Log middleware"
  7352. },
  7353. "type": "library",
  7354. "extra": {
  7355. "branch-alias": {
  7356. "dev-master": "6.3-dev"
  7357. }
  7358. },
  7359. "autoload": {
  7360. "files": [
  7361. "src/functions_include.php"
  7362. ],
  7363. "psr-4": {
  7364. "GuzzleHttp\\": "src/"
  7365. }
  7366. },
  7367. "notification-url": "https://packagist.org/downloads/",
  7368. "license": [
  7369. "MIT"
  7370. ],
  7371. "authors": [
  7372. {
  7373. "name": "Michael Dowling",
  7374. "email": "mtdowling@gmail.com",
  7375. "homepage": "https://github.com/mtdowling"
  7376. }
  7377. ],
  7378. "description": "Guzzle is a PHP HTTP client library",
  7379. "homepage": "http://guzzlephp.org/",
  7380. "keywords": [
  7381. "client",
  7382. "curl",
  7383. "framework",
  7384. "http",
  7385. "http client",
  7386. "rest",
  7387. "web service"
  7388. ],
  7389. "time": "2018-04-22T15:46:56+00:00"
  7390. },
  7391. {
  7392. "name": "guzzlehttp/promises",
  7393. "version": "v1.3.1",
  7394. "source": {
  7395. "type": "git",
  7396. "url": "https://github.com/guzzle/promises.git",
  7397. "reference": "a59da6cf61d80060647ff4d3eb2c03a2bc694646"
  7398. },
  7399. "dist": {
  7400. "type": "zip",
  7401. "url": "https://api.github.com/repos/guzzle/promises/zipball/a59da6cf61d80060647ff4d3eb2c03a2bc694646",
  7402. "reference": "a59da6cf61d80060647ff4d3eb2c03a2bc694646",
  7403. "shasum": ""
  7404. },
  7405. "require": {
  7406. "php": ">=5.5.0"
  7407. },
  7408. "require-dev": {
  7409. "phpunit/phpunit": "^4.0"
  7410. },
  7411. "type": "library",
  7412. "extra": {
  7413. "branch-alias": {
  7414. "dev-master": "1.4-dev"
  7415. }
  7416. },
  7417. "autoload": {
  7418. "psr-4": {
  7419. "GuzzleHttp\\Promise\\": "src/"
  7420. },
  7421. "files": [
  7422. "src/functions_include.php"
  7423. ]
  7424. },
  7425. "notification-url": "https://packagist.org/downloads/",
  7426. "license": [
  7427. "MIT"
  7428. ],
  7429. "authors": [
  7430. {
  7431. "name": "Michael Dowling",
  7432. "email": "mtdowling@gmail.com",
  7433. "homepage": "https://github.com/mtdowling"
  7434. }
  7435. ],
  7436. "description": "Guzzle promises library",
  7437. "keywords": [
  7438. "promise"
  7439. ],
  7440. "time": "2016-12-20T10:07:11+00:00"
  7441. },
  7442. {
  7443. "name": "guzzlehttp/psr7",
  7444. "version": "1.4.2",
  7445. "source": {
  7446. "type": "git",
  7447. "url": "https://github.com/guzzle/psr7.git",
  7448. "reference": "f5b8a8512e2b58b0071a7280e39f14f72e05d87c"
  7449. },
  7450. "dist": {
  7451. "type": "zip",
  7452. "url": "https://api.github.com/repos/guzzle/psr7/zipball/f5b8a8512e2b58b0071a7280e39f14f72e05d87c",
  7453. "reference": "f5b8a8512e2b58b0071a7280e39f14f72e05d87c",
  7454. "shasum": ""
  7455. },
  7456. "require": {
  7457. "php": ">=5.4.0",
  7458. "psr/http-message": "~1.0"
  7459. },
  7460. "provide": {
  7461. "psr/http-message-implementation": "1.0"
  7462. },
  7463. "require-dev": {
  7464. "phpunit/phpunit": "~4.0"
  7465. },
  7466. "type": "library",
  7467. "extra": {
  7468. "branch-alias": {
  7469. "dev-master": "1.4-dev"
  7470. }
  7471. },
  7472. "autoload": {
  7473. "psr-4": {
  7474. "GuzzleHttp\\Psr7\\": "src/"
  7475. },
  7476. "files": [
  7477. "src/functions_include.php"
  7478. ]
  7479. },
  7480. "notification-url": "https://packagist.org/downloads/",
  7481. "license": [
  7482. "MIT"
  7483. ],
  7484. "authors": [
  7485. {
  7486. "name": "Michael Dowling",
  7487. "email": "mtdowling@gmail.com",
  7488. "homepage": "https://github.com/mtdowling"
  7489. },
  7490. {
  7491. "name": "Tobias Schultze",
  7492. "homepage": "https://github.com/Tobion"
  7493. }
  7494. ],
  7495. "description": "PSR-7 message implementation that also provides common utility methods",
  7496. "keywords": [
  7497. "http",
  7498. "message",
  7499. "request",
  7500. "response",
  7501. "stream",
  7502. "uri",
  7503. "url"
  7504. ],
  7505. "time": "2017-03-20T17:10:46+00:00"
  7506. },
  7507. {
  7508. "name": "jakub-onderka/php-console-color",
  7509. "version": "v0.2",
  7510. "source": {
  7511. "type": "git",
  7512. "url": "https://github.com/JakubOnderka/PHP-Console-Color.git",
  7513. "reference": "d5deaecff52a0d61ccb613bb3804088da0307191"
  7514. },
  7515. "dist": {
  7516. "type": "zip",
  7517. "url": "https://api.github.com/repos/JakubOnderka/PHP-Console-Color/zipball/d5deaecff52a0d61ccb613bb3804088da0307191",
  7518. "reference": "d5deaecff52a0d61ccb613bb3804088da0307191",
  7519. "shasum": ""
  7520. },
  7521. "require": {
  7522. "php": ">=5.4.0"
  7523. },
  7524. "require-dev": {
  7525. "jakub-onderka/php-code-style": "1.0",
  7526. "jakub-onderka/php-parallel-lint": "1.0",
  7527. "jakub-onderka/php-var-dump-check": "0.*",
  7528. "phpunit/phpunit": "~4.3",
  7529. "squizlabs/php_codesniffer": "1.*"
  7530. },
  7531. "type": "library",
  7532. "autoload": {
  7533. "psr-4": {
  7534. "JakubOnderka\\PhpConsoleColor\\": "src/"
  7535. }
  7536. },
  7537. "notification-url": "https://packagist.org/downloads/",
  7538. "license": [
  7539. "BSD-2-Clause"
  7540. ],
  7541. "authors": [
  7542. {
  7543. "name": "Jakub Onderka",
  7544. "email": "jakub.onderka@gmail.com"
  7545. }
  7546. ],
  7547. "time": "2018-09-29T17:23:10+00:00"
  7548. },
  7549. {
  7550. "name": "jakub-onderka/php-console-highlighter",
  7551. "version": "v0.4",
  7552. "source": {
  7553. "type": "git",
  7554. "url": "https://github.com/JakubOnderka/PHP-Console-Highlighter.git",
  7555. "reference": "9f7a229a69d52506914b4bc61bfdb199d90c5547"
  7556. },
  7557. "dist": {
  7558. "type": "zip",
  7559. "url": "https://api.github.com/repos/JakubOnderka/PHP-Console-Highlighter/zipball/9f7a229a69d52506914b4bc61bfdb199d90c5547",
  7560. "reference": "9f7a229a69d52506914b4bc61bfdb199d90c5547",
  7561. "shasum": ""
  7562. },
  7563. "require": {
  7564. "ext-tokenizer": "*",
  7565. "jakub-onderka/php-console-color": "~0.2",
  7566. "php": ">=5.4.0"
  7567. },
  7568. "require-dev": {
  7569. "jakub-onderka/php-code-style": "~1.0",
  7570. "jakub-onderka/php-parallel-lint": "~1.0",
  7571. "jakub-onderka/php-var-dump-check": "~0.1",
  7572. "phpunit/phpunit": "~4.0",
  7573. "squizlabs/php_codesniffer": "~1.5"
  7574. },
  7575. "type": "library",
  7576. "autoload": {
  7577. "psr-4": {
  7578. "JakubOnderka\\PhpConsoleHighlighter\\": "src/"
  7579. }
  7580. },
  7581. "notification-url": "https://packagist.org/downloads/",
  7582. "license": [
  7583. "MIT"
  7584. ],
  7585. "authors": [
  7586. {
  7587. "name": "Jakub Onderka",
  7588. "email": "acci@acci.cz",
  7589. "homepage": "http://www.acci.cz/"
  7590. }
  7591. ],
  7592. "description": "Highlight PHP code in terminal",
  7593. "time": "2018-09-29T18:48:56+00:00"
  7594. },
  7595. {
  7596. "name": "league/container",
  7597. "version": "2.4.1",
  7598. "source": {
  7599. "type": "git",
  7600. "url": "https://github.com/thephpleague/container.git",
  7601. "reference": "43f35abd03a12977a60ffd7095efd6a7808488c0"
  7602. },
  7603. "dist": {
  7604. "type": "zip",
  7605. "url": "https://api.github.com/repos/thephpleague/container/zipball/43f35abd03a12977a60ffd7095efd6a7808488c0",
  7606. "reference": "43f35abd03a12977a60ffd7095efd6a7808488c0",
  7607. "shasum": ""
  7608. },
  7609. "require": {
  7610. "container-interop/container-interop": "^1.2",
  7611. "php": "^5.4.0 || ^7.0"
  7612. },
  7613. "provide": {
  7614. "container-interop/container-interop-implementation": "^1.2",
  7615. "psr/container-implementation": "^1.0"
  7616. },
  7617. "replace": {
  7618. "orno/di": "~2.0"
  7619. },
  7620. "require-dev": {
  7621. "phpunit/phpunit": "4.*"
  7622. },
  7623. "type": "library",
  7624. "extra": {
  7625. "branch-alias": {
  7626. "dev-2.x": "2.x-dev",
  7627. "dev-1.x": "1.x-dev"
  7628. }
  7629. },
  7630. "autoload": {
  7631. "psr-4": {
  7632. "League\\Container\\": "src"
  7633. }
  7634. },
  7635. "notification-url": "https://packagist.org/downloads/",
  7636. "license": [
  7637. "MIT"
  7638. ],
  7639. "authors": [
  7640. {
  7641. "name": "Phil Bennett",
  7642. "email": "philipobenito@gmail.com",
  7643. "homepage": "http://www.philipobenito.com",
  7644. "role": "Developer"
  7645. }
  7646. ],
  7647. "description": "A fast and intuitive dependency injection container.",
  7648. "homepage": "https://github.com/thephpleague/container",
  7649. "keywords": [
  7650. "container",
  7651. "dependency",
  7652. "di",
  7653. "injection",
  7654. "league",
  7655. "provider",
  7656. "service"
  7657. ],
  7658. "time": "2017-05-10T09:20:27+00:00"
  7659. },
  7660. {
  7661. "name": "lsolesen/pel",
  7662. "version": "0.9.6",
  7663. "source": {
  7664. "type": "git",
  7665. "url": "https://github.com/lsolesen/pel.git",
  7666. "reference": "c9e3919f5db3b85c3c422d4f8d448dbcb2a87a23"
  7667. },
  7668. "dist": {
  7669. "type": "zip",
  7670. "url": "https://api.github.com/repos/lsolesen/pel/zipball/c9e3919f5db3b85c3c422d4f8d448dbcb2a87a23",
  7671. "reference": "c9e3919f5db3b85c3c422d4f8d448dbcb2a87a23",
  7672. "shasum": ""
  7673. },
  7674. "require": {
  7675. "php": ">=5.0.0"
  7676. },
  7677. "require-dev": {
  7678. "ext-gd": "*",
  7679. "phpunit/phpunit": "5.7.*",
  7680. "satooshi/php-coveralls": "1.0.*",
  7681. "squizlabs/php_codesniffer": "3.0.0RC3"
  7682. },
  7683. "type": "library",
  7684. "autoload": {
  7685. "psr-4": {
  7686. "lsolesen\\pel\\": "src/"
  7687. }
  7688. },
  7689. "notification-url": "https://packagist.org/downloads/",
  7690. "license": [
  7691. "GPL-2.0"
  7692. ],
  7693. "authors": [
  7694. {
  7695. "name": "Lars Olesen",
  7696. "email": "lars@intraface.dk",
  7697. "homepage": "http://intraface.dk",
  7698. "role": "Developer"
  7699. },
  7700. {
  7701. "name": "Martin Geisler",
  7702. "email": "martin@geisler.net",
  7703. "homepage": "http://geisler.net",
  7704. "role": "Developer"
  7705. }
  7706. ],
  7707. "description": "PHP Exif Library. A library for reading and writing Exif headers in JPEG and TIFF images using PHP.",
  7708. "homepage": "http://lsolesen.github.com/pel/",
  7709. "keywords": [
  7710. "exif",
  7711. "image"
  7712. ],
  7713. "time": "2017-02-03T11:58:58+00:00"
  7714. },
  7715. {
  7716. "name": "masterminds/html5",
  7717. "version": "2.3.1",
  7718. "source": {
  7719. "type": "git",
  7720. "url": "https://github.com/Masterminds/html5-php.git",
  7721. "reference": "33f8d475d28741398be26cdff7a10a63003324a3"
  7722. },
  7723. "dist": {
  7724. "type": "zip",
  7725. "url": "https://api.github.com/repos/Masterminds/html5-php/zipball/33f8d475d28741398be26cdff7a10a63003324a3",
  7726. "reference": "33f8d475d28741398be26cdff7a10a63003324a3",
  7727. "shasum": ""
  7728. },
  7729. "require": {
  7730. "ext-libxml": "*",
  7731. "php": ">=5.3.0"
  7732. },
  7733. "require-dev": {
  7734. "phpunit/phpunit": "4.*",
  7735. "sami/sami": "~2.0",
  7736. "satooshi/php-coveralls": "1.0.*"
  7737. },
  7738. "type": "library",
  7739. "extra": {
  7740. "branch-alias": {
  7741. "dev-master": "2.2-dev"
  7742. }
  7743. },
  7744. "autoload": {
  7745. "psr-4": {
  7746. "Masterminds\\": "src"
  7747. }
  7748. },
  7749. "notification-url": "https://packagist.org/downloads/",
  7750. "license": [
  7751. "MIT"
  7752. ],
  7753. "authors": [
  7754. {
  7755. "name": "Matt Butcher",
  7756. "email": "technosophos@gmail.com"
  7757. },
  7758. {
  7759. "name": "Asmir Mustafic",
  7760. "email": "goetas@gmail.com"
  7761. },
  7762. {
  7763. "name": "Matt Farina",
  7764. "email": "matt@mattfarina.com"
  7765. }
  7766. ],
  7767. "description": "An HTML5 parser and serializer.",
  7768. "homepage": "http://masterminds.github.io/html5-php",
  7769. "keywords": [
  7770. "HTML5",
  7771. "dom",
  7772. "html",
  7773. "parser",
  7774. "querypath",
  7775. "serializer",
  7776. "xml"
  7777. ],
  7778. "time": "2018-10-22T16:58:34+00:00"
  7779. },
  7780. {
  7781. "name": "nikic/php-parser",
  7782. "version": "v4.1.0",
  7783. "source": {
  7784. "type": "git",
  7785. "url": "https://github.com/nikic/PHP-Parser.git",
  7786. "reference": "d0230c5c77a7e3cfa69446febf340978540958c0"
  7787. },
  7788. "dist": {
  7789. "type": "zip",
  7790. "url": "https://api.github.com/repos/nikic/PHP-Parser/zipball/d0230c5c77a7e3cfa69446febf340978540958c0",
  7791. "reference": "d0230c5c77a7e3cfa69446febf340978540958c0",
  7792. "shasum": ""
  7793. },
  7794. "require": {
  7795. "ext-tokenizer": "*",
  7796. "php": ">=7.0"
  7797. },
  7798. "require-dev": {
  7799. "phpunit/phpunit": "^6.5 || ^7.0"
  7800. },
  7801. "bin": [
  7802. "bin/php-parse"
  7803. ],
  7804. "type": "library",
  7805. "extra": {
  7806. "branch-alias": {
  7807. "dev-master": "4.1-dev"
  7808. }
  7809. },
  7810. "autoload": {
  7811. "psr-4": {
  7812. "PhpParser\\": "lib/PhpParser"
  7813. }
  7814. },
  7815. "notification-url": "https://packagist.org/downloads/",
  7816. "license": [
  7817. "BSD-3-Clause"
  7818. ],
  7819. "authors": [
  7820. {
  7821. "name": "Nikita Popov"
  7822. }
  7823. ],
  7824. "description": "A PHP parser written in PHP",
  7825. "keywords": [
  7826. "parser",
  7827. "php"
  7828. ],
  7829. "time": "2018-10-10T09:24:14+00:00"
  7830. },
  7831. {
  7832. "name": "paragonie/random_compat",
  7833. "version": "v2.0.17",
  7834. "source": {
  7835. "type": "git",
  7836. "url": "https://github.com/paragonie/random_compat.git",
  7837. "reference": "29af24f25bab834fcbb38ad2a69fa93b867e070d"
  7838. },
  7839. "dist": {
  7840. "type": "zip",
  7841. "url": "https://api.github.com/repos/paragonie/random_compat/zipball/29af24f25bab834fcbb38ad2a69fa93b867e070d",
  7842. "reference": "29af24f25bab834fcbb38ad2a69fa93b867e070d",
  7843. "shasum": ""
  7844. },
  7845. "require": {
  7846. "php": ">=5.2.0"
  7847. },
  7848. "require-dev": {
  7849. "phpunit/phpunit": "4.*|5.*"
  7850. },
  7851. "suggest": {
  7852. "ext-libsodium": "Provides a modern crypto API that can be used to generate random bytes."
  7853. },
  7854. "type": "library",
  7855. "autoload": {
  7856. "files": [
  7857. "lib/random.php"
  7858. ]
  7859. },
  7860. "notification-url": "https://packagist.org/downloads/",
  7861. "license": [
  7862. "MIT"
  7863. ],
  7864. "authors": [
  7865. {
  7866. "name": "Paragon Initiative Enterprises",
  7867. "email": "security@paragonie.com",
  7868. "homepage": "https://paragonie.com"
  7869. }
  7870. ],
  7871. "description": "PHP 5.x polyfill for random_bytes() and random_int() from PHP 7",
  7872. "keywords": [
  7873. "csprng",
  7874. "polyfill",
  7875. "pseudorandom",
  7876. "random"
  7877. ],
  7878. "time": "2018-07-04T16:31:37+00:00"
  7879. },
  7880. {
  7881. "name": "phenx/php-font-lib",
  7882. "version": "0.5",
  7883. "source": {
  7884. "type": "git",
  7885. "url": "https://github.com/PhenX/php-font-lib.git",
  7886. "reference": "19ad2bebc35be028fcc0221025fcbf3d436a3962"
  7887. },
  7888. "dist": {
  7889. "type": "zip",
  7890. "url": "https://api.github.com/repos/PhenX/php-font-lib/zipball/19ad2bebc35be028fcc0221025fcbf3d436a3962",
  7891. "reference": "19ad2bebc35be028fcc0221025fcbf3d436a3962",
  7892. "shasum": ""
  7893. },
  7894. "require-dev": {
  7895. "phpunit/phpunit": "^4.8"
  7896. },
  7897. "type": "library",
  7898. "autoload": {
  7899. "psr-4": {
  7900. "FontLib\\": "src/FontLib"
  7901. }
  7902. },
  7903. "notification-url": "https://packagist.org/downloads/",
  7904. "license": [
  7905. "LGPL-3.0"
  7906. ],
  7907. "authors": [
  7908. {
  7909. "name": "Fabien Ménager",
  7910. "email": "fabien.menager@gmail.com"
  7911. }
  7912. ],
  7913. "description": "A library to read, parse, export and make subsets of different types of font files.",
  7914. "homepage": "https://github.com/PhenX/php-font-lib",
  7915. "time": "2017-02-11T10:58:43+00:00"
  7916. },
  7917. {
  7918. "name": "psr/container",
  7919. "version": "1.0.0",
  7920. "source": {
  7921. "type": "git",
  7922. "url": "https://github.com/php-fig/container.git",
  7923. "reference": "b7ce3b176482dbbc1245ebf52b181af44c2cf55f"
  7924. },
  7925. "dist": {
  7926. "type": "zip",
  7927. "url": "https://api.github.com/repos/php-fig/container/zipball/b7ce3b176482dbbc1245ebf52b181af44c2cf55f",
  7928. "reference": "b7ce3b176482dbbc1245ebf52b181af44c2cf55f",
  7929. "shasum": ""
  7930. },
  7931. "require": {
  7932. "php": ">=5.3.0"
  7933. },
  7934. "type": "library",
  7935. "extra": {
  7936. "branch-alias": {
  7937. "dev-master": "1.0.x-dev"
  7938. }
  7939. },
  7940. "autoload": {
  7941. "psr-4": {
  7942. "Psr\\Container\\": "src/"
  7943. }
  7944. },
  7945. "notification-url": "https://packagist.org/downloads/",
  7946. "license": [
  7947. "MIT"
  7948. ],
  7949. "authors": [
  7950. {
  7951. "name": "PHP-FIG",
  7952. "homepage": "http://www.php-fig.org/"
  7953. }
  7954. ],
  7955. "description": "Common Container Interface (PHP FIG PSR-11)",
  7956. "homepage": "https://github.com/php-fig/container",
  7957. "keywords": [
  7958. "PSR-11",
  7959. "container",
  7960. "container-interface",
  7961. "container-interop",
  7962. "psr"
  7963. ],
  7964. "time": "2017-02-14T16:28:37+00:00"
  7965. },
  7966. {
  7967. "name": "psr/http-message",
  7968. "version": "1.0.1",
  7969. "source": {
  7970. "type": "git",
  7971. "url": "https://github.com/php-fig/http-message.git",
  7972. "reference": "f6561bf28d520154e4b0ec72be95418abe6d9363"
  7973. },
  7974. "dist": {
  7975. "type": "zip",
  7976. "url": "https://api.github.com/repos/php-fig/http-message/zipball/f6561bf28d520154e4b0ec72be95418abe6d9363",
  7977. "reference": "f6561bf28d520154e4b0ec72be95418abe6d9363",
  7978. "shasum": ""
  7979. },
  7980. "require": {
  7981. "php": ">=5.3.0"
  7982. },
  7983. "type": "library",
  7984. "extra": {
  7985. "branch-alias": {
  7986. "dev-master": "1.0.x-dev"
  7987. }
  7988. },
  7989. "autoload": {
  7990. "psr-4": {
  7991. "Psr\\Http\\Message\\": "src/"
  7992. }
  7993. },
  7994. "notification-url": "https://packagist.org/downloads/",
  7995. "license": [
  7996. "MIT"
  7997. ],
  7998. "authors": [
  7999. {
  8000. "name": "PHP-FIG",
  8001. "homepage": "http://www.php-fig.org/"
  8002. }
  8003. ],
  8004. "description": "Common interface for HTTP messages",
  8005. "homepage": "https://github.com/php-fig/http-message",
  8006. "keywords": [
  8007. "http",
  8008. "http-message",
  8009. "psr",
  8010. "psr-7",
  8011. "request",
  8012. "response"
  8013. ],
  8014. "time": "2016-08-06T14:39:51+00:00"
  8015. },
  8016. {
  8017. "name": "psr/log",
  8018. "version": "1.0.2",
  8019. "source": {
  8020. "type": "git",
  8021. "url": "https://github.com/php-fig/log.git",
  8022. "reference": "4ebe3a8bf773a19edfe0a84b6585ba3d401b724d"
  8023. },
  8024. "dist": {
  8025. "type": "zip",
  8026. "url": "https://api.github.com/repos/php-fig/log/zipball/4ebe3a8bf773a19edfe0a84b6585ba3d401b724d",
  8027. "reference": "4ebe3a8bf773a19edfe0a84b6585ba3d401b724d",
  8028. "shasum": ""
  8029. },
  8030. "require": {
  8031. "php": ">=5.3.0"
  8032. },
  8033. "type": "library",
  8034. "extra": {
  8035. "branch-alias": {
  8036. "dev-master": "1.0.x-dev"
  8037. }
  8038. },
  8039. "autoload": {
  8040. "psr-4": {
  8041. "Psr\\Log\\": "Psr/Log/"
  8042. }
  8043. },
  8044. "notification-url": "https://packagist.org/downloads/",
  8045. "license": [
  8046. "MIT"
  8047. ],
  8048. "authors": [
  8049. {
  8050. "name": "PHP-FIG",
  8051. "homepage": "http://www.php-fig.org/"
  8052. }
  8053. ],
  8054. "description": "Common interface for logging libraries",
  8055. "homepage": "https://github.com/php-fig/log",
  8056. "keywords": [
  8057. "log",
  8058. "psr",
  8059. "psr-3"
  8060. ],
  8061. "time": "2016-10-10T12:19:37+00:00"
  8062. },
  8063. {
  8064. "name": "psy/psysh",
  8065. "version": "v0.9.9",
  8066. "source": {
  8067. "type": "git",
  8068. "url": "https://github.com/bobthecow/psysh.git",
  8069. "reference": "9aaf29575bb8293206bb0420c1e1c87ff2ffa94e"
  8070. },
  8071. "dist": {
  8072. "type": "zip",
  8073. "url": "https://api.github.com/repos/bobthecow/psysh/zipball/9aaf29575bb8293206bb0420c1e1c87ff2ffa94e",
  8074. "reference": "9aaf29575bb8293206bb0420c1e1c87ff2ffa94e",
  8075. "shasum": ""
  8076. },
  8077. "require": {
  8078. "dnoegel/php-xdg-base-dir": "0.1",
  8079. "ext-json": "*",
  8080. "ext-tokenizer": "*",
  8081. "jakub-onderka/php-console-highlighter": "0.3.*|0.4.*",
  8082. "nikic/php-parser": "~1.3|~2.0|~3.0|~4.0",
  8083. "php": ">=5.4.0",
  8084. "symfony/console": "~2.3.10|^2.4.2|~3.0|~4.0",
  8085. "symfony/var-dumper": "~2.7|~3.0|~4.0"
  8086. },
  8087. "require-dev": {
  8088. "bamarni/composer-bin-plugin": "^1.2",
  8089. "hoa/console": "~2.15|~3.16",
  8090. "phpunit/phpunit": "~4.8.35|~5.0|~6.0|~7.0"
  8091. },
  8092. "suggest": {
  8093. "ext-pcntl": "Enabling the PCNTL extension makes PsySH a lot happier :)",
  8094. "ext-pdo-sqlite": "The doc command requires SQLite to work.",
  8095. "ext-posix": "If you have PCNTL, you'll want the POSIX extension as well.",
  8096. "ext-readline": "Enables support for arrow-key history navigation, and showing and manipulating command history.",
  8097. "hoa/console": "A pure PHP readline implementation. You'll want this if your PHP install doesn't already support readline or libedit."
  8098. },
  8099. "bin": [
  8100. "bin/psysh"
  8101. ],
  8102. "type": "library",
  8103. "extra": {
  8104. "branch-alias": {
  8105. "dev-develop": "0.9.x-dev"
  8106. }
  8107. },
  8108. "autoload": {
  8109. "files": [
  8110. "src/functions.php"
  8111. ],
  8112. "psr-4": {
  8113. "Psy\\": "src/"
  8114. }
  8115. },
  8116. "notification-url": "https://packagist.org/downloads/",
  8117. "license": [
  8118. "MIT"
  8119. ],
  8120. "authors": [
  8121. {
  8122. "name": "Justin Hileman",
  8123. "email": "justin@justinhileman.info",
  8124. "homepage": "http://justinhileman.com"
  8125. }
  8126. ],
  8127. "description": "An interactive shell for modern PHP.",
  8128. "homepage": "http://psysh.org",
  8129. "keywords": [
  8130. "REPL",
  8131. "console",
  8132. "interactive",
  8133. "shell"
  8134. ],
  8135. "time": "2018-10-13T15:16:03+00:00"
  8136. },
  8137. {
  8138. "name": "stack/builder",
  8139. "version": "v1.0.5",
  8140. "source": {
  8141. "type": "git",
  8142. "url": "https://github.com/stackphp/builder.git",
  8143. "reference": "fb3d136d04c6be41120ebf8c0cc71fe9507d750a"
  8144. },
  8145. "dist": {
  8146. "type": "zip",
  8147. "url": "https://api.github.com/repos/stackphp/builder/zipball/fb3d136d04c6be41120ebf8c0cc71fe9507d750a",
  8148. "reference": "fb3d136d04c6be41120ebf8c0cc71fe9507d750a",
  8149. "shasum": ""
  8150. },
  8151. "require": {
  8152. "php": ">=5.3.0",
  8153. "symfony/http-foundation": "~2.1|~3.0|~4.0",
  8154. "symfony/http-kernel": "~2.1|~3.0|~4.0"
  8155. },
  8156. "require-dev": {
  8157. "silex/silex": "~1.0"
  8158. },
  8159. "type": "library",
  8160. "extra": {
  8161. "branch-alias": {
  8162. "dev-master": "1.0-dev"
  8163. }
  8164. },
  8165. "autoload": {
  8166. "psr-0": {
  8167. "Stack": "src"
  8168. }
  8169. },
  8170. "notification-url": "https://packagist.org/downloads/",
  8171. "license": [
  8172. "MIT"
  8173. ],
  8174. "authors": [
  8175. {
  8176. "name": "Igor Wiedler",
  8177. "email": "igor@wiedler.ch"
  8178. }
  8179. ],
  8180. "description": "Builder for stack middlewares based on HttpKernelInterface.",
  8181. "keywords": [
  8182. "stack"
  8183. ],
  8184. "time": "2017-11-18T14:57:29+00:00"
  8185. },
  8186. {
  8187. "name": "stecman/symfony-console-completion",
  8188. "version": "0.8.0",
  8189. "source": {
  8190. "type": "git",
  8191. "url": "https://github.com/stecman/symfony-console-completion.git",
  8192. "reference": "cd738867503477e91dbe84173dfabd431c883431"
  8193. },
  8194. "dist": {
  8195. "type": "zip",
  8196. "url": "https://api.github.com/repos/stecman/symfony-console-completion/zipball/cd738867503477e91dbe84173dfabd431c883431",
  8197. "reference": "cd738867503477e91dbe84173dfabd431c883431",
  8198. "shasum": ""
  8199. },
  8200. "require": {
  8201. "php": ">=5.3.2",
  8202. "symfony/console": "~2.3 || ~3.0 || ~4.0"
  8203. },
  8204. "require-dev": {
  8205. "phpunit/phpunit": "~4.8.36 || ~5.7 || ~6.4"
  8206. },
  8207. "type": "library",
  8208. "extra": {
  8209. "branch-alias": {
  8210. "dev-master": "0.6.x-dev"
  8211. }
  8212. },
  8213. "autoload": {
  8214. "psr-4": {
  8215. "Stecman\\Component\\Symfony\\Console\\BashCompletion\\": "src/"
  8216. }
  8217. },
  8218. "notification-url": "https://packagist.org/downloads/",
  8219. "license": [
  8220. "MIT"
  8221. ],
  8222. "authors": [
  8223. {
  8224. "name": "Stephen Holdaway",
  8225. "email": "stephen@stecman.co.nz"
  8226. }
  8227. ],
  8228. "description": "Automatic BASH completion for Symfony Console Component based applications.",
  8229. "time": "2018-02-10T04:28:01+00:00"
  8230. },
  8231. {
  8232. "name": "symfony-cmf/routing",
  8233. "version": "1.4.1",
  8234. "source": {
  8235. "type": "git",
  8236. "url": "https://github.com/symfony-cmf/routing.git",
  8237. "reference": "fb1e7f85ff8c6866238b7e73a490a0a0243ae8ac"
  8238. },
  8239. "dist": {
  8240. "type": "zip",
  8241. "url": "https://api.github.com/repos/symfony-cmf/routing/zipball/fb1e7f85ff8c6866238b7e73a490a0a0243ae8ac",
  8242. "reference": "fb1e7f85ff8c6866238b7e73a490a0a0243ae8ac",
  8243. "shasum": ""
  8244. },
  8245. "require": {
  8246. "php": "^5.3.9|^7.0",
  8247. "psr/log": "1.*",
  8248. "symfony/http-kernel": "^2.2|3.*",
  8249. "symfony/routing": "^2.2|3.*"
  8250. },
  8251. "require-dev": {
  8252. "friendsofsymfony/jsrouting-bundle": "^1.1",
  8253. "symfony-cmf/testing": "^1.3",
  8254. "symfony/config": "^2.2|3.*",
  8255. "symfony/dependency-injection": "^2.0.5|3.*",
  8256. "symfony/event-dispatcher": "^2.1|3.*"
  8257. },
  8258. "suggest": {
  8259. "symfony/event-dispatcher": "DynamicRouter can optionally trigger an event at the start of matching. Minimal version (~2.1)"
  8260. },
  8261. "type": "library",
  8262. "extra": {
  8263. "branch-alias": {
  8264. "dev-master": "1.4-dev"
  8265. }
  8266. },
  8267. "autoload": {
  8268. "psr-4": {
  8269. "Symfony\\Cmf\\Component\\Routing\\": ""
  8270. }
  8271. },
  8272. "notification-url": "https://packagist.org/downloads/",
  8273. "license": [
  8274. "MIT"
  8275. ],
  8276. "authors": [
  8277. {
  8278. "name": "Symfony CMF Community",
  8279. "homepage": "https://github.com/symfony-cmf/Routing/contributors"
  8280. }
  8281. ],
  8282. "description": "Extends the Symfony2 routing component for dynamic routes and chaining several routers",
  8283. "homepage": "http://cmf.symfony.com",
  8284. "keywords": [
  8285. "database",
  8286. "routing"
  8287. ],
  8288. "time": "2017-05-09T08:10:41+00:00"
  8289. },
  8290. {
  8291. "name": "symfony/class-loader",
  8292. "version": "v3.4.17",
  8293. "source": {
  8294. "type": "git",
  8295. "url": "https://github.com/symfony/class-loader.git",
  8296. "reference": "f31333bdff54c7595f834d510a6d2325573ddb36"
  8297. },
  8298. "dist": {
  8299. "type": "zip",
  8300. "url": "https://api.github.com/repos/symfony/class-loader/zipball/f31333bdff54c7595f834d510a6d2325573ddb36",
  8301. "reference": "f31333bdff54c7595f834d510a6d2325573ddb36",
  8302. "shasum": ""
  8303. },
  8304. "require": {
  8305. "php": "^5.5.9|>=7.0.8"
  8306. },
  8307. "require-dev": {
  8308. "symfony/finder": "~2.8|~3.0|~4.0",
  8309. "symfony/polyfill-apcu": "~1.1"
  8310. },
  8311. "suggest": {
  8312. "symfony/polyfill-apcu": "For using ApcClassLoader on HHVM"
  8313. },
  8314. "type": "library",
  8315. "extra": {
  8316. "branch-alias": {
  8317. "dev-master": "3.4-dev"
  8318. }
  8319. },
  8320. "autoload": {
  8321. "psr-4": {
  8322. "Symfony\\Component\\ClassLoader\\": ""
  8323. },
  8324. "exclude-from-classmap": [
  8325. "/Tests/"
  8326. ]
  8327. },
  8328. "notification-url": "https://packagist.org/downloads/",
  8329. "license": [
  8330. "MIT"
  8331. ],
  8332. "authors": [
  8333. {
  8334. "name": "Fabien Potencier",
  8335. "email": "fabien@symfony.com"
  8336. },
  8337. {
  8338. "name": "Symfony Community",
  8339. "homepage": "https://symfony.com/contributors"
  8340. }
  8341. ],
  8342. "description": "Symfony ClassLoader Component",
  8343. "homepage": "https://symfony.com",
  8344. "time": "2018-10-02T12:28:39+00:00"
  8345. },
  8346. {
  8347. "name": "symfony/config",
  8348. "version": "v3.4.17",
  8349. "source": {
  8350. "type": "git",
  8351. "url": "https://github.com/symfony/config.git",
  8352. "reference": "e5389132dc6320682de3643091121c048ff796b3"
  8353. },
  8354. "dist": {
  8355. "type": "zip",
  8356. "url": "https://api.github.com/repos/symfony/config/zipball/e5389132dc6320682de3643091121c048ff796b3",
  8357. "reference": "e5389132dc6320682de3643091121c048ff796b3",
  8358. "shasum": ""
  8359. },
  8360. "require": {
  8361. "php": "^5.5.9|>=7.0.8",
  8362. "symfony/filesystem": "~2.8|~3.0|~4.0",
  8363. "symfony/polyfill-ctype": "~1.8"
  8364. },
  8365. "conflict": {
  8366. "symfony/dependency-injection": "<3.3",
  8367. "symfony/finder": "<3.3"
  8368. },
  8369. "require-dev": {
  8370. "symfony/dependency-injection": "~3.3|~4.0",
  8371. "symfony/event-dispatcher": "~3.3|~4.0",
  8372. "symfony/finder": "~3.3|~4.0",
  8373. "symfony/yaml": "~3.0|~4.0"
  8374. },
  8375. "suggest": {
  8376. "symfony/yaml": "To use the yaml reference dumper"
  8377. },
  8378. "type": "library",
  8379. "extra": {
  8380. "branch-alias": {
  8381. "dev-master": "3.4-dev"
  8382. }
  8383. },
  8384. "autoload": {
  8385. "psr-4": {
  8386. "Symfony\\Component\\Config\\": ""
  8387. },
  8388. "exclude-from-classmap": [
  8389. "/Tests/"
  8390. ]
  8391. },
  8392. "notification-url": "https://packagist.org/downloads/",
  8393. "license": [
  8394. "MIT"
  8395. ],
  8396. "authors": [
  8397. {
  8398. "name": "Fabien Potencier",
  8399. "email": "fabien@symfony.com"
  8400. },
  8401. {
  8402. "name": "Symfony Community",
  8403. "homepage": "https://symfony.com/contributors"
  8404. }
  8405. ],
  8406. "description": "Symfony Config Component",
  8407. "homepage": "https://symfony.com",
  8408. "time": "2018-09-08T13:15:14+00:00"
  8409. },
  8410. {
  8411. "name": "symfony/console",
  8412. "version": "v3.4.17",
  8413. "source": {
  8414. "type": "git",
  8415. "url": "https://github.com/symfony/console.git",
  8416. "reference": "3b2b415d4c48fbefca7dc742aa0a0171bfae4e0b"
  8417. },
  8418. "dist": {
  8419. "type": "zip",
  8420. "url": "https://api.github.com/repos/symfony/console/zipball/3b2b415d4c48fbefca7dc742aa0a0171bfae4e0b",
  8421. "reference": "3b2b415d4c48fbefca7dc742aa0a0171bfae4e0b",
  8422. "shasum": ""
  8423. },
  8424. "require": {
  8425. "php": "^5.5.9|>=7.0.8",
  8426. "symfony/debug": "~2.8|~3.0|~4.0",
  8427. "symfony/polyfill-mbstring": "~1.0"
  8428. },
  8429. "conflict": {
  8430. "symfony/dependency-injection": "<3.4",
  8431. "symfony/process": "<3.3"
  8432. },
  8433. "require-dev": {
  8434. "psr/log": "~1.0",
  8435. "symfony/config": "~3.3|~4.0",
  8436. "symfony/dependency-injection": "~3.4|~4.0",
  8437. "symfony/event-dispatcher": "~2.8|~3.0|~4.0",
  8438. "symfony/lock": "~3.4|~4.0",
  8439. "symfony/process": "~3.3|~4.0"
  8440. },
  8441. "suggest": {
  8442. "psr/log-implementation": "For using the console logger",
  8443. "symfony/event-dispatcher": "",
  8444. "symfony/lock": "",
  8445. "symfony/process": ""
  8446. },
  8447. "type": "library",
  8448. "extra": {
  8449. "branch-alias": {
  8450. "dev-master": "3.4-dev"
  8451. }
  8452. },
  8453. "autoload": {
  8454. "psr-4": {
  8455. "Symfony\\Component\\Console\\": ""
  8456. },
  8457. "exclude-from-classmap": [
  8458. "/Tests/"
  8459. ]
  8460. },
  8461. "notification-url": "https://packagist.org/downloads/",
  8462. "license": [
  8463. "MIT"
  8464. ],
  8465. "authors": [
  8466. {
  8467. "name": "Fabien Potencier",
  8468. "email": "fabien@symfony.com"
  8469. },
  8470. {
  8471. "name": "Symfony Community",
  8472. "homepage": "https://symfony.com/contributors"
  8473. }
  8474. ],
  8475. "description": "Symfony Console Component",
  8476. "homepage": "https://symfony.com",
  8477. "time": "2018-10-02T16:33:53+00:00"
  8478. },
  8479. {
  8480. "name": "symfony/css-selector",
  8481. "version": "v3.4.17",
  8482. "source": {
  8483. "type": "git",
  8484. "url": "https://github.com/symfony/css-selector.git",
  8485. "reference": "3503415d4aafabc31cd08c3a4ebac7f43fde8feb"
  8486. },
  8487. "dist": {
  8488. "type": "zip",
  8489. "url": "https://api.github.com/repos/symfony/css-selector/zipball/3503415d4aafabc31cd08c3a4ebac7f43fde8feb",
  8490. "reference": "3503415d4aafabc31cd08c3a4ebac7f43fde8feb",
  8491. "shasum": ""
  8492. },
  8493. "require": {
  8494. "php": "^5.5.9|>=7.0.8"
  8495. },
  8496. "type": "library",
  8497. "extra": {
  8498. "branch-alias": {
  8499. "dev-master": "3.4-dev"
  8500. }
  8501. },
  8502. "autoload": {
  8503. "psr-4": {
  8504. "Symfony\\Component\\CssSelector\\": ""
  8505. },
  8506. "exclude-from-classmap": [
  8507. "/Tests/"
  8508. ]
  8509. },
  8510. "notification-url": "https://packagist.org/downloads/",
  8511. "license": [
  8512. "MIT"
  8513. ],
  8514. "authors": [
  8515. {
  8516. "name": "Jean-François Simon",
  8517. "email": "jeanfrancois.simon@sensiolabs.com"
  8518. },
  8519. {
  8520. "name": "Fabien Potencier",
  8521. "email": "fabien@symfony.com"
  8522. },
  8523. {
  8524. "name": "Symfony Community",
  8525. "homepage": "https://symfony.com/contributors"
  8526. }
  8527. ],
  8528. "description": "Symfony CssSelector Component",
  8529. "homepage": "https://symfony.com",
  8530. "time": "2018-10-02T16:33:53+00:00"
  8531. },
  8532. {
  8533. "name": "symfony/debug",
  8534. "version": "v3.4.17",
  8535. "source": {
  8536. "type": "git",
  8537. "url": "https://github.com/symfony/debug.git",
  8538. "reference": "0a612e9dfbd2ccce03eb174365f31ecdca930ff6"
  8539. },
  8540. "dist": {
  8541. "type": "zip",
  8542. "url": "https://api.github.com/repos/symfony/debug/zipball/0a612e9dfbd2ccce03eb174365f31ecdca930ff6",
  8543. "reference": "0a612e9dfbd2ccce03eb174365f31ecdca930ff6",
  8544. "shasum": ""
  8545. },
  8546. "require": {
  8547. "php": "^5.5.9|>=7.0.8",
  8548. "psr/log": "~1.0"
  8549. },
  8550. "conflict": {
  8551. "symfony/http-kernel": ">=2.3,<2.3.24|~2.4.0|>=2.5,<2.5.9|>=2.6,<2.6.2"
  8552. },
  8553. "require-dev": {
  8554. "symfony/http-kernel": "~2.8|~3.0|~4.0"
  8555. },
  8556. "type": "library",
  8557. "extra": {
  8558. "branch-alias": {
  8559. "dev-master": "3.4-dev"
  8560. }
  8561. },
  8562. "autoload": {
  8563. "psr-4": {
  8564. "Symfony\\Component\\Debug\\": ""
  8565. },
  8566. "exclude-from-classmap": [
  8567. "/Tests/"
  8568. ]
  8569. },
  8570. "notification-url": "https://packagist.org/downloads/",
  8571. "license": [
  8572. "MIT"
  8573. ],
  8574. "authors": [
  8575. {
  8576. "name": "Fabien Potencier",
  8577. "email": "fabien@symfony.com"
  8578. },
  8579. {
  8580. "name": "Symfony Community",
  8581. "homepage": "https://symfony.com/contributors"
  8582. }
  8583. ],
  8584. "description": "Symfony Debug Component",
  8585. "homepage": "https://symfony.com",
  8586. "time": "2018-10-02T16:33:53+00:00"
  8587. },
  8588. {
  8589. "name": "symfony/dependency-injection",
  8590. "version": "v3.4.17",
  8591. "source": {
  8592. "type": "git",
  8593. "url": "https://github.com/symfony/dependency-injection.git",
  8594. "reference": "aea20fef4e92396928b5db175788b90234c0270d"
  8595. },
  8596. "dist": {
  8597. "type": "zip",
  8598. "url": "https://api.github.com/repos/symfony/dependency-injection/zipball/aea20fef4e92396928b5db175788b90234c0270d",
  8599. "reference": "aea20fef4e92396928b5db175788b90234c0270d",
  8600. "shasum": ""
  8601. },
  8602. "require": {
  8603. "php": "^5.5.9|>=7.0.8",
  8604. "psr/container": "^1.0"
  8605. },
  8606. "conflict": {
  8607. "symfony/config": "<3.3.7",
  8608. "symfony/finder": "<3.3",
  8609. "symfony/proxy-manager-bridge": "<3.4",
  8610. "symfony/yaml": "<3.4"
  8611. },
  8612. "provide": {
  8613. "psr/container-implementation": "1.0"
  8614. },
  8615. "require-dev": {
  8616. "symfony/config": "~3.3|~4.0",
  8617. "symfony/expression-language": "~2.8|~3.0|~4.0",
  8618. "symfony/yaml": "~3.4|~4.0"
  8619. },
  8620. "suggest": {
  8621. "symfony/config": "",
  8622. "symfony/expression-language": "For using expressions in service container configuration",
  8623. "symfony/finder": "For using double-star glob patterns or when GLOB_BRACE portability is required",
  8624. "symfony/proxy-manager-bridge": "Generate service proxies to lazy load them",
  8625. "symfony/yaml": ""
  8626. },
  8627. "type": "library",
  8628. "extra": {
  8629. "branch-alias": {
  8630. "dev-master": "3.4-dev"
  8631. }
  8632. },
  8633. "autoload": {
  8634. "psr-4": {
  8635. "Symfony\\Component\\DependencyInjection\\": ""
  8636. },
  8637. "exclude-from-classmap": [
  8638. "/Tests/"
  8639. ]
  8640. },
  8641. "notification-url": "https://packagist.org/downloads/",
  8642. "license": [
  8643. "MIT"
  8644. ],
  8645. "authors": [
  8646. {
  8647. "name": "Fabien Potencier",
  8648. "email": "fabien@symfony.com"
  8649. },
  8650. {
  8651. "name": "Symfony Community",
  8652. "homepage": "https://symfony.com/contributors"
  8653. }
  8654. ],
  8655. "description": "Symfony DependencyInjection Component",
  8656. "homepage": "https://symfony.com",
  8657. "time": "2018-10-02T12:28:39+00:00"
  8658. },
  8659. {
  8660. "name": "symfony/dom-crawler",
  8661. "version": "v3.4.17",
  8662. "source": {
  8663. "type": "git",
  8664. "url": "https://github.com/symfony/dom-crawler.git",
  8665. "reference": "c705bee03ade5b47c087807dd9ffaaec8dda2722"
  8666. },
  8667. "dist": {
  8668. "type": "zip",
  8669. "url": "https://api.github.com/repos/symfony/dom-crawler/zipball/c705bee03ade5b47c087807dd9ffaaec8dda2722",
  8670. "reference": "c705bee03ade5b47c087807dd9ffaaec8dda2722",
  8671. "shasum": ""
  8672. },
  8673. "require": {
  8674. "php": "^5.5.9|>=7.0.8",
  8675. "symfony/polyfill-ctype": "~1.8",
  8676. "symfony/polyfill-mbstring": "~1.0"
  8677. },
  8678. "require-dev": {
  8679. "symfony/css-selector": "~2.8|~3.0|~4.0"
  8680. },
  8681. "suggest": {
  8682. "symfony/css-selector": ""
  8683. },
  8684. "type": "library",
  8685. "extra": {
  8686. "branch-alias": {
  8687. "dev-master": "3.4-dev"
  8688. }
  8689. },
  8690. "autoload": {
  8691. "psr-4": {
  8692. "Symfony\\Component\\DomCrawler\\": ""
  8693. },
  8694. "exclude-from-classmap": [
  8695. "/Tests/"
  8696. ]
  8697. },
  8698. "notification-url": "https://packagist.org/downloads/",
  8699. "license": [
  8700. "MIT"
  8701. ],
  8702. "authors": [
  8703. {
  8704. "name": "Fabien Potencier",
  8705. "email": "fabien@symfony.com"
  8706. },
  8707. {
  8708. "name": "Symfony Community",
  8709. "homepage": "https://symfony.com/contributors"
  8710. }
  8711. ],
  8712. "description": "Symfony DomCrawler Component",
  8713. "homepage": "https://symfony.com",
  8714. "time": "2018-10-02T12:28:39+00:00"
  8715. },
  8716. {
  8717. "name": "symfony/event-dispatcher",
  8718. "version": "v3.4.17",
  8719. "source": {
  8720. "type": "git",
  8721. "url": "https://github.com/symfony/event-dispatcher.git",
  8722. "reference": "b2e1f19280c09a42dc64c0b72b80fe44dd6e88fb"
  8723. },
  8724. "dist": {
  8725. "type": "zip",
  8726. "url": "https://api.github.com/repos/symfony/event-dispatcher/zipball/b2e1f19280c09a42dc64c0b72b80fe44dd6e88fb",
  8727. "reference": "b2e1f19280c09a42dc64c0b72b80fe44dd6e88fb",
  8728. "shasum": ""
  8729. },
  8730. "require": {
  8731. "php": "^5.5.9|>=7.0.8"
  8732. },
  8733. "conflict": {
  8734. "symfony/dependency-injection": "<3.3"
  8735. },
  8736. "require-dev": {
  8737. "psr/log": "~1.0",
  8738. "symfony/config": "~2.8|~3.0|~4.0",
  8739. "symfony/dependency-injection": "~3.3|~4.0",
  8740. "symfony/expression-language": "~2.8|~3.0|~4.0",
  8741. "symfony/stopwatch": "~2.8|~3.0|~4.0"
  8742. },
  8743. "suggest": {
  8744. "symfony/dependency-injection": "",
  8745. "symfony/http-kernel": ""
  8746. },
  8747. "type": "library",
  8748. "extra": {
  8749. "branch-alias": {
  8750. "dev-master": "3.4-dev"
  8751. }
  8752. },
  8753. "autoload": {
  8754. "psr-4": {
  8755. "Symfony\\Component\\EventDispatcher\\": ""
  8756. },
  8757. "exclude-from-classmap": [
  8758. "/Tests/"
  8759. ]
  8760. },
  8761. "notification-url": "https://packagist.org/downloads/",
  8762. "license": [
  8763. "MIT"
  8764. ],
  8765. "authors": [
  8766. {
  8767. "name": "Fabien Potencier",
  8768. "email": "fabien@symfony.com"
  8769. },
  8770. {
  8771. "name": "Symfony Community",
  8772. "homepage": "https://symfony.com/contributors"
  8773. }
  8774. ],
  8775. "description": "Symfony EventDispatcher Component",
  8776. "homepage": "https://symfony.com",
  8777. "time": "2018-07-26T09:06:28+00:00"
  8778. },
  8779. {
  8780. "name": "symfony/filesystem",
  8781. "version": "v3.4.17",
  8782. "source": {
  8783. "type": "git",
  8784. "url": "https://github.com/symfony/filesystem.git",
  8785. "reference": "d69930fc337d767607267d57c20a7403d0a822a4"
  8786. },
  8787. "dist": {
  8788. "type": "zip",
  8789. "url": "https://api.github.com/repos/symfony/filesystem/zipball/d69930fc337d767607267d57c20a7403d0a822a4",
  8790. "reference": "d69930fc337d767607267d57c20a7403d0a822a4",
  8791. "shasum": ""
  8792. },
  8793. "require": {
  8794. "php": "^5.5.9|>=7.0.8",
  8795. "symfony/polyfill-ctype": "~1.8"
  8796. },
  8797. "type": "library",
  8798. "extra": {
  8799. "branch-alias": {
  8800. "dev-master": "3.4-dev"
  8801. }
  8802. },
  8803. "autoload": {
  8804. "psr-4": {
  8805. "Symfony\\Component\\Filesystem\\": ""
  8806. },
  8807. "exclude-from-classmap": [
  8808. "/Tests/"
  8809. ]
  8810. },
  8811. "notification-url": "https://packagist.org/downloads/",
  8812. "license": [
  8813. "MIT"
  8814. ],
  8815. "authors": [
  8816. {
  8817. "name": "Fabien Potencier",
  8818. "email": "fabien@symfony.com"
  8819. },
  8820. {
  8821. "name": "Symfony Community",
  8822. "homepage": "https://symfony.com/contributors"
  8823. }
  8824. ],
  8825. "description": "Symfony Filesystem Component",
  8826. "homepage": "https://symfony.com",
  8827. "time": "2018-10-02T12:28:39+00:00"
  8828. },
  8829. {
  8830. "name": "symfony/finder",
  8831. "version": "v3.4.17",
  8832. "source": {
  8833. "type": "git",
  8834. "url": "https://github.com/symfony/finder.git",
  8835. "reference": "54ba444dddc5bd5708a34bd095ea67c6eb54644d"
  8836. },
  8837. "dist": {
  8838. "type": "zip",
  8839. "url": "https://api.github.com/repos/symfony/finder/zipball/54ba444dddc5bd5708a34bd095ea67c6eb54644d",
  8840. "reference": "54ba444dddc5bd5708a34bd095ea67c6eb54644d",
  8841. "shasum": ""
  8842. },
  8843. "require": {
  8844. "php": "^5.5.9|>=7.0.8"
  8845. },
  8846. "type": "library",
  8847. "extra": {
  8848. "branch-alias": {
  8849. "dev-master": "3.4-dev"
  8850. }
  8851. },
  8852. "autoload": {
  8853. "psr-4": {
  8854. "Symfony\\Component\\Finder\\": ""
  8855. },
  8856. "exclude-from-classmap": [
  8857. "/Tests/"
  8858. ]
  8859. },
  8860. "notification-url": "https://packagist.org/downloads/",
  8861. "license": [
  8862. "MIT"
  8863. ],
  8864. "authors": [
  8865. {
  8866. "name": "Fabien Potencier",
  8867. "email": "fabien@symfony.com"
  8868. },
  8869. {
  8870. "name": "Symfony Community",
  8871. "homepage": "https://symfony.com/contributors"
  8872. }
  8873. ],
  8874. "description": "Symfony Finder Component",
  8875. "homepage": "https://symfony.com",
  8876. "time": "2018-10-03T08:46:40+00:00"
  8877. },
  8878. {
  8879. "name": "symfony/http-foundation",
  8880. "version": "v3.4.17",
  8881. "source": {
  8882. "type": "git",
  8883. "url": "https://github.com/symfony/http-foundation.git",
  8884. "reference": "3a4498236ade473c52b92d509303e5fd1b211ab1"
  8885. },
  8886. "dist": {
  8887. "type": "zip",
  8888. "url": "https://api.github.com/repos/symfony/http-foundation/zipball/3a4498236ade473c52b92d509303e5fd1b211ab1",
  8889. "reference": "3a4498236ade473c52b92d509303e5fd1b211ab1",
  8890. "shasum": ""
  8891. },
  8892. "require": {
  8893. "php": "^5.5.9|>=7.0.8",
  8894. "symfony/polyfill-mbstring": "~1.1",
  8895. "symfony/polyfill-php70": "~1.6"
  8896. },
  8897. "require-dev": {
  8898. "symfony/expression-language": "~2.8|~3.0|~4.0"
  8899. },
  8900. "type": "library",
  8901. "extra": {
  8902. "branch-alias": {
  8903. "dev-master": "3.4-dev"
  8904. }
  8905. },
  8906. "autoload": {
  8907. "psr-4": {
  8908. "Symfony\\Component\\HttpFoundation\\": ""
  8909. },
  8910. "exclude-from-classmap": [
  8911. "/Tests/"
  8912. ]
  8913. },
  8914. "notification-url": "https://packagist.org/downloads/",
  8915. "license": [
  8916. "MIT"
  8917. ],
  8918. "authors": [
  8919. {
  8920. "name": "Fabien Potencier",
  8921. "email": "fabien@symfony.com"
  8922. },
  8923. {
  8924. "name": "Symfony Community",
  8925. "homepage": "https://symfony.com/contributors"
  8926. }
  8927. ],
  8928. "description": "Symfony HttpFoundation Component",
  8929. "homepage": "https://symfony.com",
  8930. "time": "2018-10-03T08:48:18+00:00"
  8931. },
  8932. {
  8933. "name": "symfony/http-kernel",
  8934. "version": "v3.4.17",
  8935. "source": {
  8936. "type": "git",
  8937. "url": "https://github.com/symfony/http-kernel.git",
  8938. "reference": "a0944a9a1d8845da724236cde9a310964acadb1c"
  8939. },
  8940. "dist": {
  8941. "type": "zip",
  8942. "url": "https://api.github.com/repos/symfony/http-kernel/zipball/a0944a9a1d8845da724236cde9a310964acadb1c",
  8943. "reference": "a0944a9a1d8845da724236cde9a310964acadb1c",
  8944. "shasum": ""
  8945. },
  8946. "require": {
  8947. "php": "^5.5.9|>=7.0.8",
  8948. "psr/log": "~1.0",
  8949. "symfony/debug": "~2.8|~3.0|~4.0",
  8950. "symfony/event-dispatcher": "~2.8|~3.0|~4.0",
  8951. "symfony/http-foundation": "~3.4.12|~4.0.12|^4.1.1",
  8952. "symfony/polyfill-ctype": "~1.8"
  8953. },
  8954. "conflict": {
  8955. "symfony/config": "<2.8",
  8956. "symfony/dependency-injection": "<3.4.10|<4.0.10,>=4",
  8957. "symfony/var-dumper": "<3.3",
  8958. "twig/twig": "<1.34|<2.4,>=2"
  8959. },
  8960. "provide": {
  8961. "psr/log-implementation": "1.0"
  8962. },
  8963. "require-dev": {
  8964. "psr/cache": "~1.0",
  8965. "symfony/browser-kit": "~2.8|~3.0|~4.0",
  8966. "symfony/class-loader": "~2.8|~3.0",
  8967. "symfony/config": "~2.8|~3.0|~4.0",
  8968. "symfony/console": "~2.8|~3.0|~4.0",
  8969. "symfony/css-selector": "~2.8|~3.0|~4.0",
  8970. "symfony/dependency-injection": "^3.4.10|^4.0.10",
  8971. "symfony/dom-crawler": "~2.8|~3.0|~4.0",
  8972. "symfony/expression-language": "~2.8|~3.0|~4.0",
  8973. "symfony/finder": "~2.8|~3.0|~4.0",
  8974. "symfony/process": "~2.8|~3.0|~4.0",
  8975. "symfony/routing": "~3.4|~4.0",
  8976. "symfony/stopwatch": "~2.8|~3.0|~4.0",
  8977. "symfony/templating": "~2.8|~3.0|~4.0",
  8978. "symfony/translation": "~2.8|~3.0|~4.0",
  8979. "symfony/var-dumper": "~3.3|~4.0"
  8980. },
  8981. "suggest": {
  8982. "symfony/browser-kit": "",
  8983. "symfony/config": "",
  8984. "symfony/console": "",
  8985. "symfony/dependency-injection": "",
  8986. "symfony/finder": "",
  8987. "symfony/var-dumper": ""
  8988. },
  8989. "type": "library",
  8990. "extra": {
  8991. "branch-alias": {
  8992. "dev-master": "3.4-dev"
  8993. }
  8994. },
  8995. "autoload": {
  8996. "psr-4": {
  8997. "Symfony\\Component\\HttpKernel\\": ""
  8998. },
  8999. "exclude-from-classmap": [
  9000. "/Tests/"
  9001. ]
  9002. },
  9003. "notification-url": "https://packagist.org/downloads/",
  9004. "license": [
  9005. "MIT"
  9006. ],
  9007. "authors": [
  9008. {
  9009. "name": "Fabien Potencier",
  9010. "email": "fabien@symfony.com"
  9011. },
  9012. {
  9013. "name": "Symfony Community",
  9014. "homepage": "https://symfony.com/contributors"
  9015. }
  9016. ],
  9017. "description": "Symfony HttpKernel Component",
  9018. "homepage": "https://symfony.com",
  9019. "time": "2018-10-03T12:03:34+00:00"
  9020. },
  9021. {
  9022. "name": "symfony/polyfill-ctype",
  9023. "version": "v1.10.0",
  9024. "source": {
  9025. "type": "git",
  9026. "url": "https://github.com/symfony/polyfill-ctype.git",
  9027. "reference": "e3d826245268269cd66f8326bd8bc066687b4a19"
  9028. },
  9029. "dist": {
  9030. "type": "zip",
  9031. "url": "https://api.github.com/repos/symfony/polyfill-ctype/zipball/e3d826245268269cd66f8326bd8bc066687b4a19",
  9032. "reference": "e3d826245268269cd66f8326bd8bc066687b4a19",
  9033. "shasum": ""
  9034. },
  9035. "require": {
  9036. "php": ">=5.3.3"
  9037. },
  9038. "suggest": {
  9039. "ext-ctype": "For best performance"
  9040. },
  9041. "type": "library",
  9042. "extra": {
  9043. "branch-alias": {
  9044. "dev-master": "1.9-dev"
  9045. }
  9046. },
  9047. "autoload": {
  9048. "psr-4": {
  9049. "Symfony\\Polyfill\\Ctype\\": ""
  9050. },
  9051. "files": [
  9052. "bootstrap.php"
  9053. ]
  9054. },
  9055. "notification-url": "https://packagist.org/downloads/",
  9056. "license": [
  9057. "MIT"
  9058. ],
  9059. "authors": [
  9060. {
  9061. "name": "Symfony Community",
  9062. "homepage": "https://symfony.com/contributors"
  9063. },
  9064. {
  9065. "name": "Gert de Pagter",
  9066. "email": "BackEndTea@gmail.com"
  9067. }
  9068. ],
  9069. "description": "Symfony polyfill for ctype functions",
  9070. "homepage": "https://symfony.com",
  9071. "keywords": [
  9072. "compatibility",
  9073. "ctype",
  9074. "polyfill",
  9075. "portable"
  9076. ],
  9077. "time": "2018-08-06T14:22:27+00:00"
  9078. },
  9079. {
  9080. "name": "symfony/polyfill-iconv",
  9081. "version": "v1.10.0",
  9082. "source": {
  9083. "type": "git",
  9084. "url": "https://github.com/symfony/polyfill-iconv.git",
  9085. "reference": "97001cfc283484c9691769f51cdf25259037eba2"
  9086. },
  9087. "dist": {
  9088. "type": "zip",
  9089. "url": "https://api.github.com/repos/symfony/polyfill-iconv/zipball/97001cfc283484c9691769f51cdf25259037eba2",
  9090. "reference": "97001cfc283484c9691769f51cdf25259037eba2",
  9091. "shasum": ""
  9092. },
  9093. "require": {
  9094. "php": ">=5.3.3"
  9095. },
  9096. "suggest": {
  9097. "ext-iconv": "For best performance"
  9098. },
  9099. "type": "library",
  9100. "extra": {
  9101. "branch-alias": {
  9102. "dev-master": "1.9-dev"
  9103. }
  9104. },
  9105. "autoload": {
  9106. "psr-4": {
  9107. "Symfony\\Polyfill\\Iconv\\": ""
  9108. },
  9109. "files": [
  9110. "bootstrap.php"
  9111. ]
  9112. },
  9113. "notification-url": "https://packagist.org/downloads/",
  9114. "license": [
  9115. "MIT"
  9116. ],
  9117. "authors": [
  9118. {
  9119. "name": "Nicolas Grekas",
  9120. "email": "p@tchwork.com"
  9121. },
  9122. {
  9123. "name": "Symfony Community",
  9124. "homepage": "https://symfony.com/contributors"
  9125. }
  9126. ],
  9127. "description": "Symfony polyfill for the Iconv extension",
  9128. "homepage": "https://symfony.com",
  9129. "keywords": [
  9130. "compatibility",
  9131. "iconv",
  9132. "polyfill",
  9133. "portable",
  9134. "shim"
  9135. ],
  9136. "time": "2018-09-21T06:26:08+00:00"
  9137. },
  9138. {
  9139. "name": "symfony/polyfill-mbstring",
  9140. "version": "v1.10.0",
  9141. "source": {
  9142. "type": "git",
  9143. "url": "https://github.com/symfony/polyfill-mbstring.git",
  9144. "reference": "c79c051f5b3a46be09205c73b80b346e4153e494"
  9145. },
  9146. "dist": {
  9147. "type": "zip",
  9148. "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/c79c051f5b3a46be09205c73b80b346e4153e494",
  9149. "reference": "c79c051f5b3a46be09205c73b80b346e4153e494",
  9150. "shasum": ""
  9151. },
  9152. "require": {
  9153. "php": ">=5.3.3"
  9154. },
  9155. "suggest": {
  9156. "ext-mbstring": "For best performance"
  9157. },
  9158. "type": "library",
  9159. "extra": {
  9160. "branch-alias": {
  9161. "dev-master": "1.9-dev"
  9162. }
  9163. },
  9164. "autoload": {
  9165. "psr-4": {
  9166. "Symfony\\Polyfill\\Mbstring\\": ""
  9167. },
  9168. "files": [
  9169. "bootstrap.php"
  9170. ]
  9171. },
  9172. "notification-url": "https://packagist.org/downloads/",
  9173. "license": [
  9174. "MIT"
  9175. ],
  9176. "authors": [
  9177. {
  9178. "name": "Nicolas Grekas",
  9179. "email": "p@tchwork.com"
  9180. },
  9181. {
  9182. "name": "Symfony Community",
  9183. "homepage": "https://symfony.com/contributors"
  9184. }
  9185. ],
  9186. "description": "Symfony polyfill for the Mbstring extension",
  9187. "homepage": "https://symfony.com",
  9188. "keywords": [
  9189. "compatibility",
  9190. "mbstring",
  9191. "polyfill",
  9192. "portable",
  9193. "shim"
  9194. ],
  9195. "time": "2018-09-21T13:07:52+00:00"
  9196. },
  9197. {
  9198. "name": "symfony/polyfill-php70",
  9199. "version": "v1.10.0",
  9200. "source": {
  9201. "type": "git",
  9202. "url": "https://github.com/symfony/polyfill-php70.git",
  9203. "reference": "6b88000cdd431cd2e940caa2cb569201f3f84224"
  9204. },
  9205. "dist": {
  9206. "type": "zip",
  9207. "url": "https://api.github.com/repos/symfony/polyfill-php70/zipball/6b88000cdd431cd2e940caa2cb569201f3f84224",
  9208. "reference": "6b88000cdd431cd2e940caa2cb569201f3f84224",
  9209. "shasum": ""
  9210. },
  9211. "require": {
  9212. "paragonie/random_compat": "~1.0|~2.0|~9.99",
  9213. "php": ">=5.3.3"
  9214. },
  9215. "type": "library",
  9216. "extra": {
  9217. "branch-alias": {
  9218. "dev-master": "1.9-dev"
  9219. }
  9220. },
  9221. "autoload": {
  9222. "psr-4": {
  9223. "Symfony\\Polyfill\\Php70\\": ""
  9224. },
  9225. "files": [
  9226. "bootstrap.php"
  9227. ],
  9228. "classmap": [
  9229. "Resources/stubs"
  9230. ]
  9231. },
  9232. "notification-url": "https://packagist.org/downloads/",
  9233. "license": [
  9234. "MIT"
  9235. ],
  9236. "authors": [
  9237. {
  9238. "name": "Nicolas Grekas",
  9239. "email": "p@tchwork.com"
  9240. },
  9241. {
  9242. "name": "Symfony Community",
  9243. "homepage": "https://symfony.com/contributors"
  9244. }
  9245. ],
  9246. "description": "Symfony polyfill backporting some PHP 7.0+ features to lower PHP versions",
  9247. "homepage": "https://symfony.com",
  9248. "keywords": [
  9249. "compatibility",
  9250. "polyfill",
  9251. "portable",
  9252. "shim"
  9253. ],
  9254. "time": "2018-09-21T06:26:08+00:00"
  9255. },
  9256. {
  9257. "name": "symfony/process",
  9258. "version": "v3.4.17",
  9259. "source": {
  9260. "type": "git",
  9261. "url": "https://github.com/symfony/process.git",
  9262. "reference": "1dc2977afa7d70f90f3fefbcd84152813558910e"
  9263. },
  9264. "dist": {
  9265. "type": "zip",
  9266. "url": "https://api.github.com/repos/symfony/process/zipball/1dc2977afa7d70f90f3fefbcd84152813558910e",
  9267. "reference": "1dc2977afa7d70f90f3fefbcd84152813558910e",
  9268. "shasum": ""
  9269. },
  9270. "require": {
  9271. "php": "^5.5.9|>=7.0.8"
  9272. },
  9273. "type": "library",
  9274. "extra": {
  9275. "branch-alias": {
  9276. "dev-master": "3.4-dev"
  9277. }
  9278. },
  9279. "autoload": {
  9280. "psr-4": {
  9281. "Symfony\\Component\\Process\\": ""
  9282. },
  9283. "exclude-from-classmap": [
  9284. "/Tests/"
  9285. ]
  9286. },
  9287. "notification-url": "https://packagist.org/downloads/",
  9288. "license": [
  9289. "MIT"
  9290. ],
  9291. "authors": [
  9292. {
  9293. "name": "Fabien Potencier",
  9294. "email": "fabien@symfony.com"
  9295. },
  9296. {
  9297. "name": "Symfony Community",
  9298. "homepage": "https://symfony.com/contributors"
  9299. }
  9300. ],
  9301. "description": "Symfony Process Component",
  9302. "homepage": "https://symfony.com",
  9303. "time": "2018-10-02T12:28:39+00:00"
  9304. },
  9305. {
  9306. "name": "symfony/psr-http-message-bridge",
  9307. "version": "v1.1.0",
  9308. "source": {
  9309. "type": "git",
  9310. "url": "https://github.com/symfony/psr-http-message-bridge.git",
  9311. "reference": "53c15a6a7918e6c2ab16ae370ea607fb40cab196"
  9312. },
  9313. "dist": {
  9314. "type": "zip",
  9315. "url": "https://api.github.com/repos/symfony/psr-http-message-bridge/zipball/53c15a6a7918e6c2ab16ae370ea607fb40cab196",
  9316. "reference": "53c15a6a7918e6c2ab16ae370ea607fb40cab196",
  9317. "shasum": ""
  9318. },
  9319. "require": {
  9320. "php": "^5.3.3 || ^7.0",
  9321. "psr/http-message": "^1.0",
  9322. "symfony/http-foundation": "^2.3.42 || ^3.4 || ^4.0"
  9323. },
  9324. "require-dev": {
  9325. "symfony/phpunit-bridge": "^3.4 || 4.0"
  9326. },
  9327. "suggest": {
  9328. "psr/http-factory-implementation": "To use the PSR-17 factory",
  9329. "psr/http-message-implementation": "To use the HttpFoundation factory",
  9330. "zendframework/zend-diactoros": "To use the Zend Diactoros factory"
  9331. },
  9332. "type": "symfony-bridge",
  9333. "extra": {
  9334. "branch-alias": {
  9335. "dev-master": "1.1-dev"
  9336. }
  9337. },
  9338. "autoload": {
  9339. "psr-4": {
  9340. "Symfony\\Bridge\\PsrHttpMessage\\": ""
  9341. }
  9342. },
  9343. "notification-url": "https://packagist.org/downloads/",
  9344. "license": [
  9345. "MIT"
  9346. ],
  9347. "authors": [
  9348. {
  9349. "name": "Symfony Community",
  9350. "homepage": "http://symfony.com/contributors"
  9351. },
  9352. {
  9353. "name": "Fabien Potencier",
  9354. "email": "fabien@symfony.com"
  9355. }
  9356. ],
  9357. "description": "PSR HTTP message bridge",
  9358. "homepage": "http://symfony.com",
  9359. "keywords": [
  9360. "http",
  9361. "http-message",
  9362. "psr-7"
  9363. ],
  9364. "time": "2018-08-30T16:28:28+00:00"
  9365. },
  9366. {
  9367. "name": "symfony/routing",
  9368. "version": "v3.4.17",
  9369. "source": {
  9370. "type": "git",
  9371. "url": "https://github.com/symfony/routing.git",
  9372. "reference": "585f6e2d740393d546978769dd56e496a6233e0b"
  9373. },
  9374. "dist": {
  9375. "type": "zip",
  9376. "url": "https://api.github.com/repos/symfony/routing/zipball/585f6e2d740393d546978769dd56e496a6233e0b",
  9377. "reference": "585f6e2d740393d546978769dd56e496a6233e0b",
  9378. "shasum": ""
  9379. },
  9380. "require": {
  9381. "php": "^5.5.9|>=7.0.8"
  9382. },
  9383. "conflict": {
  9384. "symfony/config": "<3.3.1",
  9385. "symfony/dependency-injection": "<3.3",
  9386. "symfony/yaml": "<3.4"
  9387. },
  9388. "require-dev": {
  9389. "doctrine/annotations": "~1.0",
  9390. "psr/log": "~1.0",
  9391. "symfony/config": "^3.3.1|~4.0",
  9392. "symfony/dependency-injection": "~3.3|~4.0",
  9393. "symfony/expression-language": "~2.8|~3.0|~4.0",
  9394. "symfony/http-foundation": "~2.8|~3.0|~4.0",
  9395. "symfony/yaml": "~3.4|~4.0"
  9396. },
  9397. "suggest": {
  9398. "doctrine/annotations": "For using the annotation loader",
  9399. "symfony/config": "For using the all-in-one router or any loader",
  9400. "symfony/dependency-injection": "For loading routes from a service",
  9401. "symfony/expression-language": "For using expression matching",
  9402. "symfony/http-foundation": "For using a Symfony Request object",
  9403. "symfony/yaml": "For using the YAML loader"
  9404. },
  9405. "type": "library",
  9406. "extra": {
  9407. "branch-alias": {
  9408. "dev-master": "3.4-dev"
  9409. }
  9410. },
  9411. "autoload": {
  9412. "psr-4": {
  9413. "Symfony\\Component\\Routing\\": ""
  9414. },
  9415. "exclude-from-classmap": [
  9416. "/Tests/"
  9417. ]
  9418. },
  9419. "notification-url": "https://packagist.org/downloads/",
  9420. "license": [
  9421. "MIT"
  9422. ],
  9423. "authors": [
  9424. {
  9425. "name": "Fabien Potencier",
  9426. "email": "fabien@symfony.com"
  9427. },
  9428. {
  9429. "name": "Symfony Community",
  9430. "homepage": "https://symfony.com/contributors"
  9431. }
  9432. ],
  9433. "description": "Symfony Routing Component",
  9434. "homepage": "https://symfony.com",
  9435. "keywords": [
  9436. "router",
  9437. "routing",
  9438. "uri",
  9439. "url"
  9440. ],
  9441. "time": "2018-10-02T12:28:39+00:00"
  9442. },
  9443. {
  9444. "name": "symfony/serializer",
  9445. "version": "v3.4.17",
  9446. "source": {
  9447. "type": "git",
  9448. "url": "https://github.com/symfony/serializer.git",
  9449. "reference": "8bc00ef47a428bfebc4641f29d158e7c56137fcb"
  9450. },
  9451. "dist": {
  9452. "type": "zip",
  9453. "url": "https://api.github.com/repos/symfony/serializer/zipball/8bc00ef47a428bfebc4641f29d158e7c56137fcb",
  9454. "reference": "8bc00ef47a428bfebc4641f29d158e7c56137fcb",
  9455. "shasum": ""
  9456. },
  9457. "require": {
  9458. "php": "^5.5.9|>=7.0.8",
  9459. "symfony/polyfill-ctype": "~1.8"
  9460. },
  9461. "conflict": {
  9462. "phpdocumentor/type-resolver": "<0.2.1",
  9463. "symfony/dependency-injection": "<3.2",
  9464. "symfony/property-access": ">=3.0,<3.0.4|>=2.8,<2.8.4",
  9465. "symfony/property-info": "<3.1",
  9466. "symfony/yaml": "<3.4"
  9467. },
  9468. "require-dev": {
  9469. "doctrine/annotations": "~1.0",
  9470. "doctrine/cache": "~1.0",
  9471. "phpdocumentor/reflection-docblock": "^3.0|^4.0",
  9472. "symfony/cache": "~3.1|~4.0",
  9473. "symfony/config": "~2.8|~3.0|~4.0",
  9474. "symfony/dependency-injection": "~3.2|~4.0",
  9475. "symfony/http-foundation": "~2.8|~3.0|~4.0",
  9476. "symfony/property-access": "~2.8|~3.0|~4.0",
  9477. "symfony/property-info": "~3.1|~4.0",
  9478. "symfony/yaml": "~3.4|~4.0"
  9479. },
  9480. "suggest": {
  9481. "doctrine/annotations": "For using the annotation mapping. You will also need doctrine/cache.",
  9482. "doctrine/cache": "For using the default cached annotation reader and metadata cache.",
  9483. "psr/cache-implementation": "For using the metadata cache.",
  9484. "symfony/config": "For using the XML mapping loader.",
  9485. "symfony/http-foundation": "To use the DataUriNormalizer.",
  9486. "symfony/property-access": "For using the ObjectNormalizer.",
  9487. "symfony/property-info": "To deserialize relations.",
  9488. "symfony/yaml": "For using the default YAML mapping loader."
  9489. },
  9490. "type": "library",
  9491. "extra": {
  9492. "branch-alias": {
  9493. "dev-master": "3.4-dev"
  9494. }
  9495. },
  9496. "autoload": {
  9497. "psr-4": {
  9498. "Symfony\\Component\\Serializer\\": ""
  9499. },
  9500. "exclude-from-classmap": [
  9501. "/Tests/"
  9502. ]
  9503. },
  9504. "notification-url": "https://packagist.org/downloads/",
  9505. "license": [
  9506. "MIT"
  9507. ],
  9508. "authors": [
  9509. {
  9510. "name": "Fabien Potencier",
  9511. "email": "fabien@symfony.com"
  9512. },
  9513. {
  9514. "name": "Symfony Community",
  9515. "homepage": "https://symfony.com/contributors"
  9516. }
  9517. ],
  9518. "description": "Symfony Serializer Component",
  9519. "homepage": "https://symfony.com",
  9520. "time": "2018-10-02T12:28:39+00:00"
  9521. },
  9522. {
  9523. "name": "symfony/translation",
  9524. "version": "v3.4.17",
  9525. "source": {
  9526. "type": "git",
  9527. "url": "https://github.com/symfony/translation.git",
  9528. "reference": "94bc3a79008e6640defedf5e14eb3b4f20048352"
  9529. },
  9530. "dist": {
  9531. "type": "zip",
  9532. "url": "https://api.github.com/repos/symfony/translation/zipball/94bc3a79008e6640defedf5e14eb3b4f20048352",
  9533. "reference": "94bc3a79008e6640defedf5e14eb3b4f20048352",
  9534. "shasum": ""
  9535. },
  9536. "require": {
  9537. "php": "^5.5.9|>=7.0.8",
  9538. "symfony/polyfill-mbstring": "~1.0"
  9539. },
  9540. "conflict": {
  9541. "symfony/config": "<2.8",
  9542. "symfony/dependency-injection": "<3.4",
  9543. "symfony/yaml": "<3.4"
  9544. },
  9545. "require-dev": {
  9546. "psr/log": "~1.0",
  9547. "symfony/config": "~2.8|~3.0|~4.0",
  9548. "symfony/dependency-injection": "~3.4|~4.0",
  9549. "symfony/finder": "~2.8|~3.0|~4.0",
  9550. "symfony/intl": "^2.8.18|^3.2.5|~4.0",
  9551. "symfony/yaml": "~3.4|~4.0"
  9552. },
  9553. "suggest": {
  9554. "psr/log-implementation": "To use logging capability in translator",
  9555. "symfony/config": "",
  9556. "symfony/yaml": ""
  9557. },
  9558. "type": "library",
  9559. "extra": {
  9560. "branch-alias": {
  9561. "dev-master": "3.4-dev"
  9562. }
  9563. },
  9564. "autoload": {
  9565. "psr-4": {
  9566. "Symfony\\Component\\Translation\\": ""
  9567. },
  9568. "exclude-from-classmap": [
  9569. "/Tests/"
  9570. ]
  9571. },
  9572. "notification-url": "https://packagist.org/downloads/",
  9573. "license": [
  9574. "MIT"
  9575. ],
  9576. "authors": [
  9577. {
  9578. "name": "Fabien Potencier",
  9579. "email": "fabien@symfony.com"
  9580. },
  9581. {
  9582. "name": "Symfony Community",
  9583. "homepage": "https://symfony.com/contributors"
  9584. }
  9585. ],
  9586. "description": "Symfony Translation Component",
  9587. "homepage": "https://symfony.com",
  9588. "time": "2018-10-02T16:33:53+00:00"
  9589. },
  9590. {
  9591. "name": "symfony/validator",
  9592. "version": "v3.4.17",
  9593. "source": {
  9594. "type": "git",
  9595. "url": "https://github.com/symfony/validator.git",
  9596. "reference": "9f8dbf0dceb03815c3160a279bf8cf4f8018a1c5"
  9597. },
  9598. "dist": {
  9599. "type": "zip",
  9600. "url": "https://api.github.com/repos/symfony/validator/zipball/9f8dbf0dceb03815c3160a279bf8cf4f8018a1c5",
  9601. "reference": "9f8dbf0dceb03815c3160a279bf8cf4f8018a1c5",
  9602. "shasum": ""
  9603. },
  9604. "require": {
  9605. "php": "^5.5.9|>=7.0.8",
  9606. "symfony/polyfill-ctype": "~1.8",
  9607. "symfony/polyfill-mbstring": "~1.0",
  9608. "symfony/translation": "~2.8|~3.0|~4.0"
  9609. },
  9610. "conflict": {
  9611. "phpunit/phpunit": "<4.8.35|<5.4.3,>=5.0",
  9612. "symfony/dependency-injection": "<3.3",
  9613. "symfony/http-kernel": "<3.3.5",
  9614. "symfony/yaml": "<3.4"
  9615. },
  9616. "require-dev": {
  9617. "doctrine/annotations": "~1.0",
  9618. "doctrine/cache": "~1.0",
  9619. "egulias/email-validator": "^1.2.8|~2.0",
  9620. "symfony/cache": "~3.1|~4.0",
  9621. "symfony/config": "~2.8|~3.0|~4.0",
  9622. "symfony/dependency-injection": "~3.3|~4.0",
  9623. "symfony/expression-language": "~2.8|~3.0|~4.0",
  9624. "symfony/http-foundation": "~2.8|~3.0|~4.0",
  9625. "symfony/http-kernel": "^3.3.5|~4.0",
  9626. "symfony/intl": "^2.8.18|^3.2.5|~4.0",
  9627. "symfony/property-access": "~2.8|~3.0|~4.0",
  9628. "symfony/var-dumper": "~3.3|~4.0",
  9629. "symfony/yaml": "~3.4|~4.0"
  9630. },
  9631. "suggest": {
  9632. "doctrine/annotations": "For using the annotation mapping. You will also need doctrine/cache.",
  9633. "doctrine/cache": "For using the default cached annotation reader and metadata cache.",
  9634. "egulias/email-validator": "Strict (RFC compliant) email validation",
  9635. "psr/cache-implementation": "For using the metadata cache.",
  9636. "symfony/config": "",
  9637. "symfony/expression-language": "For using the Expression validator",
  9638. "symfony/http-foundation": "",
  9639. "symfony/intl": "",
  9640. "symfony/property-access": "For accessing properties within comparison constraints",
  9641. "symfony/yaml": ""
  9642. },
  9643. "type": "library",
  9644. "extra": {
  9645. "branch-alias": {
  9646. "dev-master": "3.4-dev"
  9647. }
  9648. },
  9649. "autoload": {
  9650. "psr-4": {
  9651. "Symfony\\Component\\Validator\\": ""
  9652. },
  9653. "exclude-from-classmap": [
  9654. "/Tests/"
  9655. ]
  9656. },
  9657. "notification-url": "https://packagist.org/downloads/",
  9658. "license": [
  9659. "MIT"
  9660. ],
  9661. "authors": [
  9662. {
  9663. "name": "Fabien Potencier",
  9664. "email": "fabien@symfony.com"
  9665. },
  9666. {
  9667. "name": "Symfony Community",
  9668. "homepage": "https://symfony.com/contributors"
  9669. }
  9670. ],
  9671. "description": "Symfony Validator Component",
  9672. "homepage": "https://symfony.com",
  9673. "time": "2018-10-02T16:33:53+00:00"
  9674. },
  9675. {
  9676. "name": "symfony/var-dumper",
  9677. "version": "v3.4.17",
  9678. "source": {
  9679. "type": "git",
  9680. "url": "https://github.com/symfony/var-dumper.git",
  9681. "reference": "ff8ac19e97e5c7c3979236b584719a1190f84181"
  9682. },
  9683. "dist": {
  9684. "type": "zip",
  9685. "url": "https://api.github.com/repos/symfony/var-dumper/zipball/ff8ac19e97e5c7c3979236b584719a1190f84181",
  9686. "reference": "ff8ac19e97e5c7c3979236b584719a1190f84181",
  9687. "shasum": ""
  9688. },
  9689. "require": {
  9690. "php": "^5.5.9|>=7.0.8",
  9691. "symfony/polyfill-mbstring": "~1.0"
  9692. },
  9693. "conflict": {
  9694. "phpunit/phpunit": "<4.8.35|<5.4.3,>=5.0"
  9695. },
  9696. "require-dev": {
  9697. "ext-iconv": "*",
  9698. "twig/twig": "~1.34|~2.4"
  9699. },
  9700. "suggest": {
  9701. "ext-iconv": "To convert non-UTF-8 strings to UTF-8 (or symfony/polyfill-iconv in case ext-iconv cannot be used).",
  9702. "ext-intl": "To show region name in time zone dump",
  9703. "ext-symfony_debug": ""
  9704. },
  9705. "type": "library",
  9706. "extra": {
  9707. "branch-alias": {
  9708. "dev-master": "3.4-dev"
  9709. }
  9710. },
  9711. "autoload": {
  9712. "files": [
  9713. "Resources/functions/dump.php"
  9714. ],
  9715. "psr-4": {
  9716. "Symfony\\Component\\VarDumper\\": ""
  9717. },
  9718. "exclude-from-classmap": [
  9719. "/Tests/"
  9720. ]
  9721. },
  9722. "notification-url": "https://packagist.org/downloads/",
  9723. "license": [
  9724. "MIT"
  9725. ],
  9726. "authors": [
  9727. {
  9728. "name": "Nicolas Grekas",
  9729. "email": "p@tchwork.com"
  9730. },
  9731. {
  9732. "name": "Symfony Community",
  9733. "homepage": "https://symfony.com/contributors"
  9734. }
  9735. ],
  9736. "description": "Symfony mechanism for exploring and dumping PHP variables",
  9737. "homepage": "https://symfony.com",
  9738. "keywords": [
  9739. "debug",
  9740. "dump"
  9741. ],
  9742. "time": "2018-10-02T16:33:53+00:00"
  9743. },
  9744. {
  9745. "name": "symfony/yaml",
  9746. "version": "v3.4.17",
  9747. "source": {
  9748. "type": "git",
  9749. "url": "https://github.com/symfony/yaml.git",
  9750. "reference": "640b6c27fed4066d64b64d5903a86043f4a4de7f"
  9751. },
  9752. "dist": {
  9753. "type": "zip",
  9754. "url": "https://api.github.com/repos/symfony/yaml/zipball/640b6c27fed4066d64b64d5903a86043f4a4de7f",
  9755. "reference": "640b6c27fed4066d64b64d5903a86043f4a4de7f",
  9756. "shasum": ""
  9757. },
  9758. "require": {
  9759. "php": "^5.5.9|>=7.0.8",
  9760. "symfony/polyfill-ctype": "~1.8"
  9761. },
  9762. "conflict": {
  9763. "symfony/console": "<3.4"
  9764. },
  9765. "require-dev": {
  9766. "symfony/console": "~3.4|~4.0"
  9767. },
  9768. "suggest": {
  9769. "symfony/console": "For validating YAML files using the lint command"
  9770. },
  9771. "type": "library",
  9772. "extra": {
  9773. "branch-alias": {
  9774. "dev-master": "3.4-dev"
  9775. }
  9776. },
  9777. "autoload": {
  9778. "psr-4": {
  9779. "Symfony\\Component\\Yaml\\": ""
  9780. },
  9781. "exclude-from-classmap": [
  9782. "/Tests/"
  9783. ]
  9784. },
  9785. "notification-url": "https://packagist.org/downloads/",
  9786. "license": [
  9787. "MIT"
  9788. ],
  9789. "authors": [
  9790. {
  9791. "name": "Fabien Potencier",
  9792. "email": "fabien@symfony.com"
  9793. },
  9794. {
  9795. "name": "Symfony Community",
  9796. "homepage": "https://symfony.com/contributors"
  9797. }
  9798. ],
  9799. "description": "Symfony Yaml Component",
  9800. "homepage": "https://symfony.com",
  9801. "time": "2018-10-02T16:33:53+00:00"
  9802. },
  9803. {
  9804. "name": "twig/twig",
  9805. "version": "v1.35.4",
  9806. "source": {
  9807. "type": "git",
  9808. "url": "https://github.com/twigphp/Twig.git",
  9809. "reference": "7e081e98378a1e78c29cc9eba4aefa5d78a05d2a"
  9810. },
  9811. "dist": {
  9812. "type": "zip",
  9813. "url": "https://api.github.com/repos/twigphp/Twig/zipball/7e081e98378a1e78c29cc9eba4aefa5d78a05d2a",
  9814. "reference": "7e081e98378a1e78c29cc9eba4aefa5d78a05d2a",
  9815. "shasum": ""
  9816. },
  9817. "require": {
  9818. "php": ">=5.3.3",
  9819. "symfony/polyfill-ctype": "^1.8"
  9820. },
  9821. "require-dev": {
  9822. "psr/container": "^1.0",
  9823. "symfony/debug": "^2.7",
  9824. "symfony/phpunit-bridge": "^3.3"
  9825. },
  9826. "type": "library",
  9827. "extra": {
  9828. "branch-alias": {
  9829. "dev-master": "1.35-dev"
  9830. }
  9831. },
  9832. "autoload": {
  9833. "psr-0": {
  9834. "Twig_": "lib/"
  9835. },
  9836. "psr-4": {
  9837. "Twig\\": "src/"
  9838. }
  9839. },
  9840. "notification-url": "https://packagist.org/downloads/",
  9841. "license": [
  9842. "BSD-3-Clause"
  9843. ],
  9844. "authors": [
  9845. {
  9846. "name": "Fabien Potencier",
  9847. "email": "fabien@symfony.com",
  9848. "homepage": "http://fabien.potencier.org",
  9849. "role": "Lead Developer"
  9850. },
  9851. {
  9852. "name": "Armin Ronacher",
  9853. "email": "armin.ronacher@active-4.com",
  9854. "role": "Project Founder"
  9855. },
  9856. {
  9857. "name": "Twig Team",
  9858. "homepage": "https://twig.symfony.com/contributors",
  9859. "role": "Contributors"
  9860. }
  9861. ],
  9862. "description": "Twig, the flexible, fast, and secure template language for PHP",
  9863. "homepage": "https://twig.symfony.com",
  9864. "keywords": [
  9865. "templating"
  9866. ],
  9867. "time": "2018-07-13T07:12:17+00:00"
  9868. },
  9869. {
  9870. "name": "webflo/drupal-finder",
  9871. "version": "1.1.0",
  9872. "source": {
  9873. "type": "git",
  9874. "url": "https://github.com/webflo/drupal-finder.git",
  9875. "reference": "8a7886c575d6eaa67a425dceccc84e735c0b9637"
  9876. },
  9877. "dist": {
  9878. "type": "zip",
  9879. "url": "https://api.github.com/repos/webflo/drupal-finder/zipball/8a7886c575d6eaa67a425dceccc84e735c0b9637",
  9880. "reference": "8a7886c575d6eaa67a425dceccc84e735c0b9637",
  9881. "shasum": ""
  9882. },
  9883. "require-dev": {
  9884. "mikey179/vfsstream": "^1.6",
  9885. "phpunit/phpunit": "^4.8"
  9886. },
  9887. "type": "library",
  9888. "autoload": {
  9889. "classmap": [
  9890. "src/DrupalFinder.php"
  9891. ]
  9892. },
  9893. "notification-url": "https://packagist.org/downloads/",
  9894. "license": [
  9895. "GPL-2.0+"
  9896. ],
  9897. "authors": [
  9898. {
  9899. "name": "Florian Weber",
  9900. "email": "florian@webflo.org"
  9901. }
  9902. ],
  9903. "description": "Helper class to locate a Drupal installation from a given path.",
  9904. "time": "2017-10-24T08:12:11+00:00"
  9905. },
  9906. {
  9907. "name": "webmozart/assert",
  9908. "version": "1.3.0",
  9909. "source": {
  9910. "type": "git",
  9911. "url": "https://github.com/webmozart/assert.git",
  9912. "reference": "0df1908962e7a3071564e857d86874dad1ef204a"
  9913. },
  9914. "dist": {
  9915. "type": "zip",
  9916. "url": "https://api.github.com/repos/webmozart/assert/zipball/0df1908962e7a3071564e857d86874dad1ef204a",
  9917. "reference": "0df1908962e7a3071564e857d86874dad1ef204a",
  9918. "shasum": ""
  9919. },
  9920. "require": {
  9921. "php": "^5.3.3 || ^7.0"
  9922. },
  9923. "require-dev": {
  9924. "phpunit/phpunit": "^4.6",
  9925. "sebastian/version": "^1.0.1"
  9926. },
  9927. "type": "library",
  9928. "extra": {
  9929. "branch-alias": {
  9930. "dev-master": "1.3-dev"
  9931. }
  9932. },
  9933. "autoload": {
  9934. "psr-4": {
  9935. "Webmozart\\Assert\\": "src/"
  9936. }
  9937. },
  9938. "notification-url": "https://packagist.org/downloads/",
  9939. "license": [
  9940. "MIT"
  9941. ],
  9942. "authors": [
  9943. {
  9944. "name": "Bernhard Schussek",
  9945. "email": "bschussek@gmail.com"
  9946. }
  9947. ],
  9948. "description": "Assertions to validate method input/output with nice error messages.",
  9949. "keywords": [
  9950. "assert",
  9951. "check",
  9952. "validate"
  9953. ],
  9954. "time": "2018-01-29T19:49:41+00:00"
  9955. },
  9956. {
  9957. "name": "webmozart/path-util",
  9958. "version": "2.3.0",
  9959. "source": {
  9960. "type": "git",
  9961. "url": "https://github.com/webmozart/path-util.git",
  9962. "reference": "d939f7edc24c9a1bb9c0dee5cb05d8e859490725"
  9963. },
  9964. "dist": {
  9965. "type": "zip",
  9966. "url": "https://api.github.com/repos/webmozart/path-util/zipball/d939f7edc24c9a1bb9c0dee5cb05d8e859490725",
  9967. "reference": "d939f7edc24c9a1bb9c0dee5cb05d8e859490725",
  9968. "shasum": ""
  9969. },
  9970. "require": {
  9971. "php": ">=5.3.3",
  9972. "webmozart/assert": "~1.0"
  9973. },
  9974. "require-dev": {
  9975. "phpunit/phpunit": "^4.6",
  9976. "sebastian/version": "^1.0.1"
  9977. },
  9978. "type": "library",
  9979. "extra": {
  9980. "branch-alias": {
  9981. "dev-master": "2.3-dev"
  9982. }
  9983. },
  9984. "autoload": {
  9985. "psr-4": {
  9986. "Webmozart\\PathUtil\\": "src/"
  9987. }
  9988. },
  9989. "notification-url": "https://packagist.org/downloads/",
  9990. "license": [
  9991. "MIT"
  9992. ],
  9993. "authors": [
  9994. {
  9995. "name": "Bernhard Schussek",
  9996. "email": "bschussek@gmail.com"
  9997. }
  9998. ],
  9999. "description": "A robust cross-platform utility for normalizing, comparing and modifying file paths.",
  10000. "time": "2015-12-17T08:42:14+00:00"
  10001. },
  10002. {
  10003. "name": "wikimedia/composer-merge-plugin",
  10004. "version": "v1.4.1",
  10005. "source": {
  10006. "type": "git",
  10007. "url": "https://github.com/wikimedia/composer-merge-plugin.git",
  10008. "reference": "81c6ac72a24a67383419c7eb9aa2b3437f2ab100"
  10009. },
  10010. "dist": {
  10011. "type": "zip",
  10012. "url": "https://api.github.com/repos/wikimedia/composer-merge-plugin/zipball/81c6ac72a24a67383419c7eb9aa2b3437f2ab100",
  10013. "reference": "81c6ac72a24a67383419c7eb9aa2b3437f2ab100",
  10014. "shasum": ""
  10015. },
  10016. "require": {
  10017. "composer-plugin-api": "^1.0",
  10018. "php": ">=5.3.2"
  10019. },
  10020. "require-dev": {
  10021. "composer/composer": "~1.0.0",
  10022. "jakub-onderka/php-parallel-lint": "~0.8",
  10023. "phpunit/phpunit": "~4.8|~5.0",
  10024. "squizlabs/php_codesniffer": "~2.1.0"
  10025. },
  10026. "type": "composer-plugin",
  10027. "extra": {
  10028. "branch-alias": {
  10029. "dev-master": "1.3.x-dev"
  10030. },
  10031. "class": "Wikimedia\\Composer\\MergePlugin"
  10032. },
  10033. "autoload": {
  10034. "psr-4": {
  10035. "Wikimedia\\Composer\\": "src/"
  10036. }
  10037. },
  10038. "notification-url": "https://packagist.org/downloads/",
  10039. "license": [
  10040. "MIT"
  10041. ],
  10042. "authors": [
  10043. {
  10044. "name": "Bryan Davis",
  10045. "email": "bd808@wikimedia.org"
  10046. }
  10047. ],
  10048. "description": "Composer plugin to merge multiple composer.json files",
  10049. "time": "2017-04-25T02:31:25+00:00"
  10050. },
  10051. {
  10052. "name": "zendframework/zend-diactoros",
  10053. "version": "1.8.6",
  10054. "source": {
  10055. "type": "git",
  10056. "url": "https://github.com/zendframework/zend-diactoros.git",
  10057. "reference": "20da13beba0dde8fb648be3cc19765732790f46e"
  10058. },
  10059. "dist": {
  10060. "type": "zip",
  10061. "url": "https://api.github.com/repos/zendframework/zend-diactoros/zipball/20da13beba0dde8fb648be3cc19765732790f46e",
  10062. "reference": "20da13beba0dde8fb648be3cc19765732790f46e",
  10063. "shasum": ""
  10064. },
  10065. "require": {
  10066. "php": "^5.6 || ^7.0",
  10067. "psr/http-message": "^1.0"
  10068. },
  10069. "provide": {
  10070. "psr/http-message-implementation": "1.0"
  10071. },
  10072. "require-dev": {
  10073. "ext-dom": "*",
  10074. "ext-libxml": "*",
  10075. "php-http/psr7-integration-tests": "dev-master",
  10076. "phpunit/phpunit": "^5.7.16 || ^6.0.8 || ^7.2.7",
  10077. "zendframework/zend-coding-standard": "~1.0"
  10078. },
  10079. "type": "library",
  10080. "extra": {
  10081. "branch-alias": {
  10082. "dev-master": "1.8.x-dev",
  10083. "dev-develop": "1.9.x-dev",
  10084. "dev-release-2.0": "2.0.x-dev"
  10085. }
  10086. },
  10087. "autoload": {
  10088. "files": [
  10089. "src/functions/create_uploaded_file.php",
  10090. "src/functions/marshal_headers_from_sapi.php",
  10091. "src/functions/marshal_method_from_sapi.php",
  10092. "src/functions/marshal_protocol_version_from_sapi.php",
  10093. "src/functions/marshal_uri_from_sapi.php",
  10094. "src/functions/normalize_server.php",
  10095. "src/functions/normalize_uploaded_files.php",
  10096. "src/functions/parse_cookie_header.php"
  10097. ],
  10098. "psr-4": {
  10099. "Zend\\Diactoros\\": "src/"
  10100. }
  10101. },
  10102. "notification-url": "https://packagist.org/downloads/",
  10103. "license": [
  10104. "BSD-2-Clause"
  10105. ],
  10106. "description": "PSR HTTP Message implementations",
  10107. "homepage": "https://github.com/zendframework/zend-diactoros",
  10108. "keywords": [
  10109. "http",
  10110. "psr",
  10111. "psr-7"
  10112. ],
  10113. "time": "2018-09-05T19:29:37+00:00"
  10114. },
  10115. {
  10116. "name": "zendframework/zend-escaper",
  10117. "version": "2.6.0",
  10118. "source": {
  10119. "type": "git",
  10120. "url": "https://github.com/zendframework/zend-escaper.git",
  10121. "reference": "31d8aafae982f9568287cb4dce987e6aff8fd074"
  10122. },
  10123. "dist": {
  10124. "type": "zip",
  10125. "url": "https://api.github.com/repos/zendframework/zend-escaper/zipball/31d8aafae982f9568287cb4dce987e6aff8fd074",
  10126. "reference": "31d8aafae982f9568287cb4dce987e6aff8fd074",
  10127. "shasum": ""
  10128. },
  10129. "require": {
  10130. "php": "^5.6 || ^7.0"
  10131. },
  10132. "require-dev": {
  10133. "phpunit/phpunit": "^5.7.27 || ^6.5.8 || ^7.1.2",
  10134. "zendframework/zend-coding-standard": "~1.0.0"
  10135. },
  10136. "type": "library",
  10137. "extra": {
  10138. "branch-alias": {
  10139. "dev-master": "2.6.x-dev",
  10140. "dev-develop": "2.7.x-dev"
  10141. }
  10142. },
  10143. "autoload": {
  10144. "psr-4": {
  10145. "Zend\\Escaper\\": "src/"
  10146. }
  10147. },
  10148. "notification-url": "https://packagist.org/downloads/",
  10149. "license": [
  10150. "BSD-3-Clause"
  10151. ],
  10152. "description": "Securely and safely escape HTML, HTML attributes, JavaScript, CSS, and URLs",
  10153. "keywords": [
  10154. "ZendFramework",
  10155. "escaper",
  10156. "zf"
  10157. ],
  10158. "time": "2018-04-25T15:48:53+00:00"
  10159. },
  10160. {
  10161. "name": "zendframework/zend-feed",
  10162. "version": "2.10.3",
  10163. "source": {
  10164. "type": "git",
  10165. "url": "https://github.com/zendframework/zend-feed.git",
  10166. "reference": "6641f4cf3f4586c63f83fd70b6d19966025c8888"
  10167. },
  10168. "dist": {
  10169. "type": "zip",
  10170. "url": "https://api.github.com/repos/zendframework/zend-feed/zipball/6641f4cf3f4586c63f83fd70b6d19966025c8888",
  10171. "reference": "6641f4cf3f4586c63f83fd70b6d19966025c8888",
  10172. "shasum": ""
  10173. },
  10174. "require": {
  10175. "php": "^5.6 || ^7.0",
  10176. "zendframework/zend-escaper": "^2.5.2",
  10177. "zendframework/zend-stdlib": "^2.7.7 || ^3.1"
  10178. },
  10179. "require-dev": {
  10180. "phpunit/phpunit": "^5.7.23 || ^6.4.3",
  10181. "psr/http-message": "^1.0.1",
  10182. "zendframework/zend-cache": "^2.7.2",
  10183. "zendframework/zend-coding-standard": "~1.0.0",
  10184. "zendframework/zend-db": "^2.8.2",
  10185. "zendframework/zend-http": "^2.7",
  10186. "zendframework/zend-servicemanager": "^2.7.8 || ^3.3",
  10187. "zendframework/zend-validator": "^2.10.1"
  10188. },
  10189. "suggest": {
  10190. "psr/http-message": "PSR-7 ^1.0.1, if you wish to use Zend\\Feed\\Reader\\Http\\Psr7ResponseDecorator",
  10191. "zendframework/zend-cache": "Zend\\Cache component, for optionally caching feeds between requests",
  10192. "zendframework/zend-db": "Zend\\Db component, for use with PubSubHubbub",
  10193. "zendframework/zend-http": "Zend\\Http for PubSubHubbub, and optionally for use with Zend\\Feed\\Reader",
  10194. "zendframework/zend-servicemanager": "Zend\\ServiceManager component, for easily extending ExtensionManager implementations",
  10195. "zendframework/zend-validator": "Zend\\Validator component, for validating email addresses used in Atom feeds and entries when using the Writer subcomponent"
  10196. },
  10197. "type": "library",
  10198. "extra": {
  10199. "branch-alias": {
  10200. "dev-master": "2.10.x-dev",
  10201. "dev-develop": "2.11.x-dev"
  10202. }
  10203. },
  10204. "autoload": {
  10205. "psr-4": {
  10206. "Zend\\Feed\\": "src/"
  10207. }
  10208. },
  10209. "notification-url": "https://packagist.org/downloads/",
  10210. "license": [
  10211. "BSD-3-Clause"
  10212. ],
  10213. "description": "provides functionality for consuming RSS and Atom feeds",
  10214. "keywords": [
  10215. "ZendFramework",
  10216. "feed",
  10217. "zf"
  10218. ],
  10219. "time": "2018-08-01T13:53:20+00:00"
  10220. },
  10221. {
  10222. "name": "zendframework/zend-stdlib",
  10223. "version": "3.2.1",
  10224. "source": {
  10225. "type": "git",
  10226. "url": "https://github.com/zendframework/zend-stdlib.git",
  10227. "reference": "66536006722aff9e62d1b331025089b7ec71c065"
  10228. },
  10229. "dist": {
  10230. "type": "zip",
  10231. "url": "https://api.github.com/repos/zendframework/zend-stdlib/zipball/66536006722aff9e62d1b331025089b7ec71c065",
  10232. "reference": "66536006722aff9e62d1b331025089b7ec71c065",
  10233. "shasum": ""
  10234. },
  10235. "require": {
  10236. "php": "^5.6 || ^7.0"
  10237. },
  10238. "require-dev": {
  10239. "phpbench/phpbench": "^0.13",
  10240. "phpunit/phpunit": "^5.7.27 || ^6.5.8 || ^7.1.2",
  10241. "zendframework/zend-coding-standard": "~1.0.0"
  10242. },
  10243. "type": "library",
  10244. "extra": {
  10245. "branch-alias": {
  10246. "dev-master": "3.2.x-dev",
  10247. "dev-develop": "3.3.x-dev"
  10248. }
  10249. },
  10250. "autoload": {
  10251. "psr-4": {
  10252. "Zend\\Stdlib\\": "src/"
  10253. }
  10254. },
  10255. "notification-url": "https://packagist.org/downloads/",
  10256. "license": [
  10257. "BSD-3-Clause"
  10258. ],
  10259. "description": "SPL extensions, array utilities, error handlers, and more",
  10260. "keywords": [
  10261. "ZendFramework",
  10262. "stdlib",
  10263. "zf"
  10264. ],
  10265. "time": "2018-08-28T21:34:05+00:00"
  10266. }
  10267. ],
  10268. "packages-dev": [
  10269. {
  10270. "name": "behat/mink",
  10271. "version": "dev-master",
  10272. "source": {
  10273. "type": "git",
  10274. "url": "https://github.com/minkphp/Mink.git",
  10275. "reference": "d5ee350c40baff5f331a05ebdbe1927345c9ac8b"
  10276. },
  10277. "dist": {
  10278. "type": "zip",
  10279. "url": "https://api.github.com/repos/minkphp/Mink/zipball/d5ee350c40baff5f331a05ebdbe1927345c9ac8b",
  10280. "reference": "d5ee350c40baff5f331a05ebdbe1927345c9ac8b",
  10281. "shasum": ""
  10282. },
  10283. "require": {
  10284. "php": ">=5.3.1",
  10285. "symfony/css-selector": "^2.7|^3.0|^4.0"
  10286. },
  10287. "require-dev": {
  10288. "symfony/phpunit-bridge": "^3.3|^4.0"
  10289. },
  10290. "suggest": {
  10291. "behat/mink-browserkit-driver": "extremely fast headless driver for Symfony\\Kernel-based apps (Sf2, Silex)",
  10292. "behat/mink-goutte-driver": "fast headless driver for any app without JS emulation",
  10293. "behat/mink-selenium2-driver": "slow, but JS-enabled driver for any app (requires Selenium2)",
  10294. "behat/mink-zombie-driver": "fast and JS-enabled headless driver for any app (requires node.js)",
  10295. "dmore/chrome-mink-driver": "fast and JS-enabled driver for any app (requires chromium or google chrome)"
  10296. },
  10297. "type": "library",
  10298. "extra": {
  10299. "branch-alias": {
  10300. "dev-master": "1.7.x-dev"
  10301. }
  10302. },
  10303. "autoload": {
  10304. "psr-4": {
  10305. "Behat\\Mink\\": "src/"
  10306. }
  10307. },
  10308. "notification-url": "https://packagist.org/downloads/",
  10309. "license": [
  10310. "MIT"
  10311. ],
  10312. "authors": [
  10313. {
  10314. "name": "Konstantin Kudryashov",
  10315. "email": "ever.zet@gmail.com",
  10316. "homepage": "http://everzet.com"
  10317. }
  10318. ],
  10319. "description": "Browser controller/emulator abstraction for PHP",
  10320. "homepage": "http://mink.behat.org/",
  10321. "keywords": [
  10322. "browser",
  10323. "testing",
  10324. "web"
  10325. ],
  10326. "time": "2018-06-24T20:08:51+00:00"
  10327. },
  10328. {
  10329. "name": "behat/mink-browserkit-driver",
  10330. "version": "1.3.3",
  10331. "source": {
  10332. "type": "git",
  10333. "url": "https://github.com/minkphp/MinkBrowserKitDriver.git",
  10334. "reference": "1b9a7ce903cfdaaec5fb32bfdbb26118343662eb"
  10335. },
  10336. "dist": {
  10337. "type": "zip",
  10338. "url": "https://api.github.com/repos/minkphp/MinkBrowserKitDriver/zipball/1b9a7ce903cfdaaec5fb32bfdbb26118343662eb",
  10339. "reference": "1b9a7ce903cfdaaec5fb32bfdbb26118343662eb",
  10340. "shasum": ""
  10341. },
  10342. "require": {
  10343. "behat/mink": "^1.7.1@dev",
  10344. "php": ">=5.3.6",
  10345. "symfony/browser-kit": "~2.3|~3.0|~4.0",
  10346. "symfony/dom-crawler": "~2.3|~3.0|~4.0"
  10347. },
  10348. "require-dev": {
  10349. "mink/driver-testsuite": "dev-master",
  10350. "symfony/http-kernel": "~2.3|~3.0|~4.0"
  10351. },
  10352. "type": "mink-driver",
  10353. "extra": {
  10354. "branch-alias": {
  10355. "dev-master": "1.3.x-dev"
  10356. }
  10357. },
  10358. "autoload": {
  10359. "psr-4": {
  10360. "Behat\\Mink\\Driver\\": "src/"
  10361. }
  10362. },
  10363. "notification-url": "https://packagist.org/downloads/",
  10364. "license": [
  10365. "MIT"
  10366. ],
  10367. "authors": [
  10368. {
  10369. "name": "Konstantin Kudryashov",
  10370. "email": "ever.zet@gmail.com",
  10371. "homepage": "http://everzet.com"
  10372. }
  10373. ],
  10374. "description": "Symfony2 BrowserKit driver for Mink framework",
  10375. "homepage": "http://mink.behat.org/",
  10376. "keywords": [
  10377. "Mink",
  10378. "Symfony2",
  10379. "browser",
  10380. "testing"
  10381. ],
  10382. "time": "2018-05-02T09:25:31+00:00"
  10383. },
  10384. {
  10385. "name": "behat/mink-goutte-driver",
  10386. "version": "v1.2.1",
  10387. "source": {
  10388. "type": "git",
  10389. "url": "https://github.com/minkphp/MinkGoutteDriver.git",
  10390. "reference": "8b9ad6d2d95bc70b840d15323365f52fcdaea6ca"
  10391. },
  10392. "dist": {
  10393. "type": "zip",
  10394. "url": "https://api.github.com/repos/minkphp/MinkGoutteDriver/zipball/8b9ad6d2d95bc70b840d15323365f52fcdaea6ca",
  10395. "reference": "8b9ad6d2d95bc70b840d15323365f52fcdaea6ca",
  10396. "shasum": ""
  10397. },
  10398. "require": {
  10399. "behat/mink": "~1.6@dev",
  10400. "behat/mink-browserkit-driver": "~1.2@dev",
  10401. "fabpot/goutte": "~1.0.4|~2.0|~3.1",
  10402. "php": ">=5.3.1"
  10403. },
  10404. "require-dev": {
  10405. "symfony/phpunit-bridge": "~2.7|~3.0"
  10406. },
  10407. "type": "mink-driver",
  10408. "extra": {
  10409. "branch-alias": {
  10410. "dev-master": "1.2.x-dev"
  10411. }
  10412. },
  10413. "autoload": {
  10414. "psr-4": {
  10415. "Behat\\Mink\\Driver\\": "src/"
  10416. }
  10417. },
  10418. "notification-url": "https://packagist.org/downloads/",
  10419. "license": [
  10420. "MIT"
  10421. ],
  10422. "authors": [
  10423. {
  10424. "name": "Konstantin Kudryashov",
  10425. "email": "ever.zet@gmail.com",
  10426. "homepage": "http://everzet.com"
  10427. }
  10428. ],
  10429. "description": "Goutte driver for Mink framework",
  10430. "homepage": "http://mink.behat.org/",
  10431. "keywords": [
  10432. "browser",
  10433. "goutte",
  10434. "headless",
  10435. "testing"
  10436. ],
  10437. "time": "2016-03-05T09:04:22+00:00"
  10438. },
  10439. {
  10440. "name": "behat/mink-selenium2-driver",
  10441. "version": "dev-master",
  10442. "source": {
  10443. "type": "git",
  10444. "url": "https://github.com/minkphp/MinkSelenium2Driver.git",
  10445. "reference": "8684ee4e634db7abda9039ea53545f86fc1e105a"
  10446. },
  10447. "dist": {
  10448. "type": "zip",
  10449. "url": "https://api.github.com/repos/minkphp/MinkSelenium2Driver/zipball/8684ee4e634db7abda9039ea53545f86fc1e105a",
  10450. "reference": "8684ee4e634db7abda9039ea53545f86fc1e105a",
  10451. "shasum": ""
  10452. },
  10453. "require": {
  10454. "behat/mink": "~1.7@dev",
  10455. "instaclick/php-webdriver": "~1.1",
  10456. "php": ">=5.3.1"
  10457. },
  10458. "require-dev": {
  10459. "mink/driver-testsuite": "dev-master"
  10460. },
  10461. "type": "mink-driver",
  10462. "extra": {
  10463. "branch-alias": {
  10464. "dev-master": "1.3.x-dev"
  10465. }
  10466. },
  10467. "autoload": {
  10468. "psr-4": {
  10469. "Behat\\Mink\\Driver\\": "src/"
  10470. }
  10471. },
  10472. "notification-url": "https://packagist.org/downloads/",
  10473. "license": [
  10474. "MIT"
  10475. ],
  10476. "authors": [
  10477. {
  10478. "name": "Konstantin Kudryashov",
  10479. "email": "ever.zet@gmail.com",
  10480. "homepage": "http://everzet.com"
  10481. },
  10482. {
  10483. "name": "Pete Otaqui",
  10484. "email": "pete@otaqui.com",
  10485. "homepage": "https://github.com/pete-otaqui"
  10486. }
  10487. ],
  10488. "description": "Selenium2 (WebDriver) driver for Mink framework",
  10489. "homepage": "http://mink.behat.org/",
  10490. "keywords": [
  10491. "ajax",
  10492. "browser",
  10493. "javascript",
  10494. "selenium",
  10495. "testing",
  10496. "webdriver"
  10497. ],
  10498. "time": "2018-10-10T12:39:06+00:00"
  10499. },
  10500. {
  10501. "name": "doctrine/instantiator",
  10502. "version": "1.0.5",
  10503. "source": {
  10504. "type": "git",
  10505. "url": "https://github.com/doctrine/instantiator.git",
  10506. "reference": "8e884e78f9f0eb1329e445619e04456e64d8051d"
  10507. },
  10508. "dist": {
  10509. "type": "zip",
  10510. "url": "https://api.github.com/repos/doctrine/instantiator/zipball/8e884e78f9f0eb1329e445619e04456e64d8051d",
  10511. "reference": "8e884e78f9f0eb1329e445619e04456e64d8051d",
  10512. "shasum": ""
  10513. },
  10514. "require": {
  10515. "php": ">=5.3,<8.0-DEV"
  10516. },
  10517. "require-dev": {
  10518. "athletic/athletic": "~0.1.8",
  10519. "ext-pdo": "*",
  10520. "ext-phar": "*",
  10521. "phpunit/phpunit": "~4.0",
  10522. "squizlabs/php_codesniffer": "~2.0"
  10523. },
  10524. "type": "library",
  10525. "extra": {
  10526. "branch-alias": {
  10527. "dev-master": "1.0.x-dev"
  10528. }
  10529. },
  10530. "autoload": {
  10531. "psr-4": {
  10532. "Doctrine\\Instantiator\\": "src/Doctrine/Instantiator/"
  10533. }
  10534. },
  10535. "notification-url": "https://packagist.org/downloads/",
  10536. "license": [
  10537. "MIT"
  10538. ],
  10539. "authors": [
  10540. {
  10541. "name": "Marco Pivetta",
  10542. "email": "ocramius@gmail.com",
  10543. "homepage": "http://ocramius.github.com/"
  10544. }
  10545. ],
  10546. "description": "A small, lightweight utility to instantiate objects in PHP without invoking their constructors",
  10547. "homepage": "https://github.com/doctrine/instantiator",
  10548. "keywords": [
  10549. "constructor",
  10550. "instantiate"
  10551. ],
  10552. "time": "2015-06-14T21:17:01+00:00"
  10553. },
  10554. {
  10555. "name": "drupal/coder",
  10556. "version": "8.3.1",
  10557. "source": {
  10558. "type": "git",
  10559. "url": "https://git.drupal.org/project/coder.git",
  10560. "reference": "29a25627e7148b3119c84f18e087fc3b8c85b959"
  10561. },
  10562. "require": {
  10563. "ext-mbstring": "*",
  10564. "php": ">=5.4.0",
  10565. "squizlabs/php_codesniffer": "^3.0.1",
  10566. "symfony/yaml": ">=2.0.0"
  10567. },
  10568. "require-dev": {
  10569. "phpunit/phpunit": ">=3.7 <6"
  10570. },
  10571. "type": "phpcodesniffer-standard",
  10572. "autoload": {
  10573. "psr-0": {
  10574. "Drupal\\": "coder_sniffer/Drupal/",
  10575. "DrupalPractice\\": "coder_sniffer/Drupal/"
  10576. }
  10577. },
  10578. "notification-url": "https://packagist.org/downloads/",
  10579. "license": [
  10580. "GPL-2.0+"
  10581. ],
  10582. "description": "Coder is a library to review Drupal code.",
  10583. "homepage": "https://www.drupal.org/project/coder",
  10584. "keywords": [
  10585. "code review",
  10586. "phpcs",
  10587. "standards"
  10588. ],
  10589. "time": "2018-09-21T14:22:49+00:00"
  10590. },
  10591. {
  10592. "name": "fabpot/goutte",
  10593. "version": "v3.2.3",
  10594. "source": {
  10595. "type": "git",
  10596. "url": "https://github.com/FriendsOfPHP/Goutte.git",
  10597. "reference": "3f0eaf0a40181359470651f1565b3e07e3dd31b8"
  10598. },
  10599. "dist": {
  10600. "type": "zip",
  10601. "url": "https://api.github.com/repos/FriendsOfPHP/Goutte/zipball/3f0eaf0a40181359470651f1565b3e07e3dd31b8",
  10602. "reference": "3f0eaf0a40181359470651f1565b3e07e3dd31b8",
  10603. "shasum": ""
  10604. },
  10605. "require": {
  10606. "guzzlehttp/guzzle": "^6.0",
  10607. "php": ">=5.5.0",
  10608. "symfony/browser-kit": "~2.1|~3.0|~4.0",
  10609. "symfony/css-selector": "~2.1|~3.0|~4.0",
  10610. "symfony/dom-crawler": "~2.1|~3.0|~4.0"
  10611. },
  10612. "require-dev": {
  10613. "symfony/phpunit-bridge": "^3.3 || ^4"
  10614. },
  10615. "type": "application",
  10616. "extra": {
  10617. "branch-alias": {
  10618. "dev-master": "3.2-dev"
  10619. }
  10620. },
  10621. "autoload": {
  10622. "psr-4": {
  10623. "Goutte\\": "Goutte"
  10624. },
  10625. "exclude-from-classmap": [
  10626. "Goutte/Tests"
  10627. ]
  10628. },
  10629. "notification-url": "https://packagist.org/downloads/",
  10630. "license": [
  10631. "MIT"
  10632. ],
  10633. "authors": [
  10634. {
  10635. "name": "Fabien Potencier",
  10636. "email": "fabien@symfony.com"
  10637. }
  10638. ],
  10639. "description": "A simple PHP Web Scraper",
  10640. "homepage": "https://github.com/FriendsOfPHP/Goutte",
  10641. "keywords": [
  10642. "scraper"
  10643. ],
  10644. "time": "2018-06-29T15:13:57+00:00"
  10645. },
  10646. {
  10647. "name": "instaclick/php-webdriver",
  10648. "version": "1.4.5",
  10649. "source": {
  10650. "type": "git",
  10651. "url": "https://github.com/instaclick/php-webdriver.git",
  10652. "reference": "6fa959452e774dcaed543faad3a9d1a37d803327"
  10653. },
  10654. "dist": {
  10655. "type": "zip",
  10656. "url": "https://api.github.com/repos/instaclick/php-webdriver/zipball/6fa959452e774dcaed543faad3a9d1a37d803327",
  10657. "reference": "6fa959452e774dcaed543faad3a9d1a37d803327",
  10658. "shasum": ""
  10659. },
  10660. "require": {
  10661. "ext-curl": "*",
  10662. "php": ">=5.3.2"
  10663. },
  10664. "require-dev": {
  10665. "phpunit/phpunit": "^4.8",
  10666. "satooshi/php-coveralls": "^1.0||^2.0"
  10667. },
  10668. "type": "library",
  10669. "extra": {
  10670. "branch-alias": {
  10671. "dev-master": "1.4.x-dev"
  10672. }
  10673. },
  10674. "autoload": {
  10675. "psr-0": {
  10676. "WebDriver": "lib/"
  10677. }
  10678. },
  10679. "notification-url": "https://packagist.org/downloads/",
  10680. "license": [
  10681. "Apache-2.0"
  10682. ],
  10683. "authors": [
  10684. {
  10685. "name": "Justin Bishop",
  10686. "email": "jubishop@gmail.com",
  10687. "role": "Developer"
  10688. },
  10689. {
  10690. "name": "Anthon Pang",
  10691. "email": "apang@softwaredevelopment.ca",
  10692. "role": "Fork Maintainer"
  10693. }
  10694. ],
  10695. "description": "PHP WebDriver for Selenium 2",
  10696. "homepage": "http://instaclick.com/",
  10697. "keywords": [
  10698. "browser",
  10699. "selenium",
  10700. "webdriver",
  10701. "webtest"
  10702. ],
  10703. "time": "2017-06-30T04:02:48+00:00"
  10704. },
  10705. {
  10706. "name": "jcalderonzumba/gastonjs",
  10707. "version": "v1.2.0",
  10708. "source": {
  10709. "type": "git",
  10710. "url": "https://github.com/jcalderonzumba/gastonjs.git",
  10711. "reference": "575a9c18d8b87990c37252e8d9707b29f0a313f3"
  10712. },
  10713. "dist": {
  10714. "type": "zip",
  10715. "url": "https://api.github.com/repos/jcalderonzumba/gastonjs/zipball/575a9c18d8b87990c37252e8d9707b29f0a313f3",
  10716. "reference": "575a9c18d8b87990c37252e8d9707b29f0a313f3",
  10717. "shasum": ""
  10718. },
  10719. "require": {
  10720. "guzzlehttp/guzzle": "~5.0|~6.0",
  10721. "php": ">=5.4"
  10722. },
  10723. "require-dev": {
  10724. "phpunit/phpunit": "~4.6",
  10725. "silex/silex": "~1.2",
  10726. "symfony/phpunit-bridge": "~2.7",
  10727. "symfony/process": "~2.1"
  10728. },
  10729. "type": "phantomjs-api",
  10730. "extra": {
  10731. "branch-alias": {
  10732. "dev-master": "1.1.x-dev"
  10733. }
  10734. },
  10735. "autoload": {
  10736. "psr-4": {
  10737. "Zumba\\GastonJS\\": "src"
  10738. }
  10739. },
  10740. "notification-url": "https://packagist.org/downloads/",
  10741. "license": [
  10742. "MIT"
  10743. ],
  10744. "authors": [
  10745. {
  10746. "name": "Juan Francisco Calderón Zumba",
  10747. "email": "juanfcz@gmail.com",
  10748. "homepage": "http://github.com/jcalderonzumba"
  10749. }
  10750. ],
  10751. "description": "PhantomJS API based server for webpage automation",
  10752. "homepage": "https://github.com/jcalderonzumba/gastonjs",
  10753. "keywords": [
  10754. "api",
  10755. "automation",
  10756. "browser",
  10757. "headless",
  10758. "phantomjs"
  10759. ],
  10760. "time": "2017-03-31T07:31:47+00:00"
  10761. },
  10762. {
  10763. "name": "jcalderonzumba/mink-phantomjs-driver",
  10764. "version": "v0.3.3",
  10765. "source": {
  10766. "type": "git",
  10767. "url": "https://github.com/jcalderonzumba/MinkPhantomJSDriver.git",
  10768. "reference": "008f43670e94acd39273d15add1e7348eb23848d"
  10769. },
  10770. "dist": {
  10771. "type": "zip",
  10772. "url": "https://api.github.com/repos/jcalderonzumba/MinkPhantomJSDriver/zipball/008f43670e94acd39273d15add1e7348eb23848d",
  10773. "reference": "008f43670e94acd39273d15add1e7348eb23848d",
  10774. "shasum": ""
  10775. },
  10776. "require": {
  10777. "behat/mink": "~1.7",
  10778. "jcalderonzumba/gastonjs": "~1.0",
  10779. "php": ">=5.4",
  10780. "twig/twig": "~1.20|~2.0"
  10781. },
  10782. "require-dev": {
  10783. "mink/driver-testsuite": "dev-master",
  10784. "phpunit/phpunit": "~4.6"
  10785. },
  10786. "type": "mink-driver",
  10787. "extra": {
  10788. "branch-alias": {
  10789. "dev-master": "0.4.x-dev"
  10790. }
  10791. },
  10792. "autoload": {
  10793. "psr-4": {
  10794. "Zumba\\Mink\\Driver\\": "src"
  10795. }
  10796. },
  10797. "notification-url": "https://packagist.org/downloads/",
  10798. "license": [
  10799. "MIT"
  10800. ],
  10801. "authors": [
  10802. {
  10803. "name": "Juan Francisco Calderón Zumba",
  10804. "email": "juanfcz@gmail.com",
  10805. "homepage": "http://github.com/jcalderonzumba"
  10806. }
  10807. ],
  10808. "description": "PhantomJS driver for Mink framework",
  10809. "homepage": "http://mink.behat.org/",
  10810. "keywords": [
  10811. "ajax",
  10812. "browser",
  10813. "headless",
  10814. "javascript",
  10815. "phantomjs",
  10816. "testing"
  10817. ],
  10818. "time": "2016-12-01T10:57:30+00:00"
  10819. },
  10820. {
  10821. "name": "mikey179/vfsStream",
  10822. "version": "v1.6.5",
  10823. "source": {
  10824. "type": "git",
  10825. "url": "https://github.com/mikey179/vfsStream.git",
  10826. "reference": "d5fec95f541d4d71c4823bb5e30cf9b9e5b96145"
  10827. },
  10828. "dist": {
  10829. "type": "zip",
  10830. "url": "https://api.github.com/repos/mikey179/vfsStream/zipball/d5fec95f541d4d71c4823bb5e30cf9b9e5b96145",
  10831. "reference": "d5fec95f541d4d71c4823bb5e30cf9b9e5b96145",
  10832. "shasum": ""
  10833. },
  10834. "require": {
  10835. "php": ">=5.3.0"
  10836. },
  10837. "require-dev": {
  10838. "phpunit/phpunit": "~4.5"
  10839. },
  10840. "type": "library",
  10841. "extra": {
  10842. "branch-alias": {
  10843. "dev-master": "1.6.x-dev"
  10844. }
  10845. },
  10846. "autoload": {
  10847. "psr-0": {
  10848. "org\\bovigo\\vfs\\": "src/main/php"
  10849. }
  10850. },
  10851. "notification-url": "https://packagist.org/downloads/",
  10852. "license": [
  10853. "BSD-3-Clause"
  10854. ],
  10855. "authors": [
  10856. {
  10857. "name": "Frank Kleine",
  10858. "homepage": "http://frankkleine.de/",
  10859. "role": "Developer"
  10860. }
  10861. ],
  10862. "description": "Virtual file system to mock the real file system in unit tests.",
  10863. "homepage": "http://vfs.bovigo.org/",
  10864. "time": "2017-08-01T08:02:14+00:00"
  10865. },
  10866. {
  10867. "name": "myclabs/deep-copy",
  10868. "version": "1.7.0",
  10869. "source": {
  10870. "type": "git",
  10871. "url": "https://github.com/myclabs/DeepCopy.git",
  10872. "reference": "3b8a3a99ba1f6a3952ac2747d989303cbd6b7a3e"
  10873. },
  10874. "dist": {
  10875. "type": "zip",
  10876. "url": "https://api.github.com/repos/myclabs/DeepCopy/zipball/3b8a3a99ba1f6a3952ac2747d989303cbd6b7a3e",
  10877. "reference": "3b8a3a99ba1f6a3952ac2747d989303cbd6b7a3e",
  10878. "shasum": ""
  10879. },
  10880. "require": {
  10881. "php": "^5.6 || ^7.0"
  10882. },
  10883. "require-dev": {
  10884. "doctrine/collections": "^1.0",
  10885. "doctrine/common": "^2.6",
  10886. "phpunit/phpunit": "^4.1"
  10887. },
  10888. "type": "library",
  10889. "autoload": {
  10890. "psr-4": {
  10891. "DeepCopy\\": "src/DeepCopy/"
  10892. },
  10893. "files": [
  10894. "src/DeepCopy/deep_copy.php"
  10895. ]
  10896. },
  10897. "notification-url": "https://packagist.org/downloads/",
  10898. "license": [
  10899. "MIT"
  10900. ],
  10901. "description": "Create deep copies (clones) of your objects",
  10902. "keywords": [
  10903. "clone",
  10904. "copy",
  10905. "duplicate",
  10906. "object",
  10907. "object graph"
  10908. ],
  10909. "time": "2017-10-19T19:58:43+00:00"
  10910. },
  10911. {
  10912. "name": "phar-io/manifest",
  10913. "version": "1.0.1",
  10914. "source": {
  10915. "type": "git",
  10916. "url": "https://github.com/phar-io/manifest.git",
  10917. "reference": "2df402786ab5368a0169091f61a7c1e0eb6852d0"
  10918. },
  10919. "dist": {
  10920. "type": "zip",
  10921. "url": "https://api.github.com/repos/phar-io/manifest/zipball/2df402786ab5368a0169091f61a7c1e0eb6852d0",
  10922. "reference": "2df402786ab5368a0169091f61a7c1e0eb6852d0",
  10923. "shasum": ""
  10924. },
  10925. "require": {
  10926. "ext-dom": "*",
  10927. "ext-phar": "*",
  10928. "phar-io/version": "^1.0.1",
  10929. "php": "^5.6 || ^7.0"
  10930. },
  10931. "type": "library",
  10932. "extra": {
  10933. "branch-alias": {
  10934. "dev-master": "1.0.x-dev"
  10935. }
  10936. },
  10937. "autoload": {
  10938. "classmap": [
  10939. "src/"
  10940. ]
  10941. },
  10942. "notification-url": "https://packagist.org/downloads/",
  10943. "license": [
  10944. "BSD-3-Clause"
  10945. ],
  10946. "authors": [
  10947. {
  10948. "name": "Arne Blankerts",
  10949. "email": "arne@blankerts.de",
  10950. "role": "Developer"
  10951. },
  10952. {
  10953. "name": "Sebastian Heuer",
  10954. "email": "sebastian@phpeople.de",
  10955. "role": "Developer"
  10956. },
  10957. {
  10958. "name": "Sebastian Bergmann",
  10959. "email": "sebastian@phpunit.de",
  10960. "role": "Developer"
  10961. }
  10962. ],
  10963. "description": "Component for reading phar.io manifest information from a PHP Archive (PHAR)",
  10964. "time": "2017-03-05T18:14:27+00:00"
  10965. },
  10966. {
  10967. "name": "phar-io/version",
  10968. "version": "1.0.1",
  10969. "source": {
  10970. "type": "git",
  10971. "url": "https://github.com/phar-io/version.git",
  10972. "reference": "a70c0ced4be299a63d32fa96d9281d03e94041df"
  10973. },
  10974. "dist": {
  10975. "type": "zip",
  10976. "url": "https://api.github.com/repos/phar-io/version/zipball/a70c0ced4be299a63d32fa96d9281d03e94041df",
  10977. "reference": "a70c0ced4be299a63d32fa96d9281d03e94041df",
  10978. "shasum": ""
  10979. },
  10980. "require": {
  10981. "php": "^5.6 || ^7.0"
  10982. },
  10983. "type": "library",
  10984. "autoload": {
  10985. "classmap": [
  10986. "src/"
  10987. ]
  10988. },
  10989. "notification-url": "https://packagist.org/downloads/",
  10990. "license": [
  10991. "BSD-3-Clause"
  10992. ],
  10993. "authors": [
  10994. {
  10995. "name": "Arne Blankerts",
  10996. "email": "arne@blankerts.de",
  10997. "role": "Developer"
  10998. },
  10999. {
  11000. "name": "Sebastian Heuer",
  11001. "email": "sebastian@phpeople.de",
  11002. "role": "Developer"
  11003. },
  11004. {
  11005. "name": "Sebastian Bergmann",
  11006. "email": "sebastian@phpunit.de",
  11007. "role": "Developer"
  11008. }
  11009. ],
  11010. "description": "Library for handling version information and constraints",
  11011. "time": "2017-03-05T17:38:23+00:00"
  11012. },
  11013. {
  11014. "name": "phpdocumentor/reflection-common",
  11015. "version": "1.0.1",
  11016. "source": {
  11017. "type": "git",
  11018. "url": "https://github.com/phpDocumentor/ReflectionCommon.git",
  11019. "reference": "21bdeb5f65d7ebf9f43b1b25d404f87deab5bfb6"
  11020. },
  11021. "dist": {
  11022. "type": "zip",
  11023. "url": "https://api.github.com/repos/phpDocumentor/ReflectionCommon/zipball/21bdeb5f65d7ebf9f43b1b25d404f87deab5bfb6",
  11024. "reference": "21bdeb5f65d7ebf9f43b1b25d404f87deab5bfb6",
  11025. "shasum": ""
  11026. },
  11027. "require": {
  11028. "php": ">=5.5"
  11029. },
  11030. "require-dev": {
  11031. "phpunit/phpunit": "^4.6"
  11032. },
  11033. "type": "library",
  11034. "extra": {
  11035. "branch-alias": {
  11036. "dev-master": "1.0.x-dev"
  11037. }
  11038. },
  11039. "autoload": {
  11040. "psr-4": {
  11041. "phpDocumentor\\Reflection\\": [
  11042. "src"
  11043. ]
  11044. }
  11045. },
  11046. "notification-url": "https://packagist.org/downloads/",
  11047. "license": [
  11048. "MIT"
  11049. ],
  11050. "authors": [
  11051. {
  11052. "name": "Jaap van Otterdijk",
  11053. "email": "opensource@ijaap.nl"
  11054. }
  11055. ],
  11056. "description": "Common reflection classes used by phpdocumentor to reflect the code structure",
  11057. "homepage": "http://www.phpdoc.org",
  11058. "keywords": [
  11059. "FQSEN",
  11060. "phpDocumentor",
  11061. "phpdoc",
  11062. "reflection",
  11063. "static analysis"
  11064. ],
  11065. "time": "2017-09-11T18:02:19+00:00"
  11066. },
  11067. {
  11068. "name": "phpdocumentor/reflection-docblock",
  11069. "version": "4.3.0",
  11070. "source": {
  11071. "type": "git",
  11072. "url": "https://github.com/phpDocumentor/ReflectionDocBlock.git",
  11073. "reference": "94fd0001232e47129dd3504189fa1c7225010d08"
  11074. },
  11075. "dist": {
  11076. "type": "zip",
  11077. "url": "https://api.github.com/repos/phpDocumentor/ReflectionDocBlock/zipball/94fd0001232e47129dd3504189fa1c7225010d08",
  11078. "reference": "94fd0001232e47129dd3504189fa1c7225010d08",
  11079. "shasum": ""
  11080. },
  11081. "require": {
  11082. "php": "^7.0",
  11083. "phpdocumentor/reflection-common": "^1.0.0",
  11084. "phpdocumentor/type-resolver": "^0.4.0",
  11085. "webmozart/assert": "^1.0"
  11086. },
  11087. "require-dev": {
  11088. "doctrine/instantiator": "~1.0.5",
  11089. "mockery/mockery": "^1.0",
  11090. "phpunit/phpunit": "^6.4"
  11091. },
  11092. "type": "library",
  11093. "extra": {
  11094. "branch-alias": {
  11095. "dev-master": "4.x-dev"
  11096. }
  11097. },
  11098. "autoload": {
  11099. "psr-4": {
  11100. "phpDocumentor\\Reflection\\": [
  11101. "src/"
  11102. ]
  11103. }
  11104. },
  11105. "notification-url": "https://packagist.org/downloads/",
  11106. "license": [
  11107. "MIT"
  11108. ],
  11109. "authors": [
  11110. {
  11111. "name": "Mike van Riel",
  11112. "email": "me@mikevanriel.com"
  11113. }
  11114. ],
  11115. "description": "With this component, a library can provide support for annotations via DocBlocks or otherwise retrieve information that is embedded in a DocBlock.",
  11116. "time": "2017-11-30T07:14:17+00:00"
  11117. },
  11118. {
  11119. "name": "phpdocumentor/type-resolver",
  11120. "version": "0.4.0",
  11121. "source": {
  11122. "type": "git",
  11123. "url": "https://github.com/phpDocumentor/TypeResolver.git",
  11124. "reference": "9c977708995954784726e25d0cd1dddf4e65b0f7"
  11125. },
  11126. "dist": {
  11127. "type": "zip",
  11128. "url": "https://api.github.com/repos/phpDocumentor/TypeResolver/zipball/9c977708995954784726e25d0cd1dddf4e65b0f7",
  11129. "reference": "9c977708995954784726e25d0cd1dddf4e65b0f7",
  11130. "shasum": ""
  11131. },
  11132. "require": {
  11133. "php": "^5.5 || ^7.0",
  11134. "phpdocumentor/reflection-common": "^1.0"
  11135. },
  11136. "require-dev": {
  11137. "mockery/mockery": "^0.9.4",
  11138. "phpunit/phpunit": "^5.2||^4.8.24"
  11139. },
  11140. "type": "library",
  11141. "extra": {
  11142. "branch-alias": {
  11143. "dev-master": "1.0.x-dev"
  11144. }
  11145. },
  11146. "autoload": {
  11147. "psr-4": {
  11148. "phpDocumentor\\Reflection\\": [
  11149. "src/"
  11150. ]
  11151. }
  11152. },
  11153. "notification-url": "https://packagist.org/downloads/",
  11154. "license": [
  11155. "MIT"
  11156. ],
  11157. "authors": [
  11158. {
  11159. "name": "Mike van Riel",
  11160. "email": "me@mikevanriel.com"
  11161. }
  11162. ],
  11163. "time": "2017-07-14T14:27:02+00:00"
  11164. },
  11165. {
  11166. "name": "phpspec/prophecy",
  11167. "version": "1.8.0",
  11168. "source": {
  11169. "type": "git",
  11170. "url": "https://github.com/phpspec/prophecy.git",
  11171. "reference": "4ba436b55987b4bf311cb7c6ba82aa528aac0a06"
  11172. },
  11173. "dist": {
  11174. "type": "zip",
  11175. "url": "https://api.github.com/repos/phpspec/prophecy/zipball/4ba436b55987b4bf311cb7c6ba82aa528aac0a06",
  11176. "reference": "4ba436b55987b4bf311cb7c6ba82aa528aac0a06",
  11177. "shasum": ""
  11178. },
  11179. "require": {
  11180. "doctrine/instantiator": "^1.0.2",
  11181. "php": "^5.3|^7.0",
  11182. "phpdocumentor/reflection-docblock": "^2.0|^3.0.2|^4.0",
  11183. "sebastian/comparator": "^1.1|^2.0|^3.0",
  11184. "sebastian/recursion-context": "^1.0|^2.0|^3.0"
  11185. },
  11186. "require-dev": {
  11187. "phpspec/phpspec": "^2.5|^3.2",
  11188. "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.5 || ^7.1"
  11189. },
  11190. "type": "library",
  11191. "extra": {
  11192. "branch-alias": {
  11193. "dev-master": "1.8.x-dev"
  11194. }
  11195. },
  11196. "autoload": {
  11197. "psr-0": {
  11198. "Prophecy\\": "src/"
  11199. }
  11200. },
  11201. "notification-url": "https://packagist.org/downloads/",
  11202. "license": [
  11203. "MIT"
  11204. ],
  11205. "authors": [
  11206. {
  11207. "name": "Konstantin Kudryashov",
  11208. "email": "ever.zet@gmail.com",
  11209. "homepage": "http://everzet.com"
  11210. },
  11211. {
  11212. "name": "Marcello Duarte",
  11213. "email": "marcello.duarte@gmail.com"
  11214. }
  11215. ],
  11216. "description": "Highly opinionated mocking framework for PHP 5.3+",
  11217. "homepage": "https://github.com/phpspec/prophecy",
  11218. "keywords": [
  11219. "Double",
  11220. "Dummy",
  11221. "fake",
  11222. "mock",
  11223. "spy",
  11224. "stub"
  11225. ],
  11226. "time": "2018-08-05T17:53:17+00:00"
  11227. },
  11228. {
  11229. "name": "phpunit/php-code-coverage",
  11230. "version": "5.3.2",
  11231. "source": {
  11232. "type": "git",
  11233. "url": "https://github.com/sebastianbergmann/php-code-coverage.git",
  11234. "reference": "c89677919c5dd6d3b3852f230a663118762218ac"
  11235. },
  11236. "dist": {
  11237. "type": "zip",
  11238. "url": "https://api.github.com/repos/sebastianbergmann/php-code-coverage/zipball/c89677919c5dd6d3b3852f230a663118762218ac",
  11239. "reference": "c89677919c5dd6d3b3852f230a663118762218ac",
  11240. "shasum": ""
  11241. },
  11242. "require": {
  11243. "ext-dom": "*",
  11244. "ext-xmlwriter": "*",
  11245. "php": "^7.0",
  11246. "phpunit/php-file-iterator": "^1.4.2",
  11247. "phpunit/php-text-template": "^1.2.1",
  11248. "phpunit/php-token-stream": "^2.0.1",
  11249. "sebastian/code-unit-reverse-lookup": "^1.0.1",
  11250. "sebastian/environment": "^3.0",
  11251. "sebastian/version": "^2.0.1",
  11252. "theseer/tokenizer": "^1.1"
  11253. },
  11254. "require-dev": {
  11255. "phpunit/phpunit": "^6.0"
  11256. },
  11257. "suggest": {
  11258. "ext-xdebug": "^2.5.5"
  11259. },
  11260. "type": "library",
  11261. "extra": {
  11262. "branch-alias": {
  11263. "dev-master": "5.3.x-dev"
  11264. }
  11265. },
  11266. "autoload": {
  11267. "classmap": [
  11268. "src/"
  11269. ]
  11270. },
  11271. "notification-url": "https://packagist.org/downloads/",
  11272. "license": [
  11273. "BSD-3-Clause"
  11274. ],
  11275. "authors": [
  11276. {
  11277. "name": "Sebastian Bergmann",
  11278. "email": "sebastian@phpunit.de",
  11279. "role": "lead"
  11280. }
  11281. ],
  11282. "description": "Library that provides collection, processing, and rendering functionality for PHP code coverage information.",
  11283. "homepage": "https://github.com/sebastianbergmann/php-code-coverage",
  11284. "keywords": [
  11285. "coverage",
  11286. "testing",
  11287. "xunit"
  11288. ],
  11289. "time": "2018-04-06T15:36:58+00:00"
  11290. },
  11291. {
  11292. "name": "phpunit/php-file-iterator",
  11293. "version": "1.4.5",
  11294. "source": {
  11295. "type": "git",
  11296. "url": "https://github.com/sebastianbergmann/php-file-iterator.git",
  11297. "reference": "730b01bc3e867237eaac355e06a36b85dd93a8b4"
  11298. },
  11299. "dist": {
  11300. "type": "zip",
  11301. "url": "https://api.github.com/repos/sebastianbergmann/php-file-iterator/zipball/730b01bc3e867237eaac355e06a36b85dd93a8b4",
  11302. "reference": "730b01bc3e867237eaac355e06a36b85dd93a8b4",
  11303. "shasum": ""
  11304. },
  11305. "require": {
  11306. "php": ">=5.3.3"
  11307. },
  11308. "type": "library",
  11309. "extra": {
  11310. "branch-alias": {
  11311. "dev-master": "1.4.x-dev"
  11312. }
  11313. },
  11314. "autoload": {
  11315. "classmap": [
  11316. "src/"
  11317. ]
  11318. },
  11319. "notification-url": "https://packagist.org/downloads/",
  11320. "license": [
  11321. "BSD-3-Clause"
  11322. ],
  11323. "authors": [
  11324. {
  11325. "name": "Sebastian Bergmann",
  11326. "email": "sb@sebastian-bergmann.de",
  11327. "role": "lead"
  11328. }
  11329. ],
  11330. "description": "FilterIterator implementation that filters files based on a list of suffixes.",
  11331. "homepage": "https://github.com/sebastianbergmann/php-file-iterator/",
  11332. "keywords": [
  11333. "filesystem",
  11334. "iterator"
  11335. ],
  11336. "time": "2017-11-27T13:52:08+00:00"
  11337. },
  11338. {
  11339. "name": "phpunit/php-text-template",
  11340. "version": "1.2.1",
  11341. "source": {
  11342. "type": "git",
  11343. "url": "https://github.com/sebastianbergmann/php-text-template.git",
  11344. "reference": "31f8b717e51d9a2afca6c9f046f5d69fc27c8686"
  11345. },
  11346. "dist": {
  11347. "type": "zip",
  11348. "url": "https://api.github.com/repos/sebastianbergmann/php-text-template/zipball/31f8b717e51d9a2afca6c9f046f5d69fc27c8686",
  11349. "reference": "31f8b717e51d9a2afca6c9f046f5d69fc27c8686",
  11350. "shasum": ""
  11351. },
  11352. "require": {
  11353. "php": ">=5.3.3"
  11354. },
  11355. "type": "library",
  11356. "autoload": {
  11357. "classmap": [
  11358. "src/"
  11359. ]
  11360. },
  11361. "notification-url": "https://packagist.org/downloads/",
  11362. "license": [
  11363. "BSD-3-Clause"
  11364. ],
  11365. "authors": [
  11366. {
  11367. "name": "Sebastian Bergmann",
  11368. "email": "sebastian@phpunit.de",
  11369. "role": "lead"
  11370. }
  11371. ],
  11372. "description": "Simple template engine.",
  11373. "homepage": "https://github.com/sebastianbergmann/php-text-template/",
  11374. "keywords": [
  11375. "template"
  11376. ],
  11377. "time": "2015-06-21T13:50:34+00:00"
  11378. },
  11379. {
  11380. "name": "phpunit/php-timer",
  11381. "version": "1.0.9",
  11382. "source": {
  11383. "type": "git",
  11384. "url": "https://github.com/sebastianbergmann/php-timer.git",
  11385. "reference": "3dcf38ca72b158baf0bc245e9184d3fdffa9c46f"
  11386. },
  11387. "dist": {
  11388. "type": "zip",
  11389. "url": "https://api.github.com/repos/sebastianbergmann/php-timer/zipball/3dcf38ca72b158baf0bc245e9184d3fdffa9c46f",
  11390. "reference": "3dcf38ca72b158baf0bc245e9184d3fdffa9c46f",
  11391. "shasum": ""
  11392. },
  11393. "require": {
  11394. "php": "^5.3.3 || ^7.0"
  11395. },
  11396. "require-dev": {
  11397. "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.0"
  11398. },
  11399. "type": "library",
  11400. "extra": {
  11401. "branch-alias": {
  11402. "dev-master": "1.0-dev"
  11403. }
  11404. },
  11405. "autoload": {
  11406. "classmap": [
  11407. "src/"
  11408. ]
  11409. },
  11410. "notification-url": "https://packagist.org/downloads/",
  11411. "license": [
  11412. "BSD-3-Clause"
  11413. ],
  11414. "authors": [
  11415. {
  11416. "name": "Sebastian Bergmann",
  11417. "email": "sb@sebastian-bergmann.de",
  11418. "role": "lead"
  11419. }
  11420. ],
  11421. "description": "Utility class for timing",
  11422. "homepage": "https://github.com/sebastianbergmann/php-timer/",
  11423. "keywords": [
  11424. "timer"
  11425. ],
  11426. "time": "2017-02-26T11:10:40+00:00"
  11427. },
  11428. {
  11429. "name": "phpunit/php-token-stream",
  11430. "version": "2.0.2",
  11431. "source": {
  11432. "type": "git",
  11433. "url": "https://github.com/sebastianbergmann/php-token-stream.git",
  11434. "reference": "791198a2c6254db10131eecfe8c06670700904db"
  11435. },
  11436. "dist": {
  11437. "type": "zip",
  11438. "url": "https://api.github.com/repos/sebastianbergmann/php-token-stream/zipball/791198a2c6254db10131eecfe8c06670700904db",
  11439. "reference": "791198a2c6254db10131eecfe8c06670700904db",
  11440. "shasum": ""
  11441. },
  11442. "require": {
  11443. "ext-tokenizer": "*",
  11444. "php": "^7.0"
  11445. },
  11446. "require-dev": {
  11447. "phpunit/phpunit": "^6.2.4"
  11448. },
  11449. "type": "library",
  11450. "extra": {
  11451. "branch-alias": {
  11452. "dev-master": "2.0-dev"
  11453. }
  11454. },
  11455. "autoload": {
  11456. "classmap": [
  11457. "src/"
  11458. ]
  11459. },
  11460. "notification-url": "https://packagist.org/downloads/",
  11461. "license": [
  11462. "BSD-3-Clause"
  11463. ],
  11464. "authors": [
  11465. {
  11466. "name": "Sebastian Bergmann",
  11467. "email": "sebastian@phpunit.de"
  11468. }
  11469. ],
  11470. "description": "Wrapper around PHP's tokenizer extension.",
  11471. "homepage": "https://github.com/sebastianbergmann/php-token-stream/",
  11472. "keywords": [
  11473. "tokenizer"
  11474. ],
  11475. "time": "2017-11-27T05:48:46+00:00"
  11476. },
  11477. {
  11478. "name": "phpunit/phpunit",
  11479. "version": "6.5.13",
  11480. "source": {
  11481. "type": "git",
  11482. "url": "https://github.com/sebastianbergmann/phpunit.git",
  11483. "reference": "0973426fb012359b2f18d3bd1e90ef1172839693"
  11484. },
  11485. "dist": {
  11486. "type": "zip",
  11487. "url": "https://api.github.com/repos/sebastianbergmann/phpunit/zipball/0973426fb012359b2f18d3bd1e90ef1172839693",
  11488. "reference": "0973426fb012359b2f18d3bd1e90ef1172839693",
  11489. "shasum": ""
  11490. },
  11491. "require": {
  11492. "ext-dom": "*",
  11493. "ext-json": "*",
  11494. "ext-libxml": "*",
  11495. "ext-mbstring": "*",
  11496. "ext-xml": "*",
  11497. "myclabs/deep-copy": "^1.6.1",
  11498. "phar-io/manifest": "^1.0.1",
  11499. "phar-io/version": "^1.0",
  11500. "php": "^7.0",
  11501. "phpspec/prophecy": "^1.7",
  11502. "phpunit/php-code-coverage": "^5.3",
  11503. "phpunit/php-file-iterator": "^1.4.3",
  11504. "phpunit/php-text-template": "^1.2.1",
  11505. "phpunit/php-timer": "^1.0.9",
  11506. "phpunit/phpunit-mock-objects": "^5.0.9",
  11507. "sebastian/comparator": "^2.1",
  11508. "sebastian/diff": "^2.0",
  11509. "sebastian/environment": "^3.1",
  11510. "sebastian/exporter": "^3.1",
  11511. "sebastian/global-state": "^2.0",
  11512. "sebastian/object-enumerator": "^3.0.3",
  11513. "sebastian/resource-operations": "^1.0",
  11514. "sebastian/version": "^2.0.1"
  11515. },
  11516. "conflict": {
  11517. "phpdocumentor/reflection-docblock": "3.0.2",
  11518. "phpunit/dbunit": "<3.0"
  11519. },
  11520. "require-dev": {
  11521. "ext-pdo": "*"
  11522. },
  11523. "suggest": {
  11524. "ext-xdebug": "*",
  11525. "phpunit/php-invoker": "^1.1"
  11526. },
  11527. "bin": [
  11528. "phpunit"
  11529. ],
  11530. "type": "library",
  11531. "extra": {
  11532. "branch-alias": {
  11533. "dev-master": "6.5.x-dev"
  11534. }
  11535. },
  11536. "autoload": {
  11537. "classmap": [
  11538. "src/"
  11539. ]
  11540. },
  11541. "notification-url": "https://packagist.org/downloads/",
  11542. "license": [
  11543. "BSD-3-Clause"
  11544. ],
  11545. "authors": [
  11546. {
  11547. "name": "Sebastian Bergmann",
  11548. "email": "sebastian@phpunit.de",
  11549. "role": "lead"
  11550. }
  11551. ],
  11552. "description": "The PHP Unit Testing framework.",
  11553. "homepage": "https://phpunit.de/",
  11554. "keywords": [
  11555. "phpunit",
  11556. "testing",
  11557. "xunit"
  11558. ],
  11559. "time": "2018-09-08T15:10:43+00:00"
  11560. },
  11561. {
  11562. "name": "phpunit/phpunit-mock-objects",
  11563. "version": "5.0.10",
  11564. "source": {
  11565. "type": "git",
  11566. "url": "https://github.com/sebastianbergmann/phpunit-mock-objects.git",
  11567. "reference": "cd1cf05c553ecfec36b170070573e540b67d3f1f"
  11568. },
  11569. "dist": {
  11570. "type": "zip",
  11571. "url": "https://api.github.com/repos/sebastianbergmann/phpunit-mock-objects/zipball/cd1cf05c553ecfec36b170070573e540b67d3f1f",
  11572. "reference": "cd1cf05c553ecfec36b170070573e540b67d3f1f",
  11573. "shasum": ""
  11574. },
  11575. "require": {
  11576. "doctrine/instantiator": "^1.0.5",
  11577. "php": "^7.0",
  11578. "phpunit/php-text-template": "^1.2.1",
  11579. "sebastian/exporter": "^3.1"
  11580. },
  11581. "conflict": {
  11582. "phpunit/phpunit": "<6.0"
  11583. },
  11584. "require-dev": {
  11585. "phpunit/phpunit": "^6.5.11"
  11586. },
  11587. "suggest": {
  11588. "ext-soap": "*"
  11589. },
  11590. "type": "library",
  11591. "extra": {
  11592. "branch-alias": {
  11593. "dev-master": "5.0.x-dev"
  11594. }
  11595. },
  11596. "autoload": {
  11597. "classmap": [
  11598. "src/"
  11599. ]
  11600. },
  11601. "notification-url": "https://packagist.org/downloads/",
  11602. "license": [
  11603. "BSD-3-Clause"
  11604. ],
  11605. "authors": [
  11606. {
  11607. "name": "Sebastian Bergmann",
  11608. "email": "sebastian@phpunit.de",
  11609. "role": "lead"
  11610. }
  11611. ],
  11612. "description": "Mock Object library for PHPUnit",
  11613. "homepage": "https://github.com/sebastianbergmann/phpunit-mock-objects/",
  11614. "keywords": [
  11615. "mock",
  11616. "xunit"
  11617. ],
  11618. "time": "2018-08-09T05:50:03+00:00"
  11619. },
  11620. {
  11621. "name": "sebastian/code-unit-reverse-lookup",
  11622. "version": "1.0.1",
  11623. "source": {
  11624. "type": "git",
  11625. "url": "https://github.com/sebastianbergmann/code-unit-reverse-lookup.git",
  11626. "reference": "4419fcdb5eabb9caa61a27c7a1db532a6b55dd18"
  11627. },
  11628. "dist": {
  11629. "type": "zip",
  11630. "url": "https://api.github.com/repos/sebastianbergmann/code-unit-reverse-lookup/zipball/4419fcdb5eabb9caa61a27c7a1db532a6b55dd18",
  11631. "reference": "4419fcdb5eabb9caa61a27c7a1db532a6b55dd18",
  11632. "shasum": ""
  11633. },
  11634. "require": {
  11635. "php": "^5.6 || ^7.0"
  11636. },
  11637. "require-dev": {
  11638. "phpunit/phpunit": "^5.7 || ^6.0"
  11639. },
  11640. "type": "library",
  11641. "extra": {
  11642. "branch-alias": {
  11643. "dev-master": "1.0.x-dev"
  11644. }
  11645. },
  11646. "autoload": {
  11647. "classmap": [
  11648. "src/"
  11649. ]
  11650. },
  11651. "notification-url": "https://packagist.org/downloads/",
  11652. "license": [
  11653. "BSD-3-Clause"
  11654. ],
  11655. "authors": [
  11656. {
  11657. "name": "Sebastian Bergmann",
  11658. "email": "sebastian@phpunit.de"
  11659. }
  11660. ],
  11661. "description": "Looks up which function or method a line of code belongs to",
  11662. "homepage": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/",
  11663. "time": "2017-03-04T06:30:41+00:00"
  11664. },
  11665. {
  11666. "name": "sebastian/comparator",
  11667. "version": "2.1.3",
  11668. "source": {
  11669. "type": "git",
  11670. "url": "https://github.com/sebastianbergmann/comparator.git",
  11671. "reference": "34369daee48eafb2651bea869b4b15d75ccc35f9"
  11672. },
  11673. "dist": {
  11674. "type": "zip",
  11675. "url": "https://api.github.com/repos/sebastianbergmann/comparator/zipball/34369daee48eafb2651bea869b4b15d75ccc35f9",
  11676. "reference": "34369daee48eafb2651bea869b4b15d75ccc35f9",
  11677. "shasum": ""
  11678. },
  11679. "require": {
  11680. "php": "^7.0",
  11681. "sebastian/diff": "^2.0 || ^3.0",
  11682. "sebastian/exporter": "^3.1"
  11683. },
  11684. "require-dev": {
  11685. "phpunit/phpunit": "^6.4"
  11686. },
  11687. "type": "library",
  11688. "extra": {
  11689. "branch-alias": {
  11690. "dev-master": "2.1.x-dev"
  11691. }
  11692. },
  11693. "autoload": {
  11694. "classmap": [
  11695. "src/"
  11696. ]
  11697. },
  11698. "notification-url": "https://packagist.org/downloads/",
  11699. "license": [
  11700. "BSD-3-Clause"
  11701. ],
  11702. "authors": [
  11703. {
  11704. "name": "Jeff Welch",
  11705. "email": "whatthejeff@gmail.com"
  11706. },
  11707. {
  11708. "name": "Volker Dusch",
  11709. "email": "github@wallbash.com"
  11710. },
  11711. {
  11712. "name": "Bernhard Schussek",
  11713. "email": "bschussek@2bepublished.at"
  11714. },
  11715. {
  11716. "name": "Sebastian Bergmann",
  11717. "email": "sebastian@phpunit.de"
  11718. }
  11719. ],
  11720. "description": "Provides the functionality to compare PHP values for equality",
  11721. "homepage": "https://github.com/sebastianbergmann/comparator",
  11722. "keywords": [
  11723. "comparator",
  11724. "compare",
  11725. "equality"
  11726. ],
  11727. "time": "2018-02-01T13:46:46+00:00"
  11728. },
  11729. {
  11730. "name": "sebastian/diff",
  11731. "version": "2.0.1",
  11732. "source": {
  11733. "type": "git",
  11734. "url": "https://github.com/sebastianbergmann/diff.git",
  11735. "reference": "347c1d8b49c5c3ee30c7040ea6fc446790e6bddd"
  11736. },
  11737. "dist": {
  11738. "type": "zip",
  11739. "url": "https://api.github.com/repos/sebastianbergmann/diff/zipball/347c1d8b49c5c3ee30c7040ea6fc446790e6bddd",
  11740. "reference": "347c1d8b49c5c3ee30c7040ea6fc446790e6bddd",
  11741. "shasum": ""
  11742. },
  11743. "require": {
  11744. "php": "^7.0"
  11745. },
  11746. "require-dev": {
  11747. "phpunit/phpunit": "^6.2"
  11748. },
  11749. "type": "library",
  11750. "extra": {
  11751. "branch-alias": {
  11752. "dev-master": "2.0-dev"
  11753. }
  11754. },
  11755. "autoload": {
  11756. "classmap": [
  11757. "src/"
  11758. ]
  11759. },
  11760. "notification-url": "https://packagist.org/downloads/",
  11761. "license": [
  11762. "BSD-3-Clause"
  11763. ],
  11764. "authors": [
  11765. {
  11766. "name": "Kore Nordmann",
  11767. "email": "mail@kore-nordmann.de"
  11768. },
  11769. {
  11770. "name": "Sebastian Bergmann",
  11771. "email": "sebastian@phpunit.de"
  11772. }
  11773. ],
  11774. "description": "Diff implementation",
  11775. "homepage": "https://github.com/sebastianbergmann/diff",
  11776. "keywords": [
  11777. "diff"
  11778. ],
  11779. "time": "2017-08-03T08:09:46+00:00"
  11780. },
  11781. {
  11782. "name": "sebastian/environment",
  11783. "version": "3.1.0",
  11784. "source": {
  11785. "type": "git",
  11786. "url": "https://github.com/sebastianbergmann/environment.git",
  11787. "reference": "cd0871b3975fb7fc44d11314fd1ee20925fce4f5"
  11788. },
  11789. "dist": {
  11790. "type": "zip",
  11791. "url": "https://api.github.com/repos/sebastianbergmann/environment/zipball/cd0871b3975fb7fc44d11314fd1ee20925fce4f5",
  11792. "reference": "cd0871b3975fb7fc44d11314fd1ee20925fce4f5",
  11793. "shasum": ""
  11794. },
  11795. "require": {
  11796. "php": "^7.0"
  11797. },
  11798. "require-dev": {
  11799. "phpunit/phpunit": "^6.1"
  11800. },
  11801. "type": "library",
  11802. "extra": {
  11803. "branch-alias": {
  11804. "dev-master": "3.1.x-dev"
  11805. }
  11806. },
  11807. "autoload": {
  11808. "classmap": [
  11809. "src/"
  11810. ]
  11811. },
  11812. "notification-url": "https://packagist.org/downloads/",
  11813. "license": [
  11814. "BSD-3-Clause"
  11815. ],
  11816. "authors": [
  11817. {
  11818. "name": "Sebastian Bergmann",
  11819. "email": "sebastian@phpunit.de"
  11820. }
  11821. ],
  11822. "description": "Provides functionality to handle HHVM/PHP environments",
  11823. "homepage": "http://www.github.com/sebastianbergmann/environment",
  11824. "keywords": [
  11825. "Xdebug",
  11826. "environment",
  11827. "hhvm"
  11828. ],
  11829. "time": "2017-07-01T08:51:00+00:00"
  11830. },
  11831. {
  11832. "name": "sebastian/exporter",
  11833. "version": "3.1.0",
  11834. "source": {
  11835. "type": "git",
  11836. "url": "https://github.com/sebastianbergmann/exporter.git",
  11837. "reference": "234199f4528de6d12aaa58b612e98f7d36adb937"
  11838. },
  11839. "dist": {
  11840. "type": "zip",
  11841. "url": "https://api.github.com/repos/sebastianbergmann/exporter/zipball/234199f4528de6d12aaa58b612e98f7d36adb937",
  11842. "reference": "234199f4528de6d12aaa58b612e98f7d36adb937",
  11843. "shasum": ""
  11844. },
  11845. "require": {
  11846. "php": "^7.0",
  11847. "sebastian/recursion-context": "^3.0"
  11848. },
  11849. "require-dev": {
  11850. "ext-mbstring": "*",
  11851. "phpunit/phpunit": "^6.0"
  11852. },
  11853. "type": "library",
  11854. "extra": {
  11855. "branch-alias": {
  11856. "dev-master": "3.1.x-dev"
  11857. }
  11858. },
  11859. "autoload": {
  11860. "classmap": [
  11861. "src/"
  11862. ]
  11863. },
  11864. "notification-url": "https://packagist.org/downloads/",
  11865. "license": [
  11866. "BSD-3-Clause"
  11867. ],
  11868. "authors": [
  11869. {
  11870. "name": "Jeff Welch",
  11871. "email": "whatthejeff@gmail.com"
  11872. },
  11873. {
  11874. "name": "Volker Dusch",
  11875. "email": "github@wallbash.com"
  11876. },
  11877. {
  11878. "name": "Bernhard Schussek",
  11879. "email": "bschussek@2bepublished.at"
  11880. },
  11881. {
  11882. "name": "Sebastian Bergmann",
  11883. "email": "sebastian@phpunit.de"
  11884. },
  11885. {
  11886. "name": "Adam Harvey",
  11887. "email": "aharvey@php.net"
  11888. }
  11889. ],
  11890. "description": "Provides the functionality to export PHP variables for visualization",
  11891. "homepage": "http://www.github.com/sebastianbergmann/exporter",
  11892. "keywords": [
  11893. "export",
  11894. "exporter"
  11895. ],
  11896. "time": "2017-04-03T13:19:02+00:00"
  11897. },
  11898. {
  11899. "name": "sebastian/global-state",
  11900. "version": "2.0.0",
  11901. "source": {
  11902. "type": "git",
  11903. "url": "https://github.com/sebastianbergmann/global-state.git",
  11904. "reference": "e8ba02eed7bbbb9e59e43dedd3dddeff4a56b0c4"
  11905. },
  11906. "dist": {
  11907. "type": "zip",
  11908. "url": "https://api.github.com/repos/sebastianbergmann/global-state/zipball/e8ba02eed7bbbb9e59e43dedd3dddeff4a56b0c4",
  11909. "reference": "e8ba02eed7bbbb9e59e43dedd3dddeff4a56b0c4",
  11910. "shasum": ""
  11911. },
  11912. "require": {
  11913. "php": "^7.0"
  11914. },
  11915. "require-dev": {
  11916. "phpunit/phpunit": "^6.0"
  11917. },
  11918. "suggest": {
  11919. "ext-uopz": "*"
  11920. },
  11921. "type": "library",
  11922. "extra": {
  11923. "branch-alias": {
  11924. "dev-master": "2.0-dev"
  11925. }
  11926. },
  11927. "autoload": {
  11928. "classmap": [
  11929. "src/"
  11930. ]
  11931. },
  11932. "notification-url": "https://packagist.org/downloads/",
  11933. "license": [
  11934. "BSD-3-Clause"
  11935. ],
  11936. "authors": [
  11937. {
  11938. "name": "Sebastian Bergmann",
  11939. "email": "sebastian@phpunit.de"
  11940. }
  11941. ],
  11942. "description": "Snapshotting of global state",
  11943. "homepage": "http://www.github.com/sebastianbergmann/global-state",
  11944. "keywords": [
  11945. "global state"
  11946. ],
  11947. "time": "2017-04-27T15:39:26+00:00"
  11948. },
  11949. {
  11950. "name": "sebastian/object-enumerator",
  11951. "version": "3.0.3",
  11952. "source": {
  11953. "type": "git",
  11954. "url": "https://github.com/sebastianbergmann/object-enumerator.git",
  11955. "reference": "7cfd9e65d11ffb5af41198476395774d4c8a84c5"
  11956. },
  11957. "dist": {
  11958. "type": "zip",
  11959. "url": "https://api.github.com/repos/sebastianbergmann/object-enumerator/zipball/7cfd9e65d11ffb5af41198476395774d4c8a84c5",
  11960. "reference": "7cfd9e65d11ffb5af41198476395774d4c8a84c5",
  11961. "shasum": ""
  11962. },
  11963. "require": {
  11964. "php": "^7.0",
  11965. "sebastian/object-reflector": "^1.1.1",
  11966. "sebastian/recursion-context": "^3.0"
  11967. },
  11968. "require-dev": {
  11969. "phpunit/phpunit": "^6.0"
  11970. },
  11971. "type": "library",
  11972. "extra": {
  11973. "branch-alias": {
  11974. "dev-master": "3.0.x-dev"
  11975. }
  11976. },
  11977. "autoload": {
  11978. "classmap": [
  11979. "src/"
  11980. ]
  11981. },
  11982. "notification-url": "https://packagist.org/downloads/",
  11983. "license": [
  11984. "BSD-3-Clause"
  11985. ],
  11986. "authors": [
  11987. {
  11988. "name": "Sebastian Bergmann",
  11989. "email": "sebastian@phpunit.de"
  11990. }
  11991. ],
  11992. "description": "Traverses array structures and object graphs to enumerate all referenced objects",
  11993. "homepage": "https://github.com/sebastianbergmann/object-enumerator/",
  11994. "time": "2017-08-03T12:35:26+00:00"
  11995. },
  11996. {
  11997. "name": "sebastian/object-reflector",
  11998. "version": "1.1.1",
  11999. "source": {
  12000. "type": "git",
  12001. "url": "https://github.com/sebastianbergmann/object-reflector.git",
  12002. "reference": "773f97c67f28de00d397be301821b06708fca0be"
  12003. },
  12004. "dist": {
  12005. "type": "zip",
  12006. "url": "https://api.github.com/repos/sebastianbergmann/object-reflector/zipball/773f97c67f28de00d397be301821b06708fca0be",
  12007. "reference": "773f97c67f28de00d397be301821b06708fca0be",
  12008. "shasum": ""
  12009. },
  12010. "require": {
  12011. "php": "^7.0"
  12012. },
  12013. "require-dev": {
  12014. "phpunit/phpunit": "^6.0"
  12015. },
  12016. "type": "library",
  12017. "extra": {
  12018. "branch-alias": {
  12019. "dev-master": "1.1-dev"
  12020. }
  12021. },
  12022. "autoload": {
  12023. "classmap": [
  12024. "src/"
  12025. ]
  12026. },
  12027. "notification-url": "https://packagist.org/downloads/",
  12028. "license": [
  12029. "BSD-3-Clause"
  12030. ],
  12031. "authors": [
  12032. {
  12033. "name": "Sebastian Bergmann",
  12034. "email": "sebastian@phpunit.de"
  12035. }
  12036. ],
  12037. "description": "Allows reflection of object attributes, including inherited and non-public ones",
  12038. "homepage": "https://github.com/sebastianbergmann/object-reflector/",
  12039. "time": "2017-03-29T09:07:27+00:00"
  12040. },
  12041. {
  12042. "name": "sebastian/recursion-context",
  12043. "version": "3.0.0",
  12044. "source": {
  12045. "type": "git",
  12046. "url": "https://github.com/sebastianbergmann/recursion-context.git",
  12047. "reference": "5b0cd723502bac3b006cbf3dbf7a1e3fcefe4fa8"
  12048. },
  12049. "dist": {
  12050. "type": "zip",
  12051. "url": "https://api.github.com/repos/sebastianbergmann/recursion-context/zipball/5b0cd723502bac3b006cbf3dbf7a1e3fcefe4fa8",
  12052. "reference": "5b0cd723502bac3b006cbf3dbf7a1e3fcefe4fa8",
  12053. "shasum": ""
  12054. },
  12055. "require": {
  12056. "php": "^7.0"
  12057. },
  12058. "require-dev": {
  12059. "phpunit/phpunit": "^6.0"
  12060. },
  12061. "type": "library",
  12062. "extra": {
  12063. "branch-alias": {
  12064. "dev-master": "3.0.x-dev"
  12065. }
  12066. },
  12067. "autoload": {
  12068. "classmap": [
  12069. "src/"
  12070. ]
  12071. },
  12072. "notification-url": "https://packagist.org/downloads/",
  12073. "license": [
  12074. "BSD-3-Clause"
  12075. ],
  12076. "authors": [
  12077. {
  12078. "name": "Jeff Welch",
  12079. "email": "whatthejeff@gmail.com"
  12080. },
  12081. {
  12082. "name": "Sebastian Bergmann",
  12083. "email": "sebastian@phpunit.de"
  12084. },
  12085. {
  12086. "name": "Adam Harvey",
  12087. "email": "aharvey@php.net"
  12088. }
  12089. ],
  12090. "description": "Provides functionality to recursively process PHP variables",
  12091. "homepage": "http://www.github.com/sebastianbergmann/recursion-context",
  12092. "time": "2017-03-03T06:23:57+00:00"
  12093. },
  12094. {
  12095. "name": "sebastian/resource-operations",
  12096. "version": "1.0.0",
  12097. "source": {
  12098. "type": "git",
  12099. "url": "https://github.com/sebastianbergmann/resource-operations.git",
  12100. "reference": "ce990bb21759f94aeafd30209e8cfcdfa8bc3f52"
  12101. },
  12102. "dist": {
  12103. "type": "zip",
  12104. "url": "https://api.github.com/repos/sebastianbergmann/resource-operations/zipball/ce990bb21759f94aeafd30209e8cfcdfa8bc3f52",
  12105. "reference": "ce990bb21759f94aeafd30209e8cfcdfa8bc3f52",
  12106. "shasum": ""
  12107. },
  12108. "require": {
  12109. "php": ">=5.6.0"
  12110. },
  12111. "type": "library",
  12112. "extra": {
  12113. "branch-alias": {
  12114. "dev-master": "1.0.x-dev"
  12115. }
  12116. },
  12117. "autoload": {
  12118. "classmap": [
  12119. "src/"
  12120. ]
  12121. },
  12122. "notification-url": "https://packagist.org/downloads/",
  12123. "license": [
  12124. "BSD-3-Clause"
  12125. ],
  12126. "authors": [
  12127. {
  12128. "name": "Sebastian Bergmann",
  12129. "email": "sebastian@phpunit.de"
  12130. }
  12131. ],
  12132. "description": "Provides a list of PHP built-in functions that operate on resources",
  12133. "homepage": "https://www.github.com/sebastianbergmann/resource-operations",
  12134. "time": "2015-07-28T20:34:47+00:00"
  12135. },
  12136. {
  12137. "name": "sebastian/version",
  12138. "version": "2.0.1",
  12139. "source": {
  12140. "type": "git",
  12141. "url": "https://github.com/sebastianbergmann/version.git",
  12142. "reference": "99732be0ddb3361e16ad77b68ba41efc8e979019"
  12143. },
  12144. "dist": {
  12145. "type": "zip",
  12146. "url": "https://api.github.com/repos/sebastianbergmann/version/zipball/99732be0ddb3361e16ad77b68ba41efc8e979019",
  12147. "reference": "99732be0ddb3361e16ad77b68ba41efc8e979019",
  12148. "shasum": ""
  12149. },
  12150. "require": {
  12151. "php": ">=5.6"
  12152. },
  12153. "type": "library",
  12154. "extra": {
  12155. "branch-alias": {
  12156. "dev-master": "2.0.x-dev"
  12157. }
  12158. },
  12159. "autoload": {
  12160. "classmap": [
  12161. "src/"
  12162. ]
  12163. },
  12164. "notification-url": "https://packagist.org/downloads/",
  12165. "license": [
  12166. "BSD-3-Clause"
  12167. ],
  12168. "authors": [
  12169. {
  12170. "name": "Sebastian Bergmann",
  12171. "email": "sebastian@phpunit.de",
  12172. "role": "lead"
  12173. }
  12174. ],
  12175. "description": "Library that helps with managing the version number of Git-hosted PHP projects",
  12176. "homepage": "https://github.com/sebastianbergmann/version",
  12177. "time": "2016-10-03T07:35:21+00:00"
  12178. },
  12179. {
  12180. "name": "squizlabs/php_codesniffer",
  12181. "version": "3.3.2",
  12182. "source": {
  12183. "type": "git",
  12184. "url": "https://github.com/squizlabs/PHP_CodeSniffer.git",
  12185. "reference": "6ad28354c04b364c3c71a34e4a18b629cc3b231e"
  12186. },
  12187. "dist": {
  12188. "type": "zip",
  12189. "url": "https://api.github.com/repos/squizlabs/PHP_CodeSniffer/zipball/6ad28354c04b364c3c71a34e4a18b629cc3b231e",
  12190. "reference": "6ad28354c04b364c3c71a34e4a18b629cc3b231e",
  12191. "shasum": ""
  12192. },
  12193. "require": {
  12194. "ext-simplexml": "*",
  12195. "ext-tokenizer": "*",
  12196. "ext-xmlwriter": "*",
  12197. "php": ">=5.4.0"
  12198. },
  12199. "require-dev": {
  12200. "phpunit/phpunit": "^4.0 || ^5.0 || ^6.0 || ^7.0"
  12201. },
  12202. "bin": [
  12203. "bin/phpcs",
  12204. "bin/phpcbf"
  12205. ],
  12206. "type": "library",
  12207. "extra": {
  12208. "branch-alias": {
  12209. "dev-master": "3.x-dev"
  12210. }
  12211. },
  12212. "notification-url": "https://packagist.org/downloads/",
  12213. "license": [
  12214. "BSD-3-Clause"
  12215. ],
  12216. "authors": [
  12217. {
  12218. "name": "Greg Sherwood",
  12219. "role": "lead"
  12220. }
  12221. ],
  12222. "description": "PHP_CodeSniffer tokenizes PHP, JavaScript and CSS files and detects violations of a defined set of coding standards.",
  12223. "homepage": "http://www.squizlabs.com/php-codesniffer",
  12224. "keywords": [
  12225. "phpcs",
  12226. "standards"
  12227. ],
  12228. "time": "2018-09-23T23:08:17+00:00"
  12229. },
  12230. {
  12231. "name": "symfony/browser-kit",
  12232. "version": "v3.4.17",
  12233. "source": {
  12234. "type": "git",
  12235. "url": "https://github.com/symfony/browser-kit.git",
  12236. "reference": "f6668d1a6182d5a8dec65a1c863a4c1d963816c0"
  12237. },
  12238. "dist": {
  12239. "type": "zip",
  12240. "url": "https://api.github.com/repos/symfony/browser-kit/zipball/f6668d1a6182d5a8dec65a1c863a4c1d963816c0",
  12241. "reference": "f6668d1a6182d5a8dec65a1c863a4c1d963816c0",
  12242. "shasum": ""
  12243. },
  12244. "require": {
  12245. "php": "^5.5.9|>=7.0.8",
  12246. "symfony/dom-crawler": "~2.8|~3.0|~4.0"
  12247. },
  12248. "require-dev": {
  12249. "symfony/css-selector": "~2.8|~3.0|~4.0",
  12250. "symfony/process": "~2.8|~3.0|~4.0"
  12251. },
  12252. "suggest": {
  12253. "symfony/process": ""
  12254. },
  12255. "type": "library",
  12256. "extra": {
  12257. "branch-alias": {
  12258. "dev-master": "3.4-dev"
  12259. }
  12260. },
  12261. "autoload": {
  12262. "psr-4": {
  12263. "Symfony\\Component\\BrowserKit\\": ""
  12264. },
  12265. "exclude-from-classmap": [
  12266. "/Tests/"
  12267. ]
  12268. },
  12269. "notification-url": "https://packagist.org/downloads/",
  12270. "license": [
  12271. "MIT"
  12272. ],
  12273. "authors": [
  12274. {
  12275. "name": "Fabien Potencier",
  12276. "email": "fabien@symfony.com"
  12277. },
  12278. {
  12279. "name": "Symfony Community",
  12280. "homepage": "https://symfony.com/contributors"
  12281. }
  12282. ],
  12283. "description": "Symfony BrowserKit Component",
  12284. "homepage": "https://symfony.com",
  12285. "time": "2018-07-26T09:06:28+00:00"
  12286. },
  12287. {
  12288. "name": "symfony/phpunit-bridge",
  12289. "version": "v3.4.17",
  12290. "source": {
  12291. "type": "git",
  12292. "url": "https://github.com/symfony/phpunit-bridge.git",
  12293. "reference": "76e013a98031356604e5a730c9eb22713dc4dda4"
  12294. },
  12295. "dist": {
  12296. "type": "zip",
  12297. "url": "https://api.github.com/repos/symfony/phpunit-bridge/zipball/76e013a98031356604e5a730c9eb22713dc4dda4",
  12298. "reference": "76e013a98031356604e5a730c9eb22713dc4dda4",
  12299. "shasum": ""
  12300. },
  12301. "require": {
  12302. "php": ">=5.3.3"
  12303. },
  12304. "conflict": {
  12305. "phpunit/phpunit": "<4.8.35|<5.4.3,>=5.0"
  12306. },
  12307. "suggest": {
  12308. "ext-zip": "Zip support is required when using bin/simple-phpunit",
  12309. "symfony/debug": "For tracking deprecated interfaces usages at runtime with DebugClassLoader"
  12310. },
  12311. "bin": [
  12312. "bin/simple-phpunit"
  12313. ],
  12314. "type": "symfony-bridge",
  12315. "extra": {
  12316. "branch-alias": {
  12317. "dev-master": "3.4-dev"
  12318. },
  12319. "thanks": {
  12320. "name": "phpunit/phpunit",
  12321. "url": "https://github.com/sebastianbergmann/phpunit"
  12322. }
  12323. },
  12324. "autoload": {
  12325. "files": [
  12326. "bootstrap.php"
  12327. ],
  12328. "psr-4": {
  12329. "Symfony\\Bridge\\PhpUnit\\": ""
  12330. },
  12331. "exclude-from-classmap": [
  12332. "/Tests/"
  12333. ]
  12334. },
  12335. "notification-url": "https://packagist.org/downloads/",
  12336. "license": [
  12337. "MIT"
  12338. ],
  12339. "authors": [
  12340. {
  12341. "name": "Nicolas Grekas",
  12342. "email": "p@tchwork.com"
  12343. },
  12344. {
  12345. "name": "Symfony Community",
  12346. "homepage": "https://symfony.com/contributors"
  12347. }
  12348. ],
  12349. "description": "Symfony PHPUnit Bridge",
  12350. "homepage": "https://symfony.com",
  12351. "time": "2018-10-02T12:28:39+00:00"
  12352. },
  12353. {
  12354. "name": "theseer/tokenizer",
  12355. "version": "1.1.0",
  12356. "source": {
  12357. "type": "git",
  12358. "url": "https://github.com/theseer/tokenizer.git",
  12359. "reference": "cb2f008f3f05af2893a87208fe6a6c4985483f8b"
  12360. },
  12361. "dist": {
  12362. "type": "zip",
  12363. "url": "https://api.github.com/repos/theseer/tokenizer/zipball/cb2f008f3f05af2893a87208fe6a6c4985483f8b",
  12364. "reference": "cb2f008f3f05af2893a87208fe6a6c4985483f8b",
  12365. "shasum": ""
  12366. },
  12367. "require": {
  12368. "ext-dom": "*",
  12369. "ext-tokenizer": "*",
  12370. "ext-xmlwriter": "*",
  12371. "php": "^7.0"
  12372. },
  12373. "type": "library",
  12374. "autoload": {
  12375. "classmap": [
  12376. "src/"
  12377. ]
  12378. },
  12379. "notification-url": "https://packagist.org/downloads/",
  12380. "license": [
  12381. "BSD-3-Clause"
  12382. ],
  12383. "authors": [
  12384. {
  12385. "name": "Arne Blankerts",
  12386. "email": "arne@blankerts.de",
  12387. "role": "Developer"
  12388. }
  12389. ],
  12390. "description": "A small library for converting tokenized PHP source code into XML and potentially other formats",
  12391. "time": "2017-04-07T12:08:54+00:00"
  12392. }
  12393. ],
  12394. "aliases": [],
  12395. "minimum-stability": "dev",
  12396. "stability-flags": {
  12397. "drupal/migrate_tools": 20,
  12398. "drupal/examples": 20,
  12399. "drupal/synonyms": 20,
  12400. "drupal/telephone_formatter": 10,
  12401. "drupal/computed_field": 15,
  12402. "drupal/cshs": 20,
  12403. "drupal/views_ef_fieldset": 20,
  12404. "drupal/advanced_text_formatter": 10,
  12405. "drupal/autocomplete_deluxe": 10,
  12406. "drupal/better_exposed_filters": 15,
  12407. "drupal/better_messages": 15,
  12408. "drupal/bulkdelete": 20,
  12409. "drupal/content_lock": 15,
  12410. "drupal/context": 10,
  12411. "drupal/domain": 15,
  12412. "drupal/domain_alias": 15,
  12413. "drupal/domain_config": 15,
  12414. "drupal/email_registration": 5,
  12415. "drupal/entity_browser_enhanced": 5,
  12416. "drupal/entity_clone": 15,
  12417. "drupal/filefield_sources": 20,
  12418. "drupal/filter_perms": 20,
  12419. "drupal/inline_entity_form": 5,
  12420. "drupal/login_destination": 20,
  12421. "drupal/maillog": 20,
  12422. "drupal/maxlength": 10,
  12423. "drupal/menu_position": 20,
  12424. "drupal/path_alias_xt": 20,
  12425. "drupal/pathologic": 15,
  12426. "drupal/profile": 5,
  12427. "drupal/smtp": 10,
  12428. "drupal/translation_views": 15,
  12429. "drupal/toolbar_themes": 15,
  12430. "drupal/ultimate_cron": 15,
  12431. "drupal/workflow": 20,
  12432. "behat/mink": 20,
  12433. "behat/mink-selenium2-driver": 20
  12434. },
  12435. "prefer-stable": true,
  12436. "prefer-lowest": false,
  12437. "platform": {
  12438. "ext-date": "*",
  12439. "ext-dom": "*",
  12440. "ext-filter": "*",
  12441. "ext-gd": "*",
  12442. "ext-hash": "*",
  12443. "ext-json": "*",
  12444. "ext-pcre": "*",
  12445. "ext-pdo": "*",
  12446. "ext-session": "*",
  12447. "ext-simplexml": "*",
  12448. "ext-spl": "*",
  12449. "ext-tokenizer": "*",
  12450. "ext-xml": "*",
  12451. "php": "^5.5.9|>=7.0.8"
  12452. },
  12453. "platform-dev": []
  12454. }