composer.lock 71 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049
  1. {
  2. "_readme": [
  3. "This file locks the dependencies of your project to a known state",
  4. "Read more about it at https://getcomposer.org/doc/01-basic-usage.md#composer-lock-the-lock-file",
  5. "This file is @generated automatically"
  6. ],
  7. "content-hash": "e176081a1f4f4a8ff703c12a9329afeb",
  8. "packages": [
  9. {
  10. "name": "aliyuncs/oss-sdk-php",
  11. "version": "v2.3.0",
  12. "source": {
  13. "type": "git",
  14. "url": "https://github.com/aliyun/aliyun-oss-php-sdk.git",
  15. "reference": "e69f57916678458642ac9d2fd341ae78a56996c8"
  16. },
  17. "dist": {
  18. "type": "zip",
  19. "url": "https://api.github.com/repos/aliyun/aliyun-oss-php-sdk/zipball/e69f57916678458642ac9d2fd341ae78a56996c8",
  20. "reference": "e69f57916678458642ac9d2fd341ae78a56996c8",
  21. "shasum": "",
  22. "mirrors": [
  23. {
  24. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  25. "preferred": true
  26. }
  27. ]
  28. },
  29. "require": {
  30. "php": ">=5.3"
  31. },
  32. "require-dev": {
  33. "phpunit/phpunit": "~4.0",
  34. "satooshi/php-coveralls": "~1.0"
  35. },
  36. "type": "library",
  37. "autoload": {
  38. "psr-4": {
  39. "OSS\\": "src/OSS"
  40. }
  41. },
  42. "notification-url": "https://packagist.org/downloads/",
  43. "license": [
  44. "MIT"
  45. ],
  46. "authors": [
  47. {
  48. "name": "Aliyuncs",
  49. "homepage": "http://www.aliyun.com"
  50. }
  51. ],
  52. "description": "Aliyun OSS SDK for PHP",
  53. "homepage": "http://www.aliyun.com/product/oss/",
  54. "time": "2018-01-08T06:59:35+00:00"
  55. },
  56. {
  57. "name": "bower-asset/bootstrap",
  58. "version": "v3.4.1",
  59. "source": {
  60. "type": "git",
  61. "url": "https://github.com/twbs/bootstrap.git",
  62. "reference": "68b0d231a13201eb14acd3dc84e51543d16e5f7e"
  63. },
  64. "dist": {
  65. "type": "zip",
  66. "url": "https://api.github.com/repos/twbs/bootstrap/zipball/68b0d231a13201eb14acd3dc84e51543d16e5f7e",
  67. "reference": "68b0d231a13201eb14acd3dc84e51543d16e5f7e",
  68. "shasum": ""
  69. },
  70. "require": {
  71. "bower-asset/jquery": ">=1.9.1,<=3"
  72. },
  73. "type": "bower-asset-library",
  74. "extra": {
  75. "bower-asset-main": [
  76. "less/bootstrap.less",
  77. "dist/js/bootstrap.js"
  78. ],
  79. "bower-asset-ignore": [
  80. "/.*",
  81. "_config.yml",
  82. "CNAME",
  83. "composer.json",
  84. "CONTRIBUTING.md",
  85. "docs",
  86. "js/tests",
  87. "test-infra"
  88. ]
  89. },
  90. "license": [
  91. "MIT"
  92. ],
  93. "description": "The most popular front-end framework for developing responsive, mobile first projects on the web.",
  94. "keywords": [
  95. "css",
  96. "framework",
  97. "front-end",
  98. "js",
  99. "less",
  100. "mobile-first",
  101. "responsive",
  102. "web"
  103. ]
  104. },
  105. {
  106. "name": "bower-asset/jquery",
  107. "version": "2.2.4",
  108. "source": {
  109. "type": "git",
  110. "url": "https://github.com/jquery/jquery-dist.git",
  111. "reference": "c0185ab7c75aab88762c5aae780b9d83b80eda72"
  112. },
  113. "dist": {
  114. "type": "zip",
  115. "url": "https://api.github.com/repos/jquery/jquery-dist/zipball/c0185ab7c75aab88762c5aae780b9d83b80eda72",
  116. "reference": "c0185ab7c75aab88762c5aae780b9d83b80eda72",
  117. "shasum": ""
  118. },
  119. "type": "bower-asset-library",
  120. "extra": {
  121. "bower-asset-main": "dist/jquery.js",
  122. "bower-asset-ignore": [
  123. "package.json"
  124. ]
  125. },
  126. "license": [
  127. "MIT"
  128. ],
  129. "keywords": [
  130. "browser",
  131. "javascript",
  132. "jquery",
  133. "library"
  134. ]
  135. },
  136. {
  137. "name": "bower-asset/jquery.inputmask",
  138. "version": "3.3.11",
  139. "source": {
  140. "type": "git",
  141. "url": "https://github.com/RobinHerbots/Inputmask.git",
  142. "reference": "5e670ad62f50c738388d4dcec78d2888505ad77b"
  143. },
  144. "dist": {
  145. "type": "zip",
  146. "url": "https://api.github.com/repos/RobinHerbots/Inputmask/zipball/5e670ad62f50c738388d4dcec78d2888505ad77b",
  147. "reference": "5e670ad62f50c738388d4dcec78d2888505ad77b",
  148. "shasum": ""
  149. },
  150. "require": {
  151. "bower-asset/jquery": ">=1.7"
  152. },
  153. "type": "bower-asset-library",
  154. "extra": {
  155. "bower-asset-main": [
  156. "./dist/inputmask/inputmask.js",
  157. "./dist/inputmask/inputmask.extensions.js",
  158. "./dist/inputmask/inputmask.date.extensions.js",
  159. "./dist/inputmask/inputmask.numeric.extensions.js",
  160. "./dist/inputmask/inputmask.phone.extensions.js",
  161. "./dist/inputmask/jquery.inputmask.js",
  162. "./dist/inputmask/global/document.js",
  163. "./dist/inputmask/global/window.js",
  164. "./dist/inputmask/phone-codes/phone.js",
  165. "./dist/inputmask/phone-codes/phone-be.js",
  166. "./dist/inputmask/phone-codes/phone-nl.js",
  167. "./dist/inputmask/phone-codes/phone-ru.js",
  168. "./dist/inputmask/phone-codes/phone-uk.js",
  169. "./dist/inputmask/dependencyLibs/inputmask.dependencyLib.jqlite.js",
  170. "./dist/inputmask/dependencyLibs/inputmask.dependencyLib.jquery.js",
  171. "./dist/inputmask/dependencyLibs/inputmask.dependencyLib.js",
  172. "./dist/inputmask/bindings/inputmask.binding.js"
  173. ],
  174. "bower-asset-ignore": [
  175. "**/*",
  176. "!dist/*",
  177. "!dist/inputmask/*",
  178. "!dist/min/*",
  179. "!dist/min/inputmask/*"
  180. ]
  181. },
  182. "license": [
  183. "http://opensource.org/licenses/mit-license.php"
  184. ],
  185. "description": "Inputmask is a javascript library which creates an input mask. Inputmask can run against vanilla javascript, jQuery and jqlite.",
  186. "keywords": [
  187. "form",
  188. "input",
  189. "inputmask",
  190. "jquery",
  191. "mask",
  192. "plugins"
  193. ]
  194. },
  195. {
  196. "name": "bower-asset/punycode",
  197. "version": "v1.3.2",
  198. "source": {
  199. "type": "git",
  200. "url": "https://github.com/bestiejs/punycode.js.git",
  201. "reference": "38c8d3131a82567bfef18da09f7f4db68c84f8a3"
  202. },
  203. "dist": {
  204. "type": "zip",
  205. "url": "https://api.github.com/repos/bestiejs/punycode.js/zipball/38c8d3131a82567bfef18da09f7f4db68c84f8a3",
  206. "reference": "38c8d3131a82567bfef18da09f7f4db68c84f8a3",
  207. "shasum": ""
  208. },
  209. "type": "bower-asset-library",
  210. "extra": {
  211. "bower-asset-main": "punycode.js",
  212. "bower-asset-ignore": [
  213. "coverage",
  214. "tests",
  215. ".*",
  216. "component.json",
  217. "Gruntfile.js",
  218. "node_modules",
  219. "package.json"
  220. ]
  221. }
  222. },
  223. {
  224. "name": "bower-asset/yii2-pjax",
  225. "version": "dev-master",
  226. "source": {
  227. "type": "git",
  228. "url": "https://github.com/yiisoft/jquery-pjax.git",
  229. "reference": "c39f2393883f370d3c0d63d80a122534131b0f56"
  230. },
  231. "dist": {
  232. "type": "zip",
  233. "url": "https://api.github.com/repos/yiisoft/jquery-pjax/zipball/c39f2393883f370d3c0d63d80a122534131b0f56",
  234. "reference": "c39f2393883f370d3c0d63d80a122534131b0f56",
  235. "shasum": ""
  236. },
  237. "require": {
  238. "bower-asset/jquery": ">=1.8"
  239. },
  240. "type": "bower-asset-library",
  241. "extra": {
  242. "bower-asset-main": "./jquery.pjax.js",
  243. "bower-asset-ignore": [
  244. ".travis.yml",
  245. "Gemfile",
  246. "Gemfile.lock",
  247. "CONTRIBUTING.md",
  248. "vendor/",
  249. "script/",
  250. "test/"
  251. ],
  252. "branch-alias": {
  253. "dev-master": "2.0.8-dev"
  254. }
  255. },
  256. "license": [
  257. "MIT"
  258. ]
  259. },
  260. {
  261. "name": "cebe/markdown",
  262. "version": "1.1.2",
  263. "source": {
  264. "type": "git",
  265. "url": "https://github.com/cebe/markdown.git",
  266. "reference": "25b28bae8a6f185b5030673af77b32e1163d5c6e"
  267. },
  268. "dist": {
  269. "type": "zip",
  270. "url": "https://api.github.com/repos/cebe/markdown/zipball/25b28bae8a6f185b5030673af77b32e1163d5c6e",
  271. "reference": "25b28bae8a6f185b5030673af77b32e1163d5c6e",
  272. "shasum": "",
  273. "mirrors": [
  274. {
  275. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  276. "preferred": true
  277. }
  278. ]
  279. },
  280. "require": {
  281. "lib-pcre": "*",
  282. "php": ">=5.4.0"
  283. },
  284. "require-dev": {
  285. "cebe/indent": "*",
  286. "facebook/xhprof": "*@dev",
  287. "phpunit/phpunit": "4.1.*"
  288. },
  289. "bin": [
  290. "bin/markdown"
  291. ],
  292. "type": "library",
  293. "extra": {
  294. "branch-alias": {
  295. "dev-master": "1.1.x-dev"
  296. }
  297. },
  298. "autoload": {
  299. "psr-4": {
  300. "cebe\\markdown\\": ""
  301. }
  302. },
  303. "notification-url": "https://packagist.org/downloads/",
  304. "license": [
  305. "MIT"
  306. ],
  307. "authors": [
  308. {
  309. "name": "Carsten Brandt",
  310. "email": "mail@cebe.cc",
  311. "homepage": "http://cebe.cc/",
  312. "role": "Creator"
  313. }
  314. ],
  315. "description": "A super fast, highly extensible markdown parser for PHP",
  316. "homepage": "https://github.com/cebe/markdown#readme",
  317. "keywords": [
  318. "extensible",
  319. "fast",
  320. "gfm",
  321. "markdown",
  322. "markdown-extra"
  323. ],
  324. "time": "2017-07-16T21:13:23+00:00"
  325. },
  326. {
  327. "name": "ezyang/htmlpurifier",
  328. "version": "v4.10.0",
  329. "source": {
  330. "type": "git",
  331. "url": "https://github.com/ezyang/htmlpurifier.git",
  332. "reference": "d85d39da4576a6934b72480be6978fb10c860021"
  333. },
  334. "dist": {
  335. "type": "zip",
  336. "url": "https://api.github.com/repos/ezyang/htmlpurifier/zipball/d85d39da4576a6934b72480be6978fb10c860021",
  337. "reference": "d85d39da4576a6934b72480be6978fb10c860021",
  338. "shasum": "",
  339. "mirrors": [
  340. {
  341. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  342. "preferred": true
  343. }
  344. ]
  345. },
  346. "require": {
  347. "php": ">=5.2"
  348. },
  349. "require-dev": {
  350. "simpletest/simpletest": "^1.1"
  351. },
  352. "type": "library",
  353. "autoload": {
  354. "psr-0": {
  355. "HTMLPurifier": "library/"
  356. },
  357. "files": [
  358. "library/HTMLPurifier.composer.php"
  359. ]
  360. },
  361. "notification-url": "https://packagist.org/downloads/",
  362. "license": [
  363. "LGPL"
  364. ],
  365. "authors": [
  366. {
  367. "name": "Edward Z. Yang",
  368. "email": "admin@htmlpurifier.org",
  369. "homepage": "http://ezyang.com"
  370. }
  371. ],
  372. "description": "Standards compliant HTML filter written in PHP",
  373. "homepage": "http://htmlpurifier.org/",
  374. "keywords": [
  375. "html"
  376. ],
  377. "time": "2018-02-23T01:58:20+00:00"
  378. },
  379. {
  380. "name": "guzzlehttp/guzzle",
  381. "version": "dev-master",
  382. "source": {
  383. "type": "git",
  384. "url": "https://github.com/guzzle/guzzle.git",
  385. "reference": "bf595424e4d442a190582e088985dc835a789071"
  386. },
  387. "dist": {
  388. "type": "zip",
  389. "url": "https://api.github.com/repos/guzzle/guzzle/zipball/bf595424e4d442a190582e088985dc835a789071",
  390. "reference": "bf595424e4d442a190582e088985dc835a789071",
  391. "shasum": "",
  392. "mirrors": [
  393. {
  394. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  395. "preferred": true
  396. }
  397. ]
  398. },
  399. "require": {
  400. "ext-json": "*",
  401. "guzzlehttp/promises": "^1.0",
  402. "guzzlehttp/psr7": "^1.4",
  403. "php": ">=5.5"
  404. },
  405. "require-dev": {
  406. "ext-curl": "*",
  407. "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.4 || ^7.0",
  408. "psr/log": "^1.1"
  409. },
  410. "suggest": {
  411. "psr/log": "Required for using the Log middleware"
  412. },
  413. "type": "library",
  414. "extra": {
  415. "branch-alias": {
  416. "dev-master": "6.3-dev"
  417. }
  418. },
  419. "autoload": {
  420. "psr-4": {
  421. "GuzzleHttp\\": "src/"
  422. },
  423. "files": [
  424. "src/functions_include.php"
  425. ]
  426. },
  427. "notification-url": "https://packagist.org/downloads/",
  428. "license": [
  429. "MIT"
  430. ],
  431. "authors": [
  432. {
  433. "name": "Michael Dowling",
  434. "email": "mtdowling@gmail.com",
  435. "homepage": "https://github.com/mtdowling"
  436. }
  437. ],
  438. "description": "Guzzle is a PHP HTTP client library",
  439. "homepage": "http://guzzlephp.org/",
  440. "keywords": [
  441. "client",
  442. "curl",
  443. "framework",
  444. "http",
  445. "http client",
  446. "rest",
  447. "web service"
  448. ],
  449. "time": "2019-04-15T08:22:37+00:00"
  450. },
  451. {
  452. "name": "guzzlehttp/promises",
  453. "version": "dev-master",
  454. "source": {
  455. "type": "git",
  456. "url": "https://github.com/guzzle/promises.git",
  457. "reference": "926eaa3ff73cde2becf652b785831bcb7618568a"
  458. },
  459. "dist": {
  460. "type": "zip",
  461. "url": "https://api.github.com/repos/guzzle/promises/zipball/926eaa3ff73cde2becf652b785831bcb7618568a",
  462. "reference": "926eaa3ff73cde2becf652b785831bcb7618568a",
  463. "shasum": "",
  464. "mirrors": [
  465. {
  466. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  467. "preferred": true
  468. }
  469. ]
  470. },
  471. "require": {
  472. "php": ">=5.5.0"
  473. },
  474. "require-dev": {
  475. "phpunit/phpunit": "^4.8.36"
  476. },
  477. "type": "library",
  478. "extra": {
  479. "branch-alias": {
  480. "dev-master": "1.4-dev"
  481. }
  482. },
  483. "autoload": {
  484. "psr-4": {
  485. "GuzzleHttp\\Promise\\": "src/"
  486. },
  487. "files": [
  488. "src/functions_include.php"
  489. ]
  490. },
  491. "notification-url": "https://packagist.org/downloads/",
  492. "license": [
  493. "MIT"
  494. ],
  495. "authors": [
  496. {
  497. "name": "Michael Dowling",
  498. "email": "mtdowling@gmail.com",
  499. "homepage": "https://github.com/mtdowling"
  500. }
  501. ],
  502. "description": "Guzzle promises library",
  503. "keywords": [
  504. "promise"
  505. ],
  506. "time": "2018-10-30T00:20:04+00:00"
  507. },
  508. {
  509. "name": "guzzlehttp/psr7",
  510. "version": "dev-master",
  511. "source": {
  512. "type": "git",
  513. "url": "https://github.com/guzzle/psr7.git",
  514. "reference": "a346647434953deb5bd599d92922b2d225e25170"
  515. },
  516. "dist": {
  517. "type": "zip",
  518. "url": "https://api.github.com/repos/guzzle/psr7/zipball/a346647434953deb5bd599d92922b2d225e25170",
  519. "reference": "a346647434953deb5bd599d92922b2d225e25170",
  520. "shasum": "",
  521. "mirrors": [
  522. {
  523. "url": "https://dl.laravel-china.org/%package%/%reference%.%type%",
  524. "preferred": true
  525. }
  526. ]
  527. },
  528. "require": {
  529. "php": ">=5.4.0",
  530. "psr/http-message": "~1.0",
  531. "ralouphie/getallheaders": "^2.0.5 || ^3.0.0"
  532. },
  533. "provide": {
  534. "psr/http-message-implementation": "1.0"
  535. },
  536. "require-dev": {
  537. "ext-zlib": "*",
  538. "phpunit/phpunit": "~4.8.36 || ^5.7.27 || ^6.5.8"
  539. },
  540. "suggest": {
  541. "zendframework/zend-httphandlerrunner": "Emit PSR-7 responses"
  542. },
  543. "type": "library",
  544. "extra": {
  545. "branch-alias": {
  546. "dev-master": "1.5-dev"
  547. }
  548. },
  549. "autoload": {
  550. "psr-4": {
  551. "GuzzleHttp\\Psr7\\": "src/"
  552. },
  553. "files": [
  554. "src/functions_include.php"
  555. ]
  556. },
  557. "notification-url": "https://packagist.org/downloads/",
  558. "license": [
  559. "MIT"
  560. ],
  561. "authors": [
  562. {
  563. "name": "Michael Dowling",
  564. "email": "mtdowling@gmail.com",
  565. "homepage": "https://github.com/mtdowling"
  566. },
  567. {
  568. "name": "Tobias Schultze",
  569. "homepage": "https://github.com/Tobion"
  570. }
  571. ],
  572. "description": "PSR-7 message implementation that also provides common utility methods",
  573. "keywords": [
  574. "http",
  575. "message",
  576. "psr-7",
  577. "request",
  578. "response",
  579. "stream",
  580. "uri",
  581. "url"
  582. ],
  583. "time": "2019-04-01T06:40:32+00:00"
  584. },
  585. {
  586. "name": "hollisho/yii2-redis-pub-sub",
  587. "version": "dev-master",
  588. "source": {
  589. "type": "git",
  590. "url": "https://github.com/hollisho/yii2-redis-pub-sub.git",
  591. "reference": "d19daa3c6928bb28aca180a8b77e952ef435d41b"
  592. },
  593. "dist": {
  594. "type": "zip",
  595. "url": "https://api.github.com/repos/hollisho/yii2-redis-pub-sub/zipball/d19daa3c6928bb28aca180a8b77e952ef435d41b",
  596. "reference": "d19daa3c6928bb28aca180a8b77e952ef435d41b",
  597. "shasum": "",
  598. "mirrors": [
  599. {
  600. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  601. "preferred": true
  602. }
  603. ]
  604. },
  605. "require": {
  606. "php": ">=5.4.0"
  607. },
  608. "type": "library",
  609. "autoload": {
  610. "psr-4": {
  611. "hollisho\\redis_pub_sub\\": "src/"
  612. }
  613. },
  614. "notification-url": "https://packagist.org/downloads/",
  615. "license": [
  616. "MIT"
  617. ],
  618. "authors": [
  619. {
  620. "name": "Hollis Ho",
  621. "email": "he_wenzhi@126.com"
  622. }
  623. ],
  624. "description": "Yii2 Redis pub/sub(Publish,Subscribe)",
  625. "time": "2018-11-22T10:56:17+00:00"
  626. },
  627. {
  628. "name": "jzweb/open-weixin",
  629. "version": "dev-master",
  630. "source": {
  631. "type": "git",
  632. "url": "https://github.com/yidejia/jzweb-open-weixin.git",
  633. "reference": "90283189b6bb5a75a0be3c1fe3f1c49fcfc9b2a7"
  634. },
  635. "dist": {
  636. "type": "zip",
  637. "url": "https://api.github.com/repos/yidejia/jzweb-open-weixin/zipball/90283189b6bb5a75a0be3c1fe3f1c49fcfc9b2a7",
  638. "reference": "90283189b6bb5a75a0be3c1fe3f1c49fcfc9b2a7",
  639. "shasum": "",
  640. "mirrors": [
  641. {
  642. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  643. "preferred": true
  644. }
  645. ]
  646. },
  647. "require": {
  648. "guzzlehttp/guzzle": "~6.0",
  649. "php": ">=5.5.0"
  650. },
  651. "type": "library",
  652. "autoload": {
  653. "psr-4": {
  654. "jzweb\\open\\weixin\\": "src/"
  655. }
  656. },
  657. "notification-url": "https://packagist.org/downloads/",
  658. "license": [
  659. "MIT"
  660. ],
  661. "authors": [
  662. {
  663. "name": "liusongsen",
  664. "email": "liusongsen@gmail.com"
  665. }
  666. ],
  667. "description": "微信开放平台接口",
  668. "time": "2018-06-01T07:58:00+00:00"
  669. },
  670. {
  671. "name": "lcobucci/jwt",
  672. "version": "3.4.x-dev",
  673. "source": {
  674. "type": "git",
  675. "url": "https://github.com/lcobucci/jwt.git",
  676. "reference": "a11ec5f4b4d75d1fcd04e133dede4c317aac9e18"
  677. },
  678. "dist": {
  679. "type": "zip",
  680. "url": "https://api.github.com/repos/lcobucci/jwt/zipball/a11ec5f4b4d75d1fcd04e133dede4c317aac9e18",
  681. "reference": "a11ec5f4b4d75d1fcd04e133dede4c317aac9e18",
  682. "shasum": "",
  683. "mirrors": [
  684. {
  685. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  686. "preferred": true
  687. }
  688. ]
  689. },
  690. "require": {
  691. "ext-mbstring": "*",
  692. "ext-openssl": "*",
  693. "php": "^5.6 || ^7.0"
  694. },
  695. "require-dev": {
  696. "mikey179/vfsstream": "~1.5",
  697. "phpmd/phpmd": "~2.2",
  698. "phpunit/php-invoker": "~1.1",
  699. "phpunit/phpunit": "^5.7 || ^7.3",
  700. "squizlabs/php_codesniffer": "~2.3"
  701. },
  702. "type": "library",
  703. "extra": {
  704. "branch-alias": {
  705. "dev-master": "3.1-dev"
  706. }
  707. },
  708. "autoload": {
  709. "psr-4": {
  710. "Lcobucci\\JWT\\": "src"
  711. }
  712. },
  713. "notification-url": "https://packagist.org/downloads/",
  714. "license": [
  715. "BSD-3-Clause"
  716. ],
  717. "authors": [
  718. {
  719. "name": "Luís Otávio Cobucci Oblonczyk",
  720. "email": "lcobucci@gmail.com",
  721. "role": "Developer"
  722. }
  723. ],
  724. "description": "A simple library to work with JSON Web Token and JSON Web Signature",
  725. "keywords": [
  726. "JWS",
  727. "jwt"
  728. ],
  729. "time": "2019-05-24 18:30:49"
  730. },
  731. {
  732. "name": "linslin/yii2-curl",
  733. "version": "1.0.11",
  734. "source": {
  735. "type": "git",
  736. "url": "https://github.com/linslin/Yii2-Curl.git",
  737. "reference": "0384d175c594a6b76c4eeb91eb3804e24eb867b3"
  738. },
  739. "dist": {
  740. "type": "zip",
  741. "url": "https://api.github.com/repos/linslin/Yii2-Curl/zipball/0384d175c594a6b76c4eeb91eb3804e24eb867b3",
  742. "reference": "0384d175c594a6b76c4eeb91eb3804e24eb867b3",
  743. "shasum": "",
  744. "mirrors": [
  745. {
  746. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  747. "preferred": true
  748. }
  749. ]
  750. },
  751. "require": {
  752. "ext-curl": "*",
  753. "yiisoft/yii2": "*"
  754. },
  755. "type": "yii2-extension",
  756. "autoload": {
  757. "psr-4": {
  758. "linslin\\yii2\\curl\\": ""
  759. }
  760. },
  761. "notification-url": "https://packagist.org/downloads/",
  762. "license": [
  763. "MIT"
  764. ],
  765. "authors": [
  766. {
  767. "name": "Nils Gajsek",
  768. "email": "info@linslin.org"
  769. }
  770. ],
  771. "description": "Easy and nice cURL extension with RESTful support for Yii2",
  772. "keywords": [
  773. " curl",
  774. "extension",
  775. "restful",
  776. "yii2"
  777. ],
  778. "time": "2017-01-17T11:11:37+00:00"
  779. },
  780. {
  781. "name": "mikemadisonweb/yii2-rabbitmq",
  782. "version": "2.2.1",
  783. "source": {
  784. "type": "git",
  785. "url": "https://github.com/mikemadisonweb/yii2-rabbitmq.git",
  786. "reference": "d5574048b813f26f57996b0a7819a879df5826e2"
  787. },
  788. "dist": {
  789. "type": "zip",
  790. "url": "https://api.github.com/repos/mikemadisonweb/yii2-rabbitmq/zipball/d5574048b813f26f57996b0a7819a879df5826e2",
  791. "reference": "d5574048b813f26f57996b0a7819a879df5826e2",
  792. "shasum": "",
  793. "mirrors": [
  794. {
  795. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  796. "preferred": true
  797. }
  798. ]
  799. },
  800. "require": {
  801. "php": "^7.0",
  802. "php-amqplib/php-amqplib": "^2.9",
  803. "yiisoft/yii2": "^2.0"
  804. },
  805. "require-dev": {
  806. "php-coveralls/php-coveralls": "^1.0",
  807. "phpunit/phpunit": "^6.4"
  808. },
  809. "type": "yii2-extension",
  810. "extra": {
  811. "bootstrap": "mikemadisonweb\\rabbitmq\\DependencyInjection"
  812. },
  813. "autoload": {
  814. "psr-4": {
  815. "mikemadisonweb\\rabbitmq\\": ""
  816. }
  817. },
  818. "notification-url": "https://packagist.org/downloads/",
  819. "license": [
  820. "MIT"
  821. ],
  822. "authors": [
  823. {
  824. "name": "Mikhail Bakulin",
  825. "email": "mikemadweb@gmail.com"
  826. }
  827. ],
  828. "description": "Wrapper based on php-amqplib to incorporate messaging in your Yii2 application via RabbitMQ. Inspired by RabbitMqBundle for Symfony 2, really awesome package.",
  829. "keywords": [
  830. "AMQP",
  831. "distributed systems",
  832. "extension",
  833. "message queue",
  834. "rabbitmq",
  835. "yii2"
  836. ],
  837. "time": "2019-04-23T12:48:21+00:00"
  838. },
  839. {
  840. "name": "php-amqplib/php-amqplib",
  841. "version": "dev-master",
  842. "source": {
  843. "type": "git",
  844. "url": "https://github.com/php-amqplib/php-amqplib.git",
  845. "reference": "04e5366f032906d5f716890427e425e71307d3a8"
  846. },
  847. "dist": {
  848. "type": "zip",
  849. "url": "https://api.github.com/repos/php-amqplib/php-amqplib/zipball/04e5366f032906d5f716890427e425e71307d3a8",
  850. "reference": "04e5366f032906d5f716890427e425e71307d3a8",
  851. "shasum": "",
  852. "mirrors": [
  853. {
  854. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  855. "preferred": true
  856. }
  857. ]
  858. },
  859. "require": {
  860. "ext-bcmath": "*",
  861. "ext-sockets": "*",
  862. "php": ">=5.6"
  863. },
  864. "replace": {
  865. "videlalvaro/php-amqplib": "self.version"
  866. },
  867. "require-dev": {
  868. "ext-curl": "*",
  869. "nategood/httpful": "^0.2.20",
  870. "phpdocumentor/phpdocumentor": "dev-master",
  871. "phpunit/phpunit": "^5.7|^6.5|^7.0",
  872. "squizlabs/php_codesniffer": "^2.5"
  873. },
  874. "type": "library",
  875. "extra": {
  876. "branch-alias": {
  877. "dev-master": "2.10-dev"
  878. }
  879. },
  880. "autoload": {
  881. "psr-4": {
  882. "PhpAmqpLib\\": "PhpAmqpLib/"
  883. }
  884. },
  885. "notification-url": "https://packagist.org/downloads/",
  886. "license": [
  887. "LGPL-2.1-or-later"
  888. ],
  889. "authors": [
  890. {
  891. "name": "Alvaro Videla",
  892. "role": "Original Maintainer"
  893. },
  894. {
  895. "name": "John Kelly",
  896. "role": "Maintainer",
  897. "email": "johnmkelly86@gmail.com"
  898. },
  899. {
  900. "name": "Raúl Araya",
  901. "role": "Maintainer",
  902. "email": "nubeiro@gmail.com"
  903. },
  904. {
  905. "name": "Luke Bakken",
  906. "role": "Maintainer",
  907. "email": "luke@bakken.io"
  908. }
  909. ],
  910. "description": "Formerly videlalvaro/php-amqplib. This library is a pure PHP implementation of the AMQP protocol. It's been tested against RabbitMQ.",
  911. "homepage": "https://github.com/php-amqplib/php-amqplib/",
  912. "keywords": [
  913. "message",
  914. "queue",
  915. "rabbitmq"
  916. ],
  917. "time": "2019-08-08T18:28:18+00:00"
  918. },
  919. {
  920. "name": "phpoffice/phpexcel",
  921. "version": "1.8.x-dev",
  922. "source": {
  923. "type": "git",
  924. "url": "https://github.com/PHPOffice/PHPExcel.git",
  925. "reference": "39534e3dd376041d0d50a4714e73375bf45b692b"
  926. },
  927. "dist": {
  928. "type": "zip",
  929. "url": "https://api.github.com/repos/PHPOffice/PHPExcel/zipball/39534e3dd376041d0d50a4714e73375bf45b692b",
  930. "reference": "39534e3dd376041d0d50a4714e73375bf45b692b",
  931. "shasum": "",
  932. "mirrors": [
  933. {
  934. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  935. "preferred": true
  936. }
  937. ]
  938. },
  939. "require": {
  940. "ext-mbstring": "*",
  941. "ext-xml": "*",
  942. "ext-xmlwriter": "*",
  943. "php": "^5.2|^7.0"
  944. },
  945. "require-dev": {
  946. "squizlabs/php_codesniffer": "2.*"
  947. },
  948. "type": "library",
  949. "autoload": {
  950. "psr-0": {
  951. "PHPExcel": "Classes/"
  952. }
  953. },
  954. "notification-url": "https://packagist.org/downloads/",
  955. "license": [
  956. "LGPL-2.1"
  957. ],
  958. "authors": [
  959. {
  960. "name": "Maarten Balliauw",
  961. "homepage": "http://blog.maartenballiauw.be"
  962. },
  963. {
  964. "name": "Erik Tilt"
  965. },
  966. {
  967. "name": "Franck Lefevre",
  968. "homepage": "http://rootslabs.net"
  969. },
  970. {
  971. "name": "Mark Baker",
  972. "homepage": "http://markbakeruk.net"
  973. }
  974. ],
  975. "description": "PHPExcel - OpenXML - Read, Create and Write Spreadsheet documents in PHP - Spreadsheet engine",
  976. "homepage": "https://github.com/PHPOffice/PHPExcel",
  977. "keywords": [
  978. "OpenXML",
  979. "excel",
  980. "php",
  981. "spreadsheet",
  982. "xls",
  983. "xlsx"
  984. ],
  985. "abandoned": "phpoffice/phpspreadsheet",
  986. "time": "2019-01-02T01:38:47+00:00"
  987. },
  988. {
  989. "name": "psr/http-message",
  990. "version": "dev-master",
  991. "source": {
  992. "type": "git",
  993. "url": "https://github.com/php-fig/http-message.git",
  994. "reference": "f6561bf28d520154e4b0ec72be95418abe6d9363"
  995. },
  996. "dist": {
  997. "type": "zip",
  998. "url": "https://api.github.com/repos/php-fig/http-message/zipball/f6561bf28d520154e4b0ec72be95418abe6d9363",
  999. "reference": "f6561bf28d520154e4b0ec72be95418abe6d9363",
  1000. "shasum": "",
  1001. "mirrors": [
  1002. {
  1003. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1004. "preferred": true
  1005. }
  1006. ]
  1007. },
  1008. "require": {
  1009. "php": ">=5.3.0"
  1010. },
  1011. "type": "library",
  1012. "extra": {
  1013. "branch-alias": {
  1014. "dev-master": "1.0.x-dev"
  1015. }
  1016. },
  1017. "autoload": {
  1018. "psr-4": {
  1019. "Psr\\Http\\Message\\": "src/"
  1020. }
  1021. },
  1022. "notification-url": "https://packagist.org/downloads/",
  1023. "license": [
  1024. "MIT"
  1025. ],
  1026. "authors": [
  1027. {
  1028. "name": "PHP-FIG",
  1029. "homepage": "http://www.php-fig.org/"
  1030. }
  1031. ],
  1032. "description": "Common interface for HTTP messages",
  1033. "homepage": "https://github.com/php-fig/http-message",
  1034. "keywords": [
  1035. "http",
  1036. "http-message",
  1037. "psr",
  1038. "psr-7",
  1039. "request",
  1040. "response"
  1041. ],
  1042. "time": "2016-08-06T14:39:51+00:00"
  1043. },
  1044. {
  1045. "name": "pwf0112/wxcrypt",
  1046. "version": "dev-master",
  1047. "source": {
  1048. "type": "git",
  1049. "url": "https://github.com/pwf0112/wxcrypt.git",
  1050. "reference": "4756b3cfb9e4b812d42acc381582485f21abe831"
  1051. },
  1052. "dist": {
  1053. "type": "zip",
  1054. "url": "https://api.github.com/repos/pwf0112/wxcrypt/zipball/4756b3cfb9e4b812d42acc381582485f21abe831",
  1055. "reference": "4756b3cfb9e4b812d42acc381582485f21abe831",
  1056. "shasum": "",
  1057. "mirrors": [
  1058. {
  1059. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1060. "preferred": true
  1061. }
  1062. ]
  1063. },
  1064. "require": {
  1065. "php": ">=5.5.9"
  1066. },
  1067. "require-dev": {
  1068. "phpunit/phpunit": "~4.0"
  1069. },
  1070. "type": "library",
  1071. "autoload": {
  1072. "psr-4": {
  1073. "WxCrypt\\": "src/"
  1074. }
  1075. },
  1076. "notification-url": "https://packagist.org/downloads/",
  1077. "license": [
  1078. "MIT"
  1079. ],
  1080. "authors": [
  1081. {
  1082. "name": "彭未峰",
  1083. "email": "pwf0112@163.com"
  1084. }
  1085. ],
  1086. "description": "微信企业号接入文档Laravel改装",
  1087. "keywords": [
  1088. "企业号",
  1089. "回调接入",
  1090. "微信",
  1091. "消息加密",
  1092. "消息解密"
  1093. ],
  1094. "time": "2016-10-27T08:11:14+00:00"
  1095. },
  1096. {
  1097. "name": "ralouphie/getallheaders",
  1098. "version": "3.0.3",
  1099. "source": {
  1100. "type": "git",
  1101. "url": "https://github.com/ralouphie/getallheaders.git",
  1102. "reference": "120b605dfeb996808c31b6477290a714d356e822"
  1103. },
  1104. "dist": {
  1105. "type": "zip",
  1106. "url": "https://api.github.com/repos/ralouphie/getallheaders/zipball/120b605dfeb996808c31b6477290a714d356e822",
  1107. "reference": "120b605dfeb996808c31b6477290a714d356e822",
  1108. "shasum": "",
  1109. "mirrors": [
  1110. {
  1111. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1112. "preferred": true
  1113. }
  1114. ]
  1115. },
  1116. "require": {
  1117. "php": ">=5.6"
  1118. },
  1119. "require-dev": {
  1120. "php-coveralls/php-coveralls": "^2.1",
  1121. "phpunit/phpunit": "^5 || ^6.5"
  1122. },
  1123. "type": "library",
  1124. "autoload": {
  1125. "files": [
  1126. "src/getallheaders.php"
  1127. ]
  1128. },
  1129. "notification-url": "https://packagist.org/downloads/",
  1130. "license": [
  1131. "MIT"
  1132. ],
  1133. "authors": [
  1134. {
  1135. "name": "Ralph Khattar",
  1136. "email": "ralph.khattar@gmail.com"
  1137. }
  1138. ],
  1139. "description": "A polyfill for getallheaders.",
  1140. "time": "2019-03-08T08:55:37+00:00"
  1141. },
  1142. {
  1143. "name": "swiftmailer/swiftmailer",
  1144. "version": "5.x-dev",
  1145. "source": {
  1146. "type": "git",
  1147. "url": "https://github.com/swiftmailer/swiftmailer.git",
  1148. "reference": "181b89f18a90f8925ef805f950d47a7190e9b950"
  1149. },
  1150. "dist": {
  1151. "type": "zip",
  1152. "url": "https://api.github.com/repos/swiftmailer/swiftmailer/zipball/181b89f18a90f8925ef805f950d47a7190e9b950",
  1153. "reference": "181b89f18a90f8925ef805f950d47a7190e9b950",
  1154. "shasum": "",
  1155. "mirrors": [
  1156. {
  1157. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1158. "preferred": true
  1159. }
  1160. ]
  1161. },
  1162. "require": {
  1163. "php": ">=5.3.3"
  1164. },
  1165. "require-dev": {
  1166. "mockery/mockery": "~0.9.1",
  1167. "symfony/phpunit-bridge": "~3.2"
  1168. },
  1169. "type": "library",
  1170. "extra": {
  1171. "branch-alias": {
  1172. "dev-master": "5.4-dev"
  1173. }
  1174. },
  1175. "autoload": {
  1176. "files": [
  1177. "lib/swift_required.php"
  1178. ]
  1179. },
  1180. "notification-url": "https://packagist.org/downloads/",
  1181. "license": [
  1182. "MIT"
  1183. ],
  1184. "authors": [
  1185. {
  1186. "name": "Chris Corbyn"
  1187. },
  1188. {
  1189. "name": "Fabien Potencier",
  1190. "email": "fabien@symfony.com"
  1191. }
  1192. ],
  1193. "description": "Swiftmailer, free feature-rich PHP mailer",
  1194. "homepage": "https://swiftmailer.symfony.com",
  1195. "keywords": [
  1196. "email",
  1197. "mail",
  1198. "mailer"
  1199. ],
  1200. "time": "2018-07-31T09:26:32+00:00"
  1201. },
  1202. {
  1203. "name": "yiisoft/yii2",
  1204. "version": "2.0.11.2",
  1205. "source": {
  1206. "type": "git",
  1207. "url": "https://github.com/yiisoft/yii2-framework.git",
  1208. "reference": "ee996adec1dfd7babb67bd0c604f5bd6425fe5ab"
  1209. },
  1210. "dist": {
  1211. "type": "zip",
  1212. "url": "https://api.github.com/repos/yiisoft/yii2-framework/zipball/ee996adec1dfd7babb67bd0c604f5bd6425fe5ab",
  1213. "reference": "ee996adec1dfd7babb67bd0c604f5bd6425fe5ab",
  1214. "shasum": "",
  1215. "mirrors": [
  1216. {
  1217. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1218. "preferred": true
  1219. }
  1220. ]
  1221. },
  1222. "require": {
  1223. "bower-asset/jquery": "2.2.*@stable | 2.1.*@stable | 1.11.*@stable | 1.12.*@stable",
  1224. "bower-asset/jquery.inputmask": "~3.2.2 | ~3.3.3",
  1225. "bower-asset/punycode": "1.3.*",
  1226. "bower-asset/yii2-pjax": "~2.0.1",
  1227. "cebe/markdown": "~1.0.0 | ~1.1.0",
  1228. "ext-ctype": "*",
  1229. "ext-mbstring": "*",
  1230. "ezyang/htmlpurifier": "~4.6",
  1231. "lib-pcre": "*",
  1232. "php": ">=5.4.0",
  1233. "yiisoft/yii2-composer": "~2.0.4"
  1234. },
  1235. "bin": [
  1236. "yii"
  1237. ],
  1238. "type": "library",
  1239. "extra": {
  1240. "branch-alias": {
  1241. "dev-master": "2.0.x-dev"
  1242. }
  1243. },
  1244. "autoload": {
  1245. "psr-4": {
  1246. "yii\\": ""
  1247. }
  1248. },
  1249. "notification-url": "https://packagist.org/downloads/",
  1250. "license": [
  1251. "BSD-3-Clause"
  1252. ],
  1253. "authors": [
  1254. {
  1255. "name": "Qiang Xue",
  1256. "email": "qiang.xue@gmail.com",
  1257. "homepage": "http://www.yiiframework.com/",
  1258. "role": "Founder and project lead"
  1259. },
  1260. {
  1261. "name": "Alexander Makarov",
  1262. "email": "sam@rmcreative.ru",
  1263. "homepage": "http://rmcreative.ru/",
  1264. "role": "Core framework development"
  1265. },
  1266. {
  1267. "name": "Maurizio Domba",
  1268. "homepage": "http://mdomba.info/",
  1269. "role": "Core framework development"
  1270. },
  1271. {
  1272. "name": "Carsten Brandt",
  1273. "email": "mail@cebe.cc",
  1274. "homepage": "http://cebe.cc/",
  1275. "role": "Core framework development"
  1276. },
  1277. {
  1278. "name": "Timur Ruziev",
  1279. "email": "resurtm@gmail.com",
  1280. "homepage": "http://resurtm.com/",
  1281. "role": "Core framework development"
  1282. },
  1283. {
  1284. "name": "Paul Klimov",
  1285. "email": "klimov.paul@gmail.com",
  1286. "role": "Core framework development"
  1287. },
  1288. {
  1289. "name": "Dmitry Naumenko",
  1290. "email": "d.naumenko.a@gmail.com",
  1291. "role": "Core framework development"
  1292. },
  1293. {
  1294. "name": "Boudewijn Vahrmeijer",
  1295. "email": "info@dynasource.eu",
  1296. "homepage": "http://dynasource.eu",
  1297. "role": "Core framework development"
  1298. }
  1299. ],
  1300. "description": "Yii PHP Framework Version 2",
  1301. "homepage": "http://www.yiiframework.com/",
  1302. "keywords": [
  1303. "framework",
  1304. "yii2"
  1305. ],
  1306. "time": "2017-02-08T09:04:32+00:00"
  1307. },
  1308. {
  1309. "name": "yiisoft/yii2-bootstrap",
  1310. "version": "dev-master",
  1311. "source": {
  1312. "type": "git",
  1313. "url": "https://github.com/yiisoft/yii2-bootstrap.git",
  1314. "reference": "454552b7a90e2a803def733e4d1f612b850158da"
  1315. },
  1316. "dist": {
  1317. "type": "zip",
  1318. "url": "https://api.github.com/repos/yiisoft/yii2-bootstrap/zipball/454552b7a90e2a803def733e4d1f612b850158da",
  1319. "reference": "454552b7a90e2a803def733e4d1f612b850158da",
  1320. "shasum": "",
  1321. "mirrors": [
  1322. {
  1323. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1324. "preferred": true
  1325. }
  1326. ]
  1327. },
  1328. "require": {
  1329. "bower-asset/bootstrap": "3.4.* | 3.3.* | 3.2.* | 3.1.*",
  1330. "yiisoft/yii2": "~2.0.6"
  1331. },
  1332. "require-dev": {
  1333. "phpunit/phpunit": "<7"
  1334. },
  1335. "type": "yii2-extension",
  1336. "extra": {
  1337. "branch-alias": {
  1338. "dev-master": "2.0.x-dev"
  1339. }
  1340. },
  1341. "autoload": {
  1342. "psr-4": {
  1343. "yii\\bootstrap\\": "src"
  1344. }
  1345. },
  1346. "notification-url": "https://packagist.org/downloads/",
  1347. "license": [
  1348. "BSD-3-Clause"
  1349. ],
  1350. "authors": [
  1351. {
  1352. "name": "Paul Klimov",
  1353. "email": "klimov.paul@gmail.com"
  1354. },
  1355. {
  1356. "name": "Alexander Makarov",
  1357. "email": "sam@rmcreative.ru",
  1358. "homepage": "http://rmcreative.ru/"
  1359. },
  1360. {
  1361. "name": "Antonio Ramirez",
  1362. "email": "amigo.cobos@gmail.com"
  1363. },
  1364. {
  1365. "name": "Qiang Xue",
  1366. "email": "qiang.xue@gmail.com",
  1367. "homepage": "http://www.yiiframework.com/"
  1368. }
  1369. ],
  1370. "description": "The Twitter Bootstrap extension for the Yii framework",
  1371. "keywords": [
  1372. "bootstrap",
  1373. "yii2"
  1374. ],
  1375. "time": "2019-02-17T13:23:56+00:00"
  1376. },
  1377. {
  1378. "name": "yiisoft/yii2-composer",
  1379. "version": "dev-master",
  1380. "source": {
  1381. "type": "git",
  1382. "url": "https://github.com/yiisoft/yii2-composer.git",
  1383. "reference": "2caf2e7c6127085315d43d5034326f7bdf83b6a6"
  1384. },
  1385. "dist": {
  1386. "type": "zip",
  1387. "url": "https://api.github.com/repos/yiisoft/yii2-composer/zipball/2caf2e7c6127085315d43d5034326f7bdf83b6a6",
  1388. "reference": "2caf2e7c6127085315d43d5034326f7bdf83b6a6",
  1389. "shasum": "",
  1390. "mirrors": [
  1391. {
  1392. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1393. "preferred": true
  1394. }
  1395. ]
  1396. },
  1397. "require": {
  1398. "composer-plugin-api": "^1.0"
  1399. },
  1400. "require-dev": {
  1401. "composer/composer": "^1.0",
  1402. "phpunit/phpunit": "<7"
  1403. },
  1404. "type": "composer-plugin",
  1405. "extra": {
  1406. "class": "yii\\composer\\Plugin",
  1407. "branch-alias": {
  1408. "dev-master": "2.0.x-dev"
  1409. }
  1410. },
  1411. "autoload": {
  1412. "psr-4": {
  1413. "yii\\composer\\": ""
  1414. }
  1415. },
  1416. "notification-url": "https://packagist.org/downloads/",
  1417. "license": [
  1418. "BSD-3-Clause"
  1419. ],
  1420. "authors": [
  1421. {
  1422. "name": "Qiang Xue",
  1423. "email": "qiang.xue@gmail.com"
  1424. },
  1425. {
  1426. "name": "Carsten Brandt",
  1427. "email": "mail@cebe.cc"
  1428. }
  1429. ],
  1430. "description": "The composer plugin for Yii extension installer",
  1431. "keywords": [
  1432. "composer",
  1433. "extension installer",
  1434. "yii2"
  1435. ],
  1436. "time": "2019-02-18T10:24:42+00:00"
  1437. },
  1438. {
  1439. "name": "yiisoft/yii2-redis",
  1440. "version": "2.0.6",
  1441. "source": {
  1442. "type": "git",
  1443. "url": "https://github.com/yiisoft/yii2-redis.git",
  1444. "reference": "5dc55d5187923219e9db86d149d56acf1f5a6ee8"
  1445. },
  1446. "dist": {
  1447. "type": "zip",
  1448. "url": "https://api.github.com/repos/yiisoft/yii2-redis/zipball/5dc55d5187923219e9db86d149d56acf1f5a6ee8",
  1449. "reference": "5dc55d5187923219e9db86d149d56acf1f5a6ee8",
  1450. "shasum": "",
  1451. "mirrors": [
  1452. {
  1453. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1454. "preferred": true
  1455. }
  1456. ]
  1457. },
  1458. "require": {
  1459. "yiisoft/yii2": "~2.0.11"
  1460. },
  1461. "type": "yii2-extension",
  1462. "extra": {
  1463. "branch-alias": {
  1464. "dev-master": "2.0.x-dev"
  1465. }
  1466. },
  1467. "autoload": {
  1468. "psr-4": {
  1469. "yii\\redis\\": ""
  1470. }
  1471. },
  1472. "notification-url": "https://packagist.org/downloads/",
  1473. "license": [
  1474. "BSD-3-Clause"
  1475. ],
  1476. "authors": [
  1477. {
  1478. "name": "Carsten Brandt",
  1479. "email": "mail@cebe.cc"
  1480. }
  1481. ],
  1482. "description": "Redis Cache, Session and ActiveRecord for the Yii framework",
  1483. "keywords": [
  1484. "active-record",
  1485. "cache",
  1486. "redis",
  1487. "session",
  1488. "yii2"
  1489. ],
  1490. "time": "2017-04-05T13:42:11+00:00"
  1491. },
  1492. {
  1493. "name": "yiisoft/yii2-swiftmailer",
  1494. "version": "2.0.7",
  1495. "source": {
  1496. "type": "git",
  1497. "url": "https://github.com/yiisoft/yii2-swiftmailer.git",
  1498. "reference": "8a03a62cbcb82e7697d3002eb43a8d2637f566ec"
  1499. },
  1500. "dist": {
  1501. "type": "zip",
  1502. "url": "https://api.github.com/repos/yiisoft/yii2-swiftmailer/zipball/8a03a62cbcb82e7697d3002eb43a8d2637f566ec",
  1503. "reference": "8a03a62cbcb82e7697d3002eb43a8d2637f566ec",
  1504. "shasum": "",
  1505. "mirrors": [
  1506. {
  1507. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1508. "preferred": true
  1509. }
  1510. ]
  1511. },
  1512. "require": {
  1513. "swiftmailer/swiftmailer": "~5.0",
  1514. "yiisoft/yii2": "~2.0.4"
  1515. },
  1516. "type": "yii2-extension",
  1517. "extra": {
  1518. "branch-alias": {
  1519. "dev-master": "2.0.x-dev"
  1520. }
  1521. },
  1522. "autoload": {
  1523. "psr-4": {
  1524. "yii\\swiftmailer\\": ""
  1525. }
  1526. },
  1527. "notification-url": "https://packagist.org/downloads/",
  1528. "license": [
  1529. "BSD-3-Clause"
  1530. ],
  1531. "authors": [
  1532. {
  1533. "name": "Paul Klimov",
  1534. "email": "klimov.paul@gmail.com"
  1535. }
  1536. ],
  1537. "description": "The SwiftMailer integration for the Yii framework",
  1538. "keywords": [
  1539. "email",
  1540. "mail",
  1541. "mailer",
  1542. "swift",
  1543. "swiftmailer",
  1544. "yii2"
  1545. ],
  1546. "time": "2017-05-01T08:29:00+00:00"
  1547. }
  1548. ],
  1549. "packages-dev": [
  1550. {
  1551. "name": "bower-asset/typeahead.js",
  1552. "version": "v0.11.1",
  1553. "source": {
  1554. "type": "git",
  1555. "url": "https://github.com/twitter/typeahead.js.git",
  1556. "reference": "588440f66559714280628a4f9799f0c4eb880a4a"
  1557. },
  1558. "dist": {
  1559. "type": "zip",
  1560. "url": "https://api.github.com/repos/twitter/typeahead.js/zipball/588440f66559714280628a4f9799f0c4eb880a4a",
  1561. "reference": "588440f66559714280628a4f9799f0c4eb880a4a",
  1562. "shasum": ""
  1563. },
  1564. "require": {
  1565. "bower-asset/jquery": ">=1.7"
  1566. },
  1567. "require-dev": {
  1568. "bower-asset/jasmine-ajax": "~1.3.1",
  1569. "bower-asset/jasmine-jquery": "~1.5.2",
  1570. "bower-asset/jquery": "~1.7"
  1571. },
  1572. "type": "bower-asset-library",
  1573. "extra": {
  1574. "bower-asset-main": "dist/typeahead.bundle.js"
  1575. }
  1576. },
  1577. {
  1578. "name": "fzaninotto/faker",
  1579. "version": "dev-master",
  1580. "source": {
  1581. "type": "git",
  1582. "url": "https://github.com/fzaninotto/Faker.git",
  1583. "reference": "fb218ada627f7c750c6e0e41cae486d2db48e911"
  1584. },
  1585. "dist": {
  1586. "type": "zip",
  1587. "url": "https://api.github.com/repos/fzaninotto/Faker/zipball/fb218ada627f7c750c6e0e41cae486d2db48e911",
  1588. "reference": "fb218ada627f7c750c6e0e41cae486d2db48e911",
  1589. "shasum": "",
  1590. "mirrors": [
  1591. {
  1592. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1593. "preferred": true
  1594. }
  1595. ]
  1596. },
  1597. "require": {
  1598. "php": "^5.3.3 || ^7.0"
  1599. },
  1600. "require-dev": {
  1601. "ext-intl": "*",
  1602. "phpunit/phpunit": "^4.8.35 || ^5.7",
  1603. "squizlabs/php_codesniffer": "^1.5"
  1604. },
  1605. "type": "library",
  1606. "extra": {
  1607. "branch-alias": {
  1608. "dev-master": "1.9-dev"
  1609. }
  1610. },
  1611. "autoload": {
  1612. "psr-4": {
  1613. "Faker\\": "src/Faker/"
  1614. }
  1615. },
  1616. "notification-url": "https://packagist.org/downloads/",
  1617. "license": [
  1618. "MIT"
  1619. ],
  1620. "authors": [
  1621. {
  1622. "name": "François Zaninotto"
  1623. }
  1624. ],
  1625. "description": "Faker is a PHP library that generates fake data for you.",
  1626. "keywords": [
  1627. "data",
  1628. "faker",
  1629. "fixtures"
  1630. ],
  1631. "time": "2019-04-16T09:48:34+00:00"
  1632. },
  1633. {
  1634. "name": "phpspec/php-diff",
  1635. "version": "dev-master",
  1636. "source": {
  1637. "type": "git",
  1638. "url": "https://github.com/phpspec/php-diff.git",
  1639. "reference": "0464787bfa7cd13576c5a1e318709768798bec6a"
  1640. },
  1641. "dist": {
  1642. "type": "zip",
  1643. "url": "https://api.github.com/repos/phpspec/php-diff/zipball/0464787bfa7cd13576c5a1e318709768798bec6a",
  1644. "reference": "0464787bfa7cd13576c5a1e318709768798bec6a",
  1645. "shasum": "",
  1646. "mirrors": [
  1647. {
  1648. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1649. "preferred": true
  1650. }
  1651. ]
  1652. },
  1653. "type": "library",
  1654. "extra": {
  1655. "branch-alias": {
  1656. "dev-master": "1.0.x-dev"
  1657. }
  1658. },
  1659. "autoload": {
  1660. "psr-0": {
  1661. "Diff": "lib/"
  1662. }
  1663. },
  1664. "notification-url": "https://packagist.org/downloads/",
  1665. "license": [
  1666. "BSD-3-Clause"
  1667. ],
  1668. "authors": [
  1669. {
  1670. "name": "Chris Boulton",
  1671. "homepage": "http://github.com/chrisboulton"
  1672. }
  1673. ],
  1674. "description": "A comprehensive library for generating differences between two hashable objects (strings or arrays).",
  1675. "time": "2016-04-07T12:29:16+00:00"
  1676. },
  1677. {
  1678. "name": "symfony/polyfill-mbstring",
  1679. "version": "dev-master",
  1680. "source": {
  1681. "type": "git",
  1682. "url": "https://github.com/symfony/polyfill-mbstring.git",
  1683. "reference": "fe5e94c604826c35a32fa832f35bd036b6799609"
  1684. },
  1685. "dist": {
  1686. "type": "zip",
  1687. "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/fe5e94c604826c35a32fa832f35bd036b6799609",
  1688. "reference": "fe5e94c604826c35a32fa832f35bd036b6799609",
  1689. "shasum": "",
  1690. "mirrors": [
  1691. {
  1692. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1693. "preferred": true
  1694. }
  1695. ]
  1696. },
  1697. "require": {
  1698. "php": ">=5.3.3"
  1699. },
  1700. "suggest": {
  1701. "ext-mbstring": "For best performance"
  1702. },
  1703. "type": "library",
  1704. "extra": {
  1705. "branch-alias": {
  1706. "dev-master": "1.11-dev"
  1707. }
  1708. },
  1709. "autoload": {
  1710. "psr-4": {
  1711. "Symfony\\Polyfill\\Mbstring\\": ""
  1712. },
  1713. "files": [
  1714. "bootstrap.php"
  1715. ]
  1716. },
  1717. "notification-url": "https://packagist.org/downloads/",
  1718. "license": [
  1719. "MIT"
  1720. ],
  1721. "authors": [
  1722. {
  1723. "name": "Nicolas Grekas",
  1724. "email": "p@tchwork.com"
  1725. },
  1726. {
  1727. "name": "Symfony Community",
  1728. "homepage": "https://symfony.com/contributors"
  1729. }
  1730. ],
  1731. "description": "Symfony polyfill for the Mbstring extension",
  1732. "homepage": "https://symfony.com",
  1733. "keywords": [
  1734. "compatibility",
  1735. "mbstring",
  1736. "polyfill",
  1737. "portable",
  1738. "shim"
  1739. ],
  1740. "time": "2019-02-06T07:57:58+00:00"
  1741. },
  1742. {
  1743. "name": "symfony/var-dumper",
  1744. "version": "3.4.x-dev",
  1745. "source": {
  1746. "type": "git",
  1747. "url": "https://github.com/symfony/var-dumper.git",
  1748. "reference": "e463ad286cb2c56527c56bfff9e1aa7bb471c04e"
  1749. },
  1750. "dist": {
  1751. "type": "zip",
  1752. "url": "https://api.github.com/repos/symfony/var-dumper/zipball/e463ad286cb2c56527c56bfff9e1aa7bb471c04e",
  1753. "reference": "e463ad286cb2c56527c56bfff9e1aa7bb471c04e",
  1754. "shasum": "",
  1755. "mirrors": [
  1756. {
  1757. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1758. "preferred": true
  1759. }
  1760. ]
  1761. },
  1762. "require": {
  1763. "php": "^5.5.9|>=7.0.8",
  1764. "symfony/polyfill-mbstring": "~1.0"
  1765. },
  1766. "conflict": {
  1767. "phpunit/phpunit": "<4.8.35|<5.4.3,>=5.0"
  1768. },
  1769. "require-dev": {
  1770. "ext-iconv": "*",
  1771. "twig/twig": "~1.34|~2.4"
  1772. },
  1773. "suggest": {
  1774. "ext-iconv": "To convert non-UTF-8 strings to UTF-8 (or symfony/polyfill-iconv in case ext-iconv cannot be used).",
  1775. "ext-intl": "To show region name in time zone dump",
  1776. "ext-symfony_debug": ""
  1777. },
  1778. "type": "library",
  1779. "extra": {
  1780. "branch-alias": {
  1781. "dev-master": "3.4-dev"
  1782. }
  1783. },
  1784. "autoload": {
  1785. "files": [
  1786. "Resources/functions/dump.php"
  1787. ],
  1788. "psr-4": {
  1789. "Symfony\\Component\\VarDumper\\": ""
  1790. },
  1791. "exclude-from-classmap": [
  1792. "/Tests/"
  1793. ]
  1794. },
  1795. "notification-url": "https://packagist.org/downloads/",
  1796. "license": [
  1797. "MIT"
  1798. ],
  1799. "authors": [
  1800. {
  1801. "name": "Nicolas Grekas",
  1802. "email": "p@tchwork.com"
  1803. },
  1804. {
  1805. "name": "Symfony Community",
  1806. "homepage": "https://symfony.com/contributors"
  1807. }
  1808. ],
  1809. "description": "Symfony mechanism for exploring and dumping PHP variables",
  1810. "homepage": "https://symfony.com",
  1811. "keywords": [
  1812. "debug",
  1813. "dump"
  1814. ],
  1815. "time": "2019-04-11T09:48:14+00:00"
  1816. },
  1817. {
  1818. "name": "yiisoft/yii2-codeception",
  1819. "version": "dev-master",
  1820. "source": {
  1821. "type": "git",
  1822. "url": "https://github.com/yiisoft/yii2-codeception.git",
  1823. "reference": "c7d1509498c349179940a8d2b9c6d078e8054b90"
  1824. },
  1825. "dist": {
  1826. "type": "zip",
  1827. "url": "https://api.github.com/repos/yiisoft/yii2-codeception/zipball/c7d1509498c349179940a8d2b9c6d078e8054b90",
  1828. "reference": "c7d1509498c349179940a8d2b9c6d078e8054b90",
  1829. "shasum": "",
  1830. "mirrors": [
  1831. {
  1832. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1833. "preferred": true
  1834. }
  1835. ]
  1836. },
  1837. "require": {
  1838. "yiisoft/yii2": ">=2.0.4"
  1839. },
  1840. "type": "yii2-extension",
  1841. "extra": {
  1842. "branch-alias": {
  1843. "dev-master": "2.0.x-dev"
  1844. }
  1845. },
  1846. "autoload": {
  1847. "psr-4": {
  1848. "yii\\codeception\\": ""
  1849. }
  1850. },
  1851. "notification-url": "https://packagist.org/downloads/",
  1852. "license": [
  1853. "BSD-3-Clause"
  1854. ],
  1855. "authors": [
  1856. {
  1857. "name": "Mark Jebri",
  1858. "email": "mark.github@yandex.ru"
  1859. }
  1860. ],
  1861. "description": "The Codeception integration for the Yii framework",
  1862. "keywords": [
  1863. "codeception",
  1864. "yii2"
  1865. ],
  1866. "abandoned": "codeception/codeception",
  1867. "time": "2018-04-26T18:21:40+00:00"
  1868. },
  1869. {
  1870. "name": "yiisoft/yii2-debug",
  1871. "version": "2.0.12",
  1872. "source": {
  1873. "type": "git",
  1874. "url": "https://github.com/yiisoft/yii2-debug.git",
  1875. "reference": "93082f46d3568b4431a26f264e0d16a12c42bd50"
  1876. },
  1877. "dist": {
  1878. "type": "zip",
  1879. "url": "https://api.github.com/repos/yiisoft/yii2-debug/zipball/93082f46d3568b4431a26f264e0d16a12c42bd50",
  1880. "reference": "93082f46d3568b4431a26f264e0d16a12c42bd50",
  1881. "shasum": "",
  1882. "mirrors": [
  1883. {
  1884. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1885. "preferred": true
  1886. }
  1887. ]
  1888. },
  1889. "require": {
  1890. "yiisoft/yii2": "~2.0.11",
  1891. "yiisoft/yii2-bootstrap": "~2.0.0"
  1892. },
  1893. "type": "yii2-extension",
  1894. "extra": {
  1895. "branch-alias": {
  1896. "dev-master": "2.0.x-dev"
  1897. }
  1898. },
  1899. "autoload": {
  1900. "psr-4": {
  1901. "yii\\debug\\": ""
  1902. }
  1903. },
  1904. "notification-url": "https://packagist.org/downloads/",
  1905. "license": [
  1906. "BSD-3-Clause"
  1907. ],
  1908. "authors": [
  1909. {
  1910. "name": "Qiang Xue",
  1911. "email": "qiang.xue@gmail.com"
  1912. }
  1913. ],
  1914. "description": "The debugger extension for the Yii framework",
  1915. "keywords": [
  1916. "debug",
  1917. "debugger",
  1918. "yii2"
  1919. ],
  1920. "time": "2017-10-09T20:30:01+00:00"
  1921. },
  1922. {
  1923. "name": "yiisoft/yii2-faker",
  1924. "version": "dev-master",
  1925. "source": {
  1926. "type": "git",
  1927. "url": "https://github.com/yiisoft/yii2-faker.git",
  1928. "reference": "2f548188b2961f097c08623214f5190e3cf2f1ac"
  1929. },
  1930. "dist": {
  1931. "type": "zip",
  1932. "url": "https://api.github.com/repos/yiisoft/yii2-faker/zipball/2f548188b2961f097c08623214f5190e3cf2f1ac",
  1933. "reference": "2f548188b2961f097c08623214f5190e3cf2f1ac",
  1934. "shasum": "",
  1935. "mirrors": [
  1936. {
  1937. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1938. "preferred": true
  1939. }
  1940. ]
  1941. },
  1942. "require": {
  1943. "fzaninotto/faker": "~1.4",
  1944. "yiisoft/yii2": "~2.0.0"
  1945. },
  1946. "require-dev": {
  1947. "phpunit/phpunit": "<7"
  1948. },
  1949. "type": "yii2-extension",
  1950. "extra": {
  1951. "branch-alias": {
  1952. "dev-master": "2.0.x-dev"
  1953. }
  1954. },
  1955. "autoload": {
  1956. "psr-4": {
  1957. "yii\\faker\\": "src"
  1958. }
  1959. },
  1960. "notification-url": "https://packagist.org/downloads/",
  1961. "license": [
  1962. "BSD-3-Clause"
  1963. ],
  1964. "authors": [
  1965. {
  1966. "name": "Mark Jebri",
  1967. "email": "mark.github@yandex.ru"
  1968. }
  1969. ],
  1970. "description": "Fixture generator. The Faker integration for the Yii framework.",
  1971. "keywords": [
  1972. "Fixture",
  1973. "faker",
  1974. "yii2"
  1975. ],
  1976. "time": "2019-02-18T10:24:17+00:00"
  1977. },
  1978. {
  1979. "name": "yiisoft/yii2-gii",
  1980. "version": "2.0.5",
  1981. "source": {
  1982. "type": "git",
  1983. "url": "https://github.com/yiisoft/yii2-gii.git",
  1984. "reference": "1bd6df6804ca077ec022587905a0d43eb286f507"
  1985. },
  1986. "dist": {
  1987. "type": "zip",
  1988. "url": "https://api.github.com/repos/yiisoft/yii2-gii/zipball/1bd6df6804ca077ec022587905a0d43eb286f507",
  1989. "reference": "1bd6df6804ca077ec022587905a0d43eb286f507",
  1990. "shasum": "",
  1991. "mirrors": [
  1992. {
  1993. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1994. "preferred": true
  1995. }
  1996. ]
  1997. },
  1998. "require": {
  1999. "bower-asset/typeahead.js": "0.10.* | ~0.11.0",
  2000. "phpspec/php-diff": ">=1.0.2",
  2001. "yiisoft/yii2": ">=2.0.4",
  2002. "yiisoft/yii2-bootstrap": "~2.0"
  2003. },
  2004. "type": "yii2-extension",
  2005. "extra": {
  2006. "branch-alias": {
  2007. "dev-master": "2.0.x-dev"
  2008. },
  2009. "asset-installer-paths": {
  2010. "npm-asset-library": "vendor/npm",
  2011. "bower-asset-library": "vendor/bower"
  2012. }
  2013. },
  2014. "autoload": {
  2015. "psr-4": {
  2016. "yii\\gii\\": ""
  2017. }
  2018. },
  2019. "notification-url": "https://packagist.org/downloads/",
  2020. "license": [
  2021. "BSD-3-Clause"
  2022. ],
  2023. "authors": [
  2024. {
  2025. "name": "Qiang Xue",
  2026. "email": "qiang.xue@gmail.com"
  2027. }
  2028. ],
  2029. "description": "The Gii extension for the Yii framework",
  2030. "keywords": [
  2031. "code generator",
  2032. "gii",
  2033. "yii2"
  2034. ],
  2035. "time": "2016-03-18T14:09:46+00:00"
  2036. }
  2037. ],
  2038. "aliases": [],
  2039. "minimum-stability": "dev",
  2040. "stability-flags": {
  2041. "hollisho/yii2-redis-pub-sub": 20
  2042. },
  2043. "prefer-stable": false,
  2044. "prefer-lowest": false,
  2045. "platform": {
  2046. "php": ">=5.4.0"
  2047. },
  2048. "platform-dev": []
  2049. }