composer.lock 443 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556155715581559156015611562156315641565156615671568156915701571157215731574157515761577157815791580158115821583158415851586158715881589159015911592159315941595159615971598159916001601160216031604160516061607160816091610161116121613161416151616161716181619162016211622162316241625162616271628162916301631163216331634163516361637163816391640164116421643164416451646164716481649165016511652165316541655165616571658165916601661166216631664166516661667166816691670167116721673167416751676167716781679168016811682168316841685168616871688168916901691169216931694169516961697169816991700170117021703170417051706170717081709171017111712171317141715171617171718171917201721172217231724172517261727172817291730173117321733173417351736173717381739174017411742174317441745174617471748174917501751175217531754175517561757175817591760176117621763176417651766176717681769177017711772177317741775177617771778177917801781178217831784178517861787178817891790179117921793179417951796179717981799180018011802180318041805180618071808180918101811181218131814181518161817181818191820182118221823182418251826182718281829183018311832183318341835183618371838183918401841184218431844184518461847184818491850185118521853185418551856185718581859186018611862186318641865186618671868186918701871187218731874187518761877187818791880188118821883188418851886188718881889189018911892189318941895189618971898189919001901190219031904190519061907190819091910191119121913191419151916191719181919192019211922192319241925192619271928192919301931193219331934193519361937193819391940194119421943194419451946194719481949195019511952195319541955195619571958195919601961196219631964196519661967196819691970197119721973197419751976197719781979198019811982198319841985198619871988198919901991199219931994199519961997199819992000200120022003200420052006200720082009201020112012201320142015201620172018201920202021202220232024202520262027202820292030203120322033203420352036203720382039204020412042204320442045204620472048204920502051205220532054205520562057205820592060206120622063206420652066206720682069207020712072207320742075207620772078207920802081208220832084208520862087208820892090209120922093209420952096209720982099210021012102210321042105210621072108210921102111211221132114211521162117211821192120212121222123212421252126212721282129213021312132213321342135213621372138213921402141214221432144214521462147214821492150215121522153215421552156215721582159216021612162216321642165216621672168216921702171217221732174217521762177217821792180218121822183218421852186218721882189219021912192219321942195219621972198219922002201220222032204220522062207220822092210221122122213221422152216221722182219222022212222222322242225222622272228222922302231223222332234223522362237223822392240224122422243224422452246224722482249225022512252225322542255225622572258225922602261226222632264226522662267226822692270227122722273227422752276227722782279228022812282228322842285228622872288228922902291229222932294229522962297229822992300230123022303230423052306230723082309231023112312231323142315231623172318231923202321232223232324232523262327232823292330233123322333233423352336233723382339234023412342234323442345234623472348234923502351235223532354235523562357235823592360236123622363236423652366236723682369237023712372237323742375237623772378237923802381238223832384238523862387238823892390239123922393239423952396239723982399240024012402240324042405240624072408240924102411241224132414241524162417241824192420242124222423242424252426242724282429243024312432243324342435243624372438243924402441244224432444244524462447244824492450245124522453245424552456245724582459246024612462246324642465246624672468246924702471247224732474247524762477247824792480248124822483248424852486248724882489249024912492249324942495249624972498249925002501250225032504250525062507250825092510251125122513251425152516251725182519252025212522252325242525252625272528252925302531253225332534253525362537253825392540254125422543254425452546254725482549255025512552255325542555255625572558255925602561256225632564256525662567256825692570257125722573257425752576257725782579258025812582258325842585258625872588258925902591259225932594259525962597259825992600260126022603260426052606260726082609261026112612261326142615261626172618261926202621262226232624262526262627262826292630263126322633263426352636263726382639264026412642264326442645264626472648264926502651265226532654265526562657265826592660266126622663266426652666266726682669267026712672267326742675267626772678267926802681268226832684268526862687268826892690269126922693269426952696269726982699270027012702270327042705270627072708270927102711271227132714271527162717271827192720272127222723272427252726272727282729273027312732273327342735273627372738273927402741274227432744274527462747274827492750275127522753275427552756275727582759276027612762276327642765276627672768276927702771277227732774277527762777277827792780278127822783278427852786278727882789279027912792279327942795279627972798279928002801280228032804280528062807280828092810281128122813281428152816281728182819282028212822282328242825282628272828282928302831283228332834283528362837283828392840284128422843284428452846284728482849285028512852285328542855285628572858285928602861286228632864286528662867286828692870287128722873287428752876287728782879288028812882288328842885288628872888288928902891289228932894289528962897289828992900290129022903290429052906290729082909291029112912291329142915291629172918291929202921292229232924292529262927292829292930293129322933293429352936293729382939294029412942294329442945294629472948294929502951295229532954295529562957295829592960296129622963296429652966296729682969297029712972297329742975297629772978297929802981298229832984298529862987298829892990299129922993299429952996299729982999300030013002300330043005300630073008300930103011301230133014301530163017301830193020302130223023302430253026302730283029303030313032303330343035303630373038303930403041304230433044304530463047304830493050305130523053305430553056305730583059306030613062306330643065306630673068306930703071307230733074307530763077307830793080308130823083308430853086308730883089309030913092309330943095309630973098309931003101310231033104310531063107310831093110311131123113311431153116311731183119312031213122312331243125312631273128312931303131313231333134313531363137313831393140314131423143314431453146314731483149315031513152315331543155315631573158315931603161316231633164316531663167316831693170317131723173317431753176317731783179318031813182318331843185318631873188318931903191319231933194319531963197319831993200320132023203320432053206320732083209321032113212321332143215321632173218321932203221322232233224322532263227322832293230323132323233323432353236323732383239324032413242324332443245324632473248324932503251325232533254325532563257325832593260326132623263326432653266326732683269327032713272327332743275327632773278327932803281328232833284328532863287328832893290329132923293329432953296329732983299330033013302330333043305330633073308330933103311331233133314331533163317331833193320332133223323332433253326332733283329333033313332333333343335333633373338333933403341334233433344334533463347334833493350335133523353335433553356335733583359336033613362336333643365336633673368336933703371337233733374337533763377337833793380338133823383338433853386338733883389339033913392339333943395339633973398339934003401340234033404340534063407340834093410341134123413341434153416341734183419342034213422342334243425342634273428342934303431343234333434343534363437343834393440344134423443344434453446344734483449345034513452345334543455345634573458345934603461346234633464346534663467346834693470347134723473347434753476347734783479348034813482348334843485348634873488348934903491349234933494349534963497349834993500350135023503350435053506350735083509351035113512351335143515351635173518351935203521352235233524352535263527352835293530353135323533353435353536353735383539354035413542354335443545354635473548354935503551355235533554355535563557355835593560356135623563356435653566356735683569357035713572357335743575357635773578357935803581358235833584358535863587358835893590359135923593359435953596359735983599360036013602360336043605360636073608360936103611361236133614361536163617361836193620362136223623362436253626362736283629363036313632363336343635363636373638363936403641364236433644364536463647364836493650365136523653365436553656365736583659366036613662366336643665366636673668366936703671367236733674367536763677367836793680368136823683368436853686368736883689369036913692369336943695369636973698369937003701370237033704370537063707370837093710371137123713371437153716371737183719372037213722372337243725372637273728372937303731373237333734373537363737373837393740374137423743374437453746374737483749375037513752375337543755375637573758375937603761376237633764376537663767376837693770377137723773377437753776377737783779378037813782378337843785378637873788378937903791379237933794379537963797379837993800380138023803380438053806380738083809381038113812381338143815381638173818381938203821382238233824382538263827382838293830383138323833383438353836383738383839384038413842384338443845384638473848384938503851385238533854385538563857385838593860386138623863386438653866386738683869387038713872387338743875387638773878387938803881388238833884388538863887388838893890389138923893389438953896389738983899390039013902390339043905390639073908390939103911391239133914391539163917391839193920392139223923392439253926392739283929393039313932393339343935393639373938393939403941394239433944394539463947394839493950395139523953395439553956395739583959396039613962396339643965396639673968396939703971397239733974397539763977397839793980398139823983398439853986398739883989399039913992399339943995399639973998399940004001400240034004400540064007400840094010401140124013401440154016401740184019402040214022402340244025402640274028402940304031403240334034403540364037403840394040404140424043404440454046404740484049405040514052405340544055405640574058405940604061406240634064406540664067406840694070407140724073407440754076407740784079408040814082408340844085408640874088408940904091409240934094409540964097409840994100410141024103410441054106410741084109411041114112411341144115411641174118411941204121412241234124412541264127412841294130413141324133413441354136413741384139414041414142414341444145414641474148414941504151415241534154415541564157415841594160416141624163416441654166416741684169417041714172417341744175417641774178417941804181418241834184418541864187418841894190419141924193419441954196419741984199420042014202420342044205420642074208420942104211421242134214421542164217421842194220422142224223422442254226422742284229423042314232423342344235423642374238423942404241424242434244424542464247424842494250425142524253425442554256425742584259426042614262426342644265426642674268426942704271427242734274427542764277427842794280428142824283428442854286428742884289429042914292429342944295429642974298429943004301430243034304430543064307430843094310431143124313431443154316431743184319432043214322432343244325432643274328432943304331433243334334433543364337433843394340434143424343434443454346434743484349435043514352435343544355435643574358435943604361436243634364436543664367436843694370437143724373437443754376437743784379438043814382438343844385438643874388438943904391439243934394439543964397439843994400440144024403440444054406440744084409441044114412441344144415441644174418441944204421442244234424442544264427442844294430443144324433443444354436443744384439444044414442444344444445444644474448444944504451445244534454445544564457445844594460446144624463446444654466446744684469447044714472447344744475447644774478447944804481448244834484448544864487448844894490449144924493449444954496449744984499450045014502450345044505450645074508450945104511451245134514451545164517451845194520452145224523452445254526452745284529453045314532453345344535453645374538453945404541454245434544454545464547454845494550455145524553455445554556455745584559456045614562456345644565456645674568456945704571457245734574457545764577457845794580458145824583458445854586458745884589459045914592459345944595459645974598459946004601460246034604460546064607460846094610461146124613461446154616461746184619462046214622462346244625462646274628462946304631463246334634463546364637463846394640464146424643464446454646464746484649465046514652465346544655465646574658465946604661466246634664466546664667466846694670467146724673467446754676467746784679468046814682468346844685468646874688468946904691469246934694469546964697469846994700470147024703470447054706470747084709471047114712471347144715471647174718471947204721472247234724472547264727472847294730473147324733473447354736473747384739474047414742474347444745474647474748474947504751475247534754475547564757475847594760476147624763476447654766476747684769477047714772477347744775477647774778477947804781478247834784478547864787478847894790479147924793479447954796479747984799480048014802480348044805480648074808480948104811481248134814481548164817481848194820482148224823482448254826482748284829483048314832483348344835483648374838483948404841484248434844484548464847484848494850485148524853485448554856485748584859486048614862486348644865486648674868486948704871487248734874487548764877487848794880488148824883488448854886488748884889489048914892489348944895489648974898489949004901490249034904490549064907490849094910491149124913491449154916491749184919492049214922492349244925492649274928492949304931493249334934493549364937493849394940494149424943494449454946494749484949495049514952495349544955495649574958495949604961496249634964496549664967496849694970497149724973497449754976497749784979498049814982498349844985498649874988498949904991499249934994499549964997499849995000500150025003500450055006500750085009501050115012501350145015501650175018501950205021502250235024502550265027502850295030503150325033503450355036503750385039504050415042504350445045504650475048504950505051505250535054505550565057505850595060506150625063506450655066506750685069507050715072507350745075507650775078507950805081508250835084508550865087508850895090509150925093509450955096509750985099510051015102510351045105510651075108510951105111511251135114511551165117511851195120512151225123512451255126512751285129513051315132513351345135513651375138513951405141514251435144514551465147514851495150515151525153515451555156515751585159516051615162516351645165516651675168516951705171517251735174517551765177517851795180518151825183518451855186518751885189519051915192519351945195519651975198519952005201520252035204520552065207520852095210521152125213521452155216521752185219522052215222522352245225522652275228522952305231523252335234523552365237523852395240524152425243524452455246524752485249525052515252525352545255525652575258525952605261526252635264526552665267526852695270527152725273527452755276527752785279528052815282528352845285528652875288528952905291529252935294529552965297529852995300530153025303530453055306530753085309531053115312531353145315531653175318531953205321532253235324532553265327532853295330533153325333533453355336533753385339534053415342534353445345534653475348534953505351535253535354535553565357535853595360536153625363536453655366536753685369537053715372537353745375537653775378537953805381538253835384538553865387538853895390539153925393539453955396539753985399540054015402540354045405540654075408540954105411541254135414541554165417541854195420542154225423542454255426542754285429543054315432543354345435543654375438543954405441544254435444544554465447544854495450545154525453545454555456545754585459546054615462546354645465546654675468546954705471547254735474547554765477547854795480548154825483548454855486548754885489549054915492549354945495549654975498549955005501550255035504550555065507550855095510551155125513551455155516551755185519552055215522552355245525552655275528552955305531553255335534553555365537553855395540554155425543554455455546554755485549555055515552555355545555555655575558555955605561556255635564556555665567556855695570557155725573557455755576557755785579558055815582558355845585558655875588558955905591559255935594559555965597559855995600560156025603560456055606560756085609561056115612561356145615561656175618561956205621562256235624562556265627562856295630563156325633563456355636563756385639564056415642564356445645564656475648564956505651565256535654565556565657565856595660566156625663566456655666566756685669567056715672567356745675567656775678567956805681568256835684568556865687568856895690569156925693569456955696569756985699570057015702570357045705570657075708570957105711571257135714571557165717571857195720572157225723572457255726572757285729573057315732573357345735573657375738573957405741574257435744574557465747574857495750575157525753575457555756575757585759576057615762576357645765576657675768576957705771577257735774577557765777577857795780578157825783578457855786578757885789579057915792579357945795579657975798579958005801580258035804580558065807580858095810581158125813581458155816581758185819582058215822582358245825582658275828582958305831583258335834583558365837583858395840584158425843584458455846584758485849585058515852585358545855585658575858585958605861586258635864586558665867586858695870587158725873587458755876587758785879588058815882588358845885588658875888588958905891589258935894589558965897589858995900590159025903590459055906590759085909591059115912591359145915591659175918591959205921592259235924592559265927592859295930593159325933593459355936593759385939594059415942594359445945594659475948594959505951595259535954595559565957595859595960596159625963596459655966596759685969597059715972597359745975597659775978597959805981598259835984598559865987598859895990599159925993599459955996599759985999600060016002600360046005600660076008600960106011601260136014601560166017601860196020602160226023602460256026602760286029603060316032603360346035603660376038603960406041604260436044604560466047604860496050605160526053605460556056605760586059606060616062606360646065606660676068606960706071607260736074607560766077607860796080608160826083608460856086608760886089609060916092609360946095609660976098609961006101610261036104610561066107610861096110611161126113611461156116611761186119612061216122612361246125612661276128612961306131613261336134613561366137613861396140614161426143614461456146614761486149615061516152615361546155615661576158615961606161616261636164616561666167616861696170617161726173617461756176617761786179618061816182618361846185618661876188618961906191619261936194619561966197619861996200620162026203620462056206620762086209621062116212621362146215621662176218621962206221622262236224622562266227622862296230623162326233623462356236623762386239624062416242624362446245624662476248624962506251625262536254625562566257625862596260626162626263626462656266626762686269627062716272627362746275627662776278627962806281628262836284628562866287628862896290629162926293629462956296629762986299630063016302630363046305630663076308630963106311631263136314631563166317631863196320632163226323632463256326632763286329633063316332633363346335633663376338633963406341634263436344634563466347634863496350635163526353635463556356635763586359636063616362636363646365636663676368636963706371637263736374637563766377637863796380638163826383638463856386638763886389639063916392639363946395639663976398639964006401640264036404640564066407640864096410641164126413641464156416641764186419642064216422642364246425642664276428642964306431643264336434643564366437643864396440644164426443644464456446644764486449645064516452645364546455645664576458645964606461646264636464646564666467646864696470647164726473647464756476647764786479648064816482648364846485648664876488648964906491649264936494649564966497649864996500650165026503650465056506650765086509651065116512651365146515651665176518651965206521652265236524652565266527652865296530653165326533653465356536653765386539654065416542654365446545654665476548654965506551655265536554655565566557655865596560656165626563656465656566656765686569657065716572657365746575657665776578657965806581658265836584658565866587658865896590659165926593659465956596659765986599660066016602660366046605660666076608660966106611661266136614661566166617661866196620662166226623662466256626662766286629663066316632663366346635663666376638663966406641664266436644664566466647664866496650665166526653665466556656665766586659666066616662666366646665666666676668666966706671667266736674667566766677667866796680668166826683668466856686668766886689669066916692669366946695669666976698669967006701670267036704670567066707670867096710671167126713671467156716671767186719672067216722672367246725672667276728672967306731673267336734673567366737673867396740674167426743674467456746674767486749675067516752675367546755675667576758675967606761676267636764676567666767676867696770677167726773677467756776677767786779678067816782678367846785678667876788678967906791679267936794679567966797679867996800680168026803680468056806680768086809681068116812681368146815681668176818681968206821682268236824682568266827682868296830683168326833683468356836683768386839684068416842684368446845684668476848684968506851685268536854685568566857685868596860686168626863686468656866686768686869687068716872687368746875687668776878687968806881688268836884688568866887688868896890689168926893689468956896689768986899690069016902690369046905690669076908690969106911691269136914691569166917691869196920692169226923692469256926692769286929693069316932693369346935693669376938693969406941694269436944694569466947694869496950695169526953695469556956695769586959696069616962696369646965696669676968696969706971697269736974697569766977697869796980698169826983698469856986698769886989699069916992699369946995699669976998699970007001700270037004700570067007700870097010701170127013701470157016701770187019702070217022702370247025702670277028702970307031703270337034703570367037703870397040704170427043704470457046704770487049705070517052705370547055705670577058705970607061706270637064706570667067706870697070707170727073707470757076707770787079708070817082708370847085708670877088708970907091709270937094709570967097709870997100710171027103710471057106710771087109711071117112711371147115711671177118711971207121712271237124712571267127712871297130713171327133713471357136713771387139714071417142714371447145714671477148714971507151715271537154715571567157715871597160716171627163716471657166716771687169717071717172717371747175717671777178717971807181718271837184718571867187718871897190719171927193719471957196719771987199720072017202720372047205720672077208720972107211721272137214721572167217721872197220722172227223722472257226722772287229723072317232723372347235723672377238723972407241724272437244724572467247724872497250725172527253725472557256725772587259726072617262726372647265726672677268726972707271727272737274727572767277727872797280728172827283728472857286728772887289729072917292729372947295729672977298729973007301730273037304730573067307730873097310731173127313731473157316731773187319732073217322732373247325732673277328732973307331733273337334733573367337733873397340734173427343734473457346734773487349735073517352735373547355735673577358735973607361736273637364736573667367736873697370737173727373737473757376737773787379738073817382738373847385738673877388738973907391739273937394739573967397739873997400740174027403740474057406740774087409741074117412741374147415741674177418741974207421742274237424742574267427742874297430743174327433743474357436743774387439744074417442744374447445744674477448744974507451745274537454745574567457745874597460746174627463746474657466746774687469747074717472747374747475747674777478747974807481748274837484748574867487748874897490749174927493749474957496749774987499750075017502750375047505750675077508750975107511751275137514751575167517751875197520752175227523752475257526752775287529753075317532753375347535753675377538753975407541754275437544754575467547754875497550755175527553755475557556755775587559756075617562756375647565756675677568756975707571757275737574757575767577757875797580758175827583758475857586758775887589759075917592759375947595759675977598759976007601760276037604760576067607760876097610761176127613761476157616761776187619762076217622762376247625762676277628762976307631763276337634763576367637763876397640764176427643764476457646764776487649765076517652765376547655765676577658765976607661766276637664766576667667766876697670767176727673767476757676767776787679768076817682768376847685768676877688768976907691769276937694769576967697769876997700770177027703770477057706770777087709771077117712771377147715771677177718771977207721772277237724772577267727772877297730773177327733773477357736773777387739774077417742774377447745774677477748774977507751775277537754775577567757775877597760776177627763776477657766776777687769777077717772777377747775777677777778777977807781778277837784778577867787778877897790779177927793779477957796779777987799780078017802780378047805780678077808780978107811781278137814781578167817781878197820782178227823782478257826782778287829783078317832783378347835783678377838783978407841784278437844784578467847784878497850785178527853785478557856785778587859786078617862786378647865786678677868786978707871787278737874787578767877787878797880788178827883788478857886788778887889789078917892789378947895789678977898789979007901790279037904790579067907790879097910791179127913791479157916791779187919792079217922792379247925792679277928792979307931793279337934793579367937793879397940794179427943794479457946794779487949795079517952795379547955795679577958795979607961796279637964796579667967796879697970797179727973797479757976797779787979798079817982798379847985798679877988798979907991799279937994799579967997799879998000800180028003800480058006800780088009801080118012801380148015801680178018801980208021802280238024802580268027802880298030803180328033803480358036803780388039804080418042804380448045804680478048804980508051805280538054805580568057805880598060806180628063806480658066806780688069807080718072807380748075807680778078807980808081808280838084808580868087808880898090809180928093809480958096809780988099810081018102810381048105810681078108810981108111811281138114811581168117811881198120812181228123812481258126812781288129813081318132813381348135813681378138813981408141814281438144814581468147814881498150815181528153815481558156815781588159816081618162816381648165816681678168816981708171817281738174817581768177817881798180818181828183818481858186818781888189819081918192819381948195819681978198819982008201820282038204820582068207820882098210821182128213821482158216821782188219822082218222822382248225822682278228822982308231823282338234823582368237823882398240824182428243824482458246824782488249825082518252825382548255825682578258825982608261826282638264826582668267826882698270827182728273827482758276827782788279828082818282828382848285828682878288828982908291829282938294829582968297829882998300830183028303830483058306830783088309831083118312831383148315831683178318831983208321832283238324832583268327832883298330833183328333833483358336833783388339834083418342834383448345834683478348834983508351835283538354835583568357835883598360836183628363836483658366836783688369837083718372837383748375837683778378837983808381838283838384838583868387838883898390839183928393839483958396839783988399840084018402840384048405840684078408840984108411841284138414841584168417841884198420842184228423842484258426842784288429843084318432843384348435843684378438843984408441844284438444844584468447844884498450845184528453845484558456845784588459846084618462846384648465846684678468846984708471847284738474847584768477847884798480848184828483848484858486848784888489849084918492849384948495849684978498849985008501850285038504850585068507850885098510851185128513851485158516851785188519852085218522852385248525852685278528852985308531853285338534853585368537853885398540854185428543854485458546854785488549855085518552855385548555855685578558855985608561856285638564856585668567856885698570857185728573857485758576857785788579858085818582858385848585858685878588858985908591859285938594859585968597859885998600860186028603860486058606860786088609861086118612861386148615861686178618861986208621862286238624862586268627862886298630863186328633863486358636863786388639864086418642864386448645864686478648864986508651865286538654865586568657865886598660866186628663866486658666866786688669867086718672867386748675867686778678867986808681868286838684868586868687868886898690869186928693869486958696869786988699870087018702870387048705870687078708870987108711871287138714871587168717871887198720872187228723872487258726872787288729873087318732873387348735873687378738873987408741874287438744874587468747874887498750875187528753875487558756875787588759876087618762876387648765876687678768876987708771877287738774877587768777877887798780878187828783878487858786878787888789879087918792879387948795879687978798879988008801880288038804880588068807880888098810881188128813881488158816881788188819882088218822882388248825882688278828882988308831883288338834883588368837883888398840884188428843884488458846884788488849885088518852885388548855885688578858885988608861886288638864886588668867886888698870887188728873887488758876887788788879888088818882888388848885888688878888888988908891889288938894889588968897889888998900890189028903890489058906890789088909891089118912891389148915891689178918891989208921892289238924892589268927892889298930893189328933893489358936893789388939894089418942894389448945894689478948894989508951895289538954895589568957895889598960896189628963896489658966896789688969897089718972897389748975897689778978897989808981898289838984898589868987898889898990899189928993899489958996899789988999900090019002900390049005900690079008900990109011901290139014901590169017901890199020902190229023902490259026902790289029903090319032903390349035903690379038903990409041904290439044904590469047904890499050905190529053905490559056905790589059906090619062906390649065906690679068906990709071907290739074907590769077907890799080908190829083908490859086908790889089909090919092909390949095909690979098909991009101910291039104910591069107910891099110911191129113911491159116911791189119912091219122912391249125912691279128912991309131913291339134913591369137913891399140914191429143914491459146914791489149915091519152915391549155915691579158915991609161916291639164916591669167916891699170917191729173917491759176917791789179918091819182918391849185918691879188918991909191919291939194919591969197919891999200920192029203920492059206920792089209921092119212921392149215921692179218921992209221922292239224922592269227922892299230923192329233923492359236923792389239924092419242924392449245924692479248924992509251925292539254925592569257925892599260926192629263926492659266926792689269927092719272927392749275927692779278927992809281928292839284928592869287928892899290929192929293929492959296929792989299930093019302930393049305930693079308930993109311931293139314931593169317931893199320932193229323932493259326932793289329933093319332933393349335933693379338933993409341934293439344934593469347934893499350935193529353935493559356935793589359936093619362936393649365936693679368936993709371937293739374937593769377937893799380938193829383938493859386938793889389939093919392939393949395939693979398939994009401940294039404940594069407940894099410941194129413941494159416941794189419942094219422942394249425942694279428942994309431943294339434943594369437943894399440944194429443944494459446944794489449945094519452945394549455945694579458945994609461946294639464946594669467946894699470947194729473947494759476947794789479948094819482948394849485948694879488948994909491949294939494949594969497949894999500950195029503950495059506950795089509951095119512951395149515951695179518951995209521952295239524952595269527952895299530953195329533953495359536953795389539954095419542954395449545954695479548954995509551955295539554955595569557955895599560956195629563956495659566956795689569957095719572957395749575957695779578957995809581958295839584958595869587958895899590959195929593959495959596959795989599960096019602960396049605960696079608960996109611961296139614961596169617961896199620962196229623962496259626962796289629963096319632963396349635963696379638963996409641964296439644964596469647964896499650965196529653965496559656965796589659966096619662966396649665966696679668966996709671967296739674967596769677967896799680968196829683968496859686968796889689969096919692969396949695969696979698969997009701970297039704970597069707970897099710971197129713971497159716971797189719972097219722972397249725972697279728972997309731973297339734973597369737973897399740974197429743974497459746974797489749975097519752975397549755975697579758975997609761976297639764976597669767976897699770977197729773977497759776977797789779978097819782978397849785978697879788978997909791979297939794979597969797979897999800980198029803980498059806980798089809981098119812981398149815981698179818981998209821982298239824982598269827982898299830983198329833983498359836983798389839984098419842984398449845984698479848984998509851985298539854985598569857985898599860986198629863986498659866986798689869987098719872987398749875987698779878987998809881988298839884988598869887988898899890989198929893989498959896989798989899990099019902990399049905990699079908990999109911991299139914991599169917991899199920992199229923992499259926992799289929993099319932993399349935993699379938993999409941994299439944994599469947994899499950995199529953995499559956995799589959996099619962996399649965996699679968996999709971997299739974997599769977997899799980998199829983998499859986998799889989999099919992999399949995999699979998999910000100011000210003100041000510006100071000810009100101001110012100131001410015100161001710018100191002010021100221002310024100251002610027100281002910030100311003210033100341003510036100371003810039100401004110042100431004410045100461004710048100491005010051100521005310054100551005610057100581005910060100611006210063100641006510066100671006810069100701007110072100731007410075100761007710078100791008010081100821008310084100851008610087100881008910090100911009210093100941009510096100971009810099101001010110102101031010410105101061010710108101091011010111101121011310114101151011610117101181011910120101211012210123101241012510126101271012810129101301013110132101331013410135101361013710138101391014010141101421014310144101451014610147101481014910150101511015210153101541015510156101571015810159101601016110162101631016410165101661016710168101691017010171101721017310174101751017610177101781017910180101811018210183101841018510186101871018810189101901019110192101931019410195101961019710198101991020010201102021020310204102051020610207102081020910210102111021210213102141021510216102171021810219102201022110222102231022410225102261022710228102291023010231102321023310234102351023610237102381023910240102411024210243102441024510246102471024810249102501025110252102531025410255102561025710258102591026010261102621026310264102651026610267102681026910270102711027210273102741027510276102771027810279102801028110282102831028410285102861028710288102891029010291102921029310294102951029610297102981029910300103011030210303103041030510306103071030810309103101031110312103131031410315103161031710318103191032010321103221032310324103251032610327103281032910330103311033210333103341033510336103371033810339103401034110342103431034410345103461034710348103491035010351103521035310354103551035610357103581035910360103611036210363103641036510366103671036810369103701037110372103731037410375103761037710378103791038010381103821038310384103851038610387103881038910390103911039210393103941039510396103971039810399104001040110402104031040410405104061040710408104091041010411104121041310414104151041610417104181041910420104211042210423104241042510426104271042810429104301043110432104331043410435104361043710438104391044010441104421044310444104451044610447104481044910450104511045210453104541045510456104571045810459104601046110462104631046410465104661046710468104691047010471104721047310474104751047610477104781047910480104811048210483104841048510486104871048810489104901049110492104931049410495104961049710498104991050010501105021050310504105051050610507105081050910510105111051210513105141051510516105171051810519105201052110522105231052410525105261052710528105291053010531105321053310534105351053610537105381053910540105411054210543105441054510546105471054810549105501055110552105531055410555105561055710558105591056010561105621056310564105651056610567105681056910570105711057210573105741057510576105771057810579105801058110582105831058410585105861058710588105891059010591105921059310594105951059610597105981059910600106011060210603106041060510606106071060810609106101061110612106131061410615106161061710618106191062010621106221062310624106251062610627106281062910630106311063210633106341063510636106371063810639106401064110642106431064410645106461064710648106491065010651106521065310654106551065610657106581065910660106611066210663106641066510666106671066810669106701067110672106731067410675106761067710678106791068010681106821068310684106851068610687106881068910690106911069210693106941069510696106971069810699107001070110702107031070410705107061070710708107091071010711107121071310714107151071610717107181071910720107211072210723107241072510726107271072810729107301073110732107331073410735107361073710738107391074010741107421074310744107451074610747107481074910750107511075210753107541075510756107571075810759107601076110762107631076410765107661076710768107691077010771107721077310774107751077610777107781077910780107811078210783107841078510786107871078810789107901079110792107931079410795107961079710798107991080010801108021080310804108051080610807108081080910810108111081210813108141081510816108171081810819108201082110822108231082410825108261082710828108291083010831108321083310834108351083610837108381083910840108411084210843108441084510846108471084810849108501085110852108531085410855108561085710858108591086010861108621086310864108651086610867108681086910870108711087210873108741087510876108771087810879108801088110882108831088410885108861088710888108891089010891108921089310894108951089610897108981089910900109011090210903109041090510906109071090810909109101091110912109131091410915109161091710918109191092010921109221092310924109251092610927109281092910930109311093210933109341093510936109371093810939109401094110942109431094410945109461094710948109491095010951109521095310954109551095610957109581095910960109611096210963109641096510966109671096810969109701097110972109731097410975109761097710978109791098010981109821098310984109851098610987109881098910990109911099210993109941099510996109971099810999110001100111002110031100411005110061100711008110091101011011110121101311014110151101611017110181101911020110211102211023110241102511026110271102811029110301103111032110331103411035110361103711038110391104011041110421104311044110451104611047110481104911050110511105211053110541105511056110571105811059110601106111062110631106411065110661106711068110691107011071110721107311074110751107611077110781107911080110811108211083110841108511086110871108811089110901109111092110931109411095110961109711098110991110011101111021110311104111051110611107111081110911110111111111211113111141111511116111171111811119111201112111122111231112411125111261112711128111291113011131111321113311134111351113611137111381113911140111411114211143111441114511146111471114811149111501115111152111531115411155111561115711158111591116011161111621116311164111651116611167111681116911170111711117211173111741117511176111771117811179111801118111182111831118411185111861118711188111891119011191111921119311194111951119611197111981119911200112011120211203112041120511206112071120811209112101121111212112131121411215112161121711218112191122011221112221122311224112251122611227112281122911230112311123211233112341123511236112371123811239112401124111242112431124411245112461124711248112491125011251112521125311254112551125611257112581125911260112611126211263112641126511266112671126811269112701127111272112731127411275112761127711278112791128011281112821128311284112851128611287112881128911290112911129211293112941129511296112971129811299113001130111302113031130411305113061130711308113091131011311113121131311314113151131611317113181131911320113211132211323113241132511326113271132811329113301133111332113331133411335113361133711338113391134011341113421134311344113451134611347113481134911350113511135211353113541135511356113571135811359113601136111362113631136411365113661136711368113691137011371113721137311374113751137611377113781137911380113811138211383113841138511386113871138811389113901139111392113931139411395113961139711398113991140011401114021140311404114051140611407114081140911410114111141211413114141141511416114171141811419114201142111422114231142411425114261142711428114291143011431114321143311434114351143611437114381143911440114411144211443114441144511446114471144811449114501145111452114531145411455114561145711458114591146011461114621146311464114651146611467114681146911470114711147211473114741147511476114771147811479114801148111482114831148411485114861148711488114891149011491114921149311494114951149611497114981149911500115011150211503115041150511506115071150811509115101151111512115131151411515115161151711518115191152011521115221152311524115251152611527115281152911530115311153211533115341153511536115371153811539115401154111542115431154411545115461154711548115491155011551115521155311554115551155611557115581155911560115611156211563115641156511566115671156811569115701157111572115731157411575115761157711578115791158011581115821158311584115851158611587115881158911590115911159211593115941159511596115971159811599116001160111602116031160411605116061160711608116091161011611116121161311614116151161611617116181161911620116211162211623116241162511626116271162811629116301163111632116331163411635116361163711638116391164011641116421164311644116451164611647116481164911650116511165211653116541165511656116571165811659116601166111662116631166411665116661166711668116691167011671116721167311674116751167611677116781167911680116811168211683116841168511686116871168811689116901169111692116931169411695116961169711698116991170011701117021170311704117051170611707117081170911710117111171211713117141171511716117171171811719117201172111722117231172411725117261172711728117291173011731117321173311734117351173611737117381173911740117411174211743117441174511746117471174811749117501175111752117531175411755117561175711758117591176011761117621176311764117651176611767117681176911770117711177211773117741177511776117771177811779117801178111782117831178411785117861178711788117891179011791117921179311794117951179611797117981179911800118011180211803118041180511806118071180811809118101181111812118131181411815118161181711818118191182011821118221182311824118251182611827118281182911830118311183211833118341183511836118371183811839118401184111842118431184411845118461184711848118491185011851118521185311854118551185611857118581185911860118611186211863118641186511866118671186811869118701187111872118731187411875118761187711878118791188011881118821188311884118851188611887118881188911890118911189211893118941189511896118971189811899119001190111902119031190411905119061190711908119091191011911119121191311914119151191611917119181191911920119211192211923119241192511926119271192811929119301193111932119331193411935119361193711938119391194011941119421194311944119451194611947119481194911950119511195211953119541195511956119571195811959119601196111962119631196411965119661196711968119691197011971119721197311974119751197611977119781197911980119811198211983119841198511986119871198811989119901199111992119931199411995119961199711998119991200012001120021200312004120051200612007120081200912010120111201212013120141201512016120171201812019120201202112022120231202412025120261202712028120291203012031120321203312034120351203612037120381203912040120411204212043120441204512046120471204812049120501205112052120531205412055120561205712058120591206012061120621206312064120651206612067120681206912070120711207212073120741207512076120771207812079120801208112082120831208412085120861208712088120891209012091120921209312094120951209612097120981209912100121011210212103121041210512106121071210812109121101211112112121131211412115121161211712118121191212012121121221212312124121251212612127121281212912130121311213212133121341213512136121371213812139121401214112142121431214412145121461214712148121491215012151121521215312154121551215612157121581215912160121611216212163121641216512166121671216812169121701217112172121731217412175121761217712178121791218012181121821218312184121851218612187121881218912190121911219212193121941219512196121971219812199122001220112202122031220412205122061220712208122091221012211122121221312214122151221612217122181221912220122211222212223122241222512226122271222812229122301223112232122331223412235122361223712238122391224012241122421224312244122451224612247122481224912250122511225212253122541225512256122571225812259122601226112262122631226412265122661226712268122691227012271122721227312274122751227612277122781227912280122811228212283122841228512286122871228812289122901229112292122931229412295122961229712298122991230012301123021230312304123051230612307123081230912310123111231212313123141231512316123171231812319123201232112322123231232412325123261232712328123291233012331123321233312334123351233612337123381233912340123411234212343123441234512346123471234812349123501235112352123531235412355123561235712358123591236012361123621236312364123651236612367123681236912370123711237212373123741237512376123771237812379123801238112382123831238412385123861238712388123891239012391123921239312394123951239612397123981239912400124011240212403124041240512406124071240812409124101241112412124131241412415124161241712418124191242012421124221242312424124251242612427124281242912430124311243212433124341243512436
  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": "1c2031518d90d8efedbecea6a76848c4",
  8. "packages": [
  9. {
  10. "name": "alchemy/zippy",
  11. "version": "0.4.3",
  12. "source": {
  13. "type": "git",
  14. "url": "https://github.com/alchemy-fr/Zippy.git",
  15. "reference": "5ffdc93de0af2770d396bf433d8b2667c77277ea"
  16. },
  17. "dist": {
  18. "type": "zip",
  19. "url": "https://api.github.com/repos/alchemy-fr/Zippy/zipball/5ffdc93de0af2770d396bf433d8b2667c77277ea",
  20. "reference": "5ffdc93de0af2770d396bf433d8b2667c77277ea",
  21. "shasum": ""
  22. },
  23. "require": {
  24. "doctrine/collections": "~1.0",
  25. "ext-mbstring": "*",
  26. "php": ">=5.5",
  27. "symfony/filesystem": "^2.0.5|^3.0",
  28. "symfony/process": "^2.1|^3.0"
  29. },
  30. "require-dev": {
  31. "ext-zip": "*",
  32. "guzzle/guzzle": "~3.0",
  33. "guzzlehttp/guzzle": "^6.0",
  34. "phpunit/phpunit": "^4.0|^5.0",
  35. "symfony/finder": "^2.0.5|^3.0"
  36. },
  37. "suggest": {
  38. "ext-zip": "To use the ZipExtensionAdapter",
  39. "guzzle/guzzle": "To use the GuzzleTeleporter with Guzzle 3",
  40. "guzzlehttp/guzzle": "To use the GuzzleTeleporter with Guzzle 6"
  41. },
  42. "type": "library",
  43. "extra": {
  44. "branch-alias": {
  45. "dev-master": "0.4.x-dev"
  46. }
  47. },
  48. "autoload": {
  49. "psr-4": {
  50. "Alchemy\\Zippy\\": "src/"
  51. }
  52. },
  53. "notification-url": "https://packagist.org/downloads/",
  54. "license": [
  55. "MIT"
  56. ],
  57. "authors": [
  58. {
  59. "name": "Alchemy",
  60. "email": "dev.team@alchemy.fr",
  61. "homepage": "http://www.alchemy.fr/"
  62. }
  63. ],
  64. "description": "Zippy, the archive manager companion",
  65. "keywords": [
  66. "bzip",
  67. "compression",
  68. "tar",
  69. "zip"
  70. ],
  71. "time": "2016-11-03T16:10:31+00:00"
  72. },
  73. {
  74. "name": "asm89/stack-cors",
  75. "version": "1.2.0",
  76. "source": {
  77. "type": "git",
  78. "url": "https://github.com/asm89/stack-cors.git",
  79. "reference": "c163e2b614550aedcf71165db2473d936abbced6"
  80. },
  81. "dist": {
  82. "type": "zip",
  83. "url": "https://api.github.com/repos/asm89/stack-cors/zipball/c163e2b614550aedcf71165db2473d936abbced6",
  84. "reference": "c163e2b614550aedcf71165db2473d936abbced6",
  85. "shasum": ""
  86. },
  87. "require": {
  88. "php": ">=5.5.9",
  89. "symfony/http-foundation": "~2.7|~3.0|~4.0",
  90. "symfony/http-kernel": "~2.7|~3.0|~4.0"
  91. },
  92. "require-dev": {
  93. "phpunit/phpunit": "^5.0 || ^4.8.10",
  94. "squizlabs/php_codesniffer": "^2.3"
  95. },
  96. "type": "library",
  97. "extra": {
  98. "branch-alias": {
  99. "dev-master": "1.2-dev"
  100. }
  101. },
  102. "autoload": {
  103. "psr-4": {
  104. "Asm89\\Stack\\": "src/Asm89/Stack/"
  105. }
  106. },
  107. "notification-url": "https://packagist.org/downloads/",
  108. "license": [
  109. "MIT"
  110. ],
  111. "authors": [
  112. {
  113. "name": "Alexander",
  114. "email": "iam.asm89@gmail.com"
  115. }
  116. ],
  117. "description": "Cross-origin resource sharing library and stack middleware",
  118. "homepage": "https://github.com/asm89/stack-cors",
  119. "keywords": [
  120. "cors",
  121. "stack"
  122. ],
  123. "time": "2017-12-20T14:37:45+00:00"
  124. },
  125. {
  126. "name": "chi-teck/drupal-code-generator",
  127. "version": "1.27.0",
  128. "source": {
  129. "type": "git",
  130. "url": "https://github.com/Chi-teck/drupal-code-generator.git",
  131. "reference": "a839bc89d385087d8a7a96a9c1c4bd470ffb627e"
  132. },
  133. "dist": {
  134. "type": "zip",
  135. "url": "https://api.github.com/repos/Chi-teck/drupal-code-generator/zipball/a839bc89d385087d8a7a96a9c1c4bd470ffb627e",
  136. "reference": "a839bc89d385087d8a7a96a9c1c4bd470ffb627e",
  137. "shasum": ""
  138. },
  139. "require": {
  140. "ext-json": "*",
  141. "php": ">=5.5.9",
  142. "symfony/console": "~2.7|^3",
  143. "symfony/filesystem": "~2.7|^3",
  144. "twig/twig": "^1.23.1"
  145. },
  146. "bin": [
  147. "bin/dcg"
  148. ],
  149. "type": "library",
  150. "extra": {
  151. "branch-alias": {
  152. "dev-master": "1.x-dev"
  153. }
  154. },
  155. "autoload": {
  156. "files": [
  157. "src/bootstrap.php"
  158. ],
  159. "psr-4": {
  160. "DrupalCodeGenerator\\": "src"
  161. }
  162. },
  163. "notification-url": "https://packagist.org/downloads/",
  164. "license": [
  165. "GPL-2.0-or-later"
  166. ],
  167. "description": "Drupal code generator",
  168. "time": "2018-10-11T08:05:59+00:00"
  169. },
  170. {
  171. "name": "commerceguys/addressing",
  172. "version": "v1.0.2",
  173. "source": {
  174. "type": "git",
  175. "url": "https://github.com/commerceguys/addressing.git",
  176. "reference": "f23ce2596ccfb47bcdaa9d14fbf9b4f699dc3d4b"
  177. },
  178. "dist": {
  179. "type": "zip",
  180. "url": "https://api.github.com/repos/commerceguys/addressing/zipball/f23ce2596ccfb47bcdaa9d14fbf9b4f699dc3d4b",
  181. "reference": "f23ce2596ccfb47bcdaa9d14fbf9b4f699dc3d4b",
  182. "shasum": ""
  183. },
  184. "require": {
  185. "doctrine/collections": "~1.0",
  186. "php": ">=5.5.0"
  187. },
  188. "require-dev": {
  189. "mikey179/vfsstream": "1.*",
  190. "phpunit/phpunit": "~4.0",
  191. "squizlabs/php_codesniffer": "2.*",
  192. "symfony/validator": ">=3.2"
  193. },
  194. "suggest": {
  195. "symfony/validator": "to validate addresses"
  196. },
  197. "type": "library",
  198. "extra": {
  199. "branch-alias": {
  200. "dev-master": "1.x-dev"
  201. }
  202. },
  203. "autoload": {
  204. "psr-4": {
  205. "CommerceGuys\\Addressing\\": "src"
  206. }
  207. },
  208. "notification-url": "https://packagist.org/downloads/",
  209. "license": [
  210. "MIT"
  211. ],
  212. "authors": [
  213. {
  214. "name": "Bojan Zivanovic"
  215. },
  216. {
  217. "name": "Damien Tournoud"
  218. }
  219. ],
  220. "description": "Addressing library powered by CLDR and Google's address data.",
  221. "keywords": [
  222. "address",
  223. "internationalization",
  224. "localization",
  225. "postal"
  226. ],
  227. "time": "2018-10-21T23:38:05+00:00"
  228. },
  229. {
  230. "name": "composer/installers",
  231. "version": "v1.6.0",
  232. "source": {
  233. "type": "git",
  234. "url": "https://github.com/composer/installers.git",
  235. "reference": "cfcca6b1b60bc4974324efb5783c13dca6932b5b"
  236. },
  237. "dist": {
  238. "type": "zip",
  239. "url": "https://api.github.com/repos/composer/installers/zipball/cfcca6b1b60bc4974324efb5783c13dca6932b5b",
  240. "reference": "cfcca6b1b60bc4974324efb5783c13dca6932b5b",
  241. "shasum": ""
  242. },
  243. "require": {
  244. "composer-plugin-api": "^1.0"
  245. },
  246. "replace": {
  247. "roundcube/plugin-installer": "*",
  248. "shama/baton": "*"
  249. },
  250. "require-dev": {
  251. "composer/composer": "1.0.*@dev",
  252. "phpunit/phpunit": "^4.8.36"
  253. },
  254. "type": "composer-plugin",
  255. "extra": {
  256. "class": "Composer\\Installers\\Plugin",
  257. "branch-alias": {
  258. "dev-master": "1.0-dev"
  259. }
  260. },
  261. "autoload": {
  262. "psr-4": {
  263. "Composer\\Installers\\": "src/Composer/Installers"
  264. }
  265. },
  266. "notification-url": "https://packagist.org/downloads/",
  267. "license": [
  268. "MIT"
  269. ],
  270. "authors": [
  271. {
  272. "name": "Kyle Robinson Young",
  273. "email": "kyle@dontkry.com",
  274. "homepage": "https://github.com/shama"
  275. }
  276. ],
  277. "description": "A multi-framework Composer library installer",
  278. "homepage": "https://composer.github.io/installers/",
  279. "keywords": [
  280. "Craft",
  281. "Dolibarr",
  282. "Eliasis",
  283. "Hurad",
  284. "ImageCMS",
  285. "Kanboard",
  286. "Lan Management System",
  287. "MODX Evo",
  288. "Mautic",
  289. "Maya",
  290. "OXID",
  291. "Plentymarkets",
  292. "Porto",
  293. "RadPHP",
  294. "SMF",
  295. "Thelia",
  296. "WolfCMS",
  297. "agl",
  298. "aimeos",
  299. "annotatecms",
  300. "attogram",
  301. "bitrix",
  302. "cakephp",
  303. "chef",
  304. "cockpit",
  305. "codeigniter",
  306. "concrete5",
  307. "croogo",
  308. "dokuwiki",
  309. "drupal",
  310. "eZ Platform",
  311. "elgg",
  312. "expressionengine",
  313. "fuelphp",
  314. "grav",
  315. "installer",
  316. "itop",
  317. "joomla",
  318. "kohana",
  319. "laravel",
  320. "lavalite",
  321. "lithium",
  322. "magento",
  323. "majima",
  324. "mako",
  325. "mediawiki",
  326. "modulework",
  327. "modx",
  328. "moodle",
  329. "osclass",
  330. "phpbb",
  331. "piwik",
  332. "ppi",
  333. "puppet",
  334. "pxcms",
  335. "reindex",
  336. "roundcube",
  337. "shopware",
  338. "silverstripe",
  339. "sydes",
  340. "symfony",
  341. "typo3",
  342. "wordpress",
  343. "yawik",
  344. "zend",
  345. "zikula"
  346. ],
  347. "time": "2018-08-27T06:10:37+00:00"
  348. },
  349. {
  350. "name": "composer/semver",
  351. "version": "1.4.2",
  352. "source": {
  353. "type": "git",
  354. "url": "https://github.com/composer/semver.git",
  355. "reference": "c7cb9a2095a074d131b65a8a0cd294479d785573"
  356. },
  357. "dist": {
  358. "type": "zip",
  359. "url": "https://api.github.com/repos/composer/semver/zipball/c7cb9a2095a074d131b65a8a0cd294479d785573",
  360. "reference": "c7cb9a2095a074d131b65a8a0cd294479d785573",
  361. "shasum": ""
  362. },
  363. "require": {
  364. "php": "^5.3.2 || ^7.0"
  365. },
  366. "require-dev": {
  367. "phpunit/phpunit": "^4.5 || ^5.0.5",
  368. "phpunit/phpunit-mock-objects": "2.3.0 || ^3.0"
  369. },
  370. "type": "library",
  371. "extra": {
  372. "branch-alias": {
  373. "dev-master": "1.x-dev"
  374. }
  375. },
  376. "autoload": {
  377. "psr-4": {
  378. "Composer\\Semver\\": "src"
  379. }
  380. },
  381. "notification-url": "https://packagist.org/downloads/",
  382. "license": [
  383. "MIT"
  384. ],
  385. "authors": [
  386. {
  387. "name": "Nils Adermann",
  388. "email": "naderman@naderman.de",
  389. "homepage": "http://www.naderman.de"
  390. },
  391. {
  392. "name": "Jordi Boggiano",
  393. "email": "j.boggiano@seld.be",
  394. "homepage": "http://seld.be"
  395. },
  396. {
  397. "name": "Rob Bast",
  398. "email": "rob.bast@gmail.com",
  399. "homepage": "http://robbast.nl"
  400. }
  401. ],
  402. "description": "Semver library that offers utilities, version constraint parsing and validation.",
  403. "keywords": [
  404. "semantic",
  405. "semver",
  406. "validation",
  407. "versioning"
  408. ],
  409. "time": "2016-08-30T16:08:34+00:00"
  410. },
  411. {
  412. "name": "consolidation/annotated-command",
  413. "version": "2.9.1",
  414. "source": {
  415. "type": "git",
  416. "url": "https://github.com/consolidation/annotated-command.git",
  417. "reference": "4bdbb8fa149e1cc1511bd77b0bc4729fd66bccac"
  418. },
  419. "dist": {
  420. "type": "zip",
  421. "url": "https://api.github.com/repos/consolidation/annotated-command/zipball/4bdbb8fa149e1cc1511bd77b0bc4729fd66bccac",
  422. "reference": "4bdbb8fa149e1cc1511bd77b0bc4729fd66bccac",
  423. "shasum": ""
  424. },
  425. "require": {
  426. "consolidation/output-formatters": "^3.1.12",
  427. "php": ">=5.4.0",
  428. "psr/log": "^1",
  429. "symfony/console": "^2.8|^3|^4",
  430. "symfony/event-dispatcher": "^2.5|^3|^4",
  431. "symfony/finder": "^2.5|^3|^4"
  432. },
  433. "require-dev": {
  434. "g1a/composer-test-scenarios": "^2",
  435. "phpunit/phpunit": "^6",
  436. "satooshi/php-coveralls": "^2",
  437. "squizlabs/php_codesniffer": "^2.7"
  438. },
  439. "type": "library",
  440. "extra": {
  441. "branch-alias": {
  442. "dev-master": "2.x-dev"
  443. }
  444. },
  445. "autoload": {
  446. "psr-4": {
  447. "Consolidation\\AnnotatedCommand\\": "src"
  448. }
  449. },
  450. "notification-url": "https://packagist.org/downloads/",
  451. "license": [
  452. "MIT"
  453. ],
  454. "authors": [
  455. {
  456. "name": "Greg Anderson",
  457. "email": "greg.1.anderson@greenknowe.org"
  458. }
  459. ],
  460. "description": "Initialize Symfony Console commands from annotated command class methods.",
  461. "time": "2018-09-19T17:47:18+00:00"
  462. },
  463. {
  464. "name": "consolidation/config",
  465. "version": "1.1.1",
  466. "source": {
  467. "type": "git",
  468. "url": "https://github.com/consolidation/config.git",
  469. "reference": "925231dfff32f05b787e1fddb265e789b939cf4c"
  470. },
  471. "dist": {
  472. "type": "zip",
  473. "url": "https://api.github.com/repos/consolidation/config/zipball/925231dfff32f05b787e1fddb265e789b939cf4c",
  474. "reference": "925231dfff32f05b787e1fddb265e789b939cf4c",
  475. "shasum": ""
  476. },
  477. "require": {
  478. "dflydev/dot-access-data": "^1.1.0",
  479. "grasmash/expander": "^1",
  480. "php": ">=5.4.0"
  481. },
  482. "require-dev": {
  483. "g1a/composer-test-scenarios": "^1",
  484. "phpunit/phpunit": "^5",
  485. "satooshi/php-coveralls": "^1.0",
  486. "squizlabs/php_codesniffer": "2.*",
  487. "symfony/console": "^2.5|^3|^4",
  488. "symfony/yaml": "^2.8.11|^3|^4"
  489. },
  490. "suggest": {
  491. "symfony/yaml": "Required to use Consolidation\\Config\\Loader\\YamlConfigLoader"
  492. },
  493. "type": "library",
  494. "extra": {
  495. "branch-alias": {
  496. "dev-master": "1.x-dev"
  497. }
  498. },
  499. "autoload": {
  500. "psr-4": {
  501. "Consolidation\\Config\\": "src"
  502. }
  503. },
  504. "notification-url": "https://packagist.org/downloads/",
  505. "license": [
  506. "MIT"
  507. ],
  508. "authors": [
  509. {
  510. "name": "Greg Anderson",
  511. "email": "greg.1.anderson@greenknowe.org"
  512. }
  513. ],
  514. "description": "Provide configuration services for a commandline tool.",
  515. "time": "2018-10-24T17:55:35+00:00"
  516. },
  517. {
  518. "name": "consolidation/log",
  519. "version": "1.0.6",
  520. "source": {
  521. "type": "git",
  522. "url": "https://github.com/consolidation/log.git",
  523. "reference": "dfd8189a771fe047bf3cd669111b2de5f1c79395"
  524. },
  525. "dist": {
  526. "type": "zip",
  527. "url": "https://api.github.com/repos/consolidation/log/zipball/dfd8189a771fe047bf3cd669111b2de5f1c79395",
  528. "reference": "dfd8189a771fe047bf3cd669111b2de5f1c79395",
  529. "shasum": ""
  530. },
  531. "require": {
  532. "php": ">=5.5.0",
  533. "psr/log": "~1.0",
  534. "symfony/console": "^2.8|^3|^4"
  535. },
  536. "require-dev": {
  537. "g1a/composer-test-scenarios": "^1",
  538. "phpunit/phpunit": "4.*",
  539. "satooshi/php-coveralls": "^2",
  540. "squizlabs/php_codesniffer": "2.*"
  541. },
  542. "type": "library",
  543. "extra": {
  544. "branch-alias": {
  545. "dev-master": "1.x-dev"
  546. }
  547. },
  548. "autoload": {
  549. "psr-4": {
  550. "Consolidation\\Log\\": "src"
  551. }
  552. },
  553. "notification-url": "https://packagist.org/downloads/",
  554. "license": [
  555. "MIT"
  556. ],
  557. "authors": [
  558. {
  559. "name": "Greg Anderson",
  560. "email": "greg.1.anderson@greenknowe.org"
  561. }
  562. ],
  563. "description": "Improved Psr-3 / Psr\\Log logger based on Symfony Console components.",
  564. "time": "2018-05-25T18:14:39+00:00"
  565. },
  566. {
  567. "name": "consolidation/output-formatters",
  568. "version": "3.4.0",
  569. "source": {
  570. "type": "git",
  571. "url": "https://github.com/consolidation/output-formatters.git",
  572. "reference": "a942680232094c4a5b21c0b7e54c20cce623ae19"
  573. },
  574. "dist": {
  575. "type": "zip",
  576. "url": "https://api.github.com/repos/consolidation/output-formatters/zipball/a942680232094c4a5b21c0b7e54c20cce623ae19",
  577. "reference": "a942680232094c4a5b21c0b7e54c20cce623ae19",
  578. "shasum": ""
  579. },
  580. "require": {
  581. "dflydev/dot-access-data": "^1.1.0",
  582. "php": ">=5.4.0",
  583. "symfony/console": "^2.8|^3|^4",
  584. "symfony/finder": "^2.5|^3|^4"
  585. },
  586. "require-dev": {
  587. "g1a/composer-test-scenarios": "^2",
  588. "phpunit/phpunit": "^5.7.27",
  589. "satooshi/php-coveralls": "^2",
  590. "squizlabs/php_codesniffer": "^2.7",
  591. "symfony/console": "3.2.3",
  592. "symfony/var-dumper": "^2.8|^3|^4",
  593. "victorjonsson/markdowndocs": "^1.3"
  594. },
  595. "suggest": {
  596. "symfony/var-dumper": "For using the var_dump formatter"
  597. },
  598. "type": "library",
  599. "extra": {
  600. "branch-alias": {
  601. "dev-master": "3.x-dev"
  602. }
  603. },
  604. "autoload": {
  605. "psr-4": {
  606. "Consolidation\\OutputFormatters\\": "src"
  607. }
  608. },
  609. "notification-url": "https://packagist.org/downloads/",
  610. "license": [
  611. "MIT"
  612. ],
  613. "authors": [
  614. {
  615. "name": "Greg Anderson",
  616. "email": "greg.1.anderson@greenknowe.org"
  617. }
  618. ],
  619. "description": "Format text by applying transformations provided by plug-in formatters.",
  620. "time": "2018-10-19T22:35:38+00:00"
  621. },
  622. {
  623. "name": "consolidation/robo",
  624. "version": "1.3.1",
  625. "source": {
  626. "type": "git",
  627. "url": "https://github.com/consolidation/Robo.git",
  628. "reference": "31f2d2562c4e1dcde70f2659eefd59aa9c7f5b2d"
  629. },
  630. "dist": {
  631. "type": "zip",
  632. "url": "https://api.github.com/repos/consolidation/Robo/zipball/31f2d2562c4e1dcde70f2659eefd59aa9c7f5b2d",
  633. "reference": "31f2d2562c4e1dcde70f2659eefd59aa9c7f5b2d",
  634. "shasum": ""
  635. },
  636. "require": {
  637. "consolidation/annotated-command": "^2.8.2",
  638. "consolidation/config": "^1.0.10",
  639. "consolidation/log": "~1",
  640. "consolidation/output-formatters": "^3.1.13",
  641. "consolidation/self-update": "^1",
  642. "g1a/composer-test-scenarios": "^2",
  643. "grasmash/yaml-expander": "^1.3",
  644. "league/container": "^2.2",
  645. "php": ">=5.5.0",
  646. "symfony/console": "^2.8|^3|^4",
  647. "symfony/event-dispatcher": "^2.5|^3|^4",
  648. "symfony/filesystem": "^2.5|^3|^4",
  649. "symfony/finder": "^2.5|^3|^4",
  650. "symfony/process": "^2.5|^3|^4"
  651. },
  652. "replace": {
  653. "codegyre/robo": "< 1.0"
  654. },
  655. "require-dev": {
  656. "codeception/aspect-mock": "^1|^2.1.1",
  657. "codeception/base": "^2.3.7",
  658. "codeception/verify": "^0.3.2",
  659. "goaop/framework": "~2.1.2",
  660. "goaop/parser-reflection": "^1.1.0",
  661. "natxet/cssmin": "3.0.4",
  662. "nikic/php-parser": "^3.1.5",
  663. "patchwork/jsqueeze": "~2",
  664. "pear/archive_tar": "^1.4.2",
  665. "phpunit/php-code-coverage": "~2|~4",
  666. "satooshi/php-coveralls": "^2",
  667. "squizlabs/php_codesniffer": "^2.8"
  668. },
  669. "suggest": {
  670. "henrikbjorn/lurker": "For monitoring filesystem changes in taskWatch",
  671. "natxet/CssMin": "For minifying CSS files in taskMinify",
  672. "patchwork/jsqueeze": "For minifying JS files in taskMinify",
  673. "pear/archive_tar": "Allows tar archives to be created and extracted in taskPack and taskExtract, respectively."
  674. },
  675. "bin": [
  676. "robo"
  677. ],
  678. "type": "library",
  679. "extra": {
  680. "branch-alias": {
  681. "dev-master": "1.x-dev",
  682. "dev-state": "1.x-dev"
  683. }
  684. },
  685. "autoload": {
  686. "psr-4": {
  687. "Robo\\": "src"
  688. }
  689. },
  690. "notification-url": "https://packagist.org/downloads/",
  691. "license": [
  692. "MIT"
  693. ],
  694. "authors": [
  695. {
  696. "name": "Davert",
  697. "email": "davert.php@resend.cc"
  698. }
  699. ],
  700. "description": "Modern task runner",
  701. "time": "2018-08-17T18:44:18+00:00"
  702. },
  703. {
  704. "name": "consolidation/self-update",
  705. "version": "1.1.5",
  706. "source": {
  707. "type": "git",
  708. "url": "https://github.com/consolidation/self-update.git",
  709. "reference": "a1c273b14ce334789825a09d06d4c87c0a02ad54"
  710. },
  711. "dist": {
  712. "type": "zip",
  713. "url": "https://api.github.com/repos/consolidation/self-update/zipball/a1c273b14ce334789825a09d06d4c87c0a02ad54",
  714. "reference": "a1c273b14ce334789825a09d06d4c87c0a02ad54",
  715. "shasum": ""
  716. },
  717. "require": {
  718. "php": ">=5.5.0",
  719. "symfony/console": "^2.8|^3|^4",
  720. "symfony/filesystem": "^2.5|^3|^4"
  721. },
  722. "bin": [
  723. "scripts/release"
  724. ],
  725. "type": "library",
  726. "extra": {
  727. "branch-alias": {
  728. "dev-master": "1.x-dev"
  729. }
  730. },
  731. "autoload": {
  732. "psr-4": {
  733. "SelfUpdate\\": "src"
  734. }
  735. },
  736. "notification-url": "https://packagist.org/downloads/",
  737. "license": [
  738. "MIT"
  739. ],
  740. "authors": [
  741. {
  742. "name": "Greg Anderson",
  743. "email": "greg.1.anderson@greenknowe.org"
  744. },
  745. {
  746. "name": "Alexander Menk",
  747. "email": "menk@mestrona.net"
  748. }
  749. ],
  750. "description": "Provides a self:update command for Symfony Console applications.",
  751. "time": "2018-10-28T01:52:03+00:00"
  752. },
  753. {
  754. "name": "consolidation/site-alias",
  755. "version": "1.1.9",
  756. "source": {
  757. "type": "git",
  758. "url": "https://github.com/consolidation/site-alias.git",
  759. "reference": "0a4c49f91e44b0b7bb288f3547875a136a7ed704"
  760. },
  761. "dist": {
  762. "type": "zip",
  763. "url": "https://api.github.com/repos/consolidation/site-alias/zipball/0a4c49f91e44b0b7bb288f3547875a136a7ed704",
  764. "reference": "0a4c49f91e44b0b7bb288f3547875a136a7ed704",
  765. "shasum": ""
  766. },
  767. "require": {
  768. "php": ">=5.5.0"
  769. },
  770. "require-dev": {
  771. "consolidation/robo": "^1.2.3",
  772. "g1a/composer-test-scenarios": "^2",
  773. "knplabs/github-api": "^2.7",
  774. "php-http/guzzle6-adapter": "^1.1",
  775. "phpunit/phpunit": "^5",
  776. "satooshi/php-coveralls": "^2",
  777. "squizlabs/php_codesniffer": "^2.8",
  778. "symfony/console": "^2.8|^3|^4",
  779. "symfony/yaml": "~2.3|^3"
  780. },
  781. "type": "library",
  782. "extra": {
  783. "branch-alias": {
  784. "dev-master": "1.x-dev"
  785. }
  786. },
  787. "autoload": {
  788. "psr-4": {
  789. "Consolidation\\SiteAlias\\": "src"
  790. }
  791. },
  792. "notification-url": "https://packagist.org/downloads/",
  793. "license": [
  794. "MIT"
  795. ],
  796. "authors": [
  797. {
  798. "name": "Moshe Weitzman",
  799. "email": "weitzman@tejasa.com"
  800. },
  801. {
  802. "name": "Greg Anderson",
  803. "email": "greg.1.anderson@greenknowe.org"
  804. }
  805. ],
  806. "description": "Manage alias records for local and remote sites.",
  807. "time": "2018-10-31T01:29:05+00:00"
  808. },
  809. {
  810. "name": "container-interop/container-interop",
  811. "version": "1.2.0",
  812. "source": {
  813. "type": "git",
  814. "url": "https://github.com/container-interop/container-interop.git",
  815. "reference": "79cbf1341c22ec75643d841642dd5d6acd83bdb8"
  816. },
  817. "dist": {
  818. "type": "zip",
  819. "url": "https://api.github.com/repos/container-interop/container-interop/zipball/79cbf1341c22ec75643d841642dd5d6acd83bdb8",
  820. "reference": "79cbf1341c22ec75643d841642dd5d6acd83bdb8",
  821. "shasum": ""
  822. },
  823. "require": {
  824. "psr/container": "^1.0"
  825. },
  826. "type": "library",
  827. "autoload": {
  828. "psr-4": {
  829. "Interop\\Container\\": "src/Interop/Container/"
  830. }
  831. },
  832. "notification-url": "https://packagist.org/downloads/",
  833. "license": [
  834. "MIT"
  835. ],
  836. "description": "Promoting the interoperability of container objects (DIC, SL, etc.)",
  837. "homepage": "https://github.com/container-interop/container-interop",
  838. "time": "2017-02-14T19:40:03+00:00"
  839. },
  840. {
  841. "name": "cweagans/composer-patches",
  842. "version": "1.6.5",
  843. "source": {
  844. "type": "git",
  845. "url": "https://github.com/cweagans/composer-patches.git",
  846. "reference": "2ec4f00ff5fb64de584c8c4aea53bf9053ecb0b3"
  847. },
  848. "dist": {
  849. "type": "zip",
  850. "url": "https://api.github.com/repos/cweagans/composer-patches/zipball/2ec4f00ff5fb64de584c8c4aea53bf9053ecb0b3",
  851. "reference": "2ec4f00ff5fb64de584c8c4aea53bf9053ecb0b3",
  852. "shasum": ""
  853. },
  854. "require": {
  855. "composer-plugin-api": "^1.0",
  856. "php": ">=5.3.0"
  857. },
  858. "require-dev": {
  859. "composer/composer": "~1.0",
  860. "phpunit/phpunit": "~4.6"
  861. },
  862. "type": "composer-plugin",
  863. "extra": {
  864. "class": "cweagans\\Composer\\Patches"
  865. },
  866. "autoload": {
  867. "psr-4": {
  868. "cweagans\\Composer\\": "src"
  869. }
  870. },
  871. "notification-url": "https://packagist.org/downloads/",
  872. "license": [
  873. "BSD-3-Clause"
  874. ],
  875. "authors": [
  876. {
  877. "name": "Cameron Eagans",
  878. "email": "me@cweagans.net"
  879. }
  880. ],
  881. "description": "Provides a way to patch Composer packages.",
  882. "time": "2018-05-11T18:00:16+00:00"
  883. },
  884. {
  885. "name": "dflydev/dot-access-configuration",
  886. "version": "v1.0.3",
  887. "source": {
  888. "type": "git",
  889. "url": "https://github.com/dflydev/dflydev-dot-access-configuration.git",
  890. "reference": "2e6eb0c8b8830b26bb23defcfc38d4276508fc49"
  891. },
  892. "dist": {
  893. "type": "zip",
  894. "url": "https://api.github.com/repos/dflydev/dflydev-dot-access-configuration/zipball/2e6eb0c8b8830b26bb23defcfc38d4276508fc49",
  895. "reference": "2e6eb0c8b8830b26bb23defcfc38d4276508fc49",
  896. "shasum": ""
  897. },
  898. "require": {
  899. "dflydev/dot-access-data": "1.*",
  900. "dflydev/placeholder-resolver": "1.*",
  901. "php": ">=5.3.2"
  902. },
  903. "require-dev": {
  904. "symfony/yaml": "~2.1"
  905. },
  906. "suggest": {
  907. "symfony/yaml": "Required for using the YAML Configuration Builders"
  908. },
  909. "type": "library",
  910. "extra": {
  911. "branch-alias": {
  912. "dev-master": "1.0-dev"
  913. }
  914. },
  915. "autoload": {
  916. "psr-0": {
  917. "Dflydev\\DotAccessConfiguration": "src"
  918. }
  919. },
  920. "notification-url": "https://packagist.org/downloads/",
  921. "license": [
  922. "MIT"
  923. ],
  924. "authors": [
  925. {
  926. "name": "Dragonfly Development Inc.",
  927. "email": "info@dflydev.com",
  928. "homepage": "http://dflydev.com"
  929. },
  930. {
  931. "name": "Beau Simensen",
  932. "email": "beau@dflydev.com",
  933. "homepage": "http://beausimensen.com"
  934. }
  935. ],
  936. "description": "Given a deep data structure representing a configuration, access configuration by dot notation.",
  937. "homepage": "https://github.com/dflydev/dflydev-dot-access-configuration",
  938. "keywords": [
  939. "config",
  940. "configuration"
  941. ],
  942. "time": "2018-09-08T23:00:17+00:00"
  943. },
  944. {
  945. "name": "dflydev/dot-access-data",
  946. "version": "v1.1.0",
  947. "source": {
  948. "type": "git",
  949. "url": "https://github.com/dflydev/dflydev-dot-access-data.git",
  950. "reference": "3fbd874921ab2c041e899d044585a2ab9795df8a"
  951. },
  952. "dist": {
  953. "type": "zip",
  954. "url": "https://api.github.com/repos/dflydev/dflydev-dot-access-data/zipball/3fbd874921ab2c041e899d044585a2ab9795df8a",
  955. "reference": "3fbd874921ab2c041e899d044585a2ab9795df8a",
  956. "shasum": ""
  957. },
  958. "require": {
  959. "php": ">=5.3.2"
  960. },
  961. "type": "library",
  962. "extra": {
  963. "branch-alias": {
  964. "dev-master": "1.0-dev"
  965. }
  966. },
  967. "autoload": {
  968. "psr-0": {
  969. "Dflydev\\DotAccessData": "src"
  970. }
  971. },
  972. "notification-url": "https://packagist.org/downloads/",
  973. "license": [
  974. "MIT"
  975. ],
  976. "authors": [
  977. {
  978. "name": "Dragonfly Development Inc.",
  979. "email": "info@dflydev.com",
  980. "homepage": "http://dflydev.com"
  981. },
  982. {
  983. "name": "Beau Simensen",
  984. "email": "beau@dflydev.com",
  985. "homepage": "http://beausimensen.com"
  986. },
  987. {
  988. "name": "Carlos Frutos",
  989. "email": "carlos@kiwing.it",
  990. "homepage": "https://github.com/cfrutos"
  991. }
  992. ],
  993. "description": "Given a deep data structure, access data by dot notation.",
  994. "homepage": "https://github.com/dflydev/dflydev-dot-access-data",
  995. "keywords": [
  996. "access",
  997. "data",
  998. "dot",
  999. "notation"
  1000. ],
  1001. "time": "2017-01-20T21:14:22+00:00"
  1002. },
  1003. {
  1004. "name": "dflydev/placeholder-resolver",
  1005. "version": "v1.0.2",
  1006. "source": {
  1007. "type": "git",
  1008. "url": "https://github.com/dflydev/dflydev-placeholder-resolver.git",
  1009. "reference": "c498d0cae91b1bb36cc7d60906dab8e62bb7c356"
  1010. },
  1011. "dist": {
  1012. "type": "zip",
  1013. "url": "https://api.github.com/repos/dflydev/dflydev-placeholder-resolver/zipball/c498d0cae91b1bb36cc7d60906dab8e62bb7c356",
  1014. "reference": "c498d0cae91b1bb36cc7d60906dab8e62bb7c356",
  1015. "shasum": ""
  1016. },
  1017. "require": {
  1018. "php": ">=5.3.2"
  1019. },
  1020. "type": "library",
  1021. "extra": {
  1022. "branch-alias": {
  1023. "dev-master": "1.0-dev"
  1024. }
  1025. },
  1026. "autoload": {
  1027. "psr-0": {
  1028. "Dflydev\\PlaceholderResolver": "src"
  1029. }
  1030. },
  1031. "notification-url": "https://packagist.org/downloads/",
  1032. "license": [
  1033. "MIT"
  1034. ],
  1035. "authors": [
  1036. {
  1037. "name": "Dragonfly Development Inc.",
  1038. "email": "info@dflydev.com",
  1039. "homepage": "http://dflydev.com"
  1040. },
  1041. {
  1042. "name": "Beau Simensen",
  1043. "email": "beau@dflydev.com",
  1044. "homepage": "http://beausimensen.com"
  1045. }
  1046. ],
  1047. "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.",
  1048. "homepage": "https://github.com/dflydev/dflydev-placeholder-resolver",
  1049. "keywords": [
  1050. "placeholder",
  1051. "resolver"
  1052. ],
  1053. "time": "2012-10-28T21:08:28+00:00"
  1054. },
  1055. {
  1056. "name": "dnoegel/php-xdg-base-dir",
  1057. "version": "0.1",
  1058. "source": {
  1059. "type": "git",
  1060. "url": "https://github.com/dnoegel/php-xdg-base-dir.git",
  1061. "reference": "265b8593498b997dc2d31e75b89f053b5cc9621a"
  1062. },
  1063. "dist": {
  1064. "type": "zip",
  1065. "url": "https://api.github.com/repos/dnoegel/php-xdg-base-dir/zipball/265b8593498b997dc2d31e75b89f053b5cc9621a",
  1066. "reference": "265b8593498b997dc2d31e75b89f053b5cc9621a",
  1067. "shasum": ""
  1068. },
  1069. "require": {
  1070. "php": ">=5.3.2"
  1071. },
  1072. "require-dev": {
  1073. "phpunit/phpunit": "@stable"
  1074. },
  1075. "type": "project",
  1076. "autoload": {
  1077. "psr-4": {
  1078. "XdgBaseDir\\": "src/"
  1079. }
  1080. },
  1081. "notification-url": "https://packagist.org/downloads/",
  1082. "license": [
  1083. "MIT"
  1084. ],
  1085. "description": "implementation of xdg base directory specification for php",
  1086. "time": "2014-10-24T07:27:01+00:00"
  1087. },
  1088. {
  1089. "name": "doctrine/annotations",
  1090. "version": "v1.2.7",
  1091. "source": {
  1092. "type": "git",
  1093. "url": "https://github.com/doctrine/annotations.git",
  1094. "reference": "f25c8aab83e0c3e976fd7d19875f198ccf2f7535"
  1095. },
  1096. "dist": {
  1097. "type": "zip",
  1098. "url": "https://api.github.com/repos/doctrine/annotations/zipball/f25c8aab83e0c3e976fd7d19875f198ccf2f7535",
  1099. "reference": "f25c8aab83e0c3e976fd7d19875f198ccf2f7535",
  1100. "shasum": ""
  1101. },
  1102. "require": {
  1103. "doctrine/lexer": "1.*",
  1104. "php": ">=5.3.2"
  1105. },
  1106. "require-dev": {
  1107. "doctrine/cache": "1.*",
  1108. "phpunit/phpunit": "4.*"
  1109. },
  1110. "type": "library",
  1111. "extra": {
  1112. "branch-alias": {
  1113. "dev-master": "1.3.x-dev"
  1114. }
  1115. },
  1116. "autoload": {
  1117. "psr-0": {
  1118. "Doctrine\\Common\\Annotations\\": "lib/"
  1119. }
  1120. },
  1121. "notification-url": "https://packagist.org/downloads/",
  1122. "license": [
  1123. "MIT"
  1124. ],
  1125. "authors": [
  1126. {
  1127. "name": "Roman Borschel",
  1128. "email": "roman@code-factory.org"
  1129. },
  1130. {
  1131. "name": "Benjamin Eberlei",
  1132. "email": "kontakt@beberlei.de"
  1133. },
  1134. {
  1135. "name": "Guilherme Blanco",
  1136. "email": "guilhermeblanco@gmail.com"
  1137. },
  1138. {
  1139. "name": "Jonathan Wage",
  1140. "email": "jonwage@gmail.com"
  1141. },
  1142. {
  1143. "name": "Johannes Schmitt",
  1144. "email": "schmittjoh@gmail.com"
  1145. }
  1146. ],
  1147. "description": "Docblock Annotations Parser",
  1148. "homepage": "http://www.doctrine-project.org",
  1149. "keywords": [
  1150. "annotations",
  1151. "docblock",
  1152. "parser"
  1153. ],
  1154. "time": "2015-08-31T12:32:49+00:00"
  1155. },
  1156. {
  1157. "name": "doctrine/cache",
  1158. "version": "v1.6.2",
  1159. "source": {
  1160. "type": "git",
  1161. "url": "https://github.com/doctrine/cache.git",
  1162. "reference": "eb152c5100571c7a45470ff2a35095ab3f3b900b"
  1163. },
  1164. "dist": {
  1165. "type": "zip",
  1166. "url": "https://api.github.com/repos/doctrine/cache/zipball/eb152c5100571c7a45470ff2a35095ab3f3b900b",
  1167. "reference": "eb152c5100571c7a45470ff2a35095ab3f3b900b",
  1168. "shasum": ""
  1169. },
  1170. "require": {
  1171. "php": "~5.5|~7.0"
  1172. },
  1173. "conflict": {
  1174. "doctrine/common": ">2.2,<2.4"
  1175. },
  1176. "require-dev": {
  1177. "phpunit/phpunit": "~4.8|~5.0",
  1178. "predis/predis": "~1.0",
  1179. "satooshi/php-coveralls": "~0.6"
  1180. },
  1181. "type": "library",
  1182. "extra": {
  1183. "branch-alias": {
  1184. "dev-master": "1.6.x-dev"
  1185. }
  1186. },
  1187. "autoload": {
  1188. "psr-4": {
  1189. "Doctrine\\Common\\Cache\\": "lib/Doctrine/Common/Cache"
  1190. }
  1191. },
  1192. "notification-url": "https://packagist.org/downloads/",
  1193. "license": [
  1194. "MIT"
  1195. ],
  1196. "authors": [
  1197. {
  1198. "name": "Roman Borschel",
  1199. "email": "roman@code-factory.org"
  1200. },
  1201. {
  1202. "name": "Benjamin Eberlei",
  1203. "email": "kontakt@beberlei.de"
  1204. },
  1205. {
  1206. "name": "Guilherme Blanco",
  1207. "email": "guilhermeblanco@gmail.com"
  1208. },
  1209. {
  1210. "name": "Jonathan Wage",
  1211. "email": "jonwage@gmail.com"
  1212. },
  1213. {
  1214. "name": "Johannes Schmitt",
  1215. "email": "schmittjoh@gmail.com"
  1216. }
  1217. ],
  1218. "description": "Caching library offering an object-oriented API for many cache backends",
  1219. "homepage": "http://www.doctrine-project.org",
  1220. "keywords": [
  1221. "cache",
  1222. "caching"
  1223. ],
  1224. "time": "2017-07-22T12:49:21+00:00"
  1225. },
  1226. {
  1227. "name": "doctrine/collections",
  1228. "version": "v1.4.0",
  1229. "source": {
  1230. "type": "git",
  1231. "url": "https://github.com/doctrine/collections.git",
  1232. "reference": "1a4fb7e902202c33cce8c55989b945612943c2ba"
  1233. },
  1234. "dist": {
  1235. "type": "zip",
  1236. "url": "https://api.github.com/repos/doctrine/collections/zipball/1a4fb7e902202c33cce8c55989b945612943c2ba",
  1237. "reference": "1a4fb7e902202c33cce8c55989b945612943c2ba",
  1238. "shasum": ""
  1239. },
  1240. "require": {
  1241. "php": "^5.6 || ^7.0"
  1242. },
  1243. "require-dev": {
  1244. "doctrine/coding-standard": "~0.1@dev",
  1245. "phpunit/phpunit": "^5.7"
  1246. },
  1247. "type": "library",
  1248. "extra": {
  1249. "branch-alias": {
  1250. "dev-master": "1.3.x-dev"
  1251. }
  1252. },
  1253. "autoload": {
  1254. "psr-0": {
  1255. "Doctrine\\Common\\Collections\\": "lib/"
  1256. }
  1257. },
  1258. "notification-url": "https://packagist.org/downloads/",
  1259. "license": [
  1260. "MIT"
  1261. ],
  1262. "authors": [
  1263. {
  1264. "name": "Roman Borschel",
  1265. "email": "roman@code-factory.org"
  1266. },
  1267. {
  1268. "name": "Benjamin Eberlei",
  1269. "email": "kontakt@beberlei.de"
  1270. },
  1271. {
  1272. "name": "Guilherme Blanco",
  1273. "email": "guilhermeblanco@gmail.com"
  1274. },
  1275. {
  1276. "name": "Jonathan Wage",
  1277. "email": "jonwage@gmail.com"
  1278. },
  1279. {
  1280. "name": "Johannes Schmitt",
  1281. "email": "schmittjoh@gmail.com"
  1282. }
  1283. ],
  1284. "description": "Collections Abstraction library",
  1285. "homepage": "http://www.doctrine-project.org",
  1286. "keywords": [
  1287. "array",
  1288. "collections",
  1289. "iterator"
  1290. ],
  1291. "time": "2017-01-03T10:49:41+00:00"
  1292. },
  1293. {
  1294. "name": "doctrine/common",
  1295. "version": "v2.7.3",
  1296. "source": {
  1297. "type": "git",
  1298. "url": "https://github.com/doctrine/common.git",
  1299. "reference": "4acb8f89626baafede6ee5475bc5844096eba8a9"
  1300. },
  1301. "dist": {
  1302. "type": "zip",
  1303. "url": "https://api.github.com/repos/doctrine/common/zipball/4acb8f89626baafede6ee5475bc5844096eba8a9",
  1304. "reference": "4acb8f89626baafede6ee5475bc5844096eba8a9",
  1305. "shasum": ""
  1306. },
  1307. "require": {
  1308. "doctrine/annotations": "1.*",
  1309. "doctrine/cache": "1.*",
  1310. "doctrine/collections": "1.*",
  1311. "doctrine/inflector": "1.*",
  1312. "doctrine/lexer": "1.*",
  1313. "php": "~5.6|~7.0"
  1314. },
  1315. "require-dev": {
  1316. "phpunit/phpunit": "^5.4.6"
  1317. },
  1318. "type": "library",
  1319. "extra": {
  1320. "branch-alias": {
  1321. "dev-master": "2.7.x-dev"
  1322. }
  1323. },
  1324. "autoload": {
  1325. "psr-4": {
  1326. "Doctrine\\Common\\": "lib/Doctrine/Common"
  1327. }
  1328. },
  1329. "notification-url": "https://packagist.org/downloads/",
  1330. "license": [
  1331. "MIT"
  1332. ],
  1333. "authors": [
  1334. {
  1335. "name": "Roman Borschel",
  1336. "email": "roman@code-factory.org"
  1337. },
  1338. {
  1339. "name": "Benjamin Eberlei",
  1340. "email": "kontakt@beberlei.de"
  1341. },
  1342. {
  1343. "name": "Guilherme Blanco",
  1344. "email": "guilhermeblanco@gmail.com"
  1345. },
  1346. {
  1347. "name": "Jonathan Wage",
  1348. "email": "jonwage@gmail.com"
  1349. },
  1350. {
  1351. "name": "Johannes Schmitt",
  1352. "email": "schmittjoh@gmail.com"
  1353. }
  1354. ],
  1355. "description": "Common Library for Doctrine projects",
  1356. "homepage": "http://www.doctrine-project.org",
  1357. "keywords": [
  1358. "annotations",
  1359. "collections",
  1360. "eventmanager",
  1361. "persistence",
  1362. "spl"
  1363. ],
  1364. "time": "2017-07-22T08:35:12+00:00"
  1365. },
  1366. {
  1367. "name": "doctrine/inflector",
  1368. "version": "v1.2.0",
  1369. "source": {
  1370. "type": "git",
  1371. "url": "https://github.com/doctrine/inflector.git",
  1372. "reference": "e11d84c6e018beedd929cff5220969a3c6d1d462"
  1373. },
  1374. "dist": {
  1375. "type": "zip",
  1376. "url": "https://api.github.com/repos/doctrine/inflector/zipball/e11d84c6e018beedd929cff5220969a3c6d1d462",
  1377. "reference": "e11d84c6e018beedd929cff5220969a3c6d1d462",
  1378. "shasum": ""
  1379. },
  1380. "require": {
  1381. "php": "^7.0"
  1382. },
  1383. "require-dev": {
  1384. "phpunit/phpunit": "^6.2"
  1385. },
  1386. "type": "library",
  1387. "extra": {
  1388. "branch-alias": {
  1389. "dev-master": "1.2.x-dev"
  1390. }
  1391. },
  1392. "autoload": {
  1393. "psr-4": {
  1394. "Doctrine\\Common\\Inflector\\": "lib/Doctrine/Common/Inflector"
  1395. }
  1396. },
  1397. "notification-url": "https://packagist.org/downloads/",
  1398. "license": [
  1399. "MIT"
  1400. ],
  1401. "authors": [
  1402. {
  1403. "name": "Roman Borschel",
  1404. "email": "roman@code-factory.org"
  1405. },
  1406. {
  1407. "name": "Benjamin Eberlei",
  1408. "email": "kontakt@beberlei.de"
  1409. },
  1410. {
  1411. "name": "Guilherme Blanco",
  1412. "email": "guilhermeblanco@gmail.com"
  1413. },
  1414. {
  1415. "name": "Jonathan Wage",
  1416. "email": "jonwage@gmail.com"
  1417. },
  1418. {
  1419. "name": "Johannes Schmitt",
  1420. "email": "schmittjoh@gmail.com"
  1421. }
  1422. ],
  1423. "description": "Common String Manipulations with regard to casing and singular/plural rules.",
  1424. "homepage": "http://www.doctrine-project.org",
  1425. "keywords": [
  1426. "inflection",
  1427. "pluralize",
  1428. "singularize",
  1429. "string"
  1430. ],
  1431. "time": "2017-07-22T12:18:28+00:00"
  1432. },
  1433. {
  1434. "name": "doctrine/lexer",
  1435. "version": "v1.0.1",
  1436. "source": {
  1437. "type": "git",
  1438. "url": "https://github.com/doctrine/lexer.git",
  1439. "reference": "83893c552fd2045dd78aef794c31e694c37c0b8c"
  1440. },
  1441. "dist": {
  1442. "type": "zip",
  1443. "url": "https://api.github.com/repos/doctrine/lexer/zipball/83893c552fd2045dd78aef794c31e694c37c0b8c",
  1444. "reference": "83893c552fd2045dd78aef794c31e694c37c0b8c",
  1445. "shasum": ""
  1446. },
  1447. "require": {
  1448. "php": ">=5.3.2"
  1449. },
  1450. "type": "library",
  1451. "extra": {
  1452. "branch-alias": {
  1453. "dev-master": "1.0.x-dev"
  1454. }
  1455. },
  1456. "autoload": {
  1457. "psr-0": {
  1458. "Doctrine\\Common\\Lexer\\": "lib/"
  1459. }
  1460. },
  1461. "notification-url": "https://packagist.org/downloads/",
  1462. "license": [
  1463. "MIT"
  1464. ],
  1465. "authors": [
  1466. {
  1467. "name": "Roman Borschel",
  1468. "email": "roman@code-factory.org"
  1469. },
  1470. {
  1471. "name": "Guilherme Blanco",
  1472. "email": "guilhermeblanco@gmail.com"
  1473. },
  1474. {
  1475. "name": "Johannes Schmitt",
  1476. "email": "schmittjoh@gmail.com"
  1477. }
  1478. ],
  1479. "description": "Base library for a lexer that can be used in Top-Down, Recursive Descent Parsers.",
  1480. "homepage": "http://www.doctrine-project.org",
  1481. "keywords": [
  1482. "lexer",
  1483. "parser"
  1484. ],
  1485. "time": "2014-09-09T13:34:57+00:00"
  1486. },
  1487. {
  1488. "name": "drupal/actions_permissions",
  1489. "version": "2.4.0",
  1490. "require": {
  1491. "drupal/core": "*",
  1492. "drupal/views_bulk_operations": "self.version"
  1493. },
  1494. "type": "metapackage",
  1495. "extra": {
  1496. "branch-alias": {
  1497. "dev-2.x": "2.x-dev"
  1498. },
  1499. "drupal": {
  1500. "version": "8.x-2.4",
  1501. "datestamp": "1530516821",
  1502. "security-coverage": {
  1503. "status": "covered",
  1504. "message": "Covered by Drupal's security advisory policy"
  1505. }
  1506. }
  1507. },
  1508. "notification-url": "https://packages.drupal.org/8/downloads",
  1509. "license": [
  1510. "GPL-2.0-or-later"
  1511. ],
  1512. "authors": [
  1513. {
  1514. "name": "Graber",
  1515. "homepage": "https://www.drupal.org/user/1599440"
  1516. },
  1517. {
  1518. "name": "Jon Pugh",
  1519. "homepage": "https://www.drupal.org/user/17028"
  1520. },
  1521. {
  1522. "name": "bojanz",
  1523. "homepage": "https://www.drupal.org/user/86106"
  1524. },
  1525. {
  1526. "name": "infojunkie",
  1527. "homepage": "https://www.drupal.org/user/48424"
  1528. },
  1529. {
  1530. "name": "joelpittet",
  1531. "homepage": "https://www.drupal.org/user/160302"
  1532. }
  1533. ],
  1534. "description": "Adds access permissions on all actions allowing admins to restrict access on a per-role basis.",
  1535. "homepage": "https://www.drupal.org/project/views_bulk_operations",
  1536. "support": {
  1537. "source": "http://cgit.drupalcode.org/views_bulk_operations"
  1538. }
  1539. },
  1540. {
  1541. "name": "drupal/address",
  1542. "version": "1.4.0",
  1543. "source": {
  1544. "type": "git",
  1545. "url": "https://git.drupal.org/project/address",
  1546. "reference": "8.x-1.4"
  1547. },
  1548. "dist": {
  1549. "type": "zip",
  1550. "url": "https://ftp.drupal.org/files/projects/address-8.x-1.4.zip",
  1551. "reference": "8.x-1.4",
  1552. "shasum": "143e426be73418c719c6bddd5fb81c610604e860"
  1553. },
  1554. "require": {
  1555. "commerceguys/addressing": "^1.0.0",
  1556. "drupal/core": "*"
  1557. },
  1558. "require-dev": {
  1559. "drupal/token": "*"
  1560. },
  1561. "type": "drupal-module",
  1562. "extra": {
  1563. "branch-alias": {
  1564. "dev-1.x": "1.x-dev"
  1565. },
  1566. "drupal": {
  1567. "version": "8.x-1.4",
  1568. "datestamp": "1527081784",
  1569. "security-coverage": {
  1570. "status": "covered",
  1571. "message": "Covered by Drupal's security advisory policy"
  1572. }
  1573. }
  1574. },
  1575. "notification-url": "https://packages.drupal.org/8/downloads",
  1576. "license": [
  1577. "GPL-2.0+"
  1578. ],
  1579. "authors": [
  1580. {
  1581. "name": "bojanz",
  1582. "homepage": "https://www.drupal.org/user/86106"
  1583. },
  1584. {
  1585. "name": "googletorp",
  1586. "homepage": "https://www.drupal.org/user/386230"
  1587. },
  1588. {
  1589. "name": "rszrama",
  1590. "homepage": "https://www.drupal.org/user/49344"
  1591. }
  1592. ],
  1593. "description": "Provides functionality for storing, validating and displaying international postal addresses.",
  1594. "homepage": "http://drupal.org/project/address",
  1595. "support": {
  1596. "source": "http://cgit.drupalcode.org/address"
  1597. }
  1598. },
  1599. {
  1600. "name": "drupal/admin_toolbar",
  1601. "version": "1.24.0",
  1602. "source": {
  1603. "type": "git",
  1604. "url": "https://git.drupal.org/project/admin_toolbar",
  1605. "reference": "8.x-1.24"
  1606. },
  1607. "dist": {
  1608. "type": "zip",
  1609. "url": "https://ftp.drupal.org/files/projects/admin_toolbar-8.x-1.24.zip",
  1610. "reference": "8.x-1.24",
  1611. "shasum": "682ffa443a1e339583022eb6adbb00c1103ea6d4"
  1612. },
  1613. "require": {
  1614. "drupal/core": "*"
  1615. },
  1616. "type": "drupal-module",
  1617. "extra": {
  1618. "branch-alias": {
  1619. "dev-1.x": "1.x-dev"
  1620. },
  1621. "drupal": {
  1622. "version": "8.x-1.24",
  1623. "datestamp": "1527523080",
  1624. "security-coverage": {
  1625. "status": "covered",
  1626. "message": "Covered by Drupal's security advisory policy"
  1627. }
  1628. }
  1629. },
  1630. "notification-url": "https://packages.drupal.org/8/downloads",
  1631. "license": [
  1632. "GPL-2.0+"
  1633. ],
  1634. "authors": [
  1635. {
  1636. "name": "Wilfrid Roze (eme)",
  1637. "homepage": "https://www.drupal.org/u/eme",
  1638. "role": "Maintainer"
  1639. },
  1640. {
  1641. "name": "Romain Jarraud (romainj)",
  1642. "homepage": "https://www.drupal.org/u/romainj",
  1643. "role": "Maintainer"
  1644. },
  1645. {
  1646. "name": "Adrian Cid Almaguer (adriancid)",
  1647. "homepage": "https://www.drupal.org/u/adriancid",
  1648. "email": "adriancid@gmail.com",
  1649. "role": "Maintainer"
  1650. },
  1651. {
  1652. "name": "Mohamed Anis Taktak (matio89)",
  1653. "homepage": "https://www.drupal.org/u/matio89",
  1654. "role": "Maintainer"
  1655. },
  1656. {
  1657. "name": "fethi.krout",
  1658. "homepage": "https://www.drupal.org/user/3206765"
  1659. },
  1660. {
  1661. "name": "matio89",
  1662. "homepage": "https://www.drupal.org/user/2320090"
  1663. },
  1664. {
  1665. "name": "romainj",
  1666. "homepage": "https://www.drupal.org/user/370706"
  1667. }
  1668. ],
  1669. "description": "Provides a drop-down menu interface to the core Drupal Toolbar.",
  1670. "homepage": "http://drupal.org/project/admin_toolbar",
  1671. "keywords": [
  1672. "Drupal",
  1673. "Toolbar"
  1674. ],
  1675. "support": {
  1676. "source": "http://cgit.drupalcode.org/admin_toolbar",
  1677. "issues": "https://www.drupal.org/project/issues/admin_toolbar"
  1678. }
  1679. },
  1680. {
  1681. "name": "drupal/adminimal_theme",
  1682. "version": "1.3.0",
  1683. "source": {
  1684. "type": "git",
  1685. "url": "https://git.drupal.org/project/adminimal_theme",
  1686. "reference": "8.x-1.3"
  1687. },
  1688. "dist": {
  1689. "type": "zip",
  1690. "url": "https://ftp.drupal.org/files/projects/adminimal_theme-8.x-1.3.zip",
  1691. "reference": "8.x-1.3",
  1692. "shasum": "bb9f280bcdbd7e4d384a925c685a2aa1feed8419"
  1693. },
  1694. "require": {
  1695. "drupal/core": "~8.0"
  1696. },
  1697. "type": "drupal-theme",
  1698. "extra": {
  1699. "branch-alias": {
  1700. "dev-1.x": "1.x-dev"
  1701. },
  1702. "drupal": {
  1703. "version": "8.x-1.3",
  1704. "datestamp": "1480507083",
  1705. "security-coverage": {
  1706. "status": "covered",
  1707. "message": "Covered by Drupal's security advisory policy"
  1708. }
  1709. }
  1710. },
  1711. "notification-url": "https://packages.drupal.org/8/downloads",
  1712. "license": [
  1713. "GPL-2.0-or-later"
  1714. ],
  1715. "authors": [
  1716. {
  1717. "name": "ANDiTKO",
  1718. "homepage": "https://www.drupal.org/user/1428124"
  1719. },
  1720. {
  1721. "name": "realityloop",
  1722. "homepage": "https://www.drupal.org/user/139189"
  1723. }
  1724. ],
  1725. "description": "Drupal administration theme with modern minimalist design.",
  1726. "homepage": "https://www.drupal.org/project/adminimal_theme",
  1727. "support": {
  1728. "source": "http://cgit.drupalcode.org/adminimal_theme"
  1729. }
  1730. },
  1731. {
  1732. "name": "drupal/advanced_text_formatter",
  1733. "version": "1.0.0-beta3",
  1734. "source": {
  1735. "type": "git",
  1736. "url": "https://git.drupal.org/project/advanced_text_formatter",
  1737. "reference": "8.x-1.0-beta3"
  1738. },
  1739. "dist": {
  1740. "type": "zip",
  1741. "url": "https://ftp.drupal.org/files/projects/advanced_text_formatter-8.x-1.0-beta3.zip",
  1742. "reference": "8.x-1.0-beta3",
  1743. "shasum": "35e0154440ba7836dda70b8627f156872da75302"
  1744. },
  1745. "require": {
  1746. "drupal/core": "*"
  1747. },
  1748. "type": "drupal-module",
  1749. "extra": {
  1750. "branch-alias": {
  1751. "dev-1.x": "1.x-dev"
  1752. },
  1753. "drupal": {
  1754. "version": "8.x-1.0-beta3",
  1755. "datestamp": "1445163539",
  1756. "security-coverage": {
  1757. "status": "not-covered",
  1758. "message": "Beta releases are not covered by Drupal security advisories."
  1759. }
  1760. }
  1761. },
  1762. "notification-url": "https://packages.drupal.org/8/downloads",
  1763. "license": [
  1764. "GPL-2.0-or-later"
  1765. ],
  1766. "authors": [
  1767. {
  1768. "name": "thmnhat",
  1769. "homepage": "https://www.drupal.org/user/998946"
  1770. }
  1771. ],
  1772. "description": "Provides an additional formatter for text field, text area and text format.",
  1773. "homepage": "https://www.drupal.org/project/advanced_text_formatter",
  1774. "support": {
  1775. "source": "http://cgit.drupalcode.org/advanced_text_formatter"
  1776. }
  1777. },
  1778. {
  1779. "name": "drupal/audiofield",
  1780. "version": "1.6.0",
  1781. "source": {
  1782. "type": "git",
  1783. "url": "https://git.drupal.org/project/audiofield",
  1784. "reference": "8.x-1.6"
  1785. },
  1786. "dist": {
  1787. "type": "zip",
  1788. "url": "https://ftp.drupal.org/files/projects/audiofield-8.x-1.6.zip",
  1789. "reference": "8.x-1.6",
  1790. "shasum": "bd63641c2ed9e9774b82423bf03c95540b395126"
  1791. },
  1792. "require": {
  1793. "drupal/core": "~8.0"
  1794. },
  1795. "type": "drupal-module",
  1796. "extra": {
  1797. "branch-alias": {
  1798. "dev-1.x": "1.x-dev"
  1799. },
  1800. "drupal": {
  1801. "version": "8.x-1.6",
  1802. "datestamp": "1514414884",
  1803. "security-coverage": {
  1804. "status": "covered",
  1805. "message": "Covered by Drupal's security advisory policy"
  1806. }
  1807. }
  1808. },
  1809. "notification-url": "https://packages.drupal.org/8/downloads",
  1810. "license": [
  1811. "GPL-2.0+"
  1812. ],
  1813. "authors": [
  1814. {
  1815. "name": "Daniel Moberly",
  1816. "homepage": "https://www.drupal.org/u/danielmoberly",
  1817. "role": "Maintainer"
  1818. },
  1819. {
  1820. "name": "josipsaric",
  1821. "homepage": "https://www.drupal.org/user/3063287"
  1822. },
  1823. {
  1824. "name": "msajko",
  1825. "homepage": "https://www.drupal.org/user/3483723"
  1826. },
  1827. {
  1828. "name": "tamerzg",
  1829. "homepage": "https://www.drupal.org/user/464564"
  1830. }
  1831. ],
  1832. "description": "AudioField Module",
  1833. "homepage": "https://www.drupal.org/project/audiofield",
  1834. "support": {
  1835. "source": "http://cgit.drupalcode.org/audiofield",
  1836. "issues": "https://www.drupal.org/project/issues/audiofield"
  1837. }
  1838. },
  1839. {
  1840. "name": "drupal/autocomplete_deluxe",
  1841. "version": "1.0.0-beta1",
  1842. "source": {
  1843. "type": "git",
  1844. "url": "https://git.drupal.org/project/autocomplete_deluxe",
  1845. "reference": "8.x-1.0-beta1"
  1846. },
  1847. "dist": {
  1848. "type": "zip",
  1849. "url": "https://ftp.drupal.org/files/projects/autocomplete_deluxe-8.x-1.0-beta1.zip",
  1850. "reference": "8.x-1.0-beta1",
  1851. "shasum": "f59d928761a01a055c2240155a84b1d7286fe666"
  1852. },
  1853. "require": {
  1854. "drupal/core": "~8.0"
  1855. },
  1856. "type": "drupal-module",
  1857. "extra": {
  1858. "branch-alias": {
  1859. "dev-1.x": "1.x-dev"
  1860. },
  1861. "drupal": {
  1862. "version": "8.x-1.0-beta1",
  1863. "datestamp": "1502921644",
  1864. "security-coverage": {
  1865. "status": "not-covered",
  1866. "message": "Beta releases are not covered by Drupal security advisories."
  1867. }
  1868. }
  1869. },
  1870. "notification-url": "https://packages.drupal.org/8/downloads",
  1871. "license": [
  1872. "GPL-2.0+"
  1873. ],
  1874. "authors": [
  1875. {
  1876. "name": "Edward Chan",
  1877. "homepage": "https://www.drupal.org/user/1781334"
  1878. },
  1879. {
  1880. "name": "edwardchiapet",
  1881. "homepage": "https://www.drupal.org/user/2354784"
  1882. },
  1883. {
  1884. "name": "mpriscella",
  1885. "homepage": "https://www.drupal.org/user/2354820"
  1886. },
  1887. {
  1888. "name": "sepgil",
  1889. "homepage": "https://www.drupal.org/user/512828"
  1890. }
  1891. ],
  1892. "description": "Enhanced autocomplete using Jquery UI autocomplete.",
  1893. "homepage": "https://www.drupal.org/sandbox/edwardchan/2888186",
  1894. "support": {
  1895. "source": "http://cgit.drupalcode.org/autocomplete_deluxe",
  1896. "issues": "https://www.drupal.org/project/issues/2888186"
  1897. }
  1898. },
  1899. {
  1900. "name": "drupal/autologout",
  1901. "version": "1.0.0",
  1902. "source": {
  1903. "type": "git",
  1904. "url": "https://git.drupal.org/project/autologout",
  1905. "reference": "8.x-1.0"
  1906. },
  1907. "dist": {
  1908. "type": "zip",
  1909. "url": "https://ftp.drupal.org/files/projects/autologout-8.x-1.0.zip",
  1910. "reference": "8.x-1.0",
  1911. "shasum": "0a5f67d4393b0acdf8522b1b1a5c9eb40bb05d93"
  1912. },
  1913. "require": {
  1914. "drupal/core": "~8.0"
  1915. },
  1916. "type": "drupal-module",
  1917. "extra": {
  1918. "branch-alias": {
  1919. "dev-1.x": "1.x-dev"
  1920. },
  1921. "drupal": {
  1922. "version": "8.x-1.0",
  1923. "datestamp": "1494237185",
  1924. "security-coverage": {
  1925. "status": "covered",
  1926. "message": "Covered by Drupal's security advisory policy"
  1927. }
  1928. }
  1929. },
  1930. "notification-url": "https://packages.drupal.org/8/downloads",
  1931. "license": [
  1932. "GPL-2.0+"
  1933. ],
  1934. "authors": [
  1935. {
  1936. "name": "AjK",
  1937. "homepage": "https://www.drupal.org/user/39030"
  1938. },
  1939. {
  1940. "name": "AjitS",
  1941. "homepage": "https://www.drupal.org/user/981944"
  1942. },
  1943. {
  1944. "name": "dandrews",
  1945. "homepage": "https://www.drupal.org/user/2014490"
  1946. },
  1947. {
  1948. "name": "johnennew",
  1949. "homepage": "https://www.drupal.org/user/1150042"
  1950. },
  1951. {
  1952. "name": "jrglasgow",
  1953. "homepage": "https://www.drupal.org/user/36590"
  1954. },
  1955. {
  1956. "name": "kmasood",
  1957. "homepage": "https://www.drupal.org/user/1262860"
  1958. },
  1959. {
  1960. "name": "levelos",
  1961. "homepage": "https://www.drupal.org/user/54135"
  1962. },
  1963. {
  1964. "name": "prabeen.giri",
  1965. "homepage": "https://www.drupal.org/user/913078"
  1966. },
  1967. {
  1968. "name": "str8",
  1969. "homepage": "https://www.drupal.org/user/2865063"
  1970. }
  1971. ],
  1972. "description": "Adds automated timed logout.",
  1973. "homepage": "http://drupal.org/project/autologout",
  1974. "support": {
  1975. "source": "http://cgit.drupalcode.org/autologout"
  1976. }
  1977. },
  1978. {
  1979. "name": "drupal/better_exposed_filters",
  1980. "version": "3.0.0-alpha5",
  1981. "source": {
  1982. "type": "git",
  1983. "url": "https://git.drupal.org/project/better_exposed_filters",
  1984. "reference": "8.x-3.0-alpha5"
  1985. },
  1986. "dist": {
  1987. "type": "zip",
  1988. "url": "https://ftp.drupal.org/files/projects/better_exposed_filters-8.x-3.0-alpha5.zip",
  1989. "reference": "8.x-3.0-alpha5",
  1990. "shasum": "8dbcff4b3bcd24f753d5d1ba6a523442a3690a76"
  1991. },
  1992. "require": {
  1993. "drupal/core": "*"
  1994. },
  1995. "type": "drupal-module",
  1996. "extra": {
  1997. "branch-alias": {
  1998. "dev-3.x": "3.x-dev"
  1999. },
  2000. "drupal": {
  2001. "version": "8.x-3.0-alpha5",
  2002. "datestamp": "1540513084",
  2003. "security-coverage": {
  2004. "status": "not-covered",
  2005. "message": "Alpha releases are not covered by Drupal security advisories."
  2006. }
  2007. }
  2008. },
  2009. "notification-url": "https://packages.drupal.org/8/downloads",
  2010. "license": [
  2011. "GPL-2.0-or-later"
  2012. ],
  2013. "authors": [
  2014. {
  2015. "name": "chr.fritsch",
  2016. "homepage": "https://www.drupal.org/user/2103716"
  2017. },
  2018. {
  2019. "name": "jkopel",
  2020. "homepage": "https://www.drupal.org/user/66207"
  2021. },
  2022. {
  2023. "name": "mikeker",
  2024. "homepage": "https://www.drupal.org/user/192273"
  2025. },
  2026. {
  2027. "name": "mortona2k",
  2028. "homepage": "https://www.drupal.org/user/1029484"
  2029. },
  2030. {
  2031. "name": "rlhawk",
  2032. "homepage": "https://www.drupal.org/user/352283"
  2033. }
  2034. ],
  2035. "description": "Provides advanced options (such as links, checkboxes, or jQueryUI widgets) for exposed Views elements.",
  2036. "homepage": "https://www.drupal.org/project/better_exposed_filters",
  2037. "support": {
  2038. "source": "http://cgit.drupalcode.org/better_exposed_filters"
  2039. }
  2040. },
  2041. {
  2042. "name": "drupal/better_messages",
  2043. "version": "1.0.0-alpha2",
  2044. "source": {
  2045. "type": "git",
  2046. "url": "https://git.drupal.org/project/better_messages",
  2047. "reference": "8.x-1.0-alpha2"
  2048. },
  2049. "dist": {
  2050. "type": "zip",
  2051. "url": "https://ftp.drupal.org/files/projects/better_messages-8.x-1.0-alpha2.zip",
  2052. "reference": "8.x-1.0-alpha2",
  2053. "shasum": "ca09231502d5e0d8a5c0d16f9efc5430091b8a38"
  2054. },
  2055. "require": {
  2056. "drupal/core": "~8.0"
  2057. },
  2058. "type": "drupal-module",
  2059. "extra": {
  2060. "branch-alias": {
  2061. "dev-1.x": "1.x-dev"
  2062. },
  2063. "drupal": {
  2064. "version": "8.x-1.0-alpha2",
  2065. "datestamp": "1517663880",
  2066. "security-coverage": {
  2067. "status": "not-covered",
  2068. "message": "Alpha releases are not covered by Drupal security advisories."
  2069. }
  2070. }
  2071. },
  2072. "notification-url": "https://packages.drupal.org/8/downloads",
  2073. "license": [
  2074. "GPL-2.0-or-later"
  2075. ],
  2076. "authors": [
  2077. {
  2078. "name": "Mohammed J. Razem",
  2079. "homepage": "https://www.drupal.org/user/255384"
  2080. },
  2081. {
  2082. "name": "bucefal91",
  2083. "homepage": "https://www.drupal.org/user/504128"
  2084. },
  2085. {
  2086. "name": "le72",
  2087. "homepage": "https://www.drupal.org/user/1866896"
  2088. }
  2089. ],
  2090. "description": "Better Messages module for Drupal 8.",
  2091. "homepage": "https://www.drupal.org/project/better_messages",
  2092. "support": {
  2093. "source": "http://cgit.drupalcode.org/better_messages"
  2094. }
  2095. },
  2096. {
  2097. "name": "drupal/betterlogin",
  2098. "version": "1.2.0",
  2099. "source": {
  2100. "type": "git",
  2101. "url": "https://git.drupal.org/project/betterlogin",
  2102. "reference": "8.x-1.2"
  2103. },
  2104. "dist": {
  2105. "type": "zip",
  2106. "url": "https://ftp.drupal.org/files/projects/betterlogin-8.x-1.2.zip",
  2107. "reference": "8.x-1.2",
  2108. "shasum": "6b9ab142bf563685346d2b4e2db46ada209ed6ad"
  2109. },
  2110. "require": {
  2111. "drupal/core": "~8.0"
  2112. },
  2113. "type": "drupal-module",
  2114. "extra": {
  2115. "branch-alias": {
  2116. "dev-1.x": "1.x-dev"
  2117. },
  2118. "drupal": {
  2119. "version": "8.x-1.2",
  2120. "datestamp": "1515587585",
  2121. "security-coverage": {
  2122. "status": "covered",
  2123. "message": "Covered by Drupal's security advisory policy"
  2124. }
  2125. }
  2126. },
  2127. "notification-url": "https://packages.drupal.org/8/downloads",
  2128. "license": [
  2129. "GPL-2.0-or-later"
  2130. ],
  2131. "authors": [
  2132. {
  2133. "name": "Yogesh Pawar",
  2134. "homepage": "https://www.drupal.org/user/2922907"
  2135. },
  2136. {
  2137. "name": "theamoeba",
  2138. "homepage": "https://www.drupal.org/user/251700"
  2139. }
  2140. ],
  2141. "description": "Make the login screens better :)",
  2142. "homepage": "https://www.drupal.org/project/betterlogin",
  2143. "support": {
  2144. "source": "http://cgit.drupalcode.org/betterlogin"
  2145. }
  2146. },
  2147. {
  2148. "name": "drupal/block_class",
  2149. "version": "1.0.0",
  2150. "source": {
  2151. "type": "git",
  2152. "url": "https://git.drupal.org/project/block_class",
  2153. "reference": "8.x-1.0"
  2154. },
  2155. "dist": {
  2156. "type": "zip",
  2157. "url": "https://ftp.drupal.org/files/projects/block_class-8.x-1.0.zip",
  2158. "reference": "8.x-1.0",
  2159. "shasum": "1a691999d051a3c010c2b6f2df73954ee02f424d"
  2160. },
  2161. "require": {
  2162. "drupal/core": "*"
  2163. },
  2164. "type": "drupal-module",
  2165. "extra": {
  2166. "branch-alias": {
  2167. "dev-1.x": "1.x-dev"
  2168. },
  2169. "drupal": {
  2170. "version": "8.x-1.0",
  2171. "datestamp": "1531440821",
  2172. "security-coverage": {
  2173. "status": "covered",
  2174. "message": "Covered by Drupal's security advisory policy"
  2175. }
  2176. }
  2177. },
  2178. "notification-url": "https://packages.drupal.org/8/downloads",
  2179. "license": [
  2180. "GPL-2.0+"
  2181. ],
  2182. "authors": [
  2183. {
  2184. "name": "Todd Nienkerk",
  2185. "homepage": "https://www.drupal.org/u/todd-nienkerk",
  2186. "role": "Maintainer"
  2187. },
  2188. {
  2189. "name": "Renato Gonçalves (RenatoG)",
  2190. "homepage": "https://www.drupal.org/u/RenatoG",
  2191. "email": "renatog@ciandt.com",
  2192. "role": "Maintainer"
  2193. },
  2194. {
  2195. "name": "Aaron Stanush",
  2196. "homepage": "https://www.drupal.org/u/aaron-stanush",
  2197. "role": "Maintainer"
  2198. },
  2199. {
  2200. "name": "David Suissa (DYdave)",
  2201. "homepage": "https://www.drupal.org/u/DYdave",
  2202. "role": "Maintainer"
  2203. },
  2204. {
  2205. "name": "Four Kitchens",
  2206. "homepage": "https://www.drupal.org/user/358502",
  2207. "role": "Maintainer"
  2208. },
  2209. {
  2210. "name": "berenddeboer",
  2211. "homepage": "https://www.drupal.org/u/berenddeboer",
  2212. "role": "Maintainer"
  2213. },
  2214. {
  2215. "name": "elliotttf",
  2216. "homepage": "https://www.drupal.org/u/elliotttf",
  2217. "role": "Maintainer"
  2218. },
  2219. {
  2220. "name": "Michal Minecki (mirzu)",
  2221. "homepage": "https://www.drupal.org/u/mirzu",
  2222. "role": "Maintainer"
  2223. },
  2224. {
  2225. "name": "Patrick Coffey (pcoffey)",
  2226. "homepage": "https://www.drupal.org/u/pcoffey",
  2227. "role": "Maintainer"
  2228. },
  2229. {
  2230. "name": "Taylor Smith (tsmith512)",
  2231. "homepage": "https://www.drupal.org/u/tsmith512",
  2232. "role": "Maintainer"
  2233. },
  2234. {
  2235. "name": "tsmith512",
  2236. "homepage": "https://www.drupal.org/user/2031446"
  2237. }
  2238. ],
  2239. "description": "Allows assigning classes to Blocks.",
  2240. "homepage": "https://www.drupal.org/project/block_class",
  2241. "support": {
  2242. "source": "https://cgit.drupalcode.org/block_class",
  2243. "issues": "https://www.drupal.org/project/issues/block_class",
  2244. "irc": "irc://irc.freenode.org/drupal-contribute"
  2245. }
  2246. },
  2247. {
  2248. "name": "drupal/bulkdelete",
  2249. "version": "dev-1.x",
  2250. "source": {
  2251. "type": "git",
  2252. "url": "https://git.drupal.org/project/bulkdelete",
  2253. "reference": "24499e0f069301d605ab0691e2d6e17ecbcb4060"
  2254. },
  2255. "require": {
  2256. "drupal/core": "~8.0"
  2257. },
  2258. "type": "drupal-module",
  2259. "extra": {
  2260. "branch-alias": {
  2261. "dev-1.x": "1.x-dev"
  2262. },
  2263. "drupal": {
  2264. "version": "8.x-1.x-dev",
  2265. "datestamp": "1495565583",
  2266. "security-coverage": {
  2267. "status": "not-covered",
  2268. "message": "Dev releases are not covered by Drupal security advisories."
  2269. }
  2270. }
  2271. },
  2272. "notification-url": "https://packages.drupal.org/8/downloads",
  2273. "license": [
  2274. "GPL-2.0-or-later"
  2275. ],
  2276. "authors": [
  2277. {
  2278. "name": "Kars-T",
  2279. "homepage": "https://www.drupal.org/user/224499"
  2280. },
  2281. {
  2282. "name": "Rahul Seth",
  2283. "homepage": "https://www.drupal.org/user/2694359"
  2284. },
  2285. {
  2286. "name": "adriancid",
  2287. "homepage": "https://www.drupal.org/user/1962106"
  2288. },
  2289. {
  2290. "name": "robertDouglass",
  2291. "homepage": "https://www.drupal.org/user/5449"
  2292. }
  2293. ],
  2294. "description": "Adds an administrative option to bulk delete nodes by content type using the batch API.",
  2295. "homepage": "https://www.drupal.org/project/bulkdelete",
  2296. "support": {
  2297. "source": "http://cgit.drupalcode.org/bulkdelete"
  2298. },
  2299. "time": "2017-05-23T18:49:48+00:00"
  2300. },
  2301. {
  2302. "name": "drupal/computed_field",
  2303. "version": "2.0.0-alpha4",
  2304. "source": {
  2305. "type": "git",
  2306. "url": "https://git.drupal.org/project/computed_field",
  2307. "reference": "8.x-2.0-alpha4"
  2308. },
  2309. "dist": {
  2310. "type": "zip",
  2311. "url": "https://ftp.drupal.org/files/projects/computed_field-8.x-2.0-alpha4.zip",
  2312. "reference": "8.x-2.0-alpha4",
  2313. "shasum": "daf67f2ecbb2785fa3c01416690ac48fd6737c9c"
  2314. },
  2315. "require": {
  2316. "drupal/core": "~8.0"
  2317. },
  2318. "type": "drupal-module",
  2319. "extra": {
  2320. "branch-alias": {
  2321. "dev-2.x": "2.x-dev"
  2322. },
  2323. "drupal": {
  2324. "version": "8.x-2.0-alpha4",
  2325. "datestamp": "1498842542",
  2326. "security-coverage": {
  2327. "status": "not-covered",
  2328. "message": "Alpha releases are not covered by Drupal security advisories."
  2329. }
  2330. }
  2331. },
  2332. "notification-url": "https://packages.drupal.org/8/downloads",
  2333. "license": [
  2334. "GPL-2.0-or-later"
  2335. ],
  2336. "authors": [
  2337. {
  2338. "name": "Agileware",
  2339. "homepage": "https://www.drupal.org/user/89106"
  2340. },
  2341. {
  2342. "name": "Moonshine",
  2343. "homepage": "https://www.drupal.org/user/133705"
  2344. },
  2345. {
  2346. "name": "Pedro Lozano",
  2347. "homepage": "https://www.drupal.org/user/123766"
  2348. },
  2349. {
  2350. "name": "colan",
  2351. "homepage": "https://www.drupal.org/user/58704"
  2352. },
  2353. {
  2354. "name": "dealancer",
  2355. "homepage": "https://www.drupal.org/user/243418"
  2356. },
  2357. {
  2358. "name": "markus_petrux",
  2359. "homepage": "https://www.drupal.org/user/39593"
  2360. },
  2361. {
  2362. "name": "nickcaballero",
  2363. "homepage": "https://www.drupal.org/user/588336"
  2364. },
  2365. {
  2366. "name": "ram4nd",
  2367. "homepage": "https://www.drupal.org/user/601534"
  2368. }
  2369. ],
  2370. "description": "Defines a field type that allows values to be \"computed\" via PHP code.",
  2371. "homepage": "https://www.drupal.org/project/computed_field",
  2372. "support": {
  2373. "source": "http://cgit.drupalcode.org/computed_field"
  2374. }
  2375. },
  2376. {
  2377. "name": "drupal/config_devel",
  2378. "version": "1.2.0",
  2379. "source": {
  2380. "type": "git",
  2381. "url": "https://git.drupal.org/project/config_devel",
  2382. "reference": "8.x-1.2"
  2383. },
  2384. "dist": {
  2385. "type": "zip",
  2386. "url": "https://ftp.drupal.org/files/projects/config_devel-8.x-1.2.zip",
  2387. "reference": "8.x-1.2",
  2388. "shasum": "203bf299b1ad395d1451e22ea5a8f25ae462d880"
  2389. },
  2390. "require": {
  2391. "drupal/core": "~8.0"
  2392. },
  2393. "type": "drupal-module",
  2394. "extra": {
  2395. "branch-alias": {
  2396. "dev-1.x": "1.x-dev"
  2397. },
  2398. "drupal": {
  2399. "version": "8.x-1.2",
  2400. "datestamp": "1510843084",
  2401. "security-coverage": {
  2402. "status": "covered",
  2403. "message": "Covered by Drupal's security advisory policy"
  2404. }
  2405. }
  2406. },
  2407. "notification-url": "https://packages.drupal.org/8/downloads",
  2408. "license": [
  2409. "GPL-2.0+"
  2410. ],
  2411. "authors": [
  2412. {
  2413. "name": "alexpott",
  2414. "homepage": "https://www.drupal.org/user/157725"
  2415. },
  2416. {
  2417. "name": "benjy",
  2418. "homepage": "https://www.drupal.org/user/1852732"
  2419. },
  2420. {
  2421. "name": "chx",
  2422. "homepage": "https://www.drupal.org/user/9446"
  2423. },
  2424. {
  2425. "name": "joachim",
  2426. "homepage": "https://www.drupal.org/user/107701"
  2427. },
  2428. {
  2429. "name": "nedjo",
  2430. "homepage": "https://www.drupal.org/user/4481"
  2431. },
  2432. {
  2433. "name": "tim.plunkett",
  2434. "homepage": "https://www.drupal.org/user/241634"
  2435. },
  2436. {
  2437. "name": "vijaycs85",
  2438. "homepage": "https://www.drupal.org/user/93488"
  2439. }
  2440. ],
  2441. "description": "Helps developers work with configuration.",
  2442. "homepage": "https://www.drupal.org/project/config_devel",
  2443. "support": {
  2444. "source": "http://cgit.drupalcode.org/config_devel"
  2445. }
  2446. },
  2447. {
  2448. "name": "drupal/config_filter",
  2449. "version": "1.3.0",
  2450. "source": {
  2451. "type": "git",
  2452. "url": "https://git.drupal.org/project/config_filter",
  2453. "reference": "8.x-1.3"
  2454. },
  2455. "dist": {
  2456. "type": "zip",
  2457. "url": "https://ftp.drupal.org/files/projects/config_filter-8.x-1.3.zip",
  2458. "reference": "8.x-1.3",
  2459. "shasum": "56255a17c45dcbb0af713215885a8d74214d2ebc"
  2460. },
  2461. "require": {
  2462. "drupal/core": "~8.0"
  2463. },
  2464. "suggest": {
  2465. "drupal/config_split": "Split site configuration for different environments."
  2466. },
  2467. "type": "drupal-module",
  2468. "extra": {
  2469. "branch-alias": {
  2470. "dev-1.x": "1.x-dev"
  2471. },
  2472. "drupal": {
  2473. "version": "8.x-1.3",
  2474. "datestamp": "1537978080",
  2475. "security-coverage": {
  2476. "status": "covered",
  2477. "message": "Covered by Drupal's security advisory policy"
  2478. }
  2479. }
  2480. },
  2481. "notification-url": "https://packages.drupal.org/8/downloads",
  2482. "license": [
  2483. "GPL-2.0+"
  2484. ],
  2485. "authors": [
  2486. {
  2487. "name": "Fabian Bircher",
  2488. "homepage": "https://www.drupal.org/u/bircher",
  2489. "email": "opensource@fabianbircher.com",
  2490. "role": "Maintainer"
  2491. },
  2492. {
  2493. "name": "Nuvole Web",
  2494. "homepage": "http://nuvole.org",
  2495. "email": "info@nuvole.org",
  2496. "role": "Maintainer"
  2497. },
  2498. {
  2499. "name": "pescetti",
  2500. "homepage": "https://www.drupal.org/user/436244"
  2501. }
  2502. ],
  2503. "description": "Config Filter allows other modules to interact with a ConfigStorage through filter plugins.",
  2504. "homepage": "https://www.drupal.org/project/config_filter",
  2505. "keywords": [
  2506. "Drupal",
  2507. "configuration",
  2508. "configuration management"
  2509. ],
  2510. "support": {
  2511. "source": "http://cgit.drupalcode.org/config_filter",
  2512. "issues": "https://www.drupal.org/project/issues/config_filter",
  2513. "irc": "irc://irc.freenode.org/drupal-contribute"
  2514. }
  2515. },
  2516. {
  2517. "name": "drupal/config_ignore",
  2518. "version": "2.1.0",
  2519. "source": {
  2520. "type": "git",
  2521. "url": "https://git.drupal.org/project/config_ignore",
  2522. "reference": "8.x-2.1"
  2523. },
  2524. "dist": {
  2525. "type": "zip",
  2526. "url": "https://ftp.drupal.org/files/projects/config_ignore-8.x-2.1.zip",
  2527. "reference": "8.x-2.1",
  2528. "shasum": "07e00684930706632b3f2fc2a7433ffdae57cde7"
  2529. },
  2530. "require": {
  2531. "drupal/config_filter": "1.*",
  2532. "drupal/core": "~8.0"
  2533. },
  2534. "type": "drupal-module",
  2535. "extra": {
  2536. "branch-alias": {
  2537. "dev-2.x": "2.x-dev"
  2538. },
  2539. "drupal": {
  2540. "version": "8.x-2.1",
  2541. "datestamp": "1507706044",
  2542. "security-coverage": {
  2543. "status": "covered",
  2544. "message": "Covered by Drupal's security advisory policy"
  2545. }
  2546. }
  2547. },
  2548. "notification-url": "https://packages.drupal.org/8/downloads",
  2549. "license": [
  2550. "GPL-2.0+"
  2551. ],
  2552. "authors": [
  2553. {
  2554. "name": "Tommy Lynge Jørgensen",
  2555. "homepage": "https://www.drupal.org/u/tlyngej",
  2556. "email": "tlyngej@gmail.com",
  2557. "role": "Maintainer"
  2558. },
  2559. {
  2560. "name": "Fabian Bircher",
  2561. "homepage": "https://www.drupal.org/u/bircher",
  2562. "role": "Maintainer"
  2563. }
  2564. ],
  2565. "description": "Ignore certain configuration during import.",
  2566. "homepage": "http://drupal.org/project/config_ignore",
  2567. "support": {
  2568. "source": "http://cgit.drupalcode.org/config_ignore",
  2569. "issues": "http://drupal.org/project/config_ignore",
  2570. "irc": "irc://irc.freenode.org/drupal-contribute"
  2571. }
  2572. },
  2573. {
  2574. "name": "drupal/config_update",
  2575. "version": "1.5.0",
  2576. "source": {
  2577. "type": "git",
  2578. "url": "https://git.drupal.org/project/config_update",
  2579. "reference": "8.x-1.5"
  2580. },
  2581. "dist": {
  2582. "type": "zip",
  2583. "url": "https://ftp.drupal.org/files/projects/config_update-8.x-1.5.zip",
  2584. "reference": "8.x-1.5",
  2585. "shasum": "2f7ae5f90b1c0ab8edf84680d2651e81fab6a126"
  2586. },
  2587. "require": {
  2588. "drupal/core": "*"
  2589. },
  2590. "type": "drupal-module",
  2591. "extra": {
  2592. "branch-alias": {
  2593. "dev-1.x": "1.x-dev"
  2594. },
  2595. "drupal": {
  2596. "version": "8.x-1.5",
  2597. "datestamp": "1512587912",
  2598. "security-coverage": {
  2599. "status": "covered",
  2600. "message": "Covered by Drupal's security advisory policy"
  2601. }
  2602. }
  2603. },
  2604. "notification-url": "https://packages.drupal.org/8/downloads",
  2605. "license": [
  2606. "GPL-2.0-or-later"
  2607. ],
  2608. "authors": [
  2609. {
  2610. "name": "jhodgdon",
  2611. "homepage": "https://www.drupal.org/user/155601"
  2612. },
  2613. {
  2614. "name": "nedjo",
  2615. "homepage": "https://www.drupal.org/user/4481"
  2616. }
  2617. ],
  2618. "description": "Provides basic revert and update functionality for other modules",
  2619. "homepage": "https://www.drupal.org/project/config_update",
  2620. "support": {
  2621. "source": "http://cgit.drupalcode.org/config_update"
  2622. }
  2623. },
  2624. {
  2625. "name": "drupal/console",
  2626. "version": "1.8.0",
  2627. "source": {
  2628. "type": "git",
  2629. "url": "https://github.com/hechoendrupal/drupal-console.git",
  2630. "reference": "368bbfa44dc6b957eb4db01977f7c39e83032d18"
  2631. },
  2632. "dist": {
  2633. "type": "zip",
  2634. "url": "https://api.github.com/repos/hechoendrupal/drupal-console/zipball/368bbfa44dc6b957eb4db01977f7c39e83032d18",
  2635. "reference": "368bbfa44dc6b957eb4db01977f7c39e83032d18",
  2636. "shasum": ""
  2637. },
  2638. "require": {
  2639. "alchemy/zippy": "0.4.3",
  2640. "composer/installers": "~1.0",
  2641. "doctrine/annotations": "^1.2",
  2642. "doctrine/collections": "^1.3",
  2643. "drupal/console-core": "1.8.0",
  2644. "drupal/console-extend-plugin": "~0",
  2645. "guzzlehttp/guzzle": "~6.1",
  2646. "php": "^5.5.9 || ^7.0",
  2647. "psy/psysh": "0.6.* || ~0.8",
  2648. "symfony/css-selector": "~2.8|~3.0",
  2649. "symfony/dom-crawler": "~2.8|~3.0",
  2650. "symfony/http-foundation": "~2.8|~3.0"
  2651. },
  2652. "suggest": {
  2653. "symfony/thanks": "Thank your favorite PHP projects on Github using the CLI!",
  2654. "vlucas/phpdotenv": "Loads environment variables from .env to getenv(), $_ENV and $_SERVER automagically."
  2655. },
  2656. "bin": [
  2657. "bin/drupal"
  2658. ],
  2659. "type": "library",
  2660. "autoload": {
  2661. "psr-4": {
  2662. "Drupal\\Console\\": "src"
  2663. }
  2664. },
  2665. "notification-url": "https://packagist.org/downloads/",
  2666. "license": [
  2667. "GPL-2.0-or-later"
  2668. ],
  2669. "authors": [
  2670. {
  2671. "name": "David Flores",
  2672. "email": "dmousex@gmail.com",
  2673. "homepage": "http://dmouse.net"
  2674. },
  2675. {
  2676. "name": "Jesus Manuel Olivas",
  2677. "email": "jesus.olivas@gmail.com",
  2678. "homepage": "http://jmolivas.com"
  2679. },
  2680. {
  2681. "name": "Eduardo Garcia",
  2682. "email": "enzo@enzolutions.com",
  2683. "homepage": "http://enzolutions.com/"
  2684. },
  2685. {
  2686. "name": "Omar Aguirre",
  2687. "email": "omersguchigu@gmail.com"
  2688. },
  2689. {
  2690. "name": "Drupal Console Contributors",
  2691. "homepage": "https://github.com/hechoendrupal/drupal-console/graphs/contributors"
  2692. }
  2693. ],
  2694. "description": "The Drupal CLI. A tool to generate boilerplate code, interact with and debug Drupal.",
  2695. "homepage": "http://drupalconsole.com/",
  2696. "keywords": [
  2697. "console",
  2698. "development",
  2699. "drupal",
  2700. "symfony"
  2701. ],
  2702. "time": "2018-03-21T20:50:16+00:00"
  2703. },
  2704. {
  2705. "name": "drupal/console-core",
  2706. "version": "1.8.0",
  2707. "source": {
  2708. "type": "git",
  2709. "url": "https://github.com/hechoendrupal/drupal-console-core.git",
  2710. "reference": "bf1fb4a6f689377acec1694267f674178d28e5d1"
  2711. },
  2712. "dist": {
  2713. "type": "zip",
  2714. "url": "https://api.github.com/repos/hechoendrupal/drupal-console-core/zipball/bf1fb4a6f689377acec1694267f674178d28e5d1",
  2715. "reference": "bf1fb4a6f689377acec1694267f674178d28e5d1",
  2716. "shasum": ""
  2717. },
  2718. "require": {
  2719. "dflydev/dot-access-configuration": "^1.0",
  2720. "drupal/console-en": "1.8.0",
  2721. "php": "^5.5.9 || ^7.0",
  2722. "stecman/symfony-console-completion": "~0.7",
  2723. "symfony/config": "~2.8|~3.0",
  2724. "symfony/console": "~2.8|~3.0",
  2725. "symfony/debug": "~2.8|~3.0",
  2726. "symfony/dependency-injection": "~2.8|~3.0",
  2727. "symfony/event-dispatcher": "~2.8|~3.0",
  2728. "symfony/filesystem": "~2.8|~3.0",
  2729. "symfony/finder": "~2.8|~3.0",
  2730. "symfony/process": "~2.8|~3.0",
  2731. "symfony/translation": "~2.8|~3.0",
  2732. "symfony/yaml": "~2.8|~3.0",
  2733. "twig/twig": "^1.23.1",
  2734. "webflo/drupal-finder": "^1.0",
  2735. "webmozart/path-util": "^2.3"
  2736. },
  2737. "type": "library",
  2738. "autoload": {
  2739. "files": [
  2740. "src/functions.php"
  2741. ],
  2742. "psr-4": {
  2743. "Drupal\\Console\\Core\\": "src"
  2744. }
  2745. },
  2746. "notification-url": "https://packagist.org/downloads/",
  2747. "license": [
  2748. "GPL-2.0-or-later"
  2749. ],
  2750. "authors": [
  2751. {
  2752. "name": "David Flores",
  2753. "email": "dmousex@gmail.com",
  2754. "homepage": "http://dmouse.net"
  2755. },
  2756. {
  2757. "name": "Jesus Manuel Olivas",
  2758. "email": "jesus.olivas@gmail.com",
  2759. "homepage": "http://jmolivas.com"
  2760. },
  2761. {
  2762. "name": "Drupal Console Contributors",
  2763. "homepage": "https://github.com/hechoendrupal/DrupalConsole/graphs/contributors"
  2764. },
  2765. {
  2766. "name": "Eduardo Garcia",
  2767. "email": "enzo@enzolutions.com",
  2768. "homepage": "http://enzolutions.com/"
  2769. },
  2770. {
  2771. "name": "Omar Aguirre",
  2772. "email": "omersguchigu@gmail.com"
  2773. }
  2774. ],
  2775. "description": "Drupal Console Core",
  2776. "homepage": "http://drupalconsole.com/",
  2777. "keywords": [
  2778. "console",
  2779. "development",
  2780. "drupal",
  2781. "symfony"
  2782. ],
  2783. "time": "2018-03-21T19:33:23+00:00"
  2784. },
  2785. {
  2786. "name": "drupal/console-en",
  2787. "version": "1.8.0",
  2788. "source": {
  2789. "type": "git",
  2790. "url": "https://github.com/hechoendrupal/drupal-console-en.git",
  2791. "reference": "ea956ddffab04f519a89858810e5f695b9def92b"
  2792. },
  2793. "dist": {
  2794. "type": "zip",
  2795. "url": "https://api.github.com/repos/hechoendrupal/drupal-console-en/zipball/ea956ddffab04f519a89858810e5f695b9def92b",
  2796. "reference": "ea956ddffab04f519a89858810e5f695b9def92b",
  2797. "shasum": ""
  2798. },
  2799. "type": "drupal-console-language",
  2800. "notification-url": "https://packagist.org/downloads/",
  2801. "license": [
  2802. "GPL-2.0-or-later"
  2803. ],
  2804. "authors": [
  2805. {
  2806. "name": "David Flores",
  2807. "email": "dmousex@gmail.com",
  2808. "homepage": "http://dmouse.net"
  2809. },
  2810. {
  2811. "name": "Jesus Manuel Olivas",
  2812. "email": "jesus.olivas@gmail.com",
  2813. "homepage": "http://jmolivas.com"
  2814. },
  2815. {
  2816. "name": "Drupal Console Contributors",
  2817. "homepage": "https://github.com/hechoendrupal/DrupalConsole/graphs/contributors"
  2818. },
  2819. {
  2820. "name": "Eduardo Garcia",
  2821. "email": "enzo@enzolutions.com",
  2822. "homepage": "http://enzolutions.com/"
  2823. },
  2824. {
  2825. "name": "Omar Aguirre",
  2826. "email": "omersguchigu@gmail.com"
  2827. }
  2828. ],
  2829. "description": "Drupal Console English Language",
  2830. "homepage": "http://drupalconsole.com/",
  2831. "keywords": [
  2832. "console",
  2833. "development",
  2834. "drupal",
  2835. "symfony"
  2836. ],
  2837. "time": "2018-03-21T19:16:27+00:00"
  2838. },
  2839. {
  2840. "name": "drupal/console-extend-plugin",
  2841. "version": "0.9.2",
  2842. "source": {
  2843. "type": "git",
  2844. "url": "https://github.com/hechoendrupal/drupal-console-extend-plugin.git",
  2845. "reference": "f3bac233fd305359c33e96621443b3bd065555cc"
  2846. },
  2847. "dist": {
  2848. "type": "zip",
  2849. "url": "https://api.github.com/repos/hechoendrupal/drupal-console-extend-plugin/zipball/f3bac233fd305359c33e96621443b3bd065555cc",
  2850. "reference": "f3bac233fd305359c33e96621443b3bd065555cc",
  2851. "shasum": ""
  2852. },
  2853. "require": {
  2854. "composer-plugin-api": "^1.0",
  2855. "symfony/finder": "~2.7|~3.0",
  2856. "symfony/yaml": "~2.7|~3.0"
  2857. },
  2858. "type": "composer-plugin",
  2859. "extra": {
  2860. "class": "Drupal\\Console\\Composer\\Plugin\\Extender"
  2861. },
  2862. "autoload": {
  2863. "psr-4": {
  2864. "Drupal\\Console\\Composer\\Plugin\\": "src"
  2865. }
  2866. },
  2867. "notification-url": "https://packagist.org/downloads/",
  2868. "license": [
  2869. "GPL-2.0+"
  2870. ],
  2871. "authors": [
  2872. {
  2873. "name": "Jesus Manuel Olivas",
  2874. "email": "jesus.olivas@gmail.com"
  2875. }
  2876. ],
  2877. "description": "Drupal Console Extend Plugin",
  2878. "time": "2017-07-28T17:11:54+00:00"
  2879. },
  2880. {
  2881. "name": "drupal/content_lock",
  2882. "version": "1.0.0-alpha8",
  2883. "source": {
  2884. "type": "git",
  2885. "url": "https://git.drupal.org/project/content_lock",
  2886. "reference": "8.x-1.0-alpha8"
  2887. },
  2888. "dist": {
  2889. "type": "zip",
  2890. "url": "https://ftp.drupal.org/files/projects/content_lock-8.x-1.0-alpha8.zip",
  2891. "reference": "8.x-1.0-alpha8",
  2892. "shasum": "dbb5986dbfbe325eb869a4ac42b88b266dc089c6"
  2893. },
  2894. "require": {
  2895. "drupal/core": "~8"
  2896. },
  2897. "require-dev": {
  2898. "drupal/conflict": "dev-2.x",
  2899. "drupal/prefetch_cache": "dev-1.x"
  2900. },
  2901. "type": "drupal-module",
  2902. "extra": {
  2903. "branch-alias": {
  2904. "dev-1.x": "1.x-dev"
  2905. },
  2906. "drupal": {
  2907. "version": "8.x-1.0-alpha8",
  2908. "datestamp": "1520356080",
  2909. "security-coverage": {
  2910. "status": "not-covered",
  2911. "message": "Alpha releases are not covered by Drupal security advisories."
  2912. }
  2913. }
  2914. },
  2915. "notification-url": "https://packages.drupal.org/8/downloads",
  2916. "license": [
  2917. "GPL-2.0-or-later"
  2918. ],
  2919. "authors": [
  2920. {
  2921. "name": "Joseph Zhao",
  2922. "homepage": "https://www.drupal.org/user/1987218"
  2923. },
  2924. {
  2925. "name": "chr.fritsch",
  2926. "homepage": "https://www.drupal.org/user/2103716"
  2927. },
  2928. {
  2929. "name": "ergonlogic",
  2930. "homepage": "https://www.drupal.org/user/368613"
  2931. }
  2932. ],
  2933. "description": "Prevents multiple users from trying to edit a content entity simultaneously to prevent edit conflicts.",
  2934. "homepage": "https://www.drupal.org/project/content_lock",
  2935. "support": {
  2936. "source": "http://cgit.drupalcode.org/content_lock"
  2937. }
  2938. },
  2939. {
  2940. "name": "drupal/context",
  2941. "version": "4.0.0-beta2",
  2942. "source": {
  2943. "type": "git",
  2944. "url": "https://git.drupal.org/project/context",
  2945. "reference": "8.x-4.0-beta2"
  2946. },
  2947. "dist": {
  2948. "type": "zip",
  2949. "url": "https://ftp.drupal.org/files/projects/context-8.x-4.0-beta2.zip",
  2950. "reference": "8.x-4.0-beta2",
  2951. "shasum": "e41bc912e1ec73bc4d08a3cf730dc2405a9213d3"
  2952. },
  2953. "require": {
  2954. "drupal/core": "~8.0"
  2955. },
  2956. "type": "drupal-module",
  2957. "extra": {
  2958. "branch-alias": {
  2959. "dev-4.x": "4.x-dev"
  2960. },
  2961. "drupal": {
  2962. "version": "8.x-4.0-beta2",
  2963. "datestamp": "1505378944",
  2964. "security-coverage": {
  2965. "status": "not-covered",
  2966. "message": "Beta releases are not covered by Drupal security advisories."
  2967. }
  2968. }
  2969. },
  2970. "notification-url": "https://packages.drupal.org/8/downloads",
  2971. "license": [
  2972. "MIT"
  2973. ],
  2974. "authors": [
  2975. {
  2976. "name": "Christoffer Palm",
  2977. "homepage": "http://www.oddhill.se/",
  2978. "email": "christoffer.palm@oddhill.se",
  2979. "role": "Developer"
  2980. },
  2981. {
  2982. "name": "Steven Jones",
  2983. "homepage": "https://www.drupal.org/user/99644"
  2984. },
  2985. {
  2986. "name": "alex_b",
  2987. "homepage": "https://www.drupal.org/user/53995"
  2988. },
  2989. {
  2990. "name": "boshtian",
  2991. "homepage": "https://www.drupal.org/user/1773456"
  2992. },
  2993. {
  2994. "name": "colan",
  2995. "homepage": "https://www.drupal.org/user/58704"
  2996. },
  2997. {
  2998. "name": "emanaton",
  2999. "homepage": "https://www.drupal.org/user/120853"
  3000. },
  3001. {
  3002. "name": "febbraro",
  3003. "homepage": "https://www.drupal.org/user/43670"
  3004. },
  3005. {
  3006. "name": "fizk",
  3007. "homepage": "https://www.drupal.org/user/473174"
  3008. },
  3009. {
  3010. "name": "hass",
  3011. "homepage": "https://www.drupal.org/user/85918"
  3012. },
  3013. {
  3014. "name": "hefox",
  3015. "homepage": "https://www.drupal.org/user/426416"
  3016. },
  3017. {
  3018. "name": "hyrcan",
  3019. "homepage": "https://www.drupal.org/user/26618"
  3020. },
  3021. {
  3022. "name": "jmiccolis",
  3023. "homepage": "https://www.drupal.org/user/31731"
  3024. },
  3025. {
  3026. "name": "tekante",
  3027. "homepage": "https://www.drupal.org/user/640024"
  3028. },
  3029. {
  3030. "name": "yhahn",
  3031. "homepage": "https://www.drupal.org/user/264833"
  3032. }
  3033. ],
  3034. "description": "Manage contextual conditions and reactions for different portions of your site.",
  3035. "homepage": "https://github.com/oddhill/context",
  3036. "keywords": [
  3037. "Drupal",
  3038. "block",
  3039. "conditions",
  3040. "context",
  3041. "visibility"
  3042. ],
  3043. "support": {
  3044. "source": "https://github.com/oddhill/context",
  3045. "issues": "https://github.com/oddhill/context/issues",
  3046. "docs": "https://github.com/oddhill/context"
  3047. }
  3048. },
  3049. {
  3050. "name": "drupal/cshs",
  3051. "version": "dev-1.x",
  3052. "source": {
  3053. "type": "git",
  3054. "url": "https://git.drupal.org/project/cshs",
  3055. "reference": "c4a2deff253e24c83b14f960ce9dce49fa115f60"
  3056. },
  3057. "require": {
  3058. "drupal/core": "*"
  3059. },
  3060. "type": "drupal-module",
  3061. "extra": {
  3062. "branch-alias": {
  3063. "dev-1.x": "1.x-dev"
  3064. },
  3065. "drupal": {
  3066. "version": "8.x-1.0-beta4+4-dev",
  3067. "datestamp": "1512800285",
  3068. "security-coverage": {
  3069. "status": "not-covered",
  3070. "message": "Dev releases are not covered by Drupal security advisories."
  3071. }
  3072. }
  3073. },
  3074. "notification-url": "https://packages.drupal.org/8/downloads",
  3075. "license": [
  3076. "GPL-2.0-or-later"
  3077. ],
  3078. "authors": [
  3079. {
  3080. "name": "BR0kEN",
  3081. "homepage": "https://www.drupal.org/user/2802285"
  3082. },
  3083. {
  3084. "name": "purushotam.rai",
  3085. "homepage": "https://www.drupal.org/user/3193859"
  3086. },
  3087. {
  3088. "name": "valderama",
  3089. "homepage": "https://www.drupal.org/user/103634"
  3090. }
  3091. ],
  3092. "description": "A simple client-side hierarchical select widget for taxonomy terms.",
  3093. "homepage": "https://www.drupal.org/project/cshs",
  3094. "support": {
  3095. "source": "http://cgit.drupalcode.org/cshs"
  3096. },
  3097. "time": "2018-06-24T13:39:17+00:00"
  3098. },
  3099. {
  3100. "name": "drupal/ctools",
  3101. "version": "3.0.0",
  3102. "source": {
  3103. "type": "git",
  3104. "url": "https://git.drupal.org/project/ctools",
  3105. "reference": "8.x-3.0"
  3106. },
  3107. "dist": {
  3108. "type": "zip",
  3109. "url": "https://ftp.drupal.org/files/projects/ctools-8.x-3.0.zip",
  3110. "reference": "8.x-3.0",
  3111. "shasum": "302e869ecd1e59fe55663673999fee2ccac5daa8"
  3112. },
  3113. "require": {
  3114. "drupal/core": "~8.0"
  3115. },
  3116. "type": "drupal-module",
  3117. "extra": {
  3118. "branch-alias": {
  3119. "dev-3.x": "3.x-dev"
  3120. },
  3121. "drupal": {
  3122. "version": "8.x-3.0",
  3123. "datestamp": "1493401742",
  3124. "security-coverage": {
  3125. "status": "covered",
  3126. "message": "Covered by Drupal's security advisory policy"
  3127. }
  3128. }
  3129. },
  3130. "notification-url": "https://packages.drupal.org/8/downloads",
  3131. "license": [
  3132. "GPL-2.0+"
  3133. ],
  3134. "authors": [
  3135. {
  3136. "name": "Kris Vanderwater (EclipseGc)",
  3137. "homepage": "https://www.drupal.org/u/eclipsegc",
  3138. "role": "Maintainer"
  3139. },
  3140. {
  3141. "name": "Jakob Perry (japerry)",
  3142. "homepage": "https://www.drupal.org/u/japerry",
  3143. "role": "Maintainer"
  3144. },
  3145. {
  3146. "name": "Tim Plunkett (tim.plunkett)",
  3147. "homepage": "https://www.drupal.org/u/timplunkett",
  3148. "role": "Maintainer"
  3149. },
  3150. {
  3151. "name": "James Gilliland (neclimdul)",
  3152. "homepage": "https://www.drupal.org/u/neclimdul",
  3153. "role": "Maintainer"
  3154. },
  3155. {
  3156. "name": "Daniel Wehner (dawehner)",
  3157. "homepage": "https://www.drupal.org/u/dawehner",
  3158. "role": "Maintainer"
  3159. },
  3160. {
  3161. "name": "joelpittet",
  3162. "homepage": "https://www.drupal.org/user/160302"
  3163. },
  3164. {
  3165. "name": "merlinofchaos",
  3166. "homepage": "https://www.drupal.org/user/26979"
  3167. },
  3168. {
  3169. "name": "neclimdul",
  3170. "homepage": "https://www.drupal.org/user/48673"
  3171. },
  3172. {
  3173. "name": "sdboyer",
  3174. "homepage": "https://www.drupal.org/user/146719"
  3175. },
  3176. {
  3177. "name": "sun",
  3178. "homepage": "https://www.drupal.org/user/54136"
  3179. },
  3180. {
  3181. "name": "tim.plunkett",
  3182. "homepage": "https://www.drupal.org/user/241634"
  3183. }
  3184. ],
  3185. "description": "Provides a number of utility and helper APIs for Drupal developers and site builders.",
  3186. "homepage": "https://www.drupal.org/project/ctools",
  3187. "support": {
  3188. "source": "http://cgit.drupalcode.org/ctools",
  3189. "issues": "https://www.drupal.org/project/issues/ctools"
  3190. }
  3191. },
  3192. {
  3193. "name": "drupal/date_range_formatter",
  3194. "version": "3.1.0",
  3195. "source": {
  3196. "type": "git",
  3197. "url": "https://git.drupal.org/project/date_range_formatter",
  3198. "reference": "8.x-3.1"
  3199. },
  3200. "dist": {
  3201. "type": "zip",
  3202. "url": "https://ftp.drupal.org/files/projects/date_range_formatter-8.x-3.1.zip",
  3203. "reference": "8.x-3.1",
  3204. "shasum": "a98c511ac90eb92879235bc82a3aa643f7b5c173"
  3205. },
  3206. "require": {
  3207. "drupal/core": "*"
  3208. },
  3209. "type": "drupal-module",
  3210. "extra": {
  3211. "branch-alias": {
  3212. "dev-3.x": "3.x-dev"
  3213. },
  3214. "drupal": {
  3215. "version": "8.x-3.1",
  3216. "datestamp": "1502454544",
  3217. "security-coverage": {
  3218. "status": "covered",
  3219. "message": "Covered by Drupal's security advisory policy"
  3220. }
  3221. }
  3222. },
  3223. "notification-url": "https://packages.drupal.org/8/downloads",
  3224. "license": [
  3225. "GPL-2.0-or-later"
  3226. ],
  3227. "authors": [
  3228. {
  3229. "name": "Sudishth",
  3230. "homepage": "https://www.drupal.org/user/1440562"
  3231. },
  3232. {
  3233. "name": "maximpodorov",
  3234. "homepage": "https://www.drupal.org/user/515310"
  3235. }
  3236. ],
  3237. "description": "Formats date ranges.",
  3238. "homepage": "https://www.drupal.org/project/date_range_formatter",
  3239. "support": {
  3240. "source": "http://cgit.drupalcode.org/date_range_formatter"
  3241. }
  3242. },
  3243. {
  3244. "name": "drupal/devel",
  3245. "version": "1.2.0",
  3246. "source": {
  3247. "type": "git",
  3248. "url": "https://git.drupal.org/project/devel",
  3249. "reference": "8.x-1.2"
  3250. },
  3251. "dist": {
  3252. "type": "zip",
  3253. "url": "https://ftp.drupal.org/files/projects/devel-8.x-1.2.zip",
  3254. "reference": "8.x-1.2",
  3255. "shasum": "01f3349ef75f6e21fceef24be9d3d6506ca29647"
  3256. },
  3257. "require": {
  3258. "drupal/core": "~8.0"
  3259. },
  3260. "suggest": {
  3261. "symfony/var-dumper": "Pretty print complex values better with var-dumper available"
  3262. },
  3263. "type": "drupal-module",
  3264. "extra": {
  3265. "branch-alias": {
  3266. "dev-1.x": "1.x-dev"
  3267. },
  3268. "drupal": {
  3269. "version": "8.x-1.2",
  3270. "datestamp": "1507197844",
  3271. "security-coverage": {
  3272. "status": "covered",
  3273. "message": "Covered by Drupal's security advisory policy"
  3274. }
  3275. }
  3276. },
  3277. "notification-url": "https://packages.drupal.org/8/downloads",
  3278. "license": [
  3279. "GPL-2.0+"
  3280. ],
  3281. "authors": [
  3282. {
  3283. "name": "Moshe Weitzman",
  3284. "homepage": "https://github.com/weitzman",
  3285. "email": "weitzman@tejasa.com",
  3286. "role": "Maintainer"
  3287. },
  3288. {
  3289. "name": "Hans Salvisberg",
  3290. "homepage": "https://www.drupal.org/u/salvis",
  3291. "email": "drupal@salvisberg.com",
  3292. "role": "Maintainer"
  3293. },
  3294. {
  3295. "name": "Luca Lusso",
  3296. "homepage": "https://www.drupal.org/u/lussoluca",
  3297. "role": "Maintainer"
  3298. },
  3299. {
  3300. "name": "Marco (willzyx)",
  3301. "homepage": "https://www.drupal.org/u/willzyx",
  3302. "role": "Maintainer"
  3303. },
  3304. {
  3305. "name": "See contributors",
  3306. "homepage": "https://www.drupal.org/node/3236/committers"
  3307. },
  3308. {
  3309. "name": "salvis",
  3310. "homepage": "https://www.drupal.org/user/82964"
  3311. },
  3312. {
  3313. "name": "willzyx",
  3314. "homepage": "https://www.drupal.org/user/1043862"
  3315. }
  3316. ],
  3317. "description": "Various blocks, pages, and functions for developers.",
  3318. "homepage": "http://drupal.org/project/devel",
  3319. "support": {
  3320. "source": "http://cgit.drupalcode.org/devel",
  3321. "issues": "http://drupal.org/project/devel",
  3322. "irc": "irc://irc.freenode.org/drupal-contribute"
  3323. }
  3324. },
  3325. {
  3326. "name": "drupal/devel_generate",
  3327. "version": "1.2.0",
  3328. "require": {
  3329. "drupal/core": "~8.0",
  3330. "drupal/devel": "self.version"
  3331. },
  3332. "type": "metapackage",
  3333. "extra": {
  3334. "branch-alias": {
  3335. "dev-1.x": "1.x-dev"
  3336. },
  3337. "drupal": {
  3338. "version": "8.x-1.2",
  3339. "datestamp": "1507197844",
  3340. "security-coverage": {
  3341. "status": "covered",
  3342. "message": "Covered by Drupal's security advisory policy"
  3343. }
  3344. }
  3345. },
  3346. "notification-url": "https://packages.drupal.org/8/downloads",
  3347. "license": [
  3348. "GPL-2.0-or-later"
  3349. ],
  3350. "authors": [
  3351. {
  3352. "name": "catch",
  3353. "homepage": "https://www.drupal.org/user/35733"
  3354. },
  3355. {
  3356. "name": "juampynr",
  3357. "homepage": "https://www.drupal.org/user/682736"
  3358. },
  3359. {
  3360. "name": "lussoluca",
  3361. "homepage": "https://www.drupal.org/user/138068"
  3362. },
  3363. {
  3364. "name": "moshe weitzman",
  3365. "homepage": "https://www.drupal.org/user/23"
  3366. },
  3367. {
  3368. "name": "pcambra",
  3369. "homepage": "https://www.drupal.org/user/122101"
  3370. },
  3371. {
  3372. "name": "salvis",
  3373. "homepage": "https://www.drupal.org/user/82964"
  3374. },
  3375. {
  3376. "name": "willzyx",
  3377. "homepage": "https://www.drupal.org/user/1043862"
  3378. }
  3379. ],
  3380. "description": "Generate dummy users, nodes, menus, taxonomy terms...",
  3381. "homepage": "https://www.drupal.org/project/devel",
  3382. "support": {
  3383. "source": "http://cgit.drupalcode.org/devel"
  3384. }
  3385. },
  3386. {
  3387. "name": "drupal/domain",
  3388. "version": "1.0.0-alpha14",
  3389. "source": {
  3390. "type": "git",
  3391. "url": "https://git.drupal.org/project/domain",
  3392. "reference": "8.x-1.0-alpha14"
  3393. },
  3394. "dist": {
  3395. "type": "zip",
  3396. "url": "https://ftp.drupal.org/files/projects/domain-8.x-1.0-alpha14.zip",
  3397. "reference": "8.x-1.0-alpha14",
  3398. "shasum": "9889669ee19ae07fc44ab3bbe6fd7049e1317499"
  3399. },
  3400. "require": {
  3401. "drupal/core": "^8.5"
  3402. },
  3403. "require-dev": {
  3404. "drupal/domain_access": "*"
  3405. },
  3406. "type": "drupal-module",
  3407. "extra": {
  3408. "branch-alias": {
  3409. "dev-1.x": "1.x-dev"
  3410. },
  3411. "drupal": {
  3412. "version": "8.x-1.0-alpha14",
  3413. "datestamp": "1539981780",
  3414. "security-coverage": {
  3415. "status": "not-covered",
  3416. "message": "Alpha releases are not covered by Drupal security advisories."
  3417. }
  3418. }
  3419. },
  3420. "notification-url": "https://packages.drupal.org/8/downloads",
  3421. "license": [
  3422. "GPL-2.0-or-later"
  3423. ],
  3424. "authors": [
  3425. {
  3426. "name": "agentrickard",
  3427. "homepage": "https://www.drupal.org/user/20975"
  3428. },
  3429. {
  3430. "name": "nonsie",
  3431. "homepage": "https://www.drupal.org/user/29899"
  3432. }
  3433. ],
  3434. "description": "Creates domain records within a Drupal installation.",
  3435. "homepage": "https://www.drupal.org/project/domain",
  3436. "support": {
  3437. "source": "http://cgit.drupalcode.org/domain"
  3438. }
  3439. },
  3440. {
  3441. "name": "drupal/domain_alias",
  3442. "version": "1.0.0-alpha14",
  3443. "require": {
  3444. "drupal/core": "~8.0",
  3445. "drupal/domain": "self.version"
  3446. },
  3447. "type": "metapackage",
  3448. "extra": {
  3449. "branch-alias": {
  3450. "dev-1.x": "1.x-dev"
  3451. },
  3452. "drupal": {
  3453. "version": "8.x-1.0-alpha14",
  3454. "datestamp": "1539981780",
  3455. "security-coverage": {
  3456. "status": "not-covered",
  3457. "message": "Alpha releases are not covered by Drupal security advisories."
  3458. }
  3459. }
  3460. },
  3461. "notification-url": "https://packages.drupal.org/8/downloads",
  3462. "license": [
  3463. "GPL-2.0-or-later"
  3464. ],
  3465. "authors": [
  3466. {
  3467. "name": "agentrickard",
  3468. "homepage": "https://www.drupal.org/user/20975"
  3469. },
  3470. {
  3471. "name": "nonsie",
  3472. "homepage": "https://www.drupal.org/user/29899"
  3473. }
  3474. ],
  3475. "description": "Maps multiple host requests to a single domain record.",
  3476. "homepage": "https://www.drupal.org/project/domain",
  3477. "support": {
  3478. "source": "http://cgit.drupalcode.org/domain"
  3479. }
  3480. },
  3481. {
  3482. "name": "drupal/domain_config",
  3483. "version": "1.0.0-alpha14",
  3484. "require": {
  3485. "drupal/core": "~8.0",
  3486. "drupal/domain": "self.version"
  3487. },
  3488. "type": "metapackage",
  3489. "extra": {
  3490. "branch-alias": {
  3491. "dev-1.x": "1.x-dev"
  3492. },
  3493. "drupal": {
  3494. "version": "8.x-1.0-alpha14",
  3495. "datestamp": "1539981780",
  3496. "security-coverage": {
  3497. "status": "not-covered",
  3498. "message": "Alpha releases are not covered by Drupal security advisories."
  3499. }
  3500. }
  3501. },
  3502. "notification-url": "https://packages.drupal.org/8/downloads",
  3503. "license": [
  3504. "GPL-2.0-or-later"
  3505. ],
  3506. "authors": [
  3507. {
  3508. "name": "agentrickard",
  3509. "homepage": "https://www.drupal.org/user/20975"
  3510. },
  3511. {
  3512. "name": "nonsie",
  3513. "homepage": "https://www.drupal.org/user/29899"
  3514. }
  3515. ],
  3516. "description": "Allows domain specific configuration.",
  3517. "homepage": "https://www.drupal.org/project/domain",
  3518. "support": {
  3519. "source": "http://cgit.drupalcode.org/domain"
  3520. }
  3521. },
  3522. {
  3523. "name": "drupal/domain_site_settings",
  3524. "version": "1.3.0",
  3525. "source": {
  3526. "type": "git",
  3527. "url": "https://git.drupal.org/project/domain_site_settings",
  3528. "reference": "8.x-1.3"
  3529. },
  3530. "dist": {
  3531. "type": "zip",
  3532. "url": "https://ftp.drupal.org/files/projects/domain_site_settings-8.x-1.3.zip",
  3533. "reference": "8.x-1.3",
  3534. "shasum": "36ad22d8e31400f372b9e7f587578061b4fdc5db"
  3535. },
  3536. "require": {
  3537. "drupal/core": "~8.0",
  3538. "drupal/domain": "*",
  3539. "drupal/domain_config": "*"
  3540. },
  3541. "type": "drupal-module",
  3542. "extra": {
  3543. "branch-alias": {
  3544. "dev-1.x": "1.x-dev"
  3545. },
  3546. "drupal": {
  3547. "version": "8.x-1.3",
  3548. "datestamp": "1537684980",
  3549. "security-coverage": {
  3550. "status": "covered",
  3551. "message": "Covered by Drupal's security advisory policy"
  3552. }
  3553. }
  3554. },
  3555. "notification-url": "https://packages.drupal.org/8/downloads",
  3556. "license": [
  3557. "GPL-2.0+"
  3558. ],
  3559. "authors": [
  3560. {
  3561. "name": "aloknarwaria",
  3562. "homepage": "https://www.drupal.org/user/906640"
  3563. }
  3564. ],
  3565. "description": "Basic Site Setting for Domains.",
  3566. "homepage": "https://www.drupal.org/project/domain_site_settings",
  3567. "keywords": [
  3568. "Drupal"
  3569. ],
  3570. "support": {
  3571. "source": "http://cgit.drupalcode.org/domain_site_settings",
  3572. "issues": "https://www.drupal.org/project/issues/domain_site_settings"
  3573. }
  3574. },
  3575. {
  3576. "name": "drupal/email_registration",
  3577. "version": "1.0.0-rc5",
  3578. "source": {
  3579. "type": "git",
  3580. "url": "https://git.drupal.org/project/email_registration",
  3581. "reference": "8.x-1.0-rc5"
  3582. },
  3583. "dist": {
  3584. "type": "zip",
  3585. "url": "https://ftp.drupal.org/files/projects/email_registration-8.x-1.0-rc5.zip",
  3586. "reference": "8.x-1.0-rc5",
  3587. "shasum": "8e068ad37077bb3937150155ce13617d98b9b6b1"
  3588. },
  3589. "require": {
  3590. "drupal/core": "*"
  3591. },
  3592. "type": "drupal-module",
  3593. "extra": {
  3594. "branch-alias": {
  3595. "dev-1.x": "1.x-dev"
  3596. },
  3597. "drupal": {
  3598. "version": "8.x-1.0-rc5",
  3599. "datestamp": "1491318182",
  3600. "security-coverage": {
  3601. "status": "not-covered",
  3602. "message": "RC releases are not covered by Drupal security advisories."
  3603. }
  3604. }
  3605. },
  3606. "notification-url": "https://packages.drupal.org/8/downloads",
  3607. "license": [
  3608. "GPL-2.0-or-later"
  3609. ],
  3610. "authors": [
  3611. {
  3612. "name": "Chris Herberte",
  3613. "homepage": "https://www.drupal.org/user/1171"
  3614. },
  3615. {
  3616. "name": "andypost",
  3617. "homepage": "https://www.drupal.org/user/118908"
  3618. },
  3619. {
  3620. "name": "greggles",
  3621. "homepage": "https://www.drupal.org/user/36762"
  3622. },
  3623. {
  3624. "name": "moshe weitzman",
  3625. "homepage": "https://www.drupal.org/user/23"
  3626. }
  3627. ],
  3628. "description": "Allows users to register with an e-mail address as their username.",
  3629. "homepage": "https://www.drupal.org/project/email_registration",
  3630. "support": {
  3631. "source": "http://cgit.drupalcode.org/email_registration"
  3632. }
  3633. },
  3634. {
  3635. "name": "drupal/embed",
  3636. "version": "1.0.0",
  3637. "source": {
  3638. "type": "git",
  3639. "url": "https://git.drupal.org/project/embed",
  3640. "reference": "8.x-1.0"
  3641. },
  3642. "dist": {
  3643. "type": "zip",
  3644. "url": "https://ftp.drupal.org/files/projects/embed-8.x-1.0.zip",
  3645. "reference": "8.x-1.0",
  3646. "shasum": "cc746ad807260e01c7788dd82110dcebbb4d678a"
  3647. },
  3648. "require": {
  3649. "drupal/core": "~8.0"
  3650. },
  3651. "type": "drupal-module",
  3652. "extra": {
  3653. "branch-alias": {
  3654. "dev-1.x": "1.x-dev"
  3655. },
  3656. "drupal": {
  3657. "version": "8.x-1.0",
  3658. "datestamp": "1490755685",
  3659. "security-coverage": {
  3660. "status": "covered",
  3661. "message": "Covered by Drupal's security advisory policy"
  3662. }
  3663. }
  3664. },
  3665. "notification-url": "https://packages.drupal.org/8/downloads",
  3666. "license": [
  3667. "GPL-2.0+"
  3668. ],
  3669. "authors": [
  3670. {
  3671. "name": "Dave Reid",
  3672. "homepage": "https://www.drupal.org/user/53892"
  3673. },
  3674. {
  3675. "name": "Devin Carlson",
  3676. "homepage": "https://www.drupal.org/user/290182"
  3677. },
  3678. {
  3679. "name": "Drupal Media Team",
  3680. "homepage": "https://www.drupal.org/user/3260690"
  3681. },
  3682. {
  3683. "name": "cs_shadow",
  3684. "homepage": "https://www.drupal.org/user/2828287"
  3685. },
  3686. {
  3687. "name": "slashrsm",
  3688. "homepage": "https://www.drupal.org/user/744628"
  3689. }
  3690. ],
  3691. "description": "Provide a framework for various different types of embeds in WYSIWYG editors, common functionality, interfaces, and standards.",
  3692. "homepage": "https://www.drupal.org/project/embed",
  3693. "support": {
  3694. "source": "http://cgit.drupalcode.org/embed",
  3695. "issues": "https://www.drupal.org/project/issues/embed",
  3696. "irc": "irc://irc.freenode.org/drupal-media"
  3697. }
  3698. },
  3699. {
  3700. "name": "drupal/entity",
  3701. "version": "1.0.0-rc1",
  3702. "source": {
  3703. "type": "git",
  3704. "url": "https://git.drupal.org/project/entity",
  3705. "reference": "8.x-1.0-rc1"
  3706. },
  3707. "dist": {
  3708. "type": "zip",
  3709. "url": "https://ftp.drupal.org/files/projects/entity-8.x-1.0-rc1.zip",
  3710. "reference": "8.x-1.0-rc1",
  3711. "shasum": "f2dcd7afd0d36b6f261b10a204057a5c801ad20b"
  3712. },
  3713. "require": {
  3714. "drupal/core": "^8.6"
  3715. },
  3716. "type": "drupal-module",
  3717. "extra": {
  3718. "branch-alias": {
  3719. "dev-1.x": "1.x-dev"
  3720. },
  3721. "drupal": {
  3722. "version": "8.x-1.0-rc1",
  3723. "datestamp": "1539272769",
  3724. "security-coverage": {
  3725. "status": "not-covered",
  3726. "message": "RC releases are not covered by Drupal security advisories."
  3727. }
  3728. }
  3729. },
  3730. "notification-url": "https://packages.drupal.org/8/downloads",
  3731. "license": [
  3732. "GPL-2.0+"
  3733. ],
  3734. "authors": [
  3735. {
  3736. "name": "Berdir",
  3737. "homepage": "https://www.drupal.org/user/214652"
  3738. },
  3739. {
  3740. "name": "bojanz",
  3741. "homepage": "https://www.drupal.org/user/86106"
  3742. },
  3743. {
  3744. "name": "dawehner",
  3745. "homepage": "https://www.drupal.org/user/99340"
  3746. },
  3747. {
  3748. "name": "dixon_",
  3749. "homepage": "https://www.drupal.org/user/239911"
  3750. },
  3751. {
  3752. "name": "fago",
  3753. "homepage": "https://www.drupal.org/user/16747"
  3754. }
  3755. ],
  3756. "description": "Provides expanded entity APIs, which will be moved to Drupal core one day.",
  3757. "homepage": "http://drupal.org/project/entity",
  3758. "support": {
  3759. "source": "http://cgit.drupalcode.org/entity"
  3760. }
  3761. },
  3762. {
  3763. "name": "drupal/entity_browser",
  3764. "version": "2.0.0",
  3765. "source": {
  3766. "type": "git",
  3767. "url": "https://git.drupal.org/project/entity_browser",
  3768. "reference": "8.x-2.0"
  3769. },
  3770. "dist": {
  3771. "type": "zip",
  3772. "url": "https://ftp.drupal.org/files/projects/entity_browser-8.x-2.0.zip",
  3773. "reference": "8.x-2.0",
  3774. "shasum": "683a7a252c947433c7b78bb838d6d8973c13cf77"
  3775. },
  3776. "require": {
  3777. "drupal/core": "~8.0"
  3778. },
  3779. "require-dev": {
  3780. "drupal/ctools": "*",
  3781. "drupal/inline_entity_form": "*",
  3782. "drupal/paragraphs": "*",
  3783. "drupal/token": "*"
  3784. },
  3785. "type": "drupal-module",
  3786. "extra": {
  3787. "branch-alias": {
  3788. "dev-2.x": "2.x-dev",
  3789. "dev-8.x-1.x": "8.1.x-dev"
  3790. },
  3791. "drupal": {
  3792. "version": "8.x-2.0",
  3793. "datestamp": "1536328684",
  3794. "security-coverage": {
  3795. "status": "covered",
  3796. "message": "Covered by Drupal's security advisory policy"
  3797. }
  3798. }
  3799. },
  3800. "notification-url": "https://packages.drupal.org/8/downloads",
  3801. "license": [
  3802. "GPL-2.0+"
  3803. ],
  3804. "authors": [
  3805. {
  3806. "name": "Janez Urevc",
  3807. "homepage": "https://github.com/slashrsm",
  3808. "role": "Maintainer"
  3809. },
  3810. {
  3811. "name": "Primoz Hmeljak",
  3812. "homepage": "https://github.com/primsi",
  3813. "role": "Maintainer"
  3814. },
  3815. {
  3816. "name": "See other contributors",
  3817. "homepage": "https://www.drupal.org/node/1943336/committers",
  3818. "role": "contributor"
  3819. },
  3820. {
  3821. "name": "Primsi",
  3822. "homepage": "https://www.drupal.org/user/282629"
  3823. },
  3824. {
  3825. "name": "marcingy",
  3826. "homepage": "https://www.drupal.org/user/77320"
  3827. },
  3828. {
  3829. "name": "samuel.mortenson",
  3830. "homepage": "https://www.drupal.org/user/2582268"
  3831. },
  3832. {
  3833. "name": "slashrsm",
  3834. "homepage": "https://www.drupal.org/user/744628"
  3835. }
  3836. ],
  3837. "description": "Entity browsing and selecting component.",
  3838. "homepage": "http://drupal.org/project/entity_browser",
  3839. "support": {
  3840. "source": "http://cgit.drupalcode.org/entity_browser",
  3841. "issues": "http://drupal.org/project/issues/entity_browser",
  3842. "irc": "irc://irc.freenode.org/drupal-contribute"
  3843. }
  3844. },
  3845. {
  3846. "name": "drupal/entity_browser_enhanced",
  3847. "version": "1.0.0-rc3",
  3848. "source": {
  3849. "type": "git",
  3850. "url": "https://git.drupal.org/project/entity_browser_enhanced",
  3851. "reference": "8.x-1.0-rc3"
  3852. },
  3853. "dist": {
  3854. "type": "zip",
  3855. "url": "https://ftp.drupal.org/files/projects/entity_browser_enhanced-8.x-1.0-rc3.zip",
  3856. "reference": "8.x-1.0-rc3",
  3857. "shasum": "041a93dac5ec9f74a8834faee60995c4db7d1e65"
  3858. },
  3859. "require": {
  3860. "drupal/core": "~8.0",
  3861. "drupal/entity_browser": "*"
  3862. },
  3863. "type": "drupal-module",
  3864. "extra": {
  3865. "branch-alias": {
  3866. "dev-1.x": "1.x-dev",
  3867. "dev-8.x-1.x": "8.1.x-dev"
  3868. },
  3869. "drupal": {
  3870. "version": "8.x-1.0-rc3",
  3871. "datestamp": "1528884525",
  3872. "security-coverage": {
  3873. "status": "not-covered",
  3874. "message": "RC releases are not covered by Drupal security advisories."
  3875. }
  3876. }
  3877. },
  3878. "notification-url": "https://packages.drupal.org/8/downloads",
  3879. "license": [
  3880. "GPL-2.0-or-later"
  3881. ],
  3882. "authors": [
  3883. {
  3884. "name": "Vardot",
  3885. "homepage": "https://www.drupal.org/vardot",
  3886. "role": "Maintainer"
  3887. },
  3888. {
  3889. "name": "RajabNatshah",
  3890. "homepage": "https://www.drupal.org/user/1414312"
  3891. }
  3892. ],
  3893. "description": "Provides some behavior and style enhancements to Entity Browsers, specifically for multiselect and image/media browsers.",
  3894. "homepage": "https://www.drupal.org/project/entity_browser_enhanced",
  3895. "support": {
  3896. "source": "http://cgit.drupalcode.org/entity_browser_enhanced",
  3897. "issues": "https://www.drupal.org/project/issues/entity_browser_enhanced"
  3898. }
  3899. },
  3900. {
  3901. "name": "drupal/entity_clone",
  3902. "version": "1.0.0-alpha2",
  3903. "source": {
  3904. "type": "git",
  3905. "url": "https://git.drupal.org/project/entity_clone",
  3906. "reference": "8.x-1.0-alpha2"
  3907. },
  3908. "dist": {
  3909. "type": "zip",
  3910. "url": "https://ftp.drupal.org/files/projects/entity_clone-8.x-1.0-alpha2.zip",
  3911. "reference": "8.x-1.0-alpha2",
  3912. "shasum": "55a533e56853b78f949796040ee68881a68917b5"
  3913. },
  3914. "require": {
  3915. "drupal/core": "~8.0"
  3916. },
  3917. "type": "drupal-module",
  3918. "extra": {
  3919. "branch-alias": {
  3920. "dev-1.x": "1.x-dev"
  3921. },
  3922. "drupal": {
  3923. "version": "8.x-1.0-alpha2",
  3924. "datestamp": "1513145285",
  3925. "security-coverage": {
  3926. "status": "not-covered",
  3927. "message": "Alpha releases are not covered by Drupal security advisories."
  3928. }
  3929. }
  3930. },
  3931. "notification-url": "https://packages.drupal.org/8/downloads",
  3932. "license": [
  3933. "GPL-2.0-or-later"
  3934. ],
  3935. "authors": [
  3936. {
  3937. "name": "vpeltot",
  3938. "homepage": "https://www.drupal.org/user/1361586"
  3939. }
  3940. ],
  3941. "description": "Add a clone action for all entities",
  3942. "homepage": "https://www.drupal.org/project/entity_clone",
  3943. "support": {
  3944. "source": "http://cgit.drupalcode.org/entity_clone"
  3945. }
  3946. },
  3947. {
  3948. "name": "drupal/examples",
  3949. "version": "dev-1.x",
  3950. "source": {
  3951. "type": "git",
  3952. "url": "https://git.drupal.org/project/examples",
  3953. "reference": "0be75808520a7c921ad7c87ac1cc87d716f5dc51"
  3954. },
  3955. "require": {
  3956. "drupal/core": "*"
  3957. },
  3958. "require-dev": {
  3959. "drupal/stream_wrapper_example": "*"
  3960. },
  3961. "suggest": {
  3962. "drupal/devel": "Some modules will be able to pretty-print PHP with this module."
  3963. },
  3964. "type": "drupal-module",
  3965. "extra": {
  3966. "branch-alias": {
  3967. "dev-1.x": "1.x-dev"
  3968. },
  3969. "drupal": {
  3970. "version": "8.x-1.x-dev",
  3971. "datestamp": "1536200285",
  3972. "security-coverage": {
  3973. "status": "not-covered",
  3974. "message": "Project has not opted into security advisory coverage!"
  3975. }
  3976. }
  3977. },
  3978. "notification-url": "https://packages.drupal.org/8/downloads",
  3979. "license": [
  3980. "GPL-2.0+"
  3981. ],
  3982. "authors": [
  3983. {
  3984. "name": "Dave Reid",
  3985. "homepage": "https://www.drupal.org/user/53892"
  3986. },
  3987. {
  3988. "name": "Itangalo",
  3989. "homepage": "https://www.drupal.org/user/153998"
  3990. },
  3991. {
  3992. "name": "Mile23",
  3993. "homepage": "https://www.drupal.org/user/116231"
  3994. },
  3995. {
  3996. "name": "Torenware",
  3997. "homepage": "https://www.drupal.org/user/18784"
  3998. },
  3999. {
  4000. "name": "add1sun",
  4001. "homepage": "https://www.drupal.org/user/65088"
  4002. },
  4003. {
  4004. "name": "cyberswat",
  4005. "homepage": "https://www.drupal.org/user/27802"
  4006. },
  4007. {
  4008. "name": "ilo",
  4009. "homepage": "https://www.drupal.org/user/118449"
  4010. },
  4011. {
  4012. "name": "jhodgdon",
  4013. "homepage": "https://www.drupal.org/user/155601"
  4014. },
  4015. {
  4016. "name": "jn2",
  4017. "homepage": "https://www.drupal.org/user/1001014"
  4018. },
  4019. {
  4020. "name": "katbailey",
  4021. "homepage": "https://www.drupal.org/user/172987"
  4022. },
  4023. {
  4024. "name": "linclark",
  4025. "homepage": "https://www.drupal.org/user/396253"
  4026. },
  4027. {
  4028. "name": "marvil07",
  4029. "homepage": "https://www.drupal.org/user/132175"
  4030. },
  4031. {
  4032. "name": "mikl",
  4033. "homepage": "https://www.drupal.org/user/58679"
  4034. },
  4035. {
  4036. "name": "rfay",
  4037. "homepage": "https://www.drupal.org/user/30906"
  4038. },
  4039. {
  4040. "name": "socketwench",
  4041. "homepage": "https://www.drupal.org/user/65793"
  4042. },
  4043. {
  4044. "name": "yched",
  4045. "homepage": "https://www.drupal.org/user/39567"
  4046. }
  4047. ],
  4048. "description": "The Examples for Developers project aims to provide high-quality, well-documented API examples for a broad range of Drupal core functionality.",
  4049. "homepage": "https://www.drupal.org/project/examples",
  4050. "support": {
  4051. "source": "http://cgit.drupalcode.org/examples",
  4052. "issues": "https://www.drupal.org/project/issues/examples",
  4053. "documentation": "https://api.drupal.org/api/examples"
  4054. },
  4055. "time": "2018-09-10T23:01:03+00:00"
  4056. },
  4057. {
  4058. "name": "drupal/extlink",
  4059. "version": "1.1.0",
  4060. "source": {
  4061. "type": "git",
  4062. "url": "https://git.drupal.org/project/extlink",
  4063. "reference": "8.x-1.1"
  4064. },
  4065. "dist": {
  4066. "type": "zip",
  4067. "url": "https://ftp.drupal.org/files/projects/extlink-8.x-1.1.zip",
  4068. "reference": "8.x-1.1",
  4069. "shasum": "0894f1cd12e2e1aa6b00ea4a6dd5e7234eb2b2b2"
  4070. },
  4071. "require": {
  4072. "drupal/core": "~8.0"
  4073. },
  4074. "type": "drupal-module",
  4075. "extra": {
  4076. "branch-alias": {
  4077. "dev-1.x": "1.x-dev"
  4078. },
  4079. "drupal": {
  4080. "version": "8.x-1.1",
  4081. "datestamp": "1524232684",
  4082. "security-coverage": {
  4083. "status": "covered",
  4084. "message": "Covered by Drupal's security advisory policy"
  4085. }
  4086. }
  4087. },
  4088. "notification-url": "https://packages.drupal.org/8/downloads",
  4089. "license": [
  4090. "GPL-2.0-or-later"
  4091. ],
  4092. "authors": [
  4093. {
  4094. "name": "elachlan",
  4095. "homepage": "https://www.drupal.org/user/1021502"
  4096. },
  4097. {
  4098. "name": "jjeff",
  4099. "homepage": "https://www.drupal.org/user/17190"
  4100. },
  4101. {
  4102. "name": "quicksketch",
  4103. "homepage": "https://www.drupal.org/user/35821"
  4104. }
  4105. ],
  4106. "description": "Modify behavior and appearance of external links.",
  4107. "homepage": "https://www.drupal.org/project/extlink",
  4108. "support": {
  4109. "source": "http://cgit.drupalcode.org/extlink"
  4110. }
  4111. },
  4112. {
  4113. "name": "drupal/field_group",
  4114. "version": "1.0.0",
  4115. "source": {
  4116. "type": "git",
  4117. "url": "https://git.drupal.org/project/field_group",
  4118. "reference": "8.x-1.0"
  4119. },
  4120. "dist": {
  4121. "type": "zip",
  4122. "url": "https://ftp.drupal.org/files/projects/field_group-8.x-1.0.zip",
  4123. "reference": "8.x-1.0",
  4124. "shasum": "e8aa3fae5c3c5dec84644bb577996938d638a611"
  4125. },
  4126. "require": {
  4127. "drupal/core": "*"
  4128. },
  4129. "type": "drupal-module",
  4130. "extra": {
  4131. "branch-alias": {
  4132. "dev-1.x": "1.x-dev"
  4133. },
  4134. "drupal": {
  4135. "version": "8.x-1.0",
  4136. "datestamp": "1510352885",
  4137. "security-coverage": {
  4138. "status": "covered",
  4139. "message": "Covered by Drupal's security advisory policy"
  4140. }
  4141. }
  4142. },
  4143. "notification-url": "https://packages.drupal.org/8/downloads",
  4144. "license": [
  4145. "GPL-2.0+"
  4146. ],
  4147. "authors": [
  4148. {
  4149. "name": "Hydra",
  4150. "homepage": "https://www.drupal.org/user/647364"
  4151. },
  4152. {
  4153. "name": "Stalski",
  4154. "homepage": "https://www.drupal.org/user/322618"
  4155. },
  4156. {
  4157. "name": "jyve",
  4158. "homepage": "https://www.drupal.org/user/591438"
  4159. },
  4160. {
  4161. "name": "swentel",
  4162. "homepage": "https://www.drupal.org/user/107403"
  4163. },
  4164. {
  4165. "name": "zuuperman",
  4166. "homepage": "https://www.drupal.org/user/361625"
  4167. }
  4168. ],
  4169. "description": "Provides the field_group module.",
  4170. "homepage": "https://www.drupal.org/project/field_group",
  4171. "support": {
  4172. "source": "http://cgit.drupalcode.org/field_group"
  4173. }
  4174. },
  4175. {
  4176. "name": "drupal/file_mdm",
  4177. "version": "1.1.0",
  4178. "source": {
  4179. "type": "git",
  4180. "url": "https://git.drupal.org/project/file_mdm",
  4181. "reference": "8.x-1.1"
  4182. },
  4183. "dist": {
  4184. "type": "zip",
  4185. "url": "https://ftp.drupal.org/files/projects/file_mdm-8.x-1.1.zip",
  4186. "reference": "8.x-1.1",
  4187. "shasum": "7f354aec6f89e3141c2aa1fb3747ad5d4578c13f"
  4188. },
  4189. "require": {
  4190. "drupal/core": "~8.0",
  4191. "lsolesen/pel": "0.9.6",
  4192. "phenx/php-font-lib": "0.5",
  4193. "php": ">=5.6"
  4194. },
  4195. "require-dev": {
  4196. "drupal/image_effects": "*"
  4197. },
  4198. "type": "drupal-module",
  4199. "extra": {
  4200. "branch-alias": {
  4201. "dev-1.x": "1.x-dev"
  4202. },
  4203. "drupal": {
  4204. "version": "8.x-1.1",
  4205. "datestamp": "1488273785",
  4206. "security-coverage": {
  4207. "status": "covered",
  4208. "message": "Covered by Drupal's security advisory policy"
  4209. }
  4210. }
  4211. },
  4212. "notification-url": "https://packages.drupal.org/8/downloads",
  4213. "license": [
  4214. "GPL-2.0-or-later"
  4215. ],
  4216. "authors": [
  4217. {
  4218. "name": "mondrake",
  4219. "homepage": "https://www.drupal.org/user/1307444"
  4220. }
  4221. ],
  4222. "description": "Provides a service to manage file metadata.",
  4223. "homepage": "https://www.drupal.org/project/file_mdm",
  4224. "support": {
  4225. "source": "http://cgit.drupalcode.org/file_mdm"
  4226. }
  4227. },
  4228. {
  4229. "name": "drupal/file_mdm_exif",
  4230. "version": "1.1.0",
  4231. "require": {
  4232. "drupal/core": "~8.0",
  4233. "drupal/file_mdm": "self.version"
  4234. },
  4235. "require-dev": {
  4236. "drupal/image_effects": "*"
  4237. },
  4238. "type": "metapackage",
  4239. "extra": {
  4240. "branch-alias": {
  4241. "dev-1.x": "1.x-dev"
  4242. },
  4243. "drupal": {
  4244. "version": "8.x-1.1",
  4245. "datestamp": "1488273785",
  4246. "security-coverage": {
  4247. "status": "covered",
  4248. "message": "Covered by Drupal's security advisory policy"
  4249. }
  4250. }
  4251. },
  4252. "notification-url": "https://packages.drupal.org/8/downloads",
  4253. "license": [
  4254. "GPL-2.0-or-later"
  4255. ],
  4256. "authors": [
  4257. {
  4258. "name": "mondrake",
  4259. "homepage": "https://www.drupal.org/user/1307444"
  4260. }
  4261. ],
  4262. "description": "Provides a file metadata plugin for EXIF image information.",
  4263. "homepage": "https://www.drupal.org/project/file_mdm",
  4264. "support": {
  4265. "source": "http://cgit.drupalcode.org/file_mdm"
  4266. }
  4267. },
  4268. {
  4269. "name": "drupal/filefield_sources",
  4270. "version": "dev-1.x",
  4271. "source": {
  4272. "type": "git",
  4273. "url": "https://git.drupal.org/project/filefield_sources",
  4274. "reference": "b19c6a839804f47587828d4a50e29e0720fa4c08"
  4275. },
  4276. "require": {
  4277. "drupal/core": "*"
  4278. },
  4279. "type": "drupal-module",
  4280. "extra": {
  4281. "branch-alias": {
  4282. "dev-1.x": "1.x-dev"
  4283. },
  4284. "drupal": {
  4285. "version": "8.x-1.x-dev",
  4286. "datestamp": "1487711283",
  4287. "security-coverage": {
  4288. "status": "not-covered",
  4289. "message": "Dev releases are not covered by Drupal security advisories."
  4290. }
  4291. }
  4292. },
  4293. "notification-url": "https://packages.drupal.org/8/downloads",
  4294. "license": [
  4295. "GPL-2.0-or-later"
  4296. ],
  4297. "authors": [
  4298. {
  4299. "name": "profak",
  4300. "homepage": "https://www.drupal.org/user/782534"
  4301. },
  4302. {
  4303. "name": "quicksketch",
  4304. "homepage": "https://www.drupal.org/user/35821"
  4305. }
  4306. ],
  4307. "description": "Extends File fields to allow referencing of existing files, remote files, and server files.",
  4308. "homepage": "https://www.drupal.org/project/filefield_sources",
  4309. "support": {
  4310. "source": "http://cgit.drupalcode.org/filefield_sources"
  4311. },
  4312. "time": "2017-02-21T21:07:00+00:00"
  4313. },
  4314. {
  4315. "name": "drupal/filter_perms",
  4316. "version": "dev-1.x",
  4317. "source": {
  4318. "type": "git",
  4319. "url": "https://git.drupal.org/project/filter_perms",
  4320. "reference": "f491dd73fd876f6de0b2252c6b9bf18e0e27b357"
  4321. },
  4322. "require": {
  4323. "drupal/core": "*"
  4324. },
  4325. "type": "drupal-module",
  4326. "extra": {
  4327. "branch-alias": {
  4328. "dev-1.x": "1.x-dev"
  4329. },
  4330. "drupal": {
  4331. "version": "8.x-1.x-dev",
  4332. "datestamp": "1469645939",
  4333. "security-coverage": {
  4334. "status": "not-covered",
  4335. "message": "Dev releases are not covered by Drupal security advisories."
  4336. }
  4337. }
  4338. },
  4339. "notification-url": "https://packages.drupal.org/8/downloads",
  4340. "license": [
  4341. "GPL-2.0-or-later"
  4342. ],
  4343. "authors": [
  4344. {
  4345. "name": "cYu",
  4346. "homepage": "https://www.drupal.org/user/202205"
  4347. },
  4348. {
  4349. "name": "deekayen",
  4350. "homepage": "https://www.drupal.org/user/972"
  4351. },
  4352. {
  4353. "name": "willzyx",
  4354. "homepage": "https://www.drupal.org/user/1043862"
  4355. }
  4356. ],
  4357. "description": "Provides role and module filters to simplify the user permissions page.",
  4358. "homepage": "https://www.drupal.org/project/filter_perms",
  4359. "support": {
  4360. "source": "http://cgit.drupalcode.org/filter_perms"
  4361. },
  4362. "time": "2016-07-27T19:01:11+00:00"
  4363. },
  4364. {
  4365. "name": "drupal/honeypot",
  4366. "version": "1.29.0",
  4367. "source": {
  4368. "type": "git",
  4369. "url": "https://git.drupal.org/project/honeypot",
  4370. "reference": "8.x-1.29"
  4371. },
  4372. "dist": {
  4373. "type": "zip",
  4374. "url": "https://ftp.drupal.org/files/projects/honeypot-8.x-1.29.zip",
  4375. "reference": "8.x-1.29",
  4376. "shasum": "029d9e068d8f6a5db52434c27dc71bd3f06da487"
  4377. },
  4378. "require": {
  4379. "drupal/core": "~8.0"
  4380. },
  4381. "type": "drupal-module",
  4382. "extra": {
  4383. "branch-alias": {
  4384. "dev-1.x": "1.x-dev"
  4385. },
  4386. "drupal": {
  4387. "version": "8.x-1.29",
  4388. "datestamp": "1536179280",
  4389. "security-coverage": {
  4390. "status": "covered",
  4391. "message": "Covered by Drupal's security advisory policy"
  4392. }
  4393. }
  4394. },
  4395. "notification-url": "https://packages.drupal.org/8/downloads",
  4396. "license": [
  4397. "GPL-2.0+"
  4398. ],
  4399. "authors": [
  4400. {
  4401. "name": "Jeff Geerling",
  4402. "homepage": "https://www.drupal.org/user/389011",
  4403. "email": "geerlingguy@mac.com"
  4404. }
  4405. ],
  4406. "description": "Mitigates spam form submissions using the honeypot method.",
  4407. "homepage": "https://www.drupal.org/project/honeypot",
  4408. "keywords": [
  4409. "deterrent",
  4410. "form",
  4411. "honeypot",
  4412. "honeytrap",
  4413. "php",
  4414. "spam"
  4415. ],
  4416. "support": {
  4417. "source": "http://cgit.drupalcode.org/honeypot"
  4418. }
  4419. },
  4420. {
  4421. "name": "drupal/imagemagick",
  4422. "version": "2.3.0",
  4423. "source": {
  4424. "type": "git",
  4425. "url": "https://git.drupal.org/project/imagemagick",
  4426. "reference": "8.x-2.3"
  4427. },
  4428. "dist": {
  4429. "type": "zip",
  4430. "url": "https://ftp.drupal.org/files/projects/imagemagick-8.x-2.3.zip",
  4431. "reference": "8.x-2.3",
  4432. "shasum": "8359921d4700e954364c2633332c20579bb75a34"
  4433. },
  4434. "require": {
  4435. "drupal/core": "^8.3",
  4436. "drupal/file_mdm": "^1.1",
  4437. "drupal/file_mdm_exif": "^1.1"
  4438. },
  4439. "type": "drupal-module",
  4440. "extra": {
  4441. "branch-alias": {
  4442. "dev-2.x": "2.x-dev"
  4443. },
  4444. "drupal": {
  4445. "version": "8.x-2.3",
  4446. "datestamp": "1520958305",
  4447. "security-coverage": {
  4448. "status": "covered",
  4449. "message": "Covered by Drupal's security advisory policy"
  4450. }
  4451. }
  4452. },
  4453. "notification-url": "https://packages.drupal.org/8/downloads",
  4454. "license": [
  4455. "GPL-2.0-or-later"
  4456. ],
  4457. "authors": [
  4458. {
  4459. "name": "Chris Charlton",
  4460. "homepage": "https://www.drupal.org/user/17089"
  4461. },
  4462. {
  4463. "name": "chx",
  4464. "homepage": "https://www.drupal.org/user/9446"
  4465. },
  4466. {
  4467. "name": "claudiu.cristea",
  4468. "homepage": "https://www.drupal.org/user/56348"
  4469. },
  4470. {
  4471. "name": "dman",
  4472. "homepage": "https://www.drupal.org/user/33240"
  4473. },
  4474. {
  4475. "name": "dopry",
  4476. "homepage": "https://www.drupal.org/user/22202"
  4477. },
  4478. {
  4479. "name": "drewish",
  4480. "homepage": "https://www.drupal.org/user/34869"
  4481. },
  4482. {
  4483. "name": "gdl",
  4484. "homepage": "https://www.drupal.org/user/507326"
  4485. },
  4486. {
  4487. "name": "mondrake",
  4488. "homepage": "https://www.drupal.org/user/1307444"
  4489. },
  4490. {
  4491. "name": "quicksketch",
  4492. "homepage": "https://www.drupal.org/user/35821"
  4493. },
  4494. {
  4495. "name": "sun",
  4496. "homepage": "https://www.drupal.org/user/54136"
  4497. },
  4498. {
  4499. "name": "walkah",
  4500. "homepage": "https://www.drupal.org/user/1531"
  4501. }
  4502. ],
  4503. "description": "Provides an image toolkit to integrate ImageMagick with the Image API.",
  4504. "homepage": "https://www.drupal.org/project/imagemagick",
  4505. "support": {
  4506. "source": "http://cgit.drupalcode.org/imagemagick"
  4507. }
  4508. },
  4509. {
  4510. "name": "drupal/inline_entity_form",
  4511. "version": "1.0.0-rc1",
  4512. "source": {
  4513. "type": "git",
  4514. "url": "https://git.drupal.org/project/inline_entity_form",
  4515. "reference": "8.x-1.0-rc1"
  4516. },
  4517. "dist": {
  4518. "type": "zip",
  4519. "url": "https://ftp.drupal.org/files/projects/inline_entity_form-8.x-1.0-rc1.zip",
  4520. "reference": "8.x-1.0-rc1",
  4521. "shasum": "898789fb6a0662fc2572b87f8d0654a0241473f9"
  4522. },
  4523. "require": {
  4524. "drupal/core": "~8.0"
  4525. },
  4526. "require-dev": {
  4527. "drupal/entity_reference_revisions": "*"
  4528. },
  4529. "type": "drupal-module",
  4530. "extra": {
  4531. "branch-alias": {
  4532. "dev-1.x": "1.x-dev"
  4533. },
  4534. "drupal": {
  4535. "version": "8.x-1.0-rc1",
  4536. "datestamp": "1527030784",
  4537. "security-coverage": {
  4538. "status": "not-covered",
  4539. "message": "RC releases are not covered by Drupal security advisories."
  4540. }
  4541. }
  4542. },
  4543. "notification-url": "https://packages.drupal.org/8/downloads",
  4544. "license": [
  4545. "GPL-2.0+"
  4546. ],
  4547. "authors": [
  4548. {
  4549. "name": "bojanz",
  4550. "homepage": "https://www.drupal.org/user/86106"
  4551. },
  4552. {
  4553. "name": "dawehner",
  4554. "homepage": "https://www.drupal.org/user/99340"
  4555. },
  4556. {
  4557. "name": "rszrama",
  4558. "homepage": "https://www.drupal.org/user/49344"
  4559. },
  4560. {
  4561. "name": "slashrsm",
  4562. "homepage": "https://www.drupal.org/user/744628"
  4563. },
  4564. {
  4565. "name": "webflo",
  4566. "homepage": "https://www.drupal.org/user/254778"
  4567. }
  4568. ],
  4569. "description": "Provides a widget for inline management (creation, modification, removal) of referenced entities.",
  4570. "homepage": "https://www.drupal.org/project/inline_entity_form",
  4571. "support": {
  4572. "source": "http://cgit.drupalcode.org/inline_entity_form"
  4573. }
  4574. },
  4575. {
  4576. "name": "drupal/kint",
  4577. "version": "1.2.0",
  4578. "require": {
  4579. "drupal/core": "~8.0",
  4580. "drupal/devel": "self.version"
  4581. },
  4582. "type": "metapackage",
  4583. "extra": {
  4584. "branch-alias": {
  4585. "dev-1.x": "1.x-dev"
  4586. },
  4587. "drupal": {
  4588. "version": "8.x-1.2",
  4589. "datestamp": "1507197844",
  4590. "security-coverage": {
  4591. "status": "covered",
  4592. "message": "Covered by Drupal's security advisory policy"
  4593. }
  4594. }
  4595. },
  4596. "notification-url": "https://packages.drupal.org/8/downloads",
  4597. "license": [
  4598. "GPL-2.0-or-later"
  4599. ],
  4600. "authors": [
  4601. {
  4602. "name": "catch",
  4603. "homepage": "https://www.drupal.org/user/35733"
  4604. },
  4605. {
  4606. "name": "juampynr",
  4607. "homepage": "https://www.drupal.org/user/682736"
  4608. },
  4609. {
  4610. "name": "lussoluca",
  4611. "homepage": "https://www.drupal.org/user/138068"
  4612. },
  4613. {
  4614. "name": "moshe weitzman",
  4615. "homepage": "https://www.drupal.org/user/23"
  4616. },
  4617. {
  4618. "name": "pcambra",
  4619. "homepage": "https://www.drupal.org/user/122101"
  4620. },
  4621. {
  4622. "name": "salvis",
  4623. "homepage": "https://www.drupal.org/user/82964"
  4624. },
  4625. {
  4626. "name": "willzyx",
  4627. "homepage": "https://www.drupal.org/user/1043862"
  4628. }
  4629. ],
  4630. "description": "Wrapper for Kint debugging tool",
  4631. "homepage": "https://www.drupal.org/project/devel",
  4632. "support": {
  4633. "source": "http://cgit.drupalcode.org/devel"
  4634. }
  4635. },
  4636. {
  4637. "name": "drupal/link_attributes",
  4638. "version": "1.5.0",
  4639. "source": {
  4640. "type": "git",
  4641. "url": "https://git.drupal.org/project/link_attributes",
  4642. "reference": "8.x-1.5"
  4643. },
  4644. "dist": {
  4645. "type": "zip",
  4646. "url": "https://ftp.drupal.org/files/projects/link_attributes-8.x-1.5.zip",
  4647. "reference": "8.x-1.5",
  4648. "shasum": "48c0e6ac2c3f4843372abb394c1aabe380dfa604"
  4649. },
  4650. "require": {
  4651. "drupal/core": "*"
  4652. },
  4653. "type": "drupal-module",
  4654. "extra": {
  4655. "branch-alias": {
  4656. "dev-1.x": "1.x-dev"
  4657. },
  4658. "drupal": {
  4659. "version": "8.x-1.5",
  4660. "datestamp": "1537173781",
  4661. "security-coverage": {
  4662. "status": "covered",
  4663. "message": "Covered by Drupal's security advisory policy"
  4664. }
  4665. }
  4666. },
  4667. "notification-url": "https://packages.drupal.org/8/downloads",
  4668. "license": [
  4669. "GPL-2.0-or-later"
  4670. ],
  4671. "authors": [
  4672. {
  4673. "name": "larowlan",
  4674. "homepage": "https://www.drupal.org/user/395439"
  4675. }
  4676. ],
  4677. "description": "Provides a widget to allow settings of link attributes for menu links.",
  4678. "homepage": "https://www.drupal.org/project/link_attributes",
  4679. "support": {
  4680. "source": "http://cgit.drupalcode.org/link_attributes"
  4681. }
  4682. },
  4683. {
  4684. "name": "drupal/linkit",
  4685. "version": "4.3.0",
  4686. "source": {
  4687. "type": "git",
  4688. "url": "https://git.drupal.org/project/linkit",
  4689. "reference": "8.x-4.3"
  4690. },
  4691. "dist": {
  4692. "type": "zip",
  4693. "url": "https://ftp.drupal.org/files/projects/linkit-8.x-4.3.zip",
  4694. "reference": "8.x-4.3",
  4695. "shasum": "e624ea2f18a6100b76a8337e24f7c08df6e2235e"
  4696. },
  4697. "require": {
  4698. "drupal/core": "~8.0"
  4699. },
  4700. "type": "drupal-module",
  4701. "extra": {
  4702. "branch-alias": {
  4703. "dev-4.x": "4.x-dev"
  4704. },
  4705. "drupal": {
  4706. "version": "8.x-4.3",
  4707. "datestamp": "1490205830",
  4708. "security-coverage": {
  4709. "status": "covered",
  4710. "message": "Covered by Drupal's security advisory policy"
  4711. }
  4712. }
  4713. },
  4714. "notification-url": "https://packages.drupal.org/8/downloads",
  4715. "license": [
  4716. "GPL-2.0+"
  4717. ],
  4718. "authors": [
  4719. {
  4720. "name": "Emil Stjerneman",
  4721. "homepage": "https://stjerneman.com",
  4722. "email": "emil@stjerneman.com",
  4723. "role": "Maintainer"
  4724. }
  4725. ],
  4726. "description": "Linkit - Enriched linking experience",
  4727. "homepage": "http://drupal.org/project/linkit",
  4728. "support": {
  4729. "source": "http://cgit.drupalcode.org/linkit",
  4730. "issues": "http://drupal.org/project/linkit"
  4731. }
  4732. },
  4733. {
  4734. "name": "drupal/login_destination",
  4735. "version": "dev-1.x",
  4736. "source": {
  4737. "type": "git",
  4738. "url": "https://git.drupal.org/project/login_destination",
  4739. "reference": "54be8b89fdc073ca40af6b9b2eeb050e0aeb7908"
  4740. },
  4741. "require": {
  4742. "drupal/core": "~8.0"
  4743. },
  4744. "type": "drupal-module",
  4745. "extra": {
  4746. "branch-alias": {
  4747. "dev-1.x": "1.x-dev"
  4748. },
  4749. "drupal": {
  4750. "version": "8.x-1.x-dev",
  4751. "datestamp": "1514805485",
  4752. "security-coverage": {
  4753. "status": "not-covered",
  4754. "message": "Dev releases are not covered by Drupal security advisories."
  4755. }
  4756. }
  4757. },
  4758. "notification-url": "https://packages.drupal.org/8/downloads",
  4759. "license": [
  4760. "GPL-2.0-or-later"
  4761. ],
  4762. "authors": [
  4763. {
  4764. "name": "Oliver Huynh",
  4765. "homepage": "https://www.drupal.org/user/243730"
  4766. },
  4767. {
  4768. "name": "akashjain132",
  4769. "homepage": "https://www.drupal.org/user/2622667"
  4770. },
  4771. {
  4772. "name": "beautifulmind",
  4773. "homepage": "https://www.drupal.org/user/219482"
  4774. },
  4775. {
  4776. "name": "ddrozdik",
  4777. "homepage": "https://www.drupal.org/user/574124"
  4778. },
  4779. {
  4780. "name": "jng12",
  4781. "homepage": "https://www.drupal.org/user/204316"
  4782. },
  4783. {
  4784. "name": "marcp",
  4785. "homepage": "https://www.drupal.org/user/20885"
  4786. },
  4787. {
  4788. "name": "mithy",
  4789. "homepage": "https://www.drupal.org/user/258911"
  4790. },
  4791. {
  4792. "name": "moshe weitzman",
  4793. "homepage": "https://www.drupal.org/user/23"
  4794. },
  4795. {
  4796. "name": "quantumized",
  4797. "homepage": "https://www.drupal.org/user/61221"
  4798. },
  4799. {
  4800. "name": "rsvelko",
  4801. "homepage": "https://www.drupal.org/user/337401"
  4802. }
  4803. ],
  4804. "description": "The Login Destination module add possibility customize the destination that the user is redirected to after login.",
  4805. "homepage": "https://www.drupal.org/project/login_destination",
  4806. "support": {
  4807. "source": "http://cgit.drupalcode.org/login_destination"
  4808. },
  4809. "time": "2018-01-01T11:13:09+00:00"
  4810. },
  4811. {
  4812. "name": "drupal/maillog",
  4813. "version": "dev-1.x",
  4814. "source": {
  4815. "type": "git",
  4816. "url": "https://git.drupal.org/project/maillog",
  4817. "reference": "14fd24cd89e299ad271608cd52706c60b753c26d"
  4818. },
  4819. "require": {
  4820. "drupal/core": "*"
  4821. },
  4822. "type": "drupal-module",
  4823. "extra": {
  4824. "branch-alias": {
  4825. "dev-1.x": "1.x-dev"
  4826. },
  4827. "drupal": {
  4828. "version": "8.x-1.x-dev",
  4829. "datestamp": "1470431939",
  4830. "security-coverage": {
  4831. "status": "not-covered",
  4832. "message": "Project has not opted into security advisory coverage!"
  4833. }
  4834. }
  4835. },
  4836. "notification-url": "https://packages.drupal.org/8/downloads",
  4837. "license": [
  4838. "GPL-2.0-or-later"
  4839. ],
  4840. "authors": [
  4841. {
  4842. "name": "Berdir",
  4843. "homepage": "https://www.drupal.org/user/214652"
  4844. },
  4845. {
  4846. "name": "DamienMcKenna",
  4847. "homepage": "https://www.drupal.org/user/108450"
  4848. },
  4849. {
  4850. "name": "miro_dietiker",
  4851. "homepage": "https://www.drupal.org/user/227761"
  4852. },
  4853. {
  4854. "name": "pluess",
  4855. "homepage": "https://www.drupal.org/user/84659"
  4856. }
  4857. ],
  4858. "description": "Utility to log all Mails for debugging purposes. It is possible to suppress mail delivery for e.g. dev or staging systems.",
  4859. "homepage": "https://www.drupal.org/project/maillog",
  4860. "support": {
  4861. "source": "http://cgit.drupalcode.org/maillog"
  4862. },
  4863. "time": "2016-08-05T21:18:07+00:00"
  4864. },
  4865. {
  4866. "name": "drupal/mailsystem",
  4867. "version": "4.1.0",
  4868. "source": {
  4869. "type": "git",
  4870. "url": "https://git.drupal.org/project/mailsystem",
  4871. "reference": "8.x-4.1"
  4872. },
  4873. "dist": {
  4874. "type": "zip",
  4875. "url": "https://ftp.drupal.org/files/projects/mailsystem-8.x-4.1.zip",
  4876. "reference": "8.x-4.1",
  4877. "shasum": "318b87f1fdf96e6db30b04a98108af02a0fc3dcc"
  4878. },
  4879. "require": {
  4880. "drupal/core": "^8.0.5"
  4881. },
  4882. "type": "drupal-module",
  4883. "extra": {
  4884. "branch-alias": {
  4885. "dev-4.x": "4.x-dev"
  4886. },
  4887. "drupal": {
  4888. "version": "8.x-4.1",
  4889. "datestamp": "1467993646",
  4890. "security-coverage": {
  4891. "status": "covered",
  4892. "message": "Covered by Drupal's security advisory policy"
  4893. }
  4894. }
  4895. },
  4896. "notification-url": "https://packages.drupal.org/8/downloads",
  4897. "license": [
  4898. "GPL-2.0+"
  4899. ],
  4900. "authors": [
  4901. {
  4902. "name": "Berdir",
  4903. "homepage": "https://www.drupal.org/user/214652"
  4904. },
  4905. {
  4906. "name": "Les Lim",
  4907. "homepage": "https://www.drupal.org/user/84263"
  4908. },
  4909. {
  4910. "name": "Nafes",
  4911. "homepage": "https://www.drupal.org/user/2489926"
  4912. },
  4913. {
  4914. "name": "miro_dietiker",
  4915. "homepage": "https://www.drupal.org/user/227761"
  4916. },
  4917. {
  4918. "name": "pillarsdotnet",
  4919. "homepage": "https://www.drupal.org/user/36148"
  4920. }
  4921. ],
  4922. "description": "Mail System",
  4923. "homepage": "https://www.drupal.org/project/mailsystem",
  4924. "support": {
  4925. "source": "http://cgit.drupalcode.org/mailsystem"
  4926. }
  4927. },
  4928. {
  4929. "name": "drupal/matomo",
  4930. "version": "1.7.0",
  4931. "source": {
  4932. "type": "git",
  4933. "url": "https://git.drupal.org/project/matomo",
  4934. "reference": "8.x-1.7"
  4935. },
  4936. "dist": {
  4937. "type": "zip",
  4938. "url": "https://ftp.drupal.org/files/projects/matomo-8.x-1.7.zip",
  4939. "reference": "8.x-1.7",
  4940. "shasum": "6b7dbc8c76800a6dadb7568cf2a3f3efdde88e13"
  4941. },
  4942. "require": {
  4943. "drupal/core": "~8.0"
  4944. },
  4945. "require-dev": {
  4946. "drupal/php": "*",
  4947. "drupal/token": "*"
  4948. },
  4949. "type": "drupal-module",
  4950. "extra": {
  4951. "branch-alias": {
  4952. "dev-1.x": "1.x-dev"
  4953. },
  4954. "drupal": {
  4955. "version": "8.x-1.7",
  4956. "datestamp": "1531470197",
  4957. "security-coverage": {
  4958. "status": "covered",
  4959. "message": "Covered by Drupal's security advisory policy"
  4960. }
  4961. }
  4962. },
  4963. "notification-url": "https://packages.drupal.org/8/downloads",
  4964. "license": [
  4965. "GPL-2.0+"
  4966. ],
  4967. "authors": [
  4968. {
  4969. "name": "hass",
  4970. "homepage": "https://www.drupal.org/u/hass"
  4971. },
  4972. {
  4973. "name": "See other contributors",
  4974. "homepage": "https://www.drupal.org/node/247808/committers"
  4975. }
  4976. ],
  4977. "description": "Adds Matomo javascript tracking code to all your site's pages",
  4978. "homepage": "https://www.drupal.org/project/matomo",
  4979. "support": {
  4980. "source": "http://git.drupal.org/project/matomo.git",
  4981. "issues": "https://www.drupal.org/project/issues/matomo"
  4982. }
  4983. },
  4984. {
  4985. "name": "drupal/maxlength",
  4986. "version": "1.0.0-beta2",
  4987. "source": {
  4988. "type": "git",
  4989. "url": "https://git.drupal.org/project/maxlength",
  4990. "reference": "8.x-1.0-beta2"
  4991. },
  4992. "dist": {
  4993. "type": "zip",
  4994. "url": "https://ftp.drupal.org/files/projects/maxlength-8.x-1.0-beta2.zip",
  4995. "reference": "8.x-1.0-beta2",
  4996. "shasum": "27f7374e55ebdcc696d22d98be8cf4cf9bf58204"
  4997. },
  4998. "require": {
  4999. "drupal/core": "~8.0"
  5000. },
  5001. "type": "drupal-module",
  5002. "extra": {
  5003. "branch-alias": {
  5004. "dev-1.x": "1.x-dev"
  5005. },
  5006. "drupal": {
  5007. "version": "8.x-1.0-beta2",
  5008. "datestamp": "1527856384",
  5009. "security-coverage": {
  5010. "status": "not-covered",
  5011. "message": "Beta releases are not covered by Drupal security advisories."
  5012. }
  5013. }
  5014. },
  5015. "notification-url": "https://packages.drupal.org/8/downloads",
  5016. "license": [
  5017. "GPL-2.0-or-later"
  5018. ],
  5019. "authors": [
  5020. {
  5021. "name": "Aron Novak",
  5022. "homepage": "https://www.drupal.org/user/61864"
  5023. },
  5024. {
  5025. "name": "Schnitzel",
  5026. "homepage": "https://www.drupal.org/user/643820"
  5027. },
  5028. {
  5029. "name": "a_c_m",
  5030. "homepage": "https://www.drupal.org/user/195063"
  5031. },
  5032. {
  5033. "name": "artur.thiessen",
  5034. "homepage": "https://www.drupal.org/user/2390554"
  5035. },
  5036. {
  5037. "name": "barneytech",
  5038. "homepage": "https://www.drupal.org/user/669922"
  5039. },
  5040. {
  5041. "name": "claudiu_cristea",
  5042. "homepage": "https://www.drupal.org/user/2623935"
  5043. },
  5044. {
  5045. "name": "dawehner",
  5046. "homepage": "https://www.drupal.org/user/99340"
  5047. },
  5048. {
  5049. "name": "derhasi",
  5050. "homepage": "https://www.drupal.org/user/83474"
  5051. },
  5052. {
  5053. "name": "frjo",
  5054. "homepage": "https://www.drupal.org/user/5546"
  5055. },
  5056. {
  5057. "name": "hefox",
  5058. "homepage": "https://www.drupal.org/user/426416"
  5059. },
  5060. {
  5061. "name": "jm.federico",
  5062. "homepage": "https://www.drupal.org/user/509892"
  5063. },
  5064. {
  5065. "name": "k4v",
  5066. "homepage": "https://www.drupal.org/user/744246"
  5067. },
  5068. {
  5069. "name": "mariano73",
  5070. "homepage": "https://www.drupal.org/user/1324866"
  5071. },
  5072. {
  5073. "name": "mariuss",
  5074. "homepage": "https://www.drupal.org/user/28539"
  5075. },
  5076. {
  5077. "name": "sanduhrs",
  5078. "homepage": "https://www.drupal.org/user/28074"
  5079. },
  5080. {
  5081. "name": "vasi1186",
  5082. "homepage": "https://www.drupal.org/user/342104"
  5083. }
  5084. ],
  5085. "description": "Limit the number of characters in textfields and textareas and shows the amount of characters left.",
  5086. "homepage": "https://www.drupal.org/project/maxlength",
  5087. "support": {
  5088. "source": "http://cgit.drupalcode.org/maxlength"
  5089. }
  5090. },
  5091. {
  5092. "name": "drupal/menu_admin_per_menu",
  5093. "version": "1.0.0",
  5094. "source": {
  5095. "type": "git",
  5096. "url": "https://git.drupal.org/project/menu_admin_per_menu",
  5097. "reference": "8.x-1.0"
  5098. },
  5099. "dist": {
  5100. "type": "zip",
  5101. "url": "https://ftp.drupal.org/files/projects/menu_admin_per_menu-8.x-1.0.zip",
  5102. "reference": "8.x-1.0",
  5103. "shasum": "27dbef0025146a382feab67db5e93eaf280b8de4"
  5104. },
  5105. "require": {
  5106. "drupal/core": "*"
  5107. },
  5108. "type": "drupal-module",
  5109. "extra": {
  5110. "branch-alias": {
  5111. "dev-1.x": "1.x-dev"
  5112. },
  5113. "drupal": {
  5114. "version": "8.x-1.0",
  5115. "datestamp": "1507184944",
  5116. "security-coverage": {
  5117. "status": "covered",
  5118. "message": "Covered by Drupal's security advisory policy"
  5119. }
  5120. }
  5121. },
  5122. "notification-url": "https://packages.drupal.org/8/downloads",
  5123. "license": [
  5124. "GPL-2.0-or-later"
  5125. ],
  5126. "authors": [
  5127. {
  5128. "name": "anrikun",
  5129. "homepage": "https://www.drupal.org/user/410199"
  5130. },
  5131. {
  5132. "name": "mkdok",
  5133. "homepage": "https://www.drupal.org/user/3308753"
  5134. }
  5135. ],
  5136. "description": "Allows to give roles per menu admin permissions without giving them full administer menu permission.",
  5137. "homepage": "https://www.drupal.org/project/menu_admin_per_menu",
  5138. "support": {
  5139. "source": "http://cgit.drupalcode.org/menu_admin_per_menu"
  5140. }
  5141. },
  5142. {
  5143. "name": "drupal/menu_block",
  5144. "version": "1.5.0",
  5145. "source": {
  5146. "type": "git",
  5147. "url": "https://git.drupal.org/project/menu_block",
  5148. "reference": "8.x-1.5"
  5149. },
  5150. "dist": {
  5151. "type": "zip",
  5152. "url": "https://ftp.drupal.org/files/projects/menu_block-8.x-1.5.zip",
  5153. "reference": "8.x-1.5",
  5154. "shasum": "b3ac3e23e426f702974d88cc8bf93bf2a0b6236b"
  5155. },
  5156. "require": {
  5157. "drupal/core": "*"
  5158. },
  5159. "type": "drupal-module",
  5160. "extra": {
  5161. "branch-alias": {
  5162. "dev-1.x": "1.x-dev"
  5163. },
  5164. "drupal": {
  5165. "version": "8.x-1.5",
  5166. "datestamp": "1525200184",
  5167. "security-coverage": {
  5168. "status": "covered",
  5169. "message": "Covered by Drupal's security advisory policy"
  5170. }
  5171. }
  5172. },
  5173. "notification-url": "https://packages.drupal.org/8/downloads",
  5174. "license": [
  5175. "GPL-2.0-or-later"
  5176. ],
  5177. "authors": [
  5178. {
  5179. "name": "Dave Reid",
  5180. "homepage": "https://www.drupal.org/user/53892"
  5181. },
  5182. {
  5183. "name": "JohnAlbin",
  5184. "homepage": "https://www.drupal.org/user/32095"
  5185. },
  5186. {
  5187. "name": "joelpittet",
  5188. "homepage": "https://www.drupal.org/user/160302"
  5189. },
  5190. {
  5191. "name": "kim.pepper",
  5192. "homepage": "https://www.drupal.org/user/370574"
  5193. },
  5194. {
  5195. "name": "rrrob",
  5196. "homepage": "https://www.drupal.org/user/273533"
  5197. }
  5198. ],
  5199. "description": "Provides configurable blocks of menu links.",
  5200. "homepage": "https://www.drupal.org/project/menu_block",
  5201. "support": {
  5202. "source": "http://cgit.drupalcode.org/menu_block"
  5203. }
  5204. },
  5205. {
  5206. "name": "drupal/menu_position",
  5207. "version": "dev-1.x",
  5208. "source": {
  5209. "type": "git",
  5210. "url": "https://git.drupal.org/project/menu_position",
  5211. "reference": "11191df8dc7bdb1ef215c3f623c098555f571552"
  5212. },
  5213. "require": {
  5214. "drupal/core": "~8.0"
  5215. },
  5216. "type": "drupal-module",
  5217. "extra": {
  5218. "branch-alias": {
  5219. "dev-1.x": "1.x-dev"
  5220. },
  5221. "drupal": {
  5222. "version": "8.x-1.x-dev",
  5223. "datestamp": "1520418485",
  5224. "security-coverage": {
  5225. "status": "not-covered",
  5226. "message": "Dev releases are not covered by Drupal security advisories."
  5227. }
  5228. }
  5229. },
  5230. "notification-url": "https://packages.drupal.org/8/downloads",
  5231. "license": [
  5232. "GPL-2.0+"
  5233. ],
  5234. "authors": [
  5235. {
  5236. "name": "BarisW",
  5237. "homepage": "https://www.drupal.org/user/107229"
  5238. },
  5239. {
  5240. "name": "JohnAlbin",
  5241. "homepage": "https://www.drupal.org/user/32095"
  5242. },
  5243. {
  5244. "name": "lbainbridge",
  5245. "homepage": "https://www.drupal.org/user/2406996"
  5246. }
  5247. ],
  5248. "description": "This module allows for the creation of rules that will dynamically add the current page into the menu system at the requested spots.",
  5249. "homepage": "https://www.drupal.org/project/menu_position",
  5250. "support": {
  5251. "source": "http://cgit.drupalcode.org/menu_position",
  5252. "issues": "https://www.drupal.org/project/issues/menu_position"
  5253. },
  5254. "time": "2018-08-02T13:52:40+00:00"
  5255. },
  5256. {
  5257. "name": "drupal/migrate_plus",
  5258. "version": "4.0.0",
  5259. "source": {
  5260. "type": "git",
  5261. "url": "https://git.drupal.org/project/migrate_plus",
  5262. "reference": "8.x-4.0"
  5263. },
  5264. "dist": {
  5265. "type": "zip",
  5266. "url": "https://ftp.drupal.org/files/projects/migrate_plus-8.x-4.0.zip",
  5267. "reference": "8.x-4.0",
  5268. "shasum": "63dad289defe8298aa5ca5e30062fe9761d19eca"
  5269. },
  5270. "require": {
  5271. "drupal/core": "^8.3"
  5272. },
  5273. "require-dev": {
  5274. "drupal/migrate_example_advanced_setup": "*",
  5275. "drupal/migrate_example_setup": "*"
  5276. },
  5277. "suggest": {
  5278. "ext-soap": "*",
  5279. "sainsburys/guzzle-oauth2-plugin": "3.0 required for the OAuth2 authentication plugin"
  5280. },
  5281. "type": "drupal-module",
  5282. "extra": {
  5283. "branch-alias": {
  5284. "dev-4.x": "4.x-dev"
  5285. },
  5286. "drupal": {
  5287. "version": "8.x-4.0",
  5288. "datestamp": "1536264180",
  5289. "security-coverage": {
  5290. "status": "covered",
  5291. "message": "Covered by Drupal's security advisory policy"
  5292. }
  5293. }
  5294. },
  5295. "notification-url": "https://packages.drupal.org/8/downloads",
  5296. "license": [
  5297. "GPL-2.0+"
  5298. ],
  5299. "authors": [
  5300. {
  5301. "name": "Mike Ryan",
  5302. "homepage": "https://www.drupal.org/u/mikeryan",
  5303. "role": "Maintainer"
  5304. },
  5305. {
  5306. "name": "mikeryan",
  5307. "homepage": "https://www.drupal.org/user/4420"
  5308. }
  5309. ],
  5310. "description": "Enhancements to core migration support.",
  5311. "homepage": "https://www.drupal.org/project/migrate_plus",
  5312. "support": {
  5313. "source": "https://cgit.drupalcode.org/migrate_plus",
  5314. "issues": "https://www.drupal.org/project/issues/migrate_plus",
  5315. "irc": "irc://irc.freenode.org/drupal-migrate"
  5316. }
  5317. },
  5318. {
  5319. "name": "drupal/migrate_tools",
  5320. "version": "4.0.0",
  5321. "source": {
  5322. "type": "git",
  5323. "url": "https://git.drupal.org/project/migrate_tools",
  5324. "reference": "8.x-4.0"
  5325. },
  5326. "dist": {
  5327. "type": "zip",
  5328. "url": "https://ftp.drupal.org/files/projects/migrate_tools-8.x-4.0.zip",
  5329. "reference": "8.x-4.0",
  5330. "shasum": "016dfb010df76723c5a6a447921fdccd3c885237"
  5331. },
  5332. "require": {
  5333. "drupal/core": "^8.3",
  5334. "drupal/migrate_plus": "^4"
  5335. },
  5336. "require-dev": {
  5337. "drupal/coder": "^8",
  5338. "drupal/migrate_source_csv": "^2.2"
  5339. },
  5340. "type": "drupal-module",
  5341. "extra": {
  5342. "branch-alias": {
  5343. "dev-4.x": "4.x-dev"
  5344. },
  5345. "drupal": {
  5346. "version": "8.x-4.0",
  5347. "datestamp": "1535380084",
  5348. "security-coverage": {
  5349. "status": "covered",
  5350. "message": "Covered by Drupal's security advisory policy"
  5351. }
  5352. },
  5353. "drush": {
  5354. "services": {
  5355. "drush.services.yml": "^9"
  5356. }
  5357. }
  5358. },
  5359. "notification-url": "https://packages.drupal.org/8/downloads",
  5360. "license": [
  5361. "GPL-2.0+"
  5362. ],
  5363. "authors": [
  5364. {
  5365. "name": "heddn",
  5366. "homepage": "https://www.drupal.org/user/1463982"
  5367. },
  5368. {
  5369. "name": "mikeryan",
  5370. "homepage": "https://www.drupal.org/user/4420"
  5371. },
  5372. {
  5373. "name": "moshe weitzman",
  5374. "homepage": "https://www.drupal.org/user/23"
  5375. }
  5376. ],
  5377. "description": "Tools to assist in developing and running migrations.",
  5378. "homepage": "http://drupal.org/project/migrate_tools",
  5379. "support": {
  5380. "source": "http://cgit.drupalcode.org/migrate_tools",
  5381. "issues": "http://drupal.org/project/migrate_tools",
  5382. "irc": "irc://irc.freenode.org/drupal-migrate"
  5383. }
  5384. },
  5385. {
  5386. "name": "drupal/pagerer",
  5387. "version": "1.4.0",
  5388. "source": {
  5389. "type": "git",
  5390. "url": "https://git.drupal.org/project/pagerer",
  5391. "reference": "8.x-1.4"
  5392. },
  5393. "dist": {
  5394. "type": "zip",
  5395. "url": "https://ftp.drupal.org/files/projects/pagerer-8.x-1.4.zip",
  5396. "reference": "8.x-1.4",
  5397. "shasum": "9b4eb6899b0927859e7d5198f1fd814a10a66ddb"
  5398. },
  5399. "require": {
  5400. "drupal/core": "^8.1"
  5401. },
  5402. "type": "drupal-module",
  5403. "extra": {
  5404. "branch-alias": {
  5405. "dev-1.x": "1.x-dev"
  5406. },
  5407. "drupal": {
  5408. "version": "8.x-1.4",
  5409. "datestamp": "1522851484",
  5410. "security-coverage": {
  5411. "status": "covered",
  5412. "message": "Covered by Drupal's security advisory policy"
  5413. }
  5414. }
  5415. },
  5416. "notification-url": "https://packages.drupal.org/8/downloads",
  5417. "license": [
  5418. "GPL-2.0-or-later"
  5419. ],
  5420. "authors": [
  5421. {
  5422. "name": "mondrake",
  5423. "homepage": "https://www.drupal.org/user/1307444"
  5424. }
  5425. ],
  5426. "description": "Configurable pager styles.",
  5427. "homepage": "https://www.drupal.org/project/pagerer",
  5428. "support": {
  5429. "source": "http://cgit.drupalcode.org/pagerer"
  5430. }
  5431. },
  5432. {
  5433. "name": "drupal/path_alias_xt",
  5434. "version": "dev-1.x",
  5435. "source": {
  5436. "type": "git",
  5437. "url": "https://git.drupal.org/project/path_alias_xt",
  5438. "reference": "5d88c9297e4629f390b03ce3ec8c1c8c890b296b"
  5439. },
  5440. "require": {
  5441. "drupal/core": "*"
  5442. },
  5443. "type": "drupal-module",
  5444. "extra": {
  5445. "branch-alias": {
  5446. "dev-1.x": "1.x-dev"
  5447. },
  5448. "drupal": {
  5449. "version": "8.x-1.x-dev",
  5450. "datestamp": "1500044942",
  5451. "security-coverage": {
  5452. "status": "not-covered",
  5453. "message": "Dev releases are not covered by Drupal security advisories."
  5454. }
  5455. }
  5456. },
  5457. "notification-url": "https://packages.drupal.org/8/downloads",
  5458. "license": [
  5459. "GPL-2.0-or-later"
  5460. ],
  5461. "authors": [
  5462. {
  5463. "name": "RdeBoer",
  5464. "homepage": "https://www.drupal.org/user/404007"
  5465. },
  5466. {
  5467. "name": "adriancid",
  5468. "homepage": "https://www.drupal.org/user/1962106"
  5469. },
  5470. {
  5471. "name": "sdstyles",
  5472. "homepage": "https://www.drupal.org/user/1420228"
  5473. }
  5474. ],
  5475. "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.",
  5476. "homepage": "https://www.drupal.org/project/path_alias_xt",
  5477. "support": {
  5478. "source": "http://cgit.drupalcode.org/path_alias_xt"
  5479. },
  5480. "time": "2017-07-14T15:06:28+00:00"
  5481. },
  5482. {
  5483. "name": "drupal/pathauto",
  5484. "version": "1.3.0",
  5485. "source": {
  5486. "type": "git",
  5487. "url": "https://git.drupal.org/project/pathauto",
  5488. "reference": "8.x-1.3"
  5489. },
  5490. "dist": {
  5491. "type": "zip",
  5492. "url": "https://ftp.drupal.org/files/projects/pathauto-8.x-1.3.zip",
  5493. "reference": "8.x-1.3",
  5494. "shasum": "115d5998d7636a03e26c7ce34261b65809d53965"
  5495. },
  5496. "require": {
  5497. "drupal/core": "^8.5",
  5498. "drupal/ctools": "*",
  5499. "drupal/token": "*"
  5500. },
  5501. "type": "drupal-module",
  5502. "extra": {
  5503. "branch-alias": {
  5504. "dev-1.x": "1.x-dev"
  5505. },
  5506. "drupal": {
  5507. "version": "8.x-1.3",
  5508. "datestamp": "1536407884",
  5509. "security-coverage": {
  5510. "status": "covered",
  5511. "message": "Covered by Drupal's security advisory policy"
  5512. }
  5513. }
  5514. },
  5515. "notification-url": "https://packages.drupal.org/8/downloads",
  5516. "license": [
  5517. "GPL-2.0-or-later"
  5518. ],
  5519. "authors": [
  5520. {
  5521. "name": "Berdir",
  5522. "homepage": "https://www.drupal.org/user/214652"
  5523. },
  5524. {
  5525. "name": "Dave Reid",
  5526. "homepage": "https://www.drupal.org/user/53892"
  5527. },
  5528. {
  5529. "name": "Freso",
  5530. "homepage": "https://www.drupal.org/user/27504"
  5531. },
  5532. {
  5533. "name": "greggles",
  5534. "homepage": "https://www.drupal.org/user/36762"
  5535. }
  5536. ],
  5537. "description": "Provides a mechanism for modules to automatically generate aliases for the content they manage.",
  5538. "homepage": "https://www.drupal.org/project/pathauto",
  5539. "support": {
  5540. "source": "http://cgit.drupalcode.org/pathauto"
  5541. }
  5542. },
  5543. {
  5544. "name": "drupal/pathologic",
  5545. "version": "1.0.0-alpha1",
  5546. "source": {
  5547. "type": "git",
  5548. "url": "https://git.drupal.org/project/pathologic",
  5549. "reference": "8.x-1.0-alpha1"
  5550. },
  5551. "dist": {
  5552. "type": "zip",
  5553. "url": "https://ftp.drupal.org/files/projects/pathologic-8.x-1.0-alpha1.zip",
  5554. "reference": "8.x-1.0-alpha1",
  5555. "shasum": "51c699cc001969baa00cca60cf2302a32e578090"
  5556. },
  5557. "require": {
  5558. "drupal/core": "*"
  5559. },
  5560. "type": "drupal-module",
  5561. "extra": {
  5562. "branch-alias": {
  5563. "dev-1.x": "1.x-dev"
  5564. },
  5565. "drupal": {
  5566. "version": "8.x-1.0-alpha1",
  5567. "datestamp": "1525211884",
  5568. "security-coverage": {
  5569. "status": "not-covered",
  5570. "message": "Alpha releases are not covered by Drupal security advisories."
  5571. }
  5572. }
  5573. },
  5574. "notification-url": "https://packages.drupal.org/8/downloads",
  5575. "license": [
  5576. "GPL-2.0-or-later"
  5577. ],
  5578. "authors": [
  5579. {
  5580. "name": "Berdir",
  5581. "homepage": "https://www.drupal.org/user/214652"
  5582. },
  5583. {
  5584. "name": "Garrett Albright",
  5585. "homepage": "https://www.drupal.org/user/191212"
  5586. },
  5587. {
  5588. "name": "dww",
  5589. "homepage": "https://www.drupal.org/user/46549"
  5590. }
  5591. ],
  5592. "description": "Helps avoid broken links and incorrect paths in content.",
  5593. "homepage": "https://www.drupal.org/project/pathologic",
  5594. "support": {
  5595. "source": "http://cgit.drupalcode.org/pathologic"
  5596. }
  5597. },
  5598. {
  5599. "name": "drupal/persistent_login",
  5600. "version": "1.1.0",
  5601. "source": {
  5602. "type": "git",
  5603. "url": "https://git.drupal.org/project/persistent_login",
  5604. "reference": "8.x-1.1"
  5605. },
  5606. "dist": {
  5607. "type": "zip",
  5608. "url": "https://ftp.drupal.org/files/projects/persistent_login-8.x-1.1.zip",
  5609. "reference": "8.x-1.1",
  5610. "shasum": "b1e8f725662ab915767f339e00d7b185ac9097b2"
  5611. },
  5612. "require": {
  5613. "drupal/core": "^8.3"
  5614. },
  5615. "type": "drupal-module",
  5616. "extra": {
  5617. "branch-alias": {
  5618. "dev-1.x": "1.x-dev"
  5619. },
  5620. "drupal": {
  5621. "version": "8.x-1.1",
  5622. "datestamp": "1539379980",
  5623. "security-coverage": {
  5624. "status": "covered",
  5625. "message": "Covered by Drupal's security advisory policy"
  5626. }
  5627. }
  5628. },
  5629. "notification-url": "https://packages.drupal.org/8/downloads",
  5630. "license": [
  5631. "GPL-2.0+"
  5632. ],
  5633. "authors": [
  5634. {
  5635. "name": "gapple",
  5636. "homepage": "https://www.drupal.org/user/490940"
  5637. }
  5638. ],
  5639. "description": "Provides a \"Remember Me\" feature on the login form.",
  5640. "homepage": "https://www.drupal.org/project/persistent_login",
  5641. "keywords": [
  5642. "Drupal"
  5643. ],
  5644. "support": {
  5645. "source": "http://cgit.drupalcode.org/persistent_login",
  5646. "issues": "http://drupal.org/project/issues/persistent_login"
  5647. }
  5648. },
  5649. {
  5650. "name": "drupal/profile",
  5651. "version": "1.0.0-rc1",
  5652. "source": {
  5653. "type": "git",
  5654. "url": "https://git.drupal.org/project/profile",
  5655. "reference": "8.x-1.0-rc1"
  5656. },
  5657. "dist": {
  5658. "type": "zip",
  5659. "url": "https://ftp.drupal.org/files/projects/profile-8.x-1.0-rc1.zip",
  5660. "reference": "8.x-1.0-rc1",
  5661. "shasum": "cc537ca25412adc4fa601ff42cf2fb5cbc6e7b6b"
  5662. },
  5663. "require": {
  5664. "drupal/core": "~8.1",
  5665. "drupal/entity": "*"
  5666. },
  5667. "type": "drupal-module",
  5668. "extra": {
  5669. "branch-alias": {
  5670. "dev-1.x": "1.x-dev"
  5671. },
  5672. "drupal": {
  5673. "version": "8.x-1.0-rc1",
  5674. "datestamp": "1505830324",
  5675. "security-coverage": {
  5676. "status": "not-covered",
  5677. "message": "RC releases are not covered by Drupal security advisories."
  5678. }
  5679. }
  5680. },
  5681. "notification-url": "https://packages.drupal.org/8/downloads",
  5682. "license": [
  5683. "GPL-2.0+"
  5684. ],
  5685. "authors": [
  5686. {
  5687. "name": "bojanz",
  5688. "homepage": "https://www.drupal.org/user/86106"
  5689. },
  5690. {
  5691. "name": "daggerhart",
  5692. "homepage": "https://www.drupal.org/user/167806"
  5693. },
  5694. {
  5695. "name": "dakala",
  5696. "homepage": "https://www.drupal.org/user/53175"
  5697. },
  5698. {
  5699. "name": "fago",
  5700. "homepage": "https://www.drupal.org/user/16747"
  5701. },
  5702. {
  5703. "name": "mglaman",
  5704. "homepage": "https://www.drupal.org/user/2416470"
  5705. },
  5706. {
  5707. "name": "pcambra",
  5708. "homepage": "https://www.drupal.org/user/122101"
  5709. }
  5710. ],
  5711. "description": "Provides configurable user profiles.",
  5712. "homepage": "http://drupal.org/project/profile",
  5713. "support": {
  5714. "source": "http://cgit.drupalcode.org/profile"
  5715. }
  5716. },
  5717. {
  5718. "name": "drupal/redirect",
  5719. "version": "1.3.0",
  5720. "source": {
  5721. "type": "git",
  5722. "url": "https://git.drupal.org/project/redirect",
  5723. "reference": "8.x-1.3"
  5724. },
  5725. "dist": {
  5726. "type": "zip",
  5727. "url": "https://ftp.drupal.org/files/projects/redirect-8.x-1.3.zip",
  5728. "reference": "8.x-1.3",
  5729. "shasum": "3f9620d186e25f36ac56755979932b8ea965b8c7"
  5730. },
  5731. "require": {
  5732. "drupal/core": "~8"
  5733. },
  5734. "type": "drupal-module",
  5735. "extra": {
  5736. "branch-alias": {
  5737. "dev-1.x": "1.x-dev"
  5738. },
  5739. "drupal": {
  5740. "version": "8.x-1.3",
  5741. "datestamp": "1539682684",
  5742. "security-coverage": {
  5743. "status": "covered",
  5744. "message": "Covered by Drupal's security advisory policy"
  5745. }
  5746. }
  5747. },
  5748. "notification-url": "https://packages.drupal.org/8/downloads",
  5749. "license": [
  5750. "GPL-2.0+"
  5751. ],
  5752. "authors": [
  5753. {
  5754. "name": "Berdir",
  5755. "homepage": "https://www.drupal.org/user/214652"
  5756. },
  5757. {
  5758. "name": "Dave Reid",
  5759. "homepage": "https://www.drupal.org/user/53892"
  5760. },
  5761. {
  5762. "name": "pifagor",
  5763. "homepage": "https://www.drupal.org/user/2375692"
  5764. }
  5765. ],
  5766. "description": "Allows users to redirect from old URLs to new URLs.",
  5767. "homepage": "https://www.drupal.org/project/redirect",
  5768. "support": {
  5769. "source": "http://cgit.drupalcode.org/redirect"
  5770. }
  5771. },
  5772. {
  5773. "name": "drupal/redis",
  5774. "version": "1.0.0",
  5775. "source": {
  5776. "type": "git",
  5777. "url": "https://git.drupal.org/project/redis",
  5778. "reference": "8.x-1.0"
  5779. },
  5780. "dist": {
  5781. "type": "zip",
  5782. "url": "https://ftp.drupal.org/files/projects/redis-8.x-1.0.zip",
  5783. "reference": "8.x-1.0",
  5784. "shasum": "98cf460db5c9aaacf3d5c02ac51e0c9e8e85edbb"
  5785. },
  5786. "require": {
  5787. "drupal/core": "~8.0"
  5788. },
  5789. "suggest": {
  5790. "predis/predis": "^1.1.1"
  5791. },
  5792. "type": "drupal-module",
  5793. "extra": {
  5794. "branch-alias": {
  5795. "dev-1.x": "1.x-dev"
  5796. },
  5797. "drupal": {
  5798. "version": "8.x-1.0",
  5799. "datestamp": "1527699484",
  5800. "security-coverage": {
  5801. "status": "covered",
  5802. "message": "Covered by Drupal's security advisory policy"
  5803. }
  5804. }
  5805. },
  5806. "autoload": {
  5807. "psr-4": {
  5808. "Drupal\\redis\\": "src"
  5809. }
  5810. },
  5811. "notification-url": "https://packages.drupal.org/8/downloads",
  5812. "license": [
  5813. "GPL-2.0"
  5814. ],
  5815. "authors": [
  5816. {
  5817. "name": "Berdir",
  5818. "homepage": "https://www.drupal.org/user/214652"
  5819. },
  5820. {
  5821. "name": "pounard",
  5822. "homepage": "https://www.drupal.org/user/240164"
  5823. }
  5824. ],
  5825. "description": "Provide a module placeholder, for using as dependency for module that needs Redis.",
  5826. "homepage": "https://www.drupal.org/project/redis",
  5827. "support": {
  5828. "source": "http://cgit.drupalcode.org/redis"
  5829. }
  5830. },
  5831. {
  5832. "name": "drupal/search_api",
  5833. "version": "1.10.0",
  5834. "source": {
  5835. "type": "git",
  5836. "url": "https://git.drupal.org/project/search_api",
  5837. "reference": "8.x-1.10"
  5838. },
  5839. "dist": {
  5840. "type": "zip",
  5841. "url": "https://ftp.drupal.org/files/projects/search_api-8.x-1.10.zip",
  5842. "reference": "8.x-1.10",
  5843. "shasum": "1c1d038310a079f8e8154545f743ff7a506c4b8e"
  5844. },
  5845. "require": {
  5846. "drupal/core": "^8.5"
  5847. },
  5848. "require-dev": {
  5849. "drupal/search_api_autocomplete": "@dev",
  5850. "drupal/search_api_db": "*"
  5851. },
  5852. "suggest": {
  5853. "drupal/facets": "Adds the ability to create faceted searches.",
  5854. "drupal/search_api_autocomplete": "Allows adding autocomplete suggestions to search fields.",
  5855. "drupal/search_api_solr": "Adds support for using Apache Solr as a backend."
  5856. },
  5857. "type": "drupal-module",
  5858. "extra": {
  5859. "branch-alias": {
  5860. "dev-1.x": "1.x-dev"
  5861. },
  5862. "drupal": {
  5863. "version": "8.x-1.10",
  5864. "datestamp": "1537175280",
  5865. "security-coverage": {
  5866. "status": "covered",
  5867. "message": "Covered by Drupal's security advisory policy"
  5868. }
  5869. },
  5870. "drush": {
  5871. "services": {
  5872. "drush.services.yml": "^9"
  5873. }
  5874. }
  5875. },
  5876. "notification-url": "https://packages.drupal.org/8/downloads",
  5877. "license": [
  5878. "GPL-2.0+"
  5879. ],
  5880. "authors": [
  5881. {
  5882. "name": "Thomas Seidl",
  5883. "homepage": "https://www.drupal.org/u/drunken-monkey"
  5884. },
  5885. {
  5886. "name": "Nick Veenhof",
  5887. "homepage": "https://www.drupal.org/u/nick_vh"
  5888. },
  5889. {
  5890. "name": "See other contributors",
  5891. "homepage": "https://www.drupal.org/node/790418/committers"
  5892. }
  5893. ],
  5894. "description": "Provides a generic framework for modules offering search capabilities.",
  5895. "homepage": "https://www.drupal.org/project/search_api",
  5896. "support": {
  5897. "source": "http://git.drupal.org/project/search_api.git",
  5898. "issues": "https://www.drupal.org/project/issues/search_api",
  5899. "irc": "irc://irc.freenode.org/drupal-search-api"
  5900. }
  5901. },
  5902. {
  5903. "name": "drupal/search_api_db",
  5904. "version": "1.10.0",
  5905. "require": {
  5906. "drupal/core": "~8.0",
  5907. "drupal/search_api": "self.version"
  5908. },
  5909. "type": "metapackage",
  5910. "extra": {
  5911. "branch-alias": {
  5912. "dev-1.x": "1.x-dev"
  5913. },
  5914. "drupal": {
  5915. "version": "8.x-1.10",
  5916. "datestamp": "1537175280",
  5917. "security-coverage": {
  5918. "status": "covered",
  5919. "message": "Covered by Drupal's security advisory policy"
  5920. }
  5921. }
  5922. },
  5923. "notification-url": "https://packages.drupal.org/8/downloads",
  5924. "license": [
  5925. "GPL-2.0-or-later"
  5926. ],
  5927. "authors": [
  5928. {
  5929. "name": "Nick_vh",
  5930. "homepage": "https://www.drupal.org/user/122682"
  5931. },
  5932. {
  5933. "name": "drunken monkey",
  5934. "homepage": "https://www.drupal.org/user/205582"
  5935. }
  5936. ],
  5937. "description": "Offers an implementation of the Search API that uses database tables for indexing content.",
  5938. "homepage": "https://www.drupal.org/project/search_api",
  5939. "support": {
  5940. "source": "http://cgit.drupalcode.org/search_api"
  5941. }
  5942. },
  5943. {
  5944. "name": "drupal/smart_trim",
  5945. "version": "1.1.0",
  5946. "source": {
  5947. "type": "git",
  5948. "url": "https://git.drupal.org/project/smart_trim",
  5949. "reference": "8.x-1.1"
  5950. },
  5951. "dist": {
  5952. "type": "zip",
  5953. "url": "https://ftp.drupal.org/files/projects/smart_trim-8.x-1.1.zip",
  5954. "reference": "8.x-1.1",
  5955. "shasum": "5f1c0f15914208e0ad2ec5cce1d6419040596fc0"
  5956. },
  5957. "require": {
  5958. "drupal/core": "*"
  5959. },
  5960. "type": "drupal-module",
  5961. "extra": {
  5962. "branch-alias": {
  5963. "dev-1.x": "1.x-dev"
  5964. },
  5965. "drupal": {
  5966. "version": "8.x-1.1",
  5967. "datestamp": "1516301286",
  5968. "security-coverage": {
  5969. "status": "covered",
  5970. "message": "Covered by Drupal's security advisory policy"
  5971. }
  5972. }
  5973. },
  5974. "notification-url": "https://packages.drupal.org/8/downloads",
  5975. "license": [
  5976. "GPL-2.0+"
  5977. ],
  5978. "authors": [
  5979. {
  5980. "name": "Mark Casias (markie)",
  5981. "homepage": "https://www.drupal.org/u/markie",
  5982. "role": "Maintainer"
  5983. },
  5984. {
  5985. "name": "chrisjlee",
  5986. "homepage": "https://www.drupal.org/user/760600"
  5987. },
  5988. {
  5989. "name": "drywall",
  5990. "homepage": "https://www.drupal.org/user/192591"
  5991. },
  5992. {
  5993. "name": "jsenich",
  5994. "homepage": "https://www.drupal.org/user/58871"
  5995. },
  5996. {
  5997. "name": "markie",
  5998. "homepage": "https://www.drupal.org/user/206687"
  5999. },
  6000. {
  6001. "name": "newsignature",
  6002. "homepage": "https://www.drupal.org/user/765518"
  6003. }
  6004. ],
  6005. "description": "Provides a more robust alternative to 'summary or trimmed' textfield format.",
  6006. "homepage": "https://drupal.org/project/smart_trim",
  6007. "support": {
  6008. "source": "https://cgit.drupalcode.org/smart_trim",
  6009. "issues": "https://drupal.org/project/issues/smart_trim"
  6010. }
  6011. },
  6012. {
  6013. "name": "drupal/smtp",
  6014. "version": "1.0.0-beta4",
  6015. "source": {
  6016. "type": "git",
  6017. "url": "https://git.drupal.org/project/smtp",
  6018. "reference": "8.x-1.0-beta4"
  6019. },
  6020. "dist": {
  6021. "type": "zip",
  6022. "url": "https://ftp.drupal.org/files/projects/smtp-8.x-1.0-beta4.zip",
  6023. "reference": "8.x-1.0-beta4",
  6024. "shasum": "80a4df4b2fd2d1b2dc653552d232ce98cb54bb9d"
  6025. },
  6026. "require": {
  6027. "drupal/core": "~8.0"
  6028. },
  6029. "type": "drupal-module",
  6030. "extra": {
  6031. "branch-alias": {
  6032. "dev-1.x": "1.x-dev"
  6033. },
  6034. "drupal": {
  6035. "version": "8.x-1.0-beta4",
  6036. "datestamp": "1527598380",
  6037. "security-coverage": {
  6038. "status": "not-covered",
  6039. "message": "Beta releases are not covered by Drupal security advisories."
  6040. }
  6041. }
  6042. },
  6043. "notification-url": "https://packages.drupal.org/8/downloads",
  6044. "license": [
  6045. "GPL-2.0"
  6046. ],
  6047. "authors": [
  6048. {
  6049. "name": "LukeLast",
  6050. "homepage": "https://www.drupal.org/user/30151"
  6051. },
  6052. {
  6053. "name": "japerry",
  6054. "homepage": "https://www.drupal.org/user/45640"
  6055. },
  6056. {
  6057. "name": "josesanmartin",
  6058. "homepage": "https://www.drupal.org/user/72012"
  6059. },
  6060. {
  6061. "name": "oadaeh",
  6062. "homepage": "https://www.drupal.org/user/4649"
  6063. },
  6064. {
  6065. "name": "wundo",
  6066. "homepage": "https://www.drupal.org/user/25523"
  6067. },
  6068. {
  6069. "name": "yettyn",
  6070. "homepage": "https://www.drupal.org/user/93281"
  6071. }
  6072. ],
  6073. "description": "Allow for site emails to be sent through an SMTP server of your choice.",
  6074. "homepage": "https://www.drupal.org/project/smtp",
  6075. "support": {
  6076. "source": "http://cgit.drupalcode.org/smtp",
  6077. "issues": "https://www.drupal.org/project/issues/smtp"
  6078. }
  6079. },
  6080. {
  6081. "name": "drupal/synonyms",
  6082. "version": "dev-1.x",
  6083. "source": {
  6084. "type": "git",
  6085. "url": "https://git.drupal.org/project/synonyms",
  6086. "reference": "5327ef244bad11e859eed9ff71b49cb8f9955190"
  6087. },
  6088. "require": {
  6089. "drupal/core": "^8.2"
  6090. },
  6091. "type": "drupal-module",
  6092. "extra": {
  6093. "branch-alias": {
  6094. "dev-1.x": "1.x-dev"
  6095. },
  6096. "drupal": {
  6097. "version": "8.x-1.0-alpha1+4-dev",
  6098. "datestamp": "1520765584",
  6099. "security-coverage": {
  6100. "status": "not-covered",
  6101. "message": "Dev releases are not covered by Drupal security advisories."
  6102. }
  6103. }
  6104. },
  6105. "notification-url": "https://packages.drupal.org/8/downloads",
  6106. "license": [
  6107. "GPL-2.0-or-later"
  6108. ],
  6109. "authors": [
  6110. {
  6111. "name": "Zen",
  6112. "homepage": "https://www.drupal.org/user/21209"
  6113. },
  6114. {
  6115. "name": "bojanz",
  6116. "homepage": "https://www.drupal.org/user/86106"
  6117. },
  6118. {
  6119. "name": "bucefal91",
  6120. "homepage": "https://www.drupal.org/user/504128"
  6121. }
  6122. ],
  6123. "description": "Provides synonyms feature for content entities.",
  6124. "homepage": "https://www.drupal.org/project/synonyms",
  6125. "support": {
  6126. "source": "http://cgit.drupalcode.org/synonyms"
  6127. },
  6128. "time": "2018-10-21T17:05:25+00:00"
  6129. },
  6130. {
  6131. "name": "drupal/telephone_formatter",
  6132. "version": "1.0.0-beta1",
  6133. "source": {
  6134. "type": "git",
  6135. "url": "https://git.drupal.org/project/telephone_formatter",
  6136. "reference": "8.x-1.0-beta1"
  6137. },
  6138. "dist": {
  6139. "type": "zip",
  6140. "url": "https://ftp.drupal.org/files/projects/telephone_formatter-8.x-1.0-beta1.zip",
  6141. "reference": "8.x-1.0-beta1",
  6142. "shasum": "6d606d98840d983ace3f642879cb49683f2c1711"
  6143. },
  6144. "require": {
  6145. "drupal/core": "*",
  6146. "giggsey/libphonenumber-for-php": "^8.0"
  6147. },
  6148. "suggest": {
  6149. "drupal/telephone_validation": "Unsure data quality"
  6150. },
  6151. "type": "drupal-module",
  6152. "extra": {
  6153. "branch-alias": {
  6154. "dev-1.x": "1.x-dev"
  6155. },
  6156. "drupal": {
  6157. "version": "8.x-1.0-beta1",
  6158. "datestamp": "1492638542",
  6159. "security-coverage": {
  6160. "status": "not-covered",
  6161. "message": "Beta releases are not covered by Drupal security advisories."
  6162. }
  6163. }
  6164. },
  6165. "notification-url": "https://packages.drupal.org/8/downloads",
  6166. "license": [
  6167. "GPL-2.0+"
  6168. ],
  6169. "authors": [
  6170. {
  6171. "name": "Jakub Piasecki",
  6172. "homepage": "https://www.drupal.org/user/1532844",
  6173. "email": "jakub@piaseccy.pl"
  6174. }
  6175. ],
  6176. "description": "Additional formatters to Telephone field.",
  6177. "homepage": "https://www.drupal.org/project/telephone_formatter",
  6178. "support": {
  6179. "source": "http://cgit.drupalcode.org/telephone_formatter",
  6180. "issues": "http://drupal.org/project/issues/telephone_formatter"
  6181. }
  6182. },
  6183. {
  6184. "name": "drupal/telephone_validation",
  6185. "version": "2.1.0",
  6186. "source": {
  6187. "type": "git",
  6188. "url": "https://git.drupal.org/project/telephone_validation",
  6189. "reference": "8.x-2.1"
  6190. },
  6191. "dist": {
  6192. "type": "zip",
  6193. "url": "https://ftp.drupal.org/files/projects/telephone_validation-8.x-2.1.zip",
  6194. "reference": "8.x-2.1",
  6195. "shasum": "fcdb0c3c5541b06e6dd469a7aacefd2d0a891b74"
  6196. },
  6197. "require": {
  6198. "drupal/core": "^8.0",
  6199. "drupal/telephone": "*",
  6200. "giggsey/libphonenumber-for-php": "~8.0"
  6201. },
  6202. "type": "drupal-module",
  6203. "extra": {
  6204. "branch-alias": {
  6205. "dev-2.x": "2.x-dev"
  6206. },
  6207. "drupal": {
  6208. "version": "8.x-2.1",
  6209. "datestamp": "1527165785",
  6210. "security-coverage": {
  6211. "status": "covered",
  6212. "message": "Covered by Drupal's security advisory policy"
  6213. }
  6214. }
  6215. },
  6216. "notification-url": "https://packages.drupal.org/8/downloads",
  6217. "license": [
  6218. "GPL-2.0+"
  6219. ],
  6220. "authors": [
  6221. {
  6222. "name": "zaporylie",
  6223. "homepage": "https://www.drupal.org/user/1532844"
  6224. }
  6225. ],
  6226. "description": "Use 3rd party library to validate telephone field.",
  6227. "homepage": "http://drupal.org/project/telephone_validation",
  6228. "support": {
  6229. "source": "http://cgit.drupalcode.org/telephone_validation",
  6230. "issues": "http://drupal.org/project/issues/telephone_validation"
  6231. }
  6232. },
  6233. {
  6234. "name": "drupal/token",
  6235. "version": "1.5.0",
  6236. "source": {
  6237. "type": "git",
  6238. "url": "https://git.drupal.org/project/token",
  6239. "reference": "8.x-1.5"
  6240. },
  6241. "dist": {
  6242. "type": "zip",
  6243. "url": "https://ftp.drupal.org/files/projects/token-8.x-1.5.zip",
  6244. "reference": "8.x-1.5",
  6245. "shasum": "6382a7e1aabbd8246f1117a26bf4916d285b401d"
  6246. },
  6247. "require": {
  6248. "drupal/core": "^8.5"
  6249. },
  6250. "type": "drupal-module",
  6251. "extra": {
  6252. "branch-alias": {
  6253. "dev-1.x": "1.x-dev"
  6254. },
  6255. "drupal": {
  6256. "version": "8.x-1.5",
  6257. "datestamp": "1537557481",
  6258. "security-coverage": {
  6259. "status": "covered",
  6260. "message": "Covered by Drupal's security advisory policy"
  6261. }
  6262. }
  6263. },
  6264. "notification-url": "https://packages.drupal.org/8/downloads",
  6265. "license": [
  6266. "GPL-2.0-or-later"
  6267. ],
  6268. "authors": [
  6269. {
  6270. "name": "Berdir",
  6271. "homepage": "https://www.drupal.org/user/214652"
  6272. },
  6273. {
  6274. "name": "Dave Reid",
  6275. "homepage": "https://www.drupal.org/user/53892"
  6276. },
  6277. {
  6278. "name": "eaton",
  6279. "homepage": "https://www.drupal.org/user/16496"
  6280. },
  6281. {
  6282. "name": "fago",
  6283. "homepage": "https://www.drupal.org/user/16747"
  6284. },
  6285. {
  6286. "name": "greggles",
  6287. "homepage": "https://www.drupal.org/user/36762"
  6288. },
  6289. {
  6290. "name": "mikeryan",
  6291. "homepage": "https://www.drupal.org/user/4420"
  6292. }
  6293. ],
  6294. "description": "Provides a user interface for the Token API and some missing core tokens.",
  6295. "homepage": "https://www.drupal.org/project/token",
  6296. "support": {
  6297. "source": "http://cgit.drupalcode.org/token"
  6298. }
  6299. },
  6300. {
  6301. "name": "drupal/toolbar_themes",
  6302. "version": "1.0.0-alpha4",
  6303. "source": {
  6304. "type": "git",
  6305. "url": "https://git.drupal.org/project/toolbar_themes",
  6306. "reference": "8.x-1.0-alpha4"
  6307. },
  6308. "dist": {
  6309. "type": "zip",
  6310. "url": "https://ftp.drupal.org/files/projects/toolbar_themes-8.x-1.0-alpha4.zip",
  6311. "reference": "8.x-1.0-alpha4",
  6312. "shasum": "15c38da8bfd5a44e47e436d8f432a0aaf6b2cd70"
  6313. },
  6314. "require": {
  6315. "drupal/core": "*"
  6316. },
  6317. "type": "drupal-module",
  6318. "extra": {
  6319. "branch-alias": {
  6320. "dev-1.x": "1.x-dev"
  6321. },
  6322. "drupal": {
  6323. "version": "8.x-1.0-alpha4",
  6324. "datestamp": "1474198439",
  6325. "security-coverage": {
  6326. "status": "not-covered",
  6327. "message": "Project has not opted into security advisory coverage!"
  6328. }
  6329. }
  6330. },
  6331. "notification-url": "https://packages.drupal.org/8/downloads",
  6332. "license": [
  6333. "GPL-2.0-or-later"
  6334. ],
  6335. "authors": [
  6336. {
  6337. "name": "Jeff Burnz",
  6338. "homepage": "https://www.drupal.org/user/61393"
  6339. }
  6340. ],
  6341. "description": "Apply themes to the toolbar.",
  6342. "homepage": "https://www.drupal.org/project/toolbar_themes",
  6343. "support": {
  6344. "source": "http://cgit.drupalcode.org/toolbar_themes"
  6345. }
  6346. },
  6347. {
  6348. "name": "drupal/translation_views",
  6349. "version": "1.0.0-alpha4",
  6350. "source": {
  6351. "type": "git",
  6352. "url": "https://git.drupal.org/project/translation_views",
  6353. "reference": "8.x-1.0-alpha4"
  6354. },
  6355. "dist": {
  6356. "type": "zip",
  6357. "url": "https://ftp.drupal.org/files/projects/translation_views-8.x-1.0-alpha4.zip",
  6358. "reference": "8.x-1.0-alpha4",
  6359. "shasum": "96f7828005a8d559f31f0dfcb471a68698311cda"
  6360. },
  6361. "require": {
  6362. "drupal/core": "*"
  6363. },
  6364. "type": "drupal-module",
  6365. "extra": {
  6366. "branch-alias": {
  6367. "dev-1.x": "1.x-dev"
  6368. },
  6369. "drupal": {
  6370. "version": "8.x-1.0-alpha4",
  6371. "datestamp": "1538124180",
  6372. "security-coverage": {
  6373. "status": "not-covered",
  6374. "message": "Project has not opted into security advisory coverage!"
  6375. }
  6376. }
  6377. },
  6378. "notification-url": "https://packages.drupal.org/8/downloads",
  6379. "license": [
  6380. "GPL-2.0-or-later"
  6381. ],
  6382. "authors": [
  6383. {
  6384. "name": "matsbla",
  6385. "homepage": "https://www.drupal.org/user/2325394"
  6386. },
  6387. {
  6388. "name": "vlad.dancer",
  6389. "homepage": "https://www.drupal.org/user/903844"
  6390. }
  6391. ],
  6392. "description": "Create customized lists and queries of translations from your database.",
  6393. "homepage": "https://www.drupal.org/project/translation_views",
  6394. "support": {
  6395. "source": "http://cgit.drupalcode.org/translation_views"
  6396. }
  6397. },
  6398. {
  6399. "name": "drupal/ultimate_cron",
  6400. "version": "2.0.0-alpha4",
  6401. "source": {
  6402. "type": "git",
  6403. "url": "https://git.drupal.org/project/ultimate_cron",
  6404. "reference": "8.x-2.0-alpha4"
  6405. },
  6406. "dist": {
  6407. "type": "zip",
  6408. "url": "https://ftp.drupal.org/files/projects/ultimate_cron-8.x-2.0-alpha4.zip",
  6409. "reference": "8.x-2.0-alpha4",
  6410. "shasum": "50cdadd061f1f6fadb961b04ed04348bcc4719d3"
  6411. },
  6412. "require": {
  6413. "drupal/core": "~8.0"
  6414. },
  6415. "type": "drupal-module",
  6416. "extra": {
  6417. "branch-alias": {
  6418. "dev-2.x": "2.x-dev"
  6419. },
  6420. "drupal": {
  6421. "version": "8.x-2.0-alpha4",
  6422. "datestamp": "1527925385",
  6423. "security-coverage": {
  6424. "status": "not-covered",
  6425. "message": "Alpha releases are not covered by Drupal security advisories."
  6426. }
  6427. }
  6428. },
  6429. "notification-url": "https://packages.drupal.org/8/downloads",
  6430. "license": [
  6431. "GPL-2.0-or-later"
  6432. ],
  6433. "authors": [
  6434. {
  6435. "name": "Berdir",
  6436. "homepage": "https://www.drupal.org/user/214652"
  6437. },
  6438. {
  6439. "name": "Dane Powell",
  6440. "homepage": "https://www.drupal.org/user/339326"
  6441. },
  6442. {
  6443. "name": "arnested",
  6444. "homepage": "https://www.drupal.org/user/245635"
  6445. },
  6446. {
  6447. "name": "gielfeldt",
  6448. "homepage": "https://www.drupal.org/user/366993"
  6449. },
  6450. {
  6451. "name": "miro_dietiker",
  6452. "homepage": "https://www.drupal.org/user/227761"
  6453. }
  6454. ],
  6455. "description": "Cron",
  6456. "homepage": "https://www.drupal.org/project/ultimate_cron",
  6457. "support": {
  6458. "source": "http://cgit.drupalcode.org/ultimate_cron"
  6459. }
  6460. },
  6461. {
  6462. "name": "drupal/url_to_video_filter",
  6463. "version": "1.3.0",
  6464. "source": {
  6465. "type": "git",
  6466. "url": "https://git.drupal.org/project/url_to_video_filter",
  6467. "reference": "8.x-1.3"
  6468. },
  6469. "dist": {
  6470. "type": "zip",
  6471. "url": "https://ftp.drupal.org/files/projects/url_to_video_filter-8.x-1.3.zip",
  6472. "reference": "8.x-1.3",
  6473. "shasum": "40a27d1d8948638c0202c1b0c8afe0d92f8362a6"
  6474. },
  6475. "require": {
  6476. "drupal/core": "~8.0"
  6477. },
  6478. "type": "drupal-module",
  6479. "extra": {
  6480. "branch-alias": {
  6481. "dev-1.x": "1.x-dev"
  6482. },
  6483. "drupal": {
  6484. "version": "8.x-1.3",
  6485. "datestamp": "1532695981",
  6486. "security-coverage": {
  6487. "status": "covered",
  6488. "message": "Covered by Drupal's security advisory policy"
  6489. }
  6490. }
  6491. },
  6492. "notification-url": "https://packages.drupal.org/8/downloads",
  6493. "license": [
  6494. "GPL-2.0-or-later"
  6495. ],
  6496. "authors": [
  6497. {
  6498. "name": "Jaypan",
  6499. "homepage": "https://www.drupal.org/user/324696"
  6500. }
  6501. ],
  6502. "description": "Text filter to convert URLs to embedded videos",
  6503. "homepage": "https://www.drupal.org/project/url_to_video_filter",
  6504. "support": {
  6505. "source": "http://cgit.drupalcode.org/url_to_video_filter"
  6506. }
  6507. },
  6508. {
  6509. "name": "drupal/video_embed_field",
  6510. "version": "2.0.0",
  6511. "source": {
  6512. "type": "git",
  6513. "url": "https://git.drupal.org/project/video_embed_field",
  6514. "reference": "8.x-2.0"
  6515. },
  6516. "dist": {
  6517. "type": "zip",
  6518. "url": "https://ftp.drupal.org/files/projects/video_embed_field-8.x-2.0.zip",
  6519. "reference": "8.x-2.0",
  6520. "shasum": "e864f090b3cb9405376ca324d81ace83613e2019"
  6521. },
  6522. "require": {
  6523. "drupal/core": "*"
  6524. },
  6525. "require-dev": {
  6526. "drupal/colorbox": "*",
  6527. "drupal/media_entity": "*",
  6528. "drupal/media_entity_embeddable_video": "*"
  6529. },
  6530. "type": "drupal-module",
  6531. "extra": {
  6532. "branch-alias": {
  6533. "dev-2.x": "2.x-dev"
  6534. },
  6535. "drupal": {
  6536. "version": "8.x-1.x",
  6537. "datestamp": "1523338084",
  6538. "security-coverage": {
  6539. "status": "covered",
  6540. "message": "Covered by Drupal's security advisory policy"
  6541. },
  6542. "package": "Field types"
  6543. }
  6544. },
  6545. "notification-url": "https://packages.drupal.org/8/downloads",
  6546. "license": [
  6547. "GPL-2.0+"
  6548. ],
  6549. "authors": [
  6550. {
  6551. "name": "Sam152",
  6552. "homepage": "https://www.drupal.org/user/1485048"
  6553. },
  6554. {
  6555. "name": "jec006",
  6556. "homepage": "https://www.drupal.org/user/855980"
  6557. },
  6558. {
  6559. "name": "plopesc",
  6560. "homepage": "https://www.drupal.org/user/282415"
  6561. }
  6562. ],
  6563. "description": "A pluggable field type for storing videos from external video hosts such as Vimeo and YouTube.",
  6564. "homepage": "https://www.drupal.org/project/video_embed_field",
  6565. "support": {
  6566. "source": "http://cgit.drupalcode.org/video_embed_field"
  6567. }
  6568. },
  6569. {
  6570. "name": "drupal/views_bulk_edit",
  6571. "version": "2.2.0",
  6572. "source": {
  6573. "type": "git",
  6574. "url": "https://git.drupal.org/project/views_bulk_edit",
  6575. "reference": "8.x-2.2"
  6576. },
  6577. "dist": {
  6578. "type": "zip",
  6579. "url": "https://ftp.drupal.org/files/projects/views_bulk_edit-8.x-2.2.zip",
  6580. "reference": "8.x-2.2",
  6581. "shasum": "6a096dc73fab842c1b000d8788241ed9d3a17427"
  6582. },
  6583. "require": {
  6584. "drupal/core": "*",
  6585. "drupal/views_bulk_operations": "~1.0 | ~2.0"
  6586. },
  6587. "type": "drupal-module",
  6588. "extra": {
  6589. "branch-alias": {
  6590. "dev-2.x": "2.x-dev"
  6591. },
  6592. "drupal": {
  6593. "version": "8.x-2.2",
  6594. "datestamp": "1532689085",
  6595. "security-coverage": {
  6596. "status": "covered",
  6597. "message": "Covered by Drupal's security advisory policy"
  6598. }
  6599. }
  6600. },
  6601. "notification-url": "https://packages.drupal.org/8/downloads",
  6602. "license": [
  6603. "GPL-2.0+"
  6604. ],
  6605. "authors": [
  6606. {
  6607. "name": "Marcin Grabias",
  6608. "homepage": "https://www.drupal.org/u/graber"
  6609. },
  6610. {
  6611. "name": "benjy",
  6612. "homepage": "https://www.drupal.org/user/1852732"
  6613. }
  6614. ],
  6615. "description": "Allows bulk edition of entity field values.",
  6616. "homepage": "https://www.drupal.org/project/views_bulk_edit",
  6617. "support": {
  6618. "source": "http://cgit.drupalcode.org/views_bulk_edit",
  6619. "issues": "https://www.drupal.org/project/issues/views_bulk_edit?version=8.x"
  6620. }
  6621. },
  6622. {
  6623. "name": "drupal/views_bulk_operations",
  6624. "version": "2.4.0",
  6625. "source": {
  6626. "type": "git",
  6627. "url": "https://git.drupal.org/project/views_bulk_operations",
  6628. "reference": "8.x-2.4"
  6629. },
  6630. "dist": {
  6631. "type": "zip",
  6632. "url": "https://ftp.drupal.org/files/projects/views_bulk_operations-8.x-2.4.zip",
  6633. "reference": "8.x-2.4",
  6634. "shasum": "50c5778770f3a92e38ecf664301b77146e3cc931"
  6635. },
  6636. "require": {
  6637. "drupal/core": "^8.4"
  6638. },
  6639. "type": "drupal-module",
  6640. "extra": {
  6641. "branch-alias": {
  6642. "dev-2.x": "2.x-dev"
  6643. },
  6644. "drupal": {
  6645. "version": "8.x-2.4",
  6646. "datestamp": "1530516821",
  6647. "security-coverage": {
  6648. "status": "covered",
  6649. "message": "Covered by Drupal's security advisory policy"
  6650. }
  6651. },
  6652. "drush": {
  6653. "services": {
  6654. "drush.services.yml": "^9"
  6655. }
  6656. }
  6657. },
  6658. "notification-url": "https://packages.drupal.org/8/downloads",
  6659. "license": [
  6660. "GPL-2.0+"
  6661. ],
  6662. "authors": [
  6663. {
  6664. "name": "Marcin Grabias",
  6665. "homepage": "https://www.drupal.org/u/graber"
  6666. },
  6667. {
  6668. "name": "Jon Pugh",
  6669. "homepage": "https://www.drupal.org/user/17028"
  6670. },
  6671. {
  6672. "name": "bojanz",
  6673. "homepage": "https://www.drupal.org/user/86106"
  6674. },
  6675. {
  6676. "name": "infojunkie",
  6677. "homepage": "https://www.drupal.org/user/48424"
  6678. },
  6679. {
  6680. "name": "joelpittet",
  6681. "homepage": "https://www.drupal.org/user/160302"
  6682. }
  6683. ],
  6684. "description": "Adds an ability to perform bulk operations on selected entities from view results. Provides an API to create such operations.",
  6685. "homepage": "https://www.drupal.org/project/views_bulk_operations",
  6686. "support": {
  6687. "source": "http://cgit.drupalcode.org/views_bulk_operations",
  6688. "issues": "https://www.drupal.org/project/issues/views_bulk_operations?version=8.x",
  6689. "docs": "https://www.drupal.org/docs/8/modules/views-bulk-operations-vbo"
  6690. }
  6691. },
  6692. {
  6693. "name": "drupal/views_ef_fieldset",
  6694. "version": "dev-1.x",
  6695. "source": {
  6696. "type": "git",
  6697. "url": "https://git.drupal.org/project/views_ef_fieldset",
  6698. "reference": "f53f9e3390f1491ace93662634477bc43f844759"
  6699. },
  6700. "require": {
  6701. "drupal/core": "*"
  6702. },
  6703. "type": "drupal-module",
  6704. "extra": {
  6705. "branch-alias": {
  6706. "dev-1.x": "1.x-dev"
  6707. },
  6708. "drupal": {
  6709. "version": "8.x-1.1+4-dev",
  6710. "datestamp": "1538990580",
  6711. "security-coverage": {
  6712. "status": "not-covered",
  6713. "message": "Dev releases are not covered by Drupal security advisories."
  6714. }
  6715. }
  6716. },
  6717. "notification-url": "https://packages.drupal.org/8/downloads",
  6718. "license": [
  6719. "GPL-2.0-or-later"
  6720. ],
  6721. "authors": [
  6722. {
  6723. "name": "Pol",
  6724. "homepage": "https://www.drupal.org/user/47194"
  6725. },
  6726. {
  6727. "name": "ciss",
  6728. "homepage": "https://www.drupal.org/user/1632364"
  6729. }
  6730. ],
  6731. "description": "Provide an option to render the \"exposed form widgets\" in a fieldset.",
  6732. "homepage": "https://www.drupal.org/project/views_ef_fieldset",
  6733. "support": {
  6734. "source": "http://cgit.drupalcode.org/views_ef_fieldset"
  6735. },
  6736. "time": "2018-11-16T09:23:47+00:00"
  6737. },
  6738. {
  6739. "name": "drupal/workflow",
  6740. "version": "dev-1.x",
  6741. "source": {
  6742. "type": "git",
  6743. "url": "https://git.drupal.org/project/workflow",
  6744. "reference": "942b2a293696fd4c40fbb906f742a2d9293e5fcb"
  6745. },
  6746. "require": {
  6747. "drupal/core": "*"
  6748. },
  6749. "type": "drupal-module",
  6750. "extra": {
  6751. "branch-alias": {
  6752. "dev-1.x": "1.x-dev"
  6753. },
  6754. "drupal": {
  6755. "version": "8.x-1.1+19-dev",
  6756. "datestamp": "1537125481",
  6757. "security-coverage": {
  6758. "status": "not-covered",
  6759. "message": "Dev releases are not covered by Drupal security advisories."
  6760. }
  6761. },
  6762. "patches_applied": {
  6763. "fix bad way of including files": "https://www.drupal.org/files/issues/2018-11-01/workflow-include.patch"
  6764. }
  6765. },
  6766. "notification-url": "https://packages.drupal.org/8/downloads",
  6767. "license": [
  6768. "GPL-2.0-or-later"
  6769. ],
  6770. "authors": [
  6771. {
  6772. "name": "Bastlynn",
  6773. "homepage": "https://www.drupal.org/user/275249"
  6774. },
  6775. {
  6776. "name": "Heine",
  6777. "homepage": "https://www.drupal.org/user/17943"
  6778. },
  6779. {
  6780. "name": "JacobSingh",
  6781. "homepage": "https://www.drupal.org/user/68912"
  6782. },
  6783. {
  6784. "name": "NancyDru",
  6785. "homepage": "https://www.drupal.org/user/101412"
  6786. },
  6787. {
  6788. "name": "eaton",
  6789. "homepage": "https://www.drupal.org/user/16496"
  6790. },
  6791. {
  6792. "name": "johnv",
  6793. "homepage": "https://www.drupal.org/user/591042"
  6794. },
  6795. {
  6796. "name": "jvandyk",
  6797. "homepage": "https://www.drupal.org/user/2375"
  6798. },
  6799. {
  6800. "name": "mfredrickson",
  6801. "homepage": "https://www.drupal.org/user/31994"
  6802. },
  6803. {
  6804. "name": "q0rban",
  6805. "homepage": "https://www.drupal.org/user/31022"
  6806. }
  6807. ],
  6808. "description": "Defines a field type with Workflows, containing customizable state transitions.",
  6809. "homepage": "https://www.drupal.org/project/workflow",
  6810. "support": {
  6811. "source": "http://cgit.drupalcode.org/workflow"
  6812. },
  6813. "time": "2018-09-16T19:25:10+00:00"
  6814. },
  6815. {
  6816. "name": "drush/drush",
  6817. "version": "9.5.2",
  6818. "source": {
  6819. "type": "git",
  6820. "url": "https://github.com/drush-ops/drush.git",
  6821. "reference": "17f0106706391675a281c6d212850853bdbe90f9"
  6822. },
  6823. "dist": {
  6824. "type": "zip",
  6825. "url": "https://api.github.com/repos/drush-ops/drush/zipball/17f0106706391675a281c6d212850853bdbe90f9",
  6826. "reference": "17f0106706391675a281c6d212850853bdbe90f9",
  6827. "shasum": ""
  6828. },
  6829. "require": {
  6830. "chi-teck/drupal-code-generator": "^1.27.0",
  6831. "composer/semver": "^1.4",
  6832. "consolidation/annotated-command": "^2.9.1",
  6833. "consolidation/config": "^1.1.0",
  6834. "consolidation/output-formatters": "^3.1.12",
  6835. "consolidation/robo": "^1.1.5",
  6836. "consolidation/site-alias": "^1.1.5",
  6837. "ext-dom": "*",
  6838. "grasmash/yaml-expander": "^1.1.1",
  6839. "league/container": "~2",
  6840. "php": ">=5.6.0",
  6841. "psr/log": "~1.0",
  6842. "psy/psysh": "~0.6",
  6843. "symfony/config": "^3.4",
  6844. "symfony/console": "^3.4",
  6845. "symfony/event-dispatcher": "^3.4",
  6846. "symfony/finder": "^3.4",
  6847. "symfony/process": "^3.4",
  6848. "symfony/var-dumper": "^3.4",
  6849. "symfony/yaml": "^3.4",
  6850. "webflo/drupal-finder": "^1.1",
  6851. "webmozart/path-util": "^2.1.0"
  6852. },
  6853. "require-dev": {
  6854. "composer/installers": "^1.2",
  6855. "cweagans/composer-patches": "~1.0",
  6856. "drupal/alinks": "1.0.0",
  6857. "drupal/devel": "^1.0@RC",
  6858. "drupal/empty_theme": "1.0",
  6859. "g1a/composer-test-scenarios": "^2.2.0",
  6860. "lox/xhprof": "dev-master",
  6861. "phpunit/phpunit": "^4.8.36 || ^6.1",
  6862. "squizlabs/php_codesniffer": "^2.7",
  6863. "vlucas/phpdotenv": "^2.4",
  6864. "webflo/drupal-core-strict": "8.6.x-dev"
  6865. },
  6866. "bin": [
  6867. "drush"
  6868. ],
  6869. "type": "library",
  6870. "extra": {
  6871. "installer-paths": {
  6872. "sut/core": [
  6873. "type:drupal-core"
  6874. ],
  6875. "sut/libraries/{$name}": [
  6876. "type:drupal-library"
  6877. ],
  6878. "sut/modules/unish/{$name}": [
  6879. "drupal/devel"
  6880. ],
  6881. "sut/themes/unish/{$name}": [
  6882. "drupal/empty_theme"
  6883. ],
  6884. "sut/modules/contrib/{$name}": [
  6885. "type:drupal-module"
  6886. ],
  6887. "sut/profiles/contrib/{$name}": [
  6888. "type:drupal-profile"
  6889. ],
  6890. "sut/themes/contrib/{$name}": [
  6891. "type:drupal-theme"
  6892. ],
  6893. "sut/drush/contrib/{$name}": [
  6894. "type:drupal-drush"
  6895. ]
  6896. },
  6897. "branch-alias": {
  6898. "dev-master": "9.x-dev"
  6899. }
  6900. },
  6901. "autoload": {
  6902. "psr-4": {
  6903. "Drush\\": "src/",
  6904. "Drush\\Internal\\": "internal-copy/",
  6905. "Unish\\": "tests/"
  6906. }
  6907. },
  6908. "notification-url": "https://packagist.org/downloads/",
  6909. "license": [
  6910. "GPL-2.0-or-later"
  6911. ],
  6912. "authors": [
  6913. {
  6914. "name": "Moshe Weitzman",
  6915. "email": "weitzman@tejasa.com"
  6916. },
  6917. {
  6918. "name": "Owen Barton",
  6919. "email": "drupal@owenbarton.com"
  6920. },
  6921. {
  6922. "name": "Greg Anderson",
  6923. "email": "greg.1.anderson@greenknowe.org"
  6924. },
  6925. {
  6926. "name": "Jonathan Araña Cruz",
  6927. "email": "jonhattan@faita.net"
  6928. },
  6929. {
  6930. "name": "Jonathan Hedstrom",
  6931. "email": "jhedstrom@gmail.com"
  6932. },
  6933. {
  6934. "name": "Christopher Gervais",
  6935. "email": "chris@ergonlogic.com"
  6936. },
  6937. {
  6938. "name": "Dave Reid",
  6939. "email": "dave@davereid.net"
  6940. },
  6941. {
  6942. "name": "Damian Lee",
  6943. "email": "damiankloip@googlemail.com"
  6944. }
  6945. ],
  6946. "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.",
  6947. "homepage": "http://www.drush.org",
  6948. "time": "2018-10-17T18:37:53+00:00"
  6949. },
  6950. {
  6951. "name": "easyrdf/easyrdf",
  6952. "version": "0.9.1",
  6953. "source": {
  6954. "type": "git",
  6955. "url": "https://github.com/njh/easyrdf.git",
  6956. "reference": "acd09dfe0555fbcfa254291e433c45fdd4652566"
  6957. },
  6958. "dist": {
  6959. "type": "zip",
  6960. "url": "https://api.github.com/repos/njh/easyrdf/zipball/acd09dfe0555fbcfa254291e433c45fdd4652566",
  6961. "reference": "acd09dfe0555fbcfa254291e433c45fdd4652566",
  6962. "shasum": ""
  6963. },
  6964. "require": {
  6965. "ext-mbstring": "*",
  6966. "ext-pcre": "*",
  6967. "php": ">=5.2.8"
  6968. },
  6969. "require-dev": {
  6970. "phpunit/phpunit": "~3.5",
  6971. "sami/sami": "~1.4",
  6972. "squizlabs/php_codesniffer": "~1.4.3"
  6973. },
  6974. "suggest": {
  6975. "ml/json-ld": "~1.0"
  6976. },
  6977. "type": "library",
  6978. "autoload": {
  6979. "psr-0": {
  6980. "EasyRdf_": "lib/"
  6981. }
  6982. },
  6983. "notification-url": "https://packagist.org/downloads/",
  6984. "license": [
  6985. "BSD-3-Clause"
  6986. ],
  6987. "authors": [
  6988. {
  6989. "name": "Nicholas Humfrey",
  6990. "email": "njh@aelius.com",
  6991. "homepage": "http://www.aelius.com/njh/",
  6992. "role": "Developer"
  6993. },
  6994. {
  6995. "name": "Alexey Zakhlestin",
  6996. "email": "indeyets@gmail.com",
  6997. "role": "Developer"
  6998. }
  6999. ],
  7000. "description": "EasyRdf is a PHP library designed to make it easy to consume and produce RDF.",
  7001. "homepage": "http://www.easyrdf.org/",
  7002. "keywords": [
  7003. "Linked Data",
  7004. "RDF",
  7005. "Semantic Web",
  7006. "Turtle",
  7007. "rdfa",
  7008. "sparql"
  7009. ],
  7010. "time": "2015-02-27T09:45:49+00:00"
  7011. },
  7012. {
  7013. "name": "egulias/email-validator",
  7014. "version": "1.2.15",
  7015. "source": {
  7016. "type": "git",
  7017. "url": "https://github.com/egulias/EmailValidator.git",
  7018. "reference": "758a77525bdaabd6c0f5669176bd4361cb2dda9e"
  7019. },
  7020. "dist": {
  7021. "type": "zip",
  7022. "url": "https://api.github.com/repos/egulias/EmailValidator/zipball/758a77525bdaabd6c0f5669176bd4361cb2dda9e",
  7023. "reference": "758a77525bdaabd6c0f5669176bd4361cb2dda9e",
  7024. "shasum": ""
  7025. },
  7026. "require": {
  7027. "doctrine/lexer": "^1.0.1",
  7028. "php": ">= 5.3.3"
  7029. },
  7030. "require-dev": {
  7031. "phpunit/phpunit": "^4.8.24"
  7032. },
  7033. "type": "library",
  7034. "extra": {
  7035. "branch-alias": {
  7036. "dev-master": "2.0.x-dev"
  7037. }
  7038. },
  7039. "autoload": {
  7040. "psr-0": {
  7041. "Egulias\\": "src/"
  7042. }
  7043. },
  7044. "notification-url": "https://packagist.org/downloads/",
  7045. "license": [
  7046. "MIT"
  7047. ],
  7048. "authors": [
  7049. {
  7050. "name": "Eduardo Gulias Davis"
  7051. }
  7052. ],
  7053. "description": "A library for validating emails",
  7054. "homepage": "https://github.com/egulias/EmailValidator",
  7055. "keywords": [
  7056. "email",
  7057. "emailvalidation",
  7058. "emailvalidator",
  7059. "validation",
  7060. "validator"
  7061. ],
  7062. "time": "2018-09-25T20:59:41+00:00"
  7063. },
  7064. {
  7065. "name": "g1a/composer-test-scenarios",
  7066. "version": "2.2.0",
  7067. "source": {
  7068. "type": "git",
  7069. "url": "https://github.com/g1a/composer-test-scenarios.git",
  7070. "reference": "a166fd15191aceab89f30c097e694b7cf3db4880"
  7071. },
  7072. "dist": {
  7073. "type": "zip",
  7074. "url": "https://api.github.com/repos/g1a/composer-test-scenarios/zipball/a166fd15191aceab89f30c097e694b7cf3db4880",
  7075. "reference": "a166fd15191aceab89f30c097e694b7cf3db4880",
  7076. "shasum": ""
  7077. },
  7078. "bin": [
  7079. "scripts/create-scenario",
  7080. "scripts/dependency-licenses",
  7081. "scripts/install-scenario"
  7082. ],
  7083. "type": "library",
  7084. "notification-url": "https://packagist.org/downloads/",
  7085. "license": [
  7086. "MIT"
  7087. ],
  7088. "authors": [
  7089. {
  7090. "name": "Greg Anderson",
  7091. "email": "greg.1.anderson@greenknowe.org"
  7092. }
  7093. ],
  7094. "description": "Useful scripts for testing multiple sets of Composer dependencies.",
  7095. "time": "2018-08-08T23:37:23+00:00"
  7096. },
  7097. {
  7098. "name": "giggsey/libphonenumber-for-php",
  7099. "version": "8.10.2",
  7100. "source": {
  7101. "type": "git",
  7102. "url": "https://github.com/giggsey/libphonenumber-for-php.git",
  7103. "reference": "a71f260c2efce10ded8af030a20fa13edfb0e9be"
  7104. },
  7105. "dist": {
  7106. "type": "zip",
  7107. "url": "https://api.github.com/repos/giggsey/libphonenumber-for-php/zipball/a71f260c2efce10ded8af030a20fa13edfb0e9be",
  7108. "reference": "a71f260c2efce10ded8af030a20fa13edfb0e9be",
  7109. "shasum": ""
  7110. },
  7111. "require": {
  7112. "ext-mbstring": "*",
  7113. "giggsey/locale": "^1.2",
  7114. "php": ">=5.3.2"
  7115. },
  7116. "require-dev": {
  7117. "pear/pear-core-minimal": "^1.9",
  7118. "pear/pear_exception": "^1.0",
  7119. "pear/versioncontrol_git": "^0.5",
  7120. "phing/phing": "^2.7",
  7121. "php-coveralls/php-coveralls": "^1.0|^2.0",
  7122. "phpunit/phpunit": "^4.8.36|^5.0",
  7123. "symfony/console": "^2.8|^3.0"
  7124. },
  7125. "type": "library",
  7126. "extra": {
  7127. "branch-alias": {
  7128. "dev-master": "8.x-dev"
  7129. }
  7130. },
  7131. "autoload": {
  7132. "psr-4": {
  7133. "libphonenumber\\": "src/"
  7134. },
  7135. "exclude-from-classmap": [
  7136. "/src/data/",
  7137. "/src/carrier/data/",
  7138. "/src/geocoding/data/",
  7139. "/src/timezone/data/"
  7140. ]
  7141. },
  7142. "notification-url": "https://packagist.org/downloads/",
  7143. "license": [
  7144. "Apache-2.0"
  7145. ],
  7146. "authors": [
  7147. {
  7148. "name": "Joshua Gigg",
  7149. "email": "giggsey@gmail.com",
  7150. "homepage": "https://giggsey.com/"
  7151. }
  7152. ],
  7153. "description": "PHP Port of Google's libphonenumber",
  7154. "homepage": "https://github.com/giggsey/libphonenumber-for-php",
  7155. "keywords": [
  7156. "geocoding",
  7157. "geolocation",
  7158. "libphonenumber",
  7159. "mobile",
  7160. "phonenumber",
  7161. "validation"
  7162. ],
  7163. "time": "2018-12-06T10:42:08+00:00"
  7164. },
  7165. {
  7166. "name": "giggsey/locale",
  7167. "version": "1.6",
  7168. "source": {
  7169. "type": "git",
  7170. "url": "https://github.com/giggsey/Locale.git",
  7171. "reference": "da6845720b5d104d319d7e84576f54e44dd9e4f5"
  7172. },
  7173. "dist": {
  7174. "type": "zip",
  7175. "url": "https://api.github.com/repos/giggsey/Locale/zipball/da6845720b5d104d319d7e84576f54e44dd9e4f5",
  7176. "reference": "da6845720b5d104d319d7e84576f54e44dd9e4f5",
  7177. "shasum": ""
  7178. },
  7179. "require": {
  7180. "php": ">=5.3.2"
  7181. },
  7182. "require-dev": {
  7183. "pear/pear-core-minimal": "^1.9",
  7184. "pear/pear_exception": "^1.0",
  7185. "pear/versioncontrol_git": "^0.5",
  7186. "phing/phing": "~2.7",
  7187. "phpunit/phpunit": "^4.8|^5.0",
  7188. "satooshi/php-coveralls": "^1.0",
  7189. "symfony/console": "^2.8|^3.0|^4.0",
  7190. "symfony/filesystem": "^2.8|^3.0|^4.0",
  7191. "symfony/finder": "^2.8|^3.0|^4.0",
  7192. "symfony/process": "^2.8|^3.0|^4.0"
  7193. },
  7194. "type": "library",
  7195. "autoload": {
  7196. "psr-4": {
  7197. "Giggsey\\Locale\\": "src/"
  7198. }
  7199. },
  7200. "notification-url": "https://packagist.org/downloads/",
  7201. "license": [
  7202. "MIT"
  7203. ],
  7204. "authors": [
  7205. {
  7206. "name": "Joshua Gigg",
  7207. "email": "giggsey@gmail.com",
  7208. "homepage": "http://giggsey.com/"
  7209. }
  7210. ],
  7211. "description": "Locale functions required by libphonenumber-for-php",
  7212. "time": "2018-10-18T07:17:52+00:00"
  7213. },
  7214. {
  7215. "name": "grasmash/expander",
  7216. "version": "1.0.0",
  7217. "source": {
  7218. "type": "git",
  7219. "url": "https://github.com/grasmash/expander.git",
  7220. "reference": "95d6037344a4be1dd5f8e0b0b2571a28c397578f"
  7221. },
  7222. "dist": {
  7223. "type": "zip",
  7224. "url": "https://api.github.com/repos/grasmash/expander/zipball/95d6037344a4be1dd5f8e0b0b2571a28c397578f",
  7225. "reference": "95d6037344a4be1dd5f8e0b0b2571a28c397578f",
  7226. "shasum": ""
  7227. },
  7228. "require": {
  7229. "dflydev/dot-access-data": "^1.1.0",
  7230. "php": ">=5.4"
  7231. },
  7232. "require-dev": {
  7233. "greg-1-anderson/composer-test-scenarios": "^1",
  7234. "phpunit/phpunit": "^4|^5.5.4",
  7235. "satooshi/php-coveralls": "^1.0.2|dev-master",
  7236. "squizlabs/php_codesniffer": "^2.7"
  7237. },
  7238. "type": "library",
  7239. "extra": {
  7240. "branch-alias": {
  7241. "dev-master": "1.x-dev"
  7242. }
  7243. },
  7244. "autoload": {
  7245. "psr-4": {
  7246. "Grasmash\\Expander\\": "src/"
  7247. }
  7248. },
  7249. "notification-url": "https://packagist.org/downloads/",
  7250. "license": [
  7251. "MIT"
  7252. ],
  7253. "authors": [
  7254. {
  7255. "name": "Matthew Grasmick"
  7256. }
  7257. ],
  7258. "description": "Expands internal property references in PHP arrays file.",
  7259. "time": "2017-12-21T22:14:55+00:00"
  7260. },
  7261. {
  7262. "name": "grasmash/yaml-expander",
  7263. "version": "1.4.0",
  7264. "source": {
  7265. "type": "git",
  7266. "url": "https://github.com/grasmash/yaml-expander.git",
  7267. "reference": "3f0f6001ae707a24f4d9733958d77d92bf9693b1"
  7268. },
  7269. "dist": {
  7270. "type": "zip",
  7271. "url": "https://api.github.com/repos/grasmash/yaml-expander/zipball/3f0f6001ae707a24f4d9733958d77d92bf9693b1",
  7272. "reference": "3f0f6001ae707a24f4d9733958d77d92bf9693b1",
  7273. "shasum": ""
  7274. },
  7275. "require": {
  7276. "dflydev/dot-access-data": "^1.1.0",
  7277. "php": ">=5.4",
  7278. "symfony/yaml": "^2.8.11|^3|^4"
  7279. },
  7280. "require-dev": {
  7281. "greg-1-anderson/composer-test-scenarios": "^1",
  7282. "phpunit/phpunit": "^4.8|^5.5.4",
  7283. "satooshi/php-coveralls": "^1.0.2|dev-master",
  7284. "squizlabs/php_codesniffer": "^2.7"
  7285. },
  7286. "type": "library",
  7287. "extra": {
  7288. "branch-alias": {
  7289. "dev-master": "1.x-dev"
  7290. }
  7291. },
  7292. "autoload": {
  7293. "psr-4": {
  7294. "Grasmash\\YamlExpander\\": "src/"
  7295. }
  7296. },
  7297. "notification-url": "https://packagist.org/downloads/",
  7298. "license": [
  7299. "MIT"
  7300. ],
  7301. "authors": [
  7302. {
  7303. "name": "Matthew Grasmick"
  7304. }
  7305. ],
  7306. "description": "Expands internal property references in a yaml file.",
  7307. "time": "2017-12-16T16:06:03+00:00"
  7308. },
  7309. {
  7310. "name": "guzzlehttp/guzzle",
  7311. "version": "6.3.3",
  7312. "source": {
  7313. "type": "git",
  7314. "url": "https://github.com/guzzle/guzzle.git",
  7315. "reference": "407b0cb880ace85c9b63c5f9551db498cb2d50ba"
  7316. },
  7317. "dist": {
  7318. "type": "zip",
  7319. "url": "https://api.github.com/repos/guzzle/guzzle/zipball/407b0cb880ace85c9b63c5f9551db498cb2d50ba",
  7320. "reference": "407b0cb880ace85c9b63c5f9551db498cb2d50ba",
  7321. "shasum": ""
  7322. },
  7323. "require": {
  7324. "guzzlehttp/promises": "^1.0",
  7325. "guzzlehttp/psr7": "^1.4",
  7326. "php": ">=5.5"
  7327. },
  7328. "require-dev": {
  7329. "ext-curl": "*",
  7330. "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.4 || ^7.0",
  7331. "psr/log": "^1.0"
  7332. },
  7333. "suggest": {
  7334. "psr/log": "Required for using the Log middleware"
  7335. },
  7336. "type": "library",
  7337. "extra": {
  7338. "branch-alias": {
  7339. "dev-master": "6.3-dev"
  7340. }
  7341. },
  7342. "autoload": {
  7343. "files": [
  7344. "src/functions_include.php"
  7345. ],
  7346. "psr-4": {
  7347. "GuzzleHttp\\": "src/"
  7348. }
  7349. },
  7350. "notification-url": "https://packagist.org/downloads/",
  7351. "license": [
  7352. "MIT"
  7353. ],
  7354. "authors": [
  7355. {
  7356. "name": "Michael Dowling",
  7357. "email": "mtdowling@gmail.com",
  7358. "homepage": "https://github.com/mtdowling"
  7359. }
  7360. ],
  7361. "description": "Guzzle is a PHP HTTP client library",
  7362. "homepage": "http://guzzlephp.org/",
  7363. "keywords": [
  7364. "client",
  7365. "curl",
  7366. "framework",
  7367. "http",
  7368. "http client",
  7369. "rest",
  7370. "web service"
  7371. ],
  7372. "time": "2018-04-22T15:46:56+00:00"
  7373. },
  7374. {
  7375. "name": "guzzlehttp/promises",
  7376. "version": "v1.3.1",
  7377. "source": {
  7378. "type": "git",
  7379. "url": "https://github.com/guzzle/promises.git",
  7380. "reference": "a59da6cf61d80060647ff4d3eb2c03a2bc694646"
  7381. },
  7382. "dist": {
  7383. "type": "zip",
  7384. "url": "https://api.github.com/repos/guzzle/promises/zipball/a59da6cf61d80060647ff4d3eb2c03a2bc694646",
  7385. "reference": "a59da6cf61d80060647ff4d3eb2c03a2bc694646",
  7386. "shasum": ""
  7387. },
  7388. "require": {
  7389. "php": ">=5.5.0"
  7390. },
  7391. "require-dev": {
  7392. "phpunit/phpunit": "^4.0"
  7393. },
  7394. "type": "library",
  7395. "extra": {
  7396. "branch-alias": {
  7397. "dev-master": "1.4-dev"
  7398. }
  7399. },
  7400. "autoload": {
  7401. "psr-4": {
  7402. "GuzzleHttp\\Promise\\": "src/"
  7403. },
  7404. "files": [
  7405. "src/functions_include.php"
  7406. ]
  7407. },
  7408. "notification-url": "https://packagist.org/downloads/",
  7409. "license": [
  7410. "MIT"
  7411. ],
  7412. "authors": [
  7413. {
  7414. "name": "Michael Dowling",
  7415. "email": "mtdowling@gmail.com",
  7416. "homepage": "https://github.com/mtdowling"
  7417. }
  7418. ],
  7419. "description": "Guzzle promises library",
  7420. "keywords": [
  7421. "promise"
  7422. ],
  7423. "time": "2016-12-20T10:07:11+00:00"
  7424. },
  7425. {
  7426. "name": "guzzlehttp/psr7",
  7427. "version": "1.4.2",
  7428. "source": {
  7429. "type": "git",
  7430. "url": "https://github.com/guzzle/psr7.git",
  7431. "reference": "f5b8a8512e2b58b0071a7280e39f14f72e05d87c"
  7432. },
  7433. "dist": {
  7434. "type": "zip",
  7435. "url": "https://api.github.com/repos/guzzle/psr7/zipball/f5b8a8512e2b58b0071a7280e39f14f72e05d87c",
  7436. "reference": "f5b8a8512e2b58b0071a7280e39f14f72e05d87c",
  7437. "shasum": ""
  7438. },
  7439. "require": {
  7440. "php": ">=5.4.0",
  7441. "psr/http-message": "~1.0"
  7442. },
  7443. "provide": {
  7444. "psr/http-message-implementation": "1.0"
  7445. },
  7446. "require-dev": {
  7447. "phpunit/phpunit": "~4.0"
  7448. },
  7449. "type": "library",
  7450. "extra": {
  7451. "branch-alias": {
  7452. "dev-master": "1.4-dev"
  7453. }
  7454. },
  7455. "autoload": {
  7456. "psr-4": {
  7457. "GuzzleHttp\\Psr7\\": "src/"
  7458. },
  7459. "files": [
  7460. "src/functions_include.php"
  7461. ]
  7462. },
  7463. "notification-url": "https://packagist.org/downloads/",
  7464. "license": [
  7465. "MIT"
  7466. ],
  7467. "authors": [
  7468. {
  7469. "name": "Michael Dowling",
  7470. "email": "mtdowling@gmail.com",
  7471. "homepage": "https://github.com/mtdowling"
  7472. },
  7473. {
  7474. "name": "Tobias Schultze",
  7475. "homepage": "https://github.com/Tobion"
  7476. }
  7477. ],
  7478. "description": "PSR-7 message implementation that also provides common utility methods",
  7479. "keywords": [
  7480. "http",
  7481. "message",
  7482. "request",
  7483. "response",
  7484. "stream",
  7485. "uri",
  7486. "url"
  7487. ],
  7488. "time": "2017-03-20T17:10:46+00:00"
  7489. },
  7490. {
  7491. "name": "jakub-onderka/php-console-color",
  7492. "version": "v0.2",
  7493. "source": {
  7494. "type": "git",
  7495. "url": "https://github.com/JakubOnderka/PHP-Console-Color.git",
  7496. "reference": "d5deaecff52a0d61ccb613bb3804088da0307191"
  7497. },
  7498. "dist": {
  7499. "type": "zip",
  7500. "url": "https://api.github.com/repos/JakubOnderka/PHP-Console-Color/zipball/d5deaecff52a0d61ccb613bb3804088da0307191",
  7501. "reference": "d5deaecff52a0d61ccb613bb3804088da0307191",
  7502. "shasum": ""
  7503. },
  7504. "require": {
  7505. "php": ">=5.4.0"
  7506. },
  7507. "require-dev": {
  7508. "jakub-onderka/php-code-style": "1.0",
  7509. "jakub-onderka/php-parallel-lint": "1.0",
  7510. "jakub-onderka/php-var-dump-check": "0.*",
  7511. "phpunit/phpunit": "~4.3",
  7512. "squizlabs/php_codesniffer": "1.*"
  7513. },
  7514. "type": "library",
  7515. "autoload": {
  7516. "psr-4": {
  7517. "JakubOnderka\\PhpConsoleColor\\": "src/"
  7518. }
  7519. },
  7520. "notification-url": "https://packagist.org/downloads/",
  7521. "license": [
  7522. "BSD-2-Clause"
  7523. ],
  7524. "authors": [
  7525. {
  7526. "name": "Jakub Onderka",
  7527. "email": "jakub.onderka@gmail.com"
  7528. }
  7529. ],
  7530. "time": "2018-09-29T17:23:10+00:00"
  7531. },
  7532. {
  7533. "name": "jakub-onderka/php-console-highlighter",
  7534. "version": "v0.4",
  7535. "source": {
  7536. "type": "git",
  7537. "url": "https://github.com/JakubOnderka/PHP-Console-Highlighter.git",
  7538. "reference": "9f7a229a69d52506914b4bc61bfdb199d90c5547"
  7539. },
  7540. "dist": {
  7541. "type": "zip",
  7542. "url": "https://api.github.com/repos/JakubOnderka/PHP-Console-Highlighter/zipball/9f7a229a69d52506914b4bc61bfdb199d90c5547",
  7543. "reference": "9f7a229a69d52506914b4bc61bfdb199d90c5547",
  7544. "shasum": ""
  7545. },
  7546. "require": {
  7547. "ext-tokenizer": "*",
  7548. "jakub-onderka/php-console-color": "~0.2",
  7549. "php": ">=5.4.0"
  7550. },
  7551. "require-dev": {
  7552. "jakub-onderka/php-code-style": "~1.0",
  7553. "jakub-onderka/php-parallel-lint": "~1.0",
  7554. "jakub-onderka/php-var-dump-check": "~0.1",
  7555. "phpunit/phpunit": "~4.0",
  7556. "squizlabs/php_codesniffer": "~1.5"
  7557. },
  7558. "type": "library",
  7559. "autoload": {
  7560. "psr-4": {
  7561. "JakubOnderka\\PhpConsoleHighlighter\\": "src/"
  7562. }
  7563. },
  7564. "notification-url": "https://packagist.org/downloads/",
  7565. "license": [
  7566. "MIT"
  7567. ],
  7568. "authors": [
  7569. {
  7570. "name": "Jakub Onderka",
  7571. "email": "acci@acci.cz",
  7572. "homepage": "http://www.acci.cz/"
  7573. }
  7574. ],
  7575. "description": "Highlight PHP code in terminal",
  7576. "time": "2018-09-29T18:48:56+00:00"
  7577. },
  7578. {
  7579. "name": "league/container",
  7580. "version": "2.4.1",
  7581. "source": {
  7582. "type": "git",
  7583. "url": "https://github.com/thephpleague/container.git",
  7584. "reference": "43f35abd03a12977a60ffd7095efd6a7808488c0"
  7585. },
  7586. "dist": {
  7587. "type": "zip",
  7588. "url": "https://api.github.com/repos/thephpleague/container/zipball/43f35abd03a12977a60ffd7095efd6a7808488c0",
  7589. "reference": "43f35abd03a12977a60ffd7095efd6a7808488c0",
  7590. "shasum": ""
  7591. },
  7592. "require": {
  7593. "container-interop/container-interop": "^1.2",
  7594. "php": "^5.4.0 || ^7.0"
  7595. },
  7596. "provide": {
  7597. "container-interop/container-interop-implementation": "^1.2",
  7598. "psr/container-implementation": "^1.0"
  7599. },
  7600. "replace": {
  7601. "orno/di": "~2.0"
  7602. },
  7603. "require-dev": {
  7604. "phpunit/phpunit": "4.*"
  7605. },
  7606. "type": "library",
  7607. "extra": {
  7608. "branch-alias": {
  7609. "dev-2.x": "2.x-dev",
  7610. "dev-1.x": "1.x-dev"
  7611. }
  7612. },
  7613. "autoload": {
  7614. "psr-4": {
  7615. "League\\Container\\": "src"
  7616. }
  7617. },
  7618. "notification-url": "https://packagist.org/downloads/",
  7619. "license": [
  7620. "MIT"
  7621. ],
  7622. "authors": [
  7623. {
  7624. "name": "Phil Bennett",
  7625. "email": "philipobenito@gmail.com",
  7626. "homepage": "http://www.philipobenito.com",
  7627. "role": "Developer"
  7628. }
  7629. ],
  7630. "description": "A fast and intuitive dependency injection container.",
  7631. "homepage": "https://github.com/thephpleague/container",
  7632. "keywords": [
  7633. "container",
  7634. "dependency",
  7635. "di",
  7636. "injection",
  7637. "league",
  7638. "provider",
  7639. "service"
  7640. ],
  7641. "time": "2017-05-10T09:20:27+00:00"
  7642. },
  7643. {
  7644. "name": "lsolesen/pel",
  7645. "version": "0.9.6",
  7646. "source": {
  7647. "type": "git",
  7648. "url": "https://github.com/lsolesen/pel.git",
  7649. "reference": "c9e3919f5db3b85c3c422d4f8d448dbcb2a87a23"
  7650. },
  7651. "dist": {
  7652. "type": "zip",
  7653. "url": "https://api.github.com/repos/lsolesen/pel/zipball/c9e3919f5db3b85c3c422d4f8d448dbcb2a87a23",
  7654. "reference": "c9e3919f5db3b85c3c422d4f8d448dbcb2a87a23",
  7655. "shasum": ""
  7656. },
  7657. "require": {
  7658. "php": ">=5.0.0"
  7659. },
  7660. "require-dev": {
  7661. "ext-gd": "*",
  7662. "phpunit/phpunit": "5.7.*",
  7663. "satooshi/php-coveralls": "1.0.*",
  7664. "squizlabs/php_codesniffer": "3.0.0RC3"
  7665. },
  7666. "type": "library",
  7667. "autoload": {
  7668. "psr-4": {
  7669. "lsolesen\\pel\\": "src/"
  7670. }
  7671. },
  7672. "notification-url": "https://packagist.org/downloads/",
  7673. "license": [
  7674. "GPL-2.0"
  7675. ],
  7676. "authors": [
  7677. {
  7678. "name": "Lars Olesen",
  7679. "email": "lars@intraface.dk",
  7680. "homepage": "http://intraface.dk",
  7681. "role": "Developer"
  7682. },
  7683. {
  7684. "name": "Martin Geisler",
  7685. "email": "martin@geisler.net",
  7686. "homepage": "http://geisler.net",
  7687. "role": "Developer"
  7688. }
  7689. ],
  7690. "description": "PHP Exif Library. A library for reading and writing Exif headers in JPEG and TIFF images using PHP.",
  7691. "homepage": "http://lsolesen.github.com/pel/",
  7692. "keywords": [
  7693. "exif",
  7694. "image"
  7695. ],
  7696. "time": "2017-02-03T11:58:58+00:00"
  7697. },
  7698. {
  7699. "name": "masterminds/html5",
  7700. "version": "2.3.1",
  7701. "source": {
  7702. "type": "git",
  7703. "url": "https://github.com/Masterminds/html5-php.git",
  7704. "reference": "33f8d475d28741398be26cdff7a10a63003324a3"
  7705. },
  7706. "dist": {
  7707. "type": "zip",
  7708. "url": "https://api.github.com/repos/Masterminds/html5-php/zipball/33f8d475d28741398be26cdff7a10a63003324a3",
  7709. "reference": "33f8d475d28741398be26cdff7a10a63003324a3",
  7710. "shasum": ""
  7711. },
  7712. "require": {
  7713. "ext-libxml": "*",
  7714. "php": ">=5.3.0"
  7715. },
  7716. "require-dev": {
  7717. "phpunit/phpunit": "4.*",
  7718. "sami/sami": "~2.0",
  7719. "satooshi/php-coveralls": "1.0.*"
  7720. },
  7721. "type": "library",
  7722. "extra": {
  7723. "branch-alias": {
  7724. "dev-master": "2.2-dev"
  7725. }
  7726. },
  7727. "autoload": {
  7728. "psr-4": {
  7729. "Masterminds\\": "src"
  7730. }
  7731. },
  7732. "notification-url": "https://packagist.org/downloads/",
  7733. "license": [
  7734. "MIT"
  7735. ],
  7736. "authors": [
  7737. {
  7738. "name": "Matt Butcher",
  7739. "email": "technosophos@gmail.com"
  7740. },
  7741. {
  7742. "name": "Asmir Mustafic",
  7743. "email": "goetas@gmail.com"
  7744. },
  7745. {
  7746. "name": "Matt Farina",
  7747. "email": "matt@mattfarina.com"
  7748. }
  7749. ],
  7750. "description": "An HTML5 parser and serializer.",
  7751. "homepage": "http://masterminds.github.io/html5-php",
  7752. "keywords": [
  7753. "HTML5",
  7754. "dom",
  7755. "html",
  7756. "parser",
  7757. "querypath",
  7758. "serializer",
  7759. "xml"
  7760. ],
  7761. "time": "2018-10-22T16:58:34+00:00"
  7762. },
  7763. {
  7764. "name": "nikic/php-parser",
  7765. "version": "v4.1.0",
  7766. "source": {
  7767. "type": "git",
  7768. "url": "https://github.com/nikic/PHP-Parser.git",
  7769. "reference": "d0230c5c77a7e3cfa69446febf340978540958c0"
  7770. },
  7771. "dist": {
  7772. "type": "zip",
  7773. "url": "https://api.github.com/repos/nikic/PHP-Parser/zipball/d0230c5c77a7e3cfa69446febf340978540958c0",
  7774. "reference": "d0230c5c77a7e3cfa69446febf340978540958c0",
  7775. "shasum": ""
  7776. },
  7777. "require": {
  7778. "ext-tokenizer": "*",
  7779. "php": ">=7.0"
  7780. },
  7781. "require-dev": {
  7782. "phpunit/phpunit": "^6.5 || ^7.0"
  7783. },
  7784. "bin": [
  7785. "bin/php-parse"
  7786. ],
  7787. "type": "library",
  7788. "extra": {
  7789. "branch-alias": {
  7790. "dev-master": "4.1-dev"
  7791. }
  7792. },
  7793. "autoload": {
  7794. "psr-4": {
  7795. "PhpParser\\": "lib/PhpParser"
  7796. }
  7797. },
  7798. "notification-url": "https://packagist.org/downloads/",
  7799. "license": [
  7800. "BSD-3-Clause"
  7801. ],
  7802. "authors": [
  7803. {
  7804. "name": "Nikita Popov"
  7805. }
  7806. ],
  7807. "description": "A PHP parser written in PHP",
  7808. "keywords": [
  7809. "parser",
  7810. "php"
  7811. ],
  7812. "time": "2018-10-10T09:24:14+00:00"
  7813. },
  7814. {
  7815. "name": "paragonie/random_compat",
  7816. "version": "v2.0.17",
  7817. "source": {
  7818. "type": "git",
  7819. "url": "https://github.com/paragonie/random_compat.git",
  7820. "reference": "29af24f25bab834fcbb38ad2a69fa93b867e070d"
  7821. },
  7822. "dist": {
  7823. "type": "zip",
  7824. "url": "https://api.github.com/repos/paragonie/random_compat/zipball/29af24f25bab834fcbb38ad2a69fa93b867e070d",
  7825. "reference": "29af24f25bab834fcbb38ad2a69fa93b867e070d",
  7826. "shasum": ""
  7827. },
  7828. "require": {
  7829. "php": ">=5.2.0"
  7830. },
  7831. "require-dev": {
  7832. "phpunit/phpunit": "4.*|5.*"
  7833. },
  7834. "suggest": {
  7835. "ext-libsodium": "Provides a modern crypto API that can be used to generate random bytes."
  7836. },
  7837. "type": "library",
  7838. "autoload": {
  7839. "files": [
  7840. "lib/random.php"
  7841. ]
  7842. },
  7843. "notification-url": "https://packagist.org/downloads/",
  7844. "license": [
  7845. "MIT"
  7846. ],
  7847. "authors": [
  7848. {
  7849. "name": "Paragon Initiative Enterprises",
  7850. "email": "security@paragonie.com",
  7851. "homepage": "https://paragonie.com"
  7852. }
  7853. ],
  7854. "description": "PHP 5.x polyfill for random_bytes() and random_int() from PHP 7",
  7855. "keywords": [
  7856. "csprng",
  7857. "polyfill",
  7858. "pseudorandom",
  7859. "random"
  7860. ],
  7861. "time": "2018-07-04T16:31:37+00:00"
  7862. },
  7863. {
  7864. "name": "phenx/php-font-lib",
  7865. "version": "0.5",
  7866. "source": {
  7867. "type": "git",
  7868. "url": "https://github.com/PhenX/php-font-lib.git",
  7869. "reference": "19ad2bebc35be028fcc0221025fcbf3d436a3962"
  7870. },
  7871. "dist": {
  7872. "type": "zip",
  7873. "url": "https://api.github.com/repos/PhenX/php-font-lib/zipball/19ad2bebc35be028fcc0221025fcbf3d436a3962",
  7874. "reference": "19ad2bebc35be028fcc0221025fcbf3d436a3962",
  7875. "shasum": ""
  7876. },
  7877. "require-dev": {
  7878. "phpunit/phpunit": "^4.8"
  7879. },
  7880. "type": "library",
  7881. "autoload": {
  7882. "psr-4": {
  7883. "FontLib\\": "src/FontLib"
  7884. }
  7885. },
  7886. "notification-url": "https://packagist.org/downloads/",
  7887. "license": [
  7888. "LGPL-3.0"
  7889. ],
  7890. "authors": [
  7891. {
  7892. "name": "Fabien Ménager",
  7893. "email": "fabien.menager@gmail.com"
  7894. }
  7895. ],
  7896. "description": "A library to read, parse, export and make subsets of different types of font files.",
  7897. "homepage": "https://github.com/PhenX/php-font-lib",
  7898. "time": "2017-02-11T10:58:43+00:00"
  7899. },
  7900. {
  7901. "name": "psr/container",
  7902. "version": "1.0.0",
  7903. "source": {
  7904. "type": "git",
  7905. "url": "https://github.com/php-fig/container.git",
  7906. "reference": "b7ce3b176482dbbc1245ebf52b181af44c2cf55f"
  7907. },
  7908. "dist": {
  7909. "type": "zip",
  7910. "url": "https://api.github.com/repos/php-fig/container/zipball/b7ce3b176482dbbc1245ebf52b181af44c2cf55f",
  7911. "reference": "b7ce3b176482dbbc1245ebf52b181af44c2cf55f",
  7912. "shasum": ""
  7913. },
  7914. "require": {
  7915. "php": ">=5.3.0"
  7916. },
  7917. "type": "library",
  7918. "extra": {
  7919. "branch-alias": {
  7920. "dev-master": "1.0.x-dev"
  7921. }
  7922. },
  7923. "autoload": {
  7924. "psr-4": {
  7925. "Psr\\Container\\": "src/"
  7926. }
  7927. },
  7928. "notification-url": "https://packagist.org/downloads/",
  7929. "license": [
  7930. "MIT"
  7931. ],
  7932. "authors": [
  7933. {
  7934. "name": "PHP-FIG",
  7935. "homepage": "http://www.php-fig.org/"
  7936. }
  7937. ],
  7938. "description": "Common Container Interface (PHP FIG PSR-11)",
  7939. "homepage": "https://github.com/php-fig/container",
  7940. "keywords": [
  7941. "PSR-11",
  7942. "container",
  7943. "container-interface",
  7944. "container-interop",
  7945. "psr"
  7946. ],
  7947. "time": "2017-02-14T16:28:37+00:00"
  7948. },
  7949. {
  7950. "name": "psr/http-message",
  7951. "version": "1.0.1",
  7952. "source": {
  7953. "type": "git",
  7954. "url": "https://github.com/php-fig/http-message.git",
  7955. "reference": "f6561bf28d520154e4b0ec72be95418abe6d9363"
  7956. },
  7957. "dist": {
  7958. "type": "zip",
  7959. "url": "https://api.github.com/repos/php-fig/http-message/zipball/f6561bf28d520154e4b0ec72be95418abe6d9363",
  7960. "reference": "f6561bf28d520154e4b0ec72be95418abe6d9363",
  7961. "shasum": ""
  7962. },
  7963. "require": {
  7964. "php": ">=5.3.0"
  7965. },
  7966. "type": "library",
  7967. "extra": {
  7968. "branch-alias": {
  7969. "dev-master": "1.0.x-dev"
  7970. }
  7971. },
  7972. "autoload": {
  7973. "psr-4": {
  7974. "Psr\\Http\\Message\\": "src/"
  7975. }
  7976. },
  7977. "notification-url": "https://packagist.org/downloads/",
  7978. "license": [
  7979. "MIT"
  7980. ],
  7981. "authors": [
  7982. {
  7983. "name": "PHP-FIG",
  7984. "homepage": "http://www.php-fig.org/"
  7985. }
  7986. ],
  7987. "description": "Common interface for HTTP messages",
  7988. "homepage": "https://github.com/php-fig/http-message",
  7989. "keywords": [
  7990. "http",
  7991. "http-message",
  7992. "psr",
  7993. "psr-7",
  7994. "request",
  7995. "response"
  7996. ],
  7997. "time": "2016-08-06T14:39:51+00:00"
  7998. },
  7999. {
  8000. "name": "psr/log",
  8001. "version": "1.0.2",
  8002. "source": {
  8003. "type": "git",
  8004. "url": "https://github.com/php-fig/log.git",
  8005. "reference": "4ebe3a8bf773a19edfe0a84b6585ba3d401b724d"
  8006. },
  8007. "dist": {
  8008. "type": "zip",
  8009. "url": "https://api.github.com/repos/php-fig/log/zipball/4ebe3a8bf773a19edfe0a84b6585ba3d401b724d",
  8010. "reference": "4ebe3a8bf773a19edfe0a84b6585ba3d401b724d",
  8011. "shasum": ""
  8012. },
  8013. "require": {
  8014. "php": ">=5.3.0"
  8015. },
  8016. "type": "library",
  8017. "extra": {
  8018. "branch-alias": {
  8019. "dev-master": "1.0.x-dev"
  8020. }
  8021. },
  8022. "autoload": {
  8023. "psr-4": {
  8024. "Psr\\Log\\": "Psr/Log/"
  8025. }
  8026. },
  8027. "notification-url": "https://packagist.org/downloads/",
  8028. "license": [
  8029. "MIT"
  8030. ],
  8031. "authors": [
  8032. {
  8033. "name": "PHP-FIG",
  8034. "homepage": "http://www.php-fig.org/"
  8035. }
  8036. ],
  8037. "description": "Common interface for logging libraries",
  8038. "homepage": "https://github.com/php-fig/log",
  8039. "keywords": [
  8040. "log",
  8041. "psr",
  8042. "psr-3"
  8043. ],
  8044. "time": "2016-10-10T12:19:37+00:00"
  8045. },
  8046. {
  8047. "name": "psy/psysh",
  8048. "version": "v0.9.9",
  8049. "source": {
  8050. "type": "git",
  8051. "url": "https://github.com/bobthecow/psysh.git",
  8052. "reference": "9aaf29575bb8293206bb0420c1e1c87ff2ffa94e"
  8053. },
  8054. "dist": {
  8055. "type": "zip",
  8056. "url": "https://api.github.com/repos/bobthecow/psysh/zipball/9aaf29575bb8293206bb0420c1e1c87ff2ffa94e",
  8057. "reference": "9aaf29575bb8293206bb0420c1e1c87ff2ffa94e",
  8058. "shasum": ""
  8059. },
  8060. "require": {
  8061. "dnoegel/php-xdg-base-dir": "0.1",
  8062. "ext-json": "*",
  8063. "ext-tokenizer": "*",
  8064. "jakub-onderka/php-console-highlighter": "0.3.*|0.4.*",
  8065. "nikic/php-parser": "~1.3|~2.0|~3.0|~4.0",
  8066. "php": ">=5.4.0",
  8067. "symfony/console": "~2.3.10|^2.4.2|~3.0|~4.0",
  8068. "symfony/var-dumper": "~2.7|~3.0|~4.0"
  8069. },
  8070. "require-dev": {
  8071. "bamarni/composer-bin-plugin": "^1.2",
  8072. "hoa/console": "~2.15|~3.16",
  8073. "phpunit/phpunit": "~4.8.35|~5.0|~6.0|~7.0"
  8074. },
  8075. "suggest": {
  8076. "ext-pcntl": "Enabling the PCNTL extension makes PsySH a lot happier :)",
  8077. "ext-pdo-sqlite": "The doc command requires SQLite to work.",
  8078. "ext-posix": "If you have PCNTL, you'll want the POSIX extension as well.",
  8079. "ext-readline": "Enables support for arrow-key history navigation, and showing and manipulating command history.",
  8080. "hoa/console": "A pure PHP readline implementation. You'll want this if your PHP install doesn't already support readline or libedit."
  8081. },
  8082. "bin": [
  8083. "bin/psysh"
  8084. ],
  8085. "type": "library",
  8086. "extra": {
  8087. "branch-alias": {
  8088. "dev-develop": "0.9.x-dev"
  8089. }
  8090. },
  8091. "autoload": {
  8092. "files": [
  8093. "src/functions.php"
  8094. ],
  8095. "psr-4": {
  8096. "Psy\\": "src/"
  8097. }
  8098. },
  8099. "notification-url": "https://packagist.org/downloads/",
  8100. "license": [
  8101. "MIT"
  8102. ],
  8103. "authors": [
  8104. {
  8105. "name": "Justin Hileman",
  8106. "email": "justin@justinhileman.info",
  8107. "homepage": "http://justinhileman.com"
  8108. }
  8109. ],
  8110. "description": "An interactive shell for modern PHP.",
  8111. "homepage": "http://psysh.org",
  8112. "keywords": [
  8113. "REPL",
  8114. "console",
  8115. "interactive",
  8116. "shell"
  8117. ],
  8118. "time": "2018-10-13T15:16:03+00:00"
  8119. },
  8120. {
  8121. "name": "stack/builder",
  8122. "version": "v1.0.5",
  8123. "source": {
  8124. "type": "git",
  8125. "url": "https://github.com/stackphp/builder.git",
  8126. "reference": "fb3d136d04c6be41120ebf8c0cc71fe9507d750a"
  8127. },
  8128. "dist": {
  8129. "type": "zip",
  8130. "url": "https://api.github.com/repos/stackphp/builder/zipball/fb3d136d04c6be41120ebf8c0cc71fe9507d750a",
  8131. "reference": "fb3d136d04c6be41120ebf8c0cc71fe9507d750a",
  8132. "shasum": ""
  8133. },
  8134. "require": {
  8135. "php": ">=5.3.0",
  8136. "symfony/http-foundation": "~2.1|~3.0|~4.0",
  8137. "symfony/http-kernel": "~2.1|~3.0|~4.0"
  8138. },
  8139. "require-dev": {
  8140. "silex/silex": "~1.0"
  8141. },
  8142. "type": "library",
  8143. "extra": {
  8144. "branch-alias": {
  8145. "dev-master": "1.0-dev"
  8146. }
  8147. },
  8148. "autoload": {
  8149. "psr-0": {
  8150. "Stack": "src"
  8151. }
  8152. },
  8153. "notification-url": "https://packagist.org/downloads/",
  8154. "license": [
  8155. "MIT"
  8156. ],
  8157. "authors": [
  8158. {
  8159. "name": "Igor Wiedler",
  8160. "email": "igor@wiedler.ch"
  8161. }
  8162. ],
  8163. "description": "Builder for stack middlewares based on HttpKernelInterface.",
  8164. "keywords": [
  8165. "stack"
  8166. ],
  8167. "time": "2017-11-18T14:57:29+00:00"
  8168. },
  8169. {
  8170. "name": "stecman/symfony-console-completion",
  8171. "version": "0.8.0",
  8172. "source": {
  8173. "type": "git",
  8174. "url": "https://github.com/stecman/symfony-console-completion.git",
  8175. "reference": "cd738867503477e91dbe84173dfabd431c883431"
  8176. },
  8177. "dist": {
  8178. "type": "zip",
  8179. "url": "https://api.github.com/repos/stecman/symfony-console-completion/zipball/cd738867503477e91dbe84173dfabd431c883431",
  8180. "reference": "cd738867503477e91dbe84173dfabd431c883431",
  8181. "shasum": ""
  8182. },
  8183. "require": {
  8184. "php": ">=5.3.2",
  8185. "symfony/console": "~2.3 || ~3.0 || ~4.0"
  8186. },
  8187. "require-dev": {
  8188. "phpunit/phpunit": "~4.8.36 || ~5.7 || ~6.4"
  8189. },
  8190. "type": "library",
  8191. "extra": {
  8192. "branch-alias": {
  8193. "dev-master": "0.6.x-dev"
  8194. }
  8195. },
  8196. "autoload": {
  8197. "psr-4": {
  8198. "Stecman\\Component\\Symfony\\Console\\BashCompletion\\": "src/"
  8199. }
  8200. },
  8201. "notification-url": "https://packagist.org/downloads/",
  8202. "license": [
  8203. "MIT"
  8204. ],
  8205. "authors": [
  8206. {
  8207. "name": "Stephen Holdaway",
  8208. "email": "stephen@stecman.co.nz"
  8209. }
  8210. ],
  8211. "description": "Automatic BASH completion for Symfony Console Component based applications.",
  8212. "time": "2018-02-10T04:28:01+00:00"
  8213. },
  8214. {
  8215. "name": "symfony-cmf/routing",
  8216. "version": "1.4.1",
  8217. "source": {
  8218. "type": "git",
  8219. "url": "https://github.com/symfony-cmf/routing.git",
  8220. "reference": "fb1e7f85ff8c6866238b7e73a490a0a0243ae8ac"
  8221. },
  8222. "dist": {
  8223. "type": "zip",
  8224. "url": "https://api.github.com/repos/symfony-cmf/routing/zipball/fb1e7f85ff8c6866238b7e73a490a0a0243ae8ac",
  8225. "reference": "fb1e7f85ff8c6866238b7e73a490a0a0243ae8ac",
  8226. "shasum": ""
  8227. },
  8228. "require": {
  8229. "php": "^5.3.9|^7.0",
  8230. "psr/log": "1.*",
  8231. "symfony/http-kernel": "^2.2|3.*",
  8232. "symfony/routing": "^2.2|3.*"
  8233. },
  8234. "require-dev": {
  8235. "friendsofsymfony/jsrouting-bundle": "^1.1",
  8236. "symfony-cmf/testing": "^1.3",
  8237. "symfony/config": "^2.2|3.*",
  8238. "symfony/dependency-injection": "^2.0.5|3.*",
  8239. "symfony/event-dispatcher": "^2.1|3.*"
  8240. },
  8241. "suggest": {
  8242. "symfony/event-dispatcher": "DynamicRouter can optionally trigger an event at the start of matching. Minimal version (~2.1)"
  8243. },
  8244. "type": "library",
  8245. "extra": {
  8246. "branch-alias": {
  8247. "dev-master": "1.4-dev"
  8248. }
  8249. },
  8250. "autoload": {
  8251. "psr-4": {
  8252. "Symfony\\Cmf\\Component\\Routing\\": ""
  8253. }
  8254. },
  8255. "notification-url": "https://packagist.org/downloads/",
  8256. "license": [
  8257. "MIT"
  8258. ],
  8259. "authors": [
  8260. {
  8261. "name": "Symfony CMF Community",
  8262. "homepage": "https://github.com/symfony-cmf/Routing/contributors"
  8263. }
  8264. ],
  8265. "description": "Extends the Symfony2 routing component for dynamic routes and chaining several routers",
  8266. "homepage": "http://cmf.symfony.com",
  8267. "keywords": [
  8268. "database",
  8269. "routing"
  8270. ],
  8271. "time": "2017-05-09T08:10:41+00:00"
  8272. },
  8273. {
  8274. "name": "symfony/class-loader",
  8275. "version": "v3.4.17",
  8276. "source": {
  8277. "type": "git",
  8278. "url": "https://github.com/symfony/class-loader.git",
  8279. "reference": "f31333bdff54c7595f834d510a6d2325573ddb36"
  8280. },
  8281. "dist": {
  8282. "type": "zip",
  8283. "url": "https://api.github.com/repos/symfony/class-loader/zipball/f31333bdff54c7595f834d510a6d2325573ddb36",
  8284. "reference": "f31333bdff54c7595f834d510a6d2325573ddb36",
  8285. "shasum": ""
  8286. },
  8287. "require": {
  8288. "php": "^5.5.9|>=7.0.8"
  8289. },
  8290. "require-dev": {
  8291. "symfony/finder": "~2.8|~3.0|~4.0",
  8292. "symfony/polyfill-apcu": "~1.1"
  8293. },
  8294. "suggest": {
  8295. "symfony/polyfill-apcu": "For using ApcClassLoader on HHVM"
  8296. },
  8297. "type": "library",
  8298. "extra": {
  8299. "branch-alias": {
  8300. "dev-master": "3.4-dev"
  8301. }
  8302. },
  8303. "autoload": {
  8304. "psr-4": {
  8305. "Symfony\\Component\\ClassLoader\\": ""
  8306. },
  8307. "exclude-from-classmap": [
  8308. "/Tests/"
  8309. ]
  8310. },
  8311. "notification-url": "https://packagist.org/downloads/",
  8312. "license": [
  8313. "MIT"
  8314. ],
  8315. "authors": [
  8316. {
  8317. "name": "Fabien Potencier",
  8318. "email": "fabien@symfony.com"
  8319. },
  8320. {
  8321. "name": "Symfony Community",
  8322. "homepage": "https://symfony.com/contributors"
  8323. }
  8324. ],
  8325. "description": "Symfony ClassLoader Component",
  8326. "homepage": "https://symfony.com",
  8327. "time": "2018-10-02T12:28:39+00:00"
  8328. },
  8329. {
  8330. "name": "symfony/config",
  8331. "version": "v3.4.17",
  8332. "source": {
  8333. "type": "git",
  8334. "url": "https://github.com/symfony/config.git",
  8335. "reference": "e5389132dc6320682de3643091121c048ff796b3"
  8336. },
  8337. "dist": {
  8338. "type": "zip",
  8339. "url": "https://api.github.com/repos/symfony/config/zipball/e5389132dc6320682de3643091121c048ff796b3",
  8340. "reference": "e5389132dc6320682de3643091121c048ff796b3",
  8341. "shasum": ""
  8342. },
  8343. "require": {
  8344. "php": "^5.5.9|>=7.0.8",
  8345. "symfony/filesystem": "~2.8|~3.0|~4.0",
  8346. "symfony/polyfill-ctype": "~1.8"
  8347. },
  8348. "conflict": {
  8349. "symfony/dependency-injection": "<3.3",
  8350. "symfony/finder": "<3.3"
  8351. },
  8352. "require-dev": {
  8353. "symfony/dependency-injection": "~3.3|~4.0",
  8354. "symfony/event-dispatcher": "~3.3|~4.0",
  8355. "symfony/finder": "~3.3|~4.0",
  8356. "symfony/yaml": "~3.0|~4.0"
  8357. },
  8358. "suggest": {
  8359. "symfony/yaml": "To use the yaml reference dumper"
  8360. },
  8361. "type": "library",
  8362. "extra": {
  8363. "branch-alias": {
  8364. "dev-master": "3.4-dev"
  8365. }
  8366. },
  8367. "autoload": {
  8368. "psr-4": {
  8369. "Symfony\\Component\\Config\\": ""
  8370. },
  8371. "exclude-from-classmap": [
  8372. "/Tests/"
  8373. ]
  8374. },
  8375. "notification-url": "https://packagist.org/downloads/",
  8376. "license": [
  8377. "MIT"
  8378. ],
  8379. "authors": [
  8380. {
  8381. "name": "Fabien Potencier",
  8382. "email": "fabien@symfony.com"
  8383. },
  8384. {
  8385. "name": "Symfony Community",
  8386. "homepage": "https://symfony.com/contributors"
  8387. }
  8388. ],
  8389. "description": "Symfony Config Component",
  8390. "homepage": "https://symfony.com",
  8391. "time": "2018-09-08T13:15:14+00:00"
  8392. },
  8393. {
  8394. "name": "symfony/console",
  8395. "version": "v3.4.17",
  8396. "source": {
  8397. "type": "git",
  8398. "url": "https://github.com/symfony/console.git",
  8399. "reference": "3b2b415d4c48fbefca7dc742aa0a0171bfae4e0b"
  8400. },
  8401. "dist": {
  8402. "type": "zip",
  8403. "url": "https://api.github.com/repos/symfony/console/zipball/3b2b415d4c48fbefca7dc742aa0a0171bfae4e0b",
  8404. "reference": "3b2b415d4c48fbefca7dc742aa0a0171bfae4e0b",
  8405. "shasum": ""
  8406. },
  8407. "require": {
  8408. "php": "^5.5.9|>=7.0.8",
  8409. "symfony/debug": "~2.8|~3.0|~4.0",
  8410. "symfony/polyfill-mbstring": "~1.0"
  8411. },
  8412. "conflict": {
  8413. "symfony/dependency-injection": "<3.4",
  8414. "symfony/process": "<3.3"
  8415. },
  8416. "require-dev": {
  8417. "psr/log": "~1.0",
  8418. "symfony/config": "~3.3|~4.0",
  8419. "symfony/dependency-injection": "~3.4|~4.0",
  8420. "symfony/event-dispatcher": "~2.8|~3.0|~4.0",
  8421. "symfony/lock": "~3.4|~4.0",
  8422. "symfony/process": "~3.3|~4.0"
  8423. },
  8424. "suggest": {
  8425. "psr/log-implementation": "For using the console logger",
  8426. "symfony/event-dispatcher": "",
  8427. "symfony/lock": "",
  8428. "symfony/process": ""
  8429. },
  8430. "type": "library",
  8431. "extra": {
  8432. "branch-alias": {
  8433. "dev-master": "3.4-dev"
  8434. }
  8435. },
  8436. "autoload": {
  8437. "psr-4": {
  8438. "Symfony\\Component\\Console\\": ""
  8439. },
  8440. "exclude-from-classmap": [
  8441. "/Tests/"
  8442. ]
  8443. },
  8444. "notification-url": "https://packagist.org/downloads/",
  8445. "license": [
  8446. "MIT"
  8447. ],
  8448. "authors": [
  8449. {
  8450. "name": "Fabien Potencier",
  8451. "email": "fabien@symfony.com"
  8452. },
  8453. {
  8454. "name": "Symfony Community",
  8455. "homepage": "https://symfony.com/contributors"
  8456. }
  8457. ],
  8458. "description": "Symfony Console Component",
  8459. "homepage": "https://symfony.com",
  8460. "time": "2018-10-02T16:33:53+00:00"
  8461. },
  8462. {
  8463. "name": "symfony/css-selector",
  8464. "version": "v3.4.17",
  8465. "source": {
  8466. "type": "git",
  8467. "url": "https://github.com/symfony/css-selector.git",
  8468. "reference": "3503415d4aafabc31cd08c3a4ebac7f43fde8feb"
  8469. },
  8470. "dist": {
  8471. "type": "zip",
  8472. "url": "https://api.github.com/repos/symfony/css-selector/zipball/3503415d4aafabc31cd08c3a4ebac7f43fde8feb",
  8473. "reference": "3503415d4aafabc31cd08c3a4ebac7f43fde8feb",
  8474. "shasum": ""
  8475. },
  8476. "require": {
  8477. "php": "^5.5.9|>=7.0.8"
  8478. },
  8479. "type": "library",
  8480. "extra": {
  8481. "branch-alias": {
  8482. "dev-master": "3.4-dev"
  8483. }
  8484. },
  8485. "autoload": {
  8486. "psr-4": {
  8487. "Symfony\\Component\\CssSelector\\": ""
  8488. },
  8489. "exclude-from-classmap": [
  8490. "/Tests/"
  8491. ]
  8492. },
  8493. "notification-url": "https://packagist.org/downloads/",
  8494. "license": [
  8495. "MIT"
  8496. ],
  8497. "authors": [
  8498. {
  8499. "name": "Jean-François Simon",
  8500. "email": "jeanfrancois.simon@sensiolabs.com"
  8501. },
  8502. {
  8503. "name": "Fabien Potencier",
  8504. "email": "fabien@symfony.com"
  8505. },
  8506. {
  8507. "name": "Symfony Community",
  8508. "homepage": "https://symfony.com/contributors"
  8509. }
  8510. ],
  8511. "description": "Symfony CssSelector Component",
  8512. "homepage": "https://symfony.com",
  8513. "time": "2018-10-02T16:33:53+00:00"
  8514. },
  8515. {
  8516. "name": "symfony/debug",
  8517. "version": "v3.4.17",
  8518. "source": {
  8519. "type": "git",
  8520. "url": "https://github.com/symfony/debug.git",
  8521. "reference": "0a612e9dfbd2ccce03eb174365f31ecdca930ff6"
  8522. },
  8523. "dist": {
  8524. "type": "zip",
  8525. "url": "https://api.github.com/repos/symfony/debug/zipball/0a612e9dfbd2ccce03eb174365f31ecdca930ff6",
  8526. "reference": "0a612e9dfbd2ccce03eb174365f31ecdca930ff6",
  8527. "shasum": ""
  8528. },
  8529. "require": {
  8530. "php": "^5.5.9|>=7.0.8",
  8531. "psr/log": "~1.0"
  8532. },
  8533. "conflict": {
  8534. "symfony/http-kernel": ">=2.3,<2.3.24|~2.4.0|>=2.5,<2.5.9|>=2.6,<2.6.2"
  8535. },
  8536. "require-dev": {
  8537. "symfony/http-kernel": "~2.8|~3.0|~4.0"
  8538. },
  8539. "type": "library",
  8540. "extra": {
  8541. "branch-alias": {
  8542. "dev-master": "3.4-dev"
  8543. }
  8544. },
  8545. "autoload": {
  8546. "psr-4": {
  8547. "Symfony\\Component\\Debug\\": ""
  8548. },
  8549. "exclude-from-classmap": [
  8550. "/Tests/"
  8551. ]
  8552. },
  8553. "notification-url": "https://packagist.org/downloads/",
  8554. "license": [
  8555. "MIT"
  8556. ],
  8557. "authors": [
  8558. {
  8559. "name": "Fabien Potencier",
  8560. "email": "fabien@symfony.com"
  8561. },
  8562. {
  8563. "name": "Symfony Community",
  8564. "homepage": "https://symfony.com/contributors"
  8565. }
  8566. ],
  8567. "description": "Symfony Debug Component",
  8568. "homepage": "https://symfony.com",
  8569. "time": "2018-10-02T16:33:53+00:00"
  8570. },
  8571. {
  8572. "name": "symfony/dependency-injection",
  8573. "version": "v3.4.17",
  8574. "source": {
  8575. "type": "git",
  8576. "url": "https://github.com/symfony/dependency-injection.git",
  8577. "reference": "aea20fef4e92396928b5db175788b90234c0270d"
  8578. },
  8579. "dist": {
  8580. "type": "zip",
  8581. "url": "https://api.github.com/repos/symfony/dependency-injection/zipball/aea20fef4e92396928b5db175788b90234c0270d",
  8582. "reference": "aea20fef4e92396928b5db175788b90234c0270d",
  8583. "shasum": ""
  8584. },
  8585. "require": {
  8586. "php": "^5.5.9|>=7.0.8",
  8587. "psr/container": "^1.0"
  8588. },
  8589. "conflict": {
  8590. "symfony/config": "<3.3.7",
  8591. "symfony/finder": "<3.3",
  8592. "symfony/proxy-manager-bridge": "<3.4",
  8593. "symfony/yaml": "<3.4"
  8594. },
  8595. "provide": {
  8596. "psr/container-implementation": "1.0"
  8597. },
  8598. "require-dev": {
  8599. "symfony/config": "~3.3|~4.0",
  8600. "symfony/expression-language": "~2.8|~3.0|~4.0",
  8601. "symfony/yaml": "~3.4|~4.0"
  8602. },
  8603. "suggest": {
  8604. "symfony/config": "",
  8605. "symfony/expression-language": "For using expressions in service container configuration",
  8606. "symfony/finder": "For using double-star glob patterns or when GLOB_BRACE portability is required",
  8607. "symfony/proxy-manager-bridge": "Generate service proxies to lazy load them",
  8608. "symfony/yaml": ""
  8609. },
  8610. "type": "library",
  8611. "extra": {
  8612. "branch-alias": {
  8613. "dev-master": "3.4-dev"
  8614. }
  8615. },
  8616. "autoload": {
  8617. "psr-4": {
  8618. "Symfony\\Component\\DependencyInjection\\": ""
  8619. },
  8620. "exclude-from-classmap": [
  8621. "/Tests/"
  8622. ]
  8623. },
  8624. "notification-url": "https://packagist.org/downloads/",
  8625. "license": [
  8626. "MIT"
  8627. ],
  8628. "authors": [
  8629. {
  8630. "name": "Fabien Potencier",
  8631. "email": "fabien@symfony.com"
  8632. },
  8633. {
  8634. "name": "Symfony Community",
  8635. "homepage": "https://symfony.com/contributors"
  8636. }
  8637. ],
  8638. "description": "Symfony DependencyInjection Component",
  8639. "homepage": "https://symfony.com",
  8640. "time": "2018-10-02T12:28:39+00:00"
  8641. },
  8642. {
  8643. "name": "symfony/dom-crawler",
  8644. "version": "v3.4.17",
  8645. "source": {
  8646. "type": "git",
  8647. "url": "https://github.com/symfony/dom-crawler.git",
  8648. "reference": "c705bee03ade5b47c087807dd9ffaaec8dda2722"
  8649. },
  8650. "dist": {
  8651. "type": "zip",
  8652. "url": "https://api.github.com/repos/symfony/dom-crawler/zipball/c705bee03ade5b47c087807dd9ffaaec8dda2722",
  8653. "reference": "c705bee03ade5b47c087807dd9ffaaec8dda2722",
  8654. "shasum": ""
  8655. },
  8656. "require": {
  8657. "php": "^5.5.9|>=7.0.8",
  8658. "symfony/polyfill-ctype": "~1.8",
  8659. "symfony/polyfill-mbstring": "~1.0"
  8660. },
  8661. "require-dev": {
  8662. "symfony/css-selector": "~2.8|~3.0|~4.0"
  8663. },
  8664. "suggest": {
  8665. "symfony/css-selector": ""
  8666. },
  8667. "type": "library",
  8668. "extra": {
  8669. "branch-alias": {
  8670. "dev-master": "3.4-dev"
  8671. }
  8672. },
  8673. "autoload": {
  8674. "psr-4": {
  8675. "Symfony\\Component\\DomCrawler\\": ""
  8676. },
  8677. "exclude-from-classmap": [
  8678. "/Tests/"
  8679. ]
  8680. },
  8681. "notification-url": "https://packagist.org/downloads/",
  8682. "license": [
  8683. "MIT"
  8684. ],
  8685. "authors": [
  8686. {
  8687. "name": "Fabien Potencier",
  8688. "email": "fabien@symfony.com"
  8689. },
  8690. {
  8691. "name": "Symfony Community",
  8692. "homepage": "https://symfony.com/contributors"
  8693. }
  8694. ],
  8695. "description": "Symfony DomCrawler Component",
  8696. "homepage": "https://symfony.com",
  8697. "time": "2018-10-02T12:28:39+00:00"
  8698. },
  8699. {
  8700. "name": "symfony/event-dispatcher",
  8701. "version": "v3.4.17",
  8702. "source": {
  8703. "type": "git",
  8704. "url": "https://github.com/symfony/event-dispatcher.git",
  8705. "reference": "b2e1f19280c09a42dc64c0b72b80fe44dd6e88fb"
  8706. },
  8707. "dist": {
  8708. "type": "zip",
  8709. "url": "https://api.github.com/repos/symfony/event-dispatcher/zipball/b2e1f19280c09a42dc64c0b72b80fe44dd6e88fb",
  8710. "reference": "b2e1f19280c09a42dc64c0b72b80fe44dd6e88fb",
  8711. "shasum": ""
  8712. },
  8713. "require": {
  8714. "php": "^5.5.9|>=7.0.8"
  8715. },
  8716. "conflict": {
  8717. "symfony/dependency-injection": "<3.3"
  8718. },
  8719. "require-dev": {
  8720. "psr/log": "~1.0",
  8721. "symfony/config": "~2.8|~3.0|~4.0",
  8722. "symfony/dependency-injection": "~3.3|~4.0",
  8723. "symfony/expression-language": "~2.8|~3.0|~4.0",
  8724. "symfony/stopwatch": "~2.8|~3.0|~4.0"
  8725. },
  8726. "suggest": {
  8727. "symfony/dependency-injection": "",
  8728. "symfony/http-kernel": ""
  8729. },
  8730. "type": "library",
  8731. "extra": {
  8732. "branch-alias": {
  8733. "dev-master": "3.4-dev"
  8734. }
  8735. },
  8736. "autoload": {
  8737. "psr-4": {
  8738. "Symfony\\Component\\EventDispatcher\\": ""
  8739. },
  8740. "exclude-from-classmap": [
  8741. "/Tests/"
  8742. ]
  8743. },
  8744. "notification-url": "https://packagist.org/downloads/",
  8745. "license": [
  8746. "MIT"
  8747. ],
  8748. "authors": [
  8749. {
  8750. "name": "Fabien Potencier",
  8751. "email": "fabien@symfony.com"
  8752. },
  8753. {
  8754. "name": "Symfony Community",
  8755. "homepage": "https://symfony.com/contributors"
  8756. }
  8757. ],
  8758. "description": "Symfony EventDispatcher Component",
  8759. "homepage": "https://symfony.com",
  8760. "time": "2018-07-26T09:06:28+00:00"
  8761. },
  8762. {
  8763. "name": "symfony/filesystem",
  8764. "version": "v3.4.17",
  8765. "source": {
  8766. "type": "git",
  8767. "url": "https://github.com/symfony/filesystem.git",
  8768. "reference": "d69930fc337d767607267d57c20a7403d0a822a4"
  8769. },
  8770. "dist": {
  8771. "type": "zip",
  8772. "url": "https://api.github.com/repos/symfony/filesystem/zipball/d69930fc337d767607267d57c20a7403d0a822a4",
  8773. "reference": "d69930fc337d767607267d57c20a7403d0a822a4",
  8774. "shasum": ""
  8775. },
  8776. "require": {
  8777. "php": "^5.5.9|>=7.0.8",
  8778. "symfony/polyfill-ctype": "~1.8"
  8779. },
  8780. "type": "library",
  8781. "extra": {
  8782. "branch-alias": {
  8783. "dev-master": "3.4-dev"
  8784. }
  8785. },
  8786. "autoload": {
  8787. "psr-4": {
  8788. "Symfony\\Component\\Filesystem\\": ""
  8789. },
  8790. "exclude-from-classmap": [
  8791. "/Tests/"
  8792. ]
  8793. },
  8794. "notification-url": "https://packagist.org/downloads/",
  8795. "license": [
  8796. "MIT"
  8797. ],
  8798. "authors": [
  8799. {
  8800. "name": "Fabien Potencier",
  8801. "email": "fabien@symfony.com"
  8802. },
  8803. {
  8804. "name": "Symfony Community",
  8805. "homepage": "https://symfony.com/contributors"
  8806. }
  8807. ],
  8808. "description": "Symfony Filesystem Component",
  8809. "homepage": "https://symfony.com",
  8810. "time": "2018-10-02T12:28:39+00:00"
  8811. },
  8812. {
  8813. "name": "symfony/finder",
  8814. "version": "v3.4.17",
  8815. "source": {
  8816. "type": "git",
  8817. "url": "https://github.com/symfony/finder.git",
  8818. "reference": "54ba444dddc5bd5708a34bd095ea67c6eb54644d"
  8819. },
  8820. "dist": {
  8821. "type": "zip",
  8822. "url": "https://api.github.com/repos/symfony/finder/zipball/54ba444dddc5bd5708a34bd095ea67c6eb54644d",
  8823. "reference": "54ba444dddc5bd5708a34bd095ea67c6eb54644d",
  8824. "shasum": ""
  8825. },
  8826. "require": {
  8827. "php": "^5.5.9|>=7.0.8"
  8828. },
  8829. "type": "library",
  8830. "extra": {
  8831. "branch-alias": {
  8832. "dev-master": "3.4-dev"
  8833. }
  8834. },
  8835. "autoload": {
  8836. "psr-4": {
  8837. "Symfony\\Component\\Finder\\": ""
  8838. },
  8839. "exclude-from-classmap": [
  8840. "/Tests/"
  8841. ]
  8842. },
  8843. "notification-url": "https://packagist.org/downloads/",
  8844. "license": [
  8845. "MIT"
  8846. ],
  8847. "authors": [
  8848. {
  8849. "name": "Fabien Potencier",
  8850. "email": "fabien@symfony.com"
  8851. },
  8852. {
  8853. "name": "Symfony Community",
  8854. "homepage": "https://symfony.com/contributors"
  8855. }
  8856. ],
  8857. "description": "Symfony Finder Component",
  8858. "homepage": "https://symfony.com",
  8859. "time": "2018-10-03T08:46:40+00:00"
  8860. },
  8861. {
  8862. "name": "symfony/http-foundation",
  8863. "version": "v3.4.17",
  8864. "source": {
  8865. "type": "git",
  8866. "url": "https://github.com/symfony/http-foundation.git",
  8867. "reference": "3a4498236ade473c52b92d509303e5fd1b211ab1"
  8868. },
  8869. "dist": {
  8870. "type": "zip",
  8871. "url": "https://api.github.com/repos/symfony/http-foundation/zipball/3a4498236ade473c52b92d509303e5fd1b211ab1",
  8872. "reference": "3a4498236ade473c52b92d509303e5fd1b211ab1",
  8873. "shasum": ""
  8874. },
  8875. "require": {
  8876. "php": "^5.5.9|>=7.0.8",
  8877. "symfony/polyfill-mbstring": "~1.1",
  8878. "symfony/polyfill-php70": "~1.6"
  8879. },
  8880. "require-dev": {
  8881. "symfony/expression-language": "~2.8|~3.0|~4.0"
  8882. },
  8883. "type": "library",
  8884. "extra": {
  8885. "branch-alias": {
  8886. "dev-master": "3.4-dev"
  8887. }
  8888. },
  8889. "autoload": {
  8890. "psr-4": {
  8891. "Symfony\\Component\\HttpFoundation\\": ""
  8892. },
  8893. "exclude-from-classmap": [
  8894. "/Tests/"
  8895. ]
  8896. },
  8897. "notification-url": "https://packagist.org/downloads/",
  8898. "license": [
  8899. "MIT"
  8900. ],
  8901. "authors": [
  8902. {
  8903. "name": "Fabien Potencier",
  8904. "email": "fabien@symfony.com"
  8905. },
  8906. {
  8907. "name": "Symfony Community",
  8908. "homepage": "https://symfony.com/contributors"
  8909. }
  8910. ],
  8911. "description": "Symfony HttpFoundation Component",
  8912. "homepage": "https://symfony.com",
  8913. "time": "2018-10-03T08:48:18+00:00"
  8914. },
  8915. {
  8916. "name": "symfony/http-kernel",
  8917. "version": "v3.4.17",
  8918. "source": {
  8919. "type": "git",
  8920. "url": "https://github.com/symfony/http-kernel.git",
  8921. "reference": "a0944a9a1d8845da724236cde9a310964acadb1c"
  8922. },
  8923. "dist": {
  8924. "type": "zip",
  8925. "url": "https://api.github.com/repos/symfony/http-kernel/zipball/a0944a9a1d8845da724236cde9a310964acadb1c",
  8926. "reference": "a0944a9a1d8845da724236cde9a310964acadb1c",
  8927. "shasum": ""
  8928. },
  8929. "require": {
  8930. "php": "^5.5.9|>=7.0.8",
  8931. "psr/log": "~1.0",
  8932. "symfony/debug": "~2.8|~3.0|~4.0",
  8933. "symfony/event-dispatcher": "~2.8|~3.0|~4.0",
  8934. "symfony/http-foundation": "~3.4.12|~4.0.12|^4.1.1",
  8935. "symfony/polyfill-ctype": "~1.8"
  8936. },
  8937. "conflict": {
  8938. "symfony/config": "<2.8",
  8939. "symfony/dependency-injection": "<3.4.10|<4.0.10,>=4",
  8940. "symfony/var-dumper": "<3.3",
  8941. "twig/twig": "<1.34|<2.4,>=2"
  8942. },
  8943. "provide": {
  8944. "psr/log-implementation": "1.0"
  8945. },
  8946. "require-dev": {
  8947. "psr/cache": "~1.0",
  8948. "symfony/browser-kit": "~2.8|~3.0|~4.0",
  8949. "symfony/class-loader": "~2.8|~3.0",
  8950. "symfony/config": "~2.8|~3.0|~4.0",
  8951. "symfony/console": "~2.8|~3.0|~4.0",
  8952. "symfony/css-selector": "~2.8|~3.0|~4.0",
  8953. "symfony/dependency-injection": "^3.4.10|^4.0.10",
  8954. "symfony/dom-crawler": "~2.8|~3.0|~4.0",
  8955. "symfony/expression-language": "~2.8|~3.0|~4.0",
  8956. "symfony/finder": "~2.8|~3.0|~4.0",
  8957. "symfony/process": "~2.8|~3.0|~4.0",
  8958. "symfony/routing": "~3.4|~4.0",
  8959. "symfony/stopwatch": "~2.8|~3.0|~4.0",
  8960. "symfony/templating": "~2.8|~3.0|~4.0",
  8961. "symfony/translation": "~2.8|~3.0|~4.0",
  8962. "symfony/var-dumper": "~3.3|~4.0"
  8963. },
  8964. "suggest": {
  8965. "symfony/browser-kit": "",
  8966. "symfony/config": "",
  8967. "symfony/console": "",
  8968. "symfony/dependency-injection": "",
  8969. "symfony/finder": "",
  8970. "symfony/var-dumper": ""
  8971. },
  8972. "type": "library",
  8973. "extra": {
  8974. "branch-alias": {
  8975. "dev-master": "3.4-dev"
  8976. }
  8977. },
  8978. "autoload": {
  8979. "psr-4": {
  8980. "Symfony\\Component\\HttpKernel\\": ""
  8981. },
  8982. "exclude-from-classmap": [
  8983. "/Tests/"
  8984. ]
  8985. },
  8986. "notification-url": "https://packagist.org/downloads/",
  8987. "license": [
  8988. "MIT"
  8989. ],
  8990. "authors": [
  8991. {
  8992. "name": "Fabien Potencier",
  8993. "email": "fabien@symfony.com"
  8994. },
  8995. {
  8996. "name": "Symfony Community",
  8997. "homepage": "https://symfony.com/contributors"
  8998. }
  8999. ],
  9000. "description": "Symfony HttpKernel Component",
  9001. "homepage": "https://symfony.com",
  9002. "time": "2018-10-03T12:03:34+00:00"
  9003. },
  9004. {
  9005. "name": "symfony/polyfill-ctype",
  9006. "version": "v1.10.0",
  9007. "source": {
  9008. "type": "git",
  9009. "url": "https://github.com/symfony/polyfill-ctype.git",
  9010. "reference": "e3d826245268269cd66f8326bd8bc066687b4a19"
  9011. },
  9012. "dist": {
  9013. "type": "zip",
  9014. "url": "https://api.github.com/repos/symfony/polyfill-ctype/zipball/e3d826245268269cd66f8326bd8bc066687b4a19",
  9015. "reference": "e3d826245268269cd66f8326bd8bc066687b4a19",
  9016. "shasum": ""
  9017. },
  9018. "require": {
  9019. "php": ">=5.3.3"
  9020. },
  9021. "suggest": {
  9022. "ext-ctype": "For best performance"
  9023. },
  9024. "type": "library",
  9025. "extra": {
  9026. "branch-alias": {
  9027. "dev-master": "1.9-dev"
  9028. }
  9029. },
  9030. "autoload": {
  9031. "psr-4": {
  9032. "Symfony\\Polyfill\\Ctype\\": ""
  9033. },
  9034. "files": [
  9035. "bootstrap.php"
  9036. ]
  9037. },
  9038. "notification-url": "https://packagist.org/downloads/",
  9039. "license": [
  9040. "MIT"
  9041. ],
  9042. "authors": [
  9043. {
  9044. "name": "Symfony Community",
  9045. "homepage": "https://symfony.com/contributors"
  9046. },
  9047. {
  9048. "name": "Gert de Pagter",
  9049. "email": "BackEndTea@gmail.com"
  9050. }
  9051. ],
  9052. "description": "Symfony polyfill for ctype functions",
  9053. "homepage": "https://symfony.com",
  9054. "keywords": [
  9055. "compatibility",
  9056. "ctype",
  9057. "polyfill",
  9058. "portable"
  9059. ],
  9060. "time": "2018-08-06T14:22:27+00:00"
  9061. },
  9062. {
  9063. "name": "symfony/polyfill-iconv",
  9064. "version": "v1.10.0",
  9065. "source": {
  9066. "type": "git",
  9067. "url": "https://github.com/symfony/polyfill-iconv.git",
  9068. "reference": "97001cfc283484c9691769f51cdf25259037eba2"
  9069. },
  9070. "dist": {
  9071. "type": "zip",
  9072. "url": "https://api.github.com/repos/symfony/polyfill-iconv/zipball/97001cfc283484c9691769f51cdf25259037eba2",
  9073. "reference": "97001cfc283484c9691769f51cdf25259037eba2",
  9074. "shasum": ""
  9075. },
  9076. "require": {
  9077. "php": ">=5.3.3"
  9078. },
  9079. "suggest": {
  9080. "ext-iconv": "For best performance"
  9081. },
  9082. "type": "library",
  9083. "extra": {
  9084. "branch-alias": {
  9085. "dev-master": "1.9-dev"
  9086. }
  9087. },
  9088. "autoload": {
  9089. "psr-4": {
  9090. "Symfony\\Polyfill\\Iconv\\": ""
  9091. },
  9092. "files": [
  9093. "bootstrap.php"
  9094. ]
  9095. },
  9096. "notification-url": "https://packagist.org/downloads/",
  9097. "license": [
  9098. "MIT"
  9099. ],
  9100. "authors": [
  9101. {
  9102. "name": "Nicolas Grekas",
  9103. "email": "p@tchwork.com"
  9104. },
  9105. {
  9106. "name": "Symfony Community",
  9107. "homepage": "https://symfony.com/contributors"
  9108. }
  9109. ],
  9110. "description": "Symfony polyfill for the Iconv extension",
  9111. "homepage": "https://symfony.com",
  9112. "keywords": [
  9113. "compatibility",
  9114. "iconv",
  9115. "polyfill",
  9116. "portable",
  9117. "shim"
  9118. ],
  9119. "time": "2018-09-21T06:26:08+00:00"
  9120. },
  9121. {
  9122. "name": "symfony/polyfill-mbstring",
  9123. "version": "v1.10.0",
  9124. "source": {
  9125. "type": "git",
  9126. "url": "https://github.com/symfony/polyfill-mbstring.git",
  9127. "reference": "c79c051f5b3a46be09205c73b80b346e4153e494"
  9128. },
  9129. "dist": {
  9130. "type": "zip",
  9131. "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/c79c051f5b3a46be09205c73b80b346e4153e494",
  9132. "reference": "c79c051f5b3a46be09205c73b80b346e4153e494",
  9133. "shasum": ""
  9134. },
  9135. "require": {
  9136. "php": ">=5.3.3"
  9137. },
  9138. "suggest": {
  9139. "ext-mbstring": "For best performance"
  9140. },
  9141. "type": "library",
  9142. "extra": {
  9143. "branch-alias": {
  9144. "dev-master": "1.9-dev"
  9145. }
  9146. },
  9147. "autoload": {
  9148. "psr-4": {
  9149. "Symfony\\Polyfill\\Mbstring\\": ""
  9150. },
  9151. "files": [
  9152. "bootstrap.php"
  9153. ]
  9154. },
  9155. "notification-url": "https://packagist.org/downloads/",
  9156. "license": [
  9157. "MIT"
  9158. ],
  9159. "authors": [
  9160. {
  9161. "name": "Nicolas Grekas",
  9162. "email": "p@tchwork.com"
  9163. },
  9164. {
  9165. "name": "Symfony Community",
  9166. "homepage": "https://symfony.com/contributors"
  9167. }
  9168. ],
  9169. "description": "Symfony polyfill for the Mbstring extension",
  9170. "homepage": "https://symfony.com",
  9171. "keywords": [
  9172. "compatibility",
  9173. "mbstring",
  9174. "polyfill",
  9175. "portable",
  9176. "shim"
  9177. ],
  9178. "time": "2018-09-21T13:07:52+00:00"
  9179. },
  9180. {
  9181. "name": "symfony/polyfill-php70",
  9182. "version": "v1.10.0",
  9183. "source": {
  9184. "type": "git",
  9185. "url": "https://github.com/symfony/polyfill-php70.git",
  9186. "reference": "6b88000cdd431cd2e940caa2cb569201f3f84224"
  9187. },
  9188. "dist": {
  9189. "type": "zip",
  9190. "url": "https://api.github.com/repos/symfony/polyfill-php70/zipball/6b88000cdd431cd2e940caa2cb569201f3f84224",
  9191. "reference": "6b88000cdd431cd2e940caa2cb569201f3f84224",
  9192. "shasum": ""
  9193. },
  9194. "require": {
  9195. "paragonie/random_compat": "~1.0|~2.0|~9.99",
  9196. "php": ">=5.3.3"
  9197. },
  9198. "type": "library",
  9199. "extra": {
  9200. "branch-alias": {
  9201. "dev-master": "1.9-dev"
  9202. }
  9203. },
  9204. "autoload": {
  9205. "psr-4": {
  9206. "Symfony\\Polyfill\\Php70\\": ""
  9207. },
  9208. "files": [
  9209. "bootstrap.php"
  9210. ],
  9211. "classmap": [
  9212. "Resources/stubs"
  9213. ]
  9214. },
  9215. "notification-url": "https://packagist.org/downloads/",
  9216. "license": [
  9217. "MIT"
  9218. ],
  9219. "authors": [
  9220. {
  9221. "name": "Nicolas Grekas",
  9222. "email": "p@tchwork.com"
  9223. },
  9224. {
  9225. "name": "Symfony Community",
  9226. "homepage": "https://symfony.com/contributors"
  9227. }
  9228. ],
  9229. "description": "Symfony polyfill backporting some PHP 7.0+ features to lower PHP versions",
  9230. "homepage": "https://symfony.com",
  9231. "keywords": [
  9232. "compatibility",
  9233. "polyfill",
  9234. "portable",
  9235. "shim"
  9236. ],
  9237. "time": "2018-09-21T06:26:08+00:00"
  9238. },
  9239. {
  9240. "name": "symfony/process",
  9241. "version": "v3.4.17",
  9242. "source": {
  9243. "type": "git",
  9244. "url": "https://github.com/symfony/process.git",
  9245. "reference": "1dc2977afa7d70f90f3fefbcd84152813558910e"
  9246. },
  9247. "dist": {
  9248. "type": "zip",
  9249. "url": "https://api.github.com/repos/symfony/process/zipball/1dc2977afa7d70f90f3fefbcd84152813558910e",
  9250. "reference": "1dc2977afa7d70f90f3fefbcd84152813558910e",
  9251. "shasum": ""
  9252. },
  9253. "require": {
  9254. "php": "^5.5.9|>=7.0.8"
  9255. },
  9256. "type": "library",
  9257. "extra": {
  9258. "branch-alias": {
  9259. "dev-master": "3.4-dev"
  9260. }
  9261. },
  9262. "autoload": {
  9263. "psr-4": {
  9264. "Symfony\\Component\\Process\\": ""
  9265. },
  9266. "exclude-from-classmap": [
  9267. "/Tests/"
  9268. ]
  9269. },
  9270. "notification-url": "https://packagist.org/downloads/",
  9271. "license": [
  9272. "MIT"
  9273. ],
  9274. "authors": [
  9275. {
  9276. "name": "Fabien Potencier",
  9277. "email": "fabien@symfony.com"
  9278. },
  9279. {
  9280. "name": "Symfony Community",
  9281. "homepage": "https://symfony.com/contributors"
  9282. }
  9283. ],
  9284. "description": "Symfony Process Component",
  9285. "homepage": "https://symfony.com",
  9286. "time": "2018-10-02T12:28:39+00:00"
  9287. },
  9288. {
  9289. "name": "symfony/psr-http-message-bridge",
  9290. "version": "v1.1.0",
  9291. "source": {
  9292. "type": "git",
  9293. "url": "https://github.com/symfony/psr-http-message-bridge.git",
  9294. "reference": "53c15a6a7918e6c2ab16ae370ea607fb40cab196"
  9295. },
  9296. "dist": {
  9297. "type": "zip",
  9298. "url": "https://api.github.com/repos/symfony/psr-http-message-bridge/zipball/53c15a6a7918e6c2ab16ae370ea607fb40cab196",
  9299. "reference": "53c15a6a7918e6c2ab16ae370ea607fb40cab196",
  9300. "shasum": ""
  9301. },
  9302. "require": {
  9303. "php": "^5.3.3 || ^7.0",
  9304. "psr/http-message": "^1.0",
  9305. "symfony/http-foundation": "^2.3.42 || ^3.4 || ^4.0"
  9306. },
  9307. "require-dev": {
  9308. "symfony/phpunit-bridge": "^3.4 || 4.0"
  9309. },
  9310. "suggest": {
  9311. "psr/http-factory-implementation": "To use the PSR-17 factory",
  9312. "psr/http-message-implementation": "To use the HttpFoundation factory",
  9313. "zendframework/zend-diactoros": "To use the Zend Diactoros factory"
  9314. },
  9315. "type": "symfony-bridge",
  9316. "extra": {
  9317. "branch-alias": {
  9318. "dev-master": "1.1-dev"
  9319. }
  9320. },
  9321. "autoload": {
  9322. "psr-4": {
  9323. "Symfony\\Bridge\\PsrHttpMessage\\": ""
  9324. }
  9325. },
  9326. "notification-url": "https://packagist.org/downloads/",
  9327. "license": [
  9328. "MIT"
  9329. ],
  9330. "authors": [
  9331. {
  9332. "name": "Symfony Community",
  9333. "homepage": "http://symfony.com/contributors"
  9334. },
  9335. {
  9336. "name": "Fabien Potencier",
  9337. "email": "fabien@symfony.com"
  9338. }
  9339. ],
  9340. "description": "PSR HTTP message bridge",
  9341. "homepage": "http://symfony.com",
  9342. "keywords": [
  9343. "http",
  9344. "http-message",
  9345. "psr-7"
  9346. ],
  9347. "time": "2018-08-30T16:28:28+00:00"
  9348. },
  9349. {
  9350. "name": "symfony/routing",
  9351. "version": "v3.4.17",
  9352. "source": {
  9353. "type": "git",
  9354. "url": "https://github.com/symfony/routing.git",
  9355. "reference": "585f6e2d740393d546978769dd56e496a6233e0b"
  9356. },
  9357. "dist": {
  9358. "type": "zip",
  9359. "url": "https://api.github.com/repos/symfony/routing/zipball/585f6e2d740393d546978769dd56e496a6233e0b",
  9360. "reference": "585f6e2d740393d546978769dd56e496a6233e0b",
  9361. "shasum": ""
  9362. },
  9363. "require": {
  9364. "php": "^5.5.9|>=7.0.8"
  9365. },
  9366. "conflict": {
  9367. "symfony/config": "<3.3.1",
  9368. "symfony/dependency-injection": "<3.3",
  9369. "symfony/yaml": "<3.4"
  9370. },
  9371. "require-dev": {
  9372. "doctrine/annotations": "~1.0",
  9373. "psr/log": "~1.0",
  9374. "symfony/config": "^3.3.1|~4.0",
  9375. "symfony/dependency-injection": "~3.3|~4.0",
  9376. "symfony/expression-language": "~2.8|~3.0|~4.0",
  9377. "symfony/http-foundation": "~2.8|~3.0|~4.0",
  9378. "symfony/yaml": "~3.4|~4.0"
  9379. },
  9380. "suggest": {
  9381. "doctrine/annotations": "For using the annotation loader",
  9382. "symfony/config": "For using the all-in-one router or any loader",
  9383. "symfony/dependency-injection": "For loading routes from a service",
  9384. "symfony/expression-language": "For using expression matching",
  9385. "symfony/http-foundation": "For using a Symfony Request object",
  9386. "symfony/yaml": "For using the YAML loader"
  9387. },
  9388. "type": "library",
  9389. "extra": {
  9390. "branch-alias": {
  9391. "dev-master": "3.4-dev"
  9392. }
  9393. },
  9394. "autoload": {
  9395. "psr-4": {
  9396. "Symfony\\Component\\Routing\\": ""
  9397. },
  9398. "exclude-from-classmap": [
  9399. "/Tests/"
  9400. ]
  9401. },
  9402. "notification-url": "https://packagist.org/downloads/",
  9403. "license": [
  9404. "MIT"
  9405. ],
  9406. "authors": [
  9407. {
  9408. "name": "Fabien Potencier",
  9409. "email": "fabien@symfony.com"
  9410. },
  9411. {
  9412. "name": "Symfony Community",
  9413. "homepage": "https://symfony.com/contributors"
  9414. }
  9415. ],
  9416. "description": "Symfony Routing Component",
  9417. "homepage": "https://symfony.com",
  9418. "keywords": [
  9419. "router",
  9420. "routing",
  9421. "uri",
  9422. "url"
  9423. ],
  9424. "time": "2018-10-02T12:28:39+00:00"
  9425. },
  9426. {
  9427. "name": "symfony/serializer",
  9428. "version": "v3.4.17",
  9429. "source": {
  9430. "type": "git",
  9431. "url": "https://github.com/symfony/serializer.git",
  9432. "reference": "8bc00ef47a428bfebc4641f29d158e7c56137fcb"
  9433. },
  9434. "dist": {
  9435. "type": "zip",
  9436. "url": "https://api.github.com/repos/symfony/serializer/zipball/8bc00ef47a428bfebc4641f29d158e7c56137fcb",
  9437. "reference": "8bc00ef47a428bfebc4641f29d158e7c56137fcb",
  9438. "shasum": ""
  9439. },
  9440. "require": {
  9441. "php": "^5.5.9|>=7.0.8",
  9442. "symfony/polyfill-ctype": "~1.8"
  9443. },
  9444. "conflict": {
  9445. "phpdocumentor/type-resolver": "<0.2.1",
  9446. "symfony/dependency-injection": "<3.2",
  9447. "symfony/property-access": ">=3.0,<3.0.4|>=2.8,<2.8.4",
  9448. "symfony/property-info": "<3.1",
  9449. "symfony/yaml": "<3.4"
  9450. },
  9451. "require-dev": {
  9452. "doctrine/annotations": "~1.0",
  9453. "doctrine/cache": "~1.0",
  9454. "phpdocumentor/reflection-docblock": "^3.0|^4.0",
  9455. "symfony/cache": "~3.1|~4.0",
  9456. "symfony/config": "~2.8|~3.0|~4.0",
  9457. "symfony/dependency-injection": "~3.2|~4.0",
  9458. "symfony/http-foundation": "~2.8|~3.0|~4.0",
  9459. "symfony/property-access": "~2.8|~3.0|~4.0",
  9460. "symfony/property-info": "~3.1|~4.0",
  9461. "symfony/yaml": "~3.4|~4.0"
  9462. },
  9463. "suggest": {
  9464. "doctrine/annotations": "For using the annotation mapping. You will also need doctrine/cache.",
  9465. "doctrine/cache": "For using the default cached annotation reader and metadata cache.",
  9466. "psr/cache-implementation": "For using the metadata cache.",
  9467. "symfony/config": "For using the XML mapping loader.",
  9468. "symfony/http-foundation": "To use the DataUriNormalizer.",
  9469. "symfony/property-access": "For using the ObjectNormalizer.",
  9470. "symfony/property-info": "To deserialize relations.",
  9471. "symfony/yaml": "For using the default YAML mapping loader."
  9472. },
  9473. "type": "library",
  9474. "extra": {
  9475. "branch-alias": {
  9476. "dev-master": "3.4-dev"
  9477. }
  9478. },
  9479. "autoload": {
  9480. "psr-4": {
  9481. "Symfony\\Component\\Serializer\\": ""
  9482. },
  9483. "exclude-from-classmap": [
  9484. "/Tests/"
  9485. ]
  9486. },
  9487. "notification-url": "https://packagist.org/downloads/",
  9488. "license": [
  9489. "MIT"
  9490. ],
  9491. "authors": [
  9492. {
  9493. "name": "Fabien Potencier",
  9494. "email": "fabien@symfony.com"
  9495. },
  9496. {
  9497. "name": "Symfony Community",
  9498. "homepage": "https://symfony.com/contributors"
  9499. }
  9500. ],
  9501. "description": "Symfony Serializer Component",
  9502. "homepage": "https://symfony.com",
  9503. "time": "2018-10-02T12:28:39+00:00"
  9504. },
  9505. {
  9506. "name": "symfony/translation",
  9507. "version": "v3.4.17",
  9508. "source": {
  9509. "type": "git",
  9510. "url": "https://github.com/symfony/translation.git",
  9511. "reference": "94bc3a79008e6640defedf5e14eb3b4f20048352"
  9512. },
  9513. "dist": {
  9514. "type": "zip",
  9515. "url": "https://api.github.com/repos/symfony/translation/zipball/94bc3a79008e6640defedf5e14eb3b4f20048352",
  9516. "reference": "94bc3a79008e6640defedf5e14eb3b4f20048352",
  9517. "shasum": ""
  9518. },
  9519. "require": {
  9520. "php": "^5.5.9|>=7.0.8",
  9521. "symfony/polyfill-mbstring": "~1.0"
  9522. },
  9523. "conflict": {
  9524. "symfony/config": "<2.8",
  9525. "symfony/dependency-injection": "<3.4",
  9526. "symfony/yaml": "<3.4"
  9527. },
  9528. "require-dev": {
  9529. "psr/log": "~1.0",
  9530. "symfony/config": "~2.8|~3.0|~4.0",
  9531. "symfony/dependency-injection": "~3.4|~4.0",
  9532. "symfony/finder": "~2.8|~3.0|~4.0",
  9533. "symfony/intl": "^2.8.18|^3.2.5|~4.0",
  9534. "symfony/yaml": "~3.4|~4.0"
  9535. },
  9536. "suggest": {
  9537. "psr/log-implementation": "To use logging capability in translator",
  9538. "symfony/config": "",
  9539. "symfony/yaml": ""
  9540. },
  9541. "type": "library",
  9542. "extra": {
  9543. "branch-alias": {
  9544. "dev-master": "3.4-dev"
  9545. }
  9546. },
  9547. "autoload": {
  9548. "psr-4": {
  9549. "Symfony\\Component\\Translation\\": ""
  9550. },
  9551. "exclude-from-classmap": [
  9552. "/Tests/"
  9553. ]
  9554. },
  9555. "notification-url": "https://packagist.org/downloads/",
  9556. "license": [
  9557. "MIT"
  9558. ],
  9559. "authors": [
  9560. {
  9561. "name": "Fabien Potencier",
  9562. "email": "fabien@symfony.com"
  9563. },
  9564. {
  9565. "name": "Symfony Community",
  9566. "homepage": "https://symfony.com/contributors"
  9567. }
  9568. ],
  9569. "description": "Symfony Translation Component",
  9570. "homepage": "https://symfony.com",
  9571. "time": "2018-10-02T16:33:53+00:00"
  9572. },
  9573. {
  9574. "name": "symfony/validator",
  9575. "version": "v3.4.17",
  9576. "source": {
  9577. "type": "git",
  9578. "url": "https://github.com/symfony/validator.git",
  9579. "reference": "9f8dbf0dceb03815c3160a279bf8cf4f8018a1c5"
  9580. },
  9581. "dist": {
  9582. "type": "zip",
  9583. "url": "https://api.github.com/repos/symfony/validator/zipball/9f8dbf0dceb03815c3160a279bf8cf4f8018a1c5",
  9584. "reference": "9f8dbf0dceb03815c3160a279bf8cf4f8018a1c5",
  9585. "shasum": ""
  9586. },
  9587. "require": {
  9588. "php": "^5.5.9|>=7.0.8",
  9589. "symfony/polyfill-ctype": "~1.8",
  9590. "symfony/polyfill-mbstring": "~1.0",
  9591. "symfony/translation": "~2.8|~3.0|~4.0"
  9592. },
  9593. "conflict": {
  9594. "phpunit/phpunit": "<4.8.35|<5.4.3,>=5.0",
  9595. "symfony/dependency-injection": "<3.3",
  9596. "symfony/http-kernel": "<3.3.5",
  9597. "symfony/yaml": "<3.4"
  9598. },
  9599. "require-dev": {
  9600. "doctrine/annotations": "~1.0",
  9601. "doctrine/cache": "~1.0",
  9602. "egulias/email-validator": "^1.2.8|~2.0",
  9603. "symfony/cache": "~3.1|~4.0",
  9604. "symfony/config": "~2.8|~3.0|~4.0",
  9605. "symfony/dependency-injection": "~3.3|~4.0",
  9606. "symfony/expression-language": "~2.8|~3.0|~4.0",
  9607. "symfony/http-foundation": "~2.8|~3.0|~4.0",
  9608. "symfony/http-kernel": "^3.3.5|~4.0",
  9609. "symfony/intl": "^2.8.18|^3.2.5|~4.0",
  9610. "symfony/property-access": "~2.8|~3.0|~4.0",
  9611. "symfony/var-dumper": "~3.3|~4.0",
  9612. "symfony/yaml": "~3.4|~4.0"
  9613. },
  9614. "suggest": {
  9615. "doctrine/annotations": "For using the annotation mapping. You will also need doctrine/cache.",
  9616. "doctrine/cache": "For using the default cached annotation reader and metadata cache.",
  9617. "egulias/email-validator": "Strict (RFC compliant) email validation",
  9618. "psr/cache-implementation": "For using the metadata cache.",
  9619. "symfony/config": "",
  9620. "symfony/expression-language": "For using the Expression validator",
  9621. "symfony/http-foundation": "",
  9622. "symfony/intl": "",
  9623. "symfony/property-access": "For accessing properties within comparison constraints",
  9624. "symfony/yaml": ""
  9625. },
  9626. "type": "library",
  9627. "extra": {
  9628. "branch-alias": {
  9629. "dev-master": "3.4-dev"
  9630. }
  9631. },
  9632. "autoload": {
  9633. "psr-4": {
  9634. "Symfony\\Component\\Validator\\": ""
  9635. },
  9636. "exclude-from-classmap": [
  9637. "/Tests/"
  9638. ]
  9639. },
  9640. "notification-url": "https://packagist.org/downloads/",
  9641. "license": [
  9642. "MIT"
  9643. ],
  9644. "authors": [
  9645. {
  9646. "name": "Fabien Potencier",
  9647. "email": "fabien@symfony.com"
  9648. },
  9649. {
  9650. "name": "Symfony Community",
  9651. "homepage": "https://symfony.com/contributors"
  9652. }
  9653. ],
  9654. "description": "Symfony Validator Component",
  9655. "homepage": "https://symfony.com",
  9656. "time": "2018-10-02T16:33:53+00:00"
  9657. },
  9658. {
  9659. "name": "symfony/var-dumper",
  9660. "version": "v3.4.17",
  9661. "source": {
  9662. "type": "git",
  9663. "url": "https://github.com/symfony/var-dumper.git",
  9664. "reference": "ff8ac19e97e5c7c3979236b584719a1190f84181"
  9665. },
  9666. "dist": {
  9667. "type": "zip",
  9668. "url": "https://api.github.com/repos/symfony/var-dumper/zipball/ff8ac19e97e5c7c3979236b584719a1190f84181",
  9669. "reference": "ff8ac19e97e5c7c3979236b584719a1190f84181",
  9670. "shasum": ""
  9671. },
  9672. "require": {
  9673. "php": "^5.5.9|>=7.0.8",
  9674. "symfony/polyfill-mbstring": "~1.0"
  9675. },
  9676. "conflict": {
  9677. "phpunit/phpunit": "<4.8.35|<5.4.3,>=5.0"
  9678. },
  9679. "require-dev": {
  9680. "ext-iconv": "*",
  9681. "twig/twig": "~1.34|~2.4"
  9682. },
  9683. "suggest": {
  9684. "ext-iconv": "To convert non-UTF-8 strings to UTF-8 (or symfony/polyfill-iconv in case ext-iconv cannot be used).",
  9685. "ext-intl": "To show region name in time zone dump",
  9686. "ext-symfony_debug": ""
  9687. },
  9688. "type": "library",
  9689. "extra": {
  9690. "branch-alias": {
  9691. "dev-master": "3.4-dev"
  9692. }
  9693. },
  9694. "autoload": {
  9695. "files": [
  9696. "Resources/functions/dump.php"
  9697. ],
  9698. "psr-4": {
  9699. "Symfony\\Component\\VarDumper\\": ""
  9700. },
  9701. "exclude-from-classmap": [
  9702. "/Tests/"
  9703. ]
  9704. },
  9705. "notification-url": "https://packagist.org/downloads/",
  9706. "license": [
  9707. "MIT"
  9708. ],
  9709. "authors": [
  9710. {
  9711. "name": "Nicolas Grekas",
  9712. "email": "p@tchwork.com"
  9713. },
  9714. {
  9715. "name": "Symfony Community",
  9716. "homepage": "https://symfony.com/contributors"
  9717. }
  9718. ],
  9719. "description": "Symfony mechanism for exploring and dumping PHP variables",
  9720. "homepage": "https://symfony.com",
  9721. "keywords": [
  9722. "debug",
  9723. "dump"
  9724. ],
  9725. "time": "2018-10-02T16:33:53+00:00"
  9726. },
  9727. {
  9728. "name": "symfony/yaml",
  9729. "version": "v3.4.17",
  9730. "source": {
  9731. "type": "git",
  9732. "url": "https://github.com/symfony/yaml.git",
  9733. "reference": "640b6c27fed4066d64b64d5903a86043f4a4de7f"
  9734. },
  9735. "dist": {
  9736. "type": "zip",
  9737. "url": "https://api.github.com/repos/symfony/yaml/zipball/640b6c27fed4066d64b64d5903a86043f4a4de7f",
  9738. "reference": "640b6c27fed4066d64b64d5903a86043f4a4de7f",
  9739. "shasum": ""
  9740. },
  9741. "require": {
  9742. "php": "^5.5.9|>=7.0.8",
  9743. "symfony/polyfill-ctype": "~1.8"
  9744. },
  9745. "conflict": {
  9746. "symfony/console": "<3.4"
  9747. },
  9748. "require-dev": {
  9749. "symfony/console": "~3.4|~4.0"
  9750. },
  9751. "suggest": {
  9752. "symfony/console": "For validating YAML files using the lint command"
  9753. },
  9754. "type": "library",
  9755. "extra": {
  9756. "branch-alias": {
  9757. "dev-master": "3.4-dev"
  9758. }
  9759. },
  9760. "autoload": {
  9761. "psr-4": {
  9762. "Symfony\\Component\\Yaml\\": ""
  9763. },
  9764. "exclude-from-classmap": [
  9765. "/Tests/"
  9766. ]
  9767. },
  9768. "notification-url": "https://packagist.org/downloads/",
  9769. "license": [
  9770. "MIT"
  9771. ],
  9772. "authors": [
  9773. {
  9774. "name": "Fabien Potencier",
  9775. "email": "fabien@symfony.com"
  9776. },
  9777. {
  9778. "name": "Symfony Community",
  9779. "homepage": "https://symfony.com/contributors"
  9780. }
  9781. ],
  9782. "description": "Symfony Yaml Component",
  9783. "homepage": "https://symfony.com",
  9784. "time": "2018-10-02T16:33:53+00:00"
  9785. },
  9786. {
  9787. "name": "twig/twig",
  9788. "version": "v1.35.4",
  9789. "source": {
  9790. "type": "git",
  9791. "url": "https://github.com/twigphp/Twig.git",
  9792. "reference": "7e081e98378a1e78c29cc9eba4aefa5d78a05d2a"
  9793. },
  9794. "dist": {
  9795. "type": "zip",
  9796. "url": "https://api.github.com/repos/twigphp/Twig/zipball/7e081e98378a1e78c29cc9eba4aefa5d78a05d2a",
  9797. "reference": "7e081e98378a1e78c29cc9eba4aefa5d78a05d2a",
  9798. "shasum": ""
  9799. },
  9800. "require": {
  9801. "php": ">=5.3.3",
  9802. "symfony/polyfill-ctype": "^1.8"
  9803. },
  9804. "require-dev": {
  9805. "psr/container": "^1.0",
  9806. "symfony/debug": "^2.7",
  9807. "symfony/phpunit-bridge": "^3.3"
  9808. },
  9809. "type": "library",
  9810. "extra": {
  9811. "branch-alias": {
  9812. "dev-master": "1.35-dev"
  9813. }
  9814. },
  9815. "autoload": {
  9816. "psr-0": {
  9817. "Twig_": "lib/"
  9818. },
  9819. "psr-4": {
  9820. "Twig\\": "src/"
  9821. }
  9822. },
  9823. "notification-url": "https://packagist.org/downloads/",
  9824. "license": [
  9825. "BSD-3-Clause"
  9826. ],
  9827. "authors": [
  9828. {
  9829. "name": "Fabien Potencier",
  9830. "email": "fabien@symfony.com",
  9831. "homepage": "http://fabien.potencier.org",
  9832. "role": "Lead Developer"
  9833. },
  9834. {
  9835. "name": "Armin Ronacher",
  9836. "email": "armin.ronacher@active-4.com",
  9837. "role": "Project Founder"
  9838. },
  9839. {
  9840. "name": "Twig Team",
  9841. "homepage": "https://twig.symfony.com/contributors",
  9842. "role": "Contributors"
  9843. }
  9844. ],
  9845. "description": "Twig, the flexible, fast, and secure template language for PHP",
  9846. "homepage": "https://twig.symfony.com",
  9847. "keywords": [
  9848. "templating"
  9849. ],
  9850. "time": "2018-07-13T07:12:17+00:00"
  9851. },
  9852. {
  9853. "name": "webflo/drupal-finder",
  9854. "version": "1.1.0",
  9855. "source": {
  9856. "type": "git",
  9857. "url": "https://github.com/webflo/drupal-finder.git",
  9858. "reference": "8a7886c575d6eaa67a425dceccc84e735c0b9637"
  9859. },
  9860. "dist": {
  9861. "type": "zip",
  9862. "url": "https://api.github.com/repos/webflo/drupal-finder/zipball/8a7886c575d6eaa67a425dceccc84e735c0b9637",
  9863. "reference": "8a7886c575d6eaa67a425dceccc84e735c0b9637",
  9864. "shasum": ""
  9865. },
  9866. "require-dev": {
  9867. "mikey179/vfsstream": "^1.6",
  9868. "phpunit/phpunit": "^4.8"
  9869. },
  9870. "type": "library",
  9871. "autoload": {
  9872. "classmap": [
  9873. "src/DrupalFinder.php"
  9874. ]
  9875. },
  9876. "notification-url": "https://packagist.org/downloads/",
  9877. "license": [
  9878. "GPL-2.0+"
  9879. ],
  9880. "authors": [
  9881. {
  9882. "name": "Florian Weber",
  9883. "email": "florian@webflo.org"
  9884. }
  9885. ],
  9886. "description": "Helper class to locate a Drupal installation from a given path.",
  9887. "time": "2017-10-24T08:12:11+00:00"
  9888. },
  9889. {
  9890. "name": "webmozart/assert",
  9891. "version": "1.3.0",
  9892. "source": {
  9893. "type": "git",
  9894. "url": "https://github.com/webmozart/assert.git",
  9895. "reference": "0df1908962e7a3071564e857d86874dad1ef204a"
  9896. },
  9897. "dist": {
  9898. "type": "zip",
  9899. "url": "https://api.github.com/repos/webmozart/assert/zipball/0df1908962e7a3071564e857d86874dad1ef204a",
  9900. "reference": "0df1908962e7a3071564e857d86874dad1ef204a",
  9901. "shasum": ""
  9902. },
  9903. "require": {
  9904. "php": "^5.3.3 || ^7.0"
  9905. },
  9906. "require-dev": {
  9907. "phpunit/phpunit": "^4.6",
  9908. "sebastian/version": "^1.0.1"
  9909. },
  9910. "type": "library",
  9911. "extra": {
  9912. "branch-alias": {
  9913. "dev-master": "1.3-dev"
  9914. }
  9915. },
  9916. "autoload": {
  9917. "psr-4": {
  9918. "Webmozart\\Assert\\": "src/"
  9919. }
  9920. },
  9921. "notification-url": "https://packagist.org/downloads/",
  9922. "license": [
  9923. "MIT"
  9924. ],
  9925. "authors": [
  9926. {
  9927. "name": "Bernhard Schussek",
  9928. "email": "bschussek@gmail.com"
  9929. }
  9930. ],
  9931. "description": "Assertions to validate method input/output with nice error messages.",
  9932. "keywords": [
  9933. "assert",
  9934. "check",
  9935. "validate"
  9936. ],
  9937. "time": "2018-01-29T19:49:41+00:00"
  9938. },
  9939. {
  9940. "name": "webmozart/path-util",
  9941. "version": "2.3.0",
  9942. "source": {
  9943. "type": "git",
  9944. "url": "https://github.com/webmozart/path-util.git",
  9945. "reference": "d939f7edc24c9a1bb9c0dee5cb05d8e859490725"
  9946. },
  9947. "dist": {
  9948. "type": "zip",
  9949. "url": "https://api.github.com/repos/webmozart/path-util/zipball/d939f7edc24c9a1bb9c0dee5cb05d8e859490725",
  9950. "reference": "d939f7edc24c9a1bb9c0dee5cb05d8e859490725",
  9951. "shasum": ""
  9952. },
  9953. "require": {
  9954. "php": ">=5.3.3",
  9955. "webmozart/assert": "~1.0"
  9956. },
  9957. "require-dev": {
  9958. "phpunit/phpunit": "^4.6",
  9959. "sebastian/version": "^1.0.1"
  9960. },
  9961. "type": "library",
  9962. "extra": {
  9963. "branch-alias": {
  9964. "dev-master": "2.3-dev"
  9965. }
  9966. },
  9967. "autoload": {
  9968. "psr-4": {
  9969. "Webmozart\\PathUtil\\": "src/"
  9970. }
  9971. },
  9972. "notification-url": "https://packagist.org/downloads/",
  9973. "license": [
  9974. "MIT"
  9975. ],
  9976. "authors": [
  9977. {
  9978. "name": "Bernhard Schussek",
  9979. "email": "bschussek@gmail.com"
  9980. }
  9981. ],
  9982. "description": "A robust cross-platform utility for normalizing, comparing and modifying file paths.",
  9983. "time": "2015-12-17T08:42:14+00:00"
  9984. },
  9985. {
  9986. "name": "wikimedia/composer-merge-plugin",
  9987. "version": "v1.4.1",
  9988. "source": {
  9989. "type": "git",
  9990. "url": "https://github.com/wikimedia/composer-merge-plugin.git",
  9991. "reference": "81c6ac72a24a67383419c7eb9aa2b3437f2ab100"
  9992. },
  9993. "dist": {
  9994. "type": "zip",
  9995. "url": "https://api.github.com/repos/wikimedia/composer-merge-plugin/zipball/81c6ac72a24a67383419c7eb9aa2b3437f2ab100",
  9996. "reference": "81c6ac72a24a67383419c7eb9aa2b3437f2ab100",
  9997. "shasum": ""
  9998. },
  9999. "require": {
  10000. "composer-plugin-api": "^1.0",
  10001. "php": ">=5.3.2"
  10002. },
  10003. "require-dev": {
  10004. "composer/composer": "~1.0.0",
  10005. "jakub-onderka/php-parallel-lint": "~0.8",
  10006. "phpunit/phpunit": "~4.8|~5.0",
  10007. "squizlabs/php_codesniffer": "~2.1.0"
  10008. },
  10009. "type": "composer-plugin",
  10010. "extra": {
  10011. "branch-alias": {
  10012. "dev-master": "1.3.x-dev"
  10013. },
  10014. "class": "Wikimedia\\Composer\\MergePlugin"
  10015. },
  10016. "autoload": {
  10017. "psr-4": {
  10018. "Wikimedia\\Composer\\": "src/"
  10019. }
  10020. },
  10021. "notification-url": "https://packagist.org/downloads/",
  10022. "license": [
  10023. "MIT"
  10024. ],
  10025. "authors": [
  10026. {
  10027. "name": "Bryan Davis",
  10028. "email": "bd808@wikimedia.org"
  10029. }
  10030. ],
  10031. "description": "Composer plugin to merge multiple composer.json files",
  10032. "time": "2017-04-25T02:31:25+00:00"
  10033. },
  10034. {
  10035. "name": "zendframework/zend-diactoros",
  10036. "version": "1.8.6",
  10037. "source": {
  10038. "type": "git",
  10039. "url": "https://github.com/zendframework/zend-diactoros.git",
  10040. "reference": "20da13beba0dde8fb648be3cc19765732790f46e"
  10041. },
  10042. "dist": {
  10043. "type": "zip",
  10044. "url": "https://api.github.com/repos/zendframework/zend-diactoros/zipball/20da13beba0dde8fb648be3cc19765732790f46e",
  10045. "reference": "20da13beba0dde8fb648be3cc19765732790f46e",
  10046. "shasum": ""
  10047. },
  10048. "require": {
  10049. "php": "^5.6 || ^7.0",
  10050. "psr/http-message": "^1.0"
  10051. },
  10052. "provide": {
  10053. "psr/http-message-implementation": "1.0"
  10054. },
  10055. "require-dev": {
  10056. "ext-dom": "*",
  10057. "ext-libxml": "*",
  10058. "php-http/psr7-integration-tests": "dev-master",
  10059. "phpunit/phpunit": "^5.7.16 || ^6.0.8 || ^7.2.7",
  10060. "zendframework/zend-coding-standard": "~1.0"
  10061. },
  10062. "type": "library",
  10063. "extra": {
  10064. "branch-alias": {
  10065. "dev-master": "1.8.x-dev",
  10066. "dev-develop": "1.9.x-dev",
  10067. "dev-release-2.0": "2.0.x-dev"
  10068. }
  10069. },
  10070. "autoload": {
  10071. "files": [
  10072. "src/functions/create_uploaded_file.php",
  10073. "src/functions/marshal_headers_from_sapi.php",
  10074. "src/functions/marshal_method_from_sapi.php",
  10075. "src/functions/marshal_protocol_version_from_sapi.php",
  10076. "src/functions/marshal_uri_from_sapi.php",
  10077. "src/functions/normalize_server.php",
  10078. "src/functions/normalize_uploaded_files.php",
  10079. "src/functions/parse_cookie_header.php"
  10080. ],
  10081. "psr-4": {
  10082. "Zend\\Diactoros\\": "src/"
  10083. }
  10084. },
  10085. "notification-url": "https://packagist.org/downloads/",
  10086. "license": [
  10087. "BSD-2-Clause"
  10088. ],
  10089. "description": "PSR HTTP Message implementations",
  10090. "homepage": "https://github.com/zendframework/zend-diactoros",
  10091. "keywords": [
  10092. "http",
  10093. "psr",
  10094. "psr-7"
  10095. ],
  10096. "time": "2018-09-05T19:29:37+00:00"
  10097. },
  10098. {
  10099. "name": "zendframework/zend-escaper",
  10100. "version": "2.6.0",
  10101. "source": {
  10102. "type": "git",
  10103. "url": "https://github.com/zendframework/zend-escaper.git",
  10104. "reference": "31d8aafae982f9568287cb4dce987e6aff8fd074"
  10105. },
  10106. "dist": {
  10107. "type": "zip",
  10108. "url": "https://api.github.com/repos/zendframework/zend-escaper/zipball/31d8aafae982f9568287cb4dce987e6aff8fd074",
  10109. "reference": "31d8aafae982f9568287cb4dce987e6aff8fd074",
  10110. "shasum": ""
  10111. },
  10112. "require": {
  10113. "php": "^5.6 || ^7.0"
  10114. },
  10115. "require-dev": {
  10116. "phpunit/phpunit": "^5.7.27 || ^6.5.8 || ^7.1.2",
  10117. "zendframework/zend-coding-standard": "~1.0.0"
  10118. },
  10119. "type": "library",
  10120. "extra": {
  10121. "branch-alias": {
  10122. "dev-master": "2.6.x-dev",
  10123. "dev-develop": "2.7.x-dev"
  10124. }
  10125. },
  10126. "autoload": {
  10127. "psr-4": {
  10128. "Zend\\Escaper\\": "src/"
  10129. }
  10130. },
  10131. "notification-url": "https://packagist.org/downloads/",
  10132. "license": [
  10133. "BSD-3-Clause"
  10134. ],
  10135. "description": "Securely and safely escape HTML, HTML attributes, JavaScript, CSS, and URLs",
  10136. "keywords": [
  10137. "ZendFramework",
  10138. "escaper",
  10139. "zf"
  10140. ],
  10141. "time": "2018-04-25T15:48:53+00:00"
  10142. },
  10143. {
  10144. "name": "zendframework/zend-feed",
  10145. "version": "2.10.3",
  10146. "source": {
  10147. "type": "git",
  10148. "url": "https://github.com/zendframework/zend-feed.git",
  10149. "reference": "6641f4cf3f4586c63f83fd70b6d19966025c8888"
  10150. },
  10151. "dist": {
  10152. "type": "zip",
  10153. "url": "https://api.github.com/repos/zendframework/zend-feed/zipball/6641f4cf3f4586c63f83fd70b6d19966025c8888",
  10154. "reference": "6641f4cf3f4586c63f83fd70b6d19966025c8888",
  10155. "shasum": ""
  10156. },
  10157. "require": {
  10158. "php": "^5.6 || ^7.0",
  10159. "zendframework/zend-escaper": "^2.5.2",
  10160. "zendframework/zend-stdlib": "^2.7.7 || ^3.1"
  10161. },
  10162. "require-dev": {
  10163. "phpunit/phpunit": "^5.7.23 || ^6.4.3",
  10164. "psr/http-message": "^1.0.1",
  10165. "zendframework/zend-cache": "^2.7.2",
  10166. "zendframework/zend-coding-standard": "~1.0.0",
  10167. "zendframework/zend-db": "^2.8.2",
  10168. "zendframework/zend-http": "^2.7",
  10169. "zendframework/zend-servicemanager": "^2.7.8 || ^3.3",
  10170. "zendframework/zend-validator": "^2.10.1"
  10171. },
  10172. "suggest": {
  10173. "psr/http-message": "PSR-7 ^1.0.1, if you wish to use Zend\\Feed\\Reader\\Http\\Psr7ResponseDecorator",
  10174. "zendframework/zend-cache": "Zend\\Cache component, for optionally caching feeds between requests",
  10175. "zendframework/zend-db": "Zend\\Db component, for use with PubSubHubbub",
  10176. "zendframework/zend-http": "Zend\\Http for PubSubHubbub, and optionally for use with Zend\\Feed\\Reader",
  10177. "zendframework/zend-servicemanager": "Zend\\ServiceManager component, for easily extending ExtensionManager implementations",
  10178. "zendframework/zend-validator": "Zend\\Validator component, for validating email addresses used in Atom feeds and entries when using the Writer subcomponent"
  10179. },
  10180. "type": "library",
  10181. "extra": {
  10182. "branch-alias": {
  10183. "dev-master": "2.10.x-dev",
  10184. "dev-develop": "2.11.x-dev"
  10185. }
  10186. },
  10187. "autoload": {
  10188. "psr-4": {
  10189. "Zend\\Feed\\": "src/"
  10190. }
  10191. },
  10192. "notification-url": "https://packagist.org/downloads/",
  10193. "license": [
  10194. "BSD-3-Clause"
  10195. ],
  10196. "description": "provides functionality for consuming RSS and Atom feeds",
  10197. "keywords": [
  10198. "ZendFramework",
  10199. "feed",
  10200. "zf"
  10201. ],
  10202. "time": "2018-08-01T13:53:20+00:00"
  10203. },
  10204. {
  10205. "name": "zendframework/zend-stdlib",
  10206. "version": "3.2.1",
  10207. "source": {
  10208. "type": "git",
  10209. "url": "https://github.com/zendframework/zend-stdlib.git",
  10210. "reference": "66536006722aff9e62d1b331025089b7ec71c065"
  10211. },
  10212. "dist": {
  10213. "type": "zip",
  10214. "url": "https://api.github.com/repos/zendframework/zend-stdlib/zipball/66536006722aff9e62d1b331025089b7ec71c065",
  10215. "reference": "66536006722aff9e62d1b331025089b7ec71c065",
  10216. "shasum": ""
  10217. },
  10218. "require": {
  10219. "php": "^5.6 || ^7.0"
  10220. },
  10221. "require-dev": {
  10222. "phpbench/phpbench": "^0.13",
  10223. "phpunit/phpunit": "^5.7.27 || ^6.5.8 || ^7.1.2",
  10224. "zendframework/zend-coding-standard": "~1.0.0"
  10225. },
  10226. "type": "library",
  10227. "extra": {
  10228. "branch-alias": {
  10229. "dev-master": "3.2.x-dev",
  10230. "dev-develop": "3.3.x-dev"
  10231. }
  10232. },
  10233. "autoload": {
  10234. "psr-4": {
  10235. "Zend\\Stdlib\\": "src/"
  10236. }
  10237. },
  10238. "notification-url": "https://packagist.org/downloads/",
  10239. "license": [
  10240. "BSD-3-Clause"
  10241. ],
  10242. "description": "SPL extensions, array utilities, error handlers, and more",
  10243. "keywords": [
  10244. "ZendFramework",
  10245. "stdlib",
  10246. "zf"
  10247. ],
  10248. "time": "2018-08-28T21:34:05+00:00"
  10249. }
  10250. ],
  10251. "packages-dev": [
  10252. {
  10253. "name": "behat/mink",
  10254. "version": "dev-master",
  10255. "source": {
  10256. "type": "git",
  10257. "url": "https://github.com/minkphp/Mink.git",
  10258. "reference": "d5ee350c40baff5f331a05ebdbe1927345c9ac8b"
  10259. },
  10260. "dist": {
  10261. "type": "zip",
  10262. "url": "https://api.github.com/repos/minkphp/Mink/zipball/d5ee350c40baff5f331a05ebdbe1927345c9ac8b",
  10263. "reference": "d5ee350c40baff5f331a05ebdbe1927345c9ac8b",
  10264. "shasum": ""
  10265. },
  10266. "require": {
  10267. "php": ">=5.3.1",
  10268. "symfony/css-selector": "^2.7|^3.0|^4.0"
  10269. },
  10270. "require-dev": {
  10271. "symfony/phpunit-bridge": "^3.3|^4.0"
  10272. },
  10273. "suggest": {
  10274. "behat/mink-browserkit-driver": "extremely fast headless driver for Symfony\\Kernel-based apps (Sf2, Silex)",
  10275. "behat/mink-goutte-driver": "fast headless driver for any app without JS emulation",
  10276. "behat/mink-selenium2-driver": "slow, but JS-enabled driver for any app (requires Selenium2)",
  10277. "behat/mink-zombie-driver": "fast and JS-enabled headless driver for any app (requires node.js)",
  10278. "dmore/chrome-mink-driver": "fast and JS-enabled driver for any app (requires chromium or google chrome)"
  10279. },
  10280. "type": "library",
  10281. "extra": {
  10282. "branch-alias": {
  10283. "dev-master": "1.7.x-dev"
  10284. }
  10285. },
  10286. "autoload": {
  10287. "psr-4": {
  10288. "Behat\\Mink\\": "src/"
  10289. }
  10290. },
  10291. "notification-url": "https://packagist.org/downloads/",
  10292. "license": [
  10293. "MIT"
  10294. ],
  10295. "authors": [
  10296. {
  10297. "name": "Konstantin Kudryashov",
  10298. "email": "ever.zet@gmail.com",
  10299. "homepage": "http://everzet.com"
  10300. }
  10301. ],
  10302. "description": "Browser controller/emulator abstraction for PHP",
  10303. "homepage": "http://mink.behat.org/",
  10304. "keywords": [
  10305. "browser",
  10306. "testing",
  10307. "web"
  10308. ],
  10309. "time": "2018-06-24T20:08:51+00:00"
  10310. },
  10311. {
  10312. "name": "behat/mink-browserkit-driver",
  10313. "version": "1.3.3",
  10314. "source": {
  10315. "type": "git",
  10316. "url": "https://github.com/minkphp/MinkBrowserKitDriver.git",
  10317. "reference": "1b9a7ce903cfdaaec5fb32bfdbb26118343662eb"
  10318. },
  10319. "dist": {
  10320. "type": "zip",
  10321. "url": "https://api.github.com/repos/minkphp/MinkBrowserKitDriver/zipball/1b9a7ce903cfdaaec5fb32bfdbb26118343662eb",
  10322. "reference": "1b9a7ce903cfdaaec5fb32bfdbb26118343662eb",
  10323. "shasum": ""
  10324. },
  10325. "require": {
  10326. "behat/mink": "^1.7.1@dev",
  10327. "php": ">=5.3.6",
  10328. "symfony/browser-kit": "~2.3|~3.0|~4.0",
  10329. "symfony/dom-crawler": "~2.3|~3.0|~4.0"
  10330. },
  10331. "require-dev": {
  10332. "mink/driver-testsuite": "dev-master",
  10333. "symfony/http-kernel": "~2.3|~3.0|~4.0"
  10334. },
  10335. "type": "mink-driver",
  10336. "extra": {
  10337. "branch-alias": {
  10338. "dev-master": "1.3.x-dev"
  10339. }
  10340. },
  10341. "autoload": {
  10342. "psr-4": {
  10343. "Behat\\Mink\\Driver\\": "src/"
  10344. }
  10345. },
  10346. "notification-url": "https://packagist.org/downloads/",
  10347. "license": [
  10348. "MIT"
  10349. ],
  10350. "authors": [
  10351. {
  10352. "name": "Konstantin Kudryashov",
  10353. "email": "ever.zet@gmail.com",
  10354. "homepage": "http://everzet.com"
  10355. }
  10356. ],
  10357. "description": "Symfony2 BrowserKit driver for Mink framework",
  10358. "homepage": "http://mink.behat.org/",
  10359. "keywords": [
  10360. "Mink",
  10361. "Symfony2",
  10362. "browser",
  10363. "testing"
  10364. ],
  10365. "time": "2018-05-02T09:25:31+00:00"
  10366. },
  10367. {
  10368. "name": "behat/mink-goutte-driver",
  10369. "version": "v1.2.1",
  10370. "source": {
  10371. "type": "git",
  10372. "url": "https://github.com/minkphp/MinkGoutteDriver.git",
  10373. "reference": "8b9ad6d2d95bc70b840d15323365f52fcdaea6ca"
  10374. },
  10375. "dist": {
  10376. "type": "zip",
  10377. "url": "https://api.github.com/repos/minkphp/MinkGoutteDriver/zipball/8b9ad6d2d95bc70b840d15323365f52fcdaea6ca",
  10378. "reference": "8b9ad6d2d95bc70b840d15323365f52fcdaea6ca",
  10379. "shasum": ""
  10380. },
  10381. "require": {
  10382. "behat/mink": "~1.6@dev",
  10383. "behat/mink-browserkit-driver": "~1.2@dev",
  10384. "fabpot/goutte": "~1.0.4|~2.0|~3.1",
  10385. "php": ">=5.3.1"
  10386. },
  10387. "require-dev": {
  10388. "symfony/phpunit-bridge": "~2.7|~3.0"
  10389. },
  10390. "type": "mink-driver",
  10391. "extra": {
  10392. "branch-alias": {
  10393. "dev-master": "1.2.x-dev"
  10394. }
  10395. },
  10396. "autoload": {
  10397. "psr-4": {
  10398. "Behat\\Mink\\Driver\\": "src/"
  10399. }
  10400. },
  10401. "notification-url": "https://packagist.org/downloads/",
  10402. "license": [
  10403. "MIT"
  10404. ],
  10405. "authors": [
  10406. {
  10407. "name": "Konstantin Kudryashov",
  10408. "email": "ever.zet@gmail.com",
  10409. "homepage": "http://everzet.com"
  10410. }
  10411. ],
  10412. "description": "Goutte driver for Mink framework",
  10413. "homepage": "http://mink.behat.org/",
  10414. "keywords": [
  10415. "browser",
  10416. "goutte",
  10417. "headless",
  10418. "testing"
  10419. ],
  10420. "time": "2016-03-05T09:04:22+00:00"
  10421. },
  10422. {
  10423. "name": "behat/mink-selenium2-driver",
  10424. "version": "dev-master",
  10425. "source": {
  10426. "type": "git",
  10427. "url": "https://github.com/minkphp/MinkSelenium2Driver.git",
  10428. "reference": "8684ee4e634db7abda9039ea53545f86fc1e105a"
  10429. },
  10430. "dist": {
  10431. "type": "zip",
  10432. "url": "https://api.github.com/repos/minkphp/MinkSelenium2Driver/zipball/8684ee4e634db7abda9039ea53545f86fc1e105a",
  10433. "reference": "8684ee4e634db7abda9039ea53545f86fc1e105a",
  10434. "shasum": ""
  10435. },
  10436. "require": {
  10437. "behat/mink": "~1.7@dev",
  10438. "instaclick/php-webdriver": "~1.1",
  10439. "php": ">=5.3.1"
  10440. },
  10441. "require-dev": {
  10442. "mink/driver-testsuite": "dev-master"
  10443. },
  10444. "type": "mink-driver",
  10445. "extra": {
  10446. "branch-alias": {
  10447. "dev-master": "1.3.x-dev"
  10448. }
  10449. },
  10450. "autoload": {
  10451. "psr-4": {
  10452. "Behat\\Mink\\Driver\\": "src/"
  10453. }
  10454. },
  10455. "notification-url": "https://packagist.org/downloads/",
  10456. "license": [
  10457. "MIT"
  10458. ],
  10459. "authors": [
  10460. {
  10461. "name": "Konstantin Kudryashov",
  10462. "email": "ever.zet@gmail.com",
  10463. "homepage": "http://everzet.com"
  10464. },
  10465. {
  10466. "name": "Pete Otaqui",
  10467. "email": "pete@otaqui.com",
  10468. "homepage": "https://github.com/pete-otaqui"
  10469. }
  10470. ],
  10471. "description": "Selenium2 (WebDriver) driver for Mink framework",
  10472. "homepage": "http://mink.behat.org/",
  10473. "keywords": [
  10474. "ajax",
  10475. "browser",
  10476. "javascript",
  10477. "selenium",
  10478. "testing",
  10479. "webdriver"
  10480. ],
  10481. "time": "2018-10-10T12:39:06+00:00"
  10482. },
  10483. {
  10484. "name": "doctrine/instantiator",
  10485. "version": "1.0.5",
  10486. "source": {
  10487. "type": "git",
  10488. "url": "https://github.com/doctrine/instantiator.git",
  10489. "reference": "8e884e78f9f0eb1329e445619e04456e64d8051d"
  10490. },
  10491. "dist": {
  10492. "type": "zip",
  10493. "url": "https://api.github.com/repos/doctrine/instantiator/zipball/8e884e78f9f0eb1329e445619e04456e64d8051d",
  10494. "reference": "8e884e78f9f0eb1329e445619e04456e64d8051d",
  10495. "shasum": ""
  10496. },
  10497. "require": {
  10498. "php": ">=5.3,<8.0-DEV"
  10499. },
  10500. "require-dev": {
  10501. "athletic/athletic": "~0.1.8",
  10502. "ext-pdo": "*",
  10503. "ext-phar": "*",
  10504. "phpunit/phpunit": "~4.0",
  10505. "squizlabs/php_codesniffer": "~2.0"
  10506. },
  10507. "type": "library",
  10508. "extra": {
  10509. "branch-alias": {
  10510. "dev-master": "1.0.x-dev"
  10511. }
  10512. },
  10513. "autoload": {
  10514. "psr-4": {
  10515. "Doctrine\\Instantiator\\": "src/Doctrine/Instantiator/"
  10516. }
  10517. },
  10518. "notification-url": "https://packagist.org/downloads/",
  10519. "license": [
  10520. "MIT"
  10521. ],
  10522. "authors": [
  10523. {
  10524. "name": "Marco Pivetta",
  10525. "email": "ocramius@gmail.com",
  10526. "homepage": "http://ocramius.github.com/"
  10527. }
  10528. ],
  10529. "description": "A small, lightweight utility to instantiate objects in PHP without invoking their constructors",
  10530. "homepage": "https://github.com/doctrine/instantiator",
  10531. "keywords": [
  10532. "constructor",
  10533. "instantiate"
  10534. ],
  10535. "time": "2015-06-14T21:17:01+00:00"
  10536. },
  10537. {
  10538. "name": "drupal/coder",
  10539. "version": "8.3.1",
  10540. "source": {
  10541. "type": "git",
  10542. "url": "https://git.drupal.org/project/coder.git",
  10543. "reference": "29a25627e7148b3119c84f18e087fc3b8c85b959"
  10544. },
  10545. "require": {
  10546. "ext-mbstring": "*",
  10547. "php": ">=5.4.0",
  10548. "squizlabs/php_codesniffer": "^3.0.1",
  10549. "symfony/yaml": ">=2.0.0"
  10550. },
  10551. "require-dev": {
  10552. "phpunit/phpunit": ">=3.7 <6"
  10553. },
  10554. "type": "phpcodesniffer-standard",
  10555. "autoload": {
  10556. "psr-0": {
  10557. "Drupal\\": "coder_sniffer/Drupal/",
  10558. "DrupalPractice\\": "coder_sniffer/Drupal/"
  10559. }
  10560. },
  10561. "notification-url": "https://packagist.org/downloads/",
  10562. "license": [
  10563. "GPL-2.0+"
  10564. ],
  10565. "description": "Coder is a library to review Drupal code.",
  10566. "homepage": "https://www.drupal.org/project/coder",
  10567. "keywords": [
  10568. "code review",
  10569. "phpcs",
  10570. "standards"
  10571. ],
  10572. "time": "2018-09-21T14:22:49+00:00"
  10573. },
  10574. {
  10575. "name": "fabpot/goutte",
  10576. "version": "v3.2.3",
  10577. "source": {
  10578. "type": "git",
  10579. "url": "https://github.com/FriendsOfPHP/Goutte.git",
  10580. "reference": "3f0eaf0a40181359470651f1565b3e07e3dd31b8"
  10581. },
  10582. "dist": {
  10583. "type": "zip",
  10584. "url": "https://api.github.com/repos/FriendsOfPHP/Goutte/zipball/3f0eaf0a40181359470651f1565b3e07e3dd31b8",
  10585. "reference": "3f0eaf0a40181359470651f1565b3e07e3dd31b8",
  10586. "shasum": ""
  10587. },
  10588. "require": {
  10589. "guzzlehttp/guzzle": "^6.0",
  10590. "php": ">=5.5.0",
  10591. "symfony/browser-kit": "~2.1|~3.0|~4.0",
  10592. "symfony/css-selector": "~2.1|~3.0|~4.0",
  10593. "symfony/dom-crawler": "~2.1|~3.0|~4.0"
  10594. },
  10595. "require-dev": {
  10596. "symfony/phpunit-bridge": "^3.3 || ^4"
  10597. },
  10598. "type": "application",
  10599. "extra": {
  10600. "branch-alias": {
  10601. "dev-master": "3.2-dev"
  10602. }
  10603. },
  10604. "autoload": {
  10605. "psr-4": {
  10606. "Goutte\\": "Goutte"
  10607. },
  10608. "exclude-from-classmap": [
  10609. "Goutte/Tests"
  10610. ]
  10611. },
  10612. "notification-url": "https://packagist.org/downloads/",
  10613. "license": [
  10614. "MIT"
  10615. ],
  10616. "authors": [
  10617. {
  10618. "name": "Fabien Potencier",
  10619. "email": "fabien@symfony.com"
  10620. }
  10621. ],
  10622. "description": "A simple PHP Web Scraper",
  10623. "homepage": "https://github.com/FriendsOfPHP/Goutte",
  10624. "keywords": [
  10625. "scraper"
  10626. ],
  10627. "time": "2018-06-29T15:13:57+00:00"
  10628. },
  10629. {
  10630. "name": "instaclick/php-webdriver",
  10631. "version": "1.4.5",
  10632. "source": {
  10633. "type": "git",
  10634. "url": "https://github.com/instaclick/php-webdriver.git",
  10635. "reference": "6fa959452e774dcaed543faad3a9d1a37d803327"
  10636. },
  10637. "dist": {
  10638. "type": "zip",
  10639. "url": "https://api.github.com/repos/instaclick/php-webdriver/zipball/6fa959452e774dcaed543faad3a9d1a37d803327",
  10640. "reference": "6fa959452e774dcaed543faad3a9d1a37d803327",
  10641. "shasum": ""
  10642. },
  10643. "require": {
  10644. "ext-curl": "*",
  10645. "php": ">=5.3.2"
  10646. },
  10647. "require-dev": {
  10648. "phpunit/phpunit": "^4.8",
  10649. "satooshi/php-coveralls": "^1.0||^2.0"
  10650. },
  10651. "type": "library",
  10652. "extra": {
  10653. "branch-alias": {
  10654. "dev-master": "1.4.x-dev"
  10655. }
  10656. },
  10657. "autoload": {
  10658. "psr-0": {
  10659. "WebDriver": "lib/"
  10660. }
  10661. },
  10662. "notification-url": "https://packagist.org/downloads/",
  10663. "license": [
  10664. "Apache-2.0"
  10665. ],
  10666. "authors": [
  10667. {
  10668. "name": "Justin Bishop",
  10669. "email": "jubishop@gmail.com",
  10670. "role": "Developer"
  10671. },
  10672. {
  10673. "name": "Anthon Pang",
  10674. "email": "apang@softwaredevelopment.ca",
  10675. "role": "Fork Maintainer"
  10676. }
  10677. ],
  10678. "description": "PHP WebDriver for Selenium 2",
  10679. "homepage": "http://instaclick.com/",
  10680. "keywords": [
  10681. "browser",
  10682. "selenium",
  10683. "webdriver",
  10684. "webtest"
  10685. ],
  10686. "time": "2017-06-30T04:02:48+00:00"
  10687. },
  10688. {
  10689. "name": "jcalderonzumba/gastonjs",
  10690. "version": "v1.2.0",
  10691. "source": {
  10692. "type": "git",
  10693. "url": "https://github.com/jcalderonzumba/gastonjs.git",
  10694. "reference": "575a9c18d8b87990c37252e8d9707b29f0a313f3"
  10695. },
  10696. "dist": {
  10697. "type": "zip",
  10698. "url": "https://api.github.com/repos/jcalderonzumba/gastonjs/zipball/575a9c18d8b87990c37252e8d9707b29f0a313f3",
  10699. "reference": "575a9c18d8b87990c37252e8d9707b29f0a313f3",
  10700. "shasum": ""
  10701. },
  10702. "require": {
  10703. "guzzlehttp/guzzle": "~5.0|~6.0",
  10704. "php": ">=5.4"
  10705. },
  10706. "require-dev": {
  10707. "phpunit/phpunit": "~4.6",
  10708. "silex/silex": "~1.2",
  10709. "symfony/phpunit-bridge": "~2.7",
  10710. "symfony/process": "~2.1"
  10711. },
  10712. "type": "phantomjs-api",
  10713. "extra": {
  10714. "branch-alias": {
  10715. "dev-master": "1.1.x-dev"
  10716. }
  10717. },
  10718. "autoload": {
  10719. "psr-4": {
  10720. "Zumba\\GastonJS\\": "src"
  10721. }
  10722. },
  10723. "notification-url": "https://packagist.org/downloads/",
  10724. "license": [
  10725. "MIT"
  10726. ],
  10727. "authors": [
  10728. {
  10729. "name": "Juan Francisco Calderón Zumba",
  10730. "email": "juanfcz@gmail.com",
  10731. "homepage": "http://github.com/jcalderonzumba"
  10732. }
  10733. ],
  10734. "description": "PhantomJS API based server for webpage automation",
  10735. "homepage": "https://github.com/jcalderonzumba/gastonjs",
  10736. "keywords": [
  10737. "api",
  10738. "automation",
  10739. "browser",
  10740. "headless",
  10741. "phantomjs"
  10742. ],
  10743. "time": "2017-03-31T07:31:47+00:00"
  10744. },
  10745. {
  10746. "name": "jcalderonzumba/mink-phantomjs-driver",
  10747. "version": "v0.3.3",
  10748. "source": {
  10749. "type": "git",
  10750. "url": "https://github.com/jcalderonzumba/MinkPhantomJSDriver.git",
  10751. "reference": "008f43670e94acd39273d15add1e7348eb23848d"
  10752. },
  10753. "dist": {
  10754. "type": "zip",
  10755. "url": "https://api.github.com/repos/jcalderonzumba/MinkPhantomJSDriver/zipball/008f43670e94acd39273d15add1e7348eb23848d",
  10756. "reference": "008f43670e94acd39273d15add1e7348eb23848d",
  10757. "shasum": ""
  10758. },
  10759. "require": {
  10760. "behat/mink": "~1.7",
  10761. "jcalderonzumba/gastonjs": "~1.0",
  10762. "php": ">=5.4",
  10763. "twig/twig": "~1.20|~2.0"
  10764. },
  10765. "require-dev": {
  10766. "mink/driver-testsuite": "dev-master",
  10767. "phpunit/phpunit": "~4.6"
  10768. },
  10769. "type": "mink-driver",
  10770. "extra": {
  10771. "branch-alias": {
  10772. "dev-master": "0.4.x-dev"
  10773. }
  10774. },
  10775. "autoload": {
  10776. "psr-4": {
  10777. "Zumba\\Mink\\Driver\\": "src"
  10778. }
  10779. },
  10780. "notification-url": "https://packagist.org/downloads/",
  10781. "license": [
  10782. "MIT"
  10783. ],
  10784. "authors": [
  10785. {
  10786. "name": "Juan Francisco Calderón Zumba",
  10787. "email": "juanfcz@gmail.com",
  10788. "homepage": "http://github.com/jcalderonzumba"
  10789. }
  10790. ],
  10791. "description": "PhantomJS driver for Mink framework",
  10792. "homepage": "http://mink.behat.org/",
  10793. "keywords": [
  10794. "ajax",
  10795. "browser",
  10796. "headless",
  10797. "javascript",
  10798. "phantomjs",
  10799. "testing"
  10800. ],
  10801. "time": "2016-12-01T10:57:30+00:00"
  10802. },
  10803. {
  10804. "name": "mikey179/vfsStream",
  10805. "version": "v1.6.5",
  10806. "source": {
  10807. "type": "git",
  10808. "url": "https://github.com/mikey179/vfsStream.git",
  10809. "reference": "d5fec95f541d4d71c4823bb5e30cf9b9e5b96145"
  10810. },
  10811. "dist": {
  10812. "type": "zip",
  10813. "url": "https://api.github.com/repos/mikey179/vfsStream/zipball/d5fec95f541d4d71c4823bb5e30cf9b9e5b96145",
  10814. "reference": "d5fec95f541d4d71c4823bb5e30cf9b9e5b96145",
  10815. "shasum": ""
  10816. },
  10817. "require": {
  10818. "php": ">=5.3.0"
  10819. },
  10820. "require-dev": {
  10821. "phpunit/phpunit": "~4.5"
  10822. },
  10823. "type": "library",
  10824. "extra": {
  10825. "branch-alias": {
  10826. "dev-master": "1.6.x-dev"
  10827. }
  10828. },
  10829. "autoload": {
  10830. "psr-0": {
  10831. "org\\bovigo\\vfs\\": "src/main/php"
  10832. }
  10833. },
  10834. "notification-url": "https://packagist.org/downloads/",
  10835. "license": [
  10836. "BSD-3-Clause"
  10837. ],
  10838. "authors": [
  10839. {
  10840. "name": "Frank Kleine",
  10841. "homepage": "http://frankkleine.de/",
  10842. "role": "Developer"
  10843. }
  10844. ],
  10845. "description": "Virtual file system to mock the real file system in unit tests.",
  10846. "homepage": "http://vfs.bovigo.org/",
  10847. "time": "2017-08-01T08:02:14+00:00"
  10848. },
  10849. {
  10850. "name": "myclabs/deep-copy",
  10851. "version": "1.7.0",
  10852. "source": {
  10853. "type": "git",
  10854. "url": "https://github.com/myclabs/DeepCopy.git",
  10855. "reference": "3b8a3a99ba1f6a3952ac2747d989303cbd6b7a3e"
  10856. },
  10857. "dist": {
  10858. "type": "zip",
  10859. "url": "https://api.github.com/repos/myclabs/DeepCopy/zipball/3b8a3a99ba1f6a3952ac2747d989303cbd6b7a3e",
  10860. "reference": "3b8a3a99ba1f6a3952ac2747d989303cbd6b7a3e",
  10861. "shasum": ""
  10862. },
  10863. "require": {
  10864. "php": "^5.6 || ^7.0"
  10865. },
  10866. "require-dev": {
  10867. "doctrine/collections": "^1.0",
  10868. "doctrine/common": "^2.6",
  10869. "phpunit/phpunit": "^4.1"
  10870. },
  10871. "type": "library",
  10872. "autoload": {
  10873. "psr-4": {
  10874. "DeepCopy\\": "src/DeepCopy/"
  10875. },
  10876. "files": [
  10877. "src/DeepCopy/deep_copy.php"
  10878. ]
  10879. },
  10880. "notification-url": "https://packagist.org/downloads/",
  10881. "license": [
  10882. "MIT"
  10883. ],
  10884. "description": "Create deep copies (clones) of your objects",
  10885. "keywords": [
  10886. "clone",
  10887. "copy",
  10888. "duplicate",
  10889. "object",
  10890. "object graph"
  10891. ],
  10892. "time": "2017-10-19T19:58:43+00:00"
  10893. },
  10894. {
  10895. "name": "phar-io/manifest",
  10896. "version": "1.0.1",
  10897. "source": {
  10898. "type": "git",
  10899. "url": "https://github.com/phar-io/manifest.git",
  10900. "reference": "2df402786ab5368a0169091f61a7c1e0eb6852d0"
  10901. },
  10902. "dist": {
  10903. "type": "zip",
  10904. "url": "https://api.github.com/repos/phar-io/manifest/zipball/2df402786ab5368a0169091f61a7c1e0eb6852d0",
  10905. "reference": "2df402786ab5368a0169091f61a7c1e0eb6852d0",
  10906. "shasum": ""
  10907. },
  10908. "require": {
  10909. "ext-dom": "*",
  10910. "ext-phar": "*",
  10911. "phar-io/version": "^1.0.1",
  10912. "php": "^5.6 || ^7.0"
  10913. },
  10914. "type": "library",
  10915. "extra": {
  10916. "branch-alias": {
  10917. "dev-master": "1.0.x-dev"
  10918. }
  10919. },
  10920. "autoload": {
  10921. "classmap": [
  10922. "src/"
  10923. ]
  10924. },
  10925. "notification-url": "https://packagist.org/downloads/",
  10926. "license": [
  10927. "BSD-3-Clause"
  10928. ],
  10929. "authors": [
  10930. {
  10931. "name": "Arne Blankerts",
  10932. "email": "arne@blankerts.de",
  10933. "role": "Developer"
  10934. },
  10935. {
  10936. "name": "Sebastian Heuer",
  10937. "email": "sebastian@phpeople.de",
  10938. "role": "Developer"
  10939. },
  10940. {
  10941. "name": "Sebastian Bergmann",
  10942. "email": "sebastian@phpunit.de",
  10943. "role": "Developer"
  10944. }
  10945. ],
  10946. "description": "Component for reading phar.io manifest information from a PHP Archive (PHAR)",
  10947. "time": "2017-03-05T18:14:27+00:00"
  10948. },
  10949. {
  10950. "name": "phar-io/version",
  10951. "version": "1.0.1",
  10952. "source": {
  10953. "type": "git",
  10954. "url": "https://github.com/phar-io/version.git",
  10955. "reference": "a70c0ced4be299a63d32fa96d9281d03e94041df"
  10956. },
  10957. "dist": {
  10958. "type": "zip",
  10959. "url": "https://api.github.com/repos/phar-io/version/zipball/a70c0ced4be299a63d32fa96d9281d03e94041df",
  10960. "reference": "a70c0ced4be299a63d32fa96d9281d03e94041df",
  10961. "shasum": ""
  10962. },
  10963. "require": {
  10964. "php": "^5.6 || ^7.0"
  10965. },
  10966. "type": "library",
  10967. "autoload": {
  10968. "classmap": [
  10969. "src/"
  10970. ]
  10971. },
  10972. "notification-url": "https://packagist.org/downloads/",
  10973. "license": [
  10974. "BSD-3-Clause"
  10975. ],
  10976. "authors": [
  10977. {
  10978. "name": "Arne Blankerts",
  10979. "email": "arne@blankerts.de",
  10980. "role": "Developer"
  10981. },
  10982. {
  10983. "name": "Sebastian Heuer",
  10984. "email": "sebastian@phpeople.de",
  10985. "role": "Developer"
  10986. },
  10987. {
  10988. "name": "Sebastian Bergmann",
  10989. "email": "sebastian@phpunit.de",
  10990. "role": "Developer"
  10991. }
  10992. ],
  10993. "description": "Library for handling version information and constraints",
  10994. "time": "2017-03-05T17:38:23+00:00"
  10995. },
  10996. {
  10997. "name": "phpdocumentor/reflection-common",
  10998. "version": "1.0.1",
  10999. "source": {
  11000. "type": "git",
  11001. "url": "https://github.com/phpDocumentor/ReflectionCommon.git",
  11002. "reference": "21bdeb5f65d7ebf9f43b1b25d404f87deab5bfb6"
  11003. },
  11004. "dist": {
  11005. "type": "zip",
  11006. "url": "https://api.github.com/repos/phpDocumentor/ReflectionCommon/zipball/21bdeb5f65d7ebf9f43b1b25d404f87deab5bfb6",
  11007. "reference": "21bdeb5f65d7ebf9f43b1b25d404f87deab5bfb6",
  11008. "shasum": ""
  11009. },
  11010. "require": {
  11011. "php": ">=5.5"
  11012. },
  11013. "require-dev": {
  11014. "phpunit/phpunit": "^4.6"
  11015. },
  11016. "type": "library",
  11017. "extra": {
  11018. "branch-alias": {
  11019. "dev-master": "1.0.x-dev"
  11020. }
  11021. },
  11022. "autoload": {
  11023. "psr-4": {
  11024. "phpDocumentor\\Reflection\\": [
  11025. "src"
  11026. ]
  11027. }
  11028. },
  11029. "notification-url": "https://packagist.org/downloads/",
  11030. "license": [
  11031. "MIT"
  11032. ],
  11033. "authors": [
  11034. {
  11035. "name": "Jaap van Otterdijk",
  11036. "email": "opensource@ijaap.nl"
  11037. }
  11038. ],
  11039. "description": "Common reflection classes used by phpdocumentor to reflect the code structure",
  11040. "homepage": "http://www.phpdoc.org",
  11041. "keywords": [
  11042. "FQSEN",
  11043. "phpDocumentor",
  11044. "phpdoc",
  11045. "reflection",
  11046. "static analysis"
  11047. ],
  11048. "time": "2017-09-11T18:02:19+00:00"
  11049. },
  11050. {
  11051. "name": "phpdocumentor/reflection-docblock",
  11052. "version": "4.3.0",
  11053. "source": {
  11054. "type": "git",
  11055. "url": "https://github.com/phpDocumentor/ReflectionDocBlock.git",
  11056. "reference": "94fd0001232e47129dd3504189fa1c7225010d08"
  11057. },
  11058. "dist": {
  11059. "type": "zip",
  11060. "url": "https://api.github.com/repos/phpDocumentor/ReflectionDocBlock/zipball/94fd0001232e47129dd3504189fa1c7225010d08",
  11061. "reference": "94fd0001232e47129dd3504189fa1c7225010d08",
  11062. "shasum": ""
  11063. },
  11064. "require": {
  11065. "php": "^7.0",
  11066. "phpdocumentor/reflection-common": "^1.0.0",
  11067. "phpdocumentor/type-resolver": "^0.4.0",
  11068. "webmozart/assert": "^1.0"
  11069. },
  11070. "require-dev": {
  11071. "doctrine/instantiator": "~1.0.5",
  11072. "mockery/mockery": "^1.0",
  11073. "phpunit/phpunit": "^6.4"
  11074. },
  11075. "type": "library",
  11076. "extra": {
  11077. "branch-alias": {
  11078. "dev-master": "4.x-dev"
  11079. }
  11080. },
  11081. "autoload": {
  11082. "psr-4": {
  11083. "phpDocumentor\\Reflection\\": [
  11084. "src/"
  11085. ]
  11086. }
  11087. },
  11088. "notification-url": "https://packagist.org/downloads/",
  11089. "license": [
  11090. "MIT"
  11091. ],
  11092. "authors": [
  11093. {
  11094. "name": "Mike van Riel",
  11095. "email": "me@mikevanriel.com"
  11096. }
  11097. ],
  11098. "description": "With this component, a library can provide support for annotations via DocBlocks or otherwise retrieve information that is embedded in a DocBlock.",
  11099. "time": "2017-11-30T07:14:17+00:00"
  11100. },
  11101. {
  11102. "name": "phpdocumentor/type-resolver",
  11103. "version": "0.4.0",
  11104. "source": {
  11105. "type": "git",
  11106. "url": "https://github.com/phpDocumentor/TypeResolver.git",
  11107. "reference": "9c977708995954784726e25d0cd1dddf4e65b0f7"
  11108. },
  11109. "dist": {
  11110. "type": "zip",
  11111. "url": "https://api.github.com/repos/phpDocumentor/TypeResolver/zipball/9c977708995954784726e25d0cd1dddf4e65b0f7",
  11112. "reference": "9c977708995954784726e25d0cd1dddf4e65b0f7",
  11113. "shasum": ""
  11114. },
  11115. "require": {
  11116. "php": "^5.5 || ^7.0",
  11117. "phpdocumentor/reflection-common": "^1.0"
  11118. },
  11119. "require-dev": {
  11120. "mockery/mockery": "^0.9.4",
  11121. "phpunit/phpunit": "^5.2||^4.8.24"
  11122. },
  11123. "type": "library",
  11124. "extra": {
  11125. "branch-alias": {
  11126. "dev-master": "1.0.x-dev"
  11127. }
  11128. },
  11129. "autoload": {
  11130. "psr-4": {
  11131. "phpDocumentor\\Reflection\\": [
  11132. "src/"
  11133. ]
  11134. }
  11135. },
  11136. "notification-url": "https://packagist.org/downloads/",
  11137. "license": [
  11138. "MIT"
  11139. ],
  11140. "authors": [
  11141. {
  11142. "name": "Mike van Riel",
  11143. "email": "me@mikevanriel.com"
  11144. }
  11145. ],
  11146. "time": "2017-07-14T14:27:02+00:00"
  11147. },
  11148. {
  11149. "name": "phpspec/prophecy",
  11150. "version": "1.8.0",
  11151. "source": {
  11152. "type": "git",
  11153. "url": "https://github.com/phpspec/prophecy.git",
  11154. "reference": "4ba436b55987b4bf311cb7c6ba82aa528aac0a06"
  11155. },
  11156. "dist": {
  11157. "type": "zip",
  11158. "url": "https://api.github.com/repos/phpspec/prophecy/zipball/4ba436b55987b4bf311cb7c6ba82aa528aac0a06",
  11159. "reference": "4ba436b55987b4bf311cb7c6ba82aa528aac0a06",
  11160. "shasum": ""
  11161. },
  11162. "require": {
  11163. "doctrine/instantiator": "^1.0.2",
  11164. "php": "^5.3|^7.0",
  11165. "phpdocumentor/reflection-docblock": "^2.0|^3.0.2|^4.0",
  11166. "sebastian/comparator": "^1.1|^2.0|^3.0",
  11167. "sebastian/recursion-context": "^1.0|^2.0|^3.0"
  11168. },
  11169. "require-dev": {
  11170. "phpspec/phpspec": "^2.5|^3.2",
  11171. "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.5 || ^7.1"
  11172. },
  11173. "type": "library",
  11174. "extra": {
  11175. "branch-alias": {
  11176. "dev-master": "1.8.x-dev"
  11177. }
  11178. },
  11179. "autoload": {
  11180. "psr-0": {
  11181. "Prophecy\\": "src/"
  11182. }
  11183. },
  11184. "notification-url": "https://packagist.org/downloads/",
  11185. "license": [
  11186. "MIT"
  11187. ],
  11188. "authors": [
  11189. {
  11190. "name": "Konstantin Kudryashov",
  11191. "email": "ever.zet@gmail.com",
  11192. "homepage": "http://everzet.com"
  11193. },
  11194. {
  11195. "name": "Marcello Duarte",
  11196. "email": "marcello.duarte@gmail.com"
  11197. }
  11198. ],
  11199. "description": "Highly opinionated mocking framework for PHP 5.3+",
  11200. "homepage": "https://github.com/phpspec/prophecy",
  11201. "keywords": [
  11202. "Double",
  11203. "Dummy",
  11204. "fake",
  11205. "mock",
  11206. "spy",
  11207. "stub"
  11208. ],
  11209. "time": "2018-08-05T17:53:17+00:00"
  11210. },
  11211. {
  11212. "name": "phpunit/php-code-coverage",
  11213. "version": "5.3.2",
  11214. "source": {
  11215. "type": "git",
  11216. "url": "https://github.com/sebastianbergmann/php-code-coverage.git",
  11217. "reference": "c89677919c5dd6d3b3852f230a663118762218ac"
  11218. },
  11219. "dist": {
  11220. "type": "zip",
  11221. "url": "https://api.github.com/repos/sebastianbergmann/php-code-coverage/zipball/c89677919c5dd6d3b3852f230a663118762218ac",
  11222. "reference": "c89677919c5dd6d3b3852f230a663118762218ac",
  11223. "shasum": ""
  11224. },
  11225. "require": {
  11226. "ext-dom": "*",
  11227. "ext-xmlwriter": "*",
  11228. "php": "^7.0",
  11229. "phpunit/php-file-iterator": "^1.4.2",
  11230. "phpunit/php-text-template": "^1.2.1",
  11231. "phpunit/php-token-stream": "^2.0.1",
  11232. "sebastian/code-unit-reverse-lookup": "^1.0.1",
  11233. "sebastian/environment": "^3.0",
  11234. "sebastian/version": "^2.0.1",
  11235. "theseer/tokenizer": "^1.1"
  11236. },
  11237. "require-dev": {
  11238. "phpunit/phpunit": "^6.0"
  11239. },
  11240. "suggest": {
  11241. "ext-xdebug": "^2.5.5"
  11242. },
  11243. "type": "library",
  11244. "extra": {
  11245. "branch-alias": {
  11246. "dev-master": "5.3.x-dev"
  11247. }
  11248. },
  11249. "autoload": {
  11250. "classmap": [
  11251. "src/"
  11252. ]
  11253. },
  11254. "notification-url": "https://packagist.org/downloads/",
  11255. "license": [
  11256. "BSD-3-Clause"
  11257. ],
  11258. "authors": [
  11259. {
  11260. "name": "Sebastian Bergmann",
  11261. "email": "sebastian@phpunit.de",
  11262. "role": "lead"
  11263. }
  11264. ],
  11265. "description": "Library that provides collection, processing, and rendering functionality for PHP code coverage information.",
  11266. "homepage": "https://github.com/sebastianbergmann/php-code-coverage",
  11267. "keywords": [
  11268. "coverage",
  11269. "testing",
  11270. "xunit"
  11271. ],
  11272. "time": "2018-04-06T15:36:58+00:00"
  11273. },
  11274. {
  11275. "name": "phpunit/php-file-iterator",
  11276. "version": "1.4.5",
  11277. "source": {
  11278. "type": "git",
  11279. "url": "https://github.com/sebastianbergmann/php-file-iterator.git",
  11280. "reference": "730b01bc3e867237eaac355e06a36b85dd93a8b4"
  11281. },
  11282. "dist": {
  11283. "type": "zip",
  11284. "url": "https://api.github.com/repos/sebastianbergmann/php-file-iterator/zipball/730b01bc3e867237eaac355e06a36b85dd93a8b4",
  11285. "reference": "730b01bc3e867237eaac355e06a36b85dd93a8b4",
  11286. "shasum": ""
  11287. },
  11288. "require": {
  11289. "php": ">=5.3.3"
  11290. },
  11291. "type": "library",
  11292. "extra": {
  11293. "branch-alias": {
  11294. "dev-master": "1.4.x-dev"
  11295. }
  11296. },
  11297. "autoload": {
  11298. "classmap": [
  11299. "src/"
  11300. ]
  11301. },
  11302. "notification-url": "https://packagist.org/downloads/",
  11303. "license": [
  11304. "BSD-3-Clause"
  11305. ],
  11306. "authors": [
  11307. {
  11308. "name": "Sebastian Bergmann",
  11309. "email": "sb@sebastian-bergmann.de",
  11310. "role": "lead"
  11311. }
  11312. ],
  11313. "description": "FilterIterator implementation that filters files based on a list of suffixes.",
  11314. "homepage": "https://github.com/sebastianbergmann/php-file-iterator/",
  11315. "keywords": [
  11316. "filesystem",
  11317. "iterator"
  11318. ],
  11319. "time": "2017-11-27T13:52:08+00:00"
  11320. },
  11321. {
  11322. "name": "phpunit/php-text-template",
  11323. "version": "1.2.1",
  11324. "source": {
  11325. "type": "git",
  11326. "url": "https://github.com/sebastianbergmann/php-text-template.git",
  11327. "reference": "31f8b717e51d9a2afca6c9f046f5d69fc27c8686"
  11328. },
  11329. "dist": {
  11330. "type": "zip",
  11331. "url": "https://api.github.com/repos/sebastianbergmann/php-text-template/zipball/31f8b717e51d9a2afca6c9f046f5d69fc27c8686",
  11332. "reference": "31f8b717e51d9a2afca6c9f046f5d69fc27c8686",
  11333. "shasum": ""
  11334. },
  11335. "require": {
  11336. "php": ">=5.3.3"
  11337. },
  11338. "type": "library",
  11339. "autoload": {
  11340. "classmap": [
  11341. "src/"
  11342. ]
  11343. },
  11344. "notification-url": "https://packagist.org/downloads/",
  11345. "license": [
  11346. "BSD-3-Clause"
  11347. ],
  11348. "authors": [
  11349. {
  11350. "name": "Sebastian Bergmann",
  11351. "email": "sebastian@phpunit.de",
  11352. "role": "lead"
  11353. }
  11354. ],
  11355. "description": "Simple template engine.",
  11356. "homepage": "https://github.com/sebastianbergmann/php-text-template/",
  11357. "keywords": [
  11358. "template"
  11359. ],
  11360. "time": "2015-06-21T13:50:34+00:00"
  11361. },
  11362. {
  11363. "name": "phpunit/php-timer",
  11364. "version": "1.0.9",
  11365. "source": {
  11366. "type": "git",
  11367. "url": "https://github.com/sebastianbergmann/php-timer.git",
  11368. "reference": "3dcf38ca72b158baf0bc245e9184d3fdffa9c46f"
  11369. },
  11370. "dist": {
  11371. "type": "zip",
  11372. "url": "https://api.github.com/repos/sebastianbergmann/php-timer/zipball/3dcf38ca72b158baf0bc245e9184d3fdffa9c46f",
  11373. "reference": "3dcf38ca72b158baf0bc245e9184d3fdffa9c46f",
  11374. "shasum": ""
  11375. },
  11376. "require": {
  11377. "php": "^5.3.3 || ^7.0"
  11378. },
  11379. "require-dev": {
  11380. "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.0"
  11381. },
  11382. "type": "library",
  11383. "extra": {
  11384. "branch-alias": {
  11385. "dev-master": "1.0-dev"
  11386. }
  11387. },
  11388. "autoload": {
  11389. "classmap": [
  11390. "src/"
  11391. ]
  11392. },
  11393. "notification-url": "https://packagist.org/downloads/",
  11394. "license": [
  11395. "BSD-3-Clause"
  11396. ],
  11397. "authors": [
  11398. {
  11399. "name": "Sebastian Bergmann",
  11400. "email": "sb@sebastian-bergmann.de",
  11401. "role": "lead"
  11402. }
  11403. ],
  11404. "description": "Utility class for timing",
  11405. "homepage": "https://github.com/sebastianbergmann/php-timer/",
  11406. "keywords": [
  11407. "timer"
  11408. ],
  11409. "time": "2017-02-26T11:10:40+00:00"
  11410. },
  11411. {
  11412. "name": "phpunit/php-token-stream",
  11413. "version": "2.0.2",
  11414. "source": {
  11415. "type": "git",
  11416. "url": "https://github.com/sebastianbergmann/php-token-stream.git",
  11417. "reference": "791198a2c6254db10131eecfe8c06670700904db"
  11418. },
  11419. "dist": {
  11420. "type": "zip",
  11421. "url": "https://api.github.com/repos/sebastianbergmann/php-token-stream/zipball/791198a2c6254db10131eecfe8c06670700904db",
  11422. "reference": "791198a2c6254db10131eecfe8c06670700904db",
  11423. "shasum": ""
  11424. },
  11425. "require": {
  11426. "ext-tokenizer": "*",
  11427. "php": "^7.0"
  11428. },
  11429. "require-dev": {
  11430. "phpunit/phpunit": "^6.2.4"
  11431. },
  11432. "type": "library",
  11433. "extra": {
  11434. "branch-alias": {
  11435. "dev-master": "2.0-dev"
  11436. }
  11437. },
  11438. "autoload": {
  11439. "classmap": [
  11440. "src/"
  11441. ]
  11442. },
  11443. "notification-url": "https://packagist.org/downloads/",
  11444. "license": [
  11445. "BSD-3-Clause"
  11446. ],
  11447. "authors": [
  11448. {
  11449. "name": "Sebastian Bergmann",
  11450. "email": "sebastian@phpunit.de"
  11451. }
  11452. ],
  11453. "description": "Wrapper around PHP's tokenizer extension.",
  11454. "homepage": "https://github.com/sebastianbergmann/php-token-stream/",
  11455. "keywords": [
  11456. "tokenizer"
  11457. ],
  11458. "time": "2017-11-27T05:48:46+00:00"
  11459. },
  11460. {
  11461. "name": "phpunit/phpunit",
  11462. "version": "6.5.13",
  11463. "source": {
  11464. "type": "git",
  11465. "url": "https://github.com/sebastianbergmann/phpunit.git",
  11466. "reference": "0973426fb012359b2f18d3bd1e90ef1172839693"
  11467. },
  11468. "dist": {
  11469. "type": "zip",
  11470. "url": "https://api.github.com/repos/sebastianbergmann/phpunit/zipball/0973426fb012359b2f18d3bd1e90ef1172839693",
  11471. "reference": "0973426fb012359b2f18d3bd1e90ef1172839693",
  11472. "shasum": ""
  11473. },
  11474. "require": {
  11475. "ext-dom": "*",
  11476. "ext-json": "*",
  11477. "ext-libxml": "*",
  11478. "ext-mbstring": "*",
  11479. "ext-xml": "*",
  11480. "myclabs/deep-copy": "^1.6.1",
  11481. "phar-io/manifest": "^1.0.1",
  11482. "phar-io/version": "^1.0",
  11483. "php": "^7.0",
  11484. "phpspec/prophecy": "^1.7",
  11485. "phpunit/php-code-coverage": "^5.3",
  11486. "phpunit/php-file-iterator": "^1.4.3",
  11487. "phpunit/php-text-template": "^1.2.1",
  11488. "phpunit/php-timer": "^1.0.9",
  11489. "phpunit/phpunit-mock-objects": "^5.0.9",
  11490. "sebastian/comparator": "^2.1",
  11491. "sebastian/diff": "^2.0",
  11492. "sebastian/environment": "^3.1",
  11493. "sebastian/exporter": "^3.1",
  11494. "sebastian/global-state": "^2.0",
  11495. "sebastian/object-enumerator": "^3.0.3",
  11496. "sebastian/resource-operations": "^1.0",
  11497. "sebastian/version": "^2.0.1"
  11498. },
  11499. "conflict": {
  11500. "phpdocumentor/reflection-docblock": "3.0.2",
  11501. "phpunit/dbunit": "<3.0"
  11502. },
  11503. "require-dev": {
  11504. "ext-pdo": "*"
  11505. },
  11506. "suggest": {
  11507. "ext-xdebug": "*",
  11508. "phpunit/php-invoker": "^1.1"
  11509. },
  11510. "bin": [
  11511. "phpunit"
  11512. ],
  11513. "type": "library",
  11514. "extra": {
  11515. "branch-alias": {
  11516. "dev-master": "6.5.x-dev"
  11517. }
  11518. },
  11519. "autoload": {
  11520. "classmap": [
  11521. "src/"
  11522. ]
  11523. },
  11524. "notification-url": "https://packagist.org/downloads/",
  11525. "license": [
  11526. "BSD-3-Clause"
  11527. ],
  11528. "authors": [
  11529. {
  11530. "name": "Sebastian Bergmann",
  11531. "email": "sebastian@phpunit.de",
  11532. "role": "lead"
  11533. }
  11534. ],
  11535. "description": "The PHP Unit Testing framework.",
  11536. "homepage": "https://phpunit.de/",
  11537. "keywords": [
  11538. "phpunit",
  11539. "testing",
  11540. "xunit"
  11541. ],
  11542. "time": "2018-09-08T15:10:43+00:00"
  11543. },
  11544. {
  11545. "name": "phpunit/phpunit-mock-objects",
  11546. "version": "5.0.10",
  11547. "source": {
  11548. "type": "git",
  11549. "url": "https://github.com/sebastianbergmann/phpunit-mock-objects.git",
  11550. "reference": "cd1cf05c553ecfec36b170070573e540b67d3f1f"
  11551. },
  11552. "dist": {
  11553. "type": "zip",
  11554. "url": "https://api.github.com/repos/sebastianbergmann/phpunit-mock-objects/zipball/cd1cf05c553ecfec36b170070573e540b67d3f1f",
  11555. "reference": "cd1cf05c553ecfec36b170070573e540b67d3f1f",
  11556. "shasum": ""
  11557. },
  11558. "require": {
  11559. "doctrine/instantiator": "^1.0.5",
  11560. "php": "^7.0",
  11561. "phpunit/php-text-template": "^1.2.1",
  11562. "sebastian/exporter": "^3.1"
  11563. },
  11564. "conflict": {
  11565. "phpunit/phpunit": "<6.0"
  11566. },
  11567. "require-dev": {
  11568. "phpunit/phpunit": "^6.5.11"
  11569. },
  11570. "suggest": {
  11571. "ext-soap": "*"
  11572. },
  11573. "type": "library",
  11574. "extra": {
  11575. "branch-alias": {
  11576. "dev-master": "5.0.x-dev"
  11577. }
  11578. },
  11579. "autoload": {
  11580. "classmap": [
  11581. "src/"
  11582. ]
  11583. },
  11584. "notification-url": "https://packagist.org/downloads/",
  11585. "license": [
  11586. "BSD-3-Clause"
  11587. ],
  11588. "authors": [
  11589. {
  11590. "name": "Sebastian Bergmann",
  11591. "email": "sebastian@phpunit.de",
  11592. "role": "lead"
  11593. }
  11594. ],
  11595. "description": "Mock Object library for PHPUnit",
  11596. "homepage": "https://github.com/sebastianbergmann/phpunit-mock-objects/",
  11597. "keywords": [
  11598. "mock",
  11599. "xunit"
  11600. ],
  11601. "time": "2018-08-09T05:50:03+00:00"
  11602. },
  11603. {
  11604. "name": "sebastian/code-unit-reverse-lookup",
  11605. "version": "1.0.1",
  11606. "source": {
  11607. "type": "git",
  11608. "url": "https://github.com/sebastianbergmann/code-unit-reverse-lookup.git",
  11609. "reference": "4419fcdb5eabb9caa61a27c7a1db532a6b55dd18"
  11610. },
  11611. "dist": {
  11612. "type": "zip",
  11613. "url": "https://api.github.com/repos/sebastianbergmann/code-unit-reverse-lookup/zipball/4419fcdb5eabb9caa61a27c7a1db532a6b55dd18",
  11614. "reference": "4419fcdb5eabb9caa61a27c7a1db532a6b55dd18",
  11615. "shasum": ""
  11616. },
  11617. "require": {
  11618. "php": "^5.6 || ^7.0"
  11619. },
  11620. "require-dev": {
  11621. "phpunit/phpunit": "^5.7 || ^6.0"
  11622. },
  11623. "type": "library",
  11624. "extra": {
  11625. "branch-alias": {
  11626. "dev-master": "1.0.x-dev"
  11627. }
  11628. },
  11629. "autoload": {
  11630. "classmap": [
  11631. "src/"
  11632. ]
  11633. },
  11634. "notification-url": "https://packagist.org/downloads/",
  11635. "license": [
  11636. "BSD-3-Clause"
  11637. ],
  11638. "authors": [
  11639. {
  11640. "name": "Sebastian Bergmann",
  11641. "email": "sebastian@phpunit.de"
  11642. }
  11643. ],
  11644. "description": "Looks up which function or method a line of code belongs to",
  11645. "homepage": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/",
  11646. "time": "2017-03-04T06:30:41+00:00"
  11647. },
  11648. {
  11649. "name": "sebastian/comparator",
  11650. "version": "2.1.3",
  11651. "source": {
  11652. "type": "git",
  11653. "url": "https://github.com/sebastianbergmann/comparator.git",
  11654. "reference": "34369daee48eafb2651bea869b4b15d75ccc35f9"
  11655. },
  11656. "dist": {
  11657. "type": "zip",
  11658. "url": "https://api.github.com/repos/sebastianbergmann/comparator/zipball/34369daee48eafb2651bea869b4b15d75ccc35f9",
  11659. "reference": "34369daee48eafb2651bea869b4b15d75ccc35f9",
  11660. "shasum": ""
  11661. },
  11662. "require": {
  11663. "php": "^7.0",
  11664. "sebastian/diff": "^2.0 || ^3.0",
  11665. "sebastian/exporter": "^3.1"
  11666. },
  11667. "require-dev": {
  11668. "phpunit/phpunit": "^6.4"
  11669. },
  11670. "type": "library",
  11671. "extra": {
  11672. "branch-alias": {
  11673. "dev-master": "2.1.x-dev"
  11674. }
  11675. },
  11676. "autoload": {
  11677. "classmap": [
  11678. "src/"
  11679. ]
  11680. },
  11681. "notification-url": "https://packagist.org/downloads/",
  11682. "license": [
  11683. "BSD-3-Clause"
  11684. ],
  11685. "authors": [
  11686. {
  11687. "name": "Jeff Welch",
  11688. "email": "whatthejeff@gmail.com"
  11689. },
  11690. {
  11691. "name": "Volker Dusch",
  11692. "email": "github@wallbash.com"
  11693. },
  11694. {
  11695. "name": "Bernhard Schussek",
  11696. "email": "bschussek@2bepublished.at"
  11697. },
  11698. {
  11699. "name": "Sebastian Bergmann",
  11700. "email": "sebastian@phpunit.de"
  11701. }
  11702. ],
  11703. "description": "Provides the functionality to compare PHP values for equality",
  11704. "homepage": "https://github.com/sebastianbergmann/comparator",
  11705. "keywords": [
  11706. "comparator",
  11707. "compare",
  11708. "equality"
  11709. ],
  11710. "time": "2018-02-01T13:46:46+00:00"
  11711. },
  11712. {
  11713. "name": "sebastian/diff",
  11714. "version": "2.0.1",
  11715. "source": {
  11716. "type": "git",
  11717. "url": "https://github.com/sebastianbergmann/diff.git",
  11718. "reference": "347c1d8b49c5c3ee30c7040ea6fc446790e6bddd"
  11719. },
  11720. "dist": {
  11721. "type": "zip",
  11722. "url": "https://api.github.com/repos/sebastianbergmann/diff/zipball/347c1d8b49c5c3ee30c7040ea6fc446790e6bddd",
  11723. "reference": "347c1d8b49c5c3ee30c7040ea6fc446790e6bddd",
  11724. "shasum": ""
  11725. },
  11726. "require": {
  11727. "php": "^7.0"
  11728. },
  11729. "require-dev": {
  11730. "phpunit/phpunit": "^6.2"
  11731. },
  11732. "type": "library",
  11733. "extra": {
  11734. "branch-alias": {
  11735. "dev-master": "2.0-dev"
  11736. }
  11737. },
  11738. "autoload": {
  11739. "classmap": [
  11740. "src/"
  11741. ]
  11742. },
  11743. "notification-url": "https://packagist.org/downloads/",
  11744. "license": [
  11745. "BSD-3-Clause"
  11746. ],
  11747. "authors": [
  11748. {
  11749. "name": "Kore Nordmann",
  11750. "email": "mail@kore-nordmann.de"
  11751. },
  11752. {
  11753. "name": "Sebastian Bergmann",
  11754. "email": "sebastian@phpunit.de"
  11755. }
  11756. ],
  11757. "description": "Diff implementation",
  11758. "homepage": "https://github.com/sebastianbergmann/diff",
  11759. "keywords": [
  11760. "diff"
  11761. ],
  11762. "time": "2017-08-03T08:09:46+00:00"
  11763. },
  11764. {
  11765. "name": "sebastian/environment",
  11766. "version": "3.1.0",
  11767. "source": {
  11768. "type": "git",
  11769. "url": "https://github.com/sebastianbergmann/environment.git",
  11770. "reference": "cd0871b3975fb7fc44d11314fd1ee20925fce4f5"
  11771. },
  11772. "dist": {
  11773. "type": "zip",
  11774. "url": "https://api.github.com/repos/sebastianbergmann/environment/zipball/cd0871b3975fb7fc44d11314fd1ee20925fce4f5",
  11775. "reference": "cd0871b3975fb7fc44d11314fd1ee20925fce4f5",
  11776. "shasum": ""
  11777. },
  11778. "require": {
  11779. "php": "^7.0"
  11780. },
  11781. "require-dev": {
  11782. "phpunit/phpunit": "^6.1"
  11783. },
  11784. "type": "library",
  11785. "extra": {
  11786. "branch-alias": {
  11787. "dev-master": "3.1.x-dev"
  11788. }
  11789. },
  11790. "autoload": {
  11791. "classmap": [
  11792. "src/"
  11793. ]
  11794. },
  11795. "notification-url": "https://packagist.org/downloads/",
  11796. "license": [
  11797. "BSD-3-Clause"
  11798. ],
  11799. "authors": [
  11800. {
  11801. "name": "Sebastian Bergmann",
  11802. "email": "sebastian@phpunit.de"
  11803. }
  11804. ],
  11805. "description": "Provides functionality to handle HHVM/PHP environments",
  11806. "homepage": "http://www.github.com/sebastianbergmann/environment",
  11807. "keywords": [
  11808. "Xdebug",
  11809. "environment",
  11810. "hhvm"
  11811. ],
  11812. "time": "2017-07-01T08:51:00+00:00"
  11813. },
  11814. {
  11815. "name": "sebastian/exporter",
  11816. "version": "3.1.0",
  11817. "source": {
  11818. "type": "git",
  11819. "url": "https://github.com/sebastianbergmann/exporter.git",
  11820. "reference": "234199f4528de6d12aaa58b612e98f7d36adb937"
  11821. },
  11822. "dist": {
  11823. "type": "zip",
  11824. "url": "https://api.github.com/repos/sebastianbergmann/exporter/zipball/234199f4528de6d12aaa58b612e98f7d36adb937",
  11825. "reference": "234199f4528de6d12aaa58b612e98f7d36adb937",
  11826. "shasum": ""
  11827. },
  11828. "require": {
  11829. "php": "^7.0",
  11830. "sebastian/recursion-context": "^3.0"
  11831. },
  11832. "require-dev": {
  11833. "ext-mbstring": "*",
  11834. "phpunit/phpunit": "^6.0"
  11835. },
  11836. "type": "library",
  11837. "extra": {
  11838. "branch-alias": {
  11839. "dev-master": "3.1.x-dev"
  11840. }
  11841. },
  11842. "autoload": {
  11843. "classmap": [
  11844. "src/"
  11845. ]
  11846. },
  11847. "notification-url": "https://packagist.org/downloads/",
  11848. "license": [
  11849. "BSD-3-Clause"
  11850. ],
  11851. "authors": [
  11852. {
  11853. "name": "Jeff Welch",
  11854. "email": "whatthejeff@gmail.com"
  11855. },
  11856. {
  11857. "name": "Volker Dusch",
  11858. "email": "github@wallbash.com"
  11859. },
  11860. {
  11861. "name": "Bernhard Schussek",
  11862. "email": "bschussek@2bepublished.at"
  11863. },
  11864. {
  11865. "name": "Sebastian Bergmann",
  11866. "email": "sebastian@phpunit.de"
  11867. },
  11868. {
  11869. "name": "Adam Harvey",
  11870. "email": "aharvey@php.net"
  11871. }
  11872. ],
  11873. "description": "Provides the functionality to export PHP variables for visualization",
  11874. "homepage": "http://www.github.com/sebastianbergmann/exporter",
  11875. "keywords": [
  11876. "export",
  11877. "exporter"
  11878. ],
  11879. "time": "2017-04-03T13:19:02+00:00"
  11880. },
  11881. {
  11882. "name": "sebastian/global-state",
  11883. "version": "2.0.0",
  11884. "source": {
  11885. "type": "git",
  11886. "url": "https://github.com/sebastianbergmann/global-state.git",
  11887. "reference": "e8ba02eed7bbbb9e59e43dedd3dddeff4a56b0c4"
  11888. },
  11889. "dist": {
  11890. "type": "zip",
  11891. "url": "https://api.github.com/repos/sebastianbergmann/global-state/zipball/e8ba02eed7bbbb9e59e43dedd3dddeff4a56b0c4",
  11892. "reference": "e8ba02eed7bbbb9e59e43dedd3dddeff4a56b0c4",
  11893. "shasum": ""
  11894. },
  11895. "require": {
  11896. "php": "^7.0"
  11897. },
  11898. "require-dev": {
  11899. "phpunit/phpunit": "^6.0"
  11900. },
  11901. "suggest": {
  11902. "ext-uopz": "*"
  11903. },
  11904. "type": "library",
  11905. "extra": {
  11906. "branch-alias": {
  11907. "dev-master": "2.0-dev"
  11908. }
  11909. },
  11910. "autoload": {
  11911. "classmap": [
  11912. "src/"
  11913. ]
  11914. },
  11915. "notification-url": "https://packagist.org/downloads/",
  11916. "license": [
  11917. "BSD-3-Clause"
  11918. ],
  11919. "authors": [
  11920. {
  11921. "name": "Sebastian Bergmann",
  11922. "email": "sebastian@phpunit.de"
  11923. }
  11924. ],
  11925. "description": "Snapshotting of global state",
  11926. "homepage": "http://www.github.com/sebastianbergmann/global-state",
  11927. "keywords": [
  11928. "global state"
  11929. ],
  11930. "time": "2017-04-27T15:39:26+00:00"
  11931. },
  11932. {
  11933. "name": "sebastian/object-enumerator",
  11934. "version": "3.0.3",
  11935. "source": {
  11936. "type": "git",
  11937. "url": "https://github.com/sebastianbergmann/object-enumerator.git",
  11938. "reference": "7cfd9e65d11ffb5af41198476395774d4c8a84c5"
  11939. },
  11940. "dist": {
  11941. "type": "zip",
  11942. "url": "https://api.github.com/repos/sebastianbergmann/object-enumerator/zipball/7cfd9e65d11ffb5af41198476395774d4c8a84c5",
  11943. "reference": "7cfd9e65d11ffb5af41198476395774d4c8a84c5",
  11944. "shasum": ""
  11945. },
  11946. "require": {
  11947. "php": "^7.0",
  11948. "sebastian/object-reflector": "^1.1.1",
  11949. "sebastian/recursion-context": "^3.0"
  11950. },
  11951. "require-dev": {
  11952. "phpunit/phpunit": "^6.0"
  11953. },
  11954. "type": "library",
  11955. "extra": {
  11956. "branch-alias": {
  11957. "dev-master": "3.0.x-dev"
  11958. }
  11959. },
  11960. "autoload": {
  11961. "classmap": [
  11962. "src/"
  11963. ]
  11964. },
  11965. "notification-url": "https://packagist.org/downloads/",
  11966. "license": [
  11967. "BSD-3-Clause"
  11968. ],
  11969. "authors": [
  11970. {
  11971. "name": "Sebastian Bergmann",
  11972. "email": "sebastian@phpunit.de"
  11973. }
  11974. ],
  11975. "description": "Traverses array structures and object graphs to enumerate all referenced objects",
  11976. "homepage": "https://github.com/sebastianbergmann/object-enumerator/",
  11977. "time": "2017-08-03T12:35:26+00:00"
  11978. },
  11979. {
  11980. "name": "sebastian/object-reflector",
  11981. "version": "1.1.1",
  11982. "source": {
  11983. "type": "git",
  11984. "url": "https://github.com/sebastianbergmann/object-reflector.git",
  11985. "reference": "773f97c67f28de00d397be301821b06708fca0be"
  11986. },
  11987. "dist": {
  11988. "type": "zip",
  11989. "url": "https://api.github.com/repos/sebastianbergmann/object-reflector/zipball/773f97c67f28de00d397be301821b06708fca0be",
  11990. "reference": "773f97c67f28de00d397be301821b06708fca0be",
  11991. "shasum": ""
  11992. },
  11993. "require": {
  11994. "php": "^7.0"
  11995. },
  11996. "require-dev": {
  11997. "phpunit/phpunit": "^6.0"
  11998. },
  11999. "type": "library",
  12000. "extra": {
  12001. "branch-alias": {
  12002. "dev-master": "1.1-dev"
  12003. }
  12004. },
  12005. "autoload": {
  12006. "classmap": [
  12007. "src/"
  12008. ]
  12009. },
  12010. "notification-url": "https://packagist.org/downloads/",
  12011. "license": [
  12012. "BSD-3-Clause"
  12013. ],
  12014. "authors": [
  12015. {
  12016. "name": "Sebastian Bergmann",
  12017. "email": "sebastian@phpunit.de"
  12018. }
  12019. ],
  12020. "description": "Allows reflection of object attributes, including inherited and non-public ones",
  12021. "homepage": "https://github.com/sebastianbergmann/object-reflector/",
  12022. "time": "2017-03-29T09:07:27+00:00"
  12023. },
  12024. {
  12025. "name": "sebastian/recursion-context",
  12026. "version": "3.0.0",
  12027. "source": {
  12028. "type": "git",
  12029. "url": "https://github.com/sebastianbergmann/recursion-context.git",
  12030. "reference": "5b0cd723502bac3b006cbf3dbf7a1e3fcefe4fa8"
  12031. },
  12032. "dist": {
  12033. "type": "zip",
  12034. "url": "https://api.github.com/repos/sebastianbergmann/recursion-context/zipball/5b0cd723502bac3b006cbf3dbf7a1e3fcefe4fa8",
  12035. "reference": "5b0cd723502bac3b006cbf3dbf7a1e3fcefe4fa8",
  12036. "shasum": ""
  12037. },
  12038. "require": {
  12039. "php": "^7.0"
  12040. },
  12041. "require-dev": {
  12042. "phpunit/phpunit": "^6.0"
  12043. },
  12044. "type": "library",
  12045. "extra": {
  12046. "branch-alias": {
  12047. "dev-master": "3.0.x-dev"
  12048. }
  12049. },
  12050. "autoload": {
  12051. "classmap": [
  12052. "src/"
  12053. ]
  12054. },
  12055. "notification-url": "https://packagist.org/downloads/",
  12056. "license": [
  12057. "BSD-3-Clause"
  12058. ],
  12059. "authors": [
  12060. {
  12061. "name": "Jeff Welch",
  12062. "email": "whatthejeff@gmail.com"
  12063. },
  12064. {
  12065. "name": "Sebastian Bergmann",
  12066. "email": "sebastian@phpunit.de"
  12067. },
  12068. {
  12069. "name": "Adam Harvey",
  12070. "email": "aharvey@php.net"
  12071. }
  12072. ],
  12073. "description": "Provides functionality to recursively process PHP variables",
  12074. "homepage": "http://www.github.com/sebastianbergmann/recursion-context",
  12075. "time": "2017-03-03T06:23:57+00:00"
  12076. },
  12077. {
  12078. "name": "sebastian/resource-operations",
  12079. "version": "1.0.0",
  12080. "source": {
  12081. "type": "git",
  12082. "url": "https://github.com/sebastianbergmann/resource-operations.git",
  12083. "reference": "ce990bb21759f94aeafd30209e8cfcdfa8bc3f52"
  12084. },
  12085. "dist": {
  12086. "type": "zip",
  12087. "url": "https://api.github.com/repos/sebastianbergmann/resource-operations/zipball/ce990bb21759f94aeafd30209e8cfcdfa8bc3f52",
  12088. "reference": "ce990bb21759f94aeafd30209e8cfcdfa8bc3f52",
  12089. "shasum": ""
  12090. },
  12091. "require": {
  12092. "php": ">=5.6.0"
  12093. },
  12094. "type": "library",
  12095. "extra": {
  12096. "branch-alias": {
  12097. "dev-master": "1.0.x-dev"
  12098. }
  12099. },
  12100. "autoload": {
  12101. "classmap": [
  12102. "src/"
  12103. ]
  12104. },
  12105. "notification-url": "https://packagist.org/downloads/",
  12106. "license": [
  12107. "BSD-3-Clause"
  12108. ],
  12109. "authors": [
  12110. {
  12111. "name": "Sebastian Bergmann",
  12112. "email": "sebastian@phpunit.de"
  12113. }
  12114. ],
  12115. "description": "Provides a list of PHP built-in functions that operate on resources",
  12116. "homepage": "https://www.github.com/sebastianbergmann/resource-operations",
  12117. "time": "2015-07-28T20:34:47+00:00"
  12118. },
  12119. {
  12120. "name": "sebastian/version",
  12121. "version": "2.0.1",
  12122. "source": {
  12123. "type": "git",
  12124. "url": "https://github.com/sebastianbergmann/version.git",
  12125. "reference": "99732be0ddb3361e16ad77b68ba41efc8e979019"
  12126. },
  12127. "dist": {
  12128. "type": "zip",
  12129. "url": "https://api.github.com/repos/sebastianbergmann/version/zipball/99732be0ddb3361e16ad77b68ba41efc8e979019",
  12130. "reference": "99732be0ddb3361e16ad77b68ba41efc8e979019",
  12131. "shasum": ""
  12132. },
  12133. "require": {
  12134. "php": ">=5.6"
  12135. },
  12136. "type": "library",
  12137. "extra": {
  12138. "branch-alias": {
  12139. "dev-master": "2.0.x-dev"
  12140. }
  12141. },
  12142. "autoload": {
  12143. "classmap": [
  12144. "src/"
  12145. ]
  12146. },
  12147. "notification-url": "https://packagist.org/downloads/",
  12148. "license": [
  12149. "BSD-3-Clause"
  12150. ],
  12151. "authors": [
  12152. {
  12153. "name": "Sebastian Bergmann",
  12154. "email": "sebastian@phpunit.de",
  12155. "role": "lead"
  12156. }
  12157. ],
  12158. "description": "Library that helps with managing the version number of Git-hosted PHP projects",
  12159. "homepage": "https://github.com/sebastianbergmann/version",
  12160. "time": "2016-10-03T07:35:21+00:00"
  12161. },
  12162. {
  12163. "name": "squizlabs/php_codesniffer",
  12164. "version": "3.3.2",
  12165. "source": {
  12166. "type": "git",
  12167. "url": "https://github.com/squizlabs/PHP_CodeSniffer.git",
  12168. "reference": "6ad28354c04b364c3c71a34e4a18b629cc3b231e"
  12169. },
  12170. "dist": {
  12171. "type": "zip",
  12172. "url": "https://api.github.com/repos/squizlabs/PHP_CodeSniffer/zipball/6ad28354c04b364c3c71a34e4a18b629cc3b231e",
  12173. "reference": "6ad28354c04b364c3c71a34e4a18b629cc3b231e",
  12174. "shasum": ""
  12175. },
  12176. "require": {
  12177. "ext-simplexml": "*",
  12178. "ext-tokenizer": "*",
  12179. "ext-xmlwriter": "*",
  12180. "php": ">=5.4.0"
  12181. },
  12182. "require-dev": {
  12183. "phpunit/phpunit": "^4.0 || ^5.0 || ^6.0 || ^7.0"
  12184. },
  12185. "bin": [
  12186. "bin/phpcs",
  12187. "bin/phpcbf"
  12188. ],
  12189. "type": "library",
  12190. "extra": {
  12191. "branch-alias": {
  12192. "dev-master": "3.x-dev"
  12193. }
  12194. },
  12195. "notification-url": "https://packagist.org/downloads/",
  12196. "license": [
  12197. "BSD-3-Clause"
  12198. ],
  12199. "authors": [
  12200. {
  12201. "name": "Greg Sherwood",
  12202. "role": "lead"
  12203. }
  12204. ],
  12205. "description": "PHP_CodeSniffer tokenizes PHP, JavaScript and CSS files and detects violations of a defined set of coding standards.",
  12206. "homepage": "http://www.squizlabs.com/php-codesniffer",
  12207. "keywords": [
  12208. "phpcs",
  12209. "standards"
  12210. ],
  12211. "time": "2018-09-23T23:08:17+00:00"
  12212. },
  12213. {
  12214. "name": "symfony/browser-kit",
  12215. "version": "v3.4.17",
  12216. "source": {
  12217. "type": "git",
  12218. "url": "https://github.com/symfony/browser-kit.git",
  12219. "reference": "f6668d1a6182d5a8dec65a1c863a4c1d963816c0"
  12220. },
  12221. "dist": {
  12222. "type": "zip",
  12223. "url": "https://api.github.com/repos/symfony/browser-kit/zipball/f6668d1a6182d5a8dec65a1c863a4c1d963816c0",
  12224. "reference": "f6668d1a6182d5a8dec65a1c863a4c1d963816c0",
  12225. "shasum": ""
  12226. },
  12227. "require": {
  12228. "php": "^5.5.9|>=7.0.8",
  12229. "symfony/dom-crawler": "~2.8|~3.0|~4.0"
  12230. },
  12231. "require-dev": {
  12232. "symfony/css-selector": "~2.8|~3.0|~4.0",
  12233. "symfony/process": "~2.8|~3.0|~4.0"
  12234. },
  12235. "suggest": {
  12236. "symfony/process": ""
  12237. },
  12238. "type": "library",
  12239. "extra": {
  12240. "branch-alias": {
  12241. "dev-master": "3.4-dev"
  12242. }
  12243. },
  12244. "autoload": {
  12245. "psr-4": {
  12246. "Symfony\\Component\\BrowserKit\\": ""
  12247. },
  12248. "exclude-from-classmap": [
  12249. "/Tests/"
  12250. ]
  12251. },
  12252. "notification-url": "https://packagist.org/downloads/",
  12253. "license": [
  12254. "MIT"
  12255. ],
  12256. "authors": [
  12257. {
  12258. "name": "Fabien Potencier",
  12259. "email": "fabien@symfony.com"
  12260. },
  12261. {
  12262. "name": "Symfony Community",
  12263. "homepage": "https://symfony.com/contributors"
  12264. }
  12265. ],
  12266. "description": "Symfony BrowserKit Component",
  12267. "homepage": "https://symfony.com",
  12268. "time": "2018-07-26T09:06:28+00:00"
  12269. },
  12270. {
  12271. "name": "symfony/phpunit-bridge",
  12272. "version": "v3.4.17",
  12273. "source": {
  12274. "type": "git",
  12275. "url": "https://github.com/symfony/phpunit-bridge.git",
  12276. "reference": "76e013a98031356604e5a730c9eb22713dc4dda4"
  12277. },
  12278. "dist": {
  12279. "type": "zip",
  12280. "url": "https://api.github.com/repos/symfony/phpunit-bridge/zipball/76e013a98031356604e5a730c9eb22713dc4dda4",
  12281. "reference": "76e013a98031356604e5a730c9eb22713dc4dda4",
  12282. "shasum": ""
  12283. },
  12284. "require": {
  12285. "php": ">=5.3.3"
  12286. },
  12287. "conflict": {
  12288. "phpunit/phpunit": "<4.8.35|<5.4.3,>=5.0"
  12289. },
  12290. "suggest": {
  12291. "ext-zip": "Zip support is required when using bin/simple-phpunit",
  12292. "symfony/debug": "For tracking deprecated interfaces usages at runtime with DebugClassLoader"
  12293. },
  12294. "bin": [
  12295. "bin/simple-phpunit"
  12296. ],
  12297. "type": "symfony-bridge",
  12298. "extra": {
  12299. "branch-alias": {
  12300. "dev-master": "3.4-dev"
  12301. },
  12302. "thanks": {
  12303. "name": "phpunit/phpunit",
  12304. "url": "https://github.com/sebastianbergmann/phpunit"
  12305. }
  12306. },
  12307. "autoload": {
  12308. "files": [
  12309. "bootstrap.php"
  12310. ],
  12311. "psr-4": {
  12312. "Symfony\\Bridge\\PhpUnit\\": ""
  12313. },
  12314. "exclude-from-classmap": [
  12315. "/Tests/"
  12316. ]
  12317. },
  12318. "notification-url": "https://packagist.org/downloads/",
  12319. "license": [
  12320. "MIT"
  12321. ],
  12322. "authors": [
  12323. {
  12324. "name": "Nicolas Grekas",
  12325. "email": "p@tchwork.com"
  12326. },
  12327. {
  12328. "name": "Symfony Community",
  12329. "homepage": "https://symfony.com/contributors"
  12330. }
  12331. ],
  12332. "description": "Symfony PHPUnit Bridge",
  12333. "homepage": "https://symfony.com",
  12334. "time": "2018-10-02T12:28:39+00:00"
  12335. },
  12336. {
  12337. "name": "theseer/tokenizer",
  12338. "version": "1.1.0",
  12339. "source": {
  12340. "type": "git",
  12341. "url": "https://github.com/theseer/tokenizer.git",
  12342. "reference": "cb2f008f3f05af2893a87208fe6a6c4985483f8b"
  12343. },
  12344. "dist": {
  12345. "type": "zip",
  12346. "url": "https://api.github.com/repos/theseer/tokenizer/zipball/cb2f008f3f05af2893a87208fe6a6c4985483f8b",
  12347. "reference": "cb2f008f3f05af2893a87208fe6a6c4985483f8b",
  12348. "shasum": ""
  12349. },
  12350. "require": {
  12351. "ext-dom": "*",
  12352. "ext-tokenizer": "*",
  12353. "ext-xmlwriter": "*",
  12354. "php": "^7.0"
  12355. },
  12356. "type": "library",
  12357. "autoload": {
  12358. "classmap": [
  12359. "src/"
  12360. ]
  12361. },
  12362. "notification-url": "https://packagist.org/downloads/",
  12363. "license": [
  12364. "BSD-3-Clause"
  12365. ],
  12366. "authors": [
  12367. {
  12368. "name": "Arne Blankerts",
  12369. "email": "arne@blankerts.de",
  12370. "role": "Developer"
  12371. }
  12372. ],
  12373. "description": "A small library for converting tokenized PHP source code into XML and potentially other formats",
  12374. "time": "2017-04-07T12:08:54+00:00"
  12375. }
  12376. ],
  12377. "aliases": [],
  12378. "minimum-stability": "dev",
  12379. "stability-flags": {
  12380. "drupal/examples": 20,
  12381. "drupal/synonyms": 20,
  12382. "drupal/telephone_formatter": 10,
  12383. "drupal/computed_field": 15,
  12384. "drupal/cshs": 20,
  12385. "drupal/views_ef_fieldset": 20,
  12386. "drupal/advanced_text_formatter": 10,
  12387. "drupal/autocomplete_deluxe": 10,
  12388. "drupal/better_exposed_filters": 15,
  12389. "drupal/better_messages": 15,
  12390. "drupal/bulkdelete": 20,
  12391. "drupal/content_lock": 15,
  12392. "drupal/context": 10,
  12393. "drupal/domain": 15,
  12394. "drupal/domain_alias": 15,
  12395. "drupal/domain_config": 15,
  12396. "drupal/email_registration": 5,
  12397. "drupal/entity_browser_enhanced": 5,
  12398. "drupal/entity_clone": 15,
  12399. "drupal/filefield_sources": 20,
  12400. "drupal/filter_perms": 20,
  12401. "drupal/inline_entity_form": 5,
  12402. "drupal/login_destination": 20,
  12403. "drupal/maillog": 20,
  12404. "drupal/maxlength": 10,
  12405. "drupal/menu_position": 20,
  12406. "drupal/path_alias_xt": 20,
  12407. "drupal/pathologic": 15,
  12408. "drupal/profile": 5,
  12409. "drupal/smtp": 10,
  12410. "drupal/translation_views": 15,
  12411. "drupal/toolbar_themes": 15,
  12412. "drupal/ultimate_cron": 15,
  12413. "drupal/workflow": 20,
  12414. "behat/mink": 20,
  12415. "behat/mink-selenium2-driver": 20
  12416. },
  12417. "prefer-stable": true,
  12418. "prefer-lowest": false,
  12419. "platform": {
  12420. "ext-date": "*",
  12421. "ext-dom": "*",
  12422. "ext-filter": "*",
  12423. "ext-gd": "*",
  12424. "ext-hash": "*",
  12425. "ext-json": "*",
  12426. "ext-pcre": "*",
  12427. "ext-pdo": "*",
  12428. "ext-session": "*",
  12429. "ext-simplexml": "*",
  12430. "ext-spl": "*",
  12431. "ext-tokenizer": "*",
  12432. "ext-xml": "*",
  12433. "php": "^5.5.9|>=7.0.8"
  12434. },
  12435. "platform-dev": []
  12436. }