composer.lock 33 KB

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