composer.lock 237 KB

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