composer.lock 35 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011
  1. {
  2. "_readme": [
  3. "This file locks the dependencies of your project to a known state",
  4. "Read more about it at https://getcomposer.org/doc/01-basic-usage.md#installing-dependencies",
  5. "This file is @generated automatically"
  6. ],
  7. "content-hash": "9ef3f6f1993fcd90da3b2fda07e08183",
  8. "packages": [
  9. {
  10. "name": "league/flysystem",
  11. "version": "1.1.8",
  12. "source": {
  13. "type": "git",
  14. "url": "https://github.com/thephpleague/flysystem.git",
  15. "reference": "c995bb0c23c58c9813d081f9523c9b7bb496698e"
  16. },
  17. "dist": {
  18. "type": "zip",
  19. "url": "https://api.github.com/repos/thephpleague/flysystem/zipball/c995bb0c23c58c9813d081f9523c9b7bb496698e",
  20. "reference": "c995bb0c23c58c9813d081f9523c9b7bb496698e",
  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.8"
  94. },
  95. "funding": [
  96. {
  97. "url": "https://offset.earth/frankdejonge",
  98. "type": "other"
  99. }
  100. ],
  101. "time": "2021-11-28T21:50:23+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.9.0",
  157. "source": {
  158. "type": "git",
  159. "url": "https://github.com/thephpleague/mime-type-detection.git",
  160. "reference": "aa70e813a6ad3d1558fc927863d47309b4c23e69"
  161. },
  162. "dist": {
  163. "type": "zip",
  164. "url": "https://api.github.com/repos/thephpleague/mime-type-detection/zipball/aa70e813a6ad3d1558fc927863d47309b4c23e69",
  165. "reference": "aa70e813a6ad3d1558fc927863d47309b4c23e69",
  166. "shasum": ""
  167. },
  168. "require": {
  169. "ext-fileinfo": "*",
  170. "php": "^7.2 || ^8.0"
  171. },
  172. "require-dev": {
  173. "friendsofphp/php-cs-fixer": "^3.2",
  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.9.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-11-21T11:48:40+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-multi-app",
  518. "version": "v1.0.14",
  519. "source": {
  520. "type": "git",
  521. "url": "https://github.com/top-think/think-multi-app.git",
  522. "reference": "ccaad7c2d33f42cb1cc2a78d6610aaec02cea4c3"
  523. },
  524. "dist": {
  525. "type": "zip",
  526. "url": "https://api.github.com/repos/top-think/think-multi-app/zipball/ccaad7c2d33f42cb1cc2a78d6610aaec02cea4c3",
  527. "reference": "ccaad7c2d33f42cb1cc2a78d6610aaec02cea4c3",
  528. "shasum": ""
  529. },
  530. "require": {
  531. "php": ">=7.1.0",
  532. "topthink/framework": "^6.0.0"
  533. },
  534. "type": "library",
  535. "extra": {
  536. "think": {
  537. "services": [
  538. "think\\app\\Service"
  539. ]
  540. }
  541. },
  542. "autoload": {
  543. "psr-4": {
  544. "think\\app\\": "src"
  545. }
  546. },
  547. "notification-url": "https://packagist.org/downloads/",
  548. "license": [
  549. "Apache-2.0"
  550. ],
  551. "authors": [
  552. {
  553. "name": "liu21st",
  554. "email": "liu21st@gmail.com"
  555. }
  556. ],
  557. "description": "thinkphp6 multi app support",
  558. "support": {
  559. "issues": "https://github.com/top-think/think-multi-app/issues",
  560. "source": "https://github.com/top-think/think-multi-app/tree/master"
  561. },
  562. "time": "2020-07-12T13:50:37+00:00"
  563. },
  564. {
  565. "name": "topthink/think-orm",
  566. "version": "v2.0.45",
  567. "source": {
  568. "type": "git",
  569. "url": "https://github.com/top-think/think-orm.git",
  570. "reference": "3dcf9af447b048103093840833e8c74ab849152f"
  571. },
  572. "dist": {
  573. "type": "zip",
  574. "url": "https://api.github.com/repos/top-think/think-orm/zipball/3dcf9af447b048103093840833e8c74ab849152f",
  575. "reference": "3dcf9af447b048103093840833e8c74ab849152f",
  576. "shasum": ""
  577. },
  578. "require": {
  579. "ext-json": "*",
  580. "ext-pdo": "*",
  581. "php": ">=7.1.0",
  582. "psr/log": "~1.0",
  583. "psr/simple-cache": "^1.0",
  584. "topthink/think-helper": "^3.1"
  585. },
  586. "require-dev": {
  587. "phpunit/phpunit": "^7|^8|^9.5"
  588. },
  589. "type": "library",
  590. "autoload": {
  591. "psr-4": {
  592. "think\\": "src"
  593. },
  594. "files": [
  595. "stubs/load_stubs.php"
  596. ]
  597. },
  598. "notification-url": "https://packagist.org/downloads/",
  599. "license": [
  600. "Apache-2.0"
  601. ],
  602. "authors": [
  603. {
  604. "name": "liu21st",
  605. "email": "liu21st@gmail.com"
  606. }
  607. ],
  608. "description": "think orm",
  609. "keywords": [
  610. "database",
  611. "orm"
  612. ],
  613. "support": {
  614. "issues": "https://github.com/top-think/think-orm/issues",
  615. "source": "https://github.com/top-think/think-orm/tree/v2.0.45"
  616. },
  617. "time": "2021-11-30T14:31:05+00:00"
  618. }
  619. ],
  620. "packages-dev": [
  621. {
  622. "name": "symfony/polyfill-mbstring",
  623. "version": "v1.23.1",
  624. "source": {
  625. "type": "git",
  626. "url": "https://github.com/symfony/polyfill-mbstring.git",
  627. "reference": "9174a3d80210dca8daa7f31fec659150bbeabfc6"
  628. },
  629. "dist": {
  630. "type": "zip",
  631. "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/9174a3d80210dca8daa7f31fec659150bbeabfc6",
  632. "reference": "9174a3d80210dca8daa7f31fec659150bbeabfc6",
  633. "shasum": ""
  634. },
  635. "require": {
  636. "php": ">=7.1"
  637. },
  638. "suggest": {
  639. "ext-mbstring": "For best performance"
  640. },
  641. "type": "library",
  642. "extra": {
  643. "branch-alias": {
  644. "dev-main": "1.23-dev"
  645. },
  646. "thanks": {
  647. "name": "symfony/polyfill",
  648. "url": "https://github.com/symfony/polyfill"
  649. }
  650. },
  651. "autoload": {
  652. "psr-4": {
  653. "Symfony\\Polyfill\\Mbstring\\": ""
  654. },
  655. "files": [
  656. "bootstrap.php"
  657. ]
  658. },
  659. "notification-url": "https://packagist.org/downloads/",
  660. "license": [
  661. "MIT"
  662. ],
  663. "authors": [
  664. {
  665. "name": "Nicolas Grekas",
  666. "email": "p@tchwork.com"
  667. },
  668. {
  669. "name": "Symfony Community",
  670. "homepage": "https://symfony.com/contributors"
  671. }
  672. ],
  673. "description": "Symfony polyfill for the Mbstring extension",
  674. "homepage": "https://symfony.com",
  675. "keywords": [
  676. "compatibility",
  677. "mbstring",
  678. "polyfill",
  679. "portable",
  680. "shim"
  681. ],
  682. "support": {
  683. "source": "https://github.com/symfony/polyfill-mbstring/tree/v1.23.1"
  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": "2021-05-27T12:26:48+00:00"
  700. },
  701. {
  702. "name": "symfony/polyfill-php72",
  703. "version": "v1.23.0",
  704. "source": {
  705. "type": "git",
  706. "url": "https://github.com/symfony/polyfill-php72.git",
  707. "reference": "9a142215a36a3888e30d0a9eeea9766764e96976"
  708. },
  709. "dist": {
  710. "type": "zip",
  711. "url": "https://api.github.com/repos/symfony/polyfill-php72/zipball/9a142215a36a3888e30d0a9eeea9766764e96976",
  712. "reference": "9a142215a36a3888e30d0a9eeea9766764e96976",
  713. "shasum": ""
  714. },
  715. "require": {
  716. "php": ">=7.1"
  717. },
  718. "type": "library",
  719. "extra": {
  720. "branch-alias": {
  721. "dev-main": "1.23-dev"
  722. },
  723. "thanks": {
  724. "name": "symfony/polyfill",
  725. "url": "https://github.com/symfony/polyfill"
  726. }
  727. },
  728. "autoload": {
  729. "psr-4": {
  730. "Symfony\\Polyfill\\Php72\\": ""
  731. },
  732. "files": [
  733. "bootstrap.php"
  734. ]
  735. },
  736. "notification-url": "https://packagist.org/downloads/",
  737. "license": [
  738. "MIT"
  739. ],
  740. "authors": [
  741. {
  742. "name": "Nicolas Grekas",
  743. "email": "p@tchwork.com"
  744. },
  745. {
  746. "name": "Symfony Community",
  747. "homepage": "https://symfony.com/contributors"
  748. }
  749. ],
  750. "description": "Symfony polyfill backporting some PHP 7.2+ features to lower PHP versions",
  751. "homepage": "https://symfony.com",
  752. "keywords": [
  753. "compatibility",
  754. "polyfill",
  755. "portable",
  756. "shim"
  757. ],
  758. "support": {
  759. "source": "https://github.com/symfony/polyfill-php72/tree/v1.23.0"
  760. },
  761. "funding": [
  762. {
  763. "url": "https://symfony.com/sponsor",
  764. "type": "custom"
  765. },
  766. {
  767. "url": "https://github.com/fabpot",
  768. "type": "github"
  769. },
  770. {
  771. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  772. "type": "tidelift"
  773. }
  774. ],
  775. "time": "2021-05-27T09:17:38+00:00"
  776. },
  777. {
  778. "name": "symfony/polyfill-php80",
  779. "version": "v1.23.1",
  780. "source": {
  781. "type": "git",
  782. "url": "https://github.com/symfony/polyfill-php80.git",
  783. "reference": "1100343ed1a92e3a38f9ae122fc0eb21602547be"
  784. },
  785. "dist": {
  786. "type": "zip",
  787. "url": "https://api.github.com/repos/symfony/polyfill-php80/zipball/1100343ed1a92e3a38f9ae122fc0eb21602547be",
  788. "reference": "1100343ed1a92e3a38f9ae122fc0eb21602547be",
  789. "shasum": ""
  790. },
  791. "require": {
  792. "php": ">=7.1"
  793. },
  794. "type": "library",
  795. "extra": {
  796. "branch-alias": {
  797. "dev-main": "1.23-dev"
  798. },
  799. "thanks": {
  800. "name": "symfony/polyfill",
  801. "url": "https://github.com/symfony/polyfill"
  802. }
  803. },
  804. "autoload": {
  805. "psr-4": {
  806. "Symfony\\Polyfill\\Php80\\": ""
  807. },
  808. "files": [
  809. "bootstrap.php"
  810. ],
  811. "classmap": [
  812. "Resources/stubs"
  813. ]
  814. },
  815. "notification-url": "https://packagist.org/downloads/",
  816. "license": [
  817. "MIT"
  818. ],
  819. "authors": [
  820. {
  821. "name": "Ion Bazan",
  822. "email": "ion.bazan@gmail.com"
  823. },
  824. {
  825. "name": "Nicolas Grekas",
  826. "email": "p@tchwork.com"
  827. },
  828. {
  829. "name": "Symfony Community",
  830. "homepage": "https://symfony.com/contributors"
  831. }
  832. ],
  833. "description": "Symfony polyfill backporting some PHP 8.0+ features to lower PHP versions",
  834. "homepage": "https://symfony.com",
  835. "keywords": [
  836. "compatibility",
  837. "polyfill",
  838. "portable",
  839. "shim"
  840. ],
  841. "support": {
  842. "source": "https://github.com/symfony/polyfill-php80/tree/v1.23.1"
  843. },
  844. "funding": [
  845. {
  846. "url": "https://symfony.com/sponsor",
  847. "type": "custom"
  848. },
  849. {
  850. "url": "https://github.com/fabpot",
  851. "type": "github"
  852. },
  853. {
  854. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  855. "type": "tidelift"
  856. }
  857. ],
  858. "time": "2021-07-28T13:41:28+00:00"
  859. },
  860. {
  861. "name": "symfony/var-dumper",
  862. "version": "v4.4.34",
  863. "source": {
  864. "type": "git",
  865. "url": "https://github.com/symfony/var-dumper.git",
  866. "reference": "2d0c056b2faaa3d785bdbd5adecc593a5be9c16e"
  867. },
  868. "dist": {
  869. "type": "zip",
  870. "url": "https://api.github.com/repos/symfony/var-dumper/zipball/2d0c056b2faaa3d785bdbd5adecc593a5be9c16e",
  871. "reference": "2d0c056b2faaa3d785bdbd5adecc593a5be9c16e",
  872. "shasum": ""
  873. },
  874. "require": {
  875. "php": ">=7.1.3",
  876. "symfony/polyfill-mbstring": "~1.0",
  877. "symfony/polyfill-php72": "~1.5",
  878. "symfony/polyfill-php80": "^1.16"
  879. },
  880. "conflict": {
  881. "phpunit/phpunit": "<4.8.35|<5.4.3,>=5.0",
  882. "symfony/console": "<3.4"
  883. },
  884. "require-dev": {
  885. "ext-iconv": "*",
  886. "symfony/console": "^3.4|^4.0|^5.0",
  887. "symfony/process": "^4.4|^5.0",
  888. "twig/twig": "^1.43|^2.13|^3.0.4"
  889. },
  890. "suggest": {
  891. "ext-iconv": "To convert non-UTF-8 strings to UTF-8 (or symfony/polyfill-iconv in case ext-iconv cannot be used).",
  892. "ext-intl": "To show region name in time zone dump",
  893. "symfony/console": "To use the ServerDumpCommand and/or the bin/var-dump-server script"
  894. },
  895. "bin": [
  896. "Resources/bin/var-dump-server"
  897. ],
  898. "type": "library",
  899. "autoload": {
  900. "files": [
  901. "Resources/functions/dump.php"
  902. ],
  903. "psr-4": {
  904. "Symfony\\Component\\VarDumper\\": ""
  905. },
  906. "exclude-from-classmap": [
  907. "/Tests/"
  908. ]
  909. },
  910. "notification-url": "https://packagist.org/downloads/",
  911. "license": [
  912. "MIT"
  913. ],
  914. "authors": [
  915. {
  916. "name": "Nicolas Grekas",
  917. "email": "p@tchwork.com"
  918. },
  919. {
  920. "name": "Symfony Community",
  921. "homepage": "https://symfony.com/contributors"
  922. }
  923. ],
  924. "description": "Provides mechanisms for walking through any arbitrary PHP variable",
  925. "homepage": "https://symfony.com",
  926. "keywords": [
  927. "debug",
  928. "dump"
  929. ],
  930. "support": {
  931. "source": "https://github.com/symfony/var-dumper/tree/v4.4.34"
  932. },
  933. "funding": [
  934. {
  935. "url": "https://symfony.com/sponsor",
  936. "type": "custom"
  937. },
  938. {
  939. "url": "https://github.com/fabpot",
  940. "type": "github"
  941. },
  942. {
  943. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  944. "type": "tidelift"
  945. }
  946. ],
  947. "time": "2021-11-12T10:50:54+00:00"
  948. },
  949. {
  950. "name": "topthink/think-trace",
  951. "version": "v1.4",
  952. "source": {
  953. "type": "git",
  954. "url": "https://github.com/top-think/think-trace.git",
  955. "reference": "9a9fa8f767b6c66c5a133ad21ca1bc96ad329444"
  956. },
  957. "dist": {
  958. "type": "zip",
  959. "url": "https://api.github.com/repos/top-think/think-trace/zipball/9a9fa8f767b6c66c5a133ad21ca1bc96ad329444",
  960. "reference": "9a9fa8f767b6c66c5a133ad21ca1bc96ad329444",
  961. "shasum": ""
  962. },
  963. "require": {
  964. "php": ">=7.1.0",
  965. "topthink/framework": "^6.0.0"
  966. },
  967. "type": "library",
  968. "extra": {
  969. "think": {
  970. "services": [
  971. "think\\trace\\Service"
  972. ],
  973. "config": {
  974. "trace": "src/config.php"
  975. }
  976. }
  977. },
  978. "autoload": {
  979. "psr-4": {
  980. "think\\trace\\": "src"
  981. }
  982. },
  983. "notification-url": "https://packagist.org/downloads/",
  984. "license": [
  985. "Apache-2.0"
  986. ],
  987. "authors": [
  988. {
  989. "name": "liu21st",
  990. "email": "liu21st@gmail.com"
  991. }
  992. ],
  993. "description": "thinkphp debug trace",
  994. "support": {
  995. "issues": "https://github.com/top-think/think-trace/issues",
  996. "source": "https://github.com/top-think/think-trace/tree/v1.4"
  997. },
  998. "time": "2020-06-29T05:27:28+00:00"
  999. }
  1000. ],
  1001. "aliases": [],
  1002. "minimum-stability": "stable",
  1003. "stability-flags": [],
  1004. "prefer-stable": false,
  1005. "prefer-lowest": false,
  1006. "platform": {
  1007. "php": ">=7.1.0"
  1008. },
  1009. "platform-dev": [],
  1010. "plugin-api-version": "2.1.0"
  1011. }