installed.json 95 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081
  1. [
  2. {
  3. "name": "yiisoft/yii2-composer",
  4. "version": "2.0.5",
  5. "version_normalized": "2.0.5.0",
  6. "source": {
  7. "type": "git",
  8. "url": "https://github.com/yiisoft/yii2-composer.git",
  9. "reference": "3f4923c2bde6caf3f5b88cc22fdd5770f52f8df2"
  10. },
  11. "dist": {
  12. "type": "zip",
  13. "url": "https://api.github.com/repos/yiisoft/yii2-composer/zipball/3f4923c2bde6caf3f5b88cc22fdd5770f52f8df2",
  14. "reference": "3f4923c2bde6caf3f5b88cc22fdd5770f52f8df2",
  15. "shasum": ""
  16. },
  17. "require": {
  18. "composer-plugin-api": "^1.0"
  19. },
  20. "require-dev": {
  21. "composer/composer": "^1.0"
  22. },
  23. "time": "2016-12-20T13:26:02+00:00",
  24. "type": "composer-plugin",
  25. "extra": {
  26. "class": "yii\\composer\\Plugin",
  27. "branch-alias": {
  28. "dev-master": "2.0.x-dev"
  29. }
  30. },
  31. "installation-source": "dist",
  32. "autoload": {
  33. "psr-4": {
  34. "yii\\composer\\": ""
  35. }
  36. },
  37. "notification-url": "https://packagist.org/downloads/",
  38. "license": [
  39. "BSD-3-Clause"
  40. ],
  41. "authors": [
  42. {
  43. "name": "Qiang Xue",
  44. "email": "qiang.xue@gmail.com"
  45. }
  46. ],
  47. "description": "The composer plugin for Yii extension installer",
  48. "keywords": [
  49. "composer",
  50. "extension installer",
  51. "yii2"
  52. ]
  53. },
  54. {
  55. "name": "swiftmailer/swiftmailer",
  56. "version": "v5.4.5",
  57. "version_normalized": "5.4.5.0",
  58. "source": {
  59. "type": "git",
  60. "url": "https://github.com/swiftmailer/swiftmailer.git",
  61. "reference": "cd142238a339459b10da3d8234220963f392540c"
  62. },
  63. "dist": {
  64. "type": "zip",
  65. "url": "https://api.github.com/repos/swiftmailer/swiftmailer/zipball/cd142238a339459b10da3d8234220963f392540c",
  66. "reference": "cd142238a339459b10da3d8234220963f392540c",
  67. "shasum": ""
  68. },
  69. "require": {
  70. "php": ">=5.3.3"
  71. },
  72. "require-dev": {
  73. "mockery/mockery": "~0.9.1",
  74. "symfony/phpunit-bridge": "~3.2"
  75. },
  76. "time": "2016-12-29T10:02:40+00:00",
  77. "type": "library",
  78. "extra": {
  79. "branch-alias": {
  80. "dev-master": "5.4-dev"
  81. }
  82. },
  83. "installation-source": "dist",
  84. "autoload": {
  85. "files": [
  86. "lib/swift_required.php"
  87. ]
  88. },
  89. "notification-url": "https://packagist.org/downloads/",
  90. "license": [
  91. "MIT"
  92. ],
  93. "authors": [
  94. {
  95. "name": "Chris Corbyn"
  96. },
  97. {
  98. "name": "Fabien Potencier",
  99. "email": "fabien@symfony.com"
  100. }
  101. ],
  102. "description": "Swiftmailer, free feature-rich PHP mailer",
  103. "homepage": "http://swiftmailer.org",
  104. "keywords": [
  105. "email",
  106. "mail",
  107. "mailer"
  108. ]
  109. },
  110. {
  111. "name": "bower-asset/jquery",
  112. "version": "2.2.4",
  113. "version_normalized": "2.2.4.0",
  114. "source": {
  115. "type": "git",
  116. "url": "https://github.com/jquery/jquery-dist.git",
  117. "reference": "c0185ab7c75aab88762c5aae780b9d83b80eda72"
  118. },
  119. "dist": {
  120. "type": "zip",
  121. "url": "https://api.github.com/repos/jquery/jquery-dist/zipball/c0185ab7c75aab88762c5aae780b9d83b80eda72",
  122. "reference": "c0185ab7c75aab88762c5aae780b9d83b80eda72",
  123. "shasum": ""
  124. },
  125. "type": "bower-asset-library",
  126. "extra": {
  127. "bower-asset-main": "dist/jquery.js",
  128. "bower-asset-ignore": [
  129. "package.json"
  130. ]
  131. },
  132. "installation-source": "dist",
  133. "license": [
  134. "MIT"
  135. ],
  136. "keywords": [
  137. "browser",
  138. "javascript",
  139. "jquery",
  140. "library"
  141. ]
  142. },
  143. {
  144. "name": "bower-asset/yii2-pjax",
  145. "version": "v2.0.6",
  146. "version_normalized": "2.0.6.0",
  147. "source": {
  148. "type": "git",
  149. "url": "https://github.com/yiisoft/jquery-pjax.git",
  150. "reference": "60728da6ade5879e807a49ce59ef9a72039b8978"
  151. },
  152. "dist": {
  153. "type": "zip",
  154. "url": "https://api.github.com/repos/yiisoft/jquery-pjax/zipball/60728da6ade5879e807a49ce59ef9a72039b8978",
  155. "reference": "60728da6ade5879e807a49ce59ef9a72039b8978",
  156. "shasum": ""
  157. },
  158. "require": {
  159. "bower-asset/jquery": ">=1.8"
  160. },
  161. "type": "bower-asset-library",
  162. "extra": {
  163. "bower-asset-main": "./jquery.pjax.js",
  164. "bower-asset-ignore": [
  165. ".travis.yml",
  166. "Gemfile",
  167. "Gemfile.lock",
  168. "CONTRIBUTING.md",
  169. "vendor/",
  170. "script/",
  171. "test/"
  172. ]
  173. },
  174. "installation-source": "dist",
  175. "license": [
  176. "MIT"
  177. ]
  178. },
  179. {
  180. "name": "bower-asset/punycode",
  181. "version": "v1.3.2",
  182. "version_normalized": "1.3.2.0",
  183. "source": {
  184. "type": "git",
  185. "url": "https://github.com/bestiejs/punycode.js.git",
  186. "reference": "38c8d3131a82567bfef18da09f7f4db68c84f8a3"
  187. },
  188. "dist": {
  189. "type": "zip",
  190. "url": "https://api.github.com/repos/bestiejs/punycode.js/zipball/38c8d3131a82567bfef18da09f7f4db68c84f8a3",
  191. "reference": "38c8d3131a82567bfef18da09f7f4db68c84f8a3",
  192. "shasum": ""
  193. },
  194. "type": "bower-asset-library",
  195. "extra": {
  196. "bower-asset-main": "punycode.js",
  197. "bower-asset-ignore": [
  198. "coverage",
  199. "tests",
  200. ".*",
  201. "component.json",
  202. "Gruntfile.js",
  203. "node_modules",
  204. "package.json"
  205. ]
  206. },
  207. "installation-source": "dist"
  208. },
  209. {
  210. "name": "cebe/markdown",
  211. "version": "1.1.1",
  212. "version_normalized": "1.1.1.0",
  213. "source": {
  214. "type": "git",
  215. "url": "https://github.com/cebe/markdown.git",
  216. "reference": "c30eb5e01fe021cc5bba2f9ee0eeef96d4931166"
  217. },
  218. "dist": {
  219. "type": "zip",
  220. "url": "https://api.github.com/repos/cebe/markdown/zipball/c30eb5e01fe021cc5bba2f9ee0eeef96d4931166",
  221. "reference": "c30eb5e01fe021cc5bba2f9ee0eeef96d4931166",
  222. "shasum": ""
  223. },
  224. "require": {
  225. "lib-pcre": "*",
  226. "php": ">=5.4.0"
  227. },
  228. "require-dev": {
  229. "cebe/indent": "*",
  230. "facebook/xhprof": "*@dev",
  231. "phpunit/phpunit": "4.1.*"
  232. },
  233. "time": "2016-09-14T20:40:20+00:00",
  234. "bin": [
  235. "bin/markdown"
  236. ],
  237. "type": "library",
  238. "extra": {
  239. "branch-alias": {
  240. "dev-master": "1.1.x-dev"
  241. }
  242. },
  243. "installation-source": "dist",
  244. "autoload": {
  245. "psr-4": {
  246. "cebe\\markdown\\": ""
  247. }
  248. },
  249. "notification-url": "https://packagist.org/downloads/",
  250. "license": [
  251. "MIT"
  252. ],
  253. "authors": [
  254. {
  255. "name": "Carsten Brandt",
  256. "email": "mail@cebe.cc",
  257. "homepage": "http://cebe.cc/",
  258. "role": "Creator"
  259. }
  260. ],
  261. "description": "A super fast, highly extensible markdown parser for PHP",
  262. "homepage": "https://github.com/cebe/markdown#readme",
  263. "keywords": [
  264. "extensible",
  265. "fast",
  266. "gfm",
  267. "markdown",
  268. "markdown-extra"
  269. ]
  270. },
  271. {
  272. "name": "ezyang/htmlpurifier",
  273. "version": "v4.8.0",
  274. "version_normalized": "4.8.0.0",
  275. "source": {
  276. "type": "git",
  277. "url": "https://github.com/ezyang/htmlpurifier.git",
  278. "reference": "d0c392f77d2f2a3dcf7fcb79e2a1e2b8804e75b2"
  279. },
  280. "dist": {
  281. "type": "zip",
  282. "url": "https://api.github.com/repos/ezyang/htmlpurifier/zipball/d0c392f77d2f2a3dcf7fcb79e2a1e2b8804e75b2",
  283. "reference": "d0c392f77d2f2a3dcf7fcb79e2a1e2b8804e75b2",
  284. "shasum": ""
  285. },
  286. "require": {
  287. "php": ">=5.2"
  288. },
  289. "time": "2016-07-16T12:58:58+00:00",
  290. "type": "library",
  291. "installation-source": "dist",
  292. "autoload": {
  293. "psr-0": {
  294. "HTMLPurifier": "library/"
  295. },
  296. "files": [
  297. "library/HTMLPurifier.composer.php"
  298. ]
  299. },
  300. "notification-url": "https://packagist.org/downloads/",
  301. "license": [
  302. "LGPL"
  303. ],
  304. "authors": [
  305. {
  306. "name": "Edward Z. Yang",
  307. "email": "admin@htmlpurifier.org",
  308. "homepage": "http://ezyang.com"
  309. }
  310. ],
  311. "description": "Standards compliant HTML filter written in PHP",
  312. "homepage": "http://htmlpurifier.org/",
  313. "keywords": [
  314. "html"
  315. ]
  316. },
  317. {
  318. "name": "bower-asset/jquery.inputmask",
  319. "version": "3.3.4",
  320. "version_normalized": "3.3.4.0",
  321. "source": {
  322. "type": "git",
  323. "url": "https://github.com/RobinHerbots/Inputmask.git",
  324. "reference": "8a882bc471ba4077c4f8ecbe3d9d61c7558f3ef2"
  325. },
  326. "dist": {
  327. "type": "zip",
  328. "url": "https://api.github.com/repos/RobinHerbots/Inputmask/zipball/8a882bc471ba4077c4f8ecbe3d9d61c7558f3ef2",
  329. "reference": "8a882bc471ba4077c4f8ecbe3d9d61c7558f3ef2",
  330. "shasum": ""
  331. },
  332. "require": {
  333. "bower-asset/jquery": ">=1.7"
  334. },
  335. "type": "bower-asset-library",
  336. "extra": {
  337. "bower-asset-main": [
  338. "./dist/inputmask/inputmask.dependencyLib",
  339. "./dist/inputmask/inputmask",
  340. "./dist/inputmask/inputmask.extensions",
  341. "./dist/inputmask/inputmask.date.extensions",
  342. "./dist/inputmask/inputmask.numeric.extensions",
  343. "./dist/inputmask/inputmask.phone.extensions",
  344. "./dist/inputmask/inputmask.regex.extensions",
  345. "./dist/inputmask/jquery.inputmask"
  346. ],
  347. "bower-asset-ignore": [
  348. "**/*",
  349. "!dist/*",
  350. "!dist/inputmask/*",
  351. "!dist/min/*",
  352. "!dist/min/inputmask/*",
  353. "!extra/bindings/*",
  354. "!extra/dependencyLibs/*",
  355. "!extra/phone-codes/*"
  356. ]
  357. },
  358. "installation-source": "dist",
  359. "license": [
  360. "http://opensource.org/licenses/mit-license.php"
  361. ],
  362. "description": "jquery.inputmask is a jquery plugin which create an input mask.",
  363. "keywords": [
  364. "form",
  365. "input",
  366. "inputmask",
  367. "jquery",
  368. "mask",
  369. "plugins"
  370. ]
  371. },
  372. {
  373. "name": "yiisoft/yii2",
  374. "version": "2.0.11",
  375. "version_normalized": "2.0.11.0",
  376. "source": {
  377. "type": "git",
  378. "url": "https://github.com/yiisoft/yii2-framework.git",
  379. "reference": "4144506d84b5c895e026be4d79ebbef7067ebcd3"
  380. },
  381. "dist": {
  382. "type": "zip",
  383. "url": "https://api.github.com/repos/yiisoft/yii2-framework/zipball/4144506d84b5c895e026be4d79ebbef7067ebcd3",
  384. "reference": "4144506d84b5c895e026be4d79ebbef7067ebcd3",
  385. "shasum": ""
  386. },
  387. "require": {
  388. "bower-asset/jquery": "2.2.*@stable | 2.1.*@stable | 1.11.*@stable | 1.12.*@stable",
  389. "bower-asset/jquery.inputmask": "~3.2.2 | ~3.3.3",
  390. "bower-asset/punycode": "1.3.*",
  391. "bower-asset/yii2-pjax": "~2.0.1",
  392. "cebe/markdown": "~1.0.0 | ~1.1.0",
  393. "ext-ctype": "*",
  394. "ext-mbstring": "*",
  395. "ezyang/htmlpurifier": "~4.6",
  396. "lib-pcre": "*",
  397. "php": ">=5.4.0",
  398. "yiisoft/yii2-composer": "~2.0.4"
  399. },
  400. "time": "2017-02-01T16:46:29+00:00",
  401. "bin": [
  402. "yii"
  403. ],
  404. "type": "library",
  405. "extra": {
  406. "branch-alias": {
  407. "dev-master": "2.0.x-dev"
  408. }
  409. },
  410. "installation-source": "dist",
  411. "autoload": {
  412. "psr-4": {
  413. "yii\\": ""
  414. }
  415. },
  416. "notification-url": "https://packagist.org/downloads/",
  417. "license": [
  418. "BSD-3-Clause"
  419. ],
  420. "authors": [
  421. {
  422. "name": "Qiang Xue",
  423. "email": "qiang.xue@gmail.com",
  424. "homepage": "http://www.yiiframework.com/",
  425. "role": "Founder and project lead"
  426. },
  427. {
  428. "name": "Alexander Makarov",
  429. "email": "sam@rmcreative.ru",
  430. "homepage": "http://rmcreative.ru/",
  431. "role": "Core framework development"
  432. },
  433. {
  434. "name": "Maurizio Domba",
  435. "homepage": "http://mdomba.info/",
  436. "role": "Core framework development"
  437. },
  438. {
  439. "name": "Carsten Brandt",
  440. "email": "mail@cebe.cc",
  441. "homepage": "http://cebe.cc/",
  442. "role": "Core framework development"
  443. },
  444. {
  445. "name": "Timur Ruziev",
  446. "email": "resurtm@gmail.com",
  447. "homepage": "http://resurtm.com/",
  448. "role": "Core framework development"
  449. },
  450. {
  451. "name": "Paul Klimov",
  452. "email": "klimov.paul@gmail.com",
  453. "role": "Core framework development"
  454. },
  455. {
  456. "name": "Dmitry Naumenko",
  457. "email": "d.naumenko.a@gmail.com",
  458. "role": "Core framework development"
  459. },
  460. {
  461. "name": "Boudewijn Vahrmeijer",
  462. "email": "info@dynasource.eu",
  463. "homepage": "http://dynasource.eu",
  464. "role": "Core framework development"
  465. }
  466. ],
  467. "description": "Yii PHP Framework Version 2",
  468. "homepage": "http://www.yiiframework.com/",
  469. "keywords": [
  470. "framework",
  471. "yii2"
  472. ]
  473. },
  474. {
  475. "name": "yiisoft/yii2-swiftmailer",
  476. "version": "2.0.6",
  477. "version_normalized": "2.0.6.0",
  478. "source": {
  479. "type": "git",
  480. "url": "https://github.com/yiisoft/yii2-swiftmailer.git",
  481. "reference": "26b900767f1031ff3a4668dfa36c10595875f0a5"
  482. },
  483. "dist": {
  484. "type": "zip",
  485. "url": "https://api.github.com/repos/yiisoft/yii2-swiftmailer/zipball/26b900767f1031ff3a4668dfa36c10595875f0a5",
  486. "reference": "26b900767f1031ff3a4668dfa36c10595875f0a5",
  487. "shasum": ""
  488. },
  489. "require": {
  490. "swiftmailer/swiftmailer": "~5.0",
  491. "yiisoft/yii2": "~2.0.4"
  492. },
  493. "time": "2016-09-09T11:48:11+00:00",
  494. "type": "yii2-extension",
  495. "extra": {
  496. "branch-alias": {
  497. "dev-master": "2.0.x-dev"
  498. }
  499. },
  500. "installation-source": "dist",
  501. "autoload": {
  502. "psr-4": {
  503. "yii\\swiftmailer\\": ""
  504. }
  505. },
  506. "notification-url": "https://packagist.org/downloads/",
  507. "license": [
  508. "BSD-3-Clause"
  509. ],
  510. "authors": [
  511. {
  512. "name": "Paul Klimov",
  513. "email": "klimov.paul@gmail.com"
  514. }
  515. ],
  516. "description": "The SwiftMailer integration for the Yii framework",
  517. "keywords": [
  518. "email",
  519. "mail",
  520. "mailer",
  521. "swift",
  522. "swiftmailer",
  523. "yii2"
  524. ]
  525. },
  526. {
  527. "name": "bower-asset/bootstrap",
  528. "version": "v3.3.7",
  529. "version_normalized": "3.3.7.0",
  530. "source": {
  531. "type": "git",
  532. "url": "https://github.com/twbs/bootstrap.git",
  533. "reference": "0b9c4a4007c44201dce9a6cc1a38407005c26c86"
  534. },
  535. "dist": {
  536. "type": "zip",
  537. "url": "https://api.github.com/repos/twbs/bootstrap/zipball/0b9c4a4007c44201dce9a6cc1a38407005c26c86",
  538. "reference": "0b9c4a4007c44201dce9a6cc1a38407005c26c86",
  539. "shasum": ""
  540. },
  541. "require": {
  542. "bower-asset/jquery": ">=1.9.1,<4.0"
  543. },
  544. "type": "bower-asset-library",
  545. "extra": {
  546. "bower-asset-main": [
  547. "less/bootstrap.less",
  548. "dist/js/bootstrap.js"
  549. ],
  550. "bower-asset-ignore": [
  551. "/.*",
  552. "_config.yml",
  553. "CNAME",
  554. "composer.json",
  555. "CONTRIBUTING.md",
  556. "docs",
  557. "js/tests",
  558. "test-infra"
  559. ]
  560. },
  561. "installation-source": "dist",
  562. "license": [
  563. "MIT"
  564. ],
  565. "description": "The most popular front-end framework for developing responsive, mobile first projects on the web.",
  566. "keywords": [
  567. "css",
  568. "framework",
  569. "front-end",
  570. "js",
  571. "less",
  572. "mobile-first",
  573. "responsive",
  574. "web"
  575. ]
  576. },
  577. {
  578. "name": "yiisoft/yii2-bootstrap",
  579. "version": "2.0.6",
  580. "version_normalized": "2.0.6.0",
  581. "source": {
  582. "type": "git",
  583. "url": "https://github.com/yiisoft/yii2-bootstrap.git",
  584. "reference": "3fd2b8c950cce79d60e9702d6bcb24eb3c80f6c5"
  585. },
  586. "dist": {
  587. "type": "zip",
  588. "url": "https://api.github.com/repos/yiisoft/yii2-bootstrap/zipball/3fd2b8c950cce79d60e9702d6bcb24eb3c80f6c5",
  589. "reference": "3fd2b8c950cce79d60e9702d6bcb24eb3c80f6c5",
  590. "shasum": ""
  591. },
  592. "require": {
  593. "bower-asset/bootstrap": "3.3.* | 3.2.* | 3.1.*",
  594. "yiisoft/yii2": ">=2.0.6"
  595. },
  596. "time": "2016-03-17T03:29:28+00:00",
  597. "type": "yii2-extension",
  598. "extra": {
  599. "branch-alias": {
  600. "dev-master": "2.0.x-dev"
  601. },
  602. "asset-installer-paths": {
  603. "npm-asset-library": "vendor/npm",
  604. "bower-asset-library": "vendor/bower"
  605. }
  606. },
  607. "installation-source": "dist",
  608. "autoload": {
  609. "psr-4": {
  610. "yii\\bootstrap\\": ""
  611. }
  612. },
  613. "notification-url": "https://packagist.org/downloads/",
  614. "license": [
  615. "BSD-3-Clause"
  616. ],
  617. "authors": [
  618. {
  619. "name": "Qiang Xue",
  620. "email": "qiang.xue@gmail.com"
  621. }
  622. ],
  623. "description": "The Twitter Bootstrap extension for the Yii framework",
  624. "keywords": [
  625. "bootstrap",
  626. "yii2"
  627. ]
  628. },
  629. {
  630. "name": "yiisoft/yii2-debug",
  631. "version": "2.0.7",
  632. "version_normalized": "2.0.7.0",
  633. "source": {
  634. "type": "git",
  635. "url": "https://github.com/yiisoft/yii2-debug.git",
  636. "reference": "a74a2433ad1dfda30a253a92f6db52c131807432"
  637. },
  638. "dist": {
  639. "type": "zip",
  640. "url": "https://api.github.com/repos/yiisoft/yii2-debug/zipball/a74a2433ad1dfda30a253a92f6db52c131807432",
  641. "reference": "a74a2433ad1dfda30a253a92f6db52c131807432",
  642. "shasum": ""
  643. },
  644. "require": {
  645. "yiisoft/yii2": "~2.0.4",
  646. "yiisoft/yii2-bootstrap": "~2.0.0"
  647. },
  648. "time": "2016-11-24T09:42:29+00:00",
  649. "type": "yii2-extension",
  650. "extra": {
  651. "branch-alias": {
  652. "dev-master": "2.0.x-dev"
  653. }
  654. },
  655. "installation-source": "dist",
  656. "autoload": {
  657. "psr-4": {
  658. "yii\\debug\\": ""
  659. }
  660. },
  661. "notification-url": "https://packagist.org/downloads/",
  662. "license": [
  663. "BSD-3-Clause"
  664. ],
  665. "authors": [
  666. {
  667. "name": "Qiang Xue",
  668. "email": "qiang.xue@gmail.com"
  669. }
  670. ],
  671. "description": "The debugger extension for the Yii framework",
  672. "keywords": [
  673. "debug",
  674. "debugger",
  675. "yii2"
  676. ]
  677. },
  678. {
  679. "name": "bower-asset/typeahead.js",
  680. "version": "v0.11.1",
  681. "version_normalized": "0.11.1.0",
  682. "source": {
  683. "type": "git",
  684. "url": "https://github.com/twitter/typeahead.js.git",
  685. "reference": "588440f66559714280628a4f9799f0c4eb880a4a"
  686. },
  687. "dist": {
  688. "type": "zip",
  689. "url": "https://api.github.com/repos/twitter/typeahead.js/zipball/588440f66559714280628a4f9799f0c4eb880a4a",
  690. "reference": "588440f66559714280628a4f9799f0c4eb880a4a",
  691. "shasum": ""
  692. },
  693. "require": {
  694. "bower-asset/jquery": ">=1.7"
  695. },
  696. "require-dev": {
  697. "bower-asset/jasmine-ajax": "~1.3.1",
  698. "bower-asset/jasmine-jquery": "~1.5.2",
  699. "bower-asset/jquery": "~1.7"
  700. },
  701. "type": "bower-asset-library",
  702. "extra": {
  703. "bower-asset-main": "dist/typeahead.bundle.js"
  704. },
  705. "installation-source": "dist"
  706. },
  707. {
  708. "name": "phpspec/php-diff",
  709. "version": "v1.1.0",
  710. "version_normalized": "1.1.0.0",
  711. "source": {
  712. "type": "git",
  713. "url": "https://github.com/phpspec/php-diff.git",
  714. "reference": "0464787bfa7cd13576c5a1e318709768798bec6a"
  715. },
  716. "dist": {
  717. "type": "zip",
  718. "url": "https://api.github.com/repos/phpspec/php-diff/zipball/0464787bfa7cd13576c5a1e318709768798bec6a",
  719. "reference": "0464787bfa7cd13576c5a1e318709768798bec6a",
  720. "shasum": ""
  721. },
  722. "time": "2016-04-07T12:29:16+00:00",
  723. "type": "library",
  724. "extra": {
  725. "branch-alias": {
  726. "dev-master": "1.0.x-dev"
  727. }
  728. },
  729. "installation-source": "dist",
  730. "autoload": {
  731. "psr-0": {
  732. "Diff": "lib/"
  733. }
  734. },
  735. "notification-url": "https://packagist.org/downloads/",
  736. "license": [
  737. "BSD-3-Clause"
  738. ],
  739. "authors": [
  740. {
  741. "name": "Chris Boulton",
  742. "homepage": "http://github.com/chrisboulton"
  743. }
  744. ],
  745. "description": "A comprehensive library for generating differences between two hashable objects (strings or arrays)."
  746. },
  747. {
  748. "name": "yiisoft/yii2-gii",
  749. "version": "2.0.5",
  750. "version_normalized": "2.0.5.0",
  751. "source": {
  752. "type": "git",
  753. "url": "https://github.com/yiisoft/yii2-gii.git",
  754. "reference": "1bd6df6804ca077ec022587905a0d43eb286f507"
  755. },
  756. "dist": {
  757. "type": "zip",
  758. "url": "https://api.github.com/repos/yiisoft/yii2-gii/zipball/1bd6df6804ca077ec022587905a0d43eb286f507",
  759. "reference": "1bd6df6804ca077ec022587905a0d43eb286f507",
  760. "shasum": ""
  761. },
  762. "require": {
  763. "bower-asset/typeahead.js": "0.10.* | ~0.11.0",
  764. "phpspec/php-diff": ">=1.0.2",
  765. "yiisoft/yii2": ">=2.0.4",
  766. "yiisoft/yii2-bootstrap": "~2.0"
  767. },
  768. "time": "2016-03-18T14:09:46+00:00",
  769. "type": "yii2-extension",
  770. "extra": {
  771. "branch-alias": {
  772. "dev-master": "2.0.x-dev"
  773. },
  774. "asset-installer-paths": {
  775. "npm-asset-library": "vendor/npm",
  776. "bower-asset-library": "vendor/bower"
  777. }
  778. },
  779. "installation-source": "dist",
  780. "autoload": {
  781. "psr-4": {
  782. "yii\\gii\\": ""
  783. }
  784. },
  785. "notification-url": "https://packagist.org/downloads/",
  786. "license": [
  787. "BSD-3-Clause"
  788. ],
  789. "authors": [
  790. {
  791. "name": "Qiang Xue",
  792. "email": "qiang.xue@gmail.com"
  793. }
  794. ],
  795. "description": "The Gii extension for the Yii framework",
  796. "keywords": [
  797. "code generator",
  798. "gii",
  799. "yii2"
  800. ]
  801. },
  802. {
  803. "name": "fzaninotto/faker",
  804. "version": "v1.6.0",
  805. "version_normalized": "1.6.0.0",
  806. "source": {
  807. "type": "git",
  808. "url": "https://github.com/fzaninotto/Faker.git",
  809. "reference": "44f9a286a04b80c76a4e5fb7aad8bb539b920123"
  810. },
  811. "dist": {
  812. "type": "zip",
  813. "url": "https://api.github.com/repos/fzaninotto/Faker/zipball/44f9a286a04b80c76a4e5fb7aad8bb539b920123",
  814. "reference": "44f9a286a04b80c76a4e5fb7aad8bb539b920123",
  815. "shasum": ""
  816. },
  817. "require": {
  818. "php": "^5.3.3|^7.0"
  819. },
  820. "require-dev": {
  821. "ext-intl": "*",
  822. "phpunit/phpunit": "~4.0",
  823. "squizlabs/php_codesniffer": "~1.5"
  824. },
  825. "time": "2016-04-29T12:21:54+00:00",
  826. "type": "library",
  827. "extra": {
  828. "branch-alias": []
  829. },
  830. "installation-source": "dist",
  831. "autoload": {
  832. "psr-4": {
  833. "Faker\\": "src/Faker/"
  834. }
  835. },
  836. "notification-url": "https://packagist.org/downloads/",
  837. "license": [
  838. "MIT"
  839. ],
  840. "authors": [
  841. {
  842. "name": "François Zaninotto"
  843. }
  844. ],
  845. "description": "Faker is a PHP library that generates fake data for you.",
  846. "keywords": [
  847. "data",
  848. "faker",
  849. "fixtures"
  850. ]
  851. },
  852. {
  853. "name": "yiisoft/yii2-faker",
  854. "version": "2.0.3",
  855. "version_normalized": "2.0.3.0",
  856. "source": {
  857. "type": "git",
  858. "url": "https://github.com/yiisoft/yii2-faker.git",
  859. "reference": "b88ca69ee226a3610b2c26c026c3203d7ac50f6c"
  860. },
  861. "dist": {
  862. "type": "zip",
  863. "url": "https://api.github.com/repos/yiisoft/yii2-faker/zipball/b88ca69ee226a3610b2c26c026c3203d7ac50f6c",
  864. "reference": "b88ca69ee226a3610b2c26c026c3203d7ac50f6c",
  865. "shasum": ""
  866. },
  867. "require": {
  868. "fzaninotto/faker": "*",
  869. "yiisoft/yii2": "*"
  870. },
  871. "time": "2015-03-01T06:22:44+00:00",
  872. "type": "yii2-extension",
  873. "extra": {
  874. "branch-alias": {
  875. "dev-master": "2.0.x-dev"
  876. }
  877. },
  878. "installation-source": "dist",
  879. "autoload": {
  880. "psr-4": {
  881. "yii\\faker\\": ""
  882. }
  883. },
  884. "notification-url": "https://packagist.org/downloads/",
  885. "license": [
  886. "BSD-3-Clause"
  887. ],
  888. "authors": [
  889. {
  890. "name": "Mark Jebri",
  891. "email": "mark.github@yandex.ru"
  892. }
  893. ],
  894. "description": "Fixture generator. The Faker integration for the Yii framework.",
  895. "keywords": [
  896. "Fixture",
  897. "faker",
  898. "yii2"
  899. ]
  900. },
  901. {
  902. "name": "sebastian/diff",
  903. "version": "1.4.1",
  904. "version_normalized": "1.4.1.0",
  905. "source": {
  906. "type": "git",
  907. "url": "https://github.com/sebastianbergmann/diff.git",
  908. "reference": "13edfd8706462032c2f52b4b862974dd46b71c9e"
  909. },
  910. "dist": {
  911. "type": "zip",
  912. "url": "https://api.github.com/repos/sebastianbergmann/diff/zipball/13edfd8706462032c2f52b4b862974dd46b71c9e",
  913. "reference": "13edfd8706462032c2f52b4b862974dd46b71c9e",
  914. "shasum": ""
  915. },
  916. "require": {
  917. "php": ">=5.3.3"
  918. },
  919. "require-dev": {
  920. "phpunit/phpunit": "~4.8"
  921. },
  922. "time": "2015-12-08T07:14:41+00:00",
  923. "type": "library",
  924. "extra": {
  925. "branch-alias": {
  926. "dev-master": "1.4-dev"
  927. }
  928. },
  929. "installation-source": "dist",
  930. "autoload": {
  931. "classmap": [
  932. "src/"
  933. ]
  934. },
  935. "notification-url": "https://packagist.org/downloads/",
  936. "license": [
  937. "BSD-3-Clause"
  938. ],
  939. "authors": [
  940. {
  941. "name": "Kore Nordmann",
  942. "email": "mail@kore-nordmann.de"
  943. },
  944. {
  945. "name": "Sebastian Bergmann",
  946. "email": "sebastian@phpunit.de"
  947. }
  948. ],
  949. "description": "Diff implementation",
  950. "homepage": "https://github.com/sebastianbergmann/diff",
  951. "keywords": [
  952. "diff"
  953. ]
  954. },
  955. {
  956. "name": "sebastian/recursion-context",
  957. "version": "2.0.0",
  958. "version_normalized": "2.0.0.0",
  959. "source": {
  960. "type": "git",
  961. "url": "https://github.com/sebastianbergmann/recursion-context.git",
  962. "reference": "2c3ba150cbec723aa057506e73a8d33bdb286c9a"
  963. },
  964. "dist": {
  965. "type": "zip",
  966. "url": "https://api.github.com/repos/sebastianbergmann/recursion-context/zipball/2c3ba150cbec723aa057506e73a8d33bdb286c9a",
  967. "reference": "2c3ba150cbec723aa057506e73a8d33bdb286c9a",
  968. "shasum": ""
  969. },
  970. "require": {
  971. "php": ">=5.3.3"
  972. },
  973. "require-dev": {
  974. "phpunit/phpunit": "~4.4"
  975. },
  976. "time": "2016-11-19T07:33:16+00:00",
  977. "type": "library",
  978. "extra": {
  979. "branch-alias": {
  980. "dev-master": "2.0.x-dev"
  981. }
  982. },
  983. "installation-source": "dist",
  984. "autoload": {
  985. "classmap": [
  986. "src/"
  987. ]
  988. },
  989. "notification-url": "https://packagist.org/downloads/",
  990. "license": [
  991. "BSD-3-Clause"
  992. ],
  993. "authors": [
  994. {
  995. "name": "Jeff Welch",
  996. "email": "whatthejeff@gmail.com"
  997. },
  998. {
  999. "name": "Sebastian Bergmann",
  1000. "email": "sebastian@phpunit.de"
  1001. },
  1002. {
  1003. "name": "Adam Harvey",
  1004. "email": "aharvey@php.net"
  1005. }
  1006. ],
  1007. "description": "Provides functionality to recursively process PHP variables",
  1008. "homepage": "http://www.github.com/sebastianbergmann/recursion-context"
  1009. },
  1010. {
  1011. "name": "sebastian/exporter",
  1012. "version": "2.0.0",
  1013. "version_normalized": "2.0.0.0",
  1014. "source": {
  1015. "type": "git",
  1016. "url": "https://github.com/sebastianbergmann/exporter.git",
  1017. "reference": "ce474bdd1a34744d7ac5d6aad3a46d48d9bac4c4"
  1018. },
  1019. "dist": {
  1020. "type": "zip",
  1021. "url": "https://api.github.com/repos/sebastianbergmann/exporter/zipball/ce474bdd1a34744d7ac5d6aad3a46d48d9bac4c4",
  1022. "reference": "ce474bdd1a34744d7ac5d6aad3a46d48d9bac4c4",
  1023. "shasum": ""
  1024. },
  1025. "require": {
  1026. "php": ">=5.3.3",
  1027. "sebastian/recursion-context": "~2.0"
  1028. },
  1029. "require-dev": {
  1030. "ext-mbstring": "*",
  1031. "phpunit/phpunit": "~4.4"
  1032. },
  1033. "time": "2016-11-19T08:54:04+00:00",
  1034. "type": "library",
  1035. "extra": {
  1036. "branch-alias": {
  1037. "dev-master": "2.0.x-dev"
  1038. }
  1039. },
  1040. "installation-source": "dist",
  1041. "autoload": {
  1042. "classmap": [
  1043. "src/"
  1044. ]
  1045. },
  1046. "notification-url": "https://packagist.org/downloads/",
  1047. "license": [
  1048. "BSD-3-Clause"
  1049. ],
  1050. "authors": [
  1051. {
  1052. "name": "Jeff Welch",
  1053. "email": "whatthejeff@gmail.com"
  1054. },
  1055. {
  1056. "name": "Volker Dusch",
  1057. "email": "github@wallbash.com"
  1058. },
  1059. {
  1060. "name": "Bernhard Schussek",
  1061. "email": "bschussek@2bepublished.at"
  1062. },
  1063. {
  1064. "name": "Sebastian Bergmann",
  1065. "email": "sebastian@phpunit.de"
  1066. },
  1067. {
  1068. "name": "Adam Harvey",
  1069. "email": "aharvey@php.net"
  1070. }
  1071. ],
  1072. "description": "Provides the functionality to export PHP variables for visualization",
  1073. "homepage": "http://www.github.com/sebastianbergmann/exporter",
  1074. "keywords": [
  1075. "export",
  1076. "exporter"
  1077. ]
  1078. },
  1079. {
  1080. "name": "sebastian/comparator",
  1081. "version": "1.2.4",
  1082. "version_normalized": "1.2.4.0",
  1083. "source": {
  1084. "type": "git",
  1085. "url": "https://github.com/sebastianbergmann/comparator.git",
  1086. "reference": "2b7424b55f5047b47ac6e5ccb20b2aea4011d9be"
  1087. },
  1088. "dist": {
  1089. "type": "zip",
  1090. "url": "https://api.github.com/repos/sebastianbergmann/comparator/zipball/2b7424b55f5047b47ac6e5ccb20b2aea4011d9be",
  1091. "reference": "2b7424b55f5047b47ac6e5ccb20b2aea4011d9be",
  1092. "shasum": ""
  1093. },
  1094. "require": {
  1095. "php": ">=5.3.3",
  1096. "sebastian/diff": "~1.2",
  1097. "sebastian/exporter": "~1.2 || ~2.0"
  1098. },
  1099. "require-dev": {
  1100. "phpunit/phpunit": "~4.4"
  1101. },
  1102. "time": "2017-01-29T09:50:25+00:00",
  1103. "type": "library",
  1104. "extra": {
  1105. "branch-alias": {
  1106. "dev-master": "1.2.x-dev"
  1107. }
  1108. },
  1109. "installation-source": "dist",
  1110. "autoload": {
  1111. "classmap": [
  1112. "src/"
  1113. ]
  1114. },
  1115. "notification-url": "https://packagist.org/downloads/",
  1116. "license": [
  1117. "BSD-3-Clause"
  1118. ],
  1119. "authors": [
  1120. {
  1121. "name": "Jeff Welch",
  1122. "email": "whatthejeff@gmail.com"
  1123. },
  1124. {
  1125. "name": "Volker Dusch",
  1126. "email": "github@wallbash.com"
  1127. },
  1128. {
  1129. "name": "Bernhard Schussek",
  1130. "email": "bschussek@2bepublished.at"
  1131. },
  1132. {
  1133. "name": "Sebastian Bergmann",
  1134. "email": "sebastian@phpunit.de"
  1135. }
  1136. ],
  1137. "description": "Provides the functionality to compare PHP values for equality",
  1138. "homepage": "http://www.github.com/sebastianbergmann/comparator",
  1139. "keywords": [
  1140. "comparator",
  1141. "compare",
  1142. "equality"
  1143. ]
  1144. },
  1145. {
  1146. "name": "behat/gherkin",
  1147. "version": "v4.4.5",
  1148. "version_normalized": "4.4.5.0",
  1149. "source": {
  1150. "type": "git",
  1151. "url": "https://github.com/Behat/Gherkin.git",
  1152. "reference": "5c14cff4f955b17d20d088dec1bde61c0539ec74"
  1153. },
  1154. "dist": {
  1155. "type": "zip",
  1156. "url": "https://api.github.com/repos/Behat/Gherkin/zipball/5c14cff4f955b17d20d088dec1bde61c0539ec74",
  1157. "reference": "5c14cff4f955b17d20d088dec1bde61c0539ec74",
  1158. "shasum": ""
  1159. },
  1160. "require": {
  1161. "php": ">=5.3.1"
  1162. },
  1163. "require-dev": {
  1164. "phpunit/phpunit": "~4.5|~5",
  1165. "symfony/phpunit-bridge": "~2.7|~3",
  1166. "symfony/yaml": "~2.3|~3"
  1167. },
  1168. "suggest": {
  1169. "symfony/yaml": "If you want to parse features, represented in YAML files"
  1170. },
  1171. "time": "2016-10-30T11:50:56+00:00",
  1172. "type": "library",
  1173. "extra": {
  1174. "branch-alias": {
  1175. "dev-master": "4.4-dev"
  1176. }
  1177. },
  1178. "installation-source": "dist",
  1179. "autoload": {
  1180. "psr-0": {
  1181. "Behat\\Gherkin": "src/"
  1182. }
  1183. },
  1184. "notification-url": "https://packagist.org/downloads/",
  1185. "license": [
  1186. "MIT"
  1187. ],
  1188. "authors": [
  1189. {
  1190. "name": "Konstantin Kudryashov",
  1191. "email": "ever.zet@gmail.com",
  1192. "homepage": "http://everzet.com"
  1193. }
  1194. ],
  1195. "description": "Gherkin DSL parser for PHP 5.3",
  1196. "homepage": "http://behat.org/",
  1197. "keywords": [
  1198. "BDD",
  1199. "Behat",
  1200. "Cucumber",
  1201. "DSL",
  1202. "gherkin",
  1203. "parser"
  1204. ]
  1205. },
  1206. {
  1207. "name": "symfony/polyfill-mbstring",
  1208. "version": "v1.3.0",
  1209. "version_normalized": "1.3.0.0",
  1210. "source": {
  1211. "type": "git",
  1212. "url": "https://github.com/symfony/polyfill-mbstring.git",
  1213. "reference": "e79d363049d1c2128f133a2667e4f4190904f7f4"
  1214. },
  1215. "dist": {
  1216. "type": "zip",
  1217. "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/e79d363049d1c2128f133a2667e4f4190904f7f4",
  1218. "reference": "e79d363049d1c2128f133a2667e4f4190904f7f4",
  1219. "shasum": ""
  1220. },
  1221. "require": {
  1222. "php": ">=5.3.3"
  1223. },
  1224. "suggest": {
  1225. "ext-mbstring": "For best performance"
  1226. },
  1227. "time": "2016-11-14T01:06:16+00:00",
  1228. "type": "library",
  1229. "extra": {
  1230. "branch-alias": {
  1231. "dev-master": "1.3-dev"
  1232. }
  1233. },
  1234. "installation-source": "dist",
  1235. "autoload": {
  1236. "psr-4": {
  1237. "Symfony\\Polyfill\\Mbstring\\": ""
  1238. },
  1239. "files": [
  1240. "bootstrap.php"
  1241. ]
  1242. },
  1243. "notification-url": "https://packagist.org/downloads/",
  1244. "license": [
  1245. "MIT"
  1246. ],
  1247. "authors": [
  1248. {
  1249. "name": "Nicolas Grekas",
  1250. "email": "p@tchwork.com"
  1251. },
  1252. {
  1253. "name": "Symfony Community",
  1254. "homepage": "https://symfony.com/contributors"
  1255. }
  1256. ],
  1257. "description": "Symfony polyfill for the Mbstring extension",
  1258. "homepage": "https://symfony.com",
  1259. "keywords": [
  1260. "compatibility",
  1261. "mbstring",
  1262. "polyfill",
  1263. "portable",
  1264. "shim"
  1265. ]
  1266. },
  1267. {
  1268. "name": "symfony/dom-crawler",
  1269. "version": "v3.2.2",
  1270. "version_normalized": "3.2.2.0",
  1271. "source": {
  1272. "type": "git",
  1273. "url": "https://github.com/symfony/dom-crawler.git",
  1274. "reference": "27d9790840a4efd3b7bb8f5f4f9efc27b36b7024"
  1275. },
  1276. "dist": {
  1277. "type": "zip",
  1278. "url": "https://api.github.com/repos/symfony/dom-crawler/zipball/27d9790840a4efd3b7bb8f5f4f9efc27b36b7024",
  1279. "reference": "27d9790840a4efd3b7bb8f5f4f9efc27b36b7024",
  1280. "shasum": ""
  1281. },
  1282. "require": {
  1283. "php": ">=5.5.9",
  1284. "symfony/polyfill-mbstring": "~1.0"
  1285. },
  1286. "require-dev": {
  1287. "symfony/css-selector": "~2.8|~3.0"
  1288. },
  1289. "suggest": {
  1290. "symfony/css-selector": ""
  1291. },
  1292. "time": "2017-01-02T20:32:22+00:00",
  1293. "type": "library",
  1294. "extra": {
  1295. "branch-alias": {
  1296. "dev-master": "3.2-dev"
  1297. }
  1298. },
  1299. "installation-source": "dist",
  1300. "autoload": {
  1301. "psr-4": {
  1302. "Symfony\\Component\\DomCrawler\\": ""
  1303. },
  1304. "exclude-from-classmap": [
  1305. "/Tests/"
  1306. ]
  1307. },
  1308. "notification-url": "https://packagist.org/downloads/",
  1309. "license": [
  1310. "MIT"
  1311. ],
  1312. "authors": [
  1313. {
  1314. "name": "Fabien Potencier",
  1315. "email": "fabien@symfony.com"
  1316. },
  1317. {
  1318. "name": "Symfony Community",
  1319. "homepage": "https://symfony.com/contributors"
  1320. }
  1321. ],
  1322. "description": "Symfony DomCrawler Component",
  1323. "homepage": "https://symfony.com"
  1324. },
  1325. {
  1326. "name": "symfony/css-selector",
  1327. "version": "v3.2.2",
  1328. "version_normalized": "3.2.2.0",
  1329. "source": {
  1330. "type": "git",
  1331. "url": "https://github.com/symfony/css-selector.git",
  1332. "reference": "f0e628f04fc055c934b3211cfabdb1c59eefbfaa"
  1333. },
  1334. "dist": {
  1335. "type": "zip",
  1336. "url": "https://api.github.com/repos/symfony/css-selector/zipball/f0e628f04fc055c934b3211cfabdb1c59eefbfaa",
  1337. "reference": "f0e628f04fc055c934b3211cfabdb1c59eefbfaa",
  1338. "shasum": ""
  1339. },
  1340. "require": {
  1341. "php": ">=5.5.9"
  1342. },
  1343. "time": "2017-01-02T20:32:22+00:00",
  1344. "type": "library",
  1345. "extra": {
  1346. "branch-alias": {
  1347. "dev-master": "3.2-dev"
  1348. }
  1349. },
  1350. "installation-source": "dist",
  1351. "autoload": {
  1352. "psr-4": {
  1353. "Symfony\\Component\\CssSelector\\": ""
  1354. },
  1355. "exclude-from-classmap": [
  1356. "/Tests/"
  1357. ]
  1358. },
  1359. "notification-url": "https://packagist.org/downloads/",
  1360. "license": [
  1361. "MIT"
  1362. ],
  1363. "authors": [
  1364. {
  1365. "name": "Jean-François Simon",
  1366. "email": "jeanfrancois.simon@sensiolabs.com"
  1367. },
  1368. {
  1369. "name": "Fabien Potencier",
  1370. "email": "fabien@symfony.com"
  1371. },
  1372. {
  1373. "name": "Symfony Community",
  1374. "homepage": "https://symfony.com/contributors"
  1375. }
  1376. ],
  1377. "description": "Symfony CssSelector Component",
  1378. "homepage": "https://symfony.com"
  1379. },
  1380. {
  1381. "name": "symfony/browser-kit",
  1382. "version": "v3.2.2",
  1383. "version_normalized": "3.2.2.0",
  1384. "source": {
  1385. "type": "git",
  1386. "url": "https://github.com/symfony/browser-kit.git",
  1387. "reference": "548f8230bad9f77463b20b15993a008f03e96db5"
  1388. },
  1389. "dist": {
  1390. "type": "zip",
  1391. "url": "https://api.github.com/repos/symfony/browser-kit/zipball/548f8230bad9f77463b20b15993a008f03e96db5",
  1392. "reference": "548f8230bad9f77463b20b15993a008f03e96db5",
  1393. "shasum": ""
  1394. },
  1395. "require": {
  1396. "php": ">=5.5.9",
  1397. "symfony/dom-crawler": "~2.8|~3.0"
  1398. },
  1399. "require-dev": {
  1400. "symfony/css-selector": "~2.8|~3.0",
  1401. "symfony/process": "~2.8|~3.0"
  1402. },
  1403. "suggest": {
  1404. "symfony/process": ""
  1405. },
  1406. "time": "2017-01-02T20:32:22+00:00",
  1407. "type": "library",
  1408. "extra": {
  1409. "branch-alias": {
  1410. "dev-master": "3.2-dev"
  1411. }
  1412. },
  1413. "installation-source": "dist",
  1414. "autoload": {
  1415. "psr-4": {
  1416. "Symfony\\Component\\BrowserKit\\": ""
  1417. },
  1418. "exclude-from-classmap": [
  1419. "/Tests/"
  1420. ]
  1421. },
  1422. "notification-url": "https://packagist.org/downloads/",
  1423. "license": [
  1424. "MIT"
  1425. ],
  1426. "authors": [
  1427. {
  1428. "name": "Fabien Potencier",
  1429. "email": "fabien@symfony.com"
  1430. },
  1431. {
  1432. "name": "Symfony Community",
  1433. "homepage": "https://symfony.com/contributors"
  1434. }
  1435. ],
  1436. "description": "Symfony BrowserKit Component",
  1437. "homepage": "https://symfony.com"
  1438. },
  1439. {
  1440. "name": "symfony/yaml",
  1441. "version": "v3.2.2",
  1442. "version_normalized": "3.2.2.0",
  1443. "source": {
  1444. "type": "git",
  1445. "url": "https://github.com/symfony/yaml.git",
  1446. "reference": "50eadbd7926e31842893c957eca362b21592a97d"
  1447. },
  1448. "dist": {
  1449. "type": "zip",
  1450. "url": "https://api.github.com/repos/symfony/yaml/zipball/50eadbd7926e31842893c957eca362b21592a97d",
  1451. "reference": "50eadbd7926e31842893c957eca362b21592a97d",
  1452. "shasum": ""
  1453. },
  1454. "require": {
  1455. "php": ">=5.5.9"
  1456. },
  1457. "require-dev": {
  1458. "symfony/console": "~2.8|~3.0"
  1459. },
  1460. "suggest": {
  1461. "symfony/console": "For validating YAML files using the lint command"
  1462. },
  1463. "time": "2017-01-03T13:51:32+00:00",
  1464. "type": "library",
  1465. "extra": {
  1466. "branch-alias": {
  1467. "dev-master": "3.2-dev"
  1468. }
  1469. },
  1470. "installation-source": "dist",
  1471. "autoload": {
  1472. "psr-4": {
  1473. "Symfony\\Component\\Yaml\\": ""
  1474. },
  1475. "exclude-from-classmap": [
  1476. "/Tests/"
  1477. ]
  1478. },
  1479. "notification-url": "https://packagist.org/downloads/",
  1480. "license": [
  1481. "MIT"
  1482. ],
  1483. "authors": [
  1484. {
  1485. "name": "Fabien Potencier",
  1486. "email": "fabien@symfony.com"
  1487. },
  1488. {
  1489. "name": "Symfony Community",
  1490. "homepage": "https://symfony.com/contributors"
  1491. }
  1492. ],
  1493. "description": "Symfony Yaml Component",
  1494. "homepage": "https://symfony.com"
  1495. },
  1496. {
  1497. "name": "symfony/event-dispatcher",
  1498. "version": "v3.2.2",
  1499. "version_normalized": "3.2.2.0",
  1500. "source": {
  1501. "type": "git",
  1502. "url": "https://github.com/symfony/event-dispatcher.git",
  1503. "reference": "9137eb3a3328e413212826d63eeeb0217836e2b6"
  1504. },
  1505. "dist": {
  1506. "type": "zip",
  1507. "url": "https://api.github.com/repos/symfony/event-dispatcher/zipball/9137eb3a3328e413212826d63eeeb0217836e2b6",
  1508. "reference": "9137eb3a3328e413212826d63eeeb0217836e2b6",
  1509. "shasum": ""
  1510. },
  1511. "require": {
  1512. "php": ">=5.5.9"
  1513. },
  1514. "require-dev": {
  1515. "psr/log": "~1.0",
  1516. "symfony/config": "~2.8|~3.0",
  1517. "symfony/dependency-injection": "~2.8|~3.0",
  1518. "symfony/expression-language": "~2.8|~3.0",
  1519. "symfony/stopwatch": "~2.8|~3.0"
  1520. },
  1521. "suggest": {
  1522. "symfony/dependency-injection": "",
  1523. "symfony/http-kernel": ""
  1524. },
  1525. "time": "2017-01-02T20:32:22+00:00",
  1526. "type": "library",
  1527. "extra": {
  1528. "branch-alias": {
  1529. "dev-master": "3.2-dev"
  1530. }
  1531. },
  1532. "installation-source": "dist",
  1533. "autoload": {
  1534. "psr-4": {
  1535. "Symfony\\Component\\EventDispatcher\\": ""
  1536. },
  1537. "exclude-from-classmap": [
  1538. "/Tests/"
  1539. ]
  1540. },
  1541. "notification-url": "https://packagist.org/downloads/",
  1542. "license": [
  1543. "MIT"
  1544. ],
  1545. "authors": [
  1546. {
  1547. "name": "Fabien Potencier",
  1548. "email": "fabien@symfony.com"
  1549. },
  1550. {
  1551. "name": "Symfony Community",
  1552. "homepage": "https://symfony.com/contributors"
  1553. }
  1554. ],
  1555. "description": "Symfony EventDispatcher Component",
  1556. "homepage": "https://symfony.com"
  1557. },
  1558. {
  1559. "name": "psr/log",
  1560. "version": "1.0.2",
  1561. "version_normalized": "1.0.2.0",
  1562. "source": {
  1563. "type": "git",
  1564. "url": "https://github.com/php-fig/log.git",
  1565. "reference": "4ebe3a8bf773a19edfe0a84b6585ba3d401b724d"
  1566. },
  1567. "dist": {
  1568. "type": "zip",
  1569. "url": "https://api.github.com/repos/php-fig/log/zipball/4ebe3a8bf773a19edfe0a84b6585ba3d401b724d",
  1570. "reference": "4ebe3a8bf773a19edfe0a84b6585ba3d401b724d",
  1571. "shasum": ""
  1572. },
  1573. "require": {
  1574. "php": ">=5.3.0"
  1575. },
  1576. "time": "2016-10-10T12:19:37+00:00",
  1577. "type": "library",
  1578. "extra": {
  1579. "branch-alias": {
  1580. "dev-master": "1.0.x-dev"
  1581. }
  1582. },
  1583. "installation-source": "dist",
  1584. "autoload": {
  1585. "psr-4": {
  1586. "Psr\\Log\\": "Psr/Log/"
  1587. }
  1588. },
  1589. "notification-url": "https://packagist.org/downloads/",
  1590. "license": [
  1591. "MIT"
  1592. ],
  1593. "authors": [
  1594. {
  1595. "name": "PHP-FIG",
  1596. "homepage": "http://www.php-fig.org/"
  1597. }
  1598. ],
  1599. "description": "Common interface for logging libraries",
  1600. "homepage": "https://github.com/php-fig/log",
  1601. "keywords": [
  1602. "log",
  1603. "psr",
  1604. "psr-3"
  1605. ]
  1606. },
  1607. {
  1608. "name": "symfony/debug",
  1609. "version": "v3.2.2",
  1610. "version_normalized": "3.2.2.0",
  1611. "source": {
  1612. "type": "git",
  1613. "url": "https://github.com/symfony/debug.git",
  1614. "reference": "810ba5c1c5352a4ddb15d4719e8936751dff0b05"
  1615. },
  1616. "dist": {
  1617. "type": "zip",
  1618. "url": "https://api.github.com/repos/symfony/debug/zipball/810ba5c1c5352a4ddb15d4719e8936751dff0b05",
  1619. "reference": "810ba5c1c5352a4ddb15d4719e8936751dff0b05",
  1620. "shasum": ""
  1621. },
  1622. "require": {
  1623. "php": ">=5.5.9",
  1624. "psr/log": "~1.0"
  1625. },
  1626. "conflict": {
  1627. "symfony/http-kernel": ">=2.3,<2.3.24|~2.4.0|>=2.5,<2.5.9|>=2.6,<2.6.2"
  1628. },
  1629. "require-dev": {
  1630. "symfony/class-loader": "~2.8|~3.0",
  1631. "symfony/http-kernel": "~2.8|~3.0"
  1632. },
  1633. "time": "2017-01-02T20:32:22+00:00",
  1634. "type": "library",
  1635. "extra": {
  1636. "branch-alias": {
  1637. "dev-master": "3.2-dev"
  1638. }
  1639. },
  1640. "installation-source": "dist",
  1641. "autoload": {
  1642. "psr-4": {
  1643. "Symfony\\Component\\Debug\\": ""
  1644. },
  1645. "exclude-from-classmap": [
  1646. "/Tests/"
  1647. ]
  1648. },
  1649. "notification-url": "https://packagist.org/downloads/",
  1650. "license": [
  1651. "MIT"
  1652. ],
  1653. "authors": [
  1654. {
  1655. "name": "Fabien Potencier",
  1656. "email": "fabien@symfony.com"
  1657. },
  1658. {
  1659. "name": "Symfony Community",
  1660. "homepage": "https://symfony.com/contributors"
  1661. }
  1662. ],
  1663. "description": "Symfony Debug Component",
  1664. "homepage": "https://symfony.com"
  1665. },
  1666. {
  1667. "name": "symfony/console",
  1668. "version": "v3.2.2",
  1669. "version_normalized": "3.2.2.0",
  1670. "source": {
  1671. "type": "git",
  1672. "url": "https://github.com/symfony/console.git",
  1673. "reference": "4f9e449e76996adf310498a8ca955c6deebe29dd"
  1674. },
  1675. "dist": {
  1676. "type": "zip",
  1677. "url": "https://api.github.com/repos/symfony/console/zipball/4f9e449e76996adf310498a8ca955c6deebe29dd",
  1678. "reference": "4f9e449e76996adf310498a8ca955c6deebe29dd",
  1679. "shasum": ""
  1680. },
  1681. "require": {
  1682. "php": ">=5.5.9",
  1683. "symfony/debug": "~2.8|~3.0",
  1684. "symfony/polyfill-mbstring": "~1.0"
  1685. },
  1686. "require-dev": {
  1687. "psr/log": "~1.0",
  1688. "symfony/event-dispatcher": "~2.8|~3.0",
  1689. "symfony/filesystem": "~2.8|~3.0",
  1690. "symfony/process": "~2.8|~3.0"
  1691. },
  1692. "suggest": {
  1693. "psr/log": "For using the console logger",
  1694. "symfony/event-dispatcher": "",
  1695. "symfony/filesystem": "",
  1696. "symfony/process": ""
  1697. },
  1698. "time": "2017-01-08T20:47:33+00:00",
  1699. "type": "library",
  1700. "extra": {
  1701. "branch-alias": {
  1702. "dev-master": "3.2-dev"
  1703. }
  1704. },
  1705. "installation-source": "dist",
  1706. "autoload": {
  1707. "psr-4": {
  1708. "Symfony\\Component\\Console\\": ""
  1709. },
  1710. "exclude-from-classmap": [
  1711. "/Tests/"
  1712. ]
  1713. },
  1714. "notification-url": "https://packagist.org/downloads/",
  1715. "license": [
  1716. "MIT"
  1717. ],
  1718. "authors": [
  1719. {
  1720. "name": "Fabien Potencier",
  1721. "email": "fabien@symfony.com"
  1722. },
  1723. {
  1724. "name": "Symfony Community",
  1725. "homepage": "https://symfony.com/contributors"
  1726. }
  1727. ],
  1728. "description": "Symfony Console Component",
  1729. "homepage": "https://symfony.com"
  1730. },
  1731. {
  1732. "name": "symfony/finder",
  1733. "version": "v3.2.2",
  1734. "version_normalized": "3.2.2.0",
  1735. "source": {
  1736. "type": "git",
  1737. "url": "https://github.com/symfony/finder.git",
  1738. "reference": "8c71141cae8e2957946b403cc71a67213c0380d6"
  1739. },
  1740. "dist": {
  1741. "type": "zip",
  1742. "url": "https://api.github.com/repos/symfony/finder/zipball/8c71141cae8e2957946b403cc71a67213c0380d6",
  1743. "reference": "8c71141cae8e2957946b403cc71a67213c0380d6",
  1744. "shasum": ""
  1745. },
  1746. "require": {
  1747. "php": ">=5.5.9"
  1748. },
  1749. "time": "2017-01-02T20:32:22+00:00",
  1750. "type": "library",
  1751. "extra": {
  1752. "branch-alias": {
  1753. "dev-master": "3.2-dev"
  1754. }
  1755. },
  1756. "installation-source": "dist",
  1757. "autoload": {
  1758. "psr-4": {
  1759. "Symfony\\Component\\Finder\\": ""
  1760. },
  1761. "exclude-from-classmap": [
  1762. "/Tests/"
  1763. ]
  1764. },
  1765. "notification-url": "https://packagist.org/downloads/",
  1766. "license": [
  1767. "MIT"
  1768. ],
  1769. "authors": [
  1770. {
  1771. "name": "Fabien Potencier",
  1772. "email": "fabien@symfony.com"
  1773. },
  1774. {
  1775. "name": "Symfony Community",
  1776. "homepage": "https://symfony.com/contributors"
  1777. }
  1778. ],
  1779. "description": "Symfony Finder Component",
  1780. "homepage": "https://symfony.com"
  1781. },
  1782. {
  1783. "name": "psr/http-message",
  1784. "version": "1.0.1",
  1785. "version_normalized": "1.0.1.0",
  1786. "source": {
  1787. "type": "git",
  1788. "url": "https://github.com/php-fig/http-message.git",
  1789. "reference": "f6561bf28d520154e4b0ec72be95418abe6d9363"
  1790. },
  1791. "dist": {
  1792. "type": "zip",
  1793. "url": "https://api.github.com/repos/php-fig/http-message/zipball/f6561bf28d520154e4b0ec72be95418abe6d9363",
  1794. "reference": "f6561bf28d520154e4b0ec72be95418abe6d9363",
  1795. "shasum": ""
  1796. },
  1797. "require": {
  1798. "php": ">=5.3.0"
  1799. },
  1800. "time": "2016-08-06T14:39:51+00:00",
  1801. "type": "library",
  1802. "extra": {
  1803. "branch-alias": {
  1804. "dev-master": "1.0.x-dev"
  1805. }
  1806. },
  1807. "installation-source": "dist",
  1808. "autoload": {
  1809. "psr-4": {
  1810. "Psr\\Http\\Message\\": "src/"
  1811. }
  1812. },
  1813. "notification-url": "https://packagist.org/downloads/",
  1814. "license": [
  1815. "MIT"
  1816. ],
  1817. "authors": [
  1818. {
  1819. "name": "PHP-FIG",
  1820. "homepage": "http://www.php-fig.org/"
  1821. }
  1822. ],
  1823. "description": "Common interface for HTTP messages",
  1824. "homepage": "https://github.com/php-fig/http-message",
  1825. "keywords": [
  1826. "http",
  1827. "http-message",
  1828. "psr",
  1829. "psr-7",
  1830. "request",
  1831. "response"
  1832. ]
  1833. },
  1834. {
  1835. "name": "guzzlehttp/psr7",
  1836. "version": "1.3.1",
  1837. "version_normalized": "1.3.1.0",
  1838. "source": {
  1839. "type": "git",
  1840. "url": "https://github.com/guzzle/psr7.git",
  1841. "reference": "5c6447c9df362e8f8093bda8f5d8873fe5c7f65b"
  1842. },
  1843. "dist": {
  1844. "type": "zip",
  1845. "url": "https://api.github.com/repos/guzzle/psr7/zipball/5c6447c9df362e8f8093bda8f5d8873fe5c7f65b",
  1846. "reference": "5c6447c9df362e8f8093bda8f5d8873fe5c7f65b",
  1847. "shasum": ""
  1848. },
  1849. "require": {
  1850. "php": ">=5.4.0",
  1851. "psr/http-message": "~1.0"
  1852. },
  1853. "provide": {
  1854. "psr/http-message-implementation": "1.0"
  1855. },
  1856. "require-dev": {
  1857. "phpunit/phpunit": "~4.0"
  1858. },
  1859. "time": "2016-06-24T23:00:38+00:00",
  1860. "type": "library",
  1861. "extra": {
  1862. "branch-alias": {
  1863. "dev-master": "1.4-dev"
  1864. }
  1865. },
  1866. "installation-source": "dist",
  1867. "autoload": {
  1868. "psr-4": {
  1869. "GuzzleHttp\\Psr7\\": "src/"
  1870. },
  1871. "files": [
  1872. "src/functions_include.php"
  1873. ]
  1874. },
  1875. "notification-url": "https://packagist.org/downloads/",
  1876. "license": [
  1877. "MIT"
  1878. ],
  1879. "authors": [
  1880. {
  1881. "name": "Michael Dowling",
  1882. "email": "mtdowling@gmail.com",
  1883. "homepage": "https://github.com/mtdowling"
  1884. }
  1885. ],
  1886. "description": "PSR-7 message implementation",
  1887. "keywords": [
  1888. "http",
  1889. "message",
  1890. "stream",
  1891. "uri"
  1892. ]
  1893. },
  1894. {
  1895. "name": "sebastian/version",
  1896. "version": "2.0.1",
  1897. "version_normalized": "2.0.1.0",
  1898. "source": {
  1899. "type": "git",
  1900. "url": "https://github.com/sebastianbergmann/version.git",
  1901. "reference": "99732be0ddb3361e16ad77b68ba41efc8e979019"
  1902. },
  1903. "dist": {
  1904. "type": "zip",
  1905. "url": "https://api.github.com/repos/sebastianbergmann/version/zipball/99732be0ddb3361e16ad77b68ba41efc8e979019",
  1906. "reference": "99732be0ddb3361e16ad77b68ba41efc8e979019",
  1907. "shasum": ""
  1908. },
  1909. "require": {
  1910. "php": ">=5.6"
  1911. },
  1912. "time": "2016-10-03T07:35:21+00:00",
  1913. "type": "library",
  1914. "extra": {
  1915. "branch-alias": {
  1916. "dev-master": "2.0.x-dev"
  1917. }
  1918. },
  1919. "installation-source": "dist",
  1920. "autoload": {
  1921. "classmap": [
  1922. "src/"
  1923. ]
  1924. },
  1925. "notification-url": "https://packagist.org/downloads/",
  1926. "license": [
  1927. "BSD-3-Clause"
  1928. ],
  1929. "authors": [
  1930. {
  1931. "name": "Sebastian Bergmann",
  1932. "email": "sebastian@phpunit.de",
  1933. "role": "lead"
  1934. }
  1935. ],
  1936. "description": "Library that helps with managing the version number of Git-hosted PHP projects",
  1937. "homepage": "https://github.com/sebastianbergmann/version"
  1938. },
  1939. {
  1940. "name": "sebastian/environment",
  1941. "version": "2.0.0",
  1942. "version_normalized": "2.0.0.0",
  1943. "source": {
  1944. "type": "git",
  1945. "url": "https://github.com/sebastianbergmann/environment.git",
  1946. "reference": "5795ffe5dc5b02460c3e34222fee8cbe245d8fac"
  1947. },
  1948. "dist": {
  1949. "type": "zip",
  1950. "url": "https://api.github.com/repos/sebastianbergmann/environment/zipball/5795ffe5dc5b02460c3e34222fee8cbe245d8fac",
  1951. "reference": "5795ffe5dc5b02460c3e34222fee8cbe245d8fac",
  1952. "shasum": ""
  1953. },
  1954. "require": {
  1955. "php": "^5.6 || ^7.0"
  1956. },
  1957. "require-dev": {
  1958. "phpunit/phpunit": "^5.0"
  1959. },
  1960. "time": "2016-11-26T07:53:53+00:00",
  1961. "type": "library",
  1962. "extra": {
  1963. "branch-alias": {
  1964. "dev-master": "2.0.x-dev"
  1965. }
  1966. },
  1967. "installation-source": "dist",
  1968. "autoload": {
  1969. "classmap": [
  1970. "src/"
  1971. ]
  1972. },
  1973. "notification-url": "https://packagist.org/downloads/",
  1974. "license": [
  1975. "BSD-3-Clause"
  1976. ],
  1977. "authors": [
  1978. {
  1979. "name": "Sebastian Bergmann",
  1980. "email": "sebastian@phpunit.de"
  1981. }
  1982. ],
  1983. "description": "Provides functionality to handle HHVM/PHP environments",
  1984. "homepage": "http://www.github.com/sebastianbergmann/environment",
  1985. "keywords": [
  1986. "Xdebug",
  1987. "environment",
  1988. "hhvm"
  1989. ]
  1990. },
  1991. {
  1992. "name": "sebastian/code-unit-reverse-lookup",
  1993. "version": "1.0.0",
  1994. "version_normalized": "1.0.0.0",
  1995. "source": {
  1996. "type": "git",
  1997. "url": "https://github.com/sebastianbergmann/code-unit-reverse-lookup.git",
  1998. "reference": "c36f5e7cfce482fde5bf8d10d41a53591e0198fe"
  1999. },
  2000. "dist": {
  2001. "type": "zip",
  2002. "url": "https://api.github.com/repos/sebastianbergmann/code-unit-reverse-lookup/zipball/c36f5e7cfce482fde5bf8d10d41a53591e0198fe",
  2003. "reference": "c36f5e7cfce482fde5bf8d10d41a53591e0198fe",
  2004. "shasum": ""
  2005. },
  2006. "require": {
  2007. "php": ">=5.6"
  2008. },
  2009. "require-dev": {
  2010. "phpunit/phpunit": "~5"
  2011. },
  2012. "time": "2016-02-13T06:45:14+00:00",
  2013. "type": "library",
  2014. "extra": {
  2015. "branch-alias": {
  2016. "dev-master": "1.0.x-dev"
  2017. }
  2018. },
  2019. "installation-source": "dist",
  2020. "autoload": {
  2021. "classmap": [
  2022. "src/"
  2023. ]
  2024. },
  2025. "notification-url": "https://packagist.org/downloads/",
  2026. "license": [
  2027. "BSD-3-Clause"
  2028. ],
  2029. "authors": [
  2030. {
  2031. "name": "Sebastian Bergmann",
  2032. "email": "sebastian@phpunit.de"
  2033. }
  2034. ],
  2035. "description": "Looks up which function or method a line of code belongs to",
  2036. "homepage": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/"
  2037. },
  2038. {
  2039. "name": "phpunit/php-token-stream",
  2040. "version": "1.4.9",
  2041. "version_normalized": "1.4.9.0",
  2042. "source": {
  2043. "type": "git",
  2044. "url": "https://github.com/sebastianbergmann/php-token-stream.git",
  2045. "reference": "3b402f65a4cc90abf6e1104e388b896ce209631b"
  2046. },
  2047. "dist": {
  2048. "type": "zip",
  2049. "url": "https://api.github.com/repos/sebastianbergmann/php-token-stream/zipball/3b402f65a4cc90abf6e1104e388b896ce209631b",
  2050. "reference": "3b402f65a4cc90abf6e1104e388b896ce209631b",
  2051. "shasum": ""
  2052. },
  2053. "require": {
  2054. "ext-tokenizer": "*",
  2055. "php": ">=5.3.3"
  2056. },
  2057. "require-dev": {
  2058. "phpunit/phpunit": "~4.2"
  2059. },
  2060. "time": "2016-11-15T14:06:22+00:00",
  2061. "type": "library",
  2062. "extra": {
  2063. "branch-alias": {
  2064. "dev-master": "1.4-dev"
  2065. }
  2066. },
  2067. "installation-source": "dist",
  2068. "autoload": {
  2069. "classmap": [
  2070. "src/"
  2071. ]
  2072. },
  2073. "notification-url": "https://packagist.org/downloads/",
  2074. "license": [
  2075. "BSD-3-Clause"
  2076. ],
  2077. "authors": [
  2078. {
  2079. "name": "Sebastian Bergmann",
  2080. "email": "sebastian@phpunit.de"
  2081. }
  2082. ],
  2083. "description": "Wrapper around PHP's tokenizer extension.",
  2084. "homepage": "https://github.com/sebastianbergmann/php-token-stream/",
  2085. "keywords": [
  2086. "tokenizer"
  2087. ]
  2088. },
  2089. {
  2090. "name": "phpunit/php-text-template",
  2091. "version": "1.2.1",
  2092. "version_normalized": "1.2.1.0",
  2093. "source": {
  2094. "type": "git",
  2095. "url": "https://github.com/sebastianbergmann/php-text-template.git",
  2096. "reference": "31f8b717e51d9a2afca6c9f046f5d69fc27c8686"
  2097. },
  2098. "dist": {
  2099. "type": "zip",
  2100. "url": "https://api.github.com/repos/sebastianbergmann/php-text-template/zipball/31f8b717e51d9a2afca6c9f046f5d69fc27c8686",
  2101. "reference": "31f8b717e51d9a2afca6c9f046f5d69fc27c8686",
  2102. "shasum": ""
  2103. },
  2104. "require": {
  2105. "php": ">=5.3.3"
  2106. },
  2107. "time": "2015-06-21T13:50:34+00:00",
  2108. "type": "library",
  2109. "installation-source": "dist",
  2110. "autoload": {
  2111. "classmap": [
  2112. "src/"
  2113. ]
  2114. },
  2115. "notification-url": "https://packagist.org/downloads/",
  2116. "license": [
  2117. "BSD-3-Clause"
  2118. ],
  2119. "authors": [
  2120. {
  2121. "name": "Sebastian Bergmann",
  2122. "email": "sebastian@phpunit.de",
  2123. "role": "lead"
  2124. }
  2125. ],
  2126. "description": "Simple template engine.",
  2127. "homepage": "https://github.com/sebastianbergmann/php-text-template/",
  2128. "keywords": [
  2129. "template"
  2130. ]
  2131. },
  2132. {
  2133. "name": "phpunit/php-file-iterator",
  2134. "version": "1.4.2",
  2135. "version_normalized": "1.4.2.0",
  2136. "source": {
  2137. "type": "git",
  2138. "url": "https://github.com/sebastianbergmann/php-file-iterator.git",
  2139. "reference": "3cc8f69b3028d0f96a9078e6295d86e9bf019be5"
  2140. },
  2141. "dist": {
  2142. "type": "zip",
  2143. "url": "https://api.github.com/repos/sebastianbergmann/php-file-iterator/zipball/3cc8f69b3028d0f96a9078e6295d86e9bf019be5",
  2144. "reference": "3cc8f69b3028d0f96a9078e6295d86e9bf019be5",
  2145. "shasum": ""
  2146. },
  2147. "require": {
  2148. "php": ">=5.3.3"
  2149. },
  2150. "time": "2016-10-03T07:40:28+00:00",
  2151. "type": "library",
  2152. "extra": {
  2153. "branch-alias": {
  2154. "dev-master": "1.4.x-dev"
  2155. }
  2156. },
  2157. "installation-source": "dist",
  2158. "autoload": {
  2159. "classmap": [
  2160. "src/"
  2161. ]
  2162. },
  2163. "notification-url": "https://packagist.org/downloads/",
  2164. "license": [
  2165. "BSD-3-Clause"
  2166. ],
  2167. "authors": [
  2168. {
  2169. "name": "Sebastian Bergmann",
  2170. "email": "sb@sebastian-bergmann.de",
  2171. "role": "lead"
  2172. }
  2173. ],
  2174. "description": "FilterIterator implementation that filters files based on a list of suffixes.",
  2175. "homepage": "https://github.com/sebastianbergmann/php-file-iterator/",
  2176. "keywords": [
  2177. "filesystem",
  2178. "iterator"
  2179. ]
  2180. },
  2181. {
  2182. "name": "phpunit/php-code-coverage",
  2183. "version": "4.0.5",
  2184. "version_normalized": "4.0.5.0",
  2185. "source": {
  2186. "type": "git",
  2187. "url": "https://github.com/sebastianbergmann/php-code-coverage.git",
  2188. "reference": "c19cfc7cbb0e9338d8c469c7eedecc2a428b0971"
  2189. },
  2190. "dist": {
  2191. "type": "zip",
  2192. "url": "https://api.github.com/repos/sebastianbergmann/php-code-coverage/zipball/c19cfc7cbb0e9338d8c469c7eedecc2a428b0971",
  2193. "reference": "c19cfc7cbb0e9338d8c469c7eedecc2a428b0971",
  2194. "shasum": ""
  2195. },
  2196. "require": {
  2197. "php": "^5.6 || ^7.0",
  2198. "phpunit/php-file-iterator": "~1.3",
  2199. "phpunit/php-text-template": "~1.2",
  2200. "phpunit/php-token-stream": "^1.4.2",
  2201. "sebastian/code-unit-reverse-lookup": "~1.0",
  2202. "sebastian/environment": "^1.3.2 || ^2.0",
  2203. "sebastian/version": "~1.0|~2.0"
  2204. },
  2205. "require-dev": {
  2206. "ext-xdebug": ">=2.1.4",
  2207. "phpunit/phpunit": "^5.4"
  2208. },
  2209. "suggest": {
  2210. "ext-dom": "*",
  2211. "ext-xdebug": ">=2.4.0",
  2212. "ext-xmlwriter": "*"
  2213. },
  2214. "time": "2017-01-20T15:06:43+00:00",
  2215. "type": "library",
  2216. "extra": {
  2217. "branch-alias": {
  2218. "dev-master": "4.0.x-dev"
  2219. }
  2220. },
  2221. "installation-source": "dist",
  2222. "autoload": {
  2223. "classmap": [
  2224. "src/"
  2225. ]
  2226. },
  2227. "notification-url": "https://packagist.org/downloads/",
  2228. "license": [
  2229. "BSD-3-Clause"
  2230. ],
  2231. "authors": [
  2232. {
  2233. "name": "Sebastian Bergmann",
  2234. "email": "sb@sebastian-bergmann.de",
  2235. "role": "lead"
  2236. }
  2237. ],
  2238. "description": "Library that provides collection, processing, and rendering functionality for PHP code coverage information.",
  2239. "homepage": "https://github.com/sebastianbergmann/php-code-coverage",
  2240. "keywords": [
  2241. "coverage",
  2242. "testing",
  2243. "xunit"
  2244. ]
  2245. },
  2246. {
  2247. "name": "sebastian/resource-operations",
  2248. "version": "1.0.0",
  2249. "version_normalized": "1.0.0.0",
  2250. "source": {
  2251. "type": "git",
  2252. "url": "https://github.com/sebastianbergmann/resource-operations.git",
  2253. "reference": "ce990bb21759f94aeafd30209e8cfcdfa8bc3f52"
  2254. },
  2255. "dist": {
  2256. "type": "zip",
  2257. "url": "https://api.github.com/repos/sebastianbergmann/resource-operations/zipball/ce990bb21759f94aeafd30209e8cfcdfa8bc3f52",
  2258. "reference": "ce990bb21759f94aeafd30209e8cfcdfa8bc3f52",
  2259. "shasum": ""
  2260. },
  2261. "require": {
  2262. "php": ">=5.6.0"
  2263. },
  2264. "time": "2015-07-28T20:34:47+00:00",
  2265. "type": "library",
  2266. "extra": {
  2267. "branch-alias": {
  2268. "dev-master": "1.0.x-dev"
  2269. }
  2270. },
  2271. "installation-source": "dist",
  2272. "autoload": {
  2273. "classmap": [
  2274. "src/"
  2275. ]
  2276. },
  2277. "notification-url": "https://packagist.org/downloads/",
  2278. "license": [
  2279. "BSD-3-Clause"
  2280. ],
  2281. "authors": [
  2282. {
  2283. "name": "Sebastian Bergmann",
  2284. "email": "sebastian@phpunit.de"
  2285. }
  2286. ],
  2287. "description": "Provides a list of PHP built-in functions that operate on resources",
  2288. "homepage": "https://www.github.com/sebastianbergmann/resource-operations"
  2289. },
  2290. {
  2291. "name": "sebastian/object-enumerator",
  2292. "version": "2.0.0",
  2293. "version_normalized": "2.0.0.0",
  2294. "source": {
  2295. "type": "git",
  2296. "url": "https://github.com/sebastianbergmann/object-enumerator.git",
  2297. "reference": "96f8a3f257b69e8128ad74d3a7fd464bcbaa3b35"
  2298. },
  2299. "dist": {
  2300. "type": "zip",
  2301. "url": "https://api.github.com/repos/sebastianbergmann/object-enumerator/zipball/96f8a3f257b69e8128ad74d3a7fd464bcbaa3b35",
  2302. "reference": "96f8a3f257b69e8128ad74d3a7fd464bcbaa3b35",
  2303. "shasum": ""
  2304. },
  2305. "require": {
  2306. "php": ">=5.6",
  2307. "sebastian/recursion-context": "~2.0"
  2308. },
  2309. "require-dev": {
  2310. "phpunit/phpunit": "~5"
  2311. },
  2312. "time": "2016-11-19T07:35:10+00:00",
  2313. "type": "library",
  2314. "extra": {
  2315. "branch-alias": {
  2316. "dev-master": "2.0.x-dev"
  2317. }
  2318. },
  2319. "installation-source": "dist",
  2320. "autoload": {
  2321. "classmap": [
  2322. "src/"
  2323. ]
  2324. },
  2325. "notification-url": "https://packagist.org/downloads/",
  2326. "license": [
  2327. "BSD-3-Clause"
  2328. ],
  2329. "authors": [
  2330. {
  2331. "name": "Sebastian Bergmann",
  2332. "email": "sebastian@phpunit.de"
  2333. }
  2334. ],
  2335. "description": "Traverses array structures and object graphs to enumerate all referenced objects",
  2336. "homepage": "https://github.com/sebastianbergmann/object-enumerator/"
  2337. },
  2338. {
  2339. "name": "sebastian/global-state",
  2340. "version": "1.1.1",
  2341. "version_normalized": "1.1.1.0",
  2342. "source": {
  2343. "type": "git",
  2344. "url": "https://github.com/sebastianbergmann/global-state.git",
  2345. "reference": "bc37d50fea7d017d3d340f230811c9f1d7280af4"
  2346. },
  2347. "dist": {
  2348. "type": "zip",
  2349. "url": "https://api.github.com/repos/sebastianbergmann/global-state/zipball/bc37d50fea7d017d3d340f230811c9f1d7280af4",
  2350. "reference": "bc37d50fea7d017d3d340f230811c9f1d7280af4",
  2351. "shasum": ""
  2352. },
  2353. "require": {
  2354. "php": ">=5.3.3"
  2355. },
  2356. "require-dev": {
  2357. "phpunit/phpunit": "~4.2"
  2358. },
  2359. "suggest": {
  2360. "ext-uopz": "*"
  2361. },
  2362. "time": "2015-10-12T03:26:01+00:00",
  2363. "type": "library",
  2364. "extra": {
  2365. "branch-alias": {
  2366. "dev-master": "1.0-dev"
  2367. }
  2368. },
  2369. "installation-source": "dist",
  2370. "autoload": {
  2371. "classmap": [
  2372. "src/"
  2373. ]
  2374. },
  2375. "notification-url": "https://packagist.org/downloads/",
  2376. "license": [
  2377. "BSD-3-Clause"
  2378. ],
  2379. "authors": [
  2380. {
  2381. "name": "Sebastian Bergmann",
  2382. "email": "sebastian@phpunit.de"
  2383. }
  2384. ],
  2385. "description": "Snapshotting of global state",
  2386. "homepage": "http://www.github.com/sebastianbergmann/global-state",
  2387. "keywords": [
  2388. "global state"
  2389. ]
  2390. },
  2391. {
  2392. "name": "doctrine/instantiator",
  2393. "version": "1.0.5",
  2394. "version_normalized": "1.0.5.0",
  2395. "source": {
  2396. "type": "git",
  2397. "url": "https://github.com/doctrine/instantiator.git",
  2398. "reference": "8e884e78f9f0eb1329e445619e04456e64d8051d"
  2399. },
  2400. "dist": {
  2401. "type": "zip",
  2402. "url": "https://api.github.com/repos/doctrine/instantiator/zipball/8e884e78f9f0eb1329e445619e04456e64d8051d",
  2403. "reference": "8e884e78f9f0eb1329e445619e04456e64d8051d",
  2404. "shasum": ""
  2405. },
  2406. "require": {
  2407. "php": ">=5.3,<8.0-DEV"
  2408. },
  2409. "require-dev": {
  2410. "athletic/athletic": "~0.1.8",
  2411. "ext-pdo": "*",
  2412. "ext-phar": "*",
  2413. "phpunit/phpunit": "~4.0",
  2414. "squizlabs/php_codesniffer": "~2.0"
  2415. },
  2416. "time": "2015-06-14T21:17:01+00:00",
  2417. "type": "library",
  2418. "extra": {
  2419. "branch-alias": {
  2420. "dev-master": "1.0.x-dev"
  2421. }
  2422. },
  2423. "installation-source": "dist",
  2424. "autoload": {
  2425. "psr-4": {
  2426. "Doctrine\\Instantiator\\": "src/Doctrine/Instantiator/"
  2427. }
  2428. },
  2429. "notification-url": "https://packagist.org/downloads/",
  2430. "license": [
  2431. "MIT"
  2432. ],
  2433. "authors": [
  2434. {
  2435. "name": "Marco Pivetta",
  2436. "email": "ocramius@gmail.com",
  2437. "homepage": "http://ocramius.github.com/"
  2438. }
  2439. ],
  2440. "description": "A small, lightweight utility to instantiate objects in PHP without invoking their constructors",
  2441. "homepage": "https://github.com/doctrine/instantiator",
  2442. "keywords": [
  2443. "constructor",
  2444. "instantiate"
  2445. ]
  2446. },
  2447. {
  2448. "name": "phpunit/phpunit-mock-objects",
  2449. "version": "3.4.3",
  2450. "version_normalized": "3.4.3.0",
  2451. "source": {
  2452. "type": "git",
  2453. "url": "https://github.com/sebastianbergmann/phpunit-mock-objects.git",
  2454. "reference": "3ab72b65b39b491e0c011e2e09bb2206c2aa8e24"
  2455. },
  2456. "dist": {
  2457. "type": "zip",
  2458. "url": "https://api.github.com/repos/sebastianbergmann/phpunit-mock-objects/zipball/3ab72b65b39b491e0c011e2e09bb2206c2aa8e24",
  2459. "reference": "3ab72b65b39b491e0c011e2e09bb2206c2aa8e24",
  2460. "shasum": ""
  2461. },
  2462. "require": {
  2463. "doctrine/instantiator": "^1.0.2",
  2464. "php": "^5.6 || ^7.0",
  2465. "phpunit/php-text-template": "^1.2",
  2466. "sebastian/exporter": "^1.2 || ^2.0"
  2467. },
  2468. "conflict": {
  2469. "phpunit/phpunit": "<5.4.0"
  2470. },
  2471. "require-dev": {
  2472. "phpunit/phpunit": "^5.4"
  2473. },
  2474. "suggest": {
  2475. "ext-soap": "*"
  2476. },
  2477. "time": "2016-12-08T20:27:08+00:00",
  2478. "type": "library",
  2479. "extra": {
  2480. "branch-alias": {
  2481. "dev-master": "3.2.x-dev"
  2482. }
  2483. },
  2484. "installation-source": "dist",
  2485. "autoload": {
  2486. "classmap": [
  2487. "src/"
  2488. ]
  2489. },
  2490. "notification-url": "https://packagist.org/downloads/",
  2491. "license": [
  2492. "BSD-3-Clause"
  2493. ],
  2494. "authors": [
  2495. {
  2496. "name": "Sebastian Bergmann",
  2497. "email": "sb@sebastian-bergmann.de",
  2498. "role": "lead"
  2499. }
  2500. ],
  2501. "description": "Mock Object library for PHPUnit",
  2502. "homepage": "https://github.com/sebastianbergmann/phpunit-mock-objects/",
  2503. "keywords": [
  2504. "mock",
  2505. "xunit"
  2506. ]
  2507. },
  2508. {
  2509. "name": "phpunit/php-timer",
  2510. "version": "1.0.8",
  2511. "version_normalized": "1.0.8.0",
  2512. "source": {
  2513. "type": "git",
  2514. "url": "https://github.com/sebastianbergmann/php-timer.git",
  2515. "reference": "38e9124049cf1a164f1e4537caf19c99bf1eb260"
  2516. },
  2517. "dist": {
  2518. "type": "zip",
  2519. "url": "https://api.github.com/repos/sebastianbergmann/php-timer/zipball/38e9124049cf1a164f1e4537caf19c99bf1eb260",
  2520. "reference": "38e9124049cf1a164f1e4537caf19c99bf1eb260",
  2521. "shasum": ""
  2522. },
  2523. "require": {
  2524. "php": ">=5.3.3"
  2525. },
  2526. "require-dev": {
  2527. "phpunit/phpunit": "~4|~5"
  2528. },
  2529. "time": "2016-05-12T18:03:57+00:00",
  2530. "type": "library",
  2531. "installation-source": "dist",
  2532. "autoload": {
  2533. "classmap": [
  2534. "src/"
  2535. ]
  2536. },
  2537. "notification-url": "https://packagist.org/downloads/",
  2538. "license": [
  2539. "BSD-3-Clause"
  2540. ],
  2541. "authors": [
  2542. {
  2543. "name": "Sebastian Bergmann",
  2544. "email": "sb@sebastian-bergmann.de",
  2545. "role": "lead"
  2546. }
  2547. ],
  2548. "description": "Utility class for timing",
  2549. "homepage": "https://github.com/sebastianbergmann/php-timer/",
  2550. "keywords": [
  2551. "timer"
  2552. ]
  2553. },
  2554. {
  2555. "name": "webmozart/assert",
  2556. "version": "1.2.0",
  2557. "version_normalized": "1.2.0.0",
  2558. "source": {
  2559. "type": "git",
  2560. "url": "https://github.com/webmozart/assert.git",
  2561. "reference": "2db61e59ff05fe5126d152bd0655c9ea113e550f"
  2562. },
  2563. "dist": {
  2564. "type": "zip",
  2565. "url": "https://api.github.com/repos/webmozart/assert/zipball/2db61e59ff05fe5126d152bd0655c9ea113e550f",
  2566. "reference": "2db61e59ff05fe5126d152bd0655c9ea113e550f",
  2567. "shasum": ""
  2568. },
  2569. "require": {
  2570. "php": "^5.3.3 || ^7.0"
  2571. },
  2572. "require-dev": {
  2573. "phpunit/phpunit": "^4.6",
  2574. "sebastian/version": "^1.0.1"
  2575. },
  2576. "time": "2016-11-23T20:04:58+00:00",
  2577. "type": "library",
  2578. "extra": {
  2579. "branch-alias": {
  2580. "dev-master": "1.3-dev"
  2581. }
  2582. },
  2583. "installation-source": "dist",
  2584. "autoload": {
  2585. "psr-4": {
  2586. "Webmozart\\Assert\\": "src/"
  2587. }
  2588. },
  2589. "notification-url": "https://packagist.org/downloads/",
  2590. "license": [
  2591. "MIT"
  2592. ],
  2593. "authors": [
  2594. {
  2595. "name": "Bernhard Schussek",
  2596. "email": "bschussek@gmail.com"
  2597. }
  2598. ],
  2599. "description": "Assertions to validate method input/output with nice error messages.",
  2600. "keywords": [
  2601. "assert",
  2602. "check",
  2603. "validate"
  2604. ]
  2605. },
  2606. {
  2607. "name": "phpdocumentor/reflection-common",
  2608. "version": "1.0",
  2609. "version_normalized": "1.0.0.0",
  2610. "source": {
  2611. "type": "git",
  2612. "url": "https://github.com/phpDocumentor/ReflectionCommon.git",
  2613. "reference": "144c307535e82c8fdcaacbcfc1d6d8eeb896687c"
  2614. },
  2615. "dist": {
  2616. "type": "zip",
  2617. "url": "https://api.github.com/repos/phpDocumentor/ReflectionCommon/zipball/144c307535e82c8fdcaacbcfc1d6d8eeb896687c",
  2618. "reference": "144c307535e82c8fdcaacbcfc1d6d8eeb896687c",
  2619. "shasum": ""
  2620. },
  2621. "require": {
  2622. "php": ">=5.5"
  2623. },
  2624. "require-dev": {
  2625. "phpunit/phpunit": "^4.6"
  2626. },
  2627. "time": "2015-12-27T11:43:31+00:00",
  2628. "type": "library",
  2629. "extra": {
  2630. "branch-alias": {
  2631. "dev-master": "1.0.x-dev"
  2632. }
  2633. },
  2634. "installation-source": "dist",
  2635. "autoload": {
  2636. "psr-4": {
  2637. "phpDocumentor\\Reflection\\": [
  2638. "src"
  2639. ]
  2640. }
  2641. },
  2642. "notification-url": "https://packagist.org/downloads/",
  2643. "license": [
  2644. "MIT"
  2645. ],
  2646. "authors": [
  2647. {
  2648. "name": "Jaap van Otterdijk",
  2649. "email": "opensource@ijaap.nl"
  2650. }
  2651. ],
  2652. "description": "Common reflection classes used by phpdocumentor to reflect the code structure",
  2653. "homepage": "http://www.phpdoc.org",
  2654. "keywords": [
  2655. "FQSEN",
  2656. "phpDocumentor",
  2657. "phpdoc",
  2658. "reflection",
  2659. "static analysis"
  2660. ]
  2661. },
  2662. {
  2663. "name": "phpdocumentor/type-resolver",
  2664. "version": "0.2.1",
  2665. "version_normalized": "0.2.1.0",
  2666. "source": {
  2667. "type": "git",
  2668. "url": "https://github.com/phpDocumentor/TypeResolver.git",
  2669. "reference": "e224fb2ea2fba6d3ad6fdaef91cd09a172155ccb"
  2670. },
  2671. "dist": {
  2672. "type": "zip",
  2673. "url": "https://api.github.com/repos/phpDocumentor/TypeResolver/zipball/e224fb2ea2fba6d3ad6fdaef91cd09a172155ccb",
  2674. "reference": "e224fb2ea2fba6d3ad6fdaef91cd09a172155ccb",
  2675. "shasum": ""
  2676. },
  2677. "require": {
  2678. "php": ">=5.5",
  2679. "phpdocumentor/reflection-common": "^1.0"
  2680. },
  2681. "require-dev": {
  2682. "mockery/mockery": "^0.9.4",
  2683. "phpunit/phpunit": "^5.2||^4.8.24"
  2684. },
  2685. "time": "2016-11-25T06:54:22+00:00",
  2686. "type": "library",
  2687. "extra": {
  2688. "branch-alias": {
  2689. "dev-master": "1.0.x-dev"
  2690. }
  2691. },
  2692. "installation-source": "dist",
  2693. "autoload": {
  2694. "psr-4": {
  2695. "phpDocumentor\\Reflection\\": [
  2696. "src/"
  2697. ]
  2698. }
  2699. },
  2700. "notification-url": "https://packagist.org/downloads/",
  2701. "license": [
  2702. "MIT"
  2703. ],
  2704. "authors": [
  2705. {
  2706. "name": "Mike van Riel",
  2707. "email": "me@mikevanriel.com"
  2708. }
  2709. ]
  2710. },
  2711. {
  2712. "name": "phpdocumentor/reflection-docblock",
  2713. "version": "3.1.1",
  2714. "version_normalized": "3.1.1.0",
  2715. "source": {
  2716. "type": "git",
  2717. "url": "https://github.com/phpDocumentor/ReflectionDocBlock.git",
  2718. "reference": "8331b5efe816ae05461b7ca1e721c01b46bafb3e"
  2719. },
  2720. "dist": {
  2721. "type": "zip",
  2722. "url": "https://api.github.com/repos/phpDocumentor/ReflectionDocBlock/zipball/8331b5efe816ae05461b7ca1e721c01b46bafb3e",
  2723. "reference": "8331b5efe816ae05461b7ca1e721c01b46bafb3e",
  2724. "shasum": ""
  2725. },
  2726. "require": {
  2727. "php": ">=5.5",
  2728. "phpdocumentor/reflection-common": "^1.0@dev",
  2729. "phpdocumentor/type-resolver": "^0.2.0",
  2730. "webmozart/assert": "^1.0"
  2731. },
  2732. "require-dev": {
  2733. "mockery/mockery": "^0.9.4",
  2734. "phpunit/phpunit": "^4.4"
  2735. },
  2736. "time": "2016-09-30T07:12:33+00:00",
  2737. "type": "library",
  2738. "installation-source": "dist",
  2739. "autoload": {
  2740. "psr-4": {
  2741. "phpDocumentor\\Reflection\\": [
  2742. "src/"
  2743. ]
  2744. }
  2745. },
  2746. "notification-url": "https://packagist.org/downloads/",
  2747. "license": [
  2748. "MIT"
  2749. ],
  2750. "authors": [
  2751. {
  2752. "name": "Mike van Riel",
  2753. "email": "me@mikevanriel.com"
  2754. }
  2755. ],
  2756. "description": "With this component, a library can provide support for annotations via DocBlocks or otherwise retrieve information that is embedded in a DocBlock."
  2757. },
  2758. {
  2759. "name": "phpspec/prophecy",
  2760. "version": "v1.6.2",
  2761. "version_normalized": "1.6.2.0",
  2762. "source": {
  2763. "type": "git",
  2764. "url": "https://github.com/phpspec/prophecy.git",
  2765. "reference": "6c52c2722f8460122f96f86346600e1077ce22cb"
  2766. },
  2767. "dist": {
  2768. "type": "zip",
  2769. "url": "https://api.github.com/repos/phpspec/prophecy/zipball/6c52c2722f8460122f96f86346600e1077ce22cb",
  2770. "reference": "6c52c2722f8460122f96f86346600e1077ce22cb",
  2771. "shasum": ""
  2772. },
  2773. "require": {
  2774. "doctrine/instantiator": "^1.0.2",
  2775. "php": "^5.3|^7.0",
  2776. "phpdocumentor/reflection-docblock": "^2.0|^3.0.2",
  2777. "sebastian/comparator": "^1.1",
  2778. "sebastian/recursion-context": "^1.0|^2.0"
  2779. },
  2780. "require-dev": {
  2781. "phpspec/phpspec": "^2.0",
  2782. "phpunit/phpunit": "^4.8 || ^5.6.5"
  2783. },
  2784. "time": "2016-11-21T14:58:47+00:00",
  2785. "type": "library",
  2786. "extra": {
  2787. "branch-alias": {
  2788. "dev-master": "1.6.x-dev"
  2789. }
  2790. },
  2791. "installation-source": "dist",
  2792. "autoload": {
  2793. "psr-0": {
  2794. "Prophecy\\": "src/"
  2795. }
  2796. },
  2797. "notification-url": "https://packagist.org/downloads/",
  2798. "license": [
  2799. "MIT"
  2800. ],
  2801. "authors": [
  2802. {
  2803. "name": "Konstantin Kudryashov",
  2804. "email": "ever.zet@gmail.com",
  2805. "homepage": "http://everzet.com"
  2806. },
  2807. {
  2808. "name": "Marcello Duarte",
  2809. "email": "marcello.duarte@gmail.com"
  2810. }
  2811. ],
  2812. "description": "Highly opinionated mocking framework for PHP 5.3+",
  2813. "homepage": "https://github.com/phpspec/prophecy",
  2814. "keywords": [
  2815. "Double",
  2816. "Dummy",
  2817. "fake",
  2818. "mock",
  2819. "spy",
  2820. "stub"
  2821. ]
  2822. },
  2823. {
  2824. "name": "myclabs/deep-copy",
  2825. "version": "1.6.0",
  2826. "version_normalized": "1.6.0.0",
  2827. "source": {
  2828. "type": "git",
  2829. "url": "https://github.com/myclabs/DeepCopy.git",
  2830. "reference": "5a5a9fc8025a08d8919be87d6884d5a92520cefe"
  2831. },
  2832. "dist": {
  2833. "type": "zip",
  2834. "url": "https://api.github.com/repos/myclabs/DeepCopy/zipball/5a5a9fc8025a08d8919be87d6884d5a92520cefe",
  2835. "reference": "5a5a9fc8025a08d8919be87d6884d5a92520cefe",
  2836. "shasum": ""
  2837. },
  2838. "require": {
  2839. "php": ">=5.4.0"
  2840. },
  2841. "require-dev": {
  2842. "doctrine/collections": "1.*",
  2843. "phpunit/phpunit": "~4.1"
  2844. },
  2845. "time": "2017-01-26T22:05:40+00:00",
  2846. "type": "library",
  2847. "installation-source": "dist",
  2848. "autoload": {
  2849. "psr-4": {
  2850. "DeepCopy\\": "src/DeepCopy/"
  2851. }
  2852. },
  2853. "notification-url": "https://packagist.org/downloads/",
  2854. "license": [
  2855. "MIT"
  2856. ],
  2857. "description": "Create deep copies (clones) of your objects",
  2858. "homepage": "https://github.com/myclabs/DeepCopy",
  2859. "keywords": [
  2860. "clone",
  2861. "copy",
  2862. "duplicate",
  2863. "object",
  2864. "object graph"
  2865. ]
  2866. },
  2867. {
  2868. "name": "phpunit/phpunit",
  2869. "version": "5.7.9",
  2870. "version_normalized": "5.7.9.0",
  2871. "source": {
  2872. "type": "git",
  2873. "url": "https://github.com/sebastianbergmann/phpunit.git",
  2874. "reference": "69f832b87c731d5cacad7f91948778fe98335fdd"
  2875. },
  2876. "dist": {
  2877. "type": "zip",
  2878. "url": "https://api.github.com/repos/sebastianbergmann/phpunit/zipball/69f832b87c731d5cacad7f91948778fe98335fdd",
  2879. "reference": "69f832b87c731d5cacad7f91948778fe98335fdd",
  2880. "shasum": ""
  2881. },
  2882. "require": {
  2883. "ext-dom": "*",
  2884. "ext-json": "*",
  2885. "ext-libxml": "*",
  2886. "ext-mbstring": "*",
  2887. "ext-xml": "*",
  2888. "myclabs/deep-copy": "~1.3",
  2889. "php": "^5.6 || ^7.0",
  2890. "phpspec/prophecy": "^1.6.2",
  2891. "phpunit/php-code-coverage": "^4.0.4",
  2892. "phpunit/php-file-iterator": "~1.4",
  2893. "phpunit/php-text-template": "~1.2",
  2894. "phpunit/php-timer": "^1.0.6",
  2895. "phpunit/phpunit-mock-objects": "^3.2",
  2896. "sebastian/comparator": "~1.2.2",
  2897. "sebastian/diff": "~1.2",
  2898. "sebastian/environment": "^1.3.4 || ^2.0",
  2899. "sebastian/exporter": "~2.0",
  2900. "sebastian/global-state": "^1.0 || ^2.0",
  2901. "sebastian/object-enumerator": "~2.0",
  2902. "sebastian/resource-operations": "~1.0",
  2903. "sebastian/version": "~1.0|~2.0",
  2904. "symfony/yaml": "~2.1|~3.0"
  2905. },
  2906. "conflict": {
  2907. "phpdocumentor/reflection-docblock": "3.0.2"
  2908. },
  2909. "require-dev": {
  2910. "ext-pdo": "*"
  2911. },
  2912. "suggest": {
  2913. "ext-xdebug": "*",
  2914. "phpunit/php-invoker": "~1.1"
  2915. },
  2916. "time": "2017-01-28T06:14:33+00:00",
  2917. "bin": [
  2918. "phpunit"
  2919. ],
  2920. "type": "library",
  2921. "extra": {
  2922. "branch-alias": {
  2923. "dev-master": "5.7.x-dev"
  2924. }
  2925. },
  2926. "installation-source": "dist",
  2927. "autoload": {
  2928. "classmap": [
  2929. "src/"
  2930. ]
  2931. },
  2932. "notification-url": "https://packagist.org/downloads/",
  2933. "license": [
  2934. "BSD-3-Clause"
  2935. ],
  2936. "authors": [
  2937. {
  2938. "name": "Sebastian Bergmann",
  2939. "email": "sebastian@phpunit.de",
  2940. "role": "lead"
  2941. }
  2942. ],
  2943. "description": "The PHP Unit Testing framework.",
  2944. "homepage": "https://phpunit.de/",
  2945. "keywords": [
  2946. "phpunit",
  2947. "testing",
  2948. "xunit"
  2949. ]
  2950. },
  2951. {
  2952. "name": "codeception/base",
  2953. "version": "2.2.8",
  2954. "version_normalized": "2.2.8.0",
  2955. "source": {
  2956. "type": "git",
  2957. "url": "https://github.com/Codeception/base.git",
  2958. "reference": "cd71c312909aa2998e931d04c9057995bcf49185"
  2959. },
  2960. "dist": {
  2961. "type": "zip",
  2962. "url": "https://api.github.com/repos/Codeception/base/zipball/cd71c312909aa2998e931d04c9057995bcf49185",
  2963. "reference": "cd71c312909aa2998e931d04c9057995bcf49185",
  2964. "shasum": ""
  2965. },
  2966. "require": {
  2967. "behat/gherkin": "~4.4.0",
  2968. "ext-json": "*",
  2969. "ext-mbstring": "*",
  2970. "guzzlehttp/psr7": "~1.0",
  2971. "php": ">=5.4.0 <8.0",
  2972. "phpunit/php-code-coverage": ">=2.1.3 <5.0",
  2973. "phpunit/phpunit": ">4.8.20 <6.0",
  2974. "sebastian/comparator": "~1.1",
  2975. "sebastian/diff": "^1.4",
  2976. "symfony/browser-kit": ">=2.7 <4.0",
  2977. "symfony/console": ">=2.7 <4.0",
  2978. "symfony/css-selector": ">=2.7 <4.0",
  2979. "symfony/dom-crawler": ">=2.7.5 <4.0",
  2980. "symfony/event-dispatcher": ">=2.7 <4.0",
  2981. "symfony/finder": ">=2.7 <4.0",
  2982. "symfony/yaml": ">=2.7 <4.0"
  2983. },
  2984. "require-dev": {
  2985. "codeception/specify": "~0.3",
  2986. "facebook/graph-sdk": "~5.3",
  2987. "flow/jsonpath": "~0.2",
  2988. "league/factory-muffin": "^3.0",
  2989. "league/factory-muffin-faker": "^1.0",
  2990. "mongodb/mongodb": "^1.0",
  2991. "monolog/monolog": "~1.8",
  2992. "pda/pheanstalk": "~3.0",
  2993. "php-amqplib/php-amqplib": "~2.4",
  2994. "predis/predis": "^1.0",
  2995. "squizlabs/php_codesniffer": "~2.0",
  2996. "vlucas/phpdotenv": "^2.4.0"
  2997. },
  2998. "suggest": {
  2999. "codeception/specify": "BDD-style code blocks",
  3000. "codeception/verify": "BDD-style assertions",
  3001. "flow/jsonpath": "For using JSONPath in REST module",
  3002. "league/factory-muffin": "For DataFactory module",
  3003. "league/factory-muffin-faker": "For Faker support in DataFactory module",
  3004. "phpseclib/phpseclib": "for SFTP option in FTP Module",
  3005. "symfony/phpunit-bridge": "For phpunit-bridge support"
  3006. },
  3007. "time": "2017-01-20T01:01:44+00:00",
  3008. "bin": [
  3009. "codecept"
  3010. ],
  3011. "type": "library",
  3012. "extra": {
  3013. "branch-alias": []
  3014. },
  3015. "installation-source": "dist",
  3016. "autoload": {
  3017. "psr-4": {
  3018. "Codeception\\": "src\\Codeception",
  3019. "Codeception\\Extension\\": "ext"
  3020. }
  3021. },
  3022. "notification-url": "https://packagist.org/downloads/",
  3023. "license": [
  3024. "MIT"
  3025. ],
  3026. "authors": [
  3027. {
  3028. "name": "Michael Bodnarchuk",
  3029. "email": "davert@mail.ua",
  3030. "homepage": "http://codegyre.com"
  3031. }
  3032. ],
  3033. "description": "BDD-style testing framework",
  3034. "homepage": "http://codeception.com/",
  3035. "keywords": [
  3036. "BDD",
  3037. "TDD",
  3038. "acceptance testing",
  3039. "functional testing",
  3040. "unit testing"
  3041. ]
  3042. },
  3043. {
  3044. "name": "codeception/verify",
  3045. "version": "0.3.2",
  3046. "version_normalized": "0.3.2.0",
  3047. "source": {
  3048. "type": "git",
  3049. "url": "https://github.com/Codeception/Verify.git",
  3050. "reference": "b06d706261d1fee0cc312bacc5c1b7c506e5213a"
  3051. },
  3052. "dist": {
  3053. "type": "zip",
  3054. "url": "https://api.github.com/repos/Codeception/Verify/zipball/b06d706261d1fee0cc312bacc5c1b7c506e5213a",
  3055. "reference": "b06d706261d1fee0cc312bacc5c1b7c506e5213a",
  3056. "shasum": ""
  3057. },
  3058. "require-dev": {
  3059. "phpunit/phpunit": "~4.0"
  3060. },
  3061. "time": "2016-08-29T22:49:25+00:00",
  3062. "type": "library",
  3063. "installation-source": "dist",
  3064. "autoload": {
  3065. "files": [
  3066. "src/Codeception/function.php"
  3067. ]
  3068. },
  3069. "notification-url": "https://packagist.org/downloads/",
  3070. "license": [
  3071. "MIT"
  3072. ],
  3073. "authors": [
  3074. {
  3075. "name": "Michael Bodnarchuk",
  3076. "email": "davert.php@mailican.com"
  3077. }
  3078. ],
  3079. "description": "BDD assertion library for PHPUnit"
  3080. }
  3081. ]