composer.lock 45 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305
  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": "bd9adf001985b31c91e1f340b6b0fa64",
  8. "packages": [
  9. {
  10. "name": "erusev/parsedown",
  11. "version": "1.7.4",
  12. "source": {
  13. "type": "git",
  14. "url": "https://github.com/erusev/parsedown.git",
  15. "reference": "cb17b6477dfff935958ba01325f2e8a2bfa6dab3"
  16. },
  17. "dist": {
  18. "type": "zip",
  19. "url": "https://api.github.com/repos/erusev/parsedown/zipball/cb17b6477dfff935958ba01325f2e8a2bfa6dab3",
  20. "reference": "cb17b6477dfff935958ba01325f2e8a2bfa6dab3",
  21. "shasum": ""
  22. },
  23. "require": {
  24. "ext-mbstring": "*",
  25. "php": ">=5.3.0"
  26. },
  27. "require-dev": {
  28. "phpunit/phpunit": "^4.8.35"
  29. },
  30. "type": "library",
  31. "autoload": {
  32. "psr-0": {
  33. "Parsedown": ""
  34. }
  35. },
  36. "notification-url": "https://packagist.org/downloads/",
  37. "license": [
  38. "MIT"
  39. ],
  40. "authors": [
  41. {
  42. "name": "Emanuil Rusev",
  43. "email": "hello@erusev.com",
  44. "homepage": "http://erusev.com"
  45. }
  46. ],
  47. "description": "Parser for Markdown.",
  48. "homepage": "http://parsedown.org",
  49. "keywords": [
  50. "markdown",
  51. "parser"
  52. ],
  53. "support": {
  54. "issues": "https://github.com/erusev/parsedown/issues",
  55. "source": "https://github.com/erusev/parsedown/tree/1.7.x"
  56. },
  57. "time": "2019-12-30T22:54:17+00:00"
  58. },
  59. {
  60. "name": "league/flysystem",
  61. "version": "1.1.9",
  62. "source": {
  63. "type": "git",
  64. "url": "https://github.com/thephpleague/flysystem.git",
  65. "reference": "094defdb4a7001845300334e7c1ee2335925ef99"
  66. },
  67. "dist": {
  68. "type": "zip",
  69. "url": "https://api.github.com/repos/thephpleague/flysystem/zipball/094defdb4a7001845300334e7c1ee2335925ef99",
  70. "reference": "094defdb4a7001845300334e7c1ee2335925ef99",
  71. "shasum": ""
  72. },
  73. "require": {
  74. "ext-fileinfo": "*",
  75. "league/mime-type-detection": "^1.3",
  76. "php": "^7.2.5 || ^8.0"
  77. },
  78. "conflict": {
  79. "league/flysystem-sftp": "<1.0.6"
  80. },
  81. "require-dev": {
  82. "phpspec/prophecy": "^1.11.1",
  83. "phpunit/phpunit": "^8.5.8"
  84. },
  85. "suggest": {
  86. "ext-ftp": "Allows you to use FTP server storage",
  87. "ext-openssl": "Allows you to use FTPS server storage",
  88. "league/flysystem-aws-s3-v2": "Allows you to use S3 storage with AWS SDK v2",
  89. "league/flysystem-aws-s3-v3": "Allows you to use S3 storage with AWS SDK v3",
  90. "league/flysystem-azure": "Allows you to use Windows Azure Blob storage",
  91. "league/flysystem-cached-adapter": "Flysystem adapter decorator for metadata caching",
  92. "league/flysystem-eventable-filesystem": "Allows you to use EventableFilesystem",
  93. "league/flysystem-rackspace": "Allows you to use Rackspace Cloud Files",
  94. "league/flysystem-sftp": "Allows you to use SFTP server storage via phpseclib",
  95. "league/flysystem-webdav": "Allows you to use WebDAV storage",
  96. "league/flysystem-ziparchive": "Allows you to use ZipArchive adapter",
  97. "spatie/flysystem-dropbox": "Allows you to use Dropbox storage",
  98. "srmklive/flysystem-dropbox-v2": "Allows you to use Dropbox storage for PHP 5 applications"
  99. },
  100. "type": "library",
  101. "extra": {
  102. "branch-alias": {
  103. "dev-master": "1.1-dev"
  104. }
  105. },
  106. "autoload": {
  107. "psr-4": {
  108. "League\\Flysystem\\": "src/"
  109. }
  110. },
  111. "notification-url": "https://packagist.org/downloads/",
  112. "license": [
  113. "MIT"
  114. ],
  115. "authors": [
  116. {
  117. "name": "Frank de Jonge",
  118. "email": "info@frenky.net"
  119. }
  120. ],
  121. "description": "Filesystem abstraction: Many filesystems, one API.",
  122. "keywords": [
  123. "Cloud Files",
  124. "WebDAV",
  125. "abstraction",
  126. "aws",
  127. "cloud",
  128. "copy.com",
  129. "dropbox",
  130. "file systems",
  131. "files",
  132. "filesystem",
  133. "filesystems",
  134. "ftp",
  135. "rackspace",
  136. "remote",
  137. "s3",
  138. "sftp",
  139. "storage"
  140. ],
  141. "support": {
  142. "issues": "https://github.com/thephpleague/flysystem/issues",
  143. "source": "https://github.com/thephpleague/flysystem/tree/1.1.9"
  144. },
  145. "funding": [
  146. {
  147. "url": "https://offset.earth/frankdejonge",
  148. "type": "other"
  149. }
  150. ],
  151. "time": "2021-12-09T09:40:50+00:00"
  152. },
  153. {
  154. "name": "league/flysystem-cached-adapter",
  155. "version": "1.1.0",
  156. "source": {
  157. "type": "git",
  158. "url": "https://github.com/thephpleague/flysystem-cached-adapter.git",
  159. "reference": "d1925efb2207ac4be3ad0c40b8277175f99ffaff"
  160. },
  161. "dist": {
  162. "type": "zip",
  163. "url": "https://api.github.com/repos/thephpleague/flysystem-cached-adapter/zipball/d1925efb2207ac4be3ad0c40b8277175f99ffaff",
  164. "reference": "d1925efb2207ac4be3ad0c40b8277175f99ffaff",
  165. "shasum": ""
  166. },
  167. "require": {
  168. "league/flysystem": "~1.0",
  169. "psr/cache": "^1.0.0"
  170. },
  171. "require-dev": {
  172. "mockery/mockery": "~0.9",
  173. "phpspec/phpspec": "^3.4",
  174. "phpunit/phpunit": "^5.7",
  175. "predis/predis": "~1.0",
  176. "tedivm/stash": "~0.12"
  177. },
  178. "suggest": {
  179. "ext-phpredis": "Pure C implemented extension for PHP"
  180. },
  181. "type": "library",
  182. "autoload": {
  183. "psr-4": {
  184. "League\\Flysystem\\Cached\\": "src/"
  185. }
  186. },
  187. "notification-url": "https://packagist.org/downloads/",
  188. "license": [
  189. "MIT"
  190. ],
  191. "authors": [
  192. {
  193. "name": "frankdejonge",
  194. "email": "info@frenky.net"
  195. }
  196. ],
  197. "description": "An adapter decorator to enable meta-data caching.",
  198. "support": {
  199. "issues": "https://github.com/thephpleague/flysystem-cached-adapter/issues",
  200. "source": "https://github.com/thephpleague/flysystem-cached-adapter/tree/master"
  201. },
  202. "time": "2020-07-25T15:56:04+00:00"
  203. },
  204. {
  205. "name": "league/mime-type-detection",
  206. "version": "1.9.0",
  207. "source": {
  208. "type": "git",
  209. "url": "https://github.com/thephpleague/mime-type-detection.git",
  210. "reference": "aa70e813a6ad3d1558fc927863d47309b4c23e69"
  211. },
  212. "dist": {
  213. "type": "zip",
  214. "url": "https://api.github.com/repos/thephpleague/mime-type-detection/zipball/aa70e813a6ad3d1558fc927863d47309b4c23e69",
  215. "reference": "aa70e813a6ad3d1558fc927863d47309b4c23e69",
  216. "shasum": ""
  217. },
  218. "require": {
  219. "ext-fileinfo": "*",
  220. "php": "^7.2 || ^8.0"
  221. },
  222. "require-dev": {
  223. "friendsofphp/php-cs-fixer": "^3.2",
  224. "phpstan/phpstan": "^0.12.68",
  225. "phpunit/phpunit": "^8.5.8 || ^9.3"
  226. },
  227. "type": "library",
  228. "autoload": {
  229. "psr-4": {
  230. "League\\MimeTypeDetection\\": "src"
  231. }
  232. },
  233. "notification-url": "https://packagist.org/downloads/",
  234. "license": [
  235. "MIT"
  236. ],
  237. "authors": [
  238. {
  239. "name": "Frank de Jonge",
  240. "email": "info@frankdejonge.nl"
  241. }
  242. ],
  243. "description": "Mime-type detection for Flysystem",
  244. "support": {
  245. "issues": "https://github.com/thephpleague/mime-type-detection/issues",
  246. "source": "https://github.com/thephpleague/mime-type-detection/tree/1.9.0"
  247. },
  248. "funding": [
  249. {
  250. "url": "https://github.com/frankdejonge",
  251. "type": "github"
  252. },
  253. {
  254. "url": "https://tidelift.com/funding/github/packagist/league/flysystem",
  255. "type": "tidelift"
  256. }
  257. ],
  258. "time": "2021-11-21T11:48:40+00:00"
  259. },
  260. {
  261. "name": "liliuwei/thinkphp-jump",
  262. "version": "v1.5",
  263. "source": {
  264. "type": "git",
  265. "url": "https://github.com/liliuwei/thinkphp-jump.git",
  266. "reference": "481d41b922095f08230609919be5d19354c50540"
  267. },
  268. "dist": {
  269. "type": "zip",
  270. "url": "https://api.github.com/repos/liliuwei/thinkphp-jump/zipball/481d41b922095f08230609919be5d19354c50540",
  271. "reference": "481d41b922095f08230609919be5d19354c50540",
  272. "shasum": ""
  273. },
  274. "require": {
  275. "php": ">=7.1.0",
  276. "topthink/framework": "^6.0",
  277. "topthink/think-view": "^1.0"
  278. },
  279. "type": "think-extend",
  280. "extra": {
  281. "think": {
  282. "config": {
  283. "jump": "src/config/jump.php"
  284. }
  285. }
  286. },
  287. "autoload": {
  288. "psr-4": {
  289. "liliuwei\\think\\": "src/"
  290. }
  291. },
  292. "notification-url": "https://packagist.org/downloads/",
  293. "license": [
  294. "Apache-2.0"
  295. ],
  296. "authors": [
  297. {
  298. "name": "liliuwei",
  299. "email": "974829947@qq.com"
  300. }
  301. ],
  302. "description": "适用于thinkphp6.0的跳转扩展",
  303. "keywords": [
  304. "error",
  305. "redirect",
  306. "result",
  307. "success",
  308. "think-jump",
  309. "thinkphp"
  310. ],
  311. "support": {
  312. "issues": "https://github.com/liliuwei/thinkphp-jump/issues",
  313. "source": "https://github.com/liliuwei/thinkphp-jump/tree/v1.5"
  314. },
  315. "time": "2020-03-20T15:11:56+00:00"
  316. },
  317. {
  318. "name": "psr/cache",
  319. "version": "1.0.1",
  320. "source": {
  321. "type": "git",
  322. "url": "https://github.com/php-fig/cache.git",
  323. "reference": "d11b50ad223250cf17b86e38383413f5a6764bf8"
  324. },
  325. "dist": {
  326. "type": "zip",
  327. "url": "https://api.github.com/repos/php-fig/cache/zipball/d11b50ad223250cf17b86e38383413f5a6764bf8",
  328. "reference": "d11b50ad223250cf17b86e38383413f5a6764bf8",
  329. "shasum": ""
  330. },
  331. "require": {
  332. "php": ">=5.3.0"
  333. },
  334. "type": "library",
  335. "extra": {
  336. "branch-alias": {
  337. "dev-master": "1.0.x-dev"
  338. }
  339. },
  340. "autoload": {
  341. "psr-4": {
  342. "Psr\\Cache\\": "src/"
  343. }
  344. },
  345. "notification-url": "https://packagist.org/downloads/",
  346. "license": [
  347. "MIT"
  348. ],
  349. "authors": [
  350. {
  351. "name": "PHP-FIG",
  352. "homepage": "http://www.php-fig.org/"
  353. }
  354. ],
  355. "description": "Common interface for caching libraries",
  356. "keywords": [
  357. "cache",
  358. "psr",
  359. "psr-6"
  360. ],
  361. "support": {
  362. "source": "https://github.com/php-fig/cache/tree/master"
  363. },
  364. "time": "2016-08-06T20:24:11+00:00"
  365. },
  366. {
  367. "name": "psr/container",
  368. "version": "1.1.2",
  369. "source": {
  370. "type": "git",
  371. "url": "https://github.com/php-fig/container.git",
  372. "reference": "513e0666f7216c7459170d56df27dfcefe1689ea"
  373. },
  374. "dist": {
  375. "type": "zip",
  376. "url": "https://api.github.com/repos/php-fig/container/zipball/513e0666f7216c7459170d56df27dfcefe1689ea",
  377. "reference": "513e0666f7216c7459170d56df27dfcefe1689ea",
  378. "shasum": ""
  379. },
  380. "require": {
  381. "php": ">=7.4.0"
  382. },
  383. "type": "library",
  384. "autoload": {
  385. "psr-4": {
  386. "Psr\\Container\\": "src/"
  387. }
  388. },
  389. "notification-url": "https://packagist.org/downloads/",
  390. "license": [
  391. "MIT"
  392. ],
  393. "authors": [
  394. {
  395. "name": "PHP-FIG",
  396. "homepage": "https://www.php-fig.org/"
  397. }
  398. ],
  399. "description": "Common Container Interface (PHP FIG PSR-11)",
  400. "homepage": "https://github.com/php-fig/container",
  401. "keywords": [
  402. "PSR-11",
  403. "container",
  404. "container-interface",
  405. "container-interop",
  406. "psr"
  407. ],
  408. "support": {
  409. "issues": "https://github.com/php-fig/container/issues",
  410. "source": "https://github.com/php-fig/container/tree/1.1.2"
  411. },
  412. "time": "2021-11-05T16:50:12+00:00"
  413. },
  414. {
  415. "name": "psr/http-message",
  416. "version": "1.0.1",
  417. "source": {
  418. "type": "git",
  419. "url": "https://github.com/php-fig/http-message.git",
  420. "reference": "f6561bf28d520154e4b0ec72be95418abe6d9363"
  421. },
  422. "dist": {
  423. "type": "zip",
  424. "url": "https://api.github.com/repos/php-fig/http-message/zipball/f6561bf28d520154e4b0ec72be95418abe6d9363",
  425. "reference": "f6561bf28d520154e4b0ec72be95418abe6d9363",
  426. "shasum": ""
  427. },
  428. "require": {
  429. "php": ">=5.3.0"
  430. },
  431. "type": "library",
  432. "extra": {
  433. "branch-alias": {
  434. "dev-master": "1.0.x-dev"
  435. }
  436. },
  437. "autoload": {
  438. "psr-4": {
  439. "Psr\\Http\\Message\\": "src/"
  440. }
  441. },
  442. "notification-url": "https://packagist.org/downloads/",
  443. "license": [
  444. "MIT"
  445. ],
  446. "authors": [
  447. {
  448. "name": "PHP-FIG",
  449. "homepage": "http://www.php-fig.org/"
  450. }
  451. ],
  452. "description": "Common interface for HTTP messages",
  453. "homepage": "https://github.com/php-fig/http-message",
  454. "keywords": [
  455. "http",
  456. "http-message",
  457. "psr",
  458. "psr-7",
  459. "request",
  460. "response"
  461. ],
  462. "support": {
  463. "source": "https://github.com/php-fig/http-message/tree/master"
  464. },
  465. "time": "2016-08-06T14:39:51+00:00"
  466. },
  467. {
  468. "name": "psr/log",
  469. "version": "1.1.4",
  470. "source": {
  471. "type": "git",
  472. "url": "https://github.com/php-fig/log.git",
  473. "reference": "d49695b909c3b7628b6289db5479a1c204601f11"
  474. },
  475. "dist": {
  476. "type": "zip",
  477. "url": "https://api.github.com/repos/php-fig/log/zipball/d49695b909c3b7628b6289db5479a1c204601f11",
  478. "reference": "d49695b909c3b7628b6289db5479a1c204601f11",
  479. "shasum": ""
  480. },
  481. "require": {
  482. "php": ">=5.3.0"
  483. },
  484. "type": "library",
  485. "extra": {
  486. "branch-alias": {
  487. "dev-master": "1.1.x-dev"
  488. }
  489. },
  490. "autoload": {
  491. "psr-4": {
  492. "Psr\\Log\\": "Psr/Log/"
  493. }
  494. },
  495. "notification-url": "https://packagist.org/downloads/",
  496. "license": [
  497. "MIT"
  498. ],
  499. "authors": [
  500. {
  501. "name": "PHP-FIG",
  502. "homepage": "https://www.php-fig.org/"
  503. }
  504. ],
  505. "description": "Common interface for logging libraries",
  506. "homepage": "https://github.com/php-fig/log",
  507. "keywords": [
  508. "log",
  509. "psr",
  510. "psr-3"
  511. ],
  512. "support": {
  513. "source": "https://github.com/php-fig/log/tree/1.1.4"
  514. },
  515. "time": "2021-05-03T11:20:27+00:00"
  516. },
  517. {
  518. "name": "psr/simple-cache",
  519. "version": "1.0.1",
  520. "source": {
  521. "type": "git",
  522. "url": "https://github.com/php-fig/simple-cache.git",
  523. "reference": "408d5eafb83c57f6365a3ca330ff23aa4a5fa39b"
  524. },
  525. "dist": {
  526. "type": "zip",
  527. "url": "https://api.github.com/repos/php-fig/simple-cache/zipball/408d5eafb83c57f6365a3ca330ff23aa4a5fa39b",
  528. "reference": "408d5eafb83c57f6365a3ca330ff23aa4a5fa39b",
  529. "shasum": ""
  530. },
  531. "require": {
  532. "php": ">=5.3.0"
  533. },
  534. "type": "library",
  535. "extra": {
  536. "branch-alias": {
  537. "dev-master": "1.0.x-dev"
  538. }
  539. },
  540. "autoload": {
  541. "psr-4": {
  542. "Psr\\SimpleCache\\": "src/"
  543. }
  544. },
  545. "notification-url": "https://packagist.org/downloads/",
  546. "license": [
  547. "MIT"
  548. ],
  549. "authors": [
  550. {
  551. "name": "PHP-FIG",
  552. "homepage": "http://www.php-fig.org/"
  553. }
  554. ],
  555. "description": "Common interfaces for simple caching",
  556. "keywords": [
  557. "cache",
  558. "caching",
  559. "psr",
  560. "psr-16",
  561. "simple-cache"
  562. ],
  563. "support": {
  564. "source": "https://github.com/php-fig/simple-cache/tree/master"
  565. },
  566. "time": "2017-10-23T01:57:42+00:00"
  567. },
  568. {
  569. "name": "topthink/framework",
  570. "version": "v6.0.12",
  571. "source": {
  572. "type": "git",
  573. "url": "https://github.com/top-think/framework.git",
  574. "reference": "e478316ac843c1a884a3b3a7a94db17c4001ff5c"
  575. },
  576. "dist": {
  577. "type": "zip",
  578. "url": "https://api.github.com/repos/top-think/framework/zipball/e478316ac843c1a884a3b3a7a94db17c4001ff5c",
  579. "reference": "e478316ac843c1a884a3b3a7a94db17c4001ff5c",
  580. "shasum": ""
  581. },
  582. "require": {
  583. "ext-json": "*",
  584. "ext-mbstring": "*",
  585. "league/flysystem": "^1.1.4",
  586. "league/flysystem-cached-adapter": "^1.0",
  587. "php": ">=7.2.5",
  588. "psr/container": "~1.0",
  589. "psr/http-message": "^1.0",
  590. "psr/log": "~1.0",
  591. "psr/simple-cache": "^1.0",
  592. "topthink/think-helper": "^3.1.1",
  593. "topthink/think-orm": "^2.0"
  594. },
  595. "require-dev": {
  596. "guzzlehttp/psr7": "^2.1.0",
  597. "mikey179/vfsstream": "^1.6",
  598. "mockery/mockery": "^1.2",
  599. "phpunit/phpunit": "^7.0"
  600. },
  601. "type": "library",
  602. "autoload": {
  603. "files": [],
  604. "psr-4": {
  605. "think\\": "src/think/"
  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. "name": "yunwuxin",
  619. "email": "448901948@qq.com"
  620. }
  621. ],
  622. "description": "The ThinkPHP Framework.",
  623. "homepage": "http://thinkphp.cn/",
  624. "keywords": [
  625. "framework",
  626. "orm",
  627. "thinkphp"
  628. ],
  629. "support": {
  630. "issues": "https://github.com/top-think/framework/issues",
  631. "source": "https://github.com/top-think/framework/tree/v6.0.12"
  632. },
  633. "time": "2022-01-21T06:31:07+00:00"
  634. },
  635. {
  636. "name": "topthink/think-helper",
  637. "version": "v3.1.6",
  638. "source": {
  639. "type": "git",
  640. "url": "https://github.com/top-think/think-helper.git",
  641. "reference": "769acbe50a4274327162f9c68ec2e89a38eb2aff"
  642. },
  643. "dist": {
  644. "type": "zip",
  645. "url": "https://api.github.com/repos/top-think/think-helper/zipball/769acbe50a4274327162f9c68ec2e89a38eb2aff",
  646. "reference": "769acbe50a4274327162f9c68ec2e89a38eb2aff",
  647. "shasum": ""
  648. },
  649. "require": {
  650. "php": ">=7.1.0"
  651. },
  652. "require-dev": {
  653. "phpunit/phpunit": "^9.5"
  654. },
  655. "type": "library",
  656. "autoload": {
  657. "files": [
  658. "src/helper.php"
  659. ],
  660. "psr-4": {
  661. "think\\": "src"
  662. }
  663. },
  664. "notification-url": "https://packagist.org/downloads/",
  665. "license": [
  666. "Apache-2.0"
  667. ],
  668. "authors": [
  669. {
  670. "name": "yunwuxin",
  671. "email": "448901948@qq.com"
  672. }
  673. ],
  674. "description": "The ThinkPHP6 Helper Package",
  675. "support": {
  676. "issues": "https://github.com/top-think/think-helper/issues",
  677. "source": "https://github.com/top-think/think-helper/tree/v3.1.6"
  678. },
  679. "time": "2021-12-15T04:27:55+00:00"
  680. },
  681. {
  682. "name": "topthink/think-image",
  683. "version": "v1.0.7",
  684. "source": {
  685. "type": "git",
  686. "url": "https://github.com/top-think/think-image.git",
  687. "reference": "8586cf47f117481c6d415b20f7dedf62e79d5512"
  688. },
  689. "dist": {
  690. "type": "zip",
  691. "url": "https://api.github.com/repos/top-think/think-image/zipball/8586cf47f117481c6d415b20f7dedf62e79d5512",
  692. "reference": "8586cf47f117481c6d415b20f7dedf62e79d5512",
  693. "shasum": ""
  694. },
  695. "require": {
  696. "ext-gd": "*"
  697. },
  698. "require-dev": {
  699. "phpunit/phpunit": "4.8.*",
  700. "topthink/framework": "^5.0"
  701. },
  702. "type": "library",
  703. "autoload": {
  704. "psr-4": {
  705. "think\\": "src"
  706. }
  707. },
  708. "notification-url": "https://packagist.org/downloads/",
  709. "license": [
  710. "Apache-2.0"
  711. ],
  712. "authors": [
  713. {
  714. "name": "yunwuxin",
  715. "email": "448901948@qq.com"
  716. }
  717. ],
  718. "description": "The ThinkPHP5 Image Package",
  719. "support": {
  720. "issues": "https://github.com/top-think/think-image/issues",
  721. "source": "https://github.com/top-think/think-image/tree/master"
  722. },
  723. "time": "2016-09-29T06:05:43+00:00"
  724. },
  725. {
  726. "name": "topthink/think-multi-app",
  727. "version": "v1.0.14",
  728. "source": {
  729. "type": "git",
  730. "url": "https://github.com/top-think/think-multi-app.git",
  731. "reference": "ccaad7c2d33f42cb1cc2a78d6610aaec02cea4c3"
  732. },
  733. "dist": {
  734. "type": "zip",
  735. "url": "https://api.github.com/repos/top-think/think-multi-app/zipball/ccaad7c2d33f42cb1cc2a78d6610aaec02cea4c3",
  736. "reference": "ccaad7c2d33f42cb1cc2a78d6610aaec02cea4c3",
  737. "shasum": ""
  738. },
  739. "require": {
  740. "php": ">=7.1.0",
  741. "topthink/framework": "^6.0.0"
  742. },
  743. "type": "library",
  744. "extra": {
  745. "think": {
  746. "services": [
  747. "think\\app\\Service"
  748. ]
  749. }
  750. },
  751. "autoload": {
  752. "psr-4": {
  753. "think\\app\\": "src"
  754. }
  755. },
  756. "notification-url": "https://packagist.org/downloads/",
  757. "license": [
  758. "Apache-2.0"
  759. ],
  760. "authors": [
  761. {
  762. "name": "liu21st",
  763. "email": "liu21st@gmail.com"
  764. }
  765. ],
  766. "description": "thinkphp6 multi app support",
  767. "support": {
  768. "issues": "https://github.com/top-think/think-multi-app/issues",
  769. "source": "https://github.com/top-think/think-multi-app/tree/master"
  770. },
  771. "time": "2020-07-12T13:50:37+00:00"
  772. },
  773. {
  774. "name": "topthink/think-orm",
  775. "version": "v2.0.53",
  776. "source": {
  777. "type": "git",
  778. "url": "https://github.com/top-think/think-orm.git",
  779. "reference": "06783eda65547a70ea686360a897759e1f873fff"
  780. },
  781. "dist": {
  782. "type": "zip",
  783. "url": "https://api.github.com/repos/top-think/think-orm/zipball/06783eda65547a70ea686360a897759e1f873fff",
  784. "reference": "06783eda65547a70ea686360a897759e1f873fff",
  785. "shasum": ""
  786. },
  787. "require": {
  788. "ext-json": "*",
  789. "ext-pdo": "*",
  790. "php": ">=7.1.0",
  791. "psr/log": "~1.0",
  792. "psr/simple-cache": "^1.0",
  793. "topthink/think-helper": "^3.1"
  794. },
  795. "require-dev": {
  796. "phpunit/phpunit": "^7|^8|^9.5"
  797. },
  798. "type": "library",
  799. "autoload": {
  800. "files": [
  801. "stubs/load_stubs.php"
  802. ],
  803. "psr-4": {
  804. "think\\": "src"
  805. }
  806. },
  807. "notification-url": "https://packagist.org/downloads/",
  808. "license": [
  809. "Apache-2.0"
  810. ],
  811. "authors": [
  812. {
  813. "name": "liu21st",
  814. "email": "liu21st@gmail.com"
  815. }
  816. ],
  817. "description": "think orm",
  818. "keywords": [
  819. "database",
  820. "orm"
  821. ],
  822. "support": {
  823. "issues": "https://github.com/top-think/think-orm/issues",
  824. "source": "https://github.com/top-think/think-orm/tree/v2.0.53"
  825. },
  826. "time": "2022-02-28T14:54:22+00:00"
  827. },
  828. {
  829. "name": "topthink/think-template",
  830. "version": "v2.0.8",
  831. "source": {
  832. "type": "git",
  833. "url": "https://github.com/top-think/think-template.git",
  834. "reference": "abfc293f74f9ef5127b5c416310a01fe42e59368"
  835. },
  836. "dist": {
  837. "type": "zip",
  838. "url": "https://api.github.com/repos/top-think/think-template/zipball/abfc293f74f9ef5127b5c416310a01fe42e59368",
  839. "reference": "abfc293f74f9ef5127b5c416310a01fe42e59368",
  840. "shasum": ""
  841. },
  842. "require": {
  843. "php": ">=7.1.0",
  844. "psr/simple-cache": "^1.0"
  845. },
  846. "type": "library",
  847. "autoload": {
  848. "psr-4": {
  849. "think\\": "src"
  850. }
  851. },
  852. "notification-url": "https://packagist.org/downloads/",
  853. "license": [
  854. "Apache-2.0"
  855. ],
  856. "authors": [
  857. {
  858. "name": "liu21st",
  859. "email": "liu21st@gmail.com"
  860. }
  861. ],
  862. "description": "the php template engine",
  863. "support": {
  864. "issues": "https://github.com/top-think/think-template/issues",
  865. "source": "https://github.com/top-think/think-template/tree/v2.0.8"
  866. },
  867. "time": "2020-12-10T07:52:03+00:00"
  868. },
  869. {
  870. "name": "topthink/think-view",
  871. "version": "v1.0.14",
  872. "source": {
  873. "type": "git",
  874. "url": "https://github.com/top-think/think-view.git",
  875. "reference": "edce0ae2c9551ab65f9e94a222604b0dead3576d"
  876. },
  877. "dist": {
  878. "type": "zip",
  879. "url": "https://api.github.com/repos/top-think/think-view/zipball/edce0ae2c9551ab65f9e94a222604b0dead3576d",
  880. "reference": "edce0ae2c9551ab65f9e94a222604b0dead3576d",
  881. "shasum": ""
  882. },
  883. "require": {
  884. "php": ">=7.1.0",
  885. "topthink/think-template": "^2.0"
  886. },
  887. "type": "library",
  888. "autoload": {
  889. "psr-4": {
  890. "think\\view\\driver\\": "src"
  891. }
  892. },
  893. "notification-url": "https://packagist.org/downloads/",
  894. "license": [
  895. "Apache-2.0"
  896. ],
  897. "authors": [
  898. {
  899. "name": "liu21st",
  900. "email": "liu21st@gmail.com"
  901. }
  902. ],
  903. "description": "thinkphp template driver",
  904. "support": {
  905. "issues": "https://github.com/top-think/think-view/issues",
  906. "source": "https://github.com/top-think/think-view/tree/v1.0.14"
  907. },
  908. "time": "2019-11-06T11:40:13+00:00"
  909. }
  910. ],
  911. "packages-dev": [
  912. {
  913. "name": "symfony/polyfill-mbstring",
  914. "version": "v1.25.0",
  915. "source": {
  916. "type": "git",
  917. "url": "https://github.com/symfony/polyfill-mbstring.git",
  918. "reference": "0abb51d2f102e00a4eefcf46ba7fec406d245825"
  919. },
  920. "dist": {
  921. "type": "zip",
  922. "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/0abb51d2f102e00a4eefcf46ba7fec406d245825",
  923. "reference": "0abb51d2f102e00a4eefcf46ba7fec406d245825",
  924. "shasum": ""
  925. },
  926. "require": {
  927. "php": ">=7.1"
  928. },
  929. "provide": {
  930. "ext-mbstring": "*"
  931. },
  932. "suggest": {
  933. "ext-mbstring": "For best performance"
  934. },
  935. "type": "library",
  936. "extra": {
  937. "branch-alias": {
  938. "dev-main": "1.23-dev"
  939. },
  940. "thanks": {
  941. "name": "symfony/polyfill",
  942. "url": "https://github.com/symfony/polyfill"
  943. }
  944. },
  945. "autoload": {
  946. "files": [
  947. "bootstrap.php"
  948. ],
  949. "psr-4": {
  950. "Symfony\\Polyfill\\Mbstring\\": ""
  951. }
  952. },
  953. "notification-url": "https://packagist.org/downloads/",
  954. "license": [
  955. "MIT"
  956. ],
  957. "authors": [
  958. {
  959. "name": "Nicolas Grekas",
  960. "email": "p@tchwork.com"
  961. },
  962. {
  963. "name": "Symfony Community",
  964. "homepage": "https://symfony.com/contributors"
  965. }
  966. ],
  967. "description": "Symfony polyfill for the Mbstring extension",
  968. "homepage": "https://symfony.com",
  969. "keywords": [
  970. "compatibility",
  971. "mbstring",
  972. "polyfill",
  973. "portable",
  974. "shim"
  975. ],
  976. "support": {
  977. "source": "https://github.com/symfony/polyfill-mbstring/tree/v1.25.0"
  978. },
  979. "funding": [
  980. {
  981. "url": "https://symfony.com/sponsor",
  982. "type": "custom"
  983. },
  984. {
  985. "url": "https://github.com/fabpot",
  986. "type": "github"
  987. },
  988. {
  989. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  990. "type": "tidelift"
  991. }
  992. ],
  993. "time": "2021-11-30T18:21:41+00:00"
  994. },
  995. {
  996. "name": "symfony/polyfill-php72",
  997. "version": "v1.25.0",
  998. "source": {
  999. "type": "git",
  1000. "url": "https://github.com/symfony/polyfill-php72.git",
  1001. "reference": "9a142215a36a3888e30d0a9eeea9766764e96976"
  1002. },
  1003. "dist": {
  1004. "type": "zip",
  1005. "url": "https://api.github.com/repos/symfony/polyfill-php72/zipball/9a142215a36a3888e30d0a9eeea9766764e96976",
  1006. "reference": "9a142215a36a3888e30d0a9eeea9766764e96976",
  1007. "shasum": ""
  1008. },
  1009. "require": {
  1010. "php": ">=7.1"
  1011. },
  1012. "type": "library",
  1013. "extra": {
  1014. "branch-alias": {
  1015. "dev-main": "1.23-dev"
  1016. },
  1017. "thanks": {
  1018. "name": "symfony/polyfill",
  1019. "url": "https://github.com/symfony/polyfill"
  1020. }
  1021. },
  1022. "autoload": {
  1023. "files": [
  1024. "bootstrap.php"
  1025. ],
  1026. "psr-4": {
  1027. "Symfony\\Polyfill\\Php72\\": ""
  1028. }
  1029. },
  1030. "notification-url": "https://packagist.org/downloads/",
  1031. "license": [
  1032. "MIT"
  1033. ],
  1034. "authors": [
  1035. {
  1036. "name": "Nicolas Grekas",
  1037. "email": "p@tchwork.com"
  1038. },
  1039. {
  1040. "name": "Symfony Community",
  1041. "homepage": "https://symfony.com/contributors"
  1042. }
  1043. ],
  1044. "description": "Symfony polyfill backporting some PHP 7.2+ features to lower PHP versions",
  1045. "homepage": "https://symfony.com",
  1046. "keywords": [
  1047. "compatibility",
  1048. "polyfill",
  1049. "portable",
  1050. "shim"
  1051. ],
  1052. "support": {
  1053. "source": "https://github.com/symfony/polyfill-php72/tree/v1.25.0"
  1054. },
  1055. "funding": [
  1056. {
  1057. "url": "https://symfony.com/sponsor",
  1058. "type": "custom"
  1059. },
  1060. {
  1061. "url": "https://github.com/fabpot",
  1062. "type": "github"
  1063. },
  1064. {
  1065. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  1066. "type": "tidelift"
  1067. }
  1068. ],
  1069. "time": "2021-05-27T09:17:38+00:00"
  1070. },
  1071. {
  1072. "name": "symfony/polyfill-php80",
  1073. "version": "v1.25.0",
  1074. "source": {
  1075. "type": "git",
  1076. "url": "https://github.com/symfony/polyfill-php80.git",
  1077. "reference": "4407588e0d3f1f52efb65fbe92babe41f37fe50c"
  1078. },
  1079. "dist": {
  1080. "type": "zip",
  1081. "url": "https://api.github.com/repos/symfony/polyfill-php80/zipball/4407588e0d3f1f52efb65fbe92babe41f37fe50c",
  1082. "reference": "4407588e0d3f1f52efb65fbe92babe41f37fe50c",
  1083. "shasum": ""
  1084. },
  1085. "require": {
  1086. "php": ">=7.1"
  1087. },
  1088. "type": "library",
  1089. "extra": {
  1090. "branch-alias": {
  1091. "dev-main": "1.23-dev"
  1092. },
  1093. "thanks": {
  1094. "name": "symfony/polyfill",
  1095. "url": "https://github.com/symfony/polyfill"
  1096. }
  1097. },
  1098. "autoload": {
  1099. "files": [
  1100. "bootstrap.php"
  1101. ],
  1102. "psr-4": {
  1103. "Symfony\\Polyfill\\Php80\\": ""
  1104. },
  1105. "classmap": [
  1106. "Resources/stubs"
  1107. ]
  1108. },
  1109. "notification-url": "https://packagist.org/downloads/",
  1110. "license": [
  1111. "MIT"
  1112. ],
  1113. "authors": [
  1114. {
  1115. "name": "Ion Bazan",
  1116. "email": "ion.bazan@gmail.com"
  1117. },
  1118. {
  1119. "name": "Nicolas Grekas",
  1120. "email": "p@tchwork.com"
  1121. },
  1122. {
  1123. "name": "Symfony Community",
  1124. "homepage": "https://symfony.com/contributors"
  1125. }
  1126. ],
  1127. "description": "Symfony polyfill backporting some PHP 8.0+ features to lower PHP versions",
  1128. "homepage": "https://symfony.com",
  1129. "keywords": [
  1130. "compatibility",
  1131. "polyfill",
  1132. "portable",
  1133. "shim"
  1134. ],
  1135. "support": {
  1136. "source": "https://github.com/symfony/polyfill-php80/tree/v1.25.0"
  1137. },
  1138. "funding": [
  1139. {
  1140. "url": "https://symfony.com/sponsor",
  1141. "type": "custom"
  1142. },
  1143. {
  1144. "url": "https://github.com/fabpot",
  1145. "type": "github"
  1146. },
  1147. {
  1148. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  1149. "type": "tidelift"
  1150. }
  1151. ],
  1152. "time": "2022-03-04T08:16:47+00:00"
  1153. },
  1154. {
  1155. "name": "symfony/var-dumper",
  1156. "version": "v4.4.39",
  1157. "source": {
  1158. "type": "git",
  1159. "url": "https://github.com/symfony/var-dumper.git",
  1160. "reference": "35237c5e5dcb6593a46a860ba5b29c1d4683d80e"
  1161. },
  1162. "dist": {
  1163. "type": "zip",
  1164. "url": "https://api.github.com/repos/symfony/var-dumper/zipball/35237c5e5dcb6593a46a860ba5b29c1d4683d80e",
  1165. "reference": "35237c5e5dcb6593a46a860ba5b29c1d4683d80e",
  1166. "shasum": ""
  1167. },
  1168. "require": {
  1169. "php": ">=7.1.3",
  1170. "symfony/polyfill-mbstring": "~1.0",
  1171. "symfony/polyfill-php72": "~1.5",
  1172. "symfony/polyfill-php80": "^1.16"
  1173. },
  1174. "conflict": {
  1175. "phpunit/phpunit": "<4.8.35|<5.4.3,>=5.0",
  1176. "symfony/console": "<3.4"
  1177. },
  1178. "require-dev": {
  1179. "ext-iconv": "*",
  1180. "symfony/console": "^3.4|^4.0|^5.0",
  1181. "symfony/process": "^4.4|^5.0",
  1182. "twig/twig": "^1.43|^2.13|^3.0.4"
  1183. },
  1184. "suggest": {
  1185. "ext-iconv": "To convert non-UTF-8 strings to UTF-8 (or symfony/polyfill-iconv in case ext-iconv cannot be used).",
  1186. "ext-intl": "To show region name in time zone dump",
  1187. "symfony/console": "To use the ServerDumpCommand and/or the bin/var-dump-server script"
  1188. },
  1189. "bin": [
  1190. "Resources/bin/var-dump-server"
  1191. ],
  1192. "type": "library",
  1193. "autoload": {
  1194. "files": [
  1195. "Resources/functions/dump.php"
  1196. ],
  1197. "psr-4": {
  1198. "Symfony\\Component\\VarDumper\\": ""
  1199. },
  1200. "exclude-from-classmap": [
  1201. "/Tests/"
  1202. ]
  1203. },
  1204. "notification-url": "https://packagist.org/downloads/",
  1205. "license": [
  1206. "MIT"
  1207. ],
  1208. "authors": [
  1209. {
  1210. "name": "Nicolas Grekas",
  1211. "email": "p@tchwork.com"
  1212. },
  1213. {
  1214. "name": "Symfony Community",
  1215. "homepage": "https://symfony.com/contributors"
  1216. }
  1217. ],
  1218. "description": "Provides mechanisms for walking through any arbitrary PHP variable",
  1219. "homepage": "https://symfony.com",
  1220. "keywords": [
  1221. "debug",
  1222. "dump"
  1223. ],
  1224. "support": {
  1225. "source": "https://github.com/symfony/var-dumper/tree/v4.4.39"
  1226. },
  1227. "funding": [
  1228. {
  1229. "url": "https://symfony.com/sponsor",
  1230. "type": "custom"
  1231. },
  1232. {
  1233. "url": "https://github.com/fabpot",
  1234. "type": "github"
  1235. },
  1236. {
  1237. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  1238. "type": "tidelift"
  1239. }
  1240. ],
  1241. "time": "2022-02-25T10:38:15+00:00"
  1242. },
  1243. {
  1244. "name": "topthink/think-trace",
  1245. "version": "v1.4",
  1246. "source": {
  1247. "type": "git",
  1248. "url": "https://github.com/top-think/think-trace.git",
  1249. "reference": "9a9fa8f767b6c66c5a133ad21ca1bc96ad329444"
  1250. },
  1251. "dist": {
  1252. "type": "zip",
  1253. "url": "https://api.github.com/repos/top-think/think-trace/zipball/9a9fa8f767b6c66c5a133ad21ca1bc96ad329444",
  1254. "reference": "9a9fa8f767b6c66c5a133ad21ca1bc96ad329444",
  1255. "shasum": ""
  1256. },
  1257. "require": {
  1258. "php": ">=7.1.0",
  1259. "topthink/framework": "^6.0.0"
  1260. },
  1261. "type": "library",
  1262. "extra": {
  1263. "think": {
  1264. "services": [
  1265. "think\\trace\\Service"
  1266. ],
  1267. "config": {
  1268. "trace": "src/config.php"
  1269. }
  1270. }
  1271. },
  1272. "autoload": {
  1273. "psr-4": {
  1274. "think\\trace\\": "src"
  1275. }
  1276. },
  1277. "notification-url": "https://packagist.org/downloads/",
  1278. "license": [
  1279. "Apache-2.0"
  1280. ],
  1281. "authors": [
  1282. {
  1283. "name": "liu21st",
  1284. "email": "liu21st@gmail.com"
  1285. }
  1286. ],
  1287. "description": "thinkphp debug trace",
  1288. "support": {
  1289. "issues": "https://github.com/top-think/think-trace/issues",
  1290. "source": "https://github.com/top-think/think-trace/tree/v1.4"
  1291. },
  1292. "time": "2020-06-29T05:27:28+00:00"
  1293. }
  1294. ],
  1295. "aliases": [],
  1296. "minimum-stability": "stable",
  1297. "stability-flags": [],
  1298. "prefer-stable": false,
  1299. "prefer-lowest": false,
  1300. "platform": {
  1301. "php": ">=7.1.0"
  1302. },
  1303. "platform-dev": [],
  1304. "plugin-api-version": "2.2.0"
  1305. }