composer.lock 258 KB

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