composer.lock 31 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956
  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": "103a60082d76ee0bba3decb2ed8b0297",
  8. "packages": [
  9. {
  10. "name": "league/flysystem",
  11. "version": "1.1.9",
  12. "dist": {
  13. "type": "zip",
  14. "url": "https://mirrors.cloud.tencent.com/repository/composer/league/flysystem/1.1.9/league-flysystem-1.1.9.zip",
  15. "reference": "094defdb4a7001845300334e7c1ee2335925ef99",
  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. "type": "library",
  46. "extra": {
  47. "branch-alias": {
  48. "dev-master": "1.1-dev"
  49. }
  50. },
  51. "autoload": {
  52. "psr-4": {
  53. "League\\Flysystem\\": "src/"
  54. }
  55. },
  56. "license": [
  57. "MIT"
  58. ],
  59. "authors": [
  60. {
  61. "name": "Frank de Jonge",
  62. "email": "info@frenky.net"
  63. }
  64. ],
  65. "description": "Filesystem abstraction: Many filesystems, one API.",
  66. "keywords": [
  67. "Cloud Files",
  68. "WebDAV",
  69. "abstraction",
  70. "aws",
  71. "cloud",
  72. "copy.com",
  73. "dropbox",
  74. "file systems",
  75. "files",
  76. "filesystem",
  77. "filesystems",
  78. "ftp",
  79. "rackspace",
  80. "remote",
  81. "s3",
  82. "sftp",
  83. "storage"
  84. ],
  85. "time": "2021-12-09T09:40:50+00:00"
  86. },
  87. {
  88. "name": "league/flysystem-cached-adapter",
  89. "version": "1.1.0",
  90. "dist": {
  91. "type": "zip",
  92. "url": "https://mirrors.tencent.com/repository/composer/league/flysystem-cached-adapter/1.1.0/league-flysystem-cached-adapter-1.1.0.zip",
  93. "reference": "d1925efb2207ac4be3ad0c40b8277175f99ffaff",
  94. "shasum": ""
  95. },
  96. "require": {
  97. "league/flysystem": "~1.0",
  98. "psr/cache": "^1.0.0"
  99. },
  100. "require-dev": {
  101. "mockery/mockery": "~0.9",
  102. "phpspec/phpspec": "^3.4",
  103. "phpunit/phpunit": "^5.7",
  104. "predis/predis": "~1.0",
  105. "tedivm/stash": "~0.12"
  106. },
  107. "suggest": {
  108. "ext-phpredis": "Pure C implemented extension for PHP"
  109. },
  110. "type": "library",
  111. "autoload": {
  112. "psr-4": {
  113. "League\\Flysystem\\Cached\\": "src/"
  114. }
  115. },
  116. "license": [
  117. "MIT"
  118. ],
  119. "authors": [
  120. {
  121. "name": "frankdejonge",
  122. "email": "info@frenky.net"
  123. }
  124. ],
  125. "description": "An adapter decorator to enable meta-data caching.",
  126. "time": "2020-07-25T15:56:04+00:00"
  127. },
  128. {
  129. "name": "league/mime-type-detection",
  130. "version": "1.11.0",
  131. "dist": {
  132. "type": "zip",
  133. "url": "https://mirrors.cloud.tencent.com/repository/composer/league/mime-type-detection/1.11.0/league-mime-type-detection-1.11.0.zip",
  134. "reference": "ff6248ea87a9f116e78edd6002e39e5128a0d4dd",
  135. "shasum": ""
  136. },
  137. "require": {
  138. "ext-fileinfo": "*",
  139. "php": "^7.2 || ^8.0"
  140. },
  141. "require-dev": {
  142. "friendsofphp/php-cs-fixer": "^3.2",
  143. "phpstan/phpstan": "^0.12.68",
  144. "phpunit/phpunit": "^8.5.8 || ^9.3"
  145. },
  146. "type": "library",
  147. "autoload": {
  148. "psr-4": {
  149. "League\\MimeTypeDetection\\": "src"
  150. }
  151. },
  152. "license": [
  153. "MIT"
  154. ],
  155. "authors": [
  156. {
  157. "name": "Frank de Jonge",
  158. "email": "info@frankdejonge.nl"
  159. }
  160. ],
  161. "description": "Mime-type detection for Flysystem",
  162. "time": "2022-04-17T13:12:02+00:00"
  163. },
  164. {
  165. "name": "phpoffice/phpexcel",
  166. "version": "1.8.2",
  167. "dist": {
  168. "type": "zip",
  169. "url": "https://mirrors.cloud.tencent.com/repository/composer/phpoffice/phpexcel/1.8.2/phpoffice-phpexcel-1.8.2.zip",
  170. "reference": "1441011fb7ecdd8cc689878f54f8b58a6805f870",
  171. "shasum": ""
  172. },
  173. "require": {
  174. "ext-mbstring": "*",
  175. "ext-xml": "*",
  176. "ext-xmlwriter": "*",
  177. "php": "^5.2|^7.0"
  178. },
  179. "require-dev": {
  180. "squizlabs/php_codesniffer": "2.*"
  181. },
  182. "type": "library",
  183. "autoload": {
  184. "psr-0": {
  185. "PHPExcel": "Classes/"
  186. }
  187. },
  188. "license": [
  189. "LGPL-2.1"
  190. ],
  191. "authors": [
  192. {
  193. "name": "Maarten Balliauw",
  194. "homepage": "http://blog.maartenballiauw.be"
  195. },
  196. {
  197. "name": "Erik Tilt"
  198. },
  199. {
  200. "name": "Franck Lefevre",
  201. "homepage": "http://rootslabs.net"
  202. },
  203. {
  204. "name": "Mark Baker",
  205. "homepage": "http://markbakeruk.net"
  206. }
  207. ],
  208. "description": "PHPExcel - OpenXML - Read, Create and Write Spreadsheet documents in PHP - Spreadsheet engine",
  209. "homepage": "https://github.com/PHPOffice/PHPExcel",
  210. "keywords": [
  211. "OpenXML",
  212. "excel",
  213. "php",
  214. "spreadsheet",
  215. "xls",
  216. "xlsx"
  217. ],
  218. "time": "2018-11-22T23:07:24+00:00"
  219. },
  220. {
  221. "name": "psr/cache",
  222. "version": "1.0.1",
  223. "dist": {
  224. "type": "zip",
  225. "url": "https://mirrors.cloud.tencent.com/repository/composer/psr/cache/1.0.1/psr-cache-1.0.1.zip",
  226. "reference": "d11b50ad223250cf17b86e38383413f5a6764bf8",
  227. "shasum": ""
  228. },
  229. "require": {
  230. "php": ">=5.3.0"
  231. },
  232. "type": "library",
  233. "extra": {
  234. "branch-alias": {
  235. "dev-master": "1.0.x-dev"
  236. }
  237. },
  238. "autoload": {
  239. "psr-4": {
  240. "Psr\\Cache\\": "src/"
  241. }
  242. },
  243. "license": [
  244. "MIT"
  245. ],
  246. "authors": [
  247. {
  248. "name": "PHP-FIG",
  249. "homepage": "http://www.php-fig.org/"
  250. }
  251. ],
  252. "description": "Common interface for caching libraries",
  253. "keywords": [
  254. "cache",
  255. "psr",
  256. "psr-6"
  257. ],
  258. "time": "2016-08-06T20:24:11+00:00"
  259. },
  260. {
  261. "name": "psr/container",
  262. "version": "1.1.1",
  263. "dist": {
  264. "type": "zip",
  265. "url": "https://mirrors.cloud.tencent.com/repository/composer/psr/container/1.1.1/psr-container-1.1.1.zip",
  266. "reference": "8622567409010282b7aeebe4bb841fe98b58dcaf",
  267. "shasum": ""
  268. },
  269. "require": {
  270. "php": ">=7.2.0"
  271. },
  272. "type": "library",
  273. "autoload": {
  274. "psr-4": {
  275. "Psr\\Container\\": "src/"
  276. }
  277. },
  278. "license": [
  279. "MIT"
  280. ],
  281. "authors": [
  282. {
  283. "name": "PHP-FIG",
  284. "homepage": "https://www.php-fig.org/"
  285. }
  286. ],
  287. "description": "Common Container Interface (PHP FIG PSR-11)",
  288. "homepage": "https://github.com/php-fig/container",
  289. "keywords": [
  290. "PSR-11",
  291. "container",
  292. "container-interface",
  293. "container-interop",
  294. "psr"
  295. ],
  296. "time": "2021-03-05T17:36:06+00:00"
  297. },
  298. {
  299. "name": "psr/http-message",
  300. "version": "1.0.1",
  301. "dist": {
  302. "type": "zip",
  303. "url": "https://mirrors.cloud.tencent.com/repository/composer/psr/http-message/1.0.1/psr-http-message-1.0.1.zip",
  304. "reference": "f6561bf28d520154e4b0ec72be95418abe6d9363",
  305. "shasum": ""
  306. },
  307. "require": {
  308. "php": ">=5.3.0"
  309. },
  310. "type": "library",
  311. "extra": {
  312. "branch-alias": {
  313. "dev-master": "1.0.x-dev"
  314. }
  315. },
  316. "autoload": {
  317. "psr-4": {
  318. "Psr\\Http\\Message\\": "src/"
  319. }
  320. },
  321. "license": [
  322. "MIT"
  323. ],
  324. "authors": [
  325. {
  326. "name": "PHP-FIG",
  327. "homepage": "http://www.php-fig.org/"
  328. }
  329. ],
  330. "description": "Common interface for HTTP messages",
  331. "homepage": "https://github.com/php-fig/http-message",
  332. "keywords": [
  333. "http",
  334. "http-message",
  335. "psr",
  336. "psr-7",
  337. "request",
  338. "response"
  339. ],
  340. "time": "2016-08-06T14:39:51+00:00"
  341. },
  342. {
  343. "name": "psr/log",
  344. "version": "1.1.4",
  345. "dist": {
  346. "type": "zip",
  347. "url": "https://mirrors.cloud.tencent.com/repository/composer/psr/log/1.1.4/psr-log-1.1.4.zip",
  348. "reference": "d49695b909c3b7628b6289db5479a1c204601f11",
  349. "shasum": ""
  350. },
  351. "require": {
  352. "php": ">=5.3.0"
  353. },
  354. "type": "library",
  355. "extra": {
  356. "branch-alias": {
  357. "dev-master": "1.1.x-dev"
  358. }
  359. },
  360. "autoload": {
  361. "psr-4": {
  362. "Psr\\Log\\": "Psr/Log/"
  363. }
  364. },
  365. "license": [
  366. "MIT"
  367. ],
  368. "authors": [
  369. {
  370. "name": "PHP-FIG",
  371. "homepage": "https://www.php-fig.org/"
  372. }
  373. ],
  374. "description": "Common interface for logging libraries",
  375. "homepage": "https://github.com/php-fig/log",
  376. "keywords": [
  377. "log",
  378. "psr",
  379. "psr-3"
  380. ],
  381. "time": "2021-05-03T11:20:27+00:00"
  382. },
  383. {
  384. "name": "psr/simple-cache",
  385. "version": "1.0.1",
  386. "dist": {
  387. "type": "zip",
  388. "url": "https://mirrors.cloud.tencent.com/repository/composer/psr/simple-cache/1.0.1/psr-simple-cache-1.0.1.zip",
  389. "reference": "408d5eafb83c57f6365a3ca330ff23aa4a5fa39b",
  390. "shasum": ""
  391. },
  392. "require": {
  393. "php": ">=5.3.0"
  394. },
  395. "type": "library",
  396. "extra": {
  397. "branch-alias": {
  398. "dev-master": "1.0.x-dev"
  399. }
  400. },
  401. "autoload": {
  402. "psr-4": {
  403. "Psr\\SimpleCache\\": "src/"
  404. }
  405. },
  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.13",
  428. "dist": {
  429. "type": "zip",
  430. "url": "https://mirrors.tencent.com/repository/composer/topthink/framework/v6.0.13/topthink-framework-v6.0.13.zip",
  431. "reference": "126d5b2cbacb73d6e2a85cbc7a2c6ee59d0b3fa6",
  432. "shasum": ""
  433. },
  434. "require": {
  435. "ext-json": "*",
  436. "ext-mbstring": "*",
  437. "league/flysystem": "^1.1.4",
  438. "league/flysystem-cached-adapter": "^1.0",
  439. "php": ">=7.2.5",
  440. "psr/container": "~1.0",
  441. "psr/http-message": "^1.0",
  442. "psr/log": "~1.0",
  443. "psr/simple-cache": "^1.0",
  444. "topthink/think-helper": "^3.1.1",
  445. "topthink/think-orm": "^2.0"
  446. },
  447. "require-dev": {
  448. "guzzlehttp/psr7": "^2.1.0",
  449. "mikey179/vfsstream": "^1.6",
  450. "mockery/mockery": "^1.2",
  451. "phpunit/phpunit": "^7.0"
  452. },
  453. "type": "library",
  454. "autoload": {
  455. "files": [],
  456. "psr-4": {
  457. "think\\": "src/think/"
  458. }
  459. },
  460. "license": [
  461. "Apache-2.0"
  462. ],
  463. "authors": [
  464. {
  465. "name": "liu21st",
  466. "email": "liu21st@gmail.com"
  467. },
  468. {
  469. "name": "yunwuxin",
  470. "email": "448901948@qq.com"
  471. }
  472. ],
  473. "description": "The ThinkPHP Framework.",
  474. "homepage": "http://thinkphp.cn/",
  475. "keywords": [
  476. "framework",
  477. "orm",
  478. "thinkphp"
  479. ],
  480. "time": "2022-07-15T02:52:08+00:00"
  481. },
  482. {
  483. "name": "topthink/think-helper",
  484. "version": "v3.1.6",
  485. "dist": {
  486. "type": "zip",
  487. "url": "https://mirrors.tencent.com/repository/composer/topthink/think-helper/v3.1.6/topthink-think-helper-v3.1.6.zip",
  488. "reference": "769acbe50a4274327162f9c68ec2e89a38eb2aff",
  489. "shasum": ""
  490. },
  491. "require": {
  492. "php": ">=7.1.0"
  493. },
  494. "require-dev": {
  495. "phpunit/phpunit": "^9.5"
  496. },
  497. "type": "library",
  498. "autoload": {
  499. "files": [
  500. "src/helper.php"
  501. ],
  502. "psr-4": {
  503. "think\\": "src"
  504. }
  505. },
  506. "license": [
  507. "Apache-2.0"
  508. ],
  509. "authors": [
  510. {
  511. "name": "yunwuxin",
  512. "email": "448901948@qq.com"
  513. }
  514. ],
  515. "description": "The ThinkPHP6 Helper Package",
  516. "time": "2021-12-15T04:27:55+00:00"
  517. },
  518. {
  519. "name": "topthink/think-multi-app",
  520. "version": "v1.0.14",
  521. "dist": {
  522. "type": "zip",
  523. "url": "https://mirrors.tencent.com/repository/composer/topthink/think-multi-app/v1.0.14/topthink-think-multi-app-v1.0.14.zip",
  524. "reference": "ccaad7c2d33f42cb1cc2a78d6610aaec02cea4c3",
  525. "shasum": ""
  526. },
  527. "require": {
  528. "php": ">=7.1.0",
  529. "topthink/framework": "^6.0.0"
  530. },
  531. "type": "library",
  532. "extra": {
  533. "think": {
  534. "services": [
  535. "think\\app\\Service"
  536. ]
  537. }
  538. },
  539. "autoload": {
  540. "psr-4": {
  541. "think\\app\\": "src"
  542. }
  543. },
  544. "license": [
  545. "Apache-2.0"
  546. ],
  547. "authors": [
  548. {
  549. "name": "liu21st",
  550. "email": "liu21st@gmail.com"
  551. }
  552. ],
  553. "description": "thinkphp6 multi app support",
  554. "time": "2020-07-12T13:50:37+00:00"
  555. },
  556. {
  557. "name": "topthink/think-orm",
  558. "version": "v2.0.54",
  559. "dist": {
  560. "type": "zip",
  561. "url": "https://mirrors.tencent.com/repository/composer/topthink/think-orm/v2.0.54/topthink-think-orm-v2.0.54.zip",
  562. "reference": "97b061b47616301ff29fbd4c35ed9184e1162e4e",
  563. "shasum": ""
  564. },
  565. "require": {
  566. "ext-json": "*",
  567. "ext-pdo": "*",
  568. "php": ">=7.1.0",
  569. "psr/log": "^1.0|^2.0",
  570. "psr/simple-cache": "^1.0|^2.0",
  571. "topthink/think-helper": "^3.1"
  572. },
  573. "require-dev": {
  574. "phpunit/phpunit": "^7|^8|^9.5"
  575. },
  576. "type": "library",
  577. "autoload": {
  578. "files": [
  579. "stubs/load_stubs.php"
  580. ],
  581. "psr-4": {
  582. "think\\": "src"
  583. }
  584. },
  585. "license": [
  586. "Apache-2.0"
  587. ],
  588. "authors": [
  589. {
  590. "name": "liu21st",
  591. "email": "liu21st@gmail.com"
  592. }
  593. ],
  594. "description": "think orm",
  595. "keywords": [
  596. "database",
  597. "orm"
  598. ],
  599. "time": "2022-07-05T05:25:51+00:00"
  600. },
  601. {
  602. "name": "topthink/think-template",
  603. "version": "v2.0.8",
  604. "dist": {
  605. "type": "zip",
  606. "url": "https://mirrors.tencent.com/repository/composer/topthink/think-template/v2.0.8/topthink-think-template-v2.0.8.zip",
  607. "reference": "abfc293f74f9ef5127b5c416310a01fe42e59368",
  608. "shasum": ""
  609. },
  610. "require": {
  611. "php": ">=7.1.0",
  612. "psr/simple-cache": "^1.0"
  613. },
  614. "type": "library",
  615. "autoload": {
  616. "psr-4": {
  617. "think\\": "src"
  618. }
  619. },
  620. "license": [
  621. "Apache-2.0"
  622. ],
  623. "authors": [
  624. {
  625. "name": "liu21st",
  626. "email": "liu21st@gmail.com"
  627. }
  628. ],
  629. "description": "the php template engine",
  630. "time": "2020-12-10T07:52:03+00:00"
  631. },
  632. {
  633. "name": "topthink/think-view",
  634. "version": "v1.0.14",
  635. "dist": {
  636. "type": "zip",
  637. "url": "https://mirrors.tencent.com/repository/composer/topthink/think-view/v1.0.14/topthink-think-view-v1.0.14.zip",
  638. "reference": "edce0ae2c9551ab65f9e94a222604b0dead3576d",
  639. "shasum": ""
  640. },
  641. "require": {
  642. "php": ">=7.1.0",
  643. "topthink/think-template": "^2.0"
  644. },
  645. "type": "library",
  646. "autoload": {
  647. "psr-4": {
  648. "think\\view\\driver\\": "src"
  649. }
  650. },
  651. "license": [
  652. "Apache-2.0"
  653. ],
  654. "authors": [
  655. {
  656. "name": "liu21st",
  657. "email": "liu21st@gmail.com"
  658. }
  659. ],
  660. "description": "thinkphp template driver",
  661. "time": "2019-11-06T11:40:13+00:00"
  662. }
  663. ],
  664. "packages-dev": [
  665. {
  666. "name": "symfony/polyfill-mbstring",
  667. "version": "v1.26.0",
  668. "dist": {
  669. "type": "zip",
  670. "url": "https://mirrors.cloud.tencent.com/repository/composer/symfony/polyfill-mbstring/v1.26.0/symfony-polyfill-mbstring-v1.26.0.zip",
  671. "reference": "9344f9cb97f3b19424af1a21a3b0e75b0a7d8d7e",
  672. "shasum": ""
  673. },
  674. "require": {
  675. "php": ">=7.1"
  676. },
  677. "provide": {
  678. "ext-mbstring": "*"
  679. },
  680. "suggest": {
  681. "ext-mbstring": "For best performance"
  682. },
  683. "type": "library",
  684. "extra": {
  685. "branch-alias": {
  686. "dev-main": "1.26-dev"
  687. },
  688. "thanks": {
  689. "name": "symfony/polyfill",
  690. "url": "https://github.com/symfony/polyfill"
  691. }
  692. },
  693. "autoload": {
  694. "files": [
  695. "bootstrap.php"
  696. ],
  697. "psr-4": {
  698. "Symfony\\Polyfill\\Mbstring\\": ""
  699. }
  700. },
  701. "license": [
  702. "MIT"
  703. ],
  704. "authors": [
  705. {
  706. "name": "Nicolas Grekas",
  707. "email": "p@tchwork.com"
  708. },
  709. {
  710. "name": "Symfony Community",
  711. "homepage": "https://symfony.com/contributors"
  712. }
  713. ],
  714. "description": "Symfony polyfill for the Mbstring extension",
  715. "homepage": "https://symfony.com",
  716. "keywords": [
  717. "compatibility",
  718. "mbstring",
  719. "polyfill",
  720. "portable",
  721. "shim"
  722. ],
  723. "time": "2022-05-24T11:49:31+00:00"
  724. },
  725. {
  726. "name": "symfony/polyfill-php72",
  727. "version": "v1.26.0",
  728. "dist": {
  729. "type": "zip",
  730. "url": "https://mirrors.tencent.com/repository/composer/symfony/polyfill-php72/v1.26.0/symfony-polyfill-php72-v1.26.0.zip",
  731. "reference": "bf44a9fd41feaac72b074de600314a93e2ae78e2",
  732. "shasum": ""
  733. },
  734. "require": {
  735. "php": ">=7.1"
  736. },
  737. "type": "library",
  738. "extra": {
  739. "branch-alias": {
  740. "dev-main": "1.26-dev"
  741. },
  742. "thanks": {
  743. "name": "symfony/polyfill",
  744. "url": "https://github.com/symfony/polyfill"
  745. }
  746. },
  747. "autoload": {
  748. "files": [
  749. "bootstrap.php"
  750. ],
  751. "psr-4": {
  752. "Symfony\\Polyfill\\Php72\\": ""
  753. }
  754. },
  755. "license": [
  756. "MIT"
  757. ],
  758. "authors": [
  759. {
  760. "name": "Nicolas Grekas",
  761. "email": "p@tchwork.com"
  762. },
  763. {
  764. "name": "Symfony Community",
  765. "homepage": "https://symfony.com/contributors"
  766. }
  767. ],
  768. "description": "Symfony polyfill backporting some PHP 7.2+ features to lower PHP versions",
  769. "homepage": "https://symfony.com",
  770. "keywords": [
  771. "compatibility",
  772. "polyfill",
  773. "portable",
  774. "shim"
  775. ],
  776. "time": "2022-05-24T11:49:31+00:00"
  777. },
  778. {
  779. "name": "symfony/polyfill-php80",
  780. "version": "v1.26.0",
  781. "dist": {
  782. "type": "zip",
  783. "url": "https://mirrors.tencent.com/repository/composer/symfony/polyfill-php80/v1.26.0/symfony-polyfill-php80-v1.26.0.zip",
  784. "reference": "cfa0ae98841b9e461207c13ab093d76b0fa7bace",
  785. "shasum": ""
  786. },
  787. "require": {
  788. "php": ">=7.1"
  789. },
  790. "type": "library",
  791. "extra": {
  792. "branch-alias": {
  793. "dev-main": "1.26-dev"
  794. },
  795. "thanks": {
  796. "name": "symfony/polyfill",
  797. "url": "https://github.com/symfony/polyfill"
  798. }
  799. },
  800. "autoload": {
  801. "files": [
  802. "bootstrap.php"
  803. ],
  804. "psr-4": {
  805. "Symfony\\Polyfill\\Php80\\": ""
  806. },
  807. "classmap": [
  808. "Resources/stubs"
  809. ]
  810. },
  811. "license": [
  812. "MIT"
  813. ],
  814. "authors": [
  815. {
  816. "name": "Ion Bazan",
  817. "email": "ion.bazan@gmail.com"
  818. },
  819. {
  820. "name": "Nicolas Grekas",
  821. "email": "p@tchwork.com"
  822. },
  823. {
  824. "name": "Symfony Community",
  825. "homepage": "https://symfony.com/contributors"
  826. }
  827. ],
  828. "description": "Symfony polyfill backporting some PHP 8.0+ features to lower PHP versions",
  829. "homepage": "https://symfony.com",
  830. "keywords": [
  831. "compatibility",
  832. "polyfill",
  833. "portable",
  834. "shim"
  835. ],
  836. "time": "2022-05-10T07:21:04+00:00"
  837. },
  838. {
  839. "name": "symfony/var-dumper",
  840. "version": "v4.4.44",
  841. "dist": {
  842. "type": "zip",
  843. "url": "https://mirrors.tencent.com/repository/composer/symfony/var-dumper/v4.4.44/symfony-var-dumper-v4.4.44.zip",
  844. "reference": "f19951007dae942cc79b979c1fe26bfdfbeb54ed",
  845. "shasum": ""
  846. },
  847. "require": {
  848. "php": ">=7.1.3",
  849. "symfony/polyfill-mbstring": "~1.0",
  850. "symfony/polyfill-php72": "~1.5",
  851. "symfony/polyfill-php80": "^1.16"
  852. },
  853. "conflict": {
  854. "phpunit/phpunit": "<4.8.35|<5.4.3,>=5.0",
  855. "symfony/console": "<3.4"
  856. },
  857. "require-dev": {
  858. "ext-iconv": "*",
  859. "symfony/console": "^3.4|^4.0|^5.0",
  860. "symfony/process": "^4.4|^5.0",
  861. "twig/twig": "^1.43|^2.13|^3.0.4"
  862. },
  863. "suggest": {
  864. "ext-iconv": "To convert non-UTF-8 strings to UTF-8 (or symfony/polyfill-iconv in case ext-iconv cannot be used).",
  865. "ext-intl": "To show region name in time zone dump",
  866. "symfony/console": "To use the ServerDumpCommand and/or the bin/var-dump-server script"
  867. },
  868. "bin": [
  869. "Resources/bin/var-dump-server"
  870. ],
  871. "type": "library",
  872. "autoload": {
  873. "files": [
  874. "Resources/functions/dump.php"
  875. ],
  876. "psr-4": {
  877. "Symfony\\Component\\VarDumper\\": ""
  878. },
  879. "exclude-from-classmap": [
  880. "/Tests/"
  881. ]
  882. },
  883. "license": [
  884. "MIT"
  885. ],
  886. "authors": [
  887. {
  888. "name": "Nicolas Grekas",
  889. "email": "p@tchwork.com"
  890. },
  891. {
  892. "name": "Symfony Community",
  893. "homepage": "https://symfony.com/contributors"
  894. }
  895. ],
  896. "description": "Provides mechanisms for walking through any arbitrary PHP variable",
  897. "homepage": "https://symfony.com",
  898. "keywords": [
  899. "debug",
  900. "dump"
  901. ],
  902. "time": "2022-07-20T09:59:04+00:00"
  903. },
  904. {
  905. "name": "topthink/think-trace",
  906. "version": "v1.4",
  907. "dist": {
  908. "type": "zip",
  909. "url": "https://mirrors.cloud.tencent.com/repository/composer/topthink/think-trace/v1.4/topthink-think-trace-v1.4.zip",
  910. "reference": "9a9fa8f767b6c66c5a133ad21ca1bc96ad329444",
  911. "shasum": ""
  912. },
  913. "require": {
  914. "php": ">=7.1.0",
  915. "topthink/framework": "^6.0.0"
  916. },
  917. "type": "library",
  918. "extra": {
  919. "think": {
  920. "services": [
  921. "think\\trace\\Service"
  922. ],
  923. "config": {
  924. "trace": "src/config.php"
  925. }
  926. }
  927. },
  928. "autoload": {
  929. "psr-4": {
  930. "think\\trace\\": "src"
  931. }
  932. },
  933. "license": [
  934. "Apache-2.0"
  935. ],
  936. "authors": [
  937. {
  938. "name": "liu21st",
  939. "email": "liu21st@gmail.com"
  940. }
  941. ],
  942. "description": "thinkphp debug trace",
  943. "time": "2020-06-29T05:27:28+00:00"
  944. }
  945. ],
  946. "aliases": [],
  947. "minimum-stability": "stable",
  948. "stability-flags": [],
  949. "prefer-stable": false,
  950. "prefer-lowest": false,
  951. "platform": {
  952. "php": ">=7.2.5"
  953. },
  954. "platform-dev": [],
  955. "plugin-api-version": "2.3.0"
  956. }