composer.lock 36 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050
  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": "9ef3f6f1993fcd90da3b2fda07e08183",
  8. "packages": [
  9. {
  10. "name": "league/flysystem",
  11. "version": "1.1.5",
  12. "source": {
  13. "type": "git",
  14. "url": "https://github.com/thephpleague/flysystem.git",
  15. "reference": "18634df356bfd4119fe3d6156bdb990c414c14ea"
  16. },
  17. "dist": {
  18. "type": "zip",
  19. "url": "https://api.github.com/repos/thephpleague/flysystem/zipball/18634df356bfd4119fe3d6156bdb990c414c14ea",
  20. "reference": "18634df356bfd4119fe3d6156bdb990c414c14ea",
  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. "funding": [
  98. {
  99. "url": "https://offset.earth/frankdejonge",
  100. "type": "other"
  101. }
  102. ],
  103. "time": "2021-08-17T13:49:42+00:00"
  104. },
  105. {
  106. "name": "league/flysystem-cached-adapter",
  107. "version": "1.1.0",
  108. "source": {
  109. "type": "git",
  110. "url": "https://github.com/thephpleague/flysystem-cached-adapter.git",
  111. "reference": "d1925efb2207ac4be3ad0c40b8277175f99ffaff"
  112. },
  113. "dist": {
  114. "type": "zip",
  115. "url": "https://api.github.com/repos/thephpleague/flysystem-cached-adapter/zipball/d1925efb2207ac4be3ad0c40b8277175f99ffaff",
  116. "reference": "d1925efb2207ac4be3ad0c40b8277175f99ffaff",
  117. "shasum": "",
  118. "mirrors": [
  119. {
  120. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  121. "preferred": true
  122. }
  123. ]
  124. },
  125. "require": {
  126. "league/flysystem": "~1.0",
  127. "psr/cache": "^1.0.0"
  128. },
  129. "require-dev": {
  130. "mockery/mockery": "~0.9",
  131. "phpspec/phpspec": "^3.4",
  132. "phpunit/phpunit": "^5.7",
  133. "predis/predis": "~1.0",
  134. "tedivm/stash": "~0.12"
  135. },
  136. "suggest": {
  137. "ext-phpredis": "Pure C implemented extension for PHP"
  138. },
  139. "type": "library",
  140. "autoload": {
  141. "psr-4": {
  142. "League\\Flysystem\\Cached\\": "src/"
  143. }
  144. },
  145. "notification-url": "https://packagist.org/downloads/",
  146. "license": [
  147. "MIT"
  148. ],
  149. "authors": [
  150. {
  151. "name": "frankdejonge",
  152. "email": "info@frenky.net"
  153. }
  154. ],
  155. "description": "An adapter decorator to enable meta-data caching.",
  156. "time": "2020-07-25T15:56:04+00:00"
  157. },
  158. {
  159. "name": "league/mime-type-detection",
  160. "version": "1.7.0",
  161. "source": {
  162. "type": "git",
  163. "url": "https://github.com/thephpleague/mime-type-detection.git",
  164. "reference": "3b9dff8aaf7323590c1d2e443db701eb1f9aa0d3"
  165. },
  166. "dist": {
  167. "type": "zip",
  168. "url": "https://api.github.com/repos/thephpleague/mime-type-detection/zipball/3b9dff8aaf7323590c1d2e443db701eb1f9aa0d3",
  169. "reference": "3b9dff8aaf7323590c1d2e443db701eb1f9aa0d3",
  170. "shasum": "",
  171. "mirrors": [
  172. {
  173. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  174. "preferred": true
  175. }
  176. ]
  177. },
  178. "require": {
  179. "ext-fileinfo": "*",
  180. "php": "^7.2 || ^8.0"
  181. },
  182. "require-dev": {
  183. "friendsofphp/php-cs-fixer": "^2.18",
  184. "phpstan/phpstan": "^0.12.68",
  185. "phpunit/phpunit": "^8.5.8 || ^9.3"
  186. },
  187. "type": "library",
  188. "autoload": {
  189. "psr-4": {
  190. "League\\MimeTypeDetection\\": "src"
  191. }
  192. },
  193. "notification-url": "https://packagist.org/downloads/",
  194. "license": [
  195. "MIT"
  196. ],
  197. "authors": [
  198. {
  199. "name": "Frank de Jonge",
  200. "email": "info@frankdejonge.nl"
  201. }
  202. ],
  203. "description": "Mime-type detection for Flysystem",
  204. "funding": [
  205. {
  206. "url": "https://github.com/frankdejonge",
  207. "type": "github"
  208. },
  209. {
  210. "url": "https://tidelift.com/funding/github/packagist/league/flysystem",
  211. "type": "tidelift"
  212. }
  213. ],
  214. "time": "2021-01-18T20:58:21+00:00"
  215. },
  216. {
  217. "name": "psr/cache",
  218. "version": "1.0.1",
  219. "source": {
  220. "type": "git",
  221. "url": "https://github.com/php-fig/cache.git",
  222. "reference": "d11b50ad223250cf17b86e38383413f5a6764bf8"
  223. },
  224. "dist": {
  225. "type": "zip",
  226. "url": "https://api.github.com/repos/php-fig/cache/zipball/d11b50ad223250cf17b86e38383413f5a6764bf8",
  227. "reference": "d11b50ad223250cf17b86e38383413f5a6764bf8",
  228. "shasum": "",
  229. "mirrors": [
  230. {
  231. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  232. "preferred": true
  233. }
  234. ]
  235. },
  236. "require": {
  237. "php": ">=5.3.0"
  238. },
  239. "type": "library",
  240. "extra": {
  241. "branch-alias": {
  242. "dev-master": "1.0.x-dev"
  243. }
  244. },
  245. "autoload": {
  246. "psr-4": {
  247. "Psr\\Cache\\": "src/"
  248. }
  249. },
  250. "notification-url": "https://packagist.org/downloads/",
  251. "license": [
  252. "MIT"
  253. ],
  254. "authors": [
  255. {
  256. "name": "PHP-FIG",
  257. "homepage": "http://www.php-fig.org/"
  258. }
  259. ],
  260. "description": "Common interface for caching libraries",
  261. "keywords": [
  262. "cache",
  263. "psr",
  264. "psr-6"
  265. ],
  266. "time": "2016-08-06T20:24:11+00:00"
  267. },
  268. {
  269. "name": "psr/container",
  270. "version": "1.1.1",
  271. "source": {
  272. "type": "git",
  273. "url": "https://github.com/php-fig/container.git",
  274. "reference": "8622567409010282b7aeebe4bb841fe98b58dcaf"
  275. },
  276. "dist": {
  277. "type": "zip",
  278. "url": "https://api.github.com/repos/php-fig/container/zipball/8622567409010282b7aeebe4bb841fe98b58dcaf",
  279. "reference": "8622567409010282b7aeebe4bb841fe98b58dcaf",
  280. "shasum": "",
  281. "mirrors": [
  282. {
  283. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  284. "preferred": true
  285. }
  286. ]
  287. },
  288. "require": {
  289. "php": ">=7.2.0"
  290. },
  291. "type": "library",
  292. "autoload": {
  293. "psr-4": {
  294. "Psr\\Container\\": "src/"
  295. }
  296. },
  297. "notification-url": "https://packagist.org/downloads/",
  298. "license": [
  299. "MIT"
  300. ],
  301. "authors": [
  302. {
  303. "name": "PHP-FIG",
  304. "homepage": "https://www.php-fig.org/"
  305. }
  306. ],
  307. "description": "Common Container Interface (PHP FIG PSR-11)",
  308. "homepage": "https://github.com/php-fig/container",
  309. "keywords": [
  310. "PSR-11",
  311. "container",
  312. "container-interface",
  313. "container-interop",
  314. "psr"
  315. ],
  316. "time": "2021-03-05T17:36:06+00:00"
  317. },
  318. {
  319. "name": "psr/log",
  320. "version": "1.1.4",
  321. "source": {
  322. "type": "git",
  323. "url": "https://github.com/php-fig/log.git",
  324. "reference": "d49695b909c3b7628b6289db5479a1c204601f11"
  325. },
  326. "dist": {
  327. "type": "zip",
  328. "url": "https://api.github.com/repos/php-fig/log/zipball/d49695b909c3b7628b6289db5479a1c204601f11",
  329. "reference": "d49695b909c3b7628b6289db5479a1c204601f11",
  330. "shasum": "",
  331. "mirrors": [
  332. {
  333. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  334. "preferred": true
  335. }
  336. ]
  337. },
  338. "require": {
  339. "php": ">=5.3.0"
  340. },
  341. "type": "library",
  342. "extra": {
  343. "branch-alias": {
  344. "dev-master": "1.1.x-dev"
  345. }
  346. },
  347. "autoload": {
  348. "psr-4": {
  349. "Psr\\Log\\": "Psr/Log/"
  350. }
  351. },
  352. "notification-url": "https://packagist.org/downloads/",
  353. "license": [
  354. "MIT"
  355. ],
  356. "authors": [
  357. {
  358. "name": "PHP-FIG",
  359. "homepage": "https://www.php-fig.org/"
  360. }
  361. ],
  362. "description": "Common interface for logging libraries",
  363. "homepage": "https://github.com/php-fig/log",
  364. "keywords": [
  365. "log",
  366. "psr",
  367. "psr-3"
  368. ],
  369. "time": "2021-05-03T11:20:27+00:00"
  370. },
  371. {
  372. "name": "psr/simple-cache",
  373. "version": "1.0.1",
  374. "source": {
  375. "type": "git",
  376. "url": "https://github.com/php-fig/simple-cache.git",
  377. "reference": "408d5eafb83c57f6365a3ca330ff23aa4a5fa39b"
  378. },
  379. "dist": {
  380. "type": "zip",
  381. "url": "https://api.github.com/repos/php-fig/simple-cache/zipball/408d5eafb83c57f6365a3ca330ff23aa4a5fa39b",
  382. "reference": "408d5eafb83c57f6365a3ca330ff23aa4a5fa39b",
  383. "shasum": "",
  384. "mirrors": [
  385. {
  386. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  387. "preferred": true
  388. }
  389. ]
  390. },
  391. "require": {
  392. "php": ">=5.3.0"
  393. },
  394. "type": "library",
  395. "extra": {
  396. "branch-alias": {
  397. "dev-master": "1.0.x-dev"
  398. }
  399. },
  400. "autoload": {
  401. "psr-4": {
  402. "Psr\\SimpleCache\\": "src/"
  403. }
  404. },
  405. "notification-url": "https://packagist.org/downloads/",
  406. "license": [
  407. "MIT"
  408. ],
  409. "authors": [
  410. {
  411. "name": "PHP-FIG",
  412. "homepage": "http://www.php-fig.org/"
  413. }
  414. ],
  415. "description": "Common interfaces for simple caching",
  416. "keywords": [
  417. "cache",
  418. "caching",
  419. "psr",
  420. "psr-16",
  421. "simple-cache"
  422. ],
  423. "time": "2017-10-23T01:57:42+00:00"
  424. },
  425. {
  426. "name": "topthink/framework",
  427. "version": "v6.0.9",
  428. "source": {
  429. "type": "git",
  430. "url": "https://github.com/top-think/framework.git",
  431. "reference": "0b5fb453f0e533de3af3a1ab6a202510b61be617"
  432. },
  433. "dist": {
  434. "type": "zip",
  435. "url": "https://api.github.com/repos/top-think/framework/zipball/0b5fb453f0e533de3af3a1ab6a202510b61be617",
  436. "reference": "0b5fb453f0e533de3af3a1ab6a202510b61be617",
  437. "shasum": "",
  438. "mirrors": [
  439. {
  440. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  441. "preferred": true
  442. }
  443. ]
  444. },
  445. "require": {
  446. "ext-json": "*",
  447. "ext-mbstring": "*",
  448. "league/flysystem": "^1.1.4",
  449. "league/flysystem-cached-adapter": "^1.0",
  450. "php": ">=7.2.5",
  451. "psr/container": "~1.0",
  452. "psr/log": "~1.0",
  453. "psr/simple-cache": "^1.0",
  454. "topthink/think-helper": "^3.1.1",
  455. "topthink/think-orm": "^2.0"
  456. },
  457. "require-dev": {
  458. "mikey179/vfsstream": "^1.6",
  459. "mockery/mockery": "^1.2",
  460. "phpunit/phpunit": "^7.0"
  461. },
  462. "type": "library",
  463. "autoload": {
  464. "files": [],
  465. "psr-4": {
  466. "think\\": "src/think/"
  467. }
  468. },
  469. "notification-url": "https://packagist.org/downloads/",
  470. "license": [
  471. "Apache-2.0"
  472. ],
  473. "authors": [
  474. {
  475. "name": "liu21st",
  476. "email": "liu21st@gmail.com"
  477. },
  478. {
  479. "name": "yunwuxin",
  480. "email": "448901948@qq.com"
  481. }
  482. ],
  483. "description": "The ThinkPHP Framework.",
  484. "homepage": "http://thinkphp.cn/",
  485. "keywords": [
  486. "framework",
  487. "orm",
  488. "thinkphp"
  489. ],
  490. "time": "2021-07-22T03:24:49+00:00"
  491. },
  492. {
  493. "name": "topthink/think-helper",
  494. "version": "v3.1.5",
  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. "mirrors": [
  506. {
  507. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  508. "preferred": true
  509. }
  510. ]
  511. },
  512. "require": {
  513. "php": ">=7.1.0"
  514. },
  515. "type": "library",
  516. "autoload": {
  517. "psr-4": {
  518. "think\\": "src"
  519. },
  520. "files": [
  521. "src/helper.php"
  522. ]
  523. },
  524. "notification-url": "https://packagist.org/downloads/",
  525. "license": [
  526. "Apache-2.0"
  527. ],
  528. "authors": [
  529. {
  530. "name": "yunwuxin",
  531. "email": "448901948@qq.com"
  532. }
  533. ],
  534. "description": "The ThinkPHP6 Helper Package",
  535. "time": "2021-06-21T06:17:31+00:00"
  536. },
  537. {
  538. "name": "topthink/think-multi-app",
  539. "version": "v1.0.14",
  540. "source": {
  541. "type": "git",
  542. "url": "https://github.com/top-think/think-multi-app.git",
  543. "reference": "ccaad7c2d33f42cb1cc2a78d6610aaec02cea4c3"
  544. },
  545. "dist": {
  546. "type": "zip",
  547. "url": "https://api.github.com/repos/top-think/think-multi-app/zipball/ccaad7c2d33f42cb1cc2a78d6610aaec02cea4c3",
  548. "reference": "ccaad7c2d33f42cb1cc2a78d6610aaec02cea4c3",
  549. "shasum": "",
  550. "mirrors": [
  551. {
  552. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  553. "preferred": true
  554. }
  555. ]
  556. },
  557. "require": {
  558. "php": ">=7.1.0",
  559. "topthink/framework": "^6.0.0"
  560. },
  561. "type": "library",
  562. "extra": {
  563. "think": {
  564. "services": [
  565. "think\\app\\Service"
  566. ]
  567. }
  568. },
  569. "autoload": {
  570. "psr-4": {
  571. "think\\app\\": "src"
  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": "thinkphp6 multi app support",
  585. "time": "2020-07-12T13:50:37+00:00"
  586. },
  587. {
  588. "name": "topthink/think-orm",
  589. "version": "v2.0.44",
  590. "source": {
  591. "type": "git",
  592. "url": "https://github.com/top-think/think-orm.git",
  593. "reference": "5d3d5c1ebf8bfccf34bacd90edb42989b16ea409"
  594. },
  595. "dist": {
  596. "type": "zip",
  597. "url": "https://api.github.com/repos/top-think/think-orm/zipball/5d3d5c1ebf8bfccf34bacd90edb42989b16ea409",
  598. "reference": "5d3d5c1ebf8bfccf34bacd90edb42989b16ea409",
  599. "shasum": "",
  600. "mirrors": [
  601. {
  602. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  603. "preferred": true
  604. }
  605. ]
  606. },
  607. "require": {
  608. "ext-json": "*",
  609. "ext-pdo": "*",
  610. "php": ">=7.1.0",
  611. "psr/log": "~1.0",
  612. "psr/simple-cache": "^1.0",
  613. "topthink/think-helper": "^3.1"
  614. },
  615. "require-dev": {
  616. "phpunit/phpunit": "^7|^8|^9.5"
  617. },
  618. "type": "library",
  619. "autoload": {
  620. "psr-4": {
  621. "think\\": "src"
  622. },
  623. "files": [
  624. "stubs/load_stubs.php"
  625. ]
  626. },
  627. "notification-url": "https://packagist.org/downloads/",
  628. "license": [
  629. "Apache-2.0"
  630. ],
  631. "authors": [
  632. {
  633. "name": "liu21st",
  634. "email": "liu21st@gmail.com"
  635. }
  636. ],
  637. "description": "think orm",
  638. "keywords": [
  639. "database",
  640. "orm"
  641. ],
  642. "time": "2021-07-21T02:22:31+00:00"
  643. }
  644. ],
  645. "packages-dev": [
  646. {
  647. "name": "symfony/polyfill-mbstring",
  648. "version": "v1.23.1",
  649. "source": {
  650. "type": "git",
  651. "url": "https://github.com/symfony/polyfill-mbstring.git",
  652. "reference": "9174a3d80210dca8daa7f31fec659150bbeabfc6"
  653. },
  654. "dist": {
  655. "type": "zip",
  656. "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/9174a3d80210dca8daa7f31fec659150bbeabfc6",
  657. "reference": "9174a3d80210dca8daa7f31fec659150bbeabfc6",
  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"
  668. },
  669. "suggest": {
  670. "ext-mbstring": "For best performance"
  671. },
  672. "type": "library",
  673. "extra": {
  674. "branch-alias": {
  675. "dev-main": "1.23-dev"
  676. },
  677. "thanks": {
  678. "name": "symfony/polyfill",
  679. "url": "https://github.com/symfony/polyfill"
  680. }
  681. },
  682. "autoload": {
  683. "psr-4": {
  684. "Symfony\\Polyfill\\Mbstring\\": ""
  685. },
  686. "files": [
  687. "bootstrap.php"
  688. ]
  689. },
  690. "notification-url": "https://packagist.org/downloads/",
  691. "license": [
  692. "MIT"
  693. ],
  694. "authors": [
  695. {
  696. "name": "Nicolas Grekas",
  697. "email": "p@tchwork.com"
  698. },
  699. {
  700. "name": "Symfony Community",
  701. "homepage": "https://symfony.com/contributors"
  702. }
  703. ],
  704. "description": "Symfony polyfill for the Mbstring extension",
  705. "homepage": "https://symfony.com",
  706. "keywords": [
  707. "compatibility",
  708. "mbstring",
  709. "polyfill",
  710. "portable",
  711. "shim"
  712. ],
  713. "funding": [
  714. {
  715. "url": "https://symfony.com/sponsor",
  716. "type": "custom"
  717. },
  718. {
  719. "url": "https://github.com/fabpot",
  720. "type": "github"
  721. },
  722. {
  723. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  724. "type": "tidelift"
  725. }
  726. ],
  727. "time": "2021-05-27T12:26:48+00:00"
  728. },
  729. {
  730. "name": "symfony/polyfill-php72",
  731. "version": "v1.23.0",
  732. "source": {
  733. "type": "git",
  734. "url": "https://github.com/symfony/polyfill-php72.git",
  735. "reference": "9a142215a36a3888e30d0a9eeea9766764e96976"
  736. },
  737. "dist": {
  738. "type": "zip",
  739. "url": "https://api.github.com/repos/symfony/polyfill-php72/zipball/9a142215a36a3888e30d0a9eeea9766764e96976",
  740. "reference": "9a142215a36a3888e30d0a9eeea9766764e96976",
  741. "shasum": "",
  742. "mirrors": [
  743. {
  744. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  745. "preferred": true
  746. }
  747. ]
  748. },
  749. "require": {
  750. "php": ">=7.1"
  751. },
  752. "type": "library",
  753. "extra": {
  754. "branch-alias": {
  755. "dev-main": "1.23-dev"
  756. },
  757. "thanks": {
  758. "name": "symfony/polyfill",
  759. "url": "https://github.com/symfony/polyfill"
  760. }
  761. },
  762. "autoload": {
  763. "psr-4": {
  764. "Symfony\\Polyfill\\Php72\\": ""
  765. },
  766. "files": [
  767. "bootstrap.php"
  768. ]
  769. },
  770. "notification-url": "https://packagist.org/downloads/",
  771. "license": [
  772. "MIT"
  773. ],
  774. "authors": [
  775. {
  776. "name": "Nicolas Grekas",
  777. "email": "p@tchwork.com"
  778. },
  779. {
  780. "name": "Symfony Community",
  781. "homepage": "https://symfony.com/contributors"
  782. }
  783. ],
  784. "description": "Symfony polyfill backporting some PHP 7.2+ features to lower PHP versions",
  785. "homepage": "https://symfony.com",
  786. "keywords": [
  787. "compatibility",
  788. "polyfill",
  789. "portable",
  790. "shim"
  791. ],
  792. "funding": [
  793. {
  794. "url": "https://symfony.com/sponsor",
  795. "type": "custom"
  796. },
  797. {
  798. "url": "https://github.com/fabpot",
  799. "type": "github"
  800. },
  801. {
  802. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  803. "type": "tidelift"
  804. }
  805. ],
  806. "time": "2021-05-27T09:17:38+00:00"
  807. },
  808. {
  809. "name": "symfony/polyfill-php80",
  810. "version": "v1.23.1",
  811. "source": {
  812. "type": "git",
  813. "url": "https://github.com/symfony/polyfill-php80.git",
  814. "reference": "1100343ed1a92e3a38f9ae122fc0eb21602547be"
  815. },
  816. "dist": {
  817. "type": "zip",
  818. "url": "https://api.github.com/repos/symfony/polyfill-php80/zipball/1100343ed1a92e3a38f9ae122fc0eb21602547be",
  819. "reference": "1100343ed1a92e3a38f9ae122fc0eb21602547be",
  820. "shasum": "",
  821. "mirrors": [
  822. {
  823. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  824. "preferred": true
  825. }
  826. ]
  827. },
  828. "require": {
  829. "php": ">=7.1"
  830. },
  831. "type": "library",
  832. "extra": {
  833. "branch-alias": {
  834. "dev-main": "1.23-dev"
  835. },
  836. "thanks": {
  837. "name": "symfony/polyfill",
  838. "url": "https://github.com/symfony/polyfill"
  839. }
  840. },
  841. "autoload": {
  842. "psr-4": {
  843. "Symfony\\Polyfill\\Php80\\": ""
  844. },
  845. "files": [
  846. "bootstrap.php"
  847. ],
  848. "classmap": [
  849. "Resources/stubs"
  850. ]
  851. },
  852. "notification-url": "https://packagist.org/downloads/",
  853. "license": [
  854. "MIT"
  855. ],
  856. "authors": [
  857. {
  858. "name": "Ion Bazan",
  859. "email": "ion.bazan@gmail.com"
  860. },
  861. {
  862. "name": "Nicolas Grekas",
  863. "email": "p@tchwork.com"
  864. },
  865. {
  866. "name": "Symfony Community",
  867. "homepage": "https://symfony.com/contributors"
  868. }
  869. ],
  870. "description": "Symfony polyfill backporting some PHP 8.0+ features to lower PHP versions",
  871. "homepage": "https://symfony.com",
  872. "keywords": [
  873. "compatibility",
  874. "polyfill",
  875. "portable",
  876. "shim"
  877. ],
  878. "funding": [
  879. {
  880. "url": "https://symfony.com/sponsor",
  881. "type": "custom"
  882. },
  883. {
  884. "url": "https://github.com/fabpot",
  885. "type": "github"
  886. },
  887. {
  888. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  889. "type": "tidelift"
  890. }
  891. ],
  892. "time": "2021-07-28T13:41:28+00:00"
  893. },
  894. {
  895. "name": "symfony/var-dumper",
  896. "version": "v4.4.30",
  897. "source": {
  898. "type": "git",
  899. "url": "https://github.com/symfony/var-dumper.git",
  900. "reference": "7f65c44c2ce80d3a0fcdb6385ee0ad535e45660c"
  901. },
  902. "dist": {
  903. "type": "zip",
  904. "url": "https://api.github.com/repos/symfony/var-dumper/zipball/7f65c44c2ce80d3a0fcdb6385ee0ad535e45660c",
  905. "reference": "7f65c44c2ce80d3a0fcdb6385ee0ad535e45660c",
  906. "shasum": "",
  907. "mirrors": [
  908. {
  909. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  910. "preferred": true
  911. }
  912. ]
  913. },
  914. "require": {
  915. "php": ">=7.1.3",
  916. "symfony/polyfill-mbstring": "~1.0",
  917. "symfony/polyfill-php72": "~1.5",
  918. "symfony/polyfill-php80": "^1.16"
  919. },
  920. "conflict": {
  921. "phpunit/phpunit": "<4.8.35|<5.4.3,>=5.0",
  922. "symfony/console": "<3.4"
  923. },
  924. "require-dev": {
  925. "ext-iconv": "*",
  926. "symfony/console": "^3.4|^4.0|^5.0",
  927. "symfony/process": "^4.4|^5.0",
  928. "twig/twig": "^1.43|^2.13|^3.0.4"
  929. },
  930. "suggest": {
  931. "ext-iconv": "To convert non-UTF-8 strings to UTF-8 (or symfony/polyfill-iconv in case ext-iconv cannot be used).",
  932. "ext-intl": "To show region name in time zone dump",
  933. "symfony/console": "To use the ServerDumpCommand and/or the bin/var-dump-server script"
  934. },
  935. "bin": [
  936. "Resources/bin/var-dump-server"
  937. ],
  938. "type": "library",
  939. "autoload": {
  940. "files": [
  941. "Resources/functions/dump.php"
  942. ],
  943. "psr-4": {
  944. "Symfony\\Component\\VarDumper\\": ""
  945. },
  946. "exclude-from-classmap": [
  947. "/Tests/"
  948. ]
  949. },
  950. "notification-url": "https://packagist.org/downloads/",
  951. "license": [
  952. "MIT"
  953. ],
  954. "authors": [
  955. {
  956. "name": "Nicolas Grekas",
  957. "email": "p@tchwork.com"
  958. },
  959. {
  960. "name": "Symfony Community",
  961. "homepage": "https://symfony.com/contributors"
  962. }
  963. ],
  964. "description": "Provides mechanisms for walking through any arbitrary PHP variable",
  965. "homepage": "https://symfony.com",
  966. "keywords": [
  967. "debug",
  968. "dump"
  969. ],
  970. "funding": [
  971. {
  972. "url": "https://symfony.com/sponsor",
  973. "type": "custom"
  974. },
  975. {
  976. "url": "https://github.com/fabpot",
  977. "type": "github"
  978. },
  979. {
  980. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  981. "type": "tidelift"
  982. }
  983. ],
  984. "time": "2021-08-04T20:31:23+00:00"
  985. },
  986. {
  987. "name": "topthink/think-trace",
  988. "version": "v1.4",
  989. "source": {
  990. "type": "git",
  991. "url": "https://github.com/top-think/think-trace.git",
  992. "reference": "9a9fa8f767b6c66c5a133ad21ca1bc96ad329444"
  993. },
  994. "dist": {
  995. "type": "zip",
  996. "url": "https://api.github.com/repos/top-think/think-trace/zipball/9a9fa8f767b6c66c5a133ad21ca1bc96ad329444",
  997. "reference": "9a9fa8f767b6c66c5a133ad21ca1bc96ad329444",
  998. "shasum": "",
  999. "mirrors": [
  1000. {
  1001. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1002. "preferred": true
  1003. }
  1004. ]
  1005. },
  1006. "require": {
  1007. "php": ">=7.1.0",
  1008. "topthink/framework": "^6.0.0"
  1009. },
  1010. "type": "library",
  1011. "extra": {
  1012. "think": {
  1013. "services": [
  1014. "think\\trace\\Service"
  1015. ],
  1016. "config": {
  1017. "trace": "src/config.php"
  1018. }
  1019. }
  1020. },
  1021. "autoload": {
  1022. "psr-4": {
  1023. "think\\trace\\": "src"
  1024. }
  1025. },
  1026. "notification-url": "https://packagist.org/downloads/",
  1027. "license": [
  1028. "Apache-2.0"
  1029. ],
  1030. "authors": [
  1031. {
  1032. "name": "liu21st",
  1033. "email": "liu21st@gmail.com"
  1034. }
  1035. ],
  1036. "description": "thinkphp debug trace",
  1037. "time": "2020-06-29T05:27:28+00:00"
  1038. }
  1039. ],
  1040. "aliases": [],
  1041. "minimum-stability": "stable",
  1042. "stability-flags": [],
  1043. "prefer-stable": false,
  1044. "prefer-lowest": false,
  1045. "platform": {
  1046. "php": ">=7.1.0"
  1047. },
  1048. "platform-dev": [],
  1049. "plugin-api-version": "1.1.0"
  1050. }