composer.lock 265 KB

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