composer.lock 73 KB

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