composer.lock 27 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806
  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": "74a749574e0f40df27b0061a71e2b878",
  8. "packages": [
  9. {
  10. "name": "league/flysystem",
  11. "version": "1.0.70",
  12. "source": {
  13. "type": "git",
  14. "url": "https://github.com/thephpleague/flysystem.git",
  15. "reference": "585824702f534f8d3cf7fab7225e8466cc4b7493"
  16. },
  17. "dist": {
  18. "type": "zip",
  19. "url": "https://api.github.com/repos/thephpleague/flysystem/zipball/585824702f534f8d3cf7fab7225e8466cc4b7493",
  20. "reference": "585824702f534f8d3cf7fab7225e8466cc4b7493",
  21. "shasum": ""
  22. },
  23. "require": {
  24. "ext-fileinfo": "*",
  25. "php": ">=5.5.9"
  26. },
  27. "conflict": {
  28. "league/flysystem-sftp": "<1.0.6"
  29. },
  30. "require-dev": {
  31. "phpspec/phpspec": "^3.4 || ^4.0 || ^5.0 || ^6.0",
  32. "phpunit/phpunit": "^5.7.26"
  33. },
  34. "suggest": {
  35. "ext-fileinfo": "Required for MimeType",
  36. "ext-ftp": "Allows you to use FTP server storage",
  37. "ext-openssl": "Allows you to use FTPS server storage",
  38. "league/flysystem-aws-s3-v2": "Allows you to use S3 storage with AWS SDK v2",
  39. "league/flysystem-aws-s3-v3": "Allows you to use S3 storage with AWS SDK v3",
  40. "league/flysystem-azure": "Allows you to use Windows Azure Blob storage",
  41. "league/flysystem-cached-adapter": "Flysystem adapter decorator for metadata caching",
  42. "league/flysystem-eventable-filesystem": "Allows you to use EventableFilesystem",
  43. "league/flysystem-rackspace": "Allows you to use Rackspace Cloud Files",
  44. "league/flysystem-sftp": "Allows you to use SFTP server storage via phpseclib",
  45. "league/flysystem-webdav": "Allows you to use WebDAV storage",
  46. "league/flysystem-ziparchive": "Allows you to use ZipArchive adapter",
  47. "spatie/flysystem-dropbox": "Allows you to use Dropbox storage",
  48. "srmklive/flysystem-dropbox-v2": "Allows you to use Dropbox storage for PHP 5 applications"
  49. },
  50. "type": "library",
  51. "extra": {
  52. "branch-alias": {
  53. "dev-master": "1.1-dev"
  54. }
  55. },
  56. "autoload": {
  57. "psr-4": {
  58. "League\\Flysystem\\": "src/"
  59. }
  60. },
  61. "notification-url": "https://packagist.org/downloads/",
  62. "license": [
  63. "MIT"
  64. ],
  65. "authors": [
  66. {
  67. "name": "Frank de Jonge",
  68. "email": "info@frenky.net"
  69. }
  70. ],
  71. "description": "Filesystem abstraction: Many filesystems, one API.",
  72. "keywords": [
  73. "Cloud Files",
  74. "WebDAV",
  75. "abstraction",
  76. "aws",
  77. "cloud",
  78. "copy.com",
  79. "dropbox",
  80. "file systems",
  81. "files",
  82. "filesystem",
  83. "filesystems",
  84. "ftp",
  85. "rackspace",
  86. "remote",
  87. "s3",
  88. "sftp",
  89. "storage"
  90. ],
  91. "time": "2020-07-26T07:20:36+00:00"
  92. },
  93. {
  94. "name": "league/flysystem-cached-adapter",
  95. "version": "1.1.0",
  96. "source": {
  97. "type": "git",
  98. "url": "https://github.com/thephpleague/flysystem-cached-adapter.git",
  99. "reference": "d1925efb2207ac4be3ad0c40b8277175f99ffaff"
  100. },
  101. "dist": {
  102. "type": "zip",
  103. "url": "https://api.github.com/repos/thephpleague/flysystem-cached-adapter/zipball/d1925efb2207ac4be3ad0c40b8277175f99ffaff",
  104. "reference": "d1925efb2207ac4be3ad0c40b8277175f99ffaff",
  105. "shasum": ""
  106. },
  107. "require": {
  108. "league/flysystem": "~1.0",
  109. "psr/cache": "^1.0.0"
  110. },
  111. "require-dev": {
  112. "mockery/mockery": "~0.9",
  113. "phpspec/phpspec": "^3.4",
  114. "phpunit/phpunit": "^5.7",
  115. "predis/predis": "~1.0",
  116. "tedivm/stash": "~0.12"
  117. },
  118. "suggest": {
  119. "ext-phpredis": "Pure C implemented extension for PHP"
  120. },
  121. "type": "library",
  122. "autoload": {
  123. "psr-4": {
  124. "League\\Flysystem\\Cached\\": "src/"
  125. }
  126. },
  127. "notification-url": "https://packagist.org/downloads/",
  128. "license": [
  129. "MIT"
  130. ],
  131. "authors": [
  132. {
  133. "name": "frankdejonge",
  134. "email": "info@frenky.net"
  135. }
  136. ],
  137. "description": "An adapter decorator to enable meta-data caching.",
  138. "time": "2020-07-25T15:56:04+00:00"
  139. },
  140. {
  141. "name": "psr/cache",
  142. "version": "1.0.1",
  143. "source": {
  144. "type": "git",
  145. "url": "https://github.com/php-fig/cache.git",
  146. "reference": "d11b50ad223250cf17b86e38383413f5a6764bf8"
  147. },
  148. "dist": {
  149. "type": "zip",
  150. "url": "https://api.github.com/repos/php-fig/cache/zipball/d11b50ad223250cf17b86e38383413f5a6764bf8",
  151. "reference": "d11b50ad223250cf17b86e38383413f5a6764bf8",
  152. "shasum": ""
  153. },
  154. "require": {
  155. "php": ">=5.3.0"
  156. },
  157. "type": "library",
  158. "extra": {
  159. "branch-alias": {
  160. "dev-master": "1.0.x-dev"
  161. }
  162. },
  163. "autoload": {
  164. "psr-4": {
  165. "Psr\\Cache\\": "src/"
  166. }
  167. },
  168. "notification-url": "https://packagist.org/downloads/",
  169. "license": [
  170. "MIT"
  171. ],
  172. "authors": [
  173. {
  174. "name": "PHP-FIG",
  175. "homepage": "http://www.php-fig.org/"
  176. }
  177. ],
  178. "description": "Common interface for caching libraries",
  179. "keywords": [
  180. "cache",
  181. "psr",
  182. "psr-6"
  183. ],
  184. "time": "2016-08-06T20:24:11+00:00"
  185. },
  186. {
  187. "name": "psr/container",
  188. "version": "1.0.0",
  189. "source": {
  190. "type": "git",
  191. "url": "https://github.com/php-fig/container.git",
  192. "reference": "b7ce3b176482dbbc1245ebf52b181af44c2cf55f"
  193. },
  194. "dist": {
  195. "type": "zip",
  196. "url": "https://api.github.com/repos/php-fig/container/zipball/b7ce3b176482dbbc1245ebf52b181af44c2cf55f",
  197. "reference": "b7ce3b176482dbbc1245ebf52b181af44c2cf55f",
  198. "shasum": ""
  199. },
  200. "require": {
  201. "php": ">=5.3.0"
  202. },
  203. "type": "library",
  204. "extra": {
  205. "branch-alias": {
  206. "dev-master": "1.0.x-dev"
  207. }
  208. },
  209. "autoload": {
  210. "psr-4": {
  211. "Psr\\Container\\": "src/"
  212. }
  213. },
  214. "notification-url": "https://packagist.org/downloads/",
  215. "license": [
  216. "MIT"
  217. ],
  218. "authors": [
  219. {
  220. "name": "PHP-FIG",
  221. "homepage": "http://www.php-fig.org/"
  222. }
  223. ],
  224. "description": "Common Container Interface (PHP FIG PSR-11)",
  225. "homepage": "https://github.com/php-fig/container",
  226. "keywords": [
  227. "PSR-11",
  228. "container",
  229. "container-interface",
  230. "container-interop",
  231. "psr"
  232. ],
  233. "time": "2017-02-14T16:28:37+00:00"
  234. },
  235. {
  236. "name": "psr/log",
  237. "version": "1.1.4",
  238. "source": {
  239. "type": "git",
  240. "url": "https://github.com/php-fig/log.git",
  241. "reference": "d49695b909c3b7628b6289db5479a1c204601f11"
  242. },
  243. "dist": {
  244. "type": "zip",
  245. "url": "https://api.github.com/repos/php-fig/log/zipball/d49695b909c3b7628b6289db5479a1c204601f11",
  246. "reference": "d49695b909c3b7628b6289db5479a1c204601f11",
  247. "shasum": ""
  248. },
  249. "require": {
  250. "php": ">=5.3.0"
  251. },
  252. "type": "library",
  253. "extra": {
  254. "branch-alias": {
  255. "dev-master": "1.1.x-dev"
  256. }
  257. },
  258. "autoload": {
  259. "psr-4": {
  260. "Psr\\Log\\": "Psr/Log/"
  261. }
  262. },
  263. "notification-url": "https://packagist.org/downloads/",
  264. "license": [
  265. "MIT"
  266. ],
  267. "authors": [
  268. {
  269. "name": "PHP-FIG",
  270. "homepage": "https://www.php-fig.org/"
  271. }
  272. ],
  273. "description": "Common interface for logging libraries",
  274. "homepage": "https://github.com/php-fig/log",
  275. "keywords": [
  276. "log",
  277. "psr",
  278. "psr-3"
  279. ],
  280. "time": "2021-05-03T11:20:27+00:00"
  281. },
  282. {
  283. "name": "psr/simple-cache",
  284. "version": "1.0.1",
  285. "source": {
  286. "type": "git",
  287. "url": "https://github.com/php-fig/simple-cache.git",
  288. "reference": "408d5eafb83c57f6365a3ca330ff23aa4a5fa39b"
  289. },
  290. "dist": {
  291. "type": "zip",
  292. "url": "https://api.github.com/repos/php-fig/simple-cache/zipball/408d5eafb83c57f6365a3ca330ff23aa4a5fa39b",
  293. "reference": "408d5eafb83c57f6365a3ca330ff23aa4a5fa39b",
  294. "shasum": ""
  295. },
  296. "require": {
  297. "php": ">=5.3.0"
  298. },
  299. "type": "library",
  300. "extra": {
  301. "branch-alias": {
  302. "dev-master": "1.0.x-dev"
  303. }
  304. },
  305. "autoload": {
  306. "psr-4": {
  307. "Psr\\SimpleCache\\": "src/"
  308. }
  309. },
  310. "notification-url": "https://packagist.org/downloads/",
  311. "license": [
  312. "MIT"
  313. ],
  314. "authors": [
  315. {
  316. "name": "PHP-FIG",
  317. "homepage": "http://www.php-fig.org/"
  318. }
  319. ],
  320. "description": "Common interfaces for simple caching",
  321. "keywords": [
  322. "cache",
  323. "caching",
  324. "psr",
  325. "psr-16",
  326. "simple-cache"
  327. ],
  328. "time": "2017-10-23T01:57:42+00:00"
  329. },
  330. {
  331. "name": "topthink/framework",
  332. "version": "v6.0.8",
  333. "source": {
  334. "type": "git",
  335. "url": "https://github.com/top-think/framework.git",
  336. "reference": "4789343672aef06d571d556da369c0e156609bce"
  337. },
  338. "dist": {
  339. "type": "zip",
  340. "url": "https://api.github.com/repos/top-think/framework/zipball/4789343672aef06d571d556da369c0e156609bce",
  341. "reference": "4789343672aef06d571d556da369c0e156609bce",
  342. "shasum": ""
  343. },
  344. "require": {
  345. "ext-json": "*",
  346. "ext-mbstring": "*",
  347. "league/flysystem": "^1.0",
  348. "league/flysystem-cached-adapter": "^1.0",
  349. "php": ">=7.1.0",
  350. "psr/container": "~1.0",
  351. "psr/log": "~1.0",
  352. "psr/simple-cache": "^1.0",
  353. "topthink/think-helper": "^3.1.1",
  354. "topthink/think-orm": "^2.0"
  355. },
  356. "require-dev": {
  357. "mikey179/vfsstream": "^1.6",
  358. "mockery/mockery": "^1.2",
  359. "phpunit/phpunit": "^7.0"
  360. },
  361. "type": "library",
  362. "autoload": {
  363. "files": [],
  364. "psr-4": {
  365. "think\\": "src/think/"
  366. }
  367. },
  368. "notification-url": "https://packagist.org/downloads/",
  369. "license": [
  370. "Apache-2.0"
  371. ],
  372. "authors": [
  373. {
  374. "name": "liu21st",
  375. "email": "liu21st@gmail.com"
  376. },
  377. {
  378. "name": "yunwuxin",
  379. "email": "448901948@qq.com"
  380. }
  381. ],
  382. "description": "The ThinkPHP Framework.",
  383. "homepage": "http://thinkphp.cn/",
  384. "keywords": [
  385. "framework",
  386. "orm",
  387. "thinkphp"
  388. ],
  389. "time": "2021-04-27T00:41:08+00:00"
  390. },
  391. {
  392. "name": "topthink/think-helper",
  393. "version": "v3.1.6",
  394. "source": {
  395. "type": "git",
  396. "url": "https://github.com/top-think/think-helper.git",
  397. "reference": "769acbe50a4274327162f9c68ec2e89a38eb2aff"
  398. },
  399. "dist": {
  400. "type": "zip",
  401. "url": "https://api.github.com/repos/top-think/think-helper/zipball/769acbe50a4274327162f9c68ec2e89a38eb2aff",
  402. "reference": "769acbe50a4274327162f9c68ec2e89a38eb2aff",
  403. "shasum": ""
  404. },
  405. "require": {
  406. "php": ">=7.1.0"
  407. },
  408. "require-dev": {
  409. "phpunit/phpunit": "^9.5"
  410. },
  411. "type": "library",
  412. "autoload": {
  413. "files": [
  414. "src/helper.php"
  415. ],
  416. "psr-4": {
  417. "think\\": "src"
  418. }
  419. },
  420. "notification-url": "https://packagist.org/downloads/",
  421. "license": [
  422. "Apache-2.0"
  423. ],
  424. "authors": [
  425. {
  426. "name": "yunwuxin",
  427. "email": "448901948@qq.com"
  428. }
  429. ],
  430. "description": "The ThinkPHP6 Helper Package",
  431. "time": "2021-12-15T04:27:55+00:00"
  432. },
  433. {
  434. "name": "topthink/think-orm",
  435. "version": "v2.0.53",
  436. "source": {
  437. "type": "git",
  438. "url": "https://github.com/top-think/think-orm.git",
  439. "reference": "06783eda65547a70ea686360a897759e1f873fff"
  440. },
  441. "dist": {
  442. "type": "zip",
  443. "url": "https://api.github.com/repos/top-think/think-orm/zipball/06783eda65547a70ea686360a897759e1f873fff",
  444. "reference": "06783eda65547a70ea686360a897759e1f873fff",
  445. "shasum": ""
  446. },
  447. "require": {
  448. "ext-json": "*",
  449. "ext-pdo": "*",
  450. "php": ">=7.1.0",
  451. "psr/log": "~1.0",
  452. "psr/simple-cache": "^1.0",
  453. "topthink/think-helper": "^3.1"
  454. },
  455. "require-dev": {
  456. "phpunit/phpunit": "^7|^8|^9.5"
  457. },
  458. "type": "library",
  459. "autoload": {
  460. "files": [
  461. "stubs/load_stubs.php"
  462. ],
  463. "psr-4": {
  464. "think\\": "src"
  465. }
  466. },
  467. "notification-url": "https://packagist.org/downloads/",
  468. "license": [
  469. "Apache-2.0"
  470. ],
  471. "authors": [
  472. {
  473. "name": "liu21st",
  474. "email": "liu21st@gmail.com"
  475. }
  476. ],
  477. "description": "think orm",
  478. "keywords": [
  479. "database",
  480. "orm"
  481. ],
  482. "time": "2022-02-28T14:54:22+00:00"
  483. }
  484. ],
  485. "packages-dev": [
  486. {
  487. "name": "symfony/polyfill-mbstring",
  488. "version": "v1.25.0",
  489. "source": {
  490. "type": "git",
  491. "url": "https://github.com/symfony/polyfill-mbstring.git",
  492. "reference": "0abb51d2f102e00a4eefcf46ba7fec406d245825"
  493. },
  494. "dist": {
  495. "type": "zip",
  496. "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/0abb51d2f102e00a4eefcf46ba7fec406d245825",
  497. "reference": "0abb51d2f102e00a4eefcf46ba7fec406d245825",
  498. "shasum": ""
  499. },
  500. "require": {
  501. "php": ">=7.1"
  502. },
  503. "provide": {
  504. "ext-mbstring": "*"
  505. },
  506. "suggest": {
  507. "ext-mbstring": "For best performance"
  508. },
  509. "type": "library",
  510. "extra": {
  511. "branch-alias": {
  512. "dev-main": "1.23-dev"
  513. },
  514. "thanks": {
  515. "name": "symfony/polyfill",
  516. "url": "https://github.com/symfony/polyfill"
  517. }
  518. },
  519. "autoload": {
  520. "files": [
  521. "bootstrap.php"
  522. ],
  523. "psr-4": {
  524. "Symfony\\Polyfill\\Mbstring\\": ""
  525. }
  526. },
  527. "notification-url": "https://packagist.org/downloads/",
  528. "license": [
  529. "MIT"
  530. ],
  531. "authors": [
  532. {
  533. "name": "Nicolas Grekas",
  534. "email": "p@tchwork.com"
  535. },
  536. {
  537. "name": "Symfony Community",
  538. "homepage": "https://symfony.com/contributors"
  539. }
  540. ],
  541. "description": "Symfony polyfill for the Mbstring extension",
  542. "homepage": "https://symfony.com",
  543. "keywords": [
  544. "compatibility",
  545. "mbstring",
  546. "polyfill",
  547. "portable",
  548. "shim"
  549. ],
  550. "time": "2021-11-30T18:21:41+00:00"
  551. },
  552. {
  553. "name": "symfony/polyfill-php72",
  554. "version": "v1.25.0",
  555. "source": {
  556. "type": "git",
  557. "url": "https://github.com/symfony/polyfill-php72.git",
  558. "reference": "9a142215a36a3888e30d0a9eeea9766764e96976"
  559. },
  560. "dist": {
  561. "type": "zip",
  562. "url": "https://api.github.com/repos/symfony/polyfill-php72/zipball/9a142215a36a3888e30d0a9eeea9766764e96976",
  563. "reference": "9a142215a36a3888e30d0a9eeea9766764e96976",
  564. "shasum": ""
  565. },
  566. "require": {
  567. "php": ">=7.1"
  568. },
  569. "type": "library",
  570. "extra": {
  571. "branch-alias": {
  572. "dev-main": "1.23-dev"
  573. },
  574. "thanks": {
  575. "name": "symfony/polyfill",
  576. "url": "https://github.com/symfony/polyfill"
  577. }
  578. },
  579. "autoload": {
  580. "files": [
  581. "bootstrap.php"
  582. ],
  583. "psr-4": {
  584. "Symfony\\Polyfill\\Php72\\": ""
  585. }
  586. },
  587. "notification-url": "https://packagist.org/downloads/",
  588. "license": [
  589. "MIT"
  590. ],
  591. "authors": [
  592. {
  593. "name": "Nicolas Grekas",
  594. "email": "p@tchwork.com"
  595. },
  596. {
  597. "name": "Symfony Community",
  598. "homepage": "https://symfony.com/contributors"
  599. }
  600. ],
  601. "description": "Symfony polyfill backporting some PHP 7.2+ features to lower PHP versions",
  602. "homepage": "https://symfony.com",
  603. "keywords": [
  604. "compatibility",
  605. "polyfill",
  606. "portable",
  607. "shim"
  608. ],
  609. "time": "2021-05-27T09:17:38+00:00"
  610. },
  611. {
  612. "name": "symfony/polyfill-php80",
  613. "version": "v1.25.0",
  614. "source": {
  615. "type": "git",
  616. "url": "https://github.com/symfony/polyfill-php80.git",
  617. "reference": "4407588e0d3f1f52efb65fbe92babe41f37fe50c"
  618. },
  619. "dist": {
  620. "type": "zip",
  621. "url": "https://api.github.com/repos/symfony/polyfill-php80/zipball/4407588e0d3f1f52efb65fbe92babe41f37fe50c",
  622. "reference": "4407588e0d3f1f52efb65fbe92babe41f37fe50c",
  623. "shasum": ""
  624. },
  625. "require": {
  626. "php": ">=7.1"
  627. },
  628. "type": "library",
  629. "extra": {
  630. "branch-alias": {
  631. "dev-main": "1.23-dev"
  632. },
  633. "thanks": {
  634. "name": "symfony/polyfill",
  635. "url": "https://github.com/symfony/polyfill"
  636. }
  637. },
  638. "autoload": {
  639. "files": [
  640. "bootstrap.php"
  641. ],
  642. "psr-4": {
  643. "Symfony\\Polyfill\\Php80\\": ""
  644. },
  645. "classmap": [
  646. "Resources/stubs"
  647. ]
  648. },
  649. "notification-url": "https://packagist.org/downloads/",
  650. "license": [
  651. "MIT"
  652. ],
  653. "authors": [
  654. {
  655. "name": "Ion Bazan",
  656. "email": "ion.bazan@gmail.com"
  657. },
  658. {
  659. "name": "Nicolas Grekas",
  660. "email": "p@tchwork.com"
  661. },
  662. {
  663. "name": "Symfony Community",
  664. "homepage": "https://symfony.com/contributors"
  665. }
  666. ],
  667. "description": "Symfony polyfill backporting some PHP 8.0+ features to lower PHP versions",
  668. "homepage": "https://symfony.com",
  669. "keywords": [
  670. "compatibility",
  671. "polyfill",
  672. "portable",
  673. "shim"
  674. ],
  675. "time": "2022-03-04T08:16:47+00:00"
  676. },
  677. {
  678. "name": "symfony/var-dumper",
  679. "version": "v4.4.39",
  680. "source": {
  681. "type": "git",
  682. "url": "https://github.com/symfony/var-dumper.git",
  683. "reference": "35237c5e5dcb6593a46a860ba5b29c1d4683d80e"
  684. },
  685. "dist": {
  686. "type": "zip",
  687. "url": "https://api.github.com/repos/symfony/var-dumper/zipball/35237c5e5dcb6593a46a860ba5b29c1d4683d80e",
  688. "reference": "35237c5e5dcb6593a46a860ba5b29c1d4683d80e",
  689. "shasum": ""
  690. },
  691. "require": {
  692. "php": ">=7.1.3",
  693. "symfony/polyfill-mbstring": "~1.0",
  694. "symfony/polyfill-php72": "~1.5",
  695. "symfony/polyfill-php80": "^1.16"
  696. },
  697. "conflict": {
  698. "phpunit/phpunit": "<4.8.35|<5.4.3,>=5.0",
  699. "symfony/console": "<3.4"
  700. },
  701. "require-dev": {
  702. "ext-iconv": "*",
  703. "symfony/console": "^3.4|^4.0|^5.0",
  704. "symfony/process": "^4.4|^5.0",
  705. "twig/twig": "^1.43|^2.13|^3.0.4"
  706. },
  707. "suggest": {
  708. "ext-iconv": "To convert non-UTF-8 strings to UTF-8 (or symfony/polyfill-iconv in case ext-iconv cannot be used).",
  709. "ext-intl": "To show region name in time zone dump",
  710. "symfony/console": "To use the ServerDumpCommand and/or the bin/var-dump-server script"
  711. },
  712. "bin": [
  713. "Resources/bin/var-dump-server"
  714. ],
  715. "type": "library",
  716. "autoload": {
  717. "files": [
  718. "Resources/functions/dump.php"
  719. ],
  720. "psr-4": {
  721. "Symfony\\Component\\VarDumper\\": ""
  722. },
  723. "exclude-from-classmap": [
  724. "/Tests/"
  725. ]
  726. },
  727. "notification-url": "https://packagist.org/downloads/",
  728. "license": [
  729. "MIT"
  730. ],
  731. "authors": [
  732. {
  733. "name": "Nicolas Grekas",
  734. "email": "p@tchwork.com"
  735. },
  736. {
  737. "name": "Symfony Community",
  738. "homepage": "https://symfony.com/contributors"
  739. }
  740. ],
  741. "description": "Provides mechanisms for walking through any arbitrary PHP variable",
  742. "homepage": "https://symfony.com",
  743. "keywords": [
  744. "debug",
  745. "dump"
  746. ],
  747. "time": "2022-02-25T10:38:15+00:00"
  748. },
  749. {
  750. "name": "topthink/think-trace",
  751. "version": "v1.4",
  752. "source": {
  753. "type": "git",
  754. "url": "https://github.com/top-think/think-trace.git",
  755. "reference": "9a9fa8f767b6c66c5a133ad21ca1bc96ad329444"
  756. },
  757. "dist": {
  758. "type": "zip",
  759. "url": "https://api.github.com/repos/top-think/think-trace/zipball/9a9fa8f767b6c66c5a133ad21ca1bc96ad329444",
  760. "reference": "9a9fa8f767b6c66c5a133ad21ca1bc96ad329444",
  761. "shasum": ""
  762. },
  763. "require": {
  764. "php": ">=7.1.0",
  765. "topthink/framework": "^6.0.0"
  766. },
  767. "type": "library",
  768. "extra": {
  769. "think": {
  770. "services": [
  771. "think\\trace\\Service"
  772. ],
  773. "config": {
  774. "trace": "src/config.php"
  775. }
  776. }
  777. },
  778. "autoload": {
  779. "psr-4": {
  780. "think\\trace\\": "src"
  781. }
  782. },
  783. "notification-url": "https://packagist.org/downloads/",
  784. "license": [
  785. "Apache-2.0"
  786. ],
  787. "authors": [
  788. {
  789. "name": "liu21st",
  790. "email": "liu21st@gmail.com"
  791. }
  792. ],
  793. "description": "thinkphp debug trace",
  794. "time": "2020-06-29T05:27:28+00:00"
  795. }
  796. ],
  797. "aliases": [],
  798. "minimum-stability": "stable",
  799. "stability-flags": [],
  800. "prefer-stable": false,
  801. "prefer-lowest": false,
  802. "platform": {
  803. "php": ">=7.1.0"
  804. },
  805. "platform-dev": []
  806. }