installed.json 42 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350
  1. [
  2. {
  3. "name": "adbario/php-dot-notation",
  4. "version": "2.2.0",
  5. "version_normalized": "2.2.0.0",
  6. "source": {
  7. "type": "git",
  8. "url": "https://github.com/adbario/php-dot-notation.git",
  9. "reference": "eee4fc81296531e6aafba4c2bbccfc5adab1676e"
  10. },
  11. "dist": {
  12. "type": "zip",
  13. "url": "https://api.github.com/repos/adbario/php-dot-notation/zipball/eee4fc81296531e6aafba4c2bbccfc5adab1676e",
  14. "reference": "eee4fc81296531e6aafba4c2bbccfc5adab1676e",
  15. "shasum": ""
  16. },
  17. "require": {
  18. "ext-json": "*",
  19. "php": ">=5.5"
  20. },
  21. "require-dev": {
  22. "phpunit/phpunit": "^4.0|^5.0|^6.0",
  23. "squizlabs/php_codesniffer": "^3.0"
  24. },
  25. "time": "2019-01-01T23:59:15+00:00",
  26. "type": "library",
  27. "installation-source": "dist",
  28. "autoload": {
  29. "files": [
  30. "src/helpers.php"
  31. ],
  32. "psr-4": {
  33. "Adbar\\": "src"
  34. }
  35. },
  36. "notification-url": "https://packagist.org/downloads/",
  37. "license": [
  38. "MIT"
  39. ],
  40. "authors": [
  41. {
  42. "name": "Riku Särkinen",
  43. "email": "riku@adbar.io"
  44. }
  45. ],
  46. "description": "PHP dot notation access to arrays",
  47. "homepage": "https://github.com/adbario/php-dot-notation",
  48. "keywords": [
  49. "ArrayAccess",
  50. "dotnotation"
  51. ]
  52. },
  53. {
  54. "name": "alibabacloud/client",
  55. "version": "1.5.20",
  56. "version_normalized": "1.5.20.0",
  57. "source": {
  58. "type": "git",
  59. "url": "https://github.com/aliyun/openapi-sdk-php-client.git",
  60. "reference": "e18c5d79072417250f6faf0c1c8ca8bd3fd73f2b"
  61. },
  62. "dist": {
  63. "type": "zip",
  64. "url": "https://api.github.com/repos/aliyun/openapi-sdk-php-client/zipball/e18c5d79072417250f6faf0c1c8ca8bd3fd73f2b",
  65. "reference": "e18c5d79072417250f6faf0c1c8ca8bd3fd73f2b",
  66. "shasum": ""
  67. },
  68. "require": {
  69. "adbario/php-dot-notation": "^2.2",
  70. "clagiordano/weblibs-configmanager": "^1.0",
  71. "danielstjules/stringy": "^3.1",
  72. "ext-curl": "*",
  73. "ext-json": "*",
  74. "ext-libxml": "*",
  75. "ext-mbstring": "*",
  76. "ext-openssl": "*",
  77. "ext-simplexml": "*",
  78. "ext-xmlwriter": "*",
  79. "guzzlehttp/guzzle": "^6.3",
  80. "mtdowling/jmespath.php": "^2.4",
  81. "php": ">=5.5"
  82. },
  83. "require-dev": {
  84. "composer/composer": "^1.8",
  85. "drupal/coder": "^8.3",
  86. "ext-dom": "*",
  87. "ext-pcre": "*",
  88. "ext-sockets": "*",
  89. "ext-spl": "*",
  90. "league/climate": "^3.2.4",
  91. "mikey179/vfsstream": "^1.6",
  92. "monolog/monolog": "^1.24",
  93. "phpunit/phpunit": "^4.8.35|^5.4.3",
  94. "psr/cache": "^1.0",
  95. "symfony/dotenv": "^3.4",
  96. "symfony/var-dumper": "^3.4"
  97. },
  98. "suggest": {
  99. "ext-sockets": "To use client-side monitoring"
  100. },
  101. "time": "2019-12-30T01:59:20+00:00",
  102. "type": "library",
  103. "installation-source": "dist",
  104. "autoload": {
  105. "psr-4": {
  106. "AlibabaCloud\\Client\\": "src"
  107. },
  108. "files": [
  109. "src/Functions.php"
  110. ]
  111. },
  112. "notification-url": "https://packagist.org/downloads/",
  113. "license": [
  114. "Apache-2.0"
  115. ],
  116. "authors": [
  117. {
  118. "name": "Alibaba Cloud SDK",
  119. "email": "sdk-team@alibabacloud.com",
  120. "homepage": "http://www.alibabacloud.com"
  121. }
  122. ],
  123. "description": "Alibaba Cloud Client for PHP - Use Alibaba Cloud in your PHP project",
  124. "homepage": "https://www.alibabacloud.com/",
  125. "keywords": [
  126. "alibaba",
  127. "alibabacloud",
  128. "aliyun",
  129. "client",
  130. "cloud",
  131. "library",
  132. "sdk",
  133. "tool"
  134. ]
  135. },
  136. {
  137. "name": "clagiordano/weblibs-configmanager",
  138. "version": "v1.0.7",
  139. "version_normalized": "1.0.7.0",
  140. "source": {
  141. "type": "git",
  142. "url": "https://github.com/clagiordano/weblibs-configmanager.git",
  143. "reference": "6ef4c27354368deb2f54b39bbe06601da8c873a0"
  144. },
  145. "dist": {
  146. "type": "zip",
  147. "url": "https://api.github.com/repos/clagiordano/weblibs-configmanager/zipball/6ef4c27354368deb2f54b39bbe06601da8c873a0",
  148. "reference": "6ef4c27354368deb2f54b39bbe06601da8c873a0",
  149. "shasum": ""
  150. },
  151. "require": {
  152. "php": ">=5.4"
  153. },
  154. "require-dev": {
  155. "clagiordano/phpunit-result-printer": "^1",
  156. "phpunit/phpunit": "^4.8"
  157. },
  158. "time": "2019-09-25T22:10:10+00:00",
  159. "type": "library",
  160. "installation-source": "dist",
  161. "autoload": {
  162. "psr-4": {
  163. "clagiordano\\weblibs\\configmanager\\": "src/"
  164. }
  165. },
  166. "notification-url": "https://packagist.org/downloads/",
  167. "license": [
  168. "LGPL-3.0-or-later"
  169. ],
  170. "authors": [
  171. {
  172. "name": "Claudio Giordano",
  173. "email": "claudio.giordano@autistici.org",
  174. "role": "Developer"
  175. }
  176. ],
  177. "description": "weblibs-configmanager is a tool library for easily read and access to php config array file and direct read/write configuration file / object",
  178. "keywords": [
  179. "clagiordano",
  180. "configuration",
  181. "manager",
  182. "tool",
  183. "weblibs"
  184. ]
  185. },
  186. {
  187. "name": "danielstjules/stringy",
  188. "version": "3.1.0",
  189. "version_normalized": "3.1.0.0",
  190. "source": {
  191. "type": "git",
  192. "url": "https://github.com/danielstjules/Stringy.git",
  193. "reference": "df24ab62d2d8213bbbe88cc36fc35a4503b4bd7e"
  194. },
  195. "dist": {
  196. "type": "zip",
  197. "url": "https://api.github.com/repos/danielstjules/Stringy/zipball/df24ab62d2d8213bbbe88cc36fc35a4503b4bd7e",
  198. "reference": "df24ab62d2d8213bbbe88cc36fc35a4503b4bd7e",
  199. "shasum": ""
  200. },
  201. "require": {
  202. "php": ">=5.4.0",
  203. "symfony/polyfill-mbstring": "~1.1"
  204. },
  205. "require-dev": {
  206. "phpunit/phpunit": "~4.0"
  207. },
  208. "time": "2017-06-12T01:10:27+00:00",
  209. "type": "library",
  210. "installation-source": "dist",
  211. "autoload": {
  212. "psr-4": {
  213. "Stringy\\": "src/"
  214. },
  215. "files": [
  216. "src/Create.php"
  217. ]
  218. },
  219. "notification-url": "https://packagist.org/downloads/",
  220. "license": [
  221. "MIT"
  222. ],
  223. "authors": [
  224. {
  225. "name": "Daniel St. Jules",
  226. "email": "danielst.jules@gmail.com",
  227. "homepage": "http://www.danielstjules.com"
  228. }
  229. ],
  230. "description": "A string manipulation library with multibyte support",
  231. "homepage": "https://github.com/danielstjules/Stringy",
  232. "keywords": [
  233. "UTF",
  234. "helpers",
  235. "manipulation",
  236. "methods",
  237. "multibyte",
  238. "string",
  239. "utf-8",
  240. "utility",
  241. "utils"
  242. ]
  243. },
  244. {
  245. "name": "electrolinux/phpquery",
  246. "version": "0.9.6",
  247. "version_normalized": "0.9.6.0",
  248. "source": {
  249. "type": "git",
  250. "url": "https://github.com/electrolinux/phpquery.git",
  251. "reference": "6cb8afcfe8cd4ce45f2f8c27d561383037c27a3a"
  252. },
  253. "dist": {
  254. "type": "zip",
  255. "url": "https://api.github.com/repos/electrolinux/phpquery/zipball/6cb8afcfe8cd4ce45f2f8c27d561383037c27a3a",
  256. "reference": "6cb8afcfe8cd4ce45f2f8c27d561383037c27a3a",
  257. "shasum": ""
  258. },
  259. "time": "2013-03-21T12:39:33+00:00",
  260. "type": "library",
  261. "installation-source": "dist",
  262. "autoload": {
  263. "classmap": [
  264. "phpQuery/"
  265. ]
  266. },
  267. "notification-url": "https://packagist.org/downloads/",
  268. "license": [
  269. "MIT"
  270. ],
  271. "authors": [
  272. {
  273. "name": "Tobiasz Cudnik",
  274. "email": "tobiasz.cudnik@gmail.com",
  275. "homepage": "https://github.com/TobiaszCudnik",
  276. "role": "Developer"
  277. },
  278. {
  279. "name": "didier Belot",
  280. "role": "Packager"
  281. }
  282. ],
  283. "description": "phpQuery is a server-side, chainable, CSS3 selector driven Document Object Model (DOM) API based on jQuery JavaScript Library",
  284. "homepage": "http://code.google.com/p/phpquery/"
  285. },
  286. {
  287. "name": "ezyang/htmlpurifier",
  288. "version": "v4.12.0",
  289. "version_normalized": "4.12.0.0",
  290. "source": {
  291. "type": "git",
  292. "url": "https://github.com/ezyang/htmlpurifier.git",
  293. "reference": "a617e55bc62a87eec73bd456d146d134ad716f03"
  294. },
  295. "dist": {
  296. "type": "zip",
  297. "url": "https://api.github.com/repos/ezyang/htmlpurifier/zipball/a617e55bc62a87eec73bd456d146d134ad716f03",
  298. "reference": "a617e55bc62a87eec73bd456d146d134ad716f03",
  299. "shasum": ""
  300. },
  301. "require": {
  302. "php": ">=5.2"
  303. },
  304. "require-dev": {
  305. "simpletest/simpletest": "dev-master#72de02a7b80c6bb8864ef9bf66d41d2f58f826bd"
  306. },
  307. "time": "2019-10-28T03:44:26+00:00",
  308. "type": "library",
  309. "installation-source": "dist",
  310. "autoload": {
  311. "psr-0": {
  312. "HTMLPurifier": "library/"
  313. },
  314. "files": [
  315. "library/HTMLPurifier.composer.php"
  316. ]
  317. },
  318. "notification-url": "https://packagist.org/downloads/",
  319. "license": [
  320. "LGPL-2.1-or-later"
  321. ],
  322. "authors": [
  323. {
  324. "name": "Edward Z. Yang",
  325. "email": "admin@htmlpurifier.org",
  326. "homepage": "http://ezyang.com"
  327. }
  328. ],
  329. "description": "Standards compliant HTML filter written in PHP",
  330. "homepage": "http://htmlpurifier.org/",
  331. "keywords": [
  332. "html"
  333. ]
  334. },
  335. {
  336. "name": "guzzlehttp/guzzle",
  337. "version": "6.5.2",
  338. "version_normalized": "6.5.2.0",
  339. "source": {
  340. "type": "git",
  341. "url": "https://github.com/guzzle/guzzle.git",
  342. "reference": "43ece0e75098b7ecd8d13918293029e555a50f82"
  343. },
  344. "dist": {
  345. "type": "zip",
  346. "url": "https://api.github.com/repos/guzzle/guzzle/zipball/43ece0e75098b7ecd8d13918293029e555a50f82",
  347. "reference": "43ece0e75098b7ecd8d13918293029e555a50f82",
  348. "shasum": ""
  349. },
  350. "require": {
  351. "ext-json": "*",
  352. "guzzlehttp/promises": "^1.0",
  353. "guzzlehttp/psr7": "^1.6.1",
  354. "php": ">=5.5"
  355. },
  356. "require-dev": {
  357. "ext-curl": "*",
  358. "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.4 || ^7.0",
  359. "psr/log": "^1.1"
  360. },
  361. "suggest": {
  362. "ext-intl": "Required for Internationalized Domain Name (IDN) support",
  363. "psr/log": "Required for using the Log middleware"
  364. },
  365. "time": "2019-12-23T11:57:10+00:00",
  366. "type": "library",
  367. "extra": {
  368. "branch-alias": {
  369. "dev-master": "6.5-dev"
  370. }
  371. },
  372. "installation-source": "dist",
  373. "autoload": {
  374. "psr-4": {
  375. "GuzzleHttp\\": "src/"
  376. },
  377. "files": [
  378. "src/functions_include.php"
  379. ]
  380. },
  381. "notification-url": "https://packagist.org/downloads/",
  382. "license": [
  383. "MIT"
  384. ],
  385. "authors": [
  386. {
  387. "name": "Michael Dowling",
  388. "email": "mtdowling@gmail.com",
  389. "homepage": "https://github.com/mtdowling"
  390. }
  391. ],
  392. "description": "Guzzle is a PHP HTTP client library",
  393. "homepage": "http://guzzlephp.org/",
  394. "keywords": [
  395. "client",
  396. "curl",
  397. "framework",
  398. "http",
  399. "http client",
  400. "rest",
  401. "web service"
  402. ]
  403. },
  404. {
  405. "name": "guzzlehttp/promises",
  406. "version": "v1.3.1",
  407. "version_normalized": "1.3.1.0",
  408. "source": {
  409. "type": "git",
  410. "url": "https://github.com/guzzle/promises.git",
  411. "reference": "a59da6cf61d80060647ff4d3eb2c03a2bc694646"
  412. },
  413. "dist": {
  414. "type": "zip",
  415. "url": "https://api.github.com/repos/guzzle/promises/zipball/a59da6cf61d80060647ff4d3eb2c03a2bc694646",
  416. "reference": "a59da6cf61d80060647ff4d3eb2c03a2bc694646",
  417. "shasum": ""
  418. },
  419. "require": {
  420. "php": ">=5.5.0"
  421. },
  422. "require-dev": {
  423. "phpunit/phpunit": "^4.0"
  424. },
  425. "time": "2016-12-20T10:07:11+00:00",
  426. "type": "library",
  427. "extra": {
  428. "branch-alias": {
  429. "dev-master": "1.4-dev"
  430. }
  431. },
  432. "installation-source": "dist",
  433. "autoload": {
  434. "psr-4": {
  435. "GuzzleHttp\\Promise\\": "src/"
  436. },
  437. "files": [
  438. "src/functions_include.php"
  439. ]
  440. },
  441. "notification-url": "https://packagist.org/downloads/",
  442. "license": [
  443. "MIT"
  444. ],
  445. "authors": [
  446. {
  447. "name": "Michael Dowling",
  448. "email": "mtdowling@gmail.com",
  449. "homepage": "https://github.com/mtdowling"
  450. }
  451. ],
  452. "description": "Guzzle promises library",
  453. "keywords": [
  454. "promise"
  455. ]
  456. },
  457. {
  458. "name": "guzzlehttp/psr7",
  459. "version": "1.6.1",
  460. "version_normalized": "1.6.1.0",
  461. "source": {
  462. "type": "git",
  463. "url": "https://github.com/guzzle/psr7.git",
  464. "reference": "239400de7a173fe9901b9ac7c06497751f00727a"
  465. },
  466. "dist": {
  467. "type": "zip",
  468. "url": "https://api.github.com/repos/guzzle/psr7/zipball/239400de7a173fe9901b9ac7c06497751f00727a",
  469. "reference": "239400de7a173fe9901b9ac7c06497751f00727a",
  470. "shasum": ""
  471. },
  472. "require": {
  473. "php": ">=5.4.0",
  474. "psr/http-message": "~1.0",
  475. "ralouphie/getallheaders": "^2.0.5 || ^3.0.0"
  476. },
  477. "provide": {
  478. "psr/http-message-implementation": "1.0"
  479. },
  480. "require-dev": {
  481. "ext-zlib": "*",
  482. "phpunit/phpunit": "~4.8.36 || ^5.7.27 || ^6.5.8"
  483. },
  484. "suggest": {
  485. "zendframework/zend-httphandlerrunner": "Emit PSR-7 responses"
  486. },
  487. "time": "2019-07-01T23:21:34+00:00",
  488. "type": "library",
  489. "extra": {
  490. "branch-alias": {
  491. "dev-master": "1.6-dev"
  492. }
  493. },
  494. "installation-source": "dist",
  495. "autoload": {
  496. "psr-4": {
  497. "GuzzleHttp\\Psr7\\": "src/"
  498. },
  499. "files": [
  500. "src/functions_include.php"
  501. ]
  502. },
  503. "notification-url": "https://packagist.org/downloads/",
  504. "license": [
  505. "MIT"
  506. ],
  507. "authors": [
  508. {
  509. "name": "Michael Dowling",
  510. "email": "mtdowling@gmail.com",
  511. "homepage": "https://github.com/mtdowling"
  512. },
  513. {
  514. "name": "Tobias Schultze",
  515. "homepage": "https://github.com/Tobion"
  516. }
  517. ],
  518. "description": "PSR-7 message implementation that also provides common utility methods",
  519. "keywords": [
  520. "http",
  521. "message",
  522. "psr-7",
  523. "request",
  524. "response",
  525. "stream",
  526. "uri",
  527. "url"
  528. ]
  529. },
  530. {
  531. "name": "mindplay/annotations",
  532. "version": "1.3.1",
  533. "version_normalized": "1.3.1.0",
  534. "source": {
  535. "type": "git",
  536. "url": "https://github.com/php-annotations/php-annotations.git",
  537. "reference": "77ef66f79fb65a7b7e7e005be0bd6b643de43867"
  538. },
  539. "dist": {
  540. "type": "zip",
  541. "url": "https://api.github.com/repos/php-annotations/php-annotations/zipball/77ef66f79fb65a7b7e7e005be0bd6b643de43867",
  542. "reference": "77ef66f79fb65a7b7e7e005be0bd6b643de43867",
  543. "shasum": ""
  544. },
  545. "require": {
  546. "php": ">=5.3.3"
  547. },
  548. "require-dev": {
  549. "phpunit/php-code-coverage": "~1.2.1",
  550. "phpunit/php-file-iterator": ">=1.3.0@stable"
  551. },
  552. "time": "2019-01-15T17:03:08+00:00",
  553. "type": "library",
  554. "extra": {
  555. "branch-alias": {
  556. "dev-master": "1.3.x-dev"
  557. }
  558. },
  559. "installation-source": "dist",
  560. "autoload": {
  561. "psr-4": {
  562. "mindplay\\annotations\\": "src\\annotations"
  563. }
  564. },
  565. "notification-url": "https://packagist.org/downloads/",
  566. "license": [
  567. "LGPL-3.0+"
  568. ],
  569. "authors": [
  570. {
  571. "name": "Rasmus Schultz",
  572. "email": "rasmus@mindplay.dk"
  573. }
  574. ],
  575. "description": "Industrial-strength annotations for PHP",
  576. "homepage": "http://blog.mindplay.dk/",
  577. "keywords": [
  578. "annotations",
  579. "framework"
  580. ]
  581. },
  582. {
  583. "name": "mtdowling/jmespath.php",
  584. "version": "2.5.0",
  585. "version_normalized": "2.5.0.0",
  586. "source": {
  587. "type": "git",
  588. "url": "https://github.com/jmespath/jmespath.php.git",
  589. "reference": "52168cb9472de06979613d365c7f1ab8798be895"
  590. },
  591. "dist": {
  592. "type": "zip",
  593. "url": "https://api.github.com/repos/jmespath/jmespath.php/zipball/52168cb9472de06979613d365c7f1ab8798be895",
  594. "reference": "52168cb9472de06979613d365c7f1ab8798be895",
  595. "shasum": ""
  596. },
  597. "require": {
  598. "php": ">=5.4.0",
  599. "symfony/polyfill-mbstring": "^1.4"
  600. },
  601. "require-dev": {
  602. "composer/xdebug-handler": "^1.2",
  603. "phpunit/phpunit": "^4.8.36|^7.5.15"
  604. },
  605. "time": "2019-12-30T18:03:34+00:00",
  606. "bin": [
  607. "bin/jp.php"
  608. ],
  609. "type": "library",
  610. "extra": {
  611. "branch-alias": {
  612. "dev-master": "2.5-dev"
  613. }
  614. },
  615. "installation-source": "dist",
  616. "autoload": {
  617. "psr-4": {
  618. "JmesPath\\": "src/"
  619. },
  620. "files": [
  621. "src/JmesPath.php"
  622. ]
  623. },
  624. "notification-url": "https://packagist.org/downloads/",
  625. "license": [
  626. "MIT"
  627. ],
  628. "authors": [
  629. {
  630. "name": "Michael Dowling",
  631. "email": "mtdowling@gmail.com",
  632. "homepage": "https://github.com/mtdowling"
  633. }
  634. ],
  635. "description": "Declaratively specify how to extract elements from a JSON document",
  636. "keywords": [
  637. "json",
  638. "jsonpath"
  639. ]
  640. },
  641. {
  642. "name": "phpmailer/phpmailer",
  643. "version": "v6.1.1",
  644. "version_normalized": "6.1.1.0",
  645. "source": {
  646. "type": "git",
  647. "url": "https://github.com/PHPMailer/PHPMailer.git",
  648. "reference": "26bd96350b0b2fcbf0ef4e6f0f9cf3528302a9d8"
  649. },
  650. "dist": {
  651. "type": "zip",
  652. "url": "https://api.github.com/repos/PHPMailer/PHPMailer/zipball/26bd96350b0b2fcbf0ef4e6f0f9cf3528302a9d8",
  653. "reference": "26bd96350b0b2fcbf0ef4e6f0f9cf3528302a9d8",
  654. "shasum": ""
  655. },
  656. "require": {
  657. "ext-ctype": "*",
  658. "ext-filter": "*",
  659. "php": ">=5.5.0"
  660. },
  661. "require-dev": {
  662. "doctrine/annotations": "1.2.*",
  663. "friendsofphp/php-cs-fixer": "^2.2",
  664. "phpdocumentor/phpdocumentor": "2.*",
  665. "phpunit/phpunit": "^4.8 || ^5.7",
  666. "zendframework/zend-eventmanager": "3.0.*",
  667. "zendframework/zend-i18n": "2.7.3",
  668. "zendframework/zend-serializer": "2.7.*"
  669. },
  670. "suggest": {
  671. "ext-mbstring": "Needed to send email in multibyte encoding charset",
  672. "hayageek/oauth2-yahoo": "Needed for Yahoo XOAUTH2 authentication",
  673. "league/oauth2-google": "Needed for Google XOAUTH2 authentication",
  674. "psr/log": "For optional PSR-3 debug logging",
  675. "stevenmaguire/oauth2-microsoft": "Needed for Microsoft XOAUTH2 authentication",
  676. "symfony/polyfill-mbstring": "To support UTF-8 if the Mbstring PHP extension is not enabled (^1.2)"
  677. },
  678. "time": "2019-09-27T21:33:43+00:00",
  679. "type": "library",
  680. "installation-source": "dist",
  681. "autoload": {
  682. "psr-4": {
  683. "PHPMailer\\PHPMailer\\": "src/"
  684. }
  685. },
  686. "notification-url": "https://packagist.org/downloads/",
  687. "license": [
  688. "LGPL-2.1-only"
  689. ],
  690. "authors": [
  691. {
  692. "name": "Marcus Bointon",
  693. "email": "phpmailer@synchromedia.co.uk"
  694. },
  695. {
  696. "name": "Jim Jagielski",
  697. "email": "jimjag@gmail.com"
  698. },
  699. {
  700. "name": "Andy Prevost",
  701. "email": "codeworxtech@users.sourceforge.net"
  702. },
  703. {
  704. "name": "Brent R. Matzelle"
  705. }
  706. ],
  707. "description": "PHPMailer is a full-featured email creation and transfer class for PHP"
  708. },
  709. {
  710. "name": "phpoffice/phpexcel",
  711. "version": "1.8.2",
  712. "version_normalized": "1.8.2.0",
  713. "source": {
  714. "type": "git",
  715. "url": "https://github.com/PHPOffice/PHPExcel.git",
  716. "reference": "1441011fb7ecdd8cc689878f54f8b58a6805f870"
  717. },
  718. "dist": {
  719. "type": "zip",
  720. "url": "https://api.github.com/repos/PHPOffice/PHPExcel/zipball/1441011fb7ecdd8cc689878f54f8b58a6805f870",
  721. "reference": "1441011fb7ecdd8cc689878f54f8b58a6805f870",
  722. "shasum": ""
  723. },
  724. "require": {
  725. "ext-mbstring": "*",
  726. "ext-xml": "*",
  727. "ext-xmlwriter": "*",
  728. "php": "^5.2|^7.0"
  729. },
  730. "require-dev": {
  731. "squizlabs/php_codesniffer": "2.*"
  732. },
  733. "time": "2018-11-22T23:07:24+00:00",
  734. "type": "library",
  735. "installation-source": "dist",
  736. "autoload": {
  737. "psr-0": {
  738. "PHPExcel": "Classes/"
  739. }
  740. },
  741. "notification-url": "https://packagist.org/downloads/",
  742. "license": [
  743. "LGPL-2.1"
  744. ],
  745. "authors": [
  746. {
  747. "name": "Maarten Balliauw",
  748. "homepage": "http://blog.maartenballiauw.be"
  749. },
  750. {
  751. "name": "Erik Tilt"
  752. },
  753. {
  754. "name": "Franck Lefevre",
  755. "homepage": "http://rootslabs.net"
  756. },
  757. {
  758. "name": "Mark Baker",
  759. "homepage": "http://markbakeruk.net"
  760. }
  761. ],
  762. "description": "PHPExcel - OpenXML - Read, Create and Write Spreadsheet documents in PHP - Spreadsheet engine",
  763. "homepage": "https://github.com/PHPOffice/PHPExcel",
  764. "keywords": [
  765. "OpenXML",
  766. "excel",
  767. "php",
  768. "spreadsheet",
  769. "xls",
  770. "xlsx"
  771. ],
  772. "abandoned": "phpoffice/phpspreadsheet"
  773. },
  774. {
  775. "name": "psr/http-message",
  776. "version": "1.0.1",
  777. "version_normalized": "1.0.1.0",
  778. "source": {
  779. "type": "git",
  780. "url": "https://github.com/php-fig/http-message.git",
  781. "reference": "f6561bf28d520154e4b0ec72be95418abe6d9363"
  782. },
  783. "dist": {
  784. "type": "zip",
  785. "url": "https://api.github.com/repos/php-fig/http-message/zipball/f6561bf28d520154e4b0ec72be95418abe6d9363",
  786. "reference": "f6561bf28d520154e4b0ec72be95418abe6d9363",
  787. "shasum": ""
  788. },
  789. "require": {
  790. "php": ">=5.3.0"
  791. },
  792. "time": "2016-08-06T14:39:51+00:00",
  793. "type": "library",
  794. "extra": {
  795. "branch-alias": {
  796. "dev-master": "1.0.x-dev"
  797. }
  798. },
  799. "installation-source": "dist",
  800. "autoload": {
  801. "psr-4": {
  802. "Psr\\Http\\Message\\": "src/"
  803. }
  804. },
  805. "notification-url": "https://packagist.org/downloads/",
  806. "license": [
  807. "MIT"
  808. ],
  809. "authors": [
  810. {
  811. "name": "PHP-FIG",
  812. "homepage": "http://www.php-fig.org/"
  813. }
  814. ],
  815. "description": "Common interface for HTTP messages",
  816. "homepage": "https://github.com/php-fig/http-message",
  817. "keywords": [
  818. "http",
  819. "http-message",
  820. "psr",
  821. "psr-7",
  822. "request",
  823. "response"
  824. ]
  825. },
  826. {
  827. "name": "ralouphie/getallheaders",
  828. "version": "3.0.3",
  829. "version_normalized": "3.0.3.0",
  830. "source": {
  831. "type": "git",
  832. "url": "https://github.com/ralouphie/getallheaders.git",
  833. "reference": "120b605dfeb996808c31b6477290a714d356e822"
  834. },
  835. "dist": {
  836. "type": "zip",
  837. "url": "https://api.github.com/repos/ralouphie/getallheaders/zipball/120b605dfeb996808c31b6477290a714d356e822",
  838. "reference": "120b605dfeb996808c31b6477290a714d356e822",
  839. "shasum": ""
  840. },
  841. "require": {
  842. "php": ">=5.6"
  843. },
  844. "require-dev": {
  845. "php-coveralls/php-coveralls": "^2.1",
  846. "phpunit/phpunit": "^5 || ^6.5"
  847. },
  848. "time": "2019-03-08T08:55:37+00:00",
  849. "type": "library",
  850. "installation-source": "dist",
  851. "autoload": {
  852. "files": [
  853. "src/getallheaders.php"
  854. ]
  855. },
  856. "notification-url": "https://packagist.org/downloads/",
  857. "license": [
  858. "MIT"
  859. ],
  860. "authors": [
  861. {
  862. "name": "Ralph Khattar",
  863. "email": "ralph.khattar@gmail.com"
  864. }
  865. ],
  866. "description": "A polyfill for getallheaders."
  867. },
  868. {
  869. "name": "symfony/polyfill-mbstring",
  870. "version": "v1.13.1",
  871. "version_normalized": "1.13.1.0",
  872. "source": {
  873. "type": "git",
  874. "url": "https://github.com/symfony/polyfill-mbstring.git",
  875. "reference": "7b4aab9743c30be783b73de055d24a39cf4b954f"
  876. },
  877. "dist": {
  878. "type": "zip",
  879. "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/7b4aab9743c30be783b73de055d24a39cf4b954f",
  880. "reference": "7b4aab9743c30be783b73de055d24a39cf4b954f",
  881. "shasum": ""
  882. },
  883. "require": {
  884. "php": ">=5.3.3"
  885. },
  886. "suggest": {
  887. "ext-mbstring": "For best performance"
  888. },
  889. "time": "2019-11-27T14:18:11+00:00",
  890. "type": "library",
  891. "extra": {
  892. "branch-alias": {
  893. "dev-master": "1.13-dev"
  894. }
  895. },
  896. "installation-source": "dist",
  897. "autoload": {
  898. "psr-4": {
  899. "Symfony\\Polyfill\\Mbstring\\": ""
  900. },
  901. "files": [
  902. "bootstrap.php"
  903. ]
  904. },
  905. "notification-url": "https://packagist.org/downloads/",
  906. "license": [
  907. "MIT"
  908. ],
  909. "authors": [
  910. {
  911. "name": "Nicolas Grekas",
  912. "email": "p@tchwork.com"
  913. },
  914. {
  915. "name": "Symfony Community",
  916. "homepage": "https://symfony.com/contributors"
  917. }
  918. ],
  919. "description": "Symfony polyfill for the Mbstring extension",
  920. "homepage": "https://symfony.com",
  921. "keywords": [
  922. "compatibility",
  923. "mbstring",
  924. "polyfill",
  925. "portable",
  926. "shim"
  927. ]
  928. },
  929. {
  930. "name": "thinkcmf/cmf",
  931. "version": "v5.1.10",
  932. "version_normalized": "5.1.10.0",
  933. "source": {
  934. "type": "git",
  935. "url": "https://github.com/thinkcmf/cmf-core.git",
  936. "reference": "277133f921668d831e95ddcb428bc9cb4e4b5158"
  937. },
  938. "dist": {
  939. "type": "zip",
  940. "url": "https://api.github.com/repos/thinkcmf/cmf-core/zipball/277133f921668d831e95ddcb428bc9cb4e4b5158",
  941. "reference": "277133f921668d831e95ddcb428bc9cb4e4b5158",
  942. "shasum": ""
  943. },
  944. "require": {
  945. "electrolinux/phpquery": "^0.9.6",
  946. "ezyang/htmlpurifier": "^4.9",
  947. "mindplay/annotations": "^1.3",
  948. "phpmailer/phpmailer": "~6.0",
  949. "thinkcmf/cmf-extend": "~5.1.0",
  950. "topthink/framework": "~5.1.0",
  951. "topthink/think-captcha": "^2.0"
  952. },
  953. "time": "2019-10-11T02:27:37+00:00",
  954. "type": "library",
  955. "installation-source": "dist",
  956. "autoload": {
  957. "psr-4": {
  958. "cmf\\": "src"
  959. },
  960. "files": [
  961. "src/common.php"
  962. ],
  963. "classmap": [
  964. "src/App.php",
  965. "src/Log.php",
  966. "src/route/dispatch/Module.php"
  967. ]
  968. },
  969. "notification-url": "https://packagist.org/downloads/",
  970. "license": [
  971. "Apache-2.0"
  972. ],
  973. "authors": [
  974. {
  975. "name": "catman",
  976. "email": "catman@thinkcmf.com"
  977. }
  978. ],
  979. "description": "The ThinkCMF Core Package"
  980. },
  981. {
  982. "name": "thinkcmf/cmf-api",
  983. "version": "v5.1.6",
  984. "version_normalized": "5.1.6.0",
  985. "source": {
  986. "type": "git",
  987. "url": "https://github.com/thinkcmf/cmf-api.git",
  988. "reference": "a7d9edecc8c44aec6395dac8678a2577127f776d"
  989. },
  990. "dist": {
  991. "type": "zip",
  992. "url": "https://api.github.com/repos/thinkcmf/cmf-api/zipball/a7d9edecc8c44aec6395dac8678a2577127f776d",
  993. "reference": "a7d9edecc8c44aec6395dac8678a2577127f776d",
  994. "shasum": ""
  995. },
  996. "require": {
  997. "thinkcmf/cmf": "~5.1.0"
  998. },
  999. "time": "2019-07-23T23:29:11+00:00",
  1000. "type": "library",
  1001. "installation-source": "dist",
  1002. "autoload": {
  1003. "psr-4": {
  1004. "api\\": "src"
  1005. },
  1006. "files": []
  1007. },
  1008. "notification-url": "https://packagist.org/downloads/",
  1009. "license": [
  1010. "Apache-2.0"
  1011. ],
  1012. "authors": [
  1013. {
  1014. "name": "catman",
  1015. "email": "catman@thinkcmf.com"
  1016. }
  1017. ],
  1018. "description": "The ThinkCMF 5.1 Core Api Package"
  1019. },
  1020. {
  1021. "name": "thinkcmf/cmf-app",
  1022. "version": "v5.1.6",
  1023. "version_normalized": "5.1.6.0",
  1024. "source": {
  1025. "type": "git",
  1026. "url": "https://github.com/thinkcmf/cmf-app.git",
  1027. "reference": "dd02fc871dcfccc59ac21750ce6ddec359e79e7d"
  1028. },
  1029. "dist": {
  1030. "type": "zip",
  1031. "url": "https://api.github.com/repos/thinkcmf/cmf-app/zipball/dd02fc871dcfccc59ac21750ce6ddec359e79e7d",
  1032. "reference": "dd02fc871dcfccc59ac21750ce6ddec359e79e7d",
  1033. "shasum": ""
  1034. },
  1035. "require": {
  1036. "thinkcmf/cmf": "~5.1.0"
  1037. },
  1038. "time": "2019-09-06T03:58:33+00:00",
  1039. "type": "library",
  1040. "installation-source": "dist",
  1041. "autoload": {
  1042. "psr-4": {
  1043. "app\\": "src"
  1044. },
  1045. "files": []
  1046. },
  1047. "notification-url": "https://packagist.org/downloads/",
  1048. "license": [
  1049. "Apache-2.0"
  1050. ],
  1051. "authors": [
  1052. {
  1053. "name": "catman",
  1054. "email": "catman@thinkcmf.com"
  1055. }
  1056. ],
  1057. "description": "The ThinkCMF App Package"
  1058. },
  1059. {
  1060. "name": "thinkcmf/cmf-extend",
  1061. "version": "v5.1.0",
  1062. "version_normalized": "5.1.0.0",
  1063. "source": {
  1064. "type": "git",
  1065. "url": "https://github.com/thinkcmf/cmf-extend.git",
  1066. "reference": "39cbfdc69980a4f4b98ee82fa16c605004f26f5f"
  1067. },
  1068. "dist": {
  1069. "type": "zip",
  1070. "url": "https://api.github.com/repos/thinkcmf/cmf-extend/zipball/39cbfdc69980a4f4b98ee82fa16c605004f26f5f",
  1071. "reference": "39cbfdc69980a4f4b98ee82fa16c605004f26f5f",
  1072. "shasum": ""
  1073. },
  1074. "time": "2019-03-04T05:15:23+00:00",
  1075. "type": "library",
  1076. "installation-source": "dist",
  1077. "autoload": {
  1078. "psr-4": {
  1079. "dir\\": "src/dir",
  1080. "tree\\": "src/tree",
  1081. "wxapp\\": "src/wxapp"
  1082. },
  1083. "files": []
  1084. },
  1085. "notification-url": "https://packagist.org/downloads/",
  1086. "license": [
  1087. "Apache-2.0"
  1088. ],
  1089. "authors": [
  1090. {
  1091. "name": "catman",
  1092. "email": "catman@thinkcmf.com"
  1093. }
  1094. ],
  1095. "description": "The ThinkCMF extend Package"
  1096. },
  1097. {
  1098. "name": "thinkcmf/cmf-install",
  1099. "version": "v5.1.4",
  1100. "version_normalized": "5.1.4.0",
  1101. "source": {
  1102. "type": "git",
  1103. "url": "https://github.com/thinkcmf/cmf-install.git",
  1104. "reference": "651f7ff4d4413e2bcf98823853144bb2b67f671a"
  1105. },
  1106. "dist": {
  1107. "type": "zip",
  1108. "url": "https://api.github.com/repos/thinkcmf/cmf-install/zipball/651f7ff4d4413e2bcf98823853144bb2b67f671a",
  1109. "reference": "651f7ff4d4413e2bcf98823853144bb2b67f671a",
  1110. "shasum": ""
  1111. },
  1112. "time": "2019-07-23T23:26:40+00:00",
  1113. "type": "library",
  1114. "installation-source": "dist",
  1115. "autoload": {
  1116. "psr-4": {
  1117. "app\\install\\": "src"
  1118. },
  1119. "files": []
  1120. },
  1121. "notification-url": "https://packagist.org/downloads/",
  1122. "license": [
  1123. "Apache-2.0"
  1124. ],
  1125. "authors": [
  1126. {
  1127. "name": "catman",
  1128. "email": "catman@thinkcmf.com"
  1129. }
  1130. ],
  1131. "description": "The ThinkCMF Install Package"
  1132. },
  1133. {
  1134. "name": "topthink/framework",
  1135. "version": "v5.1.38.1",
  1136. "version_normalized": "5.1.38.1",
  1137. "source": {
  1138. "type": "git",
  1139. "url": "https://github.com/top-think/framework.git",
  1140. "reference": "12d15c29d5d6a972fc8bfc8db005d64d4786028c"
  1141. },
  1142. "dist": {
  1143. "type": "zip",
  1144. "url": "https://api.github.com/repos/top-think/framework/zipball/12d15c29d5d6a972fc8bfc8db005d64d4786028c",
  1145. "reference": "12d15c29d5d6a972fc8bfc8db005d64d4786028c",
  1146. "shasum": ""
  1147. },
  1148. "require": {
  1149. "php": ">=5.6.0",
  1150. "topthink/think-installer": "2.*"
  1151. },
  1152. "require-dev": {
  1153. "johnkary/phpunit-speedtrap": "^1.0",
  1154. "mikey179/vfsstream": "~1.6",
  1155. "phpdocumentor/reflection-docblock": "^2.0",
  1156. "phploc/phploc": "2.*",
  1157. "phpunit/phpunit": "^5.0|^6.0",
  1158. "sebastian/phpcpd": "2.*",
  1159. "squizlabs/php_codesniffer": "2.*"
  1160. },
  1161. "time": "2019-08-12T00:58:30+00:00",
  1162. "type": "think-framework",
  1163. "installation-source": "dist",
  1164. "notification-url": "https://packagist.org/downloads/",
  1165. "license": [
  1166. "Apache-2.0"
  1167. ],
  1168. "authors": [
  1169. {
  1170. "name": "liu21st",
  1171. "email": "liu21st@gmail.com"
  1172. },
  1173. {
  1174. "name": "yunwuxin",
  1175. "email": "448901948@qq.com"
  1176. }
  1177. ],
  1178. "description": "the new thinkphp framework",
  1179. "homepage": "http://thinkphp.cn/",
  1180. "keywords": [
  1181. "framework",
  1182. "orm",
  1183. "thinkphp"
  1184. ]
  1185. },
  1186. {
  1187. "name": "topthink/think-captcha",
  1188. "version": "v2.0.2",
  1189. "version_normalized": "2.0.2.0",
  1190. "source": {
  1191. "type": "git",
  1192. "url": "https://github.com/top-think/think-captcha.git",
  1193. "reference": "54c8a51552f99ff9ea89ea9c272383a8f738ceee"
  1194. },
  1195. "dist": {
  1196. "type": "zip",
  1197. "url": "https://api.github.com/repos/top-think/think-captcha/zipball/54c8a51552f99ff9ea89ea9c272383a8f738ceee",
  1198. "reference": "54c8a51552f99ff9ea89ea9c272383a8f738ceee",
  1199. "shasum": ""
  1200. },
  1201. "require": {
  1202. "topthink/framework": "5.1.*"
  1203. },
  1204. "time": "2017-12-31T16:37:49+00:00",
  1205. "type": "library",
  1206. "installation-source": "dist",
  1207. "autoload": {
  1208. "psr-4": {
  1209. "think\\captcha\\": "src/"
  1210. },
  1211. "files": [
  1212. "src/helper.php"
  1213. ]
  1214. },
  1215. "notification-url": "https://packagist.org/downloads/",
  1216. "license": [
  1217. "Apache-2.0"
  1218. ],
  1219. "authors": [
  1220. {
  1221. "name": "yunwuxin",
  1222. "email": "448901948@qq.com"
  1223. }
  1224. ],
  1225. "description": "captcha package for thinkphp5"
  1226. },
  1227. {
  1228. "name": "topthink/think-helper",
  1229. "version": "v1.0.7",
  1230. "version_normalized": "1.0.7.0",
  1231. "source": {
  1232. "type": "git",
  1233. "url": "https://github.com/top-think/think-helper.git",
  1234. "reference": "5f92178606c8ce131d36b37a57c58eb71e55f019"
  1235. },
  1236. "dist": {
  1237. "type": "zip",
  1238. "url": "https://api.github.com/repos/top-think/think-helper/zipball/5f92178606c8ce131d36b37a57c58eb71e55f019",
  1239. "reference": "5f92178606c8ce131d36b37a57c58eb71e55f019",
  1240. "shasum": ""
  1241. },
  1242. "time": "2018-10-05T00:43:21+00:00",
  1243. "type": "library",
  1244. "installation-source": "dist",
  1245. "autoload": {
  1246. "psr-4": {
  1247. "think\\helper\\": "src"
  1248. },
  1249. "files": [
  1250. "src/helper.php"
  1251. ]
  1252. },
  1253. "notification-url": "https://packagist.org/downloads/",
  1254. "license": [
  1255. "Apache-2.0"
  1256. ],
  1257. "authors": [
  1258. {
  1259. "name": "yunwuxin",
  1260. "email": "448901948@qq.com"
  1261. }
  1262. ],
  1263. "description": "The ThinkPHP5 Helper Package"
  1264. },
  1265. {
  1266. "name": "topthink/think-image",
  1267. "version": "v1.0.7",
  1268. "version_normalized": "1.0.7.0",
  1269. "source": {
  1270. "type": "git",
  1271. "url": "https://github.com/top-think/think-image.git",
  1272. "reference": "8586cf47f117481c6d415b20f7dedf62e79d5512"
  1273. },
  1274. "dist": {
  1275. "type": "zip",
  1276. "url": "https://api.github.com/repos/top-think/think-image/zipball/8586cf47f117481c6d415b20f7dedf62e79d5512",
  1277. "reference": "8586cf47f117481c6d415b20f7dedf62e79d5512",
  1278. "shasum": ""
  1279. },
  1280. "require": {
  1281. "ext-gd": "*"
  1282. },
  1283. "require-dev": {
  1284. "phpunit/phpunit": "4.8.*",
  1285. "topthink/framework": "^5.0"
  1286. },
  1287. "time": "2016-09-29T06:05:43+00:00",
  1288. "type": "library",
  1289. "installation-source": "dist",
  1290. "autoload": {
  1291. "psr-4": {
  1292. "think\\": "src"
  1293. }
  1294. },
  1295. "notification-url": "https://packagist.org/downloads/",
  1296. "license": [
  1297. "Apache-2.0"
  1298. ],
  1299. "authors": [
  1300. {
  1301. "name": "yunwuxin",
  1302. "email": "448901948@qq.com"
  1303. }
  1304. ],
  1305. "description": "The ThinkPHP5 Image Package"
  1306. },
  1307. {
  1308. "name": "topthink/think-installer",
  1309. "version": "v2.0.0",
  1310. "version_normalized": "2.0.0.0",
  1311. "source": {
  1312. "type": "git",
  1313. "url": "https://github.com/top-think/think-installer.git",
  1314. "reference": "f5400a12c60e513911aef41fe443fa6920952675"
  1315. },
  1316. "dist": {
  1317. "type": "zip",
  1318. "url": "https://api.github.com/repos/top-think/think-installer/zipball/f5400a12c60e513911aef41fe443fa6920952675",
  1319. "reference": "f5400a12c60e513911aef41fe443fa6920952675",
  1320. "shasum": ""
  1321. },
  1322. "require": {
  1323. "composer-plugin-api": "^1.0"
  1324. },
  1325. "require-dev": {
  1326. "composer/composer": "1.0.*@dev"
  1327. },
  1328. "time": "2018-05-11T06:45:42+00:00",
  1329. "type": "composer-plugin",
  1330. "extra": {
  1331. "class": "think\\composer\\Plugin"
  1332. },
  1333. "installation-source": "dist",
  1334. "autoload": {
  1335. "psr-4": {
  1336. "think\\composer\\": "src"
  1337. }
  1338. },
  1339. "notification-url": "https://packagist.org/downloads/",
  1340. "license": [
  1341. "Apache-2.0"
  1342. ],
  1343. "authors": [
  1344. {
  1345. "name": "yunwuxin",
  1346. "email": "448901948@qq.com"
  1347. }
  1348. ]
  1349. }
  1350. ]