composer.lock 82 KB

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