composer.lock 33 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937
  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": "81f235a26f8c2724c4092140ad25c002",
  8. "packages": [
  9. {
  10. "name": "league/flysystem",
  11. "version": "1.1.4",
  12. "source": {
  13. "type": "git",
  14. "url": "https://github.com/thephpleague/flysystem.git",
  15. "reference": "f3ad69181b8afed2c9edf7be5a2918144ff4ea32"
  16. },
  17. "dist": {
  18. "type": "zip",
  19. "url": "https://api.github.com/repos/thephpleague/flysystem/zipball/f3ad69181b8afed2c9edf7be5a2918144ff4ea32",
  20. "reference": "f3ad69181b8afed2c9edf7be5a2918144ff4ea32",
  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. "league/mime-type-detection": "^1.3",
  32. "php": "^7.2.5 || ^8.0"
  33. },
  34. "conflict": {
  35. "league/flysystem-sftp": "<1.0.6"
  36. },
  37. "require-dev": {
  38. "phpspec/prophecy": "^1.11.1",
  39. "phpunit/phpunit": "^8.5.8"
  40. },
  41. "suggest": {
  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. "support": {
  98. "issues": "https://github.com/thephpleague/flysystem/issues",
  99. "source": "https://github.com/thephpleague/flysystem/tree/1.1.4"
  100. },
  101. "funding": [
  102. {
  103. "url": "https://offset.earth/frankdejonge",
  104. "type": "other"
  105. }
  106. ],
  107. "time": "2021-06-23T21:56:05+00:00"
  108. },
  109. {
  110. "name": "league/flysystem-cached-adapter",
  111. "version": "1.1.0",
  112. "source": {
  113. "type": "git",
  114. "url": "https://github.com/thephpleague/flysystem-cached-adapter.git",
  115. "reference": "d1925efb2207ac4be3ad0c40b8277175f99ffaff"
  116. },
  117. "dist": {
  118. "type": "zip",
  119. "url": "https://api.github.com/repos/thephpleague/flysystem-cached-adapter/zipball/d1925efb2207ac4be3ad0c40b8277175f99ffaff",
  120. "reference": "d1925efb2207ac4be3ad0c40b8277175f99ffaff",
  121. "shasum": "",
  122. "mirrors": [
  123. {
  124. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  125. "preferred": true
  126. }
  127. ]
  128. },
  129. "require": {
  130. "league/flysystem": "~1.0",
  131. "psr/cache": "^1.0.0"
  132. },
  133. "require-dev": {
  134. "mockery/mockery": "~0.9",
  135. "phpspec/phpspec": "^3.4",
  136. "phpunit/phpunit": "^5.7",
  137. "predis/predis": "~1.0",
  138. "tedivm/stash": "~0.12"
  139. },
  140. "suggest": {
  141. "ext-phpredis": "Pure C implemented extension for PHP"
  142. },
  143. "type": "library",
  144. "autoload": {
  145. "psr-4": {
  146. "League\\Flysystem\\Cached\\": "src/"
  147. }
  148. },
  149. "notification-url": "https://packagist.org/downloads/",
  150. "license": [
  151. "MIT"
  152. ],
  153. "authors": [
  154. {
  155. "name": "frankdejonge",
  156. "email": "info@frenky.net"
  157. }
  158. ],
  159. "description": "An adapter decorator to enable meta-data caching.",
  160. "support": {
  161. "issues": "https://github.com/thephpleague/flysystem-cached-adapter/issues",
  162. "source": "https://github.com/thephpleague/flysystem-cached-adapter/tree/master"
  163. },
  164. "time": "2020-07-25T15:56:04+00:00"
  165. },
  166. {
  167. "name": "league/mime-type-detection",
  168. "version": "1.7.0",
  169. "source": {
  170. "type": "git",
  171. "url": "https://github.com/thephpleague/mime-type-detection.git",
  172. "reference": "3b9dff8aaf7323590c1d2e443db701eb1f9aa0d3"
  173. },
  174. "dist": {
  175. "type": "zip",
  176. "url": "https://api.github.com/repos/thephpleague/mime-type-detection/zipball/3b9dff8aaf7323590c1d2e443db701eb1f9aa0d3",
  177. "reference": "3b9dff8aaf7323590c1d2e443db701eb1f9aa0d3",
  178. "shasum": "",
  179. "mirrors": [
  180. {
  181. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  182. "preferred": true
  183. }
  184. ]
  185. },
  186. "require": {
  187. "ext-fileinfo": "*",
  188. "php": "^7.2 || ^8.0"
  189. },
  190. "require-dev": {
  191. "friendsofphp/php-cs-fixer": "^2.18",
  192. "phpstan/phpstan": "^0.12.68",
  193. "phpunit/phpunit": "^8.5.8 || ^9.3"
  194. },
  195. "type": "library",
  196. "autoload": {
  197. "psr-4": {
  198. "League\\MimeTypeDetection\\": "src"
  199. }
  200. },
  201. "notification-url": "https://packagist.org/downloads/",
  202. "license": [
  203. "MIT"
  204. ],
  205. "authors": [
  206. {
  207. "name": "Frank de Jonge",
  208. "email": "info@frankdejonge.nl"
  209. }
  210. ],
  211. "description": "Mime-type detection for Flysystem",
  212. "support": {
  213. "issues": "https://github.com/thephpleague/mime-type-detection/issues",
  214. "source": "https://github.com/thephpleague/mime-type-detection/tree/1.7.0"
  215. },
  216. "funding": [
  217. {
  218. "url": "https://github.com/frankdejonge",
  219. "type": "github"
  220. },
  221. {
  222. "url": "https://tidelift.com/funding/github/packagist/league/flysystem",
  223. "type": "tidelift"
  224. }
  225. ],
  226. "time": "2021-01-18T20:58:21+00:00"
  227. },
  228. {
  229. "name": "phpoffice/phpexcel",
  230. "version": "1.8.2",
  231. "source": {
  232. "type": "git",
  233. "url": "https://github.com/PHPOffice/PHPExcel.git",
  234. "reference": "1441011fb7ecdd8cc689878f54f8b58a6805f870"
  235. },
  236. "dist": {
  237. "type": "zip",
  238. "url": "https://api.github.com/repos/PHPOffice/PHPExcel/zipball/1441011fb7ecdd8cc689878f54f8b58a6805f870",
  239. "reference": "1441011fb7ecdd8cc689878f54f8b58a6805f870",
  240. "shasum": "",
  241. "mirrors": [
  242. {
  243. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  244. "preferred": true
  245. }
  246. ]
  247. },
  248. "require": {
  249. "ext-mbstring": "*",
  250. "ext-xml": "*",
  251. "ext-xmlwriter": "*",
  252. "php": "^5.2|^7.0"
  253. },
  254. "require-dev": {
  255. "squizlabs/php_codesniffer": "2.*"
  256. },
  257. "type": "library",
  258. "autoload": {
  259. "psr-0": {
  260. "PHPExcel": "Classes/"
  261. }
  262. },
  263. "notification-url": "https://packagist.org/downloads/",
  264. "license": [
  265. "LGPL-2.1"
  266. ],
  267. "authors": [
  268. {
  269. "name": "Maarten Balliauw",
  270. "homepage": "http://blog.maartenballiauw.be"
  271. },
  272. {
  273. "name": "Erik Tilt"
  274. },
  275. {
  276. "name": "Franck Lefevre",
  277. "homepage": "http://rootslabs.net"
  278. },
  279. {
  280. "name": "Mark Baker",
  281. "homepage": "http://markbakeruk.net"
  282. }
  283. ],
  284. "description": "PHPExcel - OpenXML - Read, Create and Write Spreadsheet documents in PHP - Spreadsheet engine",
  285. "homepage": "https://github.com/PHPOffice/PHPExcel",
  286. "keywords": [
  287. "OpenXML",
  288. "excel",
  289. "php",
  290. "spreadsheet",
  291. "xls",
  292. "xlsx"
  293. ],
  294. "support": {
  295. "issues": "https://github.com/PHPOffice/PHPExcel/issues",
  296. "source": "https://github.com/PHPOffice/PHPExcel/tree/master"
  297. },
  298. "abandoned": "phpoffice/phpspreadsheet",
  299. "time": "2018-11-22T23:07:24+00:00"
  300. },
  301. {
  302. "name": "psr/cache",
  303. "version": "1.0.1",
  304. "source": {
  305. "type": "git",
  306. "url": "https://github.com/php-fig/cache.git",
  307. "reference": "d11b50ad223250cf17b86e38383413f5a6764bf8"
  308. },
  309. "dist": {
  310. "type": "zip",
  311. "url": "https://api.github.com/repos/php-fig/cache/zipball/d11b50ad223250cf17b86e38383413f5a6764bf8",
  312. "reference": "d11b50ad223250cf17b86e38383413f5a6764bf8",
  313. "shasum": "",
  314. "mirrors": [
  315. {
  316. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  317. "preferred": true
  318. }
  319. ]
  320. },
  321. "require": {
  322. "php": ">=5.3.0"
  323. },
  324. "type": "library",
  325. "extra": {
  326. "branch-alias": {
  327. "dev-master": "1.0.x-dev"
  328. }
  329. },
  330. "autoload": {
  331. "psr-4": {
  332. "Psr\\Cache\\": "src/"
  333. }
  334. },
  335. "notification-url": "https://packagist.org/downloads/",
  336. "license": [
  337. "MIT"
  338. ],
  339. "authors": [
  340. {
  341. "name": "PHP-FIG",
  342. "homepage": "http://www.php-fig.org/"
  343. }
  344. ],
  345. "description": "Common interface for caching libraries",
  346. "keywords": [
  347. "cache",
  348. "psr",
  349. "psr-6"
  350. ],
  351. "support": {
  352. "source": "https://github.com/php-fig/cache/tree/master"
  353. },
  354. "time": "2016-08-06T20:24:11+00:00"
  355. },
  356. {
  357. "name": "psr/container",
  358. "version": "1.1.1",
  359. "source": {
  360. "type": "git",
  361. "url": "https://github.com/php-fig/container.git",
  362. "reference": "8622567409010282b7aeebe4bb841fe98b58dcaf"
  363. },
  364. "dist": {
  365. "type": "zip",
  366. "url": "https://api.github.com/repos/php-fig/container/zipball/8622567409010282b7aeebe4bb841fe98b58dcaf",
  367. "reference": "8622567409010282b7aeebe4bb841fe98b58dcaf",
  368. "shasum": "",
  369. "mirrors": [
  370. {
  371. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  372. "preferred": true
  373. }
  374. ]
  375. },
  376. "require": {
  377. "php": ">=7.2.0"
  378. },
  379. "type": "library",
  380. "autoload": {
  381. "psr-4": {
  382. "Psr\\Container\\": "src/"
  383. }
  384. },
  385. "notification-url": "https://packagist.org/downloads/",
  386. "license": [
  387. "MIT"
  388. ],
  389. "authors": [
  390. {
  391. "name": "PHP-FIG",
  392. "homepage": "https://www.php-fig.org/"
  393. }
  394. ],
  395. "description": "Common Container Interface (PHP FIG PSR-11)",
  396. "homepage": "https://github.com/php-fig/container",
  397. "keywords": [
  398. "PSR-11",
  399. "container",
  400. "container-interface",
  401. "container-interop",
  402. "psr"
  403. ],
  404. "support": {
  405. "issues": "https://github.com/php-fig/container/issues",
  406. "source": "https://github.com/php-fig/container/tree/1.1.1"
  407. },
  408. "time": "2021-03-05T17:36:06+00:00"
  409. },
  410. {
  411. "name": "psr/log",
  412. "version": "1.1.4",
  413. "source": {
  414. "type": "git",
  415. "url": "https://github.com/php-fig/log.git",
  416. "reference": "d49695b909c3b7628b6289db5479a1c204601f11"
  417. },
  418. "dist": {
  419. "type": "zip",
  420. "url": "https://api.github.com/repos/php-fig/log/zipball/d49695b909c3b7628b6289db5479a1c204601f11",
  421. "reference": "d49695b909c3b7628b6289db5479a1c204601f11",
  422. "shasum": "",
  423. "mirrors": [
  424. {
  425. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  426. "preferred": true
  427. }
  428. ]
  429. },
  430. "require": {
  431. "php": ">=5.3.0"
  432. },
  433. "type": "library",
  434. "extra": {
  435. "branch-alias": {
  436. "dev-master": "1.1.x-dev"
  437. }
  438. },
  439. "autoload": {
  440. "psr-4": {
  441. "Psr\\Log\\": "Psr/Log/"
  442. }
  443. },
  444. "notification-url": "https://packagist.org/downloads/",
  445. "license": [
  446. "MIT"
  447. ],
  448. "authors": [
  449. {
  450. "name": "PHP-FIG",
  451. "homepage": "https://www.php-fig.org/"
  452. }
  453. ],
  454. "description": "Common interface for logging libraries",
  455. "homepage": "https://github.com/php-fig/log",
  456. "keywords": [
  457. "log",
  458. "psr",
  459. "psr-3"
  460. ],
  461. "support": {
  462. "source": "https://github.com/php-fig/log/tree/1.1.4"
  463. },
  464. "time": "2021-05-03T11:20:27+00:00"
  465. },
  466. {
  467. "name": "psr/simple-cache",
  468. "version": "1.0.1",
  469. "source": {
  470. "type": "git",
  471. "url": "https://github.com/php-fig/simple-cache.git",
  472. "reference": "408d5eafb83c57f6365a3ca330ff23aa4a5fa39b"
  473. },
  474. "dist": {
  475. "type": "zip",
  476. "url": "https://api.github.com/repos/php-fig/simple-cache/zipball/408d5eafb83c57f6365a3ca330ff23aa4a5fa39b",
  477. "reference": "408d5eafb83c57f6365a3ca330ff23aa4a5fa39b",
  478. "shasum": "",
  479. "mirrors": [
  480. {
  481. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  482. "preferred": true
  483. }
  484. ]
  485. },
  486. "require": {
  487. "php": ">=5.3.0"
  488. },
  489. "type": "library",
  490. "extra": {
  491. "branch-alias": {
  492. "dev-master": "1.0.x-dev"
  493. }
  494. },
  495. "autoload": {
  496. "psr-4": {
  497. "Psr\\SimpleCache\\": "src/"
  498. }
  499. },
  500. "notification-url": "https://packagist.org/downloads/",
  501. "license": [
  502. "MIT"
  503. ],
  504. "authors": [
  505. {
  506. "name": "PHP-FIG",
  507. "homepage": "http://www.php-fig.org/"
  508. }
  509. ],
  510. "description": "Common interfaces for simple caching",
  511. "keywords": [
  512. "cache",
  513. "caching",
  514. "psr",
  515. "psr-16",
  516. "simple-cache"
  517. ],
  518. "support": {
  519. "source": "https://github.com/php-fig/simple-cache/tree/master"
  520. },
  521. "time": "2017-10-23T01:57:42+00:00"
  522. },
  523. {
  524. "name": "topthink/framework",
  525. "version": "v6.0.9",
  526. "source": {
  527. "type": "git",
  528. "url": "https://github.com/top-think/framework.git",
  529. "reference": "0b5fb453f0e533de3af3a1ab6a202510b61be617"
  530. },
  531. "dist": {
  532. "type": "zip",
  533. "url": "https://api.github.com/repos/top-think/framework/zipball/0b5fb453f0e533de3af3a1ab6a202510b61be617",
  534. "reference": "0b5fb453f0e533de3af3a1ab6a202510b61be617",
  535. "shasum": "",
  536. "mirrors": [
  537. {
  538. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  539. "preferred": true
  540. }
  541. ]
  542. },
  543. "require": {
  544. "ext-json": "*",
  545. "ext-mbstring": "*",
  546. "league/flysystem": "^1.1.4",
  547. "league/flysystem-cached-adapter": "^1.0",
  548. "php": ">=7.2.5",
  549. "psr/container": "~1.0",
  550. "psr/log": "~1.0",
  551. "psr/simple-cache": "^1.0",
  552. "topthink/think-helper": "^3.1.1",
  553. "topthink/think-orm": "^2.0"
  554. },
  555. "require-dev": {
  556. "mikey179/vfsstream": "^1.6",
  557. "mockery/mockery": "^1.2",
  558. "phpunit/phpunit": "^7.0"
  559. },
  560. "type": "library",
  561. "autoload": {
  562. "files": [],
  563. "psr-4": {
  564. "think\\": "src/think/"
  565. }
  566. },
  567. "notification-url": "https://packagist.org/downloads/",
  568. "license": [
  569. "Apache-2.0"
  570. ],
  571. "authors": [
  572. {
  573. "name": "liu21st",
  574. "email": "liu21st@gmail.com"
  575. },
  576. {
  577. "name": "yunwuxin",
  578. "email": "448901948@qq.com"
  579. }
  580. ],
  581. "description": "The ThinkPHP Framework.",
  582. "homepage": "http://thinkphp.cn/",
  583. "keywords": [
  584. "framework",
  585. "orm",
  586. "thinkphp"
  587. ],
  588. "support": {
  589. "issues": "https://github.com/top-think/framework/issues",
  590. "source": "https://github.com/top-think/framework/tree/v6.0.9"
  591. },
  592. "time": "2021-07-22T03:24:49+00:00"
  593. },
  594. {
  595. "name": "topthink/think-helper",
  596. "version": "v3.1.5",
  597. "source": {
  598. "type": "git",
  599. "url": "https://github.com/top-think/think-helper.git",
  600. "reference": "f98e3ad44acd27ae85a4d923b1bdfd16c6d8d905"
  601. },
  602. "dist": {
  603. "type": "zip",
  604. "url": "https://api.github.com/repos/top-think/think-helper/zipball/f98e3ad44acd27ae85a4d923b1bdfd16c6d8d905",
  605. "reference": "f98e3ad44acd27ae85a4d923b1bdfd16c6d8d905",
  606. "shasum": "",
  607. "mirrors": [
  608. {
  609. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  610. "preferred": true
  611. }
  612. ]
  613. },
  614. "require": {
  615. "php": ">=7.1.0"
  616. },
  617. "type": "library",
  618. "autoload": {
  619. "psr-4": {
  620. "think\\": "src"
  621. },
  622. "files": [
  623. "src/helper.php"
  624. ]
  625. },
  626. "notification-url": "https://packagist.org/downloads/",
  627. "license": [
  628. "Apache-2.0"
  629. ],
  630. "authors": [
  631. {
  632. "name": "yunwuxin",
  633. "email": "448901948@qq.com"
  634. }
  635. ],
  636. "description": "The ThinkPHP6 Helper Package",
  637. "support": {
  638. "issues": "https://github.com/top-think/think-helper/issues",
  639. "source": "https://github.com/top-think/think-helper/tree/v3.1.5"
  640. },
  641. "time": "2021-06-21T06:17:31+00:00"
  642. },
  643. {
  644. "name": "topthink/think-orm",
  645. "version": "v2.0.44",
  646. "source": {
  647. "type": "git",
  648. "url": "https://github.com/top-think/think-orm.git",
  649. "reference": "5d3d5c1ebf8bfccf34bacd90edb42989b16ea409"
  650. },
  651. "dist": {
  652. "type": "zip",
  653. "url": "https://api.github.com/repos/top-think/think-orm/zipball/5d3d5c1ebf8bfccf34bacd90edb42989b16ea409",
  654. "reference": "5d3d5c1ebf8bfccf34bacd90edb42989b16ea409",
  655. "shasum": "",
  656. "mirrors": [
  657. {
  658. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  659. "preferred": true
  660. }
  661. ]
  662. },
  663. "require": {
  664. "ext-json": "*",
  665. "ext-pdo": "*",
  666. "php": ">=7.1.0",
  667. "psr/log": "~1.0",
  668. "psr/simple-cache": "^1.0",
  669. "topthink/think-helper": "^3.1"
  670. },
  671. "require-dev": {
  672. "phpunit/phpunit": "^7|^8|^9.5"
  673. },
  674. "type": "library",
  675. "autoload": {
  676. "psr-4": {
  677. "think\\": "src"
  678. },
  679. "files": [
  680. "stubs/load_stubs.php"
  681. ]
  682. },
  683. "notification-url": "https://packagist.org/downloads/",
  684. "license": [
  685. "Apache-2.0"
  686. ],
  687. "authors": [
  688. {
  689. "name": "liu21st",
  690. "email": "liu21st@gmail.com"
  691. }
  692. ],
  693. "description": "think orm",
  694. "keywords": [
  695. "database",
  696. "orm"
  697. ],
  698. "support": {
  699. "issues": "https://github.com/top-think/think-orm/issues",
  700. "source": "https://github.com/top-think/think-orm/tree/v2.0.44"
  701. },
  702. "time": "2021-07-21T02:22:31+00:00"
  703. },
  704. {
  705. "name": "topthink/think-template",
  706. "version": "v2.0.8",
  707. "source": {
  708. "type": "git",
  709. "url": "https://github.com/top-think/think-template.git",
  710. "reference": "abfc293f74f9ef5127b5c416310a01fe42e59368"
  711. },
  712. "dist": {
  713. "type": "zip",
  714. "url": "https://api.github.com/repos/top-think/think-template/zipball/abfc293f74f9ef5127b5c416310a01fe42e59368",
  715. "reference": "abfc293f74f9ef5127b5c416310a01fe42e59368",
  716. "shasum": "",
  717. "mirrors": [
  718. {
  719. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  720. "preferred": true
  721. }
  722. ]
  723. },
  724. "require": {
  725. "php": ">=7.1.0",
  726. "psr/simple-cache": "^1.0"
  727. },
  728. "type": "library",
  729. "autoload": {
  730. "psr-4": {
  731. "think\\": "src"
  732. }
  733. },
  734. "notification-url": "https://packagist.org/downloads/",
  735. "license": [
  736. "Apache-2.0"
  737. ],
  738. "authors": [
  739. {
  740. "name": "liu21st",
  741. "email": "liu21st@gmail.com"
  742. }
  743. ],
  744. "description": "the php template engine",
  745. "support": {
  746. "issues": "https://github.com/top-think/think-template/issues",
  747. "source": "https://github.com/top-think/think-template/tree/v2.0.8"
  748. },
  749. "time": "2020-12-10T07:52:03+00:00"
  750. },
  751. {
  752. "name": "topthink/think-view",
  753. "version": "v1.0.14",
  754. "source": {
  755. "type": "git",
  756. "url": "https://github.com/top-think/think-view.git",
  757. "reference": "edce0ae2c9551ab65f9e94a222604b0dead3576d"
  758. },
  759. "dist": {
  760. "type": "zip",
  761. "url": "https://api.github.com/repos/top-think/think-view/zipball/edce0ae2c9551ab65f9e94a222604b0dead3576d",
  762. "reference": "edce0ae2c9551ab65f9e94a222604b0dead3576d",
  763. "shasum": "",
  764. "mirrors": [
  765. {
  766. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  767. "preferred": true
  768. }
  769. ]
  770. },
  771. "require": {
  772. "php": ">=7.1.0",
  773. "topthink/think-template": "^2.0"
  774. },
  775. "type": "library",
  776. "autoload": {
  777. "psr-4": {
  778. "think\\view\\driver\\": "src"
  779. }
  780. },
  781. "notification-url": "https://packagist.org/downloads/",
  782. "license": [
  783. "Apache-2.0"
  784. ],
  785. "authors": [
  786. {
  787. "name": "liu21st",
  788. "email": "liu21st@gmail.com"
  789. }
  790. ],
  791. "description": "thinkphp template driver",
  792. "support": {
  793. "issues": "https://github.com/top-think/think-view/issues",
  794. "source": "https://github.com/top-think/think-view/tree/v1.0.14"
  795. },
  796. "time": "2019-11-06T11:40:13+00:00"
  797. },
  798. {
  799. "name": "zoujingli/ip2region",
  800. "version": "v1.0.10",
  801. "source": {
  802. "type": "git",
  803. "url": "https://github.com/zoujingli/ip2region.git",
  804. "reference": "453480d0ab5b6fdbdf4aa400b7598a10ff2dc5c0"
  805. },
  806. "dist": {
  807. "type": "zip",
  808. "url": "https://api.github.com/repos/zoujingli/ip2region/zipball/453480d0ab5b6fdbdf4aa400b7598a10ff2dc5c0",
  809. "reference": "453480d0ab5b6fdbdf4aa400b7598a10ff2dc5c0",
  810. "shasum": "",
  811. "mirrors": [
  812. {
  813. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  814. "preferred": true
  815. }
  816. ]
  817. },
  818. "require": {
  819. "php": ">=5.3"
  820. },
  821. "type": "library",
  822. "autoload": {
  823. "classmap": [
  824. "Ip2Region.php"
  825. ]
  826. },
  827. "notification-url": "https://packagist.org/downloads/",
  828. "license": [
  829. "Apache-2.0"
  830. ],
  831. "authors": [
  832. {
  833. "name": "Anyon",
  834. "email": "zoujingli@qq.com",
  835. "homepage": "http://ctolog.com"
  836. }
  837. ],
  838. "description": "Ip2Region for PHP",
  839. "homepage": "https://github.com/zoujingli/Ip2Region",
  840. "keywords": [
  841. "Ip2Region"
  842. ],
  843. "support": {
  844. "issues": "https://github.com/zoujingli/ip2region/issues",
  845. "source": "https://github.com/zoujingli/ip2region/tree/v1.0.10"
  846. },
  847. "time": "2021-03-23T10:29:05+00:00"
  848. },
  849. {
  850. "name": "zoujingli/think-library",
  851. "version": "v6.0.x-dev",
  852. "source": {
  853. "type": "git",
  854. "url": "https://github.com/zoujingli/ThinkLibrary.git",
  855. "reference": "00a0080e4b0e72bd94a2facd426eb0cc585c1b6d"
  856. },
  857. "dist": {
  858. "type": "zip",
  859. "url": "https://api.github.com/repos/zoujingli/ThinkLibrary/zipball/00a0080e4b0e72bd94a2facd426eb0cc585c1b6d",
  860. "reference": "00a0080e4b0e72bd94a2facd426eb0cc585c1b6d",
  861. "shasum": "",
  862. "mirrors": [
  863. {
  864. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  865. "preferred": true
  866. }
  867. ]
  868. },
  869. "require": {
  870. "ext-curl": "*",
  871. "ext-gd": "*",
  872. "ext-iconv": "*",
  873. "ext-json": "*",
  874. "ext-mbstring": "*",
  875. "topthink/framework": "^6.0"
  876. },
  877. "default-branch": true,
  878. "type": "library",
  879. "extra": {
  880. "think": {
  881. "services": [
  882. "think\\admin\\Library"
  883. ]
  884. }
  885. },
  886. "autoload": {
  887. "files": [
  888. "src/common.php"
  889. ],
  890. "psr-4": {
  891. "think\\admin\\": "src"
  892. }
  893. },
  894. "notification-url": "https://packagist.org/downloads/",
  895. "license": [
  896. "MIT"
  897. ],
  898. "authors": [
  899. {
  900. "name": "Anyon",
  901. "email": "zoujingli@qq.com"
  902. }
  903. ],
  904. "description": "ThinkPHP v6.0 Development Library",
  905. "homepage": "http://thinkadmin.top",
  906. "support": {
  907. "email": "zoujingli@qq.com",
  908. "forum": "https://thinkadmin.top",
  909. "issues": "https://gitee.com/zoujingli/ThinkLibrary/issues",
  910. "source": "https://gitee.com/zoujingli/ThinkLibrary",
  911. "wiki": "https://thinkadmin.top"
  912. },
  913. "time": "2021-08-04T09:13:02+00:00"
  914. }
  915. ],
  916. "packages-dev": [],
  917. "aliases": [],
  918. "minimum-stability": "stable",
  919. "stability-flags": {
  920. "zoujingli/think-library": 20
  921. },
  922. "prefer-stable": false,
  923. "prefer-lowest": false,
  924. "platform": {
  925. "php": ">=7.1.0",
  926. "ext-gd": "*",
  927. "ext-xml": "*",
  928. "ext-json": "*",
  929. "ext-curl": "*",
  930. "ext-iconv": "*",
  931. "ext-openssl": "*",
  932. "ext-mbstring": "*",
  933. "ext-simplexml": "*"
  934. },
  935. "platform-dev": [],
  936. "plugin-api-version": "2.1.0"
  937. }