composer.lock 249 KB

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