composer.lock 32 KB

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