installed.json 29 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821
  1. {
  2. "packages": [
  3. {
  4. "name": "league/flysystem",
  5. "version": "1.1.4",
  6. "version_normalized": "1.1.4.0",
  7. "source": {
  8. "type": "git",
  9. "url": "https://github.com/thephpleague/flysystem.git",
  10. "reference": "f3ad69181b8afed2c9edf7be5a2918144ff4ea32"
  11. },
  12. "dist": {
  13. "type": "zip",
  14. "url": "https://api.github.com/repos/thephpleague/flysystem/zipball/f3ad69181b8afed2c9edf7be5a2918144ff4ea32",
  15. "reference": "f3ad69181b8afed2c9edf7be5a2918144ff4ea32",
  16. "shasum": ""
  17. },
  18. "require": {
  19. "ext-fileinfo": "*",
  20. "league/mime-type-detection": "^1.3",
  21. "php": "^7.2.5 || ^8.0"
  22. },
  23. "conflict": {
  24. "league/flysystem-sftp": "<1.0.6"
  25. },
  26. "require-dev": {
  27. "phpspec/prophecy": "^1.11.1",
  28. "phpunit/phpunit": "^8.5.8"
  29. },
  30. "suggest": {
  31. "ext-ftp": "Allows you to use FTP server storage",
  32. "ext-openssl": "Allows you to use FTPS server storage",
  33. "league/flysystem-aws-s3-v2": "Allows you to use S3 storage with AWS SDK v2",
  34. "league/flysystem-aws-s3-v3": "Allows you to use S3 storage with AWS SDK v3",
  35. "league/flysystem-azure": "Allows you to use Windows Azure Blob storage",
  36. "league/flysystem-cached-adapter": "Flysystem adapter decorator for metadata caching",
  37. "league/flysystem-eventable-filesystem": "Allows you to use EventableFilesystem",
  38. "league/flysystem-rackspace": "Allows you to use Rackspace Cloud Files",
  39. "league/flysystem-sftp": "Allows you to use SFTP server storage via phpseclib",
  40. "league/flysystem-webdav": "Allows you to use WebDAV storage",
  41. "league/flysystem-ziparchive": "Allows you to use ZipArchive adapter",
  42. "spatie/flysystem-dropbox": "Allows you to use Dropbox storage",
  43. "srmklive/flysystem-dropbox-v2": "Allows you to use Dropbox storage for PHP 5 applications"
  44. },
  45. "time": "2021-06-23T21:56:05+00:00",
  46. "type": "library",
  47. "extra": {
  48. "branch-alias": {
  49. "dev-master": "1.1-dev"
  50. }
  51. },
  52. "installation-source": "dist",
  53. "autoload": {
  54. "psr-4": {
  55. "League\\Flysystem\\": "src/"
  56. }
  57. },
  58. "notification-url": "https://packagist.org/downloads/",
  59. "license": [
  60. "MIT"
  61. ],
  62. "authors": [
  63. {
  64. "name": "Frank de Jonge",
  65. "email": "info@frenky.net"
  66. }
  67. ],
  68. "description": "Filesystem abstraction: Many filesystems, one API.",
  69. "keywords": [
  70. "Cloud Files",
  71. "WebDAV",
  72. "abstraction",
  73. "aws",
  74. "cloud",
  75. "copy.com",
  76. "dropbox",
  77. "file systems",
  78. "files",
  79. "filesystem",
  80. "filesystems",
  81. "ftp",
  82. "rackspace",
  83. "remote",
  84. "s3",
  85. "sftp",
  86. "storage"
  87. ],
  88. "support": {
  89. "issues": "https://github.com/thephpleague/flysystem/issues",
  90. "source": "https://github.com/thephpleague/flysystem/tree/1.1.4"
  91. },
  92. "funding": [
  93. {
  94. "url": "https://offset.earth/frankdejonge",
  95. "type": "other"
  96. }
  97. ],
  98. "install-path": "../league/flysystem"
  99. },
  100. {
  101. "name": "league/flysystem-cached-adapter",
  102. "version": "1.1.0",
  103. "version_normalized": "1.1.0.0",
  104. "source": {
  105. "type": "git",
  106. "url": "https://github.com/thephpleague/flysystem-cached-adapter.git",
  107. "reference": "d1925efb2207ac4be3ad0c40b8277175f99ffaff"
  108. },
  109. "dist": {
  110. "type": "zip",
  111. "url": "https://api.github.com/repos/thephpleague/flysystem-cached-adapter/zipball/d1925efb2207ac4be3ad0c40b8277175f99ffaff",
  112. "reference": "d1925efb2207ac4be3ad0c40b8277175f99ffaff",
  113. "shasum": ""
  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": "2020-07-25T15:56: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. "support": {
  149. "issues": "https://github.com/thephpleague/flysystem-cached-adapter/issues",
  150. "source": "https://github.com/thephpleague/flysystem-cached-adapter/tree/master"
  151. },
  152. "install-path": "../league/flysystem-cached-adapter"
  153. },
  154. {
  155. "name": "league/mime-type-detection",
  156. "version": "1.7.0",
  157. "version_normalized": "1.7.0.0",
  158. "source": {
  159. "type": "git",
  160. "url": "https://github.com/thephpleague/mime-type-detection.git",
  161. "reference": "3b9dff8aaf7323590c1d2e443db701eb1f9aa0d3"
  162. },
  163. "dist": {
  164. "type": "zip",
  165. "url": "https://api.github.com/repos/thephpleague/mime-type-detection/zipball/3b9dff8aaf7323590c1d2e443db701eb1f9aa0d3",
  166. "reference": "3b9dff8aaf7323590c1d2e443db701eb1f9aa0d3",
  167. "shasum": ""
  168. },
  169. "require": {
  170. "ext-fileinfo": "*",
  171. "php": "^7.2 || ^8.0"
  172. },
  173. "require-dev": {
  174. "friendsofphp/php-cs-fixer": "^2.18",
  175. "phpstan/phpstan": "^0.12.68",
  176. "phpunit/phpunit": "^8.5.8 || ^9.3"
  177. },
  178. "time": "2021-01-18T20:58:21+00:00",
  179. "type": "library",
  180. "installation-source": "dist",
  181. "autoload": {
  182. "psr-4": {
  183. "League\\MimeTypeDetection\\": "src"
  184. }
  185. },
  186. "notification-url": "https://packagist.org/downloads/",
  187. "license": [
  188. "MIT"
  189. ],
  190. "authors": [
  191. {
  192. "name": "Frank de Jonge",
  193. "email": "info@frankdejonge.nl"
  194. }
  195. ],
  196. "description": "Mime-type detection for Flysystem",
  197. "support": {
  198. "issues": "https://github.com/thephpleague/mime-type-detection/issues",
  199. "source": "https://github.com/thephpleague/mime-type-detection/tree/1.7.0"
  200. },
  201. "funding": [
  202. {
  203. "url": "https://github.com/frankdejonge",
  204. "type": "github"
  205. },
  206. {
  207. "url": "https://tidelift.com/funding/github/packagist/league/flysystem",
  208. "type": "tidelift"
  209. }
  210. ],
  211. "install-path": "../league/mime-type-detection"
  212. },
  213. {
  214. "name": "psr/cache",
  215. "version": "1.0.1",
  216. "version_normalized": "1.0.1.0",
  217. "source": {
  218. "type": "git",
  219. "url": "https://github.com/php-fig/cache.git",
  220. "reference": "d11b50ad223250cf17b86e38383413f5a6764bf8"
  221. },
  222. "dist": {
  223. "type": "zip",
  224. "url": "https://api.github.com/repos/php-fig/cache/zipball/d11b50ad223250cf17b86e38383413f5a6764bf8",
  225. "reference": "d11b50ad223250cf17b86e38383413f5a6764bf8",
  226. "shasum": ""
  227. },
  228. "require": {
  229. "php": ">=5.3.0"
  230. },
  231. "time": "2016-08-06T20:24:11+00:00",
  232. "type": "library",
  233. "extra": {
  234. "branch-alias": {
  235. "dev-master": "1.0.x-dev"
  236. }
  237. },
  238. "installation-source": "dist",
  239. "autoload": {
  240. "psr-4": {
  241. "Psr\\Cache\\": "src/"
  242. }
  243. },
  244. "notification-url": "https://packagist.org/downloads/",
  245. "license": [
  246. "MIT"
  247. ],
  248. "authors": [
  249. {
  250. "name": "PHP-FIG",
  251. "homepage": "http://www.php-fig.org/"
  252. }
  253. ],
  254. "description": "Common interface for caching libraries",
  255. "keywords": [
  256. "cache",
  257. "psr",
  258. "psr-6"
  259. ],
  260. "support": {
  261. "source": "https://github.com/php-fig/cache/tree/master"
  262. },
  263. "install-path": "../psr/cache"
  264. },
  265. {
  266. "name": "psr/container",
  267. "version": "1.1.1",
  268. "version_normalized": "1.1.1.0",
  269. "source": {
  270. "type": "git",
  271. "url": "https://github.com/php-fig/container.git",
  272. "reference": "8622567409010282b7aeebe4bb841fe98b58dcaf"
  273. },
  274. "dist": {
  275. "type": "zip",
  276. "url": "https://api.github.com/repos/php-fig/container/zipball/8622567409010282b7aeebe4bb841fe98b58dcaf",
  277. "reference": "8622567409010282b7aeebe4bb841fe98b58dcaf",
  278. "shasum": ""
  279. },
  280. "require": {
  281. "php": ">=7.2.0"
  282. },
  283. "time": "2021-03-05T17:36:06+00:00",
  284. "type": "library",
  285. "installation-source": "dist",
  286. "autoload": {
  287. "psr-4": {
  288. "Psr\\Container\\": "src/"
  289. }
  290. },
  291. "notification-url": "https://packagist.org/downloads/",
  292. "license": [
  293. "MIT"
  294. ],
  295. "authors": [
  296. {
  297. "name": "PHP-FIG",
  298. "homepage": "https://www.php-fig.org/"
  299. }
  300. ],
  301. "description": "Common Container Interface (PHP FIG PSR-11)",
  302. "homepage": "https://github.com/php-fig/container",
  303. "keywords": [
  304. "PSR-11",
  305. "container",
  306. "container-interface",
  307. "container-interop",
  308. "psr"
  309. ],
  310. "support": {
  311. "issues": "https://github.com/php-fig/container/issues",
  312. "source": "https://github.com/php-fig/container/tree/1.1.1"
  313. },
  314. "install-path": "../psr/container"
  315. },
  316. {
  317. "name": "psr/log",
  318. "version": "1.1.4",
  319. "version_normalized": "1.1.4.0",
  320. "source": {
  321. "type": "git",
  322. "url": "https://github.com/php-fig/log.git",
  323. "reference": "d49695b909c3b7628b6289db5479a1c204601f11"
  324. },
  325. "dist": {
  326. "type": "zip",
  327. "url": "https://api.github.com/repos/php-fig/log/zipball/d49695b909c3b7628b6289db5479a1c204601f11",
  328. "reference": "d49695b909c3b7628b6289db5479a1c204601f11",
  329. "shasum": ""
  330. },
  331. "require": {
  332. "php": ">=5.3.0"
  333. },
  334. "time": "2021-05-03T11:20:27+00:00",
  335. "type": "library",
  336. "extra": {
  337. "branch-alias": {
  338. "dev-master": "1.1.x-dev"
  339. }
  340. },
  341. "installation-source": "dist",
  342. "autoload": {
  343. "psr-4": {
  344. "Psr\\Log\\": "Psr/Log/"
  345. }
  346. },
  347. "notification-url": "https://packagist.org/downloads/",
  348. "license": [
  349. "MIT"
  350. ],
  351. "authors": [
  352. {
  353. "name": "PHP-FIG",
  354. "homepage": "https://www.php-fig.org/"
  355. }
  356. ],
  357. "description": "Common interface for logging libraries",
  358. "homepage": "https://github.com/php-fig/log",
  359. "keywords": [
  360. "log",
  361. "psr",
  362. "psr-3"
  363. ],
  364. "support": {
  365. "source": "https://github.com/php-fig/log/tree/1.1.4"
  366. },
  367. "install-path": "../psr/log"
  368. },
  369. {
  370. "name": "psr/simple-cache",
  371. "version": "1.0.1",
  372. "version_normalized": "1.0.1.0",
  373. "source": {
  374. "type": "git",
  375. "url": "https://github.com/php-fig/simple-cache.git",
  376. "reference": "408d5eafb83c57f6365a3ca330ff23aa4a5fa39b"
  377. },
  378. "dist": {
  379. "type": "zip",
  380. "url": "https://api.github.com/repos/php-fig/simple-cache/zipball/408d5eafb83c57f6365a3ca330ff23aa4a5fa39b",
  381. "reference": "408d5eafb83c57f6365a3ca330ff23aa4a5fa39b",
  382. "shasum": ""
  383. },
  384. "require": {
  385. "php": ">=5.3.0"
  386. },
  387. "time": "2017-10-23T01:57:42+00:00",
  388. "type": "library",
  389. "extra": {
  390. "branch-alias": {
  391. "dev-master": "1.0.x-dev"
  392. }
  393. },
  394. "installation-source": "dist",
  395. "autoload": {
  396. "psr-4": {
  397. "Psr\\SimpleCache\\": "src/"
  398. }
  399. },
  400. "notification-url": "https://packagist.org/downloads/",
  401. "license": [
  402. "MIT"
  403. ],
  404. "authors": [
  405. {
  406. "name": "PHP-FIG",
  407. "homepage": "http://www.php-fig.org/"
  408. }
  409. ],
  410. "description": "Common interfaces for simple caching",
  411. "keywords": [
  412. "cache",
  413. "caching",
  414. "psr",
  415. "psr-16",
  416. "simple-cache"
  417. ],
  418. "support": {
  419. "source": "https://github.com/php-fig/simple-cache/tree/master"
  420. },
  421. "install-path": "../psr/simple-cache"
  422. },
  423. {
  424. "name": "topthink/framework",
  425. "version": "v6.0.9",
  426. "version_normalized": "6.0.9.0",
  427. "source": {
  428. "type": "git",
  429. "url": "https://github.com/top-think/framework.git",
  430. "reference": "0b5fb453f0e533de3af3a1ab6a202510b61be617"
  431. },
  432. "dist": {
  433. "type": "zip",
  434. "url": "https://api.github.com/repos/top-think/framework/zipball/0b5fb453f0e533de3af3a1ab6a202510b61be617",
  435. "reference": "0b5fb453f0e533de3af3a1ab6a202510b61be617",
  436. "shasum": ""
  437. },
  438. "require": {
  439. "ext-json": "*",
  440. "ext-mbstring": "*",
  441. "league/flysystem": "^1.1.4",
  442. "league/flysystem-cached-adapter": "^1.0",
  443. "php": ">=7.2.5",
  444. "psr/container": "~1.0",
  445. "psr/log": "~1.0",
  446. "psr/simple-cache": "^1.0",
  447. "topthink/think-helper": "^3.1.1",
  448. "topthink/think-orm": "^2.0"
  449. },
  450. "require-dev": {
  451. "mikey179/vfsstream": "^1.6",
  452. "mockery/mockery": "^1.2",
  453. "phpunit/phpunit": "^7.0"
  454. },
  455. "time": "2021-07-22T03:24:49+00:00",
  456. "type": "library",
  457. "installation-source": "dist",
  458. "autoload": {
  459. "files": [],
  460. "psr-4": {
  461. "think\\": "src/think/"
  462. }
  463. },
  464. "notification-url": "https://packagist.org/downloads/",
  465. "license": [
  466. "Apache-2.0"
  467. ],
  468. "authors": [
  469. {
  470. "name": "liu21st",
  471. "email": "liu21st@gmail.com"
  472. },
  473. {
  474. "name": "yunwuxin",
  475. "email": "448901948@qq.com"
  476. }
  477. ],
  478. "description": "The ThinkPHP Framework.",
  479. "homepage": "http://thinkphp.cn/",
  480. "keywords": [
  481. "framework",
  482. "orm",
  483. "thinkphp"
  484. ],
  485. "support": {
  486. "issues": "https://github.com/top-think/framework/issues",
  487. "source": "https://github.com/top-think/framework/tree/v6.0.9"
  488. },
  489. "install-path": "../topthink/framework"
  490. },
  491. {
  492. "name": "topthink/think-helper",
  493. "version": "v3.1.5",
  494. "version_normalized": "3.1.5.0",
  495. "source": {
  496. "type": "git",
  497. "url": "https://github.com/top-think/think-helper.git",
  498. "reference": "f98e3ad44acd27ae85a4d923b1bdfd16c6d8d905"
  499. },
  500. "dist": {
  501. "type": "zip",
  502. "url": "https://api.github.com/repos/top-think/think-helper/zipball/f98e3ad44acd27ae85a4d923b1bdfd16c6d8d905",
  503. "reference": "f98e3ad44acd27ae85a4d923b1bdfd16c6d8d905",
  504. "shasum": ""
  505. },
  506. "require": {
  507. "php": ">=7.1.0"
  508. },
  509. "time": "2021-06-21T06:17:31+00:00",
  510. "type": "library",
  511. "installation-source": "dist",
  512. "autoload": {
  513. "psr-4": {
  514. "think\\": "src"
  515. },
  516. "files": [
  517. "src/helper.php"
  518. ]
  519. },
  520. "notification-url": "https://packagist.org/downloads/",
  521. "license": [
  522. "Apache-2.0"
  523. ],
  524. "authors": [
  525. {
  526. "name": "yunwuxin",
  527. "email": "448901948@qq.com"
  528. }
  529. ],
  530. "description": "The ThinkPHP6 Helper Package",
  531. "support": {
  532. "issues": "https://github.com/top-think/think-helper/issues",
  533. "source": "https://github.com/top-think/think-helper/tree/v3.1.5"
  534. },
  535. "install-path": "../topthink/think-helper"
  536. },
  537. {
  538. "name": "topthink/think-orm",
  539. "version": "v2.0.44",
  540. "version_normalized": "2.0.44.0",
  541. "source": {
  542. "type": "git",
  543. "url": "https://github.com/top-think/think-orm.git",
  544. "reference": "5d3d5c1ebf8bfccf34bacd90edb42989b16ea409"
  545. },
  546. "dist": {
  547. "type": "zip",
  548. "url": "https://api.github.com/repos/top-think/think-orm/zipball/5d3d5c1ebf8bfccf34bacd90edb42989b16ea409",
  549. "reference": "5d3d5c1ebf8bfccf34bacd90edb42989b16ea409",
  550. "shasum": ""
  551. },
  552. "require": {
  553. "ext-json": "*",
  554. "ext-pdo": "*",
  555. "php": ">=7.1.0",
  556. "psr/log": "~1.0",
  557. "psr/simple-cache": "^1.0",
  558. "topthink/think-helper": "^3.1"
  559. },
  560. "require-dev": {
  561. "phpunit/phpunit": "^7|^8|^9.5"
  562. },
  563. "time": "2021-07-21T02:22:31+00:00",
  564. "type": "library",
  565. "installation-source": "dist",
  566. "autoload": {
  567. "psr-4": {
  568. "think\\": "src"
  569. },
  570. "files": [
  571. "stubs/load_stubs.php"
  572. ]
  573. },
  574. "notification-url": "https://packagist.org/downloads/",
  575. "license": [
  576. "Apache-2.0"
  577. ],
  578. "authors": [
  579. {
  580. "name": "liu21st",
  581. "email": "liu21st@gmail.com"
  582. }
  583. ],
  584. "description": "think orm",
  585. "keywords": [
  586. "database",
  587. "orm"
  588. ],
  589. "support": {
  590. "issues": "https://github.com/top-think/think-orm/issues",
  591. "source": "https://github.com/top-think/think-orm/tree/v2.0.44"
  592. },
  593. "install-path": "../topthink/think-orm"
  594. },
  595. {
  596. "name": "topthink/think-template",
  597. "version": "v2.0.8",
  598. "version_normalized": "2.0.8.0",
  599. "source": {
  600. "type": "git",
  601. "url": "https://github.com/top-think/think-template.git",
  602. "reference": "abfc293f74f9ef5127b5c416310a01fe42e59368"
  603. },
  604. "dist": {
  605. "type": "zip",
  606. "url": "https://api.github.com/repos/top-think/think-template/zipball/abfc293f74f9ef5127b5c416310a01fe42e59368",
  607. "reference": "abfc293f74f9ef5127b5c416310a01fe42e59368",
  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. "php": ">=7.1.0",
  618. "psr/simple-cache": "^1.0"
  619. },
  620. "time": "2020-12-10T07:52:03+00:00",
  621. "type": "library",
  622. "installation-source": "dist",
  623. "autoload": {
  624. "psr-4": {
  625. "think\\": "src"
  626. }
  627. },
  628. "notification-url": "https://packagist.org/downloads/",
  629. "license": [
  630. "Apache-2.0"
  631. ],
  632. "authors": [
  633. {
  634. "name": "liu21st",
  635. "email": "liu21st@gmail.com"
  636. }
  637. ],
  638. "description": "the php template engine",
  639. "support": {
  640. "issues": "https://github.com/top-think/think-template/issues",
  641. "source": "https://github.com/top-think/think-template/tree/v2.0.8"
  642. },
  643. "install-path": "../topthink/think-template"
  644. },
  645. {
  646. "name": "topthink/think-view",
  647. "version": "v1.0.14",
  648. "version_normalized": "1.0.14.0",
  649. "source": {
  650. "type": "git",
  651. "url": "https://github.com/top-think/think-view.git",
  652. "reference": "edce0ae2c9551ab65f9e94a222604b0dead3576d"
  653. },
  654. "dist": {
  655. "type": "zip",
  656. "url": "https://api.github.com/repos/top-think/think-view/zipball/edce0ae2c9551ab65f9e94a222604b0dead3576d",
  657. "reference": "edce0ae2c9551ab65f9e94a222604b0dead3576d",
  658. "shasum": "",
  659. "mirrors": [
  660. {
  661. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  662. "preferred": true
  663. }
  664. ]
  665. },
  666. "require": {
  667. "php": ">=7.1.0",
  668. "topthink/think-template": "^2.0"
  669. },
  670. "time": "2019-11-06T11:40:13+00:00",
  671. "type": "library",
  672. "installation-source": "dist",
  673. "autoload": {
  674. "psr-4": {
  675. "think\\view\\driver\\": "src"
  676. }
  677. },
  678. "notification-url": "https://packagist.org/downloads/",
  679. "license": [
  680. "Apache-2.0"
  681. ],
  682. "authors": [
  683. {
  684. "name": "liu21st",
  685. "email": "liu21st@gmail.com"
  686. }
  687. ],
  688. "description": "thinkphp template driver",
  689. "support": {
  690. "issues": "https://github.com/top-think/think-view/issues",
  691. "source": "https://github.com/top-think/think-view/tree/v1.0.14"
  692. },
  693. "install-path": "../topthink/think-view"
  694. },
  695. {
  696. "name": "zoujingli/ip2region",
  697. "version": "v1.0.10",
  698. "version_normalized": "1.0.10.0",
  699. "source": {
  700. "type": "git",
  701. "url": "https://github.com/zoujingli/ip2region.git",
  702. "reference": "453480d0ab5b6fdbdf4aa400b7598a10ff2dc5c0"
  703. },
  704. "dist": {
  705. "type": "zip",
  706. "url": "https://api.github.com/repos/zoujingli/ip2region/zipball/453480d0ab5b6fdbdf4aa400b7598a10ff2dc5c0",
  707. "reference": "453480d0ab5b6fdbdf4aa400b7598a10ff2dc5c0",
  708. "shasum": "",
  709. "mirrors": [
  710. {
  711. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  712. "preferred": true
  713. }
  714. ]
  715. },
  716. "require": {
  717. "php": ">=5.3"
  718. },
  719. "time": "2021-03-23T10:29:05+00:00",
  720. "type": "library",
  721. "installation-source": "dist",
  722. "autoload": {
  723. "classmap": [
  724. "Ip2Region.php"
  725. ]
  726. },
  727. "notification-url": "https://packagist.org/downloads/",
  728. "license": [
  729. "Apache-2.0"
  730. ],
  731. "authors": [
  732. {
  733. "name": "Anyon",
  734. "email": "zoujingli@qq.com",
  735. "homepage": "http://ctolog.com"
  736. }
  737. ],
  738. "description": "Ip2Region for PHP",
  739. "homepage": "https://github.com/zoujingli/Ip2Region",
  740. "keywords": [
  741. "Ip2Region"
  742. ],
  743. "support": {
  744. "issues": "https://github.com/zoujingli/ip2region/issues",
  745. "source": "https://github.com/zoujingli/ip2region/tree/v1.0.10"
  746. },
  747. "install-path": "../zoujingli/ip2region"
  748. },
  749. {
  750. "name": "zoujingli/think-library",
  751. "version": "v6.0.x-dev",
  752. "version_normalized": "6.0.9999999.9999999-dev",
  753. "source": {
  754. "type": "git",
  755. "url": "https://github.com/zoujingli/ThinkLibrary.git",
  756. "reference": "00a0080e4b0e72bd94a2facd426eb0cc585c1b6d"
  757. },
  758. "dist": {
  759. "type": "zip",
  760. "url": "https://api.github.com/repos/zoujingli/ThinkLibrary/zipball/00a0080e4b0e72bd94a2facd426eb0cc585c1b6d",
  761. "reference": "00a0080e4b0e72bd94a2facd426eb0cc585c1b6d",
  762. "shasum": "",
  763. "mirrors": [
  764. {
  765. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  766. "preferred": true
  767. }
  768. ]
  769. },
  770. "require": {
  771. "ext-curl": "*",
  772. "ext-gd": "*",
  773. "ext-iconv": "*",
  774. "ext-json": "*",
  775. "ext-mbstring": "*",
  776. "topthink/framework": "^6.0"
  777. },
  778. "time": "2021-08-04T09:13:02+00:00",
  779. "default-branch": true,
  780. "type": "library",
  781. "extra": {
  782. "think": {
  783. "services": [
  784. "think\\admin\\Library"
  785. ]
  786. }
  787. },
  788. "installation-source": "source",
  789. "autoload": {
  790. "files": [
  791. "src/common.php"
  792. ],
  793. "psr-4": {
  794. "think\\admin\\": "src"
  795. }
  796. },
  797. "notification-url": "https://packagist.org/downloads/",
  798. "license": [
  799. "MIT"
  800. ],
  801. "authors": [
  802. {
  803. "name": "Anyon",
  804. "email": "zoujingli@qq.com"
  805. }
  806. ],
  807. "description": "ThinkPHP v6.0 Development Library",
  808. "homepage": "http://thinkadmin.top",
  809. "support": {
  810. "email": "zoujingli@qq.com",
  811. "forum": "https://thinkadmin.top",
  812. "issues": "https://gitee.com/zoujingli/ThinkLibrary/issues",
  813. "source": "https://gitee.com/zoujingli/ThinkLibrary",
  814. "wiki": "https://thinkadmin.top"
  815. },
  816. "install-path": "../zoujingli/think-library"
  817. }
  818. ],
  819. "dev": true,
  820. "dev-package-names": []
  821. }