composer.lock 237 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556155715581559156015611562156315641565156615671568156915701571157215731574157515761577157815791580158115821583158415851586158715881589159015911592159315941595159615971598159916001601160216031604160516061607160816091610161116121613161416151616161716181619162016211622162316241625162616271628162916301631163216331634163516361637163816391640164116421643164416451646164716481649165016511652165316541655165616571658165916601661166216631664166516661667166816691670167116721673167416751676167716781679168016811682168316841685168616871688168916901691169216931694169516961697169816991700170117021703170417051706170717081709171017111712171317141715171617171718171917201721172217231724172517261727172817291730173117321733173417351736173717381739174017411742174317441745174617471748174917501751175217531754175517561757175817591760176117621763176417651766176717681769177017711772177317741775177617771778177917801781178217831784178517861787178817891790179117921793179417951796179717981799180018011802180318041805180618071808180918101811181218131814181518161817181818191820182118221823182418251826182718281829183018311832183318341835183618371838183918401841184218431844184518461847184818491850185118521853185418551856185718581859186018611862186318641865186618671868186918701871187218731874187518761877187818791880188118821883188418851886188718881889189018911892189318941895189618971898189919001901190219031904190519061907190819091910191119121913191419151916191719181919192019211922192319241925192619271928192919301931193219331934193519361937193819391940194119421943194419451946194719481949195019511952195319541955195619571958195919601961196219631964196519661967196819691970197119721973197419751976197719781979198019811982198319841985198619871988198919901991199219931994199519961997199819992000200120022003200420052006200720082009201020112012201320142015201620172018201920202021202220232024202520262027202820292030203120322033203420352036203720382039204020412042204320442045204620472048204920502051205220532054205520562057205820592060206120622063206420652066206720682069207020712072207320742075207620772078207920802081208220832084208520862087208820892090209120922093209420952096209720982099210021012102210321042105210621072108210921102111211221132114211521162117211821192120212121222123212421252126212721282129213021312132213321342135213621372138213921402141214221432144214521462147214821492150215121522153215421552156215721582159216021612162216321642165216621672168216921702171217221732174217521762177217821792180218121822183218421852186218721882189219021912192219321942195219621972198219922002201220222032204220522062207220822092210221122122213221422152216221722182219222022212222222322242225222622272228222922302231223222332234223522362237223822392240224122422243224422452246224722482249225022512252225322542255225622572258225922602261226222632264226522662267226822692270227122722273227422752276227722782279228022812282228322842285228622872288228922902291229222932294229522962297229822992300230123022303230423052306230723082309231023112312231323142315231623172318231923202321232223232324232523262327232823292330233123322333233423352336233723382339234023412342234323442345234623472348234923502351235223532354235523562357235823592360236123622363236423652366236723682369237023712372237323742375237623772378237923802381238223832384238523862387238823892390239123922393239423952396239723982399240024012402240324042405240624072408240924102411241224132414241524162417241824192420242124222423242424252426242724282429243024312432243324342435243624372438243924402441244224432444244524462447244824492450245124522453245424552456245724582459246024612462246324642465246624672468246924702471247224732474247524762477247824792480248124822483248424852486248724882489249024912492249324942495249624972498249925002501250225032504250525062507250825092510251125122513251425152516251725182519252025212522252325242525252625272528252925302531253225332534253525362537253825392540254125422543254425452546254725482549255025512552255325542555255625572558255925602561256225632564256525662567256825692570257125722573257425752576257725782579258025812582258325842585258625872588258925902591259225932594259525962597259825992600260126022603260426052606260726082609261026112612261326142615261626172618261926202621262226232624262526262627262826292630263126322633263426352636263726382639264026412642264326442645264626472648264926502651265226532654265526562657265826592660266126622663266426652666266726682669267026712672267326742675267626772678267926802681268226832684268526862687268826892690269126922693269426952696269726982699270027012702270327042705270627072708270927102711271227132714271527162717271827192720272127222723272427252726272727282729273027312732273327342735273627372738273927402741274227432744274527462747274827492750275127522753275427552756275727582759276027612762276327642765276627672768276927702771277227732774277527762777277827792780278127822783278427852786278727882789279027912792279327942795279627972798279928002801280228032804280528062807280828092810281128122813281428152816281728182819282028212822282328242825282628272828282928302831283228332834283528362837283828392840284128422843284428452846284728482849285028512852285328542855285628572858285928602861286228632864286528662867286828692870287128722873287428752876287728782879288028812882288328842885288628872888288928902891289228932894289528962897289828992900290129022903290429052906290729082909291029112912291329142915291629172918291929202921292229232924292529262927292829292930293129322933293429352936293729382939294029412942294329442945294629472948294929502951295229532954295529562957295829592960296129622963296429652966296729682969297029712972297329742975297629772978297929802981298229832984298529862987298829892990299129922993299429952996299729982999300030013002300330043005300630073008300930103011301230133014301530163017301830193020302130223023302430253026302730283029303030313032303330343035303630373038303930403041304230433044304530463047304830493050305130523053305430553056305730583059306030613062306330643065306630673068306930703071307230733074307530763077307830793080308130823083308430853086308730883089309030913092309330943095309630973098309931003101310231033104310531063107310831093110311131123113311431153116311731183119312031213122312331243125312631273128312931303131313231333134313531363137313831393140314131423143314431453146314731483149315031513152315331543155315631573158315931603161316231633164316531663167316831693170317131723173317431753176317731783179318031813182318331843185318631873188318931903191319231933194319531963197319831993200320132023203320432053206320732083209321032113212321332143215321632173218321932203221322232233224322532263227322832293230323132323233323432353236323732383239324032413242324332443245324632473248324932503251325232533254325532563257325832593260326132623263326432653266326732683269327032713272327332743275327632773278327932803281328232833284328532863287328832893290329132923293329432953296329732983299330033013302330333043305330633073308330933103311331233133314331533163317331833193320332133223323332433253326332733283329333033313332333333343335333633373338333933403341334233433344334533463347334833493350335133523353335433553356335733583359336033613362336333643365336633673368336933703371337233733374337533763377337833793380338133823383338433853386338733883389339033913392339333943395339633973398339934003401340234033404340534063407340834093410341134123413341434153416341734183419342034213422342334243425342634273428342934303431343234333434343534363437343834393440344134423443344434453446344734483449345034513452345334543455345634573458345934603461346234633464346534663467346834693470347134723473347434753476347734783479348034813482348334843485348634873488348934903491349234933494349534963497349834993500350135023503350435053506350735083509351035113512351335143515351635173518351935203521352235233524352535263527352835293530353135323533353435353536353735383539354035413542354335443545354635473548354935503551355235533554355535563557355835593560356135623563356435653566356735683569357035713572357335743575357635773578357935803581358235833584358535863587358835893590359135923593359435953596359735983599360036013602360336043605360636073608360936103611361236133614361536163617361836193620362136223623362436253626362736283629363036313632363336343635363636373638363936403641364236433644364536463647364836493650365136523653365436553656365736583659366036613662366336643665366636673668366936703671367236733674367536763677367836793680368136823683368436853686368736883689369036913692369336943695369636973698369937003701370237033704370537063707370837093710371137123713371437153716371737183719372037213722372337243725372637273728372937303731373237333734373537363737373837393740374137423743374437453746374737483749375037513752375337543755375637573758375937603761376237633764376537663767376837693770377137723773377437753776377737783779378037813782378337843785378637873788378937903791379237933794379537963797379837993800380138023803380438053806380738083809381038113812381338143815381638173818381938203821382238233824382538263827382838293830383138323833383438353836383738383839384038413842384338443845384638473848384938503851385238533854385538563857385838593860386138623863386438653866386738683869387038713872387338743875387638773878387938803881388238833884388538863887388838893890389138923893389438953896389738983899390039013902390339043905390639073908390939103911391239133914391539163917391839193920392139223923392439253926392739283929393039313932393339343935393639373938393939403941394239433944394539463947394839493950395139523953395439553956395739583959396039613962396339643965396639673968396939703971397239733974397539763977397839793980398139823983398439853986398739883989399039913992399339943995399639973998399940004001400240034004400540064007400840094010401140124013401440154016401740184019402040214022402340244025402640274028402940304031403240334034403540364037403840394040404140424043404440454046404740484049405040514052405340544055405640574058405940604061406240634064406540664067406840694070407140724073407440754076407740784079408040814082408340844085408640874088408940904091409240934094409540964097409840994100410141024103410441054106410741084109411041114112411341144115411641174118411941204121412241234124412541264127412841294130413141324133413441354136413741384139414041414142414341444145414641474148414941504151415241534154415541564157415841594160416141624163416441654166416741684169417041714172417341744175417641774178417941804181418241834184418541864187418841894190419141924193419441954196419741984199420042014202420342044205420642074208420942104211421242134214421542164217421842194220422142224223422442254226422742284229423042314232423342344235423642374238423942404241424242434244424542464247424842494250425142524253425442554256425742584259426042614262426342644265426642674268426942704271427242734274427542764277427842794280428142824283428442854286428742884289429042914292429342944295429642974298429943004301430243034304430543064307430843094310431143124313431443154316431743184319432043214322432343244325432643274328432943304331433243334334433543364337433843394340434143424343434443454346434743484349435043514352435343544355435643574358435943604361436243634364436543664367436843694370437143724373437443754376437743784379438043814382438343844385438643874388438943904391439243934394439543964397439843994400440144024403440444054406440744084409441044114412441344144415441644174418441944204421442244234424442544264427442844294430443144324433443444354436443744384439444044414442444344444445444644474448444944504451445244534454445544564457445844594460446144624463446444654466446744684469447044714472447344744475447644774478447944804481448244834484448544864487448844894490449144924493449444954496449744984499450045014502450345044505450645074508450945104511451245134514451545164517451845194520452145224523452445254526452745284529453045314532453345344535453645374538453945404541454245434544454545464547454845494550455145524553455445554556455745584559456045614562456345644565456645674568456945704571457245734574457545764577457845794580458145824583458445854586458745884589459045914592459345944595459645974598459946004601460246034604460546064607460846094610461146124613461446154616461746184619462046214622462346244625462646274628462946304631463246334634463546364637463846394640464146424643464446454646464746484649465046514652465346544655465646574658465946604661466246634664466546664667466846694670467146724673467446754676467746784679468046814682468346844685468646874688468946904691469246934694469546964697469846994700470147024703470447054706470747084709471047114712471347144715471647174718471947204721472247234724472547264727472847294730473147324733473447354736473747384739474047414742474347444745474647474748474947504751475247534754475547564757475847594760476147624763476447654766476747684769477047714772477347744775477647774778477947804781478247834784478547864787478847894790479147924793479447954796479747984799480048014802480348044805480648074808480948104811481248134814481548164817481848194820482148224823482448254826482748284829483048314832483348344835483648374838483948404841484248434844484548464847484848494850485148524853485448554856485748584859486048614862486348644865486648674868486948704871487248734874487548764877487848794880488148824883488448854886488748884889489048914892489348944895489648974898489949004901490249034904490549064907490849094910491149124913491449154916491749184919492049214922492349244925492649274928492949304931493249334934493549364937493849394940494149424943494449454946494749484949495049514952495349544955495649574958495949604961496249634964496549664967496849694970497149724973497449754976497749784979498049814982498349844985498649874988498949904991499249934994499549964997499849995000500150025003500450055006500750085009501050115012501350145015501650175018501950205021502250235024502550265027502850295030503150325033503450355036503750385039504050415042504350445045504650475048504950505051505250535054505550565057505850595060506150625063506450655066506750685069507050715072507350745075507650775078507950805081508250835084508550865087508850895090509150925093509450955096509750985099510051015102510351045105510651075108510951105111511251135114511551165117511851195120512151225123512451255126512751285129513051315132513351345135513651375138513951405141514251435144514551465147514851495150515151525153515451555156515751585159516051615162516351645165516651675168516951705171517251735174517551765177517851795180518151825183518451855186518751885189519051915192519351945195519651975198519952005201520252035204520552065207520852095210521152125213521452155216521752185219522052215222522352245225522652275228522952305231523252335234523552365237523852395240524152425243524452455246524752485249525052515252525352545255525652575258525952605261526252635264526552665267526852695270527152725273527452755276527752785279528052815282528352845285528652875288528952905291529252935294529552965297529852995300530153025303530453055306530753085309531053115312531353145315531653175318531953205321532253235324532553265327532853295330533153325333533453355336533753385339534053415342534353445345534653475348534953505351535253535354535553565357535853595360536153625363536453655366536753685369537053715372537353745375537653775378537953805381538253835384538553865387538853895390539153925393539453955396539753985399540054015402540354045405540654075408540954105411541254135414541554165417541854195420542154225423542454255426542754285429543054315432543354345435543654375438543954405441544254435444544554465447544854495450545154525453545454555456545754585459546054615462546354645465546654675468546954705471547254735474547554765477547854795480548154825483548454855486548754885489549054915492549354945495549654975498549955005501550255035504550555065507550855095510551155125513551455155516551755185519552055215522552355245525552655275528552955305531553255335534553555365537553855395540554155425543554455455546554755485549555055515552555355545555555655575558555955605561556255635564556555665567556855695570557155725573557455755576557755785579558055815582558355845585558655875588558955905591559255935594559555965597559855995600560156025603560456055606560756085609561056115612561356145615561656175618561956205621562256235624562556265627562856295630563156325633563456355636563756385639564056415642564356445645564656475648564956505651565256535654565556565657565856595660566156625663566456655666566756685669567056715672567356745675567656775678567956805681568256835684568556865687568856895690569156925693569456955696569756985699570057015702570357045705570657075708570957105711571257135714571557165717571857195720572157225723572457255726572757285729573057315732573357345735573657375738573957405741574257435744574557465747574857495750575157525753575457555756575757585759576057615762576357645765576657675768576957705771577257735774577557765777577857795780578157825783578457855786578757885789579057915792579357945795579657975798579958005801580258035804580558065807580858095810581158125813581458155816581758185819582058215822582358245825582658275828582958305831583258335834583558365837583858395840584158425843584458455846584758485849585058515852585358545855585658575858585958605861586258635864586558665867586858695870587158725873587458755876587758785879588058815882588358845885588658875888588958905891589258935894589558965897589858995900590159025903590459055906590759085909591059115912591359145915591659175918591959205921592259235924592559265927592859295930593159325933593459355936593759385939594059415942594359445945594659475948594959505951595259535954595559565957595859595960596159625963596459655966596759685969597059715972597359745975597659775978597959805981598259835984598559865987598859895990599159925993599459955996599759985999600060016002600360046005600660076008600960106011601260136014601560166017601860196020602160226023602460256026602760286029603060316032603360346035603660376038603960406041604260436044604560466047604860496050605160526053605460556056605760586059606060616062606360646065606660676068606960706071607260736074607560766077607860796080608160826083608460856086608760886089609060916092609360946095609660976098609961006101610261036104610561066107610861096110611161126113611461156116611761186119612061216122612361246125612661276128612961306131613261336134613561366137613861396140614161426143614461456146614761486149615061516152615361546155615661576158615961606161616261636164616561666167616861696170617161726173617461756176617761786179618061816182618361846185618661876188618961906191619261936194619561966197619861996200620162026203620462056206620762086209621062116212621362146215621662176218621962206221622262236224622562266227622862296230623162326233623462356236623762386239624062416242624362446245624662476248624962506251625262536254625562566257625862596260626162626263626462656266626762686269627062716272627362746275627662776278627962806281628262836284628562866287628862896290629162926293629462956296629762986299630063016302630363046305630663076308630963106311631263136314631563166317631863196320632163226323632463256326632763286329633063316332633363346335633663376338633963406341634263436344634563466347634863496350635163526353635463556356635763586359636063616362636363646365636663676368636963706371637263736374637563766377637863796380638163826383638463856386638763886389639063916392639363946395639663976398639964006401640264036404640564066407640864096410641164126413641464156416641764186419642064216422642364246425642664276428642964306431643264336434643564366437643864396440644164426443644464456446644764486449645064516452645364546455645664576458645964606461646264636464646564666467646864696470647164726473647464756476647764786479648064816482648364846485648664876488648964906491649264936494649564966497649864996500650165026503650465056506650765086509651065116512651365146515651665176518651965206521652265236524652565266527652865296530653165326533653465356536653765386539654065416542654365446545654665476548654965506551655265536554655565566557655865596560656165626563656465656566656765686569657065716572657365746575657665776578657965806581658265836584658565866587658865896590659165926593659465956596659765986599660066016602660366046605660666076608660966106611661266136614661566166617661866196620662166226623662466256626662766286629663066316632663366346635663666376638663966406641664266436644664566466647664866496650665166526653665466556656665766586659666066616662666366646665666666676668666966706671667266736674667566766677667866796680668166826683668466856686668766886689669066916692669366946695669666976698669967006701670267036704670567066707670867096710671167126713671467156716671767186719672067216722672367246725672667276728672967306731673267336734673567366737673867396740674167426743674467456746674767486749675067516752675367546755675667576758675967606761676267636764
  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#composer-lock-the-lock-file",
  5. "This file is @generated automatically"
  6. ],
  7. "content-hash": "2e309f25b806ce0b7766c9beb0437b9e",
  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.23.2",
  128. "source": {
  129. "type": "git",
  130. "url": "https://github.com/Chi-teck/drupal-code-generator.git",
  131. "reference": "b157b38c8c148c67d5b80c7c349b1a446115ea0e"
  132. },
  133. "dist": {
  134. "type": "zip",
  135. "url": "https://api.github.com/repos/Chi-teck/drupal-code-generator/zipball/b157b38c8c148c67d5b80c7c349b1a446115ea0e",
  136. "reference": "b157b38c8c148c67d5b80c7c349b1a446115ea0e",
  137. "shasum": ""
  138. },
  139. "require": {
  140. "php": ">=5.5.9",
  141. "symfony/console": "~2.7|^3",
  142. "symfony/filesystem": "~2.7|^3",
  143. "twig/twig": "^1.23.1"
  144. },
  145. "bin": [
  146. "bin/dcg"
  147. ],
  148. "type": "library",
  149. "autoload": {
  150. "files": [
  151. "src/bootstrap.php"
  152. ],
  153. "psr-4": {
  154. "DrupalCodeGenerator\\": "src"
  155. }
  156. },
  157. "notification-url": "https://packagist.org/downloads/",
  158. "license": [
  159. "GPL-2.0-or-later"
  160. ],
  161. "description": "Drupal code generator",
  162. "time": "2018-03-03T04:17:26+00:00"
  163. },
  164. {
  165. "name": "composer/installers",
  166. "version": "v1.5.0",
  167. "source": {
  168. "type": "git",
  169. "url": "https://github.com/composer/installers.git",
  170. "reference": "049797d727261bf27f2690430d935067710049c2"
  171. },
  172. "dist": {
  173. "type": "zip",
  174. "url": "https://api.github.com/repos/composer/installers/zipball/049797d727261bf27f2690430d935067710049c2",
  175. "reference": "049797d727261bf27f2690430d935067710049c2",
  176. "shasum": ""
  177. },
  178. "require": {
  179. "composer-plugin-api": "^1.0"
  180. },
  181. "replace": {
  182. "roundcube/plugin-installer": "*",
  183. "shama/baton": "*"
  184. },
  185. "require-dev": {
  186. "composer/composer": "1.0.*@dev",
  187. "phpunit/phpunit": "^4.8.36"
  188. },
  189. "type": "composer-plugin",
  190. "extra": {
  191. "class": "Composer\\Installers\\Plugin",
  192. "branch-alias": {
  193. "dev-master": "1.0-dev"
  194. }
  195. },
  196. "autoload": {
  197. "psr-4": {
  198. "Composer\\Installers\\": "src/Composer/Installers"
  199. }
  200. },
  201. "notification-url": "https://packagist.org/downloads/",
  202. "license": [
  203. "MIT"
  204. ],
  205. "authors": [
  206. {
  207. "name": "Kyle Robinson Young",
  208. "email": "kyle@dontkry.com",
  209. "homepage": "https://github.com/shama"
  210. }
  211. ],
  212. "description": "A multi-framework Composer library installer",
  213. "homepage": "https://composer.github.io/installers/",
  214. "keywords": [
  215. "Craft",
  216. "Dolibarr",
  217. "Eliasis",
  218. "Hurad",
  219. "ImageCMS",
  220. "Kanboard",
  221. "Lan Management System",
  222. "MODX Evo",
  223. "Mautic",
  224. "Maya",
  225. "OXID",
  226. "Plentymarkets",
  227. "Porto",
  228. "RadPHP",
  229. "SMF",
  230. "Thelia",
  231. "WolfCMS",
  232. "agl",
  233. "aimeos",
  234. "annotatecms",
  235. "attogram",
  236. "bitrix",
  237. "cakephp",
  238. "chef",
  239. "cockpit",
  240. "codeigniter",
  241. "concrete5",
  242. "croogo",
  243. "dokuwiki",
  244. "drupal",
  245. "eZ Platform",
  246. "elgg",
  247. "expressionengine",
  248. "fuelphp",
  249. "grav",
  250. "installer",
  251. "itop",
  252. "joomla",
  253. "kohana",
  254. "laravel",
  255. "lavalite",
  256. "lithium",
  257. "magento",
  258. "majima",
  259. "mako",
  260. "mediawiki",
  261. "modulework",
  262. "modx",
  263. "moodle",
  264. "osclass",
  265. "phpbb",
  266. "piwik",
  267. "ppi",
  268. "puppet",
  269. "pxcms",
  270. "reindex",
  271. "roundcube",
  272. "shopware",
  273. "silverstripe",
  274. "sydes",
  275. "symfony",
  276. "typo3",
  277. "wordpress",
  278. "yawik",
  279. "zend",
  280. "zikula"
  281. ],
  282. "time": "2017-12-29T09:13:20+00:00"
  283. },
  284. {
  285. "name": "composer/semver",
  286. "version": "1.4.2",
  287. "source": {
  288. "type": "git",
  289. "url": "https://github.com/composer/semver.git",
  290. "reference": "c7cb9a2095a074d131b65a8a0cd294479d785573"
  291. },
  292. "dist": {
  293. "type": "zip",
  294. "url": "https://api.github.com/repos/composer/semver/zipball/c7cb9a2095a074d131b65a8a0cd294479d785573",
  295. "reference": "c7cb9a2095a074d131b65a8a0cd294479d785573",
  296. "shasum": ""
  297. },
  298. "require": {
  299. "php": "^5.3.2 || ^7.0"
  300. },
  301. "require-dev": {
  302. "phpunit/phpunit": "^4.5 || ^5.0.5",
  303. "phpunit/phpunit-mock-objects": "2.3.0 || ^3.0"
  304. },
  305. "type": "library",
  306. "extra": {
  307. "branch-alias": {
  308. "dev-master": "1.x-dev"
  309. }
  310. },
  311. "autoload": {
  312. "psr-4": {
  313. "Composer\\Semver\\": "src"
  314. }
  315. },
  316. "notification-url": "https://packagist.org/downloads/",
  317. "license": [
  318. "MIT"
  319. ],
  320. "authors": [
  321. {
  322. "name": "Nils Adermann",
  323. "email": "naderman@naderman.de",
  324. "homepage": "http://www.naderman.de"
  325. },
  326. {
  327. "name": "Jordi Boggiano",
  328. "email": "j.boggiano@seld.be",
  329. "homepage": "http://seld.be"
  330. },
  331. {
  332. "name": "Rob Bast",
  333. "email": "rob.bast@gmail.com",
  334. "homepage": "http://robbast.nl"
  335. }
  336. ],
  337. "description": "Semver library that offers utilities, version constraint parsing and validation.",
  338. "keywords": [
  339. "semantic",
  340. "semver",
  341. "validation",
  342. "versioning"
  343. ],
  344. "time": "2016-08-30T16:08:34+00:00"
  345. },
  346. {
  347. "name": "consolidation/annotated-command",
  348. "version": "2.8.3",
  349. "source": {
  350. "type": "git",
  351. "url": "https://github.com/consolidation/annotated-command.git",
  352. "reference": "8f8f5da2ca06fbd3a85f7d551c49f844b7c59437"
  353. },
  354. "dist": {
  355. "type": "zip",
  356. "url": "https://api.github.com/repos/consolidation/annotated-command/zipball/8f8f5da2ca06fbd3a85f7d551c49f844b7c59437",
  357. "reference": "8f8f5da2ca06fbd3a85f7d551c49f844b7c59437",
  358. "shasum": ""
  359. },
  360. "require": {
  361. "consolidation/output-formatters": "^3.1.12",
  362. "php": ">=5.4.0",
  363. "psr/log": "^1",
  364. "symfony/console": "^2.8|^3|^4",
  365. "symfony/event-dispatcher": "^2.5|^3|^4",
  366. "symfony/finder": "^2.5|^3|^4"
  367. },
  368. "require-dev": {
  369. "greg-1-anderson/composer-test-scenarios": "^1",
  370. "phpunit/phpunit": "^4.8",
  371. "satooshi/php-coveralls": "^1.0.2 | dev-master",
  372. "squizlabs/php_codesniffer": "^2.7"
  373. },
  374. "type": "library",
  375. "extra": {
  376. "branch-alias": {
  377. "dev-master": "2.x-dev"
  378. }
  379. },
  380. "autoload": {
  381. "psr-4": {
  382. "Consolidation\\AnnotatedCommand\\": "src"
  383. }
  384. },
  385. "notification-url": "https://packagist.org/downloads/",
  386. "license": [
  387. "MIT"
  388. ],
  389. "authors": [
  390. {
  391. "name": "Greg Anderson",
  392. "email": "greg.1.anderson@greenknowe.org"
  393. }
  394. ],
  395. "description": "Initialize Symfony Console commands from annotated command class methods.",
  396. "time": "2018-02-23T16:32:04+00:00"
  397. },
  398. {
  399. "name": "consolidation/config",
  400. "version": "1.0.9",
  401. "source": {
  402. "type": "git",
  403. "url": "https://github.com/consolidation/config.git",
  404. "reference": "34ca8d7c1ee60a7b591b10617114cf1210a2e92c"
  405. },
  406. "dist": {
  407. "type": "zip",
  408. "url": "https://api.github.com/repos/consolidation/config/zipball/34ca8d7c1ee60a7b591b10617114cf1210a2e92c",
  409. "reference": "34ca8d7c1ee60a7b591b10617114cf1210a2e92c",
  410. "shasum": ""
  411. },
  412. "require": {
  413. "dflydev/dot-access-data": "^1.1.0",
  414. "grasmash/expander": "^1",
  415. "php": ">=5.4.0"
  416. },
  417. "require-dev": {
  418. "greg-1-anderson/composer-test-scenarios": "^1",
  419. "phpunit/phpunit": "^4",
  420. "satooshi/php-coveralls": "^1.0",
  421. "squizlabs/php_codesniffer": "2.*",
  422. "symfony/console": "^2.5|^3|^4",
  423. "symfony/yaml": "^2.8.11|^3|^4"
  424. },
  425. "suggest": {
  426. "symfony/yaml": "Required to use Consolidation\\Config\\Loader\\YamlConfigLoader"
  427. },
  428. "type": "library",
  429. "extra": {
  430. "branch-alias": {
  431. "dev-master": "1.x-dev"
  432. }
  433. },
  434. "autoload": {
  435. "psr-4": {
  436. "Consolidation\\Config\\": "src"
  437. }
  438. },
  439. "notification-url": "https://packagist.org/downloads/",
  440. "license": [
  441. "MIT"
  442. ],
  443. "authors": [
  444. {
  445. "name": "Greg Anderson",
  446. "email": "greg.1.anderson@greenknowe.org"
  447. }
  448. ],
  449. "description": "Provide configuration services for a commandline tool.",
  450. "time": "2017-12-22T17:28:19+00:00"
  451. },
  452. {
  453. "name": "consolidation/log",
  454. "version": "1.0.5",
  455. "source": {
  456. "type": "git",
  457. "url": "https://github.com/consolidation/log.git",
  458. "reference": "dbc7c535f319a4a2d5a5077738f8eb7c10df8821"
  459. },
  460. "dist": {
  461. "type": "zip",
  462. "url": "https://api.github.com/repos/consolidation/log/zipball/dbc7c535f319a4a2d5a5077738f8eb7c10df8821",
  463. "reference": "dbc7c535f319a4a2d5a5077738f8eb7c10df8821",
  464. "shasum": ""
  465. },
  466. "require": {
  467. "php": ">=5.5.0",
  468. "psr/log": "~1.0",
  469. "symfony/console": "^2.8|^3|^4"
  470. },
  471. "require-dev": {
  472. "phpunit/phpunit": "4.*",
  473. "satooshi/php-coveralls": "dev-master",
  474. "squizlabs/php_codesniffer": "2.*"
  475. },
  476. "type": "library",
  477. "extra": {
  478. "branch-alias": {
  479. "dev-master": "1.x-dev"
  480. }
  481. },
  482. "autoload": {
  483. "psr-4": {
  484. "Consolidation\\Log\\": "src"
  485. }
  486. },
  487. "notification-url": "https://packagist.org/downloads/",
  488. "license": [
  489. "MIT"
  490. ],
  491. "authors": [
  492. {
  493. "name": "Greg Anderson",
  494. "email": "greg.1.anderson@greenknowe.org"
  495. }
  496. ],
  497. "description": "Improved Psr-3 / Psr\\Log logger based on Symfony Console components.",
  498. "time": "2017-11-29T01:44:16+00:00"
  499. },
  500. {
  501. "name": "consolidation/output-formatters",
  502. "version": "3.1.13",
  503. "source": {
  504. "type": "git",
  505. "url": "https://github.com/consolidation/output-formatters.git",
  506. "reference": "3188461e965b32148c8fb85261833b2b72d34b8c"
  507. },
  508. "dist": {
  509. "type": "zip",
  510. "url": "https://api.github.com/repos/consolidation/output-formatters/zipball/3188461e965b32148c8fb85261833b2b72d34b8c",
  511. "reference": "3188461e965b32148c8fb85261833b2b72d34b8c",
  512. "shasum": ""
  513. },
  514. "require": {
  515. "php": ">=5.4.0",
  516. "symfony/console": "^2.8|^3|^4",
  517. "symfony/finder": "^2.5|^3|^4"
  518. },
  519. "require-dev": {
  520. "phpunit/phpunit": "^4.8",
  521. "satooshi/php-coveralls": "^1.0.2 | dev-master",
  522. "squizlabs/php_codesniffer": "^2.7",
  523. "victorjonsson/markdowndocs": "^1.3"
  524. },
  525. "type": "library",
  526. "extra": {
  527. "branch-alias": {
  528. "dev-master": "3.x-dev"
  529. }
  530. },
  531. "autoload": {
  532. "psr-4": {
  533. "Consolidation\\OutputFormatters\\": "src"
  534. }
  535. },
  536. "notification-url": "https://packagist.org/downloads/",
  537. "license": [
  538. "MIT"
  539. ],
  540. "authors": [
  541. {
  542. "name": "Greg Anderson",
  543. "email": "greg.1.anderson@greenknowe.org"
  544. }
  545. ],
  546. "description": "Format text by applying transformations provided by plug-in formatters.",
  547. "time": "2017-11-29T15:25:38+00:00"
  548. },
  549. {
  550. "name": "consolidation/robo",
  551. "version": "1.2.2",
  552. "source": {
  553. "type": "git",
  554. "url": "https://github.com/consolidation/Robo.git",
  555. "reference": "9ef2724f72feb017517a755564516dbde99e15e4"
  556. },
  557. "dist": {
  558. "type": "zip",
  559. "url": "https://api.github.com/repos/consolidation/Robo/zipball/9ef2724f72feb017517a755564516dbde99e15e4",
  560. "reference": "9ef2724f72feb017517a755564516dbde99e15e4",
  561. "shasum": ""
  562. },
  563. "require": {
  564. "consolidation/annotated-command": "^2.8.2",
  565. "consolidation/config": "^1.0.1",
  566. "consolidation/log": "~1",
  567. "consolidation/output-formatters": "^3.1.13",
  568. "grasmash/yaml-expander": "^1.3",
  569. "league/container": "^2.2",
  570. "php": ">=5.5.0",
  571. "symfony/console": "^2.8|^3|^4",
  572. "symfony/event-dispatcher": "^2.5|^3|^4",
  573. "symfony/filesystem": "^2.5|^3|^4",
  574. "symfony/finder": "^2.5|^3|^4",
  575. "symfony/process": "^2.5|^3|^4"
  576. },
  577. "replace": {
  578. "codegyre/robo": "< 1.0"
  579. },
  580. "require-dev": {
  581. "codeception/aspect-mock": "^1|^2.1.1",
  582. "codeception/base": "^2.3.7",
  583. "codeception/verify": "^0.3.2",
  584. "goaop/framework": "~2.1.2",
  585. "greg-1-anderson/composer-test-scenarios": "^1",
  586. "natxet/cssmin": "3.0.4",
  587. "patchwork/jsqueeze": "~2",
  588. "pear/archive_tar": "^1.4.2",
  589. "phpunit/php-code-coverage": "~2|~4",
  590. "satooshi/php-coveralls": "^2",
  591. "squizlabs/php_codesniffer": "^2.8"
  592. },
  593. "suggest": {
  594. "henrikbjorn/lurker": "For monitoring filesystem changes in taskWatch",
  595. "natxet/CssMin": "For minifying CSS files in taskMinify",
  596. "patchwork/jsqueeze": "For minifying JS files in taskMinify",
  597. "pear/archive_tar": "Allows tar archives to be created and extracted in taskPack and taskExtract, respectively."
  598. },
  599. "bin": [
  600. "robo"
  601. ],
  602. "type": "library",
  603. "extra": {
  604. "branch-alias": {
  605. "dev-master": "1.x-dev",
  606. "dev-state": "1.x-dev"
  607. }
  608. },
  609. "autoload": {
  610. "psr-4": {
  611. "Robo\\": "src"
  612. }
  613. },
  614. "notification-url": "https://packagist.org/downloads/",
  615. "license": [
  616. "MIT"
  617. ],
  618. "authors": [
  619. {
  620. "name": "Davert",
  621. "email": "davert.php@resend.cc"
  622. }
  623. ],
  624. "description": "Modern task runner",
  625. "time": "2018-02-28T01:03:54+00:00"
  626. },
  627. {
  628. "name": "container-interop/container-interop",
  629. "version": "1.2.0",
  630. "source": {
  631. "type": "git",
  632. "url": "https://github.com/container-interop/container-interop.git",
  633. "reference": "79cbf1341c22ec75643d841642dd5d6acd83bdb8"
  634. },
  635. "dist": {
  636. "type": "zip",
  637. "url": "https://api.github.com/repos/container-interop/container-interop/zipball/79cbf1341c22ec75643d841642dd5d6acd83bdb8",
  638. "reference": "79cbf1341c22ec75643d841642dd5d6acd83bdb8",
  639. "shasum": ""
  640. },
  641. "require": {
  642. "psr/container": "^1.0"
  643. },
  644. "type": "library",
  645. "autoload": {
  646. "psr-4": {
  647. "Interop\\Container\\": "src/Interop/Container/"
  648. }
  649. },
  650. "notification-url": "https://packagist.org/downloads/",
  651. "license": [
  652. "MIT"
  653. ],
  654. "description": "Promoting the interoperability of container objects (DIC, SL, etc.)",
  655. "homepage": "https://github.com/container-interop/container-interop",
  656. "time": "2017-02-14T19:40:03+00:00"
  657. },
  658. {
  659. "name": "dflydev/dot-access-configuration",
  660. "version": "v1.0.2",
  661. "source": {
  662. "type": "git",
  663. "url": "https://github.com/dflydev/dflydev-dot-access-configuration.git",
  664. "reference": "ae6e7138b1d9063d343322cca63994ee1ac5161d"
  665. },
  666. "dist": {
  667. "type": "zip",
  668. "url": "https://api.github.com/repos/dflydev/dflydev-dot-access-configuration/zipball/ae6e7138b1d9063d343322cca63994ee1ac5161d",
  669. "reference": "ae6e7138b1d9063d343322cca63994ee1ac5161d",
  670. "shasum": ""
  671. },
  672. "require": {
  673. "dflydev/dot-access-data": "1.*",
  674. "dflydev/placeholder-resolver": "1.*",
  675. "php": ">=5.3.2"
  676. },
  677. "require-dev": {
  678. "symfony/yaml": "~2.1"
  679. },
  680. "suggest": {
  681. "symfony/yaml": "Required for using the YAML Configuration Builders"
  682. },
  683. "type": "library",
  684. "extra": {
  685. "branch-alias": {
  686. "dev-master": "1.0-dev"
  687. }
  688. },
  689. "autoload": {
  690. "psr-0": {
  691. "Dflydev\\DotAccessConfiguration": "src"
  692. }
  693. },
  694. "notification-url": "https://packagist.org/downloads/",
  695. "license": [
  696. "MIT"
  697. ],
  698. "authors": [
  699. {
  700. "name": "Dragonfly Development Inc.",
  701. "email": "info@dflydev.com",
  702. "homepage": "http://dflydev.com"
  703. },
  704. {
  705. "name": "Beau Simensen",
  706. "email": "beau@dflydev.com",
  707. "homepage": "http://beausimensen.com"
  708. }
  709. ],
  710. "description": "Given a deep data structure representing a configuration, access configuration by dot notation.",
  711. "homepage": "https://github.com/dflydev/dflydev-dot-access-configuration",
  712. "keywords": [
  713. "config",
  714. "configuration"
  715. ],
  716. "time": "2016-12-12T17:43:40+00:00"
  717. },
  718. {
  719. "name": "dflydev/dot-access-data",
  720. "version": "v1.1.0",
  721. "source": {
  722. "type": "git",
  723. "url": "https://github.com/dflydev/dflydev-dot-access-data.git",
  724. "reference": "3fbd874921ab2c041e899d044585a2ab9795df8a"
  725. },
  726. "dist": {
  727. "type": "zip",
  728. "url": "https://api.github.com/repos/dflydev/dflydev-dot-access-data/zipball/3fbd874921ab2c041e899d044585a2ab9795df8a",
  729. "reference": "3fbd874921ab2c041e899d044585a2ab9795df8a",
  730. "shasum": ""
  731. },
  732. "require": {
  733. "php": ">=5.3.2"
  734. },
  735. "type": "library",
  736. "extra": {
  737. "branch-alias": {
  738. "dev-master": "1.0-dev"
  739. }
  740. },
  741. "autoload": {
  742. "psr-0": {
  743. "Dflydev\\DotAccessData": "src"
  744. }
  745. },
  746. "notification-url": "https://packagist.org/downloads/",
  747. "license": [
  748. "MIT"
  749. ],
  750. "authors": [
  751. {
  752. "name": "Dragonfly Development Inc.",
  753. "email": "info@dflydev.com",
  754. "homepage": "http://dflydev.com"
  755. },
  756. {
  757. "name": "Beau Simensen",
  758. "email": "beau@dflydev.com",
  759. "homepage": "http://beausimensen.com"
  760. },
  761. {
  762. "name": "Carlos Frutos",
  763. "email": "carlos@kiwing.it",
  764. "homepage": "https://github.com/cfrutos"
  765. }
  766. ],
  767. "description": "Given a deep data structure, access data by dot notation.",
  768. "homepage": "https://github.com/dflydev/dflydev-dot-access-data",
  769. "keywords": [
  770. "access",
  771. "data",
  772. "dot",
  773. "notation"
  774. ],
  775. "time": "2017-01-20T21:14:22+00:00"
  776. },
  777. {
  778. "name": "dflydev/placeholder-resolver",
  779. "version": "v1.0.2",
  780. "source": {
  781. "type": "git",
  782. "url": "https://github.com/dflydev/dflydev-placeholder-resolver.git",
  783. "reference": "c498d0cae91b1bb36cc7d60906dab8e62bb7c356"
  784. },
  785. "dist": {
  786. "type": "zip",
  787. "url": "https://api.github.com/repos/dflydev/dflydev-placeholder-resolver/zipball/c498d0cae91b1bb36cc7d60906dab8e62bb7c356",
  788. "reference": "c498d0cae91b1bb36cc7d60906dab8e62bb7c356",
  789. "shasum": ""
  790. },
  791. "require": {
  792. "php": ">=5.3.2"
  793. },
  794. "type": "library",
  795. "extra": {
  796. "branch-alias": {
  797. "dev-master": "1.0-dev"
  798. }
  799. },
  800. "autoload": {
  801. "psr-0": {
  802. "Dflydev\\PlaceholderResolver": "src"
  803. }
  804. },
  805. "notification-url": "https://packagist.org/downloads/",
  806. "license": [
  807. "MIT"
  808. ],
  809. "authors": [
  810. {
  811. "name": "Dragonfly Development Inc.",
  812. "email": "info@dflydev.com",
  813. "homepage": "http://dflydev.com"
  814. },
  815. {
  816. "name": "Beau Simensen",
  817. "email": "beau@dflydev.com",
  818. "homepage": "http://beausimensen.com"
  819. }
  820. ],
  821. "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.",
  822. "homepage": "https://github.com/dflydev/dflydev-placeholder-resolver",
  823. "keywords": [
  824. "placeholder",
  825. "resolver"
  826. ],
  827. "time": "2012-10-28T21:08:28+00:00"
  828. },
  829. {
  830. "name": "dnoegel/php-xdg-base-dir",
  831. "version": "0.1",
  832. "source": {
  833. "type": "git",
  834. "url": "https://github.com/dnoegel/php-xdg-base-dir.git",
  835. "reference": "265b8593498b997dc2d31e75b89f053b5cc9621a"
  836. },
  837. "dist": {
  838. "type": "zip",
  839. "url": "https://api.github.com/repos/dnoegel/php-xdg-base-dir/zipball/265b8593498b997dc2d31e75b89f053b5cc9621a",
  840. "reference": "265b8593498b997dc2d31e75b89f053b5cc9621a",
  841. "shasum": ""
  842. },
  843. "require": {
  844. "php": ">=5.3.2"
  845. },
  846. "require-dev": {
  847. "phpunit/phpunit": "@stable"
  848. },
  849. "type": "project",
  850. "autoload": {
  851. "psr-4": {
  852. "XdgBaseDir\\": "src/"
  853. }
  854. },
  855. "notification-url": "https://packagist.org/downloads/",
  856. "license": [
  857. "MIT"
  858. ],
  859. "description": "implementation of xdg base directory specification for php",
  860. "time": "2014-10-24T07:27:01+00:00"
  861. },
  862. {
  863. "name": "doctrine/annotations",
  864. "version": "v1.2.7",
  865. "source": {
  866. "type": "git",
  867. "url": "https://github.com/doctrine/annotations.git",
  868. "reference": "f25c8aab83e0c3e976fd7d19875f198ccf2f7535"
  869. },
  870. "dist": {
  871. "type": "zip",
  872. "url": "https://api.github.com/repos/doctrine/annotations/zipball/f25c8aab83e0c3e976fd7d19875f198ccf2f7535",
  873. "reference": "f25c8aab83e0c3e976fd7d19875f198ccf2f7535",
  874. "shasum": ""
  875. },
  876. "require": {
  877. "doctrine/lexer": "1.*",
  878. "php": ">=5.3.2"
  879. },
  880. "require-dev": {
  881. "doctrine/cache": "1.*",
  882. "phpunit/phpunit": "4.*"
  883. },
  884. "type": "library",
  885. "extra": {
  886. "branch-alias": {
  887. "dev-master": "1.3.x-dev"
  888. }
  889. },
  890. "autoload": {
  891. "psr-0": {
  892. "Doctrine\\Common\\Annotations\\": "lib/"
  893. }
  894. },
  895. "notification-url": "https://packagist.org/downloads/",
  896. "license": [
  897. "MIT"
  898. ],
  899. "authors": [
  900. {
  901. "name": "Roman Borschel",
  902. "email": "roman@code-factory.org"
  903. },
  904. {
  905. "name": "Benjamin Eberlei",
  906. "email": "kontakt@beberlei.de"
  907. },
  908. {
  909. "name": "Guilherme Blanco",
  910. "email": "guilhermeblanco@gmail.com"
  911. },
  912. {
  913. "name": "Jonathan Wage",
  914. "email": "jonwage@gmail.com"
  915. },
  916. {
  917. "name": "Johannes Schmitt",
  918. "email": "schmittjoh@gmail.com"
  919. }
  920. ],
  921. "description": "Docblock Annotations Parser",
  922. "homepage": "http://www.doctrine-project.org",
  923. "keywords": [
  924. "annotations",
  925. "docblock",
  926. "parser"
  927. ],
  928. "time": "2015-08-31T12:32:49+00:00"
  929. },
  930. {
  931. "name": "doctrine/cache",
  932. "version": "v1.6.2",
  933. "source": {
  934. "type": "git",
  935. "url": "https://github.com/doctrine/cache.git",
  936. "reference": "eb152c5100571c7a45470ff2a35095ab3f3b900b"
  937. },
  938. "dist": {
  939. "type": "zip",
  940. "url": "https://api.github.com/repos/doctrine/cache/zipball/eb152c5100571c7a45470ff2a35095ab3f3b900b",
  941. "reference": "eb152c5100571c7a45470ff2a35095ab3f3b900b",
  942. "shasum": ""
  943. },
  944. "require": {
  945. "php": "~5.5|~7.0"
  946. },
  947. "conflict": {
  948. "doctrine/common": ">2.2,<2.4"
  949. },
  950. "require-dev": {
  951. "phpunit/phpunit": "~4.8|~5.0",
  952. "predis/predis": "~1.0",
  953. "satooshi/php-coveralls": "~0.6"
  954. },
  955. "type": "library",
  956. "extra": {
  957. "branch-alias": {
  958. "dev-master": "1.6.x-dev"
  959. }
  960. },
  961. "autoload": {
  962. "psr-4": {
  963. "Doctrine\\Common\\Cache\\": "lib/Doctrine/Common/Cache"
  964. }
  965. },
  966. "notification-url": "https://packagist.org/downloads/",
  967. "license": [
  968. "MIT"
  969. ],
  970. "authors": [
  971. {
  972. "name": "Roman Borschel",
  973. "email": "roman@code-factory.org"
  974. },
  975. {
  976. "name": "Benjamin Eberlei",
  977. "email": "kontakt@beberlei.de"
  978. },
  979. {
  980. "name": "Guilherme Blanco",
  981. "email": "guilhermeblanco@gmail.com"
  982. },
  983. {
  984. "name": "Jonathan Wage",
  985. "email": "jonwage@gmail.com"
  986. },
  987. {
  988. "name": "Johannes Schmitt",
  989. "email": "schmittjoh@gmail.com"
  990. }
  991. ],
  992. "description": "Caching library offering an object-oriented API for many cache backends",
  993. "homepage": "http://www.doctrine-project.org",
  994. "keywords": [
  995. "cache",
  996. "caching"
  997. ],
  998. "time": "2017-07-22T12:49:21+00:00"
  999. },
  1000. {
  1001. "name": "doctrine/collections",
  1002. "version": "v1.4.0",
  1003. "source": {
  1004. "type": "git",
  1005. "url": "https://github.com/doctrine/collections.git",
  1006. "reference": "1a4fb7e902202c33cce8c55989b945612943c2ba"
  1007. },
  1008. "dist": {
  1009. "type": "zip",
  1010. "url": "https://api.github.com/repos/doctrine/collections/zipball/1a4fb7e902202c33cce8c55989b945612943c2ba",
  1011. "reference": "1a4fb7e902202c33cce8c55989b945612943c2ba",
  1012. "shasum": ""
  1013. },
  1014. "require": {
  1015. "php": "^5.6 || ^7.0"
  1016. },
  1017. "require-dev": {
  1018. "doctrine/coding-standard": "~0.1@dev",
  1019. "phpunit/phpunit": "^5.7"
  1020. },
  1021. "type": "library",
  1022. "extra": {
  1023. "branch-alias": {
  1024. "dev-master": "1.3.x-dev"
  1025. }
  1026. },
  1027. "autoload": {
  1028. "psr-0": {
  1029. "Doctrine\\Common\\Collections\\": "lib/"
  1030. }
  1031. },
  1032. "notification-url": "https://packagist.org/downloads/",
  1033. "license": [
  1034. "MIT"
  1035. ],
  1036. "authors": [
  1037. {
  1038. "name": "Roman Borschel",
  1039. "email": "roman@code-factory.org"
  1040. },
  1041. {
  1042. "name": "Benjamin Eberlei",
  1043. "email": "kontakt@beberlei.de"
  1044. },
  1045. {
  1046. "name": "Guilherme Blanco",
  1047. "email": "guilhermeblanco@gmail.com"
  1048. },
  1049. {
  1050. "name": "Jonathan Wage",
  1051. "email": "jonwage@gmail.com"
  1052. },
  1053. {
  1054. "name": "Johannes Schmitt",
  1055. "email": "schmittjoh@gmail.com"
  1056. }
  1057. ],
  1058. "description": "Collections Abstraction library",
  1059. "homepage": "http://www.doctrine-project.org",
  1060. "keywords": [
  1061. "array",
  1062. "collections",
  1063. "iterator"
  1064. ],
  1065. "time": "2017-01-03T10:49:41+00:00"
  1066. },
  1067. {
  1068. "name": "doctrine/common",
  1069. "version": "v2.7.3",
  1070. "source": {
  1071. "type": "git",
  1072. "url": "https://github.com/doctrine/common.git",
  1073. "reference": "4acb8f89626baafede6ee5475bc5844096eba8a9"
  1074. },
  1075. "dist": {
  1076. "type": "zip",
  1077. "url": "https://api.github.com/repos/doctrine/common/zipball/4acb8f89626baafede6ee5475bc5844096eba8a9",
  1078. "reference": "4acb8f89626baafede6ee5475bc5844096eba8a9",
  1079. "shasum": ""
  1080. },
  1081. "require": {
  1082. "doctrine/annotations": "1.*",
  1083. "doctrine/cache": "1.*",
  1084. "doctrine/collections": "1.*",
  1085. "doctrine/inflector": "1.*",
  1086. "doctrine/lexer": "1.*",
  1087. "php": "~5.6|~7.0"
  1088. },
  1089. "require-dev": {
  1090. "phpunit/phpunit": "^5.4.6"
  1091. },
  1092. "type": "library",
  1093. "extra": {
  1094. "branch-alias": {
  1095. "dev-master": "2.7.x-dev"
  1096. }
  1097. },
  1098. "autoload": {
  1099. "psr-4": {
  1100. "Doctrine\\Common\\": "lib/Doctrine/Common"
  1101. }
  1102. },
  1103. "notification-url": "https://packagist.org/downloads/",
  1104. "license": [
  1105. "MIT"
  1106. ],
  1107. "authors": [
  1108. {
  1109. "name": "Roman Borschel",
  1110. "email": "roman@code-factory.org"
  1111. },
  1112. {
  1113. "name": "Benjamin Eberlei",
  1114. "email": "kontakt@beberlei.de"
  1115. },
  1116. {
  1117. "name": "Guilherme Blanco",
  1118. "email": "guilhermeblanco@gmail.com"
  1119. },
  1120. {
  1121. "name": "Jonathan Wage",
  1122. "email": "jonwage@gmail.com"
  1123. },
  1124. {
  1125. "name": "Johannes Schmitt",
  1126. "email": "schmittjoh@gmail.com"
  1127. }
  1128. ],
  1129. "description": "Common Library for Doctrine projects",
  1130. "homepage": "http://www.doctrine-project.org",
  1131. "keywords": [
  1132. "annotations",
  1133. "collections",
  1134. "eventmanager",
  1135. "persistence",
  1136. "spl"
  1137. ],
  1138. "time": "2017-07-22T08:35:12+00:00"
  1139. },
  1140. {
  1141. "name": "doctrine/inflector",
  1142. "version": "v1.2.0",
  1143. "source": {
  1144. "type": "git",
  1145. "url": "https://github.com/doctrine/inflector.git",
  1146. "reference": "e11d84c6e018beedd929cff5220969a3c6d1d462"
  1147. },
  1148. "dist": {
  1149. "type": "zip",
  1150. "url": "https://api.github.com/repos/doctrine/inflector/zipball/e11d84c6e018beedd929cff5220969a3c6d1d462",
  1151. "reference": "e11d84c6e018beedd929cff5220969a3c6d1d462",
  1152. "shasum": ""
  1153. },
  1154. "require": {
  1155. "php": "^7.0"
  1156. },
  1157. "require-dev": {
  1158. "phpunit/phpunit": "^6.2"
  1159. },
  1160. "type": "library",
  1161. "extra": {
  1162. "branch-alias": {
  1163. "dev-master": "1.2.x-dev"
  1164. }
  1165. },
  1166. "autoload": {
  1167. "psr-4": {
  1168. "Doctrine\\Common\\Inflector\\": "lib/Doctrine/Common/Inflector"
  1169. }
  1170. },
  1171. "notification-url": "https://packagist.org/downloads/",
  1172. "license": [
  1173. "MIT"
  1174. ],
  1175. "authors": [
  1176. {
  1177. "name": "Roman Borschel",
  1178. "email": "roman@code-factory.org"
  1179. },
  1180. {
  1181. "name": "Benjamin Eberlei",
  1182. "email": "kontakt@beberlei.de"
  1183. },
  1184. {
  1185. "name": "Guilherme Blanco",
  1186. "email": "guilhermeblanco@gmail.com"
  1187. },
  1188. {
  1189. "name": "Jonathan Wage",
  1190. "email": "jonwage@gmail.com"
  1191. },
  1192. {
  1193. "name": "Johannes Schmitt",
  1194. "email": "schmittjoh@gmail.com"
  1195. }
  1196. ],
  1197. "description": "Common String Manipulations with regard to casing and singular/plural rules.",
  1198. "homepage": "http://www.doctrine-project.org",
  1199. "keywords": [
  1200. "inflection",
  1201. "pluralize",
  1202. "singularize",
  1203. "string"
  1204. ],
  1205. "time": "2017-07-22T12:18:28+00:00"
  1206. },
  1207. {
  1208. "name": "doctrine/lexer",
  1209. "version": "v1.0.1",
  1210. "source": {
  1211. "type": "git",
  1212. "url": "https://github.com/doctrine/lexer.git",
  1213. "reference": "83893c552fd2045dd78aef794c31e694c37c0b8c"
  1214. },
  1215. "dist": {
  1216. "type": "zip",
  1217. "url": "https://api.github.com/repos/doctrine/lexer/zipball/83893c552fd2045dd78aef794c31e694c37c0b8c",
  1218. "reference": "83893c552fd2045dd78aef794c31e694c37c0b8c",
  1219. "shasum": ""
  1220. },
  1221. "require": {
  1222. "php": ">=5.3.2"
  1223. },
  1224. "type": "library",
  1225. "extra": {
  1226. "branch-alias": {
  1227. "dev-master": "1.0.x-dev"
  1228. }
  1229. },
  1230. "autoload": {
  1231. "psr-0": {
  1232. "Doctrine\\Common\\Lexer\\": "lib/"
  1233. }
  1234. },
  1235. "notification-url": "https://packagist.org/downloads/",
  1236. "license": [
  1237. "MIT"
  1238. ],
  1239. "authors": [
  1240. {
  1241. "name": "Roman Borschel",
  1242. "email": "roman@code-factory.org"
  1243. },
  1244. {
  1245. "name": "Guilherme Blanco",
  1246. "email": "guilhermeblanco@gmail.com"
  1247. },
  1248. {
  1249. "name": "Johannes Schmitt",
  1250. "email": "schmittjoh@gmail.com"
  1251. }
  1252. ],
  1253. "description": "Base library for a lexer that can be used in Top-Down, Recursive Descent Parsers.",
  1254. "homepage": "http://www.doctrine-project.org",
  1255. "keywords": [
  1256. "lexer",
  1257. "parser"
  1258. ],
  1259. "time": "2014-09-09T13:34:57+00:00"
  1260. },
  1261. {
  1262. "name": "drupal/console",
  1263. "version": "1.7.0",
  1264. "source": {
  1265. "type": "git",
  1266. "url": "https://github.com/hechoendrupal/drupal-console.git",
  1267. "reference": "f4edcad048bd70fa2e74a6858c061425117c1ace"
  1268. },
  1269. "dist": {
  1270. "type": "zip",
  1271. "url": "https://api.github.com/repos/hechoendrupal/drupal-console/zipball/f4edcad048bd70fa2e74a6858c061425117c1ace",
  1272. "reference": "f4edcad048bd70fa2e74a6858c061425117c1ace",
  1273. "shasum": ""
  1274. },
  1275. "require": {
  1276. "alchemy/zippy": "0.4.3",
  1277. "composer/installers": "~1.0",
  1278. "doctrine/annotations": "^1.2",
  1279. "doctrine/collections": "^1.3",
  1280. "drupal/console-core": "1.7.0",
  1281. "drupal/console-extend-plugin": "~0",
  1282. "guzzlehttp/guzzle": "~6.1",
  1283. "php": "^5.5.9 || ^7.0",
  1284. "psy/psysh": "0.6.* || ~0.8",
  1285. "symfony/css-selector": "~2.8|~3.0",
  1286. "symfony/dom-crawler": "~2.8|~3.0",
  1287. "symfony/http-foundation": "~2.8|~3.0"
  1288. },
  1289. "suggest": {
  1290. "symfony/thanks": "Thank your favorite PHP projects on Github using the CLI!",
  1291. "vlucas/phpdotenv": "Loads environment variables from .env to getenv(), $_ENV and $_SERVER automagically."
  1292. },
  1293. "bin": [
  1294. "bin/drupal"
  1295. ],
  1296. "type": "library",
  1297. "autoload": {
  1298. "psr-4": {
  1299. "Drupal\\Console\\": "src"
  1300. }
  1301. },
  1302. "notification-url": "https://packagist.org/downloads/",
  1303. "license": [
  1304. "GPL-2.0-or-later"
  1305. ],
  1306. "authors": [
  1307. {
  1308. "name": "David Flores",
  1309. "email": "dmousex@gmail.com",
  1310. "homepage": "http://dmouse.net"
  1311. },
  1312. {
  1313. "name": "Jesus Manuel Olivas",
  1314. "email": "jesus.olivas@gmail.com",
  1315. "homepage": "http://jmolivas.com"
  1316. },
  1317. {
  1318. "name": "Eduardo Garcia",
  1319. "email": "enzo@enzolutions.com",
  1320. "homepage": "http://enzolutions.com/"
  1321. },
  1322. {
  1323. "name": "Omar Aguirre",
  1324. "email": "omersguchigu@gmail.com"
  1325. },
  1326. {
  1327. "name": "Drupal Console Contributors",
  1328. "homepage": "https://github.com/hechoendrupal/drupal-console/graphs/contributors"
  1329. }
  1330. ],
  1331. "description": "The Drupal CLI. A tool to generate boilerplate code, interact with and debug Drupal.",
  1332. "homepage": "http://drupalconsole.com/",
  1333. "keywords": [
  1334. "console",
  1335. "development",
  1336. "drupal",
  1337. "symfony"
  1338. ],
  1339. "time": "2018-03-06T21:58:52+00:00"
  1340. },
  1341. {
  1342. "name": "drupal/console-core",
  1343. "version": "1.7.0",
  1344. "source": {
  1345. "type": "git",
  1346. "url": "https://github.com/hechoendrupal/drupal-console-core.git",
  1347. "reference": "af8b3e42d225a2782f14163aafdeebbc486fd3e5"
  1348. },
  1349. "dist": {
  1350. "type": "zip",
  1351. "url": "https://api.github.com/repos/hechoendrupal/drupal-console-core/zipball/af8b3e42d225a2782f14163aafdeebbc486fd3e5",
  1352. "reference": "af8b3e42d225a2782f14163aafdeebbc486fd3e5",
  1353. "shasum": ""
  1354. },
  1355. "require": {
  1356. "dflydev/dot-access-configuration": "^1.0",
  1357. "drupal/console-en": "1.7.0",
  1358. "php": "^5.5.9 || ^7.0",
  1359. "stecman/symfony-console-completion": "~0.7",
  1360. "symfony/config": "~2.8|~3.0",
  1361. "symfony/console": "~2.8|~3.0",
  1362. "symfony/debug": "~2.8|~3.0",
  1363. "symfony/dependency-injection": "~2.8|~3.0",
  1364. "symfony/event-dispatcher": "~2.8|~3.0",
  1365. "symfony/filesystem": "~2.8|~3.0",
  1366. "symfony/finder": "~2.8|~3.0",
  1367. "symfony/process": "~2.8|~3.0",
  1368. "symfony/translation": "~2.8|~3.0",
  1369. "symfony/yaml": "~2.8|~3.0",
  1370. "twig/twig": "^1.23.1",
  1371. "webflo/drupal-finder": "^1.0",
  1372. "webmozart/path-util": "^2.3"
  1373. },
  1374. "type": "library",
  1375. "autoload": {
  1376. "files": [
  1377. "src/functions.php"
  1378. ],
  1379. "psr-4": {
  1380. "Drupal\\Console\\Core\\": "src"
  1381. }
  1382. },
  1383. "notification-url": "https://packagist.org/downloads/",
  1384. "license": [
  1385. "GPL-2.0-or-later"
  1386. ],
  1387. "authors": [
  1388. {
  1389. "name": "David Flores",
  1390. "email": "dmousex@gmail.com",
  1391. "homepage": "http://dmouse.net"
  1392. },
  1393. {
  1394. "name": "Jesus Manuel Olivas",
  1395. "email": "jesus.olivas@gmail.com",
  1396. "homepage": "http://jmolivas.com"
  1397. },
  1398. {
  1399. "name": "Drupal Console Contributors",
  1400. "homepage": "https://github.com/hechoendrupal/DrupalConsole/graphs/contributors"
  1401. },
  1402. {
  1403. "name": "Eduardo Garcia",
  1404. "email": "enzo@enzolutions.com",
  1405. "homepage": "http://enzolutions.com/"
  1406. },
  1407. {
  1408. "name": "Omar Aguirre",
  1409. "email": "omersguchigu@gmail.com"
  1410. }
  1411. ],
  1412. "description": "Drupal Console Core",
  1413. "homepage": "http://drupalconsole.com/",
  1414. "keywords": [
  1415. "console",
  1416. "development",
  1417. "drupal",
  1418. "symfony"
  1419. ],
  1420. "time": "2018-03-06T21:34:03+00:00"
  1421. },
  1422. {
  1423. "name": "drupal/console-en",
  1424. "version": "1.7.0",
  1425. "source": {
  1426. "type": "git",
  1427. "url": "https://github.com/hechoendrupal/drupal-console-en.git",
  1428. "reference": "916e121fad50155fc96d1fc98fed2e4aa0d6cd85"
  1429. },
  1430. "dist": {
  1431. "type": "zip",
  1432. "url": "https://api.github.com/repos/hechoendrupal/drupal-console-en/zipball/916e121fad50155fc96d1fc98fed2e4aa0d6cd85",
  1433. "reference": "916e121fad50155fc96d1fc98fed2e4aa0d6cd85",
  1434. "shasum": ""
  1435. },
  1436. "type": "drupal-console-language",
  1437. "notification-url": "https://packagist.org/downloads/",
  1438. "license": [
  1439. "GPL-2.0-or-later"
  1440. ],
  1441. "authors": [
  1442. {
  1443. "name": "David Flores",
  1444. "email": "dmousex@gmail.com",
  1445. "homepage": "http://dmouse.net"
  1446. },
  1447. {
  1448. "name": "Jesus Manuel Olivas",
  1449. "email": "jesus.olivas@gmail.com",
  1450. "homepage": "http://jmolivas.com"
  1451. },
  1452. {
  1453. "name": "Drupal Console Contributors",
  1454. "homepage": "https://github.com/hechoendrupal/DrupalConsole/graphs/contributors"
  1455. },
  1456. {
  1457. "name": "Eduardo Garcia",
  1458. "email": "enzo@enzolutions.com",
  1459. "homepage": "http://enzolutions.com/"
  1460. },
  1461. {
  1462. "name": "Omar Aguirre",
  1463. "email": "omersguchigu@gmail.com"
  1464. }
  1465. ],
  1466. "description": "Drupal Console English Language",
  1467. "homepage": "http://drupalconsole.com/",
  1468. "keywords": [
  1469. "console",
  1470. "development",
  1471. "drupal",
  1472. "symfony"
  1473. ],
  1474. "time": "2018-03-06T15:51:54+00:00"
  1475. },
  1476. {
  1477. "name": "drupal/console-extend-plugin",
  1478. "version": "0.9.2",
  1479. "source": {
  1480. "type": "git",
  1481. "url": "https://github.com/hechoendrupal/drupal-console-extend-plugin.git",
  1482. "reference": "f3bac233fd305359c33e96621443b3bd065555cc"
  1483. },
  1484. "dist": {
  1485. "type": "zip",
  1486. "url": "https://api.github.com/repos/hechoendrupal/drupal-console-extend-plugin/zipball/f3bac233fd305359c33e96621443b3bd065555cc",
  1487. "reference": "f3bac233fd305359c33e96621443b3bd065555cc",
  1488. "shasum": ""
  1489. },
  1490. "require": {
  1491. "composer-plugin-api": "^1.0",
  1492. "symfony/finder": "~2.7|~3.0",
  1493. "symfony/yaml": "~2.7|~3.0"
  1494. },
  1495. "type": "composer-plugin",
  1496. "extra": {
  1497. "class": "Drupal\\Console\\Composer\\Plugin\\Extender"
  1498. },
  1499. "autoload": {
  1500. "psr-4": {
  1501. "Drupal\\Console\\Composer\\Plugin\\": "src"
  1502. }
  1503. },
  1504. "notification-url": "https://packagist.org/downloads/",
  1505. "license": [
  1506. "GPL-2.0+"
  1507. ],
  1508. "authors": [
  1509. {
  1510. "name": "Jesus Manuel Olivas",
  1511. "email": "jesus.olivas@gmail.com"
  1512. }
  1513. ],
  1514. "description": "Drupal Console Extend Plugin",
  1515. "time": "2017-07-28T17:11:54+00:00"
  1516. },
  1517. {
  1518. "name": "drush/drush",
  1519. "version": "9.2.1",
  1520. "source": {
  1521. "type": "git",
  1522. "url": "https://github.com/drush-ops/drush.git",
  1523. "reference": "e40f5bb6a291f643d4699a95ef6873ac40ae8302"
  1524. },
  1525. "dist": {
  1526. "type": "zip",
  1527. "url": "https://api.github.com/repos/drush-ops/drush/zipball/e40f5bb6a291f643d4699a95ef6873ac40ae8302",
  1528. "reference": "e40f5bb6a291f643d4699a95ef6873ac40ae8302",
  1529. "shasum": ""
  1530. },
  1531. "require": {
  1532. "chi-teck/drupal-code-generator": "^1.21.0",
  1533. "composer/semver": "^1.4",
  1534. "consolidation/annotated-command": "^2.8.1",
  1535. "consolidation/config": "^1.0.9",
  1536. "consolidation/output-formatters": "^3.1.12",
  1537. "consolidation/robo": "^1.1.5",
  1538. "ext-dom": "*",
  1539. "grasmash/yaml-expander": "^1.1.1",
  1540. "league/container": "~2",
  1541. "php": ">=5.6.0",
  1542. "psr/log": "~1.0",
  1543. "psy/psysh": "~0.6",
  1544. "sebastian/version": "^1|^2",
  1545. "symfony/config": "~2.2|^3",
  1546. "symfony/console": "~2.7|^3",
  1547. "symfony/event-dispatcher": "~2.7|^3",
  1548. "symfony/finder": "~2.7|^3",
  1549. "symfony/process": "~2.7|^3",
  1550. "symfony/var-dumper": "~2.7|^3",
  1551. "symfony/yaml": "~2.3|^3",
  1552. "webflo/drupal-finder": "^1.1",
  1553. "webmozart/path-util": "^2.1.0"
  1554. },
  1555. "require-dev": {
  1556. "lox/xhprof": "dev-master",
  1557. "phpunit/phpunit": "^4.8|^5.5.4",
  1558. "squizlabs/php_codesniffer": "^2.7"
  1559. },
  1560. "bin": [
  1561. "drush"
  1562. ],
  1563. "type": "library",
  1564. "extra": {
  1565. "branch-alias": {
  1566. "dev-master": "9.0.x-dev"
  1567. }
  1568. },
  1569. "autoload": {
  1570. "psr-4": {
  1571. "Drush\\": "src/",
  1572. "Drush\\Internal\\": "internal-copy/",
  1573. "Unish\\": "tests/"
  1574. }
  1575. },
  1576. "notification-url": "https://packagist.org/downloads/",
  1577. "license": [
  1578. "GPL-2.0-or-later"
  1579. ],
  1580. "authors": [
  1581. {
  1582. "name": "Moshe Weitzman",
  1583. "email": "weitzman@tejasa.com"
  1584. },
  1585. {
  1586. "name": "Owen Barton",
  1587. "email": "drupal@owenbarton.com"
  1588. },
  1589. {
  1590. "name": "Greg Anderson",
  1591. "email": "greg.1.anderson@greenknowe.org"
  1592. },
  1593. {
  1594. "name": "Jonathan Araña Cruz",
  1595. "email": "jonhattan@faita.net"
  1596. },
  1597. {
  1598. "name": "Jonathan Hedstrom",
  1599. "email": "jhedstrom@gmail.com"
  1600. },
  1601. {
  1602. "name": "Christopher Gervais",
  1603. "email": "chris@ergonlogic.com"
  1604. },
  1605. {
  1606. "name": "Dave Reid",
  1607. "email": "dave@davereid.net"
  1608. },
  1609. {
  1610. "name": "Damian Lee",
  1611. "email": "damiankloip@googlemail.com"
  1612. }
  1613. ],
  1614. "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.",
  1615. "homepage": "http://www.drush.org",
  1616. "time": "2018-02-27T21:26:53+00:00"
  1617. },
  1618. {
  1619. "name": "easyrdf/easyrdf",
  1620. "version": "0.9.1",
  1621. "source": {
  1622. "type": "git",
  1623. "url": "https://github.com/njh/easyrdf.git",
  1624. "reference": "acd09dfe0555fbcfa254291e433c45fdd4652566"
  1625. },
  1626. "dist": {
  1627. "type": "zip",
  1628. "url": "https://api.github.com/repos/njh/easyrdf/zipball/acd09dfe0555fbcfa254291e433c45fdd4652566",
  1629. "reference": "acd09dfe0555fbcfa254291e433c45fdd4652566",
  1630. "shasum": ""
  1631. },
  1632. "require": {
  1633. "ext-mbstring": "*",
  1634. "ext-pcre": "*",
  1635. "php": ">=5.2.8"
  1636. },
  1637. "require-dev": {
  1638. "phpunit/phpunit": "~3.5",
  1639. "sami/sami": "~1.4",
  1640. "squizlabs/php_codesniffer": "~1.4.3"
  1641. },
  1642. "suggest": {
  1643. "ml/json-ld": "~1.0"
  1644. },
  1645. "type": "library",
  1646. "autoload": {
  1647. "psr-0": {
  1648. "EasyRdf_": "lib/"
  1649. }
  1650. },
  1651. "notification-url": "https://packagist.org/downloads/",
  1652. "license": [
  1653. "BSD-3-Clause"
  1654. ],
  1655. "authors": [
  1656. {
  1657. "name": "Nicholas Humfrey",
  1658. "email": "njh@aelius.com",
  1659. "homepage": "http://www.aelius.com/njh/",
  1660. "role": "Developer"
  1661. },
  1662. {
  1663. "name": "Alexey Zakhlestin",
  1664. "email": "indeyets@gmail.com",
  1665. "role": "Developer"
  1666. }
  1667. ],
  1668. "description": "EasyRdf is a PHP library designed to make it easy to consume and produce RDF.",
  1669. "homepage": "http://www.easyrdf.org/",
  1670. "keywords": [
  1671. "Linked Data",
  1672. "RDF",
  1673. "Semantic Web",
  1674. "Turtle",
  1675. "rdfa",
  1676. "sparql"
  1677. ],
  1678. "time": "2015-02-27T09:45:49+00:00"
  1679. },
  1680. {
  1681. "name": "egulias/email-validator",
  1682. "version": "1.2.14",
  1683. "source": {
  1684. "type": "git",
  1685. "url": "https://github.com/egulias/EmailValidator.git",
  1686. "reference": "5642614492f0ca2064c01d60cc33284cc2f731a9"
  1687. },
  1688. "dist": {
  1689. "type": "zip",
  1690. "url": "https://api.github.com/repos/egulias/EmailValidator/zipball/5642614492f0ca2064c01d60cc33284cc2f731a9",
  1691. "reference": "5642614492f0ca2064c01d60cc33284cc2f731a9",
  1692. "shasum": ""
  1693. },
  1694. "require": {
  1695. "doctrine/lexer": "^1.0.1",
  1696. "php": ">= 5.3.3"
  1697. },
  1698. "require-dev": {
  1699. "phpunit/phpunit": "^4.8.24"
  1700. },
  1701. "type": "library",
  1702. "extra": {
  1703. "branch-alias": {
  1704. "dev-master": "2.0.x-dev"
  1705. }
  1706. },
  1707. "autoload": {
  1708. "psr-0": {
  1709. "Egulias\\": "src/"
  1710. }
  1711. },
  1712. "notification-url": "https://packagist.org/downloads/",
  1713. "license": [
  1714. "MIT"
  1715. ],
  1716. "authors": [
  1717. {
  1718. "name": "Eduardo Gulias Davis"
  1719. }
  1720. ],
  1721. "description": "A library for validating emails",
  1722. "homepage": "https://github.com/egulias/EmailValidator",
  1723. "keywords": [
  1724. "email",
  1725. "emailvalidation",
  1726. "emailvalidator",
  1727. "validation",
  1728. "validator"
  1729. ],
  1730. "time": "2017-02-03T22:48:59+00:00"
  1731. },
  1732. {
  1733. "name": "grasmash/expander",
  1734. "version": "1.0.0",
  1735. "source": {
  1736. "type": "git",
  1737. "url": "https://github.com/grasmash/expander.git",
  1738. "reference": "95d6037344a4be1dd5f8e0b0b2571a28c397578f"
  1739. },
  1740. "dist": {
  1741. "type": "zip",
  1742. "url": "https://api.github.com/repos/grasmash/expander/zipball/95d6037344a4be1dd5f8e0b0b2571a28c397578f",
  1743. "reference": "95d6037344a4be1dd5f8e0b0b2571a28c397578f",
  1744. "shasum": ""
  1745. },
  1746. "require": {
  1747. "dflydev/dot-access-data": "^1.1.0",
  1748. "php": ">=5.4"
  1749. },
  1750. "require-dev": {
  1751. "greg-1-anderson/composer-test-scenarios": "^1",
  1752. "phpunit/phpunit": "^4|^5.5.4",
  1753. "satooshi/php-coveralls": "^1.0.2|dev-master",
  1754. "squizlabs/php_codesniffer": "^2.7"
  1755. },
  1756. "type": "library",
  1757. "extra": {
  1758. "branch-alias": {
  1759. "dev-master": "1.x-dev"
  1760. }
  1761. },
  1762. "autoload": {
  1763. "psr-4": {
  1764. "Grasmash\\Expander\\": "src/"
  1765. }
  1766. },
  1767. "notification-url": "https://packagist.org/downloads/",
  1768. "license": [
  1769. "MIT"
  1770. ],
  1771. "authors": [
  1772. {
  1773. "name": "Matthew Grasmick"
  1774. }
  1775. ],
  1776. "description": "Expands internal property references in PHP arrays file.",
  1777. "time": "2017-12-21T22:14:55+00:00"
  1778. },
  1779. {
  1780. "name": "grasmash/yaml-expander",
  1781. "version": "1.4.0",
  1782. "source": {
  1783. "type": "git",
  1784. "url": "https://github.com/grasmash/yaml-expander.git",
  1785. "reference": "3f0f6001ae707a24f4d9733958d77d92bf9693b1"
  1786. },
  1787. "dist": {
  1788. "type": "zip",
  1789. "url": "https://api.github.com/repos/grasmash/yaml-expander/zipball/3f0f6001ae707a24f4d9733958d77d92bf9693b1",
  1790. "reference": "3f0f6001ae707a24f4d9733958d77d92bf9693b1",
  1791. "shasum": ""
  1792. },
  1793. "require": {
  1794. "dflydev/dot-access-data": "^1.1.0",
  1795. "php": ">=5.4",
  1796. "symfony/yaml": "^2.8.11|^3|^4"
  1797. },
  1798. "require-dev": {
  1799. "greg-1-anderson/composer-test-scenarios": "^1",
  1800. "phpunit/phpunit": "^4.8|^5.5.4",
  1801. "satooshi/php-coveralls": "^1.0.2|dev-master",
  1802. "squizlabs/php_codesniffer": "^2.7"
  1803. },
  1804. "type": "library",
  1805. "extra": {
  1806. "branch-alias": {
  1807. "dev-master": "1.x-dev"
  1808. }
  1809. },
  1810. "autoload": {
  1811. "psr-4": {
  1812. "Grasmash\\YamlExpander\\": "src/"
  1813. }
  1814. },
  1815. "notification-url": "https://packagist.org/downloads/",
  1816. "license": [
  1817. "MIT"
  1818. ],
  1819. "authors": [
  1820. {
  1821. "name": "Matthew Grasmick"
  1822. }
  1823. ],
  1824. "description": "Expands internal property references in a yaml file.",
  1825. "time": "2017-12-16T16:06:03+00:00"
  1826. },
  1827. {
  1828. "name": "guzzlehttp/guzzle",
  1829. "version": "6.3.0",
  1830. "source": {
  1831. "type": "git",
  1832. "url": "https://github.com/guzzle/guzzle.git",
  1833. "reference": "f4db5a78a5ea468d4831de7f0bf9d9415e348699"
  1834. },
  1835. "dist": {
  1836. "type": "zip",
  1837. "url": "https://api.github.com/repos/guzzle/guzzle/zipball/f4db5a78a5ea468d4831de7f0bf9d9415e348699",
  1838. "reference": "f4db5a78a5ea468d4831de7f0bf9d9415e348699",
  1839. "shasum": ""
  1840. },
  1841. "require": {
  1842. "guzzlehttp/promises": "^1.0",
  1843. "guzzlehttp/psr7": "^1.4",
  1844. "php": ">=5.5"
  1845. },
  1846. "require-dev": {
  1847. "ext-curl": "*",
  1848. "phpunit/phpunit": "^4.0 || ^5.0",
  1849. "psr/log": "^1.0"
  1850. },
  1851. "suggest": {
  1852. "psr/log": "Required for using the Log middleware"
  1853. },
  1854. "type": "library",
  1855. "extra": {
  1856. "branch-alias": {
  1857. "dev-master": "6.2-dev"
  1858. }
  1859. },
  1860. "autoload": {
  1861. "files": [
  1862. "src/functions_include.php"
  1863. ],
  1864. "psr-4": {
  1865. "GuzzleHttp\\": "src/"
  1866. }
  1867. },
  1868. "notification-url": "https://packagist.org/downloads/",
  1869. "license": [
  1870. "MIT"
  1871. ],
  1872. "authors": [
  1873. {
  1874. "name": "Michael Dowling",
  1875. "email": "mtdowling@gmail.com",
  1876. "homepage": "https://github.com/mtdowling"
  1877. }
  1878. ],
  1879. "description": "Guzzle is a PHP HTTP client library",
  1880. "homepage": "http://guzzlephp.org/",
  1881. "keywords": [
  1882. "client",
  1883. "curl",
  1884. "framework",
  1885. "http",
  1886. "http client",
  1887. "rest",
  1888. "web service"
  1889. ],
  1890. "time": "2017-06-22T18:50:49+00:00"
  1891. },
  1892. {
  1893. "name": "guzzlehttp/promises",
  1894. "version": "v1.3.1",
  1895. "source": {
  1896. "type": "git",
  1897. "url": "https://github.com/guzzle/promises.git",
  1898. "reference": "a59da6cf61d80060647ff4d3eb2c03a2bc694646"
  1899. },
  1900. "dist": {
  1901. "type": "zip",
  1902. "url": "https://api.github.com/repos/guzzle/promises/zipball/a59da6cf61d80060647ff4d3eb2c03a2bc694646",
  1903. "reference": "a59da6cf61d80060647ff4d3eb2c03a2bc694646",
  1904. "shasum": ""
  1905. },
  1906. "require": {
  1907. "php": ">=5.5.0"
  1908. },
  1909. "require-dev": {
  1910. "phpunit/phpunit": "^4.0"
  1911. },
  1912. "type": "library",
  1913. "extra": {
  1914. "branch-alias": {
  1915. "dev-master": "1.4-dev"
  1916. }
  1917. },
  1918. "autoload": {
  1919. "psr-4": {
  1920. "GuzzleHttp\\Promise\\": "src/"
  1921. },
  1922. "files": [
  1923. "src/functions_include.php"
  1924. ]
  1925. },
  1926. "notification-url": "https://packagist.org/downloads/",
  1927. "license": [
  1928. "MIT"
  1929. ],
  1930. "authors": [
  1931. {
  1932. "name": "Michael Dowling",
  1933. "email": "mtdowling@gmail.com",
  1934. "homepage": "https://github.com/mtdowling"
  1935. }
  1936. ],
  1937. "description": "Guzzle promises library",
  1938. "keywords": [
  1939. "promise"
  1940. ],
  1941. "time": "2016-12-20T10:07:11+00:00"
  1942. },
  1943. {
  1944. "name": "guzzlehttp/psr7",
  1945. "version": "1.4.2",
  1946. "source": {
  1947. "type": "git",
  1948. "url": "https://github.com/guzzle/psr7.git",
  1949. "reference": "f5b8a8512e2b58b0071a7280e39f14f72e05d87c"
  1950. },
  1951. "dist": {
  1952. "type": "zip",
  1953. "url": "https://api.github.com/repos/guzzle/psr7/zipball/f5b8a8512e2b58b0071a7280e39f14f72e05d87c",
  1954. "reference": "f5b8a8512e2b58b0071a7280e39f14f72e05d87c",
  1955. "shasum": ""
  1956. },
  1957. "require": {
  1958. "php": ">=5.4.0",
  1959. "psr/http-message": "~1.0"
  1960. },
  1961. "provide": {
  1962. "psr/http-message-implementation": "1.0"
  1963. },
  1964. "require-dev": {
  1965. "phpunit/phpunit": "~4.0"
  1966. },
  1967. "type": "library",
  1968. "extra": {
  1969. "branch-alias": {
  1970. "dev-master": "1.4-dev"
  1971. }
  1972. },
  1973. "autoload": {
  1974. "psr-4": {
  1975. "GuzzleHttp\\Psr7\\": "src/"
  1976. },
  1977. "files": [
  1978. "src/functions_include.php"
  1979. ]
  1980. },
  1981. "notification-url": "https://packagist.org/downloads/",
  1982. "license": [
  1983. "MIT"
  1984. ],
  1985. "authors": [
  1986. {
  1987. "name": "Michael Dowling",
  1988. "email": "mtdowling@gmail.com",
  1989. "homepage": "https://github.com/mtdowling"
  1990. },
  1991. {
  1992. "name": "Tobias Schultze",
  1993. "homepage": "https://github.com/Tobion"
  1994. }
  1995. ],
  1996. "description": "PSR-7 message implementation that also provides common utility methods",
  1997. "keywords": [
  1998. "http",
  1999. "message",
  2000. "request",
  2001. "response",
  2002. "stream",
  2003. "uri",
  2004. "url"
  2005. ],
  2006. "time": "2017-03-20T17:10:46+00:00"
  2007. },
  2008. {
  2009. "name": "jakub-onderka/php-console-color",
  2010. "version": "0.1",
  2011. "source": {
  2012. "type": "git",
  2013. "url": "https://github.com/JakubOnderka/PHP-Console-Color.git",
  2014. "reference": "e0b393dacf7703fc36a4efc3df1435485197e6c1"
  2015. },
  2016. "dist": {
  2017. "type": "zip",
  2018. "url": "https://api.github.com/repos/JakubOnderka/PHP-Console-Color/zipball/e0b393dacf7703fc36a4efc3df1435485197e6c1",
  2019. "reference": "e0b393dacf7703fc36a4efc3df1435485197e6c1",
  2020. "shasum": ""
  2021. },
  2022. "require": {
  2023. "php": ">=5.3.2"
  2024. },
  2025. "require-dev": {
  2026. "jakub-onderka/php-code-style": "1.0",
  2027. "jakub-onderka/php-parallel-lint": "0.*",
  2028. "jakub-onderka/php-var-dump-check": "0.*",
  2029. "phpunit/phpunit": "3.7.*",
  2030. "squizlabs/php_codesniffer": "1.*"
  2031. },
  2032. "type": "library",
  2033. "autoload": {
  2034. "psr-0": {
  2035. "JakubOnderka\\PhpConsoleColor": "src/"
  2036. }
  2037. },
  2038. "notification-url": "https://packagist.org/downloads/",
  2039. "license": [
  2040. "BSD-2-Clause"
  2041. ],
  2042. "authors": [
  2043. {
  2044. "name": "Jakub Onderka",
  2045. "email": "jakub.onderka@gmail.com",
  2046. "homepage": "http://www.acci.cz"
  2047. }
  2048. ],
  2049. "time": "2014-04-08T15:00:19+00:00"
  2050. },
  2051. {
  2052. "name": "jakub-onderka/php-console-highlighter",
  2053. "version": "v0.3.2",
  2054. "source": {
  2055. "type": "git",
  2056. "url": "https://github.com/JakubOnderka/PHP-Console-Highlighter.git",
  2057. "reference": "7daa75df45242c8d5b75a22c00a201e7954e4fb5"
  2058. },
  2059. "dist": {
  2060. "type": "zip",
  2061. "url": "https://api.github.com/repos/JakubOnderka/PHP-Console-Highlighter/zipball/7daa75df45242c8d5b75a22c00a201e7954e4fb5",
  2062. "reference": "7daa75df45242c8d5b75a22c00a201e7954e4fb5",
  2063. "shasum": ""
  2064. },
  2065. "require": {
  2066. "jakub-onderka/php-console-color": "~0.1",
  2067. "php": ">=5.3.0"
  2068. },
  2069. "require-dev": {
  2070. "jakub-onderka/php-code-style": "~1.0",
  2071. "jakub-onderka/php-parallel-lint": "~0.5",
  2072. "jakub-onderka/php-var-dump-check": "~0.1",
  2073. "phpunit/phpunit": "~4.0",
  2074. "squizlabs/php_codesniffer": "~1.5"
  2075. },
  2076. "type": "library",
  2077. "autoload": {
  2078. "psr-0": {
  2079. "JakubOnderka\\PhpConsoleHighlighter": "src/"
  2080. }
  2081. },
  2082. "notification-url": "https://packagist.org/downloads/",
  2083. "license": [
  2084. "MIT"
  2085. ],
  2086. "authors": [
  2087. {
  2088. "name": "Jakub Onderka",
  2089. "email": "acci@acci.cz",
  2090. "homepage": "http://www.acci.cz/"
  2091. }
  2092. ],
  2093. "time": "2015-04-20T18:58:01+00:00"
  2094. },
  2095. {
  2096. "name": "league/container",
  2097. "version": "2.4.1",
  2098. "source": {
  2099. "type": "git",
  2100. "url": "https://github.com/thephpleague/container.git",
  2101. "reference": "43f35abd03a12977a60ffd7095efd6a7808488c0"
  2102. },
  2103. "dist": {
  2104. "type": "zip",
  2105. "url": "https://api.github.com/repos/thephpleague/container/zipball/43f35abd03a12977a60ffd7095efd6a7808488c0",
  2106. "reference": "43f35abd03a12977a60ffd7095efd6a7808488c0",
  2107. "shasum": ""
  2108. },
  2109. "require": {
  2110. "container-interop/container-interop": "^1.2",
  2111. "php": "^5.4.0 || ^7.0"
  2112. },
  2113. "provide": {
  2114. "container-interop/container-interop-implementation": "^1.2",
  2115. "psr/container-implementation": "^1.0"
  2116. },
  2117. "replace": {
  2118. "orno/di": "~2.0"
  2119. },
  2120. "require-dev": {
  2121. "phpunit/phpunit": "4.*"
  2122. },
  2123. "type": "library",
  2124. "extra": {
  2125. "branch-alias": {
  2126. "dev-2.x": "2.x-dev",
  2127. "dev-1.x": "1.x-dev"
  2128. }
  2129. },
  2130. "autoload": {
  2131. "psr-4": {
  2132. "League\\Container\\": "src"
  2133. }
  2134. },
  2135. "notification-url": "https://packagist.org/downloads/",
  2136. "license": [
  2137. "MIT"
  2138. ],
  2139. "authors": [
  2140. {
  2141. "name": "Phil Bennett",
  2142. "email": "philipobenito@gmail.com",
  2143. "homepage": "http://www.philipobenito.com",
  2144. "role": "Developer"
  2145. }
  2146. ],
  2147. "description": "A fast and intuitive dependency injection container.",
  2148. "homepage": "https://github.com/thephpleague/container",
  2149. "keywords": [
  2150. "container",
  2151. "dependency",
  2152. "di",
  2153. "injection",
  2154. "league",
  2155. "provider",
  2156. "service"
  2157. ],
  2158. "time": "2017-05-10T09:20:27+00:00"
  2159. },
  2160. {
  2161. "name": "masterminds/html5",
  2162. "version": "2.3.0",
  2163. "source": {
  2164. "type": "git",
  2165. "url": "https://github.com/Masterminds/html5-php.git",
  2166. "reference": "2c37c6c520b995b761674de3be8455a381679067"
  2167. },
  2168. "dist": {
  2169. "type": "zip",
  2170. "url": "https://api.github.com/repos/Masterminds/html5-php/zipball/2c37c6c520b995b761674de3be8455a381679067",
  2171. "reference": "2c37c6c520b995b761674de3be8455a381679067",
  2172. "shasum": ""
  2173. },
  2174. "require": {
  2175. "ext-libxml": "*",
  2176. "php": ">=5.3.0"
  2177. },
  2178. "require-dev": {
  2179. "phpunit/phpunit": "4.*",
  2180. "sami/sami": "~2.0",
  2181. "satooshi/php-coveralls": "1.0.*"
  2182. },
  2183. "type": "library",
  2184. "extra": {
  2185. "branch-alias": {
  2186. "dev-master": "2.2-dev"
  2187. }
  2188. },
  2189. "autoload": {
  2190. "psr-4": {
  2191. "Masterminds\\": "src"
  2192. }
  2193. },
  2194. "notification-url": "https://packagist.org/downloads/",
  2195. "license": [
  2196. "MIT"
  2197. ],
  2198. "authors": [
  2199. {
  2200. "name": "Matt Butcher",
  2201. "email": "technosophos@gmail.com"
  2202. },
  2203. {
  2204. "name": "Asmir Mustafic",
  2205. "email": "goetas@gmail.com"
  2206. },
  2207. {
  2208. "name": "Matt Farina",
  2209. "email": "matt@mattfarina.com"
  2210. }
  2211. ],
  2212. "description": "An HTML5 parser and serializer.",
  2213. "homepage": "http://masterminds.github.io/html5-php",
  2214. "keywords": [
  2215. "HTML5",
  2216. "dom",
  2217. "html",
  2218. "parser",
  2219. "querypath",
  2220. "serializer",
  2221. "xml"
  2222. ],
  2223. "time": "2017-09-04T12:26:28+00:00"
  2224. },
  2225. {
  2226. "name": "nikic/php-parser",
  2227. "version": "v3.1.5",
  2228. "source": {
  2229. "type": "git",
  2230. "url": "https://github.com/nikic/PHP-Parser.git",
  2231. "reference": "bb87e28e7d7b8d9a7fda231d37457c9210faf6ce"
  2232. },
  2233. "dist": {
  2234. "type": "zip",
  2235. "url": "https://api.github.com/repos/nikic/PHP-Parser/zipball/bb87e28e7d7b8d9a7fda231d37457c9210faf6ce",
  2236. "reference": "bb87e28e7d7b8d9a7fda231d37457c9210faf6ce",
  2237. "shasum": ""
  2238. },
  2239. "require": {
  2240. "ext-tokenizer": "*",
  2241. "php": ">=5.5"
  2242. },
  2243. "require-dev": {
  2244. "phpunit/phpunit": "~4.0|~5.0"
  2245. },
  2246. "bin": [
  2247. "bin/php-parse"
  2248. ],
  2249. "type": "library",
  2250. "extra": {
  2251. "branch-alias": {
  2252. "dev-master": "3.0-dev"
  2253. }
  2254. },
  2255. "autoload": {
  2256. "psr-4": {
  2257. "PhpParser\\": "lib/PhpParser"
  2258. }
  2259. },
  2260. "notification-url": "https://packagist.org/downloads/",
  2261. "license": [
  2262. "BSD-3-Clause"
  2263. ],
  2264. "authors": [
  2265. {
  2266. "name": "Nikita Popov"
  2267. }
  2268. ],
  2269. "description": "A PHP parser written in PHP",
  2270. "keywords": [
  2271. "parser",
  2272. "php"
  2273. ],
  2274. "time": "2018-02-28T20:30:58+00:00"
  2275. },
  2276. {
  2277. "name": "paragonie/random_compat",
  2278. "version": "v2.0.11",
  2279. "source": {
  2280. "type": "git",
  2281. "url": "https://github.com/paragonie/random_compat.git",
  2282. "reference": "5da4d3c796c275c55f057af5a643ae297d96b4d8"
  2283. },
  2284. "dist": {
  2285. "type": "zip",
  2286. "url": "https://api.github.com/repos/paragonie/random_compat/zipball/5da4d3c796c275c55f057af5a643ae297d96b4d8",
  2287. "reference": "5da4d3c796c275c55f057af5a643ae297d96b4d8",
  2288. "shasum": ""
  2289. },
  2290. "require": {
  2291. "php": ">=5.2.0"
  2292. },
  2293. "require-dev": {
  2294. "phpunit/phpunit": "4.*|5.*"
  2295. },
  2296. "suggest": {
  2297. "ext-libsodium": "Provides a modern crypto API that can be used to generate random bytes."
  2298. },
  2299. "type": "library",
  2300. "autoload": {
  2301. "files": [
  2302. "lib/random.php"
  2303. ]
  2304. },
  2305. "notification-url": "https://packagist.org/downloads/",
  2306. "license": [
  2307. "MIT"
  2308. ],
  2309. "authors": [
  2310. {
  2311. "name": "Paragon Initiative Enterprises",
  2312. "email": "security@paragonie.com",
  2313. "homepage": "https://paragonie.com"
  2314. }
  2315. ],
  2316. "description": "PHP 5.x polyfill for random_bytes() and random_int() from PHP 7",
  2317. "keywords": [
  2318. "csprng",
  2319. "pseudorandom",
  2320. "random"
  2321. ],
  2322. "time": "2017-09-27T21:40:39+00:00"
  2323. },
  2324. {
  2325. "name": "psr/container",
  2326. "version": "1.0.0",
  2327. "source": {
  2328. "type": "git",
  2329. "url": "https://github.com/php-fig/container.git",
  2330. "reference": "b7ce3b176482dbbc1245ebf52b181af44c2cf55f"
  2331. },
  2332. "dist": {
  2333. "type": "zip",
  2334. "url": "https://api.github.com/repos/php-fig/container/zipball/b7ce3b176482dbbc1245ebf52b181af44c2cf55f",
  2335. "reference": "b7ce3b176482dbbc1245ebf52b181af44c2cf55f",
  2336. "shasum": ""
  2337. },
  2338. "require": {
  2339. "php": ">=5.3.0"
  2340. },
  2341. "type": "library",
  2342. "extra": {
  2343. "branch-alias": {
  2344. "dev-master": "1.0.x-dev"
  2345. }
  2346. },
  2347. "autoload": {
  2348. "psr-4": {
  2349. "Psr\\Container\\": "src/"
  2350. }
  2351. },
  2352. "notification-url": "https://packagist.org/downloads/",
  2353. "license": [
  2354. "MIT"
  2355. ],
  2356. "authors": [
  2357. {
  2358. "name": "PHP-FIG",
  2359. "homepage": "http://www.php-fig.org/"
  2360. }
  2361. ],
  2362. "description": "Common Container Interface (PHP FIG PSR-11)",
  2363. "homepage": "https://github.com/php-fig/container",
  2364. "keywords": [
  2365. "PSR-11",
  2366. "container",
  2367. "container-interface",
  2368. "container-interop",
  2369. "psr"
  2370. ],
  2371. "time": "2017-02-14T16:28:37+00:00"
  2372. },
  2373. {
  2374. "name": "psr/http-message",
  2375. "version": "1.0.1",
  2376. "source": {
  2377. "type": "git",
  2378. "url": "https://github.com/php-fig/http-message.git",
  2379. "reference": "f6561bf28d520154e4b0ec72be95418abe6d9363"
  2380. },
  2381. "dist": {
  2382. "type": "zip",
  2383. "url": "https://api.github.com/repos/php-fig/http-message/zipball/f6561bf28d520154e4b0ec72be95418abe6d9363",
  2384. "reference": "f6561bf28d520154e4b0ec72be95418abe6d9363",
  2385. "shasum": ""
  2386. },
  2387. "require": {
  2388. "php": ">=5.3.0"
  2389. },
  2390. "type": "library",
  2391. "extra": {
  2392. "branch-alias": {
  2393. "dev-master": "1.0.x-dev"
  2394. }
  2395. },
  2396. "autoload": {
  2397. "psr-4": {
  2398. "Psr\\Http\\Message\\": "src/"
  2399. }
  2400. },
  2401. "notification-url": "https://packagist.org/downloads/",
  2402. "license": [
  2403. "MIT"
  2404. ],
  2405. "authors": [
  2406. {
  2407. "name": "PHP-FIG",
  2408. "homepage": "http://www.php-fig.org/"
  2409. }
  2410. ],
  2411. "description": "Common interface for HTTP messages",
  2412. "homepage": "https://github.com/php-fig/http-message",
  2413. "keywords": [
  2414. "http",
  2415. "http-message",
  2416. "psr",
  2417. "psr-7",
  2418. "request",
  2419. "response"
  2420. ],
  2421. "time": "2016-08-06T14:39:51+00:00"
  2422. },
  2423. {
  2424. "name": "psr/log",
  2425. "version": "1.0.2",
  2426. "source": {
  2427. "type": "git",
  2428. "url": "https://github.com/php-fig/log.git",
  2429. "reference": "4ebe3a8bf773a19edfe0a84b6585ba3d401b724d"
  2430. },
  2431. "dist": {
  2432. "type": "zip",
  2433. "url": "https://api.github.com/repos/php-fig/log/zipball/4ebe3a8bf773a19edfe0a84b6585ba3d401b724d",
  2434. "reference": "4ebe3a8bf773a19edfe0a84b6585ba3d401b724d",
  2435. "shasum": ""
  2436. },
  2437. "require": {
  2438. "php": ">=5.3.0"
  2439. },
  2440. "type": "library",
  2441. "extra": {
  2442. "branch-alias": {
  2443. "dev-master": "1.0.x-dev"
  2444. }
  2445. },
  2446. "autoload": {
  2447. "psr-4": {
  2448. "Psr\\Log\\": "Psr/Log/"
  2449. }
  2450. },
  2451. "notification-url": "https://packagist.org/downloads/",
  2452. "license": [
  2453. "MIT"
  2454. ],
  2455. "authors": [
  2456. {
  2457. "name": "PHP-FIG",
  2458. "homepage": "http://www.php-fig.org/"
  2459. }
  2460. ],
  2461. "description": "Common interface for logging libraries",
  2462. "homepage": "https://github.com/php-fig/log",
  2463. "keywords": [
  2464. "log",
  2465. "psr",
  2466. "psr-3"
  2467. ],
  2468. "time": "2016-10-10T12:19:37+00:00"
  2469. },
  2470. {
  2471. "name": "psy/psysh",
  2472. "version": "v0.8.17",
  2473. "source": {
  2474. "type": "git",
  2475. "url": "https://github.com/bobthecow/psysh.git",
  2476. "reference": "5069b70e8c4ea492c2b5939b6eddc78bfe41cfec"
  2477. },
  2478. "dist": {
  2479. "type": "zip",
  2480. "url": "https://api.github.com/repos/bobthecow/psysh/zipball/5069b70e8c4ea492c2b5939b6eddc78bfe41cfec",
  2481. "reference": "5069b70e8c4ea492c2b5939b6eddc78bfe41cfec",
  2482. "shasum": ""
  2483. },
  2484. "require": {
  2485. "dnoegel/php-xdg-base-dir": "0.1",
  2486. "jakub-onderka/php-console-highlighter": "0.3.*",
  2487. "nikic/php-parser": "~1.3|~2.0|~3.0",
  2488. "php": ">=5.3.9",
  2489. "symfony/console": "~2.3.10|^2.4.2|~3.0|~4.0",
  2490. "symfony/var-dumper": "~2.7|~3.0|~4.0"
  2491. },
  2492. "require-dev": {
  2493. "hoa/console": "~3.16|~1.14",
  2494. "phpunit/phpunit": "^4.8.35|^5.4.3",
  2495. "symfony/finder": "~2.1|~3.0|~4.0"
  2496. },
  2497. "suggest": {
  2498. "ext-pcntl": "Enabling the PCNTL extension makes PsySH a lot happier :)",
  2499. "ext-pdo-sqlite": "The doc command requires SQLite to work.",
  2500. "ext-posix": "If you have PCNTL, you'll want the POSIX extension as well.",
  2501. "ext-readline": "Enables support for arrow-key history navigation, and showing and manipulating command history.",
  2502. "hoa/console": "A pure PHP readline implementation. You'll want this if your PHP install doesn't already support readline or libedit."
  2503. },
  2504. "bin": [
  2505. "bin/psysh"
  2506. ],
  2507. "type": "library",
  2508. "extra": {
  2509. "branch-alias": {
  2510. "dev-develop": "0.8.x-dev"
  2511. }
  2512. },
  2513. "autoload": {
  2514. "files": [
  2515. "src/Psy/functions.php"
  2516. ],
  2517. "psr-4": {
  2518. "Psy\\": "src/Psy/"
  2519. }
  2520. },
  2521. "notification-url": "https://packagist.org/downloads/",
  2522. "license": [
  2523. "MIT"
  2524. ],
  2525. "authors": [
  2526. {
  2527. "name": "Justin Hileman",
  2528. "email": "justin@justinhileman.info",
  2529. "homepage": "http://justinhileman.com"
  2530. }
  2531. ],
  2532. "description": "An interactive shell for modern PHP.",
  2533. "homepage": "http://psysh.org",
  2534. "keywords": [
  2535. "REPL",
  2536. "console",
  2537. "interactive",
  2538. "shell"
  2539. ],
  2540. "time": "2017-12-28T16:14:16+00:00"
  2541. },
  2542. {
  2543. "name": "sebastian/version",
  2544. "version": "2.0.1",
  2545. "source": {
  2546. "type": "git",
  2547. "url": "https://github.com/sebastianbergmann/version.git",
  2548. "reference": "99732be0ddb3361e16ad77b68ba41efc8e979019"
  2549. },
  2550. "dist": {
  2551. "type": "zip",
  2552. "url": "https://api.github.com/repos/sebastianbergmann/version/zipball/99732be0ddb3361e16ad77b68ba41efc8e979019",
  2553. "reference": "99732be0ddb3361e16ad77b68ba41efc8e979019",
  2554. "shasum": ""
  2555. },
  2556. "require": {
  2557. "php": ">=5.6"
  2558. },
  2559. "type": "library",
  2560. "extra": {
  2561. "branch-alias": {
  2562. "dev-master": "2.0.x-dev"
  2563. }
  2564. },
  2565. "autoload": {
  2566. "classmap": [
  2567. "src/"
  2568. ]
  2569. },
  2570. "notification-url": "https://packagist.org/downloads/",
  2571. "license": [
  2572. "BSD-3-Clause"
  2573. ],
  2574. "authors": [
  2575. {
  2576. "name": "Sebastian Bergmann",
  2577. "email": "sebastian@phpunit.de",
  2578. "role": "lead"
  2579. }
  2580. ],
  2581. "description": "Library that helps with managing the version number of Git-hosted PHP projects",
  2582. "homepage": "https://github.com/sebastianbergmann/version",
  2583. "time": "2016-10-03T07:35:21+00:00"
  2584. },
  2585. {
  2586. "name": "stack/builder",
  2587. "version": "v1.0.5",
  2588. "source": {
  2589. "type": "git",
  2590. "url": "https://github.com/stackphp/builder.git",
  2591. "reference": "fb3d136d04c6be41120ebf8c0cc71fe9507d750a"
  2592. },
  2593. "dist": {
  2594. "type": "zip",
  2595. "url": "https://api.github.com/repos/stackphp/builder/zipball/fb3d136d04c6be41120ebf8c0cc71fe9507d750a",
  2596. "reference": "fb3d136d04c6be41120ebf8c0cc71fe9507d750a",
  2597. "shasum": ""
  2598. },
  2599. "require": {
  2600. "php": ">=5.3.0",
  2601. "symfony/http-foundation": "~2.1|~3.0|~4.0",
  2602. "symfony/http-kernel": "~2.1|~3.0|~4.0"
  2603. },
  2604. "require-dev": {
  2605. "silex/silex": "~1.0"
  2606. },
  2607. "type": "library",
  2608. "extra": {
  2609. "branch-alias": {
  2610. "dev-master": "1.0-dev"
  2611. }
  2612. },
  2613. "autoload": {
  2614. "psr-0": {
  2615. "Stack": "src"
  2616. }
  2617. },
  2618. "notification-url": "https://packagist.org/downloads/",
  2619. "license": [
  2620. "MIT"
  2621. ],
  2622. "authors": [
  2623. {
  2624. "name": "Igor Wiedler",
  2625. "email": "igor@wiedler.ch"
  2626. }
  2627. ],
  2628. "description": "Builder for stack middlewares based on HttpKernelInterface.",
  2629. "keywords": [
  2630. "stack"
  2631. ],
  2632. "time": "2017-11-18T14:57:29+00:00"
  2633. },
  2634. {
  2635. "name": "stecman/symfony-console-completion",
  2636. "version": "0.7.0",
  2637. "source": {
  2638. "type": "git",
  2639. "url": "https://github.com/stecman/symfony-console-completion.git",
  2640. "reference": "5461d43e53092b3d3b9dbd9d999f2054730f4bbb"
  2641. },
  2642. "dist": {
  2643. "type": "zip",
  2644. "url": "https://api.github.com/repos/stecman/symfony-console-completion/zipball/5461d43e53092b3d3b9dbd9d999f2054730f4bbb",
  2645. "reference": "5461d43e53092b3d3b9dbd9d999f2054730f4bbb",
  2646. "shasum": ""
  2647. },
  2648. "require": {
  2649. "php": ">=5.3.2",
  2650. "symfony/console": "~2.3 || ~3.0"
  2651. },
  2652. "require-dev": {
  2653. "phpunit/phpunit": "~4.4"
  2654. },
  2655. "type": "library",
  2656. "extra": {
  2657. "branch-alias": {
  2658. "dev-master": "0.6.x-dev"
  2659. }
  2660. },
  2661. "autoload": {
  2662. "psr-4": {
  2663. "Stecman\\Component\\Symfony\\Console\\BashCompletion\\": "src/"
  2664. }
  2665. },
  2666. "notification-url": "https://packagist.org/downloads/",
  2667. "license": [
  2668. "MIT"
  2669. ],
  2670. "authors": [
  2671. {
  2672. "name": "Stephen Holdaway",
  2673. "email": "stephen@stecman.co.nz"
  2674. }
  2675. ],
  2676. "description": "Automatic BASH completion for Symfony Console Component based applications.",
  2677. "time": "2016-02-24T05:08:54+00:00"
  2678. },
  2679. {
  2680. "name": "symfony-cmf/routing",
  2681. "version": "1.4.1",
  2682. "source": {
  2683. "type": "git",
  2684. "url": "https://github.com/symfony-cmf/routing.git",
  2685. "reference": "fb1e7f85ff8c6866238b7e73a490a0a0243ae8ac"
  2686. },
  2687. "dist": {
  2688. "type": "zip",
  2689. "url": "https://api.github.com/repos/symfony-cmf/routing/zipball/fb1e7f85ff8c6866238b7e73a490a0a0243ae8ac",
  2690. "reference": "fb1e7f85ff8c6866238b7e73a490a0a0243ae8ac",
  2691. "shasum": ""
  2692. },
  2693. "require": {
  2694. "php": "^5.3.9|^7.0",
  2695. "psr/log": "1.*",
  2696. "symfony/http-kernel": "^2.2|3.*",
  2697. "symfony/routing": "^2.2|3.*"
  2698. },
  2699. "require-dev": {
  2700. "friendsofsymfony/jsrouting-bundle": "^1.1",
  2701. "symfony-cmf/testing": "^1.3",
  2702. "symfony/config": "^2.2|3.*",
  2703. "symfony/dependency-injection": "^2.0.5|3.*",
  2704. "symfony/event-dispatcher": "^2.1|3.*"
  2705. },
  2706. "suggest": {
  2707. "symfony/event-dispatcher": "DynamicRouter can optionally trigger an event at the start of matching. Minimal version (~2.1)"
  2708. },
  2709. "type": "library",
  2710. "extra": {
  2711. "branch-alias": {
  2712. "dev-master": "1.4-dev"
  2713. }
  2714. },
  2715. "autoload": {
  2716. "psr-4": {
  2717. "Symfony\\Cmf\\Component\\Routing\\": ""
  2718. }
  2719. },
  2720. "notification-url": "https://packagist.org/downloads/",
  2721. "license": [
  2722. "MIT"
  2723. ],
  2724. "authors": [
  2725. {
  2726. "name": "Symfony CMF Community",
  2727. "homepage": "https://github.com/symfony-cmf/Routing/contributors"
  2728. }
  2729. ],
  2730. "description": "Extends the Symfony2 routing component for dynamic routes and chaining several routers",
  2731. "homepage": "http://cmf.symfony.com",
  2732. "keywords": [
  2733. "database",
  2734. "routing"
  2735. ],
  2736. "time": "2017-05-09T08:10:41+00:00"
  2737. },
  2738. {
  2739. "name": "symfony/class-loader",
  2740. "version": "v3.4.6",
  2741. "source": {
  2742. "type": "git",
  2743. "url": "https://github.com/symfony/class-loader.git",
  2744. "reference": "e63c12699822bb3b667e7216ba07fbcc3a3e203e"
  2745. },
  2746. "dist": {
  2747. "type": "zip",
  2748. "url": "https://api.github.com/repos/symfony/class-loader/zipball/e63c12699822bb3b667e7216ba07fbcc3a3e203e",
  2749. "reference": "e63c12699822bb3b667e7216ba07fbcc3a3e203e",
  2750. "shasum": ""
  2751. },
  2752. "require": {
  2753. "php": "^5.5.9|>=7.0.8"
  2754. },
  2755. "require-dev": {
  2756. "symfony/finder": "~2.8|~3.0|~4.0",
  2757. "symfony/polyfill-apcu": "~1.1"
  2758. },
  2759. "suggest": {
  2760. "symfony/polyfill-apcu": "For using ApcClassLoader on HHVM"
  2761. },
  2762. "type": "library",
  2763. "extra": {
  2764. "branch-alias": {
  2765. "dev-master": "3.4-dev"
  2766. }
  2767. },
  2768. "autoload": {
  2769. "psr-4": {
  2770. "Symfony\\Component\\ClassLoader\\": ""
  2771. },
  2772. "exclude-from-classmap": [
  2773. "/Tests/"
  2774. ]
  2775. },
  2776. "notification-url": "https://packagist.org/downloads/",
  2777. "license": [
  2778. "MIT"
  2779. ],
  2780. "authors": [
  2781. {
  2782. "name": "Fabien Potencier",
  2783. "email": "fabien@symfony.com"
  2784. },
  2785. {
  2786. "name": "Symfony Community",
  2787. "homepage": "https://symfony.com/contributors"
  2788. }
  2789. ],
  2790. "description": "Symfony ClassLoader Component",
  2791. "homepage": "https://symfony.com",
  2792. "time": "2018-01-03T07:37:34+00:00"
  2793. },
  2794. {
  2795. "name": "symfony/config",
  2796. "version": "v3.4.6",
  2797. "source": {
  2798. "type": "git",
  2799. "url": "https://github.com/symfony/config.git",
  2800. "reference": "05e10567b529476a006b00746c5f538f1636810e"
  2801. },
  2802. "dist": {
  2803. "type": "zip",
  2804. "url": "https://api.github.com/repos/symfony/config/zipball/05e10567b529476a006b00746c5f538f1636810e",
  2805. "reference": "05e10567b529476a006b00746c5f538f1636810e",
  2806. "shasum": ""
  2807. },
  2808. "require": {
  2809. "php": "^5.5.9|>=7.0.8",
  2810. "symfony/filesystem": "~2.8|~3.0|~4.0"
  2811. },
  2812. "conflict": {
  2813. "symfony/dependency-injection": "<3.3",
  2814. "symfony/finder": "<3.3"
  2815. },
  2816. "require-dev": {
  2817. "symfony/dependency-injection": "~3.3|~4.0",
  2818. "symfony/event-dispatcher": "~3.3|~4.0",
  2819. "symfony/finder": "~3.3|~4.0",
  2820. "symfony/yaml": "~3.0|~4.0"
  2821. },
  2822. "suggest": {
  2823. "symfony/yaml": "To use the yaml reference dumper"
  2824. },
  2825. "type": "library",
  2826. "extra": {
  2827. "branch-alias": {
  2828. "dev-master": "3.4-dev"
  2829. }
  2830. },
  2831. "autoload": {
  2832. "psr-4": {
  2833. "Symfony\\Component\\Config\\": ""
  2834. },
  2835. "exclude-from-classmap": [
  2836. "/Tests/"
  2837. ]
  2838. },
  2839. "notification-url": "https://packagist.org/downloads/",
  2840. "license": [
  2841. "MIT"
  2842. ],
  2843. "authors": [
  2844. {
  2845. "name": "Fabien Potencier",
  2846. "email": "fabien@symfony.com"
  2847. },
  2848. {
  2849. "name": "Symfony Community",
  2850. "homepage": "https://symfony.com/contributors"
  2851. }
  2852. ],
  2853. "description": "Symfony Config Component",
  2854. "homepage": "https://symfony.com",
  2855. "time": "2018-02-14T10:03:57+00:00"
  2856. },
  2857. {
  2858. "name": "symfony/console",
  2859. "version": "v3.4.6",
  2860. "source": {
  2861. "type": "git",
  2862. "url": "https://github.com/symfony/console.git",
  2863. "reference": "067339e9b8ec30d5f19f5950208893ff026b94f7"
  2864. },
  2865. "dist": {
  2866. "type": "zip",
  2867. "url": "https://api.github.com/repos/symfony/console/zipball/067339e9b8ec30d5f19f5950208893ff026b94f7",
  2868. "reference": "067339e9b8ec30d5f19f5950208893ff026b94f7",
  2869. "shasum": ""
  2870. },
  2871. "require": {
  2872. "php": "^5.5.9|>=7.0.8",
  2873. "symfony/debug": "~2.8|~3.0|~4.0",
  2874. "symfony/polyfill-mbstring": "~1.0"
  2875. },
  2876. "conflict": {
  2877. "symfony/dependency-injection": "<3.4",
  2878. "symfony/process": "<3.3"
  2879. },
  2880. "require-dev": {
  2881. "psr/log": "~1.0",
  2882. "symfony/config": "~3.3|~4.0",
  2883. "symfony/dependency-injection": "~3.4|~4.0",
  2884. "symfony/event-dispatcher": "~2.8|~3.0|~4.0",
  2885. "symfony/lock": "~3.4|~4.0",
  2886. "symfony/process": "~3.3|~4.0"
  2887. },
  2888. "suggest": {
  2889. "psr/log": "For using the console logger",
  2890. "symfony/event-dispatcher": "",
  2891. "symfony/lock": "",
  2892. "symfony/process": ""
  2893. },
  2894. "type": "library",
  2895. "extra": {
  2896. "branch-alias": {
  2897. "dev-master": "3.4-dev"
  2898. }
  2899. },
  2900. "autoload": {
  2901. "psr-4": {
  2902. "Symfony\\Component\\Console\\": ""
  2903. },
  2904. "exclude-from-classmap": [
  2905. "/Tests/"
  2906. ]
  2907. },
  2908. "notification-url": "https://packagist.org/downloads/",
  2909. "license": [
  2910. "MIT"
  2911. ],
  2912. "authors": [
  2913. {
  2914. "name": "Fabien Potencier",
  2915. "email": "fabien@symfony.com"
  2916. },
  2917. {
  2918. "name": "Symfony Community",
  2919. "homepage": "https://symfony.com/contributors"
  2920. }
  2921. ],
  2922. "description": "Symfony Console Component",
  2923. "homepage": "https://symfony.com",
  2924. "time": "2018-02-26T15:46:28+00:00"
  2925. },
  2926. {
  2927. "name": "symfony/css-selector",
  2928. "version": "v3.4.6",
  2929. "source": {
  2930. "type": "git",
  2931. "url": "https://github.com/symfony/css-selector.git",
  2932. "reference": "544655f1fc078a9cd839fdda2b7b1e64627c826a"
  2933. },
  2934. "dist": {
  2935. "type": "zip",
  2936. "url": "https://api.github.com/repos/symfony/css-selector/zipball/544655f1fc078a9cd839fdda2b7b1e64627c826a",
  2937. "reference": "544655f1fc078a9cd839fdda2b7b1e64627c826a",
  2938. "shasum": ""
  2939. },
  2940. "require": {
  2941. "php": "^5.5.9|>=7.0.8"
  2942. },
  2943. "type": "library",
  2944. "extra": {
  2945. "branch-alias": {
  2946. "dev-master": "3.4-dev"
  2947. }
  2948. },
  2949. "autoload": {
  2950. "psr-4": {
  2951. "Symfony\\Component\\CssSelector\\": ""
  2952. },
  2953. "exclude-from-classmap": [
  2954. "/Tests/"
  2955. ]
  2956. },
  2957. "notification-url": "https://packagist.org/downloads/",
  2958. "license": [
  2959. "MIT"
  2960. ],
  2961. "authors": [
  2962. {
  2963. "name": "Jean-François Simon",
  2964. "email": "jeanfrancois.simon@sensiolabs.com"
  2965. },
  2966. {
  2967. "name": "Fabien Potencier",
  2968. "email": "fabien@symfony.com"
  2969. },
  2970. {
  2971. "name": "Symfony Community",
  2972. "homepage": "https://symfony.com/contributors"
  2973. }
  2974. ],
  2975. "description": "Symfony CssSelector Component",
  2976. "homepage": "https://symfony.com",
  2977. "time": "2018-02-03T14:55:07+00:00"
  2978. },
  2979. {
  2980. "name": "symfony/debug",
  2981. "version": "v3.4.6",
  2982. "source": {
  2983. "type": "git",
  2984. "url": "https://github.com/symfony/debug.git",
  2985. "reference": "9b1071f86e79e1999b3d3675d2e0e7684268b9bc"
  2986. },
  2987. "dist": {
  2988. "type": "zip",
  2989. "url": "https://api.github.com/repos/symfony/debug/zipball/9b1071f86e79e1999b3d3675d2e0e7684268b9bc",
  2990. "reference": "9b1071f86e79e1999b3d3675d2e0e7684268b9bc",
  2991. "shasum": ""
  2992. },
  2993. "require": {
  2994. "php": "^5.5.9|>=7.0.8",
  2995. "psr/log": "~1.0"
  2996. },
  2997. "conflict": {
  2998. "symfony/http-kernel": ">=2.3,<2.3.24|~2.4.0|>=2.5,<2.5.9|>=2.6,<2.6.2"
  2999. },
  3000. "require-dev": {
  3001. "symfony/http-kernel": "~2.8|~3.0|~4.0"
  3002. },
  3003. "type": "library",
  3004. "extra": {
  3005. "branch-alias": {
  3006. "dev-master": "3.4-dev"
  3007. }
  3008. },
  3009. "autoload": {
  3010. "psr-4": {
  3011. "Symfony\\Component\\Debug\\": ""
  3012. },
  3013. "exclude-from-classmap": [
  3014. "/Tests/"
  3015. ]
  3016. },
  3017. "notification-url": "https://packagist.org/downloads/",
  3018. "license": [
  3019. "MIT"
  3020. ],
  3021. "authors": [
  3022. {
  3023. "name": "Fabien Potencier",
  3024. "email": "fabien@symfony.com"
  3025. },
  3026. {
  3027. "name": "Symfony Community",
  3028. "homepage": "https://symfony.com/contributors"
  3029. }
  3030. ],
  3031. "description": "Symfony Debug Component",
  3032. "homepage": "https://symfony.com",
  3033. "time": "2018-02-28T21:49:22+00:00"
  3034. },
  3035. {
  3036. "name": "symfony/dependency-injection",
  3037. "version": "v3.4.6",
  3038. "source": {
  3039. "type": "git",
  3040. "url": "https://github.com/symfony/dependency-injection.git",
  3041. "reference": "12e901abc1cb0d637a0e5abe9923471361d96b07"
  3042. },
  3043. "dist": {
  3044. "type": "zip",
  3045. "url": "https://api.github.com/repos/symfony/dependency-injection/zipball/12e901abc1cb0d637a0e5abe9923471361d96b07",
  3046. "reference": "12e901abc1cb0d637a0e5abe9923471361d96b07",
  3047. "shasum": ""
  3048. },
  3049. "require": {
  3050. "php": "^5.5.9|>=7.0.8",
  3051. "psr/container": "^1.0"
  3052. },
  3053. "conflict": {
  3054. "symfony/config": "<3.3.7",
  3055. "symfony/finder": "<3.3",
  3056. "symfony/proxy-manager-bridge": "<3.4",
  3057. "symfony/yaml": "<3.4"
  3058. },
  3059. "provide": {
  3060. "psr/container-implementation": "1.0"
  3061. },
  3062. "require-dev": {
  3063. "symfony/config": "~3.3|~4.0",
  3064. "symfony/expression-language": "~2.8|~3.0|~4.0",
  3065. "symfony/yaml": "~3.4|~4.0"
  3066. },
  3067. "suggest": {
  3068. "symfony/config": "",
  3069. "symfony/expression-language": "For using expressions in service container configuration",
  3070. "symfony/finder": "For using double-star glob patterns or when GLOB_BRACE portability is required",
  3071. "symfony/proxy-manager-bridge": "Generate service proxies to lazy load them",
  3072. "symfony/yaml": ""
  3073. },
  3074. "type": "library",
  3075. "extra": {
  3076. "branch-alias": {
  3077. "dev-master": "3.4-dev"
  3078. }
  3079. },
  3080. "autoload": {
  3081. "psr-4": {
  3082. "Symfony\\Component\\DependencyInjection\\": ""
  3083. },
  3084. "exclude-from-classmap": [
  3085. "/Tests/"
  3086. ]
  3087. },
  3088. "notification-url": "https://packagist.org/downloads/",
  3089. "license": [
  3090. "MIT"
  3091. ],
  3092. "authors": [
  3093. {
  3094. "name": "Fabien Potencier",
  3095. "email": "fabien@symfony.com"
  3096. },
  3097. {
  3098. "name": "Symfony Community",
  3099. "homepage": "https://symfony.com/contributors"
  3100. }
  3101. ],
  3102. "description": "Symfony DependencyInjection Component",
  3103. "homepage": "https://symfony.com",
  3104. "time": "2018-03-04T03:54:53+00:00"
  3105. },
  3106. {
  3107. "name": "symfony/dom-crawler",
  3108. "version": "v3.4.6",
  3109. "source": {
  3110. "type": "git",
  3111. "url": "https://github.com/symfony/dom-crawler.git",
  3112. "reference": "2bb5d3101cc01f4fe580e536daf4f1959bc2d24d"
  3113. },
  3114. "dist": {
  3115. "type": "zip",
  3116. "url": "https://api.github.com/repos/symfony/dom-crawler/zipball/2bb5d3101cc01f4fe580e536daf4f1959bc2d24d",
  3117. "reference": "2bb5d3101cc01f4fe580e536daf4f1959bc2d24d",
  3118. "shasum": ""
  3119. },
  3120. "require": {
  3121. "php": "^5.5.9|>=7.0.8",
  3122. "symfony/polyfill-mbstring": "~1.0"
  3123. },
  3124. "require-dev": {
  3125. "symfony/css-selector": "~2.8|~3.0|~4.0"
  3126. },
  3127. "suggest": {
  3128. "symfony/css-selector": ""
  3129. },
  3130. "type": "library",
  3131. "extra": {
  3132. "branch-alias": {
  3133. "dev-master": "3.4-dev"
  3134. }
  3135. },
  3136. "autoload": {
  3137. "psr-4": {
  3138. "Symfony\\Component\\DomCrawler\\": ""
  3139. },
  3140. "exclude-from-classmap": [
  3141. "/Tests/"
  3142. ]
  3143. },
  3144. "notification-url": "https://packagist.org/downloads/",
  3145. "license": [
  3146. "MIT"
  3147. ],
  3148. "authors": [
  3149. {
  3150. "name": "Fabien Potencier",
  3151. "email": "fabien@symfony.com"
  3152. },
  3153. {
  3154. "name": "Symfony Community",
  3155. "homepage": "https://symfony.com/contributors"
  3156. }
  3157. ],
  3158. "description": "Symfony DomCrawler Component",
  3159. "homepage": "https://symfony.com",
  3160. "time": "2018-02-22T10:48:49+00:00"
  3161. },
  3162. {
  3163. "name": "symfony/event-dispatcher",
  3164. "version": "v3.4.6",
  3165. "source": {
  3166. "type": "git",
  3167. "url": "https://github.com/symfony/event-dispatcher.git",
  3168. "reference": "58990682ac3fdc1f563b7e705452921372aad11d"
  3169. },
  3170. "dist": {
  3171. "type": "zip",
  3172. "url": "https://api.github.com/repos/symfony/event-dispatcher/zipball/58990682ac3fdc1f563b7e705452921372aad11d",
  3173. "reference": "58990682ac3fdc1f563b7e705452921372aad11d",
  3174. "shasum": ""
  3175. },
  3176. "require": {
  3177. "php": "^5.5.9|>=7.0.8"
  3178. },
  3179. "conflict": {
  3180. "symfony/dependency-injection": "<3.3"
  3181. },
  3182. "require-dev": {
  3183. "psr/log": "~1.0",
  3184. "symfony/config": "~2.8|~3.0|~4.0",
  3185. "symfony/dependency-injection": "~3.3|~4.0",
  3186. "symfony/expression-language": "~2.8|~3.0|~4.0",
  3187. "symfony/stopwatch": "~2.8|~3.0|~4.0"
  3188. },
  3189. "suggest": {
  3190. "symfony/dependency-injection": "",
  3191. "symfony/http-kernel": ""
  3192. },
  3193. "type": "library",
  3194. "extra": {
  3195. "branch-alias": {
  3196. "dev-master": "3.4-dev"
  3197. }
  3198. },
  3199. "autoload": {
  3200. "psr-4": {
  3201. "Symfony\\Component\\EventDispatcher\\": ""
  3202. },
  3203. "exclude-from-classmap": [
  3204. "/Tests/"
  3205. ]
  3206. },
  3207. "notification-url": "https://packagist.org/downloads/",
  3208. "license": [
  3209. "MIT"
  3210. ],
  3211. "authors": [
  3212. {
  3213. "name": "Fabien Potencier",
  3214. "email": "fabien@symfony.com"
  3215. },
  3216. {
  3217. "name": "Symfony Community",
  3218. "homepage": "https://symfony.com/contributors"
  3219. }
  3220. ],
  3221. "description": "Symfony EventDispatcher Component",
  3222. "homepage": "https://symfony.com",
  3223. "time": "2018-02-14T10:03:57+00:00"
  3224. },
  3225. {
  3226. "name": "symfony/filesystem",
  3227. "version": "v3.4.6",
  3228. "source": {
  3229. "type": "git",
  3230. "url": "https://github.com/symfony/filesystem.git",
  3231. "reference": "253a4490b528597aa14d2bf5aeded6f5e5e4a541"
  3232. },
  3233. "dist": {
  3234. "type": "zip",
  3235. "url": "https://api.github.com/repos/symfony/filesystem/zipball/253a4490b528597aa14d2bf5aeded6f5e5e4a541",
  3236. "reference": "253a4490b528597aa14d2bf5aeded6f5e5e4a541",
  3237. "shasum": ""
  3238. },
  3239. "require": {
  3240. "php": "^5.5.9|>=7.0.8"
  3241. },
  3242. "type": "library",
  3243. "extra": {
  3244. "branch-alias": {
  3245. "dev-master": "3.4-dev"
  3246. }
  3247. },
  3248. "autoload": {
  3249. "psr-4": {
  3250. "Symfony\\Component\\Filesystem\\": ""
  3251. },
  3252. "exclude-from-classmap": [
  3253. "/Tests/"
  3254. ]
  3255. },
  3256. "notification-url": "https://packagist.org/downloads/",
  3257. "license": [
  3258. "MIT"
  3259. ],
  3260. "authors": [
  3261. {
  3262. "name": "Fabien Potencier",
  3263. "email": "fabien@symfony.com"
  3264. },
  3265. {
  3266. "name": "Symfony Community",
  3267. "homepage": "https://symfony.com/contributors"
  3268. }
  3269. ],
  3270. "description": "Symfony Filesystem Component",
  3271. "homepage": "https://symfony.com",
  3272. "time": "2018-02-22T10:48:49+00:00"
  3273. },
  3274. {
  3275. "name": "symfony/finder",
  3276. "version": "v3.4.6",
  3277. "source": {
  3278. "type": "git",
  3279. "url": "https://github.com/symfony/finder.git",
  3280. "reference": "a479817ce0a9e4adfd7d39c6407c95d97c254625"
  3281. },
  3282. "dist": {
  3283. "type": "zip",
  3284. "url": "https://api.github.com/repos/symfony/finder/zipball/a479817ce0a9e4adfd7d39c6407c95d97c254625",
  3285. "reference": "a479817ce0a9e4adfd7d39c6407c95d97c254625",
  3286. "shasum": ""
  3287. },
  3288. "require": {
  3289. "php": "^5.5.9|>=7.0.8"
  3290. },
  3291. "type": "library",
  3292. "extra": {
  3293. "branch-alias": {
  3294. "dev-master": "3.4-dev"
  3295. }
  3296. },
  3297. "autoload": {
  3298. "psr-4": {
  3299. "Symfony\\Component\\Finder\\": ""
  3300. },
  3301. "exclude-from-classmap": [
  3302. "/Tests/"
  3303. ]
  3304. },
  3305. "notification-url": "https://packagist.org/downloads/",
  3306. "license": [
  3307. "MIT"
  3308. ],
  3309. "authors": [
  3310. {
  3311. "name": "Fabien Potencier",
  3312. "email": "fabien@symfony.com"
  3313. },
  3314. {
  3315. "name": "Symfony Community",
  3316. "homepage": "https://symfony.com/contributors"
  3317. }
  3318. ],
  3319. "description": "Symfony Finder Component",
  3320. "homepage": "https://symfony.com",
  3321. "time": "2018-03-05T18:28:11+00:00"
  3322. },
  3323. {
  3324. "name": "symfony/http-foundation",
  3325. "version": "v3.4.6",
  3326. "source": {
  3327. "type": "git",
  3328. "url": "https://github.com/symfony/http-foundation.git",
  3329. "reference": "6f5935723c11b4125fc9927db6ad2feaa196e175"
  3330. },
  3331. "dist": {
  3332. "type": "zip",
  3333. "url": "https://api.github.com/repos/symfony/http-foundation/zipball/6f5935723c11b4125fc9927db6ad2feaa196e175",
  3334. "reference": "6f5935723c11b4125fc9927db6ad2feaa196e175",
  3335. "shasum": ""
  3336. },
  3337. "require": {
  3338. "php": "^5.5.9|>=7.0.8",
  3339. "symfony/polyfill-mbstring": "~1.1",
  3340. "symfony/polyfill-php70": "~1.6"
  3341. },
  3342. "require-dev": {
  3343. "symfony/expression-language": "~2.8|~3.0|~4.0"
  3344. },
  3345. "type": "library",
  3346. "extra": {
  3347. "branch-alias": {
  3348. "dev-master": "3.4-dev"
  3349. }
  3350. },
  3351. "autoload": {
  3352. "psr-4": {
  3353. "Symfony\\Component\\HttpFoundation\\": ""
  3354. },
  3355. "exclude-from-classmap": [
  3356. "/Tests/"
  3357. ]
  3358. },
  3359. "notification-url": "https://packagist.org/downloads/",
  3360. "license": [
  3361. "MIT"
  3362. ],
  3363. "authors": [
  3364. {
  3365. "name": "Fabien Potencier",
  3366. "email": "fabien@symfony.com"
  3367. },
  3368. {
  3369. "name": "Symfony Community",
  3370. "homepage": "https://symfony.com/contributors"
  3371. }
  3372. ],
  3373. "description": "Symfony HttpFoundation Component",
  3374. "homepage": "https://symfony.com",
  3375. "time": "2018-02-22T10:48:49+00:00"
  3376. },
  3377. {
  3378. "name": "symfony/http-kernel",
  3379. "version": "v3.4.6",
  3380. "source": {
  3381. "type": "git",
  3382. "url": "https://github.com/symfony/http-kernel.git",
  3383. "reference": "a443bbbd93682aa08e623fade4c94edd586ed2de"
  3384. },
  3385. "dist": {
  3386. "type": "zip",
  3387. "url": "https://api.github.com/repos/symfony/http-kernel/zipball/a443bbbd93682aa08e623fade4c94edd586ed2de",
  3388. "reference": "a443bbbd93682aa08e623fade4c94edd586ed2de",
  3389. "shasum": ""
  3390. },
  3391. "require": {
  3392. "php": "^5.5.9|>=7.0.8",
  3393. "psr/log": "~1.0",
  3394. "symfony/debug": "~2.8|~3.0|~4.0",
  3395. "symfony/event-dispatcher": "~2.8|~3.0|~4.0",
  3396. "symfony/http-foundation": "^3.4.4|^4.0.4"
  3397. },
  3398. "conflict": {
  3399. "symfony/config": "<2.8",
  3400. "symfony/dependency-injection": "<3.4.5|<4.0.5,>=4",
  3401. "symfony/var-dumper": "<3.3",
  3402. "twig/twig": "<1.34|<2.4,>=2"
  3403. },
  3404. "provide": {
  3405. "psr/log-implementation": "1.0"
  3406. },
  3407. "require-dev": {
  3408. "psr/cache": "~1.0",
  3409. "symfony/browser-kit": "~2.8|~3.0|~4.0",
  3410. "symfony/class-loader": "~2.8|~3.0",
  3411. "symfony/config": "~2.8|~3.0|~4.0",
  3412. "symfony/console": "~2.8|~3.0|~4.0",
  3413. "symfony/css-selector": "~2.8|~3.0|~4.0",
  3414. "symfony/dependency-injection": "^3.4.5|^4.0.5",
  3415. "symfony/dom-crawler": "~2.8|~3.0|~4.0",
  3416. "symfony/expression-language": "~2.8|~3.0|~4.0",
  3417. "symfony/finder": "~2.8|~3.0|~4.0",
  3418. "symfony/process": "~2.8|~3.0|~4.0",
  3419. "symfony/routing": "~3.4|~4.0",
  3420. "symfony/stopwatch": "~2.8|~3.0|~4.0",
  3421. "symfony/templating": "~2.8|~3.0|~4.0",
  3422. "symfony/translation": "~2.8|~3.0|~4.0",
  3423. "symfony/var-dumper": "~3.3|~4.0"
  3424. },
  3425. "suggest": {
  3426. "symfony/browser-kit": "",
  3427. "symfony/config": "",
  3428. "symfony/console": "",
  3429. "symfony/dependency-injection": "",
  3430. "symfony/finder": "",
  3431. "symfony/var-dumper": ""
  3432. },
  3433. "type": "library",
  3434. "extra": {
  3435. "branch-alias": {
  3436. "dev-master": "3.4-dev"
  3437. }
  3438. },
  3439. "autoload": {
  3440. "psr-4": {
  3441. "Symfony\\Component\\HttpKernel\\": ""
  3442. },
  3443. "exclude-from-classmap": [
  3444. "/Tests/"
  3445. ]
  3446. },
  3447. "notification-url": "https://packagist.org/downloads/",
  3448. "license": [
  3449. "MIT"
  3450. ],
  3451. "authors": [
  3452. {
  3453. "name": "Fabien Potencier",
  3454. "email": "fabien@symfony.com"
  3455. },
  3456. {
  3457. "name": "Symfony Community",
  3458. "homepage": "https://symfony.com/contributors"
  3459. }
  3460. ],
  3461. "description": "Symfony HttpKernel Component",
  3462. "homepage": "https://symfony.com",
  3463. "time": "2018-03-05T19:41:07+00:00"
  3464. },
  3465. {
  3466. "name": "symfony/polyfill-iconv",
  3467. "version": "v1.7.0",
  3468. "source": {
  3469. "type": "git",
  3470. "url": "https://github.com/symfony/polyfill-iconv.git",
  3471. "reference": "bd515d8f392730c833bc1ba993a4f598da64fa5b"
  3472. },
  3473. "dist": {
  3474. "type": "zip",
  3475. "url": "https://api.github.com/repos/symfony/polyfill-iconv/zipball/bd515d8f392730c833bc1ba993a4f598da64fa5b",
  3476. "reference": "bd515d8f392730c833bc1ba993a4f598da64fa5b",
  3477. "shasum": ""
  3478. },
  3479. "require": {
  3480. "php": ">=5.3.3"
  3481. },
  3482. "suggest": {
  3483. "ext-iconv": "For best performance"
  3484. },
  3485. "type": "library",
  3486. "extra": {
  3487. "branch-alias": {
  3488. "dev-master": "1.7-dev"
  3489. }
  3490. },
  3491. "autoload": {
  3492. "psr-4": {
  3493. "Symfony\\Polyfill\\Iconv\\": ""
  3494. },
  3495. "files": [
  3496. "bootstrap.php"
  3497. ]
  3498. },
  3499. "notification-url": "https://packagist.org/downloads/",
  3500. "license": [
  3501. "MIT"
  3502. ],
  3503. "authors": [
  3504. {
  3505. "name": "Nicolas Grekas",
  3506. "email": "p@tchwork.com"
  3507. },
  3508. {
  3509. "name": "Symfony Community",
  3510. "homepage": "https://symfony.com/contributors"
  3511. }
  3512. ],
  3513. "description": "Symfony polyfill for the Iconv extension",
  3514. "homepage": "https://symfony.com",
  3515. "keywords": [
  3516. "compatibility",
  3517. "iconv",
  3518. "polyfill",
  3519. "portable",
  3520. "shim"
  3521. ],
  3522. "time": "2018-01-30T19:27:44+00:00"
  3523. },
  3524. {
  3525. "name": "symfony/polyfill-mbstring",
  3526. "version": "v1.7.0",
  3527. "source": {
  3528. "type": "git",
  3529. "url": "https://github.com/symfony/polyfill-mbstring.git",
  3530. "reference": "78be803ce01e55d3491c1397cf1c64beb9c1b63b"
  3531. },
  3532. "dist": {
  3533. "type": "zip",
  3534. "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/78be803ce01e55d3491c1397cf1c64beb9c1b63b",
  3535. "reference": "78be803ce01e55d3491c1397cf1c64beb9c1b63b",
  3536. "shasum": ""
  3537. },
  3538. "require": {
  3539. "php": ">=5.3.3"
  3540. },
  3541. "suggest": {
  3542. "ext-mbstring": "For best performance"
  3543. },
  3544. "type": "library",
  3545. "extra": {
  3546. "branch-alias": {
  3547. "dev-master": "1.7-dev"
  3548. }
  3549. },
  3550. "autoload": {
  3551. "psr-4": {
  3552. "Symfony\\Polyfill\\Mbstring\\": ""
  3553. },
  3554. "files": [
  3555. "bootstrap.php"
  3556. ]
  3557. },
  3558. "notification-url": "https://packagist.org/downloads/",
  3559. "license": [
  3560. "MIT"
  3561. ],
  3562. "authors": [
  3563. {
  3564. "name": "Nicolas Grekas",
  3565. "email": "p@tchwork.com"
  3566. },
  3567. {
  3568. "name": "Symfony Community",
  3569. "homepage": "https://symfony.com/contributors"
  3570. }
  3571. ],
  3572. "description": "Symfony polyfill for the Mbstring extension",
  3573. "homepage": "https://symfony.com",
  3574. "keywords": [
  3575. "compatibility",
  3576. "mbstring",
  3577. "polyfill",
  3578. "portable",
  3579. "shim"
  3580. ],
  3581. "time": "2018-01-30T19:27:44+00:00"
  3582. },
  3583. {
  3584. "name": "symfony/polyfill-php70",
  3585. "version": "v1.7.0",
  3586. "source": {
  3587. "type": "git",
  3588. "url": "https://github.com/symfony/polyfill-php70.git",
  3589. "reference": "3532bfcd8f933a7816f3a0a59682fc404776600f"
  3590. },
  3591. "dist": {
  3592. "type": "zip",
  3593. "url": "https://api.github.com/repos/symfony/polyfill-php70/zipball/3532bfcd8f933a7816f3a0a59682fc404776600f",
  3594. "reference": "3532bfcd8f933a7816f3a0a59682fc404776600f",
  3595. "shasum": ""
  3596. },
  3597. "require": {
  3598. "paragonie/random_compat": "~1.0|~2.0",
  3599. "php": ">=5.3.3"
  3600. },
  3601. "type": "library",
  3602. "extra": {
  3603. "branch-alias": {
  3604. "dev-master": "1.7-dev"
  3605. }
  3606. },
  3607. "autoload": {
  3608. "psr-4": {
  3609. "Symfony\\Polyfill\\Php70\\": ""
  3610. },
  3611. "files": [
  3612. "bootstrap.php"
  3613. ],
  3614. "classmap": [
  3615. "Resources/stubs"
  3616. ]
  3617. },
  3618. "notification-url": "https://packagist.org/downloads/",
  3619. "license": [
  3620. "MIT"
  3621. ],
  3622. "authors": [
  3623. {
  3624. "name": "Nicolas Grekas",
  3625. "email": "p@tchwork.com"
  3626. },
  3627. {
  3628. "name": "Symfony Community",
  3629. "homepage": "https://symfony.com/contributors"
  3630. }
  3631. ],
  3632. "description": "Symfony polyfill backporting some PHP 7.0+ features to lower PHP versions",
  3633. "homepage": "https://symfony.com",
  3634. "keywords": [
  3635. "compatibility",
  3636. "polyfill",
  3637. "portable",
  3638. "shim"
  3639. ],
  3640. "time": "2018-01-30T19:27:44+00:00"
  3641. },
  3642. {
  3643. "name": "symfony/process",
  3644. "version": "v3.4.6",
  3645. "source": {
  3646. "type": "git",
  3647. "url": "https://github.com/symfony/process.git",
  3648. "reference": "cc4aea21f619116aaf1c58016a944e4821c8e8af"
  3649. },
  3650. "dist": {
  3651. "type": "zip",
  3652. "url": "https://api.github.com/repos/symfony/process/zipball/cc4aea21f619116aaf1c58016a944e4821c8e8af",
  3653. "reference": "cc4aea21f619116aaf1c58016a944e4821c8e8af",
  3654. "shasum": ""
  3655. },
  3656. "require": {
  3657. "php": "^5.5.9|>=7.0.8"
  3658. },
  3659. "type": "library",
  3660. "extra": {
  3661. "branch-alias": {
  3662. "dev-master": "3.4-dev"
  3663. }
  3664. },
  3665. "autoload": {
  3666. "psr-4": {
  3667. "Symfony\\Component\\Process\\": ""
  3668. },
  3669. "exclude-from-classmap": [
  3670. "/Tests/"
  3671. ]
  3672. },
  3673. "notification-url": "https://packagist.org/downloads/",
  3674. "license": [
  3675. "MIT"
  3676. ],
  3677. "authors": [
  3678. {
  3679. "name": "Fabien Potencier",
  3680. "email": "fabien@symfony.com"
  3681. },
  3682. {
  3683. "name": "Symfony Community",
  3684. "homepage": "https://symfony.com/contributors"
  3685. }
  3686. ],
  3687. "description": "Symfony Process Component",
  3688. "homepage": "https://symfony.com",
  3689. "time": "2018-02-12T17:55:00+00:00"
  3690. },
  3691. {
  3692. "name": "symfony/psr-http-message-bridge",
  3693. "version": "v1.0.2",
  3694. "source": {
  3695. "type": "git",
  3696. "url": "https://github.com/symfony/psr-http-message-bridge.git",
  3697. "reference": "c2b757934f2d9681a287e662efbc27c41fe8ef86"
  3698. },
  3699. "dist": {
  3700. "type": "zip",
  3701. "url": "https://api.github.com/repos/symfony/psr-http-message-bridge/zipball/c2b757934f2d9681a287e662efbc27c41fe8ef86",
  3702. "reference": "c2b757934f2d9681a287e662efbc27c41fe8ef86",
  3703. "shasum": ""
  3704. },
  3705. "require": {
  3706. "php": ">=5.3.3",
  3707. "psr/http-message": "~1.0",
  3708. "symfony/http-foundation": "~2.3|~3.0|~4.0"
  3709. },
  3710. "require-dev": {
  3711. "symfony/phpunit-bridge": "~3.2|4.0"
  3712. },
  3713. "suggest": {
  3714. "psr/http-message-implementation": "To use the HttpFoundation factory",
  3715. "zendframework/zend-diactoros": "To use the Zend Diactoros factory"
  3716. },
  3717. "type": "symfony-bridge",
  3718. "extra": {
  3719. "branch-alias": {
  3720. "dev-master": "1.0-dev"
  3721. }
  3722. },
  3723. "autoload": {
  3724. "psr-4": {
  3725. "Symfony\\Bridge\\PsrHttpMessage\\": ""
  3726. }
  3727. },
  3728. "notification-url": "https://packagist.org/downloads/",
  3729. "license": [
  3730. "MIT"
  3731. ],
  3732. "authors": [
  3733. {
  3734. "name": "Symfony Community",
  3735. "homepage": "http://symfony.com/contributors"
  3736. },
  3737. {
  3738. "name": "Fabien Potencier",
  3739. "email": "fabien@symfony.com"
  3740. }
  3741. ],
  3742. "description": "PSR HTTP message bridge",
  3743. "homepage": "http://symfony.com",
  3744. "keywords": [
  3745. "http",
  3746. "http-message",
  3747. "psr-7"
  3748. ],
  3749. "time": "2017-12-19T00:31:44+00:00"
  3750. },
  3751. {
  3752. "name": "symfony/routing",
  3753. "version": "v3.4.6",
  3754. "source": {
  3755. "type": "git",
  3756. "url": "https://github.com/symfony/routing.git",
  3757. "reference": "8773a9d52715f1a579576ce0e60213de34f5ef3e"
  3758. },
  3759. "dist": {
  3760. "type": "zip",
  3761. "url": "https://api.github.com/repos/symfony/routing/zipball/8773a9d52715f1a579576ce0e60213de34f5ef3e",
  3762. "reference": "8773a9d52715f1a579576ce0e60213de34f5ef3e",
  3763. "shasum": ""
  3764. },
  3765. "require": {
  3766. "php": "^5.5.9|>=7.0.8"
  3767. },
  3768. "conflict": {
  3769. "symfony/config": "<2.8",
  3770. "symfony/dependency-injection": "<3.3",
  3771. "symfony/yaml": "<3.4"
  3772. },
  3773. "require-dev": {
  3774. "doctrine/annotations": "~1.0",
  3775. "doctrine/common": "~2.2",
  3776. "psr/log": "~1.0",
  3777. "symfony/config": "~2.8|~3.0|~4.0",
  3778. "symfony/dependency-injection": "~3.3|~4.0",
  3779. "symfony/expression-language": "~2.8|~3.0|~4.0",
  3780. "symfony/http-foundation": "~2.8|~3.0|~4.0",
  3781. "symfony/yaml": "~3.4|~4.0"
  3782. },
  3783. "suggest": {
  3784. "doctrine/annotations": "For using the annotation loader",
  3785. "symfony/config": "For using the all-in-one router or any loader",
  3786. "symfony/dependency-injection": "For loading routes from a service",
  3787. "symfony/expression-language": "For using expression matching",
  3788. "symfony/http-foundation": "For using a Symfony Request object",
  3789. "symfony/yaml": "For using the YAML loader"
  3790. },
  3791. "type": "library",
  3792. "extra": {
  3793. "branch-alias": {
  3794. "dev-master": "3.4-dev"
  3795. }
  3796. },
  3797. "autoload": {
  3798. "psr-4": {
  3799. "Symfony\\Component\\Routing\\": ""
  3800. },
  3801. "exclude-from-classmap": [
  3802. "/Tests/"
  3803. ]
  3804. },
  3805. "notification-url": "https://packagist.org/downloads/",
  3806. "license": [
  3807. "MIT"
  3808. ],
  3809. "authors": [
  3810. {
  3811. "name": "Fabien Potencier",
  3812. "email": "fabien@symfony.com"
  3813. },
  3814. {
  3815. "name": "Symfony Community",
  3816. "homepage": "https://symfony.com/contributors"
  3817. }
  3818. ],
  3819. "description": "Symfony Routing Component",
  3820. "homepage": "https://symfony.com",
  3821. "keywords": [
  3822. "router",
  3823. "routing",
  3824. "uri",
  3825. "url"
  3826. ],
  3827. "time": "2018-02-28T21:49:22+00:00"
  3828. },
  3829. {
  3830. "name": "symfony/serializer",
  3831. "version": "v3.4.6",
  3832. "source": {
  3833. "type": "git",
  3834. "url": "https://github.com/symfony/serializer.git",
  3835. "reference": "11bea1aebe9c8d506f47c01931b0df9f18629a8f"
  3836. },
  3837. "dist": {
  3838. "type": "zip",
  3839. "url": "https://api.github.com/repos/symfony/serializer/zipball/11bea1aebe9c8d506f47c01931b0df9f18629a8f",
  3840. "reference": "11bea1aebe9c8d506f47c01931b0df9f18629a8f",
  3841. "shasum": ""
  3842. },
  3843. "require": {
  3844. "php": "^5.5.9|>=7.0.8"
  3845. },
  3846. "conflict": {
  3847. "phpdocumentor/type-resolver": "<0.2.1",
  3848. "symfony/dependency-injection": "<3.2",
  3849. "symfony/property-access": ">=3.0,<3.0.4|>=2.8,<2.8.4",
  3850. "symfony/property-info": "<3.1",
  3851. "symfony/yaml": "<3.4"
  3852. },
  3853. "require-dev": {
  3854. "doctrine/annotations": "~1.0",
  3855. "doctrine/cache": "~1.0",
  3856. "phpdocumentor/reflection-docblock": "^3.0|^4.0",
  3857. "symfony/cache": "~3.1|~4.0",
  3858. "symfony/config": "~2.8|~3.0|~4.0",
  3859. "symfony/dependency-injection": "~3.2|~4.0",
  3860. "symfony/http-foundation": "~2.8|~3.0|~4.0",
  3861. "symfony/property-access": "~2.8|~3.0|~4.0",
  3862. "symfony/property-info": "~3.1|~4.0",
  3863. "symfony/yaml": "~3.4|~4.0"
  3864. },
  3865. "suggest": {
  3866. "doctrine/annotations": "For using the annotation mapping. You will also need doctrine/cache.",
  3867. "doctrine/cache": "For using the default cached annotation reader and metadata cache.",
  3868. "psr/cache-implementation": "For using the metadata cache.",
  3869. "symfony/config": "For using the XML mapping loader.",
  3870. "symfony/http-foundation": "To use the DataUriNormalizer.",
  3871. "symfony/property-access": "For using the ObjectNormalizer.",
  3872. "symfony/property-info": "To deserialize relations.",
  3873. "symfony/yaml": "For using the default YAML mapping loader."
  3874. },
  3875. "type": "library",
  3876. "extra": {
  3877. "branch-alias": {
  3878. "dev-master": "3.4-dev"
  3879. }
  3880. },
  3881. "autoload": {
  3882. "psr-4": {
  3883. "Symfony\\Component\\Serializer\\": ""
  3884. },
  3885. "exclude-from-classmap": [
  3886. "/Tests/"
  3887. ]
  3888. },
  3889. "notification-url": "https://packagist.org/downloads/",
  3890. "license": [
  3891. "MIT"
  3892. ],
  3893. "authors": [
  3894. {
  3895. "name": "Fabien Potencier",
  3896. "email": "fabien@symfony.com"
  3897. },
  3898. {
  3899. "name": "Symfony Community",
  3900. "homepage": "https://symfony.com/contributors"
  3901. }
  3902. ],
  3903. "description": "Symfony Serializer Component",
  3904. "homepage": "https://symfony.com",
  3905. "time": "2018-02-14T14:07:03+00:00"
  3906. },
  3907. {
  3908. "name": "symfony/translation",
  3909. "version": "v3.4.6",
  3910. "source": {
  3911. "type": "git",
  3912. "url": "https://github.com/symfony/translation.git",
  3913. "reference": "80e19eaf12cbb546ac40384e5c55c36306823e57"
  3914. },
  3915. "dist": {
  3916. "type": "zip",
  3917. "url": "https://api.github.com/repos/symfony/translation/zipball/80e19eaf12cbb546ac40384e5c55c36306823e57",
  3918. "reference": "80e19eaf12cbb546ac40384e5c55c36306823e57",
  3919. "shasum": ""
  3920. },
  3921. "require": {
  3922. "php": "^5.5.9|>=7.0.8",
  3923. "symfony/polyfill-mbstring": "~1.0"
  3924. },
  3925. "conflict": {
  3926. "symfony/config": "<2.8",
  3927. "symfony/dependency-injection": "<3.4",
  3928. "symfony/yaml": "<3.4"
  3929. },
  3930. "require-dev": {
  3931. "psr/log": "~1.0",
  3932. "symfony/config": "~2.8|~3.0|~4.0",
  3933. "symfony/dependency-injection": "~3.4|~4.0",
  3934. "symfony/finder": "~2.8|~3.0|~4.0",
  3935. "symfony/intl": "^2.8.18|^3.2.5|~4.0",
  3936. "symfony/yaml": "~3.4|~4.0"
  3937. },
  3938. "suggest": {
  3939. "psr/log": "To use logging capability in translator",
  3940. "symfony/config": "",
  3941. "symfony/yaml": ""
  3942. },
  3943. "type": "library",
  3944. "extra": {
  3945. "branch-alias": {
  3946. "dev-master": "3.4-dev"
  3947. }
  3948. },
  3949. "autoload": {
  3950. "psr-4": {
  3951. "Symfony\\Component\\Translation\\": ""
  3952. },
  3953. "exclude-from-classmap": [
  3954. "/Tests/"
  3955. ]
  3956. },
  3957. "notification-url": "https://packagist.org/downloads/",
  3958. "license": [
  3959. "MIT"
  3960. ],
  3961. "authors": [
  3962. {
  3963. "name": "Fabien Potencier",
  3964. "email": "fabien@symfony.com"
  3965. },
  3966. {
  3967. "name": "Symfony Community",
  3968. "homepage": "https://symfony.com/contributors"
  3969. }
  3970. ],
  3971. "description": "Symfony Translation Component",
  3972. "homepage": "https://symfony.com",
  3973. "time": "2018-02-22T06:28:18+00:00"
  3974. },
  3975. {
  3976. "name": "symfony/validator",
  3977. "version": "v3.4.6",
  3978. "source": {
  3979. "type": "git",
  3980. "url": "https://github.com/symfony/validator.git",
  3981. "reference": "b0dcfa428168b381ac0340e5209a47780799e393"
  3982. },
  3983. "dist": {
  3984. "type": "zip",
  3985. "url": "https://api.github.com/repos/symfony/validator/zipball/b0dcfa428168b381ac0340e5209a47780799e393",
  3986. "reference": "b0dcfa428168b381ac0340e5209a47780799e393",
  3987. "shasum": ""
  3988. },
  3989. "require": {
  3990. "php": "^5.5.9|>=7.0.8",
  3991. "symfony/polyfill-mbstring": "~1.0",
  3992. "symfony/translation": "~2.8|~3.0|~4.0"
  3993. },
  3994. "conflict": {
  3995. "phpunit/phpunit": "<4.8.35|<5.4.3,>=5.0",
  3996. "symfony/dependency-injection": "<3.3",
  3997. "symfony/http-kernel": "<3.3.5",
  3998. "symfony/yaml": "<3.4"
  3999. },
  4000. "require-dev": {
  4001. "doctrine/annotations": "~1.0",
  4002. "doctrine/cache": "~1.0",
  4003. "egulias/email-validator": "^1.2.8|~2.0",
  4004. "symfony/cache": "~3.1|~4.0",
  4005. "symfony/config": "~2.8|~3.0|~4.0",
  4006. "symfony/dependency-injection": "~3.3|~4.0",
  4007. "symfony/expression-language": "~2.8|~3.0|~4.0",
  4008. "symfony/http-foundation": "~2.8|~3.0|~4.0",
  4009. "symfony/http-kernel": "^3.3.5|~4.0",
  4010. "symfony/intl": "^2.8.18|^3.2.5|~4.0",
  4011. "symfony/property-access": "~2.8|~3.0|~4.0",
  4012. "symfony/var-dumper": "~3.3|~4.0",
  4013. "symfony/yaml": "~3.4|~4.0"
  4014. },
  4015. "suggest": {
  4016. "doctrine/annotations": "For using the annotation mapping. You will also need doctrine/cache.",
  4017. "doctrine/cache": "For using the default cached annotation reader and metadata cache.",
  4018. "egulias/email-validator": "Strict (RFC compliant) email validation",
  4019. "psr/cache-implementation": "For using the metadata cache.",
  4020. "symfony/config": "",
  4021. "symfony/expression-language": "For using the Expression validator",
  4022. "symfony/http-foundation": "",
  4023. "symfony/intl": "",
  4024. "symfony/property-access": "For accessing properties within comparison constraints",
  4025. "symfony/yaml": ""
  4026. },
  4027. "type": "library",
  4028. "extra": {
  4029. "branch-alias": {
  4030. "dev-master": "3.4-dev"
  4031. }
  4032. },
  4033. "autoload": {
  4034. "psr-4": {
  4035. "Symfony\\Component\\Validator\\": ""
  4036. },
  4037. "exclude-from-classmap": [
  4038. "/Tests/"
  4039. ]
  4040. },
  4041. "notification-url": "https://packagist.org/downloads/",
  4042. "license": [
  4043. "MIT"
  4044. ],
  4045. "authors": [
  4046. {
  4047. "name": "Fabien Potencier",
  4048. "email": "fabien@symfony.com"
  4049. },
  4050. {
  4051. "name": "Symfony Community",
  4052. "homepage": "https://symfony.com/contributors"
  4053. }
  4054. ],
  4055. "description": "Symfony Validator Component",
  4056. "homepage": "https://symfony.com",
  4057. "time": "2018-03-01T10:20:19+00:00"
  4058. },
  4059. {
  4060. "name": "symfony/var-dumper",
  4061. "version": "v3.4.6",
  4062. "source": {
  4063. "type": "git",
  4064. "url": "https://github.com/symfony/var-dumper.git",
  4065. "reference": "80964679d81da3d5618519e0e4be488c3d7ecd7d"
  4066. },
  4067. "dist": {
  4068. "type": "zip",
  4069. "url": "https://api.github.com/repos/symfony/var-dumper/zipball/80964679d81da3d5618519e0e4be488c3d7ecd7d",
  4070. "reference": "80964679d81da3d5618519e0e4be488c3d7ecd7d",
  4071. "shasum": ""
  4072. },
  4073. "require": {
  4074. "php": "^5.5.9|>=7.0.8",
  4075. "symfony/polyfill-mbstring": "~1.0"
  4076. },
  4077. "conflict": {
  4078. "phpunit/phpunit": "<4.8.35|<5.4.3,>=5.0"
  4079. },
  4080. "require-dev": {
  4081. "ext-iconv": "*",
  4082. "twig/twig": "~1.34|~2.4"
  4083. },
  4084. "suggest": {
  4085. "ext-iconv": "To convert non-UTF-8 strings to UTF-8 (or symfony/polyfill-iconv in case ext-iconv cannot be used).",
  4086. "ext-intl": "To show region name in time zone dump",
  4087. "ext-symfony_debug": ""
  4088. },
  4089. "type": "library",
  4090. "extra": {
  4091. "branch-alias": {
  4092. "dev-master": "3.4-dev"
  4093. }
  4094. },
  4095. "autoload": {
  4096. "files": [
  4097. "Resources/functions/dump.php"
  4098. ],
  4099. "psr-4": {
  4100. "Symfony\\Component\\VarDumper\\": ""
  4101. },
  4102. "exclude-from-classmap": [
  4103. "/Tests/"
  4104. ]
  4105. },
  4106. "notification-url": "https://packagist.org/downloads/",
  4107. "license": [
  4108. "MIT"
  4109. ],
  4110. "authors": [
  4111. {
  4112. "name": "Nicolas Grekas",
  4113. "email": "p@tchwork.com"
  4114. },
  4115. {
  4116. "name": "Symfony Community",
  4117. "homepage": "https://symfony.com/contributors"
  4118. }
  4119. ],
  4120. "description": "Symfony mechanism for exploring and dumping PHP variables",
  4121. "homepage": "https://symfony.com",
  4122. "keywords": [
  4123. "debug",
  4124. "dump"
  4125. ],
  4126. "time": "2018-02-22T17:29:24+00:00"
  4127. },
  4128. {
  4129. "name": "symfony/yaml",
  4130. "version": "v3.4.6",
  4131. "source": {
  4132. "type": "git",
  4133. "url": "https://github.com/symfony/yaml.git",
  4134. "reference": "6af42631dcf89e9c616242c900d6c52bd53bd1bb"
  4135. },
  4136. "dist": {
  4137. "type": "zip",
  4138. "url": "https://api.github.com/repos/symfony/yaml/zipball/6af42631dcf89e9c616242c900d6c52bd53bd1bb",
  4139. "reference": "6af42631dcf89e9c616242c900d6c52bd53bd1bb",
  4140. "shasum": ""
  4141. },
  4142. "require": {
  4143. "php": "^5.5.9|>=7.0.8"
  4144. },
  4145. "conflict": {
  4146. "symfony/console": "<3.4"
  4147. },
  4148. "require-dev": {
  4149. "symfony/console": "~3.4|~4.0"
  4150. },
  4151. "suggest": {
  4152. "symfony/console": "For validating YAML files using the lint command"
  4153. },
  4154. "type": "library",
  4155. "extra": {
  4156. "branch-alias": {
  4157. "dev-master": "3.4-dev"
  4158. }
  4159. },
  4160. "autoload": {
  4161. "psr-4": {
  4162. "Symfony\\Component\\Yaml\\": ""
  4163. },
  4164. "exclude-from-classmap": [
  4165. "/Tests/"
  4166. ]
  4167. },
  4168. "notification-url": "https://packagist.org/downloads/",
  4169. "license": [
  4170. "MIT"
  4171. ],
  4172. "authors": [
  4173. {
  4174. "name": "Fabien Potencier",
  4175. "email": "fabien@symfony.com"
  4176. },
  4177. {
  4178. "name": "Symfony Community",
  4179. "homepage": "https://symfony.com/contributors"
  4180. }
  4181. ],
  4182. "description": "Symfony Yaml Component",
  4183. "homepage": "https://symfony.com",
  4184. "time": "2018-02-16T09:50:28+00:00"
  4185. },
  4186. {
  4187. "name": "twig/twig",
  4188. "version": "v1.35.2",
  4189. "source": {
  4190. "type": "git",
  4191. "url": "https://github.com/twigphp/Twig.git",
  4192. "reference": "9c24f2cd39dc1906b76879e099970b7e53724601"
  4193. },
  4194. "dist": {
  4195. "type": "zip",
  4196. "url": "https://api.github.com/repos/twigphp/Twig/zipball/9c24f2cd39dc1906b76879e099970b7e53724601",
  4197. "reference": "9c24f2cd39dc1906b76879e099970b7e53724601",
  4198. "shasum": ""
  4199. },
  4200. "require": {
  4201. "php": ">=5.3.3"
  4202. },
  4203. "require-dev": {
  4204. "psr/container": "^1.0",
  4205. "symfony/debug": "~2.7",
  4206. "symfony/phpunit-bridge": "~3.3@dev"
  4207. },
  4208. "type": "library",
  4209. "extra": {
  4210. "branch-alias": {
  4211. "dev-master": "1.35-dev"
  4212. }
  4213. },
  4214. "autoload": {
  4215. "psr-0": {
  4216. "Twig_": "lib/"
  4217. },
  4218. "psr-4": {
  4219. "Twig\\": "src/"
  4220. }
  4221. },
  4222. "notification-url": "https://packagist.org/downloads/",
  4223. "license": [
  4224. "BSD-3-Clause"
  4225. ],
  4226. "authors": [
  4227. {
  4228. "name": "Fabien Potencier",
  4229. "email": "fabien@symfony.com",
  4230. "homepage": "http://fabien.potencier.org",
  4231. "role": "Lead Developer"
  4232. },
  4233. {
  4234. "name": "Armin Ronacher",
  4235. "email": "armin.ronacher@active-4.com",
  4236. "role": "Project Founder"
  4237. },
  4238. {
  4239. "name": "Twig Team",
  4240. "homepage": "http://twig.sensiolabs.org/contributors",
  4241. "role": "Contributors"
  4242. }
  4243. ],
  4244. "description": "Twig, the flexible, fast, and secure template language for PHP",
  4245. "homepage": "http://twig.sensiolabs.org",
  4246. "keywords": [
  4247. "templating"
  4248. ],
  4249. "time": "2018-03-03T16:21:29+00:00"
  4250. },
  4251. {
  4252. "name": "webflo/drupal-finder",
  4253. "version": "1.1.0",
  4254. "source": {
  4255. "type": "git",
  4256. "url": "https://github.com/webflo/drupal-finder.git",
  4257. "reference": "8a7886c575d6eaa67a425dceccc84e735c0b9637"
  4258. },
  4259. "dist": {
  4260. "type": "zip",
  4261. "url": "https://api.github.com/repos/webflo/drupal-finder/zipball/8a7886c575d6eaa67a425dceccc84e735c0b9637",
  4262. "reference": "8a7886c575d6eaa67a425dceccc84e735c0b9637",
  4263. "shasum": ""
  4264. },
  4265. "require-dev": {
  4266. "mikey179/vfsstream": "^1.6",
  4267. "phpunit/phpunit": "^4.8"
  4268. },
  4269. "type": "library",
  4270. "autoload": {
  4271. "classmap": [
  4272. "src/DrupalFinder.php"
  4273. ]
  4274. },
  4275. "notification-url": "https://packagist.org/downloads/",
  4276. "license": [
  4277. "GPL-2.0+"
  4278. ],
  4279. "authors": [
  4280. {
  4281. "name": "Florian Weber",
  4282. "email": "florian@webflo.org"
  4283. }
  4284. ],
  4285. "description": "Helper class to locate a Drupal installation from a given path.",
  4286. "time": "2017-10-24T08:12:11+00:00"
  4287. },
  4288. {
  4289. "name": "webmozart/assert",
  4290. "version": "1.3.0",
  4291. "source": {
  4292. "type": "git",
  4293. "url": "https://github.com/webmozart/assert.git",
  4294. "reference": "0df1908962e7a3071564e857d86874dad1ef204a"
  4295. },
  4296. "dist": {
  4297. "type": "zip",
  4298. "url": "https://api.github.com/repos/webmozart/assert/zipball/0df1908962e7a3071564e857d86874dad1ef204a",
  4299. "reference": "0df1908962e7a3071564e857d86874dad1ef204a",
  4300. "shasum": ""
  4301. },
  4302. "require": {
  4303. "php": "^5.3.3 || ^7.0"
  4304. },
  4305. "require-dev": {
  4306. "phpunit/phpunit": "^4.6",
  4307. "sebastian/version": "^1.0.1"
  4308. },
  4309. "type": "library",
  4310. "extra": {
  4311. "branch-alias": {
  4312. "dev-master": "1.3-dev"
  4313. }
  4314. },
  4315. "autoload": {
  4316. "psr-4": {
  4317. "Webmozart\\Assert\\": "src/"
  4318. }
  4319. },
  4320. "notification-url": "https://packagist.org/downloads/",
  4321. "license": [
  4322. "MIT"
  4323. ],
  4324. "authors": [
  4325. {
  4326. "name": "Bernhard Schussek",
  4327. "email": "bschussek@gmail.com"
  4328. }
  4329. ],
  4330. "description": "Assertions to validate method input/output with nice error messages.",
  4331. "keywords": [
  4332. "assert",
  4333. "check",
  4334. "validate"
  4335. ],
  4336. "time": "2018-01-29T19:49:41+00:00"
  4337. },
  4338. {
  4339. "name": "webmozart/path-util",
  4340. "version": "2.3.0",
  4341. "source": {
  4342. "type": "git",
  4343. "url": "https://github.com/webmozart/path-util.git",
  4344. "reference": "d939f7edc24c9a1bb9c0dee5cb05d8e859490725"
  4345. },
  4346. "dist": {
  4347. "type": "zip",
  4348. "url": "https://api.github.com/repos/webmozart/path-util/zipball/d939f7edc24c9a1bb9c0dee5cb05d8e859490725",
  4349. "reference": "d939f7edc24c9a1bb9c0dee5cb05d8e859490725",
  4350. "shasum": ""
  4351. },
  4352. "require": {
  4353. "php": ">=5.3.3",
  4354. "webmozart/assert": "~1.0"
  4355. },
  4356. "require-dev": {
  4357. "phpunit/phpunit": "^4.6",
  4358. "sebastian/version": "^1.0.1"
  4359. },
  4360. "type": "library",
  4361. "extra": {
  4362. "branch-alias": {
  4363. "dev-master": "2.3-dev"
  4364. }
  4365. },
  4366. "autoload": {
  4367. "psr-4": {
  4368. "Webmozart\\PathUtil\\": "src/"
  4369. }
  4370. },
  4371. "notification-url": "https://packagist.org/downloads/",
  4372. "license": [
  4373. "MIT"
  4374. ],
  4375. "authors": [
  4376. {
  4377. "name": "Bernhard Schussek",
  4378. "email": "bschussek@gmail.com"
  4379. }
  4380. ],
  4381. "description": "A robust cross-platform utility for normalizing, comparing and modifying file paths.",
  4382. "time": "2015-12-17T08:42:14+00:00"
  4383. },
  4384. {
  4385. "name": "wikimedia/composer-merge-plugin",
  4386. "version": "v1.4.1",
  4387. "source": {
  4388. "type": "git",
  4389. "url": "https://github.com/wikimedia/composer-merge-plugin.git",
  4390. "reference": "81c6ac72a24a67383419c7eb9aa2b3437f2ab100"
  4391. },
  4392. "dist": {
  4393. "type": "zip",
  4394. "url": "https://api.github.com/repos/wikimedia/composer-merge-plugin/zipball/81c6ac72a24a67383419c7eb9aa2b3437f2ab100",
  4395. "reference": "81c6ac72a24a67383419c7eb9aa2b3437f2ab100",
  4396. "shasum": ""
  4397. },
  4398. "require": {
  4399. "composer-plugin-api": "^1.0",
  4400. "php": ">=5.3.2"
  4401. },
  4402. "require-dev": {
  4403. "composer/composer": "~1.0.0",
  4404. "jakub-onderka/php-parallel-lint": "~0.8",
  4405. "phpunit/phpunit": "~4.8|~5.0",
  4406. "squizlabs/php_codesniffer": "~2.1.0"
  4407. },
  4408. "type": "composer-plugin",
  4409. "extra": {
  4410. "branch-alias": {
  4411. "dev-master": "1.3.x-dev"
  4412. },
  4413. "class": "Wikimedia\\Composer\\MergePlugin"
  4414. },
  4415. "autoload": {
  4416. "psr-4": {
  4417. "Wikimedia\\Composer\\": "src/"
  4418. }
  4419. },
  4420. "notification-url": "https://packagist.org/downloads/",
  4421. "license": [
  4422. "MIT"
  4423. ],
  4424. "authors": [
  4425. {
  4426. "name": "Bryan Davis",
  4427. "email": "bd808@wikimedia.org"
  4428. }
  4429. ],
  4430. "description": "Composer plugin to merge multiple composer.json files",
  4431. "time": "2017-04-25T02:31:25+00:00"
  4432. },
  4433. {
  4434. "name": "zendframework/zend-diactoros",
  4435. "version": "1.7.1",
  4436. "source": {
  4437. "type": "git",
  4438. "url": "https://github.com/zendframework/zend-diactoros.git",
  4439. "reference": "bf26aff803a11c5cc8eb7c4878a702c403ec67f1"
  4440. },
  4441. "dist": {
  4442. "type": "zip",
  4443. "url": "https://api.github.com/repos/zendframework/zend-diactoros/zipball/bf26aff803a11c5cc8eb7c4878a702c403ec67f1",
  4444. "reference": "bf26aff803a11c5cc8eb7c4878a702c403ec67f1",
  4445. "shasum": ""
  4446. },
  4447. "require": {
  4448. "php": "^5.6 || ^7.0",
  4449. "psr/http-message": "^1.0"
  4450. },
  4451. "provide": {
  4452. "psr/http-message-implementation": "1.0"
  4453. },
  4454. "require-dev": {
  4455. "ext-dom": "*",
  4456. "ext-libxml": "*",
  4457. "phpunit/phpunit": "^5.7.16 || ^6.0.8",
  4458. "zendframework/zend-coding-standard": "~1.0"
  4459. },
  4460. "type": "library",
  4461. "extra": {
  4462. "branch-alias": {
  4463. "dev-master": "1.7.x-dev",
  4464. "dev-develop": "1.8.x-dev"
  4465. }
  4466. },
  4467. "autoload": {
  4468. "psr-4": {
  4469. "Zend\\Diactoros\\": "src/"
  4470. }
  4471. },
  4472. "notification-url": "https://packagist.org/downloads/",
  4473. "license": [
  4474. "BSD-2-Clause"
  4475. ],
  4476. "description": "PSR HTTP Message implementations",
  4477. "homepage": "https://github.com/zendframework/zend-diactoros",
  4478. "keywords": [
  4479. "http",
  4480. "psr",
  4481. "psr-7"
  4482. ],
  4483. "time": "2018-02-26T15:44:50+00:00"
  4484. },
  4485. {
  4486. "name": "zendframework/zend-escaper",
  4487. "version": "2.5.2",
  4488. "source": {
  4489. "type": "git",
  4490. "url": "https://github.com/zendframework/zend-escaper.git",
  4491. "reference": "2dcd14b61a72d8b8e27d579c6344e12c26141d4e"
  4492. },
  4493. "dist": {
  4494. "type": "zip",
  4495. "url": "https://api.github.com/repos/zendframework/zend-escaper/zipball/2dcd14b61a72d8b8e27d579c6344e12c26141d4e",
  4496. "reference": "2dcd14b61a72d8b8e27d579c6344e12c26141d4e",
  4497. "shasum": ""
  4498. },
  4499. "require": {
  4500. "php": ">=5.5"
  4501. },
  4502. "require-dev": {
  4503. "fabpot/php-cs-fixer": "1.7.*",
  4504. "phpunit/phpunit": "~4.0"
  4505. },
  4506. "type": "library",
  4507. "extra": {
  4508. "branch-alias": {
  4509. "dev-master": "2.5-dev",
  4510. "dev-develop": "2.6-dev"
  4511. }
  4512. },
  4513. "autoload": {
  4514. "psr-4": {
  4515. "Zend\\Escaper\\": "src/"
  4516. }
  4517. },
  4518. "notification-url": "https://packagist.org/downloads/",
  4519. "license": [
  4520. "BSD-3-Clause"
  4521. ],
  4522. "homepage": "https://github.com/zendframework/zend-escaper",
  4523. "keywords": [
  4524. "escaper",
  4525. "zf2"
  4526. ],
  4527. "time": "2016-06-30T19:48:38+00:00"
  4528. },
  4529. {
  4530. "name": "zendframework/zend-feed",
  4531. "version": "2.9.0",
  4532. "source": {
  4533. "type": "git",
  4534. "url": "https://github.com/zendframework/zend-feed.git",
  4535. "reference": "abe88686124d492e0a2a84656f15e5482bfbe030"
  4536. },
  4537. "dist": {
  4538. "type": "zip",
  4539. "url": "https://api.github.com/repos/zendframework/zend-feed/zipball/abe88686124d492e0a2a84656f15e5482bfbe030",
  4540. "reference": "abe88686124d492e0a2a84656f15e5482bfbe030",
  4541. "shasum": ""
  4542. },
  4543. "require": {
  4544. "php": "^5.6 || ^7.0",
  4545. "zendframework/zend-escaper": "^2.5.2",
  4546. "zendframework/zend-stdlib": "^2.7.7 || ^3.1"
  4547. },
  4548. "require-dev": {
  4549. "phpunit/phpunit": "^5.7.23 || ^6.4.3",
  4550. "psr/http-message": "^1.0.1",
  4551. "zendframework/zend-cache": "^2.7.2",
  4552. "zendframework/zend-coding-standard": "~1.0.0",
  4553. "zendframework/zend-db": "^2.8.2",
  4554. "zendframework/zend-http": "^2.7",
  4555. "zendframework/zend-servicemanager": "^2.7.8 || ^3.3",
  4556. "zendframework/zend-validator": "^2.10.1"
  4557. },
  4558. "suggest": {
  4559. "psr/http-message": "PSR-7 ^1.0.1, if you wish to use Zend\\Feed\\Reader\\Http\\Psr7ResponseDecorator",
  4560. "zendframework/zend-cache": "Zend\\Cache component, for optionally caching feeds between requests",
  4561. "zendframework/zend-db": "Zend\\Db component, for use with PubSubHubbub",
  4562. "zendframework/zend-http": "Zend\\Http for PubSubHubbub, and optionally for use with Zend\\Feed\\Reader",
  4563. "zendframework/zend-servicemanager": "Zend\\ServiceManager component, for easily extending ExtensionManager implementations",
  4564. "zendframework/zend-validator": "Zend\\Validator component, for validating email addresses used in Atom feeds and entries when using the Writer subcomponent"
  4565. },
  4566. "type": "library",
  4567. "extra": {
  4568. "branch-alias": {
  4569. "dev-master": "2.9-dev",
  4570. "dev-develop": "2.10-dev"
  4571. }
  4572. },
  4573. "autoload": {
  4574. "psr-4": {
  4575. "Zend\\Feed\\": "src/"
  4576. }
  4577. },
  4578. "notification-url": "https://packagist.org/downloads/",
  4579. "license": [
  4580. "BSD-3-Clause"
  4581. ],
  4582. "description": "provides functionality for consuming RSS and Atom feeds",
  4583. "keywords": [
  4584. "ZendFramework",
  4585. "feed",
  4586. "zf"
  4587. ],
  4588. "time": "2017-12-04T17:59:38+00:00"
  4589. },
  4590. {
  4591. "name": "zendframework/zend-stdlib",
  4592. "version": "3.1.0",
  4593. "source": {
  4594. "type": "git",
  4595. "url": "https://github.com/zendframework/zend-stdlib.git",
  4596. "reference": "debedcfc373a293f9250cc9aa03cf121428c8e78"
  4597. },
  4598. "dist": {
  4599. "type": "zip",
  4600. "url": "https://api.github.com/repos/zendframework/zend-stdlib/zipball/debedcfc373a293f9250cc9aa03cf121428c8e78",
  4601. "reference": "debedcfc373a293f9250cc9aa03cf121428c8e78",
  4602. "shasum": ""
  4603. },
  4604. "require": {
  4605. "php": "^5.6 || ^7.0"
  4606. },
  4607. "require-dev": {
  4608. "athletic/athletic": "~0.1",
  4609. "phpunit/phpunit": "~4.0",
  4610. "squizlabs/php_codesniffer": "^2.6.2"
  4611. },
  4612. "type": "library",
  4613. "extra": {
  4614. "branch-alias": {
  4615. "dev-master": "3.1-dev",
  4616. "dev-develop": "3.2-dev"
  4617. }
  4618. },
  4619. "autoload": {
  4620. "psr-4": {
  4621. "Zend\\Stdlib\\": "src/"
  4622. }
  4623. },
  4624. "notification-url": "https://packagist.org/downloads/",
  4625. "license": [
  4626. "BSD-3-Clause"
  4627. ],
  4628. "homepage": "https://github.com/zendframework/zend-stdlib",
  4629. "keywords": [
  4630. "stdlib",
  4631. "zf2"
  4632. ],
  4633. "time": "2016-09-13T14:38:50+00:00"
  4634. }
  4635. ],
  4636. "packages-dev": [
  4637. {
  4638. "name": "behat/mink",
  4639. "version": "dev-master",
  4640. "source": {
  4641. "type": "git",
  4642. "url": "https://github.com/minkphp/Mink.git",
  4643. "reference": "04ab7af68536ac2c80fd6c08a6fd3620d3409891"
  4644. },
  4645. "dist": {
  4646. "type": "zip",
  4647. "url": "https://api.github.com/repos/minkphp/Mink/zipball/04ab7af68536ac2c80fd6c08a6fd3620d3409891",
  4648. "reference": "04ab7af68536ac2c80fd6c08a6fd3620d3409891",
  4649. "shasum": ""
  4650. },
  4651. "require": {
  4652. "php": ">=5.3.1",
  4653. "symfony/css-selector": "^2.7|^3.0|^4.0"
  4654. },
  4655. "require-dev": {
  4656. "symfony/phpunit-bridge": "^3.3|^4.0"
  4657. },
  4658. "suggest": {
  4659. "behat/mink-browserkit-driver": "extremely fast headless driver for Symfony\\Kernel-based apps (Sf2, Silex)",
  4660. "behat/mink-goutte-driver": "fast headless driver for any app without JS emulation",
  4661. "behat/mink-selenium2-driver": "slow, but JS-enabled driver for any app (requires Selenium2)",
  4662. "behat/mink-zombie-driver": "fast and JS-enabled headless driver for any app (requires node.js)"
  4663. },
  4664. "type": "library",
  4665. "extra": {
  4666. "branch-alias": {
  4667. "dev-master": "1.7.x-dev"
  4668. }
  4669. },
  4670. "autoload": {
  4671. "psr-4": {
  4672. "Behat\\Mink\\": "src/"
  4673. }
  4674. },
  4675. "notification-url": "https://packagist.org/downloads/",
  4676. "license": [
  4677. "MIT"
  4678. ],
  4679. "authors": [
  4680. {
  4681. "name": "Konstantin Kudryashov",
  4682. "email": "ever.zet@gmail.com",
  4683. "homepage": "http://everzet.com"
  4684. }
  4685. ],
  4686. "description": "Browser controller/emulator abstraction for PHP",
  4687. "homepage": "http://mink.behat.org/",
  4688. "keywords": [
  4689. "browser",
  4690. "testing",
  4691. "web"
  4692. ],
  4693. "time": "2018-01-07T17:25:05+00:00"
  4694. },
  4695. {
  4696. "name": "behat/mink-browserkit-driver",
  4697. "version": "v1.3.2",
  4698. "source": {
  4699. "type": "git",
  4700. "url": "https://github.com/minkphp/MinkBrowserKitDriver.git",
  4701. "reference": "10e67fb4a295efcd62ea0bf16025a85ea19534fb"
  4702. },
  4703. "dist": {
  4704. "type": "zip",
  4705. "url": "https://api.github.com/repos/minkphp/MinkBrowserKitDriver/zipball/10e67fb4a295efcd62ea0bf16025a85ea19534fb",
  4706. "reference": "10e67fb4a295efcd62ea0bf16025a85ea19534fb",
  4707. "shasum": ""
  4708. },
  4709. "require": {
  4710. "behat/mink": "^1.7.1@dev",
  4711. "php": ">=5.3.6",
  4712. "symfony/browser-kit": "~2.3|~3.0",
  4713. "symfony/dom-crawler": "~2.3|~3.0"
  4714. },
  4715. "require-dev": {
  4716. "silex/silex": "~1.2",
  4717. "symfony/phpunit-bridge": "~2.7|~3.0"
  4718. },
  4719. "type": "mink-driver",
  4720. "extra": {
  4721. "branch-alias": {
  4722. "dev-master": "1.3.x-dev"
  4723. }
  4724. },
  4725. "autoload": {
  4726. "psr-4": {
  4727. "Behat\\Mink\\Driver\\": "src/"
  4728. }
  4729. },
  4730. "notification-url": "https://packagist.org/downloads/",
  4731. "license": [
  4732. "MIT"
  4733. ],
  4734. "authors": [
  4735. {
  4736. "name": "Konstantin Kudryashov",
  4737. "email": "ever.zet@gmail.com",
  4738. "homepage": "http://everzet.com"
  4739. }
  4740. ],
  4741. "description": "Symfony2 BrowserKit driver for Mink framework",
  4742. "homepage": "http://mink.behat.org/",
  4743. "keywords": [
  4744. "Mink",
  4745. "Symfony2",
  4746. "browser",
  4747. "testing"
  4748. ],
  4749. "time": "2016-03-05T08:59:47+00:00"
  4750. },
  4751. {
  4752. "name": "behat/mink-goutte-driver",
  4753. "version": "v1.2.1",
  4754. "source": {
  4755. "type": "git",
  4756. "url": "https://github.com/minkphp/MinkGoutteDriver.git",
  4757. "reference": "8b9ad6d2d95bc70b840d15323365f52fcdaea6ca"
  4758. },
  4759. "dist": {
  4760. "type": "zip",
  4761. "url": "https://api.github.com/repos/minkphp/MinkGoutteDriver/zipball/8b9ad6d2d95bc70b840d15323365f52fcdaea6ca",
  4762. "reference": "8b9ad6d2d95bc70b840d15323365f52fcdaea6ca",
  4763. "shasum": ""
  4764. },
  4765. "require": {
  4766. "behat/mink": "~1.6@dev",
  4767. "behat/mink-browserkit-driver": "~1.2@dev",
  4768. "fabpot/goutte": "~1.0.4|~2.0|~3.1",
  4769. "php": ">=5.3.1"
  4770. },
  4771. "require-dev": {
  4772. "symfony/phpunit-bridge": "~2.7|~3.0"
  4773. },
  4774. "type": "mink-driver",
  4775. "extra": {
  4776. "branch-alias": {
  4777. "dev-master": "1.2.x-dev"
  4778. }
  4779. },
  4780. "autoload": {
  4781. "psr-4": {
  4782. "Behat\\Mink\\Driver\\": "src/"
  4783. }
  4784. },
  4785. "notification-url": "https://packagist.org/downloads/",
  4786. "license": [
  4787. "MIT"
  4788. ],
  4789. "authors": [
  4790. {
  4791. "name": "Konstantin Kudryashov",
  4792. "email": "ever.zet@gmail.com",
  4793. "homepage": "http://everzet.com"
  4794. }
  4795. ],
  4796. "description": "Goutte driver for Mink framework",
  4797. "homepage": "http://mink.behat.org/",
  4798. "keywords": [
  4799. "browser",
  4800. "goutte",
  4801. "headless",
  4802. "testing"
  4803. ],
  4804. "time": "2016-03-05T09:04:22+00:00"
  4805. },
  4806. {
  4807. "name": "behat/mink-selenium2-driver",
  4808. "version": "dev-master",
  4809. "source": {
  4810. "type": "git",
  4811. "url": "https://github.com/minkphp/MinkSelenium2Driver.git",
  4812. "reference": "93474c65a2a7bf959200ab5f7a14cc450645c185"
  4813. },
  4814. "dist": {
  4815. "type": "zip",
  4816. "url": "https://api.github.com/repos/minkphp/MinkSelenium2Driver/zipball/93474c65a2a7bf959200ab5f7a14cc450645c185",
  4817. "reference": "93474c65a2a7bf959200ab5f7a14cc450645c185",
  4818. "shasum": ""
  4819. },
  4820. "require": {
  4821. "behat/mink": "~1.7@dev",
  4822. "instaclick/php-webdriver": "~1.1",
  4823. "php": ">=5.3.1"
  4824. },
  4825. "require-dev": {
  4826. "mink/driver-testsuite": "dev-master"
  4827. },
  4828. "type": "mink-driver",
  4829. "extra": {
  4830. "branch-alias": {
  4831. "dev-master": "1.3.x-dev"
  4832. }
  4833. },
  4834. "autoload": {
  4835. "psr-4": {
  4836. "Behat\\Mink\\Driver\\": "src/"
  4837. }
  4838. },
  4839. "notification-url": "https://packagist.org/downloads/",
  4840. "license": [
  4841. "MIT"
  4842. ],
  4843. "authors": [
  4844. {
  4845. "name": "Konstantin Kudryashov",
  4846. "email": "ever.zet@gmail.com",
  4847. "homepage": "http://everzet.com"
  4848. },
  4849. {
  4850. "name": "Pete Otaqui",
  4851. "email": "pete@otaqui.com",
  4852. "homepage": "https://github.com/pete-otaqui"
  4853. }
  4854. ],
  4855. "description": "Selenium2 (WebDriver) driver for Mink framework",
  4856. "homepage": "http://mink.behat.org/",
  4857. "keywords": [
  4858. "ajax",
  4859. "browser",
  4860. "javascript",
  4861. "selenium",
  4862. "testing",
  4863. "webdriver"
  4864. ],
  4865. "time": "2018-01-07T19:17:08+00:00"
  4866. },
  4867. {
  4868. "name": "doctrine/instantiator",
  4869. "version": "1.0.5",
  4870. "source": {
  4871. "type": "git",
  4872. "url": "https://github.com/doctrine/instantiator.git",
  4873. "reference": "8e884e78f9f0eb1329e445619e04456e64d8051d"
  4874. },
  4875. "dist": {
  4876. "type": "zip",
  4877. "url": "https://api.github.com/repos/doctrine/instantiator/zipball/8e884e78f9f0eb1329e445619e04456e64d8051d",
  4878. "reference": "8e884e78f9f0eb1329e445619e04456e64d8051d",
  4879. "shasum": ""
  4880. },
  4881. "require": {
  4882. "php": ">=5.3,<8.0-DEV"
  4883. },
  4884. "require-dev": {
  4885. "athletic/athletic": "~0.1.8",
  4886. "ext-pdo": "*",
  4887. "ext-phar": "*",
  4888. "phpunit/phpunit": "~4.0",
  4889. "squizlabs/php_codesniffer": "~2.0"
  4890. },
  4891. "type": "library",
  4892. "extra": {
  4893. "branch-alias": {
  4894. "dev-master": "1.0.x-dev"
  4895. }
  4896. },
  4897. "autoload": {
  4898. "psr-4": {
  4899. "Doctrine\\Instantiator\\": "src/Doctrine/Instantiator/"
  4900. }
  4901. },
  4902. "notification-url": "https://packagist.org/downloads/",
  4903. "license": [
  4904. "MIT"
  4905. ],
  4906. "authors": [
  4907. {
  4908. "name": "Marco Pivetta",
  4909. "email": "ocramius@gmail.com",
  4910. "homepage": "http://ocramius.github.com/"
  4911. }
  4912. ],
  4913. "description": "A small, lightweight utility to instantiate objects in PHP without invoking their constructors",
  4914. "homepage": "https://github.com/doctrine/instantiator",
  4915. "keywords": [
  4916. "constructor",
  4917. "instantiate"
  4918. ],
  4919. "time": "2015-06-14T21:17:01+00:00"
  4920. },
  4921. {
  4922. "name": "drupal/coder",
  4923. "version": "8.2.12",
  4924. "source": {
  4925. "type": "git",
  4926. "url": "https://git.drupal.org/project/coder.git",
  4927. "reference": "984c54a7b1e8f27ff1c32348df69712afd86b17f"
  4928. },
  4929. "require": {
  4930. "ext-mbstring": "*",
  4931. "php": ">=5.4.0",
  4932. "squizlabs/php_codesniffer": ">=2.8.1 <3.0",
  4933. "symfony/yaml": ">=2.0.0"
  4934. },
  4935. "require-dev": {
  4936. "phpunit/phpunit": ">=3.7 <6"
  4937. },
  4938. "type": "phpcodesniffer-standard",
  4939. "notification-url": "https://packagist.org/downloads/",
  4940. "license": [
  4941. "GPL-2.0+"
  4942. ],
  4943. "description": "Coder is a library to review Drupal code.",
  4944. "homepage": "https://www.drupal.org/project/coder",
  4945. "keywords": [
  4946. "code review",
  4947. "phpcs",
  4948. "standards"
  4949. ],
  4950. "time": "2017-03-18T10:28:49+00:00"
  4951. },
  4952. {
  4953. "name": "fabpot/goutte",
  4954. "version": "v3.2.2",
  4955. "source": {
  4956. "type": "git",
  4957. "url": "https://github.com/FriendsOfPHP/Goutte.git",
  4958. "reference": "395f61d7c2e15a813839769553a4de16fa3b3c96"
  4959. },
  4960. "dist": {
  4961. "type": "zip",
  4962. "url": "https://api.github.com/repos/FriendsOfPHP/Goutte/zipball/395f61d7c2e15a813839769553a4de16fa3b3c96",
  4963. "reference": "395f61d7c2e15a813839769553a4de16fa3b3c96",
  4964. "shasum": ""
  4965. },
  4966. "require": {
  4967. "guzzlehttp/guzzle": "^6.0",
  4968. "php": ">=5.5.0",
  4969. "symfony/browser-kit": "~2.1|~3.0|~4.0",
  4970. "symfony/css-selector": "~2.1|~3.0|~4.0",
  4971. "symfony/dom-crawler": "~2.1|~3.0|~4.0"
  4972. },
  4973. "require-dev": {
  4974. "symfony/phpunit-bridge": "^3.3 || ^4"
  4975. },
  4976. "type": "application",
  4977. "extra": {
  4978. "branch-alias": {
  4979. "dev-master": "3.2-dev"
  4980. }
  4981. },
  4982. "autoload": {
  4983. "psr-4": {
  4984. "Goutte\\": "Goutte"
  4985. },
  4986. "exclude-from-classmap": [
  4987. "Goutte/Tests"
  4988. ]
  4989. },
  4990. "notification-url": "https://packagist.org/downloads/",
  4991. "license": [
  4992. "MIT"
  4993. ],
  4994. "authors": [
  4995. {
  4996. "name": "Fabien Potencier",
  4997. "email": "fabien@symfony.com"
  4998. }
  4999. ],
  5000. "description": "A simple PHP Web Scraper",
  5001. "homepage": "https://github.com/FriendsOfPHP/Goutte",
  5002. "keywords": [
  5003. "scraper"
  5004. ],
  5005. "time": "2017-11-19T08:45:40+00:00"
  5006. },
  5007. {
  5008. "name": "instaclick/php-webdriver",
  5009. "version": "1.4.5",
  5010. "source": {
  5011. "type": "git",
  5012. "url": "https://github.com/instaclick/php-webdriver.git",
  5013. "reference": "6fa959452e774dcaed543faad3a9d1a37d803327"
  5014. },
  5015. "dist": {
  5016. "type": "zip",
  5017. "url": "https://api.github.com/repos/instaclick/php-webdriver/zipball/6fa959452e774dcaed543faad3a9d1a37d803327",
  5018. "reference": "6fa959452e774dcaed543faad3a9d1a37d803327",
  5019. "shasum": ""
  5020. },
  5021. "require": {
  5022. "ext-curl": "*",
  5023. "php": ">=5.3.2"
  5024. },
  5025. "require-dev": {
  5026. "phpunit/phpunit": "^4.8",
  5027. "satooshi/php-coveralls": "^1.0||^2.0"
  5028. },
  5029. "type": "library",
  5030. "extra": {
  5031. "branch-alias": {
  5032. "dev-master": "1.4.x-dev"
  5033. }
  5034. },
  5035. "autoload": {
  5036. "psr-0": {
  5037. "WebDriver": "lib/"
  5038. }
  5039. },
  5040. "notification-url": "https://packagist.org/downloads/",
  5041. "license": [
  5042. "Apache-2.0"
  5043. ],
  5044. "authors": [
  5045. {
  5046. "name": "Justin Bishop",
  5047. "email": "jubishop@gmail.com",
  5048. "role": "Developer"
  5049. },
  5050. {
  5051. "name": "Anthon Pang",
  5052. "email": "apang@softwaredevelopment.ca",
  5053. "role": "Fork Maintainer"
  5054. }
  5055. ],
  5056. "description": "PHP WebDriver for Selenium 2",
  5057. "homepage": "http://instaclick.com/",
  5058. "keywords": [
  5059. "browser",
  5060. "selenium",
  5061. "webdriver",
  5062. "webtest"
  5063. ],
  5064. "time": "2017-06-30T04:02:48+00:00"
  5065. },
  5066. {
  5067. "name": "jcalderonzumba/gastonjs",
  5068. "version": "v1.2.0",
  5069. "source": {
  5070. "type": "git",
  5071. "url": "https://github.com/jcalderonzumba/gastonjs.git",
  5072. "reference": "575a9c18d8b87990c37252e8d9707b29f0a313f3"
  5073. },
  5074. "dist": {
  5075. "type": "zip",
  5076. "url": "https://api.github.com/repos/jcalderonzumba/gastonjs/zipball/575a9c18d8b87990c37252e8d9707b29f0a313f3",
  5077. "reference": "575a9c18d8b87990c37252e8d9707b29f0a313f3",
  5078. "shasum": ""
  5079. },
  5080. "require": {
  5081. "guzzlehttp/guzzle": "~5.0|~6.0",
  5082. "php": ">=5.4"
  5083. },
  5084. "require-dev": {
  5085. "phpunit/phpunit": "~4.6",
  5086. "silex/silex": "~1.2",
  5087. "symfony/phpunit-bridge": "~2.7",
  5088. "symfony/process": "~2.1"
  5089. },
  5090. "type": "phantomjs-api",
  5091. "extra": {
  5092. "branch-alias": {
  5093. "dev-master": "1.1.x-dev"
  5094. }
  5095. },
  5096. "autoload": {
  5097. "psr-4": {
  5098. "Zumba\\GastonJS\\": "src"
  5099. }
  5100. },
  5101. "notification-url": "https://packagist.org/downloads/",
  5102. "license": [
  5103. "MIT"
  5104. ],
  5105. "authors": [
  5106. {
  5107. "name": "Juan Francisco Calderón Zumba",
  5108. "email": "juanfcz@gmail.com",
  5109. "homepage": "http://github.com/jcalderonzumba"
  5110. }
  5111. ],
  5112. "description": "PhantomJS API based server for webpage automation",
  5113. "homepage": "https://github.com/jcalderonzumba/gastonjs",
  5114. "keywords": [
  5115. "api",
  5116. "automation",
  5117. "browser",
  5118. "headless",
  5119. "phantomjs"
  5120. ],
  5121. "time": "2017-03-31T07:31:47+00:00"
  5122. },
  5123. {
  5124. "name": "jcalderonzumba/mink-phantomjs-driver",
  5125. "version": "v0.3.3",
  5126. "source": {
  5127. "type": "git",
  5128. "url": "https://github.com/jcalderonzumba/MinkPhantomJSDriver.git",
  5129. "reference": "008f43670e94acd39273d15add1e7348eb23848d"
  5130. },
  5131. "dist": {
  5132. "type": "zip",
  5133. "url": "https://api.github.com/repos/jcalderonzumba/MinkPhantomJSDriver/zipball/008f43670e94acd39273d15add1e7348eb23848d",
  5134. "reference": "008f43670e94acd39273d15add1e7348eb23848d",
  5135. "shasum": ""
  5136. },
  5137. "require": {
  5138. "behat/mink": "~1.7",
  5139. "jcalderonzumba/gastonjs": "~1.0",
  5140. "php": ">=5.4",
  5141. "twig/twig": "~1.20|~2.0"
  5142. },
  5143. "require-dev": {
  5144. "mink/driver-testsuite": "dev-master",
  5145. "phpunit/phpunit": "~4.6"
  5146. },
  5147. "type": "mink-driver",
  5148. "extra": {
  5149. "branch-alias": {
  5150. "dev-master": "0.4.x-dev"
  5151. }
  5152. },
  5153. "autoload": {
  5154. "psr-4": {
  5155. "Zumba\\Mink\\Driver\\": "src"
  5156. }
  5157. },
  5158. "notification-url": "https://packagist.org/downloads/",
  5159. "license": [
  5160. "MIT"
  5161. ],
  5162. "authors": [
  5163. {
  5164. "name": "Juan Francisco Calderón Zumba",
  5165. "email": "juanfcz@gmail.com",
  5166. "homepage": "http://github.com/jcalderonzumba"
  5167. }
  5168. ],
  5169. "description": "PhantomJS driver for Mink framework",
  5170. "homepage": "http://mink.behat.org/",
  5171. "keywords": [
  5172. "ajax",
  5173. "browser",
  5174. "headless",
  5175. "javascript",
  5176. "phantomjs",
  5177. "testing"
  5178. ],
  5179. "time": "2016-12-01T10:57:30+00:00"
  5180. },
  5181. {
  5182. "name": "mikey179/vfsStream",
  5183. "version": "v1.6.5",
  5184. "source": {
  5185. "type": "git",
  5186. "url": "https://github.com/mikey179/vfsStream.git",
  5187. "reference": "d5fec95f541d4d71c4823bb5e30cf9b9e5b96145"
  5188. },
  5189. "dist": {
  5190. "type": "zip",
  5191. "url": "https://api.github.com/repos/mikey179/vfsStream/zipball/d5fec95f541d4d71c4823bb5e30cf9b9e5b96145",
  5192. "reference": "d5fec95f541d4d71c4823bb5e30cf9b9e5b96145",
  5193. "shasum": ""
  5194. },
  5195. "require": {
  5196. "php": ">=5.3.0"
  5197. },
  5198. "require-dev": {
  5199. "phpunit/phpunit": "~4.5"
  5200. },
  5201. "type": "library",
  5202. "extra": {
  5203. "branch-alias": {
  5204. "dev-master": "1.6.x-dev"
  5205. }
  5206. },
  5207. "autoload": {
  5208. "psr-0": {
  5209. "org\\bovigo\\vfs\\": "src/main/php"
  5210. }
  5211. },
  5212. "notification-url": "https://packagist.org/downloads/",
  5213. "license": [
  5214. "BSD-3-Clause"
  5215. ],
  5216. "authors": [
  5217. {
  5218. "name": "Frank Kleine",
  5219. "homepage": "http://frankkleine.de/",
  5220. "role": "Developer"
  5221. }
  5222. ],
  5223. "description": "Virtual file system to mock the real file system in unit tests.",
  5224. "homepage": "http://vfs.bovigo.org/",
  5225. "time": "2017-08-01T08:02:14+00:00"
  5226. },
  5227. {
  5228. "name": "myclabs/deep-copy",
  5229. "version": "1.7.0",
  5230. "source": {
  5231. "type": "git",
  5232. "url": "https://github.com/myclabs/DeepCopy.git",
  5233. "reference": "3b8a3a99ba1f6a3952ac2747d989303cbd6b7a3e"
  5234. },
  5235. "dist": {
  5236. "type": "zip",
  5237. "url": "https://api.github.com/repos/myclabs/DeepCopy/zipball/3b8a3a99ba1f6a3952ac2747d989303cbd6b7a3e",
  5238. "reference": "3b8a3a99ba1f6a3952ac2747d989303cbd6b7a3e",
  5239. "shasum": ""
  5240. },
  5241. "require": {
  5242. "php": "^5.6 || ^7.0"
  5243. },
  5244. "require-dev": {
  5245. "doctrine/collections": "^1.0",
  5246. "doctrine/common": "^2.6",
  5247. "phpunit/phpunit": "^4.1"
  5248. },
  5249. "type": "library",
  5250. "autoload": {
  5251. "psr-4": {
  5252. "DeepCopy\\": "src/DeepCopy/"
  5253. },
  5254. "files": [
  5255. "src/DeepCopy/deep_copy.php"
  5256. ]
  5257. },
  5258. "notification-url": "https://packagist.org/downloads/",
  5259. "license": [
  5260. "MIT"
  5261. ],
  5262. "description": "Create deep copies (clones) of your objects",
  5263. "keywords": [
  5264. "clone",
  5265. "copy",
  5266. "duplicate",
  5267. "object",
  5268. "object graph"
  5269. ],
  5270. "time": "2017-10-19T19:58:43+00:00"
  5271. },
  5272. {
  5273. "name": "phar-io/manifest",
  5274. "version": "1.0.1",
  5275. "source": {
  5276. "type": "git",
  5277. "url": "https://github.com/phar-io/manifest.git",
  5278. "reference": "2df402786ab5368a0169091f61a7c1e0eb6852d0"
  5279. },
  5280. "dist": {
  5281. "type": "zip",
  5282. "url": "https://api.github.com/repos/phar-io/manifest/zipball/2df402786ab5368a0169091f61a7c1e0eb6852d0",
  5283. "reference": "2df402786ab5368a0169091f61a7c1e0eb6852d0",
  5284. "shasum": ""
  5285. },
  5286. "require": {
  5287. "ext-dom": "*",
  5288. "ext-phar": "*",
  5289. "phar-io/version": "^1.0.1",
  5290. "php": "^5.6 || ^7.0"
  5291. },
  5292. "type": "library",
  5293. "extra": {
  5294. "branch-alias": {
  5295. "dev-master": "1.0.x-dev"
  5296. }
  5297. },
  5298. "autoload": {
  5299. "classmap": [
  5300. "src/"
  5301. ]
  5302. },
  5303. "notification-url": "https://packagist.org/downloads/",
  5304. "license": [
  5305. "BSD-3-Clause"
  5306. ],
  5307. "authors": [
  5308. {
  5309. "name": "Arne Blankerts",
  5310. "email": "arne@blankerts.de",
  5311. "role": "Developer"
  5312. },
  5313. {
  5314. "name": "Sebastian Heuer",
  5315. "email": "sebastian@phpeople.de",
  5316. "role": "Developer"
  5317. },
  5318. {
  5319. "name": "Sebastian Bergmann",
  5320. "email": "sebastian@phpunit.de",
  5321. "role": "Developer"
  5322. }
  5323. ],
  5324. "description": "Component for reading phar.io manifest information from a PHP Archive (PHAR)",
  5325. "time": "2017-03-05T18:14:27+00:00"
  5326. },
  5327. {
  5328. "name": "phar-io/version",
  5329. "version": "1.0.1",
  5330. "source": {
  5331. "type": "git",
  5332. "url": "https://github.com/phar-io/version.git",
  5333. "reference": "a70c0ced4be299a63d32fa96d9281d03e94041df"
  5334. },
  5335. "dist": {
  5336. "type": "zip",
  5337. "url": "https://api.github.com/repos/phar-io/version/zipball/a70c0ced4be299a63d32fa96d9281d03e94041df",
  5338. "reference": "a70c0ced4be299a63d32fa96d9281d03e94041df",
  5339. "shasum": ""
  5340. },
  5341. "require": {
  5342. "php": "^5.6 || ^7.0"
  5343. },
  5344. "type": "library",
  5345. "autoload": {
  5346. "classmap": [
  5347. "src/"
  5348. ]
  5349. },
  5350. "notification-url": "https://packagist.org/downloads/",
  5351. "license": [
  5352. "BSD-3-Clause"
  5353. ],
  5354. "authors": [
  5355. {
  5356. "name": "Arne Blankerts",
  5357. "email": "arne@blankerts.de",
  5358. "role": "Developer"
  5359. },
  5360. {
  5361. "name": "Sebastian Heuer",
  5362. "email": "sebastian@phpeople.de",
  5363. "role": "Developer"
  5364. },
  5365. {
  5366. "name": "Sebastian Bergmann",
  5367. "email": "sebastian@phpunit.de",
  5368. "role": "Developer"
  5369. }
  5370. ],
  5371. "description": "Library for handling version information and constraints",
  5372. "time": "2017-03-05T17:38:23+00:00"
  5373. },
  5374. {
  5375. "name": "phpdocumentor/reflection-common",
  5376. "version": "1.0.1",
  5377. "source": {
  5378. "type": "git",
  5379. "url": "https://github.com/phpDocumentor/ReflectionCommon.git",
  5380. "reference": "21bdeb5f65d7ebf9f43b1b25d404f87deab5bfb6"
  5381. },
  5382. "dist": {
  5383. "type": "zip",
  5384. "url": "https://api.github.com/repos/phpDocumentor/ReflectionCommon/zipball/21bdeb5f65d7ebf9f43b1b25d404f87deab5bfb6",
  5385. "reference": "21bdeb5f65d7ebf9f43b1b25d404f87deab5bfb6",
  5386. "shasum": ""
  5387. },
  5388. "require": {
  5389. "php": ">=5.5"
  5390. },
  5391. "require-dev": {
  5392. "phpunit/phpunit": "^4.6"
  5393. },
  5394. "type": "library",
  5395. "extra": {
  5396. "branch-alias": {
  5397. "dev-master": "1.0.x-dev"
  5398. }
  5399. },
  5400. "autoload": {
  5401. "psr-4": {
  5402. "phpDocumentor\\Reflection\\": [
  5403. "src"
  5404. ]
  5405. }
  5406. },
  5407. "notification-url": "https://packagist.org/downloads/",
  5408. "license": [
  5409. "MIT"
  5410. ],
  5411. "authors": [
  5412. {
  5413. "name": "Jaap van Otterdijk",
  5414. "email": "opensource@ijaap.nl"
  5415. }
  5416. ],
  5417. "description": "Common reflection classes used by phpdocumentor to reflect the code structure",
  5418. "homepage": "http://www.phpdoc.org",
  5419. "keywords": [
  5420. "FQSEN",
  5421. "phpDocumentor",
  5422. "phpdoc",
  5423. "reflection",
  5424. "static analysis"
  5425. ],
  5426. "time": "2017-09-11T18:02:19+00:00"
  5427. },
  5428. {
  5429. "name": "phpdocumentor/reflection-docblock",
  5430. "version": "4.3.0",
  5431. "source": {
  5432. "type": "git",
  5433. "url": "https://github.com/phpDocumentor/ReflectionDocBlock.git",
  5434. "reference": "94fd0001232e47129dd3504189fa1c7225010d08"
  5435. },
  5436. "dist": {
  5437. "type": "zip",
  5438. "url": "https://api.github.com/repos/phpDocumentor/ReflectionDocBlock/zipball/94fd0001232e47129dd3504189fa1c7225010d08",
  5439. "reference": "94fd0001232e47129dd3504189fa1c7225010d08",
  5440. "shasum": ""
  5441. },
  5442. "require": {
  5443. "php": "^7.0",
  5444. "phpdocumentor/reflection-common": "^1.0.0",
  5445. "phpdocumentor/type-resolver": "^0.4.0",
  5446. "webmozart/assert": "^1.0"
  5447. },
  5448. "require-dev": {
  5449. "doctrine/instantiator": "~1.0.5",
  5450. "mockery/mockery": "^1.0",
  5451. "phpunit/phpunit": "^6.4"
  5452. },
  5453. "type": "library",
  5454. "extra": {
  5455. "branch-alias": {
  5456. "dev-master": "4.x-dev"
  5457. }
  5458. },
  5459. "autoload": {
  5460. "psr-4": {
  5461. "phpDocumentor\\Reflection\\": [
  5462. "src/"
  5463. ]
  5464. }
  5465. },
  5466. "notification-url": "https://packagist.org/downloads/",
  5467. "license": [
  5468. "MIT"
  5469. ],
  5470. "authors": [
  5471. {
  5472. "name": "Mike van Riel",
  5473. "email": "me@mikevanriel.com"
  5474. }
  5475. ],
  5476. "description": "With this component, a library can provide support for annotations via DocBlocks or otherwise retrieve information that is embedded in a DocBlock.",
  5477. "time": "2017-11-30T07:14:17+00:00"
  5478. },
  5479. {
  5480. "name": "phpdocumentor/type-resolver",
  5481. "version": "0.4.0",
  5482. "source": {
  5483. "type": "git",
  5484. "url": "https://github.com/phpDocumentor/TypeResolver.git",
  5485. "reference": "9c977708995954784726e25d0cd1dddf4e65b0f7"
  5486. },
  5487. "dist": {
  5488. "type": "zip",
  5489. "url": "https://api.github.com/repos/phpDocumentor/TypeResolver/zipball/9c977708995954784726e25d0cd1dddf4e65b0f7",
  5490. "reference": "9c977708995954784726e25d0cd1dddf4e65b0f7",
  5491. "shasum": ""
  5492. },
  5493. "require": {
  5494. "php": "^5.5 || ^7.0",
  5495. "phpdocumentor/reflection-common": "^1.0"
  5496. },
  5497. "require-dev": {
  5498. "mockery/mockery": "^0.9.4",
  5499. "phpunit/phpunit": "^5.2||^4.8.24"
  5500. },
  5501. "type": "library",
  5502. "extra": {
  5503. "branch-alias": {
  5504. "dev-master": "1.0.x-dev"
  5505. }
  5506. },
  5507. "autoload": {
  5508. "psr-4": {
  5509. "phpDocumentor\\Reflection\\": [
  5510. "src/"
  5511. ]
  5512. }
  5513. },
  5514. "notification-url": "https://packagist.org/downloads/",
  5515. "license": [
  5516. "MIT"
  5517. ],
  5518. "authors": [
  5519. {
  5520. "name": "Mike van Riel",
  5521. "email": "me@mikevanriel.com"
  5522. }
  5523. ],
  5524. "time": "2017-07-14T14:27:02+00:00"
  5525. },
  5526. {
  5527. "name": "phpspec/prophecy",
  5528. "version": "1.7.5",
  5529. "source": {
  5530. "type": "git",
  5531. "url": "https://github.com/phpspec/prophecy.git",
  5532. "reference": "dfd6be44111a7c41c2e884a336cc4f461b3b2401"
  5533. },
  5534. "dist": {
  5535. "type": "zip",
  5536. "url": "https://api.github.com/repos/phpspec/prophecy/zipball/dfd6be44111a7c41c2e884a336cc4f461b3b2401",
  5537. "reference": "dfd6be44111a7c41c2e884a336cc4f461b3b2401",
  5538. "shasum": ""
  5539. },
  5540. "require": {
  5541. "doctrine/instantiator": "^1.0.2",
  5542. "php": "^5.3|^7.0",
  5543. "phpdocumentor/reflection-docblock": "^2.0|^3.0.2|^4.0",
  5544. "sebastian/comparator": "^1.1|^2.0",
  5545. "sebastian/recursion-context": "^1.0|^2.0|^3.0"
  5546. },
  5547. "require-dev": {
  5548. "phpspec/phpspec": "^2.5|^3.2",
  5549. "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.5"
  5550. },
  5551. "type": "library",
  5552. "extra": {
  5553. "branch-alias": {
  5554. "dev-master": "1.7.x-dev"
  5555. }
  5556. },
  5557. "autoload": {
  5558. "psr-0": {
  5559. "Prophecy\\": "src/"
  5560. }
  5561. },
  5562. "notification-url": "https://packagist.org/downloads/",
  5563. "license": [
  5564. "MIT"
  5565. ],
  5566. "authors": [
  5567. {
  5568. "name": "Konstantin Kudryashov",
  5569. "email": "ever.zet@gmail.com",
  5570. "homepage": "http://everzet.com"
  5571. },
  5572. {
  5573. "name": "Marcello Duarte",
  5574. "email": "marcello.duarte@gmail.com"
  5575. }
  5576. ],
  5577. "description": "Highly opinionated mocking framework for PHP 5.3+",
  5578. "homepage": "https://github.com/phpspec/prophecy",
  5579. "keywords": [
  5580. "Double",
  5581. "Dummy",
  5582. "fake",
  5583. "mock",
  5584. "spy",
  5585. "stub"
  5586. ],
  5587. "time": "2018-02-19T10:16:54+00:00"
  5588. },
  5589. {
  5590. "name": "phpunit/php-code-coverage",
  5591. "version": "5.3.0",
  5592. "source": {
  5593. "type": "git",
  5594. "url": "https://github.com/sebastianbergmann/php-code-coverage.git",
  5595. "reference": "661f34d0bd3f1a7225ef491a70a020ad23a057a1"
  5596. },
  5597. "dist": {
  5598. "type": "zip",
  5599. "url": "https://api.github.com/repos/sebastianbergmann/php-code-coverage/zipball/661f34d0bd3f1a7225ef491a70a020ad23a057a1",
  5600. "reference": "661f34d0bd3f1a7225ef491a70a020ad23a057a1",
  5601. "shasum": ""
  5602. },
  5603. "require": {
  5604. "ext-dom": "*",
  5605. "ext-xmlwriter": "*",
  5606. "php": "^7.0",
  5607. "phpunit/php-file-iterator": "^1.4.2",
  5608. "phpunit/php-text-template": "^1.2.1",
  5609. "phpunit/php-token-stream": "^2.0.1",
  5610. "sebastian/code-unit-reverse-lookup": "^1.0.1",
  5611. "sebastian/environment": "^3.0",
  5612. "sebastian/version": "^2.0.1",
  5613. "theseer/tokenizer": "^1.1"
  5614. },
  5615. "require-dev": {
  5616. "phpunit/phpunit": "^6.0"
  5617. },
  5618. "suggest": {
  5619. "ext-xdebug": "^2.5.5"
  5620. },
  5621. "type": "library",
  5622. "extra": {
  5623. "branch-alias": {
  5624. "dev-master": "5.3.x-dev"
  5625. }
  5626. },
  5627. "autoload": {
  5628. "classmap": [
  5629. "src/"
  5630. ]
  5631. },
  5632. "notification-url": "https://packagist.org/downloads/",
  5633. "license": [
  5634. "BSD-3-Clause"
  5635. ],
  5636. "authors": [
  5637. {
  5638. "name": "Sebastian Bergmann",
  5639. "email": "sebastian@phpunit.de",
  5640. "role": "lead"
  5641. }
  5642. ],
  5643. "description": "Library that provides collection, processing, and rendering functionality for PHP code coverage information.",
  5644. "homepage": "https://github.com/sebastianbergmann/php-code-coverage",
  5645. "keywords": [
  5646. "coverage",
  5647. "testing",
  5648. "xunit"
  5649. ],
  5650. "time": "2017-12-06T09:29:45+00:00"
  5651. },
  5652. {
  5653. "name": "phpunit/php-file-iterator",
  5654. "version": "1.4.5",
  5655. "source": {
  5656. "type": "git",
  5657. "url": "https://github.com/sebastianbergmann/php-file-iterator.git",
  5658. "reference": "730b01bc3e867237eaac355e06a36b85dd93a8b4"
  5659. },
  5660. "dist": {
  5661. "type": "zip",
  5662. "url": "https://api.github.com/repos/sebastianbergmann/php-file-iterator/zipball/730b01bc3e867237eaac355e06a36b85dd93a8b4",
  5663. "reference": "730b01bc3e867237eaac355e06a36b85dd93a8b4",
  5664. "shasum": ""
  5665. },
  5666. "require": {
  5667. "php": ">=5.3.3"
  5668. },
  5669. "type": "library",
  5670. "extra": {
  5671. "branch-alias": {
  5672. "dev-master": "1.4.x-dev"
  5673. }
  5674. },
  5675. "autoload": {
  5676. "classmap": [
  5677. "src/"
  5678. ]
  5679. },
  5680. "notification-url": "https://packagist.org/downloads/",
  5681. "license": [
  5682. "BSD-3-Clause"
  5683. ],
  5684. "authors": [
  5685. {
  5686. "name": "Sebastian Bergmann",
  5687. "email": "sb@sebastian-bergmann.de",
  5688. "role": "lead"
  5689. }
  5690. ],
  5691. "description": "FilterIterator implementation that filters files based on a list of suffixes.",
  5692. "homepage": "https://github.com/sebastianbergmann/php-file-iterator/",
  5693. "keywords": [
  5694. "filesystem",
  5695. "iterator"
  5696. ],
  5697. "time": "2017-11-27T13:52:08+00:00"
  5698. },
  5699. {
  5700. "name": "phpunit/php-text-template",
  5701. "version": "1.2.1",
  5702. "source": {
  5703. "type": "git",
  5704. "url": "https://github.com/sebastianbergmann/php-text-template.git",
  5705. "reference": "31f8b717e51d9a2afca6c9f046f5d69fc27c8686"
  5706. },
  5707. "dist": {
  5708. "type": "zip",
  5709. "url": "https://api.github.com/repos/sebastianbergmann/php-text-template/zipball/31f8b717e51d9a2afca6c9f046f5d69fc27c8686",
  5710. "reference": "31f8b717e51d9a2afca6c9f046f5d69fc27c8686",
  5711. "shasum": ""
  5712. },
  5713. "require": {
  5714. "php": ">=5.3.3"
  5715. },
  5716. "type": "library",
  5717. "autoload": {
  5718. "classmap": [
  5719. "src/"
  5720. ]
  5721. },
  5722. "notification-url": "https://packagist.org/downloads/",
  5723. "license": [
  5724. "BSD-3-Clause"
  5725. ],
  5726. "authors": [
  5727. {
  5728. "name": "Sebastian Bergmann",
  5729. "email": "sebastian@phpunit.de",
  5730. "role": "lead"
  5731. }
  5732. ],
  5733. "description": "Simple template engine.",
  5734. "homepage": "https://github.com/sebastianbergmann/php-text-template/",
  5735. "keywords": [
  5736. "template"
  5737. ],
  5738. "time": "2015-06-21T13:50:34+00:00"
  5739. },
  5740. {
  5741. "name": "phpunit/php-timer",
  5742. "version": "1.0.9",
  5743. "source": {
  5744. "type": "git",
  5745. "url": "https://github.com/sebastianbergmann/php-timer.git",
  5746. "reference": "3dcf38ca72b158baf0bc245e9184d3fdffa9c46f"
  5747. },
  5748. "dist": {
  5749. "type": "zip",
  5750. "url": "https://api.github.com/repos/sebastianbergmann/php-timer/zipball/3dcf38ca72b158baf0bc245e9184d3fdffa9c46f",
  5751. "reference": "3dcf38ca72b158baf0bc245e9184d3fdffa9c46f",
  5752. "shasum": ""
  5753. },
  5754. "require": {
  5755. "php": "^5.3.3 || ^7.0"
  5756. },
  5757. "require-dev": {
  5758. "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.0"
  5759. },
  5760. "type": "library",
  5761. "extra": {
  5762. "branch-alias": {
  5763. "dev-master": "1.0-dev"
  5764. }
  5765. },
  5766. "autoload": {
  5767. "classmap": [
  5768. "src/"
  5769. ]
  5770. },
  5771. "notification-url": "https://packagist.org/downloads/",
  5772. "license": [
  5773. "BSD-3-Clause"
  5774. ],
  5775. "authors": [
  5776. {
  5777. "name": "Sebastian Bergmann",
  5778. "email": "sb@sebastian-bergmann.de",
  5779. "role": "lead"
  5780. }
  5781. ],
  5782. "description": "Utility class for timing",
  5783. "homepage": "https://github.com/sebastianbergmann/php-timer/",
  5784. "keywords": [
  5785. "timer"
  5786. ],
  5787. "time": "2017-02-26T11:10:40+00:00"
  5788. },
  5789. {
  5790. "name": "phpunit/php-token-stream",
  5791. "version": "2.0.2",
  5792. "source": {
  5793. "type": "git",
  5794. "url": "https://github.com/sebastianbergmann/php-token-stream.git",
  5795. "reference": "791198a2c6254db10131eecfe8c06670700904db"
  5796. },
  5797. "dist": {
  5798. "type": "zip",
  5799. "url": "https://api.github.com/repos/sebastianbergmann/php-token-stream/zipball/791198a2c6254db10131eecfe8c06670700904db",
  5800. "reference": "791198a2c6254db10131eecfe8c06670700904db",
  5801. "shasum": ""
  5802. },
  5803. "require": {
  5804. "ext-tokenizer": "*",
  5805. "php": "^7.0"
  5806. },
  5807. "require-dev": {
  5808. "phpunit/phpunit": "^6.2.4"
  5809. },
  5810. "type": "library",
  5811. "extra": {
  5812. "branch-alias": {
  5813. "dev-master": "2.0-dev"
  5814. }
  5815. },
  5816. "autoload": {
  5817. "classmap": [
  5818. "src/"
  5819. ]
  5820. },
  5821. "notification-url": "https://packagist.org/downloads/",
  5822. "license": [
  5823. "BSD-3-Clause"
  5824. ],
  5825. "authors": [
  5826. {
  5827. "name": "Sebastian Bergmann",
  5828. "email": "sebastian@phpunit.de"
  5829. }
  5830. ],
  5831. "description": "Wrapper around PHP's tokenizer extension.",
  5832. "homepage": "https://github.com/sebastianbergmann/php-token-stream/",
  5833. "keywords": [
  5834. "tokenizer"
  5835. ],
  5836. "time": "2017-11-27T05:48:46+00:00"
  5837. },
  5838. {
  5839. "name": "phpunit/phpunit",
  5840. "version": "6.5.7",
  5841. "source": {
  5842. "type": "git",
  5843. "url": "https://github.com/sebastianbergmann/phpunit.git",
  5844. "reference": "6bd77b57707c236833d2b57b968e403df060c9d9"
  5845. },
  5846. "dist": {
  5847. "type": "zip",
  5848. "url": "https://api.github.com/repos/sebastianbergmann/phpunit/zipball/6bd77b57707c236833d2b57b968e403df060c9d9",
  5849. "reference": "6bd77b57707c236833d2b57b968e403df060c9d9",
  5850. "shasum": ""
  5851. },
  5852. "require": {
  5853. "ext-dom": "*",
  5854. "ext-json": "*",
  5855. "ext-libxml": "*",
  5856. "ext-mbstring": "*",
  5857. "ext-xml": "*",
  5858. "myclabs/deep-copy": "^1.6.1",
  5859. "phar-io/manifest": "^1.0.1",
  5860. "phar-io/version": "^1.0",
  5861. "php": "^7.0",
  5862. "phpspec/prophecy": "^1.7",
  5863. "phpunit/php-code-coverage": "^5.3",
  5864. "phpunit/php-file-iterator": "^1.4.3",
  5865. "phpunit/php-text-template": "^1.2.1",
  5866. "phpunit/php-timer": "^1.0.9",
  5867. "phpunit/phpunit-mock-objects": "^5.0.5",
  5868. "sebastian/comparator": "^2.1",
  5869. "sebastian/diff": "^2.0",
  5870. "sebastian/environment": "^3.1",
  5871. "sebastian/exporter": "^3.1",
  5872. "sebastian/global-state": "^2.0",
  5873. "sebastian/object-enumerator": "^3.0.3",
  5874. "sebastian/resource-operations": "^1.0",
  5875. "sebastian/version": "^2.0.1"
  5876. },
  5877. "conflict": {
  5878. "phpdocumentor/reflection-docblock": "3.0.2",
  5879. "phpunit/dbunit": "<3.0"
  5880. },
  5881. "require-dev": {
  5882. "ext-pdo": "*"
  5883. },
  5884. "suggest": {
  5885. "ext-xdebug": "*",
  5886. "phpunit/php-invoker": "^1.1"
  5887. },
  5888. "bin": [
  5889. "phpunit"
  5890. ],
  5891. "type": "library",
  5892. "extra": {
  5893. "branch-alias": {
  5894. "dev-master": "6.5.x-dev"
  5895. }
  5896. },
  5897. "autoload": {
  5898. "classmap": [
  5899. "src/"
  5900. ]
  5901. },
  5902. "notification-url": "https://packagist.org/downloads/",
  5903. "license": [
  5904. "BSD-3-Clause"
  5905. ],
  5906. "authors": [
  5907. {
  5908. "name": "Sebastian Bergmann",
  5909. "email": "sebastian@phpunit.de",
  5910. "role": "lead"
  5911. }
  5912. ],
  5913. "description": "The PHP Unit Testing framework.",
  5914. "homepage": "https://phpunit.de/",
  5915. "keywords": [
  5916. "phpunit",
  5917. "testing",
  5918. "xunit"
  5919. ],
  5920. "time": "2018-02-26T07:01:09+00:00"
  5921. },
  5922. {
  5923. "name": "phpunit/phpunit-mock-objects",
  5924. "version": "5.0.6",
  5925. "source": {
  5926. "type": "git",
  5927. "url": "https://github.com/sebastianbergmann/phpunit-mock-objects.git",
  5928. "reference": "33fd41a76e746b8fa96d00b49a23dadfa8334cdf"
  5929. },
  5930. "dist": {
  5931. "type": "zip",
  5932. "url": "https://api.github.com/repos/sebastianbergmann/phpunit-mock-objects/zipball/33fd41a76e746b8fa96d00b49a23dadfa8334cdf",
  5933. "reference": "33fd41a76e746b8fa96d00b49a23dadfa8334cdf",
  5934. "shasum": ""
  5935. },
  5936. "require": {
  5937. "doctrine/instantiator": "^1.0.5",
  5938. "php": "^7.0",
  5939. "phpunit/php-text-template": "^1.2.1",
  5940. "sebastian/exporter": "^3.1"
  5941. },
  5942. "conflict": {
  5943. "phpunit/phpunit": "<6.0"
  5944. },
  5945. "require-dev": {
  5946. "phpunit/phpunit": "^6.5"
  5947. },
  5948. "suggest": {
  5949. "ext-soap": "*"
  5950. },
  5951. "type": "library",
  5952. "extra": {
  5953. "branch-alias": {
  5954. "dev-master": "5.0.x-dev"
  5955. }
  5956. },
  5957. "autoload": {
  5958. "classmap": [
  5959. "src/"
  5960. ]
  5961. },
  5962. "notification-url": "https://packagist.org/downloads/",
  5963. "license": [
  5964. "BSD-3-Clause"
  5965. ],
  5966. "authors": [
  5967. {
  5968. "name": "Sebastian Bergmann",
  5969. "email": "sebastian@phpunit.de",
  5970. "role": "lead"
  5971. }
  5972. ],
  5973. "description": "Mock Object library for PHPUnit",
  5974. "homepage": "https://github.com/sebastianbergmann/phpunit-mock-objects/",
  5975. "keywords": [
  5976. "mock",
  5977. "xunit"
  5978. ],
  5979. "time": "2018-01-06T05:45:45+00:00"
  5980. },
  5981. {
  5982. "name": "sebastian/code-unit-reverse-lookup",
  5983. "version": "1.0.1",
  5984. "source": {
  5985. "type": "git",
  5986. "url": "https://github.com/sebastianbergmann/code-unit-reverse-lookup.git",
  5987. "reference": "4419fcdb5eabb9caa61a27c7a1db532a6b55dd18"
  5988. },
  5989. "dist": {
  5990. "type": "zip",
  5991. "url": "https://api.github.com/repos/sebastianbergmann/code-unit-reverse-lookup/zipball/4419fcdb5eabb9caa61a27c7a1db532a6b55dd18",
  5992. "reference": "4419fcdb5eabb9caa61a27c7a1db532a6b55dd18",
  5993. "shasum": ""
  5994. },
  5995. "require": {
  5996. "php": "^5.6 || ^7.0"
  5997. },
  5998. "require-dev": {
  5999. "phpunit/phpunit": "^5.7 || ^6.0"
  6000. },
  6001. "type": "library",
  6002. "extra": {
  6003. "branch-alias": {
  6004. "dev-master": "1.0.x-dev"
  6005. }
  6006. },
  6007. "autoload": {
  6008. "classmap": [
  6009. "src/"
  6010. ]
  6011. },
  6012. "notification-url": "https://packagist.org/downloads/",
  6013. "license": [
  6014. "BSD-3-Clause"
  6015. ],
  6016. "authors": [
  6017. {
  6018. "name": "Sebastian Bergmann",
  6019. "email": "sebastian@phpunit.de"
  6020. }
  6021. ],
  6022. "description": "Looks up which function or method a line of code belongs to",
  6023. "homepage": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/",
  6024. "time": "2017-03-04T06:30:41+00:00"
  6025. },
  6026. {
  6027. "name": "sebastian/comparator",
  6028. "version": "2.1.3",
  6029. "source": {
  6030. "type": "git",
  6031. "url": "https://github.com/sebastianbergmann/comparator.git",
  6032. "reference": "34369daee48eafb2651bea869b4b15d75ccc35f9"
  6033. },
  6034. "dist": {
  6035. "type": "zip",
  6036. "url": "https://api.github.com/repos/sebastianbergmann/comparator/zipball/34369daee48eafb2651bea869b4b15d75ccc35f9",
  6037. "reference": "34369daee48eafb2651bea869b4b15d75ccc35f9",
  6038. "shasum": ""
  6039. },
  6040. "require": {
  6041. "php": "^7.0",
  6042. "sebastian/diff": "^2.0 || ^3.0",
  6043. "sebastian/exporter": "^3.1"
  6044. },
  6045. "require-dev": {
  6046. "phpunit/phpunit": "^6.4"
  6047. },
  6048. "type": "library",
  6049. "extra": {
  6050. "branch-alias": {
  6051. "dev-master": "2.1.x-dev"
  6052. }
  6053. },
  6054. "autoload": {
  6055. "classmap": [
  6056. "src/"
  6057. ]
  6058. },
  6059. "notification-url": "https://packagist.org/downloads/",
  6060. "license": [
  6061. "BSD-3-Clause"
  6062. ],
  6063. "authors": [
  6064. {
  6065. "name": "Jeff Welch",
  6066. "email": "whatthejeff@gmail.com"
  6067. },
  6068. {
  6069. "name": "Volker Dusch",
  6070. "email": "github@wallbash.com"
  6071. },
  6072. {
  6073. "name": "Bernhard Schussek",
  6074. "email": "bschussek@2bepublished.at"
  6075. },
  6076. {
  6077. "name": "Sebastian Bergmann",
  6078. "email": "sebastian@phpunit.de"
  6079. }
  6080. ],
  6081. "description": "Provides the functionality to compare PHP values for equality",
  6082. "homepage": "https://github.com/sebastianbergmann/comparator",
  6083. "keywords": [
  6084. "comparator",
  6085. "compare",
  6086. "equality"
  6087. ],
  6088. "time": "2018-02-01T13:46:46+00:00"
  6089. },
  6090. {
  6091. "name": "sebastian/diff",
  6092. "version": "2.0.1",
  6093. "source": {
  6094. "type": "git",
  6095. "url": "https://github.com/sebastianbergmann/diff.git",
  6096. "reference": "347c1d8b49c5c3ee30c7040ea6fc446790e6bddd"
  6097. },
  6098. "dist": {
  6099. "type": "zip",
  6100. "url": "https://api.github.com/repos/sebastianbergmann/diff/zipball/347c1d8b49c5c3ee30c7040ea6fc446790e6bddd",
  6101. "reference": "347c1d8b49c5c3ee30c7040ea6fc446790e6bddd",
  6102. "shasum": ""
  6103. },
  6104. "require": {
  6105. "php": "^7.0"
  6106. },
  6107. "require-dev": {
  6108. "phpunit/phpunit": "^6.2"
  6109. },
  6110. "type": "library",
  6111. "extra": {
  6112. "branch-alias": {
  6113. "dev-master": "2.0-dev"
  6114. }
  6115. },
  6116. "autoload": {
  6117. "classmap": [
  6118. "src/"
  6119. ]
  6120. },
  6121. "notification-url": "https://packagist.org/downloads/",
  6122. "license": [
  6123. "BSD-3-Clause"
  6124. ],
  6125. "authors": [
  6126. {
  6127. "name": "Kore Nordmann",
  6128. "email": "mail@kore-nordmann.de"
  6129. },
  6130. {
  6131. "name": "Sebastian Bergmann",
  6132. "email": "sebastian@phpunit.de"
  6133. }
  6134. ],
  6135. "description": "Diff implementation",
  6136. "homepage": "https://github.com/sebastianbergmann/diff",
  6137. "keywords": [
  6138. "diff"
  6139. ],
  6140. "time": "2017-08-03T08:09:46+00:00"
  6141. },
  6142. {
  6143. "name": "sebastian/environment",
  6144. "version": "3.1.0",
  6145. "source": {
  6146. "type": "git",
  6147. "url": "https://github.com/sebastianbergmann/environment.git",
  6148. "reference": "cd0871b3975fb7fc44d11314fd1ee20925fce4f5"
  6149. },
  6150. "dist": {
  6151. "type": "zip",
  6152. "url": "https://api.github.com/repos/sebastianbergmann/environment/zipball/cd0871b3975fb7fc44d11314fd1ee20925fce4f5",
  6153. "reference": "cd0871b3975fb7fc44d11314fd1ee20925fce4f5",
  6154. "shasum": ""
  6155. },
  6156. "require": {
  6157. "php": "^7.0"
  6158. },
  6159. "require-dev": {
  6160. "phpunit/phpunit": "^6.1"
  6161. },
  6162. "type": "library",
  6163. "extra": {
  6164. "branch-alias": {
  6165. "dev-master": "3.1.x-dev"
  6166. }
  6167. },
  6168. "autoload": {
  6169. "classmap": [
  6170. "src/"
  6171. ]
  6172. },
  6173. "notification-url": "https://packagist.org/downloads/",
  6174. "license": [
  6175. "BSD-3-Clause"
  6176. ],
  6177. "authors": [
  6178. {
  6179. "name": "Sebastian Bergmann",
  6180. "email": "sebastian@phpunit.de"
  6181. }
  6182. ],
  6183. "description": "Provides functionality to handle HHVM/PHP environments",
  6184. "homepage": "http://www.github.com/sebastianbergmann/environment",
  6185. "keywords": [
  6186. "Xdebug",
  6187. "environment",
  6188. "hhvm"
  6189. ],
  6190. "time": "2017-07-01T08:51:00+00:00"
  6191. },
  6192. {
  6193. "name": "sebastian/exporter",
  6194. "version": "3.1.0",
  6195. "source": {
  6196. "type": "git",
  6197. "url": "https://github.com/sebastianbergmann/exporter.git",
  6198. "reference": "234199f4528de6d12aaa58b612e98f7d36adb937"
  6199. },
  6200. "dist": {
  6201. "type": "zip",
  6202. "url": "https://api.github.com/repos/sebastianbergmann/exporter/zipball/234199f4528de6d12aaa58b612e98f7d36adb937",
  6203. "reference": "234199f4528de6d12aaa58b612e98f7d36adb937",
  6204. "shasum": ""
  6205. },
  6206. "require": {
  6207. "php": "^7.0",
  6208. "sebastian/recursion-context": "^3.0"
  6209. },
  6210. "require-dev": {
  6211. "ext-mbstring": "*",
  6212. "phpunit/phpunit": "^6.0"
  6213. },
  6214. "type": "library",
  6215. "extra": {
  6216. "branch-alias": {
  6217. "dev-master": "3.1.x-dev"
  6218. }
  6219. },
  6220. "autoload": {
  6221. "classmap": [
  6222. "src/"
  6223. ]
  6224. },
  6225. "notification-url": "https://packagist.org/downloads/",
  6226. "license": [
  6227. "BSD-3-Clause"
  6228. ],
  6229. "authors": [
  6230. {
  6231. "name": "Jeff Welch",
  6232. "email": "whatthejeff@gmail.com"
  6233. },
  6234. {
  6235. "name": "Volker Dusch",
  6236. "email": "github@wallbash.com"
  6237. },
  6238. {
  6239. "name": "Bernhard Schussek",
  6240. "email": "bschussek@2bepublished.at"
  6241. },
  6242. {
  6243. "name": "Sebastian Bergmann",
  6244. "email": "sebastian@phpunit.de"
  6245. },
  6246. {
  6247. "name": "Adam Harvey",
  6248. "email": "aharvey@php.net"
  6249. }
  6250. ],
  6251. "description": "Provides the functionality to export PHP variables for visualization",
  6252. "homepage": "http://www.github.com/sebastianbergmann/exporter",
  6253. "keywords": [
  6254. "export",
  6255. "exporter"
  6256. ],
  6257. "time": "2017-04-03T13:19:02+00:00"
  6258. },
  6259. {
  6260. "name": "sebastian/global-state",
  6261. "version": "2.0.0",
  6262. "source": {
  6263. "type": "git",
  6264. "url": "https://github.com/sebastianbergmann/global-state.git",
  6265. "reference": "e8ba02eed7bbbb9e59e43dedd3dddeff4a56b0c4"
  6266. },
  6267. "dist": {
  6268. "type": "zip",
  6269. "url": "https://api.github.com/repos/sebastianbergmann/global-state/zipball/e8ba02eed7bbbb9e59e43dedd3dddeff4a56b0c4",
  6270. "reference": "e8ba02eed7bbbb9e59e43dedd3dddeff4a56b0c4",
  6271. "shasum": ""
  6272. },
  6273. "require": {
  6274. "php": "^7.0"
  6275. },
  6276. "require-dev": {
  6277. "phpunit/phpunit": "^6.0"
  6278. },
  6279. "suggest": {
  6280. "ext-uopz": "*"
  6281. },
  6282. "type": "library",
  6283. "extra": {
  6284. "branch-alias": {
  6285. "dev-master": "2.0-dev"
  6286. }
  6287. },
  6288. "autoload": {
  6289. "classmap": [
  6290. "src/"
  6291. ]
  6292. },
  6293. "notification-url": "https://packagist.org/downloads/",
  6294. "license": [
  6295. "BSD-3-Clause"
  6296. ],
  6297. "authors": [
  6298. {
  6299. "name": "Sebastian Bergmann",
  6300. "email": "sebastian@phpunit.de"
  6301. }
  6302. ],
  6303. "description": "Snapshotting of global state",
  6304. "homepage": "http://www.github.com/sebastianbergmann/global-state",
  6305. "keywords": [
  6306. "global state"
  6307. ],
  6308. "time": "2017-04-27T15:39:26+00:00"
  6309. },
  6310. {
  6311. "name": "sebastian/object-enumerator",
  6312. "version": "3.0.3",
  6313. "source": {
  6314. "type": "git",
  6315. "url": "https://github.com/sebastianbergmann/object-enumerator.git",
  6316. "reference": "7cfd9e65d11ffb5af41198476395774d4c8a84c5"
  6317. },
  6318. "dist": {
  6319. "type": "zip",
  6320. "url": "https://api.github.com/repos/sebastianbergmann/object-enumerator/zipball/7cfd9e65d11ffb5af41198476395774d4c8a84c5",
  6321. "reference": "7cfd9e65d11ffb5af41198476395774d4c8a84c5",
  6322. "shasum": ""
  6323. },
  6324. "require": {
  6325. "php": "^7.0",
  6326. "sebastian/object-reflector": "^1.1.1",
  6327. "sebastian/recursion-context": "^3.0"
  6328. },
  6329. "require-dev": {
  6330. "phpunit/phpunit": "^6.0"
  6331. },
  6332. "type": "library",
  6333. "extra": {
  6334. "branch-alias": {
  6335. "dev-master": "3.0.x-dev"
  6336. }
  6337. },
  6338. "autoload": {
  6339. "classmap": [
  6340. "src/"
  6341. ]
  6342. },
  6343. "notification-url": "https://packagist.org/downloads/",
  6344. "license": [
  6345. "BSD-3-Clause"
  6346. ],
  6347. "authors": [
  6348. {
  6349. "name": "Sebastian Bergmann",
  6350. "email": "sebastian@phpunit.de"
  6351. }
  6352. ],
  6353. "description": "Traverses array structures and object graphs to enumerate all referenced objects",
  6354. "homepage": "https://github.com/sebastianbergmann/object-enumerator/",
  6355. "time": "2017-08-03T12:35:26+00:00"
  6356. },
  6357. {
  6358. "name": "sebastian/object-reflector",
  6359. "version": "1.1.1",
  6360. "source": {
  6361. "type": "git",
  6362. "url": "https://github.com/sebastianbergmann/object-reflector.git",
  6363. "reference": "773f97c67f28de00d397be301821b06708fca0be"
  6364. },
  6365. "dist": {
  6366. "type": "zip",
  6367. "url": "https://api.github.com/repos/sebastianbergmann/object-reflector/zipball/773f97c67f28de00d397be301821b06708fca0be",
  6368. "reference": "773f97c67f28de00d397be301821b06708fca0be",
  6369. "shasum": ""
  6370. },
  6371. "require": {
  6372. "php": "^7.0"
  6373. },
  6374. "require-dev": {
  6375. "phpunit/phpunit": "^6.0"
  6376. },
  6377. "type": "library",
  6378. "extra": {
  6379. "branch-alias": {
  6380. "dev-master": "1.1-dev"
  6381. }
  6382. },
  6383. "autoload": {
  6384. "classmap": [
  6385. "src/"
  6386. ]
  6387. },
  6388. "notification-url": "https://packagist.org/downloads/",
  6389. "license": [
  6390. "BSD-3-Clause"
  6391. ],
  6392. "authors": [
  6393. {
  6394. "name": "Sebastian Bergmann",
  6395. "email": "sebastian@phpunit.de"
  6396. }
  6397. ],
  6398. "description": "Allows reflection of object attributes, including inherited and non-public ones",
  6399. "homepage": "https://github.com/sebastianbergmann/object-reflector/",
  6400. "time": "2017-03-29T09:07:27+00:00"
  6401. },
  6402. {
  6403. "name": "sebastian/recursion-context",
  6404. "version": "3.0.0",
  6405. "source": {
  6406. "type": "git",
  6407. "url": "https://github.com/sebastianbergmann/recursion-context.git",
  6408. "reference": "5b0cd723502bac3b006cbf3dbf7a1e3fcefe4fa8"
  6409. },
  6410. "dist": {
  6411. "type": "zip",
  6412. "url": "https://api.github.com/repos/sebastianbergmann/recursion-context/zipball/5b0cd723502bac3b006cbf3dbf7a1e3fcefe4fa8",
  6413. "reference": "5b0cd723502bac3b006cbf3dbf7a1e3fcefe4fa8",
  6414. "shasum": ""
  6415. },
  6416. "require": {
  6417. "php": "^7.0"
  6418. },
  6419. "require-dev": {
  6420. "phpunit/phpunit": "^6.0"
  6421. },
  6422. "type": "library",
  6423. "extra": {
  6424. "branch-alias": {
  6425. "dev-master": "3.0.x-dev"
  6426. }
  6427. },
  6428. "autoload": {
  6429. "classmap": [
  6430. "src/"
  6431. ]
  6432. },
  6433. "notification-url": "https://packagist.org/downloads/",
  6434. "license": [
  6435. "BSD-3-Clause"
  6436. ],
  6437. "authors": [
  6438. {
  6439. "name": "Jeff Welch",
  6440. "email": "whatthejeff@gmail.com"
  6441. },
  6442. {
  6443. "name": "Sebastian Bergmann",
  6444. "email": "sebastian@phpunit.de"
  6445. },
  6446. {
  6447. "name": "Adam Harvey",
  6448. "email": "aharvey@php.net"
  6449. }
  6450. ],
  6451. "description": "Provides functionality to recursively process PHP variables",
  6452. "homepage": "http://www.github.com/sebastianbergmann/recursion-context",
  6453. "time": "2017-03-03T06:23:57+00:00"
  6454. },
  6455. {
  6456. "name": "sebastian/resource-operations",
  6457. "version": "1.0.0",
  6458. "source": {
  6459. "type": "git",
  6460. "url": "https://github.com/sebastianbergmann/resource-operations.git",
  6461. "reference": "ce990bb21759f94aeafd30209e8cfcdfa8bc3f52"
  6462. },
  6463. "dist": {
  6464. "type": "zip",
  6465. "url": "https://api.github.com/repos/sebastianbergmann/resource-operations/zipball/ce990bb21759f94aeafd30209e8cfcdfa8bc3f52",
  6466. "reference": "ce990bb21759f94aeafd30209e8cfcdfa8bc3f52",
  6467. "shasum": ""
  6468. },
  6469. "require": {
  6470. "php": ">=5.6.0"
  6471. },
  6472. "type": "library",
  6473. "extra": {
  6474. "branch-alias": {
  6475. "dev-master": "1.0.x-dev"
  6476. }
  6477. },
  6478. "autoload": {
  6479. "classmap": [
  6480. "src/"
  6481. ]
  6482. },
  6483. "notification-url": "https://packagist.org/downloads/",
  6484. "license": [
  6485. "BSD-3-Clause"
  6486. ],
  6487. "authors": [
  6488. {
  6489. "name": "Sebastian Bergmann",
  6490. "email": "sebastian@phpunit.de"
  6491. }
  6492. ],
  6493. "description": "Provides a list of PHP built-in functions that operate on resources",
  6494. "homepage": "https://www.github.com/sebastianbergmann/resource-operations",
  6495. "time": "2015-07-28T20:34:47+00:00"
  6496. },
  6497. {
  6498. "name": "squizlabs/php_codesniffer",
  6499. "version": "2.9.1",
  6500. "source": {
  6501. "type": "git",
  6502. "url": "https://github.com/squizlabs/PHP_CodeSniffer.git",
  6503. "reference": "dcbed1074f8244661eecddfc2a675430d8d33f62"
  6504. },
  6505. "dist": {
  6506. "type": "zip",
  6507. "url": "https://api.github.com/repos/squizlabs/PHP_CodeSniffer/zipball/dcbed1074f8244661eecddfc2a675430d8d33f62",
  6508. "reference": "dcbed1074f8244661eecddfc2a675430d8d33f62",
  6509. "shasum": ""
  6510. },
  6511. "require": {
  6512. "ext-simplexml": "*",
  6513. "ext-tokenizer": "*",
  6514. "ext-xmlwriter": "*",
  6515. "php": ">=5.1.2"
  6516. },
  6517. "require-dev": {
  6518. "phpunit/phpunit": "~4.0"
  6519. },
  6520. "bin": [
  6521. "scripts/phpcs",
  6522. "scripts/phpcbf"
  6523. ],
  6524. "type": "library",
  6525. "extra": {
  6526. "branch-alias": {
  6527. "dev-master": "2.x-dev"
  6528. }
  6529. },
  6530. "autoload": {
  6531. "classmap": [
  6532. "CodeSniffer.php",
  6533. "CodeSniffer/CLI.php",
  6534. "CodeSniffer/Exception.php",
  6535. "CodeSniffer/File.php",
  6536. "CodeSniffer/Fixer.php",
  6537. "CodeSniffer/Report.php",
  6538. "CodeSniffer/Reporting.php",
  6539. "CodeSniffer/Sniff.php",
  6540. "CodeSniffer/Tokens.php",
  6541. "CodeSniffer/Reports/",
  6542. "CodeSniffer/Tokenizers/",
  6543. "CodeSniffer/DocGenerators/",
  6544. "CodeSniffer/Standards/AbstractPatternSniff.php",
  6545. "CodeSniffer/Standards/AbstractScopeSniff.php",
  6546. "CodeSniffer/Standards/AbstractVariableSniff.php",
  6547. "CodeSniffer/Standards/IncorrectPatternException.php",
  6548. "CodeSniffer/Standards/Generic/Sniffs/",
  6549. "CodeSniffer/Standards/MySource/Sniffs/",
  6550. "CodeSniffer/Standards/PEAR/Sniffs/",
  6551. "CodeSniffer/Standards/PSR1/Sniffs/",
  6552. "CodeSniffer/Standards/PSR2/Sniffs/",
  6553. "CodeSniffer/Standards/Squiz/Sniffs/",
  6554. "CodeSniffer/Standards/Zend/Sniffs/"
  6555. ]
  6556. },
  6557. "notification-url": "https://packagist.org/downloads/",
  6558. "license": [
  6559. "BSD-3-Clause"
  6560. ],
  6561. "authors": [
  6562. {
  6563. "name": "Greg Sherwood",
  6564. "role": "lead"
  6565. }
  6566. ],
  6567. "description": "PHP_CodeSniffer tokenizes PHP, JavaScript and CSS files and detects violations of a defined set of coding standards.",
  6568. "homepage": "http://www.squizlabs.com/php-codesniffer",
  6569. "keywords": [
  6570. "phpcs",
  6571. "standards"
  6572. ],
  6573. "time": "2017-05-22T02:43:20+00:00"
  6574. },
  6575. {
  6576. "name": "symfony/browser-kit",
  6577. "version": "v3.4.6",
  6578. "source": {
  6579. "type": "git",
  6580. "url": "https://github.com/symfony/browser-kit.git",
  6581. "reference": "490f27762705c8489bd042fe3e9377a191dba9b4"
  6582. },
  6583. "dist": {
  6584. "type": "zip",
  6585. "url": "https://api.github.com/repos/symfony/browser-kit/zipball/490f27762705c8489bd042fe3e9377a191dba9b4",
  6586. "reference": "490f27762705c8489bd042fe3e9377a191dba9b4",
  6587. "shasum": ""
  6588. },
  6589. "require": {
  6590. "php": "^5.5.9|>=7.0.8",
  6591. "symfony/dom-crawler": "~2.8|~3.0|~4.0"
  6592. },
  6593. "require-dev": {
  6594. "symfony/css-selector": "~2.8|~3.0|~4.0",
  6595. "symfony/process": "~2.8|~3.0|~4.0"
  6596. },
  6597. "suggest": {
  6598. "symfony/process": ""
  6599. },
  6600. "type": "library",
  6601. "extra": {
  6602. "branch-alias": {
  6603. "dev-master": "3.4-dev"
  6604. }
  6605. },
  6606. "autoload": {
  6607. "psr-4": {
  6608. "Symfony\\Component\\BrowserKit\\": ""
  6609. },
  6610. "exclude-from-classmap": [
  6611. "/Tests/"
  6612. ]
  6613. },
  6614. "notification-url": "https://packagist.org/downloads/",
  6615. "license": [
  6616. "MIT"
  6617. ],
  6618. "authors": [
  6619. {
  6620. "name": "Fabien Potencier",
  6621. "email": "fabien@symfony.com"
  6622. },
  6623. {
  6624. "name": "Symfony Community",
  6625. "homepage": "https://symfony.com/contributors"
  6626. }
  6627. ],
  6628. "description": "Symfony BrowserKit Component",
  6629. "homepage": "https://symfony.com",
  6630. "time": "2018-01-03T07:37:34+00:00"
  6631. },
  6632. {
  6633. "name": "symfony/phpunit-bridge",
  6634. "version": "v3.4.6",
  6635. "source": {
  6636. "type": "git",
  6637. "url": "https://github.com/symfony/phpunit-bridge.git",
  6638. "reference": "32b06d2b0babf3216e55acfce42249321a304f03"
  6639. },
  6640. "dist": {
  6641. "type": "zip",
  6642. "url": "https://api.github.com/repos/symfony/phpunit-bridge/zipball/32b06d2b0babf3216e55acfce42249321a304f03",
  6643. "reference": "32b06d2b0babf3216e55acfce42249321a304f03",
  6644. "shasum": ""
  6645. },
  6646. "require": {
  6647. "php": ">=5.3.3"
  6648. },
  6649. "conflict": {
  6650. "phpunit/phpunit": "<4.8.35|<5.4.3,>=5.0"
  6651. },
  6652. "suggest": {
  6653. "ext-zip": "Zip support is required when using bin/simple-phpunit",
  6654. "symfony/debug": "For tracking deprecated interfaces usages at runtime with DebugClassLoader"
  6655. },
  6656. "bin": [
  6657. "bin/simple-phpunit"
  6658. ],
  6659. "type": "symfony-bridge",
  6660. "extra": {
  6661. "branch-alias": {
  6662. "dev-master": "3.4-dev"
  6663. },
  6664. "thanks": {
  6665. "name": "phpunit/phpunit",
  6666. "url": "https://github.com/sebastianbergmann/phpunit"
  6667. }
  6668. },
  6669. "autoload": {
  6670. "files": [
  6671. "bootstrap.php"
  6672. ],
  6673. "psr-4": {
  6674. "Symfony\\Bridge\\PhpUnit\\": ""
  6675. },
  6676. "exclude-from-classmap": [
  6677. "/Tests/"
  6678. ]
  6679. },
  6680. "notification-url": "https://packagist.org/downloads/",
  6681. "license": [
  6682. "MIT"
  6683. ],
  6684. "authors": [
  6685. {
  6686. "name": "Nicolas Grekas",
  6687. "email": "p@tchwork.com"
  6688. },
  6689. {
  6690. "name": "Symfony Community",
  6691. "homepage": "https://symfony.com/contributors"
  6692. }
  6693. ],
  6694. "description": "Symfony PHPUnit Bridge",
  6695. "homepage": "https://symfony.com",
  6696. "time": "2018-02-14T23:24:28+00:00"
  6697. },
  6698. {
  6699. "name": "theseer/tokenizer",
  6700. "version": "1.1.0",
  6701. "source": {
  6702. "type": "git",
  6703. "url": "https://github.com/theseer/tokenizer.git",
  6704. "reference": "cb2f008f3f05af2893a87208fe6a6c4985483f8b"
  6705. },
  6706. "dist": {
  6707. "type": "zip",
  6708. "url": "https://api.github.com/repos/theseer/tokenizer/zipball/cb2f008f3f05af2893a87208fe6a6c4985483f8b",
  6709. "reference": "cb2f008f3f05af2893a87208fe6a6c4985483f8b",
  6710. "shasum": ""
  6711. },
  6712. "require": {
  6713. "ext-dom": "*",
  6714. "ext-tokenizer": "*",
  6715. "ext-xmlwriter": "*",
  6716. "php": "^7.0"
  6717. },
  6718. "type": "library",
  6719. "autoload": {
  6720. "classmap": [
  6721. "src/"
  6722. ]
  6723. },
  6724. "notification-url": "https://packagist.org/downloads/",
  6725. "license": [
  6726. "BSD-3-Clause"
  6727. ],
  6728. "authors": [
  6729. {
  6730. "name": "Arne Blankerts",
  6731. "email": "arne@blankerts.de",
  6732. "role": "Developer"
  6733. }
  6734. ],
  6735. "description": "A small library for converting tokenized PHP source code into XML and potentially other formats",
  6736. "time": "2017-04-07T12:08:54+00:00"
  6737. }
  6738. ],
  6739. "aliases": [],
  6740. "minimum-stability": "dev",
  6741. "stability-flags": {
  6742. "behat/mink": 20,
  6743. "behat/mink-selenium2-driver": 20
  6744. },
  6745. "prefer-stable": true,
  6746. "prefer-lowest": false,
  6747. "platform": {
  6748. "ext-date": "*",
  6749. "ext-dom": "*",
  6750. "ext-filter": "*",
  6751. "ext-gd": "*",
  6752. "ext-hash": "*",
  6753. "ext-json": "*",
  6754. "ext-pcre": "*",
  6755. "ext-pdo": "*",
  6756. "ext-session": "*",
  6757. "ext-simplexml": "*",
  6758. "ext-spl": "*",
  6759. "ext-tokenizer": "*",
  6760. "ext-xml": "*",
  6761. "php": "^5.5.9|>=7.0.8"
  6762. },
  6763. "platform-dev": []
  6764. }