composer.lock 75 KB

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