composer.lock 34 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974
  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": "d8d8d65c6459e310594e308ad5760f16",
  8. "packages": [
  9. {
  10. "name": "league/flysystem",
  11. "version": "1.1.10",
  12. "source": {
  13. "type": "git",
  14. "url": "https://github.com/thephpleague/flysystem.git",
  15. "reference": "3239285c825c152bcc315fe0e87d6b55f5972ed1"
  16. },
  17. "dist": {
  18. "type": "zip",
  19. "url": "https://api.github.com/repos/thephpleague/flysystem/zipball/3239285c825c152bcc315fe0e87d6b55f5972ed1",
  20. "reference": "3239285c825c152bcc315fe0e87d6b55f5972ed1",
  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.10"
  94. },
  95. "funding": [
  96. {
  97. "url": "https://offset.earth/frankdejonge",
  98. "type": "other"
  99. }
  100. ],
  101. "time": "2022-10-04T09:16:37+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.11.0",
  157. "source": {
  158. "type": "git",
  159. "url": "https://github.com/thephpleague/mime-type-detection.git",
  160. "reference": "ff6248ea87a9f116e78edd6002e39e5128a0d4dd"
  161. },
  162. "dist": {
  163. "type": "zip",
  164. "url": "https://api.github.com/repos/thephpleague/mime-type-detection/zipball/ff6248ea87a9f116e78edd6002e39e5128a0d4dd",
  165. "reference": "ff6248ea87a9f116e78edd6002e39e5128a0d4dd",
  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.11.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": "2022-04-17T13:12:02+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.2",
  262. "source": {
  263. "type": "git",
  264. "url": "https://github.com/php-fig/container.git",
  265. "reference": "513e0666f7216c7459170d56df27dfcefe1689ea"
  266. },
  267. "dist": {
  268. "type": "zip",
  269. "url": "https://api.github.com/repos/php-fig/container/zipball/513e0666f7216c7459170d56df27dfcefe1689ea",
  270. "reference": "513e0666f7216c7459170d56df27dfcefe1689ea",
  271. "shasum": ""
  272. },
  273. "require": {
  274. "php": ">=7.4.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.2"
  304. },
  305. "time": "2021-11-05T16:50:12+00:00"
  306. },
  307. {
  308. "name": "psr/http-message",
  309. "version": "1.0.1",
  310. "source": {
  311. "type": "git",
  312. "url": "https://github.com/php-fig/http-message.git",
  313. "reference": "f6561bf28d520154e4b0ec72be95418abe6d9363"
  314. },
  315. "dist": {
  316. "type": "zip",
  317. "url": "https://api.github.com/repos/php-fig/http-message/zipball/f6561bf28d520154e4b0ec72be95418abe6d9363",
  318. "reference": "f6561bf28d520154e4b0ec72be95418abe6d9363",
  319. "shasum": ""
  320. },
  321. "require": {
  322. "php": ">=5.3.0"
  323. },
  324. "type": "library",
  325. "extra": {
  326. "branch-alias": {
  327. "dev-master": "1.0.x-dev"
  328. }
  329. },
  330. "autoload": {
  331. "psr-4": {
  332. "Psr\\Http\\Message\\": "src/"
  333. }
  334. },
  335. "notification-url": "https://packagist.org/downloads/",
  336. "license": [
  337. "MIT"
  338. ],
  339. "authors": [
  340. {
  341. "name": "PHP-FIG",
  342. "homepage": "http://www.php-fig.org/"
  343. }
  344. ],
  345. "description": "Common interface for HTTP messages",
  346. "homepage": "https://github.com/php-fig/http-message",
  347. "keywords": [
  348. "http",
  349. "http-message",
  350. "psr",
  351. "psr-7",
  352. "request",
  353. "response"
  354. ],
  355. "support": {
  356. "source": "https://github.com/php-fig/http-message/tree/master"
  357. },
  358. "time": "2016-08-06T14:39:51+00:00"
  359. },
  360. {
  361. "name": "psr/log",
  362. "version": "1.1.4",
  363. "source": {
  364. "type": "git",
  365. "url": "https://github.com/php-fig/log.git",
  366. "reference": "d49695b909c3b7628b6289db5479a1c204601f11"
  367. },
  368. "dist": {
  369. "type": "zip",
  370. "url": "https://api.github.com/repos/php-fig/log/zipball/d49695b909c3b7628b6289db5479a1c204601f11",
  371. "reference": "d49695b909c3b7628b6289db5479a1c204601f11",
  372. "shasum": ""
  373. },
  374. "require": {
  375. "php": ">=5.3.0"
  376. },
  377. "type": "library",
  378. "extra": {
  379. "branch-alias": {
  380. "dev-master": "1.1.x-dev"
  381. }
  382. },
  383. "autoload": {
  384. "psr-4": {
  385. "Psr\\Log\\": "Psr/Log/"
  386. }
  387. },
  388. "notification-url": "https://packagist.org/downloads/",
  389. "license": [
  390. "MIT"
  391. ],
  392. "authors": [
  393. {
  394. "name": "PHP-FIG",
  395. "homepage": "https://www.php-fig.org/"
  396. }
  397. ],
  398. "description": "Common interface for logging libraries",
  399. "homepage": "https://github.com/php-fig/log",
  400. "keywords": [
  401. "log",
  402. "psr",
  403. "psr-3"
  404. ],
  405. "support": {
  406. "source": "https://github.com/php-fig/log/tree/1.1.4"
  407. },
  408. "time": "2021-05-03T11:20:27+00:00"
  409. },
  410. {
  411. "name": "psr/simple-cache",
  412. "version": "1.0.1",
  413. "source": {
  414. "type": "git",
  415. "url": "https://github.com/php-fig/simple-cache.git",
  416. "reference": "408d5eafb83c57f6365a3ca330ff23aa4a5fa39b"
  417. },
  418. "dist": {
  419. "type": "zip",
  420. "url": "https://api.github.com/repos/php-fig/simple-cache/zipball/408d5eafb83c57f6365a3ca330ff23aa4a5fa39b",
  421. "reference": "408d5eafb83c57f6365a3ca330ff23aa4a5fa39b",
  422. "shasum": ""
  423. },
  424. "require": {
  425. "php": ">=5.3.0"
  426. },
  427. "type": "library",
  428. "extra": {
  429. "branch-alias": {
  430. "dev-master": "1.0.x-dev"
  431. }
  432. },
  433. "autoload": {
  434. "psr-4": {
  435. "Psr\\SimpleCache\\": "src/"
  436. }
  437. },
  438. "notification-url": "https://packagist.org/downloads/",
  439. "license": [
  440. "MIT"
  441. ],
  442. "authors": [
  443. {
  444. "name": "PHP-FIG",
  445. "homepage": "http://www.php-fig.org/"
  446. }
  447. ],
  448. "description": "Common interfaces for simple caching",
  449. "keywords": [
  450. "cache",
  451. "caching",
  452. "psr",
  453. "psr-16",
  454. "simple-cache"
  455. ],
  456. "support": {
  457. "source": "https://github.com/php-fig/simple-cache/tree/master"
  458. },
  459. "time": "2017-10-23T01:57:42+00:00"
  460. },
  461. {
  462. "name": "topthink/framework",
  463. "version": "v6.0.13",
  464. "source": {
  465. "type": "git",
  466. "url": "https://github.com/top-think/framework.git",
  467. "reference": "126d5b2cbacb73d6e2a85cbc7a2c6ee59d0b3fa6"
  468. },
  469. "dist": {
  470. "type": "zip",
  471. "url": "https://api.github.com/repos/top-think/framework/zipball/126d5b2cbacb73d6e2a85cbc7a2c6ee59d0b3fa6",
  472. "reference": "126d5b2cbacb73d6e2a85cbc7a2c6ee59d0b3fa6",
  473. "shasum": ""
  474. },
  475. "require": {
  476. "ext-json": "*",
  477. "ext-mbstring": "*",
  478. "league/flysystem": "^1.1.4",
  479. "league/flysystem-cached-adapter": "^1.0",
  480. "php": ">=7.2.5",
  481. "psr/container": "~1.0",
  482. "psr/http-message": "^1.0",
  483. "psr/log": "~1.0",
  484. "psr/simple-cache": "^1.0",
  485. "topthink/think-helper": "^3.1.1",
  486. "topthink/think-orm": "^2.0"
  487. },
  488. "require-dev": {
  489. "guzzlehttp/psr7": "^2.1.0",
  490. "mikey179/vfsstream": "^1.6",
  491. "mockery/mockery": "^1.2",
  492. "phpunit/phpunit": "^7.0"
  493. },
  494. "type": "library",
  495. "autoload": {
  496. "files": [],
  497. "psr-4": {
  498. "think\\": "src/think/"
  499. }
  500. },
  501. "notification-url": "https://packagist.org/downloads/",
  502. "license": [
  503. "Apache-2.0"
  504. ],
  505. "authors": [
  506. {
  507. "name": "liu21st",
  508. "email": "liu21st@gmail.com"
  509. },
  510. {
  511. "name": "yunwuxin",
  512. "email": "448901948@qq.com"
  513. }
  514. ],
  515. "description": "The ThinkPHP Framework.",
  516. "homepage": "http://thinkphp.cn/",
  517. "keywords": [
  518. "framework",
  519. "orm",
  520. "thinkphp"
  521. ],
  522. "support": {
  523. "issues": "https://github.com/top-think/framework/issues",
  524. "source": "https://github.com/top-think/framework/tree/v6.0.13"
  525. },
  526. "time": "2022-07-15T02:52:08+00:00"
  527. },
  528. {
  529. "name": "topthink/think-helper",
  530. "version": "v3.1.6",
  531. "source": {
  532. "type": "git",
  533. "url": "https://github.com/top-think/think-helper.git",
  534. "reference": "769acbe50a4274327162f9c68ec2e89a38eb2aff"
  535. },
  536. "dist": {
  537. "type": "zip",
  538. "url": "https://api.github.com/repos/top-think/think-helper/zipball/769acbe50a4274327162f9c68ec2e89a38eb2aff",
  539. "reference": "769acbe50a4274327162f9c68ec2e89a38eb2aff",
  540. "shasum": ""
  541. },
  542. "require": {
  543. "php": ">=7.1.0"
  544. },
  545. "require-dev": {
  546. "phpunit/phpunit": "^9.5"
  547. },
  548. "type": "library",
  549. "autoload": {
  550. "files": [
  551. "src/helper.php"
  552. ],
  553. "psr-4": {
  554. "think\\": "src"
  555. }
  556. },
  557. "notification-url": "https://packagist.org/downloads/",
  558. "license": [
  559. "Apache-2.0"
  560. ],
  561. "authors": [
  562. {
  563. "name": "yunwuxin",
  564. "email": "448901948@qq.com"
  565. }
  566. ],
  567. "description": "The ThinkPHP6 Helper Package",
  568. "support": {
  569. "issues": "https://github.com/top-think/think-helper/issues",
  570. "source": "https://github.com/top-think/think-helper/tree/v3.1.6"
  571. },
  572. "time": "2021-12-15T04:27:55+00:00"
  573. },
  574. {
  575. "name": "topthink/think-orm",
  576. "version": "v2.0.54",
  577. "source": {
  578. "type": "git",
  579. "url": "https://github.com/top-think/think-orm.git",
  580. "reference": "97b061b47616301ff29fbd4c35ed9184e1162e4e"
  581. },
  582. "dist": {
  583. "type": "zip",
  584. "url": "https://api.github.com/repos/top-think/think-orm/zipball/97b061b47616301ff29fbd4c35ed9184e1162e4e",
  585. "reference": "97b061b47616301ff29fbd4c35ed9184e1162e4e",
  586. "shasum": ""
  587. },
  588. "require": {
  589. "ext-json": "*",
  590. "ext-pdo": "*",
  591. "php": ">=7.1.0",
  592. "psr/log": "^1.0|^2.0",
  593. "psr/simple-cache": "^1.0|^2.0",
  594. "topthink/think-helper": "^3.1"
  595. },
  596. "require-dev": {
  597. "phpunit/phpunit": "^7|^8|^9.5"
  598. },
  599. "type": "library",
  600. "autoload": {
  601. "files": [
  602. "stubs/load_stubs.php"
  603. ],
  604. "psr-4": {
  605. "think\\": "src"
  606. }
  607. },
  608. "notification-url": "https://packagist.org/downloads/",
  609. "license": [
  610. "Apache-2.0"
  611. ],
  612. "authors": [
  613. {
  614. "name": "liu21st",
  615. "email": "liu21st@gmail.com"
  616. }
  617. ],
  618. "description": "think orm",
  619. "keywords": [
  620. "database",
  621. "orm"
  622. ],
  623. "support": {
  624. "issues": "https://github.com/top-think/think-orm/issues",
  625. "source": "https://github.com/top-think/think-orm/tree/v2.0.54"
  626. },
  627. "time": "2022-07-05T05:25:51+00:00"
  628. }
  629. ],
  630. "packages-dev": [
  631. {
  632. "name": "symfony/polyfill-mbstring",
  633. "version": "v1.26.0",
  634. "source": {
  635. "type": "git",
  636. "url": "https://github.com/symfony/polyfill-mbstring.git",
  637. "reference": "9344f9cb97f3b19424af1a21a3b0e75b0a7d8d7e"
  638. },
  639. "dist": {
  640. "type": "zip",
  641. "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/9344f9cb97f3b19424af1a21a3b0e75b0a7d8d7e",
  642. "reference": "9344f9cb97f3b19424af1a21a3b0e75b0a7d8d7e",
  643. "shasum": ""
  644. },
  645. "require": {
  646. "php": ">=7.1"
  647. },
  648. "provide": {
  649. "ext-mbstring": "*"
  650. },
  651. "suggest": {
  652. "ext-mbstring": "For best performance"
  653. },
  654. "type": "library",
  655. "extra": {
  656. "branch-alias": {
  657. "dev-main": "1.26-dev"
  658. },
  659. "thanks": {
  660. "name": "symfony/polyfill",
  661. "url": "https://github.com/symfony/polyfill"
  662. }
  663. },
  664. "autoload": {
  665. "files": [
  666. "bootstrap.php"
  667. ],
  668. "psr-4": {
  669. "Symfony\\Polyfill\\Mbstring\\": ""
  670. }
  671. },
  672. "notification-url": "https://packagist.org/downloads/",
  673. "license": [
  674. "MIT"
  675. ],
  676. "authors": [
  677. {
  678. "name": "Nicolas Grekas",
  679. "email": "p@tchwork.com"
  680. },
  681. {
  682. "name": "Symfony Community",
  683. "homepage": "https://symfony.com/contributors"
  684. }
  685. ],
  686. "description": "Symfony polyfill for the Mbstring extension",
  687. "homepage": "https://symfony.com",
  688. "keywords": [
  689. "compatibility",
  690. "mbstring",
  691. "polyfill",
  692. "portable",
  693. "shim"
  694. ],
  695. "support": {
  696. "source": "https://github.com/symfony/polyfill-mbstring/tree/v1.26.0"
  697. },
  698. "funding": [
  699. {
  700. "url": "https://symfony.com/sponsor",
  701. "type": "custom"
  702. },
  703. {
  704. "url": "https://github.com/fabpot",
  705. "type": "github"
  706. },
  707. {
  708. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  709. "type": "tidelift"
  710. }
  711. ],
  712. "time": "2022-05-24T11:49:31+00:00"
  713. },
  714. {
  715. "name": "symfony/polyfill-php72",
  716. "version": "v1.26.0",
  717. "source": {
  718. "type": "git",
  719. "url": "https://github.com/symfony/polyfill-php72.git",
  720. "reference": "bf44a9fd41feaac72b074de600314a93e2ae78e2"
  721. },
  722. "dist": {
  723. "type": "zip",
  724. "url": "https://api.github.com/repos/symfony/polyfill-php72/zipball/bf44a9fd41feaac72b074de600314a93e2ae78e2",
  725. "reference": "bf44a9fd41feaac72b074de600314a93e2ae78e2",
  726. "shasum": ""
  727. },
  728. "require": {
  729. "php": ">=7.1"
  730. },
  731. "type": "library",
  732. "extra": {
  733. "branch-alias": {
  734. "dev-main": "1.26-dev"
  735. },
  736. "thanks": {
  737. "name": "symfony/polyfill",
  738. "url": "https://github.com/symfony/polyfill"
  739. }
  740. },
  741. "autoload": {
  742. "files": [
  743. "bootstrap.php"
  744. ],
  745. "psr-4": {
  746. "Symfony\\Polyfill\\Php72\\": ""
  747. }
  748. },
  749. "notification-url": "https://packagist.org/downloads/",
  750. "license": [
  751. "MIT"
  752. ],
  753. "authors": [
  754. {
  755. "name": "Nicolas Grekas",
  756. "email": "p@tchwork.com"
  757. },
  758. {
  759. "name": "Symfony Community",
  760. "homepage": "https://symfony.com/contributors"
  761. }
  762. ],
  763. "description": "Symfony polyfill backporting some PHP 7.2+ features to lower PHP versions",
  764. "homepage": "https://symfony.com",
  765. "keywords": [
  766. "compatibility",
  767. "polyfill",
  768. "portable",
  769. "shim"
  770. ],
  771. "support": {
  772. "source": "https://github.com/symfony/polyfill-php72/tree/v1.26.0"
  773. },
  774. "funding": [
  775. {
  776. "url": "https://symfony.com/sponsor",
  777. "type": "custom"
  778. },
  779. {
  780. "url": "https://github.com/fabpot",
  781. "type": "github"
  782. },
  783. {
  784. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  785. "type": "tidelift"
  786. }
  787. ],
  788. "time": "2022-05-24T11:49:31+00:00"
  789. },
  790. {
  791. "name": "symfony/polyfill-php80",
  792. "version": "v1.26.0",
  793. "source": {
  794. "type": "git",
  795. "url": "https://github.com/symfony/polyfill-php80.git",
  796. "reference": "cfa0ae98841b9e461207c13ab093d76b0fa7bace"
  797. },
  798. "dist": {
  799. "type": "zip",
  800. "url": "https://api.github.com/repos/symfony/polyfill-php80/zipball/cfa0ae98841b9e461207c13ab093d76b0fa7bace",
  801. "reference": "cfa0ae98841b9e461207c13ab093d76b0fa7bace",
  802. "shasum": ""
  803. },
  804. "require": {
  805. "php": ">=7.1"
  806. },
  807. "type": "library",
  808. "extra": {
  809. "branch-alias": {
  810. "dev-main": "1.26-dev"
  811. },
  812. "thanks": {
  813. "name": "symfony/polyfill",
  814. "url": "https://github.com/symfony/polyfill"
  815. }
  816. },
  817. "autoload": {
  818. "files": [
  819. "bootstrap.php"
  820. ],
  821. "psr-4": {
  822. "Symfony\\Polyfill\\Php80\\": ""
  823. },
  824. "classmap": [
  825. "Resources/stubs"
  826. ]
  827. },
  828. "notification-url": "https://packagist.org/downloads/",
  829. "license": [
  830. "MIT"
  831. ],
  832. "authors": [
  833. {
  834. "name": "Ion Bazan",
  835. "email": "ion.bazan@gmail.com"
  836. },
  837. {
  838. "name": "Nicolas Grekas",
  839. "email": "p@tchwork.com"
  840. },
  841. {
  842. "name": "Symfony Community",
  843. "homepage": "https://symfony.com/contributors"
  844. }
  845. ],
  846. "description": "Symfony polyfill backporting some PHP 8.0+ features to lower PHP versions",
  847. "homepage": "https://symfony.com",
  848. "keywords": [
  849. "compatibility",
  850. "polyfill",
  851. "portable",
  852. "shim"
  853. ],
  854. "support": {
  855. "source": "https://github.com/symfony/polyfill-php80/tree/v1.26.0"
  856. },
  857. "funding": [
  858. {
  859. "url": "https://symfony.com/sponsor",
  860. "type": "custom"
  861. },
  862. {
  863. "url": "https://github.com/fabpot",
  864. "type": "github"
  865. },
  866. {
  867. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  868. "type": "tidelift"
  869. }
  870. ],
  871. "time": "2022-05-10T07:21:04+00:00"
  872. },
  873. {
  874. "name": "symfony/var-dumper",
  875. "version": "v4.4.47",
  876. "source": {
  877. "type": "git",
  878. "url": "https://github.com/symfony/var-dumper.git",
  879. "reference": "1069c7a3fca74578022fab6f81643248d02f8e63"
  880. },
  881. "dist": {
  882. "type": "zip",
  883. "url": "https://api.github.com/repos/symfony/var-dumper/zipball/1069c7a3fca74578022fab6f81643248d02f8e63",
  884. "reference": "1069c7a3fca74578022fab6f81643248d02f8e63",
  885. "shasum": ""
  886. },
  887. "require": {
  888. "php": ">=7.1.3",
  889. "symfony/polyfill-mbstring": "~1.0",
  890. "symfony/polyfill-php72": "~1.5",
  891. "symfony/polyfill-php80": "^1.16"
  892. },
  893. "conflict": {
  894. "phpunit/phpunit": "<4.8.35|<5.4.3,>=5.0",
  895. "symfony/console": "<3.4"
  896. },
  897. "require-dev": {
  898. "ext-iconv": "*",
  899. "symfony/console": "^3.4|^4.0|^5.0",
  900. "symfony/process": "^4.4|^5.0",
  901. "twig/twig": "^1.43|^2.13|^3.0.4"
  902. },
  903. "suggest": {
  904. "ext-iconv": "To convert non-UTF-8 strings to UTF-8 (or symfony/polyfill-iconv in case ext-iconv cannot be used).",
  905. "ext-intl": "To show region name in time zone dump",
  906. "symfony/console": "To use the ServerDumpCommand and/or the bin/var-dump-server script"
  907. },
  908. "bin": [
  909. "Resources/bin/var-dump-server"
  910. ],
  911. "type": "library",
  912. "autoload": {
  913. "files": [
  914. "Resources/functions/dump.php"
  915. ],
  916. "psr-4": {
  917. "Symfony\\Component\\VarDumper\\": ""
  918. },
  919. "exclude-from-classmap": [
  920. "/Tests/"
  921. ]
  922. },
  923. "notification-url": "https://packagist.org/downloads/",
  924. "license": [
  925. "MIT"
  926. ],
  927. "authors": [
  928. {
  929. "name": "Nicolas Grekas",
  930. "email": "p@tchwork.com"
  931. },
  932. {
  933. "name": "Symfony Community",
  934. "homepage": "https://symfony.com/contributors"
  935. }
  936. ],
  937. "description": "Provides mechanisms for walking through any arbitrary PHP variable",
  938. "homepage": "https://symfony.com",
  939. "keywords": [
  940. "debug",
  941. "dump"
  942. ],
  943. "support": {
  944. "source": "https://github.com/symfony/var-dumper/tree/v4.4.47"
  945. },
  946. "funding": [
  947. {
  948. "url": "https://symfony.com/sponsor",
  949. "type": "custom"
  950. },
  951. {
  952. "url": "https://github.com/fabpot",
  953. "type": "github"
  954. },
  955. {
  956. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  957. "type": "tidelift"
  958. }
  959. ],
  960. "time": "2022-10-03T15:15:11+00:00"
  961. }
  962. ],
  963. "aliases": [],
  964. "minimum-stability": "stable",
  965. "stability-flags": [],
  966. "prefer-stable": false,
  967. "prefer-lowest": false,
  968. "platform": {
  969. "php": ">=7.2.5"
  970. },
  971. "platform-dev": [],
  972. "plugin-api-version": "2.3.0"
  973. }