installed.json 82 KB

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