composer.lock 420 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556155715581559156015611562156315641565156615671568156915701571157215731574157515761577157815791580158115821583158415851586158715881589159015911592159315941595159615971598159916001601160216031604160516061607160816091610161116121613161416151616161716181619162016211622162316241625162616271628162916301631163216331634163516361637163816391640164116421643164416451646164716481649165016511652165316541655165616571658165916601661166216631664166516661667166816691670167116721673167416751676167716781679168016811682168316841685168616871688168916901691169216931694169516961697169816991700170117021703170417051706170717081709171017111712171317141715171617171718171917201721172217231724172517261727172817291730173117321733173417351736173717381739174017411742174317441745174617471748174917501751175217531754175517561757175817591760176117621763176417651766176717681769177017711772177317741775177617771778177917801781178217831784178517861787178817891790179117921793179417951796179717981799180018011802180318041805180618071808180918101811181218131814181518161817181818191820182118221823182418251826182718281829183018311832183318341835183618371838183918401841184218431844184518461847184818491850185118521853185418551856185718581859186018611862186318641865186618671868186918701871187218731874187518761877187818791880188118821883188418851886188718881889189018911892189318941895189618971898189919001901190219031904190519061907190819091910191119121913191419151916191719181919192019211922192319241925192619271928192919301931193219331934193519361937193819391940194119421943194419451946194719481949195019511952195319541955195619571958195919601961196219631964196519661967196819691970197119721973197419751976197719781979198019811982198319841985198619871988198919901991199219931994199519961997199819992000200120022003200420052006200720082009201020112012201320142015201620172018201920202021202220232024202520262027202820292030203120322033203420352036203720382039204020412042204320442045204620472048204920502051205220532054205520562057205820592060206120622063206420652066206720682069207020712072207320742075207620772078207920802081208220832084208520862087208820892090209120922093209420952096209720982099210021012102210321042105210621072108210921102111211221132114211521162117211821192120212121222123212421252126212721282129213021312132213321342135213621372138213921402141214221432144214521462147214821492150215121522153215421552156215721582159216021612162216321642165216621672168216921702171217221732174217521762177217821792180218121822183218421852186218721882189219021912192219321942195219621972198219922002201220222032204220522062207220822092210221122122213221422152216221722182219222022212222222322242225222622272228222922302231223222332234223522362237223822392240224122422243224422452246224722482249225022512252225322542255225622572258225922602261226222632264226522662267226822692270227122722273227422752276227722782279228022812282228322842285228622872288228922902291229222932294229522962297229822992300230123022303230423052306230723082309231023112312231323142315231623172318231923202321232223232324232523262327232823292330233123322333233423352336233723382339234023412342234323442345234623472348234923502351235223532354235523562357235823592360236123622363236423652366236723682369237023712372237323742375237623772378237923802381238223832384238523862387238823892390239123922393239423952396239723982399240024012402240324042405240624072408240924102411241224132414241524162417241824192420242124222423242424252426242724282429243024312432243324342435243624372438243924402441244224432444244524462447244824492450245124522453245424552456245724582459246024612462246324642465246624672468246924702471247224732474247524762477247824792480248124822483248424852486248724882489249024912492249324942495249624972498249925002501250225032504250525062507250825092510251125122513251425152516251725182519252025212522252325242525252625272528252925302531253225332534253525362537253825392540254125422543254425452546254725482549255025512552255325542555255625572558255925602561256225632564256525662567256825692570257125722573257425752576257725782579258025812582258325842585258625872588258925902591259225932594259525962597259825992600260126022603260426052606260726082609261026112612261326142615261626172618261926202621262226232624262526262627262826292630263126322633263426352636263726382639264026412642264326442645264626472648264926502651265226532654265526562657265826592660266126622663266426652666266726682669267026712672267326742675267626772678267926802681268226832684268526862687268826892690269126922693269426952696269726982699270027012702270327042705270627072708270927102711271227132714271527162717271827192720272127222723272427252726272727282729273027312732273327342735273627372738273927402741274227432744274527462747274827492750275127522753275427552756275727582759276027612762276327642765276627672768276927702771277227732774277527762777277827792780278127822783278427852786278727882789279027912792279327942795279627972798279928002801280228032804280528062807280828092810281128122813281428152816281728182819282028212822282328242825282628272828282928302831283228332834283528362837283828392840284128422843284428452846284728482849285028512852285328542855285628572858285928602861286228632864286528662867286828692870287128722873287428752876287728782879288028812882288328842885288628872888288928902891289228932894289528962897289828992900290129022903290429052906290729082909291029112912291329142915291629172918291929202921292229232924292529262927292829292930293129322933293429352936293729382939294029412942294329442945294629472948294929502951295229532954295529562957295829592960296129622963296429652966296729682969297029712972297329742975297629772978297929802981298229832984298529862987298829892990299129922993299429952996299729982999300030013002300330043005300630073008300930103011301230133014301530163017301830193020302130223023302430253026302730283029303030313032303330343035303630373038303930403041304230433044304530463047304830493050305130523053305430553056305730583059306030613062306330643065306630673068306930703071307230733074307530763077307830793080308130823083308430853086308730883089309030913092309330943095309630973098309931003101310231033104310531063107310831093110311131123113311431153116311731183119312031213122312331243125312631273128312931303131313231333134313531363137313831393140314131423143314431453146314731483149315031513152315331543155315631573158315931603161316231633164316531663167316831693170317131723173317431753176317731783179318031813182318331843185318631873188318931903191319231933194319531963197319831993200320132023203320432053206320732083209321032113212321332143215321632173218321932203221322232233224322532263227322832293230323132323233323432353236323732383239324032413242324332443245324632473248324932503251325232533254325532563257325832593260326132623263326432653266326732683269327032713272327332743275327632773278327932803281328232833284328532863287328832893290329132923293329432953296329732983299330033013302330333043305330633073308330933103311331233133314331533163317331833193320332133223323332433253326332733283329333033313332333333343335333633373338333933403341334233433344334533463347334833493350335133523353335433553356335733583359336033613362336333643365336633673368336933703371337233733374337533763377337833793380338133823383338433853386338733883389339033913392339333943395339633973398339934003401340234033404340534063407340834093410341134123413341434153416341734183419342034213422342334243425342634273428342934303431343234333434343534363437343834393440344134423443344434453446344734483449345034513452345334543455345634573458345934603461346234633464346534663467346834693470347134723473347434753476347734783479348034813482348334843485348634873488348934903491349234933494349534963497349834993500350135023503350435053506350735083509351035113512351335143515351635173518351935203521352235233524352535263527352835293530353135323533353435353536353735383539354035413542354335443545354635473548354935503551355235533554355535563557355835593560356135623563356435653566356735683569357035713572357335743575357635773578357935803581358235833584358535863587358835893590359135923593359435953596359735983599360036013602360336043605360636073608360936103611361236133614361536163617361836193620362136223623362436253626362736283629363036313632363336343635363636373638363936403641364236433644364536463647364836493650365136523653365436553656365736583659366036613662366336643665366636673668366936703671367236733674367536763677367836793680368136823683368436853686368736883689369036913692369336943695369636973698369937003701370237033704370537063707370837093710371137123713371437153716371737183719372037213722372337243725372637273728372937303731373237333734373537363737373837393740374137423743374437453746374737483749375037513752375337543755375637573758375937603761376237633764376537663767376837693770377137723773377437753776377737783779378037813782378337843785378637873788378937903791379237933794379537963797379837993800380138023803380438053806380738083809381038113812381338143815381638173818381938203821382238233824382538263827382838293830383138323833383438353836383738383839384038413842384338443845384638473848384938503851385238533854385538563857385838593860386138623863386438653866386738683869387038713872387338743875387638773878387938803881388238833884388538863887388838893890389138923893389438953896389738983899390039013902390339043905390639073908390939103911391239133914391539163917391839193920392139223923392439253926392739283929393039313932393339343935393639373938393939403941394239433944394539463947394839493950395139523953395439553956395739583959396039613962396339643965396639673968396939703971397239733974397539763977397839793980398139823983398439853986398739883989399039913992399339943995399639973998399940004001400240034004400540064007400840094010401140124013401440154016401740184019402040214022402340244025402640274028402940304031403240334034403540364037403840394040404140424043404440454046404740484049405040514052405340544055405640574058405940604061406240634064406540664067406840694070407140724073407440754076407740784079408040814082408340844085408640874088408940904091409240934094409540964097409840994100410141024103410441054106410741084109411041114112411341144115411641174118411941204121412241234124412541264127412841294130413141324133413441354136413741384139414041414142414341444145414641474148414941504151415241534154415541564157415841594160416141624163416441654166416741684169417041714172417341744175417641774178417941804181418241834184418541864187418841894190419141924193419441954196419741984199420042014202420342044205420642074208420942104211421242134214421542164217421842194220422142224223422442254226422742284229423042314232423342344235423642374238423942404241424242434244424542464247424842494250425142524253425442554256425742584259426042614262426342644265426642674268426942704271427242734274427542764277427842794280428142824283428442854286428742884289429042914292429342944295429642974298429943004301430243034304430543064307430843094310431143124313431443154316431743184319432043214322432343244325432643274328432943304331433243334334433543364337433843394340434143424343434443454346434743484349435043514352435343544355435643574358435943604361436243634364436543664367436843694370437143724373437443754376437743784379438043814382438343844385438643874388438943904391439243934394439543964397439843994400440144024403440444054406440744084409441044114412441344144415441644174418441944204421442244234424442544264427442844294430443144324433443444354436443744384439444044414442444344444445444644474448444944504451445244534454445544564457445844594460446144624463446444654466446744684469447044714472447344744475447644774478447944804481448244834484448544864487448844894490449144924493449444954496449744984499450045014502450345044505450645074508450945104511451245134514451545164517451845194520452145224523452445254526452745284529453045314532453345344535453645374538453945404541454245434544454545464547454845494550455145524553455445554556455745584559456045614562456345644565456645674568456945704571457245734574457545764577457845794580458145824583458445854586458745884589459045914592459345944595459645974598459946004601460246034604460546064607460846094610461146124613461446154616461746184619462046214622462346244625462646274628462946304631463246334634463546364637463846394640464146424643464446454646464746484649465046514652465346544655465646574658465946604661466246634664466546664667466846694670467146724673467446754676467746784679468046814682468346844685468646874688468946904691469246934694469546964697469846994700470147024703470447054706470747084709471047114712471347144715471647174718471947204721472247234724472547264727472847294730473147324733473447354736473747384739474047414742474347444745474647474748474947504751475247534754475547564757475847594760476147624763476447654766476747684769477047714772477347744775477647774778477947804781478247834784478547864787478847894790479147924793479447954796479747984799480048014802480348044805480648074808480948104811481248134814481548164817481848194820482148224823482448254826482748284829483048314832483348344835483648374838483948404841484248434844484548464847484848494850485148524853485448554856485748584859486048614862486348644865486648674868486948704871487248734874487548764877487848794880488148824883488448854886488748884889489048914892489348944895489648974898489949004901490249034904490549064907490849094910491149124913491449154916491749184919492049214922492349244925492649274928492949304931493249334934493549364937493849394940494149424943494449454946494749484949495049514952495349544955495649574958495949604961496249634964496549664967496849694970497149724973497449754976497749784979498049814982498349844985498649874988498949904991499249934994499549964997499849995000500150025003500450055006500750085009501050115012501350145015501650175018501950205021502250235024502550265027502850295030503150325033503450355036503750385039504050415042504350445045504650475048504950505051505250535054505550565057505850595060506150625063506450655066506750685069507050715072507350745075507650775078507950805081508250835084508550865087508850895090509150925093509450955096509750985099510051015102510351045105510651075108510951105111511251135114511551165117511851195120512151225123512451255126512751285129513051315132513351345135513651375138513951405141514251435144514551465147514851495150515151525153515451555156515751585159516051615162516351645165516651675168516951705171517251735174517551765177517851795180518151825183518451855186518751885189519051915192519351945195519651975198519952005201520252035204520552065207520852095210521152125213521452155216521752185219522052215222522352245225522652275228522952305231523252335234523552365237523852395240524152425243524452455246524752485249525052515252525352545255525652575258525952605261526252635264526552665267526852695270527152725273527452755276527752785279528052815282528352845285528652875288528952905291529252935294529552965297529852995300530153025303530453055306530753085309531053115312531353145315531653175318531953205321532253235324532553265327532853295330533153325333533453355336533753385339534053415342534353445345534653475348534953505351535253535354535553565357535853595360536153625363536453655366536753685369537053715372537353745375537653775378537953805381538253835384538553865387538853895390539153925393539453955396539753985399540054015402540354045405540654075408540954105411541254135414541554165417541854195420542154225423542454255426542754285429543054315432543354345435543654375438543954405441544254435444544554465447544854495450545154525453545454555456545754585459546054615462546354645465546654675468546954705471547254735474547554765477547854795480548154825483548454855486548754885489549054915492549354945495549654975498549955005501550255035504550555065507550855095510551155125513551455155516551755185519552055215522552355245525552655275528552955305531553255335534553555365537553855395540554155425543554455455546554755485549555055515552555355545555555655575558555955605561556255635564556555665567556855695570557155725573557455755576557755785579558055815582558355845585558655875588558955905591559255935594559555965597559855995600560156025603560456055606560756085609561056115612561356145615561656175618561956205621562256235624562556265627562856295630563156325633563456355636563756385639564056415642564356445645564656475648564956505651565256535654565556565657565856595660566156625663566456655666566756685669567056715672567356745675567656775678567956805681568256835684568556865687568856895690569156925693569456955696569756985699570057015702570357045705570657075708570957105711571257135714571557165717571857195720572157225723572457255726572757285729573057315732573357345735573657375738573957405741574257435744574557465747574857495750575157525753575457555756575757585759576057615762576357645765576657675768576957705771577257735774577557765777577857795780578157825783578457855786578757885789579057915792579357945795579657975798579958005801580258035804580558065807580858095810581158125813581458155816581758185819582058215822582358245825582658275828582958305831583258335834583558365837583858395840584158425843584458455846584758485849585058515852585358545855585658575858585958605861586258635864586558665867586858695870587158725873587458755876587758785879588058815882588358845885588658875888588958905891589258935894589558965897589858995900590159025903590459055906590759085909591059115912591359145915591659175918591959205921592259235924592559265927592859295930593159325933593459355936593759385939594059415942594359445945594659475948594959505951595259535954595559565957595859595960596159625963596459655966596759685969597059715972597359745975597659775978597959805981598259835984598559865987598859895990599159925993599459955996599759985999600060016002600360046005600660076008600960106011601260136014601560166017601860196020602160226023602460256026602760286029603060316032603360346035603660376038603960406041604260436044604560466047604860496050605160526053605460556056605760586059606060616062606360646065606660676068606960706071607260736074607560766077607860796080608160826083608460856086608760886089609060916092609360946095609660976098609961006101610261036104610561066107610861096110611161126113611461156116611761186119612061216122612361246125612661276128612961306131613261336134613561366137613861396140614161426143614461456146614761486149615061516152615361546155615661576158615961606161616261636164616561666167616861696170617161726173617461756176617761786179618061816182618361846185618661876188618961906191619261936194619561966197619861996200620162026203620462056206620762086209621062116212621362146215621662176218621962206221622262236224622562266227622862296230623162326233623462356236623762386239624062416242624362446245624662476248624962506251625262536254625562566257625862596260626162626263626462656266626762686269627062716272627362746275627662776278627962806281628262836284628562866287628862896290629162926293629462956296629762986299630063016302630363046305630663076308630963106311631263136314631563166317631863196320632163226323632463256326632763286329633063316332633363346335633663376338633963406341634263436344634563466347634863496350635163526353635463556356635763586359636063616362636363646365636663676368636963706371637263736374637563766377637863796380638163826383638463856386638763886389639063916392639363946395639663976398639964006401640264036404640564066407640864096410641164126413641464156416641764186419642064216422642364246425642664276428642964306431643264336434643564366437643864396440644164426443644464456446644764486449645064516452645364546455645664576458645964606461646264636464646564666467646864696470647164726473647464756476647764786479648064816482648364846485648664876488648964906491649264936494649564966497649864996500650165026503650465056506650765086509651065116512651365146515651665176518651965206521652265236524652565266527652865296530653165326533653465356536653765386539654065416542654365446545654665476548654965506551655265536554655565566557655865596560656165626563656465656566656765686569657065716572657365746575657665776578657965806581658265836584658565866587658865896590659165926593659465956596659765986599660066016602660366046605660666076608660966106611661266136614661566166617661866196620662166226623662466256626662766286629663066316632663366346635663666376638663966406641664266436644664566466647664866496650665166526653665466556656665766586659666066616662666366646665666666676668666966706671667266736674667566766677667866796680668166826683668466856686668766886689669066916692669366946695669666976698669967006701670267036704670567066707670867096710671167126713671467156716671767186719672067216722672367246725672667276728672967306731673267336734673567366737673867396740674167426743674467456746674767486749675067516752675367546755675667576758675967606761676267636764676567666767676867696770677167726773677467756776677767786779678067816782678367846785678667876788678967906791679267936794679567966797679867996800680168026803680468056806680768086809681068116812681368146815681668176818681968206821682268236824682568266827682868296830683168326833683468356836683768386839684068416842684368446845684668476848684968506851685268536854685568566857685868596860686168626863686468656866686768686869687068716872687368746875687668776878687968806881688268836884688568866887688868896890689168926893689468956896689768986899690069016902690369046905690669076908690969106911691269136914691569166917691869196920692169226923692469256926692769286929693069316932693369346935693669376938693969406941694269436944694569466947694869496950695169526953695469556956695769586959696069616962696369646965696669676968696969706971697269736974697569766977697869796980698169826983698469856986698769886989699069916992699369946995699669976998699970007001700270037004700570067007700870097010701170127013701470157016701770187019702070217022702370247025702670277028702970307031703270337034703570367037703870397040704170427043704470457046704770487049705070517052705370547055705670577058705970607061706270637064706570667067706870697070707170727073707470757076707770787079708070817082708370847085708670877088708970907091709270937094709570967097709870997100710171027103710471057106710771087109711071117112711371147115711671177118711971207121712271237124712571267127712871297130713171327133713471357136713771387139714071417142714371447145714671477148714971507151715271537154715571567157715871597160716171627163716471657166716771687169717071717172717371747175717671777178717971807181718271837184718571867187718871897190719171927193719471957196719771987199720072017202720372047205720672077208720972107211721272137214721572167217721872197220722172227223722472257226722772287229723072317232723372347235723672377238723972407241724272437244724572467247724872497250725172527253725472557256725772587259726072617262726372647265726672677268726972707271727272737274727572767277727872797280728172827283728472857286728772887289729072917292729372947295729672977298729973007301730273037304730573067307730873097310731173127313731473157316731773187319732073217322732373247325732673277328732973307331733273337334733573367337733873397340734173427343734473457346734773487349735073517352735373547355735673577358735973607361736273637364736573667367736873697370737173727373737473757376737773787379738073817382738373847385738673877388738973907391739273937394739573967397739873997400740174027403740474057406740774087409741074117412741374147415741674177418741974207421742274237424742574267427742874297430743174327433743474357436743774387439744074417442744374447445744674477448744974507451745274537454745574567457745874597460746174627463746474657466746774687469747074717472747374747475747674777478747974807481748274837484748574867487748874897490749174927493749474957496749774987499750075017502750375047505750675077508750975107511751275137514751575167517751875197520752175227523752475257526752775287529753075317532753375347535753675377538753975407541754275437544754575467547754875497550755175527553755475557556755775587559756075617562756375647565756675677568756975707571757275737574757575767577757875797580758175827583758475857586758775887589759075917592759375947595759675977598759976007601760276037604760576067607760876097610761176127613761476157616761776187619762076217622762376247625762676277628762976307631763276337634763576367637763876397640764176427643764476457646764776487649765076517652765376547655765676577658765976607661766276637664766576667667766876697670767176727673767476757676767776787679768076817682768376847685768676877688768976907691769276937694769576967697769876997700770177027703770477057706770777087709771077117712771377147715771677177718771977207721772277237724772577267727772877297730773177327733773477357736773777387739774077417742774377447745774677477748774977507751775277537754775577567757775877597760776177627763776477657766776777687769777077717772777377747775777677777778777977807781778277837784778577867787778877897790779177927793779477957796779777987799780078017802780378047805780678077808780978107811781278137814781578167817781878197820782178227823782478257826782778287829783078317832783378347835783678377838783978407841784278437844784578467847784878497850785178527853785478557856785778587859786078617862786378647865786678677868786978707871787278737874787578767877787878797880788178827883788478857886788778887889789078917892789378947895789678977898789979007901790279037904790579067907790879097910791179127913791479157916791779187919792079217922792379247925792679277928792979307931793279337934793579367937793879397940794179427943794479457946794779487949795079517952795379547955795679577958795979607961796279637964796579667967796879697970797179727973797479757976797779787979798079817982798379847985798679877988798979907991799279937994799579967997799879998000800180028003800480058006800780088009801080118012801380148015801680178018801980208021802280238024802580268027802880298030803180328033803480358036803780388039804080418042804380448045804680478048804980508051805280538054805580568057805880598060806180628063806480658066806780688069807080718072807380748075807680778078807980808081808280838084808580868087808880898090809180928093809480958096809780988099810081018102810381048105810681078108810981108111811281138114811581168117811881198120812181228123812481258126812781288129813081318132813381348135813681378138813981408141814281438144814581468147814881498150815181528153815481558156815781588159816081618162816381648165816681678168816981708171817281738174817581768177817881798180818181828183818481858186818781888189819081918192819381948195819681978198819982008201820282038204820582068207820882098210821182128213821482158216821782188219822082218222822382248225822682278228822982308231823282338234823582368237823882398240824182428243824482458246824782488249825082518252825382548255825682578258825982608261826282638264826582668267826882698270827182728273827482758276827782788279828082818282828382848285828682878288828982908291829282938294829582968297829882998300830183028303830483058306830783088309831083118312831383148315831683178318831983208321832283238324832583268327832883298330833183328333833483358336833783388339834083418342834383448345834683478348834983508351835283538354835583568357835883598360836183628363836483658366836783688369837083718372837383748375837683778378837983808381838283838384838583868387838883898390839183928393839483958396839783988399840084018402840384048405840684078408840984108411841284138414841584168417841884198420842184228423842484258426842784288429843084318432843384348435843684378438843984408441844284438444844584468447844884498450845184528453845484558456845784588459846084618462846384648465846684678468846984708471847284738474847584768477847884798480848184828483848484858486848784888489849084918492849384948495849684978498849985008501850285038504850585068507850885098510851185128513851485158516851785188519852085218522852385248525852685278528852985308531853285338534853585368537853885398540854185428543854485458546854785488549855085518552855385548555855685578558855985608561856285638564856585668567856885698570857185728573857485758576857785788579858085818582858385848585858685878588858985908591859285938594859585968597859885998600860186028603860486058606860786088609861086118612861386148615861686178618861986208621862286238624862586268627862886298630863186328633863486358636863786388639864086418642864386448645864686478648864986508651865286538654865586568657865886598660866186628663866486658666866786688669867086718672867386748675867686778678867986808681868286838684868586868687868886898690869186928693869486958696869786988699870087018702870387048705870687078708870987108711871287138714871587168717871887198720872187228723872487258726872787288729873087318732873387348735873687378738873987408741874287438744874587468747874887498750875187528753875487558756875787588759876087618762876387648765876687678768876987708771877287738774877587768777877887798780878187828783878487858786878787888789879087918792879387948795879687978798879988008801880288038804880588068807880888098810881188128813881488158816881788188819882088218822882388248825882688278828882988308831883288338834883588368837883888398840884188428843884488458846884788488849885088518852885388548855885688578858885988608861886288638864886588668867886888698870887188728873887488758876887788788879888088818882888388848885888688878888888988908891889288938894889588968897889888998900890189028903890489058906890789088909891089118912891389148915891689178918891989208921892289238924892589268927892889298930893189328933893489358936893789388939894089418942894389448945894689478948894989508951895289538954895589568957895889598960896189628963896489658966896789688969897089718972897389748975897689778978897989808981898289838984898589868987898889898990899189928993899489958996899789988999900090019002900390049005900690079008900990109011901290139014901590169017901890199020902190229023902490259026902790289029903090319032903390349035903690379038903990409041904290439044904590469047904890499050905190529053905490559056905790589059906090619062906390649065906690679068906990709071907290739074907590769077907890799080908190829083908490859086908790889089909090919092909390949095909690979098909991009101910291039104910591069107910891099110911191129113911491159116911791189119912091219122912391249125912691279128912991309131913291339134913591369137913891399140914191429143914491459146914791489149915091519152915391549155915691579158915991609161916291639164916591669167916891699170917191729173917491759176917791789179918091819182918391849185918691879188918991909191919291939194919591969197919891999200920192029203920492059206920792089209921092119212921392149215921692179218921992209221922292239224922592269227922892299230923192329233923492359236923792389239924092419242924392449245924692479248924992509251925292539254925592569257925892599260926192629263926492659266926792689269927092719272927392749275927692779278927992809281928292839284928592869287928892899290929192929293929492959296929792989299930093019302930393049305930693079308930993109311931293139314931593169317931893199320932193229323932493259326932793289329933093319332933393349335933693379338933993409341934293439344934593469347934893499350935193529353935493559356935793589359936093619362936393649365936693679368936993709371937293739374937593769377937893799380938193829383938493859386938793889389939093919392939393949395939693979398939994009401940294039404940594069407940894099410941194129413941494159416941794189419942094219422942394249425942694279428942994309431943294339434943594369437943894399440944194429443944494459446944794489449945094519452945394549455945694579458945994609461946294639464946594669467946894699470947194729473947494759476947794789479948094819482948394849485948694879488948994909491949294939494949594969497949894999500950195029503950495059506950795089509951095119512951395149515951695179518951995209521952295239524952595269527952895299530953195329533953495359536953795389539954095419542954395449545954695479548954995509551955295539554955595569557955895599560956195629563956495659566956795689569957095719572957395749575957695779578957995809581958295839584958595869587958895899590959195929593959495959596959795989599960096019602960396049605960696079608960996109611961296139614961596169617961896199620962196229623962496259626962796289629963096319632963396349635963696379638963996409641964296439644964596469647964896499650965196529653965496559656965796589659966096619662966396649665966696679668966996709671967296739674967596769677967896799680968196829683968496859686968796889689969096919692969396949695969696979698969997009701970297039704970597069707970897099710971197129713971497159716971797189719972097219722972397249725972697279728972997309731973297339734973597369737973897399740974197429743974497459746974797489749975097519752975397549755975697579758975997609761976297639764976597669767976897699770977197729773977497759776977797789779978097819782978397849785978697879788978997909791979297939794979597969797979897999800980198029803980498059806980798089809981098119812981398149815981698179818981998209821982298239824982598269827982898299830983198329833983498359836983798389839984098419842984398449845984698479848984998509851985298539854985598569857985898599860986198629863986498659866986798689869987098719872987398749875987698779878987998809881988298839884988598869887988898899890989198929893989498959896989798989899990099019902990399049905990699079908990999109911991299139914991599169917991899199920992199229923992499259926992799289929993099319932993399349935993699379938993999409941994299439944994599469947994899499950995199529953995499559956995799589959996099619962996399649965996699679968996999709971997299739974997599769977997899799980998199829983998499859986998799889989999099919992999399949995999699979998999910000100011000210003100041000510006100071000810009100101001110012100131001410015100161001710018100191002010021100221002310024100251002610027100281002910030100311003210033100341003510036100371003810039100401004110042100431004410045100461004710048100491005010051100521005310054100551005610057100581005910060100611006210063100641006510066100671006810069100701007110072100731007410075100761007710078100791008010081100821008310084100851008610087100881008910090100911009210093100941009510096100971009810099101001010110102101031010410105101061010710108101091011010111101121011310114101151011610117101181011910120101211012210123101241012510126101271012810129101301013110132101331013410135101361013710138101391014010141101421014310144101451014610147101481014910150101511015210153101541015510156101571015810159101601016110162101631016410165101661016710168101691017010171101721017310174101751017610177101781017910180101811018210183101841018510186101871018810189101901019110192101931019410195101961019710198101991020010201102021020310204102051020610207102081020910210102111021210213102141021510216102171021810219102201022110222102231022410225102261022710228102291023010231102321023310234102351023610237102381023910240102411024210243102441024510246102471024810249102501025110252102531025410255102561025710258102591026010261102621026310264102651026610267102681026910270102711027210273102741027510276102771027810279102801028110282102831028410285102861028710288102891029010291102921029310294102951029610297102981029910300103011030210303103041030510306103071030810309103101031110312103131031410315103161031710318103191032010321103221032310324103251032610327103281032910330103311033210333103341033510336103371033810339103401034110342103431034410345103461034710348103491035010351103521035310354103551035610357103581035910360103611036210363103641036510366103671036810369103701037110372103731037410375103761037710378103791038010381103821038310384103851038610387103881038910390103911039210393103941039510396103971039810399104001040110402104031040410405104061040710408104091041010411104121041310414104151041610417104181041910420104211042210423104241042510426104271042810429104301043110432104331043410435104361043710438104391044010441104421044310444104451044610447104481044910450104511045210453104541045510456104571045810459104601046110462104631046410465104661046710468104691047010471104721047310474104751047610477104781047910480104811048210483104841048510486104871048810489104901049110492104931049410495104961049710498104991050010501105021050310504105051050610507105081050910510105111051210513105141051510516105171051810519105201052110522105231052410525105261052710528105291053010531105321053310534105351053610537105381053910540105411054210543105441054510546105471054810549105501055110552105531055410555105561055710558105591056010561105621056310564105651056610567105681056910570105711057210573105741057510576105771057810579105801058110582105831058410585105861058710588105891059010591105921059310594105951059610597105981059910600106011060210603106041060510606106071060810609106101061110612106131061410615106161061710618106191062010621106221062310624106251062610627106281062910630106311063210633106341063510636106371063810639106401064110642106431064410645106461064710648106491065010651106521065310654106551065610657106581065910660106611066210663106641066510666106671066810669106701067110672106731067410675106761067710678106791068010681106821068310684106851068610687106881068910690106911069210693106941069510696106971069810699107001070110702107031070410705107061070710708107091071010711107121071310714107151071610717107181071910720107211072210723107241072510726107271072810729107301073110732107331073410735107361073710738107391074010741107421074310744107451074610747107481074910750107511075210753107541075510756107571075810759107601076110762107631076410765107661076710768107691077010771107721077310774107751077610777107781077910780107811078210783107841078510786107871078810789107901079110792107931079410795107961079710798107991080010801108021080310804108051080610807108081080910810108111081210813108141081510816108171081810819108201082110822108231082410825108261082710828108291083010831108321083310834108351083610837108381083910840108411084210843108441084510846108471084810849108501085110852108531085410855108561085710858108591086010861108621086310864108651086610867108681086910870108711087210873108741087510876108771087810879108801088110882108831088410885108861088710888108891089010891108921089310894108951089610897108981089910900109011090210903109041090510906109071090810909109101091110912109131091410915109161091710918109191092010921109221092310924109251092610927109281092910930109311093210933109341093510936109371093810939109401094110942109431094410945109461094710948109491095010951109521095310954109551095610957109581095910960109611096210963109641096510966109671096810969109701097110972109731097410975109761097710978109791098010981109821098310984109851098610987109881098910990109911099210993109941099510996109971099810999110001100111002110031100411005110061100711008110091101011011110121101311014110151101611017110181101911020110211102211023110241102511026110271102811029110301103111032110331103411035110361103711038110391104011041110421104311044110451104611047110481104911050110511105211053110541105511056110571105811059110601106111062110631106411065110661106711068110691107011071110721107311074110751107611077110781107911080110811108211083110841108511086110871108811089110901109111092110931109411095110961109711098110991110011101111021110311104111051110611107111081110911110111111111211113111141111511116111171111811119111201112111122111231112411125111261112711128111291113011131111321113311134111351113611137111381113911140111411114211143111441114511146111471114811149111501115111152111531115411155111561115711158111591116011161111621116311164111651116611167111681116911170111711117211173111741117511176111771117811179111801118111182111831118411185111861118711188111891119011191111921119311194111951119611197111981119911200112011120211203112041120511206112071120811209112101121111212112131121411215112161121711218112191122011221112221122311224112251122611227112281122911230112311123211233112341123511236112371123811239112401124111242112431124411245112461124711248112491125011251112521125311254112551125611257112581125911260112611126211263112641126511266112671126811269112701127111272112731127411275112761127711278112791128011281112821128311284112851128611287112881128911290112911129211293112941129511296112971129811299113001130111302113031130411305113061130711308113091131011311113121131311314113151131611317113181131911320113211132211323113241132511326113271132811329113301133111332113331133411335113361133711338113391134011341113421134311344113451134611347113481134911350113511135211353113541135511356113571135811359113601136111362113631136411365113661136711368113691137011371113721137311374113751137611377113781137911380113811138211383113841138511386113871138811389113901139111392113931139411395113961139711398113991140011401114021140311404114051140611407114081140911410114111141211413114141141511416114171141811419114201142111422114231142411425114261142711428114291143011431114321143311434114351143611437114381143911440114411144211443114441144511446114471144811449114501145111452114531145411455114561145711458114591146011461114621146311464114651146611467114681146911470114711147211473114741147511476114771147811479114801148111482114831148411485114861148711488114891149011491114921149311494114951149611497114981149911500115011150211503115041150511506115071150811509115101151111512115131151411515115161151711518115191152011521115221152311524115251152611527115281152911530115311153211533115341153511536115371153811539115401154111542115431154411545115461154711548115491155011551115521155311554115551155611557115581155911560115611156211563115641156511566115671156811569115701157111572115731157411575115761157711578115791158011581115821158311584115851158611587115881158911590115911159211593115941159511596115971159811599116001160111602116031160411605116061160711608116091161011611116121161311614116151161611617116181161911620116211162211623116241162511626116271162811629116301163111632116331163411635116361163711638116391164011641116421164311644116451164611647116481164911650116511165211653116541165511656116571165811659116601166111662116631166411665116661166711668116691167011671116721167311674116751167611677116781167911680116811168211683116841168511686116871168811689116901169111692116931169411695116961169711698116991170011701117021170311704117051170611707117081170911710117111171211713117141171511716117171171811719117201172111722117231172411725117261172711728117291173011731117321173311734117351173611737117381173911740117411174211743117441174511746117471174811749117501175111752117531175411755117561175711758117591176011761117621176311764117651176611767117681176911770117711177211773117741177511776117771177811779117801178111782117831178411785117861178711788117891179011791117921179311794117951179611797117981179911800118011180211803118041180511806118071180811809118101181111812118131181411815
  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": "6d95526da61b6311251b823859c3edcc",
  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": "composer/installers",
  172. "version": "v1.6.0",
  173. "source": {
  174. "type": "git",
  175. "url": "https://github.com/composer/installers.git",
  176. "reference": "cfcca6b1b60bc4974324efb5783c13dca6932b5b"
  177. },
  178. "dist": {
  179. "type": "zip",
  180. "url": "https://api.github.com/repos/composer/installers/zipball/cfcca6b1b60bc4974324efb5783c13dca6932b5b",
  181. "reference": "cfcca6b1b60bc4974324efb5783c13dca6932b5b",
  182. "shasum": ""
  183. },
  184. "require": {
  185. "composer-plugin-api": "^1.0"
  186. },
  187. "replace": {
  188. "roundcube/plugin-installer": "*",
  189. "shama/baton": "*"
  190. },
  191. "require-dev": {
  192. "composer/composer": "1.0.*@dev",
  193. "phpunit/phpunit": "^4.8.36"
  194. },
  195. "type": "composer-plugin",
  196. "extra": {
  197. "class": "Composer\\Installers\\Plugin",
  198. "branch-alias": {
  199. "dev-master": "1.0-dev"
  200. }
  201. },
  202. "autoload": {
  203. "psr-4": {
  204. "Composer\\Installers\\": "src/Composer/Installers"
  205. }
  206. },
  207. "notification-url": "https://packagist.org/downloads/",
  208. "license": [
  209. "MIT"
  210. ],
  211. "authors": [
  212. {
  213. "name": "Kyle Robinson Young",
  214. "email": "kyle@dontkry.com",
  215. "homepage": "https://github.com/shama"
  216. }
  217. ],
  218. "description": "A multi-framework Composer library installer",
  219. "homepage": "https://composer.github.io/installers/",
  220. "keywords": [
  221. "Craft",
  222. "Dolibarr",
  223. "Eliasis",
  224. "Hurad",
  225. "ImageCMS",
  226. "Kanboard",
  227. "Lan Management System",
  228. "MODX Evo",
  229. "Mautic",
  230. "Maya",
  231. "OXID",
  232. "Plentymarkets",
  233. "Porto",
  234. "RadPHP",
  235. "SMF",
  236. "Thelia",
  237. "WolfCMS",
  238. "agl",
  239. "aimeos",
  240. "annotatecms",
  241. "attogram",
  242. "bitrix",
  243. "cakephp",
  244. "chef",
  245. "cockpit",
  246. "codeigniter",
  247. "concrete5",
  248. "croogo",
  249. "dokuwiki",
  250. "drupal",
  251. "eZ Platform",
  252. "elgg",
  253. "expressionengine",
  254. "fuelphp",
  255. "grav",
  256. "installer",
  257. "itop",
  258. "joomla",
  259. "kohana",
  260. "laravel",
  261. "lavalite",
  262. "lithium",
  263. "magento",
  264. "majima",
  265. "mako",
  266. "mediawiki",
  267. "modulework",
  268. "modx",
  269. "moodle",
  270. "osclass",
  271. "phpbb",
  272. "piwik",
  273. "ppi",
  274. "puppet",
  275. "pxcms",
  276. "reindex",
  277. "roundcube",
  278. "shopware",
  279. "silverstripe",
  280. "sydes",
  281. "symfony",
  282. "typo3",
  283. "wordpress",
  284. "yawik",
  285. "zend",
  286. "zikula"
  287. ],
  288. "time": "2018-08-27T06:10:37+00:00"
  289. },
  290. {
  291. "name": "composer/semver",
  292. "version": "1.4.2",
  293. "source": {
  294. "type": "git",
  295. "url": "https://github.com/composer/semver.git",
  296. "reference": "c7cb9a2095a074d131b65a8a0cd294479d785573"
  297. },
  298. "dist": {
  299. "type": "zip",
  300. "url": "https://api.github.com/repos/composer/semver/zipball/c7cb9a2095a074d131b65a8a0cd294479d785573",
  301. "reference": "c7cb9a2095a074d131b65a8a0cd294479d785573",
  302. "shasum": ""
  303. },
  304. "require": {
  305. "php": "^5.3.2 || ^7.0"
  306. },
  307. "require-dev": {
  308. "phpunit/phpunit": "^4.5 || ^5.0.5",
  309. "phpunit/phpunit-mock-objects": "2.3.0 || ^3.0"
  310. },
  311. "type": "library",
  312. "extra": {
  313. "branch-alias": {
  314. "dev-master": "1.x-dev"
  315. }
  316. },
  317. "autoload": {
  318. "psr-4": {
  319. "Composer\\Semver\\": "src"
  320. }
  321. },
  322. "notification-url": "https://packagist.org/downloads/",
  323. "license": [
  324. "MIT"
  325. ],
  326. "authors": [
  327. {
  328. "name": "Nils Adermann",
  329. "email": "naderman@naderman.de",
  330. "homepage": "http://www.naderman.de"
  331. },
  332. {
  333. "name": "Jordi Boggiano",
  334. "email": "j.boggiano@seld.be",
  335. "homepage": "http://seld.be"
  336. },
  337. {
  338. "name": "Rob Bast",
  339. "email": "rob.bast@gmail.com",
  340. "homepage": "http://robbast.nl"
  341. }
  342. ],
  343. "description": "Semver library that offers utilities, version constraint parsing and validation.",
  344. "keywords": [
  345. "semantic",
  346. "semver",
  347. "validation",
  348. "versioning"
  349. ],
  350. "time": "2016-08-30T16:08:34+00:00"
  351. },
  352. {
  353. "name": "consolidation/annotated-command",
  354. "version": "2.9.1",
  355. "source": {
  356. "type": "git",
  357. "url": "https://github.com/consolidation/annotated-command.git",
  358. "reference": "4bdbb8fa149e1cc1511bd77b0bc4729fd66bccac"
  359. },
  360. "dist": {
  361. "type": "zip",
  362. "url": "https://api.github.com/repos/consolidation/annotated-command/zipball/4bdbb8fa149e1cc1511bd77b0bc4729fd66bccac",
  363. "reference": "4bdbb8fa149e1cc1511bd77b0bc4729fd66bccac",
  364. "shasum": ""
  365. },
  366. "require": {
  367. "consolidation/output-formatters": "^3.1.12",
  368. "php": ">=5.4.0",
  369. "psr/log": "^1",
  370. "symfony/console": "^2.8|^3|^4",
  371. "symfony/event-dispatcher": "^2.5|^3|^4",
  372. "symfony/finder": "^2.5|^3|^4"
  373. },
  374. "require-dev": {
  375. "g1a/composer-test-scenarios": "^2",
  376. "phpunit/phpunit": "^6",
  377. "satooshi/php-coveralls": "^2",
  378. "squizlabs/php_codesniffer": "^2.7"
  379. },
  380. "type": "library",
  381. "extra": {
  382. "branch-alias": {
  383. "dev-master": "2.x-dev"
  384. }
  385. },
  386. "autoload": {
  387. "psr-4": {
  388. "Consolidation\\AnnotatedCommand\\": "src"
  389. }
  390. },
  391. "notification-url": "https://packagist.org/downloads/",
  392. "license": [
  393. "MIT"
  394. ],
  395. "authors": [
  396. {
  397. "name": "Greg Anderson",
  398. "email": "greg.1.anderson@greenknowe.org"
  399. }
  400. ],
  401. "description": "Initialize Symfony Console commands from annotated command class methods.",
  402. "time": "2018-09-19T17:47:18+00:00"
  403. },
  404. {
  405. "name": "consolidation/config",
  406. "version": "1.1.1",
  407. "source": {
  408. "type": "git",
  409. "url": "https://github.com/consolidation/config.git",
  410. "reference": "925231dfff32f05b787e1fddb265e789b939cf4c"
  411. },
  412. "dist": {
  413. "type": "zip",
  414. "url": "https://api.github.com/repos/consolidation/config/zipball/925231dfff32f05b787e1fddb265e789b939cf4c",
  415. "reference": "925231dfff32f05b787e1fddb265e789b939cf4c",
  416. "shasum": ""
  417. },
  418. "require": {
  419. "dflydev/dot-access-data": "^1.1.0",
  420. "grasmash/expander": "^1",
  421. "php": ">=5.4.0"
  422. },
  423. "require-dev": {
  424. "g1a/composer-test-scenarios": "^1",
  425. "phpunit/phpunit": "^5",
  426. "satooshi/php-coveralls": "^1.0",
  427. "squizlabs/php_codesniffer": "2.*",
  428. "symfony/console": "^2.5|^3|^4",
  429. "symfony/yaml": "^2.8.11|^3|^4"
  430. },
  431. "suggest": {
  432. "symfony/yaml": "Required to use Consolidation\\Config\\Loader\\YamlConfigLoader"
  433. },
  434. "type": "library",
  435. "extra": {
  436. "branch-alias": {
  437. "dev-master": "1.x-dev"
  438. }
  439. },
  440. "autoload": {
  441. "psr-4": {
  442. "Consolidation\\Config\\": "src"
  443. }
  444. },
  445. "notification-url": "https://packagist.org/downloads/",
  446. "license": [
  447. "MIT"
  448. ],
  449. "authors": [
  450. {
  451. "name": "Greg Anderson",
  452. "email": "greg.1.anderson@greenknowe.org"
  453. }
  454. ],
  455. "description": "Provide configuration services for a commandline tool.",
  456. "time": "2018-10-24T17:55:35+00:00"
  457. },
  458. {
  459. "name": "consolidation/log",
  460. "version": "1.0.6",
  461. "source": {
  462. "type": "git",
  463. "url": "https://github.com/consolidation/log.git",
  464. "reference": "dfd8189a771fe047bf3cd669111b2de5f1c79395"
  465. },
  466. "dist": {
  467. "type": "zip",
  468. "url": "https://api.github.com/repos/consolidation/log/zipball/dfd8189a771fe047bf3cd669111b2de5f1c79395",
  469. "reference": "dfd8189a771fe047bf3cd669111b2de5f1c79395",
  470. "shasum": ""
  471. },
  472. "require": {
  473. "php": ">=5.5.0",
  474. "psr/log": "~1.0",
  475. "symfony/console": "^2.8|^3|^4"
  476. },
  477. "require-dev": {
  478. "g1a/composer-test-scenarios": "^1",
  479. "phpunit/phpunit": "4.*",
  480. "satooshi/php-coveralls": "^2",
  481. "squizlabs/php_codesniffer": "2.*"
  482. },
  483. "type": "library",
  484. "extra": {
  485. "branch-alias": {
  486. "dev-master": "1.x-dev"
  487. }
  488. },
  489. "autoload": {
  490. "psr-4": {
  491. "Consolidation\\Log\\": "src"
  492. }
  493. },
  494. "notification-url": "https://packagist.org/downloads/",
  495. "license": [
  496. "MIT"
  497. ],
  498. "authors": [
  499. {
  500. "name": "Greg Anderson",
  501. "email": "greg.1.anderson@greenknowe.org"
  502. }
  503. ],
  504. "description": "Improved Psr-3 / Psr\\Log logger based on Symfony Console components.",
  505. "time": "2018-05-25T18:14:39+00:00"
  506. },
  507. {
  508. "name": "consolidation/output-formatters",
  509. "version": "3.4.0",
  510. "source": {
  511. "type": "git",
  512. "url": "https://github.com/consolidation/output-formatters.git",
  513. "reference": "a942680232094c4a5b21c0b7e54c20cce623ae19"
  514. },
  515. "dist": {
  516. "type": "zip",
  517. "url": "https://api.github.com/repos/consolidation/output-formatters/zipball/a942680232094c4a5b21c0b7e54c20cce623ae19",
  518. "reference": "a942680232094c4a5b21c0b7e54c20cce623ae19",
  519. "shasum": ""
  520. },
  521. "require": {
  522. "dflydev/dot-access-data": "^1.1.0",
  523. "php": ">=5.4.0",
  524. "symfony/console": "^2.8|^3|^4",
  525. "symfony/finder": "^2.5|^3|^4"
  526. },
  527. "require-dev": {
  528. "g1a/composer-test-scenarios": "^2",
  529. "phpunit/phpunit": "^5.7.27",
  530. "satooshi/php-coveralls": "^2",
  531. "squizlabs/php_codesniffer": "^2.7",
  532. "symfony/console": "3.2.3",
  533. "symfony/var-dumper": "^2.8|^3|^4",
  534. "victorjonsson/markdowndocs": "^1.3"
  535. },
  536. "suggest": {
  537. "symfony/var-dumper": "For using the var_dump formatter"
  538. },
  539. "type": "library",
  540. "extra": {
  541. "branch-alias": {
  542. "dev-master": "3.x-dev"
  543. }
  544. },
  545. "autoload": {
  546. "psr-4": {
  547. "Consolidation\\OutputFormatters\\": "src"
  548. }
  549. },
  550. "notification-url": "https://packagist.org/downloads/",
  551. "license": [
  552. "MIT"
  553. ],
  554. "authors": [
  555. {
  556. "name": "Greg Anderson",
  557. "email": "greg.1.anderson@greenknowe.org"
  558. }
  559. ],
  560. "description": "Format text by applying transformations provided by plug-in formatters.",
  561. "time": "2018-10-19T22:35:38+00:00"
  562. },
  563. {
  564. "name": "consolidation/robo",
  565. "version": "1.3.1",
  566. "source": {
  567. "type": "git",
  568. "url": "https://github.com/consolidation/Robo.git",
  569. "reference": "31f2d2562c4e1dcde70f2659eefd59aa9c7f5b2d"
  570. },
  571. "dist": {
  572. "type": "zip",
  573. "url": "https://api.github.com/repos/consolidation/Robo/zipball/31f2d2562c4e1dcde70f2659eefd59aa9c7f5b2d",
  574. "reference": "31f2d2562c4e1dcde70f2659eefd59aa9c7f5b2d",
  575. "shasum": ""
  576. },
  577. "require": {
  578. "consolidation/annotated-command": "^2.8.2",
  579. "consolidation/config": "^1.0.10",
  580. "consolidation/log": "~1",
  581. "consolidation/output-formatters": "^3.1.13",
  582. "consolidation/self-update": "^1",
  583. "g1a/composer-test-scenarios": "^2",
  584. "grasmash/yaml-expander": "^1.3",
  585. "league/container": "^2.2",
  586. "php": ">=5.5.0",
  587. "symfony/console": "^2.8|^3|^4",
  588. "symfony/event-dispatcher": "^2.5|^3|^4",
  589. "symfony/filesystem": "^2.5|^3|^4",
  590. "symfony/finder": "^2.5|^3|^4",
  591. "symfony/process": "^2.5|^3|^4"
  592. },
  593. "replace": {
  594. "codegyre/robo": "< 1.0"
  595. },
  596. "require-dev": {
  597. "codeception/aspect-mock": "^1|^2.1.1",
  598. "codeception/base": "^2.3.7",
  599. "codeception/verify": "^0.3.2",
  600. "goaop/framework": "~2.1.2",
  601. "goaop/parser-reflection": "^1.1.0",
  602. "natxet/cssmin": "3.0.4",
  603. "nikic/php-parser": "^3.1.5",
  604. "patchwork/jsqueeze": "~2",
  605. "pear/archive_tar": "^1.4.2",
  606. "phpunit/php-code-coverage": "~2|~4",
  607. "satooshi/php-coveralls": "^2",
  608. "squizlabs/php_codesniffer": "^2.8"
  609. },
  610. "suggest": {
  611. "henrikbjorn/lurker": "For monitoring filesystem changes in taskWatch",
  612. "natxet/CssMin": "For minifying CSS files in taskMinify",
  613. "patchwork/jsqueeze": "For minifying JS files in taskMinify",
  614. "pear/archive_tar": "Allows tar archives to be created and extracted in taskPack and taskExtract, respectively."
  615. },
  616. "bin": [
  617. "robo"
  618. ],
  619. "type": "library",
  620. "extra": {
  621. "branch-alias": {
  622. "dev-master": "1.x-dev",
  623. "dev-state": "1.x-dev"
  624. }
  625. },
  626. "autoload": {
  627. "psr-4": {
  628. "Robo\\": "src"
  629. }
  630. },
  631. "notification-url": "https://packagist.org/downloads/",
  632. "license": [
  633. "MIT"
  634. ],
  635. "authors": [
  636. {
  637. "name": "Davert",
  638. "email": "davert.php@resend.cc"
  639. }
  640. ],
  641. "description": "Modern task runner",
  642. "time": "2018-08-17T18:44:18+00:00"
  643. },
  644. {
  645. "name": "consolidation/self-update",
  646. "version": "1.1.5",
  647. "source": {
  648. "type": "git",
  649. "url": "https://github.com/consolidation/self-update.git",
  650. "reference": "a1c273b14ce334789825a09d06d4c87c0a02ad54"
  651. },
  652. "dist": {
  653. "type": "zip",
  654. "url": "https://api.github.com/repos/consolidation/self-update/zipball/a1c273b14ce334789825a09d06d4c87c0a02ad54",
  655. "reference": "a1c273b14ce334789825a09d06d4c87c0a02ad54",
  656. "shasum": ""
  657. },
  658. "require": {
  659. "php": ">=5.5.0",
  660. "symfony/console": "^2.8|^3|^4",
  661. "symfony/filesystem": "^2.5|^3|^4"
  662. },
  663. "bin": [
  664. "scripts/release"
  665. ],
  666. "type": "library",
  667. "extra": {
  668. "branch-alias": {
  669. "dev-master": "1.x-dev"
  670. }
  671. },
  672. "autoload": {
  673. "psr-4": {
  674. "SelfUpdate\\": "src"
  675. }
  676. },
  677. "notification-url": "https://packagist.org/downloads/",
  678. "license": [
  679. "MIT"
  680. ],
  681. "authors": [
  682. {
  683. "name": "Greg Anderson",
  684. "email": "greg.1.anderson@greenknowe.org"
  685. },
  686. {
  687. "name": "Alexander Menk",
  688. "email": "menk@mestrona.net"
  689. }
  690. ],
  691. "description": "Provides a self:update command for Symfony Console applications.",
  692. "time": "2018-10-28T01:52:03+00:00"
  693. },
  694. {
  695. "name": "consolidation/site-alias",
  696. "version": "1.1.9",
  697. "source": {
  698. "type": "git",
  699. "url": "https://github.com/consolidation/site-alias.git",
  700. "reference": "0a4c49f91e44b0b7bb288f3547875a136a7ed704"
  701. },
  702. "dist": {
  703. "type": "zip",
  704. "url": "https://api.github.com/repos/consolidation/site-alias/zipball/0a4c49f91e44b0b7bb288f3547875a136a7ed704",
  705. "reference": "0a4c49f91e44b0b7bb288f3547875a136a7ed704",
  706. "shasum": ""
  707. },
  708. "require": {
  709. "php": ">=5.5.0"
  710. },
  711. "require-dev": {
  712. "consolidation/robo": "^1.2.3",
  713. "g1a/composer-test-scenarios": "^2",
  714. "knplabs/github-api": "^2.7",
  715. "php-http/guzzle6-adapter": "^1.1",
  716. "phpunit/phpunit": "^5",
  717. "satooshi/php-coveralls": "^2",
  718. "squizlabs/php_codesniffer": "^2.8",
  719. "symfony/console": "^2.8|^3|^4",
  720. "symfony/yaml": "~2.3|^3"
  721. },
  722. "type": "library",
  723. "extra": {
  724. "branch-alias": {
  725. "dev-master": "1.x-dev"
  726. }
  727. },
  728. "autoload": {
  729. "psr-4": {
  730. "Consolidation\\SiteAlias\\": "src"
  731. }
  732. },
  733. "notification-url": "https://packagist.org/downloads/",
  734. "license": [
  735. "MIT"
  736. ],
  737. "authors": [
  738. {
  739. "name": "Moshe Weitzman",
  740. "email": "weitzman@tejasa.com"
  741. },
  742. {
  743. "name": "Greg Anderson",
  744. "email": "greg.1.anderson@greenknowe.org"
  745. }
  746. ],
  747. "description": "Manage alias records for local and remote sites.",
  748. "time": "2018-10-31T01:29:05+00:00"
  749. },
  750. {
  751. "name": "container-interop/container-interop",
  752. "version": "1.2.0",
  753. "source": {
  754. "type": "git",
  755. "url": "https://github.com/container-interop/container-interop.git",
  756. "reference": "79cbf1341c22ec75643d841642dd5d6acd83bdb8"
  757. },
  758. "dist": {
  759. "type": "zip",
  760. "url": "https://api.github.com/repos/container-interop/container-interop/zipball/79cbf1341c22ec75643d841642dd5d6acd83bdb8",
  761. "reference": "79cbf1341c22ec75643d841642dd5d6acd83bdb8",
  762. "shasum": ""
  763. },
  764. "require": {
  765. "psr/container": "^1.0"
  766. },
  767. "type": "library",
  768. "autoload": {
  769. "psr-4": {
  770. "Interop\\Container\\": "src/Interop/Container/"
  771. }
  772. },
  773. "notification-url": "https://packagist.org/downloads/",
  774. "license": [
  775. "MIT"
  776. ],
  777. "description": "Promoting the interoperability of container objects (DIC, SL, etc.)",
  778. "homepage": "https://github.com/container-interop/container-interop",
  779. "time": "2017-02-14T19:40:03+00:00"
  780. },
  781. {
  782. "name": "cweagans/composer-patches",
  783. "version": "1.6.5",
  784. "source": {
  785. "type": "git",
  786. "url": "https://github.com/cweagans/composer-patches.git",
  787. "reference": "2ec4f00ff5fb64de584c8c4aea53bf9053ecb0b3"
  788. },
  789. "dist": {
  790. "type": "zip",
  791. "url": "https://api.github.com/repos/cweagans/composer-patches/zipball/2ec4f00ff5fb64de584c8c4aea53bf9053ecb0b3",
  792. "reference": "2ec4f00ff5fb64de584c8c4aea53bf9053ecb0b3",
  793. "shasum": ""
  794. },
  795. "require": {
  796. "composer-plugin-api": "^1.0",
  797. "php": ">=5.3.0"
  798. },
  799. "require-dev": {
  800. "composer/composer": "~1.0",
  801. "phpunit/phpunit": "~4.6"
  802. },
  803. "type": "composer-plugin",
  804. "extra": {
  805. "class": "cweagans\\Composer\\Patches"
  806. },
  807. "autoload": {
  808. "psr-4": {
  809. "cweagans\\Composer\\": "src"
  810. }
  811. },
  812. "notification-url": "https://packagist.org/downloads/",
  813. "license": [
  814. "BSD-3-Clause"
  815. ],
  816. "authors": [
  817. {
  818. "name": "Cameron Eagans",
  819. "email": "me@cweagans.net"
  820. }
  821. ],
  822. "description": "Provides a way to patch Composer packages.",
  823. "time": "2018-05-11T18:00:16+00:00"
  824. },
  825. {
  826. "name": "dflydev/dot-access-configuration",
  827. "version": "v1.0.3",
  828. "source": {
  829. "type": "git",
  830. "url": "https://github.com/dflydev/dflydev-dot-access-configuration.git",
  831. "reference": "2e6eb0c8b8830b26bb23defcfc38d4276508fc49"
  832. },
  833. "dist": {
  834. "type": "zip",
  835. "url": "https://api.github.com/repos/dflydev/dflydev-dot-access-configuration/zipball/2e6eb0c8b8830b26bb23defcfc38d4276508fc49",
  836. "reference": "2e6eb0c8b8830b26bb23defcfc38d4276508fc49",
  837. "shasum": ""
  838. },
  839. "require": {
  840. "dflydev/dot-access-data": "1.*",
  841. "dflydev/placeholder-resolver": "1.*",
  842. "php": ">=5.3.2"
  843. },
  844. "require-dev": {
  845. "symfony/yaml": "~2.1"
  846. },
  847. "suggest": {
  848. "symfony/yaml": "Required for using the YAML Configuration Builders"
  849. },
  850. "type": "library",
  851. "extra": {
  852. "branch-alias": {
  853. "dev-master": "1.0-dev"
  854. }
  855. },
  856. "autoload": {
  857. "psr-0": {
  858. "Dflydev\\DotAccessConfiguration": "src"
  859. }
  860. },
  861. "notification-url": "https://packagist.org/downloads/",
  862. "license": [
  863. "MIT"
  864. ],
  865. "authors": [
  866. {
  867. "name": "Dragonfly Development Inc.",
  868. "email": "info@dflydev.com",
  869. "homepage": "http://dflydev.com"
  870. },
  871. {
  872. "name": "Beau Simensen",
  873. "email": "beau@dflydev.com",
  874. "homepage": "http://beausimensen.com"
  875. }
  876. ],
  877. "description": "Given a deep data structure representing a configuration, access configuration by dot notation.",
  878. "homepage": "https://github.com/dflydev/dflydev-dot-access-configuration",
  879. "keywords": [
  880. "config",
  881. "configuration"
  882. ],
  883. "time": "2018-09-08T23:00:17+00:00"
  884. },
  885. {
  886. "name": "dflydev/dot-access-data",
  887. "version": "v1.1.0",
  888. "source": {
  889. "type": "git",
  890. "url": "https://github.com/dflydev/dflydev-dot-access-data.git",
  891. "reference": "3fbd874921ab2c041e899d044585a2ab9795df8a"
  892. },
  893. "dist": {
  894. "type": "zip",
  895. "url": "https://api.github.com/repos/dflydev/dflydev-dot-access-data/zipball/3fbd874921ab2c041e899d044585a2ab9795df8a",
  896. "reference": "3fbd874921ab2c041e899d044585a2ab9795df8a",
  897. "shasum": ""
  898. },
  899. "require": {
  900. "php": ">=5.3.2"
  901. },
  902. "type": "library",
  903. "extra": {
  904. "branch-alias": {
  905. "dev-master": "1.0-dev"
  906. }
  907. },
  908. "autoload": {
  909. "psr-0": {
  910. "Dflydev\\DotAccessData": "src"
  911. }
  912. },
  913. "notification-url": "https://packagist.org/downloads/",
  914. "license": [
  915. "MIT"
  916. ],
  917. "authors": [
  918. {
  919. "name": "Dragonfly Development Inc.",
  920. "email": "info@dflydev.com",
  921. "homepage": "http://dflydev.com"
  922. },
  923. {
  924. "name": "Beau Simensen",
  925. "email": "beau@dflydev.com",
  926. "homepage": "http://beausimensen.com"
  927. },
  928. {
  929. "name": "Carlos Frutos",
  930. "email": "carlos@kiwing.it",
  931. "homepage": "https://github.com/cfrutos"
  932. }
  933. ],
  934. "description": "Given a deep data structure, access data by dot notation.",
  935. "homepage": "https://github.com/dflydev/dflydev-dot-access-data",
  936. "keywords": [
  937. "access",
  938. "data",
  939. "dot",
  940. "notation"
  941. ],
  942. "time": "2017-01-20T21:14:22+00:00"
  943. },
  944. {
  945. "name": "dflydev/placeholder-resolver",
  946. "version": "v1.0.2",
  947. "source": {
  948. "type": "git",
  949. "url": "https://github.com/dflydev/dflydev-placeholder-resolver.git",
  950. "reference": "c498d0cae91b1bb36cc7d60906dab8e62bb7c356"
  951. },
  952. "dist": {
  953. "type": "zip",
  954. "url": "https://api.github.com/repos/dflydev/dflydev-placeholder-resolver/zipball/c498d0cae91b1bb36cc7d60906dab8e62bb7c356",
  955. "reference": "c498d0cae91b1bb36cc7d60906dab8e62bb7c356",
  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\\PlaceholderResolver": "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. "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.",
  989. "homepage": "https://github.com/dflydev/dflydev-placeholder-resolver",
  990. "keywords": [
  991. "placeholder",
  992. "resolver"
  993. ],
  994. "time": "2012-10-28T21:08:28+00:00"
  995. },
  996. {
  997. "name": "dnoegel/php-xdg-base-dir",
  998. "version": "0.1",
  999. "source": {
  1000. "type": "git",
  1001. "url": "https://github.com/dnoegel/php-xdg-base-dir.git",
  1002. "reference": "265b8593498b997dc2d31e75b89f053b5cc9621a"
  1003. },
  1004. "dist": {
  1005. "type": "zip",
  1006. "url": "https://api.github.com/repos/dnoegel/php-xdg-base-dir/zipball/265b8593498b997dc2d31e75b89f053b5cc9621a",
  1007. "reference": "265b8593498b997dc2d31e75b89f053b5cc9621a",
  1008. "shasum": ""
  1009. },
  1010. "require": {
  1011. "php": ">=5.3.2"
  1012. },
  1013. "require-dev": {
  1014. "phpunit/phpunit": "@stable"
  1015. },
  1016. "type": "project",
  1017. "autoload": {
  1018. "psr-4": {
  1019. "XdgBaseDir\\": "src/"
  1020. }
  1021. },
  1022. "notification-url": "https://packagist.org/downloads/",
  1023. "license": [
  1024. "MIT"
  1025. ],
  1026. "description": "implementation of xdg base directory specification for php",
  1027. "time": "2014-10-24T07:27:01+00:00"
  1028. },
  1029. {
  1030. "name": "doctrine/annotations",
  1031. "version": "v1.2.7",
  1032. "source": {
  1033. "type": "git",
  1034. "url": "https://github.com/doctrine/annotations.git",
  1035. "reference": "f25c8aab83e0c3e976fd7d19875f198ccf2f7535"
  1036. },
  1037. "dist": {
  1038. "type": "zip",
  1039. "url": "https://api.github.com/repos/doctrine/annotations/zipball/f25c8aab83e0c3e976fd7d19875f198ccf2f7535",
  1040. "reference": "f25c8aab83e0c3e976fd7d19875f198ccf2f7535",
  1041. "shasum": ""
  1042. },
  1043. "require": {
  1044. "doctrine/lexer": "1.*",
  1045. "php": ">=5.3.2"
  1046. },
  1047. "require-dev": {
  1048. "doctrine/cache": "1.*",
  1049. "phpunit/phpunit": "4.*"
  1050. },
  1051. "type": "library",
  1052. "extra": {
  1053. "branch-alias": {
  1054. "dev-master": "1.3.x-dev"
  1055. }
  1056. },
  1057. "autoload": {
  1058. "psr-0": {
  1059. "Doctrine\\Common\\Annotations\\": "lib/"
  1060. }
  1061. },
  1062. "notification-url": "https://packagist.org/downloads/",
  1063. "license": [
  1064. "MIT"
  1065. ],
  1066. "authors": [
  1067. {
  1068. "name": "Roman Borschel",
  1069. "email": "roman@code-factory.org"
  1070. },
  1071. {
  1072. "name": "Benjamin Eberlei",
  1073. "email": "kontakt@beberlei.de"
  1074. },
  1075. {
  1076. "name": "Guilherme Blanco",
  1077. "email": "guilhermeblanco@gmail.com"
  1078. },
  1079. {
  1080. "name": "Jonathan Wage",
  1081. "email": "jonwage@gmail.com"
  1082. },
  1083. {
  1084. "name": "Johannes Schmitt",
  1085. "email": "schmittjoh@gmail.com"
  1086. }
  1087. ],
  1088. "description": "Docblock Annotations Parser",
  1089. "homepage": "http://www.doctrine-project.org",
  1090. "keywords": [
  1091. "annotations",
  1092. "docblock",
  1093. "parser"
  1094. ],
  1095. "time": "2015-08-31T12:32:49+00:00"
  1096. },
  1097. {
  1098. "name": "doctrine/cache",
  1099. "version": "v1.6.2",
  1100. "source": {
  1101. "type": "git",
  1102. "url": "https://github.com/doctrine/cache.git",
  1103. "reference": "eb152c5100571c7a45470ff2a35095ab3f3b900b"
  1104. },
  1105. "dist": {
  1106. "type": "zip",
  1107. "url": "https://api.github.com/repos/doctrine/cache/zipball/eb152c5100571c7a45470ff2a35095ab3f3b900b",
  1108. "reference": "eb152c5100571c7a45470ff2a35095ab3f3b900b",
  1109. "shasum": ""
  1110. },
  1111. "require": {
  1112. "php": "~5.5|~7.0"
  1113. },
  1114. "conflict": {
  1115. "doctrine/common": ">2.2,<2.4"
  1116. },
  1117. "require-dev": {
  1118. "phpunit/phpunit": "~4.8|~5.0",
  1119. "predis/predis": "~1.0",
  1120. "satooshi/php-coveralls": "~0.6"
  1121. },
  1122. "type": "library",
  1123. "extra": {
  1124. "branch-alias": {
  1125. "dev-master": "1.6.x-dev"
  1126. }
  1127. },
  1128. "autoload": {
  1129. "psr-4": {
  1130. "Doctrine\\Common\\Cache\\": "lib/Doctrine/Common/Cache"
  1131. }
  1132. },
  1133. "notification-url": "https://packagist.org/downloads/",
  1134. "license": [
  1135. "MIT"
  1136. ],
  1137. "authors": [
  1138. {
  1139. "name": "Roman Borschel",
  1140. "email": "roman@code-factory.org"
  1141. },
  1142. {
  1143. "name": "Benjamin Eberlei",
  1144. "email": "kontakt@beberlei.de"
  1145. },
  1146. {
  1147. "name": "Guilherme Blanco",
  1148. "email": "guilhermeblanco@gmail.com"
  1149. },
  1150. {
  1151. "name": "Jonathan Wage",
  1152. "email": "jonwage@gmail.com"
  1153. },
  1154. {
  1155. "name": "Johannes Schmitt",
  1156. "email": "schmittjoh@gmail.com"
  1157. }
  1158. ],
  1159. "description": "Caching library offering an object-oriented API for many cache backends",
  1160. "homepage": "http://www.doctrine-project.org",
  1161. "keywords": [
  1162. "cache",
  1163. "caching"
  1164. ],
  1165. "time": "2017-07-22T12:49:21+00:00"
  1166. },
  1167. {
  1168. "name": "doctrine/collections",
  1169. "version": "v1.4.0",
  1170. "source": {
  1171. "type": "git",
  1172. "url": "https://github.com/doctrine/collections.git",
  1173. "reference": "1a4fb7e902202c33cce8c55989b945612943c2ba"
  1174. },
  1175. "dist": {
  1176. "type": "zip",
  1177. "url": "https://api.github.com/repos/doctrine/collections/zipball/1a4fb7e902202c33cce8c55989b945612943c2ba",
  1178. "reference": "1a4fb7e902202c33cce8c55989b945612943c2ba",
  1179. "shasum": ""
  1180. },
  1181. "require": {
  1182. "php": "^5.6 || ^7.0"
  1183. },
  1184. "require-dev": {
  1185. "doctrine/coding-standard": "~0.1@dev",
  1186. "phpunit/phpunit": "^5.7"
  1187. },
  1188. "type": "library",
  1189. "extra": {
  1190. "branch-alias": {
  1191. "dev-master": "1.3.x-dev"
  1192. }
  1193. },
  1194. "autoload": {
  1195. "psr-0": {
  1196. "Doctrine\\Common\\Collections\\": "lib/"
  1197. }
  1198. },
  1199. "notification-url": "https://packagist.org/downloads/",
  1200. "license": [
  1201. "MIT"
  1202. ],
  1203. "authors": [
  1204. {
  1205. "name": "Roman Borschel",
  1206. "email": "roman@code-factory.org"
  1207. },
  1208. {
  1209. "name": "Benjamin Eberlei",
  1210. "email": "kontakt@beberlei.de"
  1211. },
  1212. {
  1213. "name": "Guilherme Blanco",
  1214. "email": "guilhermeblanco@gmail.com"
  1215. },
  1216. {
  1217. "name": "Jonathan Wage",
  1218. "email": "jonwage@gmail.com"
  1219. },
  1220. {
  1221. "name": "Johannes Schmitt",
  1222. "email": "schmittjoh@gmail.com"
  1223. }
  1224. ],
  1225. "description": "Collections Abstraction library",
  1226. "homepage": "http://www.doctrine-project.org",
  1227. "keywords": [
  1228. "array",
  1229. "collections",
  1230. "iterator"
  1231. ],
  1232. "time": "2017-01-03T10:49:41+00:00"
  1233. },
  1234. {
  1235. "name": "doctrine/common",
  1236. "version": "v2.7.3",
  1237. "source": {
  1238. "type": "git",
  1239. "url": "https://github.com/doctrine/common.git",
  1240. "reference": "4acb8f89626baafede6ee5475bc5844096eba8a9"
  1241. },
  1242. "dist": {
  1243. "type": "zip",
  1244. "url": "https://api.github.com/repos/doctrine/common/zipball/4acb8f89626baafede6ee5475bc5844096eba8a9",
  1245. "reference": "4acb8f89626baafede6ee5475bc5844096eba8a9",
  1246. "shasum": ""
  1247. },
  1248. "require": {
  1249. "doctrine/annotations": "1.*",
  1250. "doctrine/cache": "1.*",
  1251. "doctrine/collections": "1.*",
  1252. "doctrine/inflector": "1.*",
  1253. "doctrine/lexer": "1.*",
  1254. "php": "~5.6|~7.0"
  1255. },
  1256. "require-dev": {
  1257. "phpunit/phpunit": "^5.4.6"
  1258. },
  1259. "type": "library",
  1260. "extra": {
  1261. "branch-alias": {
  1262. "dev-master": "2.7.x-dev"
  1263. }
  1264. },
  1265. "autoload": {
  1266. "psr-4": {
  1267. "Doctrine\\Common\\": "lib/Doctrine/Common"
  1268. }
  1269. },
  1270. "notification-url": "https://packagist.org/downloads/",
  1271. "license": [
  1272. "MIT"
  1273. ],
  1274. "authors": [
  1275. {
  1276. "name": "Roman Borschel",
  1277. "email": "roman@code-factory.org"
  1278. },
  1279. {
  1280. "name": "Benjamin Eberlei",
  1281. "email": "kontakt@beberlei.de"
  1282. },
  1283. {
  1284. "name": "Guilherme Blanco",
  1285. "email": "guilhermeblanco@gmail.com"
  1286. },
  1287. {
  1288. "name": "Jonathan Wage",
  1289. "email": "jonwage@gmail.com"
  1290. },
  1291. {
  1292. "name": "Johannes Schmitt",
  1293. "email": "schmittjoh@gmail.com"
  1294. }
  1295. ],
  1296. "description": "Common Library for Doctrine projects",
  1297. "homepage": "http://www.doctrine-project.org",
  1298. "keywords": [
  1299. "annotations",
  1300. "collections",
  1301. "eventmanager",
  1302. "persistence",
  1303. "spl"
  1304. ],
  1305. "time": "2017-07-22T08:35:12+00:00"
  1306. },
  1307. {
  1308. "name": "doctrine/inflector",
  1309. "version": "v1.2.0",
  1310. "source": {
  1311. "type": "git",
  1312. "url": "https://github.com/doctrine/inflector.git",
  1313. "reference": "e11d84c6e018beedd929cff5220969a3c6d1d462"
  1314. },
  1315. "dist": {
  1316. "type": "zip",
  1317. "url": "https://api.github.com/repos/doctrine/inflector/zipball/e11d84c6e018beedd929cff5220969a3c6d1d462",
  1318. "reference": "e11d84c6e018beedd929cff5220969a3c6d1d462",
  1319. "shasum": ""
  1320. },
  1321. "require": {
  1322. "php": "^7.0"
  1323. },
  1324. "require-dev": {
  1325. "phpunit/phpunit": "^6.2"
  1326. },
  1327. "type": "library",
  1328. "extra": {
  1329. "branch-alias": {
  1330. "dev-master": "1.2.x-dev"
  1331. }
  1332. },
  1333. "autoload": {
  1334. "psr-4": {
  1335. "Doctrine\\Common\\Inflector\\": "lib/Doctrine/Common/Inflector"
  1336. }
  1337. },
  1338. "notification-url": "https://packagist.org/downloads/",
  1339. "license": [
  1340. "MIT"
  1341. ],
  1342. "authors": [
  1343. {
  1344. "name": "Roman Borschel",
  1345. "email": "roman@code-factory.org"
  1346. },
  1347. {
  1348. "name": "Benjamin Eberlei",
  1349. "email": "kontakt@beberlei.de"
  1350. },
  1351. {
  1352. "name": "Guilherme Blanco",
  1353. "email": "guilhermeblanco@gmail.com"
  1354. },
  1355. {
  1356. "name": "Jonathan Wage",
  1357. "email": "jonwage@gmail.com"
  1358. },
  1359. {
  1360. "name": "Johannes Schmitt",
  1361. "email": "schmittjoh@gmail.com"
  1362. }
  1363. ],
  1364. "description": "Common String Manipulations with regard to casing and singular/plural rules.",
  1365. "homepage": "http://www.doctrine-project.org",
  1366. "keywords": [
  1367. "inflection",
  1368. "pluralize",
  1369. "singularize",
  1370. "string"
  1371. ],
  1372. "time": "2017-07-22T12:18:28+00:00"
  1373. },
  1374. {
  1375. "name": "doctrine/lexer",
  1376. "version": "v1.0.1",
  1377. "source": {
  1378. "type": "git",
  1379. "url": "https://github.com/doctrine/lexer.git",
  1380. "reference": "83893c552fd2045dd78aef794c31e694c37c0b8c"
  1381. },
  1382. "dist": {
  1383. "type": "zip",
  1384. "url": "https://api.github.com/repos/doctrine/lexer/zipball/83893c552fd2045dd78aef794c31e694c37c0b8c",
  1385. "reference": "83893c552fd2045dd78aef794c31e694c37c0b8c",
  1386. "shasum": ""
  1387. },
  1388. "require": {
  1389. "php": ">=5.3.2"
  1390. },
  1391. "type": "library",
  1392. "extra": {
  1393. "branch-alias": {
  1394. "dev-master": "1.0.x-dev"
  1395. }
  1396. },
  1397. "autoload": {
  1398. "psr-0": {
  1399. "Doctrine\\Common\\Lexer\\": "lib/"
  1400. }
  1401. },
  1402. "notification-url": "https://packagist.org/downloads/",
  1403. "license": [
  1404. "MIT"
  1405. ],
  1406. "authors": [
  1407. {
  1408. "name": "Roman Borschel",
  1409. "email": "roman@code-factory.org"
  1410. },
  1411. {
  1412. "name": "Guilherme Blanco",
  1413. "email": "guilhermeblanco@gmail.com"
  1414. },
  1415. {
  1416. "name": "Johannes Schmitt",
  1417. "email": "schmittjoh@gmail.com"
  1418. }
  1419. ],
  1420. "description": "Base library for a lexer that can be used in Top-Down, Recursive Descent Parsers.",
  1421. "homepage": "http://www.doctrine-project.org",
  1422. "keywords": [
  1423. "lexer",
  1424. "parser"
  1425. ],
  1426. "time": "2014-09-09T13:34:57+00:00"
  1427. },
  1428. {
  1429. "name": "drupal/actions_permissions",
  1430. "version": "2.4.0",
  1431. "require": {
  1432. "drupal/core": "*",
  1433. "drupal/views_bulk_operations": "self.version"
  1434. },
  1435. "type": "metapackage",
  1436. "extra": {
  1437. "branch-alias": {
  1438. "dev-2.x": "2.x-dev"
  1439. },
  1440. "drupal": {
  1441. "version": "8.x-2.4",
  1442. "datestamp": "1530516821",
  1443. "security-coverage": {
  1444. "status": "covered",
  1445. "message": "Covered by Drupal's security advisory policy"
  1446. }
  1447. }
  1448. },
  1449. "notification-url": "https://packages.drupal.org/8/downloads",
  1450. "license": [
  1451. "GPL-2.0-or-later"
  1452. ],
  1453. "authors": [
  1454. {
  1455. "name": "Graber",
  1456. "homepage": "https://www.drupal.org/user/1599440"
  1457. },
  1458. {
  1459. "name": "Jon Pugh",
  1460. "homepage": "https://www.drupal.org/user/17028"
  1461. },
  1462. {
  1463. "name": "bojanz",
  1464. "homepage": "https://www.drupal.org/user/86106"
  1465. },
  1466. {
  1467. "name": "infojunkie",
  1468. "homepage": "https://www.drupal.org/user/48424"
  1469. },
  1470. {
  1471. "name": "joelpittet",
  1472. "homepage": "https://www.drupal.org/user/160302"
  1473. }
  1474. ],
  1475. "description": "Adds access permissions on all actions allowing admins to restrict access on a per-role basis.",
  1476. "homepage": "https://www.drupal.org/project/views_bulk_operations",
  1477. "support": {
  1478. "source": "http://cgit.drupalcode.org/views_bulk_operations"
  1479. }
  1480. },
  1481. {
  1482. "name": "drupal/admin_toolbar",
  1483. "version": "1.24.0",
  1484. "source": {
  1485. "type": "git",
  1486. "url": "https://git.drupal.org/project/admin_toolbar",
  1487. "reference": "8.x-1.24"
  1488. },
  1489. "dist": {
  1490. "type": "zip",
  1491. "url": "https://ftp.drupal.org/files/projects/admin_toolbar-8.x-1.24.zip",
  1492. "reference": "8.x-1.24",
  1493. "shasum": "682ffa443a1e339583022eb6adbb00c1103ea6d4"
  1494. },
  1495. "require": {
  1496. "drupal/core": "*"
  1497. },
  1498. "type": "drupal-module",
  1499. "extra": {
  1500. "branch-alias": {
  1501. "dev-1.x": "1.x-dev"
  1502. },
  1503. "drupal": {
  1504. "version": "8.x-1.24",
  1505. "datestamp": "1527523080",
  1506. "security-coverage": {
  1507. "status": "covered",
  1508. "message": "Covered by Drupal's security advisory policy"
  1509. }
  1510. }
  1511. },
  1512. "notification-url": "https://packages.drupal.org/8/downloads",
  1513. "license": [
  1514. "GPL-2.0+"
  1515. ],
  1516. "authors": [
  1517. {
  1518. "name": "Wilfrid Roze (eme)",
  1519. "homepage": "https://www.drupal.org/u/eme",
  1520. "role": "Maintainer"
  1521. },
  1522. {
  1523. "name": "Romain Jarraud (romainj)",
  1524. "homepage": "https://www.drupal.org/u/romainj",
  1525. "role": "Maintainer"
  1526. },
  1527. {
  1528. "name": "Adrian Cid Almaguer (adriancid)",
  1529. "homepage": "https://www.drupal.org/u/adriancid",
  1530. "email": "adriancid@gmail.com",
  1531. "role": "Maintainer"
  1532. },
  1533. {
  1534. "name": "Mohamed Anis Taktak (matio89)",
  1535. "homepage": "https://www.drupal.org/u/matio89",
  1536. "role": "Maintainer"
  1537. },
  1538. {
  1539. "name": "fethi.krout",
  1540. "homepage": "https://www.drupal.org/user/3206765"
  1541. },
  1542. {
  1543. "name": "matio89",
  1544. "homepage": "https://www.drupal.org/user/2320090"
  1545. },
  1546. {
  1547. "name": "romainj",
  1548. "homepage": "https://www.drupal.org/user/370706"
  1549. }
  1550. ],
  1551. "description": "Provides a drop-down menu interface to the core Drupal Toolbar.",
  1552. "homepage": "http://drupal.org/project/admin_toolbar",
  1553. "keywords": [
  1554. "Drupal",
  1555. "Toolbar"
  1556. ],
  1557. "support": {
  1558. "source": "http://cgit.drupalcode.org/admin_toolbar",
  1559. "issues": "https://www.drupal.org/project/issues/admin_toolbar"
  1560. }
  1561. },
  1562. {
  1563. "name": "drupal/adminimal_theme",
  1564. "version": "1.3.0",
  1565. "source": {
  1566. "type": "git",
  1567. "url": "https://git.drupal.org/project/adminimal_theme",
  1568. "reference": "8.x-1.3"
  1569. },
  1570. "dist": {
  1571. "type": "zip",
  1572. "url": "https://ftp.drupal.org/files/projects/adminimal_theme-8.x-1.3.zip",
  1573. "reference": "8.x-1.3",
  1574. "shasum": "bb9f280bcdbd7e4d384a925c685a2aa1feed8419"
  1575. },
  1576. "require": {
  1577. "drupal/core": "~8.0"
  1578. },
  1579. "type": "drupal-theme",
  1580. "extra": {
  1581. "branch-alias": {
  1582. "dev-1.x": "1.x-dev"
  1583. },
  1584. "drupal": {
  1585. "version": "8.x-1.3",
  1586. "datestamp": "1480507083",
  1587. "security-coverage": {
  1588. "status": "covered",
  1589. "message": "Covered by Drupal's security advisory policy"
  1590. }
  1591. }
  1592. },
  1593. "notification-url": "https://packages.drupal.org/8/downloads",
  1594. "license": [
  1595. "GPL-2.0-or-later"
  1596. ],
  1597. "authors": [
  1598. {
  1599. "name": "ANDiTKO",
  1600. "homepage": "https://www.drupal.org/user/1428124"
  1601. },
  1602. {
  1603. "name": "realityloop",
  1604. "homepage": "https://www.drupal.org/user/139189"
  1605. }
  1606. ],
  1607. "description": "Drupal administration theme with modern minimalist design.",
  1608. "homepage": "https://www.drupal.org/project/adminimal_theme",
  1609. "support": {
  1610. "source": "http://cgit.drupalcode.org/adminimal_theme"
  1611. }
  1612. },
  1613. {
  1614. "name": "drupal/advanced_text_formatter",
  1615. "version": "1.0.0-beta3",
  1616. "source": {
  1617. "type": "git",
  1618. "url": "https://git.drupal.org/project/advanced_text_formatter",
  1619. "reference": "8.x-1.0-beta3"
  1620. },
  1621. "dist": {
  1622. "type": "zip",
  1623. "url": "https://ftp.drupal.org/files/projects/advanced_text_formatter-8.x-1.0-beta3.zip",
  1624. "reference": "8.x-1.0-beta3",
  1625. "shasum": "35e0154440ba7836dda70b8627f156872da75302"
  1626. },
  1627. "require": {
  1628. "drupal/core": "*"
  1629. },
  1630. "type": "drupal-module",
  1631. "extra": {
  1632. "branch-alias": {
  1633. "dev-1.x": "1.x-dev"
  1634. },
  1635. "drupal": {
  1636. "version": "8.x-1.0-beta3",
  1637. "datestamp": "1445163539",
  1638. "security-coverage": {
  1639. "status": "not-covered",
  1640. "message": "Beta releases are not covered by Drupal security advisories."
  1641. }
  1642. }
  1643. },
  1644. "notification-url": "https://packages.drupal.org/8/downloads",
  1645. "license": [
  1646. "GPL-2.0-or-later"
  1647. ],
  1648. "authors": [
  1649. {
  1650. "name": "thmnhat",
  1651. "homepage": "https://www.drupal.org/user/998946"
  1652. }
  1653. ],
  1654. "description": "Provides an additional formatter for text field, text area and text format.",
  1655. "homepage": "https://www.drupal.org/project/advanced_text_formatter",
  1656. "support": {
  1657. "source": "http://cgit.drupalcode.org/advanced_text_formatter"
  1658. }
  1659. },
  1660. {
  1661. "name": "drupal/audiofield",
  1662. "version": "1.6.0",
  1663. "source": {
  1664. "type": "git",
  1665. "url": "https://git.drupal.org/project/audiofield",
  1666. "reference": "8.x-1.6"
  1667. },
  1668. "dist": {
  1669. "type": "zip",
  1670. "url": "https://ftp.drupal.org/files/projects/audiofield-8.x-1.6.zip",
  1671. "reference": "8.x-1.6",
  1672. "shasum": "bd63641c2ed9e9774b82423bf03c95540b395126"
  1673. },
  1674. "require": {
  1675. "drupal/core": "~8.0"
  1676. },
  1677. "type": "drupal-module",
  1678. "extra": {
  1679. "branch-alias": {
  1680. "dev-1.x": "1.x-dev"
  1681. },
  1682. "drupal": {
  1683. "version": "8.x-1.6",
  1684. "datestamp": "1514414884",
  1685. "security-coverage": {
  1686. "status": "covered",
  1687. "message": "Covered by Drupal's security advisory policy"
  1688. }
  1689. }
  1690. },
  1691. "notification-url": "https://packages.drupal.org/8/downloads",
  1692. "license": [
  1693. "GPL-2.0+"
  1694. ],
  1695. "authors": [
  1696. {
  1697. "name": "Daniel Moberly",
  1698. "homepage": "https://www.drupal.org/u/danielmoberly",
  1699. "role": "Maintainer"
  1700. },
  1701. {
  1702. "name": "josipsaric",
  1703. "homepage": "https://www.drupal.org/user/3063287"
  1704. },
  1705. {
  1706. "name": "msajko",
  1707. "homepage": "https://www.drupal.org/user/3483723"
  1708. },
  1709. {
  1710. "name": "tamerzg",
  1711. "homepage": "https://www.drupal.org/user/464564"
  1712. }
  1713. ],
  1714. "description": "AudioField Module",
  1715. "homepage": "https://www.drupal.org/project/audiofield",
  1716. "support": {
  1717. "source": "http://cgit.drupalcode.org/audiofield",
  1718. "issues": "https://www.drupal.org/project/issues/audiofield"
  1719. }
  1720. },
  1721. {
  1722. "name": "drupal/autocomplete_deluxe",
  1723. "version": "1.0.0-beta1",
  1724. "source": {
  1725. "type": "git",
  1726. "url": "https://git.drupal.org/project/autocomplete_deluxe",
  1727. "reference": "8.x-1.0-beta1"
  1728. },
  1729. "dist": {
  1730. "type": "zip",
  1731. "url": "https://ftp.drupal.org/files/projects/autocomplete_deluxe-8.x-1.0-beta1.zip",
  1732. "reference": "8.x-1.0-beta1",
  1733. "shasum": "f59d928761a01a055c2240155a84b1d7286fe666"
  1734. },
  1735. "require": {
  1736. "drupal/core": "~8.0"
  1737. },
  1738. "type": "drupal-module",
  1739. "extra": {
  1740. "branch-alias": {
  1741. "dev-1.x": "1.x-dev"
  1742. },
  1743. "drupal": {
  1744. "version": "8.x-1.0-beta1",
  1745. "datestamp": "1502921644",
  1746. "security-coverage": {
  1747. "status": "not-covered",
  1748. "message": "Beta releases are not covered by Drupal security advisories."
  1749. }
  1750. }
  1751. },
  1752. "notification-url": "https://packages.drupal.org/8/downloads",
  1753. "license": [
  1754. "GPL-2.0+"
  1755. ],
  1756. "authors": [
  1757. {
  1758. "name": "Edward Chan",
  1759. "homepage": "https://www.drupal.org/user/1781334"
  1760. },
  1761. {
  1762. "name": "edwardchiapet",
  1763. "homepage": "https://www.drupal.org/user/2354784"
  1764. },
  1765. {
  1766. "name": "mpriscella",
  1767. "homepage": "https://www.drupal.org/user/2354820"
  1768. },
  1769. {
  1770. "name": "sepgil",
  1771. "homepage": "https://www.drupal.org/user/512828"
  1772. }
  1773. ],
  1774. "description": "Enhanced autocomplete using Jquery UI autocomplete.",
  1775. "homepage": "https://www.drupal.org/sandbox/edwardchan/2888186",
  1776. "support": {
  1777. "source": "http://cgit.drupalcode.org/autocomplete_deluxe",
  1778. "issues": "https://www.drupal.org/project/issues/2888186"
  1779. }
  1780. },
  1781. {
  1782. "name": "drupal/autologout",
  1783. "version": "1.0.0",
  1784. "source": {
  1785. "type": "git",
  1786. "url": "https://git.drupal.org/project/autologout",
  1787. "reference": "8.x-1.0"
  1788. },
  1789. "dist": {
  1790. "type": "zip",
  1791. "url": "https://ftp.drupal.org/files/projects/autologout-8.x-1.0.zip",
  1792. "reference": "8.x-1.0",
  1793. "shasum": "0a5f67d4393b0acdf8522b1b1a5c9eb40bb05d93"
  1794. },
  1795. "require": {
  1796. "drupal/core": "~8.0"
  1797. },
  1798. "type": "drupal-module",
  1799. "extra": {
  1800. "branch-alias": {
  1801. "dev-1.x": "1.x-dev"
  1802. },
  1803. "drupal": {
  1804. "version": "8.x-1.0",
  1805. "datestamp": "1494237185",
  1806. "security-coverage": {
  1807. "status": "covered",
  1808. "message": "Covered by Drupal's security advisory policy"
  1809. }
  1810. }
  1811. },
  1812. "notification-url": "https://packages.drupal.org/8/downloads",
  1813. "license": [
  1814. "GPL-2.0+"
  1815. ],
  1816. "authors": [
  1817. {
  1818. "name": "AjK",
  1819. "homepage": "https://www.drupal.org/user/39030"
  1820. },
  1821. {
  1822. "name": "AjitS",
  1823. "homepage": "https://www.drupal.org/user/981944"
  1824. },
  1825. {
  1826. "name": "dandrews",
  1827. "homepage": "https://www.drupal.org/user/2014490"
  1828. },
  1829. {
  1830. "name": "johnennew",
  1831. "homepage": "https://www.drupal.org/user/1150042"
  1832. },
  1833. {
  1834. "name": "jrglasgow",
  1835. "homepage": "https://www.drupal.org/user/36590"
  1836. },
  1837. {
  1838. "name": "kmasood",
  1839. "homepage": "https://www.drupal.org/user/1262860"
  1840. },
  1841. {
  1842. "name": "levelos",
  1843. "homepage": "https://www.drupal.org/user/54135"
  1844. },
  1845. {
  1846. "name": "prabeen.giri",
  1847. "homepage": "https://www.drupal.org/user/913078"
  1848. },
  1849. {
  1850. "name": "str8",
  1851. "homepage": "https://www.drupal.org/user/2865063"
  1852. }
  1853. ],
  1854. "description": "Adds automated timed logout.",
  1855. "homepage": "http://drupal.org/project/autologout",
  1856. "support": {
  1857. "source": "http://cgit.drupalcode.org/autologout"
  1858. }
  1859. },
  1860. {
  1861. "name": "drupal/better_exposed_filters",
  1862. "version": "3.0.0-alpha5",
  1863. "source": {
  1864. "type": "git",
  1865. "url": "https://git.drupal.org/project/better_exposed_filters",
  1866. "reference": "8.x-3.0-alpha5"
  1867. },
  1868. "dist": {
  1869. "type": "zip",
  1870. "url": "https://ftp.drupal.org/files/projects/better_exposed_filters-8.x-3.0-alpha5.zip",
  1871. "reference": "8.x-3.0-alpha5",
  1872. "shasum": "8dbcff4b3bcd24f753d5d1ba6a523442a3690a76"
  1873. },
  1874. "require": {
  1875. "drupal/core": "*"
  1876. },
  1877. "type": "drupal-module",
  1878. "extra": {
  1879. "branch-alias": {
  1880. "dev-3.x": "3.x-dev"
  1881. },
  1882. "drupal": {
  1883. "version": "8.x-3.0-alpha5",
  1884. "datestamp": "1540513084",
  1885. "security-coverage": {
  1886. "status": "not-covered",
  1887. "message": "Alpha releases are not covered by Drupal security advisories."
  1888. }
  1889. }
  1890. },
  1891. "notification-url": "https://packages.drupal.org/8/downloads",
  1892. "license": [
  1893. "GPL-2.0-or-later"
  1894. ],
  1895. "authors": [
  1896. {
  1897. "name": "chr.fritsch",
  1898. "homepage": "https://www.drupal.org/user/2103716"
  1899. },
  1900. {
  1901. "name": "jkopel",
  1902. "homepage": "https://www.drupal.org/user/66207"
  1903. },
  1904. {
  1905. "name": "mikeker",
  1906. "homepage": "https://www.drupal.org/user/192273"
  1907. },
  1908. {
  1909. "name": "mortona2k",
  1910. "homepage": "https://www.drupal.org/user/1029484"
  1911. },
  1912. {
  1913. "name": "rlhawk",
  1914. "homepage": "https://www.drupal.org/user/352283"
  1915. }
  1916. ],
  1917. "description": "Provides advanced options (such as links, checkboxes, or jQueryUI widgets) for exposed Views elements.",
  1918. "homepage": "https://www.drupal.org/project/better_exposed_filters",
  1919. "support": {
  1920. "source": "http://cgit.drupalcode.org/better_exposed_filters"
  1921. }
  1922. },
  1923. {
  1924. "name": "drupal/better_messages",
  1925. "version": "1.0.0-alpha2",
  1926. "source": {
  1927. "type": "git",
  1928. "url": "https://git.drupal.org/project/better_messages",
  1929. "reference": "8.x-1.0-alpha2"
  1930. },
  1931. "dist": {
  1932. "type": "zip",
  1933. "url": "https://ftp.drupal.org/files/projects/better_messages-8.x-1.0-alpha2.zip",
  1934. "reference": "8.x-1.0-alpha2",
  1935. "shasum": "ca09231502d5e0d8a5c0d16f9efc5430091b8a38"
  1936. },
  1937. "require": {
  1938. "drupal/core": "~8.0"
  1939. },
  1940. "type": "drupal-module",
  1941. "extra": {
  1942. "branch-alias": {
  1943. "dev-1.x": "1.x-dev"
  1944. },
  1945. "drupal": {
  1946. "version": "8.x-1.0-alpha2",
  1947. "datestamp": "1517663880",
  1948. "security-coverage": {
  1949. "status": "not-covered",
  1950. "message": "Alpha releases are not covered by Drupal security advisories."
  1951. }
  1952. }
  1953. },
  1954. "notification-url": "https://packages.drupal.org/8/downloads",
  1955. "license": [
  1956. "GPL-2.0-or-later"
  1957. ],
  1958. "authors": [
  1959. {
  1960. "name": "Mohammed J. Razem",
  1961. "homepage": "https://www.drupal.org/user/255384"
  1962. },
  1963. {
  1964. "name": "bucefal91",
  1965. "homepage": "https://www.drupal.org/user/504128"
  1966. },
  1967. {
  1968. "name": "le72",
  1969. "homepage": "https://www.drupal.org/user/1866896"
  1970. }
  1971. ],
  1972. "description": "Better Messages module for Drupal 8.",
  1973. "homepage": "https://www.drupal.org/project/better_messages",
  1974. "support": {
  1975. "source": "http://cgit.drupalcode.org/better_messages"
  1976. }
  1977. },
  1978. {
  1979. "name": "drupal/betterlogin",
  1980. "version": "1.2.0",
  1981. "source": {
  1982. "type": "git",
  1983. "url": "https://git.drupal.org/project/betterlogin",
  1984. "reference": "8.x-1.2"
  1985. },
  1986. "dist": {
  1987. "type": "zip",
  1988. "url": "https://ftp.drupal.org/files/projects/betterlogin-8.x-1.2.zip",
  1989. "reference": "8.x-1.2",
  1990. "shasum": "6b9ab142bf563685346d2b4e2db46ada209ed6ad"
  1991. },
  1992. "require": {
  1993. "drupal/core": "~8.0"
  1994. },
  1995. "type": "drupal-module",
  1996. "extra": {
  1997. "branch-alias": {
  1998. "dev-1.x": "1.x-dev"
  1999. },
  2000. "drupal": {
  2001. "version": "8.x-1.2",
  2002. "datestamp": "1515587585",
  2003. "security-coverage": {
  2004. "status": "covered",
  2005. "message": "Covered by Drupal's security advisory policy"
  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": "Yogesh Pawar",
  2016. "homepage": "https://www.drupal.org/user/2922907"
  2017. },
  2018. {
  2019. "name": "theamoeba",
  2020. "homepage": "https://www.drupal.org/user/251700"
  2021. }
  2022. ],
  2023. "description": "Make the login screens better :)",
  2024. "homepage": "https://www.drupal.org/project/betterlogin",
  2025. "support": {
  2026. "source": "http://cgit.drupalcode.org/betterlogin"
  2027. }
  2028. },
  2029. {
  2030. "name": "drupal/block_class",
  2031. "version": "1.0.0",
  2032. "source": {
  2033. "type": "git",
  2034. "url": "https://git.drupal.org/project/block_class",
  2035. "reference": "8.x-1.0"
  2036. },
  2037. "dist": {
  2038. "type": "zip",
  2039. "url": "https://ftp.drupal.org/files/projects/block_class-8.x-1.0.zip",
  2040. "reference": "8.x-1.0",
  2041. "shasum": "1a691999d051a3c010c2b6f2df73954ee02f424d"
  2042. },
  2043. "require": {
  2044. "drupal/core": "*"
  2045. },
  2046. "type": "drupal-module",
  2047. "extra": {
  2048. "branch-alias": {
  2049. "dev-1.x": "1.x-dev"
  2050. },
  2051. "drupal": {
  2052. "version": "8.x-1.0",
  2053. "datestamp": "1531440821",
  2054. "security-coverage": {
  2055. "status": "covered",
  2056. "message": "Covered by Drupal's security advisory policy"
  2057. }
  2058. }
  2059. },
  2060. "notification-url": "https://packages.drupal.org/8/downloads",
  2061. "license": [
  2062. "GPL-2.0+"
  2063. ],
  2064. "authors": [
  2065. {
  2066. "name": "Todd Nienkerk",
  2067. "homepage": "https://www.drupal.org/u/todd-nienkerk",
  2068. "role": "Maintainer"
  2069. },
  2070. {
  2071. "name": "Renato Gonçalves (RenatoG)",
  2072. "homepage": "https://www.drupal.org/u/RenatoG",
  2073. "email": "renatog@ciandt.com",
  2074. "role": "Maintainer"
  2075. },
  2076. {
  2077. "name": "Aaron Stanush",
  2078. "homepage": "https://www.drupal.org/u/aaron-stanush",
  2079. "role": "Maintainer"
  2080. },
  2081. {
  2082. "name": "David Suissa (DYdave)",
  2083. "homepage": "https://www.drupal.org/u/DYdave",
  2084. "role": "Maintainer"
  2085. },
  2086. {
  2087. "name": "Four Kitchens",
  2088. "homepage": "https://www.drupal.org/user/358502",
  2089. "role": "Maintainer"
  2090. },
  2091. {
  2092. "name": "berenddeboer",
  2093. "homepage": "https://www.drupal.org/u/berenddeboer",
  2094. "role": "Maintainer"
  2095. },
  2096. {
  2097. "name": "elliotttf",
  2098. "homepage": "https://www.drupal.org/u/elliotttf",
  2099. "role": "Maintainer"
  2100. },
  2101. {
  2102. "name": "Michal Minecki (mirzu)",
  2103. "homepage": "https://www.drupal.org/u/mirzu",
  2104. "role": "Maintainer"
  2105. },
  2106. {
  2107. "name": "Patrick Coffey (pcoffey)",
  2108. "homepage": "https://www.drupal.org/u/pcoffey",
  2109. "role": "Maintainer"
  2110. },
  2111. {
  2112. "name": "Taylor Smith (tsmith512)",
  2113. "homepage": "https://www.drupal.org/u/tsmith512",
  2114. "role": "Maintainer"
  2115. },
  2116. {
  2117. "name": "tsmith512",
  2118. "homepage": "https://www.drupal.org/user/2031446"
  2119. }
  2120. ],
  2121. "description": "Allows assigning classes to Blocks.",
  2122. "homepage": "https://www.drupal.org/project/block_class",
  2123. "support": {
  2124. "source": "https://cgit.drupalcode.org/block_class",
  2125. "issues": "https://www.drupal.org/project/issues/block_class",
  2126. "irc": "irc://irc.freenode.org/drupal-contribute"
  2127. }
  2128. },
  2129. {
  2130. "name": "drupal/bulkdelete",
  2131. "version": "dev-1.x",
  2132. "source": {
  2133. "type": "git",
  2134. "url": "https://git.drupal.org/project/bulkdelete",
  2135. "reference": "24499e0f069301d605ab0691e2d6e17ecbcb4060"
  2136. },
  2137. "require": {
  2138. "drupal/core": "~8.0"
  2139. },
  2140. "type": "drupal-module",
  2141. "extra": {
  2142. "branch-alias": {
  2143. "dev-1.x": "1.x-dev"
  2144. },
  2145. "drupal": {
  2146. "version": "8.x-1.x-dev",
  2147. "datestamp": "1495565583",
  2148. "security-coverage": {
  2149. "status": "not-covered",
  2150. "message": "Dev releases are not covered by Drupal security advisories."
  2151. }
  2152. }
  2153. },
  2154. "notification-url": "https://packages.drupal.org/8/downloads",
  2155. "license": [
  2156. "GPL-2.0-or-later"
  2157. ],
  2158. "authors": [
  2159. {
  2160. "name": "Kars-T",
  2161. "homepage": "https://www.drupal.org/user/224499"
  2162. },
  2163. {
  2164. "name": "Rahul Seth",
  2165. "homepage": "https://www.drupal.org/user/2694359"
  2166. },
  2167. {
  2168. "name": "adriancid",
  2169. "homepage": "https://www.drupal.org/user/1962106"
  2170. },
  2171. {
  2172. "name": "robertDouglass",
  2173. "homepage": "https://www.drupal.org/user/5449"
  2174. }
  2175. ],
  2176. "description": "Adds an administrative option to bulk delete nodes by content type using the batch API.",
  2177. "homepage": "https://www.drupal.org/project/bulkdelete",
  2178. "support": {
  2179. "source": "http://cgit.drupalcode.org/bulkdelete"
  2180. },
  2181. "time": "2017-05-23T18:49:48+00:00"
  2182. },
  2183. {
  2184. "name": "drupal/config_devel",
  2185. "version": "1.2.0",
  2186. "source": {
  2187. "type": "git",
  2188. "url": "https://git.drupal.org/project/config_devel",
  2189. "reference": "8.x-1.2"
  2190. },
  2191. "dist": {
  2192. "type": "zip",
  2193. "url": "https://ftp.drupal.org/files/projects/config_devel-8.x-1.2.zip",
  2194. "reference": "8.x-1.2",
  2195. "shasum": "203bf299b1ad395d1451e22ea5a8f25ae462d880"
  2196. },
  2197. "require": {
  2198. "drupal/core": "~8.0"
  2199. },
  2200. "type": "drupal-module",
  2201. "extra": {
  2202. "branch-alias": {
  2203. "dev-1.x": "1.x-dev"
  2204. },
  2205. "drupal": {
  2206. "version": "8.x-1.2",
  2207. "datestamp": "1510843084",
  2208. "security-coverage": {
  2209. "status": "covered",
  2210. "message": "Covered by Drupal's security advisory policy"
  2211. }
  2212. }
  2213. },
  2214. "notification-url": "https://packages.drupal.org/8/downloads",
  2215. "license": [
  2216. "GPL-2.0+"
  2217. ],
  2218. "authors": [
  2219. {
  2220. "name": "alexpott",
  2221. "homepage": "https://www.drupal.org/user/157725"
  2222. },
  2223. {
  2224. "name": "benjy",
  2225. "homepage": "https://www.drupal.org/user/1852732"
  2226. },
  2227. {
  2228. "name": "chx",
  2229. "homepage": "https://www.drupal.org/user/9446"
  2230. },
  2231. {
  2232. "name": "joachim",
  2233. "homepage": "https://www.drupal.org/user/107701"
  2234. },
  2235. {
  2236. "name": "nedjo",
  2237. "homepage": "https://www.drupal.org/user/4481"
  2238. },
  2239. {
  2240. "name": "tim.plunkett",
  2241. "homepage": "https://www.drupal.org/user/241634"
  2242. },
  2243. {
  2244. "name": "vijaycs85",
  2245. "homepage": "https://www.drupal.org/user/93488"
  2246. }
  2247. ],
  2248. "description": "Helps developers work with configuration.",
  2249. "homepage": "https://www.drupal.org/project/config_devel",
  2250. "support": {
  2251. "source": "http://cgit.drupalcode.org/config_devel"
  2252. }
  2253. },
  2254. {
  2255. "name": "drupal/config_filter",
  2256. "version": "1.3.0",
  2257. "source": {
  2258. "type": "git",
  2259. "url": "https://git.drupal.org/project/config_filter",
  2260. "reference": "8.x-1.3"
  2261. },
  2262. "dist": {
  2263. "type": "zip",
  2264. "url": "https://ftp.drupal.org/files/projects/config_filter-8.x-1.3.zip",
  2265. "reference": "8.x-1.3",
  2266. "shasum": "56255a17c45dcbb0af713215885a8d74214d2ebc"
  2267. },
  2268. "require": {
  2269. "drupal/core": "~8.0"
  2270. },
  2271. "suggest": {
  2272. "drupal/config_split": "Split site configuration for different environments."
  2273. },
  2274. "type": "drupal-module",
  2275. "extra": {
  2276. "branch-alias": {
  2277. "dev-1.x": "1.x-dev"
  2278. },
  2279. "drupal": {
  2280. "version": "8.x-1.3",
  2281. "datestamp": "1537978080",
  2282. "security-coverage": {
  2283. "status": "covered",
  2284. "message": "Covered by Drupal's security advisory policy"
  2285. }
  2286. }
  2287. },
  2288. "notification-url": "https://packages.drupal.org/8/downloads",
  2289. "license": [
  2290. "GPL-2.0+"
  2291. ],
  2292. "authors": [
  2293. {
  2294. "name": "Fabian Bircher",
  2295. "homepage": "https://www.drupal.org/u/bircher",
  2296. "email": "opensource@fabianbircher.com",
  2297. "role": "Maintainer"
  2298. },
  2299. {
  2300. "name": "Nuvole Web",
  2301. "homepage": "http://nuvole.org",
  2302. "email": "info@nuvole.org",
  2303. "role": "Maintainer"
  2304. },
  2305. {
  2306. "name": "pescetti",
  2307. "homepage": "https://www.drupal.org/user/436244"
  2308. }
  2309. ],
  2310. "description": "Config Filter allows other modules to interact with a ConfigStorage through filter plugins.",
  2311. "homepage": "https://www.drupal.org/project/config_filter",
  2312. "keywords": [
  2313. "Drupal",
  2314. "configuration",
  2315. "configuration management"
  2316. ],
  2317. "support": {
  2318. "source": "http://cgit.drupalcode.org/config_filter",
  2319. "issues": "https://www.drupal.org/project/issues/config_filter",
  2320. "irc": "irc://irc.freenode.org/drupal-contribute"
  2321. }
  2322. },
  2323. {
  2324. "name": "drupal/config_ignore",
  2325. "version": "2.1.0",
  2326. "source": {
  2327. "type": "git",
  2328. "url": "https://git.drupal.org/project/config_ignore",
  2329. "reference": "8.x-2.1"
  2330. },
  2331. "dist": {
  2332. "type": "zip",
  2333. "url": "https://ftp.drupal.org/files/projects/config_ignore-8.x-2.1.zip",
  2334. "reference": "8.x-2.1",
  2335. "shasum": "07e00684930706632b3f2fc2a7433ffdae57cde7"
  2336. },
  2337. "require": {
  2338. "drupal/config_filter": "1.*",
  2339. "drupal/core": "~8.0"
  2340. },
  2341. "type": "drupal-module",
  2342. "extra": {
  2343. "branch-alias": {
  2344. "dev-2.x": "2.x-dev"
  2345. },
  2346. "drupal": {
  2347. "version": "8.x-2.1",
  2348. "datestamp": "1507706044",
  2349. "security-coverage": {
  2350. "status": "covered",
  2351. "message": "Covered by Drupal's security advisory policy"
  2352. }
  2353. }
  2354. },
  2355. "notification-url": "https://packages.drupal.org/8/downloads",
  2356. "license": [
  2357. "GPL-2.0+"
  2358. ],
  2359. "authors": [
  2360. {
  2361. "name": "Tommy Lynge Jørgensen",
  2362. "homepage": "https://www.drupal.org/u/tlyngej",
  2363. "email": "tlyngej@gmail.com",
  2364. "role": "Maintainer"
  2365. },
  2366. {
  2367. "name": "Fabian Bircher",
  2368. "homepage": "https://www.drupal.org/u/bircher",
  2369. "role": "Maintainer"
  2370. }
  2371. ],
  2372. "description": "Ignore certain configuration during import.",
  2373. "homepage": "http://drupal.org/project/config_ignore",
  2374. "support": {
  2375. "source": "http://cgit.drupalcode.org/config_ignore",
  2376. "issues": "http://drupal.org/project/config_ignore",
  2377. "irc": "irc://irc.freenode.org/drupal-contribute"
  2378. }
  2379. },
  2380. {
  2381. "name": "drupal/config_update",
  2382. "version": "1.5.0",
  2383. "source": {
  2384. "type": "git",
  2385. "url": "https://git.drupal.org/project/config_update",
  2386. "reference": "8.x-1.5"
  2387. },
  2388. "dist": {
  2389. "type": "zip",
  2390. "url": "https://ftp.drupal.org/files/projects/config_update-8.x-1.5.zip",
  2391. "reference": "8.x-1.5",
  2392. "shasum": "2f7ae5f90b1c0ab8edf84680d2651e81fab6a126"
  2393. },
  2394. "require": {
  2395. "drupal/core": "*"
  2396. },
  2397. "type": "drupal-module",
  2398. "extra": {
  2399. "branch-alias": {
  2400. "dev-1.x": "1.x-dev"
  2401. },
  2402. "drupal": {
  2403. "version": "8.x-1.5",
  2404. "datestamp": "1512587912",
  2405. "security-coverage": {
  2406. "status": "covered",
  2407. "message": "Covered by Drupal's security advisory policy"
  2408. }
  2409. }
  2410. },
  2411. "notification-url": "https://packages.drupal.org/8/downloads",
  2412. "license": [
  2413. "GPL-2.0-or-later"
  2414. ],
  2415. "authors": [
  2416. {
  2417. "name": "jhodgdon",
  2418. "homepage": "https://www.drupal.org/user/155601"
  2419. },
  2420. {
  2421. "name": "nedjo",
  2422. "homepage": "https://www.drupal.org/user/4481"
  2423. }
  2424. ],
  2425. "description": "Provides basic revert and update functionality for other modules",
  2426. "homepage": "https://www.drupal.org/project/config_update",
  2427. "support": {
  2428. "source": "http://cgit.drupalcode.org/config_update"
  2429. }
  2430. },
  2431. {
  2432. "name": "drupal/console",
  2433. "version": "1.8.0",
  2434. "source": {
  2435. "type": "git",
  2436. "url": "https://github.com/hechoendrupal/drupal-console.git",
  2437. "reference": "368bbfa44dc6b957eb4db01977f7c39e83032d18"
  2438. },
  2439. "dist": {
  2440. "type": "zip",
  2441. "url": "https://api.github.com/repos/hechoendrupal/drupal-console/zipball/368bbfa44dc6b957eb4db01977f7c39e83032d18",
  2442. "reference": "368bbfa44dc6b957eb4db01977f7c39e83032d18",
  2443. "shasum": ""
  2444. },
  2445. "require": {
  2446. "alchemy/zippy": "0.4.3",
  2447. "composer/installers": "~1.0",
  2448. "doctrine/annotations": "^1.2",
  2449. "doctrine/collections": "^1.3",
  2450. "drupal/console-core": "1.8.0",
  2451. "drupal/console-extend-plugin": "~0",
  2452. "guzzlehttp/guzzle": "~6.1",
  2453. "php": "^5.5.9 || ^7.0",
  2454. "psy/psysh": "0.6.* || ~0.8",
  2455. "symfony/css-selector": "~2.8|~3.0",
  2456. "symfony/dom-crawler": "~2.8|~3.0",
  2457. "symfony/http-foundation": "~2.8|~3.0"
  2458. },
  2459. "suggest": {
  2460. "symfony/thanks": "Thank your favorite PHP projects on Github using the CLI!",
  2461. "vlucas/phpdotenv": "Loads environment variables from .env to getenv(), $_ENV and $_SERVER automagically."
  2462. },
  2463. "bin": [
  2464. "bin/drupal"
  2465. ],
  2466. "type": "library",
  2467. "autoload": {
  2468. "psr-4": {
  2469. "Drupal\\Console\\": "src"
  2470. }
  2471. },
  2472. "notification-url": "https://packagist.org/downloads/",
  2473. "license": [
  2474. "GPL-2.0-or-later"
  2475. ],
  2476. "authors": [
  2477. {
  2478. "name": "David Flores",
  2479. "email": "dmousex@gmail.com",
  2480. "homepage": "http://dmouse.net"
  2481. },
  2482. {
  2483. "name": "Jesus Manuel Olivas",
  2484. "email": "jesus.olivas@gmail.com",
  2485. "homepage": "http://jmolivas.com"
  2486. },
  2487. {
  2488. "name": "Eduardo Garcia",
  2489. "email": "enzo@enzolutions.com",
  2490. "homepage": "http://enzolutions.com/"
  2491. },
  2492. {
  2493. "name": "Omar Aguirre",
  2494. "email": "omersguchigu@gmail.com"
  2495. },
  2496. {
  2497. "name": "Drupal Console Contributors",
  2498. "homepage": "https://github.com/hechoendrupal/drupal-console/graphs/contributors"
  2499. }
  2500. ],
  2501. "description": "The Drupal CLI. A tool to generate boilerplate code, interact with and debug Drupal.",
  2502. "homepage": "http://drupalconsole.com/",
  2503. "keywords": [
  2504. "console",
  2505. "development",
  2506. "drupal",
  2507. "symfony"
  2508. ],
  2509. "time": "2018-03-21T20:50:16+00:00"
  2510. },
  2511. {
  2512. "name": "drupal/console-core",
  2513. "version": "1.8.0",
  2514. "source": {
  2515. "type": "git",
  2516. "url": "https://github.com/hechoendrupal/drupal-console-core.git",
  2517. "reference": "bf1fb4a6f689377acec1694267f674178d28e5d1"
  2518. },
  2519. "dist": {
  2520. "type": "zip",
  2521. "url": "https://api.github.com/repos/hechoendrupal/drupal-console-core/zipball/bf1fb4a6f689377acec1694267f674178d28e5d1",
  2522. "reference": "bf1fb4a6f689377acec1694267f674178d28e5d1",
  2523. "shasum": ""
  2524. },
  2525. "require": {
  2526. "dflydev/dot-access-configuration": "^1.0",
  2527. "drupal/console-en": "1.8.0",
  2528. "php": "^5.5.9 || ^7.0",
  2529. "stecman/symfony-console-completion": "~0.7",
  2530. "symfony/config": "~2.8|~3.0",
  2531. "symfony/console": "~2.8|~3.0",
  2532. "symfony/debug": "~2.8|~3.0",
  2533. "symfony/dependency-injection": "~2.8|~3.0",
  2534. "symfony/event-dispatcher": "~2.8|~3.0",
  2535. "symfony/filesystem": "~2.8|~3.0",
  2536. "symfony/finder": "~2.8|~3.0",
  2537. "symfony/process": "~2.8|~3.0",
  2538. "symfony/translation": "~2.8|~3.0",
  2539. "symfony/yaml": "~2.8|~3.0",
  2540. "twig/twig": "^1.23.1",
  2541. "webflo/drupal-finder": "^1.0",
  2542. "webmozart/path-util": "^2.3"
  2543. },
  2544. "type": "library",
  2545. "autoload": {
  2546. "files": [
  2547. "src/functions.php"
  2548. ],
  2549. "psr-4": {
  2550. "Drupal\\Console\\Core\\": "src"
  2551. }
  2552. },
  2553. "notification-url": "https://packagist.org/downloads/",
  2554. "license": [
  2555. "GPL-2.0-or-later"
  2556. ],
  2557. "authors": [
  2558. {
  2559. "name": "David Flores",
  2560. "email": "dmousex@gmail.com",
  2561. "homepage": "http://dmouse.net"
  2562. },
  2563. {
  2564. "name": "Jesus Manuel Olivas",
  2565. "email": "jesus.olivas@gmail.com",
  2566. "homepage": "http://jmolivas.com"
  2567. },
  2568. {
  2569. "name": "Drupal Console Contributors",
  2570. "homepage": "https://github.com/hechoendrupal/DrupalConsole/graphs/contributors"
  2571. },
  2572. {
  2573. "name": "Eduardo Garcia",
  2574. "email": "enzo@enzolutions.com",
  2575. "homepage": "http://enzolutions.com/"
  2576. },
  2577. {
  2578. "name": "Omar Aguirre",
  2579. "email": "omersguchigu@gmail.com"
  2580. }
  2581. ],
  2582. "description": "Drupal Console Core",
  2583. "homepage": "http://drupalconsole.com/",
  2584. "keywords": [
  2585. "console",
  2586. "development",
  2587. "drupal",
  2588. "symfony"
  2589. ],
  2590. "time": "2018-03-21T19:33:23+00:00"
  2591. },
  2592. {
  2593. "name": "drupal/console-en",
  2594. "version": "1.8.0",
  2595. "source": {
  2596. "type": "git",
  2597. "url": "https://github.com/hechoendrupal/drupal-console-en.git",
  2598. "reference": "ea956ddffab04f519a89858810e5f695b9def92b"
  2599. },
  2600. "dist": {
  2601. "type": "zip",
  2602. "url": "https://api.github.com/repos/hechoendrupal/drupal-console-en/zipball/ea956ddffab04f519a89858810e5f695b9def92b",
  2603. "reference": "ea956ddffab04f519a89858810e5f695b9def92b",
  2604. "shasum": ""
  2605. },
  2606. "type": "drupal-console-language",
  2607. "notification-url": "https://packagist.org/downloads/",
  2608. "license": [
  2609. "GPL-2.0-or-later"
  2610. ],
  2611. "authors": [
  2612. {
  2613. "name": "David Flores",
  2614. "email": "dmousex@gmail.com",
  2615. "homepage": "http://dmouse.net"
  2616. },
  2617. {
  2618. "name": "Jesus Manuel Olivas",
  2619. "email": "jesus.olivas@gmail.com",
  2620. "homepage": "http://jmolivas.com"
  2621. },
  2622. {
  2623. "name": "Drupal Console Contributors",
  2624. "homepage": "https://github.com/hechoendrupal/DrupalConsole/graphs/contributors"
  2625. },
  2626. {
  2627. "name": "Eduardo Garcia",
  2628. "email": "enzo@enzolutions.com",
  2629. "homepage": "http://enzolutions.com/"
  2630. },
  2631. {
  2632. "name": "Omar Aguirre",
  2633. "email": "omersguchigu@gmail.com"
  2634. }
  2635. ],
  2636. "description": "Drupal Console English Language",
  2637. "homepage": "http://drupalconsole.com/",
  2638. "keywords": [
  2639. "console",
  2640. "development",
  2641. "drupal",
  2642. "symfony"
  2643. ],
  2644. "time": "2018-03-21T19:16:27+00:00"
  2645. },
  2646. {
  2647. "name": "drupal/console-extend-plugin",
  2648. "version": "0.9.2",
  2649. "source": {
  2650. "type": "git",
  2651. "url": "https://github.com/hechoendrupal/drupal-console-extend-plugin.git",
  2652. "reference": "f3bac233fd305359c33e96621443b3bd065555cc"
  2653. },
  2654. "dist": {
  2655. "type": "zip",
  2656. "url": "https://api.github.com/repos/hechoendrupal/drupal-console-extend-plugin/zipball/f3bac233fd305359c33e96621443b3bd065555cc",
  2657. "reference": "f3bac233fd305359c33e96621443b3bd065555cc",
  2658. "shasum": ""
  2659. },
  2660. "require": {
  2661. "composer-plugin-api": "^1.0",
  2662. "symfony/finder": "~2.7|~3.0",
  2663. "symfony/yaml": "~2.7|~3.0"
  2664. },
  2665. "type": "composer-plugin",
  2666. "extra": {
  2667. "class": "Drupal\\Console\\Composer\\Plugin\\Extender"
  2668. },
  2669. "autoload": {
  2670. "psr-4": {
  2671. "Drupal\\Console\\Composer\\Plugin\\": "src"
  2672. }
  2673. },
  2674. "notification-url": "https://packagist.org/downloads/",
  2675. "license": [
  2676. "GPL-2.0+"
  2677. ],
  2678. "authors": [
  2679. {
  2680. "name": "Jesus Manuel Olivas",
  2681. "email": "jesus.olivas@gmail.com"
  2682. }
  2683. ],
  2684. "description": "Drupal Console Extend Plugin",
  2685. "time": "2017-07-28T17:11:54+00:00"
  2686. },
  2687. {
  2688. "name": "drupal/content_lock",
  2689. "version": "1.0.0-alpha8",
  2690. "source": {
  2691. "type": "git",
  2692. "url": "https://git.drupal.org/project/content_lock",
  2693. "reference": "8.x-1.0-alpha8"
  2694. },
  2695. "dist": {
  2696. "type": "zip",
  2697. "url": "https://ftp.drupal.org/files/projects/content_lock-8.x-1.0-alpha8.zip",
  2698. "reference": "8.x-1.0-alpha8",
  2699. "shasum": "dbb5986dbfbe325eb869a4ac42b88b266dc089c6"
  2700. },
  2701. "require": {
  2702. "drupal/core": "~8"
  2703. },
  2704. "require-dev": {
  2705. "drupal/conflict": "dev-2.x",
  2706. "drupal/prefetch_cache": "dev-1.x"
  2707. },
  2708. "type": "drupal-module",
  2709. "extra": {
  2710. "branch-alias": {
  2711. "dev-1.x": "1.x-dev"
  2712. },
  2713. "drupal": {
  2714. "version": "8.x-1.0-alpha8",
  2715. "datestamp": "1520356080",
  2716. "security-coverage": {
  2717. "status": "not-covered",
  2718. "message": "Alpha releases are not covered by Drupal security advisories."
  2719. }
  2720. }
  2721. },
  2722. "notification-url": "https://packages.drupal.org/8/downloads",
  2723. "license": [
  2724. "GPL-2.0-or-later"
  2725. ],
  2726. "authors": [
  2727. {
  2728. "name": "Joseph Zhao",
  2729. "homepage": "https://www.drupal.org/user/1987218"
  2730. },
  2731. {
  2732. "name": "chr.fritsch",
  2733. "homepage": "https://www.drupal.org/user/2103716"
  2734. },
  2735. {
  2736. "name": "ergonlogic",
  2737. "homepage": "https://www.drupal.org/user/368613"
  2738. }
  2739. ],
  2740. "description": "Prevents multiple users from trying to edit a content entity simultaneously to prevent edit conflicts.",
  2741. "homepage": "https://www.drupal.org/project/content_lock",
  2742. "support": {
  2743. "source": "http://cgit.drupalcode.org/content_lock"
  2744. }
  2745. },
  2746. {
  2747. "name": "drupal/context",
  2748. "version": "4.0.0-beta2",
  2749. "source": {
  2750. "type": "git",
  2751. "url": "https://git.drupal.org/project/context",
  2752. "reference": "8.x-4.0-beta2"
  2753. },
  2754. "dist": {
  2755. "type": "zip",
  2756. "url": "https://ftp.drupal.org/files/projects/context-8.x-4.0-beta2.zip",
  2757. "reference": "8.x-4.0-beta2",
  2758. "shasum": "e41bc912e1ec73bc4d08a3cf730dc2405a9213d3"
  2759. },
  2760. "require": {
  2761. "drupal/core": "~8.0"
  2762. },
  2763. "type": "drupal-module",
  2764. "extra": {
  2765. "branch-alias": {
  2766. "dev-4.x": "4.x-dev"
  2767. },
  2768. "drupal": {
  2769. "version": "8.x-4.0-beta2",
  2770. "datestamp": "1505378944",
  2771. "security-coverage": {
  2772. "status": "not-covered",
  2773. "message": "Beta releases are not covered by Drupal security advisories."
  2774. }
  2775. }
  2776. },
  2777. "notification-url": "https://packages.drupal.org/8/downloads",
  2778. "license": [
  2779. "MIT"
  2780. ],
  2781. "authors": [
  2782. {
  2783. "name": "Christoffer Palm",
  2784. "homepage": "http://www.oddhill.se/",
  2785. "email": "christoffer.palm@oddhill.se",
  2786. "role": "Developer"
  2787. },
  2788. {
  2789. "name": "Steven Jones",
  2790. "homepage": "https://www.drupal.org/user/99644"
  2791. },
  2792. {
  2793. "name": "alex_b",
  2794. "homepage": "https://www.drupal.org/user/53995"
  2795. },
  2796. {
  2797. "name": "boshtian",
  2798. "homepage": "https://www.drupal.org/user/1773456"
  2799. },
  2800. {
  2801. "name": "colan",
  2802. "homepage": "https://www.drupal.org/user/58704"
  2803. },
  2804. {
  2805. "name": "emanaton",
  2806. "homepage": "https://www.drupal.org/user/120853"
  2807. },
  2808. {
  2809. "name": "febbraro",
  2810. "homepage": "https://www.drupal.org/user/43670"
  2811. },
  2812. {
  2813. "name": "fizk",
  2814. "homepage": "https://www.drupal.org/user/473174"
  2815. },
  2816. {
  2817. "name": "hass",
  2818. "homepage": "https://www.drupal.org/user/85918"
  2819. },
  2820. {
  2821. "name": "hefox",
  2822. "homepage": "https://www.drupal.org/user/426416"
  2823. },
  2824. {
  2825. "name": "hyrcan",
  2826. "homepage": "https://www.drupal.org/user/26618"
  2827. },
  2828. {
  2829. "name": "jmiccolis",
  2830. "homepage": "https://www.drupal.org/user/31731"
  2831. },
  2832. {
  2833. "name": "tekante",
  2834. "homepage": "https://www.drupal.org/user/640024"
  2835. },
  2836. {
  2837. "name": "yhahn",
  2838. "homepage": "https://www.drupal.org/user/264833"
  2839. }
  2840. ],
  2841. "description": "Manage contextual conditions and reactions for different portions of your site.",
  2842. "homepage": "https://github.com/oddhill/context",
  2843. "keywords": [
  2844. "Drupal",
  2845. "block",
  2846. "conditions",
  2847. "context",
  2848. "visibility"
  2849. ],
  2850. "support": {
  2851. "source": "https://github.com/oddhill/context",
  2852. "issues": "https://github.com/oddhill/context/issues",
  2853. "docs": "https://github.com/oddhill/context"
  2854. }
  2855. },
  2856. {
  2857. "name": "drupal/ctools",
  2858. "version": "3.0.0",
  2859. "source": {
  2860. "type": "git",
  2861. "url": "https://git.drupal.org/project/ctools",
  2862. "reference": "8.x-3.0"
  2863. },
  2864. "dist": {
  2865. "type": "zip",
  2866. "url": "https://ftp.drupal.org/files/projects/ctools-8.x-3.0.zip",
  2867. "reference": "8.x-3.0",
  2868. "shasum": "302e869ecd1e59fe55663673999fee2ccac5daa8"
  2869. },
  2870. "require": {
  2871. "drupal/core": "~8.0"
  2872. },
  2873. "type": "drupal-module",
  2874. "extra": {
  2875. "branch-alias": {
  2876. "dev-3.x": "3.x-dev"
  2877. },
  2878. "drupal": {
  2879. "version": "8.x-3.0",
  2880. "datestamp": "1493401742",
  2881. "security-coverage": {
  2882. "status": "covered",
  2883. "message": "Covered by Drupal's security advisory policy"
  2884. }
  2885. }
  2886. },
  2887. "notification-url": "https://packages.drupal.org/8/downloads",
  2888. "license": [
  2889. "GPL-2.0+"
  2890. ],
  2891. "authors": [
  2892. {
  2893. "name": "Kris Vanderwater (EclipseGc)",
  2894. "homepage": "https://www.drupal.org/u/eclipsegc",
  2895. "role": "Maintainer"
  2896. },
  2897. {
  2898. "name": "Jakob Perry (japerry)",
  2899. "homepage": "https://www.drupal.org/u/japerry",
  2900. "role": "Maintainer"
  2901. },
  2902. {
  2903. "name": "Tim Plunkett (tim.plunkett)",
  2904. "homepage": "https://www.drupal.org/u/timplunkett",
  2905. "role": "Maintainer"
  2906. },
  2907. {
  2908. "name": "James Gilliland (neclimdul)",
  2909. "homepage": "https://www.drupal.org/u/neclimdul",
  2910. "role": "Maintainer"
  2911. },
  2912. {
  2913. "name": "Daniel Wehner (dawehner)",
  2914. "homepage": "https://www.drupal.org/u/dawehner",
  2915. "role": "Maintainer"
  2916. },
  2917. {
  2918. "name": "joelpittet",
  2919. "homepage": "https://www.drupal.org/user/160302"
  2920. },
  2921. {
  2922. "name": "merlinofchaos",
  2923. "homepage": "https://www.drupal.org/user/26979"
  2924. },
  2925. {
  2926. "name": "neclimdul",
  2927. "homepage": "https://www.drupal.org/user/48673"
  2928. },
  2929. {
  2930. "name": "sdboyer",
  2931. "homepage": "https://www.drupal.org/user/146719"
  2932. },
  2933. {
  2934. "name": "sun",
  2935. "homepage": "https://www.drupal.org/user/54136"
  2936. },
  2937. {
  2938. "name": "tim.plunkett",
  2939. "homepage": "https://www.drupal.org/user/241634"
  2940. }
  2941. ],
  2942. "description": "Provides a number of utility and helper APIs for Drupal developers and site builders.",
  2943. "homepage": "https://www.drupal.org/project/ctools",
  2944. "support": {
  2945. "source": "http://cgit.drupalcode.org/ctools",
  2946. "issues": "https://www.drupal.org/project/issues/ctools"
  2947. }
  2948. },
  2949. {
  2950. "name": "drupal/date_range_formatter",
  2951. "version": "3.1.0",
  2952. "source": {
  2953. "type": "git",
  2954. "url": "https://git.drupal.org/project/date_range_formatter",
  2955. "reference": "8.x-3.1"
  2956. },
  2957. "dist": {
  2958. "type": "zip",
  2959. "url": "https://ftp.drupal.org/files/projects/date_range_formatter-8.x-3.1.zip",
  2960. "reference": "8.x-3.1",
  2961. "shasum": "a98c511ac90eb92879235bc82a3aa643f7b5c173"
  2962. },
  2963. "require": {
  2964. "drupal/core": "*"
  2965. },
  2966. "type": "drupal-module",
  2967. "extra": {
  2968. "branch-alias": {
  2969. "dev-3.x": "3.x-dev"
  2970. },
  2971. "drupal": {
  2972. "version": "8.x-3.1",
  2973. "datestamp": "1502454544",
  2974. "security-coverage": {
  2975. "status": "covered",
  2976. "message": "Covered by Drupal's security advisory policy"
  2977. }
  2978. }
  2979. },
  2980. "notification-url": "https://packages.drupal.org/8/downloads",
  2981. "license": [
  2982. "GPL-2.0-or-later"
  2983. ],
  2984. "authors": [
  2985. {
  2986. "name": "Sudishth",
  2987. "homepage": "https://www.drupal.org/user/1440562"
  2988. },
  2989. {
  2990. "name": "maximpodorov",
  2991. "homepage": "https://www.drupal.org/user/515310"
  2992. }
  2993. ],
  2994. "description": "Formats date ranges.",
  2995. "homepage": "https://www.drupal.org/project/date_range_formatter",
  2996. "support": {
  2997. "source": "http://cgit.drupalcode.org/date_range_formatter"
  2998. }
  2999. },
  3000. {
  3001. "name": "drupal/devel",
  3002. "version": "1.2.0",
  3003. "source": {
  3004. "type": "git",
  3005. "url": "https://git.drupal.org/project/devel",
  3006. "reference": "8.x-1.2"
  3007. },
  3008. "dist": {
  3009. "type": "zip",
  3010. "url": "https://ftp.drupal.org/files/projects/devel-8.x-1.2.zip",
  3011. "reference": "8.x-1.2",
  3012. "shasum": "01f3349ef75f6e21fceef24be9d3d6506ca29647"
  3013. },
  3014. "require": {
  3015. "drupal/core": "~8.0"
  3016. },
  3017. "suggest": {
  3018. "symfony/var-dumper": "Pretty print complex values better with var-dumper available"
  3019. },
  3020. "type": "drupal-module",
  3021. "extra": {
  3022. "branch-alias": {
  3023. "dev-1.x": "1.x-dev"
  3024. },
  3025. "drupal": {
  3026. "version": "8.x-1.2",
  3027. "datestamp": "1507197844",
  3028. "security-coverage": {
  3029. "status": "covered",
  3030. "message": "Covered by Drupal's security advisory policy"
  3031. }
  3032. }
  3033. },
  3034. "notification-url": "https://packages.drupal.org/8/downloads",
  3035. "license": [
  3036. "GPL-2.0+"
  3037. ],
  3038. "authors": [
  3039. {
  3040. "name": "Moshe Weitzman",
  3041. "homepage": "https://github.com/weitzman",
  3042. "email": "weitzman@tejasa.com",
  3043. "role": "Maintainer"
  3044. },
  3045. {
  3046. "name": "Hans Salvisberg",
  3047. "homepage": "https://www.drupal.org/u/salvis",
  3048. "email": "drupal@salvisberg.com",
  3049. "role": "Maintainer"
  3050. },
  3051. {
  3052. "name": "Luca Lusso",
  3053. "homepage": "https://www.drupal.org/u/lussoluca",
  3054. "role": "Maintainer"
  3055. },
  3056. {
  3057. "name": "Marco (willzyx)",
  3058. "homepage": "https://www.drupal.org/u/willzyx",
  3059. "role": "Maintainer"
  3060. },
  3061. {
  3062. "name": "See contributors",
  3063. "homepage": "https://www.drupal.org/node/3236/committers"
  3064. },
  3065. {
  3066. "name": "salvis",
  3067. "homepage": "https://www.drupal.org/user/82964"
  3068. },
  3069. {
  3070. "name": "willzyx",
  3071. "homepage": "https://www.drupal.org/user/1043862"
  3072. }
  3073. ],
  3074. "description": "Various blocks, pages, and functions for developers.",
  3075. "homepage": "http://drupal.org/project/devel",
  3076. "support": {
  3077. "source": "http://cgit.drupalcode.org/devel",
  3078. "issues": "http://drupal.org/project/devel",
  3079. "irc": "irc://irc.freenode.org/drupal-contribute"
  3080. }
  3081. },
  3082. {
  3083. "name": "drupal/devel_generate",
  3084. "version": "1.2.0",
  3085. "require": {
  3086. "drupal/core": "~8.0",
  3087. "drupal/devel": "self.version"
  3088. },
  3089. "type": "metapackage",
  3090. "extra": {
  3091. "branch-alias": {
  3092. "dev-1.x": "1.x-dev"
  3093. },
  3094. "drupal": {
  3095. "version": "8.x-1.2",
  3096. "datestamp": "1507197844",
  3097. "security-coverage": {
  3098. "status": "covered",
  3099. "message": "Covered by Drupal's security advisory policy"
  3100. }
  3101. }
  3102. },
  3103. "notification-url": "https://packages.drupal.org/8/downloads",
  3104. "license": [
  3105. "GPL-2.0-or-later"
  3106. ],
  3107. "authors": [
  3108. {
  3109. "name": "catch",
  3110. "homepage": "https://www.drupal.org/user/35733"
  3111. },
  3112. {
  3113. "name": "juampynr",
  3114. "homepage": "https://www.drupal.org/user/682736"
  3115. },
  3116. {
  3117. "name": "lussoluca",
  3118. "homepage": "https://www.drupal.org/user/138068"
  3119. },
  3120. {
  3121. "name": "moshe weitzman",
  3122. "homepage": "https://www.drupal.org/user/23"
  3123. },
  3124. {
  3125. "name": "pcambra",
  3126. "homepage": "https://www.drupal.org/user/122101"
  3127. },
  3128. {
  3129. "name": "salvis",
  3130. "homepage": "https://www.drupal.org/user/82964"
  3131. },
  3132. {
  3133. "name": "willzyx",
  3134. "homepage": "https://www.drupal.org/user/1043862"
  3135. }
  3136. ],
  3137. "description": "Generate dummy users, nodes, menus, taxonomy terms...",
  3138. "homepage": "https://www.drupal.org/project/devel",
  3139. "support": {
  3140. "source": "http://cgit.drupalcode.org/devel"
  3141. }
  3142. },
  3143. {
  3144. "name": "drupal/domain",
  3145. "version": "1.0.0-alpha14",
  3146. "source": {
  3147. "type": "git",
  3148. "url": "https://git.drupal.org/project/domain",
  3149. "reference": "8.x-1.0-alpha14"
  3150. },
  3151. "dist": {
  3152. "type": "zip",
  3153. "url": "https://ftp.drupal.org/files/projects/domain-8.x-1.0-alpha14.zip",
  3154. "reference": "8.x-1.0-alpha14",
  3155. "shasum": "9889669ee19ae07fc44ab3bbe6fd7049e1317499"
  3156. },
  3157. "require": {
  3158. "drupal/core": "^8.5"
  3159. },
  3160. "require-dev": {
  3161. "drupal/domain_access": "*"
  3162. },
  3163. "type": "drupal-module",
  3164. "extra": {
  3165. "branch-alias": {
  3166. "dev-1.x": "1.x-dev"
  3167. },
  3168. "drupal": {
  3169. "version": "8.x-1.0-alpha14",
  3170. "datestamp": "1539981780",
  3171. "security-coverage": {
  3172. "status": "not-covered",
  3173. "message": "Alpha releases are not covered by Drupal security advisories."
  3174. }
  3175. }
  3176. },
  3177. "notification-url": "https://packages.drupal.org/8/downloads",
  3178. "license": [
  3179. "GPL-2.0-or-later"
  3180. ],
  3181. "authors": [
  3182. {
  3183. "name": "agentrickard",
  3184. "homepage": "https://www.drupal.org/user/20975"
  3185. },
  3186. {
  3187. "name": "nonsie",
  3188. "homepage": "https://www.drupal.org/user/29899"
  3189. }
  3190. ],
  3191. "description": "Creates domain records within a Drupal installation.",
  3192. "homepage": "https://www.drupal.org/project/domain",
  3193. "support": {
  3194. "source": "http://cgit.drupalcode.org/domain"
  3195. }
  3196. },
  3197. {
  3198. "name": "drupal/domain_alias",
  3199. "version": "1.0.0-alpha14",
  3200. "require": {
  3201. "drupal/core": "~8.0",
  3202. "drupal/domain": "self.version"
  3203. },
  3204. "type": "metapackage",
  3205. "extra": {
  3206. "branch-alias": {
  3207. "dev-1.x": "1.x-dev"
  3208. },
  3209. "drupal": {
  3210. "version": "8.x-1.0-alpha14",
  3211. "datestamp": "1539981780",
  3212. "security-coverage": {
  3213. "status": "not-covered",
  3214. "message": "Alpha releases are not covered by Drupal security advisories."
  3215. }
  3216. }
  3217. },
  3218. "notification-url": "https://packages.drupal.org/8/downloads",
  3219. "license": [
  3220. "GPL-2.0-or-later"
  3221. ],
  3222. "authors": [
  3223. {
  3224. "name": "agentrickard",
  3225. "homepage": "https://www.drupal.org/user/20975"
  3226. },
  3227. {
  3228. "name": "nonsie",
  3229. "homepage": "https://www.drupal.org/user/29899"
  3230. }
  3231. ],
  3232. "description": "Maps multiple host requests to a single domain record.",
  3233. "homepage": "https://www.drupal.org/project/domain",
  3234. "support": {
  3235. "source": "http://cgit.drupalcode.org/domain"
  3236. }
  3237. },
  3238. {
  3239. "name": "drupal/domain_config",
  3240. "version": "1.0.0-alpha14",
  3241. "require": {
  3242. "drupal/core": "~8.0",
  3243. "drupal/domain": "self.version"
  3244. },
  3245. "type": "metapackage",
  3246. "extra": {
  3247. "branch-alias": {
  3248. "dev-1.x": "1.x-dev"
  3249. },
  3250. "drupal": {
  3251. "version": "8.x-1.0-alpha14",
  3252. "datestamp": "1539981780",
  3253. "security-coverage": {
  3254. "status": "not-covered",
  3255. "message": "Alpha releases are not covered by Drupal security advisories."
  3256. }
  3257. }
  3258. },
  3259. "notification-url": "https://packages.drupal.org/8/downloads",
  3260. "license": [
  3261. "GPL-2.0-or-later"
  3262. ],
  3263. "authors": [
  3264. {
  3265. "name": "agentrickard",
  3266. "homepage": "https://www.drupal.org/user/20975"
  3267. },
  3268. {
  3269. "name": "nonsie",
  3270. "homepage": "https://www.drupal.org/user/29899"
  3271. }
  3272. ],
  3273. "description": "Allows domain specific configuration.",
  3274. "homepage": "https://www.drupal.org/project/domain",
  3275. "support": {
  3276. "source": "http://cgit.drupalcode.org/domain"
  3277. }
  3278. },
  3279. {
  3280. "name": "drupal/domain_site_settings",
  3281. "version": "1.3.0",
  3282. "source": {
  3283. "type": "git",
  3284. "url": "https://git.drupal.org/project/domain_site_settings",
  3285. "reference": "8.x-1.3"
  3286. },
  3287. "dist": {
  3288. "type": "zip",
  3289. "url": "https://ftp.drupal.org/files/projects/domain_site_settings-8.x-1.3.zip",
  3290. "reference": "8.x-1.3",
  3291. "shasum": "36ad22d8e31400f372b9e7f587578061b4fdc5db"
  3292. },
  3293. "require": {
  3294. "drupal/core": "~8.0",
  3295. "drupal/domain": "*",
  3296. "drupal/domain_config": "*"
  3297. },
  3298. "type": "drupal-module",
  3299. "extra": {
  3300. "branch-alias": {
  3301. "dev-1.x": "1.x-dev"
  3302. },
  3303. "drupal": {
  3304. "version": "8.x-1.3",
  3305. "datestamp": "1537684980",
  3306. "security-coverage": {
  3307. "status": "covered",
  3308. "message": "Covered by Drupal's security advisory policy"
  3309. }
  3310. }
  3311. },
  3312. "notification-url": "https://packages.drupal.org/8/downloads",
  3313. "license": [
  3314. "GPL-2.0+"
  3315. ],
  3316. "authors": [
  3317. {
  3318. "name": "aloknarwaria",
  3319. "homepage": "https://www.drupal.org/user/906640"
  3320. }
  3321. ],
  3322. "description": "Basic Site Setting for Domains.",
  3323. "homepage": "https://www.drupal.org/project/domain_site_settings",
  3324. "keywords": [
  3325. "Drupal"
  3326. ],
  3327. "support": {
  3328. "source": "http://cgit.drupalcode.org/domain_site_settings",
  3329. "issues": "https://www.drupal.org/project/issues/domain_site_settings"
  3330. }
  3331. },
  3332. {
  3333. "name": "drupal/email_registration",
  3334. "version": "1.0.0-rc5",
  3335. "source": {
  3336. "type": "git",
  3337. "url": "https://git.drupal.org/project/email_registration",
  3338. "reference": "8.x-1.0-rc5"
  3339. },
  3340. "dist": {
  3341. "type": "zip",
  3342. "url": "https://ftp.drupal.org/files/projects/email_registration-8.x-1.0-rc5.zip",
  3343. "reference": "8.x-1.0-rc5",
  3344. "shasum": "8e068ad37077bb3937150155ce13617d98b9b6b1"
  3345. },
  3346. "require": {
  3347. "drupal/core": "*"
  3348. },
  3349. "type": "drupal-module",
  3350. "extra": {
  3351. "branch-alias": {
  3352. "dev-1.x": "1.x-dev"
  3353. },
  3354. "drupal": {
  3355. "version": "8.x-1.0-rc5",
  3356. "datestamp": "1491318182",
  3357. "security-coverage": {
  3358. "status": "not-covered",
  3359. "message": "RC releases are not covered by Drupal security advisories."
  3360. }
  3361. }
  3362. },
  3363. "notification-url": "https://packages.drupal.org/8/downloads",
  3364. "license": [
  3365. "GPL-2.0-or-later"
  3366. ],
  3367. "authors": [
  3368. {
  3369. "name": "Chris Herberte",
  3370. "homepage": "https://www.drupal.org/user/1171"
  3371. },
  3372. {
  3373. "name": "andypost",
  3374. "homepage": "https://www.drupal.org/user/118908"
  3375. },
  3376. {
  3377. "name": "greggles",
  3378. "homepage": "https://www.drupal.org/user/36762"
  3379. },
  3380. {
  3381. "name": "moshe weitzman",
  3382. "homepage": "https://www.drupal.org/user/23"
  3383. }
  3384. ],
  3385. "description": "Allows users to register with an e-mail address as their username.",
  3386. "homepage": "https://www.drupal.org/project/email_registration",
  3387. "support": {
  3388. "source": "http://cgit.drupalcode.org/email_registration"
  3389. }
  3390. },
  3391. {
  3392. "name": "drupal/embed",
  3393. "version": "1.0.0",
  3394. "source": {
  3395. "type": "git",
  3396. "url": "https://git.drupal.org/project/embed",
  3397. "reference": "8.x-1.0"
  3398. },
  3399. "dist": {
  3400. "type": "zip",
  3401. "url": "https://ftp.drupal.org/files/projects/embed-8.x-1.0.zip",
  3402. "reference": "8.x-1.0",
  3403. "shasum": "cc746ad807260e01c7788dd82110dcebbb4d678a"
  3404. },
  3405. "require": {
  3406. "drupal/core": "~8.0"
  3407. },
  3408. "type": "drupal-module",
  3409. "extra": {
  3410. "branch-alias": {
  3411. "dev-1.x": "1.x-dev"
  3412. },
  3413. "drupal": {
  3414. "version": "8.x-1.0",
  3415. "datestamp": "1490755685",
  3416. "security-coverage": {
  3417. "status": "covered",
  3418. "message": "Covered by Drupal's security advisory policy"
  3419. }
  3420. }
  3421. },
  3422. "notification-url": "https://packages.drupal.org/8/downloads",
  3423. "license": [
  3424. "GPL-2.0+"
  3425. ],
  3426. "authors": [
  3427. {
  3428. "name": "Dave Reid",
  3429. "homepage": "https://www.drupal.org/user/53892"
  3430. },
  3431. {
  3432. "name": "Devin Carlson",
  3433. "homepage": "https://www.drupal.org/user/290182"
  3434. },
  3435. {
  3436. "name": "Drupal Media Team",
  3437. "homepage": "https://www.drupal.org/user/3260690"
  3438. },
  3439. {
  3440. "name": "cs_shadow",
  3441. "homepage": "https://www.drupal.org/user/2828287"
  3442. },
  3443. {
  3444. "name": "slashrsm",
  3445. "homepage": "https://www.drupal.org/user/744628"
  3446. }
  3447. ],
  3448. "description": "Provide a framework for various different types of embeds in WYSIWYG editors, common functionality, interfaces, and standards.",
  3449. "homepage": "https://www.drupal.org/project/embed",
  3450. "support": {
  3451. "source": "http://cgit.drupalcode.org/embed",
  3452. "issues": "https://www.drupal.org/project/issues/embed",
  3453. "irc": "irc://irc.freenode.org/drupal-media"
  3454. }
  3455. },
  3456. {
  3457. "name": "drupal/entity",
  3458. "version": "1.0.0-rc1",
  3459. "source": {
  3460. "type": "git",
  3461. "url": "https://git.drupal.org/project/entity",
  3462. "reference": "8.x-1.0-rc1"
  3463. },
  3464. "dist": {
  3465. "type": "zip",
  3466. "url": "https://ftp.drupal.org/files/projects/entity-8.x-1.0-rc1.zip",
  3467. "reference": "8.x-1.0-rc1",
  3468. "shasum": "f2dcd7afd0d36b6f261b10a204057a5c801ad20b"
  3469. },
  3470. "require": {
  3471. "drupal/core": "^8.6"
  3472. },
  3473. "type": "drupal-module",
  3474. "extra": {
  3475. "branch-alias": {
  3476. "dev-1.x": "1.x-dev"
  3477. },
  3478. "drupal": {
  3479. "version": "8.x-1.0-rc1",
  3480. "datestamp": "1539272769",
  3481. "security-coverage": {
  3482. "status": "not-covered",
  3483. "message": "RC releases are not covered by Drupal security advisories."
  3484. }
  3485. }
  3486. },
  3487. "notification-url": "https://packages.drupal.org/8/downloads",
  3488. "license": [
  3489. "GPL-2.0+"
  3490. ],
  3491. "authors": [
  3492. {
  3493. "name": "Berdir",
  3494. "homepage": "https://www.drupal.org/user/214652"
  3495. },
  3496. {
  3497. "name": "bojanz",
  3498. "homepage": "https://www.drupal.org/user/86106"
  3499. },
  3500. {
  3501. "name": "dawehner",
  3502. "homepage": "https://www.drupal.org/user/99340"
  3503. },
  3504. {
  3505. "name": "dixon_",
  3506. "homepage": "https://www.drupal.org/user/239911"
  3507. },
  3508. {
  3509. "name": "fago",
  3510. "homepage": "https://www.drupal.org/user/16747"
  3511. }
  3512. ],
  3513. "description": "Provides expanded entity APIs, which will be moved to Drupal core one day.",
  3514. "homepage": "http://drupal.org/project/entity",
  3515. "support": {
  3516. "source": "http://cgit.drupalcode.org/entity"
  3517. }
  3518. },
  3519. {
  3520. "name": "drupal/entity_browser",
  3521. "version": "2.0.0",
  3522. "source": {
  3523. "type": "git",
  3524. "url": "https://git.drupal.org/project/entity_browser",
  3525. "reference": "8.x-2.0"
  3526. },
  3527. "dist": {
  3528. "type": "zip",
  3529. "url": "https://ftp.drupal.org/files/projects/entity_browser-8.x-2.0.zip",
  3530. "reference": "8.x-2.0",
  3531. "shasum": "683a7a252c947433c7b78bb838d6d8973c13cf77"
  3532. },
  3533. "require": {
  3534. "drupal/core": "~8.0"
  3535. },
  3536. "require-dev": {
  3537. "drupal/ctools": "*",
  3538. "drupal/inline_entity_form": "*",
  3539. "drupal/paragraphs": "*",
  3540. "drupal/token": "*"
  3541. },
  3542. "type": "drupal-module",
  3543. "extra": {
  3544. "branch-alias": {
  3545. "dev-2.x": "2.x-dev",
  3546. "dev-8.x-1.x": "8.1.x-dev"
  3547. },
  3548. "drupal": {
  3549. "version": "8.x-2.0",
  3550. "datestamp": "1536328684",
  3551. "security-coverage": {
  3552. "status": "covered",
  3553. "message": "Covered by Drupal's security advisory policy"
  3554. }
  3555. }
  3556. },
  3557. "notification-url": "https://packages.drupal.org/8/downloads",
  3558. "license": [
  3559. "GPL-2.0+"
  3560. ],
  3561. "authors": [
  3562. {
  3563. "name": "Janez Urevc",
  3564. "homepage": "https://github.com/slashrsm",
  3565. "role": "Maintainer"
  3566. },
  3567. {
  3568. "name": "Primoz Hmeljak",
  3569. "homepage": "https://github.com/primsi",
  3570. "role": "Maintainer"
  3571. },
  3572. {
  3573. "name": "See other contributors",
  3574. "homepage": "https://www.drupal.org/node/1943336/committers",
  3575. "role": "contributor"
  3576. },
  3577. {
  3578. "name": "Primsi",
  3579. "homepage": "https://www.drupal.org/user/282629"
  3580. },
  3581. {
  3582. "name": "marcingy",
  3583. "homepage": "https://www.drupal.org/user/77320"
  3584. },
  3585. {
  3586. "name": "samuel.mortenson",
  3587. "homepage": "https://www.drupal.org/user/2582268"
  3588. },
  3589. {
  3590. "name": "slashrsm",
  3591. "homepage": "https://www.drupal.org/user/744628"
  3592. }
  3593. ],
  3594. "description": "Entity browsing and selecting component.",
  3595. "homepage": "http://drupal.org/project/entity_browser",
  3596. "support": {
  3597. "source": "http://cgit.drupalcode.org/entity_browser",
  3598. "issues": "http://drupal.org/project/issues/entity_browser",
  3599. "irc": "irc://irc.freenode.org/drupal-contribute"
  3600. }
  3601. },
  3602. {
  3603. "name": "drupal/entity_browser_enhanced",
  3604. "version": "1.0.0-rc3",
  3605. "source": {
  3606. "type": "git",
  3607. "url": "https://git.drupal.org/project/entity_browser_enhanced",
  3608. "reference": "8.x-1.0-rc3"
  3609. },
  3610. "dist": {
  3611. "type": "zip",
  3612. "url": "https://ftp.drupal.org/files/projects/entity_browser_enhanced-8.x-1.0-rc3.zip",
  3613. "reference": "8.x-1.0-rc3",
  3614. "shasum": "041a93dac5ec9f74a8834faee60995c4db7d1e65"
  3615. },
  3616. "require": {
  3617. "drupal/core": "~8.0",
  3618. "drupal/entity_browser": "*"
  3619. },
  3620. "type": "drupal-module",
  3621. "extra": {
  3622. "branch-alias": {
  3623. "dev-1.x": "1.x-dev",
  3624. "dev-8.x-1.x": "8.1.x-dev"
  3625. },
  3626. "drupal": {
  3627. "version": "8.x-1.0-rc3",
  3628. "datestamp": "1528884525",
  3629. "security-coverage": {
  3630. "status": "not-covered",
  3631. "message": "RC releases are not covered by Drupal security advisories."
  3632. }
  3633. }
  3634. },
  3635. "notification-url": "https://packages.drupal.org/8/downloads",
  3636. "license": [
  3637. "GPL-2.0-or-later"
  3638. ],
  3639. "authors": [
  3640. {
  3641. "name": "Vardot",
  3642. "homepage": "https://www.drupal.org/vardot",
  3643. "role": "Maintainer"
  3644. },
  3645. {
  3646. "name": "RajabNatshah",
  3647. "homepage": "https://www.drupal.org/user/1414312"
  3648. }
  3649. ],
  3650. "description": "Provides some behavior and style enhancements to Entity Browsers, specifically for multiselect and image/media browsers.",
  3651. "homepage": "https://www.drupal.org/project/entity_browser_enhanced",
  3652. "support": {
  3653. "source": "http://cgit.drupalcode.org/entity_browser_enhanced",
  3654. "issues": "https://www.drupal.org/project/issues/entity_browser_enhanced"
  3655. }
  3656. },
  3657. {
  3658. "name": "drupal/entity_clone",
  3659. "version": "1.0.0-alpha2",
  3660. "source": {
  3661. "type": "git",
  3662. "url": "https://git.drupal.org/project/entity_clone",
  3663. "reference": "8.x-1.0-alpha2"
  3664. },
  3665. "dist": {
  3666. "type": "zip",
  3667. "url": "https://ftp.drupal.org/files/projects/entity_clone-8.x-1.0-alpha2.zip",
  3668. "reference": "8.x-1.0-alpha2",
  3669. "shasum": "55a533e56853b78f949796040ee68881a68917b5"
  3670. },
  3671. "require": {
  3672. "drupal/core": "~8.0"
  3673. },
  3674. "type": "drupal-module",
  3675. "extra": {
  3676. "branch-alias": {
  3677. "dev-1.x": "1.x-dev"
  3678. },
  3679. "drupal": {
  3680. "version": "8.x-1.0-alpha2",
  3681. "datestamp": "1513145285",
  3682. "security-coverage": {
  3683. "status": "not-covered",
  3684. "message": "Alpha releases are not covered by Drupal security advisories."
  3685. }
  3686. }
  3687. },
  3688. "notification-url": "https://packages.drupal.org/8/downloads",
  3689. "license": [
  3690. "GPL-2.0-or-later"
  3691. ],
  3692. "authors": [
  3693. {
  3694. "name": "vpeltot",
  3695. "homepage": "https://www.drupal.org/user/1361586"
  3696. }
  3697. ],
  3698. "description": "Add a clone action for all entities",
  3699. "homepage": "https://www.drupal.org/project/entity_clone",
  3700. "support": {
  3701. "source": "http://cgit.drupalcode.org/entity_clone"
  3702. }
  3703. },
  3704. {
  3705. "name": "drupal/examples",
  3706. "version": "dev-1.x",
  3707. "source": {
  3708. "type": "git",
  3709. "url": "https://git.drupal.org/project/examples",
  3710. "reference": "0be75808520a7c921ad7c87ac1cc87d716f5dc51"
  3711. },
  3712. "require": {
  3713. "drupal/core": "*"
  3714. },
  3715. "require-dev": {
  3716. "drupal/stream_wrapper_example": "*"
  3717. },
  3718. "suggest": {
  3719. "drupal/devel": "Some modules will be able to pretty-print PHP with this module."
  3720. },
  3721. "type": "drupal-module",
  3722. "extra": {
  3723. "branch-alias": {
  3724. "dev-1.x": "1.x-dev"
  3725. },
  3726. "drupal": {
  3727. "version": "8.x-1.x-dev",
  3728. "datestamp": "1536200285",
  3729. "security-coverage": {
  3730. "status": "not-covered",
  3731. "message": "Project has not opted into security advisory coverage!"
  3732. }
  3733. }
  3734. },
  3735. "notification-url": "https://packages.drupal.org/8/downloads",
  3736. "license": [
  3737. "GPL-2.0+"
  3738. ],
  3739. "authors": [
  3740. {
  3741. "name": "Dave Reid",
  3742. "homepage": "https://www.drupal.org/user/53892"
  3743. },
  3744. {
  3745. "name": "Itangalo",
  3746. "homepage": "https://www.drupal.org/user/153998"
  3747. },
  3748. {
  3749. "name": "Mile23",
  3750. "homepage": "https://www.drupal.org/user/116231"
  3751. },
  3752. {
  3753. "name": "Torenware",
  3754. "homepage": "https://www.drupal.org/user/18784"
  3755. },
  3756. {
  3757. "name": "add1sun",
  3758. "homepage": "https://www.drupal.org/user/65088"
  3759. },
  3760. {
  3761. "name": "cyberswat",
  3762. "homepage": "https://www.drupal.org/user/27802"
  3763. },
  3764. {
  3765. "name": "ilo",
  3766. "homepage": "https://www.drupal.org/user/118449"
  3767. },
  3768. {
  3769. "name": "jhodgdon",
  3770. "homepage": "https://www.drupal.org/user/155601"
  3771. },
  3772. {
  3773. "name": "jn2",
  3774. "homepage": "https://www.drupal.org/user/1001014"
  3775. },
  3776. {
  3777. "name": "katbailey",
  3778. "homepage": "https://www.drupal.org/user/172987"
  3779. },
  3780. {
  3781. "name": "linclark",
  3782. "homepage": "https://www.drupal.org/user/396253"
  3783. },
  3784. {
  3785. "name": "marvil07",
  3786. "homepage": "https://www.drupal.org/user/132175"
  3787. },
  3788. {
  3789. "name": "mikl",
  3790. "homepage": "https://www.drupal.org/user/58679"
  3791. },
  3792. {
  3793. "name": "rfay",
  3794. "homepage": "https://www.drupal.org/user/30906"
  3795. },
  3796. {
  3797. "name": "socketwench",
  3798. "homepage": "https://www.drupal.org/user/65793"
  3799. },
  3800. {
  3801. "name": "yched",
  3802. "homepage": "https://www.drupal.org/user/39567"
  3803. }
  3804. ],
  3805. "description": "The Examples for Developers project aims to provide high-quality, well-documented API examples for a broad range of Drupal core functionality.",
  3806. "homepage": "https://www.drupal.org/project/examples",
  3807. "support": {
  3808. "source": "http://cgit.drupalcode.org/examples",
  3809. "issues": "https://www.drupal.org/project/issues/examples",
  3810. "documentation": "https://api.drupal.org/api/examples"
  3811. },
  3812. "time": "2018-09-10T23:01:03+00:00"
  3813. },
  3814. {
  3815. "name": "drupal/extlink",
  3816. "version": "1.1.0",
  3817. "source": {
  3818. "type": "git",
  3819. "url": "https://git.drupal.org/project/extlink",
  3820. "reference": "8.x-1.1"
  3821. },
  3822. "dist": {
  3823. "type": "zip",
  3824. "url": "https://ftp.drupal.org/files/projects/extlink-8.x-1.1.zip",
  3825. "reference": "8.x-1.1",
  3826. "shasum": "0894f1cd12e2e1aa6b00ea4a6dd5e7234eb2b2b2"
  3827. },
  3828. "require": {
  3829. "drupal/core": "~8.0"
  3830. },
  3831. "type": "drupal-module",
  3832. "extra": {
  3833. "branch-alias": {
  3834. "dev-1.x": "1.x-dev"
  3835. },
  3836. "drupal": {
  3837. "version": "8.x-1.1",
  3838. "datestamp": "1524232684",
  3839. "security-coverage": {
  3840. "status": "covered",
  3841. "message": "Covered by Drupal's security advisory policy"
  3842. }
  3843. }
  3844. },
  3845. "notification-url": "https://packages.drupal.org/8/downloads",
  3846. "license": [
  3847. "GPL-2.0-or-later"
  3848. ],
  3849. "authors": [
  3850. {
  3851. "name": "elachlan",
  3852. "homepage": "https://www.drupal.org/user/1021502"
  3853. },
  3854. {
  3855. "name": "jjeff",
  3856. "homepage": "https://www.drupal.org/user/17190"
  3857. },
  3858. {
  3859. "name": "quicksketch",
  3860. "homepage": "https://www.drupal.org/user/35821"
  3861. }
  3862. ],
  3863. "description": "Modify behavior and appearance of external links.",
  3864. "homepage": "https://www.drupal.org/project/extlink",
  3865. "support": {
  3866. "source": "http://cgit.drupalcode.org/extlink"
  3867. }
  3868. },
  3869. {
  3870. "name": "drupal/field_group",
  3871. "version": "1.0.0",
  3872. "source": {
  3873. "type": "git",
  3874. "url": "https://git.drupal.org/project/field_group",
  3875. "reference": "8.x-1.0"
  3876. },
  3877. "dist": {
  3878. "type": "zip",
  3879. "url": "https://ftp.drupal.org/files/projects/field_group-8.x-1.0.zip",
  3880. "reference": "8.x-1.0",
  3881. "shasum": "e8aa3fae5c3c5dec84644bb577996938d638a611"
  3882. },
  3883. "require": {
  3884. "drupal/core": "*"
  3885. },
  3886. "type": "drupal-module",
  3887. "extra": {
  3888. "branch-alias": {
  3889. "dev-1.x": "1.x-dev"
  3890. },
  3891. "drupal": {
  3892. "version": "8.x-1.0",
  3893. "datestamp": "1510352885",
  3894. "security-coverage": {
  3895. "status": "covered",
  3896. "message": "Covered by Drupal's security advisory policy"
  3897. }
  3898. }
  3899. },
  3900. "notification-url": "https://packages.drupal.org/8/downloads",
  3901. "license": [
  3902. "GPL-2.0+"
  3903. ],
  3904. "authors": [
  3905. {
  3906. "name": "Hydra",
  3907. "homepage": "https://www.drupal.org/user/647364"
  3908. },
  3909. {
  3910. "name": "Stalski",
  3911. "homepage": "https://www.drupal.org/user/322618"
  3912. },
  3913. {
  3914. "name": "jyve",
  3915. "homepage": "https://www.drupal.org/user/591438"
  3916. },
  3917. {
  3918. "name": "swentel",
  3919. "homepage": "https://www.drupal.org/user/107403"
  3920. },
  3921. {
  3922. "name": "zuuperman",
  3923. "homepage": "https://www.drupal.org/user/361625"
  3924. }
  3925. ],
  3926. "description": "Provides the field_group module.",
  3927. "homepage": "https://www.drupal.org/project/field_group",
  3928. "support": {
  3929. "source": "http://cgit.drupalcode.org/field_group"
  3930. }
  3931. },
  3932. {
  3933. "name": "drupal/file_mdm",
  3934. "version": "1.1.0",
  3935. "source": {
  3936. "type": "git",
  3937. "url": "https://git.drupal.org/project/file_mdm",
  3938. "reference": "8.x-1.1"
  3939. },
  3940. "dist": {
  3941. "type": "zip",
  3942. "url": "https://ftp.drupal.org/files/projects/file_mdm-8.x-1.1.zip",
  3943. "reference": "8.x-1.1",
  3944. "shasum": "7f354aec6f89e3141c2aa1fb3747ad5d4578c13f"
  3945. },
  3946. "require": {
  3947. "drupal/core": "~8.0",
  3948. "lsolesen/pel": "0.9.6",
  3949. "phenx/php-font-lib": "0.5",
  3950. "php": ">=5.6"
  3951. },
  3952. "require-dev": {
  3953. "drupal/image_effects": "*"
  3954. },
  3955. "type": "drupal-module",
  3956. "extra": {
  3957. "branch-alias": {
  3958. "dev-1.x": "1.x-dev"
  3959. },
  3960. "drupal": {
  3961. "version": "8.x-1.1",
  3962. "datestamp": "1488273785",
  3963. "security-coverage": {
  3964. "status": "covered",
  3965. "message": "Covered by Drupal's security advisory policy"
  3966. }
  3967. }
  3968. },
  3969. "notification-url": "https://packages.drupal.org/8/downloads",
  3970. "license": [
  3971. "GPL-2.0-or-later"
  3972. ],
  3973. "authors": [
  3974. {
  3975. "name": "mondrake",
  3976. "homepage": "https://www.drupal.org/user/1307444"
  3977. }
  3978. ],
  3979. "description": "Provides a service to manage file metadata.",
  3980. "homepage": "https://www.drupal.org/project/file_mdm",
  3981. "support": {
  3982. "source": "http://cgit.drupalcode.org/file_mdm"
  3983. }
  3984. },
  3985. {
  3986. "name": "drupal/file_mdm_exif",
  3987. "version": "1.1.0",
  3988. "require": {
  3989. "drupal/core": "~8.0",
  3990. "drupal/file_mdm": "self.version"
  3991. },
  3992. "require-dev": {
  3993. "drupal/image_effects": "*"
  3994. },
  3995. "type": "metapackage",
  3996. "extra": {
  3997. "branch-alias": {
  3998. "dev-1.x": "1.x-dev"
  3999. },
  4000. "drupal": {
  4001. "version": "8.x-1.1",
  4002. "datestamp": "1488273785",
  4003. "security-coverage": {
  4004. "status": "covered",
  4005. "message": "Covered by Drupal's security advisory policy"
  4006. }
  4007. }
  4008. },
  4009. "notification-url": "https://packages.drupal.org/8/downloads",
  4010. "license": [
  4011. "GPL-2.0-or-later"
  4012. ],
  4013. "authors": [
  4014. {
  4015. "name": "mondrake",
  4016. "homepage": "https://www.drupal.org/user/1307444"
  4017. }
  4018. ],
  4019. "description": "Provides a file metadata plugin for EXIF image information.",
  4020. "homepage": "https://www.drupal.org/project/file_mdm",
  4021. "support": {
  4022. "source": "http://cgit.drupalcode.org/file_mdm"
  4023. }
  4024. },
  4025. {
  4026. "name": "drupal/filefield_sources",
  4027. "version": "dev-1.x",
  4028. "source": {
  4029. "type": "git",
  4030. "url": "https://git.drupal.org/project/filefield_sources",
  4031. "reference": "b19c6a839804f47587828d4a50e29e0720fa4c08"
  4032. },
  4033. "require": {
  4034. "drupal/core": "*"
  4035. },
  4036. "type": "drupal-module",
  4037. "extra": {
  4038. "branch-alias": {
  4039. "dev-1.x": "1.x-dev"
  4040. },
  4041. "drupal": {
  4042. "version": "8.x-1.x-dev",
  4043. "datestamp": "1487711283",
  4044. "security-coverage": {
  4045. "status": "not-covered",
  4046. "message": "Dev releases are not covered by Drupal security advisories."
  4047. }
  4048. }
  4049. },
  4050. "notification-url": "https://packages.drupal.org/8/downloads",
  4051. "license": [
  4052. "GPL-2.0-or-later"
  4053. ],
  4054. "authors": [
  4055. {
  4056. "name": "profak",
  4057. "homepage": "https://www.drupal.org/user/782534"
  4058. },
  4059. {
  4060. "name": "quicksketch",
  4061. "homepage": "https://www.drupal.org/user/35821"
  4062. }
  4063. ],
  4064. "description": "Extends File fields to allow referencing of existing files, remote files, and server files.",
  4065. "homepage": "https://www.drupal.org/project/filefield_sources",
  4066. "support": {
  4067. "source": "http://cgit.drupalcode.org/filefield_sources"
  4068. },
  4069. "time": "2017-02-21T21:07:00+00:00"
  4070. },
  4071. {
  4072. "name": "drupal/filter_perms",
  4073. "version": "dev-1.x",
  4074. "source": {
  4075. "type": "git",
  4076. "url": "https://git.drupal.org/project/filter_perms",
  4077. "reference": "f491dd73fd876f6de0b2252c6b9bf18e0e27b357"
  4078. },
  4079. "require": {
  4080. "drupal/core": "*"
  4081. },
  4082. "type": "drupal-module",
  4083. "extra": {
  4084. "branch-alias": {
  4085. "dev-1.x": "1.x-dev"
  4086. },
  4087. "drupal": {
  4088. "version": "8.x-1.x-dev",
  4089. "datestamp": "1469645939",
  4090. "security-coverage": {
  4091. "status": "not-covered",
  4092. "message": "Dev releases are not covered by Drupal security advisories."
  4093. }
  4094. }
  4095. },
  4096. "notification-url": "https://packages.drupal.org/8/downloads",
  4097. "license": [
  4098. "GPL-2.0-or-later"
  4099. ],
  4100. "authors": [
  4101. {
  4102. "name": "cYu",
  4103. "homepage": "https://www.drupal.org/user/202205"
  4104. },
  4105. {
  4106. "name": "deekayen",
  4107. "homepage": "https://www.drupal.org/user/972"
  4108. },
  4109. {
  4110. "name": "willzyx",
  4111. "homepage": "https://www.drupal.org/user/1043862"
  4112. }
  4113. ],
  4114. "description": "Provides role and module filters to simplify the user permissions page.",
  4115. "homepage": "https://www.drupal.org/project/filter_perms",
  4116. "support": {
  4117. "source": "http://cgit.drupalcode.org/filter_perms"
  4118. },
  4119. "time": "2016-07-27T19:01:11+00:00"
  4120. },
  4121. {
  4122. "name": "drupal/honeypot",
  4123. "version": "1.29.0",
  4124. "source": {
  4125. "type": "git",
  4126. "url": "https://git.drupal.org/project/honeypot",
  4127. "reference": "8.x-1.29"
  4128. },
  4129. "dist": {
  4130. "type": "zip",
  4131. "url": "https://ftp.drupal.org/files/projects/honeypot-8.x-1.29.zip",
  4132. "reference": "8.x-1.29",
  4133. "shasum": "029d9e068d8f6a5db52434c27dc71bd3f06da487"
  4134. },
  4135. "require": {
  4136. "drupal/core": "~8.0"
  4137. },
  4138. "type": "drupal-module",
  4139. "extra": {
  4140. "branch-alias": {
  4141. "dev-1.x": "1.x-dev"
  4142. },
  4143. "drupal": {
  4144. "version": "8.x-1.29",
  4145. "datestamp": "1536179280",
  4146. "security-coverage": {
  4147. "status": "covered",
  4148. "message": "Covered by Drupal's security advisory policy"
  4149. }
  4150. }
  4151. },
  4152. "notification-url": "https://packages.drupal.org/8/downloads",
  4153. "license": [
  4154. "GPL-2.0+"
  4155. ],
  4156. "authors": [
  4157. {
  4158. "name": "Jeff Geerling",
  4159. "homepage": "https://www.drupal.org/user/389011",
  4160. "email": "geerlingguy@mac.com"
  4161. }
  4162. ],
  4163. "description": "Mitigates spam form submissions using the honeypot method.",
  4164. "homepage": "https://www.drupal.org/project/honeypot",
  4165. "keywords": [
  4166. "deterrent",
  4167. "form",
  4168. "honeypot",
  4169. "honeytrap",
  4170. "php",
  4171. "spam"
  4172. ],
  4173. "support": {
  4174. "source": "http://cgit.drupalcode.org/honeypot"
  4175. }
  4176. },
  4177. {
  4178. "name": "drupal/imagemagick",
  4179. "version": "2.3.0",
  4180. "source": {
  4181. "type": "git",
  4182. "url": "https://git.drupal.org/project/imagemagick",
  4183. "reference": "8.x-2.3"
  4184. },
  4185. "dist": {
  4186. "type": "zip",
  4187. "url": "https://ftp.drupal.org/files/projects/imagemagick-8.x-2.3.zip",
  4188. "reference": "8.x-2.3",
  4189. "shasum": "8359921d4700e954364c2633332c20579bb75a34"
  4190. },
  4191. "require": {
  4192. "drupal/core": "^8.3",
  4193. "drupal/file_mdm": "^1.1",
  4194. "drupal/file_mdm_exif": "^1.1"
  4195. },
  4196. "type": "drupal-module",
  4197. "extra": {
  4198. "branch-alias": {
  4199. "dev-2.x": "2.x-dev"
  4200. },
  4201. "drupal": {
  4202. "version": "8.x-2.3",
  4203. "datestamp": "1520958305",
  4204. "security-coverage": {
  4205. "status": "covered",
  4206. "message": "Covered by Drupal's security advisory policy"
  4207. }
  4208. }
  4209. },
  4210. "notification-url": "https://packages.drupal.org/8/downloads",
  4211. "license": [
  4212. "GPL-2.0-or-later"
  4213. ],
  4214. "authors": [
  4215. {
  4216. "name": "Chris Charlton",
  4217. "homepage": "https://www.drupal.org/user/17089"
  4218. },
  4219. {
  4220. "name": "chx",
  4221. "homepage": "https://www.drupal.org/user/9446"
  4222. },
  4223. {
  4224. "name": "claudiu.cristea",
  4225. "homepage": "https://www.drupal.org/user/56348"
  4226. },
  4227. {
  4228. "name": "dman",
  4229. "homepage": "https://www.drupal.org/user/33240"
  4230. },
  4231. {
  4232. "name": "dopry",
  4233. "homepage": "https://www.drupal.org/user/22202"
  4234. },
  4235. {
  4236. "name": "drewish",
  4237. "homepage": "https://www.drupal.org/user/34869"
  4238. },
  4239. {
  4240. "name": "gdl",
  4241. "homepage": "https://www.drupal.org/user/507326"
  4242. },
  4243. {
  4244. "name": "mondrake",
  4245. "homepage": "https://www.drupal.org/user/1307444"
  4246. },
  4247. {
  4248. "name": "quicksketch",
  4249. "homepage": "https://www.drupal.org/user/35821"
  4250. },
  4251. {
  4252. "name": "sun",
  4253. "homepage": "https://www.drupal.org/user/54136"
  4254. },
  4255. {
  4256. "name": "walkah",
  4257. "homepage": "https://www.drupal.org/user/1531"
  4258. }
  4259. ],
  4260. "description": "Provides an image toolkit to integrate ImageMagick with the Image API.",
  4261. "homepage": "https://www.drupal.org/project/imagemagick",
  4262. "support": {
  4263. "source": "http://cgit.drupalcode.org/imagemagick"
  4264. }
  4265. },
  4266. {
  4267. "name": "drupal/inline_entity_form",
  4268. "version": "1.0.0-rc1",
  4269. "source": {
  4270. "type": "git",
  4271. "url": "https://git.drupal.org/project/inline_entity_form",
  4272. "reference": "8.x-1.0-rc1"
  4273. },
  4274. "dist": {
  4275. "type": "zip",
  4276. "url": "https://ftp.drupal.org/files/projects/inline_entity_form-8.x-1.0-rc1.zip",
  4277. "reference": "8.x-1.0-rc1",
  4278. "shasum": "898789fb6a0662fc2572b87f8d0654a0241473f9"
  4279. },
  4280. "require": {
  4281. "drupal/core": "~8.0"
  4282. },
  4283. "require-dev": {
  4284. "drupal/entity_reference_revisions": "*"
  4285. },
  4286. "type": "drupal-module",
  4287. "extra": {
  4288. "branch-alias": {
  4289. "dev-1.x": "1.x-dev"
  4290. },
  4291. "drupal": {
  4292. "version": "8.x-1.0-rc1",
  4293. "datestamp": "1527030784",
  4294. "security-coverage": {
  4295. "status": "not-covered",
  4296. "message": "RC releases are not covered by Drupal security advisories."
  4297. }
  4298. }
  4299. },
  4300. "notification-url": "https://packages.drupal.org/8/downloads",
  4301. "license": [
  4302. "GPL-2.0+"
  4303. ],
  4304. "authors": [
  4305. {
  4306. "name": "bojanz",
  4307. "homepage": "https://www.drupal.org/user/86106"
  4308. },
  4309. {
  4310. "name": "dawehner",
  4311. "homepage": "https://www.drupal.org/user/99340"
  4312. },
  4313. {
  4314. "name": "rszrama",
  4315. "homepage": "https://www.drupal.org/user/49344"
  4316. },
  4317. {
  4318. "name": "slashrsm",
  4319. "homepage": "https://www.drupal.org/user/744628"
  4320. },
  4321. {
  4322. "name": "webflo",
  4323. "homepage": "https://www.drupal.org/user/254778"
  4324. }
  4325. ],
  4326. "description": "Provides a widget for inline management (creation, modification, removal) of referenced entities.",
  4327. "homepage": "https://www.drupal.org/project/inline_entity_form",
  4328. "support": {
  4329. "source": "http://cgit.drupalcode.org/inline_entity_form"
  4330. }
  4331. },
  4332. {
  4333. "name": "drupal/kint",
  4334. "version": "1.2.0",
  4335. "require": {
  4336. "drupal/core": "~8.0",
  4337. "drupal/devel": "self.version"
  4338. },
  4339. "type": "metapackage",
  4340. "extra": {
  4341. "branch-alias": {
  4342. "dev-1.x": "1.x-dev"
  4343. },
  4344. "drupal": {
  4345. "version": "8.x-1.2",
  4346. "datestamp": "1507197844",
  4347. "security-coverage": {
  4348. "status": "covered",
  4349. "message": "Covered by Drupal's security advisory policy"
  4350. }
  4351. }
  4352. },
  4353. "notification-url": "https://packages.drupal.org/8/downloads",
  4354. "license": [
  4355. "GPL-2.0-or-later"
  4356. ],
  4357. "authors": [
  4358. {
  4359. "name": "catch",
  4360. "homepage": "https://www.drupal.org/user/35733"
  4361. },
  4362. {
  4363. "name": "juampynr",
  4364. "homepage": "https://www.drupal.org/user/682736"
  4365. },
  4366. {
  4367. "name": "lussoluca",
  4368. "homepage": "https://www.drupal.org/user/138068"
  4369. },
  4370. {
  4371. "name": "moshe weitzman",
  4372. "homepage": "https://www.drupal.org/user/23"
  4373. },
  4374. {
  4375. "name": "pcambra",
  4376. "homepage": "https://www.drupal.org/user/122101"
  4377. },
  4378. {
  4379. "name": "salvis",
  4380. "homepage": "https://www.drupal.org/user/82964"
  4381. },
  4382. {
  4383. "name": "willzyx",
  4384. "homepage": "https://www.drupal.org/user/1043862"
  4385. }
  4386. ],
  4387. "description": "Wrapper for Kint debugging tool",
  4388. "homepage": "https://www.drupal.org/project/devel",
  4389. "support": {
  4390. "source": "http://cgit.drupalcode.org/devel"
  4391. }
  4392. },
  4393. {
  4394. "name": "drupal/link_attributes",
  4395. "version": "1.5.0",
  4396. "source": {
  4397. "type": "git",
  4398. "url": "https://git.drupal.org/project/link_attributes",
  4399. "reference": "8.x-1.5"
  4400. },
  4401. "dist": {
  4402. "type": "zip",
  4403. "url": "https://ftp.drupal.org/files/projects/link_attributes-8.x-1.5.zip",
  4404. "reference": "8.x-1.5",
  4405. "shasum": "48c0e6ac2c3f4843372abb394c1aabe380dfa604"
  4406. },
  4407. "require": {
  4408. "drupal/core": "*"
  4409. },
  4410. "type": "drupal-module",
  4411. "extra": {
  4412. "branch-alias": {
  4413. "dev-1.x": "1.x-dev"
  4414. },
  4415. "drupal": {
  4416. "version": "8.x-1.5",
  4417. "datestamp": "1537173781",
  4418. "security-coverage": {
  4419. "status": "covered",
  4420. "message": "Covered by Drupal's security advisory policy"
  4421. }
  4422. }
  4423. },
  4424. "notification-url": "https://packages.drupal.org/8/downloads",
  4425. "license": [
  4426. "GPL-2.0-or-later"
  4427. ],
  4428. "authors": [
  4429. {
  4430. "name": "larowlan",
  4431. "homepage": "https://www.drupal.org/user/395439"
  4432. }
  4433. ],
  4434. "description": "Provides a widget to allow settings of link attributes for menu links.",
  4435. "homepage": "https://www.drupal.org/project/link_attributes",
  4436. "support": {
  4437. "source": "http://cgit.drupalcode.org/link_attributes"
  4438. }
  4439. },
  4440. {
  4441. "name": "drupal/linkit",
  4442. "version": "4.3.0",
  4443. "source": {
  4444. "type": "git",
  4445. "url": "https://git.drupal.org/project/linkit",
  4446. "reference": "8.x-4.3"
  4447. },
  4448. "dist": {
  4449. "type": "zip",
  4450. "url": "https://ftp.drupal.org/files/projects/linkit-8.x-4.3.zip",
  4451. "reference": "8.x-4.3",
  4452. "shasum": "e624ea2f18a6100b76a8337e24f7c08df6e2235e"
  4453. },
  4454. "require": {
  4455. "drupal/core": "~8.0"
  4456. },
  4457. "type": "drupal-module",
  4458. "extra": {
  4459. "branch-alias": {
  4460. "dev-4.x": "4.x-dev"
  4461. },
  4462. "drupal": {
  4463. "version": "8.x-4.3",
  4464. "datestamp": "1490205830",
  4465. "security-coverage": {
  4466. "status": "covered",
  4467. "message": "Covered by Drupal's security advisory policy"
  4468. }
  4469. }
  4470. },
  4471. "notification-url": "https://packages.drupal.org/8/downloads",
  4472. "license": [
  4473. "GPL-2.0+"
  4474. ],
  4475. "authors": [
  4476. {
  4477. "name": "Emil Stjerneman",
  4478. "homepage": "https://stjerneman.com",
  4479. "email": "emil@stjerneman.com",
  4480. "role": "Maintainer"
  4481. }
  4482. ],
  4483. "description": "Linkit - Enriched linking experience",
  4484. "homepage": "http://drupal.org/project/linkit",
  4485. "support": {
  4486. "source": "http://cgit.drupalcode.org/linkit",
  4487. "issues": "http://drupal.org/project/linkit"
  4488. }
  4489. },
  4490. {
  4491. "name": "drupal/login_destination",
  4492. "version": "dev-1.x",
  4493. "source": {
  4494. "type": "git",
  4495. "url": "https://git.drupal.org/project/login_destination",
  4496. "reference": "54be8b89fdc073ca40af6b9b2eeb050e0aeb7908"
  4497. },
  4498. "require": {
  4499. "drupal/core": "~8.0"
  4500. },
  4501. "type": "drupal-module",
  4502. "extra": {
  4503. "branch-alias": {
  4504. "dev-1.x": "1.x-dev"
  4505. },
  4506. "drupal": {
  4507. "version": "8.x-1.x-dev",
  4508. "datestamp": "1514805485",
  4509. "security-coverage": {
  4510. "status": "not-covered",
  4511. "message": "Dev releases are not covered by Drupal security advisories."
  4512. }
  4513. }
  4514. },
  4515. "notification-url": "https://packages.drupal.org/8/downloads",
  4516. "license": [
  4517. "GPL-2.0-or-later"
  4518. ],
  4519. "authors": [
  4520. {
  4521. "name": "Oliver Huynh",
  4522. "homepage": "https://www.drupal.org/user/243730"
  4523. },
  4524. {
  4525. "name": "akashjain132",
  4526. "homepage": "https://www.drupal.org/user/2622667"
  4527. },
  4528. {
  4529. "name": "beautifulmind",
  4530. "homepage": "https://www.drupal.org/user/219482"
  4531. },
  4532. {
  4533. "name": "ddrozdik",
  4534. "homepage": "https://www.drupal.org/user/574124"
  4535. },
  4536. {
  4537. "name": "jng12",
  4538. "homepage": "https://www.drupal.org/user/204316"
  4539. },
  4540. {
  4541. "name": "marcp",
  4542. "homepage": "https://www.drupal.org/user/20885"
  4543. },
  4544. {
  4545. "name": "mithy",
  4546. "homepage": "https://www.drupal.org/user/258911"
  4547. },
  4548. {
  4549. "name": "moshe weitzman",
  4550. "homepage": "https://www.drupal.org/user/23"
  4551. },
  4552. {
  4553. "name": "quantumized",
  4554. "homepage": "https://www.drupal.org/user/61221"
  4555. },
  4556. {
  4557. "name": "rsvelko",
  4558. "homepage": "https://www.drupal.org/user/337401"
  4559. }
  4560. ],
  4561. "description": "The Login Destination module add possibility customize the destination that the user is redirected to after login.",
  4562. "homepage": "https://www.drupal.org/project/login_destination",
  4563. "support": {
  4564. "source": "http://cgit.drupalcode.org/login_destination"
  4565. },
  4566. "time": "2018-01-01T11:13:09+00:00"
  4567. },
  4568. {
  4569. "name": "drupal/maillog",
  4570. "version": "dev-1.x",
  4571. "source": {
  4572. "type": "git",
  4573. "url": "https://git.drupal.org/project/maillog",
  4574. "reference": "14fd24cd89e299ad271608cd52706c60b753c26d"
  4575. },
  4576. "require": {
  4577. "drupal/core": "*"
  4578. },
  4579. "type": "drupal-module",
  4580. "extra": {
  4581. "branch-alias": {
  4582. "dev-1.x": "1.x-dev"
  4583. },
  4584. "drupal": {
  4585. "version": "8.x-1.x-dev",
  4586. "datestamp": "1470431939",
  4587. "security-coverage": {
  4588. "status": "not-covered",
  4589. "message": "Project has not opted into security advisory coverage!"
  4590. }
  4591. }
  4592. },
  4593. "notification-url": "https://packages.drupal.org/8/downloads",
  4594. "license": [
  4595. "GPL-2.0-or-later"
  4596. ],
  4597. "authors": [
  4598. {
  4599. "name": "Berdir",
  4600. "homepage": "https://www.drupal.org/user/214652"
  4601. },
  4602. {
  4603. "name": "DamienMcKenna",
  4604. "homepage": "https://www.drupal.org/user/108450"
  4605. },
  4606. {
  4607. "name": "miro_dietiker",
  4608. "homepage": "https://www.drupal.org/user/227761"
  4609. },
  4610. {
  4611. "name": "pluess",
  4612. "homepage": "https://www.drupal.org/user/84659"
  4613. }
  4614. ],
  4615. "description": "Utility to log all Mails for debugging purposes. It is possible to suppress mail delivery for e.g. dev or staging systems.",
  4616. "homepage": "https://www.drupal.org/project/maillog",
  4617. "support": {
  4618. "source": "http://cgit.drupalcode.org/maillog"
  4619. },
  4620. "time": "2016-08-05T21:18:07+00:00"
  4621. },
  4622. {
  4623. "name": "drupal/mailsystem",
  4624. "version": "4.1.0",
  4625. "source": {
  4626. "type": "git",
  4627. "url": "https://git.drupal.org/project/mailsystem",
  4628. "reference": "8.x-4.1"
  4629. },
  4630. "dist": {
  4631. "type": "zip",
  4632. "url": "https://ftp.drupal.org/files/projects/mailsystem-8.x-4.1.zip",
  4633. "reference": "8.x-4.1",
  4634. "shasum": "318b87f1fdf96e6db30b04a98108af02a0fc3dcc"
  4635. },
  4636. "require": {
  4637. "drupal/core": "^8.0.5"
  4638. },
  4639. "type": "drupal-module",
  4640. "extra": {
  4641. "branch-alias": {
  4642. "dev-4.x": "4.x-dev"
  4643. },
  4644. "drupal": {
  4645. "version": "8.x-4.1",
  4646. "datestamp": "1467993646",
  4647. "security-coverage": {
  4648. "status": "covered",
  4649. "message": "Covered by Drupal's security advisory policy"
  4650. }
  4651. }
  4652. },
  4653. "notification-url": "https://packages.drupal.org/8/downloads",
  4654. "license": [
  4655. "GPL-2.0+"
  4656. ],
  4657. "authors": [
  4658. {
  4659. "name": "Berdir",
  4660. "homepage": "https://www.drupal.org/user/214652"
  4661. },
  4662. {
  4663. "name": "Les Lim",
  4664. "homepage": "https://www.drupal.org/user/84263"
  4665. },
  4666. {
  4667. "name": "Nafes",
  4668. "homepage": "https://www.drupal.org/user/2489926"
  4669. },
  4670. {
  4671. "name": "miro_dietiker",
  4672. "homepage": "https://www.drupal.org/user/227761"
  4673. },
  4674. {
  4675. "name": "pillarsdotnet",
  4676. "homepage": "https://www.drupal.org/user/36148"
  4677. }
  4678. ],
  4679. "description": "Mail System",
  4680. "homepage": "https://www.drupal.org/project/mailsystem",
  4681. "support": {
  4682. "source": "http://cgit.drupalcode.org/mailsystem"
  4683. }
  4684. },
  4685. {
  4686. "name": "drupal/matomo",
  4687. "version": "1.7.0",
  4688. "source": {
  4689. "type": "git",
  4690. "url": "https://git.drupal.org/project/matomo",
  4691. "reference": "8.x-1.7"
  4692. },
  4693. "dist": {
  4694. "type": "zip",
  4695. "url": "https://ftp.drupal.org/files/projects/matomo-8.x-1.7.zip",
  4696. "reference": "8.x-1.7",
  4697. "shasum": "6b7dbc8c76800a6dadb7568cf2a3f3efdde88e13"
  4698. },
  4699. "require": {
  4700. "drupal/core": "~8.0"
  4701. },
  4702. "require-dev": {
  4703. "drupal/php": "*",
  4704. "drupal/token": "*"
  4705. },
  4706. "type": "drupal-module",
  4707. "extra": {
  4708. "branch-alias": {
  4709. "dev-1.x": "1.x-dev"
  4710. },
  4711. "drupal": {
  4712. "version": "8.x-1.7",
  4713. "datestamp": "1531470197",
  4714. "security-coverage": {
  4715. "status": "covered",
  4716. "message": "Covered by Drupal's security advisory policy"
  4717. }
  4718. }
  4719. },
  4720. "notification-url": "https://packages.drupal.org/8/downloads",
  4721. "license": [
  4722. "GPL-2.0+"
  4723. ],
  4724. "authors": [
  4725. {
  4726. "name": "hass",
  4727. "homepage": "https://www.drupal.org/u/hass"
  4728. },
  4729. {
  4730. "name": "See other contributors",
  4731. "homepage": "https://www.drupal.org/node/247808/committers"
  4732. }
  4733. ],
  4734. "description": "Adds Matomo javascript tracking code to all your site's pages",
  4735. "homepage": "https://www.drupal.org/project/matomo",
  4736. "support": {
  4737. "source": "http://git.drupal.org/project/matomo.git",
  4738. "issues": "https://www.drupal.org/project/issues/matomo"
  4739. }
  4740. },
  4741. {
  4742. "name": "drupal/maxlength",
  4743. "version": "1.0.0-beta2",
  4744. "source": {
  4745. "type": "git",
  4746. "url": "https://git.drupal.org/project/maxlength",
  4747. "reference": "8.x-1.0-beta2"
  4748. },
  4749. "dist": {
  4750. "type": "zip",
  4751. "url": "https://ftp.drupal.org/files/projects/maxlength-8.x-1.0-beta2.zip",
  4752. "reference": "8.x-1.0-beta2",
  4753. "shasum": "27f7374e55ebdcc696d22d98be8cf4cf9bf58204"
  4754. },
  4755. "require": {
  4756. "drupal/core": "~8.0"
  4757. },
  4758. "type": "drupal-module",
  4759. "extra": {
  4760. "branch-alias": {
  4761. "dev-1.x": "1.x-dev"
  4762. },
  4763. "drupal": {
  4764. "version": "8.x-1.0-beta2",
  4765. "datestamp": "1527856384",
  4766. "security-coverage": {
  4767. "status": "not-covered",
  4768. "message": "Beta releases are not covered by Drupal security advisories."
  4769. }
  4770. }
  4771. },
  4772. "notification-url": "https://packages.drupal.org/8/downloads",
  4773. "license": [
  4774. "GPL-2.0-or-later"
  4775. ],
  4776. "authors": [
  4777. {
  4778. "name": "Aron Novak",
  4779. "homepage": "https://www.drupal.org/user/61864"
  4780. },
  4781. {
  4782. "name": "Schnitzel",
  4783. "homepage": "https://www.drupal.org/user/643820"
  4784. },
  4785. {
  4786. "name": "a_c_m",
  4787. "homepage": "https://www.drupal.org/user/195063"
  4788. },
  4789. {
  4790. "name": "artur.thiessen",
  4791. "homepage": "https://www.drupal.org/user/2390554"
  4792. },
  4793. {
  4794. "name": "barneytech",
  4795. "homepage": "https://www.drupal.org/user/669922"
  4796. },
  4797. {
  4798. "name": "claudiu_cristea",
  4799. "homepage": "https://www.drupal.org/user/2623935"
  4800. },
  4801. {
  4802. "name": "dawehner",
  4803. "homepage": "https://www.drupal.org/user/99340"
  4804. },
  4805. {
  4806. "name": "derhasi",
  4807. "homepage": "https://www.drupal.org/user/83474"
  4808. },
  4809. {
  4810. "name": "frjo",
  4811. "homepage": "https://www.drupal.org/user/5546"
  4812. },
  4813. {
  4814. "name": "hefox",
  4815. "homepage": "https://www.drupal.org/user/426416"
  4816. },
  4817. {
  4818. "name": "jm.federico",
  4819. "homepage": "https://www.drupal.org/user/509892"
  4820. },
  4821. {
  4822. "name": "k4v",
  4823. "homepage": "https://www.drupal.org/user/744246"
  4824. },
  4825. {
  4826. "name": "mariano73",
  4827. "homepage": "https://www.drupal.org/user/1324866"
  4828. },
  4829. {
  4830. "name": "mariuss",
  4831. "homepage": "https://www.drupal.org/user/28539"
  4832. },
  4833. {
  4834. "name": "sanduhrs",
  4835. "homepage": "https://www.drupal.org/user/28074"
  4836. },
  4837. {
  4838. "name": "vasi1186",
  4839. "homepage": "https://www.drupal.org/user/342104"
  4840. }
  4841. ],
  4842. "description": "Limit the number of characters in textfields and textareas and shows the amount of characters left.",
  4843. "homepage": "https://www.drupal.org/project/maxlength",
  4844. "support": {
  4845. "source": "http://cgit.drupalcode.org/maxlength"
  4846. }
  4847. },
  4848. {
  4849. "name": "drupal/menu_admin_per_menu",
  4850. "version": "1.0.0",
  4851. "source": {
  4852. "type": "git",
  4853. "url": "https://git.drupal.org/project/menu_admin_per_menu",
  4854. "reference": "8.x-1.0"
  4855. },
  4856. "dist": {
  4857. "type": "zip",
  4858. "url": "https://ftp.drupal.org/files/projects/menu_admin_per_menu-8.x-1.0.zip",
  4859. "reference": "8.x-1.0",
  4860. "shasum": "27dbef0025146a382feab67db5e93eaf280b8de4"
  4861. },
  4862. "require": {
  4863. "drupal/core": "*"
  4864. },
  4865. "type": "drupal-module",
  4866. "extra": {
  4867. "branch-alias": {
  4868. "dev-1.x": "1.x-dev"
  4869. },
  4870. "drupal": {
  4871. "version": "8.x-1.0",
  4872. "datestamp": "1507184944",
  4873. "security-coverage": {
  4874. "status": "covered",
  4875. "message": "Covered by Drupal's security advisory policy"
  4876. }
  4877. }
  4878. },
  4879. "notification-url": "https://packages.drupal.org/8/downloads",
  4880. "license": [
  4881. "GPL-2.0-or-later"
  4882. ],
  4883. "authors": [
  4884. {
  4885. "name": "anrikun",
  4886. "homepage": "https://www.drupal.org/user/410199"
  4887. },
  4888. {
  4889. "name": "mkdok",
  4890. "homepage": "https://www.drupal.org/user/3308753"
  4891. }
  4892. ],
  4893. "description": "Allows to give roles per menu admin permissions without giving them full administer menu permission.",
  4894. "homepage": "https://www.drupal.org/project/menu_admin_per_menu",
  4895. "support": {
  4896. "source": "http://cgit.drupalcode.org/menu_admin_per_menu"
  4897. }
  4898. },
  4899. {
  4900. "name": "drupal/menu_block",
  4901. "version": "1.5.0",
  4902. "source": {
  4903. "type": "git",
  4904. "url": "https://git.drupal.org/project/menu_block",
  4905. "reference": "8.x-1.5"
  4906. },
  4907. "dist": {
  4908. "type": "zip",
  4909. "url": "https://ftp.drupal.org/files/projects/menu_block-8.x-1.5.zip",
  4910. "reference": "8.x-1.5",
  4911. "shasum": "b3ac3e23e426f702974d88cc8bf93bf2a0b6236b"
  4912. },
  4913. "require": {
  4914. "drupal/core": "*"
  4915. },
  4916. "type": "drupal-module",
  4917. "extra": {
  4918. "branch-alias": {
  4919. "dev-1.x": "1.x-dev"
  4920. },
  4921. "drupal": {
  4922. "version": "8.x-1.5",
  4923. "datestamp": "1525200184",
  4924. "security-coverage": {
  4925. "status": "covered",
  4926. "message": "Covered by Drupal's security advisory policy"
  4927. }
  4928. }
  4929. },
  4930. "notification-url": "https://packages.drupal.org/8/downloads",
  4931. "license": [
  4932. "GPL-2.0-or-later"
  4933. ],
  4934. "authors": [
  4935. {
  4936. "name": "Dave Reid",
  4937. "homepage": "https://www.drupal.org/user/53892"
  4938. },
  4939. {
  4940. "name": "JohnAlbin",
  4941. "homepage": "https://www.drupal.org/user/32095"
  4942. },
  4943. {
  4944. "name": "joelpittet",
  4945. "homepage": "https://www.drupal.org/user/160302"
  4946. },
  4947. {
  4948. "name": "kim.pepper",
  4949. "homepage": "https://www.drupal.org/user/370574"
  4950. },
  4951. {
  4952. "name": "rrrob",
  4953. "homepage": "https://www.drupal.org/user/273533"
  4954. }
  4955. ],
  4956. "description": "Provides configurable blocks of menu links.",
  4957. "homepage": "https://www.drupal.org/project/menu_block",
  4958. "support": {
  4959. "source": "http://cgit.drupalcode.org/menu_block"
  4960. }
  4961. },
  4962. {
  4963. "name": "drupal/menu_position",
  4964. "version": "dev-1.x",
  4965. "source": {
  4966. "type": "git",
  4967. "url": "https://git.drupal.org/project/menu_position",
  4968. "reference": "11191df8dc7bdb1ef215c3f623c098555f571552"
  4969. },
  4970. "require": {
  4971. "drupal/core": "~8.0"
  4972. },
  4973. "type": "drupal-module",
  4974. "extra": {
  4975. "branch-alias": {
  4976. "dev-1.x": "1.x-dev"
  4977. },
  4978. "drupal": {
  4979. "version": "8.x-1.x-dev",
  4980. "datestamp": "1520418485",
  4981. "security-coverage": {
  4982. "status": "not-covered",
  4983. "message": "Dev releases are not covered by Drupal security advisories."
  4984. }
  4985. }
  4986. },
  4987. "notification-url": "https://packages.drupal.org/8/downloads",
  4988. "license": [
  4989. "GPL-2.0+"
  4990. ],
  4991. "authors": [
  4992. {
  4993. "name": "BarisW",
  4994. "homepage": "https://www.drupal.org/user/107229"
  4995. },
  4996. {
  4997. "name": "JohnAlbin",
  4998. "homepage": "https://www.drupal.org/user/32095"
  4999. },
  5000. {
  5001. "name": "lbainbridge",
  5002. "homepage": "https://www.drupal.org/user/2406996"
  5003. }
  5004. ],
  5005. "description": "This module allows for the creation of rules that will dynamically add the current page into the menu system at the requested spots.",
  5006. "homepage": "https://www.drupal.org/project/menu_position",
  5007. "support": {
  5008. "source": "http://cgit.drupalcode.org/menu_position",
  5009. "issues": "https://www.drupal.org/project/issues/menu_position"
  5010. },
  5011. "time": "2018-08-02T13:52:40+00:00"
  5012. },
  5013. {
  5014. "name": "drupal/migrate_plus",
  5015. "version": "4.0.0",
  5016. "source": {
  5017. "type": "git",
  5018. "url": "https://git.drupal.org/project/migrate_plus",
  5019. "reference": "8.x-4.0"
  5020. },
  5021. "dist": {
  5022. "type": "zip",
  5023. "url": "https://ftp.drupal.org/files/projects/migrate_plus-8.x-4.0.zip",
  5024. "reference": "8.x-4.0",
  5025. "shasum": "63dad289defe8298aa5ca5e30062fe9761d19eca"
  5026. },
  5027. "require": {
  5028. "drupal/core": "^8.3"
  5029. },
  5030. "require-dev": {
  5031. "drupal/migrate_example_advanced_setup": "*",
  5032. "drupal/migrate_example_setup": "*"
  5033. },
  5034. "suggest": {
  5035. "ext-soap": "*",
  5036. "sainsburys/guzzle-oauth2-plugin": "3.0 required for the OAuth2 authentication plugin"
  5037. },
  5038. "type": "drupal-module",
  5039. "extra": {
  5040. "branch-alias": {
  5041. "dev-4.x": "4.x-dev"
  5042. },
  5043. "drupal": {
  5044. "version": "8.x-4.0",
  5045. "datestamp": "1536264180",
  5046. "security-coverage": {
  5047. "status": "covered",
  5048. "message": "Covered by Drupal's security advisory policy"
  5049. }
  5050. }
  5051. },
  5052. "notification-url": "https://packages.drupal.org/8/downloads",
  5053. "license": [
  5054. "GPL-2.0+"
  5055. ],
  5056. "authors": [
  5057. {
  5058. "name": "Mike Ryan",
  5059. "homepage": "https://www.drupal.org/u/mikeryan",
  5060. "role": "Maintainer"
  5061. },
  5062. {
  5063. "name": "mikeryan",
  5064. "homepage": "https://www.drupal.org/user/4420"
  5065. }
  5066. ],
  5067. "description": "Enhancements to core migration support.",
  5068. "homepage": "https://www.drupal.org/project/migrate_plus",
  5069. "support": {
  5070. "source": "https://cgit.drupalcode.org/migrate_plus",
  5071. "issues": "https://www.drupal.org/project/issues/migrate_plus",
  5072. "irc": "irc://irc.freenode.org/drupal-migrate"
  5073. }
  5074. },
  5075. {
  5076. "name": "drupal/migrate_tools",
  5077. "version": "4.0.0",
  5078. "source": {
  5079. "type": "git",
  5080. "url": "https://git.drupal.org/project/migrate_tools",
  5081. "reference": "8.x-4.0"
  5082. },
  5083. "dist": {
  5084. "type": "zip",
  5085. "url": "https://ftp.drupal.org/files/projects/migrate_tools-8.x-4.0.zip",
  5086. "reference": "8.x-4.0",
  5087. "shasum": "016dfb010df76723c5a6a447921fdccd3c885237"
  5088. },
  5089. "require": {
  5090. "drupal/core": "^8.3",
  5091. "drupal/migrate_plus": "^4"
  5092. },
  5093. "require-dev": {
  5094. "drupal/coder": "^8",
  5095. "drupal/migrate_source_csv": "^2.2"
  5096. },
  5097. "type": "drupal-module",
  5098. "extra": {
  5099. "branch-alias": {
  5100. "dev-4.x": "4.x-dev"
  5101. },
  5102. "drupal": {
  5103. "version": "8.x-4.0",
  5104. "datestamp": "1535380084",
  5105. "security-coverage": {
  5106. "status": "covered",
  5107. "message": "Covered by Drupal's security advisory policy"
  5108. }
  5109. },
  5110. "drush": {
  5111. "services": {
  5112. "drush.services.yml": "^9"
  5113. }
  5114. }
  5115. },
  5116. "notification-url": "https://packages.drupal.org/8/downloads",
  5117. "license": [
  5118. "GPL-2.0+"
  5119. ],
  5120. "authors": [
  5121. {
  5122. "name": "heddn",
  5123. "homepage": "https://www.drupal.org/user/1463982"
  5124. },
  5125. {
  5126. "name": "mikeryan",
  5127. "homepage": "https://www.drupal.org/user/4420"
  5128. },
  5129. {
  5130. "name": "moshe weitzman",
  5131. "homepage": "https://www.drupal.org/user/23"
  5132. }
  5133. ],
  5134. "description": "Tools to assist in developing and running migrations.",
  5135. "homepage": "http://drupal.org/project/migrate_tools",
  5136. "support": {
  5137. "source": "http://cgit.drupalcode.org/migrate_tools",
  5138. "issues": "http://drupal.org/project/migrate_tools",
  5139. "irc": "irc://irc.freenode.org/drupal-migrate"
  5140. }
  5141. },
  5142. {
  5143. "name": "drupal/path_alias_xt",
  5144. "version": "dev-1.x",
  5145. "source": {
  5146. "type": "git",
  5147. "url": "https://git.drupal.org/project/path_alias_xt",
  5148. "reference": "5d88c9297e4629f390b03ce3ec8c1c8c890b296b"
  5149. },
  5150. "require": {
  5151. "drupal/core": "*"
  5152. },
  5153. "type": "drupal-module",
  5154. "extra": {
  5155. "branch-alias": {
  5156. "dev-1.x": "1.x-dev"
  5157. },
  5158. "drupal": {
  5159. "version": "8.x-1.x-dev",
  5160. "datestamp": "1500044942",
  5161. "security-coverage": {
  5162. "status": "not-covered",
  5163. "message": "Dev releases are not covered by Drupal security advisories."
  5164. }
  5165. }
  5166. },
  5167. "notification-url": "https://packages.drupal.org/8/downloads",
  5168. "license": [
  5169. "GPL-2.0-or-later"
  5170. ],
  5171. "authors": [
  5172. {
  5173. "name": "RdeBoer",
  5174. "homepage": "https://www.drupal.org/user/404007"
  5175. },
  5176. {
  5177. "name": "adriancid",
  5178. "homepage": "https://www.drupal.org/user/1962106"
  5179. },
  5180. {
  5181. "name": "sdstyles",
  5182. "homepage": "https://www.drupal.org/user/1420228"
  5183. }
  5184. ],
  5185. "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.",
  5186. "homepage": "https://www.drupal.org/project/path_alias_xt",
  5187. "support": {
  5188. "source": "http://cgit.drupalcode.org/path_alias_xt"
  5189. },
  5190. "time": "2017-07-14T15:06:28+00:00"
  5191. },
  5192. {
  5193. "name": "drupal/pathauto",
  5194. "version": "1.3.0",
  5195. "source": {
  5196. "type": "git",
  5197. "url": "https://git.drupal.org/project/pathauto",
  5198. "reference": "8.x-1.3"
  5199. },
  5200. "dist": {
  5201. "type": "zip",
  5202. "url": "https://ftp.drupal.org/files/projects/pathauto-8.x-1.3.zip",
  5203. "reference": "8.x-1.3",
  5204. "shasum": "115d5998d7636a03e26c7ce34261b65809d53965"
  5205. },
  5206. "require": {
  5207. "drupal/core": "^8.5",
  5208. "drupal/ctools": "*",
  5209. "drupal/token": "*"
  5210. },
  5211. "type": "drupal-module",
  5212. "extra": {
  5213. "branch-alias": {
  5214. "dev-1.x": "1.x-dev"
  5215. },
  5216. "drupal": {
  5217. "version": "8.x-1.3",
  5218. "datestamp": "1536407884",
  5219. "security-coverage": {
  5220. "status": "covered",
  5221. "message": "Covered by Drupal's security advisory policy"
  5222. }
  5223. }
  5224. },
  5225. "notification-url": "https://packages.drupal.org/8/downloads",
  5226. "license": [
  5227. "GPL-2.0-or-later"
  5228. ],
  5229. "authors": [
  5230. {
  5231. "name": "Berdir",
  5232. "homepage": "https://www.drupal.org/user/214652"
  5233. },
  5234. {
  5235. "name": "Dave Reid",
  5236. "homepage": "https://www.drupal.org/user/53892"
  5237. },
  5238. {
  5239. "name": "Freso",
  5240. "homepage": "https://www.drupal.org/user/27504"
  5241. },
  5242. {
  5243. "name": "greggles",
  5244. "homepage": "https://www.drupal.org/user/36762"
  5245. }
  5246. ],
  5247. "description": "Provides a mechanism for modules to automatically generate aliases for the content they manage.",
  5248. "homepage": "https://www.drupal.org/project/pathauto",
  5249. "support": {
  5250. "source": "http://cgit.drupalcode.org/pathauto"
  5251. }
  5252. },
  5253. {
  5254. "name": "drupal/pathologic",
  5255. "version": "1.0.0-alpha1",
  5256. "source": {
  5257. "type": "git",
  5258. "url": "https://git.drupal.org/project/pathologic",
  5259. "reference": "8.x-1.0-alpha1"
  5260. },
  5261. "dist": {
  5262. "type": "zip",
  5263. "url": "https://ftp.drupal.org/files/projects/pathologic-8.x-1.0-alpha1.zip",
  5264. "reference": "8.x-1.0-alpha1",
  5265. "shasum": "51c699cc001969baa00cca60cf2302a32e578090"
  5266. },
  5267. "require": {
  5268. "drupal/core": "*"
  5269. },
  5270. "type": "drupal-module",
  5271. "extra": {
  5272. "branch-alias": {
  5273. "dev-1.x": "1.x-dev"
  5274. },
  5275. "drupal": {
  5276. "version": "8.x-1.0-alpha1",
  5277. "datestamp": "1525211884",
  5278. "security-coverage": {
  5279. "status": "not-covered",
  5280. "message": "Alpha releases are not covered by Drupal security advisories."
  5281. }
  5282. }
  5283. },
  5284. "notification-url": "https://packages.drupal.org/8/downloads",
  5285. "license": [
  5286. "GPL-2.0-or-later"
  5287. ],
  5288. "authors": [
  5289. {
  5290. "name": "Berdir",
  5291. "homepage": "https://www.drupal.org/user/214652"
  5292. },
  5293. {
  5294. "name": "Garrett Albright",
  5295. "homepage": "https://www.drupal.org/user/191212"
  5296. },
  5297. {
  5298. "name": "dww",
  5299. "homepage": "https://www.drupal.org/user/46549"
  5300. }
  5301. ],
  5302. "description": "Helps avoid broken links and incorrect paths in content.",
  5303. "homepage": "https://www.drupal.org/project/pathologic",
  5304. "support": {
  5305. "source": "http://cgit.drupalcode.org/pathologic"
  5306. }
  5307. },
  5308. {
  5309. "name": "drupal/persistent_login",
  5310. "version": "1.1.0",
  5311. "source": {
  5312. "type": "git",
  5313. "url": "https://git.drupal.org/project/persistent_login",
  5314. "reference": "8.x-1.1"
  5315. },
  5316. "dist": {
  5317. "type": "zip",
  5318. "url": "https://ftp.drupal.org/files/projects/persistent_login-8.x-1.1.zip",
  5319. "reference": "8.x-1.1",
  5320. "shasum": "b1e8f725662ab915767f339e00d7b185ac9097b2"
  5321. },
  5322. "require": {
  5323. "drupal/core": "^8.3"
  5324. },
  5325. "type": "drupal-module",
  5326. "extra": {
  5327. "branch-alias": {
  5328. "dev-1.x": "1.x-dev"
  5329. },
  5330. "drupal": {
  5331. "version": "8.x-1.1",
  5332. "datestamp": "1539379980",
  5333. "security-coverage": {
  5334. "status": "covered",
  5335. "message": "Covered by Drupal's security advisory policy"
  5336. }
  5337. }
  5338. },
  5339. "notification-url": "https://packages.drupal.org/8/downloads",
  5340. "license": [
  5341. "GPL-2.0+"
  5342. ],
  5343. "authors": [
  5344. {
  5345. "name": "gapple",
  5346. "homepage": "https://www.drupal.org/user/490940"
  5347. }
  5348. ],
  5349. "description": "Provides a \"Remember Me\" feature on the login form.",
  5350. "homepage": "https://www.drupal.org/project/persistent_login",
  5351. "keywords": [
  5352. "Drupal"
  5353. ],
  5354. "support": {
  5355. "source": "http://cgit.drupalcode.org/persistent_login",
  5356. "issues": "http://drupal.org/project/issues/persistent_login"
  5357. }
  5358. },
  5359. {
  5360. "name": "drupal/profile",
  5361. "version": "1.0.0-rc1",
  5362. "source": {
  5363. "type": "git",
  5364. "url": "https://git.drupal.org/project/profile",
  5365. "reference": "8.x-1.0-rc1"
  5366. },
  5367. "dist": {
  5368. "type": "zip",
  5369. "url": "https://ftp.drupal.org/files/projects/profile-8.x-1.0-rc1.zip",
  5370. "reference": "8.x-1.0-rc1",
  5371. "shasum": "cc537ca25412adc4fa601ff42cf2fb5cbc6e7b6b"
  5372. },
  5373. "require": {
  5374. "drupal/core": "~8.1",
  5375. "drupal/entity": "*"
  5376. },
  5377. "type": "drupal-module",
  5378. "extra": {
  5379. "branch-alias": {
  5380. "dev-1.x": "1.x-dev"
  5381. },
  5382. "drupal": {
  5383. "version": "8.x-1.0-rc1",
  5384. "datestamp": "1505830324",
  5385. "security-coverage": {
  5386. "status": "not-covered",
  5387. "message": "RC releases are not covered by Drupal security advisories."
  5388. }
  5389. }
  5390. },
  5391. "notification-url": "https://packages.drupal.org/8/downloads",
  5392. "license": [
  5393. "GPL-2.0+"
  5394. ],
  5395. "authors": [
  5396. {
  5397. "name": "bojanz",
  5398. "homepage": "https://www.drupal.org/user/86106"
  5399. },
  5400. {
  5401. "name": "daggerhart",
  5402. "homepage": "https://www.drupal.org/user/167806"
  5403. },
  5404. {
  5405. "name": "dakala",
  5406. "homepage": "https://www.drupal.org/user/53175"
  5407. },
  5408. {
  5409. "name": "fago",
  5410. "homepage": "https://www.drupal.org/user/16747"
  5411. },
  5412. {
  5413. "name": "mglaman",
  5414. "homepage": "https://www.drupal.org/user/2416470"
  5415. },
  5416. {
  5417. "name": "pcambra",
  5418. "homepage": "https://www.drupal.org/user/122101"
  5419. }
  5420. ],
  5421. "description": "Provides configurable user profiles.",
  5422. "homepage": "http://drupal.org/project/profile",
  5423. "support": {
  5424. "source": "http://cgit.drupalcode.org/profile"
  5425. }
  5426. },
  5427. {
  5428. "name": "drupal/redirect",
  5429. "version": "1.3.0",
  5430. "source": {
  5431. "type": "git",
  5432. "url": "https://git.drupal.org/project/redirect",
  5433. "reference": "8.x-1.3"
  5434. },
  5435. "dist": {
  5436. "type": "zip",
  5437. "url": "https://ftp.drupal.org/files/projects/redirect-8.x-1.3.zip",
  5438. "reference": "8.x-1.3",
  5439. "shasum": "3f9620d186e25f36ac56755979932b8ea965b8c7"
  5440. },
  5441. "require": {
  5442. "drupal/core": "~8"
  5443. },
  5444. "type": "drupal-module",
  5445. "extra": {
  5446. "branch-alias": {
  5447. "dev-1.x": "1.x-dev"
  5448. },
  5449. "drupal": {
  5450. "version": "8.x-1.3",
  5451. "datestamp": "1539682684",
  5452. "security-coverage": {
  5453. "status": "covered",
  5454. "message": "Covered by Drupal's security advisory policy"
  5455. }
  5456. }
  5457. },
  5458. "notification-url": "https://packages.drupal.org/8/downloads",
  5459. "license": [
  5460. "GPL-2.0+"
  5461. ],
  5462. "authors": [
  5463. {
  5464. "name": "Berdir",
  5465. "homepage": "https://www.drupal.org/user/214652"
  5466. },
  5467. {
  5468. "name": "Dave Reid",
  5469. "homepage": "https://www.drupal.org/user/53892"
  5470. },
  5471. {
  5472. "name": "pifagor",
  5473. "homepage": "https://www.drupal.org/user/2375692"
  5474. }
  5475. ],
  5476. "description": "Allows users to redirect from old URLs to new URLs.",
  5477. "homepage": "https://www.drupal.org/project/redirect",
  5478. "support": {
  5479. "source": "http://cgit.drupalcode.org/redirect"
  5480. }
  5481. },
  5482. {
  5483. "name": "drupal/redis",
  5484. "version": "1.0.0",
  5485. "source": {
  5486. "type": "git",
  5487. "url": "https://git.drupal.org/project/redis",
  5488. "reference": "8.x-1.0"
  5489. },
  5490. "dist": {
  5491. "type": "zip",
  5492. "url": "https://ftp.drupal.org/files/projects/redis-8.x-1.0.zip",
  5493. "reference": "8.x-1.0",
  5494. "shasum": "98cf460db5c9aaacf3d5c02ac51e0c9e8e85edbb"
  5495. },
  5496. "require": {
  5497. "drupal/core": "~8.0"
  5498. },
  5499. "suggest": {
  5500. "predis/predis": "^1.1.1"
  5501. },
  5502. "type": "drupal-module",
  5503. "extra": {
  5504. "branch-alias": {
  5505. "dev-1.x": "1.x-dev"
  5506. },
  5507. "drupal": {
  5508. "version": "8.x-1.0",
  5509. "datestamp": "1527699484",
  5510. "security-coverage": {
  5511. "status": "covered",
  5512. "message": "Covered by Drupal's security advisory policy"
  5513. }
  5514. }
  5515. },
  5516. "autoload": {
  5517. "psr-4": {
  5518. "Drupal\\redis\\": "src"
  5519. }
  5520. },
  5521. "notification-url": "https://packages.drupal.org/8/downloads",
  5522. "license": [
  5523. "GPL-2.0"
  5524. ],
  5525. "authors": [
  5526. {
  5527. "name": "Berdir",
  5528. "homepage": "https://www.drupal.org/user/214652"
  5529. },
  5530. {
  5531. "name": "pounard",
  5532. "homepage": "https://www.drupal.org/user/240164"
  5533. }
  5534. ],
  5535. "description": "Provide a module placeholder, for using as dependency for module that needs Redis.",
  5536. "homepage": "https://www.drupal.org/project/redis",
  5537. "support": {
  5538. "source": "http://cgit.drupalcode.org/redis"
  5539. }
  5540. },
  5541. {
  5542. "name": "drupal/search_api",
  5543. "version": "1.10.0",
  5544. "source": {
  5545. "type": "git",
  5546. "url": "https://git.drupal.org/project/search_api",
  5547. "reference": "8.x-1.10"
  5548. },
  5549. "dist": {
  5550. "type": "zip",
  5551. "url": "https://ftp.drupal.org/files/projects/search_api-8.x-1.10.zip",
  5552. "reference": "8.x-1.10",
  5553. "shasum": "1c1d038310a079f8e8154545f743ff7a506c4b8e"
  5554. },
  5555. "require": {
  5556. "drupal/core": "^8.5"
  5557. },
  5558. "require-dev": {
  5559. "drupal/search_api_autocomplete": "@dev",
  5560. "drupal/search_api_db": "*"
  5561. },
  5562. "suggest": {
  5563. "drupal/facets": "Adds the ability to create faceted searches.",
  5564. "drupal/search_api_autocomplete": "Allows adding autocomplete suggestions to search fields.",
  5565. "drupal/search_api_solr": "Adds support for using Apache Solr as a backend."
  5566. },
  5567. "type": "drupal-module",
  5568. "extra": {
  5569. "branch-alias": {
  5570. "dev-1.x": "1.x-dev"
  5571. },
  5572. "drupal": {
  5573. "version": "8.x-1.10",
  5574. "datestamp": "1537175280",
  5575. "security-coverage": {
  5576. "status": "covered",
  5577. "message": "Covered by Drupal's security advisory policy"
  5578. }
  5579. },
  5580. "drush": {
  5581. "services": {
  5582. "drush.services.yml": "^9"
  5583. }
  5584. }
  5585. },
  5586. "notification-url": "https://packages.drupal.org/8/downloads",
  5587. "license": [
  5588. "GPL-2.0+"
  5589. ],
  5590. "authors": [
  5591. {
  5592. "name": "Thomas Seidl",
  5593. "homepage": "https://www.drupal.org/u/drunken-monkey"
  5594. },
  5595. {
  5596. "name": "Nick Veenhof",
  5597. "homepage": "https://www.drupal.org/u/nick_vh"
  5598. },
  5599. {
  5600. "name": "See other contributors",
  5601. "homepage": "https://www.drupal.org/node/790418/committers"
  5602. }
  5603. ],
  5604. "description": "Provides a generic framework for modules offering search capabilities.",
  5605. "homepage": "https://www.drupal.org/project/search_api",
  5606. "support": {
  5607. "source": "http://git.drupal.org/project/search_api.git",
  5608. "issues": "https://www.drupal.org/project/issues/search_api",
  5609. "irc": "irc://irc.freenode.org/drupal-search-api"
  5610. }
  5611. },
  5612. {
  5613. "name": "drupal/search_api_db",
  5614. "version": "1.10.0",
  5615. "require": {
  5616. "drupal/core": "~8.0",
  5617. "drupal/search_api": "self.version"
  5618. },
  5619. "type": "metapackage",
  5620. "extra": {
  5621. "branch-alias": {
  5622. "dev-1.x": "1.x-dev"
  5623. },
  5624. "drupal": {
  5625. "version": "8.x-1.10",
  5626. "datestamp": "1537175280",
  5627. "security-coverage": {
  5628. "status": "covered",
  5629. "message": "Covered by Drupal's security advisory policy"
  5630. }
  5631. }
  5632. },
  5633. "notification-url": "https://packages.drupal.org/8/downloads",
  5634. "license": [
  5635. "GPL-2.0-or-later"
  5636. ],
  5637. "authors": [
  5638. {
  5639. "name": "Nick_vh",
  5640. "homepage": "https://www.drupal.org/user/122682"
  5641. },
  5642. {
  5643. "name": "drunken monkey",
  5644. "homepage": "https://www.drupal.org/user/205582"
  5645. }
  5646. ],
  5647. "description": "Offers an implementation of the Search API that uses database tables for indexing content.",
  5648. "homepage": "https://www.drupal.org/project/search_api",
  5649. "support": {
  5650. "source": "http://cgit.drupalcode.org/search_api"
  5651. }
  5652. },
  5653. {
  5654. "name": "drupal/smart_trim",
  5655. "version": "1.1.0",
  5656. "source": {
  5657. "type": "git",
  5658. "url": "https://git.drupal.org/project/smart_trim",
  5659. "reference": "8.x-1.1"
  5660. },
  5661. "dist": {
  5662. "type": "zip",
  5663. "url": "https://ftp.drupal.org/files/projects/smart_trim-8.x-1.1.zip",
  5664. "reference": "8.x-1.1",
  5665. "shasum": "5f1c0f15914208e0ad2ec5cce1d6419040596fc0"
  5666. },
  5667. "require": {
  5668. "drupal/core": "*"
  5669. },
  5670. "type": "drupal-module",
  5671. "extra": {
  5672. "branch-alias": {
  5673. "dev-1.x": "1.x-dev"
  5674. },
  5675. "drupal": {
  5676. "version": "8.x-1.1",
  5677. "datestamp": "1516301286",
  5678. "security-coverage": {
  5679. "status": "covered",
  5680. "message": "Covered by Drupal's security advisory policy"
  5681. }
  5682. }
  5683. },
  5684. "notification-url": "https://packages.drupal.org/8/downloads",
  5685. "license": [
  5686. "GPL-2.0+"
  5687. ],
  5688. "authors": [
  5689. {
  5690. "name": "Mark Casias (markie)",
  5691. "homepage": "https://www.drupal.org/u/markie",
  5692. "role": "Maintainer"
  5693. },
  5694. {
  5695. "name": "chrisjlee",
  5696. "homepage": "https://www.drupal.org/user/760600"
  5697. },
  5698. {
  5699. "name": "drywall",
  5700. "homepage": "https://www.drupal.org/user/192591"
  5701. },
  5702. {
  5703. "name": "jsenich",
  5704. "homepage": "https://www.drupal.org/user/58871"
  5705. },
  5706. {
  5707. "name": "markie",
  5708. "homepage": "https://www.drupal.org/user/206687"
  5709. },
  5710. {
  5711. "name": "newsignature",
  5712. "homepage": "https://www.drupal.org/user/765518"
  5713. }
  5714. ],
  5715. "description": "Provides a more robust alternative to 'summary or trimmed' textfield format.",
  5716. "homepage": "https://drupal.org/project/smart_trim",
  5717. "support": {
  5718. "source": "https://cgit.drupalcode.org/smart_trim",
  5719. "issues": "https://drupal.org/project/issues/smart_trim"
  5720. }
  5721. },
  5722. {
  5723. "name": "drupal/smtp",
  5724. "version": "1.0.0-beta4",
  5725. "source": {
  5726. "type": "git",
  5727. "url": "https://git.drupal.org/project/smtp",
  5728. "reference": "8.x-1.0-beta4"
  5729. },
  5730. "dist": {
  5731. "type": "zip",
  5732. "url": "https://ftp.drupal.org/files/projects/smtp-8.x-1.0-beta4.zip",
  5733. "reference": "8.x-1.0-beta4",
  5734. "shasum": "80a4df4b2fd2d1b2dc653552d232ce98cb54bb9d"
  5735. },
  5736. "require": {
  5737. "drupal/core": "~8.0"
  5738. },
  5739. "type": "drupal-module",
  5740. "extra": {
  5741. "branch-alias": {
  5742. "dev-1.x": "1.x-dev"
  5743. },
  5744. "drupal": {
  5745. "version": "8.x-1.0-beta4",
  5746. "datestamp": "1527598380",
  5747. "security-coverage": {
  5748. "status": "not-covered",
  5749. "message": "Beta releases are not covered by Drupal security advisories."
  5750. }
  5751. }
  5752. },
  5753. "notification-url": "https://packages.drupal.org/8/downloads",
  5754. "license": [
  5755. "GPL-2.0"
  5756. ],
  5757. "authors": [
  5758. {
  5759. "name": "LukeLast",
  5760. "homepage": "https://www.drupal.org/user/30151"
  5761. },
  5762. {
  5763. "name": "japerry",
  5764. "homepage": "https://www.drupal.org/user/45640"
  5765. },
  5766. {
  5767. "name": "josesanmartin",
  5768. "homepage": "https://www.drupal.org/user/72012"
  5769. },
  5770. {
  5771. "name": "oadaeh",
  5772. "homepage": "https://www.drupal.org/user/4649"
  5773. },
  5774. {
  5775. "name": "wundo",
  5776. "homepage": "https://www.drupal.org/user/25523"
  5777. },
  5778. {
  5779. "name": "yettyn",
  5780. "homepage": "https://www.drupal.org/user/93281"
  5781. }
  5782. ],
  5783. "description": "Allow for site emails to be sent through an SMTP server of your choice.",
  5784. "homepage": "https://www.drupal.org/project/smtp",
  5785. "support": {
  5786. "source": "http://cgit.drupalcode.org/smtp",
  5787. "issues": "https://www.drupal.org/project/issues/smtp"
  5788. }
  5789. },
  5790. {
  5791. "name": "drupal/synonyms",
  5792. "version": "dev-1.x",
  5793. "source": {
  5794. "type": "git",
  5795. "url": "https://git.drupal.org/project/synonyms",
  5796. "reference": "5327ef244bad11e859eed9ff71b49cb8f9955190"
  5797. },
  5798. "require": {
  5799. "drupal/core": "^8.2"
  5800. },
  5801. "type": "drupal-module",
  5802. "extra": {
  5803. "branch-alias": {
  5804. "dev-1.x": "1.x-dev"
  5805. },
  5806. "drupal": {
  5807. "version": "8.x-1.0-alpha1+4-dev",
  5808. "datestamp": "1520765584",
  5809. "security-coverage": {
  5810. "status": "not-covered",
  5811. "message": "Dev releases are not covered by Drupal security advisories."
  5812. }
  5813. }
  5814. },
  5815. "notification-url": "https://packages.drupal.org/8/downloads",
  5816. "license": [
  5817. "GPL-2.0-or-later"
  5818. ],
  5819. "authors": [
  5820. {
  5821. "name": "Zen",
  5822. "homepage": "https://www.drupal.org/user/21209"
  5823. },
  5824. {
  5825. "name": "bojanz",
  5826. "homepage": "https://www.drupal.org/user/86106"
  5827. },
  5828. {
  5829. "name": "bucefal91",
  5830. "homepage": "https://www.drupal.org/user/504128"
  5831. }
  5832. ],
  5833. "description": "Provides synonyms feature for content entities.",
  5834. "homepage": "https://www.drupal.org/project/synonyms",
  5835. "support": {
  5836. "source": "http://cgit.drupalcode.org/synonyms"
  5837. },
  5838. "time": "2018-10-21T17:05:25+00:00"
  5839. },
  5840. {
  5841. "name": "drupal/token",
  5842. "version": "1.5.0",
  5843. "source": {
  5844. "type": "git",
  5845. "url": "https://git.drupal.org/project/token",
  5846. "reference": "8.x-1.5"
  5847. },
  5848. "dist": {
  5849. "type": "zip",
  5850. "url": "https://ftp.drupal.org/files/projects/token-8.x-1.5.zip",
  5851. "reference": "8.x-1.5",
  5852. "shasum": "6382a7e1aabbd8246f1117a26bf4916d285b401d"
  5853. },
  5854. "require": {
  5855. "drupal/core": "^8.5"
  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.5",
  5864. "datestamp": "1537557481",
  5865. "security-coverage": {
  5866. "status": "covered",
  5867. "message": "Covered by Drupal's security advisory policy"
  5868. }
  5869. }
  5870. },
  5871. "notification-url": "https://packages.drupal.org/8/downloads",
  5872. "license": [
  5873. "GPL-2.0-or-later"
  5874. ],
  5875. "authors": [
  5876. {
  5877. "name": "Berdir",
  5878. "homepage": "https://www.drupal.org/user/214652"
  5879. },
  5880. {
  5881. "name": "Dave Reid",
  5882. "homepage": "https://www.drupal.org/user/53892"
  5883. },
  5884. {
  5885. "name": "eaton",
  5886. "homepage": "https://www.drupal.org/user/16496"
  5887. },
  5888. {
  5889. "name": "fago",
  5890. "homepage": "https://www.drupal.org/user/16747"
  5891. },
  5892. {
  5893. "name": "greggles",
  5894. "homepage": "https://www.drupal.org/user/36762"
  5895. },
  5896. {
  5897. "name": "mikeryan",
  5898. "homepage": "https://www.drupal.org/user/4420"
  5899. }
  5900. ],
  5901. "description": "Provides a user interface for the Token API and some missing core tokens.",
  5902. "homepage": "https://www.drupal.org/project/token",
  5903. "support": {
  5904. "source": "http://cgit.drupalcode.org/token"
  5905. }
  5906. },
  5907. {
  5908. "name": "drupal/toolbar_themes",
  5909. "version": "1.0.0-alpha4",
  5910. "source": {
  5911. "type": "git",
  5912. "url": "https://git.drupal.org/project/toolbar_themes",
  5913. "reference": "8.x-1.0-alpha4"
  5914. },
  5915. "dist": {
  5916. "type": "zip",
  5917. "url": "https://ftp.drupal.org/files/projects/toolbar_themes-8.x-1.0-alpha4.zip",
  5918. "reference": "8.x-1.0-alpha4",
  5919. "shasum": "15c38da8bfd5a44e47e436d8f432a0aaf6b2cd70"
  5920. },
  5921. "require": {
  5922. "drupal/core": "*"
  5923. },
  5924. "type": "drupal-module",
  5925. "extra": {
  5926. "branch-alias": {
  5927. "dev-1.x": "1.x-dev"
  5928. },
  5929. "drupal": {
  5930. "version": "8.x-1.0-alpha4",
  5931. "datestamp": "1474198439",
  5932. "security-coverage": {
  5933. "status": "not-covered",
  5934. "message": "Project has not opted into security advisory coverage!"
  5935. }
  5936. }
  5937. },
  5938. "notification-url": "https://packages.drupal.org/8/downloads",
  5939. "license": [
  5940. "GPL-2.0-or-later"
  5941. ],
  5942. "authors": [
  5943. {
  5944. "name": "Jeff Burnz",
  5945. "homepage": "https://www.drupal.org/user/61393"
  5946. }
  5947. ],
  5948. "description": "Apply themes to the toolbar.",
  5949. "homepage": "https://www.drupal.org/project/toolbar_themes",
  5950. "support": {
  5951. "source": "http://cgit.drupalcode.org/toolbar_themes"
  5952. }
  5953. },
  5954. {
  5955. "name": "drupal/translation_views",
  5956. "version": "1.0.0-alpha4",
  5957. "source": {
  5958. "type": "git",
  5959. "url": "https://git.drupal.org/project/translation_views",
  5960. "reference": "8.x-1.0-alpha4"
  5961. },
  5962. "dist": {
  5963. "type": "zip",
  5964. "url": "https://ftp.drupal.org/files/projects/translation_views-8.x-1.0-alpha4.zip",
  5965. "reference": "8.x-1.0-alpha4",
  5966. "shasum": "96f7828005a8d559f31f0dfcb471a68698311cda"
  5967. },
  5968. "require": {
  5969. "drupal/core": "*"
  5970. },
  5971. "type": "drupal-module",
  5972. "extra": {
  5973. "branch-alias": {
  5974. "dev-1.x": "1.x-dev"
  5975. },
  5976. "drupal": {
  5977. "version": "8.x-1.0-alpha4",
  5978. "datestamp": "1538124180",
  5979. "security-coverage": {
  5980. "status": "not-covered",
  5981. "message": "Project has not opted into security advisory coverage!"
  5982. }
  5983. }
  5984. },
  5985. "notification-url": "https://packages.drupal.org/8/downloads",
  5986. "license": [
  5987. "GPL-2.0-or-later"
  5988. ],
  5989. "authors": [
  5990. {
  5991. "name": "matsbla",
  5992. "homepage": "https://www.drupal.org/user/2325394"
  5993. },
  5994. {
  5995. "name": "vlad.dancer",
  5996. "homepage": "https://www.drupal.org/user/903844"
  5997. }
  5998. ],
  5999. "description": "Create customized lists and queries of translations from your database.",
  6000. "homepage": "https://www.drupal.org/project/translation_views",
  6001. "support": {
  6002. "source": "http://cgit.drupalcode.org/translation_views"
  6003. }
  6004. },
  6005. {
  6006. "name": "drupal/ultimate_cron",
  6007. "version": "2.0.0-alpha4",
  6008. "source": {
  6009. "type": "git",
  6010. "url": "https://git.drupal.org/project/ultimate_cron",
  6011. "reference": "8.x-2.0-alpha4"
  6012. },
  6013. "dist": {
  6014. "type": "zip",
  6015. "url": "https://ftp.drupal.org/files/projects/ultimate_cron-8.x-2.0-alpha4.zip",
  6016. "reference": "8.x-2.0-alpha4",
  6017. "shasum": "50cdadd061f1f6fadb961b04ed04348bcc4719d3"
  6018. },
  6019. "require": {
  6020. "drupal/core": "~8.0"
  6021. },
  6022. "type": "drupal-module",
  6023. "extra": {
  6024. "branch-alias": {
  6025. "dev-2.x": "2.x-dev"
  6026. },
  6027. "drupal": {
  6028. "version": "8.x-2.0-alpha4",
  6029. "datestamp": "1527925385",
  6030. "security-coverage": {
  6031. "status": "not-covered",
  6032. "message": "Alpha releases are not covered by Drupal security advisories."
  6033. }
  6034. }
  6035. },
  6036. "notification-url": "https://packages.drupal.org/8/downloads",
  6037. "license": [
  6038. "GPL-2.0-or-later"
  6039. ],
  6040. "authors": [
  6041. {
  6042. "name": "Berdir",
  6043. "homepage": "https://www.drupal.org/user/214652"
  6044. },
  6045. {
  6046. "name": "Dane Powell",
  6047. "homepage": "https://www.drupal.org/user/339326"
  6048. },
  6049. {
  6050. "name": "arnested",
  6051. "homepage": "https://www.drupal.org/user/245635"
  6052. },
  6053. {
  6054. "name": "gielfeldt",
  6055. "homepage": "https://www.drupal.org/user/366993"
  6056. },
  6057. {
  6058. "name": "miro_dietiker",
  6059. "homepage": "https://www.drupal.org/user/227761"
  6060. }
  6061. ],
  6062. "description": "Cron",
  6063. "homepage": "https://www.drupal.org/project/ultimate_cron",
  6064. "support": {
  6065. "source": "http://cgit.drupalcode.org/ultimate_cron"
  6066. }
  6067. },
  6068. {
  6069. "name": "drupal/url_to_video_filter",
  6070. "version": "1.3.0",
  6071. "source": {
  6072. "type": "git",
  6073. "url": "https://git.drupal.org/project/url_to_video_filter",
  6074. "reference": "8.x-1.3"
  6075. },
  6076. "dist": {
  6077. "type": "zip",
  6078. "url": "https://ftp.drupal.org/files/projects/url_to_video_filter-8.x-1.3.zip",
  6079. "reference": "8.x-1.3",
  6080. "shasum": "40a27d1d8948638c0202c1b0c8afe0d92f8362a6"
  6081. },
  6082. "require": {
  6083. "drupal/core": "~8.0"
  6084. },
  6085. "type": "drupal-module",
  6086. "extra": {
  6087. "branch-alias": {
  6088. "dev-1.x": "1.x-dev"
  6089. },
  6090. "drupal": {
  6091. "version": "8.x-1.3",
  6092. "datestamp": "1532695981",
  6093. "security-coverage": {
  6094. "status": "covered",
  6095. "message": "Covered by Drupal's security advisory policy"
  6096. }
  6097. }
  6098. },
  6099. "notification-url": "https://packages.drupal.org/8/downloads",
  6100. "license": [
  6101. "GPL-2.0-or-later"
  6102. ],
  6103. "authors": [
  6104. {
  6105. "name": "Jaypan",
  6106. "homepage": "https://www.drupal.org/user/324696"
  6107. }
  6108. ],
  6109. "description": "Text filter to convert URLs to embedded videos",
  6110. "homepage": "https://www.drupal.org/project/url_to_video_filter",
  6111. "support": {
  6112. "source": "http://cgit.drupalcode.org/url_to_video_filter"
  6113. }
  6114. },
  6115. {
  6116. "name": "drupal/views_bulk_edit",
  6117. "version": "2.2.0",
  6118. "source": {
  6119. "type": "git",
  6120. "url": "https://git.drupal.org/project/views_bulk_edit",
  6121. "reference": "8.x-2.2"
  6122. },
  6123. "dist": {
  6124. "type": "zip",
  6125. "url": "https://ftp.drupal.org/files/projects/views_bulk_edit-8.x-2.2.zip",
  6126. "reference": "8.x-2.2",
  6127. "shasum": "6a096dc73fab842c1b000d8788241ed9d3a17427"
  6128. },
  6129. "require": {
  6130. "drupal/core": "*",
  6131. "drupal/views_bulk_operations": "~1.0 | ~2.0"
  6132. },
  6133. "type": "drupal-module",
  6134. "extra": {
  6135. "branch-alias": {
  6136. "dev-2.x": "2.x-dev"
  6137. },
  6138. "drupal": {
  6139. "version": "8.x-2.2",
  6140. "datestamp": "1532689085",
  6141. "security-coverage": {
  6142. "status": "covered",
  6143. "message": "Covered by Drupal's security advisory policy"
  6144. }
  6145. }
  6146. },
  6147. "notification-url": "https://packages.drupal.org/8/downloads",
  6148. "license": [
  6149. "GPL-2.0+"
  6150. ],
  6151. "authors": [
  6152. {
  6153. "name": "Marcin Grabias",
  6154. "homepage": "https://www.drupal.org/u/graber"
  6155. },
  6156. {
  6157. "name": "benjy",
  6158. "homepage": "https://www.drupal.org/user/1852732"
  6159. }
  6160. ],
  6161. "description": "Allows bulk edition of entity field values.",
  6162. "homepage": "https://www.drupal.org/project/views_bulk_edit",
  6163. "support": {
  6164. "source": "http://cgit.drupalcode.org/views_bulk_edit",
  6165. "issues": "https://www.drupal.org/project/issues/views_bulk_edit?version=8.x"
  6166. }
  6167. },
  6168. {
  6169. "name": "drupal/views_bulk_operations",
  6170. "version": "2.4.0",
  6171. "source": {
  6172. "type": "git",
  6173. "url": "https://git.drupal.org/project/views_bulk_operations",
  6174. "reference": "8.x-2.4"
  6175. },
  6176. "dist": {
  6177. "type": "zip",
  6178. "url": "https://ftp.drupal.org/files/projects/views_bulk_operations-8.x-2.4.zip",
  6179. "reference": "8.x-2.4",
  6180. "shasum": "50c5778770f3a92e38ecf664301b77146e3cc931"
  6181. },
  6182. "require": {
  6183. "drupal/core": "^8.4"
  6184. },
  6185. "type": "drupal-module",
  6186. "extra": {
  6187. "branch-alias": {
  6188. "dev-2.x": "2.x-dev"
  6189. },
  6190. "drupal": {
  6191. "version": "8.x-2.4",
  6192. "datestamp": "1530516821",
  6193. "security-coverage": {
  6194. "status": "covered",
  6195. "message": "Covered by Drupal's security advisory policy"
  6196. }
  6197. },
  6198. "drush": {
  6199. "services": {
  6200. "drush.services.yml": "^9"
  6201. }
  6202. }
  6203. },
  6204. "notification-url": "https://packages.drupal.org/8/downloads",
  6205. "license": [
  6206. "GPL-2.0+"
  6207. ],
  6208. "authors": [
  6209. {
  6210. "name": "Marcin Grabias",
  6211. "homepage": "https://www.drupal.org/u/graber"
  6212. },
  6213. {
  6214. "name": "Jon Pugh",
  6215. "homepage": "https://www.drupal.org/user/17028"
  6216. },
  6217. {
  6218. "name": "bojanz",
  6219. "homepage": "https://www.drupal.org/user/86106"
  6220. },
  6221. {
  6222. "name": "infojunkie",
  6223. "homepage": "https://www.drupal.org/user/48424"
  6224. },
  6225. {
  6226. "name": "joelpittet",
  6227. "homepage": "https://www.drupal.org/user/160302"
  6228. }
  6229. ],
  6230. "description": "Adds an ability to perform bulk operations on selected entities from view results. Provides an API to create such operations.",
  6231. "homepage": "https://www.drupal.org/project/views_bulk_operations",
  6232. "support": {
  6233. "source": "http://cgit.drupalcode.org/views_bulk_operations",
  6234. "issues": "https://www.drupal.org/project/issues/views_bulk_operations?version=8.x",
  6235. "docs": "https://www.drupal.org/docs/8/modules/views-bulk-operations-vbo"
  6236. }
  6237. },
  6238. {
  6239. "name": "drupal/workflow",
  6240. "version": "dev-1.x",
  6241. "source": {
  6242. "type": "git",
  6243. "url": "https://git.drupal.org/project/workflow",
  6244. "reference": "942b2a293696fd4c40fbb906f742a2d9293e5fcb"
  6245. },
  6246. "require": {
  6247. "drupal/core": "*"
  6248. },
  6249. "type": "drupal-module",
  6250. "extra": {
  6251. "branch-alias": {
  6252. "dev-1.x": "1.x-dev"
  6253. },
  6254. "drupal": {
  6255. "version": "8.x-1.1+19-dev",
  6256. "datestamp": "1537125481",
  6257. "security-coverage": {
  6258. "status": "not-covered",
  6259. "message": "Dev releases are not covered by Drupal security advisories."
  6260. }
  6261. },
  6262. "patches_applied": {
  6263. "fix bad way of including files": "https://www.drupal.org/files/issues/2018-11-01/workflow-include.patch"
  6264. }
  6265. },
  6266. "notification-url": "https://packages.drupal.org/8/downloads",
  6267. "license": [
  6268. "GPL-2.0-or-later"
  6269. ],
  6270. "authors": [
  6271. {
  6272. "name": "Bastlynn",
  6273. "homepage": "https://www.drupal.org/user/275249"
  6274. },
  6275. {
  6276. "name": "Heine",
  6277. "homepage": "https://www.drupal.org/user/17943"
  6278. },
  6279. {
  6280. "name": "JacobSingh",
  6281. "homepage": "https://www.drupal.org/user/68912"
  6282. },
  6283. {
  6284. "name": "NancyDru",
  6285. "homepage": "https://www.drupal.org/user/101412"
  6286. },
  6287. {
  6288. "name": "eaton",
  6289. "homepage": "https://www.drupal.org/user/16496"
  6290. },
  6291. {
  6292. "name": "johnv",
  6293. "homepage": "https://www.drupal.org/user/591042"
  6294. },
  6295. {
  6296. "name": "jvandyk",
  6297. "homepage": "https://www.drupal.org/user/2375"
  6298. },
  6299. {
  6300. "name": "mfredrickson",
  6301. "homepage": "https://www.drupal.org/user/31994"
  6302. },
  6303. {
  6304. "name": "q0rban",
  6305. "homepage": "https://www.drupal.org/user/31022"
  6306. }
  6307. ],
  6308. "description": "Defines a field type with Workflows, containing customizable state transitions.",
  6309. "homepage": "https://www.drupal.org/project/workflow",
  6310. "support": {
  6311. "source": "http://cgit.drupalcode.org/workflow"
  6312. },
  6313. "time": "2018-09-16T19:25:10+00:00"
  6314. },
  6315. {
  6316. "name": "drush/drush",
  6317. "version": "9.5.2",
  6318. "source": {
  6319. "type": "git",
  6320. "url": "https://github.com/drush-ops/drush.git",
  6321. "reference": "17f0106706391675a281c6d212850853bdbe90f9"
  6322. },
  6323. "dist": {
  6324. "type": "zip",
  6325. "url": "https://api.github.com/repos/drush-ops/drush/zipball/17f0106706391675a281c6d212850853bdbe90f9",
  6326. "reference": "17f0106706391675a281c6d212850853bdbe90f9",
  6327. "shasum": ""
  6328. },
  6329. "require": {
  6330. "chi-teck/drupal-code-generator": "^1.27.0",
  6331. "composer/semver": "^1.4",
  6332. "consolidation/annotated-command": "^2.9.1",
  6333. "consolidation/config": "^1.1.0",
  6334. "consolidation/output-formatters": "^3.1.12",
  6335. "consolidation/robo": "^1.1.5",
  6336. "consolidation/site-alias": "^1.1.5",
  6337. "ext-dom": "*",
  6338. "grasmash/yaml-expander": "^1.1.1",
  6339. "league/container": "~2",
  6340. "php": ">=5.6.0",
  6341. "psr/log": "~1.0",
  6342. "psy/psysh": "~0.6",
  6343. "symfony/config": "^3.4",
  6344. "symfony/console": "^3.4",
  6345. "symfony/event-dispatcher": "^3.4",
  6346. "symfony/finder": "^3.4",
  6347. "symfony/process": "^3.4",
  6348. "symfony/var-dumper": "^3.4",
  6349. "symfony/yaml": "^3.4",
  6350. "webflo/drupal-finder": "^1.1",
  6351. "webmozart/path-util": "^2.1.0"
  6352. },
  6353. "require-dev": {
  6354. "composer/installers": "^1.2",
  6355. "cweagans/composer-patches": "~1.0",
  6356. "drupal/alinks": "1.0.0",
  6357. "drupal/devel": "^1.0@RC",
  6358. "drupal/empty_theme": "1.0",
  6359. "g1a/composer-test-scenarios": "^2.2.0",
  6360. "lox/xhprof": "dev-master",
  6361. "phpunit/phpunit": "^4.8.36 || ^6.1",
  6362. "squizlabs/php_codesniffer": "^2.7",
  6363. "vlucas/phpdotenv": "^2.4",
  6364. "webflo/drupal-core-strict": "8.6.x-dev"
  6365. },
  6366. "bin": [
  6367. "drush"
  6368. ],
  6369. "type": "library",
  6370. "extra": {
  6371. "installer-paths": {
  6372. "sut/core": [
  6373. "type:drupal-core"
  6374. ],
  6375. "sut/libraries/{$name}": [
  6376. "type:drupal-library"
  6377. ],
  6378. "sut/modules/unish/{$name}": [
  6379. "drupal/devel"
  6380. ],
  6381. "sut/themes/unish/{$name}": [
  6382. "drupal/empty_theme"
  6383. ],
  6384. "sut/modules/contrib/{$name}": [
  6385. "type:drupal-module"
  6386. ],
  6387. "sut/profiles/contrib/{$name}": [
  6388. "type:drupal-profile"
  6389. ],
  6390. "sut/themes/contrib/{$name}": [
  6391. "type:drupal-theme"
  6392. ],
  6393. "sut/drush/contrib/{$name}": [
  6394. "type:drupal-drush"
  6395. ]
  6396. },
  6397. "branch-alias": {
  6398. "dev-master": "9.x-dev"
  6399. }
  6400. },
  6401. "autoload": {
  6402. "psr-4": {
  6403. "Drush\\": "src/",
  6404. "Drush\\Internal\\": "internal-copy/",
  6405. "Unish\\": "tests/"
  6406. }
  6407. },
  6408. "notification-url": "https://packagist.org/downloads/",
  6409. "license": [
  6410. "GPL-2.0-or-later"
  6411. ],
  6412. "authors": [
  6413. {
  6414. "name": "Moshe Weitzman",
  6415. "email": "weitzman@tejasa.com"
  6416. },
  6417. {
  6418. "name": "Owen Barton",
  6419. "email": "drupal@owenbarton.com"
  6420. },
  6421. {
  6422. "name": "Greg Anderson",
  6423. "email": "greg.1.anderson@greenknowe.org"
  6424. },
  6425. {
  6426. "name": "Jonathan Araña Cruz",
  6427. "email": "jonhattan@faita.net"
  6428. },
  6429. {
  6430. "name": "Jonathan Hedstrom",
  6431. "email": "jhedstrom@gmail.com"
  6432. },
  6433. {
  6434. "name": "Christopher Gervais",
  6435. "email": "chris@ergonlogic.com"
  6436. },
  6437. {
  6438. "name": "Dave Reid",
  6439. "email": "dave@davereid.net"
  6440. },
  6441. {
  6442. "name": "Damian Lee",
  6443. "email": "damiankloip@googlemail.com"
  6444. }
  6445. ],
  6446. "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.",
  6447. "homepage": "http://www.drush.org",
  6448. "time": "2018-10-17T18:37:53+00:00"
  6449. },
  6450. {
  6451. "name": "easyrdf/easyrdf",
  6452. "version": "0.9.1",
  6453. "source": {
  6454. "type": "git",
  6455. "url": "https://github.com/njh/easyrdf.git",
  6456. "reference": "acd09dfe0555fbcfa254291e433c45fdd4652566"
  6457. },
  6458. "dist": {
  6459. "type": "zip",
  6460. "url": "https://api.github.com/repos/njh/easyrdf/zipball/acd09dfe0555fbcfa254291e433c45fdd4652566",
  6461. "reference": "acd09dfe0555fbcfa254291e433c45fdd4652566",
  6462. "shasum": ""
  6463. },
  6464. "require": {
  6465. "ext-mbstring": "*",
  6466. "ext-pcre": "*",
  6467. "php": ">=5.2.8"
  6468. },
  6469. "require-dev": {
  6470. "phpunit/phpunit": "~3.5",
  6471. "sami/sami": "~1.4",
  6472. "squizlabs/php_codesniffer": "~1.4.3"
  6473. },
  6474. "suggest": {
  6475. "ml/json-ld": "~1.0"
  6476. },
  6477. "type": "library",
  6478. "autoload": {
  6479. "psr-0": {
  6480. "EasyRdf_": "lib/"
  6481. }
  6482. },
  6483. "notification-url": "https://packagist.org/downloads/",
  6484. "license": [
  6485. "BSD-3-Clause"
  6486. ],
  6487. "authors": [
  6488. {
  6489. "name": "Nicholas Humfrey",
  6490. "email": "njh@aelius.com",
  6491. "homepage": "http://www.aelius.com/njh/",
  6492. "role": "Developer"
  6493. },
  6494. {
  6495. "name": "Alexey Zakhlestin",
  6496. "email": "indeyets@gmail.com",
  6497. "role": "Developer"
  6498. }
  6499. ],
  6500. "description": "EasyRdf is a PHP library designed to make it easy to consume and produce RDF.",
  6501. "homepage": "http://www.easyrdf.org/",
  6502. "keywords": [
  6503. "Linked Data",
  6504. "RDF",
  6505. "Semantic Web",
  6506. "Turtle",
  6507. "rdfa",
  6508. "sparql"
  6509. ],
  6510. "time": "2015-02-27T09:45:49+00:00"
  6511. },
  6512. {
  6513. "name": "egulias/email-validator",
  6514. "version": "1.2.15",
  6515. "source": {
  6516. "type": "git",
  6517. "url": "https://github.com/egulias/EmailValidator.git",
  6518. "reference": "758a77525bdaabd6c0f5669176bd4361cb2dda9e"
  6519. },
  6520. "dist": {
  6521. "type": "zip",
  6522. "url": "https://api.github.com/repos/egulias/EmailValidator/zipball/758a77525bdaabd6c0f5669176bd4361cb2dda9e",
  6523. "reference": "758a77525bdaabd6c0f5669176bd4361cb2dda9e",
  6524. "shasum": ""
  6525. },
  6526. "require": {
  6527. "doctrine/lexer": "^1.0.1",
  6528. "php": ">= 5.3.3"
  6529. },
  6530. "require-dev": {
  6531. "phpunit/phpunit": "^4.8.24"
  6532. },
  6533. "type": "library",
  6534. "extra": {
  6535. "branch-alias": {
  6536. "dev-master": "2.0.x-dev"
  6537. }
  6538. },
  6539. "autoload": {
  6540. "psr-0": {
  6541. "Egulias\\": "src/"
  6542. }
  6543. },
  6544. "notification-url": "https://packagist.org/downloads/",
  6545. "license": [
  6546. "MIT"
  6547. ],
  6548. "authors": [
  6549. {
  6550. "name": "Eduardo Gulias Davis"
  6551. }
  6552. ],
  6553. "description": "A library for validating emails",
  6554. "homepage": "https://github.com/egulias/EmailValidator",
  6555. "keywords": [
  6556. "email",
  6557. "emailvalidation",
  6558. "emailvalidator",
  6559. "validation",
  6560. "validator"
  6561. ],
  6562. "time": "2018-09-25T20:59:41+00:00"
  6563. },
  6564. {
  6565. "name": "g1a/composer-test-scenarios",
  6566. "version": "2.2.0",
  6567. "source": {
  6568. "type": "git",
  6569. "url": "https://github.com/g1a/composer-test-scenarios.git",
  6570. "reference": "a166fd15191aceab89f30c097e694b7cf3db4880"
  6571. },
  6572. "dist": {
  6573. "type": "zip",
  6574. "url": "https://api.github.com/repos/g1a/composer-test-scenarios/zipball/a166fd15191aceab89f30c097e694b7cf3db4880",
  6575. "reference": "a166fd15191aceab89f30c097e694b7cf3db4880",
  6576. "shasum": ""
  6577. },
  6578. "bin": [
  6579. "scripts/create-scenario",
  6580. "scripts/dependency-licenses",
  6581. "scripts/install-scenario"
  6582. ],
  6583. "type": "library",
  6584. "notification-url": "https://packagist.org/downloads/",
  6585. "license": [
  6586. "MIT"
  6587. ],
  6588. "authors": [
  6589. {
  6590. "name": "Greg Anderson",
  6591. "email": "greg.1.anderson@greenknowe.org"
  6592. }
  6593. ],
  6594. "description": "Useful scripts for testing multiple sets of Composer dependencies.",
  6595. "time": "2018-08-08T23:37:23+00:00"
  6596. },
  6597. {
  6598. "name": "grasmash/expander",
  6599. "version": "1.0.0",
  6600. "source": {
  6601. "type": "git",
  6602. "url": "https://github.com/grasmash/expander.git",
  6603. "reference": "95d6037344a4be1dd5f8e0b0b2571a28c397578f"
  6604. },
  6605. "dist": {
  6606. "type": "zip",
  6607. "url": "https://api.github.com/repos/grasmash/expander/zipball/95d6037344a4be1dd5f8e0b0b2571a28c397578f",
  6608. "reference": "95d6037344a4be1dd5f8e0b0b2571a28c397578f",
  6609. "shasum": ""
  6610. },
  6611. "require": {
  6612. "dflydev/dot-access-data": "^1.1.0",
  6613. "php": ">=5.4"
  6614. },
  6615. "require-dev": {
  6616. "greg-1-anderson/composer-test-scenarios": "^1",
  6617. "phpunit/phpunit": "^4|^5.5.4",
  6618. "satooshi/php-coveralls": "^1.0.2|dev-master",
  6619. "squizlabs/php_codesniffer": "^2.7"
  6620. },
  6621. "type": "library",
  6622. "extra": {
  6623. "branch-alias": {
  6624. "dev-master": "1.x-dev"
  6625. }
  6626. },
  6627. "autoload": {
  6628. "psr-4": {
  6629. "Grasmash\\Expander\\": "src/"
  6630. }
  6631. },
  6632. "notification-url": "https://packagist.org/downloads/",
  6633. "license": [
  6634. "MIT"
  6635. ],
  6636. "authors": [
  6637. {
  6638. "name": "Matthew Grasmick"
  6639. }
  6640. ],
  6641. "description": "Expands internal property references in PHP arrays file.",
  6642. "time": "2017-12-21T22:14:55+00:00"
  6643. },
  6644. {
  6645. "name": "grasmash/yaml-expander",
  6646. "version": "1.4.0",
  6647. "source": {
  6648. "type": "git",
  6649. "url": "https://github.com/grasmash/yaml-expander.git",
  6650. "reference": "3f0f6001ae707a24f4d9733958d77d92bf9693b1"
  6651. },
  6652. "dist": {
  6653. "type": "zip",
  6654. "url": "https://api.github.com/repos/grasmash/yaml-expander/zipball/3f0f6001ae707a24f4d9733958d77d92bf9693b1",
  6655. "reference": "3f0f6001ae707a24f4d9733958d77d92bf9693b1",
  6656. "shasum": ""
  6657. },
  6658. "require": {
  6659. "dflydev/dot-access-data": "^1.1.0",
  6660. "php": ">=5.4",
  6661. "symfony/yaml": "^2.8.11|^3|^4"
  6662. },
  6663. "require-dev": {
  6664. "greg-1-anderson/composer-test-scenarios": "^1",
  6665. "phpunit/phpunit": "^4.8|^5.5.4",
  6666. "satooshi/php-coveralls": "^1.0.2|dev-master",
  6667. "squizlabs/php_codesniffer": "^2.7"
  6668. },
  6669. "type": "library",
  6670. "extra": {
  6671. "branch-alias": {
  6672. "dev-master": "1.x-dev"
  6673. }
  6674. },
  6675. "autoload": {
  6676. "psr-4": {
  6677. "Grasmash\\YamlExpander\\": "src/"
  6678. }
  6679. },
  6680. "notification-url": "https://packagist.org/downloads/",
  6681. "license": [
  6682. "MIT"
  6683. ],
  6684. "authors": [
  6685. {
  6686. "name": "Matthew Grasmick"
  6687. }
  6688. ],
  6689. "description": "Expands internal property references in a yaml file.",
  6690. "time": "2017-12-16T16:06:03+00:00"
  6691. },
  6692. {
  6693. "name": "guzzlehttp/guzzle",
  6694. "version": "6.3.3",
  6695. "source": {
  6696. "type": "git",
  6697. "url": "https://github.com/guzzle/guzzle.git",
  6698. "reference": "407b0cb880ace85c9b63c5f9551db498cb2d50ba"
  6699. },
  6700. "dist": {
  6701. "type": "zip",
  6702. "url": "https://api.github.com/repos/guzzle/guzzle/zipball/407b0cb880ace85c9b63c5f9551db498cb2d50ba",
  6703. "reference": "407b0cb880ace85c9b63c5f9551db498cb2d50ba",
  6704. "shasum": ""
  6705. },
  6706. "require": {
  6707. "guzzlehttp/promises": "^1.0",
  6708. "guzzlehttp/psr7": "^1.4",
  6709. "php": ">=5.5"
  6710. },
  6711. "require-dev": {
  6712. "ext-curl": "*",
  6713. "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.4 || ^7.0",
  6714. "psr/log": "^1.0"
  6715. },
  6716. "suggest": {
  6717. "psr/log": "Required for using the Log middleware"
  6718. },
  6719. "type": "library",
  6720. "extra": {
  6721. "branch-alias": {
  6722. "dev-master": "6.3-dev"
  6723. }
  6724. },
  6725. "autoload": {
  6726. "files": [
  6727. "src/functions_include.php"
  6728. ],
  6729. "psr-4": {
  6730. "GuzzleHttp\\": "src/"
  6731. }
  6732. },
  6733. "notification-url": "https://packagist.org/downloads/",
  6734. "license": [
  6735. "MIT"
  6736. ],
  6737. "authors": [
  6738. {
  6739. "name": "Michael Dowling",
  6740. "email": "mtdowling@gmail.com",
  6741. "homepage": "https://github.com/mtdowling"
  6742. }
  6743. ],
  6744. "description": "Guzzle is a PHP HTTP client library",
  6745. "homepage": "http://guzzlephp.org/",
  6746. "keywords": [
  6747. "client",
  6748. "curl",
  6749. "framework",
  6750. "http",
  6751. "http client",
  6752. "rest",
  6753. "web service"
  6754. ],
  6755. "time": "2018-04-22T15:46:56+00:00"
  6756. },
  6757. {
  6758. "name": "guzzlehttp/promises",
  6759. "version": "v1.3.1",
  6760. "source": {
  6761. "type": "git",
  6762. "url": "https://github.com/guzzle/promises.git",
  6763. "reference": "a59da6cf61d80060647ff4d3eb2c03a2bc694646"
  6764. },
  6765. "dist": {
  6766. "type": "zip",
  6767. "url": "https://api.github.com/repos/guzzle/promises/zipball/a59da6cf61d80060647ff4d3eb2c03a2bc694646",
  6768. "reference": "a59da6cf61d80060647ff4d3eb2c03a2bc694646",
  6769. "shasum": ""
  6770. },
  6771. "require": {
  6772. "php": ">=5.5.0"
  6773. },
  6774. "require-dev": {
  6775. "phpunit/phpunit": "^4.0"
  6776. },
  6777. "type": "library",
  6778. "extra": {
  6779. "branch-alias": {
  6780. "dev-master": "1.4-dev"
  6781. }
  6782. },
  6783. "autoload": {
  6784. "psr-4": {
  6785. "GuzzleHttp\\Promise\\": "src/"
  6786. },
  6787. "files": [
  6788. "src/functions_include.php"
  6789. ]
  6790. },
  6791. "notification-url": "https://packagist.org/downloads/",
  6792. "license": [
  6793. "MIT"
  6794. ],
  6795. "authors": [
  6796. {
  6797. "name": "Michael Dowling",
  6798. "email": "mtdowling@gmail.com",
  6799. "homepage": "https://github.com/mtdowling"
  6800. }
  6801. ],
  6802. "description": "Guzzle promises library",
  6803. "keywords": [
  6804. "promise"
  6805. ],
  6806. "time": "2016-12-20T10:07:11+00:00"
  6807. },
  6808. {
  6809. "name": "guzzlehttp/psr7",
  6810. "version": "1.4.2",
  6811. "source": {
  6812. "type": "git",
  6813. "url": "https://github.com/guzzle/psr7.git",
  6814. "reference": "f5b8a8512e2b58b0071a7280e39f14f72e05d87c"
  6815. },
  6816. "dist": {
  6817. "type": "zip",
  6818. "url": "https://api.github.com/repos/guzzle/psr7/zipball/f5b8a8512e2b58b0071a7280e39f14f72e05d87c",
  6819. "reference": "f5b8a8512e2b58b0071a7280e39f14f72e05d87c",
  6820. "shasum": ""
  6821. },
  6822. "require": {
  6823. "php": ">=5.4.0",
  6824. "psr/http-message": "~1.0"
  6825. },
  6826. "provide": {
  6827. "psr/http-message-implementation": "1.0"
  6828. },
  6829. "require-dev": {
  6830. "phpunit/phpunit": "~4.0"
  6831. },
  6832. "type": "library",
  6833. "extra": {
  6834. "branch-alias": {
  6835. "dev-master": "1.4-dev"
  6836. }
  6837. },
  6838. "autoload": {
  6839. "psr-4": {
  6840. "GuzzleHttp\\Psr7\\": "src/"
  6841. },
  6842. "files": [
  6843. "src/functions_include.php"
  6844. ]
  6845. },
  6846. "notification-url": "https://packagist.org/downloads/",
  6847. "license": [
  6848. "MIT"
  6849. ],
  6850. "authors": [
  6851. {
  6852. "name": "Michael Dowling",
  6853. "email": "mtdowling@gmail.com",
  6854. "homepage": "https://github.com/mtdowling"
  6855. },
  6856. {
  6857. "name": "Tobias Schultze",
  6858. "homepage": "https://github.com/Tobion"
  6859. }
  6860. ],
  6861. "description": "PSR-7 message implementation that also provides common utility methods",
  6862. "keywords": [
  6863. "http",
  6864. "message",
  6865. "request",
  6866. "response",
  6867. "stream",
  6868. "uri",
  6869. "url"
  6870. ],
  6871. "time": "2017-03-20T17:10:46+00:00"
  6872. },
  6873. {
  6874. "name": "jakub-onderka/php-console-color",
  6875. "version": "v0.2",
  6876. "source": {
  6877. "type": "git",
  6878. "url": "https://github.com/JakubOnderka/PHP-Console-Color.git",
  6879. "reference": "d5deaecff52a0d61ccb613bb3804088da0307191"
  6880. },
  6881. "dist": {
  6882. "type": "zip",
  6883. "url": "https://api.github.com/repos/JakubOnderka/PHP-Console-Color/zipball/d5deaecff52a0d61ccb613bb3804088da0307191",
  6884. "reference": "d5deaecff52a0d61ccb613bb3804088da0307191",
  6885. "shasum": ""
  6886. },
  6887. "require": {
  6888. "php": ">=5.4.0"
  6889. },
  6890. "require-dev": {
  6891. "jakub-onderka/php-code-style": "1.0",
  6892. "jakub-onderka/php-parallel-lint": "1.0",
  6893. "jakub-onderka/php-var-dump-check": "0.*",
  6894. "phpunit/phpunit": "~4.3",
  6895. "squizlabs/php_codesniffer": "1.*"
  6896. },
  6897. "type": "library",
  6898. "autoload": {
  6899. "psr-4": {
  6900. "JakubOnderka\\PhpConsoleColor\\": "src/"
  6901. }
  6902. },
  6903. "notification-url": "https://packagist.org/downloads/",
  6904. "license": [
  6905. "BSD-2-Clause"
  6906. ],
  6907. "authors": [
  6908. {
  6909. "name": "Jakub Onderka",
  6910. "email": "jakub.onderka@gmail.com"
  6911. }
  6912. ],
  6913. "time": "2018-09-29T17:23:10+00:00"
  6914. },
  6915. {
  6916. "name": "jakub-onderka/php-console-highlighter",
  6917. "version": "v0.4",
  6918. "source": {
  6919. "type": "git",
  6920. "url": "https://github.com/JakubOnderka/PHP-Console-Highlighter.git",
  6921. "reference": "9f7a229a69d52506914b4bc61bfdb199d90c5547"
  6922. },
  6923. "dist": {
  6924. "type": "zip",
  6925. "url": "https://api.github.com/repos/JakubOnderka/PHP-Console-Highlighter/zipball/9f7a229a69d52506914b4bc61bfdb199d90c5547",
  6926. "reference": "9f7a229a69d52506914b4bc61bfdb199d90c5547",
  6927. "shasum": ""
  6928. },
  6929. "require": {
  6930. "ext-tokenizer": "*",
  6931. "jakub-onderka/php-console-color": "~0.2",
  6932. "php": ">=5.4.0"
  6933. },
  6934. "require-dev": {
  6935. "jakub-onderka/php-code-style": "~1.0",
  6936. "jakub-onderka/php-parallel-lint": "~1.0",
  6937. "jakub-onderka/php-var-dump-check": "~0.1",
  6938. "phpunit/phpunit": "~4.0",
  6939. "squizlabs/php_codesniffer": "~1.5"
  6940. },
  6941. "type": "library",
  6942. "autoload": {
  6943. "psr-4": {
  6944. "JakubOnderka\\PhpConsoleHighlighter\\": "src/"
  6945. }
  6946. },
  6947. "notification-url": "https://packagist.org/downloads/",
  6948. "license": [
  6949. "MIT"
  6950. ],
  6951. "authors": [
  6952. {
  6953. "name": "Jakub Onderka",
  6954. "email": "acci@acci.cz",
  6955. "homepage": "http://www.acci.cz/"
  6956. }
  6957. ],
  6958. "description": "Highlight PHP code in terminal",
  6959. "time": "2018-09-29T18:48:56+00:00"
  6960. },
  6961. {
  6962. "name": "league/container",
  6963. "version": "2.4.1",
  6964. "source": {
  6965. "type": "git",
  6966. "url": "https://github.com/thephpleague/container.git",
  6967. "reference": "43f35abd03a12977a60ffd7095efd6a7808488c0"
  6968. },
  6969. "dist": {
  6970. "type": "zip",
  6971. "url": "https://api.github.com/repos/thephpleague/container/zipball/43f35abd03a12977a60ffd7095efd6a7808488c0",
  6972. "reference": "43f35abd03a12977a60ffd7095efd6a7808488c0",
  6973. "shasum": ""
  6974. },
  6975. "require": {
  6976. "container-interop/container-interop": "^1.2",
  6977. "php": "^5.4.0 || ^7.0"
  6978. },
  6979. "provide": {
  6980. "container-interop/container-interop-implementation": "^1.2",
  6981. "psr/container-implementation": "^1.0"
  6982. },
  6983. "replace": {
  6984. "orno/di": "~2.0"
  6985. },
  6986. "require-dev": {
  6987. "phpunit/phpunit": "4.*"
  6988. },
  6989. "type": "library",
  6990. "extra": {
  6991. "branch-alias": {
  6992. "dev-2.x": "2.x-dev",
  6993. "dev-1.x": "1.x-dev"
  6994. }
  6995. },
  6996. "autoload": {
  6997. "psr-4": {
  6998. "League\\Container\\": "src"
  6999. }
  7000. },
  7001. "notification-url": "https://packagist.org/downloads/",
  7002. "license": [
  7003. "MIT"
  7004. ],
  7005. "authors": [
  7006. {
  7007. "name": "Phil Bennett",
  7008. "email": "philipobenito@gmail.com",
  7009. "homepage": "http://www.philipobenito.com",
  7010. "role": "Developer"
  7011. }
  7012. ],
  7013. "description": "A fast and intuitive dependency injection container.",
  7014. "homepage": "https://github.com/thephpleague/container",
  7015. "keywords": [
  7016. "container",
  7017. "dependency",
  7018. "di",
  7019. "injection",
  7020. "league",
  7021. "provider",
  7022. "service"
  7023. ],
  7024. "time": "2017-05-10T09:20:27+00:00"
  7025. },
  7026. {
  7027. "name": "lsolesen/pel",
  7028. "version": "0.9.6",
  7029. "source": {
  7030. "type": "git",
  7031. "url": "https://github.com/lsolesen/pel.git",
  7032. "reference": "c9e3919f5db3b85c3c422d4f8d448dbcb2a87a23"
  7033. },
  7034. "dist": {
  7035. "type": "zip",
  7036. "url": "https://api.github.com/repos/lsolesen/pel/zipball/c9e3919f5db3b85c3c422d4f8d448dbcb2a87a23",
  7037. "reference": "c9e3919f5db3b85c3c422d4f8d448dbcb2a87a23",
  7038. "shasum": ""
  7039. },
  7040. "require": {
  7041. "php": ">=5.0.0"
  7042. },
  7043. "require-dev": {
  7044. "ext-gd": "*",
  7045. "phpunit/phpunit": "5.7.*",
  7046. "satooshi/php-coveralls": "1.0.*",
  7047. "squizlabs/php_codesniffer": "3.0.0RC3"
  7048. },
  7049. "type": "library",
  7050. "autoload": {
  7051. "psr-4": {
  7052. "lsolesen\\pel\\": "src/"
  7053. }
  7054. },
  7055. "notification-url": "https://packagist.org/downloads/",
  7056. "license": [
  7057. "GPL-2.0"
  7058. ],
  7059. "authors": [
  7060. {
  7061. "name": "Lars Olesen",
  7062. "email": "lars@intraface.dk",
  7063. "homepage": "http://intraface.dk",
  7064. "role": "Developer"
  7065. },
  7066. {
  7067. "name": "Martin Geisler",
  7068. "email": "martin@geisler.net",
  7069. "homepage": "http://geisler.net",
  7070. "role": "Developer"
  7071. }
  7072. ],
  7073. "description": "PHP Exif Library. A library for reading and writing Exif headers in JPEG and TIFF images using PHP.",
  7074. "homepage": "http://lsolesen.github.com/pel/",
  7075. "keywords": [
  7076. "exif",
  7077. "image"
  7078. ],
  7079. "time": "2017-02-03T11:58:58+00:00"
  7080. },
  7081. {
  7082. "name": "masterminds/html5",
  7083. "version": "2.3.1",
  7084. "source": {
  7085. "type": "git",
  7086. "url": "https://github.com/Masterminds/html5-php.git",
  7087. "reference": "33f8d475d28741398be26cdff7a10a63003324a3"
  7088. },
  7089. "dist": {
  7090. "type": "zip",
  7091. "url": "https://api.github.com/repos/Masterminds/html5-php/zipball/33f8d475d28741398be26cdff7a10a63003324a3",
  7092. "reference": "33f8d475d28741398be26cdff7a10a63003324a3",
  7093. "shasum": ""
  7094. },
  7095. "require": {
  7096. "ext-libxml": "*",
  7097. "php": ">=5.3.0"
  7098. },
  7099. "require-dev": {
  7100. "phpunit/phpunit": "4.*",
  7101. "sami/sami": "~2.0",
  7102. "satooshi/php-coveralls": "1.0.*"
  7103. },
  7104. "type": "library",
  7105. "extra": {
  7106. "branch-alias": {
  7107. "dev-master": "2.2-dev"
  7108. }
  7109. },
  7110. "autoload": {
  7111. "psr-4": {
  7112. "Masterminds\\": "src"
  7113. }
  7114. },
  7115. "notification-url": "https://packagist.org/downloads/",
  7116. "license": [
  7117. "MIT"
  7118. ],
  7119. "authors": [
  7120. {
  7121. "name": "Matt Butcher",
  7122. "email": "technosophos@gmail.com"
  7123. },
  7124. {
  7125. "name": "Asmir Mustafic",
  7126. "email": "goetas@gmail.com"
  7127. },
  7128. {
  7129. "name": "Matt Farina",
  7130. "email": "matt@mattfarina.com"
  7131. }
  7132. ],
  7133. "description": "An HTML5 parser and serializer.",
  7134. "homepage": "http://masterminds.github.io/html5-php",
  7135. "keywords": [
  7136. "HTML5",
  7137. "dom",
  7138. "html",
  7139. "parser",
  7140. "querypath",
  7141. "serializer",
  7142. "xml"
  7143. ],
  7144. "time": "2018-10-22T16:58:34+00:00"
  7145. },
  7146. {
  7147. "name": "nikic/php-parser",
  7148. "version": "v4.1.0",
  7149. "source": {
  7150. "type": "git",
  7151. "url": "https://github.com/nikic/PHP-Parser.git",
  7152. "reference": "d0230c5c77a7e3cfa69446febf340978540958c0"
  7153. },
  7154. "dist": {
  7155. "type": "zip",
  7156. "url": "https://api.github.com/repos/nikic/PHP-Parser/zipball/d0230c5c77a7e3cfa69446febf340978540958c0",
  7157. "reference": "d0230c5c77a7e3cfa69446febf340978540958c0",
  7158. "shasum": ""
  7159. },
  7160. "require": {
  7161. "ext-tokenizer": "*",
  7162. "php": ">=7.0"
  7163. },
  7164. "require-dev": {
  7165. "phpunit/phpunit": "^6.5 || ^7.0"
  7166. },
  7167. "bin": [
  7168. "bin/php-parse"
  7169. ],
  7170. "type": "library",
  7171. "extra": {
  7172. "branch-alias": {
  7173. "dev-master": "4.1-dev"
  7174. }
  7175. },
  7176. "autoload": {
  7177. "psr-4": {
  7178. "PhpParser\\": "lib/PhpParser"
  7179. }
  7180. },
  7181. "notification-url": "https://packagist.org/downloads/",
  7182. "license": [
  7183. "BSD-3-Clause"
  7184. ],
  7185. "authors": [
  7186. {
  7187. "name": "Nikita Popov"
  7188. }
  7189. ],
  7190. "description": "A PHP parser written in PHP",
  7191. "keywords": [
  7192. "parser",
  7193. "php"
  7194. ],
  7195. "time": "2018-10-10T09:24:14+00:00"
  7196. },
  7197. {
  7198. "name": "paragonie/random_compat",
  7199. "version": "v2.0.17",
  7200. "source": {
  7201. "type": "git",
  7202. "url": "https://github.com/paragonie/random_compat.git",
  7203. "reference": "29af24f25bab834fcbb38ad2a69fa93b867e070d"
  7204. },
  7205. "dist": {
  7206. "type": "zip",
  7207. "url": "https://api.github.com/repos/paragonie/random_compat/zipball/29af24f25bab834fcbb38ad2a69fa93b867e070d",
  7208. "reference": "29af24f25bab834fcbb38ad2a69fa93b867e070d",
  7209. "shasum": ""
  7210. },
  7211. "require": {
  7212. "php": ">=5.2.0"
  7213. },
  7214. "require-dev": {
  7215. "phpunit/phpunit": "4.*|5.*"
  7216. },
  7217. "suggest": {
  7218. "ext-libsodium": "Provides a modern crypto API that can be used to generate random bytes."
  7219. },
  7220. "type": "library",
  7221. "autoload": {
  7222. "files": [
  7223. "lib/random.php"
  7224. ]
  7225. },
  7226. "notification-url": "https://packagist.org/downloads/",
  7227. "license": [
  7228. "MIT"
  7229. ],
  7230. "authors": [
  7231. {
  7232. "name": "Paragon Initiative Enterprises",
  7233. "email": "security@paragonie.com",
  7234. "homepage": "https://paragonie.com"
  7235. }
  7236. ],
  7237. "description": "PHP 5.x polyfill for random_bytes() and random_int() from PHP 7",
  7238. "keywords": [
  7239. "csprng",
  7240. "polyfill",
  7241. "pseudorandom",
  7242. "random"
  7243. ],
  7244. "time": "2018-07-04T16:31:37+00:00"
  7245. },
  7246. {
  7247. "name": "phenx/php-font-lib",
  7248. "version": "0.5",
  7249. "source": {
  7250. "type": "git",
  7251. "url": "https://github.com/PhenX/php-font-lib.git",
  7252. "reference": "19ad2bebc35be028fcc0221025fcbf3d436a3962"
  7253. },
  7254. "dist": {
  7255. "type": "zip",
  7256. "url": "https://api.github.com/repos/PhenX/php-font-lib/zipball/19ad2bebc35be028fcc0221025fcbf3d436a3962",
  7257. "reference": "19ad2bebc35be028fcc0221025fcbf3d436a3962",
  7258. "shasum": ""
  7259. },
  7260. "require-dev": {
  7261. "phpunit/phpunit": "^4.8"
  7262. },
  7263. "type": "library",
  7264. "autoload": {
  7265. "psr-4": {
  7266. "FontLib\\": "src/FontLib"
  7267. }
  7268. },
  7269. "notification-url": "https://packagist.org/downloads/",
  7270. "license": [
  7271. "LGPL-3.0"
  7272. ],
  7273. "authors": [
  7274. {
  7275. "name": "Fabien Ménager",
  7276. "email": "fabien.menager@gmail.com"
  7277. }
  7278. ],
  7279. "description": "A library to read, parse, export and make subsets of different types of font files.",
  7280. "homepage": "https://github.com/PhenX/php-font-lib",
  7281. "time": "2017-02-11T10:58:43+00:00"
  7282. },
  7283. {
  7284. "name": "psr/container",
  7285. "version": "1.0.0",
  7286. "source": {
  7287. "type": "git",
  7288. "url": "https://github.com/php-fig/container.git",
  7289. "reference": "b7ce3b176482dbbc1245ebf52b181af44c2cf55f"
  7290. },
  7291. "dist": {
  7292. "type": "zip",
  7293. "url": "https://api.github.com/repos/php-fig/container/zipball/b7ce3b176482dbbc1245ebf52b181af44c2cf55f",
  7294. "reference": "b7ce3b176482dbbc1245ebf52b181af44c2cf55f",
  7295. "shasum": ""
  7296. },
  7297. "require": {
  7298. "php": ">=5.3.0"
  7299. },
  7300. "type": "library",
  7301. "extra": {
  7302. "branch-alias": {
  7303. "dev-master": "1.0.x-dev"
  7304. }
  7305. },
  7306. "autoload": {
  7307. "psr-4": {
  7308. "Psr\\Container\\": "src/"
  7309. }
  7310. },
  7311. "notification-url": "https://packagist.org/downloads/",
  7312. "license": [
  7313. "MIT"
  7314. ],
  7315. "authors": [
  7316. {
  7317. "name": "PHP-FIG",
  7318. "homepage": "http://www.php-fig.org/"
  7319. }
  7320. ],
  7321. "description": "Common Container Interface (PHP FIG PSR-11)",
  7322. "homepage": "https://github.com/php-fig/container",
  7323. "keywords": [
  7324. "PSR-11",
  7325. "container",
  7326. "container-interface",
  7327. "container-interop",
  7328. "psr"
  7329. ],
  7330. "time": "2017-02-14T16:28:37+00:00"
  7331. },
  7332. {
  7333. "name": "psr/http-message",
  7334. "version": "1.0.1",
  7335. "source": {
  7336. "type": "git",
  7337. "url": "https://github.com/php-fig/http-message.git",
  7338. "reference": "f6561bf28d520154e4b0ec72be95418abe6d9363"
  7339. },
  7340. "dist": {
  7341. "type": "zip",
  7342. "url": "https://api.github.com/repos/php-fig/http-message/zipball/f6561bf28d520154e4b0ec72be95418abe6d9363",
  7343. "reference": "f6561bf28d520154e4b0ec72be95418abe6d9363",
  7344. "shasum": ""
  7345. },
  7346. "require": {
  7347. "php": ">=5.3.0"
  7348. },
  7349. "type": "library",
  7350. "extra": {
  7351. "branch-alias": {
  7352. "dev-master": "1.0.x-dev"
  7353. }
  7354. },
  7355. "autoload": {
  7356. "psr-4": {
  7357. "Psr\\Http\\Message\\": "src/"
  7358. }
  7359. },
  7360. "notification-url": "https://packagist.org/downloads/",
  7361. "license": [
  7362. "MIT"
  7363. ],
  7364. "authors": [
  7365. {
  7366. "name": "PHP-FIG",
  7367. "homepage": "http://www.php-fig.org/"
  7368. }
  7369. ],
  7370. "description": "Common interface for HTTP messages",
  7371. "homepage": "https://github.com/php-fig/http-message",
  7372. "keywords": [
  7373. "http",
  7374. "http-message",
  7375. "psr",
  7376. "psr-7",
  7377. "request",
  7378. "response"
  7379. ],
  7380. "time": "2016-08-06T14:39:51+00:00"
  7381. },
  7382. {
  7383. "name": "psr/log",
  7384. "version": "1.0.2",
  7385. "source": {
  7386. "type": "git",
  7387. "url": "https://github.com/php-fig/log.git",
  7388. "reference": "4ebe3a8bf773a19edfe0a84b6585ba3d401b724d"
  7389. },
  7390. "dist": {
  7391. "type": "zip",
  7392. "url": "https://api.github.com/repos/php-fig/log/zipball/4ebe3a8bf773a19edfe0a84b6585ba3d401b724d",
  7393. "reference": "4ebe3a8bf773a19edfe0a84b6585ba3d401b724d",
  7394. "shasum": ""
  7395. },
  7396. "require": {
  7397. "php": ">=5.3.0"
  7398. },
  7399. "type": "library",
  7400. "extra": {
  7401. "branch-alias": {
  7402. "dev-master": "1.0.x-dev"
  7403. }
  7404. },
  7405. "autoload": {
  7406. "psr-4": {
  7407. "Psr\\Log\\": "Psr/Log/"
  7408. }
  7409. },
  7410. "notification-url": "https://packagist.org/downloads/",
  7411. "license": [
  7412. "MIT"
  7413. ],
  7414. "authors": [
  7415. {
  7416. "name": "PHP-FIG",
  7417. "homepage": "http://www.php-fig.org/"
  7418. }
  7419. ],
  7420. "description": "Common interface for logging libraries",
  7421. "homepage": "https://github.com/php-fig/log",
  7422. "keywords": [
  7423. "log",
  7424. "psr",
  7425. "psr-3"
  7426. ],
  7427. "time": "2016-10-10T12:19:37+00:00"
  7428. },
  7429. {
  7430. "name": "psy/psysh",
  7431. "version": "v0.9.9",
  7432. "source": {
  7433. "type": "git",
  7434. "url": "https://github.com/bobthecow/psysh.git",
  7435. "reference": "9aaf29575bb8293206bb0420c1e1c87ff2ffa94e"
  7436. },
  7437. "dist": {
  7438. "type": "zip",
  7439. "url": "https://api.github.com/repos/bobthecow/psysh/zipball/9aaf29575bb8293206bb0420c1e1c87ff2ffa94e",
  7440. "reference": "9aaf29575bb8293206bb0420c1e1c87ff2ffa94e",
  7441. "shasum": ""
  7442. },
  7443. "require": {
  7444. "dnoegel/php-xdg-base-dir": "0.1",
  7445. "ext-json": "*",
  7446. "ext-tokenizer": "*",
  7447. "jakub-onderka/php-console-highlighter": "0.3.*|0.4.*",
  7448. "nikic/php-parser": "~1.3|~2.0|~3.0|~4.0",
  7449. "php": ">=5.4.0",
  7450. "symfony/console": "~2.3.10|^2.4.2|~3.0|~4.0",
  7451. "symfony/var-dumper": "~2.7|~3.0|~4.0"
  7452. },
  7453. "require-dev": {
  7454. "bamarni/composer-bin-plugin": "^1.2",
  7455. "hoa/console": "~2.15|~3.16",
  7456. "phpunit/phpunit": "~4.8.35|~5.0|~6.0|~7.0"
  7457. },
  7458. "suggest": {
  7459. "ext-pcntl": "Enabling the PCNTL extension makes PsySH a lot happier :)",
  7460. "ext-pdo-sqlite": "The doc command requires SQLite to work.",
  7461. "ext-posix": "If you have PCNTL, you'll want the POSIX extension as well.",
  7462. "ext-readline": "Enables support for arrow-key history navigation, and showing and manipulating command history.",
  7463. "hoa/console": "A pure PHP readline implementation. You'll want this if your PHP install doesn't already support readline or libedit."
  7464. },
  7465. "bin": [
  7466. "bin/psysh"
  7467. ],
  7468. "type": "library",
  7469. "extra": {
  7470. "branch-alias": {
  7471. "dev-develop": "0.9.x-dev"
  7472. }
  7473. },
  7474. "autoload": {
  7475. "files": [
  7476. "src/functions.php"
  7477. ],
  7478. "psr-4": {
  7479. "Psy\\": "src/"
  7480. }
  7481. },
  7482. "notification-url": "https://packagist.org/downloads/",
  7483. "license": [
  7484. "MIT"
  7485. ],
  7486. "authors": [
  7487. {
  7488. "name": "Justin Hileman",
  7489. "email": "justin@justinhileman.info",
  7490. "homepage": "http://justinhileman.com"
  7491. }
  7492. ],
  7493. "description": "An interactive shell for modern PHP.",
  7494. "homepage": "http://psysh.org",
  7495. "keywords": [
  7496. "REPL",
  7497. "console",
  7498. "interactive",
  7499. "shell"
  7500. ],
  7501. "time": "2018-10-13T15:16:03+00:00"
  7502. },
  7503. {
  7504. "name": "stack/builder",
  7505. "version": "v1.0.5",
  7506. "source": {
  7507. "type": "git",
  7508. "url": "https://github.com/stackphp/builder.git",
  7509. "reference": "fb3d136d04c6be41120ebf8c0cc71fe9507d750a"
  7510. },
  7511. "dist": {
  7512. "type": "zip",
  7513. "url": "https://api.github.com/repos/stackphp/builder/zipball/fb3d136d04c6be41120ebf8c0cc71fe9507d750a",
  7514. "reference": "fb3d136d04c6be41120ebf8c0cc71fe9507d750a",
  7515. "shasum": ""
  7516. },
  7517. "require": {
  7518. "php": ">=5.3.0",
  7519. "symfony/http-foundation": "~2.1|~3.0|~4.0",
  7520. "symfony/http-kernel": "~2.1|~3.0|~4.0"
  7521. },
  7522. "require-dev": {
  7523. "silex/silex": "~1.0"
  7524. },
  7525. "type": "library",
  7526. "extra": {
  7527. "branch-alias": {
  7528. "dev-master": "1.0-dev"
  7529. }
  7530. },
  7531. "autoload": {
  7532. "psr-0": {
  7533. "Stack": "src"
  7534. }
  7535. },
  7536. "notification-url": "https://packagist.org/downloads/",
  7537. "license": [
  7538. "MIT"
  7539. ],
  7540. "authors": [
  7541. {
  7542. "name": "Igor Wiedler",
  7543. "email": "igor@wiedler.ch"
  7544. }
  7545. ],
  7546. "description": "Builder for stack middlewares based on HttpKernelInterface.",
  7547. "keywords": [
  7548. "stack"
  7549. ],
  7550. "time": "2017-11-18T14:57:29+00:00"
  7551. },
  7552. {
  7553. "name": "stecman/symfony-console-completion",
  7554. "version": "0.8.0",
  7555. "source": {
  7556. "type": "git",
  7557. "url": "https://github.com/stecman/symfony-console-completion.git",
  7558. "reference": "cd738867503477e91dbe84173dfabd431c883431"
  7559. },
  7560. "dist": {
  7561. "type": "zip",
  7562. "url": "https://api.github.com/repos/stecman/symfony-console-completion/zipball/cd738867503477e91dbe84173dfabd431c883431",
  7563. "reference": "cd738867503477e91dbe84173dfabd431c883431",
  7564. "shasum": ""
  7565. },
  7566. "require": {
  7567. "php": ">=5.3.2",
  7568. "symfony/console": "~2.3 || ~3.0 || ~4.0"
  7569. },
  7570. "require-dev": {
  7571. "phpunit/phpunit": "~4.8.36 || ~5.7 || ~6.4"
  7572. },
  7573. "type": "library",
  7574. "extra": {
  7575. "branch-alias": {
  7576. "dev-master": "0.6.x-dev"
  7577. }
  7578. },
  7579. "autoload": {
  7580. "psr-4": {
  7581. "Stecman\\Component\\Symfony\\Console\\BashCompletion\\": "src/"
  7582. }
  7583. },
  7584. "notification-url": "https://packagist.org/downloads/",
  7585. "license": [
  7586. "MIT"
  7587. ],
  7588. "authors": [
  7589. {
  7590. "name": "Stephen Holdaway",
  7591. "email": "stephen@stecman.co.nz"
  7592. }
  7593. ],
  7594. "description": "Automatic BASH completion for Symfony Console Component based applications.",
  7595. "time": "2018-02-10T04:28:01+00:00"
  7596. },
  7597. {
  7598. "name": "symfony-cmf/routing",
  7599. "version": "1.4.1",
  7600. "source": {
  7601. "type": "git",
  7602. "url": "https://github.com/symfony-cmf/routing.git",
  7603. "reference": "fb1e7f85ff8c6866238b7e73a490a0a0243ae8ac"
  7604. },
  7605. "dist": {
  7606. "type": "zip",
  7607. "url": "https://api.github.com/repos/symfony-cmf/routing/zipball/fb1e7f85ff8c6866238b7e73a490a0a0243ae8ac",
  7608. "reference": "fb1e7f85ff8c6866238b7e73a490a0a0243ae8ac",
  7609. "shasum": ""
  7610. },
  7611. "require": {
  7612. "php": "^5.3.9|^7.0",
  7613. "psr/log": "1.*",
  7614. "symfony/http-kernel": "^2.2|3.*",
  7615. "symfony/routing": "^2.2|3.*"
  7616. },
  7617. "require-dev": {
  7618. "friendsofsymfony/jsrouting-bundle": "^1.1",
  7619. "symfony-cmf/testing": "^1.3",
  7620. "symfony/config": "^2.2|3.*",
  7621. "symfony/dependency-injection": "^2.0.5|3.*",
  7622. "symfony/event-dispatcher": "^2.1|3.*"
  7623. },
  7624. "suggest": {
  7625. "symfony/event-dispatcher": "DynamicRouter can optionally trigger an event at the start of matching. Minimal version (~2.1)"
  7626. },
  7627. "type": "library",
  7628. "extra": {
  7629. "branch-alias": {
  7630. "dev-master": "1.4-dev"
  7631. }
  7632. },
  7633. "autoload": {
  7634. "psr-4": {
  7635. "Symfony\\Cmf\\Component\\Routing\\": ""
  7636. }
  7637. },
  7638. "notification-url": "https://packagist.org/downloads/",
  7639. "license": [
  7640. "MIT"
  7641. ],
  7642. "authors": [
  7643. {
  7644. "name": "Symfony CMF Community",
  7645. "homepage": "https://github.com/symfony-cmf/Routing/contributors"
  7646. }
  7647. ],
  7648. "description": "Extends the Symfony2 routing component for dynamic routes and chaining several routers",
  7649. "homepage": "http://cmf.symfony.com",
  7650. "keywords": [
  7651. "database",
  7652. "routing"
  7653. ],
  7654. "time": "2017-05-09T08:10:41+00:00"
  7655. },
  7656. {
  7657. "name": "symfony/class-loader",
  7658. "version": "v3.4.17",
  7659. "source": {
  7660. "type": "git",
  7661. "url": "https://github.com/symfony/class-loader.git",
  7662. "reference": "f31333bdff54c7595f834d510a6d2325573ddb36"
  7663. },
  7664. "dist": {
  7665. "type": "zip",
  7666. "url": "https://api.github.com/repos/symfony/class-loader/zipball/f31333bdff54c7595f834d510a6d2325573ddb36",
  7667. "reference": "f31333bdff54c7595f834d510a6d2325573ddb36",
  7668. "shasum": ""
  7669. },
  7670. "require": {
  7671. "php": "^5.5.9|>=7.0.8"
  7672. },
  7673. "require-dev": {
  7674. "symfony/finder": "~2.8|~3.0|~4.0",
  7675. "symfony/polyfill-apcu": "~1.1"
  7676. },
  7677. "suggest": {
  7678. "symfony/polyfill-apcu": "For using ApcClassLoader on HHVM"
  7679. },
  7680. "type": "library",
  7681. "extra": {
  7682. "branch-alias": {
  7683. "dev-master": "3.4-dev"
  7684. }
  7685. },
  7686. "autoload": {
  7687. "psr-4": {
  7688. "Symfony\\Component\\ClassLoader\\": ""
  7689. },
  7690. "exclude-from-classmap": [
  7691. "/Tests/"
  7692. ]
  7693. },
  7694. "notification-url": "https://packagist.org/downloads/",
  7695. "license": [
  7696. "MIT"
  7697. ],
  7698. "authors": [
  7699. {
  7700. "name": "Fabien Potencier",
  7701. "email": "fabien@symfony.com"
  7702. },
  7703. {
  7704. "name": "Symfony Community",
  7705. "homepage": "https://symfony.com/contributors"
  7706. }
  7707. ],
  7708. "description": "Symfony ClassLoader Component",
  7709. "homepage": "https://symfony.com",
  7710. "time": "2018-10-02T12:28:39+00:00"
  7711. },
  7712. {
  7713. "name": "symfony/config",
  7714. "version": "v3.4.17",
  7715. "source": {
  7716. "type": "git",
  7717. "url": "https://github.com/symfony/config.git",
  7718. "reference": "e5389132dc6320682de3643091121c048ff796b3"
  7719. },
  7720. "dist": {
  7721. "type": "zip",
  7722. "url": "https://api.github.com/repos/symfony/config/zipball/e5389132dc6320682de3643091121c048ff796b3",
  7723. "reference": "e5389132dc6320682de3643091121c048ff796b3",
  7724. "shasum": ""
  7725. },
  7726. "require": {
  7727. "php": "^5.5.9|>=7.0.8",
  7728. "symfony/filesystem": "~2.8|~3.0|~4.0",
  7729. "symfony/polyfill-ctype": "~1.8"
  7730. },
  7731. "conflict": {
  7732. "symfony/dependency-injection": "<3.3",
  7733. "symfony/finder": "<3.3"
  7734. },
  7735. "require-dev": {
  7736. "symfony/dependency-injection": "~3.3|~4.0",
  7737. "symfony/event-dispatcher": "~3.3|~4.0",
  7738. "symfony/finder": "~3.3|~4.0",
  7739. "symfony/yaml": "~3.0|~4.0"
  7740. },
  7741. "suggest": {
  7742. "symfony/yaml": "To use the yaml reference dumper"
  7743. },
  7744. "type": "library",
  7745. "extra": {
  7746. "branch-alias": {
  7747. "dev-master": "3.4-dev"
  7748. }
  7749. },
  7750. "autoload": {
  7751. "psr-4": {
  7752. "Symfony\\Component\\Config\\": ""
  7753. },
  7754. "exclude-from-classmap": [
  7755. "/Tests/"
  7756. ]
  7757. },
  7758. "notification-url": "https://packagist.org/downloads/",
  7759. "license": [
  7760. "MIT"
  7761. ],
  7762. "authors": [
  7763. {
  7764. "name": "Fabien Potencier",
  7765. "email": "fabien@symfony.com"
  7766. },
  7767. {
  7768. "name": "Symfony Community",
  7769. "homepage": "https://symfony.com/contributors"
  7770. }
  7771. ],
  7772. "description": "Symfony Config Component",
  7773. "homepage": "https://symfony.com",
  7774. "time": "2018-09-08T13:15:14+00:00"
  7775. },
  7776. {
  7777. "name": "symfony/console",
  7778. "version": "v3.4.17",
  7779. "source": {
  7780. "type": "git",
  7781. "url": "https://github.com/symfony/console.git",
  7782. "reference": "3b2b415d4c48fbefca7dc742aa0a0171bfae4e0b"
  7783. },
  7784. "dist": {
  7785. "type": "zip",
  7786. "url": "https://api.github.com/repos/symfony/console/zipball/3b2b415d4c48fbefca7dc742aa0a0171bfae4e0b",
  7787. "reference": "3b2b415d4c48fbefca7dc742aa0a0171bfae4e0b",
  7788. "shasum": ""
  7789. },
  7790. "require": {
  7791. "php": "^5.5.9|>=7.0.8",
  7792. "symfony/debug": "~2.8|~3.0|~4.0",
  7793. "symfony/polyfill-mbstring": "~1.0"
  7794. },
  7795. "conflict": {
  7796. "symfony/dependency-injection": "<3.4",
  7797. "symfony/process": "<3.3"
  7798. },
  7799. "require-dev": {
  7800. "psr/log": "~1.0",
  7801. "symfony/config": "~3.3|~4.0",
  7802. "symfony/dependency-injection": "~3.4|~4.0",
  7803. "symfony/event-dispatcher": "~2.8|~3.0|~4.0",
  7804. "symfony/lock": "~3.4|~4.0",
  7805. "symfony/process": "~3.3|~4.0"
  7806. },
  7807. "suggest": {
  7808. "psr/log-implementation": "For using the console logger",
  7809. "symfony/event-dispatcher": "",
  7810. "symfony/lock": "",
  7811. "symfony/process": ""
  7812. },
  7813. "type": "library",
  7814. "extra": {
  7815. "branch-alias": {
  7816. "dev-master": "3.4-dev"
  7817. }
  7818. },
  7819. "autoload": {
  7820. "psr-4": {
  7821. "Symfony\\Component\\Console\\": ""
  7822. },
  7823. "exclude-from-classmap": [
  7824. "/Tests/"
  7825. ]
  7826. },
  7827. "notification-url": "https://packagist.org/downloads/",
  7828. "license": [
  7829. "MIT"
  7830. ],
  7831. "authors": [
  7832. {
  7833. "name": "Fabien Potencier",
  7834. "email": "fabien@symfony.com"
  7835. },
  7836. {
  7837. "name": "Symfony Community",
  7838. "homepage": "https://symfony.com/contributors"
  7839. }
  7840. ],
  7841. "description": "Symfony Console Component",
  7842. "homepage": "https://symfony.com",
  7843. "time": "2018-10-02T16:33:53+00:00"
  7844. },
  7845. {
  7846. "name": "symfony/css-selector",
  7847. "version": "v3.4.17",
  7848. "source": {
  7849. "type": "git",
  7850. "url": "https://github.com/symfony/css-selector.git",
  7851. "reference": "3503415d4aafabc31cd08c3a4ebac7f43fde8feb"
  7852. },
  7853. "dist": {
  7854. "type": "zip",
  7855. "url": "https://api.github.com/repos/symfony/css-selector/zipball/3503415d4aafabc31cd08c3a4ebac7f43fde8feb",
  7856. "reference": "3503415d4aafabc31cd08c3a4ebac7f43fde8feb",
  7857. "shasum": ""
  7858. },
  7859. "require": {
  7860. "php": "^5.5.9|>=7.0.8"
  7861. },
  7862. "type": "library",
  7863. "extra": {
  7864. "branch-alias": {
  7865. "dev-master": "3.4-dev"
  7866. }
  7867. },
  7868. "autoload": {
  7869. "psr-4": {
  7870. "Symfony\\Component\\CssSelector\\": ""
  7871. },
  7872. "exclude-from-classmap": [
  7873. "/Tests/"
  7874. ]
  7875. },
  7876. "notification-url": "https://packagist.org/downloads/",
  7877. "license": [
  7878. "MIT"
  7879. ],
  7880. "authors": [
  7881. {
  7882. "name": "Jean-François Simon",
  7883. "email": "jeanfrancois.simon@sensiolabs.com"
  7884. },
  7885. {
  7886. "name": "Fabien Potencier",
  7887. "email": "fabien@symfony.com"
  7888. },
  7889. {
  7890. "name": "Symfony Community",
  7891. "homepage": "https://symfony.com/contributors"
  7892. }
  7893. ],
  7894. "description": "Symfony CssSelector Component",
  7895. "homepage": "https://symfony.com",
  7896. "time": "2018-10-02T16:33:53+00:00"
  7897. },
  7898. {
  7899. "name": "symfony/debug",
  7900. "version": "v3.4.17",
  7901. "source": {
  7902. "type": "git",
  7903. "url": "https://github.com/symfony/debug.git",
  7904. "reference": "0a612e9dfbd2ccce03eb174365f31ecdca930ff6"
  7905. },
  7906. "dist": {
  7907. "type": "zip",
  7908. "url": "https://api.github.com/repos/symfony/debug/zipball/0a612e9dfbd2ccce03eb174365f31ecdca930ff6",
  7909. "reference": "0a612e9dfbd2ccce03eb174365f31ecdca930ff6",
  7910. "shasum": ""
  7911. },
  7912. "require": {
  7913. "php": "^5.5.9|>=7.0.8",
  7914. "psr/log": "~1.0"
  7915. },
  7916. "conflict": {
  7917. "symfony/http-kernel": ">=2.3,<2.3.24|~2.4.0|>=2.5,<2.5.9|>=2.6,<2.6.2"
  7918. },
  7919. "require-dev": {
  7920. "symfony/http-kernel": "~2.8|~3.0|~4.0"
  7921. },
  7922. "type": "library",
  7923. "extra": {
  7924. "branch-alias": {
  7925. "dev-master": "3.4-dev"
  7926. }
  7927. },
  7928. "autoload": {
  7929. "psr-4": {
  7930. "Symfony\\Component\\Debug\\": ""
  7931. },
  7932. "exclude-from-classmap": [
  7933. "/Tests/"
  7934. ]
  7935. },
  7936. "notification-url": "https://packagist.org/downloads/",
  7937. "license": [
  7938. "MIT"
  7939. ],
  7940. "authors": [
  7941. {
  7942. "name": "Fabien Potencier",
  7943. "email": "fabien@symfony.com"
  7944. },
  7945. {
  7946. "name": "Symfony Community",
  7947. "homepage": "https://symfony.com/contributors"
  7948. }
  7949. ],
  7950. "description": "Symfony Debug Component",
  7951. "homepage": "https://symfony.com",
  7952. "time": "2018-10-02T16:33:53+00:00"
  7953. },
  7954. {
  7955. "name": "symfony/dependency-injection",
  7956. "version": "v3.4.17",
  7957. "source": {
  7958. "type": "git",
  7959. "url": "https://github.com/symfony/dependency-injection.git",
  7960. "reference": "aea20fef4e92396928b5db175788b90234c0270d"
  7961. },
  7962. "dist": {
  7963. "type": "zip",
  7964. "url": "https://api.github.com/repos/symfony/dependency-injection/zipball/aea20fef4e92396928b5db175788b90234c0270d",
  7965. "reference": "aea20fef4e92396928b5db175788b90234c0270d",
  7966. "shasum": ""
  7967. },
  7968. "require": {
  7969. "php": "^5.5.9|>=7.0.8",
  7970. "psr/container": "^1.0"
  7971. },
  7972. "conflict": {
  7973. "symfony/config": "<3.3.7",
  7974. "symfony/finder": "<3.3",
  7975. "symfony/proxy-manager-bridge": "<3.4",
  7976. "symfony/yaml": "<3.4"
  7977. },
  7978. "provide": {
  7979. "psr/container-implementation": "1.0"
  7980. },
  7981. "require-dev": {
  7982. "symfony/config": "~3.3|~4.0",
  7983. "symfony/expression-language": "~2.8|~3.0|~4.0",
  7984. "symfony/yaml": "~3.4|~4.0"
  7985. },
  7986. "suggest": {
  7987. "symfony/config": "",
  7988. "symfony/expression-language": "For using expressions in service container configuration",
  7989. "symfony/finder": "For using double-star glob patterns or when GLOB_BRACE portability is required",
  7990. "symfony/proxy-manager-bridge": "Generate service proxies to lazy load them",
  7991. "symfony/yaml": ""
  7992. },
  7993. "type": "library",
  7994. "extra": {
  7995. "branch-alias": {
  7996. "dev-master": "3.4-dev"
  7997. }
  7998. },
  7999. "autoload": {
  8000. "psr-4": {
  8001. "Symfony\\Component\\DependencyInjection\\": ""
  8002. },
  8003. "exclude-from-classmap": [
  8004. "/Tests/"
  8005. ]
  8006. },
  8007. "notification-url": "https://packagist.org/downloads/",
  8008. "license": [
  8009. "MIT"
  8010. ],
  8011. "authors": [
  8012. {
  8013. "name": "Fabien Potencier",
  8014. "email": "fabien@symfony.com"
  8015. },
  8016. {
  8017. "name": "Symfony Community",
  8018. "homepage": "https://symfony.com/contributors"
  8019. }
  8020. ],
  8021. "description": "Symfony DependencyInjection Component",
  8022. "homepage": "https://symfony.com",
  8023. "time": "2018-10-02T12:28:39+00:00"
  8024. },
  8025. {
  8026. "name": "symfony/dom-crawler",
  8027. "version": "v3.4.17",
  8028. "source": {
  8029. "type": "git",
  8030. "url": "https://github.com/symfony/dom-crawler.git",
  8031. "reference": "c705bee03ade5b47c087807dd9ffaaec8dda2722"
  8032. },
  8033. "dist": {
  8034. "type": "zip",
  8035. "url": "https://api.github.com/repos/symfony/dom-crawler/zipball/c705bee03ade5b47c087807dd9ffaaec8dda2722",
  8036. "reference": "c705bee03ade5b47c087807dd9ffaaec8dda2722",
  8037. "shasum": ""
  8038. },
  8039. "require": {
  8040. "php": "^5.5.9|>=7.0.8",
  8041. "symfony/polyfill-ctype": "~1.8",
  8042. "symfony/polyfill-mbstring": "~1.0"
  8043. },
  8044. "require-dev": {
  8045. "symfony/css-selector": "~2.8|~3.0|~4.0"
  8046. },
  8047. "suggest": {
  8048. "symfony/css-selector": ""
  8049. },
  8050. "type": "library",
  8051. "extra": {
  8052. "branch-alias": {
  8053. "dev-master": "3.4-dev"
  8054. }
  8055. },
  8056. "autoload": {
  8057. "psr-4": {
  8058. "Symfony\\Component\\DomCrawler\\": ""
  8059. },
  8060. "exclude-from-classmap": [
  8061. "/Tests/"
  8062. ]
  8063. },
  8064. "notification-url": "https://packagist.org/downloads/",
  8065. "license": [
  8066. "MIT"
  8067. ],
  8068. "authors": [
  8069. {
  8070. "name": "Fabien Potencier",
  8071. "email": "fabien@symfony.com"
  8072. },
  8073. {
  8074. "name": "Symfony Community",
  8075. "homepage": "https://symfony.com/contributors"
  8076. }
  8077. ],
  8078. "description": "Symfony DomCrawler Component",
  8079. "homepage": "https://symfony.com",
  8080. "time": "2018-10-02T12:28:39+00:00"
  8081. },
  8082. {
  8083. "name": "symfony/event-dispatcher",
  8084. "version": "v3.4.17",
  8085. "source": {
  8086. "type": "git",
  8087. "url": "https://github.com/symfony/event-dispatcher.git",
  8088. "reference": "b2e1f19280c09a42dc64c0b72b80fe44dd6e88fb"
  8089. },
  8090. "dist": {
  8091. "type": "zip",
  8092. "url": "https://api.github.com/repos/symfony/event-dispatcher/zipball/b2e1f19280c09a42dc64c0b72b80fe44dd6e88fb",
  8093. "reference": "b2e1f19280c09a42dc64c0b72b80fe44dd6e88fb",
  8094. "shasum": ""
  8095. },
  8096. "require": {
  8097. "php": "^5.5.9|>=7.0.8"
  8098. },
  8099. "conflict": {
  8100. "symfony/dependency-injection": "<3.3"
  8101. },
  8102. "require-dev": {
  8103. "psr/log": "~1.0",
  8104. "symfony/config": "~2.8|~3.0|~4.0",
  8105. "symfony/dependency-injection": "~3.3|~4.0",
  8106. "symfony/expression-language": "~2.8|~3.0|~4.0",
  8107. "symfony/stopwatch": "~2.8|~3.0|~4.0"
  8108. },
  8109. "suggest": {
  8110. "symfony/dependency-injection": "",
  8111. "symfony/http-kernel": ""
  8112. },
  8113. "type": "library",
  8114. "extra": {
  8115. "branch-alias": {
  8116. "dev-master": "3.4-dev"
  8117. }
  8118. },
  8119. "autoload": {
  8120. "psr-4": {
  8121. "Symfony\\Component\\EventDispatcher\\": ""
  8122. },
  8123. "exclude-from-classmap": [
  8124. "/Tests/"
  8125. ]
  8126. },
  8127. "notification-url": "https://packagist.org/downloads/",
  8128. "license": [
  8129. "MIT"
  8130. ],
  8131. "authors": [
  8132. {
  8133. "name": "Fabien Potencier",
  8134. "email": "fabien@symfony.com"
  8135. },
  8136. {
  8137. "name": "Symfony Community",
  8138. "homepage": "https://symfony.com/contributors"
  8139. }
  8140. ],
  8141. "description": "Symfony EventDispatcher Component",
  8142. "homepage": "https://symfony.com",
  8143. "time": "2018-07-26T09:06:28+00:00"
  8144. },
  8145. {
  8146. "name": "symfony/filesystem",
  8147. "version": "v3.4.17",
  8148. "source": {
  8149. "type": "git",
  8150. "url": "https://github.com/symfony/filesystem.git",
  8151. "reference": "d69930fc337d767607267d57c20a7403d0a822a4"
  8152. },
  8153. "dist": {
  8154. "type": "zip",
  8155. "url": "https://api.github.com/repos/symfony/filesystem/zipball/d69930fc337d767607267d57c20a7403d0a822a4",
  8156. "reference": "d69930fc337d767607267d57c20a7403d0a822a4",
  8157. "shasum": ""
  8158. },
  8159. "require": {
  8160. "php": "^5.5.9|>=7.0.8",
  8161. "symfony/polyfill-ctype": "~1.8"
  8162. },
  8163. "type": "library",
  8164. "extra": {
  8165. "branch-alias": {
  8166. "dev-master": "3.4-dev"
  8167. }
  8168. },
  8169. "autoload": {
  8170. "psr-4": {
  8171. "Symfony\\Component\\Filesystem\\": ""
  8172. },
  8173. "exclude-from-classmap": [
  8174. "/Tests/"
  8175. ]
  8176. },
  8177. "notification-url": "https://packagist.org/downloads/",
  8178. "license": [
  8179. "MIT"
  8180. ],
  8181. "authors": [
  8182. {
  8183. "name": "Fabien Potencier",
  8184. "email": "fabien@symfony.com"
  8185. },
  8186. {
  8187. "name": "Symfony Community",
  8188. "homepage": "https://symfony.com/contributors"
  8189. }
  8190. ],
  8191. "description": "Symfony Filesystem Component",
  8192. "homepage": "https://symfony.com",
  8193. "time": "2018-10-02T12:28:39+00:00"
  8194. },
  8195. {
  8196. "name": "symfony/finder",
  8197. "version": "v3.4.17",
  8198. "source": {
  8199. "type": "git",
  8200. "url": "https://github.com/symfony/finder.git",
  8201. "reference": "54ba444dddc5bd5708a34bd095ea67c6eb54644d"
  8202. },
  8203. "dist": {
  8204. "type": "zip",
  8205. "url": "https://api.github.com/repos/symfony/finder/zipball/54ba444dddc5bd5708a34bd095ea67c6eb54644d",
  8206. "reference": "54ba444dddc5bd5708a34bd095ea67c6eb54644d",
  8207. "shasum": ""
  8208. },
  8209. "require": {
  8210. "php": "^5.5.9|>=7.0.8"
  8211. },
  8212. "type": "library",
  8213. "extra": {
  8214. "branch-alias": {
  8215. "dev-master": "3.4-dev"
  8216. }
  8217. },
  8218. "autoload": {
  8219. "psr-4": {
  8220. "Symfony\\Component\\Finder\\": ""
  8221. },
  8222. "exclude-from-classmap": [
  8223. "/Tests/"
  8224. ]
  8225. },
  8226. "notification-url": "https://packagist.org/downloads/",
  8227. "license": [
  8228. "MIT"
  8229. ],
  8230. "authors": [
  8231. {
  8232. "name": "Fabien Potencier",
  8233. "email": "fabien@symfony.com"
  8234. },
  8235. {
  8236. "name": "Symfony Community",
  8237. "homepage": "https://symfony.com/contributors"
  8238. }
  8239. ],
  8240. "description": "Symfony Finder Component",
  8241. "homepage": "https://symfony.com",
  8242. "time": "2018-10-03T08:46:40+00:00"
  8243. },
  8244. {
  8245. "name": "symfony/http-foundation",
  8246. "version": "v3.4.17",
  8247. "source": {
  8248. "type": "git",
  8249. "url": "https://github.com/symfony/http-foundation.git",
  8250. "reference": "3a4498236ade473c52b92d509303e5fd1b211ab1"
  8251. },
  8252. "dist": {
  8253. "type": "zip",
  8254. "url": "https://api.github.com/repos/symfony/http-foundation/zipball/3a4498236ade473c52b92d509303e5fd1b211ab1",
  8255. "reference": "3a4498236ade473c52b92d509303e5fd1b211ab1",
  8256. "shasum": ""
  8257. },
  8258. "require": {
  8259. "php": "^5.5.9|>=7.0.8",
  8260. "symfony/polyfill-mbstring": "~1.1",
  8261. "symfony/polyfill-php70": "~1.6"
  8262. },
  8263. "require-dev": {
  8264. "symfony/expression-language": "~2.8|~3.0|~4.0"
  8265. },
  8266. "type": "library",
  8267. "extra": {
  8268. "branch-alias": {
  8269. "dev-master": "3.4-dev"
  8270. }
  8271. },
  8272. "autoload": {
  8273. "psr-4": {
  8274. "Symfony\\Component\\HttpFoundation\\": ""
  8275. },
  8276. "exclude-from-classmap": [
  8277. "/Tests/"
  8278. ]
  8279. },
  8280. "notification-url": "https://packagist.org/downloads/",
  8281. "license": [
  8282. "MIT"
  8283. ],
  8284. "authors": [
  8285. {
  8286. "name": "Fabien Potencier",
  8287. "email": "fabien@symfony.com"
  8288. },
  8289. {
  8290. "name": "Symfony Community",
  8291. "homepage": "https://symfony.com/contributors"
  8292. }
  8293. ],
  8294. "description": "Symfony HttpFoundation Component",
  8295. "homepage": "https://symfony.com",
  8296. "time": "2018-10-03T08:48:18+00:00"
  8297. },
  8298. {
  8299. "name": "symfony/http-kernel",
  8300. "version": "v3.4.17",
  8301. "source": {
  8302. "type": "git",
  8303. "url": "https://github.com/symfony/http-kernel.git",
  8304. "reference": "a0944a9a1d8845da724236cde9a310964acadb1c"
  8305. },
  8306. "dist": {
  8307. "type": "zip",
  8308. "url": "https://api.github.com/repos/symfony/http-kernel/zipball/a0944a9a1d8845da724236cde9a310964acadb1c",
  8309. "reference": "a0944a9a1d8845da724236cde9a310964acadb1c",
  8310. "shasum": ""
  8311. },
  8312. "require": {
  8313. "php": "^5.5.9|>=7.0.8",
  8314. "psr/log": "~1.0",
  8315. "symfony/debug": "~2.8|~3.0|~4.0",
  8316. "symfony/event-dispatcher": "~2.8|~3.0|~4.0",
  8317. "symfony/http-foundation": "~3.4.12|~4.0.12|^4.1.1",
  8318. "symfony/polyfill-ctype": "~1.8"
  8319. },
  8320. "conflict": {
  8321. "symfony/config": "<2.8",
  8322. "symfony/dependency-injection": "<3.4.10|<4.0.10,>=4",
  8323. "symfony/var-dumper": "<3.3",
  8324. "twig/twig": "<1.34|<2.4,>=2"
  8325. },
  8326. "provide": {
  8327. "psr/log-implementation": "1.0"
  8328. },
  8329. "require-dev": {
  8330. "psr/cache": "~1.0",
  8331. "symfony/browser-kit": "~2.8|~3.0|~4.0",
  8332. "symfony/class-loader": "~2.8|~3.0",
  8333. "symfony/config": "~2.8|~3.0|~4.0",
  8334. "symfony/console": "~2.8|~3.0|~4.0",
  8335. "symfony/css-selector": "~2.8|~3.0|~4.0",
  8336. "symfony/dependency-injection": "^3.4.10|^4.0.10",
  8337. "symfony/dom-crawler": "~2.8|~3.0|~4.0",
  8338. "symfony/expression-language": "~2.8|~3.0|~4.0",
  8339. "symfony/finder": "~2.8|~3.0|~4.0",
  8340. "symfony/process": "~2.8|~3.0|~4.0",
  8341. "symfony/routing": "~3.4|~4.0",
  8342. "symfony/stopwatch": "~2.8|~3.0|~4.0",
  8343. "symfony/templating": "~2.8|~3.0|~4.0",
  8344. "symfony/translation": "~2.8|~3.0|~4.0",
  8345. "symfony/var-dumper": "~3.3|~4.0"
  8346. },
  8347. "suggest": {
  8348. "symfony/browser-kit": "",
  8349. "symfony/config": "",
  8350. "symfony/console": "",
  8351. "symfony/dependency-injection": "",
  8352. "symfony/finder": "",
  8353. "symfony/var-dumper": ""
  8354. },
  8355. "type": "library",
  8356. "extra": {
  8357. "branch-alias": {
  8358. "dev-master": "3.4-dev"
  8359. }
  8360. },
  8361. "autoload": {
  8362. "psr-4": {
  8363. "Symfony\\Component\\HttpKernel\\": ""
  8364. },
  8365. "exclude-from-classmap": [
  8366. "/Tests/"
  8367. ]
  8368. },
  8369. "notification-url": "https://packagist.org/downloads/",
  8370. "license": [
  8371. "MIT"
  8372. ],
  8373. "authors": [
  8374. {
  8375. "name": "Fabien Potencier",
  8376. "email": "fabien@symfony.com"
  8377. },
  8378. {
  8379. "name": "Symfony Community",
  8380. "homepage": "https://symfony.com/contributors"
  8381. }
  8382. ],
  8383. "description": "Symfony HttpKernel Component",
  8384. "homepage": "https://symfony.com",
  8385. "time": "2018-10-03T12:03:34+00:00"
  8386. },
  8387. {
  8388. "name": "symfony/polyfill-ctype",
  8389. "version": "v1.10.0",
  8390. "source": {
  8391. "type": "git",
  8392. "url": "https://github.com/symfony/polyfill-ctype.git",
  8393. "reference": "e3d826245268269cd66f8326bd8bc066687b4a19"
  8394. },
  8395. "dist": {
  8396. "type": "zip",
  8397. "url": "https://api.github.com/repos/symfony/polyfill-ctype/zipball/e3d826245268269cd66f8326bd8bc066687b4a19",
  8398. "reference": "e3d826245268269cd66f8326bd8bc066687b4a19",
  8399. "shasum": ""
  8400. },
  8401. "require": {
  8402. "php": ">=5.3.3"
  8403. },
  8404. "suggest": {
  8405. "ext-ctype": "For best performance"
  8406. },
  8407. "type": "library",
  8408. "extra": {
  8409. "branch-alias": {
  8410. "dev-master": "1.9-dev"
  8411. }
  8412. },
  8413. "autoload": {
  8414. "psr-4": {
  8415. "Symfony\\Polyfill\\Ctype\\": ""
  8416. },
  8417. "files": [
  8418. "bootstrap.php"
  8419. ]
  8420. },
  8421. "notification-url": "https://packagist.org/downloads/",
  8422. "license": [
  8423. "MIT"
  8424. ],
  8425. "authors": [
  8426. {
  8427. "name": "Symfony Community",
  8428. "homepage": "https://symfony.com/contributors"
  8429. },
  8430. {
  8431. "name": "Gert de Pagter",
  8432. "email": "BackEndTea@gmail.com"
  8433. }
  8434. ],
  8435. "description": "Symfony polyfill for ctype functions",
  8436. "homepage": "https://symfony.com",
  8437. "keywords": [
  8438. "compatibility",
  8439. "ctype",
  8440. "polyfill",
  8441. "portable"
  8442. ],
  8443. "time": "2018-08-06T14:22:27+00:00"
  8444. },
  8445. {
  8446. "name": "symfony/polyfill-iconv",
  8447. "version": "v1.10.0",
  8448. "source": {
  8449. "type": "git",
  8450. "url": "https://github.com/symfony/polyfill-iconv.git",
  8451. "reference": "97001cfc283484c9691769f51cdf25259037eba2"
  8452. },
  8453. "dist": {
  8454. "type": "zip",
  8455. "url": "https://api.github.com/repos/symfony/polyfill-iconv/zipball/97001cfc283484c9691769f51cdf25259037eba2",
  8456. "reference": "97001cfc283484c9691769f51cdf25259037eba2",
  8457. "shasum": ""
  8458. },
  8459. "require": {
  8460. "php": ">=5.3.3"
  8461. },
  8462. "suggest": {
  8463. "ext-iconv": "For best performance"
  8464. },
  8465. "type": "library",
  8466. "extra": {
  8467. "branch-alias": {
  8468. "dev-master": "1.9-dev"
  8469. }
  8470. },
  8471. "autoload": {
  8472. "psr-4": {
  8473. "Symfony\\Polyfill\\Iconv\\": ""
  8474. },
  8475. "files": [
  8476. "bootstrap.php"
  8477. ]
  8478. },
  8479. "notification-url": "https://packagist.org/downloads/",
  8480. "license": [
  8481. "MIT"
  8482. ],
  8483. "authors": [
  8484. {
  8485. "name": "Nicolas Grekas",
  8486. "email": "p@tchwork.com"
  8487. },
  8488. {
  8489. "name": "Symfony Community",
  8490. "homepage": "https://symfony.com/contributors"
  8491. }
  8492. ],
  8493. "description": "Symfony polyfill for the Iconv extension",
  8494. "homepage": "https://symfony.com",
  8495. "keywords": [
  8496. "compatibility",
  8497. "iconv",
  8498. "polyfill",
  8499. "portable",
  8500. "shim"
  8501. ],
  8502. "time": "2018-09-21T06:26:08+00:00"
  8503. },
  8504. {
  8505. "name": "symfony/polyfill-mbstring",
  8506. "version": "v1.10.0",
  8507. "source": {
  8508. "type": "git",
  8509. "url": "https://github.com/symfony/polyfill-mbstring.git",
  8510. "reference": "c79c051f5b3a46be09205c73b80b346e4153e494"
  8511. },
  8512. "dist": {
  8513. "type": "zip",
  8514. "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/c79c051f5b3a46be09205c73b80b346e4153e494",
  8515. "reference": "c79c051f5b3a46be09205c73b80b346e4153e494",
  8516. "shasum": ""
  8517. },
  8518. "require": {
  8519. "php": ">=5.3.3"
  8520. },
  8521. "suggest": {
  8522. "ext-mbstring": "For best performance"
  8523. },
  8524. "type": "library",
  8525. "extra": {
  8526. "branch-alias": {
  8527. "dev-master": "1.9-dev"
  8528. }
  8529. },
  8530. "autoload": {
  8531. "psr-4": {
  8532. "Symfony\\Polyfill\\Mbstring\\": ""
  8533. },
  8534. "files": [
  8535. "bootstrap.php"
  8536. ]
  8537. },
  8538. "notification-url": "https://packagist.org/downloads/",
  8539. "license": [
  8540. "MIT"
  8541. ],
  8542. "authors": [
  8543. {
  8544. "name": "Nicolas Grekas",
  8545. "email": "p@tchwork.com"
  8546. },
  8547. {
  8548. "name": "Symfony Community",
  8549. "homepage": "https://symfony.com/contributors"
  8550. }
  8551. ],
  8552. "description": "Symfony polyfill for the Mbstring extension",
  8553. "homepage": "https://symfony.com",
  8554. "keywords": [
  8555. "compatibility",
  8556. "mbstring",
  8557. "polyfill",
  8558. "portable",
  8559. "shim"
  8560. ],
  8561. "time": "2018-09-21T13:07:52+00:00"
  8562. },
  8563. {
  8564. "name": "symfony/polyfill-php70",
  8565. "version": "v1.10.0",
  8566. "source": {
  8567. "type": "git",
  8568. "url": "https://github.com/symfony/polyfill-php70.git",
  8569. "reference": "6b88000cdd431cd2e940caa2cb569201f3f84224"
  8570. },
  8571. "dist": {
  8572. "type": "zip",
  8573. "url": "https://api.github.com/repos/symfony/polyfill-php70/zipball/6b88000cdd431cd2e940caa2cb569201f3f84224",
  8574. "reference": "6b88000cdd431cd2e940caa2cb569201f3f84224",
  8575. "shasum": ""
  8576. },
  8577. "require": {
  8578. "paragonie/random_compat": "~1.0|~2.0|~9.99",
  8579. "php": ">=5.3.3"
  8580. },
  8581. "type": "library",
  8582. "extra": {
  8583. "branch-alias": {
  8584. "dev-master": "1.9-dev"
  8585. }
  8586. },
  8587. "autoload": {
  8588. "psr-4": {
  8589. "Symfony\\Polyfill\\Php70\\": ""
  8590. },
  8591. "files": [
  8592. "bootstrap.php"
  8593. ],
  8594. "classmap": [
  8595. "Resources/stubs"
  8596. ]
  8597. },
  8598. "notification-url": "https://packagist.org/downloads/",
  8599. "license": [
  8600. "MIT"
  8601. ],
  8602. "authors": [
  8603. {
  8604. "name": "Nicolas Grekas",
  8605. "email": "p@tchwork.com"
  8606. },
  8607. {
  8608. "name": "Symfony Community",
  8609. "homepage": "https://symfony.com/contributors"
  8610. }
  8611. ],
  8612. "description": "Symfony polyfill backporting some PHP 7.0+ features to lower PHP versions",
  8613. "homepage": "https://symfony.com",
  8614. "keywords": [
  8615. "compatibility",
  8616. "polyfill",
  8617. "portable",
  8618. "shim"
  8619. ],
  8620. "time": "2018-09-21T06:26:08+00:00"
  8621. },
  8622. {
  8623. "name": "symfony/process",
  8624. "version": "v3.4.17",
  8625. "source": {
  8626. "type": "git",
  8627. "url": "https://github.com/symfony/process.git",
  8628. "reference": "1dc2977afa7d70f90f3fefbcd84152813558910e"
  8629. },
  8630. "dist": {
  8631. "type": "zip",
  8632. "url": "https://api.github.com/repos/symfony/process/zipball/1dc2977afa7d70f90f3fefbcd84152813558910e",
  8633. "reference": "1dc2977afa7d70f90f3fefbcd84152813558910e",
  8634. "shasum": ""
  8635. },
  8636. "require": {
  8637. "php": "^5.5.9|>=7.0.8"
  8638. },
  8639. "type": "library",
  8640. "extra": {
  8641. "branch-alias": {
  8642. "dev-master": "3.4-dev"
  8643. }
  8644. },
  8645. "autoload": {
  8646. "psr-4": {
  8647. "Symfony\\Component\\Process\\": ""
  8648. },
  8649. "exclude-from-classmap": [
  8650. "/Tests/"
  8651. ]
  8652. },
  8653. "notification-url": "https://packagist.org/downloads/",
  8654. "license": [
  8655. "MIT"
  8656. ],
  8657. "authors": [
  8658. {
  8659. "name": "Fabien Potencier",
  8660. "email": "fabien@symfony.com"
  8661. },
  8662. {
  8663. "name": "Symfony Community",
  8664. "homepage": "https://symfony.com/contributors"
  8665. }
  8666. ],
  8667. "description": "Symfony Process Component",
  8668. "homepage": "https://symfony.com",
  8669. "time": "2018-10-02T12:28:39+00:00"
  8670. },
  8671. {
  8672. "name": "symfony/psr-http-message-bridge",
  8673. "version": "v1.1.0",
  8674. "source": {
  8675. "type": "git",
  8676. "url": "https://github.com/symfony/psr-http-message-bridge.git",
  8677. "reference": "53c15a6a7918e6c2ab16ae370ea607fb40cab196"
  8678. },
  8679. "dist": {
  8680. "type": "zip",
  8681. "url": "https://api.github.com/repos/symfony/psr-http-message-bridge/zipball/53c15a6a7918e6c2ab16ae370ea607fb40cab196",
  8682. "reference": "53c15a6a7918e6c2ab16ae370ea607fb40cab196",
  8683. "shasum": ""
  8684. },
  8685. "require": {
  8686. "php": "^5.3.3 || ^7.0",
  8687. "psr/http-message": "^1.0",
  8688. "symfony/http-foundation": "^2.3.42 || ^3.4 || ^4.0"
  8689. },
  8690. "require-dev": {
  8691. "symfony/phpunit-bridge": "^3.4 || 4.0"
  8692. },
  8693. "suggest": {
  8694. "psr/http-factory-implementation": "To use the PSR-17 factory",
  8695. "psr/http-message-implementation": "To use the HttpFoundation factory",
  8696. "zendframework/zend-diactoros": "To use the Zend Diactoros factory"
  8697. },
  8698. "type": "symfony-bridge",
  8699. "extra": {
  8700. "branch-alias": {
  8701. "dev-master": "1.1-dev"
  8702. }
  8703. },
  8704. "autoload": {
  8705. "psr-4": {
  8706. "Symfony\\Bridge\\PsrHttpMessage\\": ""
  8707. }
  8708. },
  8709. "notification-url": "https://packagist.org/downloads/",
  8710. "license": [
  8711. "MIT"
  8712. ],
  8713. "authors": [
  8714. {
  8715. "name": "Symfony Community",
  8716. "homepage": "http://symfony.com/contributors"
  8717. },
  8718. {
  8719. "name": "Fabien Potencier",
  8720. "email": "fabien@symfony.com"
  8721. }
  8722. ],
  8723. "description": "PSR HTTP message bridge",
  8724. "homepage": "http://symfony.com",
  8725. "keywords": [
  8726. "http",
  8727. "http-message",
  8728. "psr-7"
  8729. ],
  8730. "time": "2018-08-30T16:28:28+00:00"
  8731. },
  8732. {
  8733. "name": "symfony/routing",
  8734. "version": "v3.4.17",
  8735. "source": {
  8736. "type": "git",
  8737. "url": "https://github.com/symfony/routing.git",
  8738. "reference": "585f6e2d740393d546978769dd56e496a6233e0b"
  8739. },
  8740. "dist": {
  8741. "type": "zip",
  8742. "url": "https://api.github.com/repos/symfony/routing/zipball/585f6e2d740393d546978769dd56e496a6233e0b",
  8743. "reference": "585f6e2d740393d546978769dd56e496a6233e0b",
  8744. "shasum": ""
  8745. },
  8746. "require": {
  8747. "php": "^5.5.9|>=7.0.8"
  8748. },
  8749. "conflict": {
  8750. "symfony/config": "<3.3.1",
  8751. "symfony/dependency-injection": "<3.3",
  8752. "symfony/yaml": "<3.4"
  8753. },
  8754. "require-dev": {
  8755. "doctrine/annotations": "~1.0",
  8756. "psr/log": "~1.0",
  8757. "symfony/config": "^3.3.1|~4.0",
  8758. "symfony/dependency-injection": "~3.3|~4.0",
  8759. "symfony/expression-language": "~2.8|~3.0|~4.0",
  8760. "symfony/http-foundation": "~2.8|~3.0|~4.0",
  8761. "symfony/yaml": "~3.4|~4.0"
  8762. },
  8763. "suggest": {
  8764. "doctrine/annotations": "For using the annotation loader",
  8765. "symfony/config": "For using the all-in-one router or any loader",
  8766. "symfony/dependency-injection": "For loading routes from a service",
  8767. "symfony/expression-language": "For using expression matching",
  8768. "symfony/http-foundation": "For using a Symfony Request object",
  8769. "symfony/yaml": "For using the YAML loader"
  8770. },
  8771. "type": "library",
  8772. "extra": {
  8773. "branch-alias": {
  8774. "dev-master": "3.4-dev"
  8775. }
  8776. },
  8777. "autoload": {
  8778. "psr-4": {
  8779. "Symfony\\Component\\Routing\\": ""
  8780. },
  8781. "exclude-from-classmap": [
  8782. "/Tests/"
  8783. ]
  8784. },
  8785. "notification-url": "https://packagist.org/downloads/",
  8786. "license": [
  8787. "MIT"
  8788. ],
  8789. "authors": [
  8790. {
  8791. "name": "Fabien Potencier",
  8792. "email": "fabien@symfony.com"
  8793. },
  8794. {
  8795. "name": "Symfony Community",
  8796. "homepage": "https://symfony.com/contributors"
  8797. }
  8798. ],
  8799. "description": "Symfony Routing Component",
  8800. "homepage": "https://symfony.com",
  8801. "keywords": [
  8802. "router",
  8803. "routing",
  8804. "uri",
  8805. "url"
  8806. ],
  8807. "time": "2018-10-02T12:28:39+00:00"
  8808. },
  8809. {
  8810. "name": "symfony/serializer",
  8811. "version": "v3.4.17",
  8812. "source": {
  8813. "type": "git",
  8814. "url": "https://github.com/symfony/serializer.git",
  8815. "reference": "8bc00ef47a428bfebc4641f29d158e7c56137fcb"
  8816. },
  8817. "dist": {
  8818. "type": "zip",
  8819. "url": "https://api.github.com/repos/symfony/serializer/zipball/8bc00ef47a428bfebc4641f29d158e7c56137fcb",
  8820. "reference": "8bc00ef47a428bfebc4641f29d158e7c56137fcb",
  8821. "shasum": ""
  8822. },
  8823. "require": {
  8824. "php": "^5.5.9|>=7.0.8",
  8825. "symfony/polyfill-ctype": "~1.8"
  8826. },
  8827. "conflict": {
  8828. "phpdocumentor/type-resolver": "<0.2.1",
  8829. "symfony/dependency-injection": "<3.2",
  8830. "symfony/property-access": ">=3.0,<3.0.4|>=2.8,<2.8.4",
  8831. "symfony/property-info": "<3.1",
  8832. "symfony/yaml": "<3.4"
  8833. },
  8834. "require-dev": {
  8835. "doctrine/annotations": "~1.0",
  8836. "doctrine/cache": "~1.0",
  8837. "phpdocumentor/reflection-docblock": "^3.0|^4.0",
  8838. "symfony/cache": "~3.1|~4.0",
  8839. "symfony/config": "~2.8|~3.0|~4.0",
  8840. "symfony/dependency-injection": "~3.2|~4.0",
  8841. "symfony/http-foundation": "~2.8|~3.0|~4.0",
  8842. "symfony/property-access": "~2.8|~3.0|~4.0",
  8843. "symfony/property-info": "~3.1|~4.0",
  8844. "symfony/yaml": "~3.4|~4.0"
  8845. },
  8846. "suggest": {
  8847. "doctrine/annotations": "For using the annotation mapping. You will also need doctrine/cache.",
  8848. "doctrine/cache": "For using the default cached annotation reader and metadata cache.",
  8849. "psr/cache-implementation": "For using the metadata cache.",
  8850. "symfony/config": "For using the XML mapping loader.",
  8851. "symfony/http-foundation": "To use the DataUriNormalizer.",
  8852. "symfony/property-access": "For using the ObjectNormalizer.",
  8853. "symfony/property-info": "To deserialize relations.",
  8854. "symfony/yaml": "For using the default YAML mapping loader."
  8855. },
  8856. "type": "library",
  8857. "extra": {
  8858. "branch-alias": {
  8859. "dev-master": "3.4-dev"
  8860. }
  8861. },
  8862. "autoload": {
  8863. "psr-4": {
  8864. "Symfony\\Component\\Serializer\\": ""
  8865. },
  8866. "exclude-from-classmap": [
  8867. "/Tests/"
  8868. ]
  8869. },
  8870. "notification-url": "https://packagist.org/downloads/",
  8871. "license": [
  8872. "MIT"
  8873. ],
  8874. "authors": [
  8875. {
  8876. "name": "Fabien Potencier",
  8877. "email": "fabien@symfony.com"
  8878. },
  8879. {
  8880. "name": "Symfony Community",
  8881. "homepage": "https://symfony.com/contributors"
  8882. }
  8883. ],
  8884. "description": "Symfony Serializer Component",
  8885. "homepage": "https://symfony.com",
  8886. "time": "2018-10-02T12:28:39+00:00"
  8887. },
  8888. {
  8889. "name": "symfony/translation",
  8890. "version": "v3.4.17",
  8891. "source": {
  8892. "type": "git",
  8893. "url": "https://github.com/symfony/translation.git",
  8894. "reference": "94bc3a79008e6640defedf5e14eb3b4f20048352"
  8895. },
  8896. "dist": {
  8897. "type": "zip",
  8898. "url": "https://api.github.com/repos/symfony/translation/zipball/94bc3a79008e6640defedf5e14eb3b4f20048352",
  8899. "reference": "94bc3a79008e6640defedf5e14eb3b4f20048352",
  8900. "shasum": ""
  8901. },
  8902. "require": {
  8903. "php": "^5.5.9|>=7.0.8",
  8904. "symfony/polyfill-mbstring": "~1.0"
  8905. },
  8906. "conflict": {
  8907. "symfony/config": "<2.8",
  8908. "symfony/dependency-injection": "<3.4",
  8909. "symfony/yaml": "<3.4"
  8910. },
  8911. "require-dev": {
  8912. "psr/log": "~1.0",
  8913. "symfony/config": "~2.8|~3.0|~4.0",
  8914. "symfony/dependency-injection": "~3.4|~4.0",
  8915. "symfony/finder": "~2.8|~3.0|~4.0",
  8916. "symfony/intl": "^2.8.18|^3.2.5|~4.0",
  8917. "symfony/yaml": "~3.4|~4.0"
  8918. },
  8919. "suggest": {
  8920. "psr/log-implementation": "To use logging capability in translator",
  8921. "symfony/config": "",
  8922. "symfony/yaml": ""
  8923. },
  8924. "type": "library",
  8925. "extra": {
  8926. "branch-alias": {
  8927. "dev-master": "3.4-dev"
  8928. }
  8929. },
  8930. "autoload": {
  8931. "psr-4": {
  8932. "Symfony\\Component\\Translation\\": ""
  8933. },
  8934. "exclude-from-classmap": [
  8935. "/Tests/"
  8936. ]
  8937. },
  8938. "notification-url": "https://packagist.org/downloads/",
  8939. "license": [
  8940. "MIT"
  8941. ],
  8942. "authors": [
  8943. {
  8944. "name": "Fabien Potencier",
  8945. "email": "fabien@symfony.com"
  8946. },
  8947. {
  8948. "name": "Symfony Community",
  8949. "homepage": "https://symfony.com/contributors"
  8950. }
  8951. ],
  8952. "description": "Symfony Translation Component",
  8953. "homepage": "https://symfony.com",
  8954. "time": "2018-10-02T16:33:53+00:00"
  8955. },
  8956. {
  8957. "name": "symfony/validator",
  8958. "version": "v3.4.17",
  8959. "source": {
  8960. "type": "git",
  8961. "url": "https://github.com/symfony/validator.git",
  8962. "reference": "9f8dbf0dceb03815c3160a279bf8cf4f8018a1c5"
  8963. },
  8964. "dist": {
  8965. "type": "zip",
  8966. "url": "https://api.github.com/repos/symfony/validator/zipball/9f8dbf0dceb03815c3160a279bf8cf4f8018a1c5",
  8967. "reference": "9f8dbf0dceb03815c3160a279bf8cf4f8018a1c5",
  8968. "shasum": ""
  8969. },
  8970. "require": {
  8971. "php": "^5.5.9|>=7.0.8",
  8972. "symfony/polyfill-ctype": "~1.8",
  8973. "symfony/polyfill-mbstring": "~1.0",
  8974. "symfony/translation": "~2.8|~3.0|~4.0"
  8975. },
  8976. "conflict": {
  8977. "phpunit/phpunit": "<4.8.35|<5.4.3,>=5.0",
  8978. "symfony/dependency-injection": "<3.3",
  8979. "symfony/http-kernel": "<3.3.5",
  8980. "symfony/yaml": "<3.4"
  8981. },
  8982. "require-dev": {
  8983. "doctrine/annotations": "~1.0",
  8984. "doctrine/cache": "~1.0",
  8985. "egulias/email-validator": "^1.2.8|~2.0",
  8986. "symfony/cache": "~3.1|~4.0",
  8987. "symfony/config": "~2.8|~3.0|~4.0",
  8988. "symfony/dependency-injection": "~3.3|~4.0",
  8989. "symfony/expression-language": "~2.8|~3.0|~4.0",
  8990. "symfony/http-foundation": "~2.8|~3.0|~4.0",
  8991. "symfony/http-kernel": "^3.3.5|~4.0",
  8992. "symfony/intl": "^2.8.18|^3.2.5|~4.0",
  8993. "symfony/property-access": "~2.8|~3.0|~4.0",
  8994. "symfony/var-dumper": "~3.3|~4.0",
  8995. "symfony/yaml": "~3.4|~4.0"
  8996. },
  8997. "suggest": {
  8998. "doctrine/annotations": "For using the annotation mapping. You will also need doctrine/cache.",
  8999. "doctrine/cache": "For using the default cached annotation reader and metadata cache.",
  9000. "egulias/email-validator": "Strict (RFC compliant) email validation",
  9001. "psr/cache-implementation": "For using the metadata cache.",
  9002. "symfony/config": "",
  9003. "symfony/expression-language": "For using the Expression validator",
  9004. "symfony/http-foundation": "",
  9005. "symfony/intl": "",
  9006. "symfony/property-access": "For accessing properties within comparison constraints",
  9007. "symfony/yaml": ""
  9008. },
  9009. "type": "library",
  9010. "extra": {
  9011. "branch-alias": {
  9012. "dev-master": "3.4-dev"
  9013. }
  9014. },
  9015. "autoload": {
  9016. "psr-4": {
  9017. "Symfony\\Component\\Validator\\": ""
  9018. },
  9019. "exclude-from-classmap": [
  9020. "/Tests/"
  9021. ]
  9022. },
  9023. "notification-url": "https://packagist.org/downloads/",
  9024. "license": [
  9025. "MIT"
  9026. ],
  9027. "authors": [
  9028. {
  9029. "name": "Fabien Potencier",
  9030. "email": "fabien@symfony.com"
  9031. },
  9032. {
  9033. "name": "Symfony Community",
  9034. "homepage": "https://symfony.com/contributors"
  9035. }
  9036. ],
  9037. "description": "Symfony Validator Component",
  9038. "homepage": "https://symfony.com",
  9039. "time": "2018-10-02T16:33:53+00:00"
  9040. },
  9041. {
  9042. "name": "symfony/var-dumper",
  9043. "version": "v3.4.17",
  9044. "source": {
  9045. "type": "git",
  9046. "url": "https://github.com/symfony/var-dumper.git",
  9047. "reference": "ff8ac19e97e5c7c3979236b584719a1190f84181"
  9048. },
  9049. "dist": {
  9050. "type": "zip",
  9051. "url": "https://api.github.com/repos/symfony/var-dumper/zipball/ff8ac19e97e5c7c3979236b584719a1190f84181",
  9052. "reference": "ff8ac19e97e5c7c3979236b584719a1190f84181",
  9053. "shasum": ""
  9054. },
  9055. "require": {
  9056. "php": "^5.5.9|>=7.0.8",
  9057. "symfony/polyfill-mbstring": "~1.0"
  9058. },
  9059. "conflict": {
  9060. "phpunit/phpunit": "<4.8.35|<5.4.3,>=5.0"
  9061. },
  9062. "require-dev": {
  9063. "ext-iconv": "*",
  9064. "twig/twig": "~1.34|~2.4"
  9065. },
  9066. "suggest": {
  9067. "ext-iconv": "To convert non-UTF-8 strings to UTF-8 (or symfony/polyfill-iconv in case ext-iconv cannot be used).",
  9068. "ext-intl": "To show region name in time zone dump",
  9069. "ext-symfony_debug": ""
  9070. },
  9071. "type": "library",
  9072. "extra": {
  9073. "branch-alias": {
  9074. "dev-master": "3.4-dev"
  9075. }
  9076. },
  9077. "autoload": {
  9078. "files": [
  9079. "Resources/functions/dump.php"
  9080. ],
  9081. "psr-4": {
  9082. "Symfony\\Component\\VarDumper\\": ""
  9083. },
  9084. "exclude-from-classmap": [
  9085. "/Tests/"
  9086. ]
  9087. },
  9088. "notification-url": "https://packagist.org/downloads/",
  9089. "license": [
  9090. "MIT"
  9091. ],
  9092. "authors": [
  9093. {
  9094. "name": "Nicolas Grekas",
  9095. "email": "p@tchwork.com"
  9096. },
  9097. {
  9098. "name": "Symfony Community",
  9099. "homepage": "https://symfony.com/contributors"
  9100. }
  9101. ],
  9102. "description": "Symfony mechanism for exploring and dumping PHP variables",
  9103. "homepage": "https://symfony.com",
  9104. "keywords": [
  9105. "debug",
  9106. "dump"
  9107. ],
  9108. "time": "2018-10-02T16:33:53+00:00"
  9109. },
  9110. {
  9111. "name": "symfony/yaml",
  9112. "version": "v3.4.17",
  9113. "source": {
  9114. "type": "git",
  9115. "url": "https://github.com/symfony/yaml.git",
  9116. "reference": "640b6c27fed4066d64b64d5903a86043f4a4de7f"
  9117. },
  9118. "dist": {
  9119. "type": "zip",
  9120. "url": "https://api.github.com/repos/symfony/yaml/zipball/640b6c27fed4066d64b64d5903a86043f4a4de7f",
  9121. "reference": "640b6c27fed4066d64b64d5903a86043f4a4de7f",
  9122. "shasum": ""
  9123. },
  9124. "require": {
  9125. "php": "^5.5.9|>=7.0.8",
  9126. "symfony/polyfill-ctype": "~1.8"
  9127. },
  9128. "conflict": {
  9129. "symfony/console": "<3.4"
  9130. },
  9131. "require-dev": {
  9132. "symfony/console": "~3.4|~4.0"
  9133. },
  9134. "suggest": {
  9135. "symfony/console": "For validating YAML files using the lint command"
  9136. },
  9137. "type": "library",
  9138. "extra": {
  9139. "branch-alias": {
  9140. "dev-master": "3.4-dev"
  9141. }
  9142. },
  9143. "autoload": {
  9144. "psr-4": {
  9145. "Symfony\\Component\\Yaml\\": ""
  9146. },
  9147. "exclude-from-classmap": [
  9148. "/Tests/"
  9149. ]
  9150. },
  9151. "notification-url": "https://packagist.org/downloads/",
  9152. "license": [
  9153. "MIT"
  9154. ],
  9155. "authors": [
  9156. {
  9157. "name": "Fabien Potencier",
  9158. "email": "fabien@symfony.com"
  9159. },
  9160. {
  9161. "name": "Symfony Community",
  9162. "homepage": "https://symfony.com/contributors"
  9163. }
  9164. ],
  9165. "description": "Symfony Yaml Component",
  9166. "homepage": "https://symfony.com",
  9167. "time": "2018-10-02T16:33:53+00:00"
  9168. },
  9169. {
  9170. "name": "twig/twig",
  9171. "version": "v1.35.4",
  9172. "source": {
  9173. "type": "git",
  9174. "url": "https://github.com/twigphp/Twig.git",
  9175. "reference": "7e081e98378a1e78c29cc9eba4aefa5d78a05d2a"
  9176. },
  9177. "dist": {
  9178. "type": "zip",
  9179. "url": "https://api.github.com/repos/twigphp/Twig/zipball/7e081e98378a1e78c29cc9eba4aefa5d78a05d2a",
  9180. "reference": "7e081e98378a1e78c29cc9eba4aefa5d78a05d2a",
  9181. "shasum": ""
  9182. },
  9183. "require": {
  9184. "php": ">=5.3.3",
  9185. "symfony/polyfill-ctype": "^1.8"
  9186. },
  9187. "require-dev": {
  9188. "psr/container": "^1.0",
  9189. "symfony/debug": "^2.7",
  9190. "symfony/phpunit-bridge": "^3.3"
  9191. },
  9192. "type": "library",
  9193. "extra": {
  9194. "branch-alias": {
  9195. "dev-master": "1.35-dev"
  9196. }
  9197. },
  9198. "autoload": {
  9199. "psr-0": {
  9200. "Twig_": "lib/"
  9201. },
  9202. "psr-4": {
  9203. "Twig\\": "src/"
  9204. }
  9205. },
  9206. "notification-url": "https://packagist.org/downloads/",
  9207. "license": [
  9208. "BSD-3-Clause"
  9209. ],
  9210. "authors": [
  9211. {
  9212. "name": "Fabien Potencier",
  9213. "email": "fabien@symfony.com",
  9214. "homepage": "http://fabien.potencier.org",
  9215. "role": "Lead Developer"
  9216. },
  9217. {
  9218. "name": "Armin Ronacher",
  9219. "email": "armin.ronacher@active-4.com",
  9220. "role": "Project Founder"
  9221. },
  9222. {
  9223. "name": "Twig Team",
  9224. "homepage": "https://twig.symfony.com/contributors",
  9225. "role": "Contributors"
  9226. }
  9227. ],
  9228. "description": "Twig, the flexible, fast, and secure template language for PHP",
  9229. "homepage": "https://twig.symfony.com",
  9230. "keywords": [
  9231. "templating"
  9232. ],
  9233. "time": "2018-07-13T07:12:17+00:00"
  9234. },
  9235. {
  9236. "name": "webflo/drupal-finder",
  9237. "version": "1.1.0",
  9238. "source": {
  9239. "type": "git",
  9240. "url": "https://github.com/webflo/drupal-finder.git",
  9241. "reference": "8a7886c575d6eaa67a425dceccc84e735c0b9637"
  9242. },
  9243. "dist": {
  9244. "type": "zip",
  9245. "url": "https://api.github.com/repos/webflo/drupal-finder/zipball/8a7886c575d6eaa67a425dceccc84e735c0b9637",
  9246. "reference": "8a7886c575d6eaa67a425dceccc84e735c0b9637",
  9247. "shasum": ""
  9248. },
  9249. "require-dev": {
  9250. "mikey179/vfsstream": "^1.6",
  9251. "phpunit/phpunit": "^4.8"
  9252. },
  9253. "type": "library",
  9254. "autoload": {
  9255. "classmap": [
  9256. "src/DrupalFinder.php"
  9257. ]
  9258. },
  9259. "notification-url": "https://packagist.org/downloads/",
  9260. "license": [
  9261. "GPL-2.0+"
  9262. ],
  9263. "authors": [
  9264. {
  9265. "name": "Florian Weber",
  9266. "email": "florian@webflo.org"
  9267. }
  9268. ],
  9269. "description": "Helper class to locate a Drupal installation from a given path.",
  9270. "time": "2017-10-24T08:12:11+00:00"
  9271. },
  9272. {
  9273. "name": "webmozart/assert",
  9274. "version": "1.3.0",
  9275. "source": {
  9276. "type": "git",
  9277. "url": "https://github.com/webmozart/assert.git",
  9278. "reference": "0df1908962e7a3071564e857d86874dad1ef204a"
  9279. },
  9280. "dist": {
  9281. "type": "zip",
  9282. "url": "https://api.github.com/repos/webmozart/assert/zipball/0df1908962e7a3071564e857d86874dad1ef204a",
  9283. "reference": "0df1908962e7a3071564e857d86874dad1ef204a",
  9284. "shasum": ""
  9285. },
  9286. "require": {
  9287. "php": "^5.3.3 || ^7.0"
  9288. },
  9289. "require-dev": {
  9290. "phpunit/phpunit": "^4.6",
  9291. "sebastian/version": "^1.0.1"
  9292. },
  9293. "type": "library",
  9294. "extra": {
  9295. "branch-alias": {
  9296. "dev-master": "1.3-dev"
  9297. }
  9298. },
  9299. "autoload": {
  9300. "psr-4": {
  9301. "Webmozart\\Assert\\": "src/"
  9302. }
  9303. },
  9304. "notification-url": "https://packagist.org/downloads/",
  9305. "license": [
  9306. "MIT"
  9307. ],
  9308. "authors": [
  9309. {
  9310. "name": "Bernhard Schussek",
  9311. "email": "bschussek@gmail.com"
  9312. }
  9313. ],
  9314. "description": "Assertions to validate method input/output with nice error messages.",
  9315. "keywords": [
  9316. "assert",
  9317. "check",
  9318. "validate"
  9319. ],
  9320. "time": "2018-01-29T19:49:41+00:00"
  9321. },
  9322. {
  9323. "name": "webmozart/path-util",
  9324. "version": "2.3.0",
  9325. "source": {
  9326. "type": "git",
  9327. "url": "https://github.com/webmozart/path-util.git",
  9328. "reference": "d939f7edc24c9a1bb9c0dee5cb05d8e859490725"
  9329. },
  9330. "dist": {
  9331. "type": "zip",
  9332. "url": "https://api.github.com/repos/webmozart/path-util/zipball/d939f7edc24c9a1bb9c0dee5cb05d8e859490725",
  9333. "reference": "d939f7edc24c9a1bb9c0dee5cb05d8e859490725",
  9334. "shasum": ""
  9335. },
  9336. "require": {
  9337. "php": ">=5.3.3",
  9338. "webmozart/assert": "~1.0"
  9339. },
  9340. "require-dev": {
  9341. "phpunit/phpunit": "^4.6",
  9342. "sebastian/version": "^1.0.1"
  9343. },
  9344. "type": "library",
  9345. "extra": {
  9346. "branch-alias": {
  9347. "dev-master": "2.3-dev"
  9348. }
  9349. },
  9350. "autoload": {
  9351. "psr-4": {
  9352. "Webmozart\\PathUtil\\": "src/"
  9353. }
  9354. },
  9355. "notification-url": "https://packagist.org/downloads/",
  9356. "license": [
  9357. "MIT"
  9358. ],
  9359. "authors": [
  9360. {
  9361. "name": "Bernhard Schussek",
  9362. "email": "bschussek@gmail.com"
  9363. }
  9364. ],
  9365. "description": "A robust cross-platform utility for normalizing, comparing and modifying file paths.",
  9366. "time": "2015-12-17T08:42:14+00:00"
  9367. },
  9368. {
  9369. "name": "wikimedia/composer-merge-plugin",
  9370. "version": "v1.4.1",
  9371. "source": {
  9372. "type": "git",
  9373. "url": "https://github.com/wikimedia/composer-merge-plugin.git",
  9374. "reference": "81c6ac72a24a67383419c7eb9aa2b3437f2ab100"
  9375. },
  9376. "dist": {
  9377. "type": "zip",
  9378. "url": "https://api.github.com/repos/wikimedia/composer-merge-plugin/zipball/81c6ac72a24a67383419c7eb9aa2b3437f2ab100",
  9379. "reference": "81c6ac72a24a67383419c7eb9aa2b3437f2ab100",
  9380. "shasum": ""
  9381. },
  9382. "require": {
  9383. "composer-plugin-api": "^1.0",
  9384. "php": ">=5.3.2"
  9385. },
  9386. "require-dev": {
  9387. "composer/composer": "~1.0.0",
  9388. "jakub-onderka/php-parallel-lint": "~0.8",
  9389. "phpunit/phpunit": "~4.8|~5.0",
  9390. "squizlabs/php_codesniffer": "~2.1.0"
  9391. },
  9392. "type": "composer-plugin",
  9393. "extra": {
  9394. "branch-alias": {
  9395. "dev-master": "1.3.x-dev"
  9396. },
  9397. "class": "Wikimedia\\Composer\\MergePlugin"
  9398. },
  9399. "autoload": {
  9400. "psr-4": {
  9401. "Wikimedia\\Composer\\": "src/"
  9402. }
  9403. },
  9404. "notification-url": "https://packagist.org/downloads/",
  9405. "license": [
  9406. "MIT"
  9407. ],
  9408. "authors": [
  9409. {
  9410. "name": "Bryan Davis",
  9411. "email": "bd808@wikimedia.org"
  9412. }
  9413. ],
  9414. "description": "Composer plugin to merge multiple composer.json files",
  9415. "time": "2017-04-25T02:31:25+00:00"
  9416. },
  9417. {
  9418. "name": "zendframework/zend-diactoros",
  9419. "version": "1.8.6",
  9420. "source": {
  9421. "type": "git",
  9422. "url": "https://github.com/zendframework/zend-diactoros.git",
  9423. "reference": "20da13beba0dde8fb648be3cc19765732790f46e"
  9424. },
  9425. "dist": {
  9426. "type": "zip",
  9427. "url": "https://api.github.com/repos/zendframework/zend-diactoros/zipball/20da13beba0dde8fb648be3cc19765732790f46e",
  9428. "reference": "20da13beba0dde8fb648be3cc19765732790f46e",
  9429. "shasum": ""
  9430. },
  9431. "require": {
  9432. "php": "^5.6 || ^7.0",
  9433. "psr/http-message": "^1.0"
  9434. },
  9435. "provide": {
  9436. "psr/http-message-implementation": "1.0"
  9437. },
  9438. "require-dev": {
  9439. "ext-dom": "*",
  9440. "ext-libxml": "*",
  9441. "php-http/psr7-integration-tests": "dev-master",
  9442. "phpunit/phpunit": "^5.7.16 || ^6.0.8 || ^7.2.7",
  9443. "zendframework/zend-coding-standard": "~1.0"
  9444. },
  9445. "type": "library",
  9446. "extra": {
  9447. "branch-alias": {
  9448. "dev-master": "1.8.x-dev",
  9449. "dev-develop": "1.9.x-dev",
  9450. "dev-release-2.0": "2.0.x-dev"
  9451. }
  9452. },
  9453. "autoload": {
  9454. "files": [
  9455. "src/functions/create_uploaded_file.php",
  9456. "src/functions/marshal_headers_from_sapi.php",
  9457. "src/functions/marshal_method_from_sapi.php",
  9458. "src/functions/marshal_protocol_version_from_sapi.php",
  9459. "src/functions/marshal_uri_from_sapi.php",
  9460. "src/functions/normalize_server.php",
  9461. "src/functions/normalize_uploaded_files.php",
  9462. "src/functions/parse_cookie_header.php"
  9463. ],
  9464. "psr-4": {
  9465. "Zend\\Diactoros\\": "src/"
  9466. }
  9467. },
  9468. "notification-url": "https://packagist.org/downloads/",
  9469. "license": [
  9470. "BSD-2-Clause"
  9471. ],
  9472. "description": "PSR HTTP Message implementations",
  9473. "homepage": "https://github.com/zendframework/zend-diactoros",
  9474. "keywords": [
  9475. "http",
  9476. "psr",
  9477. "psr-7"
  9478. ],
  9479. "time": "2018-09-05T19:29:37+00:00"
  9480. },
  9481. {
  9482. "name": "zendframework/zend-escaper",
  9483. "version": "2.6.0",
  9484. "source": {
  9485. "type": "git",
  9486. "url": "https://github.com/zendframework/zend-escaper.git",
  9487. "reference": "31d8aafae982f9568287cb4dce987e6aff8fd074"
  9488. },
  9489. "dist": {
  9490. "type": "zip",
  9491. "url": "https://api.github.com/repos/zendframework/zend-escaper/zipball/31d8aafae982f9568287cb4dce987e6aff8fd074",
  9492. "reference": "31d8aafae982f9568287cb4dce987e6aff8fd074",
  9493. "shasum": ""
  9494. },
  9495. "require": {
  9496. "php": "^5.6 || ^7.0"
  9497. },
  9498. "require-dev": {
  9499. "phpunit/phpunit": "^5.7.27 || ^6.5.8 || ^7.1.2",
  9500. "zendframework/zend-coding-standard": "~1.0.0"
  9501. },
  9502. "type": "library",
  9503. "extra": {
  9504. "branch-alias": {
  9505. "dev-master": "2.6.x-dev",
  9506. "dev-develop": "2.7.x-dev"
  9507. }
  9508. },
  9509. "autoload": {
  9510. "psr-4": {
  9511. "Zend\\Escaper\\": "src/"
  9512. }
  9513. },
  9514. "notification-url": "https://packagist.org/downloads/",
  9515. "license": [
  9516. "BSD-3-Clause"
  9517. ],
  9518. "description": "Securely and safely escape HTML, HTML attributes, JavaScript, CSS, and URLs",
  9519. "keywords": [
  9520. "ZendFramework",
  9521. "escaper",
  9522. "zf"
  9523. ],
  9524. "time": "2018-04-25T15:48:53+00:00"
  9525. },
  9526. {
  9527. "name": "zendframework/zend-feed",
  9528. "version": "2.10.3",
  9529. "source": {
  9530. "type": "git",
  9531. "url": "https://github.com/zendframework/zend-feed.git",
  9532. "reference": "6641f4cf3f4586c63f83fd70b6d19966025c8888"
  9533. },
  9534. "dist": {
  9535. "type": "zip",
  9536. "url": "https://api.github.com/repos/zendframework/zend-feed/zipball/6641f4cf3f4586c63f83fd70b6d19966025c8888",
  9537. "reference": "6641f4cf3f4586c63f83fd70b6d19966025c8888",
  9538. "shasum": ""
  9539. },
  9540. "require": {
  9541. "php": "^5.6 || ^7.0",
  9542. "zendframework/zend-escaper": "^2.5.2",
  9543. "zendframework/zend-stdlib": "^2.7.7 || ^3.1"
  9544. },
  9545. "require-dev": {
  9546. "phpunit/phpunit": "^5.7.23 || ^6.4.3",
  9547. "psr/http-message": "^1.0.1",
  9548. "zendframework/zend-cache": "^2.7.2",
  9549. "zendframework/zend-coding-standard": "~1.0.0",
  9550. "zendframework/zend-db": "^2.8.2",
  9551. "zendframework/zend-http": "^2.7",
  9552. "zendframework/zend-servicemanager": "^2.7.8 || ^3.3",
  9553. "zendframework/zend-validator": "^2.10.1"
  9554. },
  9555. "suggest": {
  9556. "psr/http-message": "PSR-7 ^1.0.1, if you wish to use Zend\\Feed\\Reader\\Http\\Psr7ResponseDecorator",
  9557. "zendframework/zend-cache": "Zend\\Cache component, for optionally caching feeds between requests",
  9558. "zendframework/zend-db": "Zend\\Db component, for use with PubSubHubbub",
  9559. "zendframework/zend-http": "Zend\\Http for PubSubHubbub, and optionally for use with Zend\\Feed\\Reader",
  9560. "zendframework/zend-servicemanager": "Zend\\ServiceManager component, for easily extending ExtensionManager implementations",
  9561. "zendframework/zend-validator": "Zend\\Validator component, for validating email addresses used in Atom feeds and entries when using the Writer subcomponent"
  9562. },
  9563. "type": "library",
  9564. "extra": {
  9565. "branch-alias": {
  9566. "dev-master": "2.10.x-dev",
  9567. "dev-develop": "2.11.x-dev"
  9568. }
  9569. },
  9570. "autoload": {
  9571. "psr-4": {
  9572. "Zend\\Feed\\": "src/"
  9573. }
  9574. },
  9575. "notification-url": "https://packagist.org/downloads/",
  9576. "license": [
  9577. "BSD-3-Clause"
  9578. ],
  9579. "description": "provides functionality for consuming RSS and Atom feeds",
  9580. "keywords": [
  9581. "ZendFramework",
  9582. "feed",
  9583. "zf"
  9584. ],
  9585. "time": "2018-08-01T13:53:20+00:00"
  9586. },
  9587. {
  9588. "name": "zendframework/zend-stdlib",
  9589. "version": "3.2.1",
  9590. "source": {
  9591. "type": "git",
  9592. "url": "https://github.com/zendframework/zend-stdlib.git",
  9593. "reference": "66536006722aff9e62d1b331025089b7ec71c065"
  9594. },
  9595. "dist": {
  9596. "type": "zip",
  9597. "url": "https://api.github.com/repos/zendframework/zend-stdlib/zipball/66536006722aff9e62d1b331025089b7ec71c065",
  9598. "reference": "66536006722aff9e62d1b331025089b7ec71c065",
  9599. "shasum": ""
  9600. },
  9601. "require": {
  9602. "php": "^5.6 || ^7.0"
  9603. },
  9604. "require-dev": {
  9605. "phpbench/phpbench": "^0.13",
  9606. "phpunit/phpunit": "^5.7.27 || ^6.5.8 || ^7.1.2",
  9607. "zendframework/zend-coding-standard": "~1.0.0"
  9608. },
  9609. "type": "library",
  9610. "extra": {
  9611. "branch-alias": {
  9612. "dev-master": "3.2.x-dev",
  9613. "dev-develop": "3.3.x-dev"
  9614. }
  9615. },
  9616. "autoload": {
  9617. "psr-4": {
  9618. "Zend\\Stdlib\\": "src/"
  9619. }
  9620. },
  9621. "notification-url": "https://packagist.org/downloads/",
  9622. "license": [
  9623. "BSD-3-Clause"
  9624. ],
  9625. "description": "SPL extensions, array utilities, error handlers, and more",
  9626. "keywords": [
  9627. "ZendFramework",
  9628. "stdlib",
  9629. "zf"
  9630. ],
  9631. "time": "2018-08-28T21:34:05+00:00"
  9632. }
  9633. ],
  9634. "packages-dev": [
  9635. {
  9636. "name": "behat/mink",
  9637. "version": "dev-master",
  9638. "source": {
  9639. "type": "git",
  9640. "url": "https://github.com/minkphp/Mink.git",
  9641. "reference": "d5ee350c40baff5f331a05ebdbe1927345c9ac8b"
  9642. },
  9643. "dist": {
  9644. "type": "zip",
  9645. "url": "https://api.github.com/repos/minkphp/Mink/zipball/d5ee350c40baff5f331a05ebdbe1927345c9ac8b",
  9646. "reference": "d5ee350c40baff5f331a05ebdbe1927345c9ac8b",
  9647. "shasum": ""
  9648. },
  9649. "require": {
  9650. "php": ">=5.3.1",
  9651. "symfony/css-selector": "^2.7|^3.0|^4.0"
  9652. },
  9653. "require-dev": {
  9654. "symfony/phpunit-bridge": "^3.3|^4.0"
  9655. },
  9656. "suggest": {
  9657. "behat/mink-browserkit-driver": "extremely fast headless driver for Symfony\\Kernel-based apps (Sf2, Silex)",
  9658. "behat/mink-goutte-driver": "fast headless driver for any app without JS emulation",
  9659. "behat/mink-selenium2-driver": "slow, but JS-enabled driver for any app (requires Selenium2)",
  9660. "behat/mink-zombie-driver": "fast and JS-enabled headless driver for any app (requires node.js)",
  9661. "dmore/chrome-mink-driver": "fast and JS-enabled driver for any app (requires chromium or google chrome)"
  9662. },
  9663. "type": "library",
  9664. "extra": {
  9665. "branch-alias": {
  9666. "dev-master": "1.7.x-dev"
  9667. }
  9668. },
  9669. "autoload": {
  9670. "psr-4": {
  9671. "Behat\\Mink\\": "src/"
  9672. }
  9673. },
  9674. "notification-url": "https://packagist.org/downloads/",
  9675. "license": [
  9676. "MIT"
  9677. ],
  9678. "authors": [
  9679. {
  9680. "name": "Konstantin Kudryashov",
  9681. "email": "ever.zet@gmail.com",
  9682. "homepage": "http://everzet.com"
  9683. }
  9684. ],
  9685. "description": "Browser controller/emulator abstraction for PHP",
  9686. "homepage": "http://mink.behat.org/",
  9687. "keywords": [
  9688. "browser",
  9689. "testing",
  9690. "web"
  9691. ],
  9692. "time": "2018-06-24T20:08:51+00:00"
  9693. },
  9694. {
  9695. "name": "behat/mink-browserkit-driver",
  9696. "version": "1.3.3",
  9697. "source": {
  9698. "type": "git",
  9699. "url": "https://github.com/minkphp/MinkBrowserKitDriver.git",
  9700. "reference": "1b9a7ce903cfdaaec5fb32bfdbb26118343662eb"
  9701. },
  9702. "dist": {
  9703. "type": "zip",
  9704. "url": "https://api.github.com/repos/minkphp/MinkBrowserKitDriver/zipball/1b9a7ce903cfdaaec5fb32bfdbb26118343662eb",
  9705. "reference": "1b9a7ce903cfdaaec5fb32bfdbb26118343662eb",
  9706. "shasum": ""
  9707. },
  9708. "require": {
  9709. "behat/mink": "^1.7.1@dev",
  9710. "php": ">=5.3.6",
  9711. "symfony/browser-kit": "~2.3|~3.0|~4.0",
  9712. "symfony/dom-crawler": "~2.3|~3.0|~4.0"
  9713. },
  9714. "require-dev": {
  9715. "mink/driver-testsuite": "dev-master",
  9716. "symfony/http-kernel": "~2.3|~3.0|~4.0"
  9717. },
  9718. "type": "mink-driver",
  9719. "extra": {
  9720. "branch-alias": {
  9721. "dev-master": "1.3.x-dev"
  9722. }
  9723. },
  9724. "autoload": {
  9725. "psr-4": {
  9726. "Behat\\Mink\\Driver\\": "src/"
  9727. }
  9728. },
  9729. "notification-url": "https://packagist.org/downloads/",
  9730. "license": [
  9731. "MIT"
  9732. ],
  9733. "authors": [
  9734. {
  9735. "name": "Konstantin Kudryashov",
  9736. "email": "ever.zet@gmail.com",
  9737. "homepage": "http://everzet.com"
  9738. }
  9739. ],
  9740. "description": "Symfony2 BrowserKit driver for Mink framework",
  9741. "homepage": "http://mink.behat.org/",
  9742. "keywords": [
  9743. "Mink",
  9744. "Symfony2",
  9745. "browser",
  9746. "testing"
  9747. ],
  9748. "time": "2018-05-02T09:25:31+00:00"
  9749. },
  9750. {
  9751. "name": "behat/mink-goutte-driver",
  9752. "version": "v1.2.1",
  9753. "source": {
  9754. "type": "git",
  9755. "url": "https://github.com/minkphp/MinkGoutteDriver.git",
  9756. "reference": "8b9ad6d2d95bc70b840d15323365f52fcdaea6ca"
  9757. },
  9758. "dist": {
  9759. "type": "zip",
  9760. "url": "https://api.github.com/repos/minkphp/MinkGoutteDriver/zipball/8b9ad6d2d95bc70b840d15323365f52fcdaea6ca",
  9761. "reference": "8b9ad6d2d95bc70b840d15323365f52fcdaea6ca",
  9762. "shasum": ""
  9763. },
  9764. "require": {
  9765. "behat/mink": "~1.6@dev",
  9766. "behat/mink-browserkit-driver": "~1.2@dev",
  9767. "fabpot/goutte": "~1.0.4|~2.0|~3.1",
  9768. "php": ">=5.3.1"
  9769. },
  9770. "require-dev": {
  9771. "symfony/phpunit-bridge": "~2.7|~3.0"
  9772. },
  9773. "type": "mink-driver",
  9774. "extra": {
  9775. "branch-alias": {
  9776. "dev-master": "1.2.x-dev"
  9777. }
  9778. },
  9779. "autoload": {
  9780. "psr-4": {
  9781. "Behat\\Mink\\Driver\\": "src/"
  9782. }
  9783. },
  9784. "notification-url": "https://packagist.org/downloads/",
  9785. "license": [
  9786. "MIT"
  9787. ],
  9788. "authors": [
  9789. {
  9790. "name": "Konstantin Kudryashov",
  9791. "email": "ever.zet@gmail.com",
  9792. "homepage": "http://everzet.com"
  9793. }
  9794. ],
  9795. "description": "Goutte driver for Mink framework",
  9796. "homepage": "http://mink.behat.org/",
  9797. "keywords": [
  9798. "browser",
  9799. "goutte",
  9800. "headless",
  9801. "testing"
  9802. ],
  9803. "time": "2016-03-05T09:04:22+00:00"
  9804. },
  9805. {
  9806. "name": "behat/mink-selenium2-driver",
  9807. "version": "dev-master",
  9808. "source": {
  9809. "type": "git",
  9810. "url": "https://github.com/minkphp/MinkSelenium2Driver.git",
  9811. "reference": "8684ee4e634db7abda9039ea53545f86fc1e105a"
  9812. },
  9813. "dist": {
  9814. "type": "zip",
  9815. "url": "https://api.github.com/repos/minkphp/MinkSelenium2Driver/zipball/8684ee4e634db7abda9039ea53545f86fc1e105a",
  9816. "reference": "8684ee4e634db7abda9039ea53545f86fc1e105a",
  9817. "shasum": ""
  9818. },
  9819. "require": {
  9820. "behat/mink": "~1.7@dev",
  9821. "instaclick/php-webdriver": "~1.1",
  9822. "php": ">=5.3.1"
  9823. },
  9824. "require-dev": {
  9825. "mink/driver-testsuite": "dev-master"
  9826. },
  9827. "type": "mink-driver",
  9828. "extra": {
  9829. "branch-alias": {
  9830. "dev-master": "1.3.x-dev"
  9831. }
  9832. },
  9833. "autoload": {
  9834. "psr-4": {
  9835. "Behat\\Mink\\Driver\\": "src/"
  9836. }
  9837. },
  9838. "notification-url": "https://packagist.org/downloads/",
  9839. "license": [
  9840. "MIT"
  9841. ],
  9842. "authors": [
  9843. {
  9844. "name": "Konstantin Kudryashov",
  9845. "email": "ever.zet@gmail.com",
  9846. "homepage": "http://everzet.com"
  9847. },
  9848. {
  9849. "name": "Pete Otaqui",
  9850. "email": "pete@otaqui.com",
  9851. "homepage": "https://github.com/pete-otaqui"
  9852. }
  9853. ],
  9854. "description": "Selenium2 (WebDriver) driver for Mink framework",
  9855. "homepage": "http://mink.behat.org/",
  9856. "keywords": [
  9857. "ajax",
  9858. "browser",
  9859. "javascript",
  9860. "selenium",
  9861. "testing",
  9862. "webdriver"
  9863. ],
  9864. "time": "2018-10-10T12:39:06+00:00"
  9865. },
  9866. {
  9867. "name": "doctrine/instantiator",
  9868. "version": "1.0.5",
  9869. "source": {
  9870. "type": "git",
  9871. "url": "https://github.com/doctrine/instantiator.git",
  9872. "reference": "8e884e78f9f0eb1329e445619e04456e64d8051d"
  9873. },
  9874. "dist": {
  9875. "type": "zip",
  9876. "url": "https://api.github.com/repos/doctrine/instantiator/zipball/8e884e78f9f0eb1329e445619e04456e64d8051d",
  9877. "reference": "8e884e78f9f0eb1329e445619e04456e64d8051d",
  9878. "shasum": ""
  9879. },
  9880. "require": {
  9881. "php": ">=5.3,<8.0-DEV"
  9882. },
  9883. "require-dev": {
  9884. "athletic/athletic": "~0.1.8",
  9885. "ext-pdo": "*",
  9886. "ext-phar": "*",
  9887. "phpunit/phpunit": "~4.0",
  9888. "squizlabs/php_codesniffer": "~2.0"
  9889. },
  9890. "type": "library",
  9891. "extra": {
  9892. "branch-alias": {
  9893. "dev-master": "1.0.x-dev"
  9894. }
  9895. },
  9896. "autoload": {
  9897. "psr-4": {
  9898. "Doctrine\\Instantiator\\": "src/Doctrine/Instantiator/"
  9899. }
  9900. },
  9901. "notification-url": "https://packagist.org/downloads/",
  9902. "license": [
  9903. "MIT"
  9904. ],
  9905. "authors": [
  9906. {
  9907. "name": "Marco Pivetta",
  9908. "email": "ocramius@gmail.com",
  9909. "homepage": "http://ocramius.github.com/"
  9910. }
  9911. ],
  9912. "description": "A small, lightweight utility to instantiate objects in PHP without invoking their constructors",
  9913. "homepage": "https://github.com/doctrine/instantiator",
  9914. "keywords": [
  9915. "constructor",
  9916. "instantiate"
  9917. ],
  9918. "time": "2015-06-14T21:17:01+00:00"
  9919. },
  9920. {
  9921. "name": "drupal/coder",
  9922. "version": "8.3.1",
  9923. "source": {
  9924. "type": "git",
  9925. "url": "https://git.drupal.org/project/coder.git",
  9926. "reference": "29a25627e7148b3119c84f18e087fc3b8c85b959"
  9927. },
  9928. "require": {
  9929. "ext-mbstring": "*",
  9930. "php": ">=5.4.0",
  9931. "squizlabs/php_codesniffer": "^3.0.1",
  9932. "symfony/yaml": ">=2.0.0"
  9933. },
  9934. "require-dev": {
  9935. "phpunit/phpunit": ">=3.7 <6"
  9936. },
  9937. "type": "phpcodesniffer-standard",
  9938. "autoload": {
  9939. "psr-0": {
  9940. "Drupal\\": "coder_sniffer/Drupal/",
  9941. "DrupalPractice\\": "coder_sniffer/Drupal/"
  9942. }
  9943. },
  9944. "notification-url": "https://packagist.org/downloads/",
  9945. "license": [
  9946. "GPL-2.0+"
  9947. ],
  9948. "description": "Coder is a library to review Drupal code.",
  9949. "homepage": "https://www.drupal.org/project/coder",
  9950. "keywords": [
  9951. "code review",
  9952. "phpcs",
  9953. "standards"
  9954. ],
  9955. "time": "2018-09-21T14:22:49+00:00"
  9956. },
  9957. {
  9958. "name": "fabpot/goutte",
  9959. "version": "v3.2.3",
  9960. "source": {
  9961. "type": "git",
  9962. "url": "https://github.com/FriendsOfPHP/Goutte.git",
  9963. "reference": "3f0eaf0a40181359470651f1565b3e07e3dd31b8"
  9964. },
  9965. "dist": {
  9966. "type": "zip",
  9967. "url": "https://api.github.com/repos/FriendsOfPHP/Goutte/zipball/3f0eaf0a40181359470651f1565b3e07e3dd31b8",
  9968. "reference": "3f0eaf0a40181359470651f1565b3e07e3dd31b8",
  9969. "shasum": ""
  9970. },
  9971. "require": {
  9972. "guzzlehttp/guzzle": "^6.0",
  9973. "php": ">=5.5.0",
  9974. "symfony/browser-kit": "~2.1|~3.0|~4.0",
  9975. "symfony/css-selector": "~2.1|~3.0|~4.0",
  9976. "symfony/dom-crawler": "~2.1|~3.0|~4.0"
  9977. },
  9978. "require-dev": {
  9979. "symfony/phpunit-bridge": "^3.3 || ^4"
  9980. },
  9981. "type": "application",
  9982. "extra": {
  9983. "branch-alias": {
  9984. "dev-master": "3.2-dev"
  9985. }
  9986. },
  9987. "autoload": {
  9988. "psr-4": {
  9989. "Goutte\\": "Goutte"
  9990. },
  9991. "exclude-from-classmap": [
  9992. "Goutte/Tests"
  9993. ]
  9994. },
  9995. "notification-url": "https://packagist.org/downloads/",
  9996. "license": [
  9997. "MIT"
  9998. ],
  9999. "authors": [
  10000. {
  10001. "name": "Fabien Potencier",
  10002. "email": "fabien@symfony.com"
  10003. }
  10004. ],
  10005. "description": "A simple PHP Web Scraper",
  10006. "homepage": "https://github.com/FriendsOfPHP/Goutte",
  10007. "keywords": [
  10008. "scraper"
  10009. ],
  10010. "time": "2018-06-29T15:13:57+00:00"
  10011. },
  10012. {
  10013. "name": "instaclick/php-webdriver",
  10014. "version": "1.4.5",
  10015. "source": {
  10016. "type": "git",
  10017. "url": "https://github.com/instaclick/php-webdriver.git",
  10018. "reference": "6fa959452e774dcaed543faad3a9d1a37d803327"
  10019. },
  10020. "dist": {
  10021. "type": "zip",
  10022. "url": "https://api.github.com/repos/instaclick/php-webdriver/zipball/6fa959452e774dcaed543faad3a9d1a37d803327",
  10023. "reference": "6fa959452e774dcaed543faad3a9d1a37d803327",
  10024. "shasum": ""
  10025. },
  10026. "require": {
  10027. "ext-curl": "*",
  10028. "php": ">=5.3.2"
  10029. },
  10030. "require-dev": {
  10031. "phpunit/phpunit": "^4.8",
  10032. "satooshi/php-coveralls": "^1.0||^2.0"
  10033. },
  10034. "type": "library",
  10035. "extra": {
  10036. "branch-alias": {
  10037. "dev-master": "1.4.x-dev"
  10038. }
  10039. },
  10040. "autoload": {
  10041. "psr-0": {
  10042. "WebDriver": "lib/"
  10043. }
  10044. },
  10045. "notification-url": "https://packagist.org/downloads/",
  10046. "license": [
  10047. "Apache-2.0"
  10048. ],
  10049. "authors": [
  10050. {
  10051. "name": "Justin Bishop",
  10052. "email": "jubishop@gmail.com",
  10053. "role": "Developer"
  10054. },
  10055. {
  10056. "name": "Anthon Pang",
  10057. "email": "apang@softwaredevelopment.ca",
  10058. "role": "Fork Maintainer"
  10059. }
  10060. ],
  10061. "description": "PHP WebDriver for Selenium 2",
  10062. "homepage": "http://instaclick.com/",
  10063. "keywords": [
  10064. "browser",
  10065. "selenium",
  10066. "webdriver",
  10067. "webtest"
  10068. ],
  10069. "time": "2017-06-30T04:02:48+00:00"
  10070. },
  10071. {
  10072. "name": "jcalderonzumba/gastonjs",
  10073. "version": "v1.2.0",
  10074. "source": {
  10075. "type": "git",
  10076. "url": "https://github.com/jcalderonzumba/gastonjs.git",
  10077. "reference": "575a9c18d8b87990c37252e8d9707b29f0a313f3"
  10078. },
  10079. "dist": {
  10080. "type": "zip",
  10081. "url": "https://api.github.com/repos/jcalderonzumba/gastonjs/zipball/575a9c18d8b87990c37252e8d9707b29f0a313f3",
  10082. "reference": "575a9c18d8b87990c37252e8d9707b29f0a313f3",
  10083. "shasum": ""
  10084. },
  10085. "require": {
  10086. "guzzlehttp/guzzle": "~5.0|~6.0",
  10087. "php": ">=5.4"
  10088. },
  10089. "require-dev": {
  10090. "phpunit/phpunit": "~4.6",
  10091. "silex/silex": "~1.2",
  10092. "symfony/phpunit-bridge": "~2.7",
  10093. "symfony/process": "~2.1"
  10094. },
  10095. "type": "phantomjs-api",
  10096. "extra": {
  10097. "branch-alias": {
  10098. "dev-master": "1.1.x-dev"
  10099. }
  10100. },
  10101. "autoload": {
  10102. "psr-4": {
  10103. "Zumba\\GastonJS\\": "src"
  10104. }
  10105. },
  10106. "notification-url": "https://packagist.org/downloads/",
  10107. "license": [
  10108. "MIT"
  10109. ],
  10110. "authors": [
  10111. {
  10112. "name": "Juan Francisco Calderón Zumba",
  10113. "email": "juanfcz@gmail.com",
  10114. "homepage": "http://github.com/jcalderonzumba"
  10115. }
  10116. ],
  10117. "description": "PhantomJS API based server for webpage automation",
  10118. "homepage": "https://github.com/jcalderonzumba/gastonjs",
  10119. "keywords": [
  10120. "api",
  10121. "automation",
  10122. "browser",
  10123. "headless",
  10124. "phantomjs"
  10125. ],
  10126. "time": "2017-03-31T07:31:47+00:00"
  10127. },
  10128. {
  10129. "name": "jcalderonzumba/mink-phantomjs-driver",
  10130. "version": "v0.3.3",
  10131. "source": {
  10132. "type": "git",
  10133. "url": "https://github.com/jcalderonzumba/MinkPhantomJSDriver.git",
  10134. "reference": "008f43670e94acd39273d15add1e7348eb23848d"
  10135. },
  10136. "dist": {
  10137. "type": "zip",
  10138. "url": "https://api.github.com/repos/jcalderonzumba/MinkPhantomJSDriver/zipball/008f43670e94acd39273d15add1e7348eb23848d",
  10139. "reference": "008f43670e94acd39273d15add1e7348eb23848d",
  10140. "shasum": ""
  10141. },
  10142. "require": {
  10143. "behat/mink": "~1.7",
  10144. "jcalderonzumba/gastonjs": "~1.0",
  10145. "php": ">=5.4",
  10146. "twig/twig": "~1.20|~2.0"
  10147. },
  10148. "require-dev": {
  10149. "mink/driver-testsuite": "dev-master",
  10150. "phpunit/phpunit": "~4.6"
  10151. },
  10152. "type": "mink-driver",
  10153. "extra": {
  10154. "branch-alias": {
  10155. "dev-master": "0.4.x-dev"
  10156. }
  10157. },
  10158. "autoload": {
  10159. "psr-4": {
  10160. "Zumba\\Mink\\Driver\\": "src"
  10161. }
  10162. },
  10163. "notification-url": "https://packagist.org/downloads/",
  10164. "license": [
  10165. "MIT"
  10166. ],
  10167. "authors": [
  10168. {
  10169. "name": "Juan Francisco Calderón Zumba",
  10170. "email": "juanfcz@gmail.com",
  10171. "homepage": "http://github.com/jcalderonzumba"
  10172. }
  10173. ],
  10174. "description": "PhantomJS driver for Mink framework",
  10175. "homepage": "http://mink.behat.org/",
  10176. "keywords": [
  10177. "ajax",
  10178. "browser",
  10179. "headless",
  10180. "javascript",
  10181. "phantomjs",
  10182. "testing"
  10183. ],
  10184. "time": "2016-12-01T10:57:30+00:00"
  10185. },
  10186. {
  10187. "name": "mikey179/vfsStream",
  10188. "version": "v1.6.5",
  10189. "source": {
  10190. "type": "git",
  10191. "url": "https://github.com/mikey179/vfsStream.git",
  10192. "reference": "d5fec95f541d4d71c4823bb5e30cf9b9e5b96145"
  10193. },
  10194. "dist": {
  10195. "type": "zip",
  10196. "url": "https://api.github.com/repos/mikey179/vfsStream/zipball/d5fec95f541d4d71c4823bb5e30cf9b9e5b96145",
  10197. "reference": "d5fec95f541d4d71c4823bb5e30cf9b9e5b96145",
  10198. "shasum": ""
  10199. },
  10200. "require": {
  10201. "php": ">=5.3.0"
  10202. },
  10203. "require-dev": {
  10204. "phpunit/phpunit": "~4.5"
  10205. },
  10206. "type": "library",
  10207. "extra": {
  10208. "branch-alias": {
  10209. "dev-master": "1.6.x-dev"
  10210. }
  10211. },
  10212. "autoload": {
  10213. "psr-0": {
  10214. "org\\bovigo\\vfs\\": "src/main/php"
  10215. }
  10216. },
  10217. "notification-url": "https://packagist.org/downloads/",
  10218. "license": [
  10219. "BSD-3-Clause"
  10220. ],
  10221. "authors": [
  10222. {
  10223. "name": "Frank Kleine",
  10224. "homepage": "http://frankkleine.de/",
  10225. "role": "Developer"
  10226. }
  10227. ],
  10228. "description": "Virtual file system to mock the real file system in unit tests.",
  10229. "homepage": "http://vfs.bovigo.org/",
  10230. "time": "2017-08-01T08:02:14+00:00"
  10231. },
  10232. {
  10233. "name": "myclabs/deep-copy",
  10234. "version": "1.7.0",
  10235. "source": {
  10236. "type": "git",
  10237. "url": "https://github.com/myclabs/DeepCopy.git",
  10238. "reference": "3b8a3a99ba1f6a3952ac2747d989303cbd6b7a3e"
  10239. },
  10240. "dist": {
  10241. "type": "zip",
  10242. "url": "https://api.github.com/repos/myclabs/DeepCopy/zipball/3b8a3a99ba1f6a3952ac2747d989303cbd6b7a3e",
  10243. "reference": "3b8a3a99ba1f6a3952ac2747d989303cbd6b7a3e",
  10244. "shasum": ""
  10245. },
  10246. "require": {
  10247. "php": "^5.6 || ^7.0"
  10248. },
  10249. "require-dev": {
  10250. "doctrine/collections": "^1.0",
  10251. "doctrine/common": "^2.6",
  10252. "phpunit/phpunit": "^4.1"
  10253. },
  10254. "type": "library",
  10255. "autoload": {
  10256. "psr-4": {
  10257. "DeepCopy\\": "src/DeepCopy/"
  10258. },
  10259. "files": [
  10260. "src/DeepCopy/deep_copy.php"
  10261. ]
  10262. },
  10263. "notification-url": "https://packagist.org/downloads/",
  10264. "license": [
  10265. "MIT"
  10266. ],
  10267. "description": "Create deep copies (clones) of your objects",
  10268. "keywords": [
  10269. "clone",
  10270. "copy",
  10271. "duplicate",
  10272. "object",
  10273. "object graph"
  10274. ],
  10275. "time": "2017-10-19T19:58:43+00:00"
  10276. },
  10277. {
  10278. "name": "phar-io/manifest",
  10279. "version": "1.0.1",
  10280. "source": {
  10281. "type": "git",
  10282. "url": "https://github.com/phar-io/manifest.git",
  10283. "reference": "2df402786ab5368a0169091f61a7c1e0eb6852d0"
  10284. },
  10285. "dist": {
  10286. "type": "zip",
  10287. "url": "https://api.github.com/repos/phar-io/manifest/zipball/2df402786ab5368a0169091f61a7c1e0eb6852d0",
  10288. "reference": "2df402786ab5368a0169091f61a7c1e0eb6852d0",
  10289. "shasum": ""
  10290. },
  10291. "require": {
  10292. "ext-dom": "*",
  10293. "ext-phar": "*",
  10294. "phar-io/version": "^1.0.1",
  10295. "php": "^5.6 || ^7.0"
  10296. },
  10297. "type": "library",
  10298. "extra": {
  10299. "branch-alias": {
  10300. "dev-master": "1.0.x-dev"
  10301. }
  10302. },
  10303. "autoload": {
  10304. "classmap": [
  10305. "src/"
  10306. ]
  10307. },
  10308. "notification-url": "https://packagist.org/downloads/",
  10309. "license": [
  10310. "BSD-3-Clause"
  10311. ],
  10312. "authors": [
  10313. {
  10314. "name": "Arne Blankerts",
  10315. "email": "arne@blankerts.de",
  10316. "role": "Developer"
  10317. },
  10318. {
  10319. "name": "Sebastian Heuer",
  10320. "email": "sebastian@phpeople.de",
  10321. "role": "Developer"
  10322. },
  10323. {
  10324. "name": "Sebastian Bergmann",
  10325. "email": "sebastian@phpunit.de",
  10326. "role": "Developer"
  10327. }
  10328. ],
  10329. "description": "Component for reading phar.io manifest information from a PHP Archive (PHAR)",
  10330. "time": "2017-03-05T18:14:27+00:00"
  10331. },
  10332. {
  10333. "name": "phar-io/version",
  10334. "version": "1.0.1",
  10335. "source": {
  10336. "type": "git",
  10337. "url": "https://github.com/phar-io/version.git",
  10338. "reference": "a70c0ced4be299a63d32fa96d9281d03e94041df"
  10339. },
  10340. "dist": {
  10341. "type": "zip",
  10342. "url": "https://api.github.com/repos/phar-io/version/zipball/a70c0ced4be299a63d32fa96d9281d03e94041df",
  10343. "reference": "a70c0ced4be299a63d32fa96d9281d03e94041df",
  10344. "shasum": ""
  10345. },
  10346. "require": {
  10347. "php": "^5.6 || ^7.0"
  10348. },
  10349. "type": "library",
  10350. "autoload": {
  10351. "classmap": [
  10352. "src/"
  10353. ]
  10354. },
  10355. "notification-url": "https://packagist.org/downloads/",
  10356. "license": [
  10357. "BSD-3-Clause"
  10358. ],
  10359. "authors": [
  10360. {
  10361. "name": "Arne Blankerts",
  10362. "email": "arne@blankerts.de",
  10363. "role": "Developer"
  10364. },
  10365. {
  10366. "name": "Sebastian Heuer",
  10367. "email": "sebastian@phpeople.de",
  10368. "role": "Developer"
  10369. },
  10370. {
  10371. "name": "Sebastian Bergmann",
  10372. "email": "sebastian@phpunit.de",
  10373. "role": "Developer"
  10374. }
  10375. ],
  10376. "description": "Library for handling version information and constraints",
  10377. "time": "2017-03-05T17:38:23+00:00"
  10378. },
  10379. {
  10380. "name": "phpdocumentor/reflection-common",
  10381. "version": "1.0.1",
  10382. "source": {
  10383. "type": "git",
  10384. "url": "https://github.com/phpDocumentor/ReflectionCommon.git",
  10385. "reference": "21bdeb5f65d7ebf9f43b1b25d404f87deab5bfb6"
  10386. },
  10387. "dist": {
  10388. "type": "zip",
  10389. "url": "https://api.github.com/repos/phpDocumentor/ReflectionCommon/zipball/21bdeb5f65d7ebf9f43b1b25d404f87deab5bfb6",
  10390. "reference": "21bdeb5f65d7ebf9f43b1b25d404f87deab5bfb6",
  10391. "shasum": ""
  10392. },
  10393. "require": {
  10394. "php": ">=5.5"
  10395. },
  10396. "require-dev": {
  10397. "phpunit/phpunit": "^4.6"
  10398. },
  10399. "type": "library",
  10400. "extra": {
  10401. "branch-alias": {
  10402. "dev-master": "1.0.x-dev"
  10403. }
  10404. },
  10405. "autoload": {
  10406. "psr-4": {
  10407. "phpDocumentor\\Reflection\\": [
  10408. "src"
  10409. ]
  10410. }
  10411. },
  10412. "notification-url": "https://packagist.org/downloads/",
  10413. "license": [
  10414. "MIT"
  10415. ],
  10416. "authors": [
  10417. {
  10418. "name": "Jaap van Otterdijk",
  10419. "email": "opensource@ijaap.nl"
  10420. }
  10421. ],
  10422. "description": "Common reflection classes used by phpdocumentor to reflect the code structure",
  10423. "homepage": "http://www.phpdoc.org",
  10424. "keywords": [
  10425. "FQSEN",
  10426. "phpDocumentor",
  10427. "phpdoc",
  10428. "reflection",
  10429. "static analysis"
  10430. ],
  10431. "time": "2017-09-11T18:02:19+00:00"
  10432. },
  10433. {
  10434. "name": "phpdocumentor/reflection-docblock",
  10435. "version": "4.3.0",
  10436. "source": {
  10437. "type": "git",
  10438. "url": "https://github.com/phpDocumentor/ReflectionDocBlock.git",
  10439. "reference": "94fd0001232e47129dd3504189fa1c7225010d08"
  10440. },
  10441. "dist": {
  10442. "type": "zip",
  10443. "url": "https://api.github.com/repos/phpDocumentor/ReflectionDocBlock/zipball/94fd0001232e47129dd3504189fa1c7225010d08",
  10444. "reference": "94fd0001232e47129dd3504189fa1c7225010d08",
  10445. "shasum": ""
  10446. },
  10447. "require": {
  10448. "php": "^7.0",
  10449. "phpdocumentor/reflection-common": "^1.0.0",
  10450. "phpdocumentor/type-resolver": "^0.4.0",
  10451. "webmozart/assert": "^1.0"
  10452. },
  10453. "require-dev": {
  10454. "doctrine/instantiator": "~1.0.5",
  10455. "mockery/mockery": "^1.0",
  10456. "phpunit/phpunit": "^6.4"
  10457. },
  10458. "type": "library",
  10459. "extra": {
  10460. "branch-alias": {
  10461. "dev-master": "4.x-dev"
  10462. }
  10463. },
  10464. "autoload": {
  10465. "psr-4": {
  10466. "phpDocumentor\\Reflection\\": [
  10467. "src/"
  10468. ]
  10469. }
  10470. },
  10471. "notification-url": "https://packagist.org/downloads/",
  10472. "license": [
  10473. "MIT"
  10474. ],
  10475. "authors": [
  10476. {
  10477. "name": "Mike van Riel",
  10478. "email": "me@mikevanriel.com"
  10479. }
  10480. ],
  10481. "description": "With this component, a library can provide support for annotations via DocBlocks or otherwise retrieve information that is embedded in a DocBlock.",
  10482. "time": "2017-11-30T07:14:17+00:00"
  10483. },
  10484. {
  10485. "name": "phpdocumentor/type-resolver",
  10486. "version": "0.4.0",
  10487. "source": {
  10488. "type": "git",
  10489. "url": "https://github.com/phpDocumentor/TypeResolver.git",
  10490. "reference": "9c977708995954784726e25d0cd1dddf4e65b0f7"
  10491. },
  10492. "dist": {
  10493. "type": "zip",
  10494. "url": "https://api.github.com/repos/phpDocumentor/TypeResolver/zipball/9c977708995954784726e25d0cd1dddf4e65b0f7",
  10495. "reference": "9c977708995954784726e25d0cd1dddf4e65b0f7",
  10496. "shasum": ""
  10497. },
  10498. "require": {
  10499. "php": "^5.5 || ^7.0",
  10500. "phpdocumentor/reflection-common": "^1.0"
  10501. },
  10502. "require-dev": {
  10503. "mockery/mockery": "^0.9.4",
  10504. "phpunit/phpunit": "^5.2||^4.8.24"
  10505. },
  10506. "type": "library",
  10507. "extra": {
  10508. "branch-alias": {
  10509. "dev-master": "1.0.x-dev"
  10510. }
  10511. },
  10512. "autoload": {
  10513. "psr-4": {
  10514. "phpDocumentor\\Reflection\\": [
  10515. "src/"
  10516. ]
  10517. }
  10518. },
  10519. "notification-url": "https://packagist.org/downloads/",
  10520. "license": [
  10521. "MIT"
  10522. ],
  10523. "authors": [
  10524. {
  10525. "name": "Mike van Riel",
  10526. "email": "me@mikevanriel.com"
  10527. }
  10528. ],
  10529. "time": "2017-07-14T14:27:02+00:00"
  10530. },
  10531. {
  10532. "name": "phpspec/prophecy",
  10533. "version": "1.8.0",
  10534. "source": {
  10535. "type": "git",
  10536. "url": "https://github.com/phpspec/prophecy.git",
  10537. "reference": "4ba436b55987b4bf311cb7c6ba82aa528aac0a06"
  10538. },
  10539. "dist": {
  10540. "type": "zip",
  10541. "url": "https://api.github.com/repos/phpspec/prophecy/zipball/4ba436b55987b4bf311cb7c6ba82aa528aac0a06",
  10542. "reference": "4ba436b55987b4bf311cb7c6ba82aa528aac0a06",
  10543. "shasum": ""
  10544. },
  10545. "require": {
  10546. "doctrine/instantiator": "^1.0.2",
  10547. "php": "^5.3|^7.0",
  10548. "phpdocumentor/reflection-docblock": "^2.0|^3.0.2|^4.0",
  10549. "sebastian/comparator": "^1.1|^2.0|^3.0",
  10550. "sebastian/recursion-context": "^1.0|^2.0|^3.0"
  10551. },
  10552. "require-dev": {
  10553. "phpspec/phpspec": "^2.5|^3.2",
  10554. "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.5 || ^7.1"
  10555. },
  10556. "type": "library",
  10557. "extra": {
  10558. "branch-alias": {
  10559. "dev-master": "1.8.x-dev"
  10560. }
  10561. },
  10562. "autoload": {
  10563. "psr-0": {
  10564. "Prophecy\\": "src/"
  10565. }
  10566. },
  10567. "notification-url": "https://packagist.org/downloads/",
  10568. "license": [
  10569. "MIT"
  10570. ],
  10571. "authors": [
  10572. {
  10573. "name": "Konstantin Kudryashov",
  10574. "email": "ever.zet@gmail.com",
  10575. "homepage": "http://everzet.com"
  10576. },
  10577. {
  10578. "name": "Marcello Duarte",
  10579. "email": "marcello.duarte@gmail.com"
  10580. }
  10581. ],
  10582. "description": "Highly opinionated mocking framework for PHP 5.3+",
  10583. "homepage": "https://github.com/phpspec/prophecy",
  10584. "keywords": [
  10585. "Double",
  10586. "Dummy",
  10587. "fake",
  10588. "mock",
  10589. "spy",
  10590. "stub"
  10591. ],
  10592. "time": "2018-08-05T17:53:17+00:00"
  10593. },
  10594. {
  10595. "name": "phpunit/php-code-coverage",
  10596. "version": "5.3.2",
  10597. "source": {
  10598. "type": "git",
  10599. "url": "https://github.com/sebastianbergmann/php-code-coverage.git",
  10600. "reference": "c89677919c5dd6d3b3852f230a663118762218ac"
  10601. },
  10602. "dist": {
  10603. "type": "zip",
  10604. "url": "https://api.github.com/repos/sebastianbergmann/php-code-coverage/zipball/c89677919c5dd6d3b3852f230a663118762218ac",
  10605. "reference": "c89677919c5dd6d3b3852f230a663118762218ac",
  10606. "shasum": ""
  10607. },
  10608. "require": {
  10609. "ext-dom": "*",
  10610. "ext-xmlwriter": "*",
  10611. "php": "^7.0",
  10612. "phpunit/php-file-iterator": "^1.4.2",
  10613. "phpunit/php-text-template": "^1.2.1",
  10614. "phpunit/php-token-stream": "^2.0.1",
  10615. "sebastian/code-unit-reverse-lookup": "^1.0.1",
  10616. "sebastian/environment": "^3.0",
  10617. "sebastian/version": "^2.0.1",
  10618. "theseer/tokenizer": "^1.1"
  10619. },
  10620. "require-dev": {
  10621. "phpunit/phpunit": "^6.0"
  10622. },
  10623. "suggest": {
  10624. "ext-xdebug": "^2.5.5"
  10625. },
  10626. "type": "library",
  10627. "extra": {
  10628. "branch-alias": {
  10629. "dev-master": "5.3.x-dev"
  10630. }
  10631. },
  10632. "autoload": {
  10633. "classmap": [
  10634. "src/"
  10635. ]
  10636. },
  10637. "notification-url": "https://packagist.org/downloads/",
  10638. "license": [
  10639. "BSD-3-Clause"
  10640. ],
  10641. "authors": [
  10642. {
  10643. "name": "Sebastian Bergmann",
  10644. "email": "sebastian@phpunit.de",
  10645. "role": "lead"
  10646. }
  10647. ],
  10648. "description": "Library that provides collection, processing, and rendering functionality for PHP code coverage information.",
  10649. "homepage": "https://github.com/sebastianbergmann/php-code-coverage",
  10650. "keywords": [
  10651. "coverage",
  10652. "testing",
  10653. "xunit"
  10654. ],
  10655. "time": "2018-04-06T15:36:58+00:00"
  10656. },
  10657. {
  10658. "name": "phpunit/php-file-iterator",
  10659. "version": "1.4.5",
  10660. "source": {
  10661. "type": "git",
  10662. "url": "https://github.com/sebastianbergmann/php-file-iterator.git",
  10663. "reference": "730b01bc3e867237eaac355e06a36b85dd93a8b4"
  10664. },
  10665. "dist": {
  10666. "type": "zip",
  10667. "url": "https://api.github.com/repos/sebastianbergmann/php-file-iterator/zipball/730b01bc3e867237eaac355e06a36b85dd93a8b4",
  10668. "reference": "730b01bc3e867237eaac355e06a36b85dd93a8b4",
  10669. "shasum": ""
  10670. },
  10671. "require": {
  10672. "php": ">=5.3.3"
  10673. },
  10674. "type": "library",
  10675. "extra": {
  10676. "branch-alias": {
  10677. "dev-master": "1.4.x-dev"
  10678. }
  10679. },
  10680. "autoload": {
  10681. "classmap": [
  10682. "src/"
  10683. ]
  10684. },
  10685. "notification-url": "https://packagist.org/downloads/",
  10686. "license": [
  10687. "BSD-3-Clause"
  10688. ],
  10689. "authors": [
  10690. {
  10691. "name": "Sebastian Bergmann",
  10692. "email": "sb@sebastian-bergmann.de",
  10693. "role": "lead"
  10694. }
  10695. ],
  10696. "description": "FilterIterator implementation that filters files based on a list of suffixes.",
  10697. "homepage": "https://github.com/sebastianbergmann/php-file-iterator/",
  10698. "keywords": [
  10699. "filesystem",
  10700. "iterator"
  10701. ],
  10702. "time": "2017-11-27T13:52:08+00:00"
  10703. },
  10704. {
  10705. "name": "phpunit/php-text-template",
  10706. "version": "1.2.1",
  10707. "source": {
  10708. "type": "git",
  10709. "url": "https://github.com/sebastianbergmann/php-text-template.git",
  10710. "reference": "31f8b717e51d9a2afca6c9f046f5d69fc27c8686"
  10711. },
  10712. "dist": {
  10713. "type": "zip",
  10714. "url": "https://api.github.com/repos/sebastianbergmann/php-text-template/zipball/31f8b717e51d9a2afca6c9f046f5d69fc27c8686",
  10715. "reference": "31f8b717e51d9a2afca6c9f046f5d69fc27c8686",
  10716. "shasum": ""
  10717. },
  10718. "require": {
  10719. "php": ">=5.3.3"
  10720. },
  10721. "type": "library",
  10722. "autoload": {
  10723. "classmap": [
  10724. "src/"
  10725. ]
  10726. },
  10727. "notification-url": "https://packagist.org/downloads/",
  10728. "license": [
  10729. "BSD-3-Clause"
  10730. ],
  10731. "authors": [
  10732. {
  10733. "name": "Sebastian Bergmann",
  10734. "email": "sebastian@phpunit.de",
  10735. "role": "lead"
  10736. }
  10737. ],
  10738. "description": "Simple template engine.",
  10739. "homepage": "https://github.com/sebastianbergmann/php-text-template/",
  10740. "keywords": [
  10741. "template"
  10742. ],
  10743. "time": "2015-06-21T13:50:34+00:00"
  10744. },
  10745. {
  10746. "name": "phpunit/php-timer",
  10747. "version": "1.0.9",
  10748. "source": {
  10749. "type": "git",
  10750. "url": "https://github.com/sebastianbergmann/php-timer.git",
  10751. "reference": "3dcf38ca72b158baf0bc245e9184d3fdffa9c46f"
  10752. },
  10753. "dist": {
  10754. "type": "zip",
  10755. "url": "https://api.github.com/repos/sebastianbergmann/php-timer/zipball/3dcf38ca72b158baf0bc245e9184d3fdffa9c46f",
  10756. "reference": "3dcf38ca72b158baf0bc245e9184d3fdffa9c46f",
  10757. "shasum": ""
  10758. },
  10759. "require": {
  10760. "php": "^5.3.3 || ^7.0"
  10761. },
  10762. "require-dev": {
  10763. "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.0"
  10764. },
  10765. "type": "library",
  10766. "extra": {
  10767. "branch-alias": {
  10768. "dev-master": "1.0-dev"
  10769. }
  10770. },
  10771. "autoload": {
  10772. "classmap": [
  10773. "src/"
  10774. ]
  10775. },
  10776. "notification-url": "https://packagist.org/downloads/",
  10777. "license": [
  10778. "BSD-3-Clause"
  10779. ],
  10780. "authors": [
  10781. {
  10782. "name": "Sebastian Bergmann",
  10783. "email": "sb@sebastian-bergmann.de",
  10784. "role": "lead"
  10785. }
  10786. ],
  10787. "description": "Utility class for timing",
  10788. "homepage": "https://github.com/sebastianbergmann/php-timer/",
  10789. "keywords": [
  10790. "timer"
  10791. ],
  10792. "time": "2017-02-26T11:10:40+00:00"
  10793. },
  10794. {
  10795. "name": "phpunit/php-token-stream",
  10796. "version": "2.0.2",
  10797. "source": {
  10798. "type": "git",
  10799. "url": "https://github.com/sebastianbergmann/php-token-stream.git",
  10800. "reference": "791198a2c6254db10131eecfe8c06670700904db"
  10801. },
  10802. "dist": {
  10803. "type": "zip",
  10804. "url": "https://api.github.com/repos/sebastianbergmann/php-token-stream/zipball/791198a2c6254db10131eecfe8c06670700904db",
  10805. "reference": "791198a2c6254db10131eecfe8c06670700904db",
  10806. "shasum": ""
  10807. },
  10808. "require": {
  10809. "ext-tokenizer": "*",
  10810. "php": "^7.0"
  10811. },
  10812. "require-dev": {
  10813. "phpunit/phpunit": "^6.2.4"
  10814. },
  10815. "type": "library",
  10816. "extra": {
  10817. "branch-alias": {
  10818. "dev-master": "2.0-dev"
  10819. }
  10820. },
  10821. "autoload": {
  10822. "classmap": [
  10823. "src/"
  10824. ]
  10825. },
  10826. "notification-url": "https://packagist.org/downloads/",
  10827. "license": [
  10828. "BSD-3-Clause"
  10829. ],
  10830. "authors": [
  10831. {
  10832. "name": "Sebastian Bergmann",
  10833. "email": "sebastian@phpunit.de"
  10834. }
  10835. ],
  10836. "description": "Wrapper around PHP's tokenizer extension.",
  10837. "homepage": "https://github.com/sebastianbergmann/php-token-stream/",
  10838. "keywords": [
  10839. "tokenizer"
  10840. ],
  10841. "time": "2017-11-27T05:48:46+00:00"
  10842. },
  10843. {
  10844. "name": "phpunit/phpunit",
  10845. "version": "6.5.13",
  10846. "source": {
  10847. "type": "git",
  10848. "url": "https://github.com/sebastianbergmann/phpunit.git",
  10849. "reference": "0973426fb012359b2f18d3bd1e90ef1172839693"
  10850. },
  10851. "dist": {
  10852. "type": "zip",
  10853. "url": "https://api.github.com/repos/sebastianbergmann/phpunit/zipball/0973426fb012359b2f18d3bd1e90ef1172839693",
  10854. "reference": "0973426fb012359b2f18d3bd1e90ef1172839693",
  10855. "shasum": ""
  10856. },
  10857. "require": {
  10858. "ext-dom": "*",
  10859. "ext-json": "*",
  10860. "ext-libxml": "*",
  10861. "ext-mbstring": "*",
  10862. "ext-xml": "*",
  10863. "myclabs/deep-copy": "^1.6.1",
  10864. "phar-io/manifest": "^1.0.1",
  10865. "phar-io/version": "^1.0",
  10866. "php": "^7.0",
  10867. "phpspec/prophecy": "^1.7",
  10868. "phpunit/php-code-coverage": "^5.3",
  10869. "phpunit/php-file-iterator": "^1.4.3",
  10870. "phpunit/php-text-template": "^1.2.1",
  10871. "phpunit/php-timer": "^1.0.9",
  10872. "phpunit/phpunit-mock-objects": "^5.0.9",
  10873. "sebastian/comparator": "^2.1",
  10874. "sebastian/diff": "^2.0",
  10875. "sebastian/environment": "^3.1",
  10876. "sebastian/exporter": "^3.1",
  10877. "sebastian/global-state": "^2.0",
  10878. "sebastian/object-enumerator": "^3.0.3",
  10879. "sebastian/resource-operations": "^1.0",
  10880. "sebastian/version": "^2.0.1"
  10881. },
  10882. "conflict": {
  10883. "phpdocumentor/reflection-docblock": "3.0.2",
  10884. "phpunit/dbunit": "<3.0"
  10885. },
  10886. "require-dev": {
  10887. "ext-pdo": "*"
  10888. },
  10889. "suggest": {
  10890. "ext-xdebug": "*",
  10891. "phpunit/php-invoker": "^1.1"
  10892. },
  10893. "bin": [
  10894. "phpunit"
  10895. ],
  10896. "type": "library",
  10897. "extra": {
  10898. "branch-alias": {
  10899. "dev-master": "6.5.x-dev"
  10900. }
  10901. },
  10902. "autoload": {
  10903. "classmap": [
  10904. "src/"
  10905. ]
  10906. },
  10907. "notification-url": "https://packagist.org/downloads/",
  10908. "license": [
  10909. "BSD-3-Clause"
  10910. ],
  10911. "authors": [
  10912. {
  10913. "name": "Sebastian Bergmann",
  10914. "email": "sebastian@phpunit.de",
  10915. "role": "lead"
  10916. }
  10917. ],
  10918. "description": "The PHP Unit Testing framework.",
  10919. "homepage": "https://phpunit.de/",
  10920. "keywords": [
  10921. "phpunit",
  10922. "testing",
  10923. "xunit"
  10924. ],
  10925. "time": "2018-09-08T15:10:43+00:00"
  10926. },
  10927. {
  10928. "name": "phpunit/phpunit-mock-objects",
  10929. "version": "5.0.10",
  10930. "source": {
  10931. "type": "git",
  10932. "url": "https://github.com/sebastianbergmann/phpunit-mock-objects.git",
  10933. "reference": "cd1cf05c553ecfec36b170070573e540b67d3f1f"
  10934. },
  10935. "dist": {
  10936. "type": "zip",
  10937. "url": "https://api.github.com/repos/sebastianbergmann/phpunit-mock-objects/zipball/cd1cf05c553ecfec36b170070573e540b67d3f1f",
  10938. "reference": "cd1cf05c553ecfec36b170070573e540b67d3f1f",
  10939. "shasum": ""
  10940. },
  10941. "require": {
  10942. "doctrine/instantiator": "^1.0.5",
  10943. "php": "^7.0",
  10944. "phpunit/php-text-template": "^1.2.1",
  10945. "sebastian/exporter": "^3.1"
  10946. },
  10947. "conflict": {
  10948. "phpunit/phpunit": "<6.0"
  10949. },
  10950. "require-dev": {
  10951. "phpunit/phpunit": "^6.5.11"
  10952. },
  10953. "suggest": {
  10954. "ext-soap": "*"
  10955. },
  10956. "type": "library",
  10957. "extra": {
  10958. "branch-alias": {
  10959. "dev-master": "5.0.x-dev"
  10960. }
  10961. },
  10962. "autoload": {
  10963. "classmap": [
  10964. "src/"
  10965. ]
  10966. },
  10967. "notification-url": "https://packagist.org/downloads/",
  10968. "license": [
  10969. "BSD-3-Clause"
  10970. ],
  10971. "authors": [
  10972. {
  10973. "name": "Sebastian Bergmann",
  10974. "email": "sebastian@phpunit.de",
  10975. "role": "lead"
  10976. }
  10977. ],
  10978. "description": "Mock Object library for PHPUnit",
  10979. "homepage": "https://github.com/sebastianbergmann/phpunit-mock-objects/",
  10980. "keywords": [
  10981. "mock",
  10982. "xunit"
  10983. ],
  10984. "time": "2018-08-09T05:50:03+00:00"
  10985. },
  10986. {
  10987. "name": "sebastian/code-unit-reverse-lookup",
  10988. "version": "1.0.1",
  10989. "source": {
  10990. "type": "git",
  10991. "url": "https://github.com/sebastianbergmann/code-unit-reverse-lookup.git",
  10992. "reference": "4419fcdb5eabb9caa61a27c7a1db532a6b55dd18"
  10993. },
  10994. "dist": {
  10995. "type": "zip",
  10996. "url": "https://api.github.com/repos/sebastianbergmann/code-unit-reverse-lookup/zipball/4419fcdb5eabb9caa61a27c7a1db532a6b55dd18",
  10997. "reference": "4419fcdb5eabb9caa61a27c7a1db532a6b55dd18",
  10998. "shasum": ""
  10999. },
  11000. "require": {
  11001. "php": "^5.6 || ^7.0"
  11002. },
  11003. "require-dev": {
  11004. "phpunit/phpunit": "^5.7 || ^6.0"
  11005. },
  11006. "type": "library",
  11007. "extra": {
  11008. "branch-alias": {
  11009. "dev-master": "1.0.x-dev"
  11010. }
  11011. },
  11012. "autoload": {
  11013. "classmap": [
  11014. "src/"
  11015. ]
  11016. },
  11017. "notification-url": "https://packagist.org/downloads/",
  11018. "license": [
  11019. "BSD-3-Clause"
  11020. ],
  11021. "authors": [
  11022. {
  11023. "name": "Sebastian Bergmann",
  11024. "email": "sebastian@phpunit.de"
  11025. }
  11026. ],
  11027. "description": "Looks up which function or method a line of code belongs to",
  11028. "homepage": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/",
  11029. "time": "2017-03-04T06:30:41+00:00"
  11030. },
  11031. {
  11032. "name": "sebastian/comparator",
  11033. "version": "2.1.3",
  11034. "source": {
  11035. "type": "git",
  11036. "url": "https://github.com/sebastianbergmann/comparator.git",
  11037. "reference": "34369daee48eafb2651bea869b4b15d75ccc35f9"
  11038. },
  11039. "dist": {
  11040. "type": "zip",
  11041. "url": "https://api.github.com/repos/sebastianbergmann/comparator/zipball/34369daee48eafb2651bea869b4b15d75ccc35f9",
  11042. "reference": "34369daee48eafb2651bea869b4b15d75ccc35f9",
  11043. "shasum": ""
  11044. },
  11045. "require": {
  11046. "php": "^7.0",
  11047. "sebastian/diff": "^2.0 || ^3.0",
  11048. "sebastian/exporter": "^3.1"
  11049. },
  11050. "require-dev": {
  11051. "phpunit/phpunit": "^6.4"
  11052. },
  11053. "type": "library",
  11054. "extra": {
  11055. "branch-alias": {
  11056. "dev-master": "2.1.x-dev"
  11057. }
  11058. },
  11059. "autoload": {
  11060. "classmap": [
  11061. "src/"
  11062. ]
  11063. },
  11064. "notification-url": "https://packagist.org/downloads/",
  11065. "license": [
  11066. "BSD-3-Clause"
  11067. ],
  11068. "authors": [
  11069. {
  11070. "name": "Jeff Welch",
  11071. "email": "whatthejeff@gmail.com"
  11072. },
  11073. {
  11074. "name": "Volker Dusch",
  11075. "email": "github@wallbash.com"
  11076. },
  11077. {
  11078. "name": "Bernhard Schussek",
  11079. "email": "bschussek@2bepublished.at"
  11080. },
  11081. {
  11082. "name": "Sebastian Bergmann",
  11083. "email": "sebastian@phpunit.de"
  11084. }
  11085. ],
  11086. "description": "Provides the functionality to compare PHP values for equality",
  11087. "homepage": "https://github.com/sebastianbergmann/comparator",
  11088. "keywords": [
  11089. "comparator",
  11090. "compare",
  11091. "equality"
  11092. ],
  11093. "time": "2018-02-01T13:46:46+00:00"
  11094. },
  11095. {
  11096. "name": "sebastian/diff",
  11097. "version": "2.0.1",
  11098. "source": {
  11099. "type": "git",
  11100. "url": "https://github.com/sebastianbergmann/diff.git",
  11101. "reference": "347c1d8b49c5c3ee30c7040ea6fc446790e6bddd"
  11102. },
  11103. "dist": {
  11104. "type": "zip",
  11105. "url": "https://api.github.com/repos/sebastianbergmann/diff/zipball/347c1d8b49c5c3ee30c7040ea6fc446790e6bddd",
  11106. "reference": "347c1d8b49c5c3ee30c7040ea6fc446790e6bddd",
  11107. "shasum": ""
  11108. },
  11109. "require": {
  11110. "php": "^7.0"
  11111. },
  11112. "require-dev": {
  11113. "phpunit/phpunit": "^6.2"
  11114. },
  11115. "type": "library",
  11116. "extra": {
  11117. "branch-alias": {
  11118. "dev-master": "2.0-dev"
  11119. }
  11120. },
  11121. "autoload": {
  11122. "classmap": [
  11123. "src/"
  11124. ]
  11125. },
  11126. "notification-url": "https://packagist.org/downloads/",
  11127. "license": [
  11128. "BSD-3-Clause"
  11129. ],
  11130. "authors": [
  11131. {
  11132. "name": "Kore Nordmann",
  11133. "email": "mail@kore-nordmann.de"
  11134. },
  11135. {
  11136. "name": "Sebastian Bergmann",
  11137. "email": "sebastian@phpunit.de"
  11138. }
  11139. ],
  11140. "description": "Diff implementation",
  11141. "homepage": "https://github.com/sebastianbergmann/diff",
  11142. "keywords": [
  11143. "diff"
  11144. ],
  11145. "time": "2017-08-03T08:09:46+00:00"
  11146. },
  11147. {
  11148. "name": "sebastian/environment",
  11149. "version": "3.1.0",
  11150. "source": {
  11151. "type": "git",
  11152. "url": "https://github.com/sebastianbergmann/environment.git",
  11153. "reference": "cd0871b3975fb7fc44d11314fd1ee20925fce4f5"
  11154. },
  11155. "dist": {
  11156. "type": "zip",
  11157. "url": "https://api.github.com/repos/sebastianbergmann/environment/zipball/cd0871b3975fb7fc44d11314fd1ee20925fce4f5",
  11158. "reference": "cd0871b3975fb7fc44d11314fd1ee20925fce4f5",
  11159. "shasum": ""
  11160. },
  11161. "require": {
  11162. "php": "^7.0"
  11163. },
  11164. "require-dev": {
  11165. "phpunit/phpunit": "^6.1"
  11166. },
  11167. "type": "library",
  11168. "extra": {
  11169. "branch-alias": {
  11170. "dev-master": "3.1.x-dev"
  11171. }
  11172. },
  11173. "autoload": {
  11174. "classmap": [
  11175. "src/"
  11176. ]
  11177. },
  11178. "notification-url": "https://packagist.org/downloads/",
  11179. "license": [
  11180. "BSD-3-Clause"
  11181. ],
  11182. "authors": [
  11183. {
  11184. "name": "Sebastian Bergmann",
  11185. "email": "sebastian@phpunit.de"
  11186. }
  11187. ],
  11188. "description": "Provides functionality to handle HHVM/PHP environments",
  11189. "homepage": "http://www.github.com/sebastianbergmann/environment",
  11190. "keywords": [
  11191. "Xdebug",
  11192. "environment",
  11193. "hhvm"
  11194. ],
  11195. "time": "2017-07-01T08:51:00+00:00"
  11196. },
  11197. {
  11198. "name": "sebastian/exporter",
  11199. "version": "3.1.0",
  11200. "source": {
  11201. "type": "git",
  11202. "url": "https://github.com/sebastianbergmann/exporter.git",
  11203. "reference": "234199f4528de6d12aaa58b612e98f7d36adb937"
  11204. },
  11205. "dist": {
  11206. "type": "zip",
  11207. "url": "https://api.github.com/repos/sebastianbergmann/exporter/zipball/234199f4528de6d12aaa58b612e98f7d36adb937",
  11208. "reference": "234199f4528de6d12aaa58b612e98f7d36adb937",
  11209. "shasum": ""
  11210. },
  11211. "require": {
  11212. "php": "^7.0",
  11213. "sebastian/recursion-context": "^3.0"
  11214. },
  11215. "require-dev": {
  11216. "ext-mbstring": "*",
  11217. "phpunit/phpunit": "^6.0"
  11218. },
  11219. "type": "library",
  11220. "extra": {
  11221. "branch-alias": {
  11222. "dev-master": "3.1.x-dev"
  11223. }
  11224. },
  11225. "autoload": {
  11226. "classmap": [
  11227. "src/"
  11228. ]
  11229. },
  11230. "notification-url": "https://packagist.org/downloads/",
  11231. "license": [
  11232. "BSD-3-Clause"
  11233. ],
  11234. "authors": [
  11235. {
  11236. "name": "Jeff Welch",
  11237. "email": "whatthejeff@gmail.com"
  11238. },
  11239. {
  11240. "name": "Volker Dusch",
  11241. "email": "github@wallbash.com"
  11242. },
  11243. {
  11244. "name": "Bernhard Schussek",
  11245. "email": "bschussek@2bepublished.at"
  11246. },
  11247. {
  11248. "name": "Sebastian Bergmann",
  11249. "email": "sebastian@phpunit.de"
  11250. },
  11251. {
  11252. "name": "Adam Harvey",
  11253. "email": "aharvey@php.net"
  11254. }
  11255. ],
  11256. "description": "Provides the functionality to export PHP variables for visualization",
  11257. "homepage": "http://www.github.com/sebastianbergmann/exporter",
  11258. "keywords": [
  11259. "export",
  11260. "exporter"
  11261. ],
  11262. "time": "2017-04-03T13:19:02+00:00"
  11263. },
  11264. {
  11265. "name": "sebastian/global-state",
  11266. "version": "2.0.0",
  11267. "source": {
  11268. "type": "git",
  11269. "url": "https://github.com/sebastianbergmann/global-state.git",
  11270. "reference": "e8ba02eed7bbbb9e59e43dedd3dddeff4a56b0c4"
  11271. },
  11272. "dist": {
  11273. "type": "zip",
  11274. "url": "https://api.github.com/repos/sebastianbergmann/global-state/zipball/e8ba02eed7bbbb9e59e43dedd3dddeff4a56b0c4",
  11275. "reference": "e8ba02eed7bbbb9e59e43dedd3dddeff4a56b0c4",
  11276. "shasum": ""
  11277. },
  11278. "require": {
  11279. "php": "^7.0"
  11280. },
  11281. "require-dev": {
  11282. "phpunit/phpunit": "^6.0"
  11283. },
  11284. "suggest": {
  11285. "ext-uopz": "*"
  11286. },
  11287. "type": "library",
  11288. "extra": {
  11289. "branch-alias": {
  11290. "dev-master": "2.0-dev"
  11291. }
  11292. },
  11293. "autoload": {
  11294. "classmap": [
  11295. "src/"
  11296. ]
  11297. },
  11298. "notification-url": "https://packagist.org/downloads/",
  11299. "license": [
  11300. "BSD-3-Clause"
  11301. ],
  11302. "authors": [
  11303. {
  11304. "name": "Sebastian Bergmann",
  11305. "email": "sebastian@phpunit.de"
  11306. }
  11307. ],
  11308. "description": "Snapshotting of global state",
  11309. "homepage": "http://www.github.com/sebastianbergmann/global-state",
  11310. "keywords": [
  11311. "global state"
  11312. ],
  11313. "time": "2017-04-27T15:39:26+00:00"
  11314. },
  11315. {
  11316. "name": "sebastian/object-enumerator",
  11317. "version": "3.0.3",
  11318. "source": {
  11319. "type": "git",
  11320. "url": "https://github.com/sebastianbergmann/object-enumerator.git",
  11321. "reference": "7cfd9e65d11ffb5af41198476395774d4c8a84c5"
  11322. },
  11323. "dist": {
  11324. "type": "zip",
  11325. "url": "https://api.github.com/repos/sebastianbergmann/object-enumerator/zipball/7cfd9e65d11ffb5af41198476395774d4c8a84c5",
  11326. "reference": "7cfd9e65d11ffb5af41198476395774d4c8a84c5",
  11327. "shasum": ""
  11328. },
  11329. "require": {
  11330. "php": "^7.0",
  11331. "sebastian/object-reflector": "^1.1.1",
  11332. "sebastian/recursion-context": "^3.0"
  11333. },
  11334. "require-dev": {
  11335. "phpunit/phpunit": "^6.0"
  11336. },
  11337. "type": "library",
  11338. "extra": {
  11339. "branch-alias": {
  11340. "dev-master": "3.0.x-dev"
  11341. }
  11342. },
  11343. "autoload": {
  11344. "classmap": [
  11345. "src/"
  11346. ]
  11347. },
  11348. "notification-url": "https://packagist.org/downloads/",
  11349. "license": [
  11350. "BSD-3-Clause"
  11351. ],
  11352. "authors": [
  11353. {
  11354. "name": "Sebastian Bergmann",
  11355. "email": "sebastian@phpunit.de"
  11356. }
  11357. ],
  11358. "description": "Traverses array structures and object graphs to enumerate all referenced objects",
  11359. "homepage": "https://github.com/sebastianbergmann/object-enumerator/",
  11360. "time": "2017-08-03T12:35:26+00:00"
  11361. },
  11362. {
  11363. "name": "sebastian/object-reflector",
  11364. "version": "1.1.1",
  11365. "source": {
  11366. "type": "git",
  11367. "url": "https://github.com/sebastianbergmann/object-reflector.git",
  11368. "reference": "773f97c67f28de00d397be301821b06708fca0be"
  11369. },
  11370. "dist": {
  11371. "type": "zip",
  11372. "url": "https://api.github.com/repos/sebastianbergmann/object-reflector/zipball/773f97c67f28de00d397be301821b06708fca0be",
  11373. "reference": "773f97c67f28de00d397be301821b06708fca0be",
  11374. "shasum": ""
  11375. },
  11376. "require": {
  11377. "php": "^7.0"
  11378. },
  11379. "require-dev": {
  11380. "phpunit/phpunit": "^6.0"
  11381. },
  11382. "type": "library",
  11383. "extra": {
  11384. "branch-alias": {
  11385. "dev-master": "1.1-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": "sebastian@phpunit.de"
  11401. }
  11402. ],
  11403. "description": "Allows reflection of object attributes, including inherited and non-public ones",
  11404. "homepage": "https://github.com/sebastianbergmann/object-reflector/",
  11405. "time": "2017-03-29T09:07:27+00:00"
  11406. },
  11407. {
  11408. "name": "sebastian/recursion-context",
  11409. "version": "3.0.0",
  11410. "source": {
  11411. "type": "git",
  11412. "url": "https://github.com/sebastianbergmann/recursion-context.git",
  11413. "reference": "5b0cd723502bac3b006cbf3dbf7a1e3fcefe4fa8"
  11414. },
  11415. "dist": {
  11416. "type": "zip",
  11417. "url": "https://api.github.com/repos/sebastianbergmann/recursion-context/zipball/5b0cd723502bac3b006cbf3dbf7a1e3fcefe4fa8",
  11418. "reference": "5b0cd723502bac3b006cbf3dbf7a1e3fcefe4fa8",
  11419. "shasum": ""
  11420. },
  11421. "require": {
  11422. "php": "^7.0"
  11423. },
  11424. "require-dev": {
  11425. "phpunit/phpunit": "^6.0"
  11426. },
  11427. "type": "library",
  11428. "extra": {
  11429. "branch-alias": {
  11430. "dev-master": "3.0.x-dev"
  11431. }
  11432. },
  11433. "autoload": {
  11434. "classmap": [
  11435. "src/"
  11436. ]
  11437. },
  11438. "notification-url": "https://packagist.org/downloads/",
  11439. "license": [
  11440. "BSD-3-Clause"
  11441. ],
  11442. "authors": [
  11443. {
  11444. "name": "Jeff Welch",
  11445. "email": "whatthejeff@gmail.com"
  11446. },
  11447. {
  11448. "name": "Sebastian Bergmann",
  11449. "email": "sebastian@phpunit.de"
  11450. },
  11451. {
  11452. "name": "Adam Harvey",
  11453. "email": "aharvey@php.net"
  11454. }
  11455. ],
  11456. "description": "Provides functionality to recursively process PHP variables",
  11457. "homepage": "http://www.github.com/sebastianbergmann/recursion-context",
  11458. "time": "2017-03-03T06:23:57+00:00"
  11459. },
  11460. {
  11461. "name": "sebastian/resource-operations",
  11462. "version": "1.0.0",
  11463. "source": {
  11464. "type": "git",
  11465. "url": "https://github.com/sebastianbergmann/resource-operations.git",
  11466. "reference": "ce990bb21759f94aeafd30209e8cfcdfa8bc3f52"
  11467. },
  11468. "dist": {
  11469. "type": "zip",
  11470. "url": "https://api.github.com/repos/sebastianbergmann/resource-operations/zipball/ce990bb21759f94aeafd30209e8cfcdfa8bc3f52",
  11471. "reference": "ce990bb21759f94aeafd30209e8cfcdfa8bc3f52",
  11472. "shasum": ""
  11473. },
  11474. "require": {
  11475. "php": ">=5.6.0"
  11476. },
  11477. "type": "library",
  11478. "extra": {
  11479. "branch-alias": {
  11480. "dev-master": "1.0.x-dev"
  11481. }
  11482. },
  11483. "autoload": {
  11484. "classmap": [
  11485. "src/"
  11486. ]
  11487. },
  11488. "notification-url": "https://packagist.org/downloads/",
  11489. "license": [
  11490. "BSD-3-Clause"
  11491. ],
  11492. "authors": [
  11493. {
  11494. "name": "Sebastian Bergmann",
  11495. "email": "sebastian@phpunit.de"
  11496. }
  11497. ],
  11498. "description": "Provides a list of PHP built-in functions that operate on resources",
  11499. "homepage": "https://www.github.com/sebastianbergmann/resource-operations",
  11500. "time": "2015-07-28T20:34:47+00:00"
  11501. },
  11502. {
  11503. "name": "sebastian/version",
  11504. "version": "2.0.1",
  11505. "source": {
  11506. "type": "git",
  11507. "url": "https://github.com/sebastianbergmann/version.git",
  11508. "reference": "99732be0ddb3361e16ad77b68ba41efc8e979019"
  11509. },
  11510. "dist": {
  11511. "type": "zip",
  11512. "url": "https://api.github.com/repos/sebastianbergmann/version/zipball/99732be0ddb3361e16ad77b68ba41efc8e979019",
  11513. "reference": "99732be0ddb3361e16ad77b68ba41efc8e979019",
  11514. "shasum": ""
  11515. },
  11516. "require": {
  11517. "php": ">=5.6"
  11518. },
  11519. "type": "library",
  11520. "extra": {
  11521. "branch-alias": {
  11522. "dev-master": "2.0.x-dev"
  11523. }
  11524. },
  11525. "autoload": {
  11526. "classmap": [
  11527. "src/"
  11528. ]
  11529. },
  11530. "notification-url": "https://packagist.org/downloads/",
  11531. "license": [
  11532. "BSD-3-Clause"
  11533. ],
  11534. "authors": [
  11535. {
  11536. "name": "Sebastian Bergmann",
  11537. "email": "sebastian@phpunit.de",
  11538. "role": "lead"
  11539. }
  11540. ],
  11541. "description": "Library that helps with managing the version number of Git-hosted PHP projects",
  11542. "homepage": "https://github.com/sebastianbergmann/version",
  11543. "time": "2016-10-03T07:35:21+00:00"
  11544. },
  11545. {
  11546. "name": "squizlabs/php_codesniffer",
  11547. "version": "3.3.2",
  11548. "source": {
  11549. "type": "git",
  11550. "url": "https://github.com/squizlabs/PHP_CodeSniffer.git",
  11551. "reference": "6ad28354c04b364c3c71a34e4a18b629cc3b231e"
  11552. },
  11553. "dist": {
  11554. "type": "zip",
  11555. "url": "https://api.github.com/repos/squizlabs/PHP_CodeSniffer/zipball/6ad28354c04b364c3c71a34e4a18b629cc3b231e",
  11556. "reference": "6ad28354c04b364c3c71a34e4a18b629cc3b231e",
  11557. "shasum": ""
  11558. },
  11559. "require": {
  11560. "ext-simplexml": "*",
  11561. "ext-tokenizer": "*",
  11562. "ext-xmlwriter": "*",
  11563. "php": ">=5.4.0"
  11564. },
  11565. "require-dev": {
  11566. "phpunit/phpunit": "^4.0 || ^5.0 || ^6.0 || ^7.0"
  11567. },
  11568. "bin": [
  11569. "bin/phpcs",
  11570. "bin/phpcbf"
  11571. ],
  11572. "type": "library",
  11573. "extra": {
  11574. "branch-alias": {
  11575. "dev-master": "3.x-dev"
  11576. }
  11577. },
  11578. "notification-url": "https://packagist.org/downloads/",
  11579. "license": [
  11580. "BSD-3-Clause"
  11581. ],
  11582. "authors": [
  11583. {
  11584. "name": "Greg Sherwood",
  11585. "role": "lead"
  11586. }
  11587. ],
  11588. "description": "PHP_CodeSniffer tokenizes PHP, JavaScript and CSS files and detects violations of a defined set of coding standards.",
  11589. "homepage": "http://www.squizlabs.com/php-codesniffer",
  11590. "keywords": [
  11591. "phpcs",
  11592. "standards"
  11593. ],
  11594. "time": "2018-09-23T23:08:17+00:00"
  11595. },
  11596. {
  11597. "name": "symfony/browser-kit",
  11598. "version": "v3.4.17",
  11599. "source": {
  11600. "type": "git",
  11601. "url": "https://github.com/symfony/browser-kit.git",
  11602. "reference": "f6668d1a6182d5a8dec65a1c863a4c1d963816c0"
  11603. },
  11604. "dist": {
  11605. "type": "zip",
  11606. "url": "https://api.github.com/repos/symfony/browser-kit/zipball/f6668d1a6182d5a8dec65a1c863a4c1d963816c0",
  11607. "reference": "f6668d1a6182d5a8dec65a1c863a4c1d963816c0",
  11608. "shasum": ""
  11609. },
  11610. "require": {
  11611. "php": "^5.5.9|>=7.0.8",
  11612. "symfony/dom-crawler": "~2.8|~3.0|~4.0"
  11613. },
  11614. "require-dev": {
  11615. "symfony/css-selector": "~2.8|~3.0|~4.0",
  11616. "symfony/process": "~2.8|~3.0|~4.0"
  11617. },
  11618. "suggest": {
  11619. "symfony/process": ""
  11620. },
  11621. "type": "library",
  11622. "extra": {
  11623. "branch-alias": {
  11624. "dev-master": "3.4-dev"
  11625. }
  11626. },
  11627. "autoload": {
  11628. "psr-4": {
  11629. "Symfony\\Component\\BrowserKit\\": ""
  11630. },
  11631. "exclude-from-classmap": [
  11632. "/Tests/"
  11633. ]
  11634. },
  11635. "notification-url": "https://packagist.org/downloads/",
  11636. "license": [
  11637. "MIT"
  11638. ],
  11639. "authors": [
  11640. {
  11641. "name": "Fabien Potencier",
  11642. "email": "fabien@symfony.com"
  11643. },
  11644. {
  11645. "name": "Symfony Community",
  11646. "homepage": "https://symfony.com/contributors"
  11647. }
  11648. ],
  11649. "description": "Symfony BrowserKit Component",
  11650. "homepage": "https://symfony.com",
  11651. "time": "2018-07-26T09:06:28+00:00"
  11652. },
  11653. {
  11654. "name": "symfony/phpunit-bridge",
  11655. "version": "v3.4.17",
  11656. "source": {
  11657. "type": "git",
  11658. "url": "https://github.com/symfony/phpunit-bridge.git",
  11659. "reference": "76e013a98031356604e5a730c9eb22713dc4dda4"
  11660. },
  11661. "dist": {
  11662. "type": "zip",
  11663. "url": "https://api.github.com/repos/symfony/phpunit-bridge/zipball/76e013a98031356604e5a730c9eb22713dc4dda4",
  11664. "reference": "76e013a98031356604e5a730c9eb22713dc4dda4",
  11665. "shasum": ""
  11666. },
  11667. "require": {
  11668. "php": ">=5.3.3"
  11669. },
  11670. "conflict": {
  11671. "phpunit/phpunit": "<4.8.35|<5.4.3,>=5.0"
  11672. },
  11673. "suggest": {
  11674. "ext-zip": "Zip support is required when using bin/simple-phpunit",
  11675. "symfony/debug": "For tracking deprecated interfaces usages at runtime with DebugClassLoader"
  11676. },
  11677. "bin": [
  11678. "bin/simple-phpunit"
  11679. ],
  11680. "type": "symfony-bridge",
  11681. "extra": {
  11682. "branch-alias": {
  11683. "dev-master": "3.4-dev"
  11684. },
  11685. "thanks": {
  11686. "name": "phpunit/phpunit",
  11687. "url": "https://github.com/sebastianbergmann/phpunit"
  11688. }
  11689. },
  11690. "autoload": {
  11691. "files": [
  11692. "bootstrap.php"
  11693. ],
  11694. "psr-4": {
  11695. "Symfony\\Bridge\\PhpUnit\\": ""
  11696. },
  11697. "exclude-from-classmap": [
  11698. "/Tests/"
  11699. ]
  11700. },
  11701. "notification-url": "https://packagist.org/downloads/",
  11702. "license": [
  11703. "MIT"
  11704. ],
  11705. "authors": [
  11706. {
  11707. "name": "Nicolas Grekas",
  11708. "email": "p@tchwork.com"
  11709. },
  11710. {
  11711. "name": "Symfony Community",
  11712. "homepage": "https://symfony.com/contributors"
  11713. }
  11714. ],
  11715. "description": "Symfony PHPUnit Bridge",
  11716. "homepage": "https://symfony.com",
  11717. "time": "2018-10-02T12:28:39+00:00"
  11718. },
  11719. {
  11720. "name": "theseer/tokenizer",
  11721. "version": "1.1.0",
  11722. "source": {
  11723. "type": "git",
  11724. "url": "https://github.com/theseer/tokenizer.git",
  11725. "reference": "cb2f008f3f05af2893a87208fe6a6c4985483f8b"
  11726. },
  11727. "dist": {
  11728. "type": "zip",
  11729. "url": "https://api.github.com/repos/theseer/tokenizer/zipball/cb2f008f3f05af2893a87208fe6a6c4985483f8b",
  11730. "reference": "cb2f008f3f05af2893a87208fe6a6c4985483f8b",
  11731. "shasum": ""
  11732. },
  11733. "require": {
  11734. "ext-dom": "*",
  11735. "ext-tokenizer": "*",
  11736. "ext-xmlwriter": "*",
  11737. "php": "^7.0"
  11738. },
  11739. "type": "library",
  11740. "autoload": {
  11741. "classmap": [
  11742. "src/"
  11743. ]
  11744. },
  11745. "notification-url": "https://packagist.org/downloads/",
  11746. "license": [
  11747. "BSD-3-Clause"
  11748. ],
  11749. "authors": [
  11750. {
  11751. "name": "Arne Blankerts",
  11752. "email": "arne@blankerts.de",
  11753. "role": "Developer"
  11754. }
  11755. ],
  11756. "description": "A small library for converting tokenized PHP source code into XML and potentially other formats",
  11757. "time": "2017-04-07T12:08:54+00:00"
  11758. }
  11759. ],
  11760. "aliases": [],
  11761. "minimum-stability": "dev",
  11762. "stability-flags": {
  11763. "drupal/examples": 20,
  11764. "drupal/synonyms": 20,
  11765. "drupal/advanced_text_formatter": 10,
  11766. "drupal/autocomplete_deluxe": 10,
  11767. "drupal/better_exposed_filters": 15,
  11768. "drupal/better_messages": 15,
  11769. "drupal/bulkdelete": 20,
  11770. "drupal/content_lock": 15,
  11771. "drupal/context": 10,
  11772. "drupal/domain": 15,
  11773. "drupal/domain_alias": 15,
  11774. "drupal/domain_config": 15,
  11775. "drupal/email_registration": 5,
  11776. "drupal/entity_browser_enhanced": 5,
  11777. "drupal/entity_clone": 15,
  11778. "drupal/filefield_sources": 20,
  11779. "drupal/filter_perms": 20,
  11780. "drupal/inline_entity_form": 5,
  11781. "drupal/login_destination": 20,
  11782. "drupal/maillog": 20,
  11783. "drupal/maxlength": 10,
  11784. "drupal/menu_position": 20,
  11785. "drupal/path_alias_xt": 20,
  11786. "drupal/pathologic": 15,
  11787. "drupal/profile": 5,
  11788. "drupal/smtp": 10,
  11789. "drupal/translation_views": 15,
  11790. "drupal/toolbar_themes": 15,
  11791. "drupal/ultimate_cron": 15,
  11792. "drupal/workflow": 20,
  11793. "behat/mink": 20,
  11794. "behat/mink-selenium2-driver": 20
  11795. },
  11796. "prefer-stable": true,
  11797. "prefer-lowest": false,
  11798. "platform": {
  11799. "ext-date": "*",
  11800. "ext-dom": "*",
  11801. "ext-filter": "*",
  11802. "ext-gd": "*",
  11803. "ext-hash": "*",
  11804. "ext-json": "*",
  11805. "ext-pcre": "*",
  11806. "ext-pdo": "*",
  11807. "ext-session": "*",
  11808. "ext-simplexml": "*",
  11809. "ext-spl": "*",
  11810. "ext-tokenizer": "*",
  11811. "ext-xml": "*",
  11812. "php": "^5.5.9|>=7.0.8"
  11813. },
  11814. "platform-dev": []
  11815. }