No Description
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

composer.lock 26KB

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