installed.json 27 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860
  1. [
  2. {
  3. "name": "league/flysystem",
  4. "version": "1.0.57",
  5. "version_normalized": "1.0.57.0",
  6. "source": {
  7. "type": "git",
  8. "url": "https://github.com/thephpleague/flysystem.git",
  9. "reference": "0e9db7f0b96b9f12dcf6f65bc34b72b1a30ea55a"
  10. },
  11. "dist": {
  12. "type": "zip",
  13. "url": "https://api.github.com/repos/thephpleague/flysystem/zipball/0e9db7f0b96b9f12dcf6f65bc34b72b1a30ea55a",
  14. "reference": "0e9db7f0b96b9f12dcf6f65bc34b72b1a30ea55a",
  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. "ext-fileinfo": "*",
  25. "php": ">=5.5.9"
  26. },
  27. "conflict": {
  28. "league/flysystem-sftp": "<1.0.6"
  29. },
  30. "require-dev": {
  31. "phpspec/phpspec": "^3.4",
  32. "phpunit/phpunit": "^5.7.10"
  33. },
  34. "suggest": {
  35. "ext-fileinfo": "Required for MimeType",
  36. "ext-ftp": "Allows you to use FTP server storage",
  37. "ext-openssl": "Allows you to use FTPS server storage",
  38. "league/flysystem-aws-s3-v2": "Allows you to use S3 storage with AWS SDK v2",
  39. "league/flysystem-aws-s3-v3": "Allows you to use S3 storage with AWS SDK v3",
  40. "league/flysystem-azure": "Allows you to use Windows Azure Blob storage",
  41. "league/flysystem-cached-adapter": "Flysystem adapter decorator for metadata caching",
  42. "league/flysystem-eventable-filesystem": "Allows you to use EventableFilesystem",
  43. "league/flysystem-rackspace": "Allows you to use Rackspace Cloud Files",
  44. "league/flysystem-sftp": "Allows you to use SFTP server storage via phpseclib",
  45. "league/flysystem-webdav": "Allows you to use WebDAV storage",
  46. "league/flysystem-ziparchive": "Allows you to use ZipArchive adapter",
  47. "spatie/flysystem-dropbox": "Allows you to use Dropbox storage",
  48. "srmklive/flysystem-dropbox-v2": "Allows you to use Dropbox storage for PHP 5 applications"
  49. },
  50. "time": "2019-10-16T21:01:05+00:00",
  51. "type": "library",
  52. "extra": {
  53. "branch-alias": {
  54. "dev-master": "1.1-dev"
  55. }
  56. },
  57. "installation-source": "dist",
  58. "autoload": {
  59. "psr-4": {
  60. "League\\Flysystem\\": "src/"
  61. }
  62. },
  63. "notification-url": "https://packagist.org/downloads/",
  64. "license": [
  65. "MIT"
  66. ],
  67. "authors": [
  68. {
  69. "name": "Frank de Jonge",
  70. "email": "info@frenky.net"
  71. }
  72. ],
  73. "description": "Filesystem abstraction: Many filesystems, one API.",
  74. "keywords": [
  75. "Cloud Files",
  76. "WebDAV",
  77. "abstraction",
  78. "aws",
  79. "cloud",
  80. "copy.com",
  81. "dropbox",
  82. "file systems",
  83. "files",
  84. "filesystem",
  85. "filesystems",
  86. "ftp",
  87. "rackspace",
  88. "remote",
  89. "s3",
  90. "sftp",
  91. "storage"
  92. ]
  93. },
  94. {
  95. "name": "league/flysystem-cached-adapter",
  96. "version": "1.0.9",
  97. "version_normalized": "1.0.9.0",
  98. "source": {
  99. "type": "git",
  100. "url": "https://github.com/thephpleague/flysystem-cached-adapter.git",
  101. "reference": "08ef74e9be88100807a3b92cc9048a312bf01d6f"
  102. },
  103. "dist": {
  104. "type": "zip",
  105. "url": "https://api.github.com/repos/thephpleague/flysystem-cached-adapter/zipball/08ef74e9be88100807a3b92cc9048a312bf01d6f",
  106. "reference": "08ef74e9be88100807a3b92cc9048a312bf01d6f",
  107. "shasum": "",
  108. "mirrors": [
  109. {
  110. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  111. "preferred": true
  112. }
  113. ]
  114. },
  115. "require": {
  116. "league/flysystem": "~1.0",
  117. "psr/cache": "^1.0.0"
  118. },
  119. "require-dev": {
  120. "mockery/mockery": "~0.9",
  121. "phpspec/phpspec": "^3.4",
  122. "phpunit/phpunit": "^5.7",
  123. "predis/predis": "~1.0",
  124. "tedivm/stash": "~0.12"
  125. },
  126. "suggest": {
  127. "ext-phpredis": "Pure C implemented extension for PHP"
  128. },
  129. "time": "2018-07-09T20:51:04+00:00",
  130. "type": "library",
  131. "installation-source": "dist",
  132. "autoload": {
  133. "psr-4": {
  134. "League\\Flysystem\\Cached\\": "src/"
  135. }
  136. },
  137. "notification-url": "https://packagist.org/downloads/",
  138. "license": [
  139. "MIT"
  140. ],
  141. "authors": [
  142. {
  143. "name": "frankdejonge",
  144. "email": "info@frenky.net"
  145. }
  146. ],
  147. "description": "An adapter decorator to enable meta-data caching."
  148. },
  149. {
  150. "name": "opis/closure",
  151. "version": "3.4.1",
  152. "version_normalized": "3.4.1.0",
  153. "source": {
  154. "type": "git",
  155. "url": "https://github.com/opis/closure.git",
  156. "reference": "e79f851749c3caa836d7ccc01ede5828feb762c7"
  157. },
  158. "dist": {
  159. "type": "zip",
  160. "url": "https://api.github.com/repos/opis/closure/zipball/e79f851749c3caa836d7ccc01ede5828feb762c7",
  161. "reference": "e79f851749c3caa836d7ccc01ede5828feb762c7",
  162. "shasum": "",
  163. "mirrors": [
  164. {
  165. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  166. "preferred": true
  167. }
  168. ]
  169. },
  170. "require": {
  171. "php": "^5.4 || ^7.0"
  172. },
  173. "require-dev": {
  174. "jeremeamia/superclosure": "^2.0",
  175. "phpunit/phpunit": "^4.0 || ^5.0 || ^6.0 || ^7.0"
  176. },
  177. "time": "2019-10-19T18:38:51+00:00",
  178. "type": "library",
  179. "extra": {
  180. "branch-alias": {
  181. "dev-master": "3.3.x-dev"
  182. }
  183. },
  184. "installation-source": "dist",
  185. "autoload": {
  186. "psr-4": {
  187. "Opis\\Closure\\": "src/"
  188. },
  189. "files": [
  190. "functions.php"
  191. ]
  192. },
  193. "notification-url": "https://packagist.org/downloads/",
  194. "license": [
  195. "MIT"
  196. ],
  197. "authors": [
  198. {
  199. "name": "Marius Sarca",
  200. "email": "marius.sarca@gmail.com"
  201. },
  202. {
  203. "name": "Sorin Sarca",
  204. "email": "sarca_sorin@hotmail.com"
  205. }
  206. ],
  207. "description": "A library that can be used to serialize closures (anonymous functions) and arbitrary objects.",
  208. "homepage": "https://opis.io/closure",
  209. "keywords": [
  210. "anonymous functions",
  211. "closure",
  212. "function",
  213. "serializable",
  214. "serialization",
  215. "serialize"
  216. ]
  217. },
  218. {
  219. "name": "psr/cache",
  220. "version": "1.0.1",
  221. "version_normalized": "1.0.1.0",
  222. "source": {
  223. "type": "git",
  224. "url": "https://github.com/php-fig/cache.git",
  225. "reference": "d11b50ad223250cf17b86e38383413f5a6764bf8"
  226. },
  227. "dist": {
  228. "type": "zip",
  229. "url": "https://api.github.com/repos/php-fig/cache/zipball/d11b50ad223250cf17b86e38383413f5a6764bf8",
  230. "reference": "d11b50ad223250cf17b86e38383413f5a6764bf8",
  231. "shasum": "",
  232. "mirrors": [
  233. {
  234. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  235. "preferred": true
  236. }
  237. ]
  238. },
  239. "require": {
  240. "php": ">=5.3.0"
  241. },
  242. "time": "2016-08-06T20:24:11+00:00",
  243. "type": "library",
  244. "extra": {
  245. "branch-alias": {
  246. "dev-master": "1.0.x-dev"
  247. }
  248. },
  249. "installation-source": "dist",
  250. "autoload": {
  251. "psr-4": {
  252. "Psr\\Cache\\": "src/"
  253. }
  254. },
  255. "notification-url": "https://packagist.org/downloads/",
  256. "license": [
  257. "MIT"
  258. ],
  259. "authors": [
  260. {
  261. "name": "PHP-FIG",
  262. "homepage": "http://www.php-fig.org/"
  263. }
  264. ],
  265. "description": "Common interface for caching libraries",
  266. "keywords": [
  267. "cache",
  268. "psr",
  269. "psr-6"
  270. ]
  271. },
  272. {
  273. "name": "psr/container",
  274. "version": "1.0.0",
  275. "version_normalized": "1.0.0.0",
  276. "source": {
  277. "type": "git",
  278. "url": "https://github.com/php-fig/container.git",
  279. "reference": "b7ce3b176482dbbc1245ebf52b181af44c2cf55f"
  280. },
  281. "dist": {
  282. "type": "zip",
  283. "url": "https://api.github.com/repos/php-fig/container/zipball/b7ce3b176482dbbc1245ebf52b181af44c2cf55f",
  284. "reference": "b7ce3b176482dbbc1245ebf52b181af44c2cf55f",
  285. "shasum": "",
  286. "mirrors": [
  287. {
  288. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  289. "preferred": true
  290. }
  291. ]
  292. },
  293. "require": {
  294. "php": ">=5.3.0"
  295. },
  296. "time": "2017-02-14T16:28:37+00:00",
  297. "type": "library",
  298. "extra": {
  299. "branch-alias": {
  300. "dev-master": "1.0.x-dev"
  301. }
  302. },
  303. "installation-source": "dist",
  304. "autoload": {
  305. "psr-4": {
  306. "Psr\\Container\\": "src/"
  307. }
  308. },
  309. "notification-url": "https://packagist.org/downloads/",
  310. "license": [
  311. "MIT"
  312. ],
  313. "authors": [
  314. {
  315. "name": "PHP-FIG",
  316. "homepage": "http://www.php-fig.org/"
  317. }
  318. ],
  319. "description": "Common Container Interface (PHP FIG PSR-11)",
  320. "homepage": "https://github.com/php-fig/container",
  321. "keywords": [
  322. "PSR-11",
  323. "container",
  324. "container-interface",
  325. "container-interop",
  326. "psr"
  327. ]
  328. },
  329. {
  330. "name": "psr/log",
  331. "version": "1.1.2",
  332. "version_normalized": "1.1.2.0",
  333. "source": {
  334. "type": "git",
  335. "url": "https://github.com/php-fig/log.git",
  336. "reference": "446d54b4cb6bf489fc9d75f55843658e6f25d801"
  337. },
  338. "dist": {
  339. "type": "zip",
  340. "url": "https://api.github.com/repos/php-fig/log/zipball/446d54b4cb6bf489fc9d75f55843658e6f25d801",
  341. "reference": "446d54b4cb6bf489fc9d75f55843658e6f25d801",
  342. "shasum": "",
  343. "mirrors": [
  344. {
  345. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  346. "preferred": true
  347. }
  348. ]
  349. },
  350. "require": {
  351. "php": ">=5.3.0"
  352. },
  353. "time": "2019-11-01T11:05:21+00:00",
  354. "type": "library",
  355. "extra": {
  356. "branch-alias": {
  357. "dev-master": "1.1.x-dev"
  358. }
  359. },
  360. "installation-source": "dist",
  361. "autoload": {
  362. "psr-4": {
  363. "Psr\\Log\\": "Psr/Log/"
  364. }
  365. },
  366. "notification-url": "https://packagist.org/downloads/",
  367. "license": [
  368. "MIT"
  369. ],
  370. "authors": [
  371. {
  372. "name": "PHP-FIG",
  373. "homepage": "http://www.php-fig.org/"
  374. }
  375. ],
  376. "description": "Common interface for logging libraries",
  377. "homepage": "https://github.com/php-fig/log",
  378. "keywords": [
  379. "log",
  380. "psr",
  381. "psr-3"
  382. ]
  383. },
  384. {
  385. "name": "psr/simple-cache",
  386. "version": "1.0.1",
  387. "version_normalized": "1.0.1.0",
  388. "source": {
  389. "type": "git",
  390. "url": "https://github.com/php-fig/simple-cache.git",
  391. "reference": "408d5eafb83c57f6365a3ca330ff23aa4a5fa39b"
  392. },
  393. "dist": {
  394. "type": "zip",
  395. "url": "https://api.github.com/repos/php-fig/simple-cache/zipball/408d5eafb83c57f6365a3ca330ff23aa4a5fa39b",
  396. "reference": "408d5eafb83c57f6365a3ca330ff23aa4a5fa39b",
  397. "shasum": "",
  398. "mirrors": [
  399. {
  400. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  401. "preferred": true
  402. }
  403. ]
  404. },
  405. "require": {
  406. "php": ">=5.3.0"
  407. },
  408. "time": "2017-10-23T01:57:42+00:00",
  409. "type": "library",
  410. "extra": {
  411. "branch-alias": {
  412. "dev-master": "1.0.x-dev"
  413. }
  414. },
  415. "installation-source": "dist",
  416. "autoload": {
  417. "psr-4": {
  418. "Psr\\SimpleCache\\": "src/"
  419. }
  420. },
  421. "notification-url": "https://packagist.org/downloads/",
  422. "license": [
  423. "MIT"
  424. ],
  425. "authors": [
  426. {
  427. "name": "PHP-FIG",
  428. "homepage": "http://www.php-fig.org/"
  429. }
  430. ],
  431. "description": "Common interfaces for simple caching",
  432. "keywords": [
  433. "cache",
  434. "caching",
  435. "psr",
  436. "psr-16",
  437. "simple-cache"
  438. ]
  439. },
  440. {
  441. "name": "topthink/framework",
  442. "version": "v6.0.0",
  443. "version_normalized": "6.0.0.0",
  444. "source": {
  445. "type": "git",
  446. "url": "https://github.com/top-think/framework.git",
  447. "reference": "79c555aab0313d1a33ddcdb3c395f2c47f37f597"
  448. },
  449. "dist": {
  450. "type": "zip",
  451. "url": "https://api.github.com/repos/top-think/framework/zipball/79c555aab0313d1a33ddcdb3c395f2c47f37f597",
  452. "reference": "79c555aab0313d1a33ddcdb3c395f2c47f37f597",
  453. "shasum": "",
  454. "mirrors": [
  455. {
  456. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  457. "preferred": true
  458. }
  459. ]
  460. },
  461. "require": {
  462. "ext-json": "*",
  463. "ext-mbstring": "*",
  464. "league/flysystem": "^1.0",
  465. "league/flysystem-cached-adapter": "^1.0",
  466. "opis/closure": "^3.1",
  467. "php": ">=7.1.0",
  468. "psr/container": "~1.0",
  469. "psr/log": "~1.0",
  470. "psr/simple-cache": "^1.0",
  471. "topthink/think-helper": "^3.1.1",
  472. "topthink/think-orm": "^2.0"
  473. },
  474. "require-dev": {
  475. "mikey179/vfsstream": "^1.6",
  476. "mockery/mockery": "^1.2",
  477. "phpunit/phpunit": "^7.0"
  478. },
  479. "time": "2019-10-23T23:28:43+00:00",
  480. "type": "library",
  481. "installation-source": "dist",
  482. "autoload": {
  483. "files": [],
  484. "psr-4": {
  485. "think\\": "src/think/"
  486. }
  487. },
  488. "notification-url": "https://packagist.org/downloads/",
  489. "license": [
  490. "Apache-2.0"
  491. ],
  492. "authors": [
  493. {
  494. "name": "liu21st",
  495. "email": "liu21st@gmail.com"
  496. },
  497. {
  498. "name": "yunwuxin",
  499. "email": "448901948@qq.com"
  500. }
  501. ],
  502. "description": "The ThinkPHP Framework.",
  503. "homepage": "http://thinkphp.cn/",
  504. "keywords": [
  505. "framework",
  506. "orm",
  507. "thinkphp"
  508. ]
  509. },
  510. {
  511. "name": "topthink/think-helper",
  512. "version": "v3.1.3",
  513. "version_normalized": "3.1.3.0",
  514. "source": {
  515. "type": "git",
  516. "url": "https://github.com/top-think/think-helper.git",
  517. "reference": "4d85dfd3778623bbb1de3648f1dcd0c82f4439f4"
  518. },
  519. "dist": {
  520. "type": "zip",
  521. "url": "https://api.github.com/repos/top-think/think-helper/zipball/4d85dfd3778623bbb1de3648f1dcd0c82f4439f4",
  522. "reference": "4d85dfd3778623bbb1de3648f1dcd0c82f4439f4",
  523. "shasum": "",
  524. "mirrors": [
  525. {
  526. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  527. "preferred": true
  528. }
  529. ]
  530. },
  531. "require": {
  532. "php": ">=7.1.0"
  533. },
  534. "time": "2019-09-30T02:36:48+00:00",
  535. "type": "library",
  536. "installation-source": "dist",
  537. "autoload": {
  538. "psr-4": {
  539. "think\\": "src"
  540. },
  541. "files": [
  542. "src/helper.php"
  543. ]
  544. },
  545. "notification-url": "https://packagist.org/downloads/",
  546. "license": [
  547. "Apache-2.0"
  548. ],
  549. "authors": [
  550. {
  551. "name": "yunwuxin",
  552. "email": "448901948@qq.com"
  553. }
  554. ],
  555. "description": "The ThinkPHP6 Helper Package"
  556. },
  557. {
  558. "name": "topthink/think-multi-app",
  559. "version": "v1.0.11",
  560. "version_normalized": "1.0.11.0",
  561. "source": {
  562. "type": "git",
  563. "url": "https://github.com/top-think/think-multi-app.git",
  564. "reference": "215f4a6bb88e53ad41b448c61957336eb55ce6f9"
  565. },
  566. "dist": {
  567. "type": "zip",
  568. "url": "https://api.github.com/repos/top-think/think-multi-app/zipball/215f4a6bb88e53ad41b448c61957336eb55ce6f9",
  569. "reference": "215f4a6bb88e53ad41b448c61957336eb55ce6f9",
  570. "shasum": "",
  571. "mirrors": [
  572. {
  573. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  574. "preferred": true
  575. }
  576. ]
  577. },
  578. "require": {
  579. "php": ">=7.1.0",
  580. "topthink/framework": "^6.0.0"
  581. },
  582. "time": "2019-10-29T06:34:59+00:00",
  583. "type": "library",
  584. "extra": {
  585. "think": {
  586. "services": [
  587. "think\\app\\Service"
  588. ]
  589. }
  590. },
  591. "installation-source": "dist",
  592. "autoload": {
  593. "psr-4": {
  594. "think\\app\\": "src"
  595. }
  596. },
  597. "notification-url": "https://packagist.org/downloads/",
  598. "license": [
  599. "Apache-2.0"
  600. ],
  601. "authors": [
  602. {
  603. "name": "liu21st",
  604. "email": "liu21st@gmail.com"
  605. }
  606. ],
  607. "description": "thinkphp6 multi app support"
  608. },
  609. {
  610. "name": "topthink/think-orm",
  611. "version": "v2.0.27",
  612. "version_normalized": "2.0.27.0",
  613. "source": {
  614. "type": "git",
  615. "url": "https://github.com/top-think/think-orm.git",
  616. "reference": "02affaaccade2cdd8bbb2d2f5d15e46113e6eb50"
  617. },
  618. "dist": {
  619. "type": "zip",
  620. "url": "https://api.github.com/repos/top-think/think-orm/zipball/02affaaccade2cdd8bbb2d2f5d15e46113e6eb50",
  621. "reference": "02affaaccade2cdd8bbb2d2f5d15e46113e6eb50",
  622. "shasum": "",
  623. "mirrors": [
  624. {
  625. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  626. "preferred": true
  627. }
  628. ]
  629. },
  630. "require": {
  631. "ext-json": "*",
  632. "php": ">=7.1.0",
  633. "psr/log": "~1.0",
  634. "psr/simple-cache": "^1.0",
  635. "topthink/think-helper": "^3.1"
  636. },
  637. "time": "2019-10-23T02:16:50+00:00",
  638. "type": "library",
  639. "installation-source": "dist",
  640. "autoload": {
  641. "psr-4": {
  642. "think\\": "src"
  643. },
  644. "files": []
  645. },
  646. "notification-url": "https://packagist.org/downloads/",
  647. "license": [
  648. "Apache-2.0"
  649. ],
  650. "authors": [
  651. {
  652. "name": "liu21st",
  653. "email": "liu21st@gmail.com"
  654. }
  655. ],
  656. "description": "think orm",
  657. "keywords": [
  658. "database",
  659. "orm"
  660. ]
  661. },
  662. {
  663. "name": "topthink/think-template",
  664. "version": "v2.0.7",
  665. "version_normalized": "2.0.7.0",
  666. "source": {
  667. "type": "git",
  668. "url": "https://github.com/top-think/think-template.git",
  669. "reference": "e98bdbb4a4c94b442f17dfceba81e0134d4fbd19"
  670. },
  671. "dist": {
  672. "type": "zip",
  673. "url": "https://api.github.com/repos/top-think/think-template/zipball/e98bdbb4a4c94b442f17dfceba81e0134d4fbd19",
  674. "reference": "e98bdbb4a4c94b442f17dfceba81e0134d4fbd19",
  675. "shasum": "",
  676. "mirrors": [
  677. {
  678. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  679. "preferred": true
  680. }
  681. ]
  682. },
  683. "require": {
  684. "php": ">=7.1.0",
  685. "psr/simple-cache": "^1.0"
  686. },
  687. "time": "2019-09-20T15:31:04+00:00",
  688. "type": "library",
  689. "installation-source": "dist",
  690. "autoload": {
  691. "psr-4": {
  692. "think\\": "src"
  693. }
  694. },
  695. "notification-url": "https://packagist.org/downloads/",
  696. "license": [
  697. "Apache-2.0"
  698. ],
  699. "authors": [
  700. {
  701. "name": "liu21st",
  702. "email": "liu21st@gmail.com"
  703. }
  704. ],
  705. "description": "the php template engine"
  706. },
  707. {
  708. "name": "topthink/think-view",
  709. "version": "v1.0.13",
  710. "version_normalized": "1.0.13.0",
  711. "source": {
  712. "type": "git",
  713. "url": "https://github.com/top-think/think-view.git",
  714. "reference": "90803b73f781db5d42619082c4597afc58b2d4c5"
  715. },
  716. "dist": {
  717. "type": "zip",
  718. "url": "https://api.github.com/repos/top-think/think-view/zipball/90803b73f781db5d42619082c4597afc58b2d4c5",
  719. "reference": "90803b73f781db5d42619082c4597afc58b2d4c5",
  720. "shasum": "",
  721. "mirrors": [
  722. {
  723. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  724. "preferred": true
  725. }
  726. ]
  727. },
  728. "require": {
  729. "php": ">=7.1.0",
  730. "topthink/think-template": "^2.0"
  731. },
  732. "time": "2019-10-07T12:23:10+00:00",
  733. "type": "library",
  734. "installation-source": "dist",
  735. "autoload": {
  736. "psr-4": {
  737. "think\\view\\driver\\": "src"
  738. }
  739. },
  740. "notification-url": "https://packagist.org/downloads/",
  741. "license": [
  742. "Apache-2.0"
  743. ],
  744. "authors": [
  745. {
  746. "name": "liu21st",
  747. "email": "liu21st@gmail.com"
  748. }
  749. ],
  750. "description": "thinkphp template driver"
  751. },
  752. {
  753. "name": "zoujingli/ip2region",
  754. "version": "v1.0.7",
  755. "version_normalized": "1.0.7.0",
  756. "source": {
  757. "type": "git",
  758. "url": "https://github.com/zoujingli/ip2region.git",
  759. "reference": "f898a7d90cfacd54433de4028190c336164f2ae4"
  760. },
  761. "dist": {
  762. "type": "zip",
  763. "url": "https://api.github.com/repos/zoujingli/ip2region/zipball/f898a7d90cfacd54433de4028190c336164f2ae4",
  764. "reference": "f898a7d90cfacd54433de4028190c336164f2ae4",
  765. "shasum": "",
  766. "mirrors": [
  767. {
  768. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  769. "preferred": true
  770. }
  771. ]
  772. },
  773. "require": {
  774. "php": ">=5.3"
  775. },
  776. "time": "2019-10-29T09:03:57+00:00",
  777. "type": "library",
  778. "installation-source": "dist",
  779. "autoload": {
  780. "classmap": [
  781. "Ip2Region.php"
  782. ]
  783. },
  784. "notification-url": "https://packagist.org/downloads/",
  785. "license": [
  786. "Apache-2.0"
  787. ],
  788. "authors": [
  789. {
  790. "name": "Anyon",
  791. "email": "zoujingli@qq.com",
  792. "homepage": "http://ctolog.com"
  793. }
  794. ],
  795. "description": "Ip2Region for PHP",
  796. "homepage": "https://github.com/zoujingli/Ip2Region",
  797. "keywords": [
  798. "Ip2Region"
  799. ]
  800. },
  801. {
  802. "name": "zoujingli/think-library",
  803. "version": "v6.0.x-dev",
  804. "version_normalized": "6.0.9999999.9999999-dev",
  805. "source": {
  806. "type": "git",
  807. "url": "https://github.com/zoujingli/ThinkLibrary.git",
  808. "reference": "9e636a7be3d7c468cb73c40c48835bf51cef6864"
  809. },
  810. "dist": {
  811. "type": "zip",
  812. "url": "https://api.github.com/repos/zoujingli/ThinkLibrary/zipball/9e636a7be3d7c468cb73c40c48835bf51cef6864",
  813. "reference": "9e636a7be3d7c468cb73c40c48835bf51cef6864",
  814. "shasum": "",
  815. "mirrors": [
  816. {
  817. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  818. "preferred": true
  819. }
  820. ]
  821. },
  822. "require": {
  823. "ext-curl": "*",
  824. "ext-gd": "*",
  825. "ext-iconv": "*",
  826. "ext-json": "*",
  827. "topthink/framework": "^6.0"
  828. },
  829. "time": "2019-11-18T11:43:36+00:00",
  830. "type": "library",
  831. "extra": {
  832. "think": {
  833. "services": [
  834. "think\\admin\\Library"
  835. ]
  836. }
  837. },
  838. "installation-source": "dist",
  839. "autoload": {
  840. "files": [
  841. "src/common.php"
  842. ],
  843. "psr-4": {
  844. "think\\admin\\": "src"
  845. }
  846. },
  847. "notification-url": "https://packagist.org/downloads/",
  848. "license": [
  849. "MIT"
  850. ],
  851. "authors": [
  852. {
  853. "name": "Anyon",
  854. "email": "zoujingli@qq.com"
  855. }
  856. ],
  857. "description": "ThinkPHP v6.0 Development Library",
  858. "homepage": "http://framework.thinkadmin.top"
  859. }
  860. ]