composer.lock 74 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076
  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": "e47b4ef45fb3425a42b5319d25692eb2",
  8. "packages": [
  9. {
  10. "name": "guzzlehttp/guzzle",
  11. "version": "7.8.1",
  12. "source": {
  13. "type": "git",
  14. "url": "https://github.com/guzzle/guzzle.git",
  15. "reference": "41042bc7ab002487b876a0683fc8dce04ddce104"
  16. },
  17. "dist": {
  18. "type": "zip",
  19. "url": "https://api.github.com/repos/guzzle/guzzle/zipball/41042bc7ab002487b876a0683fc8dce04ddce104",
  20. "reference": "41042bc7ab002487b876a0683fc8dce04ddce104",
  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-json": "*",
  31. "guzzlehttp/promises": "^1.5.3 || ^2.0.1",
  32. "guzzlehttp/psr7": "^1.9.1 || ^2.5.1",
  33. "php": "^7.2.5 || ^8.0",
  34. "psr/http-client": "^1.0",
  35. "symfony/deprecation-contracts": "^2.2 || ^3.0"
  36. },
  37. "provide": {
  38. "psr/http-client-implementation": "1.0"
  39. },
  40. "require-dev": {
  41. "bamarni/composer-bin-plugin": "^1.8.2",
  42. "ext-curl": "*",
  43. "php-http/client-integration-tests": "dev-master#2c025848417c1135031fdf9c728ee53d0a7ceaee as 3.0.999",
  44. "php-http/message-factory": "^1.1",
  45. "phpunit/phpunit": "^8.5.36 || ^9.6.15",
  46. "psr/log": "^1.1 || ^2.0 || ^3.0"
  47. },
  48. "suggest": {
  49. "ext-curl": "Required for CURL handler support",
  50. "ext-intl": "Required for Internationalized Domain Name (IDN) support",
  51. "psr/log": "Required for using the Log middleware"
  52. },
  53. "type": "library",
  54. "extra": {
  55. "bamarni-bin": {
  56. "bin-links": true,
  57. "forward-command": false
  58. }
  59. },
  60. "autoload": {
  61. "files": [
  62. "src/functions_include.php"
  63. ],
  64. "psr-4": {
  65. "GuzzleHttp\\": "src/"
  66. }
  67. },
  68. "notification-url": "https://packagist.org/downloads/",
  69. "license": [
  70. "MIT"
  71. ],
  72. "authors": [
  73. {
  74. "name": "Graham Campbell",
  75. "email": "hello@gjcampbell.co.uk",
  76. "homepage": "https://github.com/GrahamCampbell"
  77. },
  78. {
  79. "name": "Michael Dowling",
  80. "email": "mtdowling@gmail.com",
  81. "homepage": "https://github.com/mtdowling"
  82. },
  83. {
  84. "name": "Jeremy Lindblom",
  85. "email": "jeremeamia@gmail.com",
  86. "homepage": "https://github.com/jeremeamia"
  87. },
  88. {
  89. "name": "George Mponos",
  90. "email": "gmponos@gmail.com",
  91. "homepage": "https://github.com/gmponos"
  92. },
  93. {
  94. "name": "Tobias Nyholm",
  95. "email": "tobias.nyholm@gmail.com",
  96. "homepage": "https://github.com/Nyholm"
  97. },
  98. {
  99. "name": "Márk Sági-Kazár",
  100. "email": "mark.sagikazar@gmail.com",
  101. "homepage": "https://github.com/sagikazarmark"
  102. },
  103. {
  104. "name": "Tobias Schultze",
  105. "email": "webmaster@tubo-world.de",
  106. "homepage": "https://github.com/Tobion"
  107. }
  108. ],
  109. "description": "Guzzle is a PHP HTTP client library",
  110. "keywords": [
  111. "client",
  112. "curl",
  113. "framework",
  114. "http",
  115. "http client",
  116. "psr-18",
  117. "psr-7",
  118. "rest",
  119. "web service"
  120. ],
  121. "support": {
  122. "issues": "https://github.com/guzzle/guzzle/issues",
  123. "source": "https://github.com/guzzle/guzzle/tree/7.8.1"
  124. },
  125. "funding": [
  126. {
  127. "url": "https://github.com/GrahamCampbell",
  128. "type": "github"
  129. },
  130. {
  131. "url": "https://github.com/Nyholm",
  132. "type": "github"
  133. },
  134. {
  135. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/guzzle",
  136. "type": "tidelift"
  137. }
  138. ],
  139. "time": "2023-12-03T20:35:24+00:00"
  140. },
  141. {
  142. "name": "guzzlehttp/promises",
  143. "version": "2.0.2",
  144. "source": {
  145. "type": "git",
  146. "url": "https://github.com/guzzle/promises.git",
  147. "reference": "bbff78d96034045e58e13dedd6ad91b5d1253223"
  148. },
  149. "dist": {
  150. "type": "zip",
  151. "url": "https://api.github.com/repos/guzzle/promises/zipball/bbff78d96034045e58e13dedd6ad91b5d1253223",
  152. "reference": "bbff78d96034045e58e13dedd6ad91b5d1253223",
  153. "shasum": "",
  154. "mirrors": [
  155. {
  156. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  157. "preferred": true
  158. }
  159. ]
  160. },
  161. "require": {
  162. "php": "^7.2.5 || ^8.0"
  163. },
  164. "require-dev": {
  165. "bamarni/composer-bin-plugin": "^1.8.2",
  166. "phpunit/phpunit": "^8.5.36 || ^9.6.15"
  167. },
  168. "type": "library",
  169. "extra": {
  170. "bamarni-bin": {
  171. "bin-links": true,
  172. "forward-command": false
  173. }
  174. },
  175. "autoload": {
  176. "psr-4": {
  177. "GuzzleHttp\\Promise\\": "src/"
  178. }
  179. },
  180. "notification-url": "https://packagist.org/downloads/",
  181. "license": [
  182. "MIT"
  183. ],
  184. "authors": [
  185. {
  186. "name": "Graham Campbell",
  187. "email": "hello@gjcampbell.co.uk",
  188. "homepage": "https://github.com/GrahamCampbell"
  189. },
  190. {
  191. "name": "Michael Dowling",
  192. "email": "mtdowling@gmail.com",
  193. "homepage": "https://github.com/mtdowling"
  194. },
  195. {
  196. "name": "Tobias Nyholm",
  197. "email": "tobias.nyholm@gmail.com",
  198. "homepage": "https://github.com/Nyholm"
  199. },
  200. {
  201. "name": "Tobias Schultze",
  202. "email": "webmaster@tubo-world.de",
  203. "homepage": "https://github.com/Tobion"
  204. }
  205. ],
  206. "description": "Guzzle promises library",
  207. "keywords": [
  208. "promise"
  209. ],
  210. "support": {
  211. "issues": "https://github.com/guzzle/promises/issues",
  212. "source": "https://github.com/guzzle/promises/tree/2.0.2"
  213. },
  214. "funding": [
  215. {
  216. "url": "https://github.com/GrahamCampbell",
  217. "type": "github"
  218. },
  219. {
  220. "url": "https://github.com/Nyholm",
  221. "type": "github"
  222. },
  223. {
  224. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/promises",
  225. "type": "tidelift"
  226. }
  227. ],
  228. "time": "2023-12-03T20:19:20+00:00"
  229. },
  230. {
  231. "name": "guzzlehttp/psr7",
  232. "version": "2.6.2",
  233. "source": {
  234. "type": "git",
  235. "url": "https://github.com/guzzle/psr7.git",
  236. "reference": "45b30f99ac27b5ca93cb4831afe16285f57b8221"
  237. },
  238. "dist": {
  239. "type": "zip",
  240. "url": "https://api.github.com/repos/guzzle/psr7/zipball/45b30f99ac27b5ca93cb4831afe16285f57b8221",
  241. "reference": "45b30f99ac27b5ca93cb4831afe16285f57b8221",
  242. "shasum": "",
  243. "mirrors": [
  244. {
  245. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  246. "preferred": true
  247. }
  248. ]
  249. },
  250. "require": {
  251. "php": "^7.2.5 || ^8.0",
  252. "psr/http-factory": "^1.0",
  253. "psr/http-message": "^1.1 || ^2.0",
  254. "ralouphie/getallheaders": "^3.0"
  255. },
  256. "provide": {
  257. "psr/http-factory-implementation": "1.0",
  258. "psr/http-message-implementation": "1.0"
  259. },
  260. "require-dev": {
  261. "bamarni/composer-bin-plugin": "^1.8.2",
  262. "http-interop/http-factory-tests": "^0.9",
  263. "phpunit/phpunit": "^8.5.36 || ^9.6.15"
  264. },
  265. "suggest": {
  266. "laminas/laminas-httphandlerrunner": "Emit PSR-7 responses"
  267. },
  268. "type": "library",
  269. "extra": {
  270. "bamarni-bin": {
  271. "bin-links": true,
  272. "forward-command": false
  273. }
  274. },
  275. "autoload": {
  276. "psr-4": {
  277. "GuzzleHttp\\Psr7\\": "src/"
  278. }
  279. },
  280. "notification-url": "https://packagist.org/downloads/",
  281. "license": [
  282. "MIT"
  283. ],
  284. "authors": [
  285. {
  286. "name": "Graham Campbell",
  287. "email": "hello@gjcampbell.co.uk",
  288. "homepage": "https://github.com/GrahamCampbell"
  289. },
  290. {
  291. "name": "Michael Dowling",
  292. "email": "mtdowling@gmail.com",
  293. "homepage": "https://github.com/mtdowling"
  294. },
  295. {
  296. "name": "George Mponos",
  297. "email": "gmponos@gmail.com",
  298. "homepage": "https://github.com/gmponos"
  299. },
  300. {
  301. "name": "Tobias Nyholm",
  302. "email": "tobias.nyholm@gmail.com",
  303. "homepage": "https://github.com/Nyholm"
  304. },
  305. {
  306. "name": "Márk Sági-Kazár",
  307. "email": "mark.sagikazar@gmail.com",
  308. "homepage": "https://github.com/sagikazarmark"
  309. },
  310. {
  311. "name": "Tobias Schultze",
  312. "email": "webmaster@tubo-world.de",
  313. "homepage": "https://github.com/Tobion"
  314. },
  315. {
  316. "name": "Márk Sági-Kazár",
  317. "email": "mark.sagikazar@gmail.com",
  318. "homepage": "https://sagikazarmark.hu"
  319. }
  320. ],
  321. "description": "PSR-7 message implementation that also provides common utility methods",
  322. "keywords": [
  323. "http",
  324. "message",
  325. "psr-7",
  326. "request",
  327. "response",
  328. "stream",
  329. "uri",
  330. "url"
  331. ],
  332. "support": {
  333. "issues": "https://github.com/guzzle/psr7/issues",
  334. "source": "https://github.com/guzzle/psr7/tree/2.6.2"
  335. },
  336. "funding": [
  337. {
  338. "url": "https://github.com/GrahamCampbell",
  339. "type": "github"
  340. },
  341. {
  342. "url": "https://github.com/Nyholm",
  343. "type": "github"
  344. },
  345. {
  346. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/psr7",
  347. "type": "tidelift"
  348. }
  349. ],
  350. "time": "2023-12-03T20:05:35+00:00"
  351. },
  352. {
  353. "name": "huaweicloud/huaweicloud-sdk-php",
  354. "version": "3.1.97",
  355. "source": {
  356. "type": "git",
  357. "url": "https://github.com/huaweicloud/huaweicloud-sdk-php-v3.git",
  358. "reference": "de565634d1c6116c54828f50eeb295d24f91d1ef"
  359. },
  360. "dist": {
  361. "type": "zip",
  362. "url": "https://api.github.com/repos/huaweicloud/huaweicloud-sdk-php-v3/zipball/de565634d1c6116c54828f50eeb295d24f91d1ef",
  363. "reference": "de565634d1c6116c54828f50eeb295d24f91d1ef",
  364. "shasum": "",
  365. "mirrors": [
  366. {
  367. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  368. "preferred": true
  369. }
  370. ]
  371. },
  372. "require": {
  373. "guzzlehttp/guzzle": ">=6.3.0",
  374. "guzzlehttp/promises": ">=1.3.1",
  375. "guzzlehttp/psr7": ">=1.4.2",
  376. "monolog/monolog": ">=2.4.0 || <= 2.9.0",
  377. "php": ">=5.6.0",
  378. "psr/http-message": ">=1.0.1"
  379. },
  380. "type": "library",
  381. "autoload": {
  382. "psr-4": {
  383. "HuaweiCloud\\SDK\\": "Services/",
  384. "HuaweiCloud\\SDK\\_As\\": "Services/As/",
  385. "HuaweiCloud\\SDK\\Core\\": "Core/src/"
  386. }
  387. },
  388. "notification-url": "https://packagist.org/downloads/",
  389. "license": [
  390. "Apache-2.0"
  391. ],
  392. "authors": [
  393. {
  394. "name": "HuaweiCloud_SDK",
  395. "email": "hwcloudsdk@huawei.com",
  396. "homepage": "https://sdkcenter.developer.huaweicloud.com/?language=PHP"
  397. }
  398. ],
  399. "description": "Huawei Cloud SDK for PHP",
  400. "keywords": [
  401. "api",
  402. "php",
  403. "rest",
  404. "sdk"
  405. ],
  406. "support": {
  407. "issues": "https://github.com/huaweicloud/huaweicloud-sdk-php-v3/issues",
  408. "source": "https://github.com/huaweicloud/huaweicloud-sdk-php-v3/tree/v3.1.97"
  409. },
  410. "time": "2024-06-14T13:37:50+00:00"
  411. },
  412. {
  413. "name": "league/flysystem",
  414. "version": "1.1.10",
  415. "source": {
  416. "type": "git",
  417. "url": "https://github.com/thephpleague/flysystem.git",
  418. "reference": "3239285c825c152bcc315fe0e87d6b55f5972ed1"
  419. },
  420. "dist": {
  421. "type": "zip",
  422. "url": "https://api.github.com/repos/thephpleague/flysystem/zipball/3239285c825c152bcc315fe0e87d6b55f5972ed1",
  423. "reference": "3239285c825c152bcc315fe0e87d6b55f5972ed1",
  424. "shasum": "",
  425. "mirrors": [
  426. {
  427. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  428. "preferred": true
  429. }
  430. ]
  431. },
  432. "require": {
  433. "ext-fileinfo": "*",
  434. "league/mime-type-detection": "^1.3",
  435. "php": "^7.2.5 || ^8.0"
  436. },
  437. "conflict": {
  438. "league/flysystem-sftp": "<1.0.6"
  439. },
  440. "require-dev": {
  441. "phpspec/prophecy": "^1.11.1",
  442. "phpunit/phpunit": "^8.5.8"
  443. },
  444. "suggest": {
  445. "ext-ftp": "Allows you to use FTP server storage",
  446. "ext-openssl": "Allows you to use FTPS server storage",
  447. "league/flysystem-aws-s3-v2": "Allows you to use S3 storage with AWS SDK v2",
  448. "league/flysystem-aws-s3-v3": "Allows you to use S3 storage with AWS SDK v3",
  449. "league/flysystem-azure": "Allows you to use Windows Azure Blob storage",
  450. "league/flysystem-cached-adapter": "Flysystem adapter decorator for metadata caching",
  451. "league/flysystem-eventable-filesystem": "Allows you to use EventableFilesystem",
  452. "league/flysystem-rackspace": "Allows you to use Rackspace Cloud Files",
  453. "league/flysystem-sftp": "Allows you to use SFTP server storage via phpseclib",
  454. "league/flysystem-webdav": "Allows you to use WebDAV storage",
  455. "league/flysystem-ziparchive": "Allows you to use ZipArchive adapter",
  456. "spatie/flysystem-dropbox": "Allows you to use Dropbox storage",
  457. "srmklive/flysystem-dropbox-v2": "Allows you to use Dropbox storage for PHP 5 applications"
  458. },
  459. "type": "library",
  460. "extra": {
  461. "branch-alias": {
  462. "dev-master": "1.1-dev"
  463. }
  464. },
  465. "autoload": {
  466. "psr-4": {
  467. "League\\Flysystem\\": "src/"
  468. }
  469. },
  470. "notification-url": "https://packagist.org/downloads/",
  471. "license": [
  472. "MIT"
  473. ],
  474. "authors": [
  475. {
  476. "name": "Frank de Jonge",
  477. "email": "info@frenky.net"
  478. }
  479. ],
  480. "description": "Filesystem abstraction: Many filesystems, one API.",
  481. "keywords": [
  482. "Cloud Files",
  483. "WebDAV",
  484. "abstraction",
  485. "aws",
  486. "cloud",
  487. "copy.com",
  488. "dropbox",
  489. "file systems",
  490. "files",
  491. "filesystem",
  492. "filesystems",
  493. "ftp",
  494. "rackspace",
  495. "remote",
  496. "s3",
  497. "sftp",
  498. "storage"
  499. ],
  500. "support": {
  501. "issues": "https://github.com/thephpleague/flysystem/issues",
  502. "source": "https://github.com/thephpleague/flysystem/tree/1.1.10"
  503. },
  504. "funding": [
  505. {
  506. "url": "https://offset.earth/frankdejonge",
  507. "type": "other"
  508. }
  509. ],
  510. "time": "2022-10-04T09:16:37+00:00"
  511. },
  512. {
  513. "name": "league/flysystem-cached-adapter",
  514. "version": "1.1.0",
  515. "source": {
  516. "type": "git",
  517. "url": "https://github.com/thephpleague/flysystem-cached-adapter.git",
  518. "reference": "d1925efb2207ac4be3ad0c40b8277175f99ffaff"
  519. },
  520. "dist": {
  521. "type": "zip",
  522. "url": "https://api.github.com/repos/thephpleague/flysystem-cached-adapter/zipball/d1925efb2207ac4be3ad0c40b8277175f99ffaff",
  523. "reference": "d1925efb2207ac4be3ad0c40b8277175f99ffaff",
  524. "shasum": "",
  525. "mirrors": [
  526. {
  527. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  528. "preferred": true
  529. }
  530. ]
  531. },
  532. "require": {
  533. "league/flysystem": "~1.0",
  534. "psr/cache": "^1.0.0"
  535. },
  536. "require-dev": {
  537. "mockery/mockery": "~0.9",
  538. "phpspec/phpspec": "^3.4",
  539. "phpunit/phpunit": "^5.7",
  540. "predis/predis": "~1.0",
  541. "tedivm/stash": "~0.12"
  542. },
  543. "suggest": {
  544. "ext-phpredis": "Pure C implemented extension for PHP"
  545. },
  546. "type": "library",
  547. "autoload": {
  548. "psr-4": {
  549. "League\\Flysystem\\Cached\\": "src/"
  550. }
  551. },
  552. "notification-url": "https://packagist.org/downloads/",
  553. "license": [
  554. "MIT"
  555. ],
  556. "authors": [
  557. {
  558. "name": "frankdejonge",
  559. "email": "info@frenky.net"
  560. }
  561. ],
  562. "description": "An adapter decorator to enable meta-data caching.",
  563. "support": {
  564. "issues": "https://github.com/thephpleague/flysystem-cached-adapter/issues",
  565. "source": "https://github.com/thephpleague/flysystem-cached-adapter/tree/master"
  566. },
  567. "time": "2020-07-25T15:56:04+00:00"
  568. },
  569. {
  570. "name": "league/mime-type-detection",
  571. "version": "1.12.0",
  572. "source": {
  573. "type": "git",
  574. "url": "https://github.com/thephpleague/mime-type-detection.git",
  575. "reference": "c7f2872fb273bf493811473dafc88d60ae829f48"
  576. },
  577. "dist": {
  578. "type": "zip",
  579. "url": "https://api.github.com/repos/thephpleague/mime-type-detection/zipball/c7f2872fb273bf493811473dafc88d60ae829f48",
  580. "reference": "c7f2872fb273bf493811473dafc88d60ae829f48",
  581. "shasum": "",
  582. "mirrors": [
  583. {
  584. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  585. "preferred": true
  586. }
  587. ]
  588. },
  589. "require": {
  590. "ext-fileinfo": "*",
  591. "php": "^7.2 || ^8.0"
  592. },
  593. "require-dev": {
  594. "friendsofphp/php-cs-fixer": "^3.2",
  595. "phpstan/phpstan": "^0.12.68",
  596. "phpunit/phpunit": "^8.5.8 || ^9.3"
  597. },
  598. "type": "library",
  599. "autoload": {
  600. "psr-4": {
  601. "League\\MimeTypeDetection\\": "src"
  602. }
  603. },
  604. "notification-url": "https://packagist.org/downloads/",
  605. "license": [
  606. "MIT"
  607. ],
  608. "authors": [
  609. {
  610. "name": "Frank de Jonge",
  611. "email": "info@frankdejonge.nl"
  612. }
  613. ],
  614. "description": "Mime-type detection for Flysystem",
  615. "support": {
  616. "issues": "https://github.com/thephpleague/mime-type-detection/issues",
  617. "source": "https://github.com/thephpleague/mime-type-detection/tree/1.12.0"
  618. },
  619. "funding": [
  620. {
  621. "url": "https://github.com/frankdejonge",
  622. "type": "github"
  623. },
  624. {
  625. "url": "https://tidelift.com/funding/github/packagist/league/flysystem",
  626. "type": "tidelift"
  627. }
  628. ],
  629. "time": "2023-08-03T07:14:11+00:00"
  630. },
  631. {
  632. "name": "monolog/monolog",
  633. "version": "2.9.3",
  634. "source": {
  635. "type": "git",
  636. "url": "https://github.com/Seldaek/monolog.git",
  637. "reference": "a30bfe2e142720dfa990d0a7e573997f5d884215"
  638. },
  639. "dist": {
  640. "type": "zip",
  641. "url": "https://api.github.com/repos/Seldaek/monolog/zipball/a30bfe2e142720dfa990d0a7e573997f5d884215",
  642. "reference": "a30bfe2e142720dfa990d0a7e573997f5d884215",
  643. "shasum": "",
  644. "mirrors": [
  645. {
  646. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  647. "preferred": true
  648. }
  649. ]
  650. },
  651. "require": {
  652. "php": ">=7.2",
  653. "psr/log": "^1.0.1 || ^2.0 || ^3.0"
  654. },
  655. "provide": {
  656. "psr/log-implementation": "1.0.0 || 2.0.0 || 3.0.0"
  657. },
  658. "require-dev": {
  659. "aws/aws-sdk-php": "^2.4.9 || ^3.0",
  660. "doctrine/couchdb": "~1.0@dev",
  661. "elasticsearch/elasticsearch": "^7 || ^8",
  662. "ext-json": "*",
  663. "graylog2/gelf-php": "^1.4.2 || ^2@dev",
  664. "guzzlehttp/guzzle": "^7.4",
  665. "guzzlehttp/psr7": "^2.2",
  666. "mongodb/mongodb": "^1.8",
  667. "php-amqplib/php-amqplib": "~2.4 || ^3",
  668. "phpspec/prophecy": "^1.15",
  669. "phpstan/phpstan": "^1.10",
  670. "phpunit/phpunit": "^8.5.38 || ^9.6.19",
  671. "predis/predis": "^1.1 || ^2.0",
  672. "rollbar/rollbar": "^1.3 || ^2 || ^3",
  673. "ruflin/elastica": "^7",
  674. "swiftmailer/swiftmailer": "^5.3|^6.0",
  675. "symfony/mailer": "^5.4 || ^6",
  676. "symfony/mime": "^5.4 || ^6"
  677. },
  678. "suggest": {
  679. "aws/aws-sdk-php": "Allow sending log messages to AWS services like DynamoDB",
  680. "doctrine/couchdb": "Allow sending log messages to a CouchDB server",
  681. "elasticsearch/elasticsearch": "Allow sending log messages to an Elasticsearch server via official client",
  682. "ext-amqp": "Allow sending log messages to an AMQP server (1.0+ required)",
  683. "ext-curl": "Required to send log messages using the IFTTTHandler, the LogglyHandler, the SendGridHandler, the SlackWebhookHandler or the TelegramBotHandler",
  684. "ext-mbstring": "Allow to work properly with unicode symbols",
  685. "ext-mongodb": "Allow sending log messages to a MongoDB server (via driver)",
  686. "ext-openssl": "Required to send log messages using SSL",
  687. "ext-sockets": "Allow sending log messages to a Syslog server (via UDP driver)",
  688. "graylog2/gelf-php": "Allow sending log messages to a GrayLog2 server",
  689. "mongodb/mongodb": "Allow sending log messages to a MongoDB server (via library)",
  690. "php-amqplib/php-amqplib": "Allow sending log messages to an AMQP server using php-amqplib",
  691. "rollbar/rollbar": "Allow sending log messages to Rollbar",
  692. "ruflin/elastica": "Allow sending log messages to an Elastic Search server"
  693. },
  694. "type": "library",
  695. "extra": {
  696. "branch-alias": {
  697. "dev-main": "2.x-dev"
  698. }
  699. },
  700. "autoload": {
  701. "psr-4": {
  702. "Monolog\\": "src/Monolog"
  703. }
  704. },
  705. "notification-url": "https://packagist.org/downloads/",
  706. "license": [
  707. "MIT"
  708. ],
  709. "authors": [
  710. {
  711. "name": "Jordi Boggiano",
  712. "email": "j.boggiano@seld.be",
  713. "homepage": "https://seld.be"
  714. }
  715. ],
  716. "description": "Sends your logs to files, sockets, inboxes, databases and various web services",
  717. "homepage": "https://github.com/Seldaek/monolog",
  718. "keywords": [
  719. "log",
  720. "logging",
  721. "psr-3"
  722. ],
  723. "support": {
  724. "issues": "https://github.com/Seldaek/monolog/issues",
  725. "source": "https://github.com/Seldaek/monolog/tree/2.9.3"
  726. },
  727. "funding": [
  728. {
  729. "url": "https://github.com/Seldaek",
  730. "type": "github"
  731. },
  732. {
  733. "url": "https://tidelift.com/funding/github/packagist/monolog/monolog",
  734. "type": "tidelift"
  735. }
  736. ],
  737. "time": "2024-04-12T20:52:51+00:00"
  738. },
  739. {
  740. "name": "psr/cache",
  741. "version": "1.0.1",
  742. "source": {
  743. "type": "git",
  744. "url": "https://github.com/php-fig/cache.git",
  745. "reference": "d11b50ad223250cf17b86e38383413f5a6764bf8"
  746. },
  747. "dist": {
  748. "type": "zip",
  749. "url": "https://api.github.com/repos/php-fig/cache/zipball/d11b50ad223250cf17b86e38383413f5a6764bf8",
  750. "reference": "d11b50ad223250cf17b86e38383413f5a6764bf8",
  751. "shasum": "",
  752. "mirrors": [
  753. {
  754. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  755. "preferred": true
  756. }
  757. ]
  758. },
  759. "require": {
  760. "php": ">=5.3.0"
  761. },
  762. "type": "library",
  763. "extra": {
  764. "branch-alias": {
  765. "dev-master": "1.0.x-dev"
  766. }
  767. },
  768. "autoload": {
  769. "psr-4": {
  770. "Psr\\Cache\\": "src/"
  771. }
  772. },
  773. "notification-url": "https://packagist.org/downloads/",
  774. "license": [
  775. "MIT"
  776. ],
  777. "authors": [
  778. {
  779. "name": "PHP-FIG",
  780. "homepage": "http://www.php-fig.org/"
  781. }
  782. ],
  783. "description": "Common interface for caching libraries",
  784. "keywords": [
  785. "cache",
  786. "psr",
  787. "psr-6"
  788. ],
  789. "support": {
  790. "source": "https://github.com/php-fig/cache/tree/master"
  791. },
  792. "time": "2016-08-06T20:24:11+00:00"
  793. },
  794. {
  795. "name": "psr/container",
  796. "version": "1.1.1",
  797. "source": {
  798. "type": "git",
  799. "url": "https://github.com/php-fig/container.git",
  800. "reference": "8622567409010282b7aeebe4bb841fe98b58dcaf"
  801. },
  802. "dist": {
  803. "type": "zip",
  804. "url": "https://api.github.com/repos/php-fig/container/zipball/8622567409010282b7aeebe4bb841fe98b58dcaf",
  805. "reference": "8622567409010282b7aeebe4bb841fe98b58dcaf",
  806. "shasum": "",
  807. "mirrors": [
  808. {
  809. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  810. "preferred": true
  811. }
  812. ]
  813. },
  814. "require": {
  815. "php": ">=7.2.0"
  816. },
  817. "type": "library",
  818. "autoload": {
  819. "psr-4": {
  820. "Psr\\Container\\": "src/"
  821. }
  822. },
  823. "notification-url": "https://packagist.org/downloads/",
  824. "license": [
  825. "MIT"
  826. ],
  827. "authors": [
  828. {
  829. "name": "PHP-FIG",
  830. "homepage": "https://www.php-fig.org/"
  831. }
  832. ],
  833. "description": "Common Container Interface (PHP FIG PSR-11)",
  834. "homepage": "https://github.com/php-fig/container",
  835. "keywords": [
  836. "PSR-11",
  837. "container",
  838. "container-interface",
  839. "container-interop",
  840. "psr"
  841. ],
  842. "support": {
  843. "issues": "https://github.com/php-fig/container/issues",
  844. "source": "https://github.com/php-fig/container/tree/1.1.1"
  845. },
  846. "time": "2021-03-05T17:36:06+00:00"
  847. },
  848. {
  849. "name": "psr/http-client",
  850. "version": "1.0.3",
  851. "source": {
  852. "type": "git",
  853. "url": "https://github.com/php-fig/http-client.git",
  854. "reference": "bb5906edc1c324c9a05aa0873d40117941e5fa90"
  855. },
  856. "dist": {
  857. "type": "zip",
  858. "url": "https://api.github.com/repos/php-fig/http-client/zipball/bb5906edc1c324c9a05aa0873d40117941e5fa90",
  859. "reference": "bb5906edc1c324c9a05aa0873d40117941e5fa90",
  860. "shasum": "",
  861. "mirrors": [
  862. {
  863. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  864. "preferred": true
  865. }
  866. ]
  867. },
  868. "require": {
  869. "php": "^7.0 || ^8.0",
  870. "psr/http-message": "^1.0 || ^2.0"
  871. },
  872. "type": "library",
  873. "extra": {
  874. "branch-alias": {
  875. "dev-master": "1.0.x-dev"
  876. }
  877. },
  878. "autoload": {
  879. "psr-4": {
  880. "Psr\\Http\\Client\\": "src/"
  881. }
  882. },
  883. "notification-url": "https://packagist.org/downloads/",
  884. "license": [
  885. "MIT"
  886. ],
  887. "authors": [
  888. {
  889. "name": "PHP-FIG",
  890. "homepage": "https://www.php-fig.org/"
  891. }
  892. ],
  893. "description": "Common interface for HTTP clients",
  894. "homepage": "https://github.com/php-fig/http-client",
  895. "keywords": [
  896. "http",
  897. "http-client",
  898. "psr",
  899. "psr-18"
  900. ],
  901. "support": {
  902. "source": "https://github.com/php-fig/http-client"
  903. },
  904. "time": "2023-09-23T14:17:50+00:00"
  905. },
  906. {
  907. "name": "psr/http-factory",
  908. "version": "1.0.2",
  909. "source": {
  910. "type": "git",
  911. "url": "https://github.com/php-fig/http-factory.git",
  912. "reference": "e616d01114759c4c489f93b099585439f795fe35"
  913. },
  914. "dist": {
  915. "type": "zip",
  916. "url": "https://api.github.com/repos/php-fig/http-factory/zipball/e616d01114759c4c489f93b099585439f795fe35",
  917. "reference": "e616d01114759c4c489f93b099585439f795fe35",
  918. "shasum": "",
  919. "mirrors": [
  920. {
  921. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  922. "preferred": true
  923. }
  924. ]
  925. },
  926. "require": {
  927. "php": ">=7.0.0",
  928. "psr/http-message": "^1.0 || ^2.0"
  929. },
  930. "type": "library",
  931. "extra": {
  932. "branch-alias": {
  933. "dev-master": "1.0.x-dev"
  934. }
  935. },
  936. "autoload": {
  937. "psr-4": {
  938. "Psr\\Http\\Message\\": "src/"
  939. }
  940. },
  941. "notification-url": "https://packagist.org/downloads/",
  942. "license": [
  943. "MIT"
  944. ],
  945. "authors": [
  946. {
  947. "name": "PHP-FIG",
  948. "homepage": "https://www.php-fig.org/"
  949. }
  950. ],
  951. "description": "Common interfaces for PSR-7 HTTP message factories",
  952. "keywords": [
  953. "factory",
  954. "http",
  955. "message",
  956. "psr",
  957. "psr-17",
  958. "psr-7",
  959. "request",
  960. "response"
  961. ],
  962. "support": {
  963. "source": "https://github.com/php-fig/http-factory/tree/1.0.2"
  964. },
  965. "time": "2023-04-10T20:10:41+00:00"
  966. },
  967. {
  968. "name": "psr/http-message",
  969. "version": "1.1",
  970. "source": {
  971. "type": "git",
  972. "url": "https://github.com/php-fig/http-message.git",
  973. "reference": "cb6ce4845ce34a8ad9e68117c10ee90a29919eba"
  974. },
  975. "dist": {
  976. "type": "zip",
  977. "url": "https://api.github.com/repos/php-fig/http-message/zipball/cb6ce4845ce34a8ad9e68117c10ee90a29919eba",
  978. "reference": "cb6ce4845ce34a8ad9e68117c10ee90a29919eba",
  979. "shasum": "",
  980. "mirrors": [
  981. {
  982. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  983. "preferred": true
  984. }
  985. ]
  986. },
  987. "require": {
  988. "php": "^7.2 || ^8.0"
  989. },
  990. "type": "library",
  991. "extra": {
  992. "branch-alias": {
  993. "dev-master": "1.1.x-dev"
  994. }
  995. },
  996. "autoload": {
  997. "psr-4": {
  998. "Psr\\Http\\Message\\": "src/"
  999. }
  1000. },
  1001. "notification-url": "https://packagist.org/downloads/",
  1002. "license": [
  1003. "MIT"
  1004. ],
  1005. "authors": [
  1006. {
  1007. "name": "PHP-FIG",
  1008. "homepage": "http://www.php-fig.org/"
  1009. }
  1010. ],
  1011. "description": "Common interface for HTTP messages",
  1012. "homepage": "https://github.com/php-fig/http-message",
  1013. "keywords": [
  1014. "http",
  1015. "http-message",
  1016. "psr",
  1017. "psr-7",
  1018. "request",
  1019. "response"
  1020. ],
  1021. "support": {
  1022. "source": "https://github.com/php-fig/http-message/tree/1.1"
  1023. },
  1024. "time": "2023-04-04T09:50:52+00:00"
  1025. },
  1026. {
  1027. "name": "psr/log",
  1028. "version": "1.1.4",
  1029. "source": {
  1030. "type": "git",
  1031. "url": "https://github.com/php-fig/log.git",
  1032. "reference": "d49695b909c3b7628b6289db5479a1c204601f11"
  1033. },
  1034. "dist": {
  1035. "type": "zip",
  1036. "url": "https://api.github.com/repos/php-fig/log/zipball/d49695b909c3b7628b6289db5479a1c204601f11",
  1037. "reference": "d49695b909c3b7628b6289db5479a1c204601f11",
  1038. "shasum": "",
  1039. "mirrors": [
  1040. {
  1041. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1042. "preferred": true
  1043. }
  1044. ]
  1045. },
  1046. "require": {
  1047. "php": ">=5.3.0"
  1048. },
  1049. "type": "library",
  1050. "extra": {
  1051. "branch-alias": {
  1052. "dev-master": "1.1.x-dev"
  1053. }
  1054. },
  1055. "autoload": {
  1056. "psr-4": {
  1057. "Psr\\Log\\": "Psr/Log/"
  1058. }
  1059. },
  1060. "notification-url": "https://packagist.org/downloads/",
  1061. "license": [
  1062. "MIT"
  1063. ],
  1064. "authors": [
  1065. {
  1066. "name": "PHP-FIG",
  1067. "homepage": "https://www.php-fig.org/"
  1068. }
  1069. ],
  1070. "description": "Common interface for logging libraries",
  1071. "homepage": "https://github.com/php-fig/log",
  1072. "keywords": [
  1073. "log",
  1074. "psr",
  1075. "psr-3"
  1076. ],
  1077. "support": {
  1078. "source": "https://github.com/php-fig/log/tree/1.1.4"
  1079. },
  1080. "time": "2021-05-03T11:20:27+00:00"
  1081. },
  1082. {
  1083. "name": "psr/simple-cache",
  1084. "version": "1.0.1",
  1085. "source": {
  1086. "type": "git",
  1087. "url": "https://github.com/php-fig/simple-cache.git",
  1088. "reference": "408d5eafb83c57f6365a3ca330ff23aa4a5fa39b"
  1089. },
  1090. "dist": {
  1091. "type": "zip",
  1092. "url": "https://api.github.com/repos/php-fig/simple-cache/zipball/408d5eafb83c57f6365a3ca330ff23aa4a5fa39b",
  1093. "reference": "408d5eafb83c57f6365a3ca330ff23aa4a5fa39b",
  1094. "shasum": "",
  1095. "mirrors": [
  1096. {
  1097. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1098. "preferred": true
  1099. }
  1100. ]
  1101. },
  1102. "require": {
  1103. "php": ">=5.3.0"
  1104. },
  1105. "type": "library",
  1106. "extra": {
  1107. "branch-alias": {
  1108. "dev-master": "1.0.x-dev"
  1109. }
  1110. },
  1111. "autoload": {
  1112. "psr-4": {
  1113. "Psr\\SimpleCache\\": "src/"
  1114. }
  1115. },
  1116. "notification-url": "https://packagist.org/downloads/",
  1117. "license": [
  1118. "MIT"
  1119. ],
  1120. "authors": [
  1121. {
  1122. "name": "PHP-FIG",
  1123. "homepage": "http://www.php-fig.org/"
  1124. }
  1125. ],
  1126. "description": "Common interfaces for simple caching",
  1127. "keywords": [
  1128. "cache",
  1129. "caching",
  1130. "psr",
  1131. "psr-16",
  1132. "simple-cache"
  1133. ],
  1134. "support": {
  1135. "source": "https://github.com/php-fig/simple-cache/tree/master"
  1136. },
  1137. "time": "2017-10-23T01:57:42+00:00"
  1138. },
  1139. {
  1140. "name": "ralouphie/getallheaders",
  1141. "version": "3.0.3",
  1142. "source": {
  1143. "type": "git",
  1144. "url": "https://github.com/ralouphie/getallheaders.git",
  1145. "reference": "120b605dfeb996808c31b6477290a714d356e822"
  1146. },
  1147. "dist": {
  1148. "type": "zip",
  1149. "url": "https://api.github.com/repos/ralouphie/getallheaders/zipball/120b605dfeb996808c31b6477290a714d356e822",
  1150. "reference": "120b605dfeb996808c31b6477290a714d356e822",
  1151. "shasum": "",
  1152. "mirrors": [
  1153. {
  1154. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1155. "preferred": true
  1156. }
  1157. ]
  1158. },
  1159. "require": {
  1160. "php": ">=5.6"
  1161. },
  1162. "require-dev": {
  1163. "php-coveralls/php-coveralls": "^2.1",
  1164. "phpunit/phpunit": "^5 || ^6.5"
  1165. },
  1166. "type": "library",
  1167. "autoload": {
  1168. "files": [
  1169. "src/getallheaders.php"
  1170. ]
  1171. },
  1172. "notification-url": "https://packagist.org/downloads/",
  1173. "license": [
  1174. "MIT"
  1175. ],
  1176. "authors": [
  1177. {
  1178. "name": "Ralph Khattar",
  1179. "email": "ralph.khattar@gmail.com"
  1180. }
  1181. ],
  1182. "description": "A polyfill for getallheaders.",
  1183. "support": {
  1184. "issues": "https://github.com/ralouphie/getallheaders/issues",
  1185. "source": "https://github.com/ralouphie/getallheaders/tree/develop"
  1186. },
  1187. "time": "2019-03-08T08:55:37+00:00"
  1188. },
  1189. {
  1190. "name": "symfony/deprecation-contracts",
  1191. "version": "v2.5.2",
  1192. "source": {
  1193. "type": "git",
  1194. "url": "https://github.com/symfony/deprecation-contracts.git",
  1195. "reference": "e8b495ea28c1d97b5e0c121748d6f9b53d075c66"
  1196. },
  1197. "dist": {
  1198. "type": "zip",
  1199. "url": "https://api.github.com/repos/symfony/deprecation-contracts/zipball/e8b495ea28c1d97b5e0c121748d6f9b53d075c66",
  1200. "reference": "e8b495ea28c1d97b5e0c121748d6f9b53d075c66",
  1201. "shasum": "",
  1202. "mirrors": [
  1203. {
  1204. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1205. "preferred": true
  1206. }
  1207. ]
  1208. },
  1209. "require": {
  1210. "php": ">=7.1"
  1211. },
  1212. "type": "library",
  1213. "extra": {
  1214. "branch-alias": {
  1215. "dev-main": "2.5-dev"
  1216. },
  1217. "thanks": {
  1218. "name": "symfony/contracts",
  1219. "url": "https://github.com/symfony/contracts"
  1220. }
  1221. },
  1222. "autoload": {
  1223. "files": [
  1224. "function.php"
  1225. ]
  1226. },
  1227. "notification-url": "https://packagist.org/downloads/",
  1228. "license": [
  1229. "MIT"
  1230. ],
  1231. "authors": [
  1232. {
  1233. "name": "Nicolas Grekas",
  1234. "email": "p@tchwork.com"
  1235. },
  1236. {
  1237. "name": "Symfony Community",
  1238. "homepage": "https://symfony.com/contributors"
  1239. }
  1240. ],
  1241. "description": "A generic function and convention to trigger deprecation notices",
  1242. "homepage": "https://symfony.com",
  1243. "support": {
  1244. "source": "https://github.com/symfony/deprecation-contracts/tree/v2.5.2"
  1245. },
  1246. "funding": [
  1247. {
  1248. "url": "https://symfony.com/sponsor",
  1249. "type": "custom"
  1250. },
  1251. {
  1252. "url": "https://github.com/fabpot",
  1253. "type": "github"
  1254. },
  1255. {
  1256. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  1257. "type": "tidelift"
  1258. }
  1259. ],
  1260. "time": "2022-01-02T09:53:40+00:00"
  1261. },
  1262. {
  1263. "name": "topthink/framework",
  1264. "version": "v6.1.4",
  1265. "source": {
  1266. "type": "git",
  1267. "url": "https://github.com/top-think/framework.git",
  1268. "reference": "66eb9cf4d627df12911344cd328faf9bb596bf2c"
  1269. },
  1270. "dist": {
  1271. "type": "zip",
  1272. "url": "https://api.github.com/repos/top-think/framework/zipball/66eb9cf4d627df12911344cd328faf9bb596bf2c",
  1273. "reference": "66eb9cf4d627df12911344cd328faf9bb596bf2c",
  1274. "shasum": "",
  1275. "mirrors": [
  1276. {
  1277. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1278. "preferred": true
  1279. }
  1280. ]
  1281. },
  1282. "require": {
  1283. "ext-json": "*",
  1284. "ext-mbstring": "*",
  1285. "php": ">=7.2.5",
  1286. "psr/container": "~1.0",
  1287. "psr/http-message": "^1.0",
  1288. "psr/log": "~1.0",
  1289. "psr/simple-cache": "^1.0",
  1290. "topthink/think-helper": "^3.1.1",
  1291. "topthink/think-orm": "^2.0|^3.0"
  1292. },
  1293. "require-dev": {
  1294. "guzzlehttp/psr7": "^2.1.0",
  1295. "mikey179/vfsstream": "^1.6",
  1296. "mockery/mockery": "^1.2",
  1297. "phpunit/phpunit": "^7.0"
  1298. },
  1299. "type": "library",
  1300. "autoload": {
  1301. "files": [],
  1302. "psr-4": {
  1303. "think\\": "src/think/"
  1304. }
  1305. },
  1306. "notification-url": "https://packagist.org/downloads/",
  1307. "license": [
  1308. "Apache-2.0"
  1309. ],
  1310. "authors": [
  1311. {
  1312. "name": "liu21st",
  1313. "email": "liu21st@gmail.com"
  1314. },
  1315. {
  1316. "name": "yunwuxin",
  1317. "email": "448901948@qq.com"
  1318. }
  1319. ],
  1320. "description": "The ThinkPHP Framework.",
  1321. "homepage": "http://thinkphp.cn/",
  1322. "keywords": [
  1323. "framework",
  1324. "orm",
  1325. "thinkphp"
  1326. ],
  1327. "support": {
  1328. "issues": "https://github.com/top-think/framework/issues",
  1329. "source": "https://github.com/top-think/framework/tree/v6.1.4"
  1330. },
  1331. "time": "2023-07-11T15:16:03+00:00"
  1332. },
  1333. {
  1334. "name": "topthink/think-filesystem",
  1335. "version": "v1.0.3",
  1336. "source": {
  1337. "type": "git",
  1338. "url": "https://github.com/top-think/think-filesystem.git",
  1339. "reference": "29f19f140a9267c717fecd7ccb22c84c2d72382e"
  1340. },
  1341. "dist": {
  1342. "type": "zip",
  1343. "url": "https://api.github.com/repos/top-think/think-filesystem/zipball/29f19f140a9267c717fecd7ccb22c84c2d72382e",
  1344. "reference": "29f19f140a9267c717fecd7ccb22c84c2d72382e",
  1345. "shasum": "",
  1346. "mirrors": [
  1347. {
  1348. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1349. "preferred": true
  1350. }
  1351. ]
  1352. },
  1353. "require": {
  1354. "league/flysystem": "^1.1.4",
  1355. "league/flysystem-cached-adapter": "^1.0",
  1356. "php": ">=7.2.5",
  1357. "topthink/framework": "^6.1|^8.0"
  1358. },
  1359. "require-dev": {
  1360. "mikey179/vfsstream": "^1.6",
  1361. "mockery/mockery": "^1.2",
  1362. "phpunit/phpunit": "^8.0"
  1363. },
  1364. "type": "library",
  1365. "autoload": {
  1366. "psr-4": {
  1367. "think\\": "src"
  1368. }
  1369. },
  1370. "notification-url": "https://packagist.org/downloads/",
  1371. "license": [
  1372. "Apache-2.0"
  1373. ],
  1374. "authors": [
  1375. {
  1376. "name": "yunwuxin",
  1377. "email": "448901948@qq.com"
  1378. }
  1379. ],
  1380. "description": "The ThinkPHP6.1 Filesystem Package",
  1381. "support": {
  1382. "issues": "https://github.com/top-think/think-filesystem/issues",
  1383. "source": "https://github.com/top-think/think-filesystem/tree/v1.0.3"
  1384. },
  1385. "time": "2023-02-08T01:25:15+00:00"
  1386. },
  1387. {
  1388. "name": "topthink/think-helper",
  1389. "version": "v3.1.6",
  1390. "source": {
  1391. "type": "git",
  1392. "url": "https://github.com/top-think/think-helper.git",
  1393. "reference": "769acbe50a4274327162f9c68ec2e89a38eb2aff"
  1394. },
  1395. "dist": {
  1396. "type": "zip",
  1397. "url": "https://api.github.com/repos/top-think/think-helper/zipball/769acbe50a4274327162f9c68ec2e89a38eb2aff",
  1398. "reference": "769acbe50a4274327162f9c68ec2e89a38eb2aff",
  1399. "shasum": "",
  1400. "mirrors": [
  1401. {
  1402. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1403. "preferred": true
  1404. }
  1405. ]
  1406. },
  1407. "require": {
  1408. "php": ">=7.1.0"
  1409. },
  1410. "require-dev": {
  1411. "phpunit/phpunit": "^9.5"
  1412. },
  1413. "type": "library",
  1414. "autoload": {
  1415. "files": [
  1416. "src/helper.php"
  1417. ],
  1418. "psr-4": {
  1419. "think\\": "src"
  1420. }
  1421. },
  1422. "notification-url": "https://packagist.org/downloads/",
  1423. "license": [
  1424. "Apache-2.0"
  1425. ],
  1426. "authors": [
  1427. {
  1428. "name": "yunwuxin",
  1429. "email": "448901948@qq.com"
  1430. }
  1431. ],
  1432. "description": "The ThinkPHP6 Helper Package",
  1433. "support": {
  1434. "issues": "https://github.com/top-think/think-helper/issues",
  1435. "source": "https://github.com/top-think/think-helper/tree/v3.1.6"
  1436. },
  1437. "time": "2021-12-15T04:27:55+00:00"
  1438. },
  1439. {
  1440. "name": "topthink/think-multi-app",
  1441. "version": "v1.0.17",
  1442. "source": {
  1443. "type": "git",
  1444. "url": "https://github.com/top-think/think-multi-app.git",
  1445. "reference": "4055a6187296ac16c0bc7bbab4ed5d92f82f791c"
  1446. },
  1447. "dist": {
  1448. "type": "zip",
  1449. "url": "https://api.github.com/repos/top-think/think-multi-app/zipball/4055a6187296ac16c0bc7bbab4ed5d92f82f791c",
  1450. "reference": "4055a6187296ac16c0bc7bbab4ed5d92f82f791c",
  1451. "shasum": "",
  1452. "mirrors": [
  1453. {
  1454. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1455. "preferred": true
  1456. }
  1457. ]
  1458. },
  1459. "require": {
  1460. "php": ">=7.1.0",
  1461. "topthink/framework": "^6.0|^8.0"
  1462. },
  1463. "type": "library",
  1464. "extra": {
  1465. "think": {
  1466. "services": [
  1467. "think\\app\\Service"
  1468. ]
  1469. }
  1470. },
  1471. "autoload": {
  1472. "psr-4": {
  1473. "think\\app\\": "src"
  1474. }
  1475. },
  1476. "notification-url": "https://packagist.org/downloads/",
  1477. "license": [
  1478. "Apache-2.0"
  1479. ],
  1480. "authors": [
  1481. {
  1482. "name": "liu21st",
  1483. "email": "liu21st@gmail.com"
  1484. }
  1485. ],
  1486. "description": "thinkphp multi app support",
  1487. "support": {
  1488. "issues": "https://github.com/top-think/think-multi-app/issues",
  1489. "source": "https://github.com/top-think/think-multi-app/tree/v1.0.17"
  1490. },
  1491. "time": "2023-03-29T02:04:29+00:00"
  1492. },
  1493. {
  1494. "name": "topthink/think-orm",
  1495. "version": "v2.0.61",
  1496. "source": {
  1497. "type": "git",
  1498. "url": "https://github.com/top-think/think-orm.git",
  1499. "reference": "10528ebf4a5106b19c3bac9c6deae7a67ff49de6"
  1500. },
  1501. "dist": {
  1502. "type": "zip",
  1503. "url": "https://api.github.com/repos/top-think/think-orm/zipball/10528ebf4a5106b19c3bac9c6deae7a67ff49de6",
  1504. "reference": "10528ebf4a5106b19c3bac9c6deae7a67ff49de6",
  1505. "shasum": "",
  1506. "mirrors": [
  1507. {
  1508. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1509. "preferred": true
  1510. }
  1511. ]
  1512. },
  1513. "require": {
  1514. "ext-json": "*",
  1515. "ext-pdo": "*",
  1516. "php": ">=7.1.0",
  1517. "psr/log": "^1.0|^2.0",
  1518. "psr/simple-cache": "^1.0|^2.0",
  1519. "topthink/think-helper": "^3.1"
  1520. },
  1521. "require-dev": {
  1522. "phpunit/phpunit": "^7|^8|^9.5"
  1523. },
  1524. "type": "library",
  1525. "autoload": {
  1526. "files": [
  1527. "stubs/load_stubs.php"
  1528. ],
  1529. "psr-4": {
  1530. "think\\": "src"
  1531. }
  1532. },
  1533. "notification-url": "https://packagist.org/downloads/",
  1534. "license": [
  1535. "Apache-2.0"
  1536. ],
  1537. "authors": [
  1538. {
  1539. "name": "liu21st",
  1540. "email": "liu21st@gmail.com"
  1541. }
  1542. ],
  1543. "description": "think orm",
  1544. "keywords": [
  1545. "database",
  1546. "orm"
  1547. ],
  1548. "support": {
  1549. "issues": "https://github.com/top-think/think-orm/issues",
  1550. "source": "https://github.com/top-think/think-orm/tree/v2.0.61"
  1551. },
  1552. "time": "2023-04-20T14:27:51+00:00"
  1553. },
  1554. {
  1555. "name": "topthink/think-swoole",
  1556. "version": "v2.0.0",
  1557. "source": {
  1558. "type": "git",
  1559. "url": "https://github.com/top-think/think-swoole.git",
  1560. "reference": "501a2f104ac39db82414f79749adc8f032273613"
  1561. },
  1562. "dist": {
  1563. "type": "zip",
  1564. "url": "https://api.github.com/repos/top-think/think-swoole/zipball/501a2f104ac39db82414f79749adc8f032273613",
  1565. "reference": "501a2f104ac39db82414f79749adc8f032273613",
  1566. "shasum": "",
  1567. "mirrors": [
  1568. {
  1569. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1570. "preferred": true
  1571. }
  1572. ]
  1573. },
  1574. "require": {
  1575. "ext-swoole": ">=1.8"
  1576. },
  1577. "type": "library",
  1578. "autoload": {
  1579. "files": [],
  1580. "psr-4": {
  1581. "think\\swoole\\": "src"
  1582. }
  1583. },
  1584. "notification-url": "https://packagist.org/downloads/",
  1585. "license": [
  1586. "Apache-2.0"
  1587. ],
  1588. "authors": [
  1589. {
  1590. "name": "liu21st",
  1591. "email": "liu21st@gmail.com"
  1592. }
  1593. ],
  1594. "description": "Swoole extend for thinkphp5",
  1595. "support": {
  1596. "issues": "https://github.com/top-think/think-swoole/issues",
  1597. "source": "https://github.com/top-think/think-swoole/tree/2.0"
  1598. },
  1599. "time": "2018-06-22T08:21:06+00:00"
  1600. },
  1601. {
  1602. "name": "youzanyun/open-sdk",
  1603. "version": "2.0.32",
  1604. "source": {
  1605. "type": "git",
  1606. "url": "https://github.com/youzan/open-sdk-php.git",
  1607. "reference": "5af1abe947aa710afaa5eab869bc805aeb0a76b4"
  1608. },
  1609. "dist": {
  1610. "type": "zip",
  1611. "url": "https://api.github.com/repos/youzan/open-sdk-php/zipball/5af1abe947aa710afaa5eab869bc805aeb0a76b4",
  1612. "reference": "5af1abe947aa710afaa5eab869bc805aeb0a76b4",
  1613. "shasum": "",
  1614. "mirrors": [
  1615. {
  1616. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1617. "preferred": true
  1618. }
  1619. ]
  1620. },
  1621. "require": {
  1622. "ext-curl": "*",
  1623. "ext-json": "*",
  1624. "ext-openssl": "*",
  1625. "guzzlehttp/guzzle": "^6.3|^7.0"
  1626. },
  1627. "type": "library",
  1628. "autoload": {
  1629. "psr-4": {
  1630. "Youzan\\Open\\": "src/Open"
  1631. }
  1632. },
  1633. "notification-url": "https://packagist.org/downloads/",
  1634. "license": [
  1635. "MIT"
  1636. ],
  1637. "authors": [
  1638. {
  1639. "name": "youzan",
  1640. "homepage": "https://github.com/youzan",
  1641. "role": "Developer"
  1642. }
  1643. ],
  1644. "description": "有赞云服务端SDK",
  1645. "homepage": "https://github.com/youzan/open-sdk-php",
  1646. "keywords": [
  1647. "open-sdk",
  1648. "youzan",
  1649. "youzanyun"
  1650. ],
  1651. "support": {
  1652. "issues": "https://github.com/youzan/open-sdk-php/issues",
  1653. "source": "https://github.com/youzan/open-sdk-php/tree/2.0.32"
  1654. },
  1655. "time": "2022-06-23T13:07:16+00:00"
  1656. }
  1657. ],
  1658. "packages-dev": [
  1659. {
  1660. "name": "symfony/polyfill-mbstring",
  1661. "version": "v1.28.0",
  1662. "source": {
  1663. "type": "git",
  1664. "url": "https://github.com/symfony/polyfill-mbstring.git",
  1665. "reference": "42292d99c55abe617799667f454222c54c60e229"
  1666. },
  1667. "dist": {
  1668. "type": "zip",
  1669. "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/42292d99c55abe617799667f454222c54c60e229",
  1670. "reference": "42292d99c55abe617799667f454222c54c60e229",
  1671. "shasum": "",
  1672. "mirrors": [
  1673. {
  1674. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1675. "preferred": true
  1676. }
  1677. ]
  1678. },
  1679. "require": {
  1680. "php": ">=7.1"
  1681. },
  1682. "provide": {
  1683. "ext-mbstring": "*"
  1684. },
  1685. "suggest": {
  1686. "ext-mbstring": "For best performance"
  1687. },
  1688. "type": "library",
  1689. "extra": {
  1690. "branch-alias": {
  1691. "dev-main": "1.28-dev"
  1692. },
  1693. "thanks": {
  1694. "name": "symfony/polyfill",
  1695. "url": "https://github.com/symfony/polyfill"
  1696. }
  1697. },
  1698. "autoload": {
  1699. "files": [
  1700. "bootstrap.php"
  1701. ],
  1702. "psr-4": {
  1703. "Symfony\\Polyfill\\Mbstring\\": ""
  1704. }
  1705. },
  1706. "notification-url": "https://packagist.org/downloads/",
  1707. "license": [
  1708. "MIT"
  1709. ],
  1710. "authors": [
  1711. {
  1712. "name": "Nicolas Grekas",
  1713. "email": "p@tchwork.com"
  1714. },
  1715. {
  1716. "name": "Symfony Community",
  1717. "homepage": "https://symfony.com/contributors"
  1718. }
  1719. ],
  1720. "description": "Symfony polyfill for the Mbstring extension",
  1721. "homepage": "https://symfony.com",
  1722. "keywords": [
  1723. "compatibility",
  1724. "mbstring",
  1725. "polyfill",
  1726. "portable",
  1727. "shim"
  1728. ],
  1729. "support": {
  1730. "source": "https://github.com/symfony/polyfill-mbstring/tree/v1.28.0"
  1731. },
  1732. "funding": [
  1733. {
  1734. "url": "https://symfony.com/sponsor",
  1735. "type": "custom"
  1736. },
  1737. {
  1738. "url": "https://github.com/fabpot",
  1739. "type": "github"
  1740. },
  1741. {
  1742. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  1743. "type": "tidelift"
  1744. }
  1745. ],
  1746. "time": "2023-07-28T09:04:16+00:00"
  1747. },
  1748. {
  1749. "name": "symfony/polyfill-php72",
  1750. "version": "v1.29.0",
  1751. "source": {
  1752. "type": "git",
  1753. "url": "https://github.com/symfony/polyfill-php72.git",
  1754. "reference": "861391a8da9a04cbad2d232ddd9e4893220d6e25"
  1755. },
  1756. "dist": {
  1757. "type": "zip",
  1758. "url": "https://api.github.com/repos/symfony/polyfill-php72/zipball/861391a8da9a04cbad2d232ddd9e4893220d6e25",
  1759. "reference": "861391a8da9a04cbad2d232ddd9e4893220d6e25",
  1760. "shasum": "",
  1761. "mirrors": [
  1762. {
  1763. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1764. "preferred": true
  1765. }
  1766. ]
  1767. },
  1768. "require": {
  1769. "php": ">=7.1"
  1770. },
  1771. "type": "library",
  1772. "extra": {
  1773. "thanks": {
  1774. "name": "symfony/polyfill",
  1775. "url": "https://github.com/symfony/polyfill"
  1776. }
  1777. },
  1778. "autoload": {
  1779. "files": [
  1780. "bootstrap.php"
  1781. ],
  1782. "psr-4": {
  1783. "Symfony\\Polyfill\\Php72\\": ""
  1784. }
  1785. },
  1786. "notification-url": "https://packagist.org/downloads/",
  1787. "license": [
  1788. "MIT"
  1789. ],
  1790. "authors": [
  1791. {
  1792. "name": "Nicolas Grekas",
  1793. "email": "p@tchwork.com"
  1794. },
  1795. {
  1796. "name": "Symfony Community",
  1797. "homepage": "https://symfony.com/contributors"
  1798. }
  1799. ],
  1800. "description": "Symfony polyfill backporting some PHP 7.2+ features to lower PHP versions",
  1801. "homepage": "https://symfony.com",
  1802. "keywords": [
  1803. "compatibility",
  1804. "polyfill",
  1805. "portable",
  1806. "shim"
  1807. ],
  1808. "support": {
  1809. "source": "https://github.com/symfony/polyfill-php72/tree/v1.29.0"
  1810. },
  1811. "funding": [
  1812. {
  1813. "url": "https://symfony.com/sponsor",
  1814. "type": "custom"
  1815. },
  1816. {
  1817. "url": "https://github.com/fabpot",
  1818. "type": "github"
  1819. },
  1820. {
  1821. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  1822. "type": "tidelift"
  1823. }
  1824. ],
  1825. "time": "2024-01-29T20:11:03+00:00"
  1826. },
  1827. {
  1828. "name": "symfony/polyfill-php80",
  1829. "version": "v1.29.0",
  1830. "source": {
  1831. "type": "git",
  1832. "url": "https://github.com/symfony/polyfill-php80.git",
  1833. "reference": "87b68208d5c1188808dd7839ee1e6c8ec3b02f1b"
  1834. },
  1835. "dist": {
  1836. "type": "zip",
  1837. "url": "https://api.github.com/repos/symfony/polyfill-php80/zipball/87b68208d5c1188808dd7839ee1e6c8ec3b02f1b",
  1838. "reference": "87b68208d5c1188808dd7839ee1e6c8ec3b02f1b",
  1839. "shasum": "",
  1840. "mirrors": [
  1841. {
  1842. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1843. "preferred": true
  1844. }
  1845. ]
  1846. },
  1847. "require": {
  1848. "php": ">=7.1"
  1849. },
  1850. "type": "library",
  1851. "extra": {
  1852. "thanks": {
  1853. "name": "symfony/polyfill",
  1854. "url": "https://github.com/symfony/polyfill"
  1855. }
  1856. },
  1857. "autoload": {
  1858. "files": [
  1859. "bootstrap.php"
  1860. ],
  1861. "psr-4": {
  1862. "Symfony\\Polyfill\\Php80\\": ""
  1863. },
  1864. "classmap": [
  1865. "Resources/stubs"
  1866. ]
  1867. },
  1868. "notification-url": "https://packagist.org/downloads/",
  1869. "license": [
  1870. "MIT"
  1871. ],
  1872. "authors": [
  1873. {
  1874. "name": "Ion Bazan",
  1875. "email": "ion.bazan@gmail.com"
  1876. },
  1877. {
  1878. "name": "Nicolas Grekas",
  1879. "email": "p@tchwork.com"
  1880. },
  1881. {
  1882. "name": "Symfony Community",
  1883. "homepage": "https://symfony.com/contributors"
  1884. }
  1885. ],
  1886. "description": "Symfony polyfill backporting some PHP 8.0+ features to lower PHP versions",
  1887. "homepage": "https://symfony.com",
  1888. "keywords": [
  1889. "compatibility",
  1890. "polyfill",
  1891. "portable",
  1892. "shim"
  1893. ],
  1894. "support": {
  1895. "source": "https://github.com/symfony/polyfill-php80/tree/v1.29.0"
  1896. },
  1897. "funding": [
  1898. {
  1899. "url": "https://symfony.com/sponsor",
  1900. "type": "custom"
  1901. },
  1902. {
  1903. "url": "https://github.com/fabpot",
  1904. "type": "github"
  1905. },
  1906. {
  1907. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  1908. "type": "tidelift"
  1909. }
  1910. ],
  1911. "time": "2024-01-29T20:11:03+00:00"
  1912. },
  1913. {
  1914. "name": "symfony/var-dumper",
  1915. "version": "v4.4.47",
  1916. "source": {
  1917. "type": "git",
  1918. "url": "https://github.com/symfony/var-dumper.git",
  1919. "reference": "1069c7a3fca74578022fab6f81643248d02f8e63"
  1920. },
  1921. "dist": {
  1922. "type": "zip",
  1923. "url": "https://api.github.com/repos/symfony/var-dumper/zipball/1069c7a3fca74578022fab6f81643248d02f8e63",
  1924. "reference": "1069c7a3fca74578022fab6f81643248d02f8e63",
  1925. "shasum": "",
  1926. "mirrors": [
  1927. {
  1928. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1929. "preferred": true
  1930. }
  1931. ]
  1932. },
  1933. "require": {
  1934. "php": ">=7.1.3",
  1935. "symfony/polyfill-mbstring": "~1.0",
  1936. "symfony/polyfill-php72": "~1.5",
  1937. "symfony/polyfill-php80": "^1.16"
  1938. },
  1939. "conflict": {
  1940. "phpunit/phpunit": "<4.8.35|<5.4.3,>=5.0",
  1941. "symfony/console": "<3.4"
  1942. },
  1943. "require-dev": {
  1944. "ext-iconv": "*",
  1945. "symfony/console": "^3.4|^4.0|^5.0",
  1946. "symfony/process": "^4.4|^5.0",
  1947. "twig/twig": "^1.43|^2.13|^3.0.4"
  1948. },
  1949. "suggest": {
  1950. "ext-iconv": "To convert non-UTF-8 strings to UTF-8 (or symfony/polyfill-iconv in case ext-iconv cannot be used).",
  1951. "ext-intl": "To show region name in time zone dump",
  1952. "symfony/console": "To use the ServerDumpCommand and/or the bin/var-dump-server script"
  1953. },
  1954. "bin": [
  1955. "Resources/bin/var-dump-server"
  1956. ],
  1957. "type": "library",
  1958. "autoload": {
  1959. "files": [
  1960. "Resources/functions/dump.php"
  1961. ],
  1962. "psr-4": {
  1963. "Symfony\\Component\\VarDumper\\": ""
  1964. },
  1965. "exclude-from-classmap": [
  1966. "/Tests/"
  1967. ]
  1968. },
  1969. "notification-url": "https://packagist.org/downloads/",
  1970. "license": [
  1971. "MIT"
  1972. ],
  1973. "authors": [
  1974. {
  1975. "name": "Nicolas Grekas",
  1976. "email": "p@tchwork.com"
  1977. },
  1978. {
  1979. "name": "Symfony Community",
  1980. "homepage": "https://symfony.com/contributors"
  1981. }
  1982. ],
  1983. "description": "Provides mechanisms for walking through any arbitrary PHP variable",
  1984. "homepage": "https://symfony.com",
  1985. "keywords": [
  1986. "debug",
  1987. "dump"
  1988. ],
  1989. "support": {
  1990. "source": "https://github.com/symfony/var-dumper/tree/v4.4.47"
  1991. },
  1992. "funding": [
  1993. {
  1994. "url": "https://symfony.com/sponsor",
  1995. "type": "custom"
  1996. },
  1997. {
  1998. "url": "https://github.com/fabpot",
  1999. "type": "github"
  2000. },
  2001. {
  2002. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  2003. "type": "tidelift"
  2004. }
  2005. ],
  2006. "time": "2022-10-03T15:15:11+00:00"
  2007. },
  2008. {
  2009. "name": "topthink/think-trace",
  2010. "version": "v1.6",
  2011. "source": {
  2012. "type": "git",
  2013. "url": "https://github.com/top-think/think-trace.git",
  2014. "reference": "136cd5d97e8bdb780e4b5c1637c588ed7ca3e142"
  2015. },
  2016. "dist": {
  2017. "type": "zip",
  2018. "url": "https://api.github.com/repos/top-think/think-trace/zipball/136cd5d97e8bdb780e4b5c1637c588ed7ca3e142",
  2019. "reference": "136cd5d97e8bdb780e4b5c1637c588ed7ca3e142",
  2020. "shasum": "",
  2021. "mirrors": [
  2022. {
  2023. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2024. "preferred": true
  2025. }
  2026. ]
  2027. },
  2028. "require": {
  2029. "php": ">=7.1.0",
  2030. "topthink/framework": "^6.0|^8.0"
  2031. },
  2032. "type": "library",
  2033. "extra": {
  2034. "think": {
  2035. "services": [
  2036. "think\\trace\\Service"
  2037. ],
  2038. "config": {
  2039. "trace": "src/config.php"
  2040. }
  2041. }
  2042. },
  2043. "autoload": {
  2044. "psr-4": {
  2045. "think\\trace\\": "src"
  2046. }
  2047. },
  2048. "notification-url": "https://packagist.org/downloads/",
  2049. "license": [
  2050. "Apache-2.0"
  2051. ],
  2052. "authors": [
  2053. {
  2054. "name": "liu21st",
  2055. "email": "liu21st@gmail.com"
  2056. }
  2057. ],
  2058. "description": "thinkphp debug trace",
  2059. "support": {
  2060. "issues": "https://github.com/top-think/think-trace/issues",
  2061. "source": "https://github.com/top-think/think-trace/tree/v1.6"
  2062. },
  2063. "time": "2023-02-07T08:36:32+00:00"
  2064. }
  2065. ],
  2066. "aliases": [],
  2067. "minimum-stability": "stable",
  2068. "stability-flags": [],
  2069. "prefer-stable": false,
  2070. "prefer-lowest": false,
  2071. "platform": {
  2072. "php": ">=7.2.5"
  2073. },
  2074. "platform-dev": [],
  2075. "plugin-api-version": "2.3.0"
  2076. }