composer.lock 29 KB

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